From 747c39a26aa6dbf28da7f5d188f2b14ddf338293 Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Tue, 25 Nov 2025 08:58:34 +0100 Subject: [PATCH] [ty] Add more and update existing projects in `ty_benchmark` (#21536) --- scripts/ty_benchmark/.gitignore | 1 + scripts/ty_benchmark/README.md | 16 +- scripts/ty_benchmark/package-lock.json | 45 + scripts/ty_benchmark/package.json | 7 + scripts/ty_benchmark/pyproject.toml | 9 +- .../ty_benchmark/snapshots/black_Pyrefly.txt | 45 + .../ty_benchmark/snapshots/black_Pyright.txt | 81 + scripts/ty_benchmark/snapshots/black_mypy.txt | 2 + scripts/ty_benchmark/snapshots/black_ty.txt | 27 + .../snapshots/discord.py_Pyrefly.txt | 656 + .../snapshots/discord.py_Pyright.txt | 653 + .../snapshots/discord.py_mypy.txt | 1223 + .../ty_benchmark/snapshots/discord.py_ty.txt | 306 + .../snapshots/homeassistant_Pyrefly.txt | 38232 ++++++++++++++ .../snapshots/homeassistant_Pyright.txt | 41502 ++++++++++++++++ .../snapshots/homeassistant_mypy.txt | 14 + .../snapshots/homeassistant_ty.txt | 4794 ++ .../ty_benchmark/snapshots/isort_Pyrefly.txt | 20 + .../ty_benchmark/snapshots/isort_Pyright.txt | 50 + scripts/ty_benchmark/snapshots/isort_mypy.txt | 2 + scripts/ty_benchmark/snapshots/isort_ty.txt | 17 + .../ty_benchmark/snapshots/jinja_Pyrefly.txt | 67 + .../ty_benchmark/snapshots/jinja_Pyright.txt | 114 + scripts/ty_benchmark/snapshots/jinja_mypy.txt | 7 + scripts/ty_benchmark/snapshots/jinja_ty.txt | 24 + .../snapshots/pandas-stubs_Pyrefly.txt | 19 + .../snapshots/pandas-stubs_Pyright.txt | 1 + .../snapshots/pandas-stubs_mypy.txt | 1 + .../snapshots/pandas-stubs_ty.txt | 9 + .../ty_benchmark/snapshots/pandas_Pyrefly.txt | 1642 + .../ty_benchmark/snapshots/pandas_Pyright.txt | 4981 ++ .../ty_benchmark/snapshots/pandas_mypy.txt | 1 + scripts/ty_benchmark/snapshots/pandas_ty.txt | 946 + .../snapshots/prefect_Pyrefly.txt | 162 + .../snapshots/prefect_Pyright.txt | 527 + .../ty_benchmark/snapshots/prefect_mypy.txt | 2 + scripts/ty_benchmark/snapshots/prefect_ty.txt | 131 + .../snapshots/pytorch_Pyrefly.txt | 21803 ++++++++ .../snapshots/pytorch_Pyright.txt | 28819 +++++++++++ .../ty_benchmark/snapshots/pytorch_mypy.txt | 16865 +++++++ scripts/ty_benchmark/snapshots/pytorch_ty.txt | 23499 +++++++++ .../ty_benchmark/src/benchmark/__init__.py | 28 +- scripts/ty_benchmark/src/benchmark/cases.py | 217 - .../ty_benchmark/src/benchmark/projects.py | 222 +- scripts/ty_benchmark/src/benchmark/run.py | 184 +- .../ty_benchmark/src/benchmark/snapshot.py | 137 + scripts/ty_benchmark/src/benchmark/tool.py | 236 + scripts/ty_benchmark/src/benchmark/venv.py | 90 + scripts/ty_benchmark/uv.lock | 72 +- 49 files changed, 188108 insertions(+), 400 deletions(-) create mode 100644 scripts/ty_benchmark/.gitignore create mode 100644 scripts/ty_benchmark/package-lock.json create mode 100644 scripts/ty_benchmark/package.json create mode 100644 scripts/ty_benchmark/snapshots/black_Pyrefly.txt create mode 100644 scripts/ty_benchmark/snapshots/black_Pyright.txt create mode 100644 scripts/ty_benchmark/snapshots/black_mypy.txt create mode 100644 scripts/ty_benchmark/snapshots/black_ty.txt create mode 100644 scripts/ty_benchmark/snapshots/discord.py_Pyrefly.txt create mode 100644 scripts/ty_benchmark/snapshots/discord.py_Pyright.txt create mode 100644 scripts/ty_benchmark/snapshots/discord.py_mypy.txt create mode 100644 scripts/ty_benchmark/snapshots/discord.py_ty.txt create mode 100644 scripts/ty_benchmark/snapshots/homeassistant_Pyrefly.txt create mode 100644 scripts/ty_benchmark/snapshots/homeassistant_Pyright.txt create mode 100644 scripts/ty_benchmark/snapshots/homeassistant_mypy.txt create mode 100644 scripts/ty_benchmark/snapshots/homeassistant_ty.txt create mode 100644 scripts/ty_benchmark/snapshots/isort_Pyrefly.txt create mode 100644 scripts/ty_benchmark/snapshots/isort_Pyright.txt create mode 100644 scripts/ty_benchmark/snapshots/isort_mypy.txt create mode 100644 scripts/ty_benchmark/snapshots/isort_ty.txt create mode 100644 scripts/ty_benchmark/snapshots/jinja_Pyrefly.txt create mode 100644 scripts/ty_benchmark/snapshots/jinja_Pyright.txt create mode 100644 scripts/ty_benchmark/snapshots/jinja_mypy.txt create mode 100644 scripts/ty_benchmark/snapshots/jinja_ty.txt create mode 100644 scripts/ty_benchmark/snapshots/pandas-stubs_Pyrefly.txt create mode 100644 scripts/ty_benchmark/snapshots/pandas-stubs_Pyright.txt create mode 100644 scripts/ty_benchmark/snapshots/pandas-stubs_mypy.txt create mode 100644 scripts/ty_benchmark/snapshots/pandas-stubs_ty.txt create mode 100644 scripts/ty_benchmark/snapshots/pandas_Pyrefly.txt create mode 100644 scripts/ty_benchmark/snapshots/pandas_Pyright.txt create mode 100644 scripts/ty_benchmark/snapshots/pandas_mypy.txt create mode 100644 scripts/ty_benchmark/snapshots/pandas_ty.txt create mode 100644 scripts/ty_benchmark/snapshots/prefect_Pyrefly.txt create mode 100644 scripts/ty_benchmark/snapshots/prefect_Pyright.txt create mode 100644 scripts/ty_benchmark/snapshots/prefect_mypy.txt create mode 100644 scripts/ty_benchmark/snapshots/prefect_ty.txt create mode 100644 scripts/ty_benchmark/snapshots/pytorch_Pyrefly.txt create mode 100644 scripts/ty_benchmark/snapshots/pytorch_Pyright.txt create mode 100644 scripts/ty_benchmark/snapshots/pytorch_mypy.txt create mode 100644 scripts/ty_benchmark/snapshots/pytorch_ty.txt delete mode 100644 scripts/ty_benchmark/src/benchmark/cases.py create mode 100644 scripts/ty_benchmark/src/benchmark/snapshot.py create mode 100644 scripts/ty_benchmark/src/benchmark/tool.py create mode 100644 scripts/ty_benchmark/src/benchmark/venv.py diff --git a/scripts/ty_benchmark/.gitignore b/scripts/ty_benchmark/.gitignore new file mode 100644 index 0000000000..3c3629e647 --- /dev/null +++ b/scripts/ty_benchmark/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/scripts/ty_benchmark/README.md b/scripts/ty_benchmark/README.md index e55150d4f1..f4daabd990 100644 --- a/scripts/ty_benchmark/README.md +++ b/scripts/ty_benchmark/README.md @@ -7,15 +7,19 @@ 1. Build ty: `cargo build --bin ty --release` 1. `cd` into the benchmark directory: `cd scripts/ty_benchmark` +1. Install Pyright: `npm install` 1. Run benchmarks: `uv run benchmark` +Requires hyperfine 1.20 or newer. + ## Known limitations -ty only implements a tiny fraction of Mypy's and Pyright's functionality, -so the benchmarks aren't in any way a fair comparison today. However, -they'll become more meaningful as we build out more type checking features in ty. +The tested type checkers implement Python's type system to varying degrees and +some projects only successfully pass type checking using a specific type checker. -### Windows support +## Updating the benchmark -The script should work on Windows, but we haven't tested it yet. -We do make use of `shlex` which has known limitations when using non-POSIX shells. +The benchmark script supports snapshoting the results when running with `--snapshot` and `--accept`. +The goal of those snapshots is to catch accidental regressions. For example, if a project adds +new dependencies that we fail to install. They are not intended as a testing tool. E.g. the snapshot runner doesn't account for platform differences so that +you might see differences when running the snapshots on your machine. diff --git a/scripts/ty_benchmark/package-lock.json b/scripts/ty_benchmark/package-lock.json new file mode 100644 index 0000000000..419cc26994 --- /dev/null +++ b/scripts/ty_benchmark/package-lock.json @@ -0,0 +1,45 @@ +{ + "name": "ty_benchmark", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "ty_benchmark", + "version": "0.0.0", + "dependencies": { + "pyright": "^1.1.407" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/pyright": { + "version": "1.1.407", + "resolved": "https://registry.npmjs.org/pyright/-/pyright-1.1.407.tgz", + "integrity": "sha512-zU+peTFEVUdokNQyUBhGQYt+NWI/3aiNlvBbDBSsn5Ti334XElFUs+GDjQzCbchYfkT+DvMAT3OkMcV4CuEfDg==", + "license": "MIT", + "bin": { + "pyright": "index.js", + "pyright-langserver": "langserver.index.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + } + } + } +} diff --git a/scripts/ty_benchmark/package.json b/scripts/ty_benchmark/package.json new file mode 100644 index 0000000000..826ea3519d --- /dev/null +++ b/scripts/ty_benchmark/package.json @@ -0,0 +1,7 @@ +{ + "name": "ty_benchmark", + "version": "0.0.0", + "dependencies": { + "pyright": "^1.1.407" + } +} diff --git a/scripts/ty_benchmark/pyproject.toml b/scripts/ty_benchmark/pyproject.toml index d94c95f16e..69d9276854 100644 --- a/scripts/ty_benchmark/pyproject.toml +++ b/scripts/ty_benchmark/pyproject.toml @@ -3,7 +3,14 @@ name = "ty_benchmark" version = "0.0.1" description = "Package for running end-to-end ty benchmarks" requires-python = ">=3.12" -dependencies = ["mypy", "pyright"] +dependencies = [ + # mypy is missing here because we need to install it into the project's virtual environment + # for plugins to work. See `Venv.install`. + # Pyright is missing because we install it with `npm` to avoid measuring the overhead + # of the Python wrapper script (that lazily installs Pyright). + "mslex>=1.3.0", + "pyrefly>=0.41.3", +] [project.scripts] benchmark = "benchmark.run:main" diff --git a/scripts/ty_benchmark/snapshots/black_Pyrefly.txt b/scripts/ty_benchmark/snapshots/black_Pyrefly.txt new file mode 100644 index 0000000000..b3de7dfbcf --- /dev/null +++ b/scripts/ty_benchmark/snapshots/black_Pyrefly.txt @@ -0,0 +1,45 @@ +ERROR src/black/__init__.py:692:16-23: `sources` may be uninitialized [unbound-name] +ERROR src/black/__init__.py:699:16-23: `sources` may be uninitialized [unbound-name] +ERROR src/black/__init__.py:701:21-28: `sources` may be uninitialized [unbound-name] +ERROR src/black/__init__.py:716:25-32: `sources` may be uninitialized [unbound-name] +ERROR src/black/__init__.py:989:13-21: Object of class `AnsiToWin32` has no attribute `detach` [missing-attribute] +ERROR src/black/__init__.py:1049:9-17: Object of class `AnsiToWin32` has no attribute `detach` [missing-attribute] +ERROR src/black/__init__.py:1285:24-43: `normalized_contents` may be uninitialized [unbound-name] +ERROR src/black/__init__.py:1286:24-36: `newline_type` may be uninitialized [unbound-name] +ERROR src/black/__init__.py:1297:52-64: `newline_type` may be uninitialized [unbound-name] +ERROR src/black/comments.py:260:5-265:18: `int | None` is not assignable to `None` (caused by inconsistent types when breaking cycles) [bad-assignment] +ERROR src/black/comments.py:640:12-19: `Preview` may be uninitialized [unbound-name] +ERROR src/black/concurrency.py:61:33-83: Argument `Future[list[BaseException | Any]]` is not assignable to parameter `future` with type `Awaitable[tuple[Any]] | Generator[Any, None, tuple[Any]]` in function `asyncio.events.AbstractEventLoop.run_until_complete` [bad-argument-type] +ERROR src/black/handle_ipynb_magics.py:106:5-77: Could not find import of `tokenize_rt` [missing-import] +ERROR src/black/handle_ipynb_magics.py:130:5-77: Could not find import of `tokenize_rt` [missing-import] +ERROR src/black/handle_ipynb_magics.py:171:5-66: Could not find import of `IPython.core.inputtransformer2` [missing-import] +ERROR src/black/handle_ipynb_magics.py:292:25-29: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR src/black/linegen.py:1577:9-34: Object of class `Node` has no attribute `value` [missing-attribute] +ERROR src/black/output.py:89:31-35: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR src/black/output.py:91:31-42: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR src/black/strings.py:295:8-24: `new_escape_count` may be uninitialized [unbound-name] +ERROR src/black/strings.py:295:27-44: `orig_escape_count` may be uninitialized [unbound-name] +ERROR src/black/strings.py:298:8-24: `new_escape_count` may be uninitialized [unbound-name] +ERROR src/black/strings.py:298:28-45: `orig_escape_count` may be uninitialized [unbound-name] +ERROR src/black/trans.py:55:16-36: `type[Err[CannotTransform] | Ok[TypeVar[T]]]` is not subscriptable [unsupported-operation] +ERROR src/black/trans.py:256:19-32: `type[Err[CannotTransform] | Ok[TypeVar[T]]]` is not subscriptable [unsupported-operation] +ERROR src/black/trans.py:472:19-32: `type[Err[CannotTransform] | Ok[TypeVar[T]]]` is not subscriptable [unsupported-operation] +ERROR src/black/trans.py:503:10-23: `type[Err[CannotTransform] | Ok[TypeVar[T]]]` is not subscriptable [unsupported-operation] +ERROR src/black/trans.py:544:10-23: `type[Err[CannotTransform] | Ok[TypeVar[T]]]` is not subscriptable [unsupported-operation] +ERROR src/black/trans.py:752:55-68: `type[Err[CannotTransform] | Ok[TypeVar[T]]]` is not subscriptable [unsupported-operation] +ERROR src/black/trans.py:985:19-32: `type[Err[CannotTransform] | Ok[TypeVar[T]]]` is not subscriptable [unsupported-operation] +ERROR src/black/trans.py:1111:57-70: `type[Err[CannotTransform] | Ok[TypeVar[T]]]` is not subscriptable [unsupported-operation] +ERROR src/black/trans.py:1480:19-32: `type[Err[CannotTransform] | Ok[TypeVar[T]]]` is not subscriptable [unsupported-operation] +ERROR src/black/trans.py:1630:25-31: `csplit` may be uninitialized [unbound-name] +ERROR src/black/trans.py:2162:19-32: `type[Err[CannotTransform] | Ok[TypeVar[T]]]` is not subscriptable [unsupported-operation] +ERROR src/blib2to3/pgen2/conv.py:35:1-33: Could not find import of `pgen2` [missing-import] +ERROR src/blib2to3/pgen2/conv.py:77:34-43: Object of class `NoneType` has no attribute `groups` [missing-attribute] +ERROR src/blib2to3/pgen2/driver.py:76:20-25: `token` may be uninitialized [unbound-name] +ERROR src/blib2to3/pgen2/driver.py:169:26-33: `_prefix` may be uninitialized [unbound-name] +ERROR src/blib2to3/pgen2/parse.py:367:13-28: Object of class `NoneType` has no attribute `append` [missing-attribute] +ERROR src/blib2to3/pgen2/parse.py:392:17-32: Object of class `NoneType` has no attribute `append` [missing-attribute] +ERROR src/blib2to3/pytree.py:670:24-34: `newcontent` may be uninitialized [unbound-name] +ERROR src/blib2to3/pytree.py:756:24-39: `wrapped_content` may be uninitialized [unbound-name] +ERROR src/blib2to3/pytree.py:847:34-45: `save_stderr` may be uninitialized [unbound-name] + INFO Checking project configured at `/pyrefly.toml` + INFO 43 errors (2 suppressed) diff --git a/scripts/ty_benchmark/snapshots/black_Pyright.txt b/scripts/ty_benchmark/snapshots/black_Pyright.txt new file mode 100644 index 0000000000..647a9fb40e --- /dev/null +++ b/scripts/ty_benchmark/snapshots/black_Pyright.txt @@ -0,0 +1,81 @@ +/src/black/__init__.py + /src/black/__init__.py:30:6 - warning: Import "_black_version" could not be resolved from source (reportMissingModuleSource) + /src/black/__init__.py:989:15 - error: Cannot access attribute "detach" for class "AnsiToWin32" +   Attribute "detach" is unknown (reportAttributeAccessIssue) + /src/black/__init__.py:1049:11 - error: Cannot access attribute "detach" for class "AnsiToWin32" +   Attribute "detach" is unknown (reportAttributeAccessIssue) + /src/black/__init__.py:1285:24 - error: "normalized_contents" is possibly unbound (reportPossiblyUnboundVariable) + /src/black/__init__.py:1286:24 - error: "newline_type" is possibly unbound (reportPossiblyUnboundVariable) + /src/black/__init__.py:1297:52 - error: "newline_type" is possibly unbound (reportPossiblyUnboundVariable) +/src/black/cache.py + /src/black/cache.py:15:6 - warning: Import "_black_version" could not be resolved from source (reportMissingModuleSource) + /src/black/cache.py:144:59 - error: Type "dict[str, tuple[float | int | str, ...]]" is not assignable to declared type "dict[str, tuple[float, int, str]]" (reportAssignmentType) +/src/black/files.py + /src/black/files.py:95:12 - error: "directory" is possibly unbound (reportPossiblyUnboundVariable) + /src/black/files.py:426:16 - error: Type "TextIOWrapper[_WrappedBuffer] | StreamWrapper" is not assignable to return type "TextIOWrapper[_WrappedBuffer] | AnsiToWin32" +   Type "TextIOWrapper[_WrappedBuffer] | StreamWrapper" is not assignable to type "TextIOWrapper[_WrappedBuffer] | AnsiToWin32" +     Type "StreamWrapper" is not assignable to type "TextIOWrapper[_WrappedBuffer] | AnsiToWin32" +       "StreamWrapper" is not assignable to "TextIOWrapper[_WrappedBuffer]" +       "StreamWrapper" is not assignable to "AnsiToWin32" (reportReturnType) +/src/black/handle_ipynb_magics.py + /src/black/handle_ipynb_magics.py:106:10 - error: Import "tokenize_rt" could not be resolved (reportMissingImports) + /src/black/handle_ipynb_magics.py:130:10 - error: Import "tokenize_rt" could not be resolved (reportMissingImports) + /src/black/handle_ipynb_magics.py:171:10 - error: Import "IPython.core.inputtransformer2" could not be resolved (reportMissingImports) +/src/black/linegen.py + /src/black/linegen.py:766:21 - error: Type "list[StringMerger | StringParenStripper | StringSplitter | Transformer | StringParenWrapper | rhs]" is not assignable to declared type "list[Transformer]" +   Type "rhs" is not assignable to type "Transformer" (reportAssignmentType) + /src/black/linegen.py:774:21 - error: Type "list[StringMerger | StringParenStripper | StringSplitter | StringParenWrapper | rhs]" is not assignable to declared type "list[Transformer]" +   Type "rhs" is not assignable to type "Transformer" (reportAssignmentType) + /src/black/linegen.py:778:76 - error: Type "list[Transformer | rhs]" is not assignable to declared type "list[Transformer]" +   Type "rhs" is not assignable to type "Transformer" (reportAssignmentType) + /src/black/linegen.py:780:33 - error: Type "list[rhs]" is not assignable to declared type "list[Transformer]" +   Type "rhs" is not assignable to type "Transformer" (reportAssignmentType) + /src/black/linegen.py:887:12 - error: "matching_bracket" is possibly unbound (reportPossiblyUnboundVariable) + /src/black/linegen.py:887:36 - error: "tail_leaves" is possibly unbound (reportPossiblyUnboundVariable) + /src/black/linegen.py:891:9 - error: "head_leaves" is possibly unbound (reportPossiblyUnboundVariable) + /src/black/linegen.py:894:9 - error: "body_leaves" is possibly unbound (reportPossiblyUnboundVariable) +/src/black/strings.py + /src/black/strings.py:295:8 - error: Operator ">" not supported for types "Unbound | Unknown" and "Unbound | int" +   Operator ">" not supported for types "Unbound" and "Unbound" (reportOperatorIssue) + /src/black/strings.py:295:8 - error: "new_escape_count" is possibly unbound (reportPossiblyUnboundVariable) + /src/black/strings.py:295:27 - error: "orig_escape_count" is possibly unbound (reportPossiblyUnboundVariable) + /src/black/strings.py:298:8 - error: Operator "==" not supported for types "Unbound | Unknown" and "Unbound | int" +   Operator "==" not supported for types "Unbound" and "Unbound" (reportOperatorIssue) + /src/black/strings.py:298:8 - error: "new_escape_count" is possibly unbound (reportPossiblyUnboundVariable) + /src/black/strings.py:298:28 - error: "orig_escape_count" is possibly unbound (reportPossiblyUnboundVariable) +/src/black/trans.py + /src/black/trans.py:232:5 - error: Variable "__name__" is marked Final and overrides non-Final variable of same name in class "type" (reportIncompatibleVariableOverride) + /src/black/trans.py:1041:42 - error: "idx" is possibly unbound (reportPossiblyUnboundVariable) + /src/black/trans.py:1630:25 - error: "csplit" is possibly unbound (reportPossiblyUnboundVariable) +/src/blackd/__init__.py + /src/blackd/__init__.py:23:6 - warning: Import "_black_version" could not be resolved from source (reportMissingModuleSource) +/src/blib2to3/pgen2/driver.py + /src/blib2to3/pgen2/driver.py:76:20 - error: "token" is possibly unbound (reportPossiblyUnboundVariable) + /src/blib2to3/pgen2/driver.py:169:26 - error: "_prefix" is possibly unbound (reportPossiblyUnboundVariable) +/src/blib2to3/pgen2/tokenize.py + /src/blib2to3/pgen2/tokenize.py:64:1 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) +/src/blib2to3/pytree.py + /src/blib2to3/pytree.py:365:18 - error: "current" is possibly unbound (reportPossiblyUnboundVariable) + /src/blib2to3/pytree.py:373:5 - error: Declaration "fixers_applied" is obscured by a declaration of the same name (reportRedeclaration) + /src/blib2to3/pytree.py:433:9 - error: Method "_eq" overrides class "Base" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "_P@_eq", override parameter is type "Leaf" +     "Base*" is not assignable to "Leaf" (reportIncompatibleMethodOverride) + /src/blib2to3/pytree.py:444:28 - error: Argument of type "list[Any] | None" cannot be assigned to parameter "fixers_applied" of type "list[Any]" in function "__init__" +   Type "list[Any] | None" is not assignable to type "list[Any]" +     "None" is not assignable to "list[Any]" (reportArgumentType) + /src/blib2to3/pytree.py:670:24 - error: "newcontent" is possibly unbound (reportPossiblyUnboundVariable) + /src/blib2to3/pytree.py:756:24 - error: "wrapped_content" is possibly unbound (reportPossiblyUnboundVariable) + /src/blib2to3/pytree.py:800:25 - error: Argument of type "list[NL]" cannot be assigned to parameter "value" of type "NL" in function "__setitem__" +   Type "list[NL]" is not assignable to type "NL" +     "list[NL]" is not assignable to "Node" +     "list[NL]" is not assignable to "Leaf" (reportArgumentType) + /src/blib2to3/pytree.py:836:25 - error: Argument of type "list[NL]" cannot be assigned to parameter "value" of type "NL" in function "__setitem__" +   Type "list[NL]" is not assignable to type "NL" +     "list[NL]" is not assignable to "Node" +     "list[NL]" is not assignable to "Leaf" (reportArgumentType) + /src/blib2to3/pytree.py:843:25 - error: Argument of type "list[NL]" cannot be assigned to parameter "value" of type "NL" in function "__setitem__" +   Type "list[NL]" is not assignable to type "NL" +     "list[NL]" is not assignable to "Node" +     "list[NL]" is not assignable to "Leaf" (reportArgumentType) + /src/blib2to3/pytree.py:847:34 - error: "save_stderr" is possibly unbound (reportPossiblyUnboundVariable) +40 errors, 4 warnings, 0 informations diff --git a/scripts/ty_benchmark/snapshots/black_mypy.txt b/scripts/ty_benchmark/snapshots/black_mypy.txt new file mode 100644 index 0000000000..6baddbbdd2 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/black_mypy.txt @@ -0,0 +1,2 @@ +Success: no issues found in 42 source files +Warning: unused section(s) in pyproject.toml: module = ['tests.data.*'] diff --git a/scripts/ty_benchmark/snapshots/black_ty.txt b/scripts/ty_benchmark/snapshots/black_ty.txt new file mode 100644 index 0000000000..7ad0ca8c95 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/black_ty.txt @@ -0,0 +1,27 @@ +src/black/__init__.py:989:13: warning[possibly-missing-attribute] Attribute `detach` may be missing on object of type `TextIOWrapper[_WrappedBuffer] | AnsiToWin32` +src/black/__init__.py:1378:23: warning[possibly-missing-attribute] Attribute `value` may be missing on object of type `Node | Leaf` +src/black/cache.py:144:59: error[invalid-assignment] Object of type `dict[str | Unknown, tuple[@Todo] | Unknown]` is not assignable to `dict[str, tuple[int | float, int, str]]` +src/black/handle_ipynb_magics.py:106:10: error[unresolved-import] Cannot resolve imported module `tokenize_rt` +src/black/handle_ipynb_magics.py:130:10: error[unresolved-import] Cannot resolve imported module `tokenize_rt` +src/black/handle_ipynb_magics.py:171:10: error[unresolved-import] Cannot resolve imported module `IPython.core.inputtransformer2` +src/black/handle_ipynb_magics.py:393:17: error[unresolved-attribute] Object of type `expr` has no attribute `attr` +src/black/handle_ipynb_magics.py:447:16: error[unresolved-attribute] Object of type `expr` has no attribute `attr` +src/black/handle_ipynb_magics.py:449:18: error[unresolved-attribute] Object of type `expr` has no attribute `attr` +src/black/handle_ipynb_magics.py:455:49: error[unresolved-attribute] Object of type `expr` has no attribute `attr` +src/black/handle_ipynb_magics.py:484:16: error[unresolved-attribute] Object of type `expr` has no attribute `attr` +src/black/handle_ipynb_magics.py:493:18: error[unresolved-attribute] Object of type `expr` has no attribute `attr` +src/black/handle_ipynb_magics.py:495:18: error[unresolved-attribute] Object of type `expr` has no attribute `attr` +src/black/linegen.py:222:41: warning[possibly-missing-attribute] Attribute `value` may be missing on object of type `Node | Leaf` +src/black/linegen.py:1576:9: error[invalid-assignment] Object of type `Literal[""]` is not assignable to attribute `value` on type `Leaf | Node` +src/black/linegen.py:1577:9: error[invalid-assignment] Object of type `Literal[""]` is not assignable to attribute `value` on type `Node | Leaf` +src/black/linegen.py:1757:25: warning[possibly-missing-attribute] Attribute `value` may be missing on object of type `Node | Leaf` +src/black/linegen.py:1795:13: error[invalid-assignment] Object of type `Literal[""]` is not assignable to attribute `value` on type `Node | Leaf` +src/black/linegen.py:1796:13: error[invalid-assignment] Object of type `Literal[""]` is not assignable to attribute `value` on type `Node | Leaf` +src/black/nodes.py:746:32: warning[possibly-missing-attribute] Attribute `value` may be missing on object of type `Leaf | Node` +src/black/rusty.py:28:23: error[invalid-argument-type] Argument to class `Err` is incorrect: Expected `Exception`, found `typing.TypeVar` +src/blib2to3/pgen2/conv.py:35:6: error[unresolved-import] Cannot resolve imported module `pgen2` +src/blib2to3/pgen2/conv.py:77:34: warning[possibly-missing-attribute] Attribute `groups` may be missing on object of type `Match[str] | None` +src/blib2to3/pgen2/grammar.py:151:16: error[invalid-return-type] Return type does not match returned value: expected `_P@copy`, found `Grammar` +src/blib2to3/pgen2/parse.py:367:13: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `list[Node | Leaf] | None` +src/blib2to3/pytree.py:149:13: error[unresolved-attribute] Unresolved attribute `parent` on type `object`. +Found 26 diagnostics diff --git a/scripts/ty_benchmark/snapshots/discord.py_Pyrefly.txt b/scripts/ty_benchmark/snapshots/discord.py_Pyrefly.txt new file mode 100644 index 0000000000..b676ba07ef --- /dev/null +++ b/scripts/ty_benchmark/snapshots/discord.py_Pyrefly.txt @@ -0,0 +1,656 @@ +ERROR discord/abc.py:123:9-15: Class member `PinnedMessage.pinned` overrides parent class `Message` in an inconsistent manner [bad-override] +ERROR discord/abc.py:474:28-29: Argument `dict[str, Any]` is not assignable to parameter `object` with type `TypedDict[ChannelPositionUpdate]` in function `list.append` [bad-argument-type] +ERROR discord/abc.py:578:44-81: Argument `list[TypedDict[PermissionOverwrite]] | list[@_] | object` is not assignable to parameter `iterable` with type `Iterable[str]` in function `enumerate.__new__` [bad-argument-type] +ERROR discord/abc.py:579:37-47: Argument `str` is not assignable to parameter `data` with type `TypedDict[PermissionOverwrite]` in function `_Overwrites.__init__` [bad-argument-type] +ERROR discord/abc.py:1031:72-81: Argument `int` is not assignable to parameter `type` with type `Literal[0, 1]` in function `discord.http.HTTPClient.edit_channel_permissions` [bad-argument-type] +ERROR discord/abc.py:1052:64-79: Argument `int` is not assignable to parameter `channel_type` with type `Literal[0, 1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 15, 16]` in function `discord.http.HTTPClient.create_channel` [bad-argument-type] +ERROR discord/abc.py:1224:25-37: Object of class `NoneType` has no attribute `id` [missing-attribute] +ERROR discord/abc.py:1357:25-67: Argument `int | None` is not assignable to parameter `target_type` with type `Literal[1, 2] | None` in function `discord.http.HTTPClient.create_invite` [bad-argument-type] +ERROR discord/abc.py:1808:30-32: Invalid key for TypedDict `ChannelPins`, got `Literal[-1]` [bad-typed-dict-key] +ERROR discord/abc.py:1815:33-40: No matching overload found for function `reversed.__new__` called with arguments: (type[reversed[_T]], list[TypedDict[MessagePin]] | TypedDict[ChannelPins]) [no-matching-overload] +ERROR discord/abc.py:1818:39-44: Argument `list[TypedDict[MessagePin]] | reversed[Unknown] | TypedDict[ChannelPins]` is not assignable to parameter `iterable` with type `Iterable[TypedDict[MessagePin]]` in function `enumerate.__new__` [bad-argument-type] +ERROR discord/abc.py:1821:23-30: Type of yielded value `Message` is not assignable to declared return type `PinnedMessage` [invalid-yield] +ERROR discord/abc.py:2091:51-62: Default `type[VoiceClient]` is not assignable to parameter `cls` with type `(Client, Connectable) -> T` [bad-function-definition] +ERROR discord/activity.py:286:9-16: Class member `Activity.to_dict` overrides parent class `BaseActivity` in an inconsistent manner [bad-override] +ERROR discord/activity.py:455:9-16: Class member `Game.to_dict` overrides parent class `BaseActivity` in an inconsistent manner [bad-override] +ERROR discord/activity.py:566:9-16: Class member `Streaming.to_dict` overrides parent class `BaseActivity` in an inconsistent manner [bad-override] +ERROR discord/activity.py:822:9-16: Class member `CustomActivity.to_dict` overrides parent class `BaseActivity` in an inconsistent manner [bad-override] +ERROR discord/activity.py:836:26-46: Cannot set item in `dict[str, int | str | None]` [unsupported-operation] +ERROR discord/app_commands/checks.py:390:64-71: Argument `((Interaction[Any]) -> Cooldown | None) | ((Interaction[Any]) -> Coroutine[Any, Any, Cooldown | None])` is not assignable to parameter with type `(Interaction[Any]) -> Awaitable[Cooldown] | Cooldown` in function `discord.utils.maybe_coroutine` [bad-argument-type] +ERROR discord/app_commands/commands.py:235:9-38: Object of class `FunctionType` has no attribute `pass_command_binding` [missing-attribute] +ERROR discord/app_commands/commands.py:393:29-76: Object of class `FunctionType` has no attribute `__discord_app_commands_param_description__` [missing-attribute] +ERROR discord/app_commands/commands.py:402:19-61: Object of class `FunctionType` has no attribute `__discord_app_commands_param_rename__` [missing-attribute] +ERROR discord/app_commands/commands.py:409:19-62: Object of class `FunctionType` has no attribute `__discord_app_commands_param_choices__` [missing-attribute] +ERROR discord/app_commands/commands.py:416:24-72: Object of class `FunctionType` has no attribute `__discord_app_commands_param_autocomplete__` [missing-attribute] +ERROR discord/app_commands/commands.py:456:5-48: Object of class `FunctionType` has no attribute `__discord_app_commands_base_function__` [missing-attribute] +ERROR discord/app_commands/commands.py:683:28-45: Object of class `FunctionType` has no attribute `__self__` [missing-attribute] +ERROR discord/app_commands/commands.py:684:41-58: Object of class `FunctionType` has no attribute `__func__` [missing-attribute] +ERROR discord/app_commands/commands.py:2477:17-53: Object of class `FunctionType` has no attribute `__discord_app_commands_checks__` [missing-attribute] +ERROR discord/app_commands/commands.py:2479:13-49: Object of class `FunctionType` has no attribute `__discord_app_commands_checks__` [missing-attribute] +ERROR discord/app_commands/errors.py:483:27-33: `errors` may be uninitialized [unbound-name] +ERROR discord/app_commands/errors.py:484:72-78: `errors` may be uninitialized [unbound-name] +ERROR discord/app_commands/installs.py:113:16-22: Returned type `list[int]` is not assignable to declared return type `list[Literal[0, 1]]` [bad-return] +ERROR discord/app_commands/installs.py:213:16-22: Returned type `list[int]` is not assignable to declared return type `list[Literal[0, 1, 2]]` [bad-return] +ERROR discord/app_commands/models.py:217:89-112: Type `object` is not iterable [not-iterable] +ERROR discord/app_commands/models.py:370:57-89: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/app_commands/models.py:372:57-61: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/app_commands/models.py:375:40-53: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/app_commands/models.py:378:34-74: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/app_commands/models.py:539:42-97: Cannot set item in `dict[str, str | ChoiceT]` [unsupported-operation] +ERROR discord/app_commands/models.py:926:16-67: Returned type `Guild | Member | None` is not assignable to declared return type `Member | None` [bad-return] +ERROR discord/app_commands/models.py:1057:31-58: `bool | object` is not assignable to attribute `required` with type `bool` [bad-assignment] +ERROR discord/app_commands/models.py:1058:55-76: `float | int | object | None` is not assignable to attribute `min_value` with type `float | int | None` [bad-assignment] +ERROR discord/app_commands/models.py:1059:55-76: `float | int | object | None` is not assignable to attribute `max_value` with type `float | int | None` [bad-assignment] +ERROR discord/app_commands/models.py:1060:42-64: `int | object | None` is not assignable to attribute `min_length` with type `int | None` [bad-assignment] +ERROR discord/app_commands/models.py:1061:42-64: `int | object | None` is not assignable to attribute `max_length` with type `int | None` [bad-assignment] +ERROR discord/app_commands/models.py:1062:35-66: `bool | object` is not assignable to attribute `autocomplete` with type `bool` [bad-assignment] +ERROR discord/app_commands/models.py:1063:84-113: Type `object` is not iterable [not-iterable] +ERROR discord/app_commands/models.py:1064:92-115: Type `object` is not iterable [not-iterable] +ERROR discord/app_commands/models.py:1162:89-112: Type `object` is not iterable [not-iterable] +ERROR discord/app_commands/models.py:1235:21-36: `int` is not assignable to TypedDict key `type` with type `Literal[1, 2, 3]` [bad-typed-dict-key] +ERROR discord/app_commands/transformers.py:110:67-73: Argument `locale_str | str` is not assignable to parameter `string` with type `locale_str` in function `discord.app_commands.translator.Translator._checked_translate` [bad-argument-type] +ERROR discord/app_commands/transformers.py:115:67-78: Argument `locale_str | str` is not assignable to parameter `string` with type `locale_str` in function `discord.app_commands.translator.Translator._checked_translate` [bad-argument-type] +ERROR discord/app_commands/transformers.py:139:31-76: Cannot set item in `dict[str, bool | int | str]` [unsupported-operation] +ERROR discord/app_commands/transformers.py:141:37-74: Cannot set item in `dict[str, bool | int | str]` [unsupported-operation] +ERROR discord/app_commands/transformers.py:149:29-43: Cannot set item in `dict[str, bool | int | str]` [unsupported-operation] +ERROR discord/app_commands/transformers.py:151:29-43: Cannot set item in `dict[str, bool | int | str]` [unsupported-operation] +ERROR discord/app_commands/transformers.py:238:22-26: Expected a type form, got instance of `Self@Transformer` [not-a-type] +ERROR discord/app_commands/translator.py:119:61-85: Expected a type form, got instance of `Literal['Command[Any, ..., Any]']` [not-a-type] +ERROR discord/app_commands/translator.py:119:87-100: Expected a type form, got instance of `Literal['ContextMenu']` [not-a-type] +ERROR discord/app_commands/translator.py:122:62-86: Expected a type form, got instance of `Literal['Command[Any, ..., Any]']` [not-a-type] +ERROR discord/app_commands/translator.py:125:99-106: Expected a type form, got instance of `Literal['Group']` [not-a-type] +ERROR discord/app_commands/translator.py:128:107-118: Expected a type form, got instance of `Literal['Parameter']` [not-a-type] +ERROR discord/app_commands/translator.py:130:96-109: Expected a type form, got instance of `Literal['Choice[Any]']` [not-a-type] +ERROR discord/app_commands/tree.py:366:29-36: Cannot set item in `dict[tuple[str, int | None, int], ContextMenu]` [unsupported-operation] +ERROR discord/app_commands/tree.py:748:27-34: Type of yielded value `ContextMenu` is not assignable to declared return type `Command[Any, Ellipsis, Any] | Group` [invalid-yield] +ERROR discord/app_commands/tree.py:814:19-38: No matching overload found for function `discord.utils.CachedSlotProperty.__get__` called with arguments: (Interaction[ClientT], type[Interaction]) [no-matching-overload] +ERROR discord/app_commands/tree.py:1127:19-38: No matching overload found for function `discord.utils.CachedSlotProperty.__get__` called with arguments: (Interaction[ClientT], type[Interaction]) [no-matching-overload] +ERROR discord/app_commands/tree.py:1180:66-89: `list[TypedDict[_BooleanValueApplicationCommandInteractionDataOption] | TypedDict[_CommandGroupApplicationCommandInteractionDataOption] | TypedDict[_IntegerValueApplicationCommandInteractionDataOption] | TypedDict[_NumberValueApplicationCommandInteractionDataOption] | TypedDict[_SnowflakeValueApplicationCommandInteractionDataOption] | TypedDict[_StringValueApplicationCommandInteractionDataOption]] | object` is not assignable to `list[TypedDict[_BooleanValueApplicationCommandInteractionDataOption] | TypedDict[_CommandGroupApplicationCommandInteractionDataOption] | TypedDict[_IntegerValueApplicationCommandInteractionDataOption] | TypedDict[_NumberValueApplicationCommandInteractionDataOption] | TypedDict[_SnowflakeValueApplicationCommandInteractionDataOption] | TypedDict[_StringValueApplicationCommandInteractionDataOption]]` [bad-assignment] +ERROR discord/app_commands/tree.py:1190:31-56: `list[TypedDict[_BooleanValueApplicationCommandInteractionDataOption] | TypedDict[_CommandGroupApplicationCommandInteractionDataOption] | TypedDict[_IntegerValueApplicationCommandInteractionDataOption] | TypedDict[_NumberValueApplicationCommandInteractionDataOption] | TypedDict[_SnowflakeValueApplicationCommandInteractionDataOption] | TypedDict[_StringValueApplicationCommandInteractionDataOption]] | object` is not assignable to variable `options` with type `list[TypedDict[_BooleanValueApplicationCommandInteractionDataOption] | TypedDict[_CommandGroupApplicationCommandInteractionDataOption] | TypedDict[_IntegerValueApplicationCommandInteractionDataOption] | TypedDict[_NumberValueApplicationCommandInteractionDataOption] | TypedDict[_SnowflakeValueApplicationCommandInteractionDataOption] | TypedDict[_StringValueApplicationCommandInteractionDataOption]]` [bad-assignment] +ERROR discord/app_commands/tree.py:1216:9-32: Object of class `Interaction` has no attribute `_cs_command` [missing-attribute] +ERROR discord/app_commands/tree.py:1221:63-87: Argument `dict[@_, @_] | TypedDict[ResolvedData]` is not assignable to parameter `resolved` with type `TypedDict[ResolvedData]` in function `discord.app_commands.namespace.Namespace._get_resolved_items` [bad-argument-type] +ERROR discord/app_commands/tree.py:1224:48-69: `int | object | str | None` is not assignable to `int | str | None` [bad-assignment] +ERROR discord/app_commands/tree.py:1273:9-32: Object of class `Interaction` has no attribute `_cs_command` [missing-attribute] +ERROR discord/app_commands/tree.py:1277:44-68: Argument `dict[@_, @_] | TypedDict[ResolvedData]` is not assignable to parameter `resolved` with type `TypedDict[ResolvedData]` in function `discord.app_commands.namespace.Namespace.__init__` [bad-argument-type] +ERROR discord/app_commands/tree.py:1280:9-34: Object of class `Interaction` has no attribute `_cs_namespace` [missing-attribute] +ERROR discord/appinfo.py:222:45-83: `int | object` is not assignable to attribute `approximate_guild_count` with type `int` [bad-assignment] +ERROR discord/appinfo.py:412:17-41: Cannot set item in `None` [unsupported-operation] +ERROR discord/appinfo.py:415:21-50: Cannot set item in `None` [unsupported-operation] +ERROR discord/appinfo.py:418:25-54: Cannot set item in `None` [unsupported-operation] +ERROR discord/appinfo.py:420:25-54: Cannot set item in `None` [unsupported-operation] +ERROR discord/appinfo.py:458:16-49: `not in` is not supported between `Literal['bot']` and `None` [not-iterable] +ERROR discord/appinfo.py:462:17-52: Cannot set item in `None` [unsupported-operation] +ERROR discord/appinfo.py:464:17-52: Cannot set item in `None` [unsupported-operation] +ERROR discord/appinfo.py:464:55-86: Object of class `NoneType` has no attribute `value` [missing-attribute] +ERROR discord/appinfo.py:466:13-43: Cannot set item in `None` [unsupported-operation] +ERROR discord/appinfo.py:478:16-48: `not in` is not supported between `Literal['bot']` and `None` [not-iterable] +ERROR discord/appinfo.py:482:17-51: Cannot set item in `None` [unsupported-operation] +ERROR discord/appinfo.py:484:17-51: Cannot set item in `None` [unsupported-operation] +ERROR discord/appinfo.py:484:54-84: Object of class `NoneType` has no attribute `value` [missing-attribute] +ERROR discord/appinfo.py:486:13-42: Cannot set item in `None` [unsupported-operation] +ERROR discord/asset.py:213:14-20: Class member `Asset._state` overrides parent class `AssetMixin` in an inconsistent manner [bad-override] +ERROR discord/asset.py:385:9-12: Class member `Asset.url` overrides parent class `AssetMixin` in an inconsistent manner [bad-override] +ERROR discord/audit_logs.py:208:27-39: Argument `tuple[Member | Object | Role | User, PermissionOverwrite]` is not assignable to parameter `object` with type `tuple[Object, PermissionOverwrite]` in function `list.append` [bad-argument-type] +ERROR discord/automod.py:164:49-67: TypedDict `_AutoModerationActionMetadataAlert` does not have key `duration_seconds` [bad-typed-dict-key] +ERROR discord/automod.py:164:49-67: TypedDict `_AutoModerationActionMetadataCustomMessage` does not have key `duration_seconds` [bad-typed-dict-key] +ERROR discord/automod.py:167:47-59: TypedDict `_AutoModerationActionMetadataCustomMessage` does not have key `channel_id` [bad-typed-dict-key] +ERROR discord/automod.py:167:47-59: TypedDict `_AutoModerationActionMetadataTimeout` does not have key `channel_id` [bad-typed-dict-key] +ERROR discord/automod.py:171:23-96: No matching overload found for function `AutoModRuleAction.__init__` called with arguments: (type=Literal[AutoModRuleActionType.block_message], custom_message=object | str | @_ | None) [no-matching-overload] +ERROR discord/automod.py:304:32-58: Argument `list[str] | object | None` is not assignable to parameter `keyword_filter` with type `list[str] | None` in function `AutoModTrigger.__init__` [bad-argument-type] +ERROR discord/automod.py:305:32-58: Argument `list[str] | object | None` is not assignable to parameter `regex_patterns` with type `list[str] | None` in function `AutoModTrigger.__init__` [bad-argument-type] +ERROR discord/automod.py:306:28-50: Argument `list[str] | object | None` is not assignable to parameter `allow_list` with type `list[str] | None` in function `AutoModTrigger.__init__` [bad-argument-type] +ERROR discord/automod.py:310:64-87: Argument `list[Literal[1, 2, 3]] | list[int] | object` is not assignable to parameter `value` with type `Sequence[int]` in function `discord.flags.ArrayFlags._from_value` [bad-argument-type] +ERROR discord/automod.py:310:101-123: Argument `list[str] | object | None` is not assignable to parameter `allow_list` with type `list[str] | None` in function `AutoModTrigger.__init__` [bad-argument-type] +ERROR discord/automod.py:315:31-62: Argument `int | object | None` is not assignable to parameter `mention_limit` with type `int | None` in function `AutoModTrigger.__init__` [bad-argument-type] +ERROR discord/automod.py:316:41-84: Argument `bool | object | None` is not assignable to parameter `mention_raid_protection` with type `bool | None` in function `AutoModTrigger.__init__` [bad-argument-type] +ERROR discord/automod.py:388:92-120: Argument `object | TypedDict[_AutoModerationTriggerMetadataKeyword] | TypedDict[_AutoModerationTriggerMetadataKeywordPreset] | None` is not assignable to parameter `data` with type `TypedDict[Empty] | TypedDict[_AutoModerationTriggerMetadataKeyword] | TypedDict[_AutoModerationTriggerMetadataKeywordPreset] | TypedDict[_AutoModerationTriggerMetadataMentionLimit] | None` in function `AutoModTrigger.from_data` [bad-argument-type] +ERROR discord/automod.py:434:20-85: No matching overload found for function `filter.__new__` called with arguments: (type[filter[_T]], None, map[CategoryChannel | ForumChannel | StageChannel | TextChannel | Thread | VoiceChannel | None]) [no-matching-overload] +ERROR discord/automod.py:512:31-35: Cannot set item in `dict[str, list[dict[str, Any]]]` [unsupported-operation] +ERROR discord/automod.py:515:37-53: Cannot set item in `dict[str, list[dict[str, Any]]]` [unsupported-operation] +ERROR discord/automod.py:520:47-63: Cannot set item in `dict[str, list[dict[str, Any]]]` [unsupported-operation] +ERROR discord/automod.py:523:34-41: Cannot set item in `dict[str, list[dict[str, Any]]]` [unsupported-operation] +ERROR discord/automod.py:526:39-67: Cannot set item in `dict[str, list[dict[str, Any]]]` [unsupported-operation] +ERROR discord/automod.py:529:42-73: Cannot set item in `dict[str, list[dict[str, Any]]]` [unsupported-operation] +ERROR discord/backoff.py:63:56-61: Default `Literal[False]` is not assignable to parameter `integral` with type `T` [bad-function-definition] +ERROR discord/channel.py:374:9-16: Class member `TextChannel._update` overrides parent class `GuildChannel` in an inconsistent manner [bad-override] +ERROR discord/channel.py:393:9-13: Class member `TextChannel.type` overrides parent class `GuildChannel` in an inconsistent manner [bad-override] +ERROR discord/channel.py:1098:15-27: Class member `VocalGuildChannel._get_channel` overrides parent class `Messageable` in an inconsistent manner [bad-override] +ERROR discord/channel.py:1107:9-16: Class member `VocalGuildChannel._update` overrides parent class `GuildChannel` in an inconsistent manner [bad-override] +ERROR discord/channel.py:1184:43-47: Argument `Literal[True]` is not assignable to parameter `manage_channels` with type `BoolOrNoneT` in function `discord.permissions.Permissions.update` [bad-argument-type] +ERROR discord/channel.py:1184:62-66: Argument `Literal[True]` is not assignable to parameter `manage_roles` with type `BoolOrNoneT` in function `discord.permissions.Permissions.update` [bad-argument-type] +ERROR discord/channel.py:1546:9-13: Class member `VoiceChannel.type` overrides parent class `VocalGuildChannel` in an inconsistent manner [bad-override] +ERROR discord/channel.py:1770:9-16: Class member `StageChannel._update` overrides parent class `VocalGuildChannel` in an inconsistent manner [bad-override] +ERROR discord/channel.py:1813:9-13: Class member `StageChannel.type` overrides parent class `VocalGuildChannel` in an inconsistent manner [bad-override] +ERROR discord/channel.py:2065:9-16: Class member `CategoryChannel._update` overrides parent class `GuildChannel` in an inconsistent manner [bad-override] +ERROR discord/channel.py:2082:9-13: Class member `CategoryChannel.type` overrides parent class `GuildChannel` in an inconsistent manner [bad-override] +ERROR discord/channel.py:2478:9-16: Class member `ForumChannel._update` overrides parent class `GuildChannel` in an inconsistent manner [bad-override] +ERROR discord/channel.py:2512:9-13: Class member `ForumChannel.type` overrides parent class `GuildChannel` in an inconsistent manner [bad-override] +ERROR discord/channel.py:2619:15-20: Class member `ForumChannel.clone` overrides parent class `GuildChannel` in an inconsistent manner [bad-override] +ERROR discord/channel.py:2637:46-97: Cannot set item in `dict[str, bool | int | list[dict[str, Any]] | str | None]` [unsupported-operation] +ERROR discord/channel.py:3036:47-84: Cannot set item in `dict[str, int | str | None]` [unsupported-operation] +ERROR discord/client.py:723:59-70: Unpacked keyword argument `bool | int | None` is not assignable to parameter `initial` with type `bool` in function `discord.gateway.DiscordWebSocket.from_client` [bad-argument-type] +ERROR discord/client.py:723:59-70: Unpacked keyword argument `bool | int | None` is not assignable to parameter `gateway` with type `URL | None` in function `discord.gateway.DiscordWebSocket.from_client` [bad-argument-type] +ERROR discord/client.py:723:59-70: Unpacked keyword argument `bool | int | None` is not assignable to parameter `session` with type `str | None` in function `discord.gateway.DiscordWebSocket.from_client` [bad-argument-type] +ERROR discord/client.py:723:59-70: Unpacked keyword argument `bool | int | None` is not assignable to parameter `resume` with type `bool` in function `discord.gateway.DiscordWebSocket.from_client` [bad-argument-type] +ERROR discord/client.py:723:59-70: Unpacked keyword argument `bool | int | None` is not assignable to parameter `encoding` with type `str` in function `discord.gateway.DiscordWebSocket.from_client` [bad-argument-type] +ERROR discord/client.py:723:59-70: Unpacked keyword argument `bool | int | None` is not assignable to parameter `compress` with type `bool` in function `discord.gateway.DiscordWebSocket.from_client` [bad-argument-type] +ERROR discord/client.py:731:33-105: No matching overload found for function `typing.MutableMapping.update` called with arguments: (sequence=int | None, resume=bool, session=str | None) [no-matching-overload] +ERROR discord/client.py:733:44-59: Cannot set item in `dict[str, bool | int | None]` [unsupported-operation] +ERROR discord/client.py:756:37-762:22: No matching overload found for function `typing.MutableMapping.update` called with arguments: (sequence=int | None, gateway=URL, initial=Literal[False], resume=Literal[True], session=str | None) [no-matching-overload] +ERROR discord/client.py:782:33-787:18: No matching overload found for function `typing.MutableMapping.update` called with arguments: (sequence=int | None, gateway=URL, resume=Literal[True], session=str | None) [no-matching-overload] +ERROR discord/client.py:2975:83-99: Argument `int` is not assignable to parameter `owner_type` with type `Literal[1, 2]` in function `discord.http.HTTPClient.create_entitlement` [bad-argument-type] +ERROR discord/components.py:213:21-36: `int` is not assignable to TypedDict key `type` with type `Literal[1]` [bad-typed-dict-key] +ERROR discord/components.py:297:22-38: `int` is not assignable to TypedDict key `style` with type `Literal[1, 2, 3, 4, 5, 6]` [bad-typed-dict-key] +ERROR discord/components.py:412:40-77: `list[int]` is not assignable to TypedDict key `channel_types` with type `list[Literal[0, 1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 15, 16]]` [bad-typed-dict-key] +ERROR discord/components.py:512:27-31: `None` is not assignable to attribute `_emoji` with type `PartialEmoji` [bad-assignment] +ERROR discord/components.py:613:21-36: `int` is not assignable to TypedDict key `type` with type `Literal[4]` [bad-typed-dict-key] +ERROR discord/components.py:614:22-38: `int` is not assignable to TypedDict key `style` with type `Literal[1, 2]` [bad-typed-dict-key] +ERROR discord/components.py:695:21-37: `str` is not assignable to TypedDict key `type` with type `Literal['channel', 'role', 'user']` [bad-typed-dict-key] +ERROR discord/components.py:802:21-36: `int` is not assignable to TypedDict key `type` with type `Literal[9]` [bad-typed-dict-key] +ERROR discord/components.py:908:21-36: `int` is not assignable to TypedDict key `type` with type `Literal[10]` [bad-typed-dict-key] +ERROR discord/components.py:1139:21-36: `int` is not assignable to TypedDict key `type` with type `Literal[12]` [bad-typed-dict-key] +ERROR discord/components.py:1196:21-36: `int` is not assignable to TypedDict key `type` with type `Literal[13]` [bad-typed-dict-key] +ERROR discord/components.py:1249:21-36: `int` is not assignable to TypedDict key `type` with type `Literal[14]` [bad-typed-dict-key] +ERROR discord/components.py:1251:24-42: `int` is not assignable to TypedDict key `spacing` with type `Literal[1, 2]` [bad-typed-dict-key] +ERROR discord/components.py:1324:21-36: `int` is not assignable to TypedDict key `type` with type `Literal[17]` [bad-typed-dict-key] +ERROR discord/components.py:1326:27-63: `list[TypedDict[ActionRow] | TypedDict[ButtonComponent] | TypedDict[ContainerComponent] | TypedDict[FileComponent] | TypedDict[FileUploadComponent] | TypedDict[LabelComponent] | TypedDict[MediaGalleryComponent] | TypedDict[SectionComponent] | TypedDict[SelectMenu] | TypedDict[SeparatorComponent] | TypedDict[TextComponent] | TypedDict[TextInput] | TypedDict[ThumbnailComponent]]` is not assignable to TypedDict key `components` with type `list[TypedDict[ActionRow] | TypedDict[ContainerComponent] | TypedDict[FileComponent] | TypedDict[MediaGalleryComponent] | TypedDict[SectionComponent] | TypedDict[SeparatorComponent] | TypedDict[TextComponent] | TypedDict[ThumbnailComponent]]` [bad-typed-dict-key] +ERROR discord/components.py:1380:21-36: `int` is not assignable to TypedDict key `type` with type `Literal[18]` [bad-typed-dict-key] +ERROR discord/components.py:1444:21-36: `int` is not assignable to TypedDict key `type` with type `Literal[19]` [bad-typed-dict-key] +ERROR discord/embeds.py:246:28-55: `Colour` is not assignable to attribute `_colour` with type `None` [bad-assignment] +ERROR discord/embeds.py:308:9-15: Class member `Embed.__eq__` overrides parent class `object` in an inconsistent manner [bad-override] +ERROR discord/embeds.py:343:28-33: `Colour` is not assignable to attribute `_colour` with type `None` [bad-assignment] +ERROR discord/embeds.py:345:28-47: `Colour` is not assignable to attribute `_colour` with type `None` [bad-assignment] +ERROR discord/embeds.py:362:31-35: `None` is not assignable to attribute `_timestamp` with type `datetime` [bad-assignment] +ERROR discord/emoji.py:119:14-20: Class member `Emoji._state` overrides parent class `AssetMixin` in an inconsistent manner [bad-override] +ERROR discord/emoji.py:166:9-12: Class member `Emoji.url` overrides parent class `AssetMixin` in an inconsistent manner [bad-override] +ERROR discord/emoji.py:279:32-59: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/enums.py:96:22-42: Expected string literal "cls" [invalid-argument] +ERROR discord/enums.py:113:9-17: ClassVar `EnumMeta.__name__` overrides instance variable of the same name in parent class `type` [bad-override] +ERROR discord/enums.py:960:5-9: Class member `StatusDisplayType.name` overrides parent class `Enum` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/bot.py:89:33-54: `type[(TypeVar[BotT], Message) -> Awaitable[Iterable[str] | str] | Iterable[str] | str]` is not subscriptable [unsupported-operation] +ERROR discord/ext/commands/cog.py:229:38-43: Cannot set item in `dict[Unknown, Command[Any, Ellipsis, Any]]` [unsupported-operation] +ERROR discord/ext/commands/cog.py:268:5-32: Object of class `FunctionType` has no attribute `__cog_special_method__` [missing-attribute] +ERROR discord/ext/commands/cog.py:497:24-39: Object of class `FunctionType` has no attribute `__func__` [missing-attribute] +ERROR discord/ext/commands/cog.py:527:13-36: Object of class `FunctionType` has no attribute `__cog_listener__` [missing-attribute] +ERROR discord/ext/commands/cog.py:530:17-46: Object of class `FunctionType` has no attribute `__cog_listener_names__` [missing-attribute] +ERROR discord/ext/commands/cog.py:532:17-46: Object of class `FunctionType` has no attribute `__cog_listener_names__` [missing-attribute] +ERROR discord/ext/commands/context.py:92:41-70: No matching overload found for function `discord.utils.CachedSlotProperty.__get__` called with arguments: (Interaction[BotT], type[Interaction]) [no-matching-overload] +ERROR discord/ext/commands/context.py:93:19-48: No matching overload found for function `discord.utils.CachedSlotProperty.__get__` called with arguments: (Interaction[BotT], type[Interaction]) [no-matching-overload] +ERROR discord/ext/commands/context.py:256:19-38: No matching overload found for function `discord.utils.CachedSlotProperty.__get__` called with arguments: (Interaction[BotT], type[Interaction]) [no-matching-overload] +ERROR discord/ext/commands/context.py:287:50-71: No matching overload found for function `discord.utils.CachedSlotProperty.__get__` called with arguments: (Interaction[BotT], type[Interaction]) [no-matching-overload] +ERROR discord/ext/commands/context.py:411:15-27: Class member `Context._get_channel` overrides parent class `Messageable` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/context.py:492:47-51: Argument `Literal[True]` is not assignable to parameter `manage_channels` with type `BoolOrNoneT` in function `discord.permissions.Permissions.update` [bad-argument-type] +ERROR discord/ext/commands/context.py:492:66-70: Argument `Literal[True]` is not assignable to parameter `manage_roles` with type `BoolOrNoneT` in function `discord.permissions.Permissions.update` [bad-argument-type] +ERROR discord/ext/commands/context.py:527:47-51: Argument `Literal[True]` is not assignable to parameter `manage_channels` with type `BoolOrNoneT` in function `discord.permissions.Permissions.update` [bad-argument-type] +ERROR discord/ext/commands/context.py:527:66-70: Argument `Literal[True]` is not assignable to parameter `manage_roles` with type `BoolOrNoneT` in function `discord.permissions.Permissions.update` [bad-argument-type] +ERROR discord/ext/commands/context.py:534:25-29: Argument `Literal[True]` is not assignable to parameter `embed_links` with type `BoolOrNoneT` in function `discord.permissions.Permissions.update` [bad-argument-type] +ERROR discord/ext/commands/context.py:535:26-30: Argument `Literal[True]` is not assignable to parameter `attach_files` with type `BoolOrNoneT` in function `discord.permissions.Permissions.update` [bad-argument-type] +ERROR discord/ext/commands/context.py:536:31-36: Argument `Literal[False]` is not assignable to parameter `send_tts_messages` with type `BoolOrNoneT` in function `discord.permissions.Permissions.update` [bad-argument-type] +ERROR discord/ext/commands/context.py:783:9-15: Class member `Context.typing` overrides parent class `Messageable` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/context.py:847:19-44: No matching overload found for function `discord.utils.CachedSlotProperty.__get__` called with arguments: (Interaction[BotT], type[Interaction]) [no-matching-overload] +ERROR discord/ext/commands/context.py:1137:12-37: No matching overload found for function `discord.utils.CachedSlotProperty.__get__` called with arguments: (Interaction[BotT], type[Interaction]) [no-matching-overload] +ERROR discord/ext/commands/context.py:1138:25-50: No matching overload found for function `discord.utils.CachedSlotProperty.__get__` called with arguments: (Interaction[BotT], type[Interaction]) [no-matching-overload] +ERROR discord/ext/commands/context.py:1140:30-55: No matching overload found for function `discord.utils.CachedSlotProperty.__get__` called with arguments: (Interaction[BotT], type[Interaction]) [no-matching-overload] +ERROR discord/ext/commands/converter.py:379:16-48: Returned type `tuple[Guild | int | None, int, int]` is not assignable to declared return type `tuple[int | None, int, int]` [bad-return] +ERROR discord/ext/commands/converter.py:402:47-54: Argument `(CategoryChannel & Messageable) | (ForumChannel & Messageable) | (Messageable & PrivateChannel) | PartialMessageable | StageChannel | TextChannel | Thread | VoiceChannel` is not assignable to parameter `channel` with type `DMChannel | GroupChannel | PartialMessageable | StageChannel | TextChannel | Thread | VoiceChannel` in function `discord.message.PartialMessage.__init__` [bad-argument-type] +ERROR discord/ext/commands/converter.py:1119:9-26: Class member `Greedy.__class_getitem__` overrides parent class `list` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/converter.py:1128:31-35: Expected a type form, got instance of `tuple[()] | Any` [not-a-type] +ERROR discord/ext/commands/converter.py:1280:52-59: Expected class object, got `type[Generic]` [invalid-argument] +ERROR discord/ext/commands/converter.py:1326:39-41: Cannot instantiate `Converter` because it is a protocol [bad-instantiation] +ERROR discord/ext/commands/cooldowns.py:171:9-22: Class member `DynamicCooldownMapping.create_bucket` overrides parent class `CooldownMapping` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/core.py:462:22-46: Object of class `FunctionType` has no attribute `__commands_checks__` [missing-attribute] +ERROR discord/ext/commands/core.py:470:24-50: Object of class `FunctionType` has no attribute `__commands_cooldown__` [missing-attribute] +ERROR discord/ext/commands/core.py:475:49-67: Argument `Literal[BucketType.default]` is not assignable to parameter `type` with type `(Context[Any]) -> Any` in function `discord.ext.commands.cooldowns.CooldownMapping.__init__` [bad-argument-type] +ERROR discord/ext/commands/core.py:483:31-64: Object of class `FunctionType` has no attribute `__commands_max_concurrency__` [missing-attribute] +ERROR discord/ext/commands/core.py:495:45-65: `object | None` is not assignable to `GroupMixin[Any] | None` [bad-assignment] +ERROR discord/ext/commands/core.py:500:29-51: Object of class `FunctionType` has no attribute `__before_invoke__` [missing-attribute] +ERROR discord/ext/commands/core.py:508:28-49: Object of class `FunctionType` has no attribute `__after_invoke__` [missing-attribute] +ERROR discord/ext/commands/core.py:680:52-73: Object of class `NoneType` has no attribute `cog_command_error` [missing-attribute] +ERROR discord/ext/commands/core.py:833:28-35: Argument `GroupMixin[Any]` is not assignable to parameter `object` with type `Group[Any, Ellipsis, Any]` in function `list.append` [bad-argument-type] +ERROR discord/ext/commands/core.py:919:47-68: Object of class `NoneType` has no attribute `cog_before_invoke` [missing-attribute] +ERROR discord/ext/commands/core.py:939:47-67: Object of class `NoneType` has no attribute `cog_after_invoke` [missing-attribute] +ERROR discord/ext/commands/core.py:1183:16-43: Object of class `type` has no attribute `__cog_name__` [missing-attribute] +ERROR discord/ext/commands/core.py:1233:35-62: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR discord/ext/commands/core.py:1235:35-64: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR discord/ext/commands/core.py:1237:35-62: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR discord/ext/commands/core.py:1249:25-122: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR discord/ext/commands/core.py:1253:35-46: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR discord/ext/commands/core.py:1257:35-49: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR discord/ext/commands/core.py:1259:35-49: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR discord/ext/commands/core.py:1261:31-45: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR discord/ext/commands/core.py:1263:31-42: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR discord/ext/commands/core.py:1265:31-42: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR discord/ext/commands/core.py:1312:58-71: Object of class `NoneType` has no attribute `cog_check` [missing-attribute] +ERROR discord/ext/commands/core.py:1502:9-16: Implementation signature `(self: Self@GroupMixin, name: str = ..., cls: type[Command[Any, Ellipsis, Any]] = ..., *args: Any, **kwargs: Unpack[TypedDict[_CommandDecoratorKwargs]]) -> Any` does not accept all arguments that overload signature `(self: GroupMixin[CogT], name: str = ..., *args: Any, **kwargs: Unpack[TypedDict[_CommandDecoratorKwargs]]) -> [ContextT, P, T](((CogT, ContextT, ParamSpec(P)) -> Coroutine[Any, Any, T]) | ((ContextT, ParamSpec(P)) -> Coroutine[Any, Any, T])) -> Command[CogT, P, T]` accepts [inconsistent-overload] +ERROR discord/ext/commands/core.py:1552:29-66: No matching overload found for function `command` called with arguments: (*tuple[Any, ...], name=str, cls=type[Command[Any, Ellipsis, Any]], **TypedDict[_CommandDecoratorKwargs]) [no-matching-overload] +ERROR discord/ext/commands/core.py:1559:9-14: Implementation signature `(self: Self@GroupMixin, name: str = ..., cls: type[Group[Any, Ellipsis, Any]] = ..., *args: Any, **kwargs: Unpack[TypedDict[_GroupDecoratorKwargs]]) -> Any` does not accept all arguments that overload signature `(self: GroupMixin[CogT], name: str = ..., *args: Any, **kwargs: Unpack[TypedDict[_GroupDecoratorKwargs]]) -> [ContextT, P, T](((CogT, ContextT, ParamSpec(P)) -> Coroutine[Any, Any, T]) | ((ContextT, ParamSpec(P)) -> Coroutine[Any, Any, T])) -> Group[CogT, P, T]` accepts [inconsistent-overload] +ERROR discord/ext/commands/core.py:1609:27-64: No matching overload found for function `group` called with arguments: (*tuple[Any, ...], name=str, cls=type[Group[Any, Ellipsis, Any]], **TypedDict[_GroupDecoratorKwargs]) [no-matching-overload] +ERROR discord/ext/commands/core.py:1735:13-21: Implementation signature `(self: Self@_CommandDecorator, func: (...) -> Coroutine[Any, Any, T], /) -> Any` does not accept all arguments that overload signature `(self: Self@_CommandDecorator, func: (CogT, ContextT, ParamSpec(P)) -> Coroutine[Any, Any, T], /) -> Command[CogT, P, T]` accepts [inconsistent-overload] +ERROR discord/ext/commands/core.py:1738:13-21: Implementation signature `(self: Self@_CommandDecorator, func: (...) -> Coroutine[Any, Any, T], /) -> Any` does not accept all arguments that overload signature `(self: Self@_CommandDecorator, func: (ContextT, ParamSpec(P)) -> Coroutine[Any, Any, T], /) -> Command[None, P, T]` accepts [inconsistent-overload] +ERROR discord/ext/commands/core.py:1744:13-21: Implementation signature `(self: Self@_GroupDecorator, func: (...) -> Coroutine[Any, Any, T], /) -> Any` does not accept all arguments that overload signature `(self: Self@_GroupDecorator, func: (CogT, ContextT, ParamSpec(P)) -> Coroutine[Any, Any, T], /) -> Group[CogT, P, T]` accepts [inconsistent-overload] +ERROR discord/ext/commands/core.py:1747:13-21: Implementation signature `(self: Self@_GroupDecorator, func: (...) -> Coroutine[Any, Any, T], /) -> Any` does not accept all arguments that overload signature `(self: Self@_GroupDecorator, func: (ContextT, ParamSpec(P)) -> Coroutine[Any, Any, T], /) -> Group[None, P, T]` accepts [inconsistent-overload] +ERROR discord/ext/commands/core.py:1942:17-41: Object of class `FunctionType` has no attribute `__commands_checks__` [missing-attribute] +ERROR discord/ext/commands/core.py:1944:13-37: Object of class `FunctionType` has no attribute `__commands_checks__` [missing-attribute] +ERROR discord/ext/commands/core.py:1949:9-28: Object of class `FunctionType` has no attribute `predicate` [missing-attribute] +ERROR discord/ext/commands/core.py:1956:9-28: Object of class `FunctionType` has no attribute `predicate` [missing-attribute] +ERROR discord/ext/commands/core.py:2365:17-41: Object of class `FunctionType` has no attribute `__commands_checks__` [missing-attribute] +ERROR discord/ext/commands/core.py:2367:13-37: Object of class `FunctionType` has no attribute `__commands_checks__` [missing-attribute] +ERROR discord/ext/commands/core.py:2368:13-53: Object of class `FunctionType` has no attribute `__discord_app_commands_guild_only__` [missing-attribute] +ERROR discord/ext/commands/core.py:2373:9-28: Object of class `FunctionType` has no attribute `predicate` [missing-attribute] +ERROR discord/ext/commands/core.py:2380:9-28: Object of class `FunctionType` has no attribute `predicate` [missing-attribute] +ERROR discord/ext/commands/core.py:2440:17-41: Object of class `FunctionType` has no attribute `__commands_checks__` [missing-attribute] +ERROR discord/ext/commands/core.py:2442:13-37: Object of class `FunctionType` has no attribute `__commands_checks__` [missing-attribute] +ERROR discord/ext/commands/core.py:2443:13-50: Object of class `FunctionType` has no attribute `__discord_app_commands_is_nsfw__` [missing-attribute] +ERROR discord/ext/commands/core.py:2448:9-28: Object of class `FunctionType` has no attribute `predicate` [missing-attribute] +ERROR discord/ext/commands/core.py:2455:9-28: Object of class `FunctionType` has no attribute `predicate` [missing-attribute] +ERROR discord/ext/commands/core.py:2499:13-39: Object of class `FunctionType` has no attribute `__commands_cooldown__` [missing-attribute] +ERROR discord/ext/commands/core.py:2547:13-39: Object of class `FunctionType` has no attribute `__commands_cooldown__` [missing-attribute] +ERROR discord/ext/commands/core.py:2582:13-46: Object of class `FunctionType` has no attribute `__commands_max_concurrency__` [missing-attribute] +ERROR discord/ext/commands/core.py:2632:31-37: `CogT` is not assignable to upper bound `Context[Any]` of type variable `ContextT` [bad-specialization] +ERROR discord/ext/commands/core.py:2632:32-36: Argument `((CogT, ContextT) -> Coroutine[Any, Any, Any]) | ((ContextT) -> Coroutine[Any, Any, Any])` is not assignable to parameter `coro` with type `((CogT) -> Coroutine[Any, Any, Any]) | ((Unknown, CogT) -> Coroutine[Any, Any, Any])` in function `Command.before_invoke` [bad-argument-type] +ERROR discord/ext/commands/core.py:2634:13-35: Object of class `FunctionType` has no attribute `__before_invoke__` [missing-attribute] +ERROR discord/ext/commands/core.py:2655:30-36: `CogT` is not assignable to upper bound `Context[Any]` of type variable `ContextT` [bad-specialization] +ERROR discord/ext/commands/core.py:2655:31-35: Argument `((CogT, ContextT) -> Coroutine[Any, Any, Any]) | ((ContextT) -> Coroutine[Any, Any, Any])` is not assignable to parameter `coro` with type `((CogT) -> Coroutine[Any, Any, Any]) | ((Unknown, CogT) -> Coroutine[Any, Any, Any])` in function `Command.after_invoke` [bad-argument-type] +ERROR discord/ext/commands/core.py:2657:13-34: Object of class `FunctionType` has no attribute `__after_invoke__` [missing-attribute] +ERROR discord/ext/commands/flags.py:465:32-98: Expected a type form, got instance of `tuple[Unknown, ...]` [not-a-type] +ERROR discord/ext/commands/help.py:248:5-38: Object of class `FunctionType` has no attribute `__help_command_not_overridden__` [missing-attribute] +ERROR discord/ext/commands/help.py:262:14-22: Class member `_HelpCommandImpl.callback` overrides parent class `Command` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/help.py:262:25-50: `BoundMethod[HelpCommand, [BotT](self: HelpCommand, ctx: Context[BotT], /, *, command: str | None = None) -> Coroutine[Unknown, Unknown, None]]` is not assignable to attribute `callback` with type `(self: Self@_HelpCommandImpl, function: ((Context[Any], ...) -> Coroutine[Any, Any, Unknown]) | ((Unknown, Context[Any], ...) -> Coroutine[Any, Any, Unknown])) -> None` [bad-assignment] +ERROR discord/ext/commands/help.py:270:33-41: `BoundMethod[HelpCommand, [BotT](self: HelpCommand, ctx: Context[BotT], error: CommandError, /) -> Coroutine[Unknown, Unknown, None]]` is not assignable to attribute `on_error` with type `Never` [bad-assignment] +ERROR discord/ext/commands/help.py:278:20-24: `None` is not assignable to attribute `cog` with type `(self: Self@_HelpCommandImpl, value: Unknown) -> None` [bad-assignment] +ERROR discord/ext/commands/help.py:311:20-23: `Cog` is not assignable to attribute `cog` with type `(self: Self@_HelpCommandImpl, value: Unknown) -> None` [bad-assignment] +ERROR discord/ext/commands/help.py:319:9-25: Object of class `FunctionType` has no attribute `get_commands` [missing-attribute] +ERROR discord/ext/commands/help.py:320:9-26: Object of class `FunctionType` has no attribute `walk_commands` [missing-attribute] +ERROR discord/ext/commands/help.py:321:20-24: `None` is not assignable to attribute `cog` with type `(self: Self@_HelpCommandImpl, value: Unknown) -> None` [bad-assignment] +ERROR discord/ext/commands/help.py:559:16-38: Returned type `(self: _HelpCommandImpl, value: Unknown) -> None` is not assignable to declared return type `Cog | None` [bad-return] +ERROR discord/ext/commands/help.py:1255:9-24: Class member `DefaultHelpCommand.get_destination` overrides parent class `HelpCommand` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/help.py:1264:15-35: Class member `DefaultHelpCommand.prepare_help_command` overrides parent class `HelpCommand` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/help.py:1520:9-24: Class member `MinimalHelpCommand.get_destination` overrides parent class `HelpCommand` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/help.py:1529:15-35: Class member `MinimalHelpCommand.prepare_help_command` overrides parent class `HelpCommand` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/hybrid.py:61:9-20: Class member `_HybridCommandDecoratorKwargs.description` overrides parent class `_HybridCommandKwargs` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/hybrid.py:69:9-20: Class member `_HybridGroupKwargs.description` overrides parent class `_HybridCommandDecoratorKwargs` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/hybrid.py:73:9-20: Class member `_HybridGroupDecoratorKwargs.description` overrides parent class `_HybridGroupKwargs` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/hybrid.py:113:9-18: Class member `_CallableDefault.__class__` overrides parent class `object` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/hybrid.py:156:43-45: Cannot instantiate `Converter` because it is a protocol [bad-instantiation] +ERROR discord/ext/commands/hybrid.py:232:13-45: Object of class `FunctionType` has no attribute `__hybrid_command_flag__` [missing-attribute] +ERROR discord/ext/commands/hybrid.py:273:63-100: Expected a type form, got instance of `ConverterTransformer` [not-a-type] +ERROR discord/ext/commands/hybrid.py:328:9-39: Object of class `FunctionType` has no attribute `__signature__` [missing-attribute] +ERROR discord/ext/commands/hybrid.py:338:17-47: Object of class `FunctionType` has no attribute `__signature__` [missing-attribute] +ERROR discord/ext/commands/hybrid.py:533:36-66: Expected a valid ParamSpec expression, got `Any` [invalid-param-spec] +ERROR discord/ext/commands/hybrid.py:561:83-104: No matching overload found for function `discord.utils.CachedSlotProperty.__get__` called with arguments: (Interaction[BotT], type[Interaction]) [no-matching-overload] +ERROR discord/ext/commands/hybrid.py:727:75-96: No matching overload found for function `discord.utils.CachedSlotProperty.__get__` called with arguments: (Interaction[BotT], type[Interaction]) [no-matching-overload] +ERROR discord/ext/commands/hybrid.py:790:9-20: Class member `HybridGroup.add_command` overrides parent class `Group` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/hybrid.py:836:9-16: Class member `HybridGroup.command` overrides parent class `Group` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/hybrid.py:860:9-14: Class member `HybridGroup.group` overrides parent class `Group` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/parameters.py:63:13-46: `inspect.Parameter.POSITIONAL_ONLY` is not a valid enum member [invalid-literal] +ERROR discord/ext/commands/parameters.py:64:13-52: `inspect.Parameter.POSITIONAL_OR_KEYWORD` is not a valid enum member [invalid-literal] +ERROR discord/ext/commands/parameters.py:65:13-45: `inspect.Parameter.VAR_POSITIONAL` is not a valid enum member [invalid-literal] +ERROR discord/ext/commands/parameters.py:66:13-43: `inspect.Parameter.KEYWORD_ONLY` is not a valid enum member [invalid-literal] +ERROR discord/ext/commands/parameters.py:67:13-42: `inspect.Parameter.VAR_KEYWORD` is not a valid enum member [invalid-literal] +ERROR discord/ext/commands/parameters.py:115:9-16: Class member `Parameter.replace` overrides parent class `Parameter` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/parameters.py:324:5-15: Class member `Signature.parameters` overrides parent class `Signature` in an inconsistent manner [bad-override] +ERROR discord/ext/commands/view.py:151:53-64: Argument `str | None` is not assignable to parameter `close_quote` with type `str` in function `discord.ext.commands.errors.ExpectedClosingQuoteError.__init__` [bad-argument-type] +ERROR discord/ext/commands/view.py:162:57-68: Argument `str | None` is not assignable to parameter `close_quote` with type `str` in function `discord.ext.commands.errors.ExpectedClosingQuoteError.__init__` [bad-argument-type] +ERROR discord/ext/tasks/__init__.py:212:36-63: `datetime` is not assignable to attribute `_next_iteration` with type `None` [bad-assignment] +ERROR discord/ext/tasks/__init__.py:214:36-80: `datetime` is not assignable to attribute `_next_iteration` with type `None` [bad-assignment] +ERROR discord/ext/tasks/__init__.py:222:49-69: Argument `None` is not assignable to parameter `dt` with type `datetime` in function `Loop._try_sleep_until` [bad-argument-type] +ERROR discord/ext/tasks/__init__.py:224:44-64: `None` is not assignable to attribute `_last_iteration` with type `datetime` [bad-assignment] +ERROR discord/ext/tasks/__init__.py:225:44-71: `datetime` is not assignable to attribute `_next_iteration` with type `None` [bad-assignment] +ERROR discord/ext/tasks/__init__.py:231:56-100: `<=` is not supported between `None` and `datetime` [unsupported-operation] +ERROR discord/ext/tasks/__init__.py:242:53-73: Argument `None` is not assignable to parameter `dt` with type `datetime` in function `Loop._try_sleep_until` [bad-argument-type] +ERROR discord/ext/tasks/__init__.py:243:48-75: `datetime` is not assignable to attribute `_next_iteration` with type `None` [bad-assignment] +ERROR discord/ext/tasks/__init__.py:266:53-73: Argument `None` is not assignable to parameter `dt` with type `datetime` in function `Loop._try_sleep_until` [bad-argument-type] +ERROR discord/ext/tasks/__init__.py:301:26-29: `T` is not assignable to attribute `_injected` with type `None` [bad-assignment] +ERROR discord/ext/tasks/__init__.py:500:33-70: `tuple[type[OSError], type[GatewayNotFound], type[ConnectionClosed], type[ClientError], type[TimeoutError], *tuple[type[BaseException], ...]]` is not assignable to attribute `_valid_exception` with type `tuple[type[OSError], type[GatewayNotFound], type[ConnectionClosed], type[ClientError], type[TimeoutError]]` [bad-assignment] +ERROR discord/ext/tasks/__init__.py:509:33-35: `tuple[()]` is not assignable to attribute `_valid_exception` with type `tuple[type[OSError], type[GatewayNotFound], type[ConnectionClosed], type[ClientError], type[TimeoutError]]` [bad-assignment] +ERROR discord/ext/tasks/__init__.py:525:33-95: `tuple[type[ClientError] | type[ConnectionClosed] | type[GatewayNotFound] | type[OSError] | type[TimeoutError], ...]` is not assignable to attribute `_valid_exception` with type `tuple[type[OSError], type[GatewayNotFound], type[ConnectionClosed], type[ClientError], type[TimeoutError]]` [bad-assignment] +ERROR discord/ext/tasks/__init__.py:579:29-33: `FT` is not assignable to attribute `_before_loop` with type `None` [bad-assignment] +ERROR discord/ext/tasks/__init__.py:607:28-32: `FT` is not assignable to attribute `_after_loop` with type `None` [bad-assignment] +ERROR discord/ext/tasks/__init__.py:774:36-63: `datetime` is not assignable to attribute `_next_iteration` with type `None` [bad-assignment] +ERROR discord/ext/tasks/__init__.py:777:42-62: Argument `None` is not assignable to parameter `dt` with type `datetime` in function `SleepHandle.recalculate` [bad-argument-type] +ERROR discord/file.py:93:42-44: `(IOBase & PathLike[Any]) | (IOBase & bytes) | (IOBase & str) | BufferedIOBase` is not assignable to attribute `fp` with type `BufferedIOBase` [bad-assignment] +ERROR discord/flags.py:1784:9-20: Class member `ArrayFlags._from_value` overrides parent class `BaseFlags` in an inconsistent manner [bad-override] +ERROR discord/flags.py:1881:9-17: Class member `AutoModPresets.to_array` overrides parent class `ArrayFlags` in an inconsistent manner [bad-override] +ERROR discord/gateway.py:137:48-57: Multiple values for argument `name` in function `threading.Thread.__init__` [bad-keyword-argument] +ERROR discord/gateway.py:218:9-11: Class member `VoiceKeepAliveHandler.ws` overrides parent class `KeepAliveHandler` in an inconsistent manner [bad-override] +ERROR discord/gateway.py:336:92-94: Cannot instantiate `_DecompressionContext` because it is a protocol [bad-instantiation] +ERROR discord/gateway.py:466:13-34: Cannot set item in `int` [unsupported-operation] +ERROR discord/gateway.py:466:37-70: Cannot set item in `dict[str, bool | dict[str, str] | int | str | None]` [unsupported-operation] +ERROR discord/gateway.py:470:13-37: Cannot set item in `int` [unsupported-operation] +ERROR discord/gateway.py:470:40-475:14: Cannot set item in `dict[str, bool | dict[str, str] | int | str | None]` [unsupported-operation] +ERROR discord/gateway.py:478:13-36: Cannot set item in `int` [unsupported-operation] +ERROR discord/gateway.py:735:13-34: Cannot set item in `int` [unsupported-operation] +ERROR discord/gateway.py:735:37-42: Cannot set item in `dict[str, bool | int]` [unsupported-operation] +ERROR discord/gateway.py:738:13-37: Cannot set item in `int` [unsupported-operation] +ERROR discord/gateway.py:738:40-48: Cannot set item in `dict[str, bool | int]` [unsupported-operation] +ERROR discord/gateway.py:741:13-34: Cannot set item in `int` [unsupported-operation] +ERROR discord/gateway.py:741:37-42: Cannot set item in `dict[str, bool | int]` [unsupported-operation] +ERROR discord/guild.py:617:53-95: `object | None` is not assignable to attribute `max_stage_video_users` with type `int | None` [bad-assignment] +ERROR discord/guild.py:631:58-97: `object | None` is not assignable to attribute `approximate_presence_count` with type `int | None` [bad-assignment] +ERROR discord/guild.py:632:56-93: `object | None` is not assignable to attribute `approximate_member_count` with type `int | None` [bad-assignment] +ERROR discord/guild.py:633:51-99: `bool | object` is not assignable to attribute `premium_progress_bar_enabled` with type `bool` [bad-assignment] +ERROR discord/guild.py:1400:22-40: Argument `int` is not assignable to parameter `channel_type` with type `Literal[0, 1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 15, 16]` in function `discord.http.HTTPClient.create_channel` [bad-argument-type] +ERROR discord/guild.py:1517:32-37: Cannot set item in `dict[str, int]` [unsupported-operation] +ERROR discord/guild.py:1627:37-79: Cannot set item in `dict[str, int]` [unsupported-operation] +ERROR discord/guild.py:1735:37-79: Cannot set item in `dict[str, int]` [unsupported-operation] +ERROR discord/guild.py:1908:32-37: Cannot set item in `dict[str, int]` [unsupported-operation] +ERROR discord/guild.py:1932:53-113: Cannot set item in `dict[str, int]` [unsupported-operation] +ERROR discord/guild.py:1934:53-122: Cannot set item in `dict[str, int]` [unsupported-operation] +ERROR discord/guild.py:1947:41-78: Cannot set item in `dict[str, int]` [unsupported-operation] +ERROR discord/guild.py:1961:18-22: Argument `TypedDict[CategoryChannel] | TypedDict[ForumChannel] | TypedDict[MediaChannel] | TypedDict[NewsChannel] | TypedDict[StageChannel] | TypedDict[TextChannel] | TypedDict[ThreadChannel] | TypedDict[VoiceChannel]` is not assignable to parameter `data` with type `TypedDict[ForumChannel] | TypedDict[MediaChannel]` in function `discord.channel.ForumChannel.__init__` [bad-argument-type] +ERROR discord/guild.py:3375:23-95: `EntityType | Any | None` is not assignable to variable `entity_type` with type `EntityType` [bad-assignment] +ERROR discord/guild.py:3389:38-55: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/guild.py:3400:40-59: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/guild.py:3413:37-47: Object of class `NoneType` has no attribute `id` [missing-attribute] +ERROR discord/guild.py:3437:42-50: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/guild.py:3964:37-48: Cannot set item in `dict[str, list[Unknown]]` [unsupported-operation] +ERROR discord/guild.py:3967:33-40: Cannot set item in `dict[str, list[Unknown]]` [unsupported-operation] +ERROR discord/guild.py:4290:52-64: `int` is not assignable to `Literal[1, 10, 11, 12, 13, 14, 15, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 40, 41, 42, 50, 51, 52, 60, 61, 62, 72, 73, 74, 75, 80, 81, 82, 83, 84, 85, 90, 91, 92, 100, 101, 102, 110, 111, 112, 121, 130, 131, 132, 140, 141, 142, 143, 144, 145, 146, 150, 151, 163, 164, 165, 166, 167, 190, 191] | None` [bad-assignment] +ERROR discord/guild.py:4717:32-81: No matching overload found for function `discord.utils.parse_time` called with arguments: (object | None) [no-matching-overload] +ERROR discord/guild.py:4728:32-78: No matching overload found for function `discord.utils.parse_time` called with arguments: (object | None) [no-matching-overload] +ERROR discord/guild.py:4963:18-61: Argument `int | None` is not assignable to parameter `mode` with type `Literal[0, 1] | None` in function `discord.http.HTTPClient.edit_guild_onboarding` [bad-argument-type] +ERROR discord/http.py:113:12-44: Cannot index into `reify` [bad-index] +ERROR discord/http.py:113:12-44: Cannot index into `reify[CIMultiDictProxy[str]]` [bad-index] +ERROR discord/http.py:190:34-46: Cannot set item in `dict[str, list[TypedDict[Embed] | Unknown]]` [unsupported-operation] +ERROR discord/http.py:192:34-38: Cannot set item in `dict[str, list[TypedDict[Embed] | Unknown]]` [unsupported-operation] +ERROR discord/http.py:196:37-57: Cannot set item in `dict[str, list[TypedDict[Embed] | Unknown]]` [unsupported-operation] +ERROR discord/http.py:207:28-38: Cannot set item in `dict[str, list[TypedDict[Embed] | Unknown]]` [unsupported-operation] +ERROR discord/http.py:208:36-40: Cannot set item in `dict[str, list[TypedDict[Embed] | Unknown]]` [unsupported-operation] +ERROR discord/http.py:211:40-57: Cannot set item in `dict[str, list[TypedDict[Embed] | Unknown]]` [unsupported-operation] +ERROR discord/http.py:215:38-46: Cannot set item in `dict[str, list[TypedDict[Embed] | Unknown]]` [unsupported-operation] +ERROR discord/http.py:219:22-25: Cannot set item in `dict[str, list[TypedDict[Embed] | Unknown]]` [unsupported-operation] +ERROR discord/http.py:221:33-48: Cannot set item in `dict[str, list[TypedDict[Embed] | Unknown]]` [unsupported-operation] +ERROR discord/http.py:223:31-39: Cannot set item in `dict[str, list[TypedDict[Embed] | Unknown]]` [unsupported-operation] +ERROR discord/http.py:226:28-39: Cannot set item in `dict[str, list[TypedDict[Embed] | Unknown]]` [unsupported-operation] +ERROR discord/http.py:229:34-45: Cannot set item in `dict[str, list[TypedDict[Embed] | Unknown]]` [unsupported-operation] +ERROR discord/http.py:233:43-102: Cannot set item in `dict[str, list[TypedDict[Embed] | Unknown]]` [unsupported-operation] +ERROR discord/http.py:235:43-69: Cannot set item in `dict[str, list[TypedDict[Embed] | Unknown]]` [unsupported-operation] +ERROR discord/http.py:237:39-74: Cannot set item in `dict[str, list[TypedDict[Embed] | Unknown]]` [unsupported-operation] +ERROR discord/http.py:241:43-70: Cannot set item in `dict[str, list[TypedDict[Embed] | Unknown]]` [unsupported-operation] +ERROR discord/http.py:242:9-52: Cannot set item in `list[TypedDict[Embed] | Unknown]` [unsupported-operation] +ERROR discord/http.py:263:39-51: Cannot set item in `dict[str, list[TypedDict[Embed] | Unknown]]` [unsupported-operation] +ERROR discord/http.py:282:17-287:18: Argument `dict[str, BufferedIOBase | str]` is not assignable to parameter `object` with type `dict[str, str]` in function `list.append` [bad-argument-type] +ERROR discord/http.py:399:26-37: Object of class `reify` has no attribute `get` [missing-attribute] +ERROR discord/http.py:402:38-49: Object of class `reify` has no attribute `get` [missing-attribute] +ERROR discord/http.py:404:34-45: Object of class `reify` has no attribute `get` [missing-attribute] +ERROR discord/http.py:407:23-34: Object of class `reify` has no attribute `get` [missing-attribute] +ERROR discord/http.py:411:59-87: Cannot index into `reify` [bad-index] +ERROR discord/http.py:411:59-87: Cannot index into `reify[CIMultiDictProxy[str]]` [bad-index] +ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `method` with type `str` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type] +ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `protocols` with type `Iterable[str]` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type] +ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `timeout` with type `float` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type] +ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `receive_timeout` with type `float | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type] +ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `autoclose` with type `bool` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type] +ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `autoping` with type `bool` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type] +ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `heartbeat` with type `float | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type] +ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `origin` with type `str | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type] +ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `params` with type `Mapping[str, Sequence[float | int | str] | float | int | str] | Sequence[tuple[str, Sequence[float | int | str] | float | int | str]] | str | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type] +ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `headers` with type `CIMultiDict[str] | CIMultiDictProxy[str] | Iterable[tuple[istr | str, str]] | Mapping[istr, str] | Mapping[str, str] | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type] +ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `proxy` with type `URL | str | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type] +ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `ssl` with type `Fingerprint | SSLContext | bool` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type] +ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `verify_ssl` with type `bool | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type] +ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `fingerprint` with type `bytes | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type] +ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `ssl_context` with type `SSLContext | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type] +ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `proxy_headers` with type `CIMultiDict[str] | CIMultiDictProxy[str] | Iterable[tuple[istr | str, str]] | Mapping[istr, str] | Mapping[str, str] | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type] +ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `compress` with type `int` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type] +ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `max_msg_size` with type `int` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type] +ERROR discord/http.py:640:20-29: Cannot use `Ratelimit` as a context manager [bad-context-manager] +ERROR discord/http.py:661:40-60: Object of class `reify` has no attribute `get` [missing-attribute] +ERROR discord/http.py:664:49-92: `in` is not supported between `Literal['X-Ratelimit-Remaining']` and `reify` [not-iterable] +ERROR discord/http.py:664:49-92: `in` is not supported between `Literal['X-Ratelimit-Remaining']` and `reify[CIMultiDictProxy[str]]` [not-iterable] +ERROR discord/http.py:707:36-56: Object of class `reify` has no attribute `get` [missing-attribute] +ERROR discord/http.py:801:44-52: Unpacked keyword argument `str` is not assignable to parameter `allow_redirects` with type `bool` in function `aiohttp.client.ClientSession.get` [bad-argument-type] +ERROR discord/http.py:1075:31-36: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/http.py:1866:41-55: Cannot set item in `dict[str, bool | int]` [unsupported-operation] +ERROR discord/http.py:1869:48-74: Cannot set item in `dict[str, bool | int]` [unsupported-operation] +ERROR discord/http.py:2574:46-65: Cannot set item in `dict[str, list[TypedDict[Prompt]]]` [unsupported-operation] +ERROR discord/http.py:2577:34-41: Cannot set item in `dict[str, list[TypedDict[Prompt]]]` [unsupported-operation] +ERROR discord/http.py:2580:31-35: Cannot set item in `dict[str, list[TypedDict[Prompt]]]` [unsupported-operation] +ERROR discord/integrations.py:200:9-19: Class member `StreamIntegration._from_data` overrides parent class `Integration` in an inconsistent manner [bad-override] +ERROR discord/integrations.py:359:9-19: Class member `BotIntegration._from_data` overrides parent class `Integration` in an inconsistent manner [bad-override] +ERROR discord/interactions.py:214:48-64: `object | TypedDict[ButtonMessageComponentInteractionData] | TypedDict[ChatInputApplicationCommandInteractionData] | TypedDict[MessageApplicationCommandInteractionData] | TypedDict[ModalSubmitInteractionData] | TypedDict[SelectMessageComponentInteractionData] | TypedDict[UserApplicationCommandInteractionData] | None` is not assignable to attribute `data` with type `TypedDict[ButtonMessageComponentInteractionData] | TypedDict[ChatInputApplicationCommandInteractionData] | TypedDict[MessageApplicationCommandInteractionData] | TypedDict[ModalSubmitInteractionData] | TypedDict[SelectMessageComponentInteractionData] | TypedDict[UserApplicationCommandInteractionData] | None` [bad-assignment] +ERROR discord/interactions.py:220:64-102: Type `object` is not iterable [not-iterable] +ERROR discord/interactions.py:250:28-72: `CategoryChannel | ForumChannel | Guild | StageChannel | TextChannel | Thread | VoiceChannel | None` is not assignable to attribute `channel` with type `CategoryChannel | DMChannel | ForumChannel | GroupChannel | StageChannel | TextChannel | Thread | VoiceChannel | None` [bad-assignment] +ERROR discord/interactions.py:307:16-108: Returned type `ConnectionState[ClientT] | Guild | Any | None` is not assignable to declared return type `Guild | None` [bad-return] +ERROR discord/interactions.py:349:32-56: Argument `dict[@_, @_] | TypedDict[ResolvedData]` is not assignable to parameter `resolved` with type `TypedDict[ResolvedData]` in function `discord.app_commands.namespace.Namespace.__init__` [bad-argument-type] +ERROR discord/interactions.py:744:27-78: Argument `_InteractionMessageState` is not assignable to parameter `state` with type `ConnectionState[Client]` in function `discord.message.Message.__init__` [bad-argument-type] +ERROR discord/interactions.py:1427:5-11: Class member `InteractionMessage._state` overrides parent class `Message` in an inconsistent manner [bad-override] +ERROR discord/interactions.py:1430:15-19: Class member `InteractionMessage.edit` overrides parent class `Message` in an inconsistent manner [bad-override] +ERROR discord/invite.py:402:40-59: `object | None` is not assignable to attribute `revoked` with type `bool | None` [bad-assignment] +ERROR discord/invite.py:407:58-96: `object | None` is not assignable to attribute `approximate_presence_count` with type `int | None` [bad-assignment] +ERROR discord/invite.py:408:56-92: `object | None` is not assignable to attribute `approximate_member_count` with type `int | None` [bad-assignment] +ERROR discord/invite.py:470:23-40: Object of class `Object` has no attribute `get_channel` [missing-attribute] +ERROR discord/invite.py:518:9-11: Class member `Invite.id` overrides parent class `Hashable` in an inconsistent manner [bad-override] +ERROR discord/member.py:155:83-123: No matching overload found for function `discord.utils.parse_time` called with arguments: (object | None) [no-matching-overload] +ERROR discord/member.py:329:39-57: `object | None` is not assignable to attribute `_banner` with type `str | None` [bad-assignment] +ERROR discord/member.py:439:24-42: `object | None` is not assignable to attribute `_banner` with type `str | None` [bad-assignment] + WARN discord/member.py:980:73-97: `datetime.datetime.utcnow` is deprecated [deprecated] + WARN discord/member.py:1041:43-67: `datetime.datetime.utcnow` is deprecated [deprecated] +ERROR discord/mentions.py:134:36-40: Cannot set item in `dict[str, list[int]]` [unsupported-operation] +ERROR discord/mentions.py:136:25-30: Cannot set item in `dict[str, list[int]]` [unsupported-operation] +ERROR discord/message.py:242:37-54: `object | None` is not assignable to attribute `title` with type `str | None` [bad-assignment] +ERROR discord/message.py:713:16-73: Returned type `ConnectionState[Client] | Message | None` is not assignable to declared return type `Message | None` [bad-return] +ERROR discord/message.py:2223:92-121: Argument `object | None` is not assignable to parameter `message_snapshots` with type `list[dict[Literal['message'], TypedDict[MessageSnapshot]]] | None` in function `MessageSnapshot._from_value` [bad-argument-type] +ERROR discord/message.py:2404:30-33: Invalid key for TypedDict `Message`, got `str` [bad-typed-dict-key] +ERROR discord/message.py:2558:20-87: No matching overload found for function `filter.__new__` called with arguments: (type[filter[_T]], None, map[CategoryChannel | ForumChannel | StageChannel | TextChannel | Thread | VoiceChannel | None]) [no-matching-overload] +ERROR discord/onboarding.py:181:20-78: No matching overload found for function `filter.__new__` called with arguments: (type[filter[_T]], None, map[CategoryChannel | ForumChannel | StageChannel | TextChannel | Thread | VoiceChannel | None]) [no-matching-overload] +ERROR discord/onboarding.py:293:21-36: `int` is not assignable to TypedDict key `type` with type `Literal[0, 1]` [bad-typed-dict-key] +ERROR discord/onboarding.py:364:20-86: No matching overload found for function `filter.__new__` called with arguments: (type[filter[_T]], None, map[CategoryChannel | ForumChannel | StageChannel | TextChannel | Thread | VoiceChannel | None]) [no-matching-overload] +ERROR discord/partial_emoji.py:100:9-11: Class member `PartialEmoji.id` overrides parent class `_EmojiTag` in an inconsistent manner [bad-override] +ERROR discord/partial_emoji.py:240:9-12: Class member `PartialEmoji.url` overrides parent class `AssetMixin` in an inconsistent manner [bad-override] +ERROR discord/player.py:221:65-73: Object of class `NoneType` has no attribute `pid` [missing-attribute] +ERROR discord/player.py:224:13-22: Object of class `NoneType` has no attribute `kill` [missing-attribute] +ERROR discord/player.py:226:83-91: Object of class `NoneType` has no attribute `pid` [missing-attribute] +ERROR discord/player.py:228:12-21: Object of class `NoneType` has no attribute `poll` [missing-attribute] +ERROR discord/player.py:229:88-96: Object of class `NoneType` has no attribute `pid` [missing-attribute] +ERROR discord/player.py:230:13-29: Object of class `NoneType` has no attribute `communicate` [missing-attribute] +ERROR discord/player.py:231:93-101: Object of class `NoneType` has no attribute `pid` [missing-attribute] +ERROR discord/player.py:231:103-118: Object of class `NoneType` has no attribute `returncode` [missing-attribute] +ERROR discord/player.py:233:92-100: Object of class `NoneType` has no attribute `pid` [missing-attribute] +ERROR discord/player.py:233:102-117: Object of class `NoneType` has no attribute `returncode` [missing-attribute] +ERROR discord/player.py:331:21-44: Argument `BufferedIOBase | str` is not assignable to parameter `object` with type `str` in function `list.append` [bad-argument-type] +ERROR discord/player.py:443:21-44: Argument `BufferedIOBase | str` is not assignable to parameter `object` with type `str` in function `list.append` [bad-argument-type] +ERROR discord/player.py:591:63-100: Argument `() -> tuple[str | None, int | None] | Unknown` is not assignable to parameter `func` with type `(**tuple[*@_]) -> @_` in function `asyncio.events.AbstractEventLoop.run_in_executor` [bad-argument-type] +ERROR discord/player.py:601:67-103: Argument `() -> tuple[str | None, int | None]` is not assignable to parameter `func` with type `(**tuple[*@_]) -> @_` in function `asyncio.events.AbstractEventLoop.run_in_executor` [bad-argument-type] +ERROR discord/player.py:768:24-75: No matching overload found for function `max` called with arguments: (Literal[0], float) [no-matching-overload] +ERROR discord/poll.py:480:28-50: `int` is not assignable to TypedDict key `layout_type` with type `Literal[1]` [bad-typed-dict-key] +ERROR discord/raw_models.py:247:73-102: Type `object` is not iterable [not-iterable] +ERROR discord/raw_models.py:412:21-38: `int` is not assignable to TypedDict key `type` with type `Literal[0, 1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 15, 16]` [bad-typed-dict-key] +ERROR discord/reaction.py:266:22-62: Argument `int | None` is not assignable to parameter `type` with type `Literal[0, 1] | None` in function `discord.http.HTTPClient.get_reaction_users` [bad-argument-type] +ERROR discord/scheduled_event.py:480:40-59: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/scheduled_event.py:486:33-45: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/scheduled_event.py:490:32-44: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/scheduled_event.py:492:23-95: `EntityType | Any | None` is not assignable to variable `entity_type` with type `EntityType` [bad-assignment] +ERROR discord/scheduled_event.py:505:38-55: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/scheduled_event.py:520:41-51: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/scheduled_event.py:524:42-46: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/scheduled_event.py:528:37-41: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/scheduled_event.py:547:49-57: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/scheduled_event.py:550:42-50: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/shard.py:372:9-20: Class member `AutoShardedClient._connection` overrides parent class `Client` in an inconsistent manner [bad-override] +ERROR discord/shard.py:399:9-19: Class member `AutoShardedClient._get_state` overrides parent class `Client` in an inconsistent manner [bad-override] +ERROR discord/shard.py:498:18-29: Class member `AutoShardedClient.shard_count` overrides parent class `Client` in an inconsistent manner [bad-override] +ERROR discord/soundboard.py:82:14-20: Class member `BaseSoundboardSound._state` overrides parent class `AssetMixin` in an inconsistent manner [bad-override] +ERROR discord/soundboard.py:98:9-12: Class member `BaseSoundboardSound.url` overrides parent class `AssetMixin` in an inconsistent manner [bad-override] +ERROR discord/soundboard.py:208:9-16: Class member `SoundboardSound._update` overrides parent class `BaseSoundboardSound` in an inconsistent manner [bad-override] +ERROR discord/stage_instance.py:168:40-59: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/state.py:265:40-90: `Any | None` is not assignable to attribute `raw_presence_flag` with type `bool` [bad-assignment] +ERROR discord/state.py:551:16-98: Returned type `tuple[CategoryChannel | DMChannel | ForumChannel | Guild | PartialMessageable | StageChannel | TextChannel | Thread | VoiceChannel, Guild | None]` is not assignable to declared return type `tuple[CategoryChannel | ForumChannel | PartialMessageable | PrivateChannel | StageChannel | TextChannel | Thread | VoiceChannel, Guild | None]` [bad-return] +ERROR discord/state.py:832:81-89: Argument `dict[@_, @_] | TypedDict[ResolvedData]` is not assignable to parameter `resolved` with type `TypedDict[ResolvedData]` in function `discord.ui.view.ViewStore.dispatch_modal` [bad-argument-type] +ERROR discord/sticker.py:200:14-20: Class member `StickerItem._state` overrides parent class `_StickerTag` in an inconsistent manner [bad-override] +ERROR discord/sticker.py:271:14-20: Class member `Sticker._state` overrides parent class `_StickerTag` in an inconsistent manner [bad-override] +ERROR discord/sticker.py:335:9-19: Class member `StandardSticker._from_data` overrides parent class `Sticker` in an inconsistent manner [bad-override] +ERROR discord/sticker.py:415:9-19: Class member `GuildSticker._from_data` overrides parent class `Sticker` in an inconsistent manner [bad-override] +ERROR discord/template.py:286:38-49: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/threads.py:649:35-43: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/threads.py:651:48-69: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/threads.py:653:33-39: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/threads.py:655:36-45: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/threads.py:657:46-60: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/threads.py:661:32-43: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/threads.py:663:39-76: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/types/components.py:47:5-9: Class member `ActionRow.type` overrides parent class `ComponentBase` in an inconsistent manner [bad-override] +ERROR discord/types/components.py:52:5-9: Class member `ButtonComponent.type` overrides parent class `ComponentBase` in an inconsistent manner [bad-override] +ERROR discord/types/components.py:84:5-9: Class member `StringSelectComponent.type` overrides parent class `SelectComponent` in an inconsistent manner [bad-override] +ERROR discord/types/components.py:89:5-9: Class member `UserSelectComponent.type` overrides parent class `SelectComponent` in an inconsistent manner [bad-override] +ERROR discord/types/components.py:94:5-9: Class member `RoleSelectComponent.type` overrides parent class `SelectComponent` in an inconsistent manner [bad-override] +ERROR discord/types/components.py:99:5-9: Class member `MentionableSelectComponent.type` overrides parent class `SelectComponent` in an inconsistent manner [bad-override] +ERROR discord/types/components.py:104:5-9: Class member `ChannelSelectComponent.type` overrides parent class `SelectComponent` in an inconsistent manner [bad-override] +ERROR discord/types/components.py:110:5-9: Class member `TextInput.type` overrides parent class `ComponentBase` in an inconsistent manner [bad-override] +ERROR discord/types/components.py:122:5-9: Class member `SelectMenu.type` overrides parent class `SelectComponent` in an inconsistent manner [bad-override] +ERROR discord/types/components.py:130:5-9: Class member `SectionComponent.type` overrides parent class `ComponentBase` in an inconsistent manner [bad-override] +ERROR discord/types/components.py:136:5-9: Class member `TextComponent.type` overrides parent class `ComponentBase` in an inconsistent manner [bad-override] +ERROR discord/types/components.py:153:5-9: Class member `ThumbnailComponent.type` overrides parent class `ComponentBase` in an inconsistent manner [bad-override] +ERROR discord/types/components.py:166:5-9: Class member `MediaGalleryComponent.type` overrides parent class `ComponentBase` in an inconsistent manner [bad-override] +ERROR discord/types/components.py:171:5-9: Class member `FileComponent.type` overrides parent class `ComponentBase` in an inconsistent manner [bad-override] +ERROR discord/types/components.py:179:5-9: Class member `SeparatorComponent.type` overrides parent class `ComponentBase` in an inconsistent manner [bad-override] +ERROR discord/types/components.py:185:5-9: Class member `ContainerComponent.type` overrides parent class `ComponentBase` in an inconsistent manner [bad-override] +ERROR discord/types/components.py:192:5-9: Class member `LabelComponent.type` overrides parent class `ComponentBase` in an inconsistent manner [bad-override] +ERROR discord/types/components.py:199:5-9: Class member `FileUploadComponent.type` overrides parent class `ComponentBase` in an inconsistent manner [bad-override] +ERROR discord/types/interactions.py:209:5-9: Class member `ModalSubmitTextInputInteractionData.type` overrides parent class `ComponentBase` in an inconsistent manner [bad-override] +ERROR discord/types/interactions.py:215:5-9: Class member `ModalSubmitSelectInteractionData.type` overrides parent class `ComponentBase` in an inconsistent manner [bad-override] +ERROR discord/types/interactions.py:221:5-9: Class member `ModalSubmitFileUploadInteractionData.type` overrides parent class `ComponentBase` in an inconsistent manner [bad-override] +ERROR discord/types/interactions.py:237:5-9: Class member `ModalSubmitTextDisplayInteractionData.type` overrides parent class `ComponentBase` in an inconsistent manner [bad-override] +ERROR discord/types/interactions.py:242:5-9: Class member `ModalSubmitLabelInteractionData.type` overrides parent class `ComponentBase` in an inconsistent manner [bad-override] +ERROR discord/ui/action_row.py:122:45-78: `ClassVar` arguments may not contain any type variables [invalid-annotation] +ERROR discord/ui/action_row.py:140:14-16: Class member `ActionRow.id` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/action_row.py:140:19-21: `int | None` is not assignable to attribute `id` with type `(self: Self@ActionRow, value: int | None) -> None` [bad-assignment] +ERROR discord/ui/action_row.py:154:9-42: Generic attribute `__action_row_children_items__` of class `ActionRow` is not visible on the class [no-access] +ERROR discord/ui/action_row.py:163:26-56: Object of class `FunctionType` has no attribute `__discord_ui_model_type__` [missing-attribute] +ERROR discord/ui/action_row.py:163:59-91: Object of class `FunctionType` has no attribute `__discord_ui_model_kwargs__` [missing-attribute] +ERROR discord/ui/action_row.py:347:26-33: Cannot set item in `dict[str, int | list[Unknown]]` [unsupported-operation] +ERROR discord/ui/action_row.py:415:30-41: Default `type[Select[Any]]` is not assignable to parameter `cls` with type `type[SelectT]` [bad-function-definition] +ERROR discord/ui/action_row.py:430:34-49: Default `type[UserSelect[Any]]` is not assignable to parameter `cls` with type `type[UserSelectT]` [bad-function-definition] +ERROR discord/ui/action_row.py:446:34-49: Default `type[RoleSelect[Any]]` is not assignable to parameter `cls` with type `type[RoleSelectT]` [bad-function-definition] +ERROR discord/ui/action_row.py:462:37-55: Default `type[ChannelSelect[Any]]` is not assignable to parameter `cls` with type `type[ChannelSelectT]` [bad-function-definition] +ERROR discord/ui/action_row.py:478:41-63: Default `type[MentionableSelect[Any]]` is not assignable to parameter `cls` with type `type[MentionableSelectT]` [bad-function-definition] +ERROR discord/ui/action_row.py:493:34-45: Default `type[Select[Any]]` is not assignable to parameter `cls` with type `type[BaseSelectT]` [bad-function-definition] +ERROR discord/ui/action_row.py:597:9-23: Class member `ActionRow.from_component` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/button.py:162:14-17: Class member `Button.row` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/button.py:162:20-23: `int | None` is not assignable to attribute `row` with type `(self: Self@Button, value: int | None) -> None` [bad-assignment] +ERROR discord/ui/button.py:259:9-23: Class member `Button.from_component` overrides parent class `Item` in an inconsistent manner [bad-param-name-override] +ERROR discord/ui/button.py:276:9-26: Class member `Button.to_component_dict` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/button.py:287:9-27: Class member `Button._refresh_component` overrides parent class `Item` in an inconsistent manner [bad-param-name-override] +ERROR discord/ui/button.py:376:9-39: Object of class `FunctionType` has no attribute `__discord_ui_model_type__` [missing-attribute] +ERROR discord/ui/button.py:377:9-41: Object of class `FunctionType` has no attribute `__discord_ui_model_kwargs__` [missing-attribute] +ERROR discord/ui/container.py:109:44-100: `ClassVar` arguments may not contain any type variables [invalid-annotation] +ERROR discord/ui/container.py:132:14-16: Class member `Container.id` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/container.py:132:19-21: `int | None` is not assignable to attribute `id` with type `(self: Self@Container, value: int | None) -> None` [bad-assignment] +ERROR discord/ui/container.py:151:30-59: Object of class `FunctionType` has no attribute `__discord_ui_model_type__` [missing-attribute] +ERROR discord/ui/container.py:151:62-93: Object of class `FunctionType` has no attribute `__discord_ui_model_kwargs__` [missing-attribute] +ERROR discord/ui/container.py:160:17-54: Object of class `NoneType` has no attribute `_children` [missing-attribute] +ERROR discord/ui/container.py:177:9-41: Generic attribute `__container_children_items__` of class `Container` is not visible on the class [no-access] +ERROR discord/ui/container.py:179:9-21: Class member `Container._update_view` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/container.py:256:26-33: Cannot set item in `dict[str, bool | int | list[dict[str, Any]] | None]` [unsupported-operation] +ERROR discord/ui/container.py:260:9-23: Class member `Container.from_component` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/file.py:162:9-23: Class member `File.from_component` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/file_upload.py:172:9-26: Class member `FileUpload.to_component_dict` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/file_upload.py:175:9-27: Class member `FileUpload._refresh_component` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/file_upload.py:178:9-23: Class member `FileUpload._handle_submit` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/file_upload.py:181:59-89: `in` is not supported between `str` and `object` [not-iterable] +ERROR discord/ui/file_upload.py:184:9-23: Class member `FileUpload.from_component` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/label.py:100:14-16: Class member `Label.id` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/label.py:100:19-21: `int | None` is not assignable to attribute `id` with type `(self: Self@Label, value: int | None) -> None` [bad-assignment] +ERROR discord/ui/label.py:112:9-26: Class member `Label.to_component_dict` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/label.py:114:21-46: `int` is not assignable to TypedDict key `type` with type `Literal[18]` [bad-typed-dict-key] +ERROR discord/ui/label.py:121:29-36: `(self: Self@Label, value: int | None) -> None` is not assignable to TypedDict key `id` with type `int` [bad-typed-dict-key] +ERROR discord/ui/label.py:125:9-23: Class member `Label.from_component` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/media_gallery.py:259:9-23: Class member `MediaGallery.from_component` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/modal.py:159:15-23: Class member `Modal.on_error` overrides parent class `BaseView` in an inconsistent manner [bad-override] +ERROR discord/ui/modal.py:176:9-17: Class member `Modal._refresh` overrides parent class `BaseView` in an inconsistent manner [bad-param-name-override] +ERROR discord/ui/modal.py:202:15-30: Class member `Modal._scheduled_task` overrides parent class `BaseView` in an inconsistent manner [bad-param-name-override] +ERROR discord/ui/section.py:87:14-16: Class member `Section.id` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/section.py:87:19-21: `int | None` is not assignable to attribute `id` with type `(self: Self@Section, value: int | None) -> None` [bad-assignment] +ERROR discord/ui/section.py:251:9-23: Class member `Section.from_component` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/section.py:256:19-31: `int | None` is not assignable to attribute `id` with type `(self: Section[Unknown], value: int | None) -> None` [bad-assignment] +ERROR discord/ui/section.py:275:26-33: Cannot set item in `dict[str, dict[str, Any] | int | list[dict[str, Any]]]` [unsupported-operation] +ERROR discord/ui/select.py:270:14-17: Class member `BaseSelect.row` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/select.py:270:20-23: `int | None` is not assignable to attribute `row` with type `(self: Self@BaseSelect, value: int | None) -> None` [bad-assignment] +ERROR discord/ui/select.py:363:9-26: Class member `BaseSelect.to_component_dict` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/select.py:366:9-27: Class member `BaseSelect._refresh_component` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/select.py:369:9-23: Class member `BaseSelect._handle_submit` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/select.py:382:9-23: Class member `BaseSelect._refresh_state` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/select.py:405:9-23: Class member `BaseSelect.from_component` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/select.py:493:9-15: Class member `Select.values` overrides parent class `BaseSelect` in an inconsistent manner [bad-override] +ERROR discord/ui/select.py:669:9-15: Class member `UserSelect.values` overrides parent class `BaseSelect` in an inconsistent manner [bad-override] +ERROR discord/ui/select.py:777:9-15: Class member `RoleSelect.values` overrides parent class `BaseSelect` in an inconsistent manner [bad-override] +ERROR discord/ui/select.py:881:9-15: Class member `MentionableSelect.values` overrides parent class `BaseSelect` in an inconsistent manner [bad-override] +ERROR discord/ui/select.py:1010:9-15: Class member `ChannelSelect.values` overrides parent class `BaseSelect` in an inconsistent manner [bad-override] +ERROR discord/ui/select.py:1030:26-37: Default `type[Select[Any]]` is not assignable to parameter `cls` with type `type[SelectT]` [bad-function-definition] +ERROR discord/ui/select.py:1046:30-45: Default `type[UserSelect[Any]]` is not assignable to parameter `cls` with type `type[UserSelectT]` [bad-function-definition] +ERROR discord/ui/select.py:1063:30-45: Default `type[RoleSelect[Any]]` is not assignable to parameter `cls` with type `type[RoleSelectT]` [bad-function-definition] +ERROR discord/ui/select.py:1080:33-51: Default `type[ChannelSelect[Any]]` is not assignable to parameter `cls` with type `type[ChannelSelectT]` [bad-function-definition] +ERROR discord/ui/select.py:1097:37-59: Default `type[MentionableSelect[Any]]` is not assignable to parameter `cls` with type `type[MentionableSelectT]` [bad-function-definition] +ERROR discord/ui/select.py:1113:30-41: Default `type[Select[Any]]` is not assignable to parameter `cls` with type `type[BaseSelectT]` [bad-function-definition] +ERROR discord/ui/select.py:1221:9-39: Object of class `FunctionType` has no attribute `__discord_ui_model_type__` [missing-attribute] +ERROR discord/ui/select.py:1222:9-41: Object of class `FunctionType` has no attribute `__discord_ui_model_kwargs__` [missing-attribute] +ERROR discord/ui/select.py:1232:13-45: Object of class `FunctionType` has no attribute `__discord_ui_model_kwargs__` [missing-attribute] +ERROR discord/ui/select.py:1234:13-45: Object of class `FunctionType` has no attribute `__discord_ui_model_kwargs__` [missing-attribute] +ERROR discord/ui/select.py:1250:13-45: Object of class `FunctionType` has no attribute `__discord_ui_model_kwargs__` [missing-attribute] +ERROR discord/ui/separator.py:129:9-23: Class member `Separator.from_component` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/text_display.py:64:14-16: Class member `TextDisplay.id` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/text_display.py:64:19-21: `int | None` is not assignable to attribute `id` with type `(self: Self@TextDisplay, value: int | None) -> None` [bad-assignment] +ERROR discord/ui/text_display.py:72:26-33: Cannot set item in `dict[str, int | str]` [unsupported-operation] +ERROR discord/ui/text_display.py:87:9-23: Class member `TextDisplay.from_component` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/text_input.py:148:14-17: Class member `TextInput.row` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/text_input.py:148:20-23: `int | None` is not assignable to attribute `row` with type `(self: Self@TextInput, value: int | None) -> None` [bad-assignment] +ERROR discord/ui/text_input.py:249:9-26: Class member `TextInput.to_component_dict` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/text_input.py:252:9-27: Class member `TextInput._refresh_component` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/text_input.py:255:9-23: Class member `TextInput._refresh_state` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/text_input.py:259:9-23: Class member `TextInput.from_component` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/thumbnail.py:97:14-16: Class member `Thumbnail.id` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/thumbnail.py:97:19-21: `int | None` is not assignable to attribute `id` with type `(self: Self@Thumbnail, value: int | None) -> None` [bad-assignment] +ERROR discord/ui/thumbnail.py:138:9-23: Class member `Thumbnail.from_component` overrides parent class `Item` in an inconsistent manner [bad-override] +ERROR discord/ui/view.py:246:30-59: Object of class `FunctionType` has no attribute `__discord_ui_model_type__` [missing-attribute] +ERROR discord/ui/view.py:246:62-93: Object of class `FunctionType` has no attribute `__discord_ui_model_kwargs__` [missing-attribute] +ERROR discord/ui/view.py:254:21-58: Object of class `NoneType` has no attribute `_children` [missing-attribute] +ERROR discord/user.py:132:24-48: `object | None` is not assignable to attribute `_banner` with type `str | None` [bad-assignment] +ERROR discord/user.py:133:31-61: `object | None` is not assignable to attribute `_accent_colour` with type `int | None` [bad-assignment] +ERROR discord/user.py:134:30-57: `int | object` is not assignable to attribute `_public_flags` with type `int` [bad-assignment] +ERROR discord/user.py:135:20-42: `bool | object` is not assignable to attribute `bot` with type `bool` [bad-assignment] +ERROR discord/user.py:136:23-48: `bool | object` is not assignable to attribute `system` with type `bool` [bad-assignment] +ERROR discord/user.py:428:9-16: Class member `ClientUser._update` overrides parent class `BaseUser` in an inconsistent manner [bad-override] +ERROR discord/utils.py:252:9-20: Class member `SequenceProxy.__getitem__` overrides parent class `Sequence` in an inconsistent manner [bad-param-name-override] +ERROR discord/utils.py:263:9-21: Class member `SequenceProxy.__contains__` overrides parent class `Sequence` in an inconsistent manner [bad-param-name-override] +ERROR discord/utils.py:1193:34-48: Expected a type form, got instance of `tuple[Any, ...]` [not-a-type] +ERROR discord/utils.py:1453:37-68: Object of class `ZstdDecompressor` has no attribute `decompressobj` [missing-attribute] +ERROR discord/voice_client.py:216:5-12: Class member `VoiceClient.channel` overrides parent class `VoiceProtocol` in an inconsistent manner [bad-override] +ERROR discord/webhook/async_.py:194:37-57: Object of class `reify` has no attribute `get` [missing-attribute] +ERROR discord/webhook/async_.py:208:36-56: Object of class `reify` has no attribute `get` [missing-attribute] +ERROR discord/webhook/async_.py:578:9-23: Cannot set item in `None` [unsupported-operation] +ERROR discord/webhook/async_.py:582:13-27: Cannot set item in `None` [unsupported-operation] +ERROR discord/webhook/async_.py:584:13-27: Cannot set item in `None` [unsupported-operation] +ERROR discord/webhook/async_.py:588:13-28: Cannot set item in `None` [unsupported-operation] +ERROR discord/webhook/async_.py:590:13-28: Cannot set item in `None` [unsupported-operation] +ERROR discord/webhook/async_.py:594:13-31: Cannot set item in `None` [unsupported-operation] +ERROR discord/webhook/async_.py:603:13-31: Cannot set item in `None` [unsupported-operation] +ERROR discord/webhook/async_.py:606:9-22: Cannot set item in `None` [unsupported-operation] +ERROR discord/webhook/async_.py:610:13-37: Cannot set item in `None` [unsupported-operation] +ERROR discord/webhook/async_.py:612:13-37: Cannot set item in `None` [unsupported-operation] +ERROR discord/webhook/async_.py:614:9-33: Cannot set item in `None` [unsupported-operation] +ERROR discord/webhook/async_.py:631:9-28: Cannot set item in `None` [unsupported-operation] +ERROR discord/webhook/async_.py:634:9-21: Cannot set item in `None` [unsupported-operation] +ERROR discord/webhook/async_.py:643:17-648:18: Argument `dict[str, BufferedIOBase | str]` is not assignable to parameter `object` with type `dict[str, str]` in function `list.append` [bad-argument-type] +ERROR discord/webhook/async_.py:803:5-11: Class member `WebhookMessage._state` overrides parent class `Message` in an inconsistent manner [bad-override] +ERROR discord/webhook/async_.py:805:15-19: Class member `WebhookMessage.edit` overrides parent class `Message` in an inconsistent manner [bad-override] +ERROR discord/webhook/async_.py:1013:57-71: Argument `object` is not assignable to parameter `data` with type `TypedDict[PartialChannel]` in function `PartialWebhookChannel.__init__` [bad-argument-type] +ERROR discord/webhook/async_.py:1015:64-78: `PartialWebhookChannel | object | None` is not assignable to attribute `source_channel` with type `PartialWebhookChannel | None` [bad-assignment] +ERROR discord/webhook/async_.py:1019:53-65: Argument `object` is not assignable to parameter `data` with type `TypedDict[SourceGuild]` in function `PartialWebhookGuild.__init__` [bad-argument-type] +ERROR discord/webhook/async_.py:1021:60-72: `PartialWebhookGuild | object | None` is not assignable to attribute `source_guild` with type `PartialWebhookGuild | None` [bad-assignment] +ERROR discord/webhook/async_.py:1042:16-69: Returned type `ConnectionState[Client] | Guild | _WebhookState | None` is not assignable to declared return type `Guild | None` [bad-return] +ERROR discord/webhook/async_.py:1528:31-70: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/webhook/async_.py:1531:33-100: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/webhook/async_.py:1541:37-47: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/webhook/sync.py:408:5-11: Class member `SyncWebhookMessage._state` overrides parent class `Message` in an inconsistent manner [bad-override] +ERROR discord/webhook/sync.py:410:9-13: Class member `SyncWebhookMessage.edit` overrides parent class `Message` in an inconsistent manner [bad-override] +ERROR discord/webhook/sync.py:474:9-18: Class member `SyncWebhookMessage.add_files` overrides parent class `Message` in an inconsistent manner [bad-override] +ERROR discord/webhook/sync.py:498:9-27: Class member `SyncWebhookMessage.remove_attachments` overrides parent class `Message` in an inconsistent manner [bad-override] +ERROR discord/webhook/sync.py:522:9-15: Class member `SyncWebhookMessage.delete` overrides parent class `Message` in an inconsistent manner [bad-override] +ERROR discord/webhook/sync.py:827:31-70: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/webhook/sync.py:830:33-100: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/webhook/sync.py:840:37-47: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR discord/welcome_screen.py:104:33-48: Object of class `_EmojiTag` has no attribute `name` [missing-attribute] +ERROR discord/welcome_screen.py:211:37-48: Cannot set item in `dict[str, list[Unknown]]` [unsupported-operation] +ERROR discord/welcome_screen.py:214:33-40: Cannot set item in `dict[str, list[Unknown]]` [unsupported-operation] + INFO Checking project configured at `/pyrefly.toml` + INFO 652 errors (521 suppressed) diff --git a/scripts/ty_benchmark/snapshots/discord.py_Pyright.txt b/scripts/ty_benchmark/snapshots/discord.py_Pyright.txt new file mode 100644 index 0000000000..7a849e6eee --- /dev/null +++ b/scripts/ty_benchmark/snapshots/discord.py_Pyright.txt @@ -0,0 +1,653 @@ +/discord/abc.py + /discord/abc.py:122:9 - error: "pinned_at" incorrectly overrides property of same name in class "Message" (reportIncompatibleMethodOverride) + /discord/abc.py:123:9 - error: "pinned" overrides symbol of same name in class "Message" +   Variable is mutable so its type is invariant +     Override type "Literal[True]" is not the same as base type "bool" (reportIncompatibleVariableOverride) +/discord/activity.py + /discord/activity.py:286:9 - error: Method "to_dict" overrides class "BaseActivity" in an incompatible manner +   Return type mismatch: base method returns type "Activity", override returns type "Dict[str, Any]" +     "Dict[str, Any]" is not assignable to "Activity" (reportIncompatibleMethodOverride) + /discord/activity.py:455:9 - error: Method "to_dict" overrides class "BaseActivity" in an incompatible manner +   Return type mismatch: base method returns type "Activity", override returns type "Dict[str, Any]" +     "Dict[str, Any]" is not assignable to "Activity" (reportIncompatibleMethodOverride) + /discord/activity.py:566:9 - error: Method "to_dict" overrides class "BaseActivity" in an incompatible manner +   Return type mismatch: base method returns type "Activity", override returns type "Dict[str, Any]" +     "Dict[str, Any]" is not assignable to "Activity" (reportIncompatibleMethodOverride) + /discord/activity.py:822:9 - error: Method "to_dict" overrides class "BaseActivity" in an incompatible manner +   Return type mismatch: base method returns type "Activity", override returns type "Dict[str, Any]" +     "Dict[str, Any]" is not assignable to "Activity" (reportIncompatibleMethodOverride) +/discord/app_commands/commands.py + /discord/app_commands/commands.py:235:18 - error: Cannot assign to attribute "pass_command_binding" for class "FunctionType" +   Attribute "pass_command_binding" is unknown (reportFunctionMemberAccess) + /discord/app_commands/commands.py:393:34 - error: Cannot access attribute "__discord_app_commands_param_description__" for class "FunctionType" +   Attribute "__discord_app_commands_param_description__" is unknown (reportFunctionMemberAccess) + /discord/app_commands/commands.py:402:24 - error: Cannot access attribute "__discord_app_commands_param_rename__" for class "FunctionType" +   Attribute "__discord_app_commands_param_rename__" is unknown (reportFunctionMemberAccess) + /discord/app_commands/commands.py:409:24 - error: Cannot access attribute "__discord_app_commands_param_choices__" for class "FunctionType" +   Attribute "__discord_app_commands_param_choices__" is unknown (reportFunctionMemberAccess) + /discord/app_commands/commands.py:416:29 - error: Cannot access attribute "__discord_app_commands_param_autocomplete__" for class "FunctionType" +   Attribute "__discord_app_commands_param_autocomplete__" is unknown (reportFunctionMemberAccess) + /discord/app_commands/commands.py:456:10 - error: Cannot assign to attribute "__discord_app_commands_base_function__" for class "FunctionType" +   Attribute "__discord_app_commands_base_function__" is unknown (reportFunctionMemberAccess) + /discord/app_commands/commands.py:683:37 - error: Cannot access attribute "__self__" for class "FunctionType" +   Attribute "__self__" is unknown (reportFunctionMemberAccess) + /discord/app_commands/commands.py:684:50 - error: Cannot access attribute "__func__" for class "FunctionType" +   Attribute "__func__" is unknown (reportFunctionMemberAccess) + /discord/app_commands/commands.py:2477:22 - error: Cannot assign to attribute "__discord_app_commands_checks__" for class "FunctionType" +   Attribute "__discord_app_commands_checks__" is unknown (reportFunctionMemberAccess) + /discord/app_commands/commands.py:2479:18 - error: Cannot access attribute "__discord_app_commands_checks__" for class "FunctionType" +   Attribute "__discord_app_commands_checks__" is unknown (reportFunctionMemberAccess) +/discord/app_commands/errors.py + /discord/app_commands/errors.py:483:27 - error: "errors" is possibly unbound (reportPossiblyUnboundVariable) +/discord/app_commands/tree.py + /discord/app_commands/tree.py:605:9 - error: Overload 1 for "get_commands" overlaps overload 4 and returns an incompatible type (reportOverlappingOverload) +/discord/asset.py + /discord/asset.py:385:9 - error: "url" overrides symbol of same name in class "AssetMixin" +   "property" is not assignable to "str" (reportIncompatibleVariableOverride) +/discord/channel.py + /discord/channel.py:374:9 - error: Method "_update" overrides class "GuildChannel" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Dict[str, Any]", override parameter is type "TextChannel | NewsChannel" +     Type "Dict[str, Any]" is not assignable to type "TextChannel | NewsChannel" +       "Dict[str, Any]" is not assignable to "TextChannel" +       "Dict[str, Any]" is not assignable to "NewsChannel" (reportIncompatibleMethodOverride) + /discord/channel.py:393:9 - error: "type" overrides symbol of same name in class "GuildChannel" +   "property" is not assignable to "ChannelType" (reportIncompatibleVariableOverride) + /discord/channel.py:1098:15 - error: Method "_get_channel" overrides class "Messageable" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, MessageableChannel]", override returns type "CoroutineType[Any, Any, VocalGuildChannel]" +     "CoroutineType[Any, Any, VocalGuildChannel]" is not assignable to "CoroutineType[Any, Any, MessageableChannel]" +       Type parameter "_ReturnT_nd_co@CoroutineType" is covariant, but "VocalGuildChannel" is not a subtype of "MessageableChannel" +         Type "VocalGuildChannel" is not assignable to type "MessageableChannel" +           "VocalGuildChannel" is not assignable to "TextChannel" +           "VocalGuildChannel" is not assignable to "VoiceChannel" +           "VocalGuildChannel" is not assignable to "StageChannel" +           "VocalGuildChannel" is not assignable to "Thread" + ... (reportIncompatibleMethodOverride) + /discord/channel.py:1107:9 - error: Method "_update" overrides class "GuildChannel" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Dict[str, Any]", override parameter is type "VoiceChannel | StageChannel" +     Type "Dict[str, Any]" is not assignable to type "VoiceChannel | StageChannel" +       "Dict[str, Any]" is not assignable to "VoiceChannel" +       "Dict[str, Any]" is not assignable to "StageChannel" (reportIncompatibleMethodOverride) + /discord/channel.py:1546:9 - error: "type" overrides symbol of same name in class "GuildChannel" +   "property" is not assignable to "ChannelType" (reportIncompatibleVariableOverride) + /discord/channel.py:1770:9 - error: Method "_update" overrides class "VocalGuildChannel" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "VoiceChannel | StageChannel", override parameter is type "StageChannel" +     Type "VoiceChannel | StageChannel" is not assignable to type "StageChannel" +       "type" is an incompatible type +         "Literal[2]" is not assignable to type "Literal[13]" (reportIncompatibleMethodOverride) + /discord/channel.py:1813:9 - error: "type" overrides symbol of same name in class "GuildChannel" +   "property" is not assignable to "ChannelType" (reportIncompatibleVariableOverride) + /discord/channel.py:2065:9 - error: Method "_update" overrides class "GuildChannel" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Dict[str, Any]", override parameter is type "CategoryChannel" +     "Dict[str, Any]" is not assignable to "CategoryChannel" (reportIncompatibleMethodOverride) + /discord/channel.py:2082:9 - error: "type" overrides symbol of same name in class "GuildChannel" +   "property" is not assignable to "ChannelType" (reportIncompatibleVariableOverride) + /discord/channel.py:2478:9 - error: Method "_update" overrides class "GuildChannel" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Dict[str, Any]", override parameter is type "ForumChannel | MediaChannel" +     Type "Dict[str, Any]" is not assignable to type "ForumChannel | MediaChannel" +       "Dict[str, Any]" is not assignable to "ForumChannel" +       "Dict[str, Any]" is not assignable to "MediaChannel" (reportIncompatibleMethodOverride) + /discord/channel.py:2512:9 - error: "type" overrides symbol of same name in class "GuildChannel" +   "property" is not assignable to "ChannelType" (reportIncompatibleVariableOverride) + /discord/channel.py:2619:15 - error: Method "clone" overrides class "GuildChannel" in an incompatible manner +   Keyword parameter "category" mismatch: base parameter has default argument value, override parameter does not (reportIncompatibleMethodOverride) +/discord/components.py + /discord/components.py:382:14 - error: "type" incorrectly overrides property of same name in class "Component" (reportIncompatibleMethodOverride) +/discord/embeds.py + /discord/embeds.py:308:9 - error: Method "__eq__" overrides class "object" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "object", override parameter is type "Embed" +     "object" is not assignable to "Embed" (reportIncompatibleMethodOverride) +/discord/emoji.py + /discord/emoji.py:166:9 - error: "url" overrides symbol of same name in class "AssetMixin" +   "property" is not assignable to "str" (reportIncompatibleVariableOverride) +/discord/enums.py + /discord/enums.py:113:9 - error: Class variable "__name__" overrides instance variable of same name in class "type" (reportIncompatibleVariableOverride) + /discord/enums.py:960:5 - error: "name" incorrectly overrides property of same name in class "Enum" (reportIncompatibleMethodOverride) +/discord/errors.py + /discord/errors.py:30:10 - warning: Import "requests" could not be resolved from source (reportMissingModuleSource) +/discord/ext/commands/cog.py + /discord/ext/commands/cog.py:268:10 - error: Cannot assign to attribute "__cog_special_method__" for class "FunctionType" +   Attribute "__cog_special_method__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/cog.py:497:31 - error: Cannot access attribute "__func__" for class "FunctionType" +   Attribute "__func__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/cog.py:527:20 - error: Cannot assign to attribute "__cog_listener__" for class "FunctionType" +   Attribute "__cog_listener__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/cog.py:530:24 - error: Cannot access attribute "__cog_listener_names__" for class "FunctionType" +   Attribute "__cog_listener_names__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/cog.py:532:24 - error: Cannot assign to attribute "__cog_listener_names__" for class "FunctionType" +   Attribute "__cog_listener_names__" is unknown (reportFunctionMemberAccess) +/discord/ext/commands/context.py + /discord/ext/commands/context.py:411:15 - error: Method "_get_channel" overrides class "Messageable" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, MessageableChannel]", override returns type "CoroutineType[Any, Any, Messageable]" +     "CoroutineType[Any, Any, Messageable]" is not assignable to "CoroutineType[Any, Any, MessageableChannel]" +       Type parameter "_ReturnT_nd_co@CoroutineType" is covariant, but "Messageable" is not a subtype of "MessageableChannel" +         Type "Messageable" is not assignable to type "MessageableChannel" +           "Messageable" is not assignable to "TextChannel" +           "Messageable" is not assignable to "VoiceChannel" +           "Messageable" is not assignable to "StageChannel" +           "Messageable" is not assignable to "Thread" + ... (reportIncompatibleMethodOverride) + /discord/ext/commands/context.py:783:9 - error: Method "typing" overrides class "Messageable" in an incompatible manner +   Return type mismatch: base method returns type "Typing", override returns type "Typing | DeferTyping[BotT@Context]" +     Type "Typing | DeferTyping[BotT@Context]" is not assignable to type "Typing" +       "DeferTyping[BotT@Context]" is not assignable to "Typing" (reportIncompatibleMethodOverride) +/discord/ext/commands/converter.py + /discord/ext/commands/converter.py:1119:9 - error: Method "__class_getitem__" overrides class "list" in an incompatible manner +   Return type mismatch: base method returns type "GenericAlias", override returns type "Greedy[T@Greedy]" +     "Greedy[T@Greedy]" is not assignable to "GenericAlias" (reportIncompatibleMethodOverride) +/discord/ext/commands/cooldowns.py + /discord/ext/commands/cooldowns.py:171:9 - error: Method "create_bucket" overrides class "CooldownMapping" in an incompatible manner +   Return type mismatch: base method returns type "Cooldown", override returns type "Cooldown | None" +     Type "Cooldown | None" is not assignable to type "Cooldown" +       "None" is not assignable to "Cooldown" (reportIncompatibleMethodOverride) +/discord/ext/commands/core.py + /discord/ext/commands/core.py:141:33 - error: Cannot access attribute "__wrapped__" for class "FunctionType" +   Attribute "__wrapped__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:462:27 - error: Cannot access attribute "__commands_checks__" for class "FunctionType" +   Attribute "__commands_checks__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:470:29 - error: Cannot access attribute "__commands_cooldown__" for class "FunctionType" +   Attribute "__commands_cooldown__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:483:36 - error: Cannot access attribute "__commands_max_concurrency__" for class "FunctionType" +   Attribute "__commands_max_concurrency__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:500:34 - error: Cannot access attribute "__before_invoke__" for class "FunctionType" +   Attribute "__before_invoke__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:508:33 - error: Cannot access attribute "__after_invoke__" for class "FunctionType" +   Attribute "__after_invoke__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:1753:5 - error: Overload 1 for "command" overlaps overload 2 and returns an incompatible type (reportOverlappingOverload) + /discord/ext/commands/core.py:1821:5 - error: Overload 1 for "group" overlaps overload 2 and returns an incompatible type (reportOverlappingOverload) + /discord/ext/commands/core.py:1942:22 - error: Cannot assign to attribute "__commands_checks__" for class "FunctionType" +   Attribute "__commands_checks__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:1944:18 - error: Cannot access attribute "__commands_checks__" for class "FunctionType" +   Attribute "__commands_checks__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:1949:19 - error: Cannot assign to attribute "predicate" for class "FunctionType" +   Attribute "predicate" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:1956:19 - error: Cannot assign to attribute "predicate" for class "FunctionType" +   Attribute "predicate" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:2365:22 - error: Cannot assign to attribute "__commands_checks__" for class "FunctionType" +   Attribute "__commands_checks__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:2367:18 - error: Cannot access attribute "__commands_checks__" for class "FunctionType" +   Attribute "__commands_checks__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:2368:18 - error: Cannot assign to attribute "__discord_app_commands_guild_only__" for class "FunctionType" +   Attribute "__discord_app_commands_guild_only__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:2373:19 - error: Cannot assign to attribute "predicate" for class "FunctionType" +   Attribute "predicate" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:2380:19 - error: Cannot assign to attribute "predicate" for class "FunctionType" +   Attribute "predicate" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:2440:22 - error: Cannot assign to attribute "__commands_checks__" for class "FunctionType" +   Attribute "__commands_checks__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:2442:18 - error: Cannot access attribute "__commands_checks__" for class "FunctionType" +   Attribute "__commands_checks__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:2443:18 - error: Cannot assign to attribute "__discord_app_commands_is_nsfw__" for class "FunctionType" +   Attribute "__discord_app_commands_is_nsfw__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:2448:19 - error: Cannot assign to attribute "predicate" for class "FunctionType" +   Attribute "predicate" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:2455:19 - error: Cannot assign to attribute "predicate" for class "FunctionType" +   Attribute "predicate" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:2499:18 - error: Cannot assign to attribute "__commands_cooldown__" for class "FunctionType" +   Attribute "__commands_cooldown__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:2547:18 - error: Cannot assign to attribute "__commands_cooldown__" for class "FunctionType" +   Attribute "__commands_cooldown__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:2582:18 - error: Cannot assign to attribute "__commands_max_concurrency__" for class "FunctionType" +   Attribute "__commands_max_concurrency__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:2634:18 - error: Cannot assign to attribute "__before_invoke__" for class "FunctionType" +   Attribute "__before_invoke__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/core.py:2657:18 - error: Cannot assign to attribute "__after_invoke__" for class "FunctionType" +   Attribute "__after_invoke__" is unknown (reportFunctionMemberAccess) +/discord/ext/commands/help.py + /discord/ext/commands/help.py:248:7 - error: Cannot assign to attribute "__help_command_not_overridden__" for class "FunctionType" +   Attribute "__help_command_not_overridden__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/help.py:1255:9 - error: Method "get_destination" overrides class "HelpCommand" in an incompatible manner +   Return type mismatch: base method returns type "MessageableChannel", override returns type "Messageable" +     Type "Messageable" is not assignable to type "MessageableChannel" +       "Messageable" is not assignable to "TextChannel" +       "Messageable" is not assignable to "VoiceChannel" +       "Messageable" is not assignable to "StageChannel" +       "Messageable" is not assignable to "Thread" +       "Messageable" is not assignable to "DMChannel" +       "Messageable" is not assignable to "PartialMessageable" + ... (reportIncompatibleMethodOverride) + /discord/ext/commands/help.py:1520:9 - error: Method "get_destination" overrides class "HelpCommand" in an incompatible manner +   Return type mismatch: base method returns type "MessageableChannel", override returns type "Messageable" +     Type "Messageable" is not assignable to type "MessageableChannel" +       "Messageable" is not assignable to "TextChannel" +       "Messageable" is not assignable to "VoiceChannel" +       "Messageable" is not assignable to "StageChannel" +       "Messageable" is not assignable to "Thread" +       "Messageable" is not assignable to "DMChannel" +       "Messageable" is not assignable to "PartialMessageable" + ... (reportIncompatibleMethodOverride) +/discord/ext/commands/hybrid.py + /discord/ext/commands/hybrid.py:61:9 - error: "description" overrides symbol of same name in class "_CommandDecoratorKwargs" +   Variable is mutable so its type is invariant +     Override type "str | locale_str" is not the same as base type "str" (reportIncompatibleVariableOverride) + /discord/ext/commands/hybrid.py:69:9 - error: "description" overrides symbol of same name in class "_HybridCommandDecoratorKwargs" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | locale_str" (reportIncompatibleVariableOverride) + /discord/ext/commands/hybrid.py:73:9 - error: "description" overrides symbol of same name in class "_HybridGroupKwargs" +   Variable is mutable so its type is invariant +     Override type "str | locale_str" is not the same as base type "str" (reportIncompatibleVariableOverride) + /discord/ext/commands/hybrid.py:113:9 - error: "__class__" incorrectly overrides property of same name in class "object" +   Property method "fset" is missing in override (reportIncompatibleMethodOverride) + /discord/ext/commands/hybrid.py:232:22 - error: Cannot assign to attribute "__hybrid_command_flag__" for class "FunctionType" +   Attribute "__hybrid_command_flag__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/hybrid.py:328:26 - error: Cannot assign to attribute "__signature__" for class "FunctionType" +   Attribute "__signature__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/hybrid.py:338:34 - error: Cannot delete attribute "__signature__" for class "FunctionType" +   Attribute "__signature__" is unknown (reportFunctionMemberAccess) + /discord/ext/commands/hybrid.py:563:9 - error: Method "_ensure_assignment_on_copy" overrides class "Command" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Command[CogT@HybridCommand, P@HybridCommand, T@HybridCommand]", override parameter is type "HybridCommand[CogT@HybridCommand, P@HybridCommand, T@HybridCommand]" +     "Command[CogT@HybridCommand, P@HybridCommand, T@HybridCommand]" is not assignable to "HybridCommand[CogT@HybridCommand, P@HybridCommand, T@HybridCommand]" (reportIncompatibleMethodOverride) + /discord/ext/commands/hybrid.py:731:9 - error: Method "_ensure_assignment_on_copy" overrides class "Command" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Command[CogT@HybridGroup, P@HybridGroup, T@HybridGroup]", override parameter is type "HybridGroup[CogT@HybridGroup, P@HybridGroup, T@HybridGroup]" +     "Command[CogT@HybridGroup, P@HybridGroup, T@HybridGroup]" is not assignable to "HybridGroup[CogT@HybridGroup, P@HybridGroup, T@HybridGroup]" (reportIncompatibleMethodOverride) + /discord/ext/commands/hybrid.py:790:9 - error: Method "add_command" overrides class "GroupMixin" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Command[CogT@HybridGroup, ..., Any]", override parameter is type "HybridGroup[CogT@HybridGroup, ..., Any] | HybridCommand[CogT@HybridGroup, ..., Any]" +     Type "Command[CogT@HybridGroup, ..., Any]" is not assignable to type "HybridGroup[CogT@HybridGroup, ..., Any] | HybridCommand[CogT@HybridGroup, ..., Any]" +       "Command[CogT@HybridGroup, ..., Any]" is not assignable to "HybridCommand[CogT@HybridGroup, ..., Any]" +       "Command[CogT@HybridGroup, ..., Any]" is not assignable to "HybridGroup[CogT@HybridGroup, ..., Any]" (reportIncompatibleMethodOverride) + /discord/ext/commands/hybrid.py:836:9 - error: Method "command" overrides class "GroupMixin" in an incompatible manner +   Keyword parameter "with_app_command" type mismatch: base parameter is type "*_CommandDecoratorKwargs", override parameter is type "bool" +   Keyword parameter "name" type mismatch: base parameter is type "*_CommandDecoratorKwargs", override parameter is type "str" +   Keyword parameter "guild_ids" type mismatch: base parameter is type "*_CommandDecoratorKwargs", override parameter is type "list[int]" +   Keyword parameter "guild_only" type mismatch: base parameter is type "*_CommandDecoratorKwargs", override parameter is type "bool" +   Keyword parameter "default_permissions" type mismatch: base parameter is type "*_CommandDecoratorKwargs", override parameter is type "bool" +   Keyword parameter "nsfw" type mismatch: base parameter is type "*_CommandDecoratorKwargs", override parameter is type "bool" +   Keyword parameter "with_app_command" type mismatch: base parameter is type "*_CommandDecoratorKwargs", override parameter is type "bool" +     "*_CommandDecoratorKwargs" is not assignable to "bool" (reportIncompatibleMethodOverride) + /discord/ext/commands/hybrid.py:860:9 - error: Method "group" overrides class "GroupMixin" in an incompatible manner +   Keyword parameter "invoke_without_command" type mismatch: base parameter is type "bool", override parameter is type "*_HybridGroupDecoratorKwargs" +   Keyword parameter "with_app_command" type mismatch: base parameter is type "*_GroupDecoratorKwargs", override parameter is type "bool" +   Keyword parameter "name" type mismatch: base parameter is type "*_GroupDecoratorKwargs", override parameter is type "str" +   Keyword parameter "guild_ids" type mismatch: base parameter is type "*_GroupDecoratorKwargs", override parameter is type "list[int]" +   Keyword parameter "guild_only" type mismatch: base parameter is type "*_GroupDecoratorKwargs", override parameter is type "bool" +   Keyword parameter "default_permissions" type mismatch: base parameter is type "*_GroupDecoratorKwargs", override parameter is type "bool" +   Keyword parameter "nsfw" type mismatch: base parameter is type "*_GroupDecoratorKwargs", override parameter is type "bool" +   Keyword parameter "with_app_command" type mismatch: base parameter is type "*_GroupDecoratorKwargs", override parameter is type "bool" (reportIncompatibleMethodOverride) +/discord/ext/commands/parameters.py + /discord/ext/commands/parameters.py:115:9 - error: Method "replace" overrides class "Parameter" in an incompatible manner +   Keyword parameter "name" type mismatch: base parameter is type "str | type[_void]", override parameter is type "str" +   Keyword parameter "kind" type mismatch: base parameter is type "_ParameterKind | type[_void]", override parameter is type "ParamKinds" +     Type "str | type[_void]" is not assignable to type "str" +       Type "type[_void]" is not assignable to type "str" +     Type "_ParameterKind | type[_void]" is not assignable to type "ParamKinds" +       Type "_ParameterKind" is not assignable to type "ParamKinds" +         "_ParameterKind" is not assignable to type "Literal[_ParameterKind.POSITIONAL_ONLY]" +         "_ParameterKind" is not assignable to type "Literal[_ParameterKind.POSITIONAL_OR_KEYWORD]" + ... (reportIncompatibleMethodOverride) + /discord/ext/commands/parameters.py:324:5 - error: "parameters" incorrectly overrides property of same name in class "Signature" (reportIncompatibleMethodOverride) +/discord/flags.py + /discord/flags.py:1784:9 - error: Method "_from_value" overrides class "BaseFlags" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "int", override parameter is type "Sequence[int]" +     "int" is not assignable to "Sequence[int]" (reportIncompatibleMethodOverride) + /discord/flags.py:1881:9 - error: Method "to_array" overrides class "ArrayFlags" in an incompatible manner +   Parameter "offset" is missing in override (reportIncompatibleMethodOverride) +/discord/gateway.py + /discord/gateway.py:218:9 - error: "ws" overrides symbol of same name in class "KeepAliveHandler" +   Variable is mutable so its type is invariant +     Override type "DiscordVoiceWebSocket" is not the same as base type "DiscordWebSocket" (reportIncompatibleVariableOverride) + /discord/gateway.py:377:27 - error: "with_query" is not a known attribute of "None" (reportOptionalMemberAccess) + /discord/gateway.py:379:27 - error: "with_query" is not a known attribute of "None" (reportOptionalMemberAccess) + /discord/gateway.py:391:22 - error: Cannot assign to attribute "gateway" for class "DiscordWebSocket*" +   Type "URL | None" is not assignable to type "URL" +     "None" is not assignable to "URL" (reportAttributeAccessIssue) +/discord/integrations.py + /discord/integrations.py:200:9 - error: Method "_from_data" overrides class "Integration" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Integration", override parameter is type "StreamIntegration" +     Type "Integration" is not assignable to type "StreamIntegration" +       "role_id" is missing from "BaseIntegration" +       "enable_emoticons" is missing from "BaseIntegration" +       "subscriber_count" is missing from "BaseIntegration" +       "revoked" is missing from "BaseIntegration" (reportIncompatibleMethodOverride) + /discord/integrations.py:359:9 - error: Method "_from_data" overrides class "Integration" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Integration", override parameter is type "BotIntegration" +     Type "Integration" is not assignable to type "BotIntegration" +       "application" is missing from "BaseIntegration" (reportIncompatibleMethodOverride) +/discord/interactions.py + /discord/interactions.py:1427:5 - error: "_state" overrides symbol of same name in class "Message" +   Variable is mutable so its type is invariant +     Override type "_InteractionMessageState" is not the same as base type "ConnectionState[Client]" (reportIncompatibleVariableOverride) + /discord/interactions.py:1453:15 - error: Method "edit" overrides class "Message" in an incompatible manner +   No overload signature in override is compatible with base method (reportIncompatibleMethodOverride) +/discord/invite.py + /discord/invite.py:518:9 - error: "id" overrides symbol of same name in class "EqualityComparable" +   "property" is not assignable to "int" (reportIncompatibleVariableOverride) +/discord/partial_emoji.py + /discord/partial_emoji.py:105:14 - error: "id" overrides symbol of same name in class "_EmojiTag" +   Variable is mutable so its type is invariant +     Override type "int | None" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/partial_emoji.py:240:9 - error: "url" overrides symbol of same name in class "AssetMixin" +   "property" is not assignable to "str" (reportIncompatibleVariableOverride) +/discord/shard.py + /discord/shard.py:372:9 - error: "_connection" overrides symbol of same name in class "Client" +   Variable is mutable so its type is invariant +     Override type "AutoShardedConnectionState[Client]" is not the same as base type "ConnectionState[Client]" (reportIncompatibleVariableOverride) + /discord/shard.py:499:18 - error: "shard_count" overrides symbol of same name in class "Client" +   Variable is mutable so its type is invariant +     Override type "int" is not the same as base type "int | None" (reportIncompatibleVariableOverride) +/discord/soundboard.py + /discord/soundboard.py:98:9 - error: "url" overrides symbol of same name in class "AssetMixin" +   "property" is not assignable to "str" (reportIncompatibleVariableOverride) + /discord/soundboard.py:208:9 - error: Method "_update" overrides class "BaseSoundboardSound" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "BaseSoundboardSound", override parameter is type "SoundboardSound" +     "name" is missing from "BaseSoundboardSound" +     "emoji_name" is missing from "BaseSoundboardSound" +     "emoji_id" is missing from "BaseSoundboardSound" +     "user_id" is missing from "BaseSoundboardSound" +     "available" is missing from "BaseSoundboardSound" +     "guild_id" is missing from "BaseSoundboardSound" +     "user" is missing from "BaseSoundboardSound" (reportIncompatibleMethodOverride) +/discord/sticker.py + /discord/sticker.py:335:9 - error: Method "_from_data" overrides class "Sticker" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Sticker", override parameter is type "StandardSticker" +     Type "Sticker" is not assignable to type "StandardSticker" +       "type" is an incompatible type +         "Literal[2]" is not assignable to type "Literal[1]" +       "sort_value" is missing from "GuildSticker" +       "pack_id" is missing from "GuildSticker" (reportIncompatibleMethodOverride) + /discord/sticker.py:415:9 - error: Method "_from_data" overrides class "Sticker" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Sticker", override parameter is type "GuildSticker" +     Type "Sticker" is not assignable to type "GuildSticker" +       "type" is an incompatible type +         "Literal[1]" is not assignable to type "Literal[2]" +       "available" is missing from "StandardSticker" +       "guild_id" is missing from "StandardSticker" +       "user" is missing from "StandardSticker" (reportIncompatibleMethodOverride) +/discord/types/components.py + /discord/types/components.py:47:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[1]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/components.py:52:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[2]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/components.py:84:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[3]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/components.py:89:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[5]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/components.py:94:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[6]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/components.py:99:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[7]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/components.py:104:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[8]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/components.py:110:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[4]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/components.py:122:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[3, 5, 6, 7, 8]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/components.py:130:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[9]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/components.py:136:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[10]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/components.py:153:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[11]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/components.py:166:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[12]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/components.py:171:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[13]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/components.py:179:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[14]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/components.py:185:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[17]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/components.py:192:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[18]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/components.py:199:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[19]" is not the same as base type "int" (reportIncompatibleVariableOverride) +/discord/types/interactions.py + /discord/types/interactions.py:209:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[4]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/interactions.py:215:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[3, 5, 6, 7, 8]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/interactions.py:221:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[19]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/interactions.py:237:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[10]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /discord/types/interactions.py:242:5 - error: "type" overrides symbol of same name in class "ComponentBase" +   Variable is mutable so its type is invariant +     Override type "Literal[18]" is not the same as base type "int" (reportIncompatibleVariableOverride) +/discord/types/scheduled_event.py + /discord/types/scheduled_event.py:84:7 - error: TypedDict item "user_count" cannot be redefined as NotRequired (reportIncompatibleVariableOverride) + /discord/types/scheduled_event.py:87:7 - error: TypedDict item "user_count" cannot be redefined as NotRequired (reportIncompatibleVariableOverride) + /discord/types/scheduled_event.py:90:7 - error: TypedDict item "user_count" cannot be redefined as NotRequired (reportIncompatibleVariableOverride) +/discord/ui/action_row.py + /discord/ui/action_row.py:163:31 - error: Cannot access attribute "__discord_ui_model_type__" for class "FunctionType" +   Attribute "__discord_ui_model_type__" is unknown (reportFunctionMemberAccess) + /discord/ui/action_row.py:163:64 - error: Cannot access attribute "__discord_ui_model_kwargs__" for class "FunctionType" +   Attribute "__discord_ui_model_kwargs__" is unknown (reportFunctionMemberAccess) + /discord/ui/action_row.py:412:9 - error: Overload 1 for "select" overlaps overload 2 and returns an incompatible type (reportOverlappingOverload) + /discord/ui/action_row.py:412:9 - error: Overload 1 for "select" overlaps overload 3 and returns an incompatible type (reportOverlappingOverload) + /discord/ui/action_row.py:412:9 - error: Overload 1 for "select" overlaps overload 4 and returns an incompatible type (reportOverlappingOverload) + /discord/ui/action_row.py:412:9 - error: Overload 1 for "select" overlaps overload 5 and returns an incompatible type (reportOverlappingOverload) + /discord/ui/action_row.py:597:9 - error: Method "from_component" overrides class "Item" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Component", override parameter is type "ActionRow" +     "Component" is not assignable to "ActionRow" (reportIncompatibleMethodOverride) +/discord/ui/button.py + /discord/ui/button.py:259:9 - error: Method "from_component" overrides class "Item" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "component", override parameter is named "button" (reportIncompatibleMethodOverride) + /discord/ui/button.py:276:9 - error: Method "to_component_dict" overrides class "Item" in an incompatible manner +   Return type mismatch: base method returns type "Dict[str, Any]", override returns type "ButtonComponent" +     "ButtonComponent" is not assignable to "Dict[str, Any]" (reportIncompatibleMethodOverride) + /discord/ui/button.py:287:9 - error: Method "_refresh_component" overrides class "Item" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "component", override parameter is named "button" (reportIncompatibleMethodOverride) + /discord/ui/button.py:376:14 - error: Cannot assign to attribute "__discord_ui_model_type__" for class "FunctionType" +   Attribute "__discord_ui_model_type__" is unknown (reportFunctionMemberAccess) + /discord/ui/button.py:377:14 - error: Cannot assign to attribute "__discord_ui_model_kwargs__" for class "FunctionType" +   Attribute "__discord_ui_model_kwargs__" is unknown (reportFunctionMemberAccess) +/discord/ui/container.py + /discord/ui/container.py:151:34 - error: Cannot access attribute "__discord_ui_model_type__" for class "FunctionType" +   Attribute "__discord_ui_model_type__" is unknown (reportFunctionMemberAccess) + /discord/ui/container.py:151:66 - error: Cannot access attribute "__discord_ui_model_kwargs__" for class "FunctionType" +   Attribute "__discord_ui_model_kwargs__" is unknown (reportFunctionMemberAccess) + /discord/ui/container.py:179:9 - error: Method "_update_view" overrides class "Item" in an incompatible manner +   Return type mismatch: base method returns type "None", override returns type "bool" +     "bool" is not assignable to "None" (reportIncompatibleMethodOverride) + /discord/ui/container.py:260:9 - error: Method "from_component" overrides class "Item" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Component", override parameter is type "Container" +     "Component" is not assignable to "Container" (reportIncompatibleMethodOverride) +/discord/ui/file.py + /discord/ui/file.py:162:9 - error: Method "from_component" overrides class "Item" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Component", override parameter is type "FileComponent" +     "Component" is not assignable to "FileComponent" (reportIncompatibleMethodOverride) +/discord/ui/file_upload.py + /discord/ui/file_upload.py:172:9 - error: Method "to_component_dict" overrides class "Item" in an incompatible manner +   Return type mismatch: base method returns type "Dict[str, Any]", override returns type "FileUploadComponent" +     "FileUploadComponent" is not assignable to "Dict[str, Any]" (reportIncompatibleMethodOverride) + /discord/ui/file_upload.py:175:9 - error: Method "_refresh_component" overrides class "Item" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Component", override parameter is type "FileUploadComponent" +     "Component" is not assignable to "FileUploadComponent" (reportIncompatibleMethodOverride) + /discord/ui/file_upload.py:178:9 - error: Method "_handle_submit" overrides class "Item" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Dict[str, Any]", override parameter is type "ModalSubmitTextInputInteractionData" +     "Dict[str, Any]" is not assignable to "ModalSubmitTextInputInteractionData" (reportIncompatibleMethodOverride) + /discord/ui/file_upload.py:184:9 - error: Method "from_component" overrides class "Item" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Component", override parameter is type "FileUploadComponent" +     "Component" is not assignable to "FileUploadComponent" (reportIncompatibleMethodOverride) +/discord/ui/label.py + /discord/ui/label.py:112:9 - error: Method "to_component_dict" overrides class "Item" in an incompatible manner +   Return type mismatch: base method returns type "Dict[str, Any]", override returns type "LabelComponent" +     "LabelComponent" is not assignable to "Dict[str, Any]" (reportIncompatibleMethodOverride) + /discord/ui/label.py:125:9 - error: Method "from_component" overrides class "Item" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Component", override parameter is type "LabelComponent" +     "Component" is not assignable to "LabelComponent" (reportIncompatibleMethodOverride) +/discord/ui/media_gallery.py + /discord/ui/media_gallery.py:259:9 - error: Method "from_component" overrides class "Item" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Component", override parameter is type "MediaGalleryComponent" +     "Component" is not assignable to "MediaGalleryComponent" (reportIncompatibleMethodOverride) +/discord/ui/modal.py + /discord/ui/modal.py:159:15 - error: Method "on_error" overrides class "BaseView" in an incompatible manner +   Positional parameter count mismatch; base method has 4, but override has 3 (reportIncompatibleMethodOverride) + /discord/ui/modal.py:176:9 - error: Method "_refresh" overrides class "BaseView" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 4 +   Parameter 2 name mismatch: base parameter is named "components", override parameter is named "interaction" (reportIncompatibleMethodOverride) + /discord/ui/modal.py:202:15 - error: Method "_scheduled_task" overrides class "BaseView" in an incompatible manner +   Positional parameter count mismatch; base method has 3, but override has 4 +   Parameter 2 name mismatch: base parameter is named "item", override parameter is named "interaction" +   Parameter 3 name mismatch: base parameter is named "interaction", override parameter is named "components" (reportIncompatibleMethodOverride) +/discord/ui/section.py + /discord/ui/section.py:251:9 - error: Method "from_component" overrides class "Item" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Component", override parameter is type "SectionComponent" +     "Component" is not assignable to "SectionComponent" (reportIncompatibleMethodOverride) +/discord/ui/select.py + /discord/ui/select.py:270:14 - error: "row" incorrectly overrides property of same name in class "Item" (reportIncompatibleMethodOverride) + /discord/ui/select.py:363:9 - error: Method "to_component_dict" overrides class "Item" in an incompatible manner +   Return type mismatch: base method returns type "Dict[str, Any]", override returns type "SelectMenu" +     "SelectMenu" is not assignable to "Dict[str, Any]" (reportIncompatibleMethodOverride) + /discord/ui/select.py:366:9 - error: Method "_refresh_component" overrides class "Item" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Component", override parameter is type "SelectMenu" +     "Component" is not assignable to "SelectMenu" (reportIncompatibleMethodOverride) + /discord/ui/select.py:369:9 - error: Method "_handle_submit" overrides class "Item" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Dict[str, Any]", override parameter is type "SelectMessageComponentInteractionData" +     "Dict[str, Any]" is not assignable to "SelectMessageComponentInteractionData" (reportIncompatibleMethodOverride) + /discord/ui/select.py:382:9 - error: Method "_refresh_state" overrides class "Item" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Dict[str, Any]", override parameter is type "SelectMessageComponentInteractionData" +     "Dict[str, Any]" is not assignable to "SelectMessageComponentInteractionData" (reportIncompatibleMethodOverride) + /discord/ui/select.py:405:9 - error: Method "from_component" overrides class "Item" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Component", override parameter is type "SelectMenu" +     "Component" is not assignable to "SelectMenu" (reportIncompatibleMethodOverride) + /discord/ui/select.py:493:9 - error: "values" incorrectly overrides property of same name in class "BaseSelect" +   Property method "fget" is incompatible +     Return type mismatch: base method returns type "List[PossibleValue]", override returns type "List[str]" +       "List[str]" is not assignable to "List[PossibleValue]" +         Type parameter "_T@list" is invariant, but "str" is not the same as "PossibleValue" +         Consider switching from "list" to "Sequence" which is covariant (reportIncompatibleMethodOverride) + /discord/ui/select.py:669:9 - error: "values" incorrectly overrides property of same name in class "BaseSelect" +   Property method "fget" is incompatible +     Return type mismatch: base method returns type "List[PossibleValue]", override returns type "List[Member | User]" +       "List[Member | User]" is not assignable to "List[PossibleValue]" +         Type parameter "_T@list" is invariant, but "Member | User" is not the same as "PossibleValue" +         Consider switching from "list" to "Sequence" which is covariant (reportIncompatibleMethodOverride) + /discord/ui/select.py:777:9 - error: "values" incorrectly overrides property of same name in class "BaseSelect" +   Property method "fget" is incompatible +     Return type mismatch: base method returns type "List[PossibleValue]", override returns type "List[Role]" +       "List[Role]" is not assignable to "List[PossibleValue]" +         Type parameter "_T@list" is invariant, but "Role" is not the same as "PossibleValue" +         Consider switching from "list" to "Sequence" which is covariant (reportIncompatibleMethodOverride) + /discord/ui/select.py:881:9 - error: "values" incorrectly overrides property of same name in class "BaseSelect" +   Property method "fget" is incompatible +     Return type mismatch: base method returns type "List[PossibleValue]", override returns type "List[Member | User | Role]" +       "List[Member | User | Role]" is not assignable to "List[PossibleValue]" +         Type parameter "_T@list" is invariant, but "Member | User | Role" is not the same as "PossibleValue" +         Consider switching from "list" to "Sequence" which is covariant (reportIncompatibleMethodOverride) + /discord/ui/select.py:1010:9 - error: "values" incorrectly overrides property of same name in class "BaseSelect" +   Property method "fget" is incompatible +     Return type mismatch: base method returns type "List[PossibleValue]", override returns type "List[AppCommandChannel | AppCommandThread]" +       "List[AppCommandChannel | AppCommandThread]" is not assignable to "List[PossibleValue]" +         Type parameter "_T@list" is invariant, but "AppCommandChannel | AppCommandThread" is not the same as "PossibleValue" +         Consider switching from "list" to "Sequence" which is covariant (reportIncompatibleMethodOverride) + /discord/ui/select.py:1028:5 - error: Overload 1 for "select" overlaps overload 2 and returns an incompatible type (reportOverlappingOverload) + /discord/ui/select.py:1028:5 - error: Overload 1 for "select" overlaps overload 3 and returns an incompatible type (reportOverlappingOverload) + /discord/ui/select.py:1028:5 - error: Overload 1 for "select" overlaps overload 4 and returns an incompatible type (reportOverlappingOverload) + /discord/ui/select.py:1028:5 - error: Overload 1 for "select" overlaps overload 5 and returns an incompatible type (reportOverlappingOverload) + /discord/ui/select.py:1221:14 - error: Cannot assign to attribute "__discord_ui_model_type__" for class "FunctionType" +   Attribute "__discord_ui_model_type__" is unknown (reportFunctionMemberAccess) + /discord/ui/select.py:1222:14 - error: Cannot assign to attribute "__discord_ui_model_kwargs__" for class "FunctionType" +   Attribute "__discord_ui_model_kwargs__" is unknown (reportFunctionMemberAccess) + /discord/ui/select.py:1232:18 - error: Cannot access attribute "__discord_ui_model_kwargs__" for class "FunctionType" +   Attribute "__discord_ui_model_kwargs__" is unknown (reportFunctionMemberAccess) + /discord/ui/select.py:1234:18 - error: Cannot access attribute "__discord_ui_model_kwargs__" for class "FunctionType" +   Attribute "__discord_ui_model_kwargs__" is unknown (reportFunctionMemberAccess) + /discord/ui/select.py:1250:18 - error: Cannot access attribute "__discord_ui_model_kwargs__" for class "FunctionType" +   Attribute "__discord_ui_model_kwargs__" is unknown (reportFunctionMemberAccess) +/discord/ui/separator.py + /discord/ui/separator.py:129:9 - error: Method "from_component" overrides class "Item" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Component", override parameter is type "SeparatorComponent" +     "Component" is not assignable to "SeparatorComponent" (reportIncompatibleMethodOverride) +/discord/ui/text_display.py + /discord/ui/text_display.py:87:9 - error: Method "from_component" overrides class "Item" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Component", override parameter is type "TextDisplay" +     "Component" is not assignable to "TextDisplay" (reportIncompatibleMethodOverride) +/discord/ui/text_input.py + /discord/ui/text_input.py:249:9 - error: Method "to_component_dict" overrides class "Item" in an incompatible manner +   Return type mismatch: base method returns type "Dict[str, Any]", override returns type "TextInput" +     "TextInput" is not assignable to "Dict[str, Any]" (reportIncompatibleMethodOverride) + /discord/ui/text_input.py:252:9 - error: Method "_refresh_component" overrides class "Item" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Component", override parameter is type "TextInput" +     "Component" is not assignable to "TextInput" (reportIncompatibleMethodOverride) + /discord/ui/text_input.py:255:9 - error: Method "_refresh_state" overrides class "Item" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Dict[str, Any]", override parameter is type "ModalSubmitTextInputInteractionData" +     "Dict[str, Any]" is not assignable to "ModalSubmitTextInputInteractionData" (reportIncompatibleMethodOverride) + /discord/ui/text_input.py:259:9 - error: Method "from_component" overrides class "Item" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Component", override parameter is type "TextInput" +     "Component" is not assignable to "TextInput" (reportIncompatibleMethodOverride) +/discord/ui/thumbnail.py + /discord/ui/thumbnail.py:138:9 - error: Method "from_component" overrides class "Item" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Component", override parameter is type "ThumbnailComponent" +     "Component" is not assignable to "ThumbnailComponent" (reportIncompatibleMethodOverride) +/discord/ui/view.py + /discord/ui/view.py:246:34 - error: Cannot access attribute "__discord_ui_model_type__" for class "FunctionType" +   Attribute "__discord_ui_model_type__" is unknown (reportFunctionMemberAccess) + /discord/ui/view.py:246:66 - error: Cannot access attribute "__discord_ui_model_kwargs__" for class "FunctionType" +   Attribute "__discord_ui_model_kwargs__" is unknown (reportFunctionMemberAccess) +/discord/user.py + /discord/user.py:428:9 - error: Method "_update" overrides class "BaseUser" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "User | PartialUser", override parameter is type "User" +     Type "User | PartialUser" is not assignable to type "User" +       "bot" is missing from "PartialUser" +       "system" is missing from "PartialUser" +       "mfa_enabled" is missing from "PartialUser" +       "locale" is missing from "PartialUser" +       "verified" is missing from "PartialUser" +       "email" is missing from "PartialUser" + ... (reportIncompatibleMethodOverride) +/discord/utils.py + /discord/utils.py:662:16 - error: "orjson" is possibly unbound (reportPossiblyUnboundVariable) + /discord/utils.py:1447:33 - error: "ZstdDecompressor" is possibly unbound (reportPossiblyUnboundVariable) + /discord/utils.py:1469:28 - error: "zlib" is possibly unbound (reportPossiblyUnboundVariable) +/discord/voice_client.py + /discord/voice_client.py:216:5 - error: "channel" overrides symbol of same name in class "VoiceProtocol" +   Variable is mutable so its type is invariant +     Override type "VocalGuildChannel" is not the same as base type "Connectable" (reportIncompatibleVariableOverride) + /discord/voice_client.py:388:15 - error: "nacl" is possibly unbound (reportPossiblyUnboundVariable) + /discord/voice_client.py:399:15 - error: "nacl" is possibly unbound (reportPossiblyUnboundVariable) + /discord/voice_client.py:408:15 - error: "nacl" is possibly unbound (reportPossiblyUnboundVariable) + /discord/voice_client.py:409:17 - error: "nacl" is possibly unbound (reportPossiblyUnboundVariable) + /discord/voice_client.py:409:35 - error: "nacl" is possibly unbound (reportPossiblyUnboundVariable) + /discord/voice_client.py:416:15 - error: "nacl" is possibly unbound (reportPossiblyUnboundVariable) +/discord/webhook/async_.py + /discord/webhook/async_.py:803:5 - error: "_state" overrides symbol of same name in class "Message" +   Variable is mutable so its type is invariant +     Override type "_WebhookState" is not the same as base type "ConnectionState[Client]" (reportIncompatibleVariableOverride) + /discord/webhook/async_.py:805:15 - error: Method "edit" overrides class "Message" in an incompatible manner +   Parameter "suppress" is missing in override +   Parameter "delete_after" is missing in override (reportIncompatibleMethodOverride) +/discord/webhook/sync.py + /discord/webhook/sync.py:81:14 - warning: Import "requests" could not be resolved from source (reportMissingModuleSource) + /discord/webhook/sync.py:408:5 - error: "_state" overrides symbol of same name in class "Message" +   Variable is mutable so its type is invariant +     Override type "_WebhookState" is not the same as base type "ConnectionState[Client]" (reportIncompatibleVariableOverride) + /discord/webhook/sync.py:410:9 - error: Method "edit" overrides class "Message" in an incompatible manner +   Parameter "suppress" is missing in override +   Parameter "delete_after" is missing in override +   Parameter "view" is missing in override +   Return type mismatch: base method returns type "CoroutineType[Any, Any, Message]", override returns type "SyncWebhookMessage" +     "SyncWebhookMessage" is not assignable to "CoroutineType[Any, Any, Message]" (reportIncompatibleMethodOverride) + /discord/webhook/sync.py:474:9 - error: Method "add_files" overrides class "Message" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, Message]", override returns type "SyncWebhookMessage" +     "SyncWebhookMessage" is not assignable to "CoroutineType[Any, Any, Message]" (reportIncompatibleMethodOverride) + /discord/webhook/sync.py:498:9 - error: Method "remove_attachments" overrides class "Message" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, Message]", override returns type "SyncWebhookMessage" +     "SyncWebhookMessage" is not assignable to "CoroutineType[Any, Any, Message]" (reportIncompatibleMethodOverride) + /discord/webhook/sync.py:522:9 - error: Method "delete" overrides class "PartialMessage" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "None" +     "None" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /discord/webhook/sync.py:652:16 - warning: Import "requests" could not be resolved from source (reportMissingModuleSource) + /discord/webhook/sync.py:695:16 - warning: Import "requests" could not be resolved from source (reportMissingModuleSource) +/discord/widget.py + /discord/widget.py:161:9 - error: "avatar" incorrectly overrides property of same name in class "BaseUser" (reportIncompatibleMethodOverride) +210 errors, 4 warnings, 0 informations diff --git a/scripts/ty_benchmark/snapshots/discord.py_mypy.txt b/scripts/ty_benchmark/snapshots/discord.py_mypy.txt new file mode 100644 index 0000000000..f0cca2f6fa --- /dev/null +++ b/scripts/ty_benchmark/snapshots/discord.py_mypy.txt @@ -0,0 +1,1223 @@ +discord/enums.py:96: error: "namedtuple()" expects a string literal as the first argument [misc] +discord/enums.py:97: error: Cannot assign to a method [method-assign] +discord/enums.py:97: error: "object" has no attribute "name" [attr-defined] +discord/enums.py:97: error: "object" has no attribute "value" [attr-defined] +discord/enums.py:98: error: Cannot assign to a method [method-assign] +discord/enums.py:98: error: "object" has no attribute "name" [attr-defined] +discord/enums.py:100: error: Cannot assign to a method [method-assign] +discord/enums.py:100: error: "Tuple[_T_co, ...]" has no attribute "value" [attr-defined] +discord/enums.py:101: error: Cannot assign to a method [method-assign] +discord/enums.py:101: error: "Tuple[_T_co, ...]" has no attribute "value" [attr-defined] +discord/enums.py:102: error: Cannot assign to a method [method-assign] +discord/enums.py:102: error: "Tuple[_T_co, ...]" has no attribute "value" [attr-defined] +discord/enums.py:103: error: Cannot assign to a method [method-assign] +discord/enums.py:103: error: "Tuple[_T_co, ...]" has no attribute "value" [attr-defined] +discord/enums.py:113: error: Cannot override instance variable (previously declared on base class "type") with class variable [misc] +discord/enums.py:126: error: Need type annotation for "value_mapping" (hint: "value_mapping: Dict[, ] = ...") [var-annotated] +discord/enums.py:509: error: Missing return statement [return] +discord/enums.py:960: error: Incompatible types in assignment (expression has type "int", base class "Enum" defined the type as "str") [assignment] +discord/flags.py:1784: error: Argument 1 of "_from_value" is incompatible with supertype "BaseFlags"; supertype defines the argument type as "int" [override] +discord/flags.py:1784: note: This violates the Liskov substitution principle +discord/flags.py:1784: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/flags.py:1881: error: Signature of "to_array" incompatible with supertype "ArrayFlags" [override] +discord/flags.py:1881: note: Superclass: +discord/flags.py:1881: note: def to_array(self, *, offset: int = ...) -> List[int] +discord/flags.py:1881: note: Subclass: +discord/flags.py:1881: note: def to_array(self) -> List[int] +discord/types/emoji.py:42: error: Overwriting TypedDict field "animated" while extending [misc] +discord/backoff.py:63: error: Incompatible default for argument "integral" (default has type "Literal[False]", argument has type "Literal[True]") [assignment] +discord/types/scheduled_event.py:84: error: Overwriting TypedDict field "user_count" while merging [misc] +discord/types/scheduled_event.py:87: error: Overwriting TypedDict field "user_count" while merging [misc] +discord/types/scheduled_event.py:90: error: Overwriting TypedDict field "user_count" while merging [misc] +discord/types/interactions.py:209: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/interactions.py:215: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/interactions.py:221: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/interactions.py:237: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/interactions.py:242: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/guild.py:142: error: Overwriting TypedDict field "stickers" while extending [misc] +discord/types/components.py:47: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/components.py:52: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/components.py:84: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/components.py:89: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/components.py:94: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/components.py:99: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/components.py:104: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/components.py:110: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/components.py:122: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/components.py:130: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/components.py:136: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/components.py:153: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/components.py:166: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/components.py:171: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/components.py:179: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/components.py:185: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/components.py:192: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/components.py:199: error: Overwriting TypedDict field "type" while extending [misc] +discord/types/channel.py:132: error: Duplicate TypedDict key "owner_id" [misc] +discord/types/channel.py:133: error: Duplicate TypedDict key "rate_limit_per_user" [misc] +discord/types/channel.py:134: error: Duplicate TypedDict key "last_message_id" [misc] +discord/app_commands/installs.py:113: error: Incompatible return value type (got "List[int]", expected "List[Literal[0, 1]]") [return-value] +discord/app_commands/installs.py:213: error: Incompatible return value type (got "List[int]", expected "List[Literal[0, 1, 2]]") [return-value] +discord/types/gateway.py:180: error: Overwriting TypedDict field "newly_created" while extending [misc] +discord/mentions.py:126: error: Item "bool" of "Union[bool, Sequence[Snowflake]]" has no attribute "__iter__" (not iterable) [union-attr] +discord/mentions.py:131: error: Item "bool" of "Union[bool, Sequence[Snowflake]]" has no attribute "__iter__" (not iterable) [union-attr] +discord/mentions.py:134: error: Incompatible types in assignment (expression has type "bool", target has type "List[Union[Any, int]]") [assignment] +discord/mentions.py:136: error: Incompatible types in assignment (expression has type "List[str]", target has type "List[Union[Any, int]]") [assignment] +discord/errors.py:30: error: Library stubs not installed for "requests" [import-untyped] +discord/_types.py:29: error: Incompatible import of "TypeVar" (imported name has type "Type[typing_extensions.TypeVar]", local name has type "Type[typing.TypeVar]") [assignment] +discord/opus.py:415: error: Value of type variable "_T" of "array" cannot be "bytes" [type-var] +discord/oggparse.py:102: error: If x = b'abc' then f"{x}" or "{}".format(x) produces "b'abc'", not "abc". If this is desired behavior, use f"{x!r}" or "{!r}".format(x). Otherwise, decode the bytes [str-bytes-safe] +discord/utils.py:439: error: Argument 1 to "filter" has incompatible type "Callable[[T], Any]"; expected "Callable[[T], TypeGuard[Optional[T]]]" [arg-type] +discord/utils.py:743: error: "type" has no attribute "__slots__" [attr-defined] +discord/utils.py:1476: error: Return value expected [return-value] +discord/utils.py:1483: error: Name "_ActiveDecompressionContext" already defined on line 1459 [no-redef] +discord/stage_instance.py:168: error: Incompatible types in assignment (expression has type "int", target has type "str") [assignment] +discord/player.py:331: error: Argument 1 to "append" of "list" has incompatible type "Union[str, BufferedIOBase]"; expected "str" [arg-type] +discord/player.py:443: error: Argument 1 to "append" of "list" has incompatible type "Union[str, BufferedIOBase]"; expected "str" [arg-type] +discord/player.py:807: error: Attribute "loops" already defined on line 729 [no-redef] +discord/player.py:808: error: Attribute "_start" already defined on line 730 [no-redef] +discord/file.py:106: error: Cannot assign to a method [method-assign] +discord/file.py:160: error: Cannot assign to a method [method-assign] +discord/embeds.py:192: error: Incompatible types in assignment (expression has type "Union[int, Colour, None]", variable has type "Optional[Colour]") [assignment] +discord/embeds.py:308: error: Argument 1 of "__eq__" is incompatible with supertype "object"; supertype defines the argument type as "object" [override] +discord/embeds.py:308: note: This violates the Liskov substitution principle +discord/embeds.py:308: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/embeds.py:308: note: It is recommended for "__eq__" to work with arbitrary objects, for example: +discord/embeds.py:308: note: def __eq__(self, other: object) -> bool: +discord/embeds.py:308: note: if not isinstance(other, Embed): +discord/embeds.py:308: note: return NotImplemented +discord/embeds.py:308: note: return +discord/embeds.py:362: error: Incompatible types in assignment (expression has type "None", variable has type "datetime") [assignment] +discord/embeds.py:449: error: Cannot determine type of "_image" [has-type] +discord/embeds.py:492: error: Cannot determine type of "_thumbnail" [has-type] +discord/embeds.py:619: error: Cannot determine type of "_fields" [has-type] +discord/automod.py:176: error: Need type annotation for "ret" [var-annotated] +discord/automod.py:304: error: Argument "keyword_filter" to "AutoModTrigger" has incompatible type "object"; expected "Optional[List[str]]" [arg-type] +discord/automod.py:305: error: Argument "regex_patterns" to "AutoModTrigger" has incompatible type "object"; expected "Optional[List[str]]" [arg-type] +discord/automod.py:306: error: Argument "allow_list" to "AutoModTrigger" has incompatible type "object"; expected "Optional[List[str]]" [arg-type] +discord/automod.py:310: error: Argument 1 to "_from_value" of "ArrayFlags" has incompatible type "object"; expected "Sequence[int]" [arg-type] +discord/automod.py:310: error: Argument "allow_list" to "AutoModTrigger" has incompatible type "object"; expected "Optional[List[str]]" [arg-type] +discord/automod.py:315: error: Argument "mention_limit" to "AutoModTrigger" has incompatible type "object"; expected "Optional[int]" [arg-type] +discord/automod.py:316: error: Argument "mention_raid_protection" to "AutoModTrigger" has incompatible type "object"; expected "Optional[bool]" [arg-type] +discord/automod.py:321: error: Missing return statement [return] +discord/automod.py:388: error: Argument "data" to "from_data" of "AutoModTrigger" has incompatible type "object"; expected "Union[_AutoModerationTriggerMetadataKeyword, _AutoModerationTriggerMetadataKeywordPreset, _AutoModerationTriggerMetadataMentionLimit, Empty, None]" [arg-type] +discord/automod.py:435: error: Argument 1 to "_unique" has incompatible type "filter[Hashable]"; expected "Iterable[Union[GuildChannel, Thread]]" [arg-type] +discord/automod.py:512: error: Incompatible types in assignment (expression has type "str", target has type "List[Dict[str, Any]]") [assignment] +discord/automod.py:515: error: Incompatible types in assignment (expression has type "int", target has type "List[Dict[str, Any]]") [assignment] +discord/automod.py:520: error: Incompatible types in assignment (expression has type "Dict[str, Any]", target has type "List[Dict[str, Any]]") [assignment] +discord/automod.py:523: error: Incompatible types in assignment (expression has type "bool", target has type "List[Dict[str, Any]]") [assignment] +discord/automod.py:526: error: List comprehension has incompatible type List[int]; expected List[Dict[str, Any]] [misc] +discord/automod.py:529: error: List comprehension has incompatible type List[int]; expected List[Dict[str, Any]] [misc] +discord/app_commands/errors.py:471: error: Incompatible types in assignment (expression has type "List[Any]", variable has type "Dict[str, str]") [assignment] +discord/sku.py:231: error: Incompatible types in assignment (expression has type "Callable[[Arg(int, 'retrieve'), Arg(Optional[Snowflake], 'after'), Arg(Optional[int], 'limit')], Coroutine[Any, Any, Any]]", variable has type "Callable[[Arg(int, 'retrieve'), Arg(Optional[Snowflake], 'before'), Arg(Optional[int], 'limit')], Coroutine[Any, Any, Any]]") [assignment] +discord/sku.py:231: error: Incompatible types in assignment (expression has type "Optional[Snowflake]", variable has type "Snowflake") [assignment] +discord/asset.py:385: error: Cannot override writeable attribute with read-only property [override] +discord/asset.py:461: error: Incompatible types in assignment (expression has type "str", variable has type "URL") [assignment] +discord/asset.py:462: error: Argument "url" to "Asset" has incompatible type "URL"; expected "str" [arg-type] +discord/asset.py:524: error: Incompatible types in assignment (expression has type "str", variable has type "URL") [assignment] +discord/asset.py:525: error: Argument "url" to "Asset" has incompatible type "URL"; expected "str" [arg-type] +discord/sticker.py:207: error: Attribute "url" already defined on line 205 [no-redef] +discord/sticker.py:282: error: Attribute "url" already defined on line 280 [no-redef] +discord/sticker.py:335: error: Argument 1 of "_from_data" is incompatible with supertype "Sticker"; supertype defines the argument type as "Union[StandardSticker, GuildSticker]" [override] +discord/sticker.py:335: note: This violates the Liskov substitution principle +discord/sticker.py:335: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/sticker.py:415: error: Argument 1 of "_from_data" is incompatible with supertype "Sticker"; supertype defines the argument type as "Union[StandardSticker, GuildSticker]" [override] +discord/sticker.py:415: note: This violates the Liskov substitution principle +discord/sticker.py:415: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/scheduled_event.py:139: error: Incompatible types in assignment (expression has type "object", variable has type "Optional[str]") [assignment] +discord/scheduled_event.py:145: error: Incompatible types in assignment (expression has type "object", variable has type "Optional[str]") [assignment] +discord/scheduled_event.py:146: error: Incompatible types in assignment (expression has type "object", variable has type "int") [assignment] +discord/scheduled_event.py:150: error: Argument 1 to "store_user" of "ConnectionState" has incompatible type "object"; expected "Union[User, PartialUser]" [arg-type] +discord/scheduled_event.py:155: error: No overload variant of "parse_time" matches argument type "object" [call-overload] +discord/scheduled_event.py:155: note: Possible overload variants: +discord/scheduled_event.py:155: note: def parse_time(timestamp: None) -> None +discord/scheduled_event.py:155: note: def parse_time(timestamp: str) -> datetime +discord/scheduled_event.py:155: note: def parse_time(timestamp: Optional[str]) -> Optional[datetime] +discord/scheduled_event.py:159: error: Argument 1 to "_unroll_metadata" of "ScheduledEvent" has incompatible type "object"; expected "Optional[EntityMetadata]" [arg-type] +discord/scheduled_event.py:480: error: Incompatible types in assignment (expression has type "int", target has type "str") [assignment] +discord/scheduled_event.py:486: error: Incompatible types in assignment (expression has type "int", target has type "str") [assignment] +discord/scheduled_event.py:490: error: Incompatible types in assignment (expression has type "Optional[str]", target has type "str") [assignment] +discord/scheduled_event.py:505: error: Incompatible types in assignment (expression has type "int", target has type "str") [assignment] +discord/scheduled_event.py:520: error: Incompatible types in assignment (expression has type "int", target has type "str") [assignment] +discord/scheduled_event.py:524: error: Incompatible types in assignment (expression has type "None", target has type "str") [assignment] +discord/scheduled_event.py:528: error: Incompatible types in assignment (expression has type "None", target has type "str") [assignment] +discord/scheduled_event.py:547: error: Incompatible types in assignment (expression has type "None", target has type "str") [assignment] +discord/scheduled_event.py:550: error: Incompatible types in assignment (expression has type "Dict[str, str]", target has type "str") [assignment] +discord/scheduled_event.py:647: error: Incompatible types in assignment (expression has type "Callable[[Arg(int, 'retrieve'), Arg(Optional[Snowflake], 'before'), Arg(Optional[int], 'limit')], Coroutine[Any, Any, Any]]", variable has type "Callable[[Arg(int, 'retrieve'), Arg(Optional[Snowflake], 'after'), Arg(Optional[int], 'limit')], Coroutine[Any, Any, Any]]") [assignment] +discord/partial_emoji.py:100: error: Incompatible types in assignment (expression has type "Optional[int]", base class "_EmojiTag" defined the type as "int") [assignment] +discord/partial_emoji.py:240: error: Cannot override writeable attribute with read-only property [override] +discord/appinfo.py:222: error: Incompatible types in assignment (expression has type "object", variable has type "int") [assignment] +discord/appinfo.py:412: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/appinfo.py:415: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/appinfo.py:418: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/appinfo.py:420: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/appinfo.py:458: error: Unsupported right operand type for in ("Optional[List[str]]") [operator] +discord/appinfo.py:462: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/appinfo.py:464: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/appinfo.py:464: error: Item "None" of "Optional[Permissions]" has no attribute "value" [union-attr] +discord/appinfo.py:466: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/appinfo.py:478: error: Unsupported right operand type for in ("Optional[List[str]]") [operator] +discord/appinfo.py:482: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/appinfo.py:484: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/appinfo.py:484: error: Item "None" of "Optional[Permissions]" has no attribute "value" [union-attr] +discord/appinfo.py:486: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/welcome_screen.py:90: error: Incompatible types in assignment (expression has type "Optional[str]", variable has type "Optional[Emoji]") [assignment] +discord/welcome_screen.py:211: error: Incompatible types in assignment (expression has type "str", target has type "List[WelcomeScreenChannel]") [assignment] +discord/welcome_screen.py:214: error: Incompatible types in assignment (expression has type "bool", target has type "List[WelcomeScreenChannel]") [assignment] +discord/onboarding.py:182: error: Argument 1 to "_unique" has incompatible type "filter[Hashable]"; expected "Iterable[Union[GuildChannel, Thread]]" [arg-type] +discord/onboarding.py:365: error: Argument 1 to "_unique" has incompatible type "filter[Hashable]"; expected "Iterable[Union[GuildChannel, Thread]]" [arg-type] +discord/invite.py:402: error: Incompatible types in assignment (expression has type "object", variable has type "Optional[bool]") [assignment] +discord/invite.py:407: error: Incompatible types in assignment (expression has type "object", variable has type "Optional[int]") [assignment] +discord/invite.py:408: error: Incompatible types in assignment (expression has type "object", variable has type "Optional[int]") [assignment] +discord/invite.py:470: error: Item "Object" of "Union[Guild, Object]" has no attribute "get_channel" [union-attr] +discord/invite.py:518: error: Cannot override writeable attribute with read-only property [override] +discord/invite.py:518: error: Signature of "id" incompatible with supertype "EqualityComparable" [override] +discord/invite.py:518: note: Superclass: +discord/invite.py:518: note: int +discord/invite.py:518: note: Subclass: +discord/invite.py:518: note: str +discord/components.py:478: error: Incompatible types in assignment (expression has type "Union[str, Emoji, PartialEmoji, None]", variable has type "Optional[PartialEmoji]") [assignment] +discord/components.py:512: error: Incompatible types in assignment (expression has type "None", variable has type "PartialEmoji") [assignment] +discord/components.py:1043: error: Incompatible types in assignment (expression has type "Union[str, File, UnfurledMediaItem]", variable has type "UnfurledMediaItem") [assignment] +discord/components.py:1326: error: List comprehension has incompatible type List[Union[ButtonComponent, SelectMenu, TextInput, LabelComponent, FileUploadComponent, <8 more items>]]; expected List[Union[ActionRow, TextComponent, MediaGalleryComponent, FileComponent, SectionComponent, ContainerComponent, SeparatorComponent, ThumbnailComponent]] [misc] +discord/components.py:1456: error: Missing return statement [return] +discord/activity.py:127: error: Missing return statement [return] +discord/activity.py:286: error: Return type "Dict[str, Any]" of "to_dict" incompatible with return type "Activity" in supertype "BaseActivity" [override] +discord/activity.py:344: error: Missing return statement [return] +discord/activity.py:416: error: Incompatible types in assignment (expression has type "Union[Any, Dict[Any, Any]]", variable has type "ActivityAssets") [assignment] +discord/activity.py:455: error: Return type "Dict[str, Any]" of "to_dict" incompatible with return type "Activity" in supertype "BaseActivity" [override] +discord/activity.py:566: error: Return type "Dict[str, Any]" of "to_dict" incompatible with return type "Activity" in supertype "BaseActivity" [override] +discord/activity.py:631: error: Missing return statement [return] +discord/activity.py:822: error: Return type "Dict[str, Any]" of "to_dict" incompatible with return type "Activity" in supertype "BaseActivity" [override] +discord/activity.py:836: error: Incompatible types in assignment (expression has type "Emoji", target has type "Union[int, str, None]") [assignment] +discord/gateway.py:137: error: "__init__" of "Thread" gets multiple values for keyword argument "name" [misc] +discord/gateway.py:218: error: Incompatible types in assignment (expression has type "DiscordVoiceWebSocket", base class "KeepAliveHandler" defined the type as "DiscordWebSocket") [assignment] +discord/gateway.py:402: error: Cannot assign to a method [method-assign] +discord/gateway.py:403: error: Cannot assign to a method [method-assign] +discord/gateway.py:466: error: Unsupported target for indexed assignment ("object") [index] +discord/gateway.py:470: error: Unsupported target for indexed assignment ("object") [index] +discord/gateway.py:478: error: Unsupported target for indexed assignment ("object") [index] +discord/gateway.py:735: error: Unsupported target for indexed assignment ("object") [index] +discord/gateway.py:738: error: Unsupported target for indexed assignment ("object") [index] +discord/gateway.py:741: error: Unsupported target for indexed assignment ("object") [index] +discord/user.py:132: error: Incompatible types in assignment (expression has type "object", variable has type "Optional[str]") [assignment] +discord/user.py:133: error: Incompatible types in assignment (expression has type "object", variable has type "Optional[int]") [assignment] +discord/user.py:134: error: Incompatible types in assignment (expression has type "object", variable has type "int") [assignment] +discord/user.py:135: error: Incompatible types in assignment (expression has type "object", variable has type "bool") [assignment] +discord/user.py:136: error: Incompatible types in assignment (expression has type "object", variable has type "bool") [assignment] +discord/user.py:428: error: Argument 1 of "_update" is incompatible with supertype "BaseUser"; supertype defines the argument type as "Union[User, PartialUser]" [override] +discord/user.py:428: note: This violates the Liskov substitution principle +discord/user.py:428: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/widget.py:268: error: Incompatible types in assignment (expression has type "WidgetChannel", variable has type "Optional[int]") [assignment] +discord/widget.py:270: error: Incompatible types in assignment (expression has type "WidgetChannel", variable has type "Optional[int]") [assignment] +discord/widget.py:272: error: Argument "connected_channel" to "WidgetMember" has incompatible type "Optional[int]"; expected "Optional[WidgetChannel]" [arg-type] +discord/soundboard.py:98: error: Cannot override writeable attribute with read-only property [override] +discord/soundboard.py:208: error: Argument 1 of "_update" is incompatible with supertype "BaseSoundboardSound"; supertype defines the argument type as "BaseSoundboardSound" [override] +discord/soundboard.py:208: note: This violates the Liskov substitution principle +discord/soundboard.py:208: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/member.py:155: error: No overload variant of "parse_time" matches argument type "object" [call-overload] +discord/member.py:155: note: Possible overload variants: +discord/member.py:155: note: def parse_time(timestamp: None) -> None +discord/member.py:155: note: def parse_time(timestamp: str) -> datetime +discord/member.py:155: note: def parse_time(timestamp: Optional[str]) -> Optional[datetime] +discord/member.py:329: error: Incompatible types in assignment (expression has type "object", variable has type "Optional[str]") [assignment] +discord/member.py:439: error: Incompatible types in assignment (expression has type "object", variable has type "Optional[str]") [assignment] +discord/member.py:443: error: Missing return statement [return] +discord/member.py:450: error: Missing return statement [return] +discord/member.py:509: error: Name "status" already defined on line 496 [no-redef] +discord/member.py:509: error: "Callable[[Member], Status]" has no attribute "setter" [attr-defined] +discord/member.py:664: error: Missing return statement [return] +discord/integrations.py:200: error: Argument 1 of "_from_data" is incompatible with supertype "Integration"; supertype defines the argument type as "Union[BaseIntegration, StreamIntegration, BotIntegration]" [override] +discord/integrations.py:200: note: This violates the Liskov substitution principle +discord/integrations.py:200: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/integrations.py:359: error: Argument 1 of "_from_data" is incompatible with supertype "Integration"; supertype defines the argument type as "Union[BaseIntegration, StreamIntegration, BotIntegration]" [override] +discord/integrations.py:359: note: This violates the Liskov substitution principle +discord/integrations.py:359: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/emoji.py:166: error: Cannot override writeable attribute with read-only property [override] +discord/emoji.py:279: error: Incompatible types in assignment (expression has type "List[int]", target has type "str") [assignment] +discord/poll.py:449: error: Item "None" of "Optional[PollMedia]" has no attribute "get" [union-attr] +discord/poll.py:459: error: Argument "question" to "Poll" has incompatible type "Union[str, Any, None]"; expected "Union[PollMedia, str]" [arg-type] +discord/poll.py:544: error: Return value expected [return-value] +discord/app_commands/models.py:217: error: "object" has no attribute "__iter__"; maybe "__dir__" or "__str__"? (not iterable) [attr-defined] +discord/app_commands/models.py:224: error: No overload variant of "int" matches argument type "object" [call-overload] +discord/app_commands/models.py:224: note: Possible overload variants: +discord/app_commands/models.py:224: note: def __new__(cls, Union[str, Buffer, SupportsInt, SupportsIndex, SupportsTrunc] = ..., /) -> int +discord/app_commands/models.py:224: note: def __new__(cls, Union[str, bytes, bytearray], /, base: SupportsIndex) -> int +discord/app_commands/models.py:231: error: Incompatible types in assignment (expression has type "object", variable has type "bool") [assignment] +discord/app_commands/models.py:237: error: Argument 1 to "_from_value" of "ArrayFlags" has incompatible type "object"; expected "Sequence[int]" [arg-type] +discord/app_commands/models.py:243: error: Argument 1 to "_from_value" of "ArrayFlags" has incompatible type "object"; expected "Sequence[int]" [arg-type] +discord/app_commands/models.py:245: error: Incompatible types in assignment (expression has type "object", variable has type "bool") [assignment] +discord/app_commands/models.py:246: error: Argument 1 to "_to_locale_dict" has incompatible type "object"; expected "Dict[str, str]" [arg-type] +discord/app_commands/models.py:247: error: Argument 1 to "_to_locale_dict" has incompatible type "object"; expected "Dict[str, str]" [arg-type] +discord/app_commands/models.py:370: error: Incompatible types in assignment (expression has type "int", target has type "str") [assignment] +discord/app_commands/models.py:372: error: Incompatible types in assignment (expression has type "None", target has type "str") [assignment] +discord/app_commands/models.py:375: error: Incompatible types in assignment (expression has type "bool", target has type "str") [assignment] +discord/app_commands/models.py:378: error: Incompatible types in assignment (expression has type "List[Union[_SubCommandGroupCommandOption, _SubCommandCommandOption, _StringApplicationCommandOption, _IntegerApplicationCommandOption, _BooleanApplicationCommandOption, _ChannelApplicationCommandOptionChoice, _NonChannelSnowflakeApplicationCommandOptionChoice, _NumberApplicationCommandOption]]", target has type "str") [assignment] +discord/app_commands/models.py:511: error: Need type annotation for "context" [var-annotated] +discord/app_commands/models.py:526: error: Need type annotation for "context" [var-annotated] +discord/app_commands/models.py:539: error: Incompatible types in assignment (expression has type "Dict[str, str]", target has type "str") [assignment] +discord/app_commands/models.py:539: error: Incompatible types in assignment (expression has type "Dict[str, str]", target has type "Union[str, int, float]") [assignment] +discord/app_commands/models.py:894: error: Need type annotation for "tags" (hint: "tags: List[] = ...") [var-annotated] +discord/app_commands/models.py:926: error: Incompatible return value type (got "Union[Guild, Member, None]", expected "Optional[Member]") [return-value] +discord/app_commands/models.py:1057: error: Incompatible types in assignment (expression has type "object", variable has type "bool") [assignment] +discord/app_commands/models.py:1058: error: Incompatible types in assignment (expression has type "object", variable has type "Union[int, float, None]") [assignment] +discord/app_commands/models.py:1059: error: Incompatible types in assignment (expression has type "object", variable has type "Union[int, float, None]") [assignment] +discord/app_commands/models.py:1060: error: Incompatible types in assignment (expression has type "object", variable has type "Optional[int]") [assignment] +discord/app_commands/models.py:1061: error: Incompatible types in assignment (expression has type "object", variable has type "Optional[int]") [assignment] +discord/app_commands/models.py:1062: error: Incompatible types in assignment (expression has type "object", variable has type "bool") [assignment] +discord/app_commands/models.py:1063: error: "object" has no attribute "__iter__"; maybe "__dir__" or "__str__"? (not iterable) [attr-defined] +discord/app_commands/models.py:1064: error: "object" has no attribute "__iter__"; maybe "__dir__" or "__str__"? (not iterable) [attr-defined] +discord/app_commands/models.py:1065: error: Argument 1 to "_to_locale_dict" has incompatible type "object"; expected "Dict[str, str]" [arg-type] +discord/app_commands/models.py:1066: error: Argument 1 to "_to_locale_dict" has incompatible type "object"; expected "Dict[str, str]" [arg-type] +discord/app_commands/models.py:1154: error: Incompatible types in assignment (expression has type "Union[AppCommand, AppCommandGroup]", variable has type "AppCommand") [assignment] +discord/app_commands/models.py:1162: error: "object" has no attribute "__iter__"; maybe "__dir__" or "__str__"? (not iterable) [attr-defined] +discord/app_commands/models.py:1164: error: Argument 1 to "_to_locale_dict" has incompatible type "object"; expected "Dict[str, str]" [arg-type] +discord/app_commands/models.py:1165: error: Argument 1 to "_to_locale_dict" has incompatible type "object"; expected "Dict[str, str]" [arg-type] +discord/app_commands/models.py:1217: error: Incompatible types in assignment (expression has type "AllChannels", variable has type "Union[Member, User, None]") [assignment] +discord/app_commands/models.py:1219: error: Incompatible types in assignment (expression has type "Union[VoiceChannel, StageChannel, ForumChannel, TextChannel, CategoryChannel, None]", variable has type "Union[Member, User, None]") [assignment] +discord/app_commands/models.py:1221: error: Incompatible types in assignment (expression has type "Optional[Role]", variable has type "Union[Member, User, None]") [assignment] +discord/app_commands/models.py:1225: error: Incompatible types in assignment (expression has type "Object", variable has type "Union[Member, User, None]") [assignment] +discord/app_commands/models.py:1227: error: Incompatible types in assignment (expression has type "Union[Member, User, None]", variable has type "Union[Object, User, Member, Role, AllChannels, Union[Union[VoiceChannel, StageChannel], ForumChannel, TextChannel, CategoryChannel]]") [assignment] +discord/threads.py:223: error: Attribute "_flags" already defined on line 194 [no-redef] +discord/threads.py:224: error: Attribute "_applied_tags" already defined on line 196 [no-redef] +discord/threads.py:280: error: Need type annotation for "tags" (hint: "tags: List[] = ...") [var-annotated] +discord/threads.py:649: error: Incompatible types in assignment (expression has type "bool", target has type "str") [assignment] +discord/threads.py:651: error: Incompatible types in assignment (expression has type "Literal[60, 1440, 4320, 10080]", target has type "str") [assignment] +discord/threads.py:653: error: Incompatible types in assignment (expression has type "bool", target has type "str") [assignment] +discord/threads.py:655: error: Incompatible types in assignment (expression has type "bool", target has type "str") [assignment] +discord/threads.py:657: error: Incompatible types in assignment (expression has type "int", target has type "str") [assignment] +discord/threads.py:661: error: Incompatible types in assignment (expression has type "int", target has type "str") [assignment] +discord/threads.py:663: error: Incompatible types in assignment (expression has type "List[str]", target has type "str") [assignment] +discord/template.py:286: error: Incompatible types in assignment (expression has type "Optional[str]", target has type "str") [assignment] +discord/state.py:167: error: Missing return statement [return] +discord/state.py:263: error: Cannot assign to a method [method-assign] +discord/state.py:315: error: Attribute "_messages" already defined on line 313 [no-redef] +discord/state.py:468: error: Need type annotation for "all_sounds" (hint: "all_sounds: List[] = ...") [var-annotated] +discord/state.py:549: error: Incompatible types in assignment (expression has type "Union[Guild, VoiceChannel, StageChannel, ForumChannel, TextChannel, CategoryChannel, Thread, None]", variable has type "DMChannel") [assignment] +discord/state.py:556: error: Return value expected [return-value] +discord/state.py:673: error: Attribute "application_flags" already defined on line 202 [no-redef] +discord/state.py:765: error: Incompatible types in assignment (expression has type "Union[Emoji, PartialEmoji, str]", variable has type "PartialEmoji") [assignment] +discord/state.py:790: error: Incompatible types in assignment (expression has type "Union[Emoji, PartialEmoji, str]", variable has type "PartialEmoji") [assignment] +discord/state.py:828: error: Incompatible types in assignment (expression has type "ModalSubmitInteractionData", variable has type "Union[ButtonMessageComponentInteractionData, SelectMessageComponentInteractionData]") [assignment] +discord/state.py:830: error: TypedDict "ButtonMessageComponentInteractionData" has no key "components" [typeddict-item] +discord/state.py:830: error: TypedDict "SelectMessageComponentInteractionData" has no key "components" [typeddict-item] +discord/state.py:832: error: Argument 4 to "dispatch_modal" of "ViewStore" has incompatible type "object"; expected "ResolvedData" [arg-type] +discord/state.py:871: error: Variable "discord.types.gateway.ChannelDeleteEvent" is not valid as a type [valid-type] +discord/state.py:871: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:873: error: Value of type gw.ChannelDeleteEvent? is not indexable [index] +discord/state.py:892: error: Variable "discord.types.gateway.ChannelUpdateEvent" is not valid as a type [valid-type] +discord/state.py:892: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:893: error: gw.ChannelUpdateEvent? has no attribute "get" [attr-defined] +discord/state.py:894: error: Value of type gw.ChannelUpdateEvent? is not indexable [index] +discord/state.py:909: error: Incompatible types in assignment (expression has type "Union[VoiceChannel, StageChannel, ForumChannel, TextChannel, CategoryChannel, None]", variable has type "Optional[PrivateChannel]") [assignment] +discord/state.py:919: error: Variable "discord.types.gateway.ChannelCreateEvent" is not valid as a type [valid-type] +discord/state.py:919: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:920: error: Value of type gw.ChannelCreateEvent? is not indexable [index] +discord/state.py:922: error: Value of type gw.ChannelCreateEvent? is not indexable [index] +discord/state.py:944: error: Incompatible types in assignment (expression has type "Union[Guild, VoiceChannel, StageChannel, ForumChannel, TextChannel, CategoryChannel, Thread, None]", variable has type "Optional[PrivateChannel]") [assignment] +discord/state.py:1092: error: Incompatible types in assignment (expression has type "Optional[ThreadMember]", variable has type "ThreadMember") [assignment] +discord/state.py:1252: error: Variable "discord.types.gateway.GuildCreateEvent" is not valid as a type [valid-type] +discord/state.py:1252: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1253: error: gw.GuildCreateEvent? has no attribute "get" [attr-defined] +discord/state.py:1257: error: Value of type gw.GuildCreateEvent? is not indexable [index] +discord/state.py:1316: error: Variable "discord.types.gateway.GuildCreateEvent" is not valid as a type [valid-type] +discord/state.py:1316: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1317: error: gw.GuildCreateEvent? has no attribute "get" [attr-defined] +discord/state.py:1338: error: Variable "discord.types.gateway.GuildUpdateEvent" is not valid as a type [valid-type] +discord/state.py:1338: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1339: error: Value of type gw.GuildUpdateEvent? is not indexable [index] +discord/state.py:1345: error: Value of type gw.GuildUpdateEvent? is not indexable [index] +discord/state.py:1362: error: Attribute "_messages" already defined on line 313 [no-redef] +discord/state.py:1369: error: Variable "discord.types.gateway.GuildBanAddEvent" is not valid as a type [valid-type] +discord/state.py:1369: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1375: error: Value of type gw.GuildBanAddEvent? is not indexable [index] +discord/state.py:1378: error: Value of type gw.GuildBanAddEvent? is not indexable [index] +discord/state.py:1385: error: Variable "discord.types.gateway.GuildBanRemoveEvent" is not valid as a type [valid-type] +discord/state.py:1385: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1386: error: Value of type gw.GuildBanRemoveEvent? is not indexable [index] +discord/state.py:1387: error: gw.GuildBanRemoveEvent? has no attribute "__iter__" (not iterable) [attr-defined] +discord/state.py:1388: error: Value of type gw.GuildBanRemoveEvent? is not indexable [index] +discord/state.py:1391: error: Variable "discord.types.gateway.GuildRoleCreateEvent" is not valid as a type [valid-type] +discord/state.py:1391: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1392: error: Value of type gw.GuildRoleCreateEvent? is not indexable [index] +discord/state.py:1394: error: Value of type gw.GuildRoleCreateEvent? is not indexable [index] +discord/state.py:1397: error: Value of type gw.GuildRoleCreateEvent? is not indexable [index] +discord/state.py:1415: error: Variable "discord.types.gateway.GuildRoleUpdateEvent" is not valid as a type [valid-type] +discord/state.py:1415: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1416: error: Value of type gw.GuildRoleUpdateEvent? is not indexable [index] +discord/state.py:1418: error: Value of type gw.GuildRoleUpdateEvent? is not indexable [index] +discord/state.py:1426: error: Value of type gw.GuildRoleUpdateEvent? is not indexable [index] +discord/state.py:1460: error: Variable "discord.types.gateway.IntegrationCreateEvent" is not valid as a type [valid-type] +discord/state.py:1460: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1461: error: Value of type gw.IntegrationCreateEvent? is not indexable [index] +discord/state.py:1464: error: Value of type gw.IntegrationCreateEvent? is not indexable [index] +discord/state.py:1470: error: Variable "discord.types.gateway.IntegrationUpdateEvent" is not valid as a type [valid-type] +discord/state.py:1470: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1471: error: Value of type gw.IntegrationUpdateEvent? is not indexable [index] +discord/state.py:1474: error: Value of type gw.IntegrationUpdateEvent? is not indexable [index] +discord/state.py:1502: error: Variable "discord.types.gateway.StageInstanceCreateEvent" is not valid as a type [valid-type] +discord/state.py:1502: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1503: error: Value of type gw.StageInstanceCreateEvent? is not indexable [index] +discord/state.py:1509: error: Value of type gw.StageInstanceCreateEvent? is not indexable [index] +discord/state.py:1511: error: Variable "discord.types.gateway.StageInstanceUpdateEvent" is not valid as a type [valid-type] +discord/state.py:1511: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1512: error: Value of type gw.StageInstanceUpdateEvent? is not indexable [index] +discord/state.py:1514: error: Value of type gw.StageInstanceUpdateEvent? is not indexable [index] +discord/state.py:1520: error: Value of type gw.StageInstanceUpdateEvent? is not indexable [index] +discord/state.py:1522: error: Value of type gw.StageInstanceUpdateEvent? is not indexable [index] +discord/state.py:1524: error: Variable "discord.types.gateway.StageInstanceDeleteEvent" is not valid as a type [valid-type] +discord/state.py:1524: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1525: error: Value of type gw.StageInstanceDeleteEvent? is not indexable [index] +discord/state.py:1528: error: Value of type gw.StageInstanceDeleteEvent? is not indexable [index] +discord/state.py:1534: error: Value of type gw.StageInstanceDeleteEvent? is not indexable [index] +discord/state.py:1536: error: Variable "discord.types.gateway.GuildScheduledEventCreateEvent" is not valid as a type [valid-type] +discord/state.py:1536: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1537: error: Value of type gw.GuildScheduledEventCreateEvent? is not indexable [index] +discord/state.py:1543: error: Value of type gw.GuildScheduledEventCreateEvent? is not indexable [index] +discord/state.py:1545: error: Variable "discord.types.gateway.GuildScheduledEventUpdateEvent" is not valid as a type [valid-type] +discord/state.py:1545: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1546: error: Value of type gw.GuildScheduledEventUpdateEvent? is not indexable [index] +discord/state.py:1548: error: Value of type gw.GuildScheduledEventUpdateEvent? is not indexable [index] +discord/state.py:1554: error: Value of type gw.GuildScheduledEventUpdateEvent? is not indexable [index] +discord/state.py:1556: error: Value of type gw.GuildScheduledEventUpdateEvent? is not indexable [index] +discord/state.py:1558: error: Variable "discord.types.gateway.GuildScheduledEventDeleteEvent" is not valid as a type [valid-type] +discord/state.py:1558: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1559: error: Value of type gw.GuildScheduledEventDeleteEvent? is not indexable [index] +discord/state.py:1561: error: Value of type gw.GuildScheduledEventDeleteEvent? is not indexable [index] +discord/state.py:1564: error: Value of type gw.GuildScheduledEventDeleteEvent? is not indexable [index] +discord/state.py:1566: error: Variable "discord.types.gateway.GuildScheduledEventUserAdd" is not valid as a type [valid-type] +discord/state.py:1566: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1567: error: Value of type gw.GuildScheduledEventUserAdd? is not indexable [index] +discord/state.py:1569: error: Value of type gw.GuildScheduledEventUserAdd? is not indexable [index] +discord/state.py:1571: error: Value of type gw.GuildScheduledEventUserAdd? is not indexable [index] +discord/state.py:1576: error: Value of type gw.GuildScheduledEventUserAdd? is not indexable [index] +discord/state.py:1580: error: Value of type gw.GuildScheduledEventUserAdd? is not indexable [index] +discord/state.py:1583: error: Value of type gw.GuildScheduledEventUserAdd? is not indexable [index] +discord/state.py:1585: error: Variable "discord.types.gateway.GuildScheduledEventUserRemove" is not valid as a type [valid-type] +discord/state.py:1585: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1586: error: Value of type gw.GuildScheduledEventUserRemove? is not indexable [index] +discord/state.py:1588: error: Value of type gw.GuildScheduledEventUserRemove? is not indexable [index] +discord/state.py:1590: error: Value of type gw.GuildScheduledEventUserRemove? is not indexable [index] +discord/state.py:1595: error: Value of type gw.GuildScheduledEventUserRemove? is not indexable [index] +discord/state.py:1599: error: Value of type gw.GuildScheduledEventUserRemove? is not indexable [index] +discord/state.py:1602: error: Value of type gw.GuildScheduledEventUserRemove? is not indexable [index] +discord/state.py:1604: error: Variable "discord.types.gateway.GuildSoundBoardSoundCreateEvent" is not valid as a type [valid-type] +discord/state.py:1604: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1614: error: Variable "discord.types.gateway.GuildSoundBoardSoundUpdateEvent" is not valid as a type [valid-type] +discord/state.py:1614: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1619: error: Variable "discord.types.gateway.GuildSoundBoardSoundUpdateEvent" is not valid as a type [valid-type] +discord/state.py:1619: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1623: error: Value of type gw.GuildSoundBoardSoundUpdateEvent? is not indexable [index] +discord/state.py:1729: error: Variable "discord.types.gateway.EntitlementCreateEvent" is not valid as a type [valid-type] +discord/state.py:1729: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1733: error: Variable "discord.types.gateway.EntitlementUpdateEvent" is not valid as a type [valid-type] +discord/state.py:1733: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1737: error: Variable "discord.types.gateway.EntitlementDeleteEvent" is not valid as a type [valid-type] +discord/state.py:1737: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1752: error: Incompatible types in assignment (expression has type "Optional[User]", variable has type "Optional[Member]") [assignment] +discord/state.py:1770: error: Incompatible types in assignment (expression has type "Optional[User]", variable has type "Optional[Member]") [assignment] +discord/state.py:1777: error: Variable "discord.types.gateway.SubscriptionCreateEvent" is not valid as a type [valid-type] +discord/state.py:1777: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1781: error: Variable "discord.types.gateway.SubscriptionUpdateEvent" is not valid as a type [valid-type] +discord/state.py:1781: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1785: error: Variable "discord.types.gateway.SubscriptionDeleteEvent" is not valid as a type [valid-type] +discord/state.py:1785: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +discord/state.py:1820: error: Missing return statement [return] +discord/state.py:1836: error: Missing return statement [return] +discord/state.py:1838: error: Return value expected [return-value] +discord/shard.py:372: error: Incompatible types in assignment (expression has type "AutoShardedConnectionState[Client]", base class "Client" defined the type as "ConnectionState[AutoShardedClient]") [assignment] +discord/shard.py:379: error: Extra argument "shard_ids" from **args for "__init__" of "Client" [misc] +discord/shard.py:389: error: Need type annotation for "__shards" (hint: "__shards: Dict[, ] = ...") [var-annotated] +discord/shard.py:399: error: Return type "AutoShardedConnectionState[Client]" of "_get_state" incompatible with return type "ConnectionState[AutoShardedClient]" in supertype "Client" [override] +discord/shard.py:515: error: Need type annotation for "__queue" [var-annotated] +discord/shard.py:631: error: Property "status" defined in "Member" is read-only [misc] +discord/raw_models.py:109: error: Attribute "guild_id" already defined on line 107 [no-redef] +discord/raw_models.py:137: error: Attribute "guild_id" already defined on line 135 [no-redef] +discord/raw_models.py:247: error: "object" has no attribute "__iter__"; maybe "__dir__" or "__str__"? (not iterable) [attr-defined] +discord/raw_models.py:253: error: Attribute "guild_id" already defined on line 251 [no-redef] +discord/raw_models.py:286: error: Attribute "guild_id" already defined on line 284 [no-redef] +discord/raw_models.py:316: error: Attribute "guild_id" already defined on line 314 [no-redef] +discord/raw_models.py:345: error: Attribute "application_id" already defined on line 341 [no-redef] +discord/message.py:242: error: Incompatible types in assignment (expression has type "object", variable has type "Optional[str]") [assignment] +discord/message.py:713: error: Incompatible return value type (got "Union[ConnectionState[Client], Message, None]", expected "Optional[Message]") [return-value] +discord/message.py:868: error: "object" has no attribute "items" [attr-defined] +discord/message.py:1235: error: Missing return statement [return] +discord/message.py:2223: error: Argument 2 to "_from_value" of "MessageSnapshot" has incompatible type "object"; expected "Optional[List[Dict[Literal['message'], MessageSnapshot]]]" [arg-type] +discord/message.py:2278: error: Incompatible types in assignment (expression has type "discord.message.MessageReference", variable has type "discord.types.message.MessageReference") [assignment] +discord/message.py:2285: error: "MessageReference" has no attribute "resolved" [attr-defined] +discord/message.py:2285: error: Argument 1 to "DeletedReferencedMessage" has incompatible type "discord.types.message.MessageReference"; expected "discord.message.MessageReference" [arg-type] +discord/message.py:2288: error: "MessageReference" has no attribute "channel_id" [attr-defined] +discord/message.py:2290: error: "MessageReference" has no attribute "channel_id" [attr-defined] +discord/message.py:2293: error: Incompatible types in assignment (expression has type "Union[VoiceChannel, StageChannel, ForumChannel, TextChannel, CategoryChannel, PrivateChannel, PartialMessageable, Thread]", variable has type "Union[Union[TextChannel, VoiceChannel, StageChannel, Thread, DMChannel, PartialMessageable], GroupChannel]") [assignment] +discord/message.py:2293: error: "MessageReference" has no attribute "guild_id" [attr-defined] +discord/message.py:2392: error: Return value expected [return-value] +discord/message.py:2404: error: TypedDict key must be a string literal; expected one of ("author", "channel_id", "content", "guild_id", "id", ...) [literal-required] +discord/message.py:2490: error: Argument 1 to "append" of "list" has incompatible type "Union[User, Member]"; expected "Member" [arg-type] +discord/message.py:2559: error: Argument 1 to "_unique" has incompatible type "filter[Hashable]"; expected "Iterable[Union[GuildChannel, Thread]]" [arg-type] +discord/message.py:2632: error: Missing return statement [return] +discord/interactions.py:214: error: Incompatible types in assignment (expression has type "object", variable has type "Union[ChatInputApplicationCommandInteractionData, UserApplicationCommandInteractionData, MessageApplicationCommandInteractionData, ButtonMessageComponentInteractionData, SelectMessageComponentInteractionData, ModalSubmitInteractionData, None]") [assignment] +discord/interactions.py:220: error: "object" has no attribute "__iter__"; maybe "__dir__" or "__str__"? (not iterable) [attr-defined] +discord/interactions.py:247: error: Need type annotation for "raw_channel" [var-annotated] +discord/interactions.py:250: error: Incompatible types in assignment (expression has type "Union[Guild, VoiceChannel, StageChannel, ForumChannel, TextChannel, CategoryChannel, Thread, None]", variable has type "Union[VoiceChannel, StageChannel, TextChannel, ForumChannel, CategoryChannel, Thread, DMChannel, GroupChannel, None]") [assignment] +discord/interactions.py:654: error: Need type annotation for "context" [var-annotated] +discord/interactions.py:744: error: Argument "state" to "InteractionMessage" has incompatible type "_InteractionMessageState"; expected "ConnectionState[Client]" [arg-type] +discord/interactions.py:789: error: Missing return statement [return] +discord/interactions.py:1073: error: Incompatible default for argument "delay" (default has type "Optional[float]", argument has type "float") [assignment] +discord/interactions.py:1182: error: Return value expected [return-value] +discord/interactions.py:1223: error: Incompatible default for argument "delay" (default has type "Optional[float]", argument has type "float") [assignment] +discord/interactions.py:1321: error: Name "payload" already defined on line 1317 [no-redef] +discord/interactions.py:1427: error: Incompatible types in assignment (expression has type "_InteractionMessageState", base class "Message" defined the type as "ConnectionState[Client]") [assignment] +discord/interactions.py:1429: error: Signature of "edit" incompatible with supertype "Message" [override] +discord/interactions.py:1429: note: Superclass: +discord/interactions.py:1429: note: def edit(self, *, content: Optional[str] = ..., embed: Optional[Embed] = ..., embeds: Sequence[Embed] = ..., attachments: Sequence[Union[Attachment, File]] = ..., suppress: bool = ..., delete_after: Optional[float] = ..., allowed_mentions: Optional[AllowedMentions] = ..., view: Union[View, LayoutView, None] = ...) -> Coroutine[Any, Any, Message] +discord/interactions.py:1429: note: Subclass: +discord/interactions.py:1429: note: @overload +discord/interactions.py:1429: note: def edit(self, *, attachments: Sequence[Union[Attachment, File]] = ..., view: LayoutView, allowed_mentions: Optional[AllowedMentions] = ..., delete_after: Optional[float] = ...) -> Coroutine[Any, Any, InteractionMessage] +discord/interactions.py:1429: note: @overload +discord/interactions.py:1429: note: def edit(self, *, content: Optional[str] = ..., embeds: Sequence[Embed] = ..., embed: Optional[Embed] = ..., attachments: Sequence[Union[Attachment, File]] = ..., view: Optional[View] = ..., allowed_mentions: Optional[AllowedMentions] = ..., delete_after: Optional[float] = ..., poll: Poll = ...) -> Coroutine[Any, Any, InteractionMessage] +discord/interactions.py:1429: error: Signature of "edit" incompatible with supertype "PartialMessage" [override] +discord/interactions.py:1429: note: Superclass: +discord/interactions.py:1429: note: def edit(self, *, content: Optional[str] = ..., embed: Optional[Embed] = ..., embeds: Sequence[Embed] = ..., attachments: Sequence[Union[Attachment, File]] = ..., delete_after: Optional[float] = ..., allowed_mentions: Optional[AllowedMentions] = ..., view: Union[View, LayoutView, None] = ...) -> Coroutine[Any, Any, Message] +discord/interactions.py:1429: note: Subclass: +discord/interactions.py:1429: note: @overload +discord/interactions.py:1429: note: def edit(self, *, attachments: Sequence[Union[Attachment, File]] = ..., view: LayoutView, allowed_mentions: Optional[AllowedMentions] = ..., delete_after: Optional[float] = ...) -> Coroutine[Any, Any, InteractionMessage] +discord/interactions.py:1429: note: @overload +discord/interactions.py:1429: note: def edit(self, *, content: Optional[str] = ..., embeds: Sequence[Embed] = ..., embed: Optional[Embed] = ..., attachments: Sequence[Union[Attachment, File]] = ..., view: Optional[View] = ..., allowed_mentions: Optional[AllowedMentions] = ..., delete_after: Optional[float] = ..., poll: Poll = ...) -> Coroutine[Any, Any, InteractionMessage] +discord/interactions.py:1618: error: Incompatible default for argument "delay" (default has type "Optional[float]", argument has type "float") [assignment] +discord/http.py:190: error: Incompatible types in assignment (expression has type "str", target has type "List[Embed]") [assignment] +discord/http.py:192: error: Incompatible types in assignment (expression has type "None", target has type "List[Embed]") [assignment] +discord/http.py:196: error: Incompatible types in assignment (expression has type "List[Dict[str, Any]]", target has type "List[Embed]") [assignment] +discord/http.py:207: error: Incompatible types in assignment (expression has type "str", target has type "List[Embed]") [assignment] +discord/http.py:208: error: Incompatible types in assignment (expression has type "bool", target has type "List[Embed]") [assignment] +discord/http.py:211: error: Incompatible types in assignment (expression has type "Optional[MessageReference]", target has type "List[Embed]") [assignment] +discord/http.py:215: error: Incompatible types in assignment (expression has type "List[Union[str, int]]", target has type "List[Embed]") [assignment] +discord/http.py:219: error: Incompatible types in assignment (expression has type "bool", target has type "List[Embed]") [assignment] +discord/http.py:221: error: Incompatible types in assignment (expression has type "str", target has type "List[Embed]") [assignment] +discord/http.py:223: error: Incompatible types in assignment (expression has type "str", target has type "List[Embed]") [assignment] +discord/http.py:226: error: Incompatible types in assignment (expression has type "int", target has type "List[Embed]") [assignment] +discord/http.py:229: error: Incompatible types in assignment (expression has type "str", target has type "List[Embed]") [assignment] +discord/http.py:233: error: Incompatible types in assignment (expression has type "AllowedMentions", target has type "List[Embed]") [assignment] +discord/http.py:235: error: Incompatible types in assignment (expression has type "AllowedMentions", target has type "List[Embed]") [assignment] +discord/http.py:237: error: Incompatible types in assignment (expression has type "AllowedMentions", target has type "List[Embed]") [assignment] +discord/http.py:241: error: Incompatible types in assignment (expression has type "AllowedMentions", target has type "List[Embed]") [assignment] +discord/http.py:242: error: No overload variant of "__setitem__" of "list" matches argument types "bool", "str" [call-overload] +discord/http.py:242: note: Possible overload variants: +discord/http.py:242: note: def __setitem__(self, SupportsIndex, Embed, /) -> None +discord/http.py:242: note: def __setitem__(self, slice[Any, Any, Any], Iterable[Embed], /) -> None +discord/http.py:257: error: Argument 1 to "append" of "list" has incompatible type "Attachment"; expected "Dict[str, Any]" [arg-type] +discord/http.py:259: error: Incompatible types in assignment (expression has type "List[Dict[str, Any]]", target has type "List[Embed]") [assignment] +discord/http.py:263: error: Incompatible types in assignment (expression has type "List[Union[str, int]]", target has type "List[Embed]") [assignment] +discord/http.py:269: error: Dict entry 0 has incompatible type "str": "Dict[str, List[Embed]]"; expected "str": "List[Embed]" [dict-item] +discord/http.py:279: error: Incompatible types in assignment (expression has type "None", variable has type "Dict[str, List[Embed]]") [assignment] +discord/http.py:284: error: Dict entry 1 has incompatible type "str": "BufferedIOBase"; expected "str": "str" [dict-item] +discord/http.py:566: error: Argument 2 to "ws_connect" of "ClientSession" has incompatible type "**Dict[str, Union[Dict[str, str], float, int, BasicAuth, str, None]]"; expected "str" [arg-type] +discord/http.py:566: error: Argument 2 to "ws_connect" of "ClientSession" has incompatible type "**Dict[str, Union[Dict[str, str], float, int, BasicAuth, str, None]]"; expected "Iterable[str]" [arg-type] +discord/http.py:566: error: Argument 2 to "ws_connect" of "ClientSession" has incompatible type "**Dict[str, Union[Dict[str, str], float, int, BasicAuth, str, None]]"; expected "float" [arg-type] +discord/http.py:566: error: Argument 2 to "ws_connect" of "ClientSession" has incompatible type "**Dict[str, Union[Dict[str, str], float, int, BasicAuth, str, None]]"; expected "Optional[float]" [arg-type] +discord/http.py:566: error: Argument 2 to "ws_connect" of "ClientSession" has incompatible type "**Dict[str, Union[Dict[str, str], float, int, BasicAuth, str, None]]"; expected "bool" [arg-type] +discord/http.py:566: error: Argument 2 to "ws_connect" of "ClientSession" has incompatible type "**Dict[str, Union[Dict[str, str], float, int, BasicAuth, str, None]]"; expected "Optional[BasicAuth]" [arg-type] +discord/http.py:566: error: Argument 2 to "ws_connect" of "ClientSession" has incompatible type "**Dict[str, Union[Dict[str, str], float, int, BasicAuth, str, None]]"; expected "Optional[str]" [arg-type] +discord/http.py:566: error: Argument 2 to "ws_connect" of "ClientSession" has incompatible type "**Dict[str, Union[Dict[str, str], float, int, BasicAuth, str, None]]"; expected "Union[str, Mapping[str, Union[Union[str, int, float], Sequence[Union[str, int, float]]]], Sequence[Tuple[str, Union[Union[str, int, float], Sequence[Union[str, int, float]]]]], None]" [arg-type] +discord/http.py:566: error: Argument 2 to "ws_connect" of "ClientSession" has incompatible type "**Dict[str, Union[Dict[str, str], float, int, BasicAuth, str, None]]"; expected "Optional[Union[Mapping[str, str], Mapping[istr, str], CIMultiDict[str], CIMultiDictProxy[str], Iterable[Tuple[Union[str, istr], str]]]]" [arg-type] +discord/http.py:566: error: Argument 2 to "ws_connect" of "ClientSession" has incompatible type "**Dict[str, Union[Dict[str, str], float, int, BasicAuth, str, None]]"; expected "Optional[Union[str, URL]]" [arg-type] +discord/http.py:566: error: Argument 2 to "ws_connect" of "ClientSession" has incompatible type "**Dict[str, Union[Dict[str, str], float, int, BasicAuth, str, None]]"; expected "Union[SSLContext, bool, Fingerprint]" [arg-type] +discord/http.py:566: error: Argument 2 to "ws_connect" of "ClientSession" has incompatible type "**Dict[str, Union[Dict[str, str], float, int, BasicAuth, str, None]]"; expected "Optional[bool]" [arg-type] +discord/http.py:566: error: Argument 2 to "ws_connect" of "ClientSession" has incompatible type "**Dict[str, Union[Dict[str, str], float, int, BasicAuth, str, None]]"; expected "Optional[bytes]" [arg-type] +discord/http.py:566: error: Argument 2 to "ws_connect" of "ClientSession" has incompatible type "**Dict[str, Union[Dict[str, str], float, int, BasicAuth, str, None]]"; expected "Optional[SSLContext]" [arg-type] +discord/http.py:566: error: Argument 2 to "ws_connect" of "ClientSession" has incompatible type "**Dict[str, Union[Dict[str, str], float, int, BasicAuth, str, None]]"; expected "int" [arg-type] +discord/http.py:799: error: Incompatible types in assignment (expression has type "BasicAuth", target has type "str") [assignment] +discord/http.py:801: error: Argument 2 to "get" of "ClientSession" has incompatible type "**Dict[str, str]"; expected "bool" [arg-type] +discord/http.py:1075: error: Incompatible types in assignment (expression has type "int", target has type "str") [assignment] +discord/http.py:1866: error: Incompatible types in assignment (expression has type "Union[str, int]", target has type "int") [assignment] +discord/http.py:1869: error: Incompatible types in assignment (expression has type "str", target has type "int") [assignment] +discord/http.py:2574: error: Incompatible types in assignment (expression has type "List[Union[str, int]]", target has type "List[Prompt]") [assignment] +discord/http.py:2577: error: Incompatible types in assignment (expression has type "bool", target has type "List[Prompt]") [assignment] +discord/http.py:2580: error: Incompatible types in assignment (expression has type "Literal[0, 1]", target has type "List[Prompt]") [assignment] +discord/guild.py:243: error: Incompatible types in assignment (expression has type "Optional[int]", variable has type "int") [assignment] +discord/guild.py:244: error: Incompatible types in assignment (expression has type "Optional[int]", variable has type "int") [assignment] +discord/guild.py:617: error: Incompatible types in assignment (expression has type "object", variable has type "Optional[int]") [assignment] +discord/guild.py:631: error: Incompatible types in assignment (expression has type "object", variable has type "Optional[int]") [assignment] +discord/guild.py:632: error: Incompatible types in assignment (expression has type "object", variable has type "Optional[int]") [assignment] +discord/guild.py:633: error: Incompatible types in assignment (expression has type "object", variable has type "bool") [assignment] +discord/guild.py:660: error: Incompatible types in assignment (expression has type "Optional[Member]", variable has type "Member") [assignment] +discord/guild.py:676: error: Incompatible types in assignment (expression has type "Union[StageInstanceScheduledEvent, VoiceScheduledEvent, ExternalScheduledEvent]", variable has type "StageInstance") [assignment] +discord/guild.py:677: error: Argument "data" to "ScheduledEvent" has incompatible type "StageInstance"; expected "Union[Union[StageInstanceScheduledEvent, VoiceScheduledEvent, ExternalScheduledEvent], Union[_StageInstanceScheduledEventWithUserCount, _VoiceScheduledEventWithUserCount, _ExternalScheduledEventWithUserCount]]" [arg-type] +discord/guild.py:681: error: Incompatible types in assignment (expression has type "SoundboardSound", variable has type "StageInstance") [assignment] +discord/guild.py:682: error: Argument "data" to "SoundboardSound" has incompatible type "StageInstance"; expected "SoundboardSound" [arg-type] +discord/guild.py:814: error: Return value expected [return-value] +discord/guild.py:1161: error: Return value expected [return-value] +discord/guild.py:1517: error: Incompatible types in assignment (expression has type "str", target has type "int") [assignment] +discord/guild.py:1627: error: Incompatible types in assignment (expression has type "Optional[str]", target has type "int") [assignment] +discord/guild.py:1735: error: Incompatible types in assignment (expression has type "Optional[str]", target has type "int") [assignment] +discord/guild.py:1908: error: Incompatible types in assignment (expression has type "str", target has type "int") [assignment] +discord/guild.py:1932: error: Incompatible types in assignment (expression has type "Dict[str, Any]", target has type "int") [assignment] +discord/guild.py:1934: error: Incompatible types in assignment (expression has type "Dict[str, Any]", target has type "int") [assignment] +discord/guild.py:1947: error: Incompatible types in assignment (expression has type "List[Dict[str, Any]]", target has type "int") [assignment] +discord/guild.py:1961: error: Argument "data" to "ForumChannel" has incompatible type "Union[TextChannel, NewsChannel, VoiceChannel, CategoryChannel, StageChannel, ThreadChannel, ForumChannel, MediaChannel]"; expected "Union[ForumChannel, MediaChannel]" [arg-type] +discord/guild.py:2727: error: Incompatible types in assignment (expression has type "Callable[[Arg(int, 'retrieve'), Arg(Optional[Snowflake], 'after'), Arg(Optional[int], 'limit')], Coroutine[Any, Any, Any]]", variable has type "Callable[[Arg(int, 'retrieve'), Arg(Optional[Snowflake], 'before'), Arg(Optional[int], 'limit')], Coroutine[Any, Any, Any]]") [assignment] +discord/guild.py:3256: error: Overloaded function signature 3 will never be matched: signature 1's parameter type(s) are the same or broader [overload-cannot-match] +discord/guild.py:3270: error: Overloaded function signature 4 will never be matched: signature 2's parameter type(s) are the same or broader [overload-cannot-match] +discord/guild.py:3389: error: Incompatible types in assignment (expression has type "int", target has type "str") [assignment] +discord/guild.py:3400: error: Incompatible types in assignment (expression has type "int", target has type "str") [assignment] +discord/guild.py:3413: error: Item "None" of "Optional[Snowflake]" has no attribute "id" [union-attr] +discord/guild.py:3413: error: Incompatible types in assignment (expression has type "Union[int, Any]", target has type "str") [assignment] +discord/guild.py:3437: error: Incompatible types in assignment (expression has type "Dict[str, str]", target has type "str") [assignment] +discord/guild.py:3896: error: Incompatible types in assignment (expression has type "int", variable has type "str") [assignment] +discord/guild.py:3897: error: Argument 1 to "get_role" of "Guild" has incompatible type "str"; expected "int" [arg-type] +discord/guild.py:3899: error: Incompatible types in assignment (expression has type "Object", variable has type "Optional[Role]") [assignment] +discord/guild.py:3900: error: Invalid index type "Optional[Role]" for "Dict[Union[Object, Role], int]"; expected type "Union[Object, Role]" [index] +discord/guild.py:3964: error: Incompatible types in assignment (expression has type "str", target has type "List[WelcomeScreenChannel]") [assignment] +discord/guild.py:3967: error: Incompatible types in assignment (expression has type "bool", target has type "List[WelcomeScreenChannel]") [assignment] +discord/guild.py:4310: error: Incompatible types in assignment (expression has type "Callable[[Arg(int, 'retrieve'), Arg(Optional[Snowflake], 'before'), Arg(Optional[int], 'limit')], Coroutine[Any, Any, Any]]", variable has type "Callable[[Arg(int, 'retrieve'), Arg(Optional[Snowflake], 'after'), Arg(Optional[int], 'limit')], Coroutine[Any, Any, Any]]") [assignment] +discord/guild.py:4717: error: No overload variant of "parse_time" matches argument type "object" [call-overload] +discord/guild.py:4717: note: Possible overload variants: +discord/guild.py:4717: note: def parse_time(timestamp: None) -> None +discord/guild.py:4717: note: def parse_time(timestamp: str) -> datetime +discord/guild.py:4717: note: def parse_time(timestamp: Optional[str]) -> Optional[datetime] +discord/guild.py:4728: error: No overload variant of "parse_time" matches argument type "object" [call-overload] +discord/guild.py:4728: note: Possible overload variants: +discord/guild.py:4728: note: def parse_time(timestamp: None) -> None +discord/guild.py:4728: note: def parse_time(timestamp: str) -> datetime +discord/guild.py:4728: note: def parse_time(timestamp: Optional[str]) -> Optional[datetime] +discord/client.py:331: error: Incompatible types in assignment (expression has type "ConnectionState[Client]", variable has type "ConnectionState[Self]") [assignment] +discord/client.py:337: error: Incompatible types in assignment (expression has type "Callable[[], Client]", variable has type "Callable[..., Self]") [assignment] +discord/client.py:337: error: Incompatible return value type (got "Client", expected "Self") [return-value] +discord/client.py:723: error: Argument 2 to "from_client" of "DiscordWebSocket" has incompatible type "**Dict[str, Optional[int]]"; expected "bool" [arg-type] +discord/client.py:723: error: Argument 2 to "from_client" of "DiscordWebSocket" has incompatible type "**Dict[str, Optional[int]]"; expected "Optional[URL]" [arg-type] +discord/client.py:723: error: Argument 2 to "from_client" of "DiscordWebSocket" has incompatible type "**Dict[str, Optional[int]]"; expected "Optional[str]" [arg-type] +discord/client.py:723: error: Argument 2 to "from_client" of "DiscordWebSocket" has incompatible type "**Dict[str, Optional[int]]"; expected "str" [arg-type] +discord/client.py:731: error: Argument "session" to "update" of "MutableMapping" has incompatible type "Optional[str]"; expected "Optional[int]" [arg-type] +discord/client.py:733: error: Incompatible types in assignment (expression has type "URL", target has type "Optional[int]") [assignment] +discord/client.py:756: error: No overload variant of "update" of "MutableMapping" matches argument types "Optional[int]", "Optional[str]", "URL", "bool", "bool" [call-overload] +discord/client.py:756: note: Possible overload variants: +discord/client.py:756: note: def update(self, SupportsKeysAndGetItem[str, Optional[int]], /, **kwargs: Optional[int]) -> None +discord/client.py:756: note: def update(self, Iterable[Tuple[str, Optional[int]]], /, **kwargs: Optional[int]) -> None +discord/client.py:756: note: def update(self, **kwargs: Optional[int]) -> None +discord/client.py:782: error: No overload variant of "update" of "MutableMapping" matches argument types "Optional[int]", "Optional[str]", "URL", "bool" [call-overload] +discord/client.py:782: note: Possible overload variants: +discord/client.py:782: note: def update(self, SupportsKeysAndGetItem[str, Optional[int]], /, **kwargs: Optional[int]) -> None +discord/client.py:782: note: def update(self, Iterable[Tuple[str, Optional[int]]], /, **kwargs: Optional[int]) -> None +discord/client.py:782: note: def update(self, **kwargs: Optional[int]) -> None +discord/client.py:1058: error: Missing return statement [return] +discord/client.py:1887: error: Self argument missing for a non-static method (or an invalid type for self) [misc] +discord/client.py:1897: error: Self argument missing for a non-static method (or an invalid type for self) [misc] +discord/client.py:2122: error: Property "status" defined in "Member" is read-only [misc] +discord/client.py:2232: error: Incompatible types in assignment (expression has type "Callable[[Arg(int, 'retrieve'), Arg(Optional[Snowflake], 'before'), Arg(Optional[int], 'limit')], Coroutine[Any, Any, Any]]", variable has type "Callable[[Arg(int, 'retrieve'), Arg(Optional[Snowflake], 'after'), Arg(Optional[int], 'limit')], Coroutine[Any, Any, Any]]") [assignment] +discord/client.py:2925: error: Incompatible types in assignment (expression has type "Callable[[Arg(int, 'retrieve'), Arg(Optional[Snowflake], 'after'), Arg(Optional[int], 'limit')], Coroutine[Any, Any, Any]]", variable has type "Callable[[Arg(int, 'retrieve'), Arg(Optional[Snowflake], 'before'), Arg(Optional[int], 'limit')], Coroutine[Any, Any, Any]]") [assignment] +discord/client.py:2925: error: Incompatible types in assignment (expression has type "Optional[Snowflake]", variable has type "Snowflake") [assignment] +discord/channel.py:144: error: Overwriting TypedDict field "bitrate" while extending [misc] +discord/channel.py:145: error: Overwriting TypedDict field "user_limit" while extending [misc] +discord/channel.py:146: error: Overwriting TypedDict field "rtc_region" while extending [misc] +discord/channel.py:147: error: Overwriting TypedDict field "video_quality_mode" while extending [misc] +discord/channel.py:148: error: Overwriting TypedDict field "overwrites" while extending [misc] +discord/channel.py:151: error: Overwriting TypedDict field "topic" while extending [misc] +discord/channel.py:152: error: Overwriting TypedDict field "slowmode_delay" while extending [misc] +discord/channel.py:153: error: Overwriting TypedDict field "nsfw" while extending [misc] +discord/channel.py:154: error: Overwriting TypedDict field "overwrites" while extending [misc] +discord/channel.py:155: error: Overwriting TypedDict field "default_auto_archive_duration" while extending [misc] +discord/channel.py:156: error: Overwriting TypedDict field "default_thread_slowmode_delay" while extending [misc] +discord/channel.py:374: error: Argument 2 of "_update" is incompatible with supertype "GuildChannel"; supertype defines the argument type as "Dict[str, Any]" [override] +discord/channel.py:374: note: This violates the Liskov substitution principle +discord/channel.py:374: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/channel.py:385: error: Attribute "_type" already defined on line 359 [no-redef] +discord/channel.py:393: error: Cannot override writeable attribute with read-only property [override] +discord/channel.py:393: error: Signature of "type" incompatible with supertype "GuildChannel" [override] +discord/channel.py:393: note: Superclass: +discord/channel.py:393: note: ChannelType +discord/channel.py:393: note: Subclass: +discord/channel.py:393: note: Literal[ChannelType.text, ChannelType.news] +discord/channel.py:483: error: Missing return statement [return] +discord/channel.py:843: error: Function does not return a value (it only ever returns None) [func-returns-value] +discord/channel.py:1098: error: Return type "Coroutine[Any, Any, VocalGuildChannel]" of "_get_channel" incompatible with return type "Coroutine[Any, Any, Union[Union[TextChannel, VoiceChannel, StageChannel, Thread, DMChannel, PartialMessageable], GroupChannel]]" in supertype "Messageable" [override] +discord/channel.py:1107: error: Argument 2 of "_update" is incompatible with supertype "GuildChannel"; supertype defines the argument type as "Dict[str, Any]" [override] +discord/channel.py:1107: note: This violates the Liskov substitution principle +discord/channel.py:1107: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/channel.py:1546: error: Cannot override writeable attribute with read-only property [override] +discord/channel.py:1546: error: Signature of "type" incompatible with supertype "GuildChannel" [override] +discord/channel.py:1546: note: Superclass: +discord/channel.py:1546: note: ChannelType +discord/channel.py:1546: note: Subclass: +discord/channel.py:1546: note: Literal[ChannelType.voice] +discord/channel.py:1575: error: Missing return statement [return] +discord/channel.py:1770: error: Argument 2 of "_update" is incompatible with supertype "VocalGuildChannel"; supertype defines the argument type as "Union[VoiceChannel, StageChannel]" [override] +discord/channel.py:1770: note: This violates the Liskov substitution principle +discord/channel.py:1770: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/channel.py:1770: error: Argument 2 of "_update" is incompatible with supertype "GuildChannel"; supertype defines the argument type as "Dict[str, Any]" [override] +discord/channel.py:1813: error: Cannot override writeable attribute with read-only property [override] +discord/channel.py:1813: error: Signature of "type" incompatible with supertype "GuildChannel" [override] +discord/channel.py:1813: note: Superclass: +discord/channel.py:1813: note: ChannelType +discord/channel.py:1813: note: Subclass: +discord/channel.py:1813: note: Literal[ChannelType.stage_voice] +discord/channel.py:1937: error: Missing return statement [return] +discord/channel.py:2065: error: Argument 2 of "_update" is incompatible with supertype "GuildChannel"; supertype defines the argument type as "Dict[str, Any]" [override] +discord/channel.py:2065: note: This violates the Liskov substitution principle +discord/channel.py:2065: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/channel.py:2082: error: Cannot override writeable attribute with read-only property [override] +discord/channel.py:2082: error: Signature of "type" incompatible with supertype "GuildChannel" [override] +discord/channel.py:2082: note: Superclass: +discord/channel.py:2082: note: ChannelType +discord/channel.py:2082: note: Subclass: +discord/channel.py:2082: note: Literal[ChannelType.category] +discord/channel.py:2117: error: Missing return statement [return] +discord/channel.py:2195: error: Incompatible return value type (got "List[Union[VoiceChannel, StageChannel, ForumChannel, TextChannel, CategoryChannel]]", expected "List[TextChannel]") [return-value] +discord/channel.py:2202: error: Incompatible return value type (got "List[Union[VoiceChannel, StageChannel, ForumChannel, TextChannel, CategoryChannel]]", expected "List[VoiceChannel]") [return-value] +discord/channel.py:2212: error: Incompatible return value type (got "List[Union[VoiceChannel, StageChannel, ForumChannel, TextChannel, CategoryChannel]]", expected "List[StageChannel]") [return-value] +discord/channel.py:2222: error: Incompatible return value type (got "List[Union[VoiceChannel, StageChannel, ForumChannel, TextChannel, CategoryChannel]]", expected "List[ForumChannel]") [return-value] +discord/channel.py:2478: error: Argument 2 of "_update" is incompatible with supertype "GuildChannel"; supertype defines the argument type as "Dict[str, Any]" [override] +discord/channel.py:2478: note: This violates the Liskov substitution principle +discord/channel.py:2478: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/channel.py:2512: error: Cannot override writeable attribute with read-only property [override] +discord/channel.py:2512: error: Signature of "type" incompatible with supertype "GuildChannel" [override] +discord/channel.py:2512: note: Superclass: +discord/channel.py:2512: note: ChannelType +discord/channel.py:2512: note: Subclass: +discord/channel.py:2512: note: Literal[ChannelType.forum, ChannelType.media] +discord/channel.py:2619: error: Signature of "clone" incompatible with supertype "GuildChannel" [override] +discord/channel.py:2619: note: Superclass: +discord/channel.py:2619: note: def clone(self, *, name: Optional[str] = ..., category: Optional[CategoryChannel] = ..., reason: Optional[str] = ...) -> Coroutine[Any, Any, ForumChannel] +discord/channel.py:2619: note: Subclass: +discord/channel.py:2619: note: def clone(self, *, name: Optional[str] = ..., category: Optional[CategoryChannel], reason: Optional[str] = ...) -> Coroutine[Any, Any, ForumChannel] +discord/channel.py:2637: error: Incompatible types in assignment (expression has type "Dict[str, Any]", target has type "Union[List[Dict[str, Any]], int, str, None]") [assignment] +discord/channel.py:2677: error: Missing return statement [return] +discord/channel.py:3014: error: Name "sticker_ids" already defined on line 3012 [no-redef] +discord/channel.py:3036: error: Incompatible types in assignment (expression has type "List[str]", target has type "Union[str, int, None]") [assignment] +discord/channel.py:3528: error: Cannot determine type of "__slots__" in base class "Messageable" [misc] +discord/audit_logs.py:440: error: Name "transformer" already defined on line 433 [no-redef] +discord/audit_logs.py:485: error: Incompatible types in assignment (expression has type "Object", variable has type "Optional[Role]") [assignment] +discord/audit_logs.py:765: error: Incompatible types in assignment (expression has type "Optional[int]", variable has type "int") [assignment] +discord/audit_logs.py:789: error: Incompatible types in assignment (expression has type "Object", variable has type "Optional[Role]") [assignment] +discord/audit_logs.py:952: error: Incompatible types in assignment (expression has type "Object", variable has type "Optional[AppCommand]") [assignment] +discord/audit_logs.py:954: error: Incompatible return value type (got "Optional[AppCommand]", expected "Union[AppCommand, Object]") [return-value] +discord/abc.py:476: error: Argument 2 to "bulk_channel_update" of "HTTPClient" has incompatible type "List[Dict[str, Any]]"; expected "List[ChannelPositionUpdate]" [arg-type] +discord/abc.py:478: error: Missing return statement [return] +discord/abc.py:574: error: Trying to assign name "_overwrites" that is not in "__slots__" of type "discord.abc.GuildChannel" [misc] +discord/abc.py:578: error: Need type annotation for "overridden" [var-annotated] +discord/abc.py:578: error: Argument 1 to "enumerate" has incompatible type "object"; expected "Iterable[Never]" [arg-type] +discord/abc.py:687: error: Incompatible types in assignment (expression has type "Optional[Member]", variable has type "Optional[Role]") [assignment] +discord/abc.py:694: error: Incompatible return value type (got "Dict[Optional[Role], PermissionOverwrite]", expected "Dict[Union[Role, Member, Object], PermissionOverwrite]") [return-value] +discord/abc.py:1031: error: Argument 5 to "edit_channel_permissions" of "HTTPClient" has incompatible type "int"; expected "Literal[0, 1]" [arg-type] +discord/abc.py:1269: error: Unexpected keyword argument "parent_id" for "update" of "TypedDict" [call-arg] +/venv/lib/python3.8/site-packages/mypy/typeshed/stdlib/typing.pyi:960: note: "update" of "TypedDict" defined here +discord/abc.py:1269: error: Unexpected keyword argument "lock_permissions" for "update" of "TypedDict" [call-arg] +/venv/lib/python3.8/site-packages/mypy/typeshed/stdlib/typing.pyi:960: note: "update" of "TypedDict" defined here +discord/abc.py:1815: error: Incompatible types in assignment (expression has type "reversed[MessagePin]", variable has type "List[MessagePin]") [assignment] +discord/abc.py:1821: error: Incompatible types in "yield" (actual type "Message", expected type "PinnedMessage") [misc] +discord/abc.py:2035: error: Incompatible types in assignment (expression has type "Callable[[Arg(int, 'retrieve'), Arg(Optional[Snowflake], 'after'), Arg(Optional[int], 'limit')], Coroutine[Any, Any, Any]]", variable has type "Callable[[Arg(int, 'retrieve'), Arg(Optional[Snowflake], 'around'), Arg(Optional[int], 'limit')], Coroutine[Any, Any, Any]]") [assignment] +discord/abc.py:2039: error: Incompatible types in assignment (expression has type "Callable[[Arg(int, 'retrieve'), Arg(Optional[Snowflake], 'before'), Arg(Optional[int], 'limit')], Coroutine[Any, Any, Any]]", variable has type "Callable[[Arg(int, 'retrieve'), Arg(Optional[Snowflake], 'around'), Arg(Optional[int], 'limit')], Coroutine[Any, Any, Any]]") [assignment] +discord/abc.py:2039: error: Incompatible types in assignment (expression has type "Optional[Snowflake]", variable has type "Snowflake") [assignment] +discord/abc.py:2091: error: Incompatible default for argument "cls" (default has type "Type[VoiceClient]", argument has type "Callable[[Client, Connectable], T]") [assignment] +discord/webhook/sync.py:81: error: Library stubs not installed for "requests" [import-untyped] +discord/webhook/sync.py:81: note: Hint: "python3 -m pip install types-requests" +discord/webhook/sync.py:81: note: (or run "mypy --install-types" to install all missing stub packages) +discord/webhook/sync.py:81: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports +discord/webhook/sync.py:154: error: Incompatible types in assignment (expression has type "DeferredLock", variable has type "Lock") [assignment] +discord/webhook/sync.py:198: error: "Lock" has no attribute "delay_by" [attr-defined] +discord/webhook/sync.py:408: error: Incompatible types in assignment (expression has type "_WebhookState", base class "Message" defined the type as "ConnectionState[Client]") [assignment] +discord/webhook/sync.py:410: error: Signature of "edit" incompatible with supertype "Message" [override] +discord/webhook/sync.py:410: note: Superclass: +discord/webhook/sync.py:410: note: def edit(self, *, content: Optional[str] = ..., embed: Optional[Embed] = ..., embeds: Sequence[Embed] = ..., attachments: Sequence[Union[Attachment, File]] = ..., suppress: bool = ..., delete_after: Optional[float] = ..., allowed_mentions: Optional[AllowedMentions] = ..., view: Union[View, LayoutView, None] = ...) -> Coroutine[Any, Any, Message] +discord/webhook/sync.py:410: note: Subclass: +discord/webhook/sync.py:410: note: def edit(self, *, content: Optional[str] = ..., embeds: Sequence[Embed] = ..., embed: Optional[Embed] = ..., attachments: Sequence[Union[Attachment, File]] = ..., allowed_mentions: Optional[AllowedMentions] = ...) -> SyncWebhookMessage +discord/webhook/sync.py:410: error: Signature of "edit" incompatible with supertype "PartialMessage" [override] +discord/webhook/sync.py:410: note: Superclass: +discord/webhook/sync.py:410: note: def edit(self, *, content: Optional[str] = ..., embed: Optional[Embed] = ..., embeds: Sequence[Embed] = ..., attachments: Sequence[Union[Attachment, File]] = ..., delete_after: Optional[float] = ..., allowed_mentions: Optional[AllowedMentions] = ..., view: Union[View, LayoutView, None] = ...) -> Coroutine[Any, Any, Message] +discord/webhook/sync.py:410: note: Subclass: +discord/webhook/sync.py:410: note: def edit(self, *, content: Optional[str] = ..., embeds: Sequence[Embed] = ..., embed: Optional[Embed] = ..., attachments: Sequence[Union[Attachment, File]] = ..., allowed_mentions: Optional[AllowedMentions] = ...) -> SyncWebhookMessage +discord/webhook/sync.py:474: error: Return type "SyncWebhookMessage" of "add_files" incompatible with return type "Coroutine[Any, Any, Message]" in supertype "Message" [override] +discord/webhook/sync.py:498: error: Return type "SyncWebhookMessage" of "remove_attachments" incompatible with return type "Coroutine[Any, Any, Message]" in supertype "Message" [override] +discord/webhook/sync.py:522: error: Return type "None" of "delete" incompatible with return type "Coroutine[Any, Any, None]" in supertype "PartialMessage" [override] +discord/webhook/sync.py:840: error: Incompatible types in assignment (expression has type "int", target has type "Optional[str]") [assignment] +discord/webhook/sync.py:1090: error: Name "applied_tag_ids" already defined on line 1088 [no-redef] +discord/webhook/async_.py:170: error: Incompatible types in assignment (expression has type "AsyncDeferredLock", variable has type "Lock") [assignment] +discord/webhook/async_.py:202: error: "Lock" has no attribute "delay_by" [attr-defined] +discord/webhook/async_.py:578: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/webhook/async_.py:582: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/webhook/async_.py:584: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/webhook/async_.py:588: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/webhook/async_.py:590: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/webhook/async_.py:594: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/webhook/async_.py:603: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/webhook/async_.py:606: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/webhook/async_.py:610: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/webhook/async_.py:612: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/webhook/async_.py:614: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/webhook/async_.py:629: error: Argument 1 to "append" of "list" has incompatible type "Attachment"; expected "Dict[str, Any]" [arg-type] +discord/webhook/async_.py:631: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/webhook/async_.py:634: error: Unsupported target for indexed assignment ("Optional[Dict[str, Any]]") [index] +discord/webhook/async_.py:645: error: Dict entry 1 has incompatible type "str": "BufferedIOBase"; expected "str": "str" [dict-item] +discord/webhook/async_.py:803: error: Incompatible types in assignment (expression has type "_WebhookState", base class "Message" defined the type as "ConnectionState[Client]") [assignment] +discord/webhook/async_.py:805: error: Signature of "edit" incompatible with supertype "Message" [override] +discord/webhook/async_.py:805: note: Superclass: +discord/webhook/async_.py:805: note: def edit(self, *, content: Optional[str] = ..., embed: Optional[Embed] = ..., embeds: Sequence[Embed] = ..., attachments: Sequence[Union[Attachment, File]] = ..., suppress: bool = ..., delete_after: Optional[float] = ..., allowed_mentions: Optional[AllowedMentions] = ..., view: Union[View, LayoutView, None] = ...) -> Coroutine[Any, Any, Message] +discord/webhook/async_.py:805: note: Subclass: +discord/webhook/async_.py:805: note: def edit(self, *, content: Optional[str] = ..., embeds: Sequence[Embed] = ..., embed: Optional[Embed] = ..., attachments: Sequence[Union[Attachment, File]] = ..., view: Optional[BaseView] = ..., allowed_mentions: Optional[AllowedMentions] = ...) -> Coroutine[Any, Any, WebhookMessage] +discord/webhook/async_.py:805: error: Signature of "edit" incompatible with supertype "PartialMessage" [override] +discord/webhook/async_.py:805: note: Superclass: +discord/webhook/async_.py:805: note: def edit(self, *, content: Optional[str] = ..., embed: Optional[Embed] = ..., embeds: Sequence[Embed] = ..., attachments: Sequence[Union[Attachment, File]] = ..., delete_after: Optional[float] = ..., allowed_mentions: Optional[AllowedMentions] = ..., view: Union[View, LayoutView, None] = ...) -> Coroutine[Any, Any, Message] +discord/webhook/async_.py:805: note: Subclass: +discord/webhook/async_.py:805: note: def edit(self, *, content: Optional[str] = ..., embeds: Sequence[Embed] = ..., embed: Optional[Embed] = ..., attachments: Sequence[Union[Attachment, File]] = ..., view: Optional[BaseView] = ..., allowed_mentions: Optional[AllowedMentions] = ...) -> Coroutine[Any, Any, WebhookMessage] +discord/webhook/async_.py:958: error: Incompatible default for argument "delay" (default has type "Optional[float]", argument has type "float") [assignment] +discord/webhook/async_.py:1013: error: Argument "data" to "PartialWebhookChannel" has incompatible type "object"; expected "PartialChannel" [arg-type] +discord/webhook/async_.py:1015: error: Incompatible types in assignment (expression has type "object", variable has type "Optional[PartialWebhookChannel]") [assignment] +discord/webhook/async_.py:1019: error: Argument "data" to "PartialWebhookGuild" has incompatible type "object"; expected "SourceGuild" [arg-type] +discord/webhook/async_.py:1021: error: Incompatible types in assignment (expression has type "object", variable has type "Optional[PartialWebhookGuild]") [assignment] +discord/webhook/async_.py:1042: error: Incompatible return value type (got "Union[ConnectionState[Client], _WebhookState, Guild, None]", expected "Optional[Guild]") [return-value] +discord/webhook/async_.py:1541: error: Incompatible types in assignment (expression has type "int", target has type "Optional[str]") [assignment] +discord/webhook/async_.py:1600: error: Incompatible types in assignment (expression has type "Optional[Thread]", variable has type "Union[ForumChannel, VoiceChannel, TextChannel, None]") [assignment] +discord/webhook/async_.py:1876: error: Name "applied_tag_ids" already defined on line 1874 [no-redef] +discord/ui/view.py:121: error: Incompatible types in assignment (expression has type "Button[Never]", variable has type "ActionRow[Any]") [assignment] +discord/ui/view.py:125: error: Incompatible types in assignment (expression has type "BaseSelect[Never]", variable has type "ActionRow[Any]") [assignment] +discord/ui/view.py:129: error: Incompatible types in assignment (expression has type "Section[Never]", variable has type "ActionRow[Any]") [assignment] +discord/ui/view.py:133: error: Incompatible types in assignment (expression has type "TextDisplay[Never]", variable has type "ActionRow[Any]") [assignment] +discord/ui/view.py:137: error: Incompatible types in assignment (expression has type "MediaGallery[Never]", variable has type "ActionRow[Any]") [assignment] +discord/ui/view.py:141: error: Incompatible types in assignment (expression has type "File[Never]", variable has type "ActionRow[Any]") [assignment] +discord/ui/view.py:145: error: Incompatible types in assignment (expression has type "Separator[Never]", variable has type "ActionRow[Any]") [assignment] +discord/ui/view.py:149: error: Incompatible types in assignment (expression has type "Thumbnail[Never]", variable has type "ActionRow[Any]") [assignment] +discord/ui/view.py:153: error: Incompatible types in assignment (expression has type "Container[Never]", variable has type "ActionRow[Any]") [assignment] +discord/ui/view.py:157: error: Incompatible types in assignment (expression has type "Label[Never]", variable has type "ActionRow[Any]") [assignment] +discord/ui/view.py:159: error: Incompatible types in assignment (expression has type "Item[Never]", variable has type "ActionRow[Any]") [assignment] +discord/ui/view.py:216: error: Incompatible types in assignment (expression has type "List[Item[BaseView]]", variable has type "List[Item[Self]]") [assignment] +discord/ui/view.py:246: error: Name "item" already defined on line 237 [no-redef] +discord/ui/view.py:246: error: "Callable[[Any, Interaction[Any], Any], Coroutine[Any, Any, Any]]" has no attribute "__discord_ui_model_type__" [attr-defined] +discord/ui/view.py:246: error: "Callable[[Any, Interaction[Any], Any], Coroutine[Any, Any, Any]]" has no attribute "__discord_ui_model_kwargs__" [attr-defined] +discord/ui/view.py:364: error: Incompatible types in assignment (expression has type "Type[LayoutView]", variable has type "Type[View]") [assignment] +discord/ui/view.py:572: error: Return value expected [return-value] +discord/ui/view.py:714: error: List comprehension has incompatible type List[Dict[str, Any]]; expected List[Item[Self]] [misc] +discord/ui/view.py:911: error: "Never" has no attribute "__discord_ui_compiled_template__" [attr-defined] +discord/ui/select.py:186: error: Invalid index type "Type[Snowflake]" for "Dict[Union[Type[SelectDefaultValue], Type[Object], Type[Role], Type[Member], Type[ClientUser], Type[User], Type[GuildChannel], Type[AppCommandChannel], Type[AppCommandThread], Type[Thread]], SelectDefaultValueType]"; expected type "Union[Type[SelectDefaultValue], Type[Object], Type[Role], Type[Member], Type[ClientUser], Type[User], Type[GuildChannel], Type[AppCommandChannel], Type[AppCommandThread], Type[Thread]]" [index] +discord/ui/select.py:363: error: Return type "SelectMenu" of "to_component_dict" incompatible with return type "Dict[str, Any]" in supertype "Item" [override] +discord/ui/select.py:366: error: Argument 1 of "_refresh_component" is incompatible with supertype "Item"; supertype defines the argument type as "Component" [override] +discord/ui/select.py:366: note: This violates the Liskov substitution principle +discord/ui/select.py:366: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/select.py:370: error: Argument 2 of "_handle_submit" is incompatible with supertype "Item"; supertype defines the argument type as "Dict[str, Any]" [override] +discord/ui/select.py:370: note: This violates the Liskov substitution principle +discord/ui/select.py:370: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/select.py:385: error: Argument 2 of "_refresh_state" is incompatible with supertype "Item"; supertype defines the argument type as "Dict[str, Any]" [override] +discord/ui/select.py:385: note: This violates the Liskov substitution principle +discord/ui/select.py:385: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/select.py:405: error: Argument 1 of "from_component" is incompatible with supertype "Item"; supertype defines the argument type as "Component" [override] +discord/ui/select.py:405: note: This violates the Liskov substitution principle +discord/ui/select.py:405: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/select.py:493: error: Signature of "values" incompatible with supertype "BaseSelect" [override] +discord/ui/select.py:493: note: Superclass: +discord/ui/select.py:493: note: List[Union[str, User, Member, Role, AppCommandChannel, AppCommandThread]] +discord/ui/select.py:493: note: Subclass: +discord/ui/select.py:493: note: List[str] +discord/ui/select.py:669: error: Signature of "values" incompatible with supertype "BaseSelect" [override] +discord/ui/select.py:669: note: Superclass: +discord/ui/select.py:669: note: List[Union[str, User, Member, Role, AppCommandChannel, AppCommandThread]] +discord/ui/select.py:669: note: Subclass: +discord/ui/select.py:669: note: List[Union[Member, User]] +discord/ui/select.py:777: error: Signature of "values" incompatible with supertype "BaseSelect" [override] +discord/ui/select.py:777: note: Superclass: +discord/ui/select.py:777: note: List[Union[str, User, Member, Role, AppCommandChannel, AppCommandThread]] +discord/ui/select.py:777: note: Subclass: +discord/ui/select.py:777: note: List[Role] +discord/ui/select.py:881: error: Signature of "values" incompatible with supertype "BaseSelect" [override] +discord/ui/select.py:881: note: Superclass: +discord/ui/select.py:881: note: List[Union[str, User, Member, Role, AppCommandChannel, AppCommandThread]] +discord/ui/select.py:881: note: Subclass: +discord/ui/select.py:881: note: List[Union[Member, User, Role]] +discord/ui/select.py:1010: error: Signature of "values" incompatible with supertype "BaseSelect" [override] +discord/ui/select.py:1010: note: Superclass: +discord/ui/select.py:1010: note: List[Union[str, User, Member, Role, AppCommandChannel, AppCommandThread]] +discord/ui/select.py:1010: note: Subclass: +discord/ui/select.py:1010: note: List[Union[AppCommandChannel, AppCommandThread]] +discord/ui/select.py:1030: error: Incompatible default for argument "cls" (default has type "Type[Select[Any]]", argument has type "Type[SelectT]") [assignment] +discord/ui/select.py:1046: error: Incompatible default for argument "cls" (default has type "Type[UserSelect[Any]]", argument has type "Type[UserSelectT]") [assignment] +discord/ui/select.py:1063: error: Incompatible default for argument "cls" (default has type "Type[RoleSelect[Any]]", argument has type "Type[RoleSelectT]") [assignment] +discord/ui/select.py:1080: error: Incompatible default for argument "cls" (default has type "Type[ChannelSelect[Any]]", argument has type "Type[ChannelSelectT]") [assignment] +discord/ui/select.py:1097: error: Incompatible default for argument "cls" (default has type "Type[MentionableSelect[Any]]", argument has type "Type[MentionableSelectT]") [assignment] +discord/ui/select.py:1113: error: Incompatible default for argument "cls" (default has type "Type[Select[Any]]", argument has type "Type[BaseSelectT]") [assignment] +discord/ui/select.py:1221: error: "Callable[[S, Interaction[Any], BaseSelectT], Coroutine[Any, Any, Any]]" has no attribute "__discord_ui_model_type__" [attr-defined] +discord/ui/select.py:1222: error: "Callable[[S, Interaction[Any], BaseSelectT], Coroutine[Any, Any, Any]]" has no attribute "__discord_ui_model_kwargs__" [attr-defined] +discord/ui/select.py:1232: error: "Callable[[S, Interaction[Any], BaseSelectT], Coroutine[Any, Any, Any]]" has no attribute "__discord_ui_model_kwargs__" [attr-defined] +discord/ui/select.py:1234: error: "Callable[[S, Interaction[Any], BaseSelectT], Coroutine[Any, Any, Any]]" has no attribute "__discord_ui_model_kwargs__" [attr-defined] +discord/ui/select.py:1250: error: "Callable[[S, Interaction[Any], BaseSelectT], Coroutine[Any, Any, Any]]" has no attribute "__discord_ui_model_kwargs__" [attr-defined] +discord/ui/dynamic.py:37: error: Incompatible import of "TypeVar" (imported name has type "Type[typing_extensions.TypeVar]", local name has type "Type[typing.TypeVar]") [assignment] +discord/app_commands/tree.py:444: error: Missing return statement [return] +discord/app_commands/tree.py:561: error: Missing return statement [return] +discord/app_commands/tree.py:764: error: Name "base" already defined on line 754 [no-redef] +discord/app_commands/tree.py:779: error: Incompatible types in assignment (expression has type "str", variable has type "Tuple[str, Optional[int], int]") [assignment] +discord/app_commands/tree.py:779: error: Incompatible types in assignment (expression has type "Union[Command[Any, Any, Any], Group]", variable has type "ContextMenu") [assignment] +discord/app_commands/tree.py:784: error: Argument 1 to "__delitem__" of "dict" has incompatible type "Tuple[str, Optional[int], int]"; expected "str" [arg-type] +discord/app_commands/tree.py:788: error: Incompatible types in assignment (expression has type "str", variable has type "Tuple[str, Optional[int], int]") [assignment] +discord/app_commands/tree.py:788: error: Incompatible types in assignment (expression has type "Union[Command[Any, Any, Any], Group]", variable has type "ContextMenu") [assignment] +discord/app_commands/tree.py:793: error: Argument 1 to "__delitem__" of "dict" has incompatible type "Tuple[str, Optional[int], int]"; expected "str" [arg-type] +discord/app_commands/tree.py:920: error: Incompatible types in assignment (expression has type "Union[str, locale_str]", variable has type "str") [assignment] +discord/app_commands/tree.py:1180: error: Incompatible types in assignment (expression has type "object", variable has type "List[ApplicationCommandInteractionDataOption]") [assignment] +discord/app_commands/tree.py:1190: error: Incompatible types in assignment (expression has type "object", variable has type "List[ApplicationCommandInteractionDataOption]") [assignment] +discord/app_commands/tree.py:1216: error: "Interaction[ClientT]" has no attribute "_cs_command"; maybe "command"? [attr-defined] +discord/app_commands/tree.py:1224: error: Incompatible types in assignment (expression has type "object", variable has type "Union[str, int, None]") [assignment] +discord/app_commands/tree.py:1273: error: "Interaction[ClientT]" has no attribute "_cs_command"; maybe "command"? [attr-defined] +discord/app_commands/tree.py:1280: error: "Interaction[ClientT]" has no attribute "_cs_namespace"; maybe "namespace"? [attr-defined] +discord/app_commands/transformers.py:106: error: Need type annotation for "name_context" [var-annotated] +discord/app_commands/transformers.py:107: error: Need type annotation for "description_context" [var-annotated] +discord/app_commands/transformers.py:110: error: Argument 1 to "_checked_translate" of "Translator" has incompatible type "Union[str, locale_str]"; expected "locale_str" [arg-type] +discord/app_commands/transformers.py:115: error: Argument 1 to "_checked_translate" of "Translator" has incompatible type "Union[str, locale_str]"; expected "locale_str" [arg-type] +discord/app_commands/transformers.py:139: error: Incompatible types in assignment (expression has type "List[Dict[str, Any]]", target has type "Union[str, int]") [assignment] +discord/app_commands/transformers.py:141: error: Incompatible types in assignment (expression has type "List[int]", target has type "Union[str, int]") [assignment] +discord/app_commands/transformers.py:149: error: Incompatible types in assignment (expression has type "Union[int, float]", target has type "Union[str, int]") [assignment] +discord/app_commands/transformers.py:151: error: Incompatible types in assignment (expression has type "Union[int, float]", target has type "Union[str, int]") [assignment] +discord/app_commands/namespace.py:224: error: Incompatible types in assignment (expression has type "int", variable has type "str") [assignment] +discord/app_commands/namespace.py:226: error: Argument "id" to "PartialMessageable" has incompatible type "str"; expected "int" [arg-type] +discord/app_commands/namespace.py:228: error: Incompatible types in assignment (expression has type "Union[Thread, VoiceChannel, StageChannel, ForumChannel, TextChannel, CategoryChannel, PartialMessageable]", variable has type "PartialMessageable") [assignment] +discord/app_commands/namespace.py:228: error: Argument 1 to "get_channel_or_thread" of "Guild" has incompatible type "str"; expected "int" [arg-type] +discord/app_commands/namespace.py:229: error: Argument "id" to "PartialMessageable" has incompatible type "str"; expected "int" [arg-type] +discord/app_commands/commands.py:235: error: Item "function" of "Union[Callable[[GroupT, Interaction[Any], str], Coroutine[Any, Any, List[Choice[str]]]], Callable[[Interaction[Any], str], Coroutine[Any, Any, List[Choice[str]]]]]" has no attribute "pass_command_binding" [union-attr] +discord/app_commands/commands.py:235: error: Item "function" of "Union[Callable[[GroupT, Interaction[Any], str], Coroutine[Any, Any, List[Choice[int]]]], Callable[[Interaction[Any], str], Coroutine[Any, Any, List[Choice[int]]]]]" has no attribute "pass_command_binding" [union-attr] +discord/app_commands/commands.py:235: error: Item "function" of "Union[Callable[[GroupT, Interaction[Any], str], Coroutine[Any, Any, List[Choice[float]]]], Callable[[Interaction[Any], str], Coroutine[Any, Any, List[Choice[float]]]]]" has no attribute "pass_command_binding" [union-attr] +discord/app_commands/commands.py:235: error: Item "function" of "Union[Callable[[GroupT, Interaction[Any], str], Coroutine[Any, Any, List[Choice[Union[str, int, float]]]]], Callable[[Interaction[Any], str], Coroutine[Any, Any, List[Choice[Union[str, int, float]]]]]]" has no attribute "pass_command_binding" [union-attr] +discord/app_commands/commands.py:369: error: Need type annotation for "cache" (hint: "cache: Dict[, ] = ...") [var-annotated] +discord/app_commands/commands.py:393: error: "Callable[..., Any]" has no attribute "__discord_app_commands_param_description__" [attr-defined] +discord/app_commands/commands.py:402: error: "Callable[..., Any]" has no attribute "__discord_app_commands_param_rename__" [attr-defined] +discord/app_commands/commands.py:409: error: "Callable[..., Any]" has no attribute "__discord_app_commands_param_choices__" [attr-defined] +discord/app_commands/commands.py:416: error: "Callable[..., Any]" has no attribute "__discord_app_commands_param_autocomplete__" [attr-defined] +discord/app_commands/commands.py:456: error: "F" has no attribute "__discord_app_commands_base_function__" [attr-defined] +discord/app_commands/commands.py:683: error: Item "function" of "Union[Callable[[GroupT, Interaction[Any], **P], Coroutine[Any, Any, T]], Callable[[Interaction[Any], **P], Coroutine[Any, Any, T]]]" has no attribute "__self__" [union-attr] +discord/app_commands/commands.py:684: error: Item "function" of "Union[Callable[[GroupT, Interaction[Any], **P], Coroutine[Any, Any, T]], Callable[[Interaction[Any], **P], Coroutine[Any, Any, T]]]" has no attribute "__func__" [union-attr] +discord/app_commands/commands.py:756: error: Need type annotation for "name_context" [var-annotated] +discord/app_commands/commands.py:757: error: Need type annotation for "description_context" [var-annotated] +discord/app_commands/commands.py:1004: error: Argument 1 to "maybe_coroutine" has incompatible type "Callable[[Interaction[Client]], Coroutine[Any, Any, bool]]"; expected "Callable[[Interaction[Client]], Union[Never, Awaitable[Never]]]" [arg-type] +discord/app_commands/commands.py:1287: error: Need type annotation for "context" [var-annotated] +discord/app_commands/commands.py:1574: error: Incompatible types in assignment (expression has type "str", variable has type "Optional[locale_str]") [assignment] +discord/app_commands/commands.py:1586: error: Incompatible types in assignment (expression has type "str", variable has type "Optional[locale_str]") [assignment] +discord/app_commands/commands.py:1727: error: Need type annotation for "name_context" [var-annotated] +discord/app_commands/commands.py:1728: error: Need type annotation for "description_context" [var-annotated] +discord/app_commands/commands.py:1926: error: Missing return statement [return] +discord/app_commands/commands.py:2002: error: Incompatible types in assignment (expression has type "Union[str, locale_str]", variable has type "str") [assignment] +discord/app_commands/commands.py:2063: error: Incompatible types in assignment (expression has type "Union[str, locale_str]", variable has type "str") [assignment] +discord/app_commands/commands.py:2477: error: Item "function" of "Union[Callable[[Any, Interaction[Any], VarArg(Any), KwArg(Any)], Coroutine[Any, Any, Any]], Callable[[Interaction[Any], VarArg(Any), KwArg(Any)], Coroutine[Any, Any, Any]], Callable[[Interaction[Any], Member], Coroutine[Any, Any, Any]], Callable[[Interaction[Any], User], Coroutine[Any, Any, Any]], Callable[[Interaction[Any], Message], Coroutine[Any, Any, Any]]]" has no attribute "__discord_app_commands_checks__" [union-attr] +discord/app_commands/commands.py:2479: error: Item "function" of "Union[Callable[[Any, Interaction[Any], VarArg(Any), KwArg(Any)], Coroutine[Any, Any, Any]], Callable[[Interaction[Any], VarArg(Any), KwArg(Any)], Coroutine[Any, Any, Any]], Callable[[Interaction[Any], Member], Coroutine[Any, Any, Any]], Callable[[Interaction[Any], User], Coroutine[Any, Any, Any]], Callable[[Interaction[Any], Message], Coroutine[Any, Any, Any]]]" has no attribute "__discord_app_commands_checks__" [union-attr] +discord/app_commands/checks.py:145: error: Missing return statement [return] +discord/ui/thumbnail.py:138: error: Argument 1 of "from_component" is incompatible with supertype "Item"; supertype defines the argument type as "Component" [override] +discord/ui/thumbnail.py:138: note: This violates the Liskov substitution principle +discord/ui/thumbnail.py:138: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/text_input.py:249: error: Return type "TextInput" of "to_component_dict" incompatible with return type "Dict[str, Any]" in supertype "Item" [override] +discord/ui/text_input.py:252: error: Argument 1 of "_refresh_component" is incompatible with supertype "Item"; supertype defines the argument type as "Component" [override] +discord/ui/text_input.py:252: note: This violates the Liskov substitution principle +discord/ui/text_input.py:252: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/text_input.py:255: error: Argument 2 of "_refresh_state" is incompatible with supertype "Item"; supertype defines the argument type as "Dict[str, Any]" [override] +discord/ui/text_input.py:255: note: This violates the Liskov substitution principle +discord/ui/text_input.py:255: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/text_input.py:259: error: Argument 1 of "from_component" is incompatible with supertype "Item"; supertype defines the argument type as "Component" [override] +discord/ui/text_input.py:259: note: This violates the Liskov substitution principle +discord/ui/text_input.py:259: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/text_display.py:87: error: Argument 1 of "from_component" is incompatible with supertype "Item"; supertype defines the argument type as "Component" [override] +discord/ui/text_display.py:87: note: This violates the Liskov substitution principle +discord/ui/text_display.py:87: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/separator.py:129: error: Argument 1 of "from_component" is incompatible with supertype "Item"; supertype defines the argument type as "Component" [override] +discord/ui/separator.py:129: note: This violates the Liskov substitution principle +discord/ui/separator.py:129: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/media_gallery.py:259: error: Argument 1 of "from_component" is incompatible with supertype "Item"; supertype defines the argument type as "Component" [override] +discord/ui/media_gallery.py:259: note: This violates the Liskov substitution principle +discord/ui/media_gallery.py:259: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/label.py:112: error: Return type "LabelComponent" of "to_component_dict" incompatible with return type "Dict[str, Any]" in supertype "Item" [override] +discord/ui/label.py:125: error: Argument 1 of "from_component" is incompatible with supertype "Item"; supertype defines the argument type as "Component" [override] +discord/ui/label.py:125: note: This violates the Liskov substitution principle +discord/ui/label.py:125: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/file_upload.py:172: error: Return type "FileUploadComponent" of "to_component_dict" incompatible with return type "Dict[str, Any]" in supertype "Item" [override] +discord/ui/file_upload.py:175: error: Argument 1 of "_refresh_component" is incompatible with supertype "Item"; supertype defines the argument type as "Component" [override] +discord/ui/file_upload.py:175: note: This violates the Liskov substitution principle +discord/ui/file_upload.py:175: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/file_upload.py:179: error: Argument 2 of "_handle_submit" is incompatible with supertype "Item"; supertype defines the argument type as "Dict[str, Any]" [override] +discord/ui/file_upload.py:179: note: This violates the Liskov substitution principle +discord/ui/file_upload.py:179: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/file_upload.py:181: error: Unsupported right operand type for in ("object") [operator] +discord/ui/file_upload.py:184: error: Argument 1 of "from_component" is incompatible with supertype "Item"; supertype defines the argument type as "Component" [override] +discord/ui/file_upload.py:184: note: This violates the Liskov substitution principle +discord/ui/file_upload.py:184: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/file.py:162: error: Argument 1 of "from_component" is incompatible with supertype "Item"; supertype defines the argument type as "Component" [override] +discord/ui/file.py:162: note: This violates the Liskov substitution principle +discord/ui/file.py:162: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/container.py:109: error: ClassVar cannot contain Self type in generic classes [misc] +discord/ui/container.py:151: error: Name "item" already defined on line 143 [no-redef] +discord/ui/container.py:151: error: "Callable[[Self, Interaction[Any], Any], Coroutine[Any, Any, Any]]" has no attribute "__discord_ui_model_type__" [attr-defined] +discord/ui/container.py:151: error: "Callable[[Self, Interaction[Any], Any], Coroutine[Any, Any, Any]]" has no attribute "__discord_ui_model_kwargs__" [attr-defined] +discord/ui/container.py:179: error: Return type "bool" of "_update_view" incompatible with return type "None" in supertype "Item" [override] +discord/ui/container.py:260: error: Argument 1 of "from_component" is incompatible with supertype "Item"; supertype defines the argument type as "Component" [override] +discord/ui/container.py:260: note: This violates the Liskov substitution principle +discord/ui/container.py:260: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/button.py:259: error: Argument 1 of "from_component" is incompatible with supertype "Item"; supertype defines the argument type as "Component" [override] +discord/ui/button.py:259: note: This violates the Liskov substitution principle +discord/ui/button.py:259: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/button.py:276: error: Return type "ButtonComponent" of "to_component_dict" incompatible with return type "Dict[str, Any]" in supertype "Item" [override] +discord/ui/button.py:287: error: Argument 1 of "_refresh_component" is incompatible with supertype "Item"; supertype defines the argument type as "Component" [override] +discord/ui/button.py:287: note: This violates the Liskov substitution principle +discord/ui/button.py:287: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/button.py:376: error: "Callable[[S, Interaction[Any], Button[V]], Coroutine[Any, Any, Any]]" has no attribute "__discord_ui_model_type__" [attr-defined] +discord/ui/button.py:377: error: "Callable[[S, Interaction[Any], Button[V]], Coroutine[Any, Any, Any]]" has no attribute "__discord_ui_model_kwargs__" [attr-defined] +discord/ui/section.py:251: error: Argument 1 of "from_component" is incompatible with supertype "Item"; supertype defines the argument type as "Component" [override] +discord/ui/section.py:251: note: This violates the Liskov substitution principle +discord/ui/section.py:251: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ui/modal.py:128: error: Incompatible types in assignment (expression has type "Modal", variable has type "Optional[Self]") [assignment] +discord/ui/modal.py:159: error: Signature of "on_error" incompatible with supertype "BaseView" [override] +discord/ui/modal.py:159: note: Superclass: +discord/ui/modal.py:159: note: def on_error(self, Interaction[Client], Exception, Item[Any], /) -> Coroutine[Any, Any, None] +discord/ui/modal.py:159: note: Subclass: +discord/ui/modal.py:159: note: def [ClientT: Client] on_error(self, Interaction[ClientT], Exception, /) -> Coroutine[Any, Any, None] +discord/ui/modal.py:176: error: Signature of "_refresh" incompatible with supertype "BaseView" [override] +discord/ui/modal.py:176: note: Superclass: +discord/ui/modal.py:176: note: def _refresh(self, components: List[Component]) -> None +discord/ui/modal.py:176: note: Subclass: +discord/ui/modal.py:176: note: def _refresh(self, interaction: Interaction[Client], components: Sequence[Union[ModalSubmitActionRowInteractionData, ModalSubmitTextDisplayInteractionData, ModalSubmitLabelInteractionData]], resolved: Dict[ResolveKey, Any]) -> None +discord/ui/modal.py:202: error: Signature of "_scheduled_task" incompatible with supertype "BaseView" [override] +discord/ui/modal.py:202: note: Superclass: +discord/ui/modal.py:202: note: def _scheduled_task(self, item: Item[Any], interaction: Interaction[Client]) -> Coroutine[Any, Any, Any] +discord/ui/modal.py:202: note: Subclass: +discord/ui/modal.py:202: note: def _scheduled_task(self, interaction: Interaction[Client], components: List[Union[ModalSubmitActionRowInteractionData, ModalSubmitTextDisplayInteractionData, ModalSubmitLabelInteractionData]], resolved: Dict[ResolveKey, Any]) -> Coroutine[Any, Any, Any] +discord/ui/action_row.py:122: error: ClassVar cannot contain Self type in generic classes [misc] +discord/ui/action_row.py:163: error: "Callable[[Self, Interaction[Any], Any], Coroutine[Any, Any, Any]]" has no attribute "__discord_ui_model_type__" [attr-defined] +discord/ui/action_row.py:163: error: "Callable[[Self, Interaction[Any], Any], Coroutine[Any, Any, Any]]" has no attribute "__discord_ui_model_kwargs__" [attr-defined] +discord/ui/action_row.py:415: error: Incompatible default for argument "cls" (default has type "Type[Select[Any]]", argument has type "Type[SelectT]") [assignment] +discord/ui/action_row.py:430: error: Incompatible default for argument "cls" (default has type "Type[UserSelect[Any]]", argument has type "Type[UserSelectT]") [assignment] +discord/ui/action_row.py:446: error: Incompatible default for argument "cls" (default has type "Type[RoleSelect[Any]]", argument has type "Type[RoleSelectT]") [assignment] +discord/ui/action_row.py:462: error: Incompatible default for argument "cls" (default has type "Type[ChannelSelect[Any]]", argument has type "Type[ChannelSelectT]") [assignment] +discord/ui/action_row.py:478: error: Incompatible default for argument "cls" (default has type "Type[MentionableSelect[Any]]", argument has type "Type[MentionableSelectT]") [assignment] +discord/ui/action_row.py:493: error: Incompatible default for argument "cls" (default has type "Type[Select[Any]]", argument has type "Type[BaseSelectT]") [assignment] +discord/ui/action_row.py:591: error: "BaseSelectT" has no attribute "__discord_ui_parent__" [attr-defined] +discord/ui/action_row.py:592: error: Incompatible return value type (got "BaseSelectT", expected "Callable[[S, Interaction[Any], BaseSelectT], Coroutine[Any, Any, Any]]") [return-value] +discord/ui/action_row.py:597: error: Argument 1 of "from_component" is incompatible with supertype "Item"; supertype defines the argument type as "Component" [override] +discord/ui/action_row.py:597: note: This violates the Liskov substitution principle +discord/ui/action_row.py:597: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ext/commands/view.py:127: error: Attribute "previous" already defined on line 59 [no-redef] +discord/ext/commands/view.py:132: error: Missing return statement [return] +discord/ext/commands/view.py:144: error: Incompatible types in assignment (expression has type "Set[str]", variable has type "Tuple[str, Optional[str]]") [assignment] +discord/ext/commands/view.py:151: error: Argument 1 to "ExpectedClosingQuoteError" has incompatible type "Optional[str]"; expected "str" [arg-type] +discord/ext/commands/view.py:162: error: Argument 1 to "ExpectedClosingQuoteError" has incompatible type "Optional[str]"; expected "str" [arg-type] +discord/ext/commands/converter.py:267: error: Incompatible types in assignment (expression has type "Union[Member, User, None]", variable has type "Optional[Member]") [assignment] +discord/ext/commands/converter.py:379: error: Incompatible return value type (got "Tuple[Union[Guild, int, None], int, int]", expected "Tuple[Optional[int], int, int]") [return-value] +discord/ext/commands/converter.py:483: error: Name "result" already defined on line 476 [no-redef] +discord/ext/commands/converter.py:517: error: Name "result" already defined on line 510 [no-redef] +discord/ext/commands/converter.py:1280: error: Argument 2 to "issubclass" has incompatible type ""; expected "_ClassInfo" [arg-type] +discord/ext/commands/converter.py:1413: error: Need type annotation for "conversions" (hint: "conversions: Dict[, ] = ...") [var-annotated] +discord/ext/commands/parameters.py:63: error: Parameter 1 of Literal[...] is invalid [valid-type] +discord/ext/commands/parameters.py:64: error: Parameter 1 of Literal[...] is invalid [valid-type] +discord/ext/commands/parameters.py:65: error: Parameter 1 of Literal[...] is invalid [valid-type] +discord/ext/commands/parameters.py:66: error: Parameter 1 of Literal[...] is invalid [valid-type] +discord/ext/commands/parameters.py:67: error: Parameter 1 of Literal[...] is invalid [valid-type] +discord/ext/commands/parameters.py:115: error: Signature of "replace" incompatible with supertype "Parameter" [override] +discord/ext/commands/parameters.py:115: note: Superclass: +discord/ext/commands/parameters.py:115: note: def replace(self, *, name: Union[str, Type[_void]] = ..., kind: Union[_ParameterKind, Type[_void]] = ..., default: Any = ..., annotation: Any = ...) -> Parameter +discord/ext/commands/parameters.py:115: note: Subclass: +discord/ext/commands/parameters.py:115: note: def replace(self, *, name: str = ..., kind: Union[Any, Any, Any, Any, Any] = ..., default: Any = ..., annotation: Any = ..., description: str = ..., displayed_default: Any = ..., displayed_name: Any = ...) -> Parameter +discord/ext/commands/parameters.py:324: error: Incompatible types in assignment (expression has type "OrderedDict[str, discord.ext.commands.parameters.Parameter]", base class "Signature" defined the type as "MappingProxyType[str, inspect.Parameter]") [assignment] +discord/ext/commands/flags.py:685: error: Incompatible types in assignment (expression has type "Dict[Never, Never]", variable has type "List[str]") [assignment] +discord/ext/commands/flags.py:685: error: Argument 1 to "dict" has incompatible type "List[str]"; expected "Iterable[Tuple[Never, Never]]" [arg-type] +discord/ext/commands/context.py:411: error: Return type "Coroutine[Any, Any, Messageable]" of "_get_channel" incompatible with return type "Coroutine[Any, Any, Union[Union[TextChannel, VoiceChannel, StageChannel, Thread, DMChannel, PartialMessageable], GroupChannel]]" in supertype "Messageable" [override] +discord/ext/commands/context.py:619: error: Argument 1 to "wrap_callback" has incompatible type "Callable[[Cog], Coroutine[Any, Any, None]]"; expected "Callable[[Mapping[Optional[Cog], List[Command[Any, [VarArg(Any), KwArg(Any)], Any]]]], Coroutine[Any, Any, None]]" [arg-type] +discord/ext/commands/context.py:620: error: Argument 1 has incompatible type "Cog"; expected "Mapping[Optional[Cog], List[Command[Any, [VarArg(Any), KwArg(Any)], Any]]]" [arg-type] +discord/ext/commands/context.py:622: error: Argument 1 to "wrap_callback" has incompatible type "Callable[[Group[Any, [VarArg(Any), KwArg(Any)], Any]], Coroutine[Any, Any, None]]"; expected "Callable[[Mapping[Optional[Cog], List[Command[Any, [VarArg(Any), KwArg(Any)], Any]]]], Coroutine[Any, Any, None]]" [arg-type] +discord/ext/commands/context.py:623: error: Argument 1 has incompatible type "Group[Any, Any, Any]"; expected "Mapping[Optional[Cog], List[Command[Any, [VarArg(Any), KwArg(Any)], Any]]]" [arg-type] +discord/ext/commands/context.py:625: error: Argument 1 to "wrap_callback" has incompatible type "Callable[[Command[Any, [VarArg(Any), KwArg(Any)], Any]], Coroutine[Any, Any, None]]"; expected "Callable[[Mapping[Optional[Cog], List[Command[Any, [VarArg(Any), KwArg(Any)], Any]]]], Coroutine[Any, Any, None]]" [arg-type] +discord/ext/commands/context.py:626: error: Argument 1 has incompatible type "Command[Any, Any, Any]"; expected "Mapping[Optional[Cog], List[Command[Any, [VarArg(Any), KwArg(Any)], Any]]]" [arg-type] +discord/ext/commands/context.py:783: error: Signature of "typing" incompatible with supertype "Messageable" [override] +discord/ext/commands/context.py:783: note: Superclass: +discord/ext/commands/context.py:783: note: def typing(self) -> Typing +discord/ext/commands/context.py:783: note: Subclass: +discord/ext/commands/context.py:783: note: def typing(self, *, ephemeral: bool = ...) -> Union[Typing, DeferTyping[BotT]] +discord/ext/commands/context.py:1138: error: No overload variant of "send" of "Webhook" matches argument types "Dict[str, Union[bool, str, Any, Embed, Sequence[Embed], File, Sequence[File], AllowedMentions, BaseView, Poll, None]]", "bool" [call-overload] +discord/ext/commands/context.py:1138: note: Possible overload variants: +discord/ext/commands/context.py:1138: note: def send(self, *, username: str = ..., avatar_url: Any = ..., ephemeral: bool = ..., file: File = ..., files: Sequence[File] = ..., allowed_mentions: AllowedMentions = ..., view: LayoutView, wait: Literal[True], thread: Snowflake = ..., thread_name: str = ..., suppress_embeds: bool = ..., silent: bool = ..., applied_tags: List[ForumTag] = ...) -> Coroutine[Any, Any, WebhookMessage] +discord/ext/commands/context.py:1138: note: def send(self, *, username: str = ..., avatar_url: Any = ..., ephemeral: bool = ..., file: File = ..., files: Sequence[File] = ..., allowed_mentions: AllowedMentions = ..., view: LayoutView, wait: Literal[False] = ..., thread: Snowflake = ..., thread_name: str = ..., suppress_embeds: bool = ..., silent: bool = ..., applied_tags: List[ForumTag] = ...) -> Coroutine[Any, Any, None] +discord/ext/commands/context.py:1138: note: def send(self, content: str = ..., *, username: str = ..., avatar_url: Any = ..., tts: bool = ..., ephemeral: bool = ..., file: File = ..., files: Sequence[File] = ..., embed: Embed = ..., embeds: Sequence[Embed] = ..., allowed_mentions: AllowedMentions = ..., view: View = ..., thread: Snowflake = ..., thread_name: str = ..., wait: Literal[True], suppress_embeds: bool = ..., silent: bool = ..., applied_tags: List[ForumTag] = ..., poll: Poll = ...) -> Coroutine[Any, Any, WebhookMessage] +discord/ext/commands/context.py:1138: note: def send(self, content: str = ..., *, username: str = ..., avatar_url: Any = ..., tts: bool = ..., ephemeral: bool = ..., file: File = ..., files: Sequence[File] = ..., embed: Embed = ..., embeds: Sequence[Embed] = ..., allowed_mentions: AllowedMentions = ..., view: View = ..., thread: Snowflake = ..., thread_name: str = ..., wait: Literal[False] = ..., suppress_embeds: bool = ..., silent: bool = ..., applied_tags: List[ForumTag] = ..., poll: Poll = ...) -> Coroutine[Any, Any, None] +discord/ext/commands/context.py:1140: error: Argument 1 to "send_message" of "InteractionResponse" has incompatible type "**Dict[str, Union[bool, str, Any, Embed, Sequence[Embed], File, Sequence[File], AllowedMentions, BaseView, Poll, None]]"; expected "File" [arg-type] +discord/ext/commands/context.py:1140: error: Argument 1 to "send_message" of "InteractionResponse" has incompatible type "**Dict[str, Union[bool, str, Any, Embed, Sequence[Embed], File, Sequence[File], AllowedMentions, BaseView, Poll, None]]"; expected "Sequence[File]" [arg-type] +discord/ext/commands/context.py:1140: error: Argument 1 to "send_message" of "InteractionResponse" has incompatible type "**Dict[str, Union[bool, str, Any, Embed, Sequence[Embed], File, Sequence[File], AllowedMentions, BaseView, Poll, None]]"; expected "LayoutView" [arg-type] +discord/ext/commands/context.py:1140: error: Argument 1 to "send_message" of "InteractionResponse" has incompatible type "**Dict[str, Union[bool, str, Any, Embed, Sequence[Embed], File, Sequence[File], AllowedMentions, BaseView, Poll, None]]"; expected "bool" [arg-type] +discord/ext/commands/context.py:1140: error: Argument 1 to "send_message" of "InteractionResponse" has incompatible type "**Dict[str, Union[bool, str, Any, Embed, Sequence[Embed], File, Sequence[File], AllowedMentions, BaseView, Poll, None]]"; expected "AllowedMentions" [arg-type] +discord/ext/commands/context.py:1140: error: Argument 1 to "send_message" of "InteractionResponse" has incompatible type "**Dict[str, Union[bool, str, Any, Embed, Sequence[Embed], File, Sequence[File], AllowedMentions, BaseView, Poll, None]]"; expected "Optional[float]" [arg-type] +discord/ext/commands/cog.py:208: error: Need type annotation for "commands" (hint: "commands: Dict[, ] = ...") [var-annotated] +discord/ext/commands/cog.py:210: error: Need type annotation for "listeners" (hint: "listeners: Dict[, ] = ...") [var-annotated] +discord/ext/commands/cog.py:246: error: Argument 1 to "list" has incompatible type "dict_values[str, _BaseCommand]"; expected "Iterable[Command[Any, [VarArg(Any), KwArg(Any)], Any]]" [arg-type] +discord/ext/commands/cog.py:268: error: "FuncT" has no attribute "__cog_special_method__" [attr-defined] +discord/ext/commands/cog.py:382: error: Incompatible types in assignment (expression has type "Union[Group, discord.app_commands.commands.Command[Any, [VarArg(Any), KwArg(Any)], Any]]", variable has type "discord.ext.commands.core.Command[Self, [VarArg(Any), KwArg(Any)], Any]") [assignment] +discord/ext/commands/cog.py:383: error: "Command[Self, [VarArg(Any), KwArg(Any)], Any]" has no attribute "_copy_with" [attr-defined] +discord/ext/commands/cog.py:391: error: Incompatible types in assignment (expression has type "Union[discord.app_commands.commands.Command[Any, Any, Any], Group]", variable has type "discord.ext.commands.core.Command[Self, [VarArg(Any), KwArg(Any)], Any]") [assignment] +discord/ext/commands/cog.py:497: error: "FuncT" has no attribute "__func__" [attr-defined] +discord/ext/commands/cog.py:527: error: "FuncT" has no attribute "__cog_listener__" [attr-defined] +discord/ext/commands/cog.py:530: error: "FuncT" has no attribute "__cog_listener_names__" [attr-defined] +discord/ext/commands/cog.py:532: error: "FuncT" has no attribute "__cog_listener_names__" [attr-defined] +discord/ext/commands/cog.py:546: error: "Callable[[Context[BotT], Exception], Coroutine[Any, Any, None]]" has no attribute "__func__" [attr-defined] +discord/ext/commands/cog.py:553: error: "Callable[[Interaction[Client], AppCommandError], Coroutine[Any, Any, None]]" has no attribute "__func__" [attr-defined] +discord/ext/commands/cog.py:708: error: Argument 1 to "maybe_coroutine" has incompatible type "Callable[[], Coroutine[Any, Any, None]]"; expected "Callable[[], Union[Never, Awaitable[Never]]]" [arg-type] +discord/ext/commands/cog.py:725: error: Argument 1 to "maybe_coroutine" has incompatible type "Callable[[], Coroutine[Any, Any, None]]"; expected "Callable[[], Union[Never, Awaitable[Never]]]" [arg-type] +discord/ext/commands/cog.py:745: error: Incompatible types in assignment (expression has type "Union[Group, discord.app_commands.commands.Command[Self, [VarArg(Any), KwArg(Any)], Any]]", variable has type "discord.ext.commands.core.Command[Self, [VarArg(Any), KwArg(Any)], Any]") [assignment] +discord/ext/commands/cog.py:747: error: Argument 1 to "add_command" of "CommandTree" has incompatible type "discord.ext.commands.core.Command[Self, [VarArg(Any), KwArg(Any)], Any]"; expected "Union[discord.app_commands.commands.Command[Any, [VarArg(Any), KwArg(Any)], Any], ContextMenu, Group]" [arg-type] +discord/ext/commands/cog.py:760: error: Incompatible types in assignment (expression has type "Union[Group, discord.app_commands.commands.Command[Self, [VarArg(Any), KwArg(Any)], Any]]", variable has type "discord.ext.commands.core.Command[Self, [VarArg(Any), KwArg(Any)], Any]") [assignment] +discord/ext/commands/cog.py:761: error: "Command[Self, [VarArg(Any), KwArg(Any)], Any]" has no attribute "_guild_ids" [attr-defined] +discord/ext/commands/cog.py:778: error: Argument 1 to "maybe_coroutine" has incompatible type "Callable[[], Coroutine[Any, Any, None]]"; expected "Callable[[], Union[Never, Awaitable[Never]]]" [arg-type] +discord/ext/commands/cooldowns.py:171: error: Return type "Optional[Cooldown]" of "create_bucket" incompatible with return type "Cooldown" in supertype "CooldownMapping" [override] +discord/ext/commands/core.py:252: error: Return value expected [return-value] +discord/ext/commands/core.py:272: error: Return value expected [return-value] +discord/ext/commands/core.py:462: error: Item "function" of "Union[Callable[[CogT, Context[Any], **P], Coroutine[Any, Any, T]], Callable[[Context[Any], **P], Coroutine[Any, Any, T]]]" has no attribute "__commands_checks__" [union-attr] +discord/ext/commands/core.py:470: error: Item "function" of "Union[Callable[[CogT, Context[Any], **P], Coroutine[Any, Any, T]], Callable[[Context[Any], **P], Coroutine[Any, Any, T]]]" has no attribute "__commands_cooldown__" [union-attr] +discord/ext/commands/core.py:477: error: Name "buckets" already defined on line 475 [no-redef] +discord/ext/commands/core.py:483: error: Item "function" of "Union[Callable[[CogT, Context[Any], **P], Coroutine[Any, Any, T]], Callable[[Context[Any], **P], Coroutine[Any, Any, T]]]" has no attribute "__commands_max_concurrency__" [union-attr] +discord/ext/commands/core.py:495: error: Incompatible types in assignment (expression has type "object", variable has type "Optional[GroupMixin[Any]]") [assignment] +discord/ext/commands/core.py:500: error: Item "function" of "Union[Callable[[CogT, Context[Any], **P], Coroutine[Any, Any, T]], Callable[[Context[Any], **P], Coroutine[Any, Any, T]]]" has no attribute "__before_invoke__" [union-attr] +discord/ext/commands/core.py:508: error: Item "function" of "Union[Callable[[CogT, Context[Any], **P], Coroutine[Any, Any, T]], Callable[[Context[Any], **P], Coroutine[Any, Any, T]]]" has no attribute "__after_invoke__" [union-attr] +discord/ext/commands/core.py:602: error: Accessing "__init__" on an instance is unsound, since instance.__init__ could be from an incompatible subclass [misc] +discord/ext/commands/core.py:740: error: Incompatible types in assignment (expression has type "Optional[str]", variable has type "str") [assignment] +discord/ext/commands/core.py:835: error: Incompatible return value type (got "List[Command[CogT, P, T]]", expected "List[Group[Any, [VarArg(Any), KwArg(Any)], Any]]") [return-value] +discord/ext/commands/core.py:1552: error: No overload variant of "command" matches argument types "Tuple[Any, ...]", "Type[Command[Any, [VarArg(Any), KwArg(Any)], Any]]", "_CommandDecoratorKwargs", "str" [call-overload] +discord/ext/commands/core.py:1552: note: Possible overload variants: +discord/ext/commands/core.py:1552: note: def command(name: str = ..., *, enabled: bool = ..., help: Optional[str] = ..., brief: Optional[str] = ..., usage: Optional[str] = ..., rest_is_raw: bool = ..., aliases: Union[List[str], Tuple[str, ...]] = ..., description: str = ..., hidden: bool = ..., checks: List[Callable[[Context[Any]], Union[bool, Coroutine[Any, Any, bool]]]] = ..., cooldown: CooldownMapping[Context[Any]] = ..., max_concurrency: MaxConcurrency = ..., require_var_positional: bool = ..., cooldown_after_parsing: bool = ..., ignore_extra: bool = ..., extras: Dict[Any, Any] = ...) -> _CommandDecorator +discord/ext/commands/core.py:1552: note: def [CommandT: Command[Any, [VarArg(Any), KwArg(Any)], Any]] command(name: str = ..., cls: Type[CommandT] = ..., *, enabled: bool = ..., help: Optional[str] = ..., brief: Optional[str] = ..., usage: Optional[str] = ..., rest_is_raw: bool = ..., aliases: Union[List[str], Tuple[str, ...]] = ..., description: str = ..., hidden: bool = ..., checks: List[Callable[[Context[Any]], Union[bool, Coroutine[Any, Any, bool]]]] = ..., cooldown: CooldownMapping[Context[Any]] = ..., max_concurrency: MaxConcurrency = ..., require_var_positional: bool = ..., cooldown_after_parsing: bool = ..., ignore_extra: bool = ..., extras: Dict[Any, Any] = ...) -> Callable[[Union[Callable[[ContextT, **P], Coroutine[Any, Any, Any]], Callable[[CogT, ContextT, **P], Coroutine[Any, Any, Any]]]], CommandT] +discord/ext/commands/core.py:1609: error: No overload variant of "group" matches argument types "Tuple[Any, ...]", "Type[Group[Any, [VarArg(Any), KwArg(Any)], Any]]", "_GroupDecoratorKwargs", "str" [call-overload] +discord/ext/commands/core.py:1609: note: Possible overload variants: +discord/ext/commands/core.py:1609: note: def group(name: str = ..., *, enabled: bool = ..., help: Optional[str] = ..., brief: Optional[str] = ..., usage: Optional[str] = ..., rest_is_raw: bool = ..., aliases: Union[List[str], Tuple[str, ...]] = ..., description: str = ..., hidden: bool = ..., checks: List[Callable[[Context[Any]], Union[bool, Coroutine[Any, Any, bool]]]] = ..., cooldown: CooldownMapping[Context[Any]] = ..., max_concurrency: MaxConcurrency = ..., require_var_positional: bool = ..., cooldown_after_parsing: bool = ..., ignore_extra: bool = ..., extras: Dict[Any, Any] = ..., invoke_without_command: bool = ..., case_insensitive: bool = ...) -> _GroupDecorator +discord/ext/commands/core.py:1609: note: def [GroupT: Group[Any, [VarArg(Any), KwArg(Any)], Any]] group(name: str = ..., cls: Type[GroupT] = ..., *, enabled: bool = ..., help: Optional[str] = ..., brief: Optional[str] = ..., usage: Optional[str] = ..., rest_is_raw: bool = ..., aliases: Union[List[str], Tuple[str, ...]] = ..., description: str = ..., hidden: bool = ..., checks: List[Callable[[Context[Any]], Union[bool, Coroutine[Any, Any, bool]]]] = ..., cooldown: CooldownMapping[Context[Any]] = ..., max_concurrency: MaxConcurrency = ..., require_var_positional: bool = ..., cooldown_after_parsing: bool = ..., ignore_extra: bool = ..., extras: Dict[Any, Any] = ..., invoke_without_command: bool = ..., case_insensitive: bool = ...) -> Callable[[Union[Callable[[CogT, ContextT, **P], Coroutine[Any, Any, Any]], Callable[[ContextT, **P], Coroutine[Any, Any, Any]]]], GroupT] +discord/ext/commands/core.py:1859: error: No overload variant of "command" matches argument types "Type[Group[Any, [VarArg(Any), KwArg(Any)], Any]]", "_GroupDecoratorKwargs", "str" [call-overload] +discord/ext/commands/core.py:1859: note: Possible overload variants: +discord/ext/commands/core.py:1859: note: def command(name: str = ..., *, enabled: bool = ..., help: Optional[str] = ..., brief: Optional[str] = ..., usage: Optional[str] = ..., rest_is_raw: bool = ..., aliases: Union[List[str], Tuple[str, ...]] = ..., description: str = ..., hidden: bool = ..., checks: List[Callable[[Context[Any]], Union[bool, Coroutine[Any, Any, bool]]]] = ..., cooldown: CooldownMapping[Context[Any]] = ..., max_concurrency: MaxConcurrency = ..., require_var_positional: bool = ..., cooldown_after_parsing: bool = ..., ignore_extra: bool = ..., extras: Dict[Any, Any] = ...) -> _CommandDecorator +discord/ext/commands/core.py:1859: note: def [CommandT: Command[Any, [VarArg(Any), KwArg(Any)], Any]] command(name: str = ..., cls: Type[CommandT] = ..., *, enabled: bool = ..., help: Optional[str] = ..., brief: Optional[str] = ..., usage: Optional[str] = ..., rest_is_raw: bool = ..., aliases: Union[List[str], Tuple[str, ...]] = ..., description: str = ..., hidden: bool = ..., checks: List[Callable[[Context[Any]], Union[bool, Coroutine[Any, Any, bool]]]] = ..., cooldown: CooldownMapping[Context[Any]] = ..., max_concurrency: MaxConcurrency = ..., require_var_positional: bool = ..., cooldown_after_parsing: bool = ..., ignore_extra: bool = ..., extras: Dict[Any, Any] = ...) -> Callable[[Union[Callable[[ContextT, **P], Coroutine[Any, Any, Any]], Callable[[CogT, ContextT, **P], Coroutine[Any, Any, Any]]]], CommandT] +discord/ext/commands/core.py:1942: error: "Callable[..., Coroutine[Any, Any, Any]]" has no attribute "__commands_checks__" [attr-defined] +discord/ext/commands/core.py:1944: error: "Callable[..., Coroutine[Any, Any, Any]]" has no attribute "__commands_checks__" [attr-defined] +discord/ext/commands/core.py:1949: error: "Callable[[Union[Command[Any, [VarArg(Any), KwArg(Any)], Any], Callable[..., Coroutine[Any, Any, Any]]]], Union[Command[Any, [VarArg(Any), KwArg(Any)], Any], Callable[..., Coroutine[Any, Any, Any]]]]" has no attribute "predicate" [attr-defined] +discord/ext/commands/core.py:1956: error: "Callable[[Union[Command[Any, [VarArg(Any), KwArg(Any)], Any], Callable[..., Coroutine[Any, Any, Any]]]], Union[Command[Any, [VarArg(Any), KwArg(Any)], Any], Callable[..., Coroutine[Any, Any, Any]]]]" has no attribute "predicate" [attr-defined] +discord/ext/commands/core.py:2018: error: Argument 1 has incompatible type "Context[BotT]"; expected "ContextT" [arg-type] +discord/ext/commands/core.py:2025: error: Argument 1 to "CheckAnyFailure" has incompatible type "List[Callable[[ContextT], Coroutine[Any, Any, bool]]]"; expected "List[Callable[[Context[Any]], bool]]" [arg-type] +discord/ext/commands/core.py:2365: error: "Callable[..., Coroutine[Any, Any, Any]]" has no attribute "__commands_checks__" [attr-defined] +discord/ext/commands/core.py:2367: error: "Callable[..., Coroutine[Any, Any, Any]]" has no attribute "__commands_checks__" [attr-defined] +discord/ext/commands/core.py:2368: error: "Callable[..., Coroutine[Any, Any, Any]]" has no attribute "__discord_app_commands_guild_only__" [attr-defined] +discord/ext/commands/core.py:2373: error: "Callable[[Union[Command[Any, Any, Any], Callable[..., Coroutine[Any, Any, Any]]]], Union[Command[Any, Any, Any], Callable[..., Coroutine[Any, Any, Any]]]]" has no attribute "predicate" [attr-defined] +discord/ext/commands/core.py:2380: error: "Callable[[Union[Command[Any, Any, Any], Callable[..., Coroutine[Any, Any, Any]]]], Union[Command[Any, Any, Any], Callable[..., Coroutine[Any, Any, Any]]]]" has no attribute "predicate" [attr-defined] +discord/ext/commands/core.py:2440: error: "Callable[..., Coroutine[Any, Any, Any]]" has no attribute "__commands_checks__" [attr-defined] +discord/ext/commands/core.py:2442: error: "Callable[..., Coroutine[Any, Any, Any]]" has no attribute "__commands_checks__" [attr-defined] +discord/ext/commands/core.py:2443: error: "Callable[..., Coroutine[Any, Any, Any]]" has no attribute "__discord_app_commands_is_nsfw__" [attr-defined] +discord/ext/commands/core.py:2448: error: "Callable[[Union[Command[Any, Any, Any], Callable[..., Coroutine[Any, Any, Any]]]], Union[Command[Any, Any, Any], Callable[..., Coroutine[Any, Any, Any]]]]" has no attribute "predicate" [attr-defined] +discord/ext/commands/core.py:2455: error: "Callable[[Union[Command[Any, Any, Any], Callable[..., Coroutine[Any, Any, Any]]]], Union[Command[Any, Any, Any], Callable[..., Coroutine[Any, Any, Any]]]]" has no attribute "predicate" [attr-defined] +discord/ext/commands/core.py:2499: error: "Callable[..., Coroutine[Any, Any, Any]]" has no attribute "__commands_cooldown__" [attr-defined] +discord/ext/commands/core.py:2547: error: "Callable[..., Coroutine[Any, Any, Any]]" has no attribute "__commands_cooldown__" [attr-defined] +discord/ext/commands/core.py:2582: error: "Callable[..., Coroutine[Any, Any, Any]]" has no attribute "__commands_max_concurrency__" [attr-defined] +discord/ext/commands/core.py:2634: error: "Callable[..., Coroutine[Any, Any, Any]]" has no attribute "__before_invoke__" [attr-defined] +discord/ext/commands/core.py:2657: error: "Callable[..., Coroutine[Any, Any, Any]]" has no attribute "__after_invoke__" [attr-defined] +discord/ext/commands/hybrid.py:61: error: Overwriting TypedDict field "description" while extending [misc] +discord/ext/commands/hybrid.py:64: error: Overwriting TypedDict field "with_app_command" while extending [misc] +discord/ext/commands/hybrid.py:65: error: Overwriting TypedDict field "guild_ids" while extending [misc] +discord/ext/commands/hybrid.py:66: error: Overwriting TypedDict field "guild_only" while extending [misc] +discord/ext/commands/hybrid.py:67: error: Overwriting TypedDict field "default_permissions" while extending [misc] +discord/ext/commands/hybrid.py:68: error: Overwriting TypedDict field "nsfw" while extending [misc] +discord/ext/commands/hybrid.py:69: error: Overwriting TypedDict field "description" while extending [misc] +discord/ext/commands/hybrid.py:73: error: Overwriting TypedDict field "description" while extending [misc] +discord/ext/commands/hybrid.py:112: error: Read-only property cannot override read-write property [misc] +discord/ext/commands/hybrid.py:232: error: "Callable[..., Any]" has no attribute "__hybrid_command_flag__" [attr-defined] +discord/ext/commands/hybrid.py:328: error: Item "function" of "Union[Callable[[CogT, Context[Any], VarArg(Any), KwArg(Any)], Coroutine[Any, Any, T]], Callable[[Context[Any], VarArg(Any), KwArg(Any)], Coroutine[Any, Any, T]]]" has no attribute "__signature__" [union-attr] +discord/ext/commands/hybrid.py:338: error: Item "function" of "Union[Callable[[CogT, Context[Any], VarArg(Any), KwArg(Any)], Coroutine[Any, Any, T]], Callable[[Context[Any], VarArg(Any), KwArg(Any)], Coroutine[Any, Any, T]]]" has no attribute "__signature__" [union-attr] +discord/ext/commands/hybrid.py:420: error: Argument 1 to "maybe_coroutine" has incompatible type "Callable[[Interaction[Client]], Coroutine[Any, Any, bool]]"; expected "Callable[[Interaction[Client]], Union[Never, Awaitable[Never]]]" [arg-type] +discord/ext/commands/hybrid.py:510: error: Overlap between argument names and ** TypedDict items: "description", "name" [misc] +discord/ext/commands/hybrid.py:631: error: Overlap between argument names and ** TypedDict items: "description", "name" [misc] +discord/ext/commands/hybrid.py:696: error: Need type annotation for "command" [var-annotated] +discord/ext/commands/hybrid.py:790: error: Argument 1 of "add_command" is incompatible with supertype "GroupMixin"; supertype defines the argument type as "Command[CogT, [VarArg(Any), KwArg(Any)], Any]" [override] +discord/ext/commands/hybrid.py:790: note: This violates the Liskov substitution principle +discord/ext/commands/hybrid.py:790: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides +discord/ext/commands/hybrid.py:836: error: Overlap between argument names and ** TypedDict items: "name", "with_app_command" [misc] +discord/ext/commands/hybrid.py:836: error: Signature of "command" incompatible with supertype "GroupMixin" [override] +discord/ext/commands/hybrid.py:836: note: Superclass: +discord/ext/commands/hybrid.py:836: note: @overload +discord/ext/commands/hybrid.py:836: note: def command(name: str = ..., *args: Any, enabled: bool = ..., help: Optional[str] = ..., brief: Optional[str] = ..., usage: Optional[str] = ..., rest_is_raw: bool = ..., aliases: Union[List[str], Tuple[str, ...]] = ..., description: str = ..., hidden: bool = ..., checks: List[Callable[[Context[Any]], Union[bool, Coroutine[Any, Any, bool]]]] = ..., cooldown: CooldownMapping[Context[Any]] = ..., max_concurrency: MaxConcurrency = ..., require_var_positional: bool = ..., cooldown_after_parsing: bool = ..., ignore_extra: bool = ..., extras: Dict[Any, Any] = ...) -> Callable[[Union[Callable[[CogT, ContextT, **P], Coroutine[Any, Any, T]], Callable[[ContextT, **P], Coroutine[Any, Any, T]]]], Command[CogT, P, T]] +discord/ext/commands/hybrid.py:836: note: @overload +discord/ext/commands/hybrid.py:836: note: def [CommandT: Command[Any, [VarArg(Any), KwArg(Any)], Any]] command(name: str = ..., cls: Type[CommandT] = ..., *args: Any, enabled: bool = ..., help: Optional[str] = ..., brief: Optional[str] = ..., usage: Optional[str] = ..., rest_is_raw: bool = ..., aliases: Union[List[str], Tuple[str, ...]] = ..., description: str = ..., hidden: bool = ..., checks: List[Callable[[Context[Any]], Union[bool, Coroutine[Any, Any, bool]]]] = ..., cooldown: CooldownMapping[Context[Any]] = ..., max_concurrency: MaxConcurrency = ..., require_var_positional: bool = ..., cooldown_after_parsing: bool = ..., ignore_extra: bool = ..., extras: Dict[Any, Any] = ...) -> Callable[[Union[Callable[[CogT, ContextT, **P], Coroutine[Any, Any, T]], Callable[[ContextT, **P], Coroutine[Any, Any, T]]]], CommandT] +discord/ext/commands/hybrid.py:836: note: Subclass: +discord/ext/commands/hybrid.py:836: note: def command(self, name: Union[str, locale_str] = ..., *args: Any, with_app_command: bool = ..., **kwargs: Any) -> Callable[[Union[Callable[[CogT, ContextT, **P2], Coroutine[Any, Any, U]], Callable[[ContextT, **P2], Coroutine[Any, Any, U]]]], HybridCommand[CogT, P2, U]] +discord/ext/commands/hybrid.py:858: error: Incompatible return value type (got "Callable[[Union[Callable[[CogT, ContextT@decorator, **P2], Coroutine[Any, Any, U@decorator]], Callable[[ContextT@decorator, **P2], Coroutine[Any, Any, U@decorator]]]], Any]", expected "Callable[[Union[Callable[[CogT, ContextT, **P2], Coroutine[Any, Any, U]], Callable[[ContextT, **P2], Coroutine[Any, Any, U]]]], HybridCommand[CogT, P2, U]]") [return-value] +discord/ext/commands/hybrid.py:860: error: Overlap between argument names and ** TypedDict items: "name", "with_app_command" [misc] +discord/ext/commands/hybrid.py:860: error: Signature of "group" incompatible with supertype "GroupMixin" [override] +discord/ext/commands/hybrid.py:860: note: Superclass: +discord/ext/commands/hybrid.py:860: note: @overload +discord/ext/commands/hybrid.py:860: note: def group(name: str = ..., *args: Any, enabled: bool = ..., help: Optional[str] = ..., brief: Optional[str] = ..., usage: Optional[str] = ..., rest_is_raw: bool = ..., aliases: Union[List[str], Tuple[str, ...]] = ..., description: str = ..., hidden: bool = ..., checks: List[Callable[[Context[Any]], Union[bool, Coroutine[Any, Any, bool]]]] = ..., cooldown: CooldownMapping[Context[Any]] = ..., max_concurrency: MaxConcurrency = ..., require_var_positional: bool = ..., cooldown_after_parsing: bool = ..., ignore_extra: bool = ..., extras: Dict[Any, Any] = ..., invoke_without_command: bool = ..., case_insensitive: bool = ...) -> Callable[[Union[Callable[[CogT, ContextT, **P], Coroutine[Any, Any, T]], Callable[[ContextT, **P], Coroutine[Any, Any, T]]]], Group[CogT, P, T]] +discord/ext/commands/hybrid.py:860: note: @overload +discord/ext/commands/hybrid.py:860: note: def [GroupT: Group[Any, [VarArg(Any), KwArg(Any)], Any]] group(name: str = ..., cls: Type[GroupT] = ..., *args: Any, enabled: bool = ..., help: Optional[str] = ..., brief: Optional[str] = ..., usage: Optional[str] = ..., rest_is_raw: bool = ..., aliases: Union[List[str], Tuple[str, ...]] = ..., description: str = ..., hidden: bool = ..., checks: List[Callable[[Context[Any]], Union[bool, Coroutine[Any, Any, bool]]]] = ..., cooldown: CooldownMapping[Context[Any]] = ..., max_concurrency: MaxConcurrency = ..., require_var_positional: bool = ..., cooldown_after_parsing: bool = ..., ignore_extra: bool = ..., extras: Dict[Any, Any] = ..., invoke_without_command: bool = ..., case_insensitive: bool = ...) -> Callable[[Union[Callable[[CogT, ContextT, **P], Coroutine[Any, Any, T]], Callable[[ContextT, **P], Coroutine[Any, Any, T]]]], GroupT] +discord/ext/commands/hybrid.py:860: note: Subclass: +discord/ext/commands/hybrid.py:860: note: def group(self, name: Union[str, locale_str] = ..., *args: Any, with_app_command: bool = ..., **kwargs: Any) -> Callable[[Union[Callable[[CogT, ContextT, **P2], Coroutine[Any, Any, U]], Callable[[ContextT, **P2], Coroutine[Any, Any, U]]]], HybridGroup[CogT, P2, U]] +discord/ext/commands/hybrid.py:882: error: Incompatible return value type (got "Callable[[Union[Callable[[CogT, ContextT@decorator, **P2], Coroutine[Any, Any, U@decorator]], Callable[[ContextT@decorator, **P2], Coroutine[Any, Any, U@decorator]]]], Any]", expected "Callable[[Union[Callable[[CogT, ContextT, **P2], Coroutine[Any, Any, U]], Callable[[ContextT, **P2], Coroutine[Any, Any, U]]]], HybridGroup[CogT, P2, U]]") [return-value] +discord/ext/commands/hybrid.py:885: error: Overlap between argument names and ** TypedDict items: "name", "with_app_command" [misc] +discord/ext/commands/hybrid.py:934: error: Incompatible return value type (got "Callable[[Union[Callable[[CogT@decorator, ContextT@decorator, **P], Coroutine[Any, Any, T@decorator]], Callable[[ContextT@decorator, **P], Coroutine[Any, Any, T@decorator]]]], HybridCommand[CogT@decorator, P, T@decorator]]", expected "Callable[[Union[Callable[[CogT, ContextT, **P], Coroutine[Any, Any, T]], Callable[[ContextT, **P], Coroutine[Any, Any, T]]]], HybridCommand[CogT, P, T]]") [return-value] +discord/ext/commands/hybrid.py:937: error: Overlap between argument names and ** TypedDict items: "name", "with_app_command" [misc] +discord/ext/commands/hybrid.py:967: error: Incompatible return value type (got "Callable[[Union[Callable[[CogT@decorator, ContextT@decorator, **P], Coroutine[Any, Any, T@decorator]], Callable[[ContextT@decorator, **P], Coroutine[Any, Any, T@decorator]]]], HybridGroup[CogT@decorator, P, T@decorator]]", expected "Callable[[Union[Callable[[CogT, ContextT, **P], Coroutine[Any, Any, T]], Callable[[ContextT, **P], Coroutine[Any, Any, T]]]], HybridGroup[CogT, P, T]]") [return-value] +discord/ext/commands/help.py:248: error: "FuncT" has no attribute "__help_command_not_overridden__" [attr-defined] +discord/ext/commands/help.py:309: error: Cannot assign to a method [method-assign] +discord/ext/commands/help.py:310: error: Cannot assign to a method [method-assign] +discord/ext/commands/help.py:693: error: Argument "key" to "sort" of "list" has incompatible type "Optional[Callable[[Command[Any, [VarArg(Any), KwArg(Any)], Any]], Any]]"; expected "Callable[[Command[Any, [VarArg(Any), KwArg(Any)], Any]], Union[SupportsDunderLT[Any], SupportsDunderGT[Any]]]" [arg-type] +discord/ext/commands/help.py:1003: error: Argument 2 has incompatible type "Optional[Command[None, [VarArg(Any), KwArg(Any)], Any]]"; expected "Command[Any, [VarArg(Any), KwArg(Any)], Any]" [arg-type] +discord/ext/commands/help.py:1007: error: Argument 2 has incompatible type "Optional[Command[None, [VarArg(Any), KwArg(Any)], Any]]"; expected "Command[Any, [VarArg(Any), KwArg(Any)], Any]" [arg-type] +discord/ext/commands/help.py:1014: error: Argument 1 to "send_command_help" of "HelpCommand" has incompatible type "Optional[Command[None, [VarArg(Any), KwArg(Any)], Any]]"; expected "Command[Any, [VarArg(Any), KwArg(Any)], Any]" [arg-type] +discord/ext/commands/help.py:1085: error: Attribute "paginator" already defined on line 1083 [no-redef] +discord/ext/commands/help.py:1087: error: Extra argument "sort_commands" from **args for "__init__" of "HelpCommand" [misc] +discord/ext/commands/help.py:1255: error: Return type "Messageable" of "get_destination" incompatible with return type "Union[Union[TextChannel, VoiceChannel, StageChannel, Thread, DMChannel, PartialMessageable], GroupChannel]" in supertype "HelpCommand" [override] +discord/ext/commands/help.py:1264: error: Signature of "prepare_help_command" incompatible with supertype "HelpCommand" [override] +discord/ext/commands/help.py:1264: note: Superclass: +discord/ext/commands/help.py:1264: note: def [BotT: Union[Bot, AutoShardedBot]] prepare_help_command(self, Context[BotT], Optional[str] = ..., /) -> Coroutine[Any, Any, None] +discord/ext/commands/help.py:1264: note: Subclass: +discord/ext/commands/help.py:1264: note: def [BotT: Union[Bot, AutoShardedBot]] prepare_help_command(self, Context[BotT], Optional[str], /) -> Coroutine[Any, Any, None] +discord/ext/commands/help.py:1288: error: Incompatible types in assignment (expression has type "List[Command[Any, [VarArg(Any), KwArg(Any)], Any]]", variable has type "Iterator[Command[Any, [VarArg(Any), KwArg(Any)], Any]]") [assignment] +discord/ext/commands/help.py:1288: note: "list" is missing following "Iterator" protocol member: +discord/ext/commands/help.py:1288: note: __next__ +discord/ext/commands/help.py:1289: error: Argument 1 to "add_indented_commands" of "DefaultHelpCommand" has incompatible type "Iterator[Command[Any, [VarArg(Any), KwArg(Any)], Any]]"; expected "Sequence[Command[Any, [VarArg(Any), KwArg(Any)], Any]]" [arg-type] +discord/ext/commands/help.py:1376: error: Attribute "paginator" already defined on line 1374 [no-redef] +discord/ext/commands/help.py:1378: error: Extra argument "sort_commands" from **args for "__init__" of "HelpCommand" [misc] +discord/ext/commands/help.py:1520: error: Return type "Messageable" of "get_destination" incompatible with return type "Union[Union[TextChannel, VoiceChannel, StageChannel, Thread, DMChannel, PartialMessageable], GroupChannel]" in supertype "HelpCommand" [override] +discord/ext/commands/help.py:1529: error: Signature of "prepare_help_command" incompatible with supertype "HelpCommand" [override] +discord/ext/commands/help.py:1529: note: Superclass: +discord/ext/commands/help.py:1529: note: def [BotT: Union[Bot, AutoShardedBot]] prepare_help_command(self, Context[BotT], Optional[str] = ..., /) -> Coroutine[Any, Any, None] +discord/ext/commands/help.py:1529: note: Subclass: +discord/ext/commands/help.py:1529: note: def [BotT: Union[Bot, AutoShardedBot]] prepare_help_command(self, Context[BotT], Optional[str], /) -> Coroutine[Any, Any, None] +discord/ext/commands/help.py:1554: error: Incompatible types in assignment (expression has type "List[Command[Any, [VarArg(Any), KwArg(Any)], Any]]", variable has type "Iterator[Command[Any, [VarArg(Any), KwArg(Any)], Any]]") [assignment] +discord/ext/commands/help.py:1554: note: "list" is missing following "Iterator" protocol member: +discord/ext/commands/help.py:1554: note: __next__ +discord/ext/commands/help.py:1555: error: Argument 1 to "add_bot_commands_formatting" of "MinimalHelpCommand" has incompatible type "Iterator[Command[Any, [VarArg(Any), KwArg(Any)], Any]]"; expected "Sequence[Command[Any, [VarArg(Any), KwArg(Any)], Any]]" [arg-type] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "max_messages" while merging [misc] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "proxy" while merging [misc] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "proxy_auth" while merging [misc] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "shard_id" while merging [misc] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "shard_count" while merging [misc] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "application_id" while merging [misc] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "member_cache_flags" while merging [misc] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "chunk_guilds_at_startup" while merging [misc] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "status" while merging [misc] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "activity" while merging [misc] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "allowed_mentions" while merging [misc] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "heartbeat_timeout" while merging [misc] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "guild_ready_timeout" while merging [misc] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "assume_unsync_clock" while merging [misc] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "enable_debug_events" while merging [misc] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "enable_raw_presences" while merging [misc] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "http_trace" while merging [misc] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "max_ratelimit_timeout" while merging [misc] +discord/ext/commands/bot.py:97: error: Overwriting TypedDict field "connector" while merging [misc] +discord/ext/commands/bot.py:290: error: Overlap between argument names and ** TypedDict items: "name", "with_app_command" [misc] +discord/ext/commands/bot.py:312: error: Incompatible return value type (got "Callable[[Union[Callable[[Any, ContextT@decorator, **P], Coroutine[Any, Any, T@decorator]], Callable[[ContextT@decorator, **P], Coroutine[Any, Any, T@decorator]]]], Any]", expected "Callable[[Union[Callable[[Any, ContextT, **P], Coroutine[Any, Any, T]], Callable[[ContextT, **P], Coroutine[Any, Any, T]]]], HybridCommand[Any, P, T]]") [return-value] +discord/ext/commands/bot.py:314: error: Overlap between argument names and ** TypedDict items: "name", "with_app_command" [misc] +discord/ext/commands/bot.py:336: error: Incompatible return value type (got "Callable[[Union[Callable[[Any, ContextT@decorator, **P], Coroutine[Any, Any, T@decorator]], Callable[[ContextT@decorator, **P], Coroutine[Any, Any, T@decorator]]]], Any]", expected "Callable[[Union[Callable[[Any, ContextT, **P], Coroutine[Any, Any, T]], Callable[[ContextT, **P], Coroutine[Any, Any, T]]]], HybridGroup[Any, P, T]]") [return-value] +discord/ext/commands/bot.py:887: error: Return value expected [return-value] +discord/ext/commands/bot.py:1326: error: Incompatible types in assignment (expression has type "Optional[str]", variable has type "Union[List[str], str]") [assignment] +discord/ext/commands/bot.py:1326: error: Argument 1 to "find" has incompatible type "Callable[[str], bool]"; expected "Callable[[Union[List[str], str]], Any]" [arg-type] +discord/ext/commands/bot.py:1384: error: Assignment to variable "exc" outside except: block [misc] +discord/ext/commands/bot.py:1385: error: Trying to read deleted variable "exc" [misc] +discord/ext/tasks/__init__.py:124: error: Attribute "handle" already defined on line 114 [no-redef] +discord/ext/tasks/__init__.py:212: error: Incompatible types in assignment (expression has type "datetime", variable has type "None") [assignment] +discord/ext/tasks/__init__.py:214: error: Incompatible types in assignment (expression has type "datetime", variable has type "None") [assignment] +discord/ext/tasks/__init__.py:222: error: Argument 1 to "_try_sleep_until" of "Loop" has incompatible type "None"; expected "datetime" [arg-type] +discord/ext/tasks/__init__.py:224: error: Incompatible types in assignment (expression has type "None", variable has type "datetime") [assignment] +discord/ext/tasks/__init__.py:225: error: Incompatible types in assignment (expression has type "datetime", variable has type "None") [assignment] +discord/ext/tasks/__init__.py:231: error: Unsupported operand types for >= ("datetime" and "None") [operator] +discord/ext/tasks/__init__.py:242: error: Argument 1 to "_try_sleep_until" of "Loop" has incompatible type "None"; expected "datetime" [arg-type] +discord/ext/tasks/__init__.py:243: error: Incompatible types in assignment (expression has type "datetime", variable has type "None") [assignment] +discord/ext/tasks/__init__.py:266: error: Argument 1 to "_try_sleep_until" of "Loop" has incompatible type "None"; expected "datetime" [arg-type] +discord/ext/tasks/__init__.py:301: error: Incompatible types in assignment (expression has type "T", variable has type "None") [assignment] +discord/ext/tasks/__init__.py:304: error: Cannot assign to a method [method-assign] +discord/ext/tasks/__init__.py:309: error: Missing return statement [return] +discord/ext/tasks/__init__.py:319: error: Missing return statement [return] +discord/ext/tasks/__init__.py:329: error: Missing return statement [return] +discord/ext/tasks/__init__.py:339: error: Missing return statement [return] +discord/ext/tasks/__init__.py:500: error: Incompatible types in assignment (expression has type "Tuple[type, ...]", variable has type "Tuple[Type[OSError], Type[GatewayNotFound], Type[ConnectionClosed], Type[ClientError], Type[TimeoutError]]") [assignment] +discord/ext/tasks/__init__.py:509: error: Incompatible types in assignment (expression has type "Tuple[()]", variable has type "Tuple[Type[OSError], Type[GatewayNotFound], Type[ConnectionClosed], Type[ClientError], Type[TimeoutError]]") [assignment] +discord/ext/tasks/__init__.py:525: error: Incompatible types in assignment (expression has type "Tuple[Union[Type[OSError], Type[GatewayNotFound], Type[ConnectionClosed], Type[ClientError], Type[TimeoutError]], ...]", variable has type "Tuple[Type[OSError], Type[GatewayNotFound], Type[ConnectionClosed], Type[ClientError], Type[TimeoutError]]") [assignment] +discord/ext/tasks/__init__.py:579: error: Incompatible types in assignment (expression has type "FT", variable has type "None") [assignment] +discord/ext/tasks/__init__.py:607: error: Incompatible types in assignment (expression has type "FT", variable has type "None") [assignment] +discord/ext/tasks/__init__.py:774: error: Incompatible types in assignment (expression has type "datetime", variable has type "None") [assignment] +discord/ext/tasks/__init__.py:777: error: Argument 1 to "recalculate" of "SleepHandle" has incompatible type "None"; expected "datetime" [arg-type] +Found 941 errors in 91 files (checked 142 source files) diff --git a/scripts/ty_benchmark/snapshots/discord.py_ty.txt b/scripts/ty_benchmark/snapshots/discord.py_ty.txt new file mode 100644 index 0000000000..f4368ab777 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/discord.py_ty.txt @@ -0,0 +1,306 @@ +discord/abc.py:1057:16: error[invalid-return-type] Return type does not match returned value: expected `Self@_clone_impl`, found `GuildChannel` +discord/abc.py:2091:9: error[invalid-parameter-default] Default value of type `` is not assignable to annotated parameter type `(Client, Connectable, /) -> T@connect` +discord/app_commands/checks.py:190:16: error[invalid-return-type] Return type does not match returned value: expected `Self@copy`, found `Cooldown` +discord/app_commands/commands.py:140:63: error[invalid-argument-type] Argument to class `Choice` is incorrect: Expected `str | int | float`, found `typing.TypeVar` +discord/app_commands/commands.py:141:55: error[invalid-argument-type] Argument to class `Choice` is incorrect: Expected `str | int | float`, found `typing.TypeVar` +discord/app_commands/commands.py:372:37: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__qualname__` +discord/app_commands/commands.py:381:102: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__qualname__` +discord/app_commands/commands.py:393:29: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__discord_app_commands_param_description__` +discord/app_commands/commands.py:402:19: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__discord_app_commands_param_rename__` +discord/app_commands/commands.py:409:19: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__discord_app_commands_param_choices__` +discord/app_commands/commands.py:416:24: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__discord_app_commands_param_autocomplete__` +discord/app_commands/commands.py:432:38: error[unresolved-attribute] Object of type `((Interaction[Any], Member, /) -> @Todo) | ((Interaction[Any], User, /) -> @Todo) | ((Interaction[Any], Message, /) -> @Todo)` has no attribute `__qualname__` +discord/app_commands/commands.py:444:58: error[unresolved-attribute] Object of type `((Interaction[Any], Member, /) -> @Todo) | ((Interaction[Any], User, /) -> @Todo) | ((Interaction[Any], Message, /) -> @Todo)` has no attribute `__qualname__` +discord/app_commands/commands.py:450:57: error[unresolved-attribute] Object of type `((Interaction[Any], Member, /) -> @Todo) | ((Interaction[Any], User, /) -> @Todo) | ((Interaction[Any], Message, /) -> @Todo)` has no attribute `__globals__` +discord/app_commands/commands.py:450:75: error[unresolved-attribute] Object of type `((Interaction[Any], Member, /) -> @Todo) | ((Interaction[Any], User, /) -> @Todo) | ((Interaction[Any], Message, /) -> @Todo)` has no attribute `__globals__` +discord/app_commands/commands.py:456:5: error[unresolved-attribute] Unresolved attribute `__discord_app_commands_base_function__` on type `F@mark_overrideable`. +discord/app_commands/commands.py:807:19: error[missing-argument] No argument provided for required parameter `error` of function `on_error` +discord/app_commands/commands.py:807:35: error[invalid-argument-type] Argument to function `on_error` is incorrect: Expected `Group`, found `Interaction[Client]` +discord/app_commands/commands.py:807:48: error[invalid-argument-type] Argument to function `on_error` is incorrect: Expected `Interaction[Client]`, found `AppCommandError` +discord/app_commands/commands.py:810:23: error[missing-argument] No argument provided for required parameter `error` of function `on_error` +discord/app_commands/commands.py:810:46: error[invalid-argument-type] Argument to function `on_error` is incorrect: Expected `Group`, found `Interaction[Client]` +discord/app_commands/commands.py:810:59: error[invalid-argument-type] Argument to function `on_error` is incorrect: Expected `Interaction[Client]`, found `AppCommandError` +discord/app_commands/commands.py:2129:23: error[unresolved-attribute] Object of type `((Interaction[Any], Member, /) -> @Todo) | ((Interaction[Any], User, /) -> @Todo) | ((Interaction[Any], Message, /) -> @Todo)` has no attribute `__name__` +discord/app_commands/commands.py:2477:17: error[invalid-assignment] Object of type `list[Unknown]` is not assignable to attribute `__discord_app_commands_checks__` on type `(@Todo & ~Top[Command[Unknown, object, Unknown]] & ~ContextMenu & ~) | (((Interaction[Any], Member, /) -> @Todo) & ~Top[Command[Unknown, object, Unknown]] & ~ContextMenu & ~) | (((Interaction[Any], User, /) -> @Todo) & ~Top[Command[Unknown, object, Unknown]] & ~ContextMenu & ~) | (((Interaction[Any], Message, /) -> @Todo) & ~Top[Command[Unknown, object, Unknown]] & ~ContextMenu & ~)` +discord/app_commands/commands.py:2479:13: warning[possibly-missing-attribute] Attribute `__discord_app_commands_checks__` may be missing on object of type `(@Todo & ~Top[Command[Unknown, object, Unknown]] & ~ContextMenu) | (((Interaction[Any], Member, /) -> @Todo) & ~Top[Command[Unknown, object, Unknown]] & ~ContextMenu) | (((Interaction[Any], User, /) -> @Todo) & ~Top[Command[Unknown, object, Unknown]] & ~ContextMenu) | (((Interaction[Any], Message, /) -> @Todo) & ~Top[Command[Unknown, object, Unknown]] & ~ContextMenu)` +discord/app_commands/errors.py:453:95: error[unresolved-attribute] Object of type `object` has no attribute `__qualname__` +discord/app_commands/errors.py:460:88: error[unresolved-attribute] Object of type `((Interaction[Any], Member, /) -> @Todo) | ((Interaction[Any], User, /) -> @Todo) | ((Interaction[Any], Message, /) -> @Todo)` has no attribute `__qualname__` +discord/app_commands/models.py:926:16: error[invalid-return-type] Return type does not match returned value: expected `Member | None`, found `(Guild & ~AlwaysTruthy) | None | Member` +discord/app_commands/transformers.py:110:67: error[invalid-argument-type] Argument to bound method `_checked_translate` is incorrect: Expected `locale_str`, found `str | locale_str` +discord/app_commands/transformers.py:115:67: error[invalid-argument-type] Argument to bound method `_checked_translate` is incorrect: Expected `locale_str`, found `str | locale_str` +discord/app_commands/transformers.py:238:22: error[invalid-type-form] Variable of type `Self@__or__` is not allowed in a type expression +discord/app_commands/transformers.py:584:13: error[invalid-assignment] Not enough values to unpack: Expected 3 +discord/app_commands/tree.py:76:10: error[invalid-argument-type] Argument to class `Interaction` is incorrect: Expected `Client`, found `typing.TypeVar` +discord/app_commands/tree.py:1011:27: error[unresolved-attribute] Object of type `((Interaction[Any], Member, /) -> @Todo) | ((Interaction[Any], User, /) -> @Todo) | ((Interaction[Any], Message, /) -> @Todo)` has no attribute `__name__` +discord/app_commands/tree.py:1133:19: error[missing-argument] No argument provided for required parameter `error` of function `on_error` +discord/app_commands/tree.py:1133:33: error[invalid-argument-type] Argument to function `on_error` is incorrect: Argument type `Interaction[ClientT@CommandTree]` does not satisfy upper bound `CommandTree[ClientT@CommandTree]` of type variable `Self` +discord/app_commands/tree.py:1133:46: error[invalid-argument-type] Argument to function `on_error` is incorrect: Expected `Interaction[ClientT@CommandTree]`, found `AppCommandError` +discord/app_commands/tree.py:1216:9: error[unresolved-attribute] Unresolved attribute `_cs_command` on type `Interaction[ClientT@CommandTree]`. +discord/app_commands/tree.py:1243:19: error[missing-argument] No argument provided for required parameter `error` of function `on_error` +discord/app_commands/tree.py:1243:33: error[invalid-argument-type] Argument to function `on_error` is incorrect: Argument type `Interaction[ClientT@CommandTree]` does not satisfy upper bound `CommandTree[ClientT@CommandTree]` of type variable `Self` +discord/app_commands/tree.py:1243:46: error[invalid-argument-type] Argument to function `on_error` is incorrect: Expected `Interaction[ClientT@CommandTree]`, found `AppCommandError` +discord/app_commands/tree.py:1273:9: error[unresolved-attribute] Unresolved attribute `_cs_command` on type `Interaction[ClientT@CommandTree]`. +discord/app_commands/tree.py:1280:9: error[unresolved-attribute] Unresolved attribute `_cs_namespace` on type `Interaction[ClientT@CommandTree]`. +discord/app_commands/tree.py:1301:19: error[missing-argument] No argument provided for required parameter `error` of function `on_error` +discord/app_commands/tree.py:1301:33: error[invalid-argument-type] Argument to function `on_error` is incorrect: Argument type `Interaction[ClientT@CommandTree]` does not satisfy upper bound `CommandTree[ClientT@CommandTree]` of type variable `Self` +discord/app_commands/tree.py:1301:46: error[invalid-argument-type] Argument to function `on_error` is incorrect: Expected `Interaction[ClientT@CommandTree]`, found `AppCommandError` +discord/asset.py:462:16: error[invalid-return-type] Return type does not match returned value: expected `Self@replace`, found `Asset` +discord/asset.py:462:31: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ConnectionState[Client] | _WebhookState`, found `Any | None | ConnectionState[Client] | _WebhookState` +discord/asset.py:490:16: error[invalid-return-type] Return type does not match returned value: expected `Self@with_size`, found `Asset` +discord/asset.py:490:31: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ConnectionState[Client] | _WebhookState`, found `Any | None | ConnectionState[Client] | _WebhookState` +discord/asset.py:525:16: error[invalid-return-type] Return type does not match returned value: expected `Self@with_format`, found `Asset` +discord/asset.py:525:31: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ConnectionState[Client] | _WebhookState`, found `Any | None | ConnectionState[Client] | _WebhookState` +discord/audit_logs.py:550:56: error[invalid-argument-type] Argument to bound method `from_data` is incorrect: Expected `int`, found `None | Unknown | int` +discord/audit_logs.py:551:55: error[invalid-argument-type] Argument to bound method `from_data` is incorrect: Expected `int`, found `None | Unknown | int` +discord/automod.py:164:49: error[invalid-key] Unknown key "duration_seconds" for TypedDict `_AutoModerationActionMetadataCustomMessage`: Unknown key "duration_seconds" +discord/automod.py:164:49: error[invalid-key] Unknown key "duration_seconds" for TypedDict `_AutoModerationActionMetadataAlert`: Unknown key "duration_seconds" +discord/automod.py:165:52: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `int | float`, found `str | int` +discord/automod.py:167:47: error[invalid-key] Unknown key "channel_id" for TypedDict `_AutoModerationActionMetadataCustomMessage`: Unknown key "channel_id" +discord/automod.py:167:47: error[invalid-key] Unknown key "channel_id" for TypedDict `_AutoModerationActionMetadataTimeout`: Unknown key "channel_id" +discord/automod.py:538:16: error[invalid-return-type] Return type does not match returned value: expected `Self@edit`, found `AutoModRule` +discord/backoff.py:63:42: error[invalid-parameter-default] Default value of type `Literal[False]` is not assignable to annotated parameter type `T@ExponentialBackoff` +discord/channel.py:3234:40: error[missing-argument] No argument provided for required parameter `data` of function `store_user` +discord/channel.py:3234:57: error[invalid-argument-type] Argument to function `store_user` is incorrect: Argument type `PartialUser` does not satisfy upper bound `ConnectionState[ClientT@ConnectionState]` of type variable `Self` +discord/channel.py:3409:40: error[missing-argument] No argument provided for required parameter `data` of function `store_user` +discord/channel.py:3409:63: error[invalid-argument-type] Argument to function `store_user` is incorrect: Argument type `PartialUser` does not satisfy upper bound `ConnectionState[ClientT@ConnectionState]` of type variable `Self` +discord/client.py:723:59: error[invalid-argument-type] Argument to bound method `from_client` is incorrect: Expected `bool`, found `Unknown | int | None` +discord/client.py:723:59: error[invalid-argument-type] Argument to bound method `from_client` is incorrect: Expected `URL | None`, found `Unknown | int | None` +discord/client.py:723:59: error[invalid-argument-type] Argument to bound method `from_client` is incorrect: Expected `str | None`, found `Unknown | int | None` +discord/client.py:723:59: error[invalid-argument-type] Argument to bound method `from_client` is incorrect: Expected `bool`, found `Unknown | int | None` +discord/client.py:723:59: error[invalid-argument-type] Argument to bound method `from_client` is incorrect: Expected `str`, found `Unknown | int | None` +discord/client.py:723:59: error[invalid-argument-type] Argument to bound method `from_client` is incorrect: Expected `bool`, found `Unknown | int | None` +discord/client.py:2058:23: error[unresolved-attribute] Object of type `CoroT@event` has no attribute `__name__` +discord/client.py:2059:71: error[unresolved-attribute] Object of type `CoroT@event` has no attribute `__name__` +discord/components.py:86:9: error[invalid-type-form] Variable of type `Literal["TextDisplay"]` is not allowed in a type expression +discord/components.py:787:29: error[invalid-type-form] Variable of type `Literal["TextDisplay"]` is not allowed in a type expression +discord/components.py:1326:27: error[invalid-argument-type] Invalid argument to key "components" with declared type `list[ActionRow | TextComponent | MediaGalleryComponent | ... omitted 5 union elements]` on TypedDict `ContainerComponent`: value of type `list[ButtonComponent | SelectMenu | TextInput | ... omitted 11 union elements]` +discord/components.py:1458:26: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ActionRow`, found `ButtonComponent | SelectMenu | TextInput | ... omitted 10 union elements` +discord/components.py:1460:23: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ButtonComponent`, found `ButtonComponent | SelectMenu | TextInput | ... omitted 10 union elements` +discord/components.py:1462:26: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `TextInput`, found `ButtonComponent | SelectMenu | TextInput | ... omitted 10 union elements` +discord/components.py:1466:33: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `SectionComponent`, found `ButtonComponent | SelectMenu | TextInput | ... omitted 10 union elements` +discord/components.py:1468:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `TextComponent`, found `ButtonComponent | SelectMenu | TextInput | ... omitted 10 union elements` +discord/components.py:1470:35: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ThumbnailComponent`, found `ButtonComponent | SelectMenu | TextInput | ... omitted 10 union elements` +discord/components.py:1472:38: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `MediaGalleryComponent`, found `ButtonComponent | SelectMenu | TextInput | ... omitted 10 union elements` +discord/components.py:1474:30: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `FileComponent`, found `ButtonComponent | SelectMenu | TextInput | ... omitted 10 union elements` +discord/components.py:1476:35: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `SeparatorComponent`, found `ButtonComponent | SelectMenu | TextInput | ... omitted 10 union elements` +discord/components.py:1478:26: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ContainerComponent`, found `ButtonComponent | SelectMenu | TextInput | ... omitted 10 union elements` +discord/components.py:1480:31: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `LabelComponent`, found `ButtonComponent | SelectMenu | TextInput | ... omitted 10 union elements` +discord/components.py:1482:36: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `FileUploadComponent`, found `ButtonComponent | SelectMenu | TextInput | ... omitted 10 union elements` +discord/emoji.py:131:42: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ConnectionState[Client]`, found `Any | None | ConnectionState[Client]` +discord/emoji.py:186:16: warning[possibly-missing-attribute] Attribute `_get_guild` may be missing on object of type `Any | None | ConnectionState[Client]` +discord/emoji.py:225:30: warning[possibly-missing-attribute] Attribute `application_id` may be missing on object of type `Any | None | ConnectionState[Client]` +discord/emoji.py:229:19: warning[possibly-missing-attribute] Attribute `http` may be missing on object of type `Any | None | ConnectionState[Client]` +discord/emoji.py:232:15: warning[possibly-missing-attribute] Attribute `http` may be missing on object of type `Any | None | ConnectionState[Client]` +discord/emoji.py:282:30: warning[possibly-missing-attribute] Attribute `application_id` may be missing on object of type `Any | None | ConnectionState[Client]` +discord/emoji.py:287:26: warning[possibly-missing-attribute] Attribute `http` may be missing on object of type `Any | None | ConnectionState[Client]` +discord/emoji.py:292:54: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ConnectionState[Client]`, found `Any | None | ConnectionState[Client]` +discord/emoji.py:294:22: warning[possibly-missing-attribute] Attribute `http` may be missing on object of type `Any | None | ConnectionState[Client]` +discord/errors.py:30:10: error[unresolved-import] Cannot resolve imported module `requests` +discord/ext/commands/bot.py:89:33: error[invalid-type-form] Invalid subscript of object of type `GenericAlias` in type expression +discord/ext/commands/bot.py:177:9: error[invalid-parameter-default] Default value of type `_DefaultRepr` is not assignable to annotated parameter type `HelpCommand | None` +discord/ext/commands/bot.py:655:16: error[unresolved-attribute] Object of type `(...) -> @Todo` has no attribute `__name__` +discord/ext/commands/bot.py:681:16: error[unresolved-attribute] Object of type `(...) -> @Todo` has no attribute `__name__` +discord/ext/commands/bot.py:1546:13: error[invalid-parameter-default] Default value of type `_DefaultRepr` is not assignable to annotated parameter type `HelpCommand | None` +discord/ext/commands/cog.py:268:5: error[unresolved-attribute] Unresolved attribute `__cog_special_method__` on type `FuncT@_cog_special_method`. +discord/ext/commands/cog.py:288:28: error[invalid-argument-type] Argument to class `Command` is incorrect: Expected `Cog | None`, found `typing.Self` +discord/ext/commands/cog.py:289:58: error[invalid-argument-type] Argument to class `Command` is incorrect: Expected `Group | Cog`, found `typing.Self` +discord/ext/commands/cog.py:497:24: error[unresolved-attribute] Object of type `FuncT@_get_overridden_method` has no attribute `__func__` +discord/ext/commands/cog.py:527:13: error[invalid-assignment] Object of type `Literal[True]` is not assignable to attribute `__cog_listener__` on type `(FuncT@listener & ~staticmethod[object, object]) | ((...) -> object)` +discord/ext/commands/cog.py:528:33: error[unresolved-attribute] Object of type `(FuncT@listener & ~staticmethod[object, object]) | ((...) -> object)` has no attribute `__name__` +discord/ext/commands/cog.py:530:17: error[unresolved-attribute] Object of type `(FuncT@listener & ~staticmethod[object, object]) | ((...) -> object)` has no attribute `__cog_listener_names__` +discord/ext/commands/cog.py:532:17: error[invalid-assignment] Object of type `list[Unknown | (str & ~AlwaysFalsy)]` is not assignable to attribute `__cog_listener_names__` on type `(FuncT@listener & ~staticmethod[object, object]) | ((...) -> object)` +discord/ext/commands/converter.py:402:39: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `TextChannel | VoiceChannel | StageChannel | ... omitted 4 union elements`, found `(VoiceChannel & ~AlwaysFalsy) | (StageChannel & ~AlwaysFalsy) | (ForumChannel & Messageable & ~AlwaysFalsy) | ... omitted 5 union elements` +discord/ext/commands/converter.py:1211:89: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Parameter | None` +discord/ext/commands/converter.py:1241:13: error[invalid-assignment] Not enough values to unpack: Expected 3 +discord/ext/commands/cooldowns.py:251:16: error[invalid-return-type] Return type does not match returned value: expected `Self@copy`, found `MaxConcurrency` +discord/ext/commands/core.py:141:24: error[invalid-assignment] Object of type `object` is not assignable to `(...) -> Any` +discord/ext/commands/core.py:433:38: error[unresolved-attribute] Object of type `(...) -> @Todo` has no attribute `__name__` +discord/ext/commands/core.py:462:22: error[unresolved-attribute] Object of type `(...) -> @Todo` has no attribute `__commands_checks__` +discord/ext/commands/core.py:470:24: error[unresolved-attribute] Object of type `(...) -> @Todo` has no attribute `__commands_cooldown__` +discord/ext/commands/core.py:483:31: error[unresolved-attribute] Object of type `(...) -> @Todo` has no attribute `__commands_max_concurrency__` +discord/ext/commands/core.py:500:29: error[unresolved-attribute] Object of type `(...) -> @Todo` has no attribute `__before_invoke__` +discord/ext/commands/core.py:508:28: error[unresolved-attribute] Object of type `(...) -> @Todo` has no attribute `__after_invoke__` +discord/ext/commands/core.py:544:24: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__globals__` +discord/ext/commands/core.py:653:16: error[invalid-return-type] Return type does not match returned value: expected `Self@copy`, found `Command[CogT@Command, P@Command, T@Command]` +discord/ext/commands/core.py:660:20: error[invalid-return-type] Return type does not match returned value: expected `Self@_update_copy`, found `Command[CogT@Command, P@Command, T@Command]` +discord/ext/commands/core.py:680:52: warning[possibly-missing-attribute] Attribute `cog_command_error` may be missing on object of type `CogT@Command & ~None` +discord/ext/commands/core.py:919:47: warning[possibly-missing-attribute] Attribute `cog_before_invoke` may be missing on object of type `CogT@Command & ~None` +discord/ext/commands/core.py:921:23: error[invalid-argument-type] Argument to bound method `cog_before_invoke` is incorrect: Expected `Cog`, found `CogT@Command` +discord/ext/commands/core.py:939:47: warning[possibly-missing-attribute] Attribute `cog_after_invoke` may be missing on object of type `CogT@Command & ~None` +discord/ext/commands/core.py:941:23: error[invalid-argument-type] Argument to bound method `cog_after_invoke` is incorrect: Expected `Cog`, found `CogT@Command` +discord/ext/commands/core.py:1312:58: warning[possibly-missing-attribute] Attribute `cog_check` may be missing on object of type `CogT@Command & ~None` +discord/ext/commands/core.py:1552:22: error[no-matching-overload] No overload of function `command` matches arguments +discord/ext/commands/core.py:1609:22: error[no-matching-overload] No overload of function `group` matches arguments +discord/ext/commands/core.py:1942:17: error[invalid-assignment] Object of type `list[Unknown]` is not assignable to attribute `__commands_checks__` on type `((...) -> @Todo) & ~Top[Command[Unknown, object, Unknown]] & ~` +discord/ext/commands/core.py:1944:13: error[unresolved-attribute] Object of type `((...) -> @Todo) & ~Top[Command[Unknown, object, Unknown]]` has no attribute `__commands_checks__` +discord/ext/commands/core.py:1949:9: error[unresolved-attribute] Unresolved attribute `predicate` on type `def decorator(func: Command[Any, @Todo, Any] | ((...) -> @Todo)) -> Command[Any, @Todo, Any] | ((...) -> @Todo)`. +discord/ext/commands/core.py:1956:9: error[unresolved-attribute] Unresolved attribute `predicate` on type `def decorator(func: Command[Any, @Todo, Any] | ((...) -> @Todo)) -> Command[Any, @Todo, Any] | ((...) -> @Todo)`. +discord/ext/commands/core.py:2358:32: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `Never`, found `def predicate[BotT](ctx: Context[BotT@predicate]) -> bool` +discord/ext/commands/core.py:2365:17: error[invalid-assignment] Object of type `list[Unknown]` is not assignable to attribute `__commands_checks__` on type `((...) -> @Todo) & ~Top[Command[Unknown, object, Unknown]] & ~` +discord/ext/commands/core.py:2367:13: error[unresolved-attribute] Object of type `((...) -> @Todo) & ~Top[Command[Unknown, object, Unknown]]` has no attribute `__commands_checks__` +discord/ext/commands/core.py:2368:13: error[invalid-assignment] Object of type `Literal[True]` is not assignable to attribute `__discord_app_commands_guild_only__` on type `((...) -> @Todo) & ~Top[Command[Unknown, object, Unknown]]` +discord/ext/commands/core.py:2373:9: error[unresolved-attribute] Unresolved attribute `predicate` on type `def decorator(func: Command[Unknown, Unknown, Unknown] | ((...) -> @Todo)) -> Command[Unknown, Unknown, Unknown] | ((...) -> @Todo)`. +discord/ext/commands/core.py:2380:9: error[unresolved-attribute] Unresolved attribute `predicate` on type `def decorator(func: Command[Unknown, Unknown, Unknown] | ((...) -> @Todo)) -> Command[Unknown, Unknown, Unknown] | ((...) -> @Todo)`. +discord/ext/commands/core.py:2433:32: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `Never`, found `def predicate[BotT](ctx: Context[BotT@predicate]) -> bool` +discord/ext/commands/core.py:2440:17: error[invalid-assignment] Object of type `list[Unknown]` is not assignable to attribute `__commands_checks__` on type `((...) -> @Todo) & ~Top[Command[Unknown, object, Unknown]] & ~` +discord/ext/commands/core.py:2442:13: error[unresolved-attribute] Object of type `((...) -> @Todo) & ~Top[Command[Unknown, object, Unknown]]` has no attribute `__commands_checks__` +discord/ext/commands/core.py:2443:13: error[invalid-assignment] Object of type `Literal[True]` is not assignable to attribute `__discord_app_commands_is_nsfw__` on type `((...) -> @Todo) & ~Top[Command[Unknown, object, Unknown]]` +discord/ext/commands/core.py:2448:9: error[unresolved-attribute] Unresolved attribute `predicate` on type `def decorator(func: Command[Unknown, Unknown, Unknown] | ((...) -> @Todo)) -> Command[Unknown, Unknown, Unknown] | ((...) -> @Todo)`. +discord/ext/commands/core.py:2455:9: error[unresolved-attribute] Unresolved attribute `predicate` on type `def decorator(func: Command[Unknown, Unknown, Unknown] | ((...) -> @Todo)) -> Command[Unknown, Unknown, Unknown] | ((...) -> @Todo)`. +discord/ext/commands/core.py:2499:13: error[invalid-assignment] Object of type `CooldownMapping[Unknown]` is not assignable to attribute `__commands_cooldown__` on type `((...) -> @Todo) & ~Top[Command[Unknown, object, Unknown]]` +discord/ext/commands/core.py:2547:13: error[invalid-assignment] Object of type `DynamicCooldownMapping[Unknown]` is not assignable to attribute `__commands_cooldown__` on type `((...) -> @Todo) & ~Top[Command[Unknown, object, Unknown]]` +discord/ext/commands/core.py:2582:13: error[invalid-assignment] Object of type `MaxConcurrency` is not assignable to attribute `__commands_max_concurrency__` on type `((...) -> @Todo) & ~Top[Command[Unknown, object, Unknown]]` +discord/ext/commands/core.py:2634:13: error[invalid-assignment] Object of type `@Todo` is not assignable to attribute `__before_invoke__` on type `((...) -> @Todo) & ~Top[Command[Unknown, object, Unknown]]` +discord/ext/commands/core.py:2657:13: error[invalid-assignment] Object of type `@Todo` is not assignable to attribute `__after_invoke__` on type `((...) -> @Todo) & ~Top[Command[Unknown, object, Unknown]]` +discord/ext/commands/help.py:248:5: error[unresolved-attribute] Unresolved attribute `__help_command_not_overridden__` on type `FuncT@_not_overridden`. +discord/ext/commands/help.py:309:9: error[invalid-assignment] Implicit shadowing of function `get_commands` +discord/ext/commands/help.py:310:9: error[invalid-assignment] Implicit shadowing of function `walk_commands` +discord/ext/commands/help.py:407:16: error[invalid-return-type] Return type does not match returned value: expected `Self@copy`, found `HelpCommand` +discord/ext/commands/hybrid.py:176:49: error[unresolved-attribute] Object of type `(str, /) -> Any` has no attribute `__name__` +discord/ext/commands/hybrid.py:232:13: error[unresolved-attribute] Unresolved attribute `__hybrid_command_flag__` on type `(...) -> Any`. +discord/ext/commands/hybrid.py:328:9: error[unresolved-attribute] Unresolved attribute `__signature__` on type `(...) -> @Todo`. +discord/ext/commands/hybrid.py:338:17: error[unresolved-attribute] Object of type `(...) -> @Todo` has no attribute `__signature__` +discord/ext/commands/parameters.py:98:9: error[invalid-parameter-default] Default value of type `` is not assignable to annotated parameter type `str` +discord/ext/commands/parameters.py:99:9: error[invalid-parameter-default] Default value of type `` is not assignable to annotated parameter type `str` +discord/ext/commands/parameters.py:100:9: error[invalid-parameter-default] Default value of type `` is not assignable to annotated parameter type `str` +discord/ext/commands/parameters.py:151:16: error[invalid-return-type] Return type does not match returned value: expected `Self@replace`, found `Parameter` +discord/ext/commands/parameters.py:219:5: error[invalid-parameter-default] Default value of type `` is not assignable to annotated parameter type `str` +discord/ext/commands/parameters.py:220:5: error[invalid-parameter-default] Default value of type `` is not assignable to annotated parameter type `str` +discord/ext/commands/parameters.py:221:5: error[invalid-parameter-default] Default value of type `` is not assignable to annotated parameter type `str` +discord/ext/commands/parameters.py:278:9: error[invalid-parameter-default] Default value of type `` is not assignable to annotated parameter type `str` +discord/ext/commands/parameters.py:279:9: error[invalid-parameter-default] Default value of type `` is not assignable to annotated parameter type `str` +discord/ext/commands/parameters.py:280:9: error[invalid-parameter-default] Default value of type `` is not assignable to annotated parameter type `str` +discord/ext/commands/view.py:151:53: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | None` +discord/ext/commands/view.py:162:57: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | None` +discord/ext/tasks/__init__.py:174:49: error[unresolved-attribute] Object of type `LF@Loop` has no attribute `__qualname__` +discord/ext/tasks/__init__.py:237:29: error[unresolved-attribute] Object of type `LF@Loop` has no attribute `__qualname__` +discord/ext/tasks/__init__.py:256:25: error[unresolved-attribute] Object of type `LF@Loop` has no attribute `__qualname__` +discord/ext/tasks/__init__.py:304:9: error[invalid-assignment] Implicit shadowing of function `_error` +discord/ext/tasks/__init__.py:305:22: error[unresolved-attribute] Object of type `LF@Loop` has no attribute `__name__` +discord/ext/tasks/__init__.py:552:75: error[unresolved-attribute] Object of type `LF@Loop` has no attribute `__name__` +discord/file.py:106:9: error[invalid-assignment] Implicit shadowing of function `close` +discord/file.py:160:9: error[invalid-assignment] Implicit shadowing of function `close` +discord/gateway.py:137:48: error[parameter-already-assigned] Multiple values provided for parameter `name` of bound method `__init__` +discord/gateway.py:466:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `int` +discord/gateway.py:470:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `int` +discord/gateway.py:478:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `int` +discord/gateway.py:506:26: error[invalid-argument-type] Argument to bound method `log_receive` is incorrect: Expected `dict[str, Any]`, found `Any | str` +discord/gateway.py:735:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `int` +discord/gateway.py:738:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `int` +discord/gateway.py:741:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `int` +discord/guild.py:1961:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ForumChannel | MediaChannel`, found `TextChannel | NewsChannel | VoiceChannel | ... omitted 5 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `str`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `Iterable[str]`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `int | float`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `int | float | None`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `bool`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `bool`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `int | float | None`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `BasicAuth | None`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `str | None`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `None | str | Mapping[str, Sequence[str | int | float] | int | float] | Sequence[tuple[str, Sequence[str | int | float] | int | float]]`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `Mapping[str, str] | Mapping[istr, str] | Iterable[tuple[str, str]] | None`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `str | URL | None`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `BasicAuth | None`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `SSLContext | bool | Fingerprint`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `bool | None`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `bytes | None`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `SSLContext | None`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `Mapping[str, str] | Mapping[istr, str] | Iterable[tuple[str, str]] | None`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `int`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:566:53: error[invalid-argument-type] Argument to bound method `ws_connect` is incorrect: Expected `int`, found `Unknown | BasicAuth | None | ... omitted 4 union elements` +discord/http.py:640:20: error[invalid-context-manager] Object of type `Ratelimit` cannot be used with `async with` because it does not correctly implement `__aexit__` +discord/interactions.py:229:58: error[invalid-argument-type] Argument to bound method `_from_value` is incorrect: Expected `Sequence[Literal[0, 1, 2]]`, found `list[Unknown | int]` +discord/interactions.py:250:13: error[invalid-assignment] Object of type `(Guild & ~AlwaysTruthy) | VoiceChannel | StageChannel | ... omitted 5 union elements` is not assignable to attribute `channel` of type `VoiceChannel | StageChannel | TextChannel | ... omitted 6 union elements` +discord/interactions.py:256:92: error[invalid-argument-type] Argument to bound method `format_map` is incorrect: Expected `_FormatMapMapping`, found `TextChannel | NewsChannel | VoiceChannel | ... omitted 7 union elements` +discord/interactions.py:307:16: error[invalid-return-type] Return type does not match returned value: expected `Guild | None`, found `(ConnectionState[ClientT@Interaction] & ~AlwaysTruthy & ~AlwaysFalsy) | (Guild & ~AlwaysFalsy) | Any | None` +discord/interactions.py:744:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ConnectionState[Client]`, found `_InteractionMessageState` +discord/interactions.py:1401:16: error[missing-argument] No argument provided for required parameter `data` of function `store_user` +discord/member.py:319:28: error[missing-argument] No argument provided for required parameter `data` of function `store_user` +discord/member.py:319:45: error[invalid-argument-type] Argument to function `store_user` is incorrect: Argument type `User` does not satisfy upper bound `ConnectionState[ClientT@ConnectionState]` of type variable `Self` +discord/member.py:980:91: warning[deprecated] The function `utcnow` is deprecated: Use timezone-aware objects to represent datetimes in UTC; e.g. by calling .now(datetime.timezone.utc) +discord/member.py:1041:61: warning[deprecated] The function `utcnow` is deprecated: Use timezone-aware objects to represent datetimes in UTC; e.g. by calling .now(datetime.timezone.utc) +discord/mentions.py:90:9: error[invalid-parameter-default] Default value of type `_FakeBool` is not assignable to annotated parameter type `bool` +discord/mentions.py:91:9: error[invalid-parameter-default] Default value of type `_FakeBool` is not assignable to annotated parameter type `bool | Sequence[Snowflake]` +discord/mentions.py:92:9: error[invalid-parameter-default] Default value of type `_FakeBool` is not assignable to annotated parameter type `bool | Sequence[Snowflake]` +discord/mentions.py:93:9: error[invalid-parameter-default] Default value of type `_FakeBool` is not assignable to annotated parameter type `bool` +discord/message.py:713:16: error[invalid-return-type] Return type does not match returned value: expected `Message | None`, found `(ConnectionState[Client] & ~AlwaysTruthy) | None | Message` +discord/message.py:2404:30: error[invalid-key] TypedDict `Message` can only be subscripted with a string literal key, got key of type `str` +discord/message.py:2455:23: error[missing-argument] No argument provided for required parameter `data` of function `store_user` +discord/message.py:2455:46: error[invalid-argument-type] Argument to function `store_user` is incorrect: Argument type `User` does not satisfy upper bound `ConnectionState[ClientT@ConnectionState]` of type variable `Self` +discord/message.py:2481:30: error[missing-argument] No argument provided for required parameter `data` of function `store_user` +discord/message.py:2481:47: error[invalid-argument-type] Argument to function `store_user` is incorrect: Argument type `UserWithMember` does not satisfy upper bound `ConnectionState[ClientT@ConnectionState]` of type variable `Self` +discord/opus.py:141:48: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__name__` +discord/opus.py:149:48: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__name__` +discord/poll.py:592:16: error[invalid-return-type] Return type does not match returned value: expected `Self@copy`, found `Poll` +discord/presences.py:60:16: error[invalid-assignment] Object of type `(ClientStatus & ~AlwaysFalsy) | dict[Unknown, Unknown]` is not assignable to `ClientStatus` +discord/role.py:450:45: error[invalid-assignment] Object of type `list[dict[Unknown | str, Unknown] | Unknown]` is not assignable to `list[RolePositionUpdate]` +discord/role.py:700:45: error[invalid-assignment] Object of type `list[dict[Unknown | str, Unknown | int] | Unknown]` is not assignable to `list[RolePositionUpdate]` +discord/scheduled_event.py:150:40: error[missing-argument] No argument provided for required parameter `data` of function `store_user` +discord/scheduled_event.py:150:63: error[invalid-argument-type] Argument to function `store_user` is incorrect: Argument type `User & ~AlwaysFalsy` does not satisfy upper bound `ConnectionState[ClientT@ConnectionState]` of type variable `Self` +discord/scheduled_event.py:663:22: error[missing-argument] No argument provided for required parameter `data` of function `store_user` +discord/soundboard.py:232:20: warning[possibly-missing-attribute] Attribute `get_user` may be missing on object of type `Any | None | ConnectionState[Client]` +discord/soundboard.py:233:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ConnectionState[Client]`, found `Any | None | ConnectionState[Client]` +discord/soundboard.py:301:22: warning[possibly-missing-attribute] Attribute `http` may be missing on object of type `Any | None | ConnectionState[Client]` +discord/soundboard.py:302:50: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ConnectionState[Client]`, found `Any | None | ConnectionState[Client]` +discord/soundboard.py:325:15: warning[possibly-missing-attribute] Attribute `http` may be missing on object of type `Any | None | ConnectionState[Client]` +discord/state.py:263:13: error[invalid-assignment] Implicit shadowing of function `store_user` +discord/state.py:551:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[VoiceChannel | StageChannel | ForumChannel | ... omitted 5 union elements, Guild | None]`, found `tuple[(Unknown & ~AlwaysFalsy) | (Guild & ~AlwaysTruthy & ~AlwaysFalsy) | (VoiceChannel & ~AlwaysFalsy) | ... omitted 6 union elements, Guild | None]` +discord/state.py:822:31: error[invalid-key] Unknown key "data" for TypedDict `PingInteraction`: Unknown key "data" +discord/state.py:823:36: error[invalid-key] Unknown key "custom_id" for TypedDict `ChatInputApplicationCommandInteractionData`: Unknown key "custom_id" +discord/state.py:823:36: error[invalid-key] Unknown key "custom_id" for TypedDict `UserApplicationCommandInteractionData`: Unknown key "custom_id" +discord/state.py:823:36: error[invalid-key] Unknown key "custom_id" for TypedDict `MessageApplicationCommandInteractionData`: Unknown key "custom_id" +discord/state.py:824:41: error[invalid-key] Unknown key "component_type" for TypedDict `ChatInputApplicationCommandInteractionData`: Unknown key "component_type" +discord/state.py:824:41: error[invalid-key] Unknown key "component_type" for TypedDict `UserApplicationCommandInteractionData`: Unknown key "component_type" +discord/state.py:824:41: error[invalid-key] Unknown key "component_type" for TypedDict `MessageApplicationCommandInteractionData`: Unknown key "component_type" +discord/state.py:824:41: error[invalid-key] Unknown key "component_type" for TypedDict `ModalSubmitInteractionData`: Unknown key "component_type" +discord/state.py:828:31: error[invalid-key] Unknown key "data" for TypedDict `PingInteraction`: Unknown key "data" +discord/state.py:829:36: error[invalid-key] Unknown key "custom_id" for TypedDict `ChatInputApplicationCommandInteractionData`: Unknown key "custom_id" +discord/state.py:829:36: error[invalid-key] Unknown key "custom_id" for TypedDict `UserApplicationCommandInteractionData`: Unknown key "custom_id" +discord/state.py:829:36: error[invalid-key] Unknown key "custom_id" for TypedDict `MessageApplicationCommandInteractionData`: Unknown key "custom_id" +discord/state.py:830:37: error[invalid-key] Unknown key "components" for TypedDict `ChatInputApplicationCommandInteractionData`: Unknown key "components" +discord/state.py:830:37: error[invalid-key] Unknown key "components" for TypedDict `UserApplicationCommandInteractionData`: Unknown key "components" +discord/state.py:830:37: error[invalid-key] Unknown key "components" for TypedDict `MessageApplicationCommandInteractionData`: Unknown key "components" +discord/state.py:830:37: error[invalid-key] Unknown key "components" for TypedDict `ButtonMessageComponentInteractionData`: Unknown key "components" +discord/state.py:830:37: error[invalid-key] Unknown key "components" for TypedDict `SelectMessageComponentInteractionData`: Unknown key "components" +discord/state.py:832:81: error[invalid-argument-type] Argument to bound method `dispatch_modal` is incorrect: Expected `ResolvedData`, found `Unknown | ResolvedData | dict[Unknown, Unknown]` +discord/state.py:1121:16: error[missing-argument] No argument provided for required parameter `data` of function `store_user` +discord/state.py:1121:32: error[invalid-argument-type] Argument to function `store_user` is incorrect: Argument type `User` does not satisfy upper bound `ConnectionState[ClientT@ConnectionState]` of type variable `Self` +discord/state.py:1388:20: error[missing-argument] No argument provided for required parameter `data` of function `store_user` +discord/state.py:1388:36: error[invalid-argument-type] Argument to function `store_user` is incorrect: Argument type `User` does not satisfy upper bound `ConnectionState[ClientT@ConnectionState]` of type variable `Self` +discord/sticker.py:230:38: warning[possibly-missing-attribute] Attribute `http` may be missing on object of type `Any | None | ConnectionState[Client]` +discord/sticker.py:232:20: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ConnectionState[Client]`, found `Any | None | ConnectionState[Client]` +discord/sticker.py:369:22: warning[possibly-missing-attribute] Attribute `http` may be missing on object of type `Any | None | ConnectionState[Client]` +discord/sticker.py:370:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ConnectionState[Client]`, found `Any | None | ConnectionState[Client]` +discord/sticker.py:420:37: error[missing-argument] No argument provided for required parameter `data` of function `store_user` +discord/sticker.py:420:37: warning[possibly-missing-attribute] Attribute `store_user` may be missing on object of type `Any | None | ConnectionState[Client]` +discord/sticker.py:420:60: error[invalid-argument-type] Argument to function `store_user` is incorrect: Argument type `User & ~AlwaysFalsy` does not satisfy upper bound `ConnectionState[ClientT@ConnectionState]` of type variable `Self` +discord/sticker.py:434:16: warning[possibly-missing-attribute] Attribute `_get_guild` may be missing on object of type `Any | None | ConnectionState[Client]` +discord/sticker.py:489:43: warning[possibly-missing-attribute] Attribute `http` may be missing on object of type `Any | None | ConnectionState[Client]` +discord/sticker.py:490:29: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ConnectionState[Client]`, found `Any | None | ConnectionState[Client]` +discord/sticker.py:511:15: warning[possibly-missing-attribute] Attribute `http` may be missing on object of type `Any | None | ConnectionState[Client]` +discord/ui/modal.py:109:50: error[invalid-argument-type] Argument to class `Item` is incorrect: Expected `BaseView`, found `typing.Self` +discord/ui/modal.py:273:16: error[invalid-return-type] Return type does not match returned value: expected `Self@add_item`, found `Modal` +discord/ui/section.py:192:31: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `Item[V@Section]`, found `(str & Item[object]) | Item[Any]` +discord/ui/view.py:324:16: error[invalid-return-type] Return type does not match returned value: expected `list[Item[Self@children]]`, found `list[Item[Self@__init__]]` +discord/utils.py:328:5: error[invalid-parameter-default] Default value of type `_MissingSentinel` is not assignable to annotated parameter type `Permissions` +discord/utils.py:329:5: error[invalid-parameter-default] Default value of type `_MissingSentinel` is not assignable to annotated parameter type `Snowflake` +discord/utils.py:330:5: error[invalid-parameter-default] Default value of type `_MissingSentinel` is not assignable to annotated parameter type `str` +discord/utils.py:331:5: error[invalid-parameter-default] Default value of type `_MissingSentinel` is not assignable to annotated parameter type `Iterable[str] | None` +discord/utils.py:333:5: error[invalid-parameter-default] Default value of type `_MissingSentinel` is not assignable to annotated parameter type `str` +discord/utils.py:724:26: error[invalid-await] `T@async_all | Awaitable[T@async_all]` is not awaitable +discord/utils.py:1224:8: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__qualname__` +discord/utils.py:1224:29: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +discord/utils.py:1226:25: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__qualname__` +discord/utils.py:1348:5: error[invalid-parameter-default] Default value of type `_MissingSentinel` is not assignable to annotated parameter type `Handler` +discord/utils.py:1349:5: error[invalid-parameter-default] Default value of type `_MissingSentinel` is not assignable to annotated parameter type `Formatter` +discord/utils.py:1350:5: error[invalid-parameter-default] Default value of type `_MissingSentinel` is not assignable to annotated parameter type `int` +discord/webhook/async_.py:751:20: error[missing-argument] No argument provided for required parameter `data` of function `store_user` +discord/webhook/async_.py:751:44: error[invalid-argument-type] Argument to function `store_user` is incorrect: Argument type `User | PartialUser` does not satisfy upper bound `ConnectionState[ClientT@ConnectionState]` of type variable `Self` +discord/webhook/async_.py:1042:16: error[invalid-return-type] Return type does not match returned value: expected `Guild | None`, found `(ConnectionState[Client] & ~AlwaysTruthy) | (_WebhookState & ~AlwaysTruthy) | Guild | None` +discord/webhook/sync.py:81:14: error[unresolved-import] Cannot resolve imported module `requests` +discord/webhook/sync.py:652:16: error[unresolved-import] Cannot resolve imported module `requests` +discord/webhook/sync.py:695:16: error[unresolved-import] Cannot resolve imported module `requests` +discord/welcome_screen.py:104:33: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `(Unknown & _EmojiTag) | PartialEmoji | Emoji | (str & _EmojiTag)` +discord/welcome_screen.py:217:16: error[invalid-return-type] Return type does not match returned value: expected `Self@edit`, found `WelcomeScreen` +Found 305 diagnostics diff --git a/scripts/ty_benchmark/snapshots/homeassistant_Pyrefly.txt b/scripts/ty_benchmark/snapshots/homeassistant_Pyrefly.txt new file mode 100644 index 0000000000..2024915c8b --- /dev/null +++ b/scripts/ty_benchmark/snapshots/homeassistant_Pyrefly.txt @@ -0,0 +1,38232 @@ +ERROR homeassistant/auth/__init__.py:145:61-79: Type `_HandlerT` is not iterable [not-iterable] +ERROR homeassistant/auth/__init__.py:566:13-37: Argument `HassJob[[_: datetime | None = None], None]` is not assignable to parameter `action` with type `((datetime) -> Coroutine[Any, Any, None] | None) | HassJob[[datetime], Coroutine[Any, Any, None] | None]` in function `homeassistant.helpers.event.async_track_point_in_utc_time` [bad-argument-type] +ERROR homeassistant/auth/auth_store.py:487:28-38: `token_type` may be uninitialized [unbound-name] +ERROR homeassistant/auth/jwt_wrapper.py:36:9-14: Class member `_PyJWSWithLoadCache._load` overrides parent class `PyJWS` in an inconsistent manner [bad-override] +ERROR homeassistant/auth/mfa_modules/notify.py:127:41-45: `data` may be uninitialized [unbound-name] +ERROR homeassistant/auth/mfa_modules/notify.py:238:13-50: Argument `() -> str` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/auth/mfa_modules/notify.py:298:62-78: Argument `() -> str` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/auth/mfa_modules/notify.py:299:61-77: Argument `() -> int` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/auth/mfa_modules/totp.py:105:27-31: `data` may be uninitialized [unbound-name] +ERROR homeassistant/auth/mfa_modules/totp.py:207:62-209:14: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[str, datetime | None, int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/auth/permissions/__init__.py:47:16-27: `entity_func` may be uninitialized [unbound-name] +ERROR homeassistant/auth/permissions/merge.py:63:27-55: Cannot set item in `dict[str, Mapping[str, Mapping[str, bool] | bool | None] | bool | None]` [unsupported-operation] +ERROR homeassistant/auth/permissions/merge.py:63:43-54: Argument `list[Mapping[str, Mapping[str, bool] | bool | None] | bool | None]` is not assignable to parameter `sources` with type `list[Mapping[str, Mapping[str, Mapping[str, bool] | bool | None] | bool | None] | Mapping[str, Mapping[str, bool] | bool | None] | bool | None]` in function `_merge_policies` [bad-argument-type] +ERROR homeassistant/auth/providers/__init__.py:191:5-14: `processed` may be uninitialized [unbound-name] +ERROR homeassistant/auth/providers/homeassistant.py:110:56-60: `data` may be uninitialized [unbound-name] +ERROR homeassistant/auth/providers/homeassistant.py:111:22-26: `data` may be uninitialized [unbound-name] +ERROR homeassistant/bootstrap.py:380:8-21: `recovery_mode` may be uninitialized [unbound-name] +ERROR homeassistant/bootstrap.py:443:25-459:6: No matching overload found for function `asyncio.tasks.gather` called with arguments: (Task[None], Task[None], Task[None], Task[None], Task[None], Task[None], Task[None], Task[None], Future[None], Task[None], Task[None], Task[None], Task[dict[str, Any]], Task[None], Task[None]) [no-matching-overload] +ERROR homeassistant/bootstrap.py:452:37-74: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/bootstrap.py:518:9-519:60: String literal used as condition. It's equivalent to `False` [redundant-condition] +ERROR homeassistant/bootstrap.py:1018:42-59: Argument `BoundMethod[Self@_WatchPendingSetups, (self: Self@_WatchPendingSetups) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_later` [bad-argument-type] +ERROR homeassistant/components/abode/__init__.py:83:50-81: Keyword argument `user_data` with type `Path` is not assignable to parameter `**kwargs` with type `Mapping[str, Path]` in function `jaraco.abode.config.PlatformDirs.override` [bad-argument-type] +ERROR homeassistant/components/abode/alarm_control_panel.py:38:5-29: Class member `AbodeAlarm._attr_supported_features` overrides parent class `AbodeDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/abode/alarm_control_panel.py:42:5-12: Class member `AbodeAlarm._device` overrides parent class `AbodeDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/abode/binary_sensor.py:49:5-12: Class member `AbodeBinarySensor._device` overrides parent class `AbodeDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/abode/camera.py:37:35-57: No attribute `CAPTURE_IMAGE` in module `jaraco.abode.helpers.timeline` [missing-attribute] +ERROR homeassistant/components/abode/camera.py:45:5-12: Class member `AbodeCamera._device` overrides parent class `AbodeDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/abode/cover.py:34:5-12: Class member `AbodeCover._device` overrides parent class `AbodeDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/abode/light.py:45:5-12: Class member `AbodeLight._device` overrides parent class `AbodeDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/abode/lock.py:34:5-12: Class member `AbodeLock._device` overrides parent class `AbodeDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/abode/sensor.py:41:9-12: Unexpected keyword argument `key` in function `AbodeSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/abode/sensor.py:49:9-12: Unexpected keyword argument `key` in function `AbodeSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/abode/sensor.py:55:9-12: Unexpected keyword argument `key` in function `AbodeSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/abode/sensor.py:82:5-23: Class member `AbodeSensor.entity_description` overrides parent class `AbodeDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/abode/sensor.py:82:5-23: Class member `AbodeSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/abode/sensor.py:83:5-12: Class member `AbodeSensor._device` overrides parent class `AbodeDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/abode/switch.py:47:5-12: Class member `AbodeSwitch._device` overrides parent class `AbodeDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/acaia/binary_sensor.py:32:9-12: Unexpected keyword argument `key` in function `AcaiaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/acaia/binary_sensor.py:33:9-24: Unexpected keyword argument `translation_key` in function `AcaiaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/acaia/binary_sensor.py:56:5-23: Class member `AcaiaBinarySensor.entity_description` overrides parent class `AcaiaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/acaia/binary_sensor.py:56:5-23: Class member `AcaiaBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/acaia/button.py:28:9-12: Unexpected keyword argument `key` in function `AcaiaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/acaia/button.py:29:9-24: Unexpected keyword argument `translation_key` in function `AcaiaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/acaia/button.py:33:9-12: Unexpected keyword argument `key` in function `AcaiaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/acaia/button.py:34:9-24: Unexpected keyword argument `translation_key` in function `AcaiaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/acaia/button.py:38:9-12: Unexpected keyword argument `key` in function `AcaiaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/acaia/button.py:39:9-24: Unexpected keyword argument `translation_key` in function `AcaiaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/acaia/button.py:59:5-23: Class member `AcaiaButton.entity_description` overrides parent class `AcaiaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/acaia/button.py:59:5-23: Class member `AcaiaButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/acaia/config_flow.py:64:50-68: `is_new_style_scale` may be uninitialized [unbound-name] +ERROR homeassistant/components/acaia/coordinator.py:31:5-17: Class member `AcaiaCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/acaia/sensor.py:44:9-12: Unexpected keyword argument `key` in function `AcaiaDynamicUnitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/acaia/sensor.py:56:9-12: Unexpected keyword argument `key` in function `AcaiaDynamicUnitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/acaia/sensor.py:66:9-12: Unexpected keyword argument `key` in function `AcaiaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/acaia/sensor.py:98:5-23: Class member `AcaiaSensor.entity_description` overrides parent class `AcaiaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/acaia/sensor.py:98:5-23: Class member `AcaiaSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/acaia/sensor.py:119:5-23: Class member `AcaiaRestoreSensor.entity_description` overrides parent class `AcaiaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/acaia/sensor.py:119:5-23: Class member `AcaiaRestoreSensor.entity_description` overrides parent class `RestoreSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/accuweather/coordinator.py:56:5-17: Class member `AccuWeatherObservationDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/accuweather/coordinator.py:110:5-17: Class member `AccuWeatherForecastDataUpdateCoordinator.config_entry` overrides parent class `TimestampDataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/accuweather/sensor.py:63:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:70:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:71:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:77:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:78:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:81:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:84:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:85:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:91:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:94:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:100:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:105:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:110:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:111:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:117:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:120:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:122:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:127:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:130:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:134:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:137:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:141:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:144:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:146:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:149:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:152:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:154:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:157:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:160:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:162:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:165:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:168:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:170:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:173:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:176:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:179:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:182:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:185:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:188:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:190:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:195:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:198:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:204:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:207:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:209:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:213:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:216:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:218:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:222:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:225:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:230:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:233:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:238:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:244:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:246:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:250:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:253:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:259:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:262:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:263:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:267:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:270:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:272:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:276:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:279:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:284:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:287:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:289:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:293:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:296:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:298:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:302:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:305:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:311:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:314:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:316:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:321:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:324:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:328:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:331:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:333:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:337:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:340:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:342:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:346:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:349:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:351:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:355:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:358:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:360:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:364:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:367:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:369:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:373:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:376:9-12: Unexpected keyword argument `key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:378:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:382:9-24: Unexpected keyword argument `translation_key` in function `AccuWeatherSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/accuweather/sensor.py:424:5-23: Class member `AccuWeatherSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/accuweather/sensor.py:424:5-23: Class member `AccuWeatherSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/accuweather/sensor.py:476:5-23: Class member `AccuWeatherForecastSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/accuweather/sensor.py:476:5-23: Class member `AccuWeatherForecastSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/acmeda/config_flow.py:58:32-61: `dict[None, Hub]` is not assignable to attribute `discovered_hubs` with type `dict[str, Hub] | None` [bad-assignment] +ERROR homeassistant/components/acmeda/config_flow.py:74:46-52: Argument `None` is not assignable to parameter `title` with type `str` in function `homeassistant.config_entries.ConfigFlow.async_create_entry` [bad-argument-type] +ERROR homeassistant/components/acmeda/cover.py:60:24-56: `-` is not supported between `Literal[100]` and `None` [unsupported-operation] +ERROR homeassistant/components/acmeda/cover.py:71:24-56: `-` is not supported between `Literal[100]` and `None` [unsupported-operation] +ERROR homeassistant/components/acmeda/hub.py:64:20-24: `None` is not assignable to attribute `api` with type `Hub` [bad-assignment] +ERROR homeassistant/components/acmeda/sensor.py:45:5-23: Class member `AcmedaBattery._attr_device_class` overrides parent class `AcmedaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/actron_air/__init__.py:30:19-45: `list[dict[str, Any]]` is not assignable to variable `systems` with type `list[ActronAirNeoACSystem]` [bad-assignment] +ERROR homeassistant/components/actron_air/__init__.py:42:64-80: Cannot index into `ActronAirNeoACSystem` [bad-index] +ERROR homeassistant/components/actron_air/__init__.py:44:29-45: Cannot index into `ActronAirNeoACSystem` [bad-index] +ERROR homeassistant/components/actron_air/climate.py:59:16-32: Object of class `ActronAirNeoACSystem` has no attribute `ac_system` [missing-attribute] +ERROR homeassistant/components/actron_air/climate.py:64:25-48: Object of class `ActronAirNeoACSystem` has no attribute `remote_zone_info` [missing-attribute] +ERROR homeassistant/components/actron_air/climate.py:76:5-29: Class member `BaseClimateEntity._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/actron_air/climate.py:117:18-52: Object of class `NoneType` has no attribute `system_name` [missing-attribute] +ERROR homeassistant/components/actron_air/climate.py:119:22-60: Object of class `NoneType` has no attribute `master_wc_model` [missing-attribute] +ERROR homeassistant/components/actron_air/climate.py:120:24-73: Object of class `NoneType` has no attribute `master_wc_firmware_version` [missing-attribute] +ERROR homeassistant/components/actron_air/climate.py:137:16-37: Returned type `ActronAirNeoACSystem` is not assignable to declared return type `ActronAirNeoStatus` [bad-return] +ERROR homeassistant/components/actron_air/climate.py:142:16-55: Object of class `NoneType` has no attribute `is_on` [missing-attribute] +ERROR homeassistant/components/actron_air/climate.py:145:16-54: Object of class `NoneType` has no attribute `mode` [missing-attribute] +ERROR homeassistant/components/actron_air/climate.py:151:20-62: Object of class `NoneType` has no attribute `fan_mode` [missing-attribute] +ERROR homeassistant/components/actron_air/climate.py:157:16-57: Object of class `NoneType` has no attribute `live_humidity_pc` [missing-attribute] +ERROR homeassistant/components/actron_air/climate.py:162:16-52: Object of class `NoneType` has no attribute `live_temp_c` [missing-attribute] +ERROR homeassistant/components/actron_air/climate.py:167:16-77: Object of class `NoneType` has no attribute `temperature_setpoint_cool_c` [missing-attribute] +ERROR homeassistant/components/actron_air/climate.py:172:15-61: Object of class `NoneType` has no attribute `set_fan_mode` [missing-attribute] +ERROR homeassistant/components/actron_air/climate.py:177:15-53: Object of class `NoneType` has no attribute `set_system_mode` [missing-attribute] +ERROR homeassistant/components/actron_air/climate.py:182:15-64: Object of class `NoneType` has no attribute `set_temperature` [missing-attribute] +ERROR homeassistant/components/actron_air/climate.py:202:30-42: `int | None` is not assignable to attribute `_zone_id` with type `int` [bad-assignment] +ERROR homeassistant/components/actron_air/climate.py:203:14-29: Class member `ActronZoneClimate._attr_unique_id` overrides parent class `BaseClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/actron_air/climate.py:204:14-31: Class member `ActronZoneClimate._attr_device_info` overrides parent class `BaseClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/actron_air/climate.py:227:16-28: Object of class `ActronAirNeoACSystem` has no attribute `zones` [missing-attribute] +ERROR homeassistant/components/actron_air/coordinator.py:55:30-46: Cannot index into `ActronAirNeoACSystem` [bad-index] +ERROR homeassistant/components/actron_air/coordinator.py:60:15-33: Class member `ActronAirSystemCoordinator._async_update_data` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/actron_air/coordinator.py:65:16-27: Returned type `ActronAirNeoStatus | None` is not assignable to declared return type `ActronAirNeoStatus` [bad-return] +ERROR homeassistant/components/adax/climate.py:56:5-29: Class member `AdaxDevice._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/adax/climate.py:148:5-29: Class member `LocalAdaxDevice._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/adax/sensor.py:34:9-12: Unexpected keyword argument `key` in function `AdaxSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adax/sensor.py:42:9-12: Unexpected keyword argument `key` in function `AdaxSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adax/sensor.py:75:5-23: Class member `AdaxSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/adax/sensor.py:75:5-23: Class member `AdaxSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/adguard/sensor.py:34:9-12: Unexpected keyword argument `key` in function `AdGuardHomeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `AdGuardHomeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/sensor.py:40:9-12: Unexpected keyword argument `key` in function `AdGuardHomeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `AdGuardHomeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/sensor.py:46:9-12: Unexpected keyword argument `key` in function `AdGuardHomeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `AdGuardHomeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/sensor.py:52:9-12: Unexpected keyword argument `key` in function `AdGuardHomeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `AdGuardHomeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/sensor.py:58:9-12: Unexpected keyword argument `key` in function `AdGuardHomeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `AdGuardHomeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/sensor.py:64:9-12: Unexpected keyword argument `key` in function `AdGuardHomeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `AdGuardHomeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/sensor.py:70:9-12: Unexpected keyword argument `key` in function `AdGuardHomeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `AdGuardHomeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/sensor.py:76:9-12: Unexpected keyword argument `key` in function `AdGuardHomeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `AdGuardHomeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/sensor.py:80:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AdGuardHomeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/sensor.py:102:5-23: Class member `AdGuardHomeSensor.entity_description` overrides parent class `AdGuardHomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/adguard/sensor.py:102:5-23: Class member `AdGuardHomeSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/adguard/switch.py:35:9-12: Unexpected keyword argument `key` in function `AdGuardHomeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/switch.py:36:9-24: Unexpected keyword argument `translation_key` in function `AdGuardHomeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/switch.py:42:9-12: Unexpected keyword argument `key` in function `AdGuardHomeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/switch.py:43:9-24: Unexpected keyword argument `translation_key` in function `AdGuardHomeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/switch.py:49:9-12: Unexpected keyword argument `key` in function `AdGuardHomeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/switch.py:50:9-24: Unexpected keyword argument `translation_key` in function `AdGuardHomeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/switch.py:56:9-12: Unexpected keyword argument `key` in function `AdGuardHomeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/switch.py:57:9-24: Unexpected keyword argument `translation_key` in function `AdGuardHomeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/switch.py:63:9-12: Unexpected keyword argument `key` in function `AdGuardHomeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/switch.py:64:9-24: Unexpected keyword argument `translation_key` in function `AdGuardHomeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/switch.py:70:9-12: Unexpected keyword argument `key` in function `AdGuardHomeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/switch.py:71:9-24: Unexpected keyword argument `translation_key` in function `AdGuardHomeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/adguard/switch.py:96:5-23: Class member `AdGuardHomeSwitch.entity_description` overrides parent class `AdGuardHomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/adguard/switch.py:96:5-23: Class member `AdGuardHomeSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/adguard/update.py:40:5-29: Class member `AdGuardHomeUpdate._attr_supported_features` overrides parent class `AdGuardHomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ads/__init__.py:5:8-13: Could not find import of `pyads` [missing-import] +ERROR homeassistant/components/ads/binary_sensor.py:5:8-13: Could not find import of `pyads` [missing-import] +ERROR homeassistant/components/ads/binary_sensor.py:63:14-32: Class member `AdsBinarySensor._attr_device_class` overrides parent class `AdsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ads/cover.py:7:8-13: Could not find import of `pyads` [missing-import] +ERROR homeassistant/components/ads/cover.py:118:14-32: Class member `AdsCover._attr_device_class` overrides parent class `AdsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ads/cover.py:119:14-38: Class member `AdsCover._attr_supported_features` overrides parent class `AdsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ads/entity.py:54:13-28: Object of class `NoneType` has no attribute `set` [missing-attribute] +ERROR homeassistant/components/ads/hub.py:9:8-13: Could not find import of `pyads` [missing-import] +ERROR homeassistant/components/ads/light.py:7:8-13: Could not find import of `pyads` [missing-import] +ERROR homeassistant/components/ads/select.py:5:8-13: Could not find import of `pyads` [missing-import] +ERROR homeassistant/components/ads/sensor.py:109:14-32: Class member `AdsSensor._attr_device_class` overrides parent class `AdsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ads/switch.py:7:8-13: Could not find import of `pyads` [missing-import] +ERROR homeassistant/components/ads/valve.py:5:8-13: Could not find import of `pyads` [missing-import] +ERROR homeassistant/components/ads/valve.py:57:5-29: Class member `AdsValve._attr_supported_features` overrides parent class `AdsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ads/valve.py:68:14-32: Class member `AdsValve._attr_device_class` overrides parent class `AdsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/advantage_air/binary_sensor.py:46:5-23: Class member `AdvantageAirFilter._attr_device_class` overrides parent class `AdvantageAirAcEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/advantage_air/binary_sensor.py:64:5-23: Class member `AdvantageAirZoneMotion._attr_device_class` overrides parent class `AdvantageAirZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/advantage_air/climate.py:144:18-42: Class member `AdvantageAirAC._attr_supported_features` overrides parent class `AdvantageAirAcEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/advantage_air/climate.py:275:5-29: Class member `AdvantageAirZone._attr_supported_features` overrides parent class `AdvantageAirZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/advantage_air/cover.py:54:5-23: Class member `AdvantageAirZoneVent._attr_device_class` overrides parent class `AdvantageAirZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/advantage_air/cover.py:55:5-29: Class member `AdvantageAirZoneVent._attr_supported_features` overrides parent class `AdvantageAirZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/advantage_air/cover.py:105:5-29: Class member `AdvantageAirThingCover._attr_supported_features` overrides parent class `AdvantageAirThingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/advantage_air/cover.py:115:14-32: Class member `AdvantageAirThingCover._attr_device_class` overrides parent class `AdvantageAirThingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/advantage_air/entity.py:23:14-29: Class member `AdvantageAirEntity._attr_unique_id` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/advantage_air/sensor.py:160:5-23: Class member `AdvantageAirZoneTemp._attr_device_class` overrides parent class `AdvantageAirZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/advantage_air/switch.py:52:5-23: Class member `AdvantageAirFreshAir._attr_device_class` overrides parent class `AdvantageAirAcEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/advantage_air/switch.py:78:5-23: Class member `AdvantageAirMyFan._attr_device_class` overrides parent class `AdvantageAirAcEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/advantage_air/switch.py:104:5-23: Class member `AdvantageAirNightMode._attr_device_class` overrides parent class `AdvantageAirAcEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/advantage_air/switch.py:128:5-23: Class member `AdvantageAirRelay._attr_device_class` overrides parent class `AdvantageAirThingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aemet/__init__.py:70:38-73:6: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[PathLike[bytes] | PathLike[str] | bytes | str, bool, (((...) -> Any, str, tuple[type[BaseException], BaseException, TracebackType]) -> object) | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/aemet/config_flow.py:85:9-31: Class member `AemetConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aemet/image.py:19:9-12: Unexpected keyword argument `key` in function `homeassistant.components.image.ImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/image.py:20:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.image.ImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/image.py:54:5-23: Class member `AemetImage.entity_description` overrides parent class `AemetEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aemet/image.py:54:5-23: Class member `AemetImage.entity_description` overrides parent class `ImageEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aemet/sensor.py:103:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:105:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:109:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:110:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:112:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:116:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:117:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:119:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:124:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:131:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:135:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:136:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:143:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:147:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:149:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:154:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:156:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:161:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:162:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:164:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:169:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:171:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:176:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:177:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:179:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:184:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:186:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:191:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:192:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:194:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:199:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:200:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:202:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:207:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:209:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:214:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:215:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:217:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:226:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:228:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:232:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:234:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:240:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:242:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:248:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:250:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:256:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:258:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:263:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:265:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:271:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:273:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:278:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:280:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:283:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:285:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:288:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:290:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:295:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:297:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:302:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:304:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:310:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:312:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:318:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:320:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:323:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:325:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:328:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:330:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:335:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:337:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:343:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:345:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:351:9-12: Unexpected keyword argument `key` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:353:9-13: Unexpected keyword argument `name` in function `AemetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aemet/sensor.py:389:5-23: Class member `AemetSensor.entity_description` overrides parent class `AemetEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aemet/sensor.py:389:5-23: Class member `AemetSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aemet/sensor.py:406:38-66: Argument `list[str] | None` is not assignable to parameter `keys` with type `list[str]` in function `homeassistant.components.aemet.entity.AemetEntity.get_aemet_value` [bad-argument-type] +ERROR homeassistant/components/aftership/sensor.py:56:19-44: Argument `Any | None` is not assignable to parameter `title` with type `str` in function `pyaftership.trackings.AfterShipTrackings.add` [bad-argument-type] +ERROR homeassistant/components/aftership/sensor.py:57:18-42: Argument `Any | None` is not assignable to parameter `slug` with type `str` in function `pyaftership.trackings.AfterShipTrackings.add` [bad-argument-type] +ERROR homeassistant/components/aftership/sensor.py:88:5-37: Class member `AfterShipSensor._attr_native_unit_of_measurement` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/agent_dvr/camera.py:85:25-51: Argument `set[tuple[str, str | None]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/ai_task/entity.py:42:16-45: Returned type `int | None` is not assignable to declared return type `AITaskEntityFeature` [bad-return] +ERROR homeassistant/components/ai_task/task.py:108:37-50: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/airgradient/button.py:34:5-8: Unexpected keyword argument `key` in function `AirGradientButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/button.py:35:5-20: Unexpected keyword argument `translation_key` in function `AirGradientButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/button.py:36:5-20: Unexpected keyword argument `entity_category` in function `AirGradientButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/button.py:40:5-8: Unexpected keyword argument `key` in function `AirGradientButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/button.py:41:5-20: Unexpected keyword argument `translation_key` in function `AirGradientButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/button.py:42:5-20: Unexpected keyword argument `entity_category` in function `AirGradientButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/button.py:93:5-23: Class member `AirGradientButton.entity_description` overrides parent class `AirGradientEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airgradient/button.py:93:5-23: Class member `AirGradientButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airgradient/coordinator.py:31:5-17: Class member `AirGradientCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airgradient/number.py:36:5-8: Unexpected keyword argument `key` in function `AirGradientNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/number.py:37:5-20: Unexpected keyword argument `translation_key` in function `AirGradientNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/number.py:38:5-20: Unexpected keyword argument `entity_category` in function `AirGradientNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/number.py:48:5-8: Unexpected keyword argument `key` in function `AirGradientNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/number.py:49:5-20: Unexpected keyword argument `translation_key` in function `AirGradientNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/number.py:50:5-20: Unexpected keyword argument `entity_category` in function `AirGradientNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/number.py:109:5-23: Class member `AirGradientNumber.entity_description` overrides parent class `AirGradientEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airgradient/number.py:109:5-23: Class member `AirGradientNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airgradient/select.py:36:5-8: Unexpected keyword argument `key` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:37:5-20: Unexpected keyword argument `translation_key` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:39:5-20: Unexpected keyword argument `entity_category` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:52:9-12: Unexpected keyword argument `key` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:53:9-24: Unexpected keyword argument `translation_key` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:55:9-24: Unexpected keyword argument `entity_category` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:62:9-12: Unexpected keyword argument `key` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:63:9-24: Unexpected keyword argument `translation_key` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:65:9-24: Unexpected keyword argument `entity_category` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:75:9-12: Unexpected keyword argument `key` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:76:9-24: Unexpected keyword argument `translation_key` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:78:9-24: Unexpected keyword argument `entity_category` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:109:9-12: Unexpected keyword argument `key` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:110:9-24: Unexpected keyword argument `translation_key` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:112:9-24: Unexpected keyword argument `entity_category` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:119:9-12: Unexpected keyword argument `key` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:120:9-24: Unexpected keyword argument `translation_key` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:122:9-24: Unexpected keyword argument `entity_category` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:129:9-12: Unexpected keyword argument `key` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:130:9-24: Unexpected keyword argument `translation_key` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:132:9-24: Unexpected keyword argument `entity_category` in function `AirGradientSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/select.py:204:5-23: Class member `AirGradientSelect.entity_description` overrides parent class `AirGradientEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airgradient/select.py:204:5-23: Class member `AirGradientSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airgradient/sensor.py:57:9-12: Unexpected keyword argument `key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:64:9-12: Unexpected keyword argument `key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:71:9-12: Unexpected keyword argument `key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:78:9-12: Unexpected keyword argument `key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:85:9-12: Unexpected keyword argument `key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:92:9-12: Unexpected keyword argument `key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:95:9-24: Unexpected keyword argument `entity_category` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:97:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:101:9-12: Unexpected keyword argument `key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:107:9-12: Unexpected keyword argument `key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:108:9-24: Unexpected keyword argument `translation_key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:113:9-12: Unexpected keyword argument `key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:120:9-12: Unexpected keyword argument `key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:127:9-12: Unexpected keyword argument `key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:131:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:135:9-12: Unexpected keyword argument `key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:136:9-24: Unexpected keyword argument `translation_key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:139:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:143:9-12: Unexpected keyword argument `key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:144:9-24: Unexpected keyword argument `translation_key` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:148:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AirGradientMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:155:9-12: Unexpected keyword argument `key` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:156:9-24: Unexpected keyword argument `translation_key` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:159:9-24: Unexpected keyword argument `entity_category` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:163:9-12: Unexpected keyword argument `key` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:164:9-24: Unexpected keyword argument `translation_key` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:167:9-24: Unexpected keyword argument `entity_category` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:171:9-12: Unexpected keyword argument `key` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:172:9-24: Unexpected keyword argument `translation_key` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:175:9-24: Unexpected keyword argument `entity_category` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:182:9-12: Unexpected keyword argument `key` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:183:9-24: Unexpected keyword argument `translation_key` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:186:9-24: Unexpected keyword argument `entity_category` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:190:9-12: Unexpected keyword argument `key` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:191:9-24: Unexpected keyword argument `translation_key` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:193:9-24: Unexpected keyword argument `entity_category` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:200:9-12: Unexpected keyword argument `key` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:201:9-24: Unexpected keyword argument `translation_key` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:204:9-24: Unexpected keyword argument `entity_category` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:208:9-12: Unexpected keyword argument `key` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:209:9-24: Unexpected keyword argument `translation_key` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:212:9-24: Unexpected keyword argument `entity_category` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:216:9-12: Unexpected keyword argument `key` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:217:9-24: Unexpected keyword argument `translation_key` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:219:9-24: Unexpected keyword argument `entity_category` in function `AirGradientConfigSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/sensor.py:288:14-32: Class member `AirGradientSensor.entity_description` overrides parent class `AirGradientEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airgradient/sensor.py:295:5-23: Class member `AirGradientMeasurementSensor.entity_description` overrides parent class `AirGradientSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airgradient/sensor.py:306:5-23: Class member `AirGradientConfigSensor.entity_description` overrides parent class `AirGradientSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airgradient/switch.py:37:5-8: Unexpected keyword argument `key` in function `AirGradientSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/switch.py:38:5-20: Unexpected keyword argument `translation_key` in function `AirGradientSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/switch.py:39:5-20: Unexpected keyword argument `entity_category` in function `AirGradientSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airgradient/switch.py:87:5-23: Class member `AirGradientSwitch.entity_description` overrides parent class `AirGradientEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airgradient/switch.py:87:5-23: Class member `AirGradientSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airgradient/update.py:36:5-23: Class member `AirGradientUpdate._attr_device_class` overrides parent class `AirGradientEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airly/config_flow.py:67:28-50: `location_nearest_valid` may be uninitialized [unbound-name] +ERROR homeassistant/components/airly/coordinator.py:64:5-17: Class member `AirlyDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airly/coordinator.py:126:18-33: Class member `AirlyDataUpdateCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airly/coordinator.py:126:36-129:14: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@AirlyDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/airly/sensor.py:68:9-12: Unexpected keyword argument `key` in function `AirlySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airly/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `AirlySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airly/sensor.py:79:9-12: Unexpected keyword argument `key` in function `AirlySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airly/sensor.py:86:9-12: Unexpected keyword argument `key` in function `AirlySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airly/sensor.py:97:9-12: Unexpected keyword argument `key` in function `AirlySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airly/sensor.py:108:9-12: Unexpected keyword argument `key` in function `AirlySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airly/sensor.py:115:9-12: Unexpected keyword argument `key` in function `AirlySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airly/sensor.py:122:9-12: Unexpected keyword argument `key` in function `AirlySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airly/sensor.py:129:9-12: Unexpected keyword argument `key` in function `AirlySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airly/sensor.py:130:9-24: Unexpected keyword argument `translation_key` in function `AirlySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airly/sensor.py:140:9-12: Unexpected keyword argument `key` in function `AirlySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airly/sensor.py:151:9-12: Unexpected keyword argument `key` in function `AirlySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airly/sensor.py:162:9-12: Unexpected keyword argument `key` in function `AirlySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airly/sensor.py:201:5-23: Class member `AirlySensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airly/sensor.py:201:5-23: Class member `AirlySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airnow/config_flow.py:127:9-31: Class member `AirNowConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airnow/coordinator.py:44:5-17: Class member `AirNowDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airnow/sensor.py:88:9-12: Unexpected keyword argument `key` in function `AirNowEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airnow/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `AirNowEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airnow/sensor.py:96:9-12: Unexpected keyword argument `key` in function `AirNowEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airnow/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `AirNowEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airnow/sensor.py:105:9-12: Unexpected keyword argument `key` in function `AirNowEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airnow/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `AirNowEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airnow/sensor.py:114:9-12: Unexpected keyword argument `key` in function `AirNowEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airnow/sensor.py:115:9-24: Unexpected keyword argument `translation_key` in function `AirNowEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airnow/sensor.py:122:9-12: Unexpected keyword argument `key` in function `AirNowEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airnow/sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `AirNowEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airnow/sensor.py:149:5-23: Class member `AirNowSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airnow/sensor.py:149:5-23: Class member `AirNowSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airos/binary_sensor.py:35:9-12: Unexpected keyword argument `key` in function `AirOSBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/binary_sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `AirOSBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/binary_sensor.py:37:9-24: Unexpected keyword argument `entity_category` in function `AirOSBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/binary_sensor.py:41:9-12: Unexpected keyword argument `key` in function `AirOSBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/binary_sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `AirOSBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/binary_sensor.py:44:9-24: Unexpected keyword argument `entity_category` in function `AirOSBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/binary_sensor.py:48:9-12: Unexpected keyword argument `key` in function `AirOSBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/binary_sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `AirOSBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/binary_sensor.py:51:9-24: Unexpected keyword argument `entity_category` in function `AirOSBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/binary_sensor.py:53:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AirOSBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/binary_sensor.py:56:9-12: Unexpected keyword argument `key` in function `AirOSBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/binary_sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `AirOSBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/binary_sensor.py:59:9-24: Unexpected keyword argument `entity_category` in function `AirOSBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/binary_sensor.py:61:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AirOSBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/binary_sensor.py:64:9-12: Unexpected keyword argument `key` in function `AirOSBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/binary_sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `AirOSBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/binary_sensor.py:67:9-24: Unexpected keyword argument `entity_category` in function `AirOSBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/binary_sensor.py:69:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AirOSBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/binary_sensor.py:90:5-23: Class member `AirOSBinarySensor.entity_description` overrides parent class `AirOSEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airos/binary_sensor.py:90:5-23: Class member `AirOSBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airos/coordinator.py:30:5-17: Class member `AirOSDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airos/sensor.py:50:9-12: Unexpected keyword argument `key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:56:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:59:9-12: Unexpected keyword argument `key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:66:9-12: Unexpected keyword argument `key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:74:9-12: Unexpected keyword argument `key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:79:9-12: Unexpected keyword argument `key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:87:9-12: Unexpected keyword argument `key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:97:9-12: Unexpected keyword argument `key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:107:9-12: Unexpected keyword argument `key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:108:9-24: Unexpected keyword argument `translation_key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:117:9-12: Unexpected keyword argument `key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:118:9-24: Unexpected keyword argument `translation_key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:127:9-12: Unexpected keyword argument `key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:134:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:137:9-12: Unexpected keyword argument `key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:138:9-24: Unexpected keyword argument `translation_key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:146:9-12: Unexpected keyword argument `key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:147:9-24: Unexpected keyword argument `translation_key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:151:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:154:9-12: Unexpected keyword argument `key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:155:9-24: Unexpected keyword argument `translation_key` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:159:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AirOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airos/sensor.py:178:5-23: Class member `AirOSSensor.entity_description` overrides parent class `AirOSEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airos/sensor.py:178:5-23: Class member `AirOSSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airq/config_flow.py:87:50-69: Argument `str | None` is not assignable to parameter `title` with type `str` in function `homeassistant.config_entries.ConfigFlow.async_create_entry` [bad-argument-type] +ERROR homeassistant/components/airq/config_flow.py:95:9-31: Class member `AirQConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airq/coordinator.py:25:5-17: Class member `AirQCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airq/number.py:31:5-8: Unexpected keyword argument `key` in function `AirQBrightnessDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/number.py:32:5-20: Unexpected keyword argument `translation_key` in function `AirQBrightnessDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/number.py:67:14-32: Class member `AirQLEDBrightness.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airq/number.py:67:14-32: Class member `AirQLEDBrightness.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airq/sensor.py:47:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:54:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:61:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:68:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:75:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:82:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:89:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:96:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:103:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:110:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:117:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:118:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:125:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:132:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:133:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:139:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:140:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:146:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:147:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:153:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:154:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:160:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:161:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:167:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:168:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:174:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:175:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:181:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:182:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:188:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:195:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:202:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:203:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:209:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:210:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:216:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:217:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:223:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:230:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:237:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:244:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:245:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:251:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:252:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:258:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:265:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:266:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:272:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:273:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:279:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:286:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:293:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:300:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:307:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:308:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:315:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:316:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:322:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:323:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:329:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:330:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:336:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:343:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:344:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:351:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:352:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:359:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:360:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:366:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:373:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:380:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:381:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:388:9-12: Unexpected keyword argument `key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:389:9-24: Unexpected keyword argument `translation_key` in function `AirQEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airq/sensor.py:439:14-32: Class member `AirQSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airq/sensor.py:439:14-32: Class member `AirQSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airthings/sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:39:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:43:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:50:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:64:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:71:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:74:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:79:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:86:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:93:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:95:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:100:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:107:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:108:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:113:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:119:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:122:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:123:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:128:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:135:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings/sensor.py:182:14-32: Class member `AirthingsDeviceSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airthings_ble/coordinator.py:35:5-17: Class member `AirthingsBLEDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airthings_ble/coordinator.py:44:53-46:10: No matching overload found for function `dict.get` called with arguments: (Any | None, Literal[300]) [no-matching-overload] +ERROR homeassistant/components/airthings_ble/coordinator.py:85:18-33: Class member `AirthingsBLEDataUpdateCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airthings_ble/coordinator.py:85:36-89:14: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@AirthingsBLEDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/airthings_ble/sensor.py:46:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:53:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:60:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:64:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:68:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:75:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:82:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:89:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:93:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:97:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:104:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:111:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:118:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:125:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airthings_ble/sensor.py:227:14-32: Class member `AirthingsSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airtouch4/climate.py:91:5-29: Class member `AirtouchAC._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airtouch4/climate.py:200:5-29: Class member `AirtouchGroup._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airtouch5/__init__.py:48:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/airtouch5/cover.py:52:5-23: Class member `Airtouch5ZoneOpenPercentage._attr_device_class` overrides parent class `Airtouch5Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airtouch5/cover.py:57:5-29: Class member `Airtouch5ZoneOpenPercentage._attr_supported_features` overrides parent class `Airtouch5Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airvisual/config_flow.py:175:9-31: Class member `AirVisualFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airvisual/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual/sensor.py:46:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual/sensor.py:59:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual/sensor.py:60:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual/sensor.py:65:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual/sensor.py:66:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual/sensor.py:122:7-31: Field `entity_description` is declared `EntityDescription` in ancestor `class AirVisualEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/airvisual/sensor.py:161:20-38: Class member `AirVisualGeographySensor._attr_native_value` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airvisual/sensor.py:161:45-55: Class member `AirVisualGeographySensor._attr_icon` overrides parent class `AirVisualEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airvisual/sensor.py:161:45-55: Class member `AirVisualGeographySensor._attr_icon` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airvisual_pro/__init__.py:117:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/airvisual_pro/sensor.py:40:9-12: Unexpected keyword argument `key` in function `AirVisualProMeasurementDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual_pro/sensor.py:44:13-33: `async_get_aqi_locale` is uninitialized [unbound-name] +ERROR homeassistant/components/airvisual_pro/sensor.py:48:9-12: Unexpected keyword argument `key` in function `AirVisualProMeasurementDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual_pro/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `AirVisualProMeasurementDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual_pro/sensor.py:59:9-12: Unexpected keyword argument `key` in function `AirVisualProMeasurementDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual_pro/sensor.py:61:9-24: Unexpected keyword argument `entity_category` in function `AirVisualProMeasurementDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual_pro/sensor.py:67:9-12: Unexpected keyword argument `key` in function `AirVisualProMeasurementDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual_pro/sensor.py:74:9-12: Unexpected keyword argument `key` in function `AirVisualProMeasurementDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual_pro/sensor.py:83:9-12: Unexpected keyword argument `key` in function `AirVisualProMeasurementDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual_pro/sensor.py:84:9-24: Unexpected keyword argument `translation_key` in function `AirVisualProMeasurementDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual_pro/sensor.py:90:9-12: Unexpected keyword argument `key` in function `AirVisualProMeasurementDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual_pro/sensor.py:97:9-12: Unexpected keyword argument `key` in function `AirVisualProMeasurementDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual_pro/sensor.py:104:9-12: Unexpected keyword argument `key` in function `AirVisualProMeasurementDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual_pro/sensor.py:113:9-12: Unexpected keyword argument `key` in function `AirVisualProMeasurementDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airvisual_pro/sensor.py:147:5-23: Class member `AirVisualProSensor.entity_description` overrides parent class `AirVisualProEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airvisual_pro/sensor.py:147:5-23: Class member `AirVisualProSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone/binary_sensor.py:45:9-24: Unexpected keyword argument `entity_category` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/binary_sensor.py:46:9-12: Unexpected keyword argument `key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/binary_sensor.py:53:9-12: Unexpected keyword argument `key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/binary_sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/binary_sensor.py:58:9-12: Unexpected keyword argument `key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/binary_sensor.py:62:9-12: Unexpected keyword argument `key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/binary_sensor.py:63:9-24: Unexpected keyword argument `translation_key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/binary_sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/binary_sensor.py:71:9-12: Unexpected keyword argument `key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/binary_sensor.py:137:5-23: Class member `AirzoneBinarySensor.entity_description` overrides parent class `AirzoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone/binary_sensor.py:137:5-23: Class member `AirzoneBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone/binary_sensor.py:170:14-32: Class member `AirzoneSystemBinarySensor.entity_description` overrides parent class `AirzoneSystemEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone/binary_sensor.py:191:14-32: Class member `AirzoneZoneBinarySensor.entity_description` overrides parent class `AirzoneZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone/climate.py:150:14-38: Class member `AirzoneClimate._attr_supported_features` overrides parent class `AirzoneZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone/coordinator.py:29:5-17: Class member `AirzoneUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone/select.py:91:9-12: Unexpected keyword argument `key` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/select.py:94:9-24: Unexpected keyword argument `translation_key` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/select.py:98:9-24: Unexpected keyword argument `entity_category` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/select.py:99:9-12: Unexpected keyword argument `key` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/select.py:102:9-24: Unexpected keyword argument `translation_key` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/select.py:110:9-24: Unexpected keyword argument `entity_category` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/select.py:111:9-12: Unexpected keyword argument `key` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/select.py:114:9-24: Unexpected keyword argument `translation_key` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/select.py:118:9-24: Unexpected keyword argument `entity_category` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/select.py:119:9-12: Unexpected keyword argument `key` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/select.py:122:9-24: Unexpected keyword argument `translation_key` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/select.py:126:9-24: Unexpected keyword argument `entity_category` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/select.py:127:9-12: Unexpected keyword argument `key` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/select.py:130:9-24: Unexpected keyword argument `translation_key` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/select.py:187:5-23: Class member `AirzoneBaseSelect.entity_description` overrides parent class `AirzoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone/select.py:187:5-23: Class member `AirzoneBaseSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone/select.py:223:14-32: Class member `AirzoneZoneSelect.entity_description` overrides parent class `AirzoneZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone/sensor.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/sensor.py:56:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/sensor.py:57:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/sensor.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/sensor.py:68:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/sensor.py:74:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/sensor.py:80:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/sensor.py:85:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/sensor.py:86:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/sensor.py:87:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/sensor.py:188:14-32: Class member `AirzoneHotWaterSensor.entity_description` overrides parent class `AirzoneHotWaterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone/sensor.py:209:14-32: Class member `AirzoneWebServerSensor.entity_description` overrides parent class `AirzoneWebServerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone/sensor.py:230:14-32: Class member `AirzoneZoneSensor.entity_description` overrides parent class `AirzoneZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone/switch.py:34:9-12: Unexpected keyword argument `key` in function `AirzoneSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone/switch.py:77:5-23: Class member `AirzoneBaseSwitch.entity_description` overrides parent class `AirzoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone/switch.py:77:5-23: Class member `AirzoneBaseSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone/switch.py:109:14-32: Class member `AirzoneZoneSwitch.entity_description` overrides parent class `AirzoneZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone/water_heater.py:73:5-29: Class member `AirzoneWaterHeater._attr_supported_features` overrides parent class `AirzoneHotWaterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone_cloud/__init__.py:61:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:50:9-12: Unexpected keyword argument `key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:58:9-24: Unexpected keyword argument `entity_category` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:59:9-12: Unexpected keyword argument `key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:71:9-24: Unexpected keyword argument `entity_category` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:72:9-12: Unexpected keyword argument `key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:80:9-12: Unexpected keyword argument `key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:84:9-12: Unexpected keyword argument `key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:88:9-12: Unexpected keyword argument `key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:93:9-12: Unexpected keyword argument `key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:97:9-12: Unexpected keyword argument `key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:105:9-24: Unexpected keyword argument `entity_category` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:106:9-12: Unexpected keyword argument `key` in function `AirzoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:161:5-23: Class member `AirzoneBinarySensor.entity_description` overrides parent class `AirzoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:161:5-23: Class member `AirzoneBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:199:14-32: Class member `AirzoneAidooBinarySensor.entity_description` overrides parent class `AirzoneAidooEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:218:14-32: Class member `AirzoneSystemBinarySensor.entity_description` overrides parent class `AirzoneSystemEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone_cloud/binary_sensor.py:237:14-32: Class member `AirzoneZoneBinarySensor.entity_description` overrides parent class `AirzoneZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone_cloud/coordinator.py:29:5-17: Class member `AirzoneUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone_cloud/select.py:69:9-12: Unexpected keyword argument `key` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/select.py:72:9-24: Unexpected keyword argument `translation_key` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/select.py:80:9-24: Unexpected keyword argument `entity_category` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/select.py:81:9-12: Unexpected keyword argument `key` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/select.py:84:9-24: Unexpected keyword argument `translation_key` in function `AirzoneSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/select.py:128:5-23: Class member `AirzoneBaseSelect.entity_description` overrides parent class `AirzoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone_cloud/select.py:128:5-23: Class member `AirzoneBaseSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone_cloud/select.py:162:14-32: Class member `AirzoneZoneSelect.entity_description` overrides parent class `AirzoneZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone_cloud/sensor.py:62:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:63:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:64:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:71:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:72:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:78:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:79:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:80:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:86:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:87:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:88:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:91:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:94:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:95:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:96:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:102:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:103:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:104:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:110:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:111:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:112:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:115:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:118:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:119:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:120:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:126:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:127:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:128:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:131:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:135:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:143:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:144:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:145:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:148:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:151:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:152:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:153:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:156:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:160:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:161:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:162:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:171:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:176:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:182:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:188:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:194:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:200:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:206:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:211:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:212:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:213:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:216:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/sensor.py:305:14-32: Class member `AirzoneAidooSensor.entity_description` overrides parent class `AirzoneAidooEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone_cloud/sensor.py:324:14-32: Class member `AirzoneWebServerSensor.entity_description` overrides parent class `AirzoneWebServerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone_cloud/sensor.py:343:14-32: Class member `AirzoneZoneSensor.entity_description` overrides parent class `AirzoneZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone_cloud/switch.py:33:9-12: Unexpected keyword argument `key` in function `AirzoneSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/airzone_cloud/switch.py:63:5-23: Class member `AirzoneBaseSwitch.entity_description` overrides parent class `AirzoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone_cloud/switch.py:63:5-23: Class member `AirzoneBaseSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone_cloud/switch.py:92:14-32: Class member `AirzoneZoneSwitch.entity_description` overrides parent class `AirzoneZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/airzone_cloud/water_heater.py:90:5-29: Class member `AirzoneWaterHeater._attr_supported_features` overrides parent class `AirzoneHotWaterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aladdin_connect/cover.py:32:5-23: Class member `AladdinCoverEntity._attr_device_class` overrides parent class `AladdinConnectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aladdin_connect/cover.py:33:5-29: Class member `AladdinCoverEntity._attr_supported_features` overrides parent class `AladdinConnectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aladdin_connect/sensor.py:33:9-12: Unexpected keyword argument `key` in function `AladdinConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aladdin_connect/sensor.py:35:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AladdinConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aladdin_connect/sensor.py:38:9-24: Unexpected keyword argument `entity_category` in function `AladdinConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aladdin_connect/sensor.py:62:5-23: Class member `AladdinConnectSensor.entity_description` overrides parent class `AladdinConnectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aladdin_connect/sensor.py:62:5-23: Class member `AladdinConnectSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/alarm_control_panel/__init__.py:139:5-23: Class member `AlarmControlPanelEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/alarm_control_panel/__init__.py:144:5-29: Class member `AlarmControlPanelEntity._attr_supported_features` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/alarm_control_panel/device_action.py:119:17-24: `service` may be uninitialized [unbound-name] +ERROR homeassistant/components/alarm_control_panel/device_trigger.py:142:32-40: `to_state` may be uninitialized [unbound-name] +ERROR homeassistant/components/alarm_control_panel/reproduce_state.py:77:17-24: `service` may be uninitialized [unbound-name] +ERROR homeassistant/components/alarmdecoder/__init__.py:77:46-69: Unpacked argument `tuple[Any | None]` is not assignable to parameter `*args` with type `tuple[Unknown | None, bool | Unknown]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/alarmdecoder/__init__.py:122:5-15: `controller` may be uninitialized [unbound-name] +ERROR homeassistant/components/alarmdecoder/__init__.py:123:5-15: `controller` may be uninitialized [unbound-name] +ERROR homeassistant/components/alarmdecoder/__init__.py:124:5-15: `controller` may be uninitialized [unbound-name] +ERROR homeassistant/components/alarmdecoder/__init__.py:125:5-15: `controller` may be uninitialized [unbound-name] +ERROR homeassistant/components/alarmdecoder/__init__.py:126:5-15: `controller` may be uninitialized [unbound-name] +ERROR homeassistant/components/alarmdecoder/__init__.py:127:5-15: `controller` may be uninitialized [unbound-name] +ERROR homeassistant/components/alarmdecoder/__init__.py:134:9-19: `controller` may be uninitialized [unbound-name] +ERROR homeassistant/components/alarmdecoder/__init__.py:139:11-21: `controller` may be uninitialized [unbound-name] +ERROR homeassistant/components/alarmdecoder/__init__.py:160:39-56: Argument `BoundMethod[AdExt, (self: AdExt) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/alarmdecoder/alarm_control_panel.py:77:5-29: Class member `AlarmDecoderAlarmPanel._attr_supported_features` overrides parent class `AlarmDecoderEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/alarmdecoder/binary_sensor.py:101:14-32: Class member `AlarmDecoderBinarySensor._attr_device_class` overrides parent class `AlarmDecoderEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/alarmdecoder/config_flow.py:70:9-31: Class member `AlarmDecoderFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/alarmdecoder/config_flow.py:118:32-38: `device` may be uninitialized [unbound-name] +ERROR homeassistant/components/alarmdecoder/config_flow.py:125:56-71: Argument `() -> Unknown` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/alarmdecoder/config_flow.py:127:27-32: `title` may be uninitialized [unbound-name] +ERROR homeassistant/components/alarmdecoder/config_flow.py:152:25-31: `schema` may be uninitialized [unbound-name] +ERROR homeassistant/components/alert/reproduce_state.py:57:17-24: `service` may be uninitialized [unbound-name] +ERROR homeassistant/components/alexa/capabilities.py:650:20-34: `hue_saturation` may be uninitialized [unbound-name] +ERROR homeassistant/components/alexa/capabilities.py:651:27-41: `hue_saturation` may be uninitialized [unbound-name] +ERROR homeassistant/components/alexa/capabilities.py:652:27-37: `brightness` may be uninitialized [unbound-name] +ERROR homeassistant/components/alexa/capabilities.py:1167:47-53: Cannot index into `dict[str, str]` [bad-index] +ERROR homeassistant/components/alexa/flash_briefings.py:103:32-35: `uid` may be uninitialized [unbound-name] +ERROR homeassistant/components/alexa/handlers.py:185:8-14: `domain` may be uninitialized [unbound-name] +ERROR homeassistant/components/alexa/handlers.py:187:10-16: `domain` may be uninitialized [unbound-name] +ERROR homeassistant/components/alexa/handlers.py:189:10-16: `domain` may be uninitialized [unbound-name] +ERROR homeassistant/components/alexa/handlers.py:191:10-16: `domain` may be uninitialized [unbound-name] +ERROR homeassistant/components/alexa/handlers.py:193:10-16: `domain` may be uninitialized [unbound-name] +ERROR homeassistant/components/alexa/handlers.py:195:10-16: `domain` may be uninitialized [unbound-name] +ERROR homeassistant/components/alexa/handlers.py:202:10-16: `domain` may be uninitialized [unbound-name] +ERROR homeassistant/components/alexa/handlers.py:204:10-16: `domain` may be uninitialized [unbound-name] +ERROR homeassistant/components/alexa/handlers.py:214:9-15: `domain` may be uninitialized [unbound-name] +ERROR homeassistant/components/alexa/handlers.py:1546:49-75: No matching overload found for function `max` called with arguments: (Literal[0], float | Unknown) [no-matching-overload] +ERROR homeassistant/components/alexa/handlers.py:1582:51-77: No matching overload found for function `max` called with arguments: (Literal[0], float | Unknown) [no-matching-overload] +ERROR homeassistant/components/alexa/handlers.py:1654:49-75: No matching overload found for function `max` called with arguments: (Literal[0], float | Unknown) [no-matching-overload] +ERROR homeassistant/components/alexa/logbook.py:43:38-47: `entity_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/alexa/resources.py:307:37-41: `str | None` is not assignable to attribute `_unit_of_measure` with type `None` [bad-assignment] +ERROR homeassistant/components/alexa_devices/binary_sensor.py:43:9-12: Unexpected keyword argument `key` in function `AmazonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/binary_sensor.py:45:9-24: Unexpected keyword argument `entity_category` in function `AmazonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/binary_sensor.py:49:9-12: Unexpected keyword argument `key` in function `AmazonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/binary_sensor.py:65:9-12: Unexpected keyword argument `key` in function `AmazonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/binary_sensor.py:66:9-24: Unexpected keyword argument `entity_category` in function `AmazonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/binary_sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `AmazonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/binary_sensor.py:71:9-12: Unexpected keyword argument `key` in function `AmazonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/binary_sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `AmazonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/binary_sensor.py:76:9-12: Unexpected keyword argument `key` in function `AmazonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/binary_sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `AmazonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/binary_sensor.py:81:9-12: Unexpected keyword argument `key` in function `AmazonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/binary_sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `AmazonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/binary_sensor.py:86:9-12: Unexpected keyword argument `key` in function `AmazonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/binary_sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `AmazonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/binary_sensor.py:91:9-12: Unexpected keyword argument `key` in function `AmazonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/binary_sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `AmazonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/binary_sensor.py:151:5-23: Class member `AmazonBinarySensorEntity.entity_description` overrides parent class `AmazonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/alexa_devices/binary_sensor.py:151:5-23: Class member `AmazonBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/alexa_devices/coordinator.py:32:5-17: Class member `AmazonDevicesCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/alexa_devices/notify.py:35:9-12: Unexpected keyword argument `key` in function `AmazonNotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/notify.py:36:9-24: Unexpected keyword argument `translation_key` in function `AmazonNotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/notify.py:42:9-12: Unexpected keyword argument `key` in function `AmazonNotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/notify.py:43:9-24: Unexpected keyword argument `translation_key` in function `AmazonNotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/notify.py:83:5-23: Class member `AmazonNotifyEntity.entity_description` overrides parent class `AmazonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/alexa_devices/notify.py:83:5-23: Class member `AmazonNotifyEntity.entity_description` overrides parent class `NotifyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/alexa_devices/sensor.py:64:9-12: Unexpected keyword argument `key` in function `AmazonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/sensor.py:74:9-12: Unexpected keyword argument `key` in function `AmazonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/sensor.py:82:9-12: Unexpected keyword argument `key` in function `AmazonNotificationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `AmazonNotificationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/sensor.py:87:9-12: Unexpected keyword argument `key` in function `AmazonNotificationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `AmazonNotificationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/sensor.py:92:9-12: Unexpected keyword argument `key` in function `AmazonNotificationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `AmazonNotificationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/sensor.py:135:5-23: Class member `AmazonSensorEntity.entity_description` overrides parent class `AmazonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/alexa_devices/sensor.py:135:5-23: Class member `AmazonSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/alexa_devices/switch.py:45:9-12: Unexpected keyword argument `key` in function `AmazonSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/switch.py:46:9-24: Unexpected keyword argument `translation_key` in function `AmazonSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/alexa_devices/switch.py:91:5-23: Class member `AmazonSwitchEntity.entity_description` overrides parent class `AmazonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/alexa_devices/switch.py:91:5-23: Class member `AmazonSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/alpha_vantage/sensor.py:8:1-58: Could not find import of `alpha_vantage.foreignexchange` [missing-import] +ERROR homeassistant/components/alpha_vantage/sensor.py:9:1-48: Could not find import of `alpha_vantage.timeseries` [missing-import] +ERROR homeassistant/components/altruist/sensor.py:45:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:49:9-33: Unexpected keyword argument `translation_placeholders` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:53:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:58:9-33: Unexpected keyword argument `translation_placeholders` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:62:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:63:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:66:9-33: Unexpected keyword argument `translation_placeholders` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:70:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:74:9-33: Unexpected keyword argument `translation_placeholders` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:78:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:83:9-33: Unexpected keyword argument `translation_placeholders` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:87:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:91:9-33: Unexpected keyword argument `translation_placeholders` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:95:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:100:9-33: Unexpected keyword argument `translation_placeholders` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:104:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:108:9-33: Unexpected keyword argument `translation_placeholders` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:112:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:113:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:116:9-33: Unexpected keyword argument `translation_placeholders` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:120:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:125:9-33: Unexpected keyword argument `translation_placeholders` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:129:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:130:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:133:9-33: Unexpected keyword argument `translation_placeholders` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:137:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:138:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:141:9-33: Unexpected keyword argument `translation_placeholders` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:145:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:146:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:152:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:153:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:159:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:163:9-33: Unexpected keyword argument `translation_placeholders` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:167:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:168:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:171:9-33: Unexpected keyword argument `translation_placeholders` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:175:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:177:9-24: Unexpected keyword argument `entity_category` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:182:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:183:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:189:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:190:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:197:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:198:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:200:9-33: Unexpected keyword argument `translation_placeholders` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:204:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:209:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:211:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:216:9-24: Unexpected keyword argument `translation_key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:218:9-12: Unexpected keyword argument `key` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:220:9-33: Unexpected keyword argument `translation_placeholders` in function `AltruistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/altruist/sensor.py:252:14-32: Class member `AltruistSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/altruist/sensor.py:252:14-32: Class member `AltruistSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/amazon_polly/tts.py:101:19-34: Module `botocore.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/amazon_polly/tts.py:143:23-35: Expected a type form, got instance of `(*args: Unknown, **kwargs: Unknown) -> Unknown` [not-a-type] +ERROR homeassistant/components/amberelectric/binary_sensor.py:40:14-32: Class member `AmberPriceGridSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/amberelectric/binary_sensor.py:94:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amberelectric/binary_sensor.py:95:9-13: Unexpected keyword argument `name` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amberelectric/binary_sensor.py:98:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amberelectric/binary_sensor.py:99:9-13: Unexpected keyword argument `name` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amberelectric/binary_sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amberelectric/config_flow.py:68:30-64: Missing argument `self` in function `amberelectric.api.amber_api.AmberApi.get_sites` [missing-argument] +ERROR homeassistant/components/amberelectric/coordinator.py:55:5-17: Class member `AmberUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/amberelectric/coordinator.py:85:48-89:14: Missing argument `site_id` in function `amberelectric.api.amber_api.AmberApi.get_current_prices` [missing-argument] +ERROR homeassistant/components/amberelectric/coordinator.py:86:17-29: Argument `str` is not assignable to parameter `self` with type `AmberApi` in function `amberelectric.api.amber_api.AmberApi.get_current_prices` [bad-argument-type] +ERROR homeassistant/components/amberelectric/coordinator.py:139:55-77: Argument `BoundMethod[Self@AmberUpdateCoordinator, (self: Self@AmberUpdateCoordinator) -> dict[str, dict[str, Any]]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/amberelectric/helpers.py:19:31-41: Cannot index into `dict[str, str]` [bad-index] +ERROR homeassistant/components/amberelectric/sensor.py:55:14-32: Class member `AmberSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/amberelectric/sensor.py:183:14-32: Class member `AmberGridSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/amberelectric/sensor.py:206:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amberelectric/sensor.py:207:13-17: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amberelectric/sensor.py:210:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amberelectric/sensor.py:216:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amberelectric/sensor.py:217:13-17: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amberelectric/sensor.py:221:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amberelectric/sensor.py:229:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amberelectric/sensor.py:230:13-17: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amberelectric/sensor.py:233:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amberelectric/sensor.py:238:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amberelectric/sensor.py:239:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amberelectric/sensor.py:242:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/coordinator.py:28:5-17: Class member `AmbientNetworkDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ambient_network/sensor.py:65:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:72:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:73:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:77:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:80:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:81:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:86:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:89:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:97:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:102:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:105:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:113:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:121:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:122:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:129:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:130:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:137:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:144:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:145:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:147:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:150:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:151:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:154:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:157:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:158:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:161:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:164:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:165:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:170:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:173:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:174:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:181:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:182:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:187:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:190:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:191:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:195:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:198:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:203:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:206:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:211:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:214:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:221:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:222:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:228:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:229:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:234:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:237:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:238:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:241:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:246:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:247:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:254:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:261:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:262:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:267:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_network/sensor.py:292:7-27: Field `entity_description` is declared `EntityDescription` in ancestor `class AmbientNetworkEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/ambient_station/binary_sensor.py:76:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:78:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:82:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:85:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:89:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:92:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:96:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:99:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:103:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:104:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:106:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:110:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:113:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:117:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:118:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:120:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:124:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:127:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:131:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:132:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:134:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:138:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:139:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:141:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:145:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:146:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:148:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:152:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:153:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:155:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:159:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:162:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:166:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:167:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:169:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:173:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:174:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:176:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:180:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:181:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:183:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:187:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:188:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:190:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:194:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:195:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:197:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:201:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:202:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:204:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:208:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:209:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:211:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:215:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:216:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:218:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:222:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:223:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:225:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:229:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:230:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:232:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:236:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:237:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:239:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:243:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:244:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:246:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:250:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:251:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:253:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:257:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:258:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:260:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:264:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:265:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:267:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:271:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:272:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:277:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:278:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:283:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:284:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:289:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:290:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:295:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:296:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:298:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:302:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:303:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:305:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:309:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:310:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:312:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:316:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:317:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:319:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:323:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:324:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:326:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:330:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:331:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:333:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:337:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:338:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:340:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:344:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:345:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:347:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:351:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:352:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:354:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:358:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:359:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:361:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:365:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:366:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:368:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:372:9-12: Unexpected keyword argument `key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:373:9-24: Unexpected keyword argument `translation_key` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:375:9-24: Unexpected keyword argument `entity_category` in function `AmbientBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/binary_sensor.py:402:5-23: Class member `AmbientWeatherBinarySensor.entity_description` overrides parent class `AmbientWeatherEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ambient_station/binary_sensor.py:402:5-23: Class member `AmbientWeatherBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ambient_station/sensor.py:119:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:120:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:126:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:127:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:132:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:133:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:137:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:138:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:143:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:144:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:148:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:149:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:155:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:156:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:162:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:168:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:169:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:175:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:176:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:182:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:183:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:189:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:190:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:196:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:202:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:203:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:209:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:210:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:216:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:217:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:223:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:224:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:230:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:231:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:237:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:238:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:244:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:245:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:251:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:252:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:258:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:259:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:265:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:266:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:272:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:278:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:279:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:285:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:286:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:290:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:291:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:296:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:297:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:302:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:303:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:307:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:308:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:314:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:315:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:321:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:322:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:328:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:329:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:334:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:335:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:341:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:342:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:347:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:353:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:354:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:360:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:361:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:367:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:368:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:374:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:375:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:381:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:382:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:388:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:389:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:395:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:396:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:402:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:403:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:409:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:410:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:416:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:417:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:423:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:424:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:430:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:431:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:437:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:438:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:444:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:445:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:451:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:452:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:458:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:459:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:465:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:466:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:472:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:473:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:479:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:480:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:486:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:487:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:493:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:499:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:505:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:506:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:512:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:513:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:519:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:520:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:526:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:527:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:533:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:534:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:540:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:541:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:547:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:548:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:554:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:555:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:561:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:562:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:568:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:569:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:575:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:581:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:582:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:588:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:589:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:595:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:596:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:601:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:602:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:608:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:609:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:615:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:616:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:621:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:622:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:627:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:628:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:633:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:634:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:640:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:641:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:646:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:647:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:652:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:658:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:659:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ambient_station/sensor.py:683:7-27: Field `entity_description` is declared `EntityDescription` in ancestor `class AmbientWeatherEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/amcrest/__init__.py:15:1-57: Could not find import of `amcrest` [missing-import] +ERROR homeassistant/components/amcrest/__init__.py:244:50-76: Argument `BoundMethod[Self@AmcrestChecker, (self: Self@AmcrestChecker) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/components/amcrest/__init__.py:268:50-76: Argument `BoundMethod[Self@AmcrestChecker, (self: Self@AmcrestChecker) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/components/amcrest/__init__.py:291:50-75: Argument `BoundMethod[Self@AmcrestChecker, (self: Self@AmcrestChecker) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/components/amcrest/__init__.py:316:19-42: Object of class `AmcrestChecker` has no attribute `async_current_time` [missing-attribute] +ERROR homeassistant/components/amcrest/binary_sensor.py:11:1-33: Could not find import of `amcrest` [missing-import] +ERROR homeassistant/components/amcrest/binary_sensor.py:71:9-12: Unexpected keyword argument `key` in function `AmcrestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/binary_sensor.py:72:9-13: Unexpected keyword argument `name` in function `AmcrestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/binary_sensor.py:77:9-12: Unexpected keyword argument `key` in function `AmcrestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/binary_sensor.py:78:9-13: Unexpected keyword argument `name` in function `AmcrestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/binary_sensor.py:84:9-12: Unexpected keyword argument `key` in function `AmcrestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/binary_sensor.py:85:9-13: Unexpected keyword argument `name` in function `AmcrestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/binary_sensor.py:90:9-12: Unexpected keyword argument `key` in function `AmcrestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/binary_sensor.py:91:9-13: Unexpected keyword argument `name` in function `AmcrestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/binary_sensor.py:97:9-12: Unexpected keyword argument `key` in function `AmcrestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/binary_sensor.py:98:9-13: Unexpected keyword argument `name` in function `AmcrestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/binary_sensor.py:103:9-12: Unexpected keyword argument `key` in function `AmcrestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/binary_sensor.py:104:9-13: Unexpected keyword argument `name` in function `AmcrestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/binary_sensor.py:110:9-12: Unexpected keyword argument `key` in function `AmcrestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/binary_sensor.py:111:9-13: Unexpected keyword argument `name` in function `AmcrestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/binary_sensor.py:172:14-32: Class member `AmcrestBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/amcrest/camera.py:13:1-33: Could not find import of `amcrest` [missing-import] +ERROR homeassistant/components/amcrest/camera.py:259:59-81: Argument `list[str]` is not assignable to parameter `extra_cmd` with type `str | None` in function `haffmpeg.camera.CameraMjpeg.open_camera` [bad-argument-type] +ERROR homeassistant/components/amcrest/camera.py:266:17-30: Argument `asyncio.streams.StreamReader` is not assignable to parameter `stream` with type `aiohttp.streams.StreamReader` in function `homeassistant.helpers.aiohttp_client.async_aiohttp_proxy_stream` [bad-argument-type] +ERROR homeassistant/components/amcrest/sensor.py:9:1-33: Could not find import of `amcrest` [missing-import] +ERROR homeassistant/components/amcrest/sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/sensor.py:34:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/sensor.py:35:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/sensor.py:38:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/sensor.py:39:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/sensor.py:41:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/switch.py:22:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/switch.py:23:9-13: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/amcrest/switch.py:24:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ampio/air_quality.py:8:1-28: Could not find import of `asmog` [missing-import] +ERROR homeassistant/components/analytics/analytics.py:154:10-32: Function declared to return `AnalyticsModifications` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/analytics/analytics.py:167:16-60: Returned type `ModuleType` is not assignable to declared return type `AnalyticsPlatformProtocol | None` [bad-return] +ERROR homeassistant/components/analytics/analytics.py:407:33-48: `enabled_domains` may be uninitialized [unbound-name] +ERROR homeassistant/components/analytics/analytics.py:412:35-50: `enabled_domains` may be uninitialized [unbound-name] +ERROR homeassistant/components/analytics_insights/config_flow.py:48:9-31: Class member `HomeassistantAnalyticsConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/analytics_insights/coordinator.py:46:5-17: Class member `HomeassistantAnalyticsDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/analytics_insights/sensor.py:37:9-12: Unexpected keyword argument `key` in function `AnalyticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/analytics_insights/sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `AnalyticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/analytics_insights/sensor.py:39:9-13: Unexpected keyword argument `name` in function `AnalyticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/analytics_insights/sensor.py:51:9-12: Unexpected keyword argument `key` in function `AnalyticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/analytics_insights/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `AnalyticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/analytics_insights/sensor.py:53:9-13: Unexpected keyword argument `name` in function `AnalyticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/analytics_insights/sensor.py:65:9-12: Unexpected keyword argument `key` in function `AnalyticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/analytics_insights/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `AnalyticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/analytics_insights/sensor.py:67:9-33: Unexpected keyword argument `translation_placeholders` in function `AnalyticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/analytics_insights/sensor.py:76:9-12: Unexpected keyword argument `key` in function `AnalyticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/analytics_insights/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `AnalyticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/analytics_insights/sensor.py:78:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AnalyticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/analytics_insights/sensor.py:84:9-12: Unexpected keyword argument `key` in function `AnalyticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/analytics_insights/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `AnalyticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/analytics_insights/sensor.py:86:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AnalyticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/analytics_insights/sensor.py:146:5-23: Class member `HomeassistantAnalyticsSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/analytics_insights/sensor.py:146:5-23: Class member `HomeassistantAnalyticsSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/android_ip_webcam/binary_sensor.py:18:5-8: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/binary_sensor.py:19:5-9: Unexpected keyword argument `name` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/binary_sensor.py:42:14-32: Class member `IPWebcamBinarySensor.entity_description` overrides parent class `AndroidIPCamBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/android_ip_webcam/coordinator.py:24:5-17: Class member `AndroidIPCamDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/android_ip_webcam/sensor.py:35:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:37:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:39:9-24: Unexpected keyword argument `entity_category` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:43:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:44:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:47:9-24: Unexpected keyword argument `entity_category` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:52:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:54:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:56:9-24: Unexpected keyword argument `entity_category` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:61:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:62:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:64:9-24: Unexpected keyword argument `entity_category` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:69:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:71:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:77:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:79:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:85:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:87:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:93:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:94:9-24: Unexpected keyword argument `translation_key` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:95:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:101:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:103:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:109:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:110:9-24: Unexpected keyword argument `translation_key` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:111:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:113:9-24: Unexpected keyword argument `entity_category` in function `AndroidIPWebcamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/sensor.py:132:14-45: Expected a type form, got instance of `list[str]` [not-a-type] +ERROR homeassistant/components/android_ip_webcam/sensor.py:145:5-23: Class member `IPWebcamSensor.entity_description` overrides parent class `AndroidIPCamBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/android_ip_webcam/sensor.py:145:5-23: Class member `IPWebcamSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/android_ip_webcam/switch.py:30:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:31:9-24: Unexpected keyword argument `translation_key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:32:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:33:9-24: Unexpected keyword argument `entity_category` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:38:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:39:9-24: Unexpected keyword argument `translation_key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:40:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:41:9-24: Unexpected keyword argument `entity_category` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:46:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:47:9-24: Unexpected keyword argument `translation_key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:48:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:49:9-24: Unexpected keyword argument `entity_category` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:54:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:55:9-24: Unexpected keyword argument `translation_key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:56:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:57:9-24: Unexpected keyword argument `entity_category` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:62:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:63:9-24: Unexpected keyword argument `translation_key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:64:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:65:9-24: Unexpected keyword argument `entity_category` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:70:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:71:9-24: Unexpected keyword argument `translation_key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:72:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:73:9-24: Unexpected keyword argument `entity_category` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:78:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:79:9-24: Unexpected keyword argument `translation_key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:80:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:81:9-24: Unexpected keyword argument `entity_category` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:86:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:87:9-24: Unexpected keyword argument `translation_key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:88:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:89:9-24: Unexpected keyword argument `entity_category` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:94:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:95:9-24: Unexpected keyword argument `translation_key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:96:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:97:9-24: Unexpected keyword argument `entity_category` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:102:9-12: Unexpected keyword argument `key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:103:9-24: Unexpected keyword argument `translation_key` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:104:9-13: Unexpected keyword argument `name` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:105:9-24: Unexpected keyword argument `entity_category` in function `AndroidIPWebcamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/android_ip_webcam/switch.py:136:5-23: Class member `IPWebcamSettingSwitch.entity_description` overrides parent class `AndroidIPCamBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/android_ip_webcam/switch.py:136:5-23: Class member `IPWebcamSettingSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/androidtv/__init__.py:224:15-29: Object of class `NoneType` has no attribute `adb_close` [missing-attribute] +ERROR homeassistant/components/androidtv/__init__.py:244:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/androidtv/config_flow.py:190:9-31: Class member `AndroidTVFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/androidtv/media_player.py:72:5-23: Class member `ADBDevice._attr_device_class` overrides parent class `AndroidTVEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/androidtv/media_player.py:319:5-9: Class member `AndroidTVDevice.aftv` overrides parent class `ADBDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/androidtv/media_player.py:412:5-9: Class member `FireTVDevice.aftv` overrides parent class `ADBDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/androidtv_remote/config_flow.py:249:9-31: Class member `AndroidTVRemoteConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/androidtv_remote/media_player.py:44:5-23: Class member `AndroidTVRemoteMediaPlayerEntity._attr_device_class` overrides parent class `AndroidTVRemoteBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/androidtv_remote/media_player.py:45:5-29: Class member `AndroidTVRemoteMediaPlayerEntity._attr_supported_features` overrides parent class `AndroidTVRemoteBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/androidtv_remote/remote.py:43:5-29: Class member `AndroidTVRemoteEntity._attr_supported_features` overrides parent class `AndroidTVRemoteBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/anel_pwrctrl/switch.py:9:1-54: Could not find import of `anel_pwrctrl` [missing-import] +ERROR homeassistant/components/anova/__init__.py:72:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/anova/coordinator.py:35:5-17: Class member `AnovaCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/anova/sensor.py:34:9-12: Unexpected keyword argument `key` in function `AnovaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/anova/sensor.py:37:9-24: Unexpected keyword argument `translation_key` in function `AnovaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/anova/sensor.py:42:9-12: Unexpected keyword argument `key` in function `AnovaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/anova/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `AnovaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/anova/sensor.py:49:9-12: Unexpected keyword argument `key` in function `AnovaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/anova/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `AnovaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/anova/sensor.py:56:9-12: Unexpected keyword argument `key` in function `AnovaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/anova/sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `AnovaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/anova/sensor.py:64:9-12: Unexpected keyword argument `key` in function `AnovaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/anova/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `AnovaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/anova/sensor.py:71:9-12: Unexpected keyword argument `key` in function `AnovaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/anova/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `AnovaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/anova/sensor.py:79:9-12: Unexpected keyword argument `key` in function `AnovaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/anova/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `AnovaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/anova/sensor.py:87:9-12: Unexpected keyword argument `key` in function `AnovaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/anova/sensor.py:91:9-24: Unexpected keyword argument `translation_key` in function `AnovaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/anova/sensor.py:137:5-23: Class member `AnovaSensor.entity_description` overrides parent class `AnovaDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/anova/sensor.py:137:5-23: Class member `AnovaSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/anthemav/config_flow.py:74:47-70: Object of class `Protocol` has no attribute `macaddress` [missing-attribute] +ERROR homeassistant/components/anthemav/config_flow.py:75:38-56: Object of class `Protocol` has no attribute `model` [missing-attribute] +ERROR homeassistant/components/anthemav/media_player.py:44:13-25: Argument `Protocol` is not assignable to parameter `avr` with type `AVR` in function `AnthemAVR.__init__` [bad-argument-type] +ERROR homeassistant/components/anthemav/media_player.py:46:28-46: Object of class `Protocol` has no attribute `zones` [missing-attribute] +ERROR homeassistant/components/anthropic/ai_task.py:60:16-44: Object of class `ToolResultContent` has no attribute `content` [missing-attribute] +ERROR homeassistant/components/anthropic/entity.py:213:54-77: Argument `Iterable[RedactedThinkingBlock | ServerToolUseBlock | TextBlock | ThinkingBlock | ToolUseBlock | WebSearchToolResultBlock | TypedDict[DocumentBlockParam] | TypedDict[ImageBlockParam] | TypedDict[RedactedThinkingBlockParam] | TypedDict[SearchResultBlockParam] | TypedDict[ServerToolUseBlockParam] | TypedDict[TextBlockParam] | TypedDict[ThinkingBlockParam] | TypedDict[ToolResultBlockParam] | TypedDict[ToolUseBlockParam] | TypedDict[WebSearchToolResultBlockParam]] | str` is not assignable to parameter `text` with type `str` in function `anthropic.types.text_block_param.TextBlockParam.__init__` [bad-argument-type] +ERROR homeassistant/components/anthropic/entity.py:229:54-77: Argument `Iterable[RedactedThinkingBlock | ServerToolUseBlock | TextBlock | ThinkingBlock | ToolUseBlock | WebSearchToolResultBlock | TypedDict[DocumentBlockParam] | TypedDict[ImageBlockParam] | TypedDict[RedactedThinkingBlockParam] | TypedDict[SearchResultBlockParam] | TypedDict[ServerToolUseBlockParam] | TypedDict[TextBlockParam] | TypedDict[ThinkingBlockParam] | TypedDict[ToolResultBlockParam] | TypedDict[ToolUseBlockParam] | TypedDict[WebSearchToolResultBlockParam]] | str` is not assignable to parameter `text` with type `str` in function `anthropic.types.text_block_param.TextBlockParam.__init__` [bad-argument-type] +ERROR homeassistant/components/anthropic/entity.py:261:58-81: Argument `Iterable[RedactedThinkingBlock | ServerToolUseBlock | TextBlock | ThinkingBlock | ToolUseBlock | WebSearchToolResultBlock | TypedDict[DocumentBlockParam] | TypedDict[ImageBlockParam] | TypedDict[RedactedThinkingBlockParam] | TypedDict[SearchResultBlockParam] | TypedDict[ServerToolUseBlockParam] | TypedDict[TextBlockParam] | TypedDict[ThinkingBlockParam] | TypedDict[ToolResultBlockParam] | TypedDict[ToolUseBlockParam] | TypedDict[WebSearchToolResultBlockParam]] | str` is not assignable to parameter `text` with type `str` in function `anthropic.types.text_block_param.TextBlockParam.__init__` [bad-argument-type] +ERROR homeassistant/components/anthropic/entity.py:399:24-35: `first_block` is uninitialized [unbound-name] +ERROR homeassistant/components/anthropic/entity.py:410:21-32: `first_block` is uninitialized [unbound-name] +ERROR homeassistant/components/anthropic/entity.py:431:20-31: `first_block` is uninitialized [unbound-name] +ERROR homeassistant/components/anthropic/entity.py:507:21-38: `current_tool_args` is uninitialized [unbound-name] +ERROR homeassistant/components/anthropic/entity.py:529:40-57: `current_tool_args` is uninitialized [unbound-name] +ERROR homeassistant/components/anthropic/entity.py:529:62-79: `current_tool_args` is uninitialized [unbound-name] +ERROR homeassistant/components/anthropic/entity.py:809:46-69: Argument `() -> Iterable[TypedDict[DocumentBlockParam] | TypedDict[ImageBlockParam]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/aosmith/coordinator.py:39:5-17: Class member `AOSmithStatusCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aosmith/coordinator.py:72:18-33: Class member `AOSmithStatusCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aosmith/coordinator.py:72:36-49: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@AOSmithStatusCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/aosmith/coordinator.py:74:36-52: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@AOSmithStatusCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/aosmith/coordinator.py:82:5-17: Class member `AOSmithEnergyCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aosmith/sensor.py:35:9-12: Unexpected keyword argument `key` in function `AOSmithStatusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aosmith/sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `AOSmithStatusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aosmith/sensor.py:66:5-23: Class member `AOSmithStatusSensorEntity.entity_description` overrides parent class `AOSmithStatusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aosmith/sensor.py:66:5-23: Class member `AOSmithStatusSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aosmith/sensor.py:89:5-23: Class member `AOSmithEnergySensorEntity._attr_device_class` overrides parent class `AOSmithEnergyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/apcupsd/binary_sensor.py:20:5-8: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/binary_sensor.py:21:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/binary_sensor.py:43:7-19: Field `entity_description` is declared `EntityDescription` in ancestor `class APCUPSdEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/apcupsd/coordinator.py:62:5-17: Class member `APCUPSdCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/apcupsd/sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:39:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:49:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:51:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:52:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:55:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:57:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:58:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:61:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:63:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:66:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:70:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:74:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:81:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:87:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:89:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:90:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:93:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:94:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:100:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:101:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:102:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:103:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:106:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:108:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:111:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:113:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:116:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:117:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:118:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:119:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:122:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:124:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:127:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:129:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:132:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:133:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:134:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:135:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:138:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:139:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:140:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:143:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:144:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:145:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:146:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:149:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:150:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:153:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:156:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:157:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:158:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:159:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:162:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:163:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:169:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:170:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:176:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:177:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:180:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:181:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:182:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:183:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:186:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:187:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:188:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:191:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:192:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:198:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:199:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:205:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:206:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:211:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:212:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:216:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:217:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:220:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:223:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:224:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:225:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:226:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:229:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:230:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:231:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:234:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:235:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:240:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:241:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:242:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:245:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:246:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:248:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:251:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:252:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:257:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:258:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:259:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:262:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:263:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:264:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:265:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:268:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:269:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:272:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:275:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:276:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:279:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:282:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:283:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:286:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:289:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:290:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:293:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:296:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:297:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:300:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:303:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:304:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:308:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:309:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:315:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:316:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:322:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:323:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:324:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:325:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:328:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:329:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:330:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:331:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:334:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:335:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:336:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:337:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:340:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:341:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:343:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:346:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:347:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:350:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:351:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:352:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:353:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:356:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:357:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:358:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:359:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:362:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:363:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:364:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:367:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:368:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:369:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:370:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:373:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:374:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:377:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:378:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:379:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:382:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:383:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:389:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:390:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:396:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:397:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:398:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:401:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:402:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:403:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:404:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:407:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:408:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:409:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:410:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:413:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:414:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:415:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:418:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:419:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:420:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:423:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:424:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:425:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apcupsd/sensor.py:497:7-20: Field `entity_description` is declared `EntityDescription` in ancestor `class APCUPSdEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/api/__init__.py:444:37-55: `response_requested` may be uninitialized [unbound-name] +ERROR homeassistant/components/api/__init__.py:452:12-30: `response_requested` may be uninitialized [unbound-name] +ERROR homeassistant/components/apple_tv/__init__.py:372:13-373:26: Object of class `set` has no attribute `removesuffix` [missing-attribute] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `config_subentry_id` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `configuration_url` with type `URL | UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `connections` with type `UndefinedType | set[tuple[str, str]] | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `created_at` with type `UndefinedType | datetime | str` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `default_manufacturer` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `default_model` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `default_name` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `disabled_by` with type `DeviceEntryDisabler | UndefinedType | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `entry_type` with type `DeviceEntryType | UndefinedType | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `hw_version` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `identifiers` with type `UndefinedType | set[tuple[str, str]] | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `manufacturer` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `model` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `model_id` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `modified_at` with type `UndefinedType | datetime | str` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `name` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `serial_number` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `suggested_area` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `sw_version` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `translation_key` with type `str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `translation_placeholders` with type `Mapping[str, str] | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/__init__.py:392:57-64: Unpacked keyword argument `set[tuple[str, str | None]] | str | Any` is not assignable to parameter `via_device` with type `UndefinedType | tuple[str, str] | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/apple_tv/config_flow.py:113:9-31: Class member `AppleTVConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/apple_tv/media_player.py:117:5-29: Class member `AppleTvMediaPlayer._attr_supported_features` overrides parent class `AppleTVEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/application_credentials/__init__.py:139:25-36: Cannot set item in `dict[str, ClientCredential]` [unsupported-operation] +ERROR homeassistant/components/application_credentials/__init__.py:270:10-29: Function declared to return `AuthorizationServer` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/application_credentials/__init__.py:275:10-63: Function declared to return `AbstractOAuth2Implementation` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/application_credentials/__init__.py:280:10-24: Function declared to return `dict[str, str]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/application_credentials/__init__.py:309:12-20: Returned type `ModuleType` is not assignable to declared return type `ApplicationCredentialsProtocol | None` [bad-return] +ERROR homeassistant/components/aprilaire/climate.py:115:16-56: Returned type `int` is not assignable to declared return type `ClimateEntityFeature` [bad-return] +ERROR homeassistant/components/aprilaire/entity.py:37:27-39:69: `Any | None` is not assignable to `bool` [bad-assignment] +ERROR homeassistant/components/aprilaire/entity.py:41:25-75: `Any | None` is not assignable to `bool` [bad-assignment] +ERROR homeassistant/components/aprilaire/humidifier.py:56:17-20: Unexpected keyword argument `key` in function `AprilaireHumidifierDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/humidifier.py:57:17-32: Unexpected keyword argument `translation_key` in function `AprilaireHumidifierDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/humidifier.py:75:17-20: Unexpected keyword argument `key` in function `AprilaireHumidifierDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/humidifier.py:76:17-32: Unexpected keyword argument `translation_key` in function `AprilaireHumidifierDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/humidifier.py:116:5-23: Class member `AprilaireHumidifierEntity.entity_description` overrides parent class `BaseAprilaireEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aprilaire/humidifier.py:116:5-23: Class member `AprilaireHumidifierEntity.entity_description` overrides parent class `HumidifierEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aprilaire/select.py:41:21-24: Unexpected keyword argument `key` in function `AprilaireSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/select.py:42:21-36: Unexpected keyword argument `translation_key` in function `AprilaireSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/select.py:50:21-24: Unexpected keyword argument `key` in function `AprilaireSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/select.py:51:21-36: Unexpected keyword argument `translation_key` in function `AprilaireSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/select.py:65:21-24: Unexpected keyword argument `key` in function `AprilaireSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/select.py:66:21-36: Unexpected keyword argument `translation_key` in function `AprilaireSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/select.py:74:21-24: Unexpected keyword argument `key` in function `AprilaireSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/select.py:75:21-36: Unexpected keyword argument `translation_key` in function `AprilaireSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/select.py:105:5-23: Class member `AprilaireSelectEntity.entity_description` overrides parent class `BaseAprilaireEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aprilaire/select.py:105:5-23: Class member `AprilaireSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aprilaire/sensor.py:124:9-12: Unexpected keyword argument `key` in function `AprilaireSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `AprilaireSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/sensor.py:133:9-12: Unexpected keyword argument `key` in function `AprilaireSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/sensor.py:134:9-24: Unexpected keyword argument `translation_key` in function `AprilaireSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/sensor.py:145:9-12: Unexpected keyword argument `key` in function `AprilaireSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/sensor.py:146:9-24: Unexpected keyword argument `translation_key` in function `AprilaireSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/sensor.py:154:9-12: Unexpected keyword argument `key` in function `AprilaireSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/sensor.py:155:9-24: Unexpected keyword argument `translation_key` in function `AprilaireSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/sensor.py:166:9-12: Unexpected keyword argument `key` in function `AprilaireStatusSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/sensor.py:167:9-24: Unexpected keyword argument `translation_key` in function `AprilaireStatusSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/sensor.py:175:9-12: Unexpected keyword argument `key` in function `AprilaireStatusSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/sensor.py:176:9-24: Unexpected keyword argument `translation_key` in function `AprilaireStatusSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/sensor.py:184:9-12: Unexpected keyword argument `key` in function `AprilaireStatusSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/sensor.py:185:9-24: Unexpected keyword argument `translation_key` in function `AprilaireStatusSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/sensor.py:193:9-12: Unexpected keyword argument `key` in function `AprilaireStatusSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/sensor.py:194:9-24: Unexpected keyword argument `translation_key` in function `AprilaireStatusSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/sensor.py:202:9-12: Unexpected keyword argument `key` in function `AprilaireStatusSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/sensor.py:203:9-24: Unexpected keyword argument `translation_key` in function `AprilaireStatusSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aprilaire/sensor.py:216:5-23: Class member `BaseAprilaireSensor.entity_description` overrides parent class `BaseAprilaireEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aprilaire/sensor.py:216:5-23: Class member `BaseAprilaireSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aprilaire/sensor.py:298:5-23: Class member `AprilaireStatusSensor.entity_description` overrides parent class `BaseAprilaireSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/apsystems/binary_sensor.py:33:9-12: Unexpected keyword argument `key` in function `ApsystemsLocalApiBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/binary_sensor.py:34:9-24: Unexpected keyword argument `translation_key` in function `ApsystemsLocalApiBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/binary_sensor.py:36:9-24: Unexpected keyword argument `entity_category` in function `ApsystemsLocalApiBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/binary_sensor.py:40:9-12: Unexpected keyword argument `key` in function `ApsystemsLocalApiBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/binary_sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `ApsystemsLocalApiBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/binary_sensor.py:43:9-24: Unexpected keyword argument `entity_category` in function `ApsystemsLocalApiBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/binary_sensor.py:47:9-12: Unexpected keyword argument `key` in function `ApsystemsLocalApiBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/binary_sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `ApsystemsLocalApiBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/binary_sensor.py:50:9-24: Unexpected keyword argument `entity_category` in function `ApsystemsLocalApiBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/binary_sensor.py:54:9-12: Unexpected keyword argument `key` in function `ApsystemsLocalApiBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/binary_sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `ApsystemsLocalApiBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/binary_sensor.py:57:9-24: Unexpected keyword argument `entity_category` in function `ApsystemsLocalApiBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/binary_sensor.py:85:5-23: Class member `ApSystemsBinarySensorWithDescription.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/apsystems/binary_sensor.py:85:5-23: Class member `ApSystemsBinarySensorWithDescription.entity_description` overrides parent class `ApSystemsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/apsystems/binary_sensor.py:85:5-23: Class member `ApSystemsBinarySensorWithDescription.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/apsystems/config_flow.py:47:48-68: Object of class `NoneType` has no attribute `deviceId` [missing-attribute] +ERROR homeassistant/components/apsystems/coordinator.py:44:5-17: Class member `ApSystemsDataCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/apsystems/coordinator.py:69:30-50: Object of class `NoneType` has no attribute `maxPower` [missing-attribute] +ERROR homeassistant/components/apsystems/coordinator.py:70:30-50: Object of class `NoneType` has no attribute `minPower` [missing-attribute] +ERROR homeassistant/components/apsystems/coordinator.py:71:31-49: Object of class `NoneType` has no attribute `devVer` [missing-attribute] +ERROR homeassistant/components/apsystems/coordinator.py:72:31-58: Object of class `NoneType` has no attribute `isBatterySystem` [missing-attribute] +ERROR homeassistant/components/apsystems/coordinator.py:82:48-59: Argument `ReturnOutputData | None` is not assignable to parameter `output_data` with type `ReturnOutputData` in function `ApSystemsSensorData.__init__` [bad-argument-type] +ERROR homeassistant/components/apsystems/coordinator.py:82:72-82: Argument `ReturnAlarmInfo | None` is not assignable to parameter `alarm_info` with type `ReturnAlarmInfo` in function `ApSystemsSensorData.__init__` [bad-argument-type] +ERROR homeassistant/components/apsystems/number.py:32:5-23: Class member `ApSystemsMaxOutputNumber._attr_device_class` overrides parent class `ApSystemsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/apsystems/sensor.py:35:9-12: Unexpected keyword argument `key` in function `ApsystemsLocalApiSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `ApsystemsLocalApiSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/sensor.py:43:9-12: Unexpected keyword argument `key` in function `ApsystemsLocalApiSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `ApsystemsLocalApiSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/sensor.py:51:9-12: Unexpected keyword argument `key` in function `ApsystemsLocalApiSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `ApsystemsLocalApiSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/sensor.py:59:9-12: Unexpected keyword argument `key` in function `ApsystemsLocalApiSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `ApsystemsLocalApiSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/sensor.py:67:9-12: Unexpected keyword argument `key` in function `ApsystemsLocalApiSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `ApsystemsLocalApiSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/sensor.py:75:9-12: Unexpected keyword argument `key` in function `ApsystemsLocalApiSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `ApsystemsLocalApiSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/sensor.py:83:9-12: Unexpected keyword argument `key` in function `ApsystemsLocalApiSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/sensor.py:84:9-24: Unexpected keyword argument `translation_key` in function `ApsystemsLocalApiSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/sensor.py:91:9-12: Unexpected keyword argument `key` in function `ApsystemsLocalApiSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `ApsystemsLocalApiSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/sensor.py:99:9-12: Unexpected keyword argument `key` in function `ApsystemsLocalApiSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `ApsystemsLocalApiSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/apsystems/sensor.py:132:5-23: Class member `ApSystemsSensorWithDescription.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/apsystems/sensor.py:132:5-23: Class member `ApSystemsSensorWithDescription.entity_description` overrides parent class `ApSystemsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/apsystems/sensor.py:132:5-23: Class member `ApSystemsSensorWithDescription.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/apsystems/switch.py:31:5-23: Class member `ApSystemsInverterSwitch._attr_device_class` overrides parent class `ApSystemsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aquacell/coordinator.py:35:5-17: Class member `AquacellCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aquacell/sensor.py:37:9-12: Unexpected keyword argument `key` in function `SoftenerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aquacell/sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `SoftenerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aquacell/sensor.py:44:9-12: Unexpected keyword argument `key` in function `SoftenerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aquacell/sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `SoftenerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aquacell/sensor.py:51:9-12: Unexpected keyword argument `key` in function `SoftenerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aquacell/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `SoftenerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aquacell/sensor.py:58:9-12: Unexpected keyword argument `key` in function `SoftenerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aquacell/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `SoftenerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aquacell/sensor.py:65:9-12: Unexpected keyword argument `key` in function `SoftenerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aquacell/sensor.py:71:9-12: Unexpected keyword argument `key` in function `SoftenerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aquacell/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `SoftenerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aquacell/sensor.py:82:9-12: Unexpected keyword argument `key` in function `SoftenerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aquacell/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `SoftenerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aquacell/sensor.py:107:5-23: Class member `SoftenerSensor.entity_description` overrides parent class `AquacellEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aquacell/sensor.py:107:5-23: Class member `SoftenerSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aqualogic/__init__.py:10:1-37: Could not find import of `aqualogic.core` [missing-import] +ERROR homeassistant/components/aqualogic/sensor.py:41:9-12: Unexpected keyword argument `key` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:42:9-13: Unexpected keyword argument `name` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:48:9-12: Unexpected keyword argument `key` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:49:9-13: Unexpected keyword argument `name` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:52:9-13: Unexpected keyword argument `icon` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:56:9-12: Unexpected keyword argument `key` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:57:9-13: Unexpected keyword argument `name` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:60:9-13: Unexpected keyword argument `icon` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:64:9-12: Unexpected keyword argument `key` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:65:9-13: Unexpected keyword argument `name` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:68:9-13: Unexpected keyword argument `icon` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:71:9-12: Unexpected keyword argument `key` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:72:9-13: Unexpected keyword argument `name` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:75:9-13: Unexpected keyword argument `icon` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:78:9-12: Unexpected keyword argument `key` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:79:9-13: Unexpected keyword argument `name` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:82:9-13: Unexpected keyword argument `icon` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:85:9-12: Unexpected keyword argument `key` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:86:9-13: Unexpected keyword argument `name` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:89:9-13: Unexpected keyword argument `icon` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:92:9-12: Unexpected keyword argument `key` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:93:9-13: Unexpected keyword argument `name` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:99:9-12: Unexpected keyword argument `key` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:100:9-13: Unexpected keyword argument `name` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:101:9-13: Unexpected keyword argument `icon` in function `AquaLogicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aqualogic/sensor.py:138:5-23: Class member `AquaLogicSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aqualogic/switch.py:7:1-34: Could not find import of `aqualogic.core` [missing-import] +ERROR homeassistant/components/aquostv/media_player.py:9:8-22: Could not find import of `sharp_aquos_rc` [missing-import] +ERROR homeassistant/components/aranet/sensor.py:51:5-9: Class member `AranetSensorEntityDescription.name` overrides parent class `SensorEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aranet/sensor.py:57:9-12: Unexpected keyword argument `key` in function `AranetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aranet/sensor.py:64:9-12: Unexpected keyword argument `key` in function `AranetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aranet/sensor.py:71:9-12: Unexpected keyword argument `key` in function `AranetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aranet/sensor.py:78:9-12: Unexpected keyword argument `key` in function `AranetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aranet/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `AranetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aranet/sensor.py:85:9-12: Unexpected keyword argument `key` in function `AranetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aranet/sensor.py:92:9-12: Unexpected keyword argument `key` in function `AranetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aranet/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `AranetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aranet/sensor.py:101:9-12: Unexpected keyword argument `key` in function `AranetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aranet/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `AranetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aranet/sensor.py:110:9-12: Unexpected keyword argument `key` in function `AranetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aranet/sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `AranetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aranet/sensor.py:117:9-12: Unexpected keyword argument `key` in function `AranetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aranet/sensor.py:122:9-24: Unexpected keyword argument `entity_category` in function `AranetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aranet/sensor.py:125:9-12: Unexpected keyword argument `key` in function `AranetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aranet/sensor.py:131:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AranetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aranet/sensor.py:132:9-24: Unexpected keyword argument `entity_category` in function `AranetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aranet/sensor.py:149:35-37: Expected 0 positional arguments, got 1 in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-count] +ERROR homeassistant/components/aranet/sensor.py:201:7-35: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/arest/sensor.py:172:39-53: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/arris_tg2492lg/device_tracker.py:6:1-46: Could not find import of `arris_tg2492lg` [missing-import] +ERROR homeassistant/components/arve/config_flow.py:38:48-67: Argument `int` is not assignable to parameter `unique_id` with type `str | None` in function `homeassistant.config_entries.ConfigFlow.async_set_unique_id` [bad-argument-type] +ERROR homeassistant/components/arve/coordinator.py:30:5-17: Class member `ArveCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/arve/coordinator.py:49:15-33: Class member `ArveCoordinator._async_update_data` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/arve/entity.py:47:13-63: `in` is not supported between `str` and `ArveSensProData` [not-iterable] +ERROR homeassistant/components/arve/entity.py:53:16-64: Cannot index into `ArveSensProData` [bad-index] +ERROR homeassistant/components/arve/sensor.py:36:9-12: Unexpected keyword argument `key` in function `ArveDeviceEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/arve/sensor.py:39:18-49: Argument `(arve_data: ArveSensProData) -> float | None` is not assignable to parameter `value_fn` with type `(ArveSensProData) -> float | int` in function `ArveDeviceEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/arve/sensor.py:43:9-12: Unexpected keyword argument `key` in function `ArveDeviceEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/arve/sensor.py:45:18-49: Argument `(arve_data: ArveSensProData) -> int | None` is not assignable to parameter `value_fn` with type `(ArveSensProData) -> float | int` in function `ArveDeviceEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/arve/sensor.py:49:9-12: Unexpected keyword argument `key` in function `ArveDeviceEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/arve/sensor.py:52:18-54: Argument `(arve_data: ArveSensProData) -> float | None` is not assignable to parameter `value_fn` with type `(ArveSensProData) -> float | int` in function `ArveDeviceEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/arve/sensor.py:56:9-12: Unexpected keyword argument `key` in function `ArveDeviceEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/arve/sensor.py:59:18-50: Argument `(arve_data: ArveSensProData) -> float | None` is not assignable to parameter `value_fn` with type `(ArveSensProData) -> float | int` in function `ArveDeviceEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/arve/sensor.py:63:9-12: Unexpected keyword argument `key` in function `ArveDeviceEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/arve/sensor.py:66:18-50: Argument `(arve_data: ArveSensProData) -> float | None` is not assignable to parameter `value_fn` with type `(ArveSensProData) -> float | int` in function `ArveDeviceEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/arve/sensor.py:70:9-12: Unexpected keyword argument `key` in function `ArveDeviceEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/arve/sensor.py:73:18-57: Argument `(arve_data: ArveSensProData) -> float | None` is not assignable to parameter `value_fn` with type `(ArveSensProData) -> float | int` in function `ArveDeviceEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/arve/sensor.py:77:9-12: Unexpected keyword argument `key` in function `ArveDeviceEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/arve/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `ArveDeviceEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/arve/sensor.py:79:18-50: Argument `(arve_data: ArveSensProData) -> int | None` is not assignable to parameter `value_fn` with type `(ArveSensProData) -> float | int` in function `ArveDeviceEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/arve/sensor.py:103:5-23: Class member `ArveDevice.entity_description` overrides parent class `ArveDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/arve/sensor.py:103:5-23: Class member `ArveDevice.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/arwn/sensor.py:154:35-40: `store` may be uninitialized [unbound-name] +ERROR homeassistant/components/arwn/sensor.py:157:17-22: `store` may be uninitialized [unbound-name] +ERROR homeassistant/components/arwn/sensor.py:168:17-22: `store` may be uninitialized [unbound-name] +ERROR homeassistant/components/aseko_pool_live/binary_sensor.py:30:9-12: Unexpected keyword argument `key` in function `AsekoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aseko_pool_live/binary_sensor.py:31:9-24: Unexpected keyword argument `translation_key` in function `AsekoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aseko_pool_live/binary_sensor.py:56:5-23: Class member `AsekoBinarySensorEntity.entity_description` overrides parent class `AsekoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aseko_pool_live/binary_sensor.py:56:5-23: Class member `AsekoBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aseko_pool_live/coordinator.py:24:5-17: Class member `AsekoDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aseko_pool_live/sensor.py:34:9-12: Unexpected keyword argument `key` in function `AsekoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aseko_pool_live/sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `AsekoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aseko_pool_live/sensor.py:42:9-12: Unexpected keyword argument `key` in function `AsekoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aseko_pool_live/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `AsekoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aseko_pool_live/sensor.py:49:9-12: Unexpected keyword argument `key` in function `AsekoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aseko_pool_live/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `AsekoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aseko_pool_live/sensor.py:56:9-12: Unexpected keyword argument `key` in function `AsekoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aseko_pool_live/sensor.py:62:9-12: Unexpected keyword argument `key` in function `AsekoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aseko_pool_live/sensor.py:63:9-24: Unexpected keyword argument `translation_key` in function `AsekoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aseko_pool_live/sensor.py:69:9-12: Unexpected keyword argument `key` in function `AsekoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aseko_pool_live/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `AsekoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aseko_pool_live/sensor.py:76:9-12: Unexpected keyword argument `key` in function `AsekoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aseko_pool_live/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `AsekoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aseko_pool_live/sensor.py:105:5-23: Class member `AsekoSensorEntity.entity_description` overrides parent class `AsekoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aseko_pool_live/sensor.py:105:5-23: Class member `AsekoSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/assist_pipeline/audio_enhancer.py:86:34-54: Object of class `NoneType` has no attribute `Process10ms` [missing-attribute] +ERROR homeassistant/components/assist_pipeline/audio_enhancer.py:90:21-53: Object of class `NoneType` has no attribute `Process10ms` [missing-attribute] +ERROR homeassistant/components/assist_pipeline/pipeline.py:1231:44-51: `content` may be uninitialized [unbound-name] +ERROR homeassistant/components/assist_pipeline/pipeline.py:1232:50-57: `content` may be uninitialized [unbound-name] +ERROR homeassistant/components/assist_pipeline/pipeline.py:1251:47-67: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/assist_pipeline/pipeline.py:1602:31-43: No matching overload found for function `min` called with arguments: (Literal[32767], float) [no-matching-overload] +ERROR homeassistant/components/assist_pipeline/pipeline.py:1895:5-69: `TypedDict[SerializedPipelineStorageCollection]` is not assignable to upper bound `TypedDict[SerializedStorageCollection]` of type variable `_StoreT` [bad-specialization] +ERROR homeassistant/components/assist_pipeline/pipeline.py:1963:13-20: Key `items` is not defined in TypedDict `SerializedPipelineStorageCollection` [bad-typed-dict-key] +ERROR homeassistant/components/assist_pipeline/pipeline.py:2156:38-45: TypedDict `SerializedPipelineStorageCollection` does not have key `items` [bad-typed-dict-key] +ERROR homeassistant/components/assist_pipeline/pipeline.py:2211:9-34: Object of class `NoneType` has no attribute `pop` [missing-attribute] +ERROR homeassistant/components/assist_pipeline/select.py:63:5-23: Class member `AssistPipelineSelect.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/assist_pipeline/select.py:64:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/assist_pipeline/select.py:65:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/assist_pipeline/select.py:66:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/assist_pipeline/select.py:122:51-68: No matching overload found for function `dict.pop` called with arguments: (str | None, None) [no-matching-overload] +ERROR homeassistant/components/assist_pipeline/select.py:153:5-23: Class member `VadSensitivitySelect.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/assist_pipeline/select.py:154:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/assist_pipeline/select.py:155:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/assist_pipeline/select.py:156:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/assist_satellite/__init__.py:124:69-88: Unpacked keyword argument `Any | None` is not assignable to parameter `preannounce` with type `bool` in function `homeassistant.components.assist_satellite.entity.AssistSatelliteEntity.async_internal_ask_question` [bad-argument-type] +ERROR homeassistant/components/assist_satellite/__init__.py:124:69-88: Unpacked keyword argument `Any | None` is not assignable to parameter `preannounce_media_id` with type `str` in function `homeassistant.components.assist_satellite.entity.AssistSatelliteEntity.async_internal_ask_question` [bad-argument-type] +ERROR homeassistant/components/assist_satellite/connection_test.py:41:56-77: Argument `BoundMethod[Path, (self: Path) -> bytes]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/assist_satellite/entity.py:129:5-23: Class member `AssistSatelliteEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/assist_satellite/websocket_api.py:60:38-73: Object of class `NoneType` has no attribute `async_intercept_wake_word` [missing-attribute] +ERROR homeassistant/components/asuswrt/__init__.py:43:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/asuswrt/bridge.py:104:20-30: Expected a type form, got instance of `tuple[type[Exception], ...] | type[Exception]` [not-a-type] +ERROR homeassistant/components/asuswrt/config_flow.py:297:9-31: Class member `AsusWrtFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/asuswrt/diagnostics.py:65:9-59: Cannot set item in `list[Unknown]` [unsupported-operation] +ERROR homeassistant/components/asuswrt/diagnostics.py:76:9-49: Object of class `dict` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/asuswrt/helpers.py:41:16-20: Returned type `None` is not assignable to declared return type `T` [bad-return] +ERROR homeassistant/components/asuswrt/helpers.py:44:16-70: Returned type `dict[str, Any]` is not assignable to declared return type `T` [bad-return] +ERROR homeassistant/components/asuswrt/helpers.py:47:16-52:10: Returned type `list[str | Unknown]` is not assignable to declared return type `T` [bad-return] +ERROR homeassistant/components/asuswrt/sensor.py:56:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:58:9-33: Unexpected keyword argument `translation_placeholders` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:61:9-24: Unexpected keyword argument `entity_category` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:62:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:69:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:75:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:80:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:85:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:90:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:95:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:100:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:105:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:110:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:115:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:118:9-24: Unexpected keyword argument `entity_category` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:119:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:123:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:124:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:126:9-24: Unexpected keyword argument `entity_category` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:127:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:131:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:132:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:134:9-24: Unexpected keyword argument `entity_category` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:135:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:139:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:140:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:144:9-24: Unexpected keyword argument `entity_category` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:145:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:149:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:150:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:154:9-24: Unexpected keyword argument `entity_category` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:155:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:159:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:164:9-24: Unexpected keyword argument `entity_category` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:165:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:169:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:170:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:174:9-24: Unexpected keyword argument `entity_category` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:175:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:179:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:180:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:184:9-24: Unexpected keyword argument `entity_category` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:185:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:189:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:190:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:193:9-24: Unexpected keyword argument `entity_category` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:194:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:198:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:199:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:203:9-24: Unexpected keyword argument `entity_category` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:204:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:209:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:210:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:214:9-24: Unexpected keyword argument `entity_category` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:215:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:220:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:221:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:225:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:226:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:230:9-24: Unexpected keyword argument `entity_category` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:231:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:234:9-12: Unexpected keyword argument `key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:235:9-24: Unexpected keyword argument `translation_key` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:238:9-24: Unexpected keyword argument `entity_category` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:239:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AsusWrtSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/asuswrt/sensor.py:272:5-23: Class member `AsusWrtSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/asuswrt/sensor.py:272:5-23: Class member `AsusWrtSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/atag/climate.py:48:5-29: Class member `AtagThermostat._attr_supported_features` overrides parent class `AtagEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/atag/climate.py:55:39-73: Object of class `NoneType` has no attribute `temp_unit` [missing-attribute] +ERROR homeassistant/components/atag/climate.py:60:41-80: Object of class `NoneType` has no attribute `hvac_mode` [missing-attribute] +ERROR homeassistant/components/atag/climate.py:65:21-57: Object of class `NoneType` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/atag/climate.py:71:16-57: Object of class `NoneType` has no attribute `temperature` [missing-attribute] +ERROR homeassistant/components/atag/climate.py:76:16-64: Object of class `NoneType` has no attribute `target_temperature` [missing-attribute] +ERROR homeassistant/components/atag/climate.py:81:18-59: Object of class `NoneType` has no attribute `preset_mode` [missing-attribute] +ERROR homeassistant/components/atag/climate.py:86:15-53: Object of class `NoneType` has no attribute `set_temp` [missing-attribute] +ERROR homeassistant/components/atag/climate.py:91:15-58: Object of class `NoneType` has no attribute `set_hvac_mode` [missing-attribute] +ERROR homeassistant/components/atag/climate.py:96:15-60: Object of class `NoneType` has no attribute `set_preset_mode` [missing-attribute] +ERROR homeassistant/components/atag/config_flow.py:16:37-49: Module `pyatag.const` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/atag/coordinator.py:22:5-17: Class member `AtagDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/atag/sensor.py:45:12-45: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/atag/sensor.py:49:18-36: Class member `AtagSensor._attr_device_class` overrides parent class `AtagEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/atag/sensor.py:49:39-72: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/atag/sensor.py:50:12-45: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/atag/sensor.py:57:53-59:14: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/atag/sensor.py:64:16-54: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/atag/sensor.py:69:16-54: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/atag/water_heater.py:36:5-29: Class member `AtagWaterHeater._attr_supported_features` overrides parent class `AtagEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/atag/water_heater.py:42:16-53: Object of class `NoneType` has no attribute `temperature` [missing-attribute] +ERROR homeassistant/components/atag/water_heater.py:47:21-64: Object of class `NoneType` has no attribute `current_operation` [missing-attribute] +ERROR homeassistant/components/atag/water_heater.py:48:29-61: `in` is not supported between `Unknown` and `None` [not-iterable] +ERROR homeassistant/components/atag/water_heater.py:52:18-52: Object of class `NoneType` has no attribute `set_temp` [missing-attribute] +ERROR homeassistant/components/atag/water_heater.py:58:16-60: Object of class `NoneType` has no attribute `target_temperature` [missing-attribute] +ERROR homeassistant/components/atag/water_heater.py:63:16-50: Object of class `NoneType` has no attribute `max_temp` [missing-attribute] +ERROR homeassistant/components/atag/water_heater.py:68:16-50: Object of class `NoneType` has no attribute `min_temp` [missing-attribute] +ERROR homeassistant/components/aten_pe/switch.py:8:1-40: Could not find import of `atenpdu` [missing-import] +ERROR homeassistant/components/atome/sensor.py:8:1-53: Could not find import of `pyatome.client` [missing-import] +ERROR homeassistant/components/august/binary_sensor.py:52:5-8: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/august/binary_sensor.py:58:9-12: Unexpected keyword argument `key` in function `AugustDoorbellBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/august/binary_sensor.py:64:9-12: Unexpected keyword argument `key` in function `AugustDoorbellBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/august/binary_sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `AugustDoorbellBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/august/binary_sensor.py:72:9-12: Unexpected keyword argument `key` in function `AugustDoorbellBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/august/binary_sensor.py:74:9-24: Unexpected keyword argument `entity_category` in function `AugustDoorbellBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/august/binary_sensor.py:75:18-39: Argument `(data: AugustData, detail: DoorbellDetail | LockDetail) -> bool` is not assignable to parameter `value_fn` with type `(AugustData, DoorbellDetail | LockDetail) -> Activity | None` in function `AugustDoorbellBinarySensorEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/august/binary_sensor.py:83:9-12: Unexpected keyword argument `key` in function `AugustDoorbellBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/august/binary_sensor.py:84:9-24: Unexpected keyword argument `translation_key` in function `AugustDoorbellBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/august/binary_sensor.py:103:12-28: Object of class `DoorbellDetail` has no attribute `doorsense` [missing-attribute] +ERROR homeassistant/components/august/binary_sensor.py:106:12-27: Object of class `DoorbellDetail` has no attribute `doorbell` [missing-attribute] +ERROR homeassistant/components/august/binary_sensor.py:120:7-29: Field `entity_description` is declared `EntityDescription` in ancestor `class AugustDescriptionEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/august/binary_sensor.py:123:5-23: Class member `AugustDoorBinarySensor._attr_device_class` overrides parent class `AugustDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/august/binary_sensor.py:130:46-58: Argument `DoorbellDetail | LockDetail` is not assignable to parameter `lock_detail` with type `LockDetail` in function `yalexs.util.update_lock_detail_from_activity` [bad-argument-type] +ERROR homeassistant/components/august/binary_sensor.py:130:60-73: Argument `Activity` is not assignable to parameter `activity` with type `BridgeOperationActivity | DoorOperationActivity | LockOperationActivity` in function `yalexs.util.update_lock_detail_from_activity` [bad-argument-type] +ERROR homeassistant/components/august/binary_sensor.py:132:17-40: Object of class `DoorbellDetail` has no attribute `set_online` [missing-attribute] +ERROR homeassistant/components/august/binary_sensor.py:135:46-58: Argument `DoorbellDetail | LockDetail` is not assignable to parameter `lock_detail` with type `LockDetail` in function `yalexs.util.update_lock_detail_from_activity` [bad-argument-type] +ERROR homeassistant/components/august/binary_sensor.py:135:60-75: Argument `Activity` is not assignable to parameter `activity` with type `BridgeOperationActivity | DoorOperationActivity | LockOperationActivity` in function `yalexs.util.update_lock_detail_from_activity` [bad-argument-type] +ERROR homeassistant/components/august/binary_sensor.py:136:32-61: Object of class `DoorbellDetail` has no attribute `bridge_is_online` [missing-attribute] +ERROR homeassistant/components/august/binary_sensor.py:137:28-51: Object of class `DoorbellDetail` has no attribute `door_state` [missing-attribute] +ERROR homeassistant/components/august/binary_sensor.py:143:5-23: Class member `AugustDoorbellBinarySensor.entity_description` overrides parent class `AugustDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/august/binary_sensor.py:143:5-23: Class member `AugustDoorbellBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/august/camera.py:57:28-46: `int | str | Unknown | None` is not assignable to attribute `_attr_model` with type `str | None` [bad-assignment] +ERROR homeassistant/components/august/camera.py:62:16-45: Object of class `KeypadDetail` has no attribute `has_subscription` +Object of class `Lock` has no attribute `has_subscription` [missing-attribute] +ERROR homeassistant/components/august/camera.py:76:49-61: Argument `DoorbellDetail | LockDetail` is not assignable to parameter `doorbell_detail` with type `DoorbellDetail` in function `yalexs.util.update_doorbell_image_from_activity` [bad-argument-type] +ERROR homeassistant/components/august/camera.py:76:63-80: Argument `Activity` is not assignable to parameter `activity` with type `BridgeOperationActivity | DoorbellImageCaptureActivity | DoorbellMotionActivity` in function `yalexs.util.update_doorbell_image_from_activity` [bad-argument-type] +ERROR homeassistant/components/august/camera.py:84:35-57: Object of class `LockDetail` has no attribute `image_url` [missing-attribute] +ERROR homeassistant/components/august/camera.py:88:31-53: Object of class `LockDetail` has no attribute `image_url` [missing-attribute] +ERROR homeassistant/components/august/data.py:29:36-37:14: Missing argument `address` in function `yalexs_ble.const.YaleXSBLEDiscovery.__init__` [missing-argument] +ERROR homeassistant/components/august/data.py:29:36-37:14: Missing argument `serial` in function `yalexs_ble.const.YaleXSBLEDiscovery.__init__` [missing-argument] +ERROR homeassistant/components/august/data.py:29:36-37:14: Missing argument `key` in function `yalexs_ble.const.YaleXSBLEDiscovery.__init__` [missing-argument] +ERROR homeassistant/components/august/data.py:29:36-37:14: Missing argument `slot` in function `yalexs_ble.const.YaleXSBLEDiscovery.__init__` [missing-argument] +ERROR homeassistant/components/august/data.py:30:17-36:18: Expected argument `name` to be passed by name in function `yalexs_ble.const.YaleXSBLEDiscovery.__init__` [unexpected-positional-argument] +ERROR homeassistant/components/august/data.py:47:42-60: Argument `type[HomeAssistantError]` is not assignable to parameter `error_exception_class` with type `Exception` in function `yalexs.manager.data.YaleXSData.__init__` [bad-argument-type] +ERROR homeassistant/components/august/entity.py:43:19-31: Argument `int | str | Unknown | None` is not assignable to parameter `model` with type `str | None` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/august/entity.py:59:21-40: Object of class `DoorbellDetail` has no attribute `bridge` [missing-attribute] +ERROR homeassistant/components/august/entity.py:59:45-77: Object of class `object` has no attribute `hyper_bridge` [missing-attribute] +ERROR homeassistant/components/august/event.py:39:9-12: Unexpected keyword argument `key` in function `AugustEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/august/event.py:40:9-24: Unexpected keyword argument `translation_key` in function `AugustEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/august/event.py:50:9-12: Unexpected keyword argument `key` in function `AugustEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/august/event.py:51:9-24: Unexpected keyword argument `translation_key` in function `AugustEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/august/event.py:83:5-23: Class member `AugustEventEntity.entity_description` overrides parent class `AugustDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/august/event.py:83:5-23: Class member `AugustEventEntity.entity_description` overrides parent class `EventEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/august/lock.py:47:12-42: Object of class `DoorbellDetail` has no attribute `unlatch_supported` [missing-attribute] +ERROR homeassistant/components/august/lock.py:48:18-42: Class member `AugustLock._attr_supported_features` overrides parent class `AugustEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/august/lock.py:48:18-42: Class member `AugustLock._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/august/lock.py:73:17-41: Object of class `DoorbellDetail` has no attribute `lock_status` [missing-attribute] +ERROR homeassistant/components/august/lock.py:74:17-50: Object of class `DoorbellDetail` has no attribute `lock_status_datetime` [missing-attribute] +ERROR homeassistant/components/august/lock.py:79:50-62: Argument `DoorbellDetail | LockDetail` is not assignable to parameter `lock_detail` with type `LockDetail` in function `yalexs.util.update_lock_detail_from_activity` [bad-argument-type] +ERROR homeassistant/components/august/lock.py:79:64-77: Argument `BridgeOperationActivity | DoorOperationActivity | DoorbellDingActivity | DoorbellImageCaptureActivity | DoorbellMotionActivity | DoorbellViewActivity | LockOperationActivity` is not assignable to parameter `activity` with type `BridgeOperationActivity | DoorOperationActivity | LockOperationActivity` in function `yalexs.util.update_lock_detail_from_activity` [bad-argument-type] +ERROR homeassistant/components/august/lock.py:89:32-61: Object of class `DoorbellDetail` has no attribute `bridge_is_online` [missing-attribute] +ERROR homeassistant/components/august/lock.py:91:33-57: Object of class `DoorbellDetail` has no attribute `lock_status` [missing-attribute] +ERROR homeassistant/components/august/lock.py:92:33-57: Object of class `DoorbellDetail` has no attribute `lock_status` [missing-attribute] +ERROR homeassistant/components/august/lock.py:101:37-62: Object of class `Activity` has no attribute `operated_by` [missing-attribute] +ERROR homeassistant/components/august/lock.py:106:13-43: Argument `Activity | None` is not assignable to parameter `activity1` with type `BridgeOperationActivity | DoorOperationActivity | LockOperationActivity | None` in function `yalexs.util.get_latest_activity` [bad-argument-type] +ERROR homeassistant/components/august/lock.py:106:45-58: `lock_activity` may be uninitialized [unbound-name] +ERROR homeassistant/components/august/lock.py:106:45-58: Argument `Activity | None` is not assignable to parameter `activity2` with type `BridgeOperationActivity | DoorOperationActivity | LockOperationActivity | None` in function `yalexs.util.get_latest_activity` [bad-argument-type] +ERROR homeassistant/components/august/lock.py:109:17-40: Object of class `DoorbellDetail` has no attribute `set_online` [missing-attribute] +ERROR homeassistant/components/august/lock.py:110:46-52: Argument `DoorbellDetail | LockDetail` is not assignable to parameter `lock_detail` with type `LockDetail` in function `yalexs.util.update_lock_detail_from_activity` [bad-argument-type] +ERROR homeassistant/components/august/lock.py:113:46-52: Argument `DoorbellDetail | LockDetail` is not assignable to parameter `lock_detail` with type `LockDetail` in function `yalexs.util.update_lock_detail_from_activity` [bad-argument-type] +ERROR homeassistant/components/august/lock.py:113:54-69: Argument `Activity` is not assignable to parameter `activity` with type `BridgeOperationActivity | DoorOperationActivity | LockOperationActivity` in function `yalexs.util.update_lock_detail_from_activity` [bad-argument-type] +ERROR homeassistant/components/august/lock.py:128:22-35: Object of class `DoorbellDetail` has no attribute `keypad` [missing-attribute] +ERROR homeassistant/components/august/sensor.py:68:5-8: Unexpected keyword argument `key` in function `AugustSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/august/sensor.py:69:5-20: Unexpected keyword argument `entity_category` in function `AugustSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/august/sensor.py:75:5-8: Unexpected keyword argument `key` in function `AugustSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/august/sensor.py:76:5-20: Unexpected keyword argument `entity_category` in function `AugustSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/august/sensor.py:94:48-54: Argument `DoorbellDetail | LockDetail` is not assignable to parameter with type `LockDetail` [bad-argument-type] +ERROR homeassistant/components/august/sensor.py:100:22-35: Object of class `DoorbellDetail` has no attribute `keypad` [missing-attribute] +ERROR homeassistant/components/august/sensor.py:108:9-38: `Doorbell` is not assignable to upper bound `KeypadDetail | LockDetail` of type variable `T` [bad-specialization] +ERROR homeassistant/components/august/sensor.py:110:48-88: Argument `DoorbellDetail | LockDetail` is not assignable to parameter with type `LockDetail` [bad-argument-type] +ERROR homeassistant/components/august/sensor.py:205:5-23: Class member `AugustBatterySensor.entity_description` overrides parent class `AugustDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/august/sensor.py:205:5-23: Class member `AugustBatterySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/august/sensor.py:206:5-23: Class member `AugustBatterySensor._attr_device_class` overrides parent class `AugustDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/august/sensor.py:212:68-80: Argument `DoorbellDetail | LockDetail` is not assignable to parameter with type `T` [bad-argument-type] +ERROR homeassistant/components/august/util.py:38:12-17: Returned type `Literal[False]` is not assignable to declared return type `Activity | None` [bad-return] +ERROR homeassistant/components/aurora/config_flow.py:44:9-31: Class member `AuroraConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aurora/coordinator.py:27:5-17: Class member `AuroraDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aurora_abb_powerone/config_flow.py:53:12-33: Object of class `Serial` has no attribute `isOpen` [missing-attribute] +ERROR homeassistant/components/aurora_abb_powerone/config_flow.py:90:61-74: Argument `() -> tuple[list[str] | None, str | None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/aurora_abb_powerone/coordinator.py:24:5-17: Class member `AuroraAbbDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aurora_abb_powerone/coordinator.py:105:20-46: Object of class `Serial` has no attribute `isOpen` [missing-attribute] +ERROR homeassistant/components/aurora_abb_powerone/coordinator.py:112:55-72: Argument `BoundMethod[Self@AuroraAbbDataUpdateCoordinator, (self: Self@AuroraAbbDataUpdateCoordinator) -> dict[str, float]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:48:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:50:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:54:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:59:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:63:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:66:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:68:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:71:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:74:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:76:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:80:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:83:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:85:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:89:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:92:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:95:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:99:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:103:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:106:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:108:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:113:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:114:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:117:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:118:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:121:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aurora_abb_powerone/sensor.py:159:14-32: Class member `AuroraSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aussie_broadband/__init__.py:53:26-34: `list[dict[str, Any]]` is not assignable to attribute `runtime_data` with type `list[TypedDict[AussieBroadbandServiceData]]` [bad-assignment] +ERROR homeassistant/components/aussie_broadband/coordinator.py:37:5-17: Class member `AussieBroadbandDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aussie_broadband/coordinator.py:60:49-65: Argument `str` is not assignable to parameter `service_id` with type `int` in function `aussiebb.asyncio.AussieBB.get_usage` [bad-argument-type] +ERROR homeassistant/components/aussie_broadband/sensor.py:41:9-12: Unexpected keyword argument `key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:48:9-12: Unexpected keyword argument `key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:55:9-12: Unexpected keyword argument `key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:63:9-12: Unexpected keyword argument `key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:69:9-12: Unexpected keyword argument `key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:75:9-12: Unexpected keyword argument `key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:77:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:82:9-12: Unexpected keyword argument `key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:88:9-12: Unexpected keyword argument `key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:96:9-12: Unexpected keyword argument `key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:98:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:103:9-12: Unexpected keyword argument `key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:104:9-24: Unexpected keyword argument `translation_key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:105:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:111:9-12: Unexpected keyword argument `key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:116:9-12: Unexpected keyword argument `key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:117:9-24: Unexpected keyword argument `translation_key` in function `SensorValueEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/aussie_broadband/sensor.py:146:5-23: Class member `AussieBroadandSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aussie_broadband/sensor.py:146:5-23: Class member `AussieBroadandSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/autarco/coordinator.py:40:5-17: Class member `AutarcoDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/autarco/sensor.py:36:9-12: Unexpected keyword argument `key` in function `AutarcoBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:37:9-24: Unexpected keyword argument `translation_key` in function `AutarcoBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:44:9-12: Unexpected keyword argument `key` in function `AutarcoBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `AutarcoBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:52:9-12: Unexpected keyword argument `key` in function `AutarcoBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `AutarcoBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:60:9-12: Unexpected keyword argument `key` in function `AutarcoBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `AutarcoBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:68:9-12: Unexpected keyword argument `key` in function `AutarcoBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `AutarcoBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:76:9-12: Unexpected keyword argument `key` in function `AutarcoBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `AutarcoBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:84:9-12: Unexpected keyword argument `key` in function `AutarcoBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `AutarcoBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:92:9-12: Unexpected keyword argument `key` in function `AutarcoBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `AutarcoBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:111:9-12: Unexpected keyword argument `key` in function `AutarcoSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `AutarcoSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:119:9-12: Unexpected keyword argument `key` in function `AutarcoSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:120:9-24: Unexpected keyword argument `translation_key` in function `AutarcoSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:127:9-12: Unexpected keyword argument `key` in function `AutarcoSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `AutarcoSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:135:9-12: Unexpected keyword argument `key` in function `AutarcoSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:136:9-24: Unexpected keyword argument `translation_key` in function `AutarcoSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:154:9-12: Unexpected keyword argument `key` in function `AutarcoInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:155:9-24: Unexpected keyword argument `translation_key` in function `AutarcoInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:162:9-12: Unexpected keyword argument `key` in function `AutarcoInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:163:9-24: Unexpected keyword argument `translation_key` in function `AutarcoInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/autarco/sensor.py:212:5-23: Class member `AutarcoBatterySensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/autarco/sensor.py:212:5-23: Class member `AutarcoBatterySensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/autarco/sensor.py:247:5-23: Class member `AutarcoSolarSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/autarco/sensor.py:247:5-23: Class member `AutarcoSolarSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/autarco/sensor.py:281:5-23: Class member `AutarcoInverterSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/autarco/sensor.py:281:5-23: Class member `AutarcoInverterSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/auth/__init__.py:679:34-55: `current_refresh_token` may be uninitialized [unbound-name] +ERROR homeassistant/components/auth/login_flow.py:276:30-63: `_FlowContextT` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/auth/login_flow.py:333:36-58: `tuple[@_, ...]` is not assignable to `tuple[str, str]` [bad-assignment] +ERROR homeassistant/components/automation/__init__.py:123:71-75: Function declared to return `bool` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/automation/reproduce_state.py:56:17-24: `service` may be uninitialized [unbound-name] +ERROR homeassistant/components/avea/light.py:7:8-12: Could not find import of `avea` [missing-import] +ERROR homeassistant/components/awair/config_flow.py:40:9-21: `AwairLocalDevice | None` is not assignable to attribute `_device` with type `AwairLocalDevice` [bad-assignment] +ERROR homeassistant/components/awair/config_flow.py:48:32-55:14: No matching overload found for function `homeassistant.config_entries.ConfigFlowContext.update` called with arguments: (dict[str, dict[str, int | str]]) [no-matching-overload] +ERROR homeassistant/components/awair/config_flow.py:78:38-50: Argument `dict[str, int | str]` is not assignable to parameter `description_placeholders` with type `Mapping[str, str] | None` in function `homeassistant.config_entries.ConfigFlow.async_show_form` [bad-argument-type] +ERROR homeassistant/components/awair/config_flow.py:103:54-59: Argument `str | None` is not assignable to parameter `title` with type `str` in function `homeassistant.config_entries.ConfigFlow.async_create_entry` [bad-argument-type] +ERROR homeassistant/components/awair/config_flow.py:167:13-25: `AwairLocalDevice | None` is not assignable to attribute `_device` with type `AwairLocalDevice` [bad-assignment] +ERROR homeassistant/components/awair/config_flow.py:192:25-36: `data_schema` may be uninitialized [unbound-name] +ERROR homeassistant/components/awair/coordinator.py:43:5-17: Class member `AwairDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/awair/coordinator.py:67:52-60: Argument `AirData | None` is not assignable to parameter `air_data` with type `AirData` in function `AwairResult.__init__` [bad-argument-type] +ERROR homeassistant/components/awair/sensor.py:65:5-8: Unexpected keyword argument `key` in function `AwairSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/awair/sensor.py:67:5-20: Unexpected keyword argument `translation_key` in function `AwairSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/awair/sensor.py:74:9-12: Unexpected keyword argument `key` in function `AwairSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/awair/sensor.py:81:9-12: Unexpected keyword argument `key` in function `AwairSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/awair/sensor.py:88:9-12: Unexpected keyword argument `key` in function `AwairSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/awair/sensor.py:91:9-24: Unexpected keyword argument `translation_key` in function `AwairSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/awair/sensor.py:96:9-12: Unexpected keyword argument `key` in function `AwairSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/awair/sensor.py:103:9-12: Unexpected keyword argument `key` in function `AwairSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/awair/sensor.py:110:9-12: Unexpected keyword argument `key` in function `AwairSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/awair/sensor.py:117:9-12: Unexpected keyword argument `key` in function `AwairSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/awair/sensor.py:120:9-24: Unexpected keyword argument `translation_key` in function `AwairSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/awair/sensor.py:123:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AwairSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/awair/sensor.py:126:9-12: Unexpected keyword argument `key` in function `AwairSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/awair/sensor.py:131:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AwairSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/awair/sensor.py:137:9-12: Unexpected keyword argument `key` in function `AwairSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/awair/sensor.py:144:9-12: Unexpected keyword argument `key` in function `AwairSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/awair/sensor.py:194:5-23: Class member `AwairSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/awair/sensor.py:194:5-23: Class member `AwairSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aws/__init__.py:97:30-34: `conf` may be uninitialized [unbound-name] +ERROR homeassistant/components/aws/__init__.py:102:76-80: `conf` may be uninitialized [unbound-name] +ERROR homeassistant/components/aws_s3/__init__.py:67:26-32: `client` may be uninitialized [unbound-name] +ERROR homeassistant/components/aws_s3/backup.py:104:15-36: Class member `S3BackupAgent.async_download_backup` overrides parent class `BackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aws_s3/backup.py:252:15-34: Class member `S3BackupAgent.async_delete_backup` overrides parent class `BackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aws_s3/backup.py:272:15-33: Class member `S3BackupAgent.async_list_backups` overrides parent class `BackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/aws_s3/backup.py:278:15-31: Class member `S3BackupAgent.async_get_backup` overrides parent class `BackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/axis/binary_sensor.py:115:9-12: Unexpected keyword argument `key` in function `AxisBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/axis/binary_sensor.py:122:9-12: Unexpected keyword argument `key` in function `AxisBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/axis/binary_sensor.py:127:9-12: Unexpected keyword argument `key` in function `AxisBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/axis/binary_sensor.py:132:9-12: Unexpected keyword argument `key` in function `AxisBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/axis/binary_sensor.py:141:9-12: Unexpected keyword argument `key` in function `AxisBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/axis/binary_sensor.py:148:9-12: Unexpected keyword argument `key` in function `AxisBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/axis/binary_sensor.py:155:9-12: Unexpected keyword argument `key` in function `AxisBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/axis/binary_sensor.py:162:9-12: Unexpected keyword argument `key` in function `AxisBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/axis/binary_sensor.py:169:9-12: Unexpected keyword argument `key` in function `AxisBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/axis/binary_sensor.py:192:5-23: Class member `AxisBinarySensor.entity_description` overrides parent class `AxisEventEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/axis/binary_sensor.py:192:5-23: Class member `AxisBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/axis/camera.py:40:5-29: Class member `AxisCamera._attr_supported_features` overrides parent class `AxisEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/axis/camera.py:42:5-21: Class member `AxisCamera._still_image_url` overrides parent class `MjpegCamera` in an inconsistent manner [bad-override] +ERROR homeassistant/components/axis/config_flow.py:68:9-31: Class member `AxisFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/axis/entity.py:88:5-23: Class member `AxisEventEntity.entity_description` overrides parent class `AxisEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/axis/light.py:38:9-12: Unexpected keyword argument `key` in function `AxisLightDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/axis/light.py:60:5-23: Class member `AxisLight.entity_description` overrides parent class `AxisEventEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/axis/light.py:60:5-23: Class member `AxisLight.entity_description` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/axis/switch.py:29:9-12: Unexpected keyword argument `key` in function `AxisSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/axis/switch.py:31:9-24: Unexpected keyword argument `entity_category` in function `AxisSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/axis/switch.py:53:5-23: Class member `AxisSwitch.entity_description` overrides parent class `AxisEventEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/axis/switch.py:53:5-23: Class member `AxisSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/azure_data_explorer/__init__.py:144:48-76: Argument `BoundMethod[AzureDataExplorerClient, (self: AzureDataExplorerClient) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/azure_data_explorer/client.py:71:33-74: `ManagedStreamingIngestClient` is not assignable to attribute `write_client` with type `QueuedIngestClient` [bad-assignment] +ERROR homeassistant/components/azure_data_explorer/config_flow.py:56:52-74: Argument `BoundMethod[AzureDataExplorerClient, (self: AzureDataExplorerClient) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/azure_devops/config_flow.py:54:51-69: Argument `str | None` is not assignable to parameter `organization` with type `str` in function `aioazuredevops.client.DevOpsClient.authorize` [bad-argument-type] +ERROR homeassistant/components/azure_devops/config_flow.py:58:53-71: Argument `str | None` is not assignable to parameter `organization` with type `str` in function `aioazuredevops.client.DevOpsClient.get_project` [bad-argument-type] +ERROR homeassistant/components/azure_devops/config_flow.py:58:73-86: Argument `str | None` is not assignable to parameter `project` with type `str` in function `aioazuredevops.client.DevOpsClient.get_project` [bad-argument-type] +ERROR homeassistant/components/azure_devops/coordinator.py:55:5-17: Class member `AzureDevOpsDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/azure_devops/sensor.py:48:9-12: Unexpected keyword argument `key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:67:9-12: Unexpected keyword argument `key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:69:9-40: Unexpected keyword argument `entity_registry_visible_default` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:73:9-12: Unexpected keyword argument `key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:75:9-40: Unexpected keyword argument `entity_registry_visible_default` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:79:9-12: Unexpected keyword argument `key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:81:9-40: Unexpected keyword argument `entity_registry_visible_default` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:85:9-12: Unexpected keyword argument `key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:87:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:88:9-40: Unexpected keyword argument `entity_registry_visible_default` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:92:9-12: Unexpected keyword argument `key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:94:9-40: Unexpected keyword argument `entity_registry_visible_default` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:98:9-12: Unexpected keyword argument `key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:101:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:102:9-40: Unexpected keyword argument `entity_registry_visible_default` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:103:32-46: `parse_datetime` is uninitialized [unbound-name] +ERROR homeassistant/components/azure_devops/sensor.py:106:9-12: Unexpected keyword argument `key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:109:9-40: Unexpected keyword argument `entity_registry_visible_default` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:110:32-46: `parse_datetime` is uninitialized [unbound-name] +ERROR homeassistant/components/azure_devops/sensor.py:113:9-12: Unexpected keyword argument `key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:116:9-40: Unexpected keyword argument `entity_registry_visible_default` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:117:32-46: `parse_datetime` is uninitialized [unbound-name] +ERROR homeassistant/components/azure_devops/sensor.py:120:9-12: Unexpected keyword argument `key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `AzureDevOpsBuildSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:130:9-12: Unexpected keyword argument `key` in function `AzureDevOpsWorkItemSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:131:9-24: Unexpected keyword argument `translation_key` in function `AzureDevOpsWorkItemSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/azure_devops/sensor.py:183:5-23: Class member `AzureDevOpsBuildSensor.entity_description` overrides parent class `AzureDevOpsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/azure_devops/sensor.py:183:5-23: Class member `AzureDevOpsBuildSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/azure_devops/sensor.py:198:16-46: Object of class `NoneType` has no attribute `build_id` [missing-attribute] +ERROR homeassistant/components/azure_devops/sensor.py:202:32-58: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/azure_devops/sensor.py:224:5-23: Class member `AzureDevOpsWorkItemSensor.entity_description` overrides parent class `AzureDevOpsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/azure_devops/sensor.py:224:5-23: Class member `AzureDevOpsWorkItemSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/azure_event_hub/config_flow.py:95:9-31: Class member `AEHConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/azure_service_bus/notify.py:8:1-47: Could not find import of `azure.servicebus` [missing-import] +ERROR homeassistant/components/azure_service_bus/notify.py:9:1-68: Could not find import of `azure.servicebus.aio` [missing-import] +ERROR homeassistant/components/azure_service_bus/notify.py:10:1-14:2: Could not find import of `azure.servicebus.exceptions` [missing-import] +ERROR homeassistant/components/azure_storage/__init__.py:55:9-32: Argument `() -> ContainerClient` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/azure_storage/backup.py:114:15-36: Class member `AzureStorageBackupAgent.async_download_backup` overrides parent class `BackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/azure_storage/config_flow.py:48:55-78: Argument `() -> ContainerClient` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backblaze_b2/__init__.py:51:16-66: Returned type `b2sdk._internal.bucket.Bucket` is not assignable to declared return type `b2sdk.v2.bucket.Bucket` [bad-return] +ERROR homeassistant/components/backblaze_b2/__init__.py:54:52-82: Argument `() -> Bucket` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backblaze_b2/backup.py:193:15-36: Class member `BackblazeBackupAgent.async_download_backup` overrides parent class `BackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/backblaze_b2/backup.py:208:68-210:22: Unpacked argument `tuple[Iterator[Any], None]` is not assignable to parameter `*args` with type `tuple[SupportsNext[@_]]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backblaze_b2/backup.py:220:15-34: Class member `BackblazeBackupAgent.async_upload_backup` overrides parent class `BackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/backblaze_b2/backup.py:345:15-34: Class member `BackblazeBackupAgent.async_delete_backup` overrides parent class `BackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/backblaze_b2/backup.py:373:15-33: Class member `BackblazeBackupAgent.async_list_backups` overrides parent class `BackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/backblaze_b2/backup.py:411:15-31: Class member `BackblazeBackupAgent.async_get_backup` overrides parent class `BackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/backblaze_b2/backup.py:537:17-48: Argument `BoundMethod[Self@BackblazeBackupAgent, (self: Self@BackblazeBackupAgent) -> dict[str, FileVersion]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backblaze_b2/config_flow.py:121:52-82: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backup/agent.py:37:15-36: Abstract methods for async generators should use `def`, not `async def` [bad-function-definition] +ERROR homeassistant/components/backup/agent.py:116:10-27: Function declared to return `list[BackupAgent]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/backup/agent.py:126:10-28: Function declared to return `() -> None` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/backup/backup.py:47:59-77: Argument `BoundMethod[Self@CoreLocalBackupAgent, (self: Self@CoreLocalBackupAgent) -> dict[str, tuple[AgentBackup, Path]]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backup/backup.py:49:25-32: `Sized` is not assignable to attribute `_backups` with type `dict[str, tuple[AgentBackup, Path]]` [bad-assignment] +ERROR homeassistant/components/backup/backup.py:63:15-36: Class member `CoreLocalBackupAgent.async_download_backup` overrides parent class `LocalBackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/backup/backup.py:100:56-74: Argument `BoundMethod[Path, (self: Path, *, follow_symlinks: bool = True) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backup/config.py:540:26-36: `cron_event` may be uninitialized [unbound-name] +ERROR homeassistant/components/backup/config.py:777:25-42: `missing_agent_ids` may be uninitialized [unbound-name] +ERROR homeassistant/components/backup/coordinator.py:38:5-17: Class member `BackupDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/backup/http.py:119:18-62: Type `AsyncIterator[bytes]` is not awaitable [not-async] +ERROR homeassistant/components/backup/http.py:143:26-88: `TextIOWrapper[_WrappedBuffer]` is not assignable to variable `reader` with type `IO[bytes]` [bad-assignment] +ERROR homeassistant/components/backup/http.py:143:59-88: Unpacked argument `tuple[str, Literal['rb']]` is not assignable to parameter `*args` with type `tuple[PathLike[bytes] | PathLike[str] | bytes | int | str, Literal['+a', '+at', '+r', '+rt', '+ta', '+tr', '+tw', '+tx', '+w', '+wt', '+x', '+xt', 'U', 'Ur', 'Urt', 'Utr', 'a', 'a+', 'a+t', 'at', 'at+', 'r', 'r+', 'r+t', 'rU', 'rUt', 'rt', 'rt+', 'rtU', 't+a', 't+r', 't+w', 't+x', 'tUr', 'ta', 'ta+', 'tr', 'tr+', 'trU', 'tw', 'tw+', 'tx', 'tx+', 'w', 'w+', 'w+t', 'wt', 'wt+', 'x', 'x+', 'x+t', 'xt', 'xt+'], int, str | None, str | None, str | None, bool, ((str, int) -> int) | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backup/http.py:147:22-66: Type `AsyncIterator[bytes]` is not awaitable [not-async] +ERROR homeassistant/components/backup/http.py:154:44-65: Argument `BoundMethod[Event, (self: Event) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/components/backup/manager.py:586:29-45: `open_stream_func` may be uninitialized [unbound-name] +ERROR homeassistant/components/backup/manager.py:587:24-31: `_backup` may be uninitialized [unbound-name] +ERROR homeassistant/components/backup/manager.py:675:25-34: `backup_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/backup/manager.py:1358:20-64: Type `AsyncIterator[bytes]` is not awaitable [not-async] +ERROR homeassistant/components/backup/manager.py:1525:22-89: `TextIOWrapper[_WrappedBuffer]` is not assignable to variable `reader` with type `IO[bytes]` [bad-assignment] +ERROR homeassistant/components/backup/manager.py:1525:60-89: Unpacked argument `tuple[str, Literal['rb']]` is not assignable to parameter `*args` with type `tuple[PathLike[bytes] | PathLike[str] | bytes | int | str, Literal['+a', '+at', '+r', '+rt', '+ta', '+tr', '+tw', '+tx', '+w', '+wt', '+x', '+xt', 'U', 'Ur', 'Urt', 'Utr', 'a', 'a+', 'a+t', 'at', 'at+', 'r', 'r+', 'r+t', 'rU', 'rUt', 'rt', 'rt+', 'rtU', 't+a', 't+r', 't+w', 't+x', 'tUr', 'ta', 'ta+', 'tr', 'tr+', 'trU', 'tw', 'tw+', 'tx', 'tx+', 'w', 'w+', 'w+t', 'wt', 'wt+', 'x', 'x+', 'x+t', 'xt', 'xt+'], int, str | None, str | None, str | None, bool, ((str, int) -> int) | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backup/manager.py:1527:29-73: Type `AsyncIterator[bytes]` is not awaitable [not-async] +ERROR homeassistant/components/backup/manager.py:1778:53-79: Unpacked argument `tuple[Literal['rb']]` is not assignable to parameter `*args` with type `tuple[Literal['+a', '+at', '+r', '+rt', '+ta', '+tr', '+tw', '+tx', '+w', '+wt', '+x', '+xt', 'U', 'Ur', 'Urt', 'Utr', 'a', 'a+', 'a+t', 'at', 'at+', 'r', 'r+', 'r+t', 'rU', 'rUt', 'rt', 'rt+', 'rtU', 't+a', 't+r', 't+w', 't+x', 'tUr', 'ta', 'ta+', 'tr', 'tr+', 'trU', 'tw', 'tw+', 'tx', 'tx+', 'w', 'w+', 'w+t', 'wt', 'wt+', 'x', 'x+', 'x+t', 'xt', 'xt+'], int, str | None, str | None, str | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backup/manager.py:1781:35-40: Type of yielded value `str` is not assignable to declared return type `bytes` [invalid-yield] +ERROR homeassistant/components/backup/manager.py:1783:54-61: Argument `BoundMethod[TextIOWrapper[_WrappedBuffer], (self: TextIOWrapper[_WrappedBuffer]) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backup/manager.py:1823:21-41: Argument `list[BaseException | Exception | None]` is not assignable to parameter `exceptions` with type `Sequence[Exception]` in function `ExceptionGroup.__new__` [bad-argument-type] +ERROR homeassistant/components/backup/manager.py:1903:41-63: Unpacked argument `tuple[Literal['wb']]` is not assignable to parameter `*args` with type `tuple[Literal['+a', '+at', '+r', '+rt', '+ta', '+tr', '+tw', '+tx', '+w', '+wt', '+x', '+xt', 'U', 'Ur', 'Urt', 'Utr', 'a', 'a+', 'a+t', 'at', 'at+', 'r', 'r+', 'r+t', 'rU', 'rUt', 'rt', 'rt+', 'rtU', 't+a', 't+r', 't+w', 't+x', 'tUr', 'ta', 'ta+', 'tr', 'tr+', 'trU', 'tw', 'tw+', 'tx', 'tx+', 'w', 'w+', 'w+t', 'wt', 'wt+', 'x', 'x+', 'x+t', 'xt', 'xt+'], int, str | None, str | None, str | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backup/manager.py:1906:45-61: Unpacked argument `tuple[bytes]` is not assignable to parameter `*args` with type `tuple[str]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backup/manager.py:1908:42-49: Argument `BoundMethod[TextIOWrapper[_WrappedBuffer], (self: TextIOWrapper[_WrappedBuffer]) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backup/manager.py:1921:41-80: Unpacked argument `tuple[Path, Path]` is not assignable to parameter `*args` with type `tuple[PathLike[str] | str, @_, ((PathLike[str] | str, PathLike[str] | str) -> object) | ((str, str) -> object)]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backup/manager.py:1926:45-71: Unpacked argument `tuple[Literal['rb']]` is not assignable to parameter `*args` with type `tuple[Literal['+a', '+at', '+r', '+rt', '+ta', '+tr', '+tw', '+tx', '+w', '+wt', '+x', '+xt', 'U', 'Ur', 'Urt', 'Utr', 'a', 'a+', 'a+t', 'at', 'at+', 'r', 'r+', 'r+t', 'rU', 'rUt', 'rt', 'rt+', 'rtU', 't+a', 't+r', 't+w', 't+x', 'tUr', 'ta', 'ta+', 'tr', 'tr+', 'trU', 'tw', 'tw+', 'tx', 'tx+', 'w', 'w+', 'w+t', 'wt', 'wt+', 'x', 'x+', 'x+t', 'xt', 'xt+'], int, str | None, str | None, str | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backup/manager.py:1929:27-32: Type of yielded value `str` is not assignable to declared return type `bytes` [invalid-yield] +ERROR homeassistant/components/backup/manager.py:1931:46-53: Argument `BoundMethod[TextIOWrapper[_WrappedBuffer], (self: TextIOWrapper[_WrappedBuffer]) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backup/manager.py:1987:45-62: Unpacked argument `tuple[Literal['wb']]` is not assignable to parameter `*args` with type `tuple[Literal['+a', '+at', '+r', '+rt', '+ta', '+tr', '+tw', '+tx', '+w', '+wt', '+x', '+xt', 'U', 'Ur', 'Urt', 'Utr', 'a', 'a+', 'a+t', 'at', 'at+', 'r', 'r+', 'r+t', 'rU', 'rUt', 'rt', 'rt+', 'rtU', 't+a', 't+r', 't+w', 't+x', 'tUr', 'ta', 'ta+', 'tr', 'tr+', 'trU', 'tw', 'tw+', 'tx', 'tx+', 'w', 'w+', 'w+t', 'wt', 'wt+', 'x', 'x+', 'x+t', 'xt', 'xt+'], int, str | None, str | None, str | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backup/manager.py:1990:49-65: Unpacked argument `tuple[bytes]` is not assignable to parameter `*args` with type `tuple[str]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backup/manager.py:1992:46-53: Argument `BoundMethod[TextIOWrapper[_WrappedBuffer], (self: TextIOWrapper[_WrappedBuffer]) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backup/manager.py:2017:49-68: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backup/manager.py:2054:66-84: Argument `() -> dict[str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None] | None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/backup/sensor.py:31:9-12: Unexpected keyword argument `key` in function `BackupSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/backup/sensor.py:32:9-24: Unexpected keyword argument `translation_key` in function `BackupSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/backup/sensor.py:38:9-12: Unexpected keyword argument `key` in function `BackupSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/backup/sensor.py:39:9-24: Unexpected keyword argument `translation_key` in function `BackupSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/backup/sensor.py:44:9-12: Unexpected keyword argument `key` in function `BackupSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/backup/sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `BackupSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/backup/sensor.py:50:9-12: Unexpected keyword argument `key` in function `BackupSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/backup/sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `BackupSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/backup/sensor.py:76:5-23: Class member `BackupManagerSensor.entity_description` overrides parent class `BackupManagerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/backup/sensor.py:76:5-23: Class member `BackupManagerSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/backup/util.py:186:20-56: Object of class `NoneType` has no attribute `plaintext_size` [missing-attribute] +ERROR homeassistant/components/backup/util.py:289:35-71: Object of class `NoneType` has no attribute `plaintext_size` [missing-attribute] +ERROR homeassistant/components/backup/util.py:381:34-58: Object of class `BinaryIO` has no attribute `encrypted_size` [missing-attribute] +ERROR homeassistant/components/backup/util.py:455:50-72: Argument `BoundMethod[Event, (self: Event) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/components/backup/util.py:525:43-63: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> None` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/baf/binary_sensor.py:34:9-12: Unexpected keyword argument `key` in function `BAFBinarySensorDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/binary_sensor.py:36:37-81: Redundant cast: `bool | None` is the same type as `bool | None` [redundant-cast] +ERROR homeassistant/components/baf/binary_sensor.py:57:5-23: Class member `BAFBinarySensor.entity_description` overrides parent class `BAFDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/baf/binary_sensor.py:57:5-23: Class member `BAFBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/baf/climate.py:35:5-29: Class member `BAFAutoComfort._attr_supported_features` overrides parent class `BAFEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/baf/entity.py:24:25-80: Argument `set[tuple[str, str | None]]` is not assignable to parameter `connections` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/baf/fan.py:42:5-29: Class member `BAFFan._attr_supported_features` overrides parent class `BAFEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/baf/number.py:34:9-12: Unexpected keyword argument `key` in function `BAFNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/number.py:35:9-24: Unexpected keyword argument `translation_key` in function `BAFNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/number.py:39:9-24: Unexpected keyword argument `entity_category` in function `BAFNumberDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/number.py:40:37-75: Redundant cast: `int | None` is the same type as `int | None` [redundant-cast] +ERROR homeassistant/components/baf/number.py:44:9-12: Unexpected keyword argument `key` in function `BAFNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/number.py:45:9-24: Unexpected keyword argument `translation_key` in function `BAFNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/number.py:49:9-24: Unexpected keyword argument `entity_category` in function `BAFNumberDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/number.py:50:37-75: Redundant cast: `int | None` is the same type as `int | None` [redundant-cast] +ERROR homeassistant/components/baf/number.py:54:9-12: Unexpected keyword argument `key` in function `BAFNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/number.py:55:9-24: Unexpected keyword argument `translation_key` in function `BAFNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/number.py:59:9-24: Unexpected keyword argument `entity_category` in function `BAFNumberDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/number.py:60:37-83: Redundant cast: `int | None` is the same type as `int | None` [redundant-cast] +ERROR homeassistant/components/baf/number.py:67:9-12: Unexpected keyword argument `key` in function `BAFNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/number.py:68:9-24: Unexpected keyword argument `translation_key` in function `BAFNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/number.py:72:9-24: Unexpected keyword argument `entity_category` in function `BAFNumberDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/number.py:74:37-80: Redundant cast: `int | None` is the same type as `int | None` [redundant-cast] +ERROR homeassistant/components/baf/number.py:78:9-12: Unexpected keyword argument `key` in function `BAFNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/number.py:79:9-24: Unexpected keyword argument `translation_key` in function `BAFNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/number.py:83:9-24: Unexpected keyword argument `entity_category` in function `BAFNumberDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/number.py:85:37-78: Redundant cast: `int | None` is the same type as `int | None` [redundant-cast] +ERROR homeassistant/components/baf/number.py:92:9-12: Unexpected keyword argument `key` in function `BAFNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/number.py:93:9-24: Unexpected keyword argument `translation_key` in function `BAFNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/number.py:97:9-24: Unexpected keyword argument `entity_category` in function `BAFNumberDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/number.py:99:37-86: Redundant cast: `int | None` is the same type as `int | None` [redundant-cast] +ERROR homeassistant/components/baf/number.py:103:9-12: Unexpected keyword argument `key` in function `BAFNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/number.py:104:9-24: Unexpected keyword argument `translation_key` in function `BAFNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/number.py:108:9-24: Unexpected keyword argument `entity_category` in function `BAFNumberDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/number.py:110:37-83: Redundant cast: `int | None` is the same type as `int | None` [redundant-cast] +ERROR homeassistant/components/baf/number.py:136:5-23: Class member `BAFNumber.entity_description` overrides parent class `BAFDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/baf/number.py:136:5-23: Class member `BAFNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/baf/sensor.py:41:9-12: Unexpected keyword argument `key` in function `BAFSensorDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/sensor.py:45:37-71: Redundant cast: `float | None` is the same type as `float | None` [redundant-cast] +ERROR homeassistant/components/baf/sensor.py:51:9-12: Unexpected keyword argument `key` in function `BAFSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/sensor.py:61:9-12: Unexpected keyword argument `key` in function `BAFSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `BAFSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/sensor.py:64:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BAFSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/sensor.py:65:9-24: Unexpected keyword argument `entity_category` in function `BAFSensorDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/sensor.py:66:37-69: Redundant cast: `int | None` is the same type as `int | None` [redundant-cast] +ERROR homeassistant/components/baf/sensor.py:69:9-12: Unexpected keyword argument `key` in function `BAFSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `BAFSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/sensor.py:72:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BAFSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/sensor.py:73:9-24: Unexpected keyword argument `entity_category` in function `BAFSensorDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/sensor.py:74:37-68: Redundant cast: `int | None` is the same type as `int | None` [redundant-cast] +ERROR homeassistant/components/baf/sensor.py:77:9-12: Unexpected keyword argument `key` in function `BAFSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `BAFSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/sensor.py:79:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BAFSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/sensor.py:80:9-24: Unexpected keyword argument `entity_category` in function `BAFSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/sensor.py:84:9-12: Unexpected keyword argument `key` in function `BAFSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `BAFSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/sensor.py:86:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BAFSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/sensor.py:87:9-24: Unexpected keyword argument `entity_category` in function `BAFSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/sensor.py:117:5-23: Class member `BAFSensor.entity_description` overrides parent class `BAFDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/baf/sensor.py:117:5-23: Class member `BAFSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/baf/switch.py:31:9-12: Unexpected keyword argument `key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:32:9-24: Unexpected keyword argument `translation_key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:33:9-24: Unexpected keyword argument `entity_category` in function `BAFSwitchDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/switch.py:34:37-82: Redundant cast: `bool | None` is the same type as `bool | None` [redundant-cast] +ERROR homeassistant/components/baf/switch.py:37:9-12: Unexpected keyword argument `key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:38:9-24: Unexpected keyword argument `translation_key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:39:9-24: Unexpected keyword argument `entity_category` in function `BAFSwitchDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/switch.py:40:37-80: Redundant cast: `bool | None` is the same type as `bool | None` [redundant-cast] +ERROR homeassistant/components/baf/switch.py:46:9-12: Unexpected keyword argument `key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:47:9-24: Unexpected keyword argument `translation_key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:48:9-24: Unexpected keyword argument `entity_category` in function `BAFSwitchDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/switch.py:49:37-85: Redundant cast: `bool | None` is the same type as `bool | None` [redundant-cast] +ERROR homeassistant/components/baf/switch.py:55:9-12: Unexpected keyword argument `key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:56:9-24: Unexpected keyword argument `translation_key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:57:9-24: Unexpected keyword argument `entity_category` in function `BAFSwitchDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/switch.py:58:37-74: Redundant cast: `bool | None` is the same type as `bool | None` [redundant-cast] +ERROR homeassistant/components/baf/switch.py:61:9-12: Unexpected keyword argument `key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:62:9-24: Unexpected keyword argument `translation_key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:63:9-24: Unexpected keyword argument `entity_category` in function `BAFSwitchDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/switch.py:64:37-69: Redundant cast: `bool | None` is the same type as `bool | None` [redundant-cast] +ERROR homeassistant/components/baf/switch.py:67:9-12: Unexpected keyword argument `key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:68:9-24: Unexpected keyword argument `translation_key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:69:9-24: Unexpected keyword argument `entity_category` in function `BAFSwitchDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/switch.py:70:37-78: Redundant cast: `bool | None` is the same type as `bool | None` [redundant-cast] +ERROR homeassistant/components/baf/switch.py:73:9-12: Unexpected keyword argument `key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:74:9-24: Unexpected keyword argument `translation_key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:75:9-24: Unexpected keyword argument `entity_category` in function `BAFSwitchDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/switch.py:76:37-80: Redundant cast: `bool | None` is the same type as `bool | None` [redundant-cast] +ERROR homeassistant/components/baf/switch.py:79:9-12: Unexpected keyword argument `key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:80:9-24: Unexpected keyword argument `translation_key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/switch.py:82:37-72: Redundant cast: `bool | None` is the same type as `bool | None` [redundant-cast] +ERROR homeassistant/components/baf/switch.py:89:9-12: Unexpected keyword argument `key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:90:9-24: Unexpected keyword argument `translation_key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:91:9-24: Unexpected keyword argument `entity_category` in function `BAFSwitchDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/switch.py:92:37-83: Redundant cast: `bool | None` is the same type as `bool | None` [redundant-cast] +ERROR homeassistant/components/baf/switch.py:95:9-12: Unexpected keyword argument `key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:96:9-24: Unexpected keyword argument `translation_key` in function `BAFSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/baf/switch.py:97:9-24: Unexpected keyword argument `entity_category` in function `BAFSwitchDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/baf/switch.py:98:37-86: Redundant cast: `bool | None` is the same type as `bool | None` [redundant-cast] +ERROR homeassistant/components/baf/switch.py:124:5-23: Class member `BAFSwitch.entity_description` overrides parent class `BAFDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/baf/switch.py:124:5-23: Class member `BAFSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/baidu/tts.py:5:1-26: Could not find import of `aip` [missing-import] +ERROR homeassistant/components/balboa/binary_sensor.py:47:9-12: Unexpected keyword argument `key` in function `BalboaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/balboa/binary_sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `BalboaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/balboa/binary_sensor.py:53:9-12: Unexpected keyword argument `key` in function `BalboaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/balboa/binary_sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `BalboaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/balboa/binary_sensor.py:60:5-8: Unexpected keyword argument `key` in function `BalboaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/balboa/binary_sensor.py:61:5-20: Unexpected keyword argument `translation_key` in function `BalboaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/balboa/binary_sensor.py:70:5-23: Class member `BalboaBinarySensorEntity.entity_description` overrides parent class `BalboaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/balboa/binary_sensor.py:70:5-23: Class member `BalboaBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/balboa/climate.py:60:5-29: Class member `BalboaClimateEntity._attr_supported_features` overrides parent class `BalboaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/balboa/config_flow.py:64:9-31: Class member `BalboaSpaClientFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/balboa/config_flow.py:86:27-31: `info` may be uninitialized [unbound-name] +ERROR homeassistant/components/balboa/fan.py:36:5-29: Class member `BalboaPumpFanEntity._attr_supported_features` overrides parent class `BalboaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/balboa/fan.py:84:66-85: Argument `IntEnum` is not assignable to parameter `value` with type `float` in function `homeassistant.util.percentage.ranged_value_to_percentage` [bad-argument-type] +ERROR homeassistant/components/bang_olufsen/config_flow.py:99:71-101:22: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.get_beolink_self` [missing-argument] +ERROR homeassistant/components/bang_olufsen/config_flow.py:147:52-72: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.get_beolink_self` [missing-argument] +ERROR homeassistant/components/bang_olufsen/event.py:42:5-23: Class member `BangOlufsenButtonEvent._attr_device_class` overrides parent class `BangOlufsenEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bang_olufsen/media_player.py:192:5-23: Class member `BangOlufsenMediaPlayer._attr_device_class` overrides parent class `BangOlufsenEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bang_olufsen/media_player.py:261:77-79: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.get_softwareupdate_status` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:285:67-87: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.get_settings_queue` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:299:63-84: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.get_available_sources` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:306:20-30: `sw_version` may be uninitialized [unbound-name] +ERROR homeassistant/components/bang_olufsen/media_player.py:312:17-27: `sw_version` may be uninitialized [unbound-name] +ERROR homeassistant/components/bang_olufsen/media_player.py:339:56-58: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.get_remote_menu` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:424:59-61: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.get_beolink_self` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:451:53-55: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.get_beolink_peers` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:485:73-75: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.get_beolink_listeners` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:567:64-66: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.get_listening_mode_set` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:570:77-79: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.get_active_listening_mode` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:687:40-42: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.post_standby` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:691:52-693:10: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.set_current_volume_level` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:697:43-79: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.set_volume_mute` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:708:49-66: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.post_playback_command` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:712:49-65: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.post_playback_command` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:716:49-65: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.post_playback_command` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:720:49-65: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.post_playback_command` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:724:44-78: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.seek_to_position` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:733:49-65: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.post_playback_command` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:737:44-46: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.post_clear_queue` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:741:46-745:10: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.set_settings_queue` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:749:46-751:10: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.set_settings_queue` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:770:49-64: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.set_active_source` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:773:51-59: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.post_remote_trigger` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:788:51-85: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.activate_listening_mode` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:858:49-71: Missing argument `overlay_play_request` in function `mozart_api.api.mozart_api.MozartApi.post_overlay_play` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:861:47-75: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.post_uri_source` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:866:49-870:14: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.post_overlay_play` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:873:50-882:14: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.run_provided_scene` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:885:47-65: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.activate_preset` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:896:57-898:22: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.start_deezer_flow` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:906:52-913:22: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.add_to_queue` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:917:52-924:22: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.add_to_queue` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:974:62-64: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.join_latest_beolink_experience` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:977:49-66: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.join_beolink_peer` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:984:49-84: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.join_beolink_peer` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:1004:57-59: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.get_beolink_peers` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:1008:59-73: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.post_beolink_expand` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:1016:59-76: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.post_beolink_expand` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:1027:53-70: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.post_beolink_unexpand` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:1031:46-48: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.post_beolink_leave` [missing-argument] +ERROR homeassistant/components/bang_olufsen/media_player.py:1035:51-53: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.post_beolink_allstandby` [missing-argument] +ERROR homeassistant/components/bang_olufsen/websocket.py:212:71-73: Missing argument `self` in function `mozart_api.api.mozart_api.MozartApi.get_softwareupdate_status` [missing-argument] +ERROR homeassistant/components/bayesian/config_flow.py:557:25-34: `sub_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/bayesian/config_flow.py:558:31-83: Argument `Any | None` is not assignable to parameter `title` with type `UndefinedType | str` in function `homeassistant.config_entries.ConfigSubentryFlow.async_update_and_abort` [bad-argument-type] +ERROR homeassistant/components/bayesian/config_flow.py:558:57-66: `sub_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/bayesian/config_flow.py:572:70-79: `sub_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/bbox/device_tracker.py:9:8-14: Could not find import of `pybbox` [missing-import] +ERROR homeassistant/components/bbox/sensor.py:8:8-14: Could not find import of `pybbox` [missing-import] +ERROR homeassistant/components/bbox/sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bbox/sensor.py:38:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bbox/sensor.py:41:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bbox/sensor.py:44:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bbox/sensor.py:45:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bbox/sensor.py:48:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bbox/sensor.py:51:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bbox/sensor.py:52:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bbox/sensor.py:56:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bbox/sensor.py:59:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bbox/sensor.py:60:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bbox/sensor.py:64:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bbox/sensor.py:67:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bbox/sensor.py:68:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bbox/sensor.py:69:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bbox/sensor.py:75:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bbox/sensor.py:76:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bbox/sensor.py:77:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/beewi_smartclim/sensor.py:5:1-49: Could not find import of `beewi_smartclim` [missing-import] +ERROR homeassistant/components/binary_sensor/__init__.py:150:5-17: Class member `BinarySensorEntityDescription.device_class` overrides parent class `EntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/binary_sensor/__init__.py:162:5-23: Class member `BinarySensorEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/binary_sensor/__init__.py:163:5-23: Class member `BinarySensorEntity._attr_device_class` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/binary_sensor/__init__.py:165:5-16: Class member `BinarySensorEntity._attr_state` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bitcoin/sensor.py:8:1-49: Could not find import of `blockchain` [missing-import] +ERROR homeassistant/components/bitcoin/sensor.py:30:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:31:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:34:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:35:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:39:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:40:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:44:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:45:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:49:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:50:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:54:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:55:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:59:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:63:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:64:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:67:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:68:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:72:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:73:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:76:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:77:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:80:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:81:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:84:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:85:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:89:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:90:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:94:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:95:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:99:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:100:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:104:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:105:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:108:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:109:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:112:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:113:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:117:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:118:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:122:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bitcoin/sensor.py:123:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bizkaibus/sensor.py:7:1-46: Could not find import of `bizkaibus.bizkaibus` [missing-import] +ERROR homeassistant/components/blackbird/media_player.py:108:32-41: `blackbird` may be uninitialized [unbound-name] +ERROR homeassistant/components/blebox/binary_sensor.py:18:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blebox/binary_sensor.py:47:14-32: Class member `BleBoxBinarySensorEntity.entity_description` overrides parent class `BleBoxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blebox/binary_sensor.py:52:16-35: Object of class `BinarySensor` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/blebox/climate.py:53:5-29: Class member `BleBoxClimateEntity._attr_supported_features` overrides parent class `BleBoxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blebox/climate.py:94:16-38: Returned type `float | int | None` is not assignable to declared return type `float` [bad-return] +ERROR homeassistant/components/blebox/climate.py:99:16-38: Returned type `float | int | None` is not assignable to declared return type `float` [bad-return] +ERROR homeassistant/components/blebox/config_flow.py:98:13-23: Argument `int | None` is not assignable to parameter `port` with type `int` in function `blebox_uniapi.session.ApiHost.__init__` [bad-argument-type] +ERROR homeassistant/components/blebox/cover.py:64:14-32: Class member `BleBoxCoverEntity._attr_device_class` overrides parent class `BleBoxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blebox/cover.py:65:14-38: Class member `BleBoxCoverEntity._attr_supported_features` overrides parent class `BleBoxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blebox/light.py:69:18-42: Class member `BleBoxLightEntity._attr_supported_features` overrides parent class `BleBoxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blebox/light.py:74:16-35: Returned type `bool | None` is not assignable to declared return type `bool` [bad-return] +ERROR homeassistant/components/blebox/light.py:92:34-77: No matching overload found for function `dict.get` called with arguments: (int, Literal[ColorMode.ONOFF]) [no-matching-overload] +ERROR homeassistant/components/blebox/light.py:114:16-118:10: Returned type `tuple[@_, ...]` is not assignable to declared return type `tuple[int, int, int] | None` [bad-return] +ERROR homeassistant/components/blebox/light.py:125:16-83: Returned type `tuple[int, ...]` is not assignable to declared return type `tuple[int, int, int, int] | None` [bad-return] +ERROR homeassistant/components/blebox/light.py:132:16-79: Returned type `tuple[int, ...]` is not assignable to declared return type `tuple[int, int, int, int, int] | None` [bad-return] +ERROR homeassistant/components/blebox/sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blebox/sensor.py:38:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blebox/sensor.py:43:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blebox/sensor.py:48:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blebox/sensor.py:53:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blebox/sensor.py:59:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blebox/sensor.py:64:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blebox/sensor.py:69:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blebox/sensor.py:74:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blebox/sensor.py:79:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blebox/sensor.py:84:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blebox/sensor.py:89:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blebox/sensor.py:94:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blebox/sensor.py:99:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blebox/sensor.py:104:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blebox/sensor.py:109:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blebox/sensor.py:141:14-32: Class member `BleBoxSensorEntity.entity_description` overrides parent class `BleBoxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blebox/switch.py:34:5-23: Class member `BleBoxSwitchEntity._attr_device_class` overrides parent class `BleBoxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blink/alarm_control_panel.py:47:5-29: Class member `BlinkSyncModuleHA._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blink/alarm_control_panel.py:59:14-29: Class member `BlinkSyncModuleHA._attr_unique_id` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blink/alarm_control_panel.py:59:14-29: Class member `BlinkSyncModuleHA._attr_unique_id` overrides parent class `AlarmControlPanelEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blink/alarm_control_panel.py:59:37-48: `None` is not assignable to attribute `_attr_unique_id` with type `str` [bad-assignment] +ERROR homeassistant/components/blink/alarm_control_panel.py:61:25-48: Argument `set[tuple[str, None]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/blink/binary_sensor.py:31:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blink/binary_sensor.py:33:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blink/binary_sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blink/binary_sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blink/binary_sensor.py:39:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blink/binary_sensor.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blink/binary_sensor.py:78:14-32: Class member `BlinkBinarySensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blink/camera.py:89:25-50: Argument `set[tuple[str, None]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/blink/camera.py:116:39-43: `Literal[True]` is not assignable to attribute `motion_enabled` with type `None` [bad-assignment] +ERROR homeassistant/components/blink/camera.py:132:39-44: `Literal[False]` is not assignable to attribute `motion_enabled` with type `None` [bad-assignment] +ERROR homeassistant/components/blink/config_flow.py:103:43-53: Argument `Blink | None` is not assignable to parameter `blink` with type `Blink` in function `_send_blink_2fa_pin` [bad-argument-type] +ERROR homeassistant/components/blink/coordinator.py:33:5-17: Class member `BlinkUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blink/sensor.py:30:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blink/sensor.py:33:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blink/sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blink/sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blink/sensor.py:41:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blink/sensor.py:77:14-32: Class member `BlinkSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blink/switch.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blink/switch.py:26:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blink/switch.py:61:14-32: Class member `BlinkSwitch.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blinksticklight/light.py:48:13-23: Could not find name `blinkstick` [unknown-name] +ERROR homeassistant/components/blockchain/sensor.py:8:1-55: Could not find import of `pyblockchain` [missing-import] +ERROR homeassistant/components/blue_current/__init__.py:260:37-42: `delay` may be uninitialized [unbound-name] +ERROR homeassistant/components/blue_current/button.py:32:9-12: Unexpected keyword argument `key` in function `ChargePointButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/button.py:33:9-24: Unexpected keyword argument `translation_key` in function `ChargePointButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/button.py:38:9-12: Unexpected keyword argument `key` in function `ChargePointButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/button.py:39:9-24: Unexpected keyword argument `translation_key` in function `ChargePointButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/button.py:44:9-12: Unexpected keyword argument `key` in function `ChargePointButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/button.py:45:9-24: Unexpected keyword argument `translation_key` in function `ChargePointButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/button.py:73:5-23: Class member `ChargePointButton.entity_description` overrides parent class `ChargepointEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blue_current/button.py:73:5-23: Class member `ChargePointButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blue_current/sensor.py:27:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:30:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:31:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:39:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:43:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:47:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:51:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:62:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:66:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:70:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:74:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:78:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:82:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:89:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:96:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:103:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:109:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:115:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:118:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:121:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:122:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:128:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:129:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:131:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:136:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:137:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:139:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:144:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:145:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:147:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:155:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:156:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:159:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:163:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:164:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:170:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:173:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:174:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:178:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:181:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:182:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:186:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:189:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:190:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:194:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:197:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:201:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:204:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/sensor.py:251:14-32: Class member `ChargePointSensor.entity_description` overrides parent class `ChargepointEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blue_current/sensor.py:298:14-32: Class member `GridSensor.entity_description` overrides parent class `BlueCurrentEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blue_current/switch.py:80:9-12: Unexpected keyword argument `key` in function `BlueCurrentSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/switch.py:81:9-24: Unexpected keyword argument `translation_key` in function `BlueCurrentSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/switch.py:88:9-12: Unexpected keyword argument `key` in function `BlueCurrentSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/switch.py:89:9-24: Unexpected keyword argument `translation_key` in function `BlueCurrentSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/switch.py:98:9-12: Unexpected keyword argument `key` in function `BlueCurrentSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/switch.py:99:9-24: Unexpected keyword argument `translation_key` in function `BlueCurrentSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/blue_current/switch.py:131:5-23: Class member `ChargePointSwitch.entity_description` overrides parent class `ChargepointEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/blue_current/switch.py:131:5-23: Class member `ChargePointSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bluemaestro/sensor.py:38:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bluemaestro/sensor.py:42:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bluemaestro/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bluemaestro/sensor.py:54:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bluemaestro/sensor.py:58:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bluemaestro/sensor.py:59:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bluemaestro/sensor.py:65:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bluemaestro/sensor.py:74:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bluemaestro/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bluemaestro/sensor.py:84:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bluemaestro/sensor.py:132:7-39: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/blueprint/importer.py:140:48-61: `block_content` may be uninitialized [unbound-name] +ERROR homeassistant/components/blueprint/importer.py:226:54-61: `content` may be uninitialized [unbound-name] +ERROR homeassistant/components/blueprint/models.py:275:59-80: Argument `BoundMethod[Self@DomainBlueprints, (self: Self@DomainBlueprints) -> dict[str, Blueprint | BlueprintException | None]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/blueprint/models.py:386:48-56: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/bluesound/button.py:70:9-12: Unexpected keyword argument `key` in function `BluesoundButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bluesound/button.py:71:9-24: Unexpected keyword argument `translation_key` in function `BluesoundButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bluesound/button.py:72:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BluesoundButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bluesound/button.py:76:9-12: Unexpected keyword argument `key` in function `BluesoundButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bluesound/button.py:77:9-24: Unexpected keyword argument `translation_key` in function `BluesoundButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bluesound/button.py:78:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BluesoundButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bluesound/button.py:88:5-23: Class member `BluesoundButton.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bluesound/button.py:88:5-23: Class member `BluesoundButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bluesound/coordinator.py:61:5-17: Class member `BluesoundCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bluesound/media_player.py:628:25-40: No matching overload found for function `min` called with arguments: (Literal[1], float) [no-matching-overload] +ERROR homeassistant/components/bluesound/media_player.py:637:25-40: No matching overload found for function `max` called with arguments: (Literal[0], float) [no-matching-overload] +ERROR homeassistant/components/bluesound/media_player.py:646:41-47: Argument `float` is not assignable to parameter `level` with type `int | None` in function `pyblu.player.Player.volume` [bad-argument-type] +ERROR homeassistant/components/bluetooth/__init__.py:199:13-31: Argument `HassJob[[now: datetime], Coroutine[Unknown, Unknown, None]]` is not assignable to parameter `action` with type `((datetime) -> Coroutine[Any, Any, None] | None) | HassJob[[datetime], Coroutine[Any, Any, None] | None]` in function `homeassistant.helpers.event.async_call_later` [bad-argument-type] +ERROR homeassistant/components/bluetooth/__init__.py:355:21-358:22: Argument `() -> Task[dict[str, Any]]` is not assignable to parameter `func` with type `(**tuple[*@_]) -> object` in function `homeassistant.core.callback` [bad-argument-type] +ERROR homeassistant/components/bluetooth/config_flow.py:222:9-31: Class member `BluetoothConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bluetooth/manager.py:215:36-45: No matching overload found for function `homeassistant.components.bluetooth.match.BluetoothCallbackMatcherWithCallback.update` called with arguments: (TypedDict[BluetoothCallbackMatcher]) [no-matching-overload] +ERROR homeassistant/components/bluetooth/match.py:202:54-73: `_T` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/bluetooth/match.py:209:34-58: `_T` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/bluetooth/match.py:213:31-52: `_T` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/bluetooth/match.py:217:36-62: `_T` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/bluetooth/match.py:229:54-73: `_T` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/bluetooth/match.py:235:34-58: `_T` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/bluetooth/match.py:239:31-52: `_T` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/bluetooth/match.py:243:36-62: `_T` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/bluetooth/match.py:299:37-50: `matched_uuids` may be uninitialized [unbound-name] +ERROR homeassistant/components/bluetooth/passive_update_processor.py:310:32-53: `str` is not assignable to attribute `restore_key` with type `None` [bad-assignment] +ERROR homeassistant/components/bluetooth/passive_update_processor.py:655:43-45: Expected 0 positional arguments, got 1 in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-count] +ERROR homeassistant/components/bluetooth/passive_update_processor.py:658:17-73: Expected 0 positional arguments, got 1 in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-count] +ERROR homeassistant/components/bluetooth/passive_update_processor.py:663:17-56: Expected 0 positional arguments, got 1 in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-count] +ERROR homeassistant/components/bluetooth_tracker/device_tracker.py:10:8-17: Could not find import of `bluetooth` [missing-import] +ERROR homeassistant/components/bluetooth_tracker/device_tracker.py:11:1-39: Could not find import of `bt_proximity` [missing-import] +ERROR homeassistant/components/bmw_connected_drive/binary_sensor.py:126:9-12: Unexpected keyword argument `key` in function `BMWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/binary_sensor.py:127:9-24: Unexpected keyword argument `translation_key` in function `BMWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/binary_sensor.py:136:9-12: Unexpected keyword argument `key` in function `BMWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/binary_sensor.py:137:9-24: Unexpected keyword argument `translation_key` in function `BMWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/binary_sensor.py:146:9-12: Unexpected keyword argument `key` in function `BMWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/binary_sensor.py:147:9-24: Unexpected keyword argument `translation_key` in function `BMWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/binary_sensor.py:158:9-12: Unexpected keyword argument `key` in function `BMWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/binary_sensor.py:159:9-24: Unexpected keyword argument `translation_key` in function `BMWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/binary_sensor.py:166:9-12: Unexpected keyword argument `key` in function `BMWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/binary_sensor.py:167:9-24: Unexpected keyword argument `translation_key` in function `BMWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/binary_sensor.py:175:9-12: Unexpected keyword argument `key` in function `BMWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/binary_sensor.py:176:9-24: Unexpected keyword argument `translation_key` in function `BMWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/binary_sensor.py:183:9-12: Unexpected keyword argument `key` in function `BMWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/binary_sensor.py:184:9-24: Unexpected keyword argument `translation_key` in function `BMWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/binary_sensor.py:190:9-12: Unexpected keyword argument `key` in function `BMWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/binary_sensor.py:191:9-24: Unexpected keyword argument `translation_key` in function `BMWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/binary_sensor.py:220:5-23: Class member `BMWBinarySensor.entity_description` overrides parent class `BMWBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bmw_connected_drive/binary_sensor.py:220:5-23: Class member `BMWBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bmw_connected_drive/button.py:41:9-12: Unexpected keyword argument `key` in function `BMWButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/button.py:42:9-24: Unexpected keyword argument `translation_key` in function `BMWButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/button.py:46:9-12: Unexpected keyword argument `key` in function `BMWButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/button.py:47:9-24: Unexpected keyword argument `translation_key` in function `BMWButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/button.py:51:9-12: Unexpected keyword argument `key` in function `BMWButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/button.py:52:9-24: Unexpected keyword argument `translation_key` in function `BMWButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/button.py:56:9-12: Unexpected keyword argument `key` in function `BMWButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/button.py:57:9-24: Unexpected keyword argument `translation_key` in function `BMWButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/button.py:62:9-12: Unexpected keyword argument `key` in function `BMWButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/button.py:63:9-24: Unexpected keyword argument `translation_key` in function `BMWButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/button.py:95:5-23: Class member `BMWButton.entity_description` overrides parent class `BMWBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bmw_connected_drive/button.py:95:5-23: Class member `BMWButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bmw_connected_drive/config_flow.py:223:9-31: Class member `BMWConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bmw_connected_drive/coordinator.py:37:5-17: Class member `BMWDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bmw_connected_drive/number.py:42:9-12: Unexpected keyword argument `key` in function `BMWNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/number.py:43:9-24: Unexpected keyword argument `translation_key` in function `BMWNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/number.py:83:5-23: Class member `BMWNumber.entity_description` overrides parent class `BMWBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bmw_connected_drive/number.py:83:5-23: Class member `BMWNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bmw_connected_drive/select.py:39:9-12: Unexpected keyword argument `key` in function `BMWSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/select.py:40:9-24: Unexpected keyword argument `translation_key` in function `BMWSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/select.py:50:9-28: Unexpected keyword argument `unit_of_measurement` in function `BMWSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/select.py:53:9-12: Unexpected keyword argument `key` in function `BMWSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/select.py:54:9-24: Unexpected keyword argument `translation_key` in function `BMWSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/select.py:90:5-23: Class member `BMWSelect.entity_description` overrides parent class `BMWBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bmw_connected_drive/select.py:90:5-23: Class member `BMWSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:54:9-12: Unexpected keyword argument `key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:58:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:63:9-12: Unexpected keyword argument `key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:66:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:70:9-12: Unexpected keyword argument `key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:76:9-12: Unexpected keyword argument `key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:83:9-12: Unexpected keyword argument `key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:84:9-24: Unexpected keyword argument `translation_key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:90:9-12: Unexpected keyword argument `key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:91:9-24: Unexpected keyword argument `translation_key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:99:9-12: Unexpected keyword argument `key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:107:9-12: Unexpected keyword argument `key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:108:9-24: Unexpected keyword argument `translation_key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:115:9-12: Unexpected keyword argument `key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:124:9-12: Unexpected keyword argument `key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:133:9-12: Unexpected keyword argument `key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:134:9-24: Unexpected keyword argument `translation_key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:142:9-12: Unexpected keyword argument `key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:143:9-24: Unexpected keyword argument `translation_key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:150:9-12: Unexpected keyword argument `key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:151:9-24: Unexpected keyword argument `translation_key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:162:13-16: Unexpected keyword argument `key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:163:13-28: Unexpected keyword argument `translation_key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:175:13-16: Unexpected keyword argument `key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:176:13-28: Unexpected keyword argument `translation_key` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:182:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `BMWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:211:5-23: Class member `BMWSensor.entity_description` overrides parent class `BMWBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bmw_connected_drive/sensor.py:211:5-23: Class member `BMWSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bmw_connected_drive/switch.py:48:9-12: Unexpected keyword argument `key` in function `BMWSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/switch.py:49:9-24: Unexpected keyword argument `translation_key` in function `BMWSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/switch.py:56:9-12: Unexpected keyword argument `key` in function `BMWSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/switch.py:57:9-24: Unexpected keyword argument `translation_key` in function `BMWSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bmw_connected_drive/switch.py:91:5-23: Class member `BMWSwitch.entity_description` overrides parent class `BMWBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bmw_connected_drive/switch.py:91:5-23: Class member `BMWSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bond/button.py:30:5-9: Class member `BondButtonEntityDescription.name` overrides parent class `ButtonEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bond/button.py:36:5-8: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:38:5-20: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:46:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:48:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:49:28-42: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:53:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:55:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:56:28-48: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:60:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:62:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:63:28-49: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:67:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:69:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:70:28-49: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:74:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:76:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:77:28-51: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:81:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:83:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:84:28-53: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:88:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:90:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:91:28-49: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:95:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:97:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:102:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:104:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:105:28-58: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:109:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:111:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:112:28-60: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:116:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:118:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:119:28-49: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:123:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:125:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:126:28-49: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:130:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:132:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:133:28-58: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:137:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:139:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:140:28-58: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:144:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:146:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:147:28-60: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:151:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:153:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:154:28-60: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:158:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:160:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:161:28-58: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:165:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:167:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:168:28-60: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:172:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:174:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:175:28-49: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:179:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:181:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:182:28-44: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:186:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:188:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:189:28-44: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:193:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:195:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:196:28-48: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:200:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:202:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:207:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:209:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:214:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:216:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:221:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:223:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:228:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:230:28-39: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:234:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:236:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:237:28-47: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:241:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:243:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:244:28-47: Argument `str` is not assignable to parameter `mutually_exclusive` with type `Action | None` in function `BondButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:248:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:250:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:255:9-12: Unexpected keyword argument `key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:257:9-24: Unexpected keyword argument `translation_key` in function `BondButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bond/button.py:280:42-72: Argument `Action` is not assignable to parameter `action` with type `str` in function `homeassistant.components.bond.utils.BondDevice.has_action` [bad-argument-type] +ERROR homeassistant/components/bond/button.py:296:5-23: Class member `BondButtonEntity.entity_description` overrides parent class `BondEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bond/button.py:296:5-23: Class member `BondButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bond/cover.py:51:5-23: Class member `BondCover._attr_device_class` overrides parent class `BondEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bond/cover.py:72:14-38: Class member `BondCover._attr_supported_features` overrides parent class `BondEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bond/entity.py:192:13-53: Argument `HassJob[[now: datetime], None]` is not assignable to parameter `action` with type `((datetime) -> Coroutine[Any, Any, None] | None) | HassJob[[datetime], Coroutine[Any, Any, None] | None]` in function `homeassistant.helpers.event.async_call_later` [bad-argument-type] +ERROR homeassistant/components/bond/fan.py:79:14-38: Class member `BondFan._attr_supported_features` overrides parent class `BondEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bosch_alarm/__init__.py:84:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/bosch_alarm/alarm_control_panel.py:44:5-29: Class member `AreaAlarmControlPanel._attr_supported_features` overrides parent class `BoschAlarmAreaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:32:9-12: Unexpected keyword argument `key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:33:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:38:9-12: Unexpected keyword argument `key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:39:9-24: Unexpected keyword argument `translation_key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:40:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:45:9-12: Unexpected keyword argument `key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:47:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:52:9-12: Unexpected keyword argument `key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:54:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:59:9-12: Unexpected keyword argument `key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:61:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:66:9-12: Unexpected keyword argument `key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:68:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:73:9-12: Unexpected keyword argument `key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:75:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:80:9-12: Unexpected keyword argument `key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:81:9-24: Unexpected keyword argument `translation_key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:82:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:87:9-12: Unexpected keyword argument `key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:89:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:93:9-12: Unexpected keyword argument `key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:94:9-24: Unexpected keyword argument `translation_key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:95:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:100:9-12: Unexpected keyword argument `key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:101:9-24: Unexpected keyword argument `translation_key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:102:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:107:9-12: Unexpected keyword argument `key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:108:9-24: Unexpected keyword argument `translation_key` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:109:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BoschAlarmFaultEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:162:5-23: Class member `PanelFaultsSensor.entity_description` overrides parent class `BoschAlarmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bosch_alarm/binary_sensor.py:162:5-23: Class member `PanelFaultsSensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bosch_alarm/sensor.py:59:13-16: Unexpected keyword argument `key` in function `BoschAlarmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/sensor.py:60:13-28: Unexpected keyword argument `translation_key` in function `BoschAlarmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/sensor.py:67:9-12: Unexpected keyword argument `key` in function `BoschAlarmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `BoschAlarmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/sensor.py:98:5-23: Class member `BoschAreaSensor.entity_description` overrides parent class `BoschAlarmAreaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bosch_alarm/sensor.py:98:5-23: Class member `BoschAreaSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bosch_alarm/services.py:53:8-20: `config_entry` is uninitialized [unbound-name] +ERROR homeassistant/components/bosch_alarm/services.py:57:49-61: `config_entry` is uninitialized [unbound-name] +ERROR homeassistant/components/bosch_alarm/services.py:59:13-25: `config_entry` is uninitialized [unbound-name] +ERROR homeassistant/components/bosch_alarm/services.py:66:49-61: `config_entry` is uninitialized [unbound-name] +ERROR homeassistant/components/bosch_alarm/switch.py:33:9-12: Unexpected keyword argument `key` in function `BoschAlarmSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/switch.py:34:9-24: Unexpected keyword argument `translation_key` in function `BoschAlarmSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/switch.py:40:9-12: Unexpected keyword argument `key` in function `BoschAlarmSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/switch.py:41:9-24: Unexpected keyword argument `translation_key` in function `BoschAlarmSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/switch.py:47:9-12: Unexpected keyword argument `key` in function `BoschAlarmSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/switch.py:48:9-24: Unexpected keyword argument `translation_key` in function `BoschAlarmSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_alarm/switch.py:91:5-23: Class member `PanelDoorEntity.entity_description` overrides parent class `BoschAlarmDoorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bosch_alarm/switch.py:91:5-23: Class member `PanelDoorEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bosch_shc/__init__.py:70:43-63: Argument `BoundMethod[SHCSession, (self: SHCSession) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/bosch_shc/__init__.py:72:39-60: Argument `BoundMethod[SHCSession, (self: SHCSession) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/bosch_shc/__init__.py:82:39-70: Argument `BoundMethod[SHCSession, (self: SHCSession) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/bosch_shc/binary_sensor.py:34:13-35:54: `+` is not supported between `Sequence[SHCShutterContact]` and `Sequence[SHCShutterContact2]` [unsupported-operation] +ERROR homeassistant/components/bosch_shc/binary_sensor.py:46:13-47:53: `+` is not supported between `Sequence[SHCMotionDetector]` and `Sequence[SHCShutterContact]` [unsupported-operation] +ERROR homeassistant/components/bosch_shc/binary_sensor.py:75:14-32: Class member `ShutterContactSensor._attr_device_class` overrides parent class `SHCEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bosch_shc/binary_sensor.py:76:13-38: Object of class `SHCDevice` has no attribute `device_class` +Object of class `SHCIntrusionSystem` has no attribute `device_class` [missing-attribute] +ERROR homeassistant/components/bosch_shc/binary_sensor.py:82:16-34: Object of class `SHCDevice` has no attribute `state` +Object of class `SHCIntrusionSystem` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/bosch_shc/binary_sensor.py:88:5-23: Class member `BatterySensor._attr_device_class` overrides parent class `SHCEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bosch_shc/binary_sensor.py:99:13-38: Object of class `SHCDevice` has no attribute `batterylevel` +Object of class `SHCIntrusionSystem` has no attribute `batterylevel` [missing-attribute] +ERROR homeassistant/components/bosch_shc/cover.py:42:5-23: Class member `ShutterControlCover._attr_device_class` overrides parent class `SHCEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bosch_shc/cover.py:43:5-29: Class member `ShutterControlCover._attr_supported_features` overrides parent class `SHCEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bosch_shc/cover.py:53:22-40: Object of class `SHCDevice` has no attribute `level` +Object of class `SHCIntrusionSystem` has no attribute `level` [missing-attribute] +ERROR homeassistant/components/bosch_shc/cover.py:57:9-26: Object of class `SHCDevice` has no attribute `stop` +Object of class `SHCIntrusionSystem` has no attribute `stop` [missing-attribute] +ERROR homeassistant/components/bosch_shc/cover.py:68:13-41: Object of class `SHCDevice` has no attribute `operation_state` +Object of class `SHCIntrusionSystem` has no attribute `operation_state` [missing-attribute] +ERROR homeassistant/components/bosch_shc/cover.py:76:13-41: Object of class `SHCDevice` has no attribute `operation_state` +Object of class `SHCIntrusionSystem` has no attribute `operation_state` [missing-attribute] +ERROR homeassistant/components/bosch_shc/cover.py:82:9-27: Object of class `SHCDevice` has no attribute `level` [missing-attribute] +ERROR homeassistant/components/bosch_shc/cover.py:82:9-27: Object of class `SHCIntrusionSystem` has no attribute `level` [missing-attribute] +ERROR homeassistant/components/bosch_shc/cover.py:86:9-27: Object of class `SHCDevice` has no attribute `level` [missing-attribute] +ERROR homeassistant/components/bosch_shc/cover.py:86:9-27: Object of class `SHCIntrusionSystem` has no attribute `level` [missing-attribute] +ERROR homeassistant/components/bosch_shc/cover.py:91:9-27: Object of class `SHCDevice` has no attribute `level` [missing-attribute] +ERROR homeassistant/components/bosch_shc/cover.py:91:9-27: Object of class `SHCIntrusionSystem` has no attribute `level` [missing-attribute] +ERROR homeassistant/components/bosch_shc/entity.py:83:24-52: Object of class `SHCIntrusionSystem` has no attribute `device_services` [missing-attribute] +ERROR homeassistant/components/bosch_shc/entity.py:89:24-52: Object of class `SHCIntrusionSystem` has no attribute `device_services` [missing-attribute] +ERROR homeassistant/components/bosch_shc/entity.py:95:16-35: Object of class `SHCIntrusionSystem` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/bosch_shc/entity.py:121:16-48: Object of class `SHCDevice` has no attribute `system_availability` [missing-attribute] +ERROR homeassistant/components/bosch_shc/sensor.py:54:9-12: Unexpected keyword argument `key` in function `SHCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/sensor.py:58:33-51: Object of class `SHCDevice` has no attribute `temperature` [missing-attribute] +ERROR homeassistant/components/bosch_shc/sensor.py:61:9-12: Unexpected keyword argument `key` in function `SHCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/sensor.py:64:33-48: Object of class `SHCDevice` has no attribute `humidity` [missing-attribute] +ERROR homeassistant/components/bosch_shc/sensor.py:67:9-12: Unexpected keyword argument `key` in function `SHCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `SHCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/sensor.py:70:33-46: Object of class `SHCDevice` has no attribute `purity` [missing-attribute] +ERROR homeassistant/components/bosch_shc/sensor.py:73:9-12: Unexpected keyword argument `key` in function `SHCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `SHCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/sensor.py:75:33-55: Object of class `SHCDevice` has no attribute `combined_rating` [missing-attribute] +ERROR homeassistant/components/bosch_shc/sensor.py:77:35-53: Object of class `SHCDevice` has no attribute `description` [missing-attribute] +ERROR homeassistant/components/bosch_shc/sensor.py:81:9-12: Unexpected keyword argument `key` in function `SHCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `SHCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/sensor.py:83:33-58: Object of class `SHCDevice` has no attribute `temperature_rating` [missing-attribute] +ERROR homeassistant/components/bosch_shc/sensor.py:86:9-12: Unexpected keyword argument `key` in function `SHCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `SHCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/sensor.py:88:33-60: Object of class `SHCDevice` has no attribute `communicationquality` [missing-attribute] +ERROR homeassistant/components/bosch_shc/sensor.py:91:9-12: Unexpected keyword argument `key` in function `SHCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `SHCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/sensor.py:93:33-55: Object of class `SHCDevice` has no attribute `humidity_rating` [missing-attribute] +ERROR homeassistant/components/bosch_shc/sensor.py:96:9-12: Unexpected keyword argument `key` in function `SHCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `SHCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/sensor.py:98:33-53: Object of class `SHCDevice` has no attribute `purity_rating` [missing-attribute] +ERROR homeassistant/components/bosch_shc/sensor.py:101:9-12: Unexpected keyword argument `key` in function `SHCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/sensor.py:104:33-56: Object of class `SHCDevice` has no attribute `powerconsumption` [missing-attribute] +ERROR homeassistant/components/bosch_shc/sensor.py:107:9-12: Unexpected keyword argument `key` in function `SHCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/sensor.py:111:33-57: Object of class `SHCDevice` has no attribute `energyconsumption` [missing-attribute] +ERROR homeassistant/components/bosch_shc/sensor.py:114:9-12: Unexpected keyword argument `key` in function `SHCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/sensor.py:115:9-24: Unexpected keyword argument `translation_key` in function `SHCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/sensor.py:118:33-48: Object of class `SHCDevice` has no attribute `position` [missing-attribute] +ERROR homeassistant/components/bosch_shc/sensor.py:120:35-52: Object of class `SHCDevice` has no attribute `valvestate` [missing-attribute] +ERROR homeassistant/components/bosch_shc/sensor.py:183:13-89: `+` is not supported between `Sequence[SHCSmartPlug]` and `Sequence[SHCLightSwitchBSM]` [unsupported-operation] +ERROR homeassistant/components/bosch_shc/sensor.py:205:5-23: Class member `SHCSensor.entity_description` overrides parent class `SHCEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bosch_shc/sensor.py:205:5-23: Class member `SHCSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bosch_shc/sensor.py:222:49-61: Argument `SHCDevice | SHCIntrusionSystem` is not assignable to parameter with type `SHCDevice` [bad-argument-type] +ERROR homeassistant/components/bosch_shc/sensor.py:228:58-70: Argument `SHCDevice | SHCIntrusionSystem` is not assignable to parameter with type `SHCDevice` [bad-argument-type] +ERROR homeassistant/components/bosch_shc/switch.py:42:9-12: Unexpected keyword argument `key` in function `SHCSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/switch.py:45:18-58: Argument `Literal[PowerSwitchService.State.ON]` is not assignable to parameter `on_value` with type `float | int | str | None` in function `SHCSwitchEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bosch_shc/switch.py:49:9-12: Unexpected keyword argument `key` in function `SHCSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/switch.py:52:18-65: Argument `Literal[PowerSwitchService.State.ON]` is not assignable to parameter `on_value` with type `float | int | str | None` in function `SHCSwitchEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bosch_shc/switch.py:56:9-12: Unexpected keyword argument `key` in function `SHCSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/switch.py:59:18-60: Argument `Literal[PowerSwitchService.State.ON]` is not assignable to parameter `on_value` with type `float | int | str | None` in function `SHCSwitchEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bosch_shc/switch.py:63:9-12: Unexpected keyword argument `key` in function `SHCSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/switch.py:66:18-59: Argument `Literal[CameraLightService.State.ON]` is not assignable to parameter `on_value` with type `float | int | str | None` in function `SHCSwitchEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bosch_shc/switch.py:70:9-12: Unexpected keyword argument `key` in function `SHCSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bosch_shc/switch.py:73:18-64: Argument `Literal[PrivacyModeService.State.DISABLED]` is not assignable to parameter `on_value` with type `float | int | str | None` in function `SHCSwitchEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/bosch_shc/switch.py:152:5-23: Class member `SHCSwitch.entity_description` overrides parent class `SHCEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bosch_shc/switch.py:152:5-23: Class member `SHCSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bosch_shc/switch.py:188:9-28: Object of class `SHCIntrusionSystem` has no attribute `update` [missing-attribute] +ERROR homeassistant/components/bosch_shc/switch.py:205:16-36: Object of class `SHCDevice` has no attribute `routing` +Object of class `SHCIntrusionSystem` has no attribute `routing` [missing-attribute] +ERROR homeassistant/components/bosch_shc/switch.py:209:9-29: Object of class `SHCDevice` has no attribute `routing` [missing-attribute] +ERROR homeassistant/components/bosch_shc/switch.py:209:9-29: Object of class `SHCIntrusionSystem` has no attribute `routing` [missing-attribute] +ERROR homeassistant/components/bosch_shc/switch.py:213:9-29: Object of class `SHCDevice` has no attribute `routing` [missing-attribute] +ERROR homeassistant/components/bosch_shc/switch.py:213:9-29: Object of class `SHCIntrusionSystem` has no attribute `routing` [missing-attribute] +ERROR homeassistant/components/braviatv/button.py:30:9-12: Unexpected keyword argument `key` in function `BraviaTVButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/braviatv/button.py:32:9-24: Unexpected keyword argument `entity_category` in function `BraviaTVButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/braviatv/button.py:36:9-12: Unexpected keyword argument `key` in function `BraviaTVButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/braviatv/button.py:37:9-24: Unexpected keyword argument `translation_key` in function `BraviaTVButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/braviatv/button.py:38:9-24: Unexpected keyword argument `entity_category` in function `BraviaTVButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/braviatv/button.py:63:5-23: Class member `BraviaTVButton.entity_description` overrides parent class `BraviaTVEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/braviatv/button.py:63:5-23: Class member `BraviaTVButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/braviatv/coordinator.py:69:5-17: Class member `BraviaTVCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/braviatv/media_player.py:45:5-23: Class member `BraviaTVMediaPlayer._attr_device_class` overrides parent class `BraviaTVEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/braviatv/media_player.py:46:5-29: Class member `BraviaTVMediaPlayer._attr_supported_features` overrides parent class `BraviaTVEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bring/coordinator.py:63:5-17: Class member `BringBaseCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bring/coordinator.py:112:21-34: `current_lists` may be uninitialized [unbound-name] +ERROR homeassistant/components/bring/coordinator.py:113:31-44: `current_lists` may be uninitialized [unbound-name] +ERROR homeassistant/components/bring/entity.py:29:14-25: Class member `BringBaseEntity.device_info` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bring/entity.py:29:28-40:10: `TypedDict[DeviceInfo]` is not assignable to attribute `device_info` with type `(self: Self@BringBaseEntity) -> TypedDict[DeviceInfo] | None` [bad-assignment] +ERROR homeassistant/components/bring/event.py:54:5-16: Class member `BringEventEntity.coordinator` overrides parent class `BringBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bring/sensor.py:48:9-12: Unexpected keyword argument `key` in function `BringSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bring/sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `BringSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bring/sensor.py:53:9-12: Unexpected keyword argument `key` in function `BringSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bring/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `BringSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bring/sensor.py:58:9-12: Unexpected keyword argument `key` in function `BringSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bring/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `BringSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bring/sensor.py:63:9-12: Unexpected keyword argument `key` in function `BringSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bring/sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `BringSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bring/sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `BringSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bring/sensor.py:75:9-12: Unexpected keyword argument `key` in function `BringSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bring/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `BringSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bring/sensor.py:78:9-24: Unexpected keyword argument `entity_category` in function `BringSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bring/sensor.py:119:5-23: Class member `BringSensorEntity.entity_description` overrides parent class `BringBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bring/sensor.py:119:5-23: Class member `BringSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bring/sensor.py:120:5-16: Class member `BringSensorEntity.coordinator` overrides parent class `BringBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bring/todo.py:91:5-16: Class member `BringTodoListEntity.coordinator` overrides parent class `BringBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/broadlink/climate.py:48:5-29: Class member `BroadlinkThermostat._attr_supported_features` overrides parent class `BroadlinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/broadlink/config_flow.py:77:60-77: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[str, int, int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/broadlink/config_flow.py:163:52-63: Argument `BoundMethod[Device, (self: Device) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/broadlink/device.py:109:20-23: `Device` is not assignable to attribute `api` with type `_ApiT` [bad-assignment] +ERROR homeassistant/components/broadlink/device.py:113:17-43: Argument `BoundMethod[Self@BroadlinkDevice, (self: Self@BroadlinkDevice) -> int | None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/broadlink/device.py:161:52-65: Argument `BoundMethod[_ApiT, (self: _ApiT) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/broadlink/light.py:82:35-68: `list[Unknown]` is not assignable to attribute `_attr_hs_color` with type `tuple[float, float] | None` [bad-assignment] +ERROR homeassistant/components/broadlink/remote.py:124:14-38: Class member `BroadlinkRemote._attr_supported_features` overrides parent class `BroadlinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/broadlink/remote.py:124:14-38: Class member `BroadlinkRemote._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/broadlink/sensor.py:29:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/broadlink/sensor.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/broadlink/sensor.py:39:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/broadlink/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/broadlink/sensor.py:51:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/broadlink/sensor.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/broadlink/sensor.py:63:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/broadlink/sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/broadlink/sensor.py:67:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/broadlink/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/broadlink/sensor.py:71:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/broadlink/sensor.py:77:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/broadlink/sensor.py:83:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/broadlink/sensor.py:89:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/broadlink/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/broadlink/sensor.py:96:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/broadlink/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/broadlink/sensor.py:135:14-32: Class member `BroadlinkSensor.entity_description` overrides parent class `BroadlinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/broadlink/switch.py:145:5-23: Class member `BroadlinkSwitch._attr_device_class` overrides parent class `BroadlinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/broadlink/switch.py:145:5-23: Class member `BroadlinkSwitch._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/brother/coordinator.py:22:5-17: Class member `BrotherDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/brother/sensor.py:47:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:49:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:53:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:56:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:60:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:63:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:67:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:74:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:77:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:81:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:85:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:89:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:92:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:96:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:99:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:103:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:104:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:107:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:111:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:114:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:118:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:119:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:121:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:125:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:129:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:133:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:134:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:136:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:140:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:141:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:143:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:147:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:148:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:151:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:155:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:156:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:158:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:162:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:163:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:165:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:169:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:170:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:173:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:177:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:178:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:180:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:184:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:185:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:187:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:191:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:192:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:195:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:199:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:200:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:203:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:207:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:208:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:211:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:215:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:216:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:219:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:223:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:224:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:227:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:231:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:232:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:235:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:239:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:240:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:243:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:247:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:248:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:251:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:255:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:256:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:259:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:263:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:264:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:267:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:271:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:272:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:275:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:279:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:280:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:283:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:287:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:288:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:291:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:295:9-12: Unexpected keyword argument `key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:296:9-24: Unexpected keyword argument `translation_key` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:297:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:299:9-24: Unexpected keyword argument `entity_category` in function `BrotherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/brother/sensor.py:338:5-23: Class member `BrotherPrinterSensor.entity_description` overrides parent class `BrotherPrinterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/brother/sensor.py:338:5-23: Class member `BrotherPrinterSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/brottsplatskartan/sensor.py:69:13-52: `bool | list[Unknown]` is not assignable to `Literal[False] | dict[str, list[Unknown]]` [bad-assignment] +ERROR homeassistant/components/brunt/coordinator.py:29:5-17: Class member `BruntCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/brunt/cover.py:56:5-23: Class member `BruntDevice._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/brunt/cover.py:58:5-29: Class member `BruntDevice._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/brunt/cover.py:159:37-58: Argument `str | None` is not assignable to parameter `thing_uri` with type `str` in function `brunt.client.BruntClientAsync.async_change_request_position` [bad-argument-type] +ERROR homeassistant/components/brunt/cover.py:173:63-84: Cannot index into `dict[str, int]` [bad-index] +ERROR homeassistant/components/bryant_evolution/__init__.py:73:32-41: Cannot set item in `dict[tuple[int, int], BryantEvolutionLocalClient]` [unsupported-operation] +ERROR homeassistant/components/bryant_evolution/climate.py:46:47-58: No matching overload found for function `dict.get` called with arguments: (tuple[@_, ...]) [no-matching-overload] +ERROR homeassistant/components/bryant_evolution/climate.py:193:38-197:14: Argument `dict[str, str | tuple[str, bool]]` is not assignable to parameter `translation_placeholders` with type `dict[str, str] | None` in function `homeassistant.exceptions.HomeAssistantError.__init__` [bad-argument-type] +ERROR homeassistant/components/bsblan/climate.py:59:5-29: Class member `BSBLANClimate._attr_supported_features` overrides parent class `BSBLanEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bsblan/coordinator.py:47:5-17: Class member `BSBLanCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bsblan/coordinator.py:115:14-29: Class member `BSBLanFastCoordinator.update_interval` overrides parent class `BSBLanCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bsblan/coordinator.py:115:32-59: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@BSBLanFastCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/bsblan/sensor.py:36:9-12: Unexpected keyword argument `key` in function `BSBLanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bsblan/sensor.py:37:9-24: Unexpected keyword argument `translation_key` in function `BSBLanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bsblan/sensor.py:49:9-12: Unexpected keyword argument `key` in function `BSBLanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bsblan/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `BSBLanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bsblan/sensor.py:86:5-23: Class member `BSBLanSensor.entity_description` overrides parent class `BSBLanEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bsblan/sensor.py:86:5-23: Class member `BSBLanSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bsblan/water_heater.py:63:5-29: Class member `BSBLANWaterHeater._attr_supported_features` overrides parent class `BSBLanDualCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bt_home_hub_5/device_tracker.py:7:8-29: Could not find import of `bthomehub5_devicelist` [missing-import] +ERROR homeassistant/components/bt_smarthub/device_tracker.py:8:1-45: Could not find import of `btsmarthub_devicelist` [missing-import] +ERROR homeassistant/components/bthome/binary_sensor.py:29:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:49:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:53:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:61:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:65:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:69:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:73:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:77:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:81:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:85:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:89:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:93:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:97:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:101:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:105:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:109:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:113:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:117:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:121:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:125:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:129:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:133:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:137:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/binary_sensor.py:187:7-40: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/bthome/coordinator.py:56:5-16: Class member `BTHomePassiveBluetoothDataProcessor.coordinator` overrides parent class `PassiveBluetoothDataProcessor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/bthome/event.py:30:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/event.py:31:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/event.py:44:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/event.py:45:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/logbook.py:34:16-37:10: Returned type `dict[str, DeviceEntry | str]` is not assignable to declared return type `dict[str, str]` [bad-return] +ERROR homeassistant/components/bthome/sensor.py:59:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:66:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:74:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:83:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:90:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:99:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:109:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:116:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:120:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:124:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:127:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:134:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:141:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:148:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:158:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:168:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:178:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:181:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:185:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:192:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:199:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:206:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:213:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:220:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:222:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:223:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:224:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:231:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:241:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:248:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:258:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:265:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:272:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:273:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:277:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:280:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:287:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:290:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:297:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:301:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:302:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:309:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:316:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:323:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:324:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:331:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:339:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:341:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:348:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:358:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:368:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:378:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:388:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:398:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:408:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/bthome/sensor.py:427:17-83: Cannot index into `dict[tuple[ExtendedSensorDeviceClass, Units] | tuple[ExtendedSensorDeviceClass, None] | tuple[SensorDeviceClass, Units] | tuple[SensorDeviceClass, None], SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/bthome/sensor.py:462:7-34: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/buienradar/__init__.py:33:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/buienradar/camera.py:133:63-76: `last_modified` may be uninitialized [unbound-name] +ERROR homeassistant/components/buienradar/config_flow.py:81:9-31: Class member `BuienradarFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/buienradar/sensor.py:76:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:81:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:83:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:87:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:89:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:93:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:94:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:95:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:98:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:104:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:110:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:116:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:117:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:120:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:125:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:131:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:134:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:138:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:144:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:145:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:151:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:157:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:158:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:160:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:163:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:164:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:165:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:168:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:169:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:175:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:178:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:182:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:183:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:189:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:190:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:195:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:201:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:207:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:208:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:213:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:214:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:220:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:221:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:227:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:228:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:233:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:234:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:239:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:240:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:245:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:246:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:251:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:252:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:257:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:258:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:263:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:264:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:269:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:270:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:275:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:276:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:281:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:282:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:287:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:288:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:293:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:294:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:299:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:300:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:305:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:306:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:311:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:312:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:317:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:318:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:324:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:325:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:330:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:331:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:336:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:337:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:342:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:343:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:348:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:349:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:355:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:356:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:361:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:362:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:367:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:368:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:373:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:374:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:379:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:380:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:385:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:386:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:388:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:391:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:392:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:394:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:397:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:398:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:400:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:403:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:404:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:406:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:409:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:410:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:412:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:415:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:416:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:418:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:421:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:422:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:424:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:427:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:428:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:430:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:433:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:434:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:436:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:439:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:440:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:442:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:445:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:446:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:448:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:451:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:452:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:454:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:457:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:458:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:460:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:463:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:464:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:466:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:469:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:470:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:472:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:475:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:476:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:481:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:482:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:487:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:488:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:493:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:494:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:499:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:500:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:505:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:506:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:507:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:510:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:511:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:512:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:515:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:516:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:517:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:520:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:521:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:522:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:525:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:526:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:527:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:530:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:531:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:533:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:537:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:538:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:540:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:544:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:545:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:547:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:551:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:552:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:554:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:558:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:559:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:561:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:565:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:566:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:571:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:572:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:577:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:578:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:583:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:584:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:589:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:590:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:595:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:596:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:601:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:602:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:607:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:608:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:613:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:614:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:619:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:620:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:625:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:626:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:631:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:632:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:637:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:638:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:643:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:644:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:649:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:650:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:655:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:656:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:659:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:660:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:663:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:664:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:667:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:668:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:671:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:672:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:675:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:676:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:679:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:680:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:683:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:684:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:687:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:688:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:691:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:692:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/buienradar/sensor.py:783:28-43: Object of class `NoneType` has no attribute `data` [missing-attribute] +ERROR homeassistant/components/buienradar/sensor.py:876:20-29: `new_state` may be uninitialized [unbound-name] +ERROR homeassistant/components/buienradar/sensor.py:877:47-56: `new_state` may be uninitialized [unbound-name] +ERROR homeassistant/components/buienradar/util.py:101:39-50: Cannot set item in `dict[str, bool | None]` [unsupported-operation] +ERROR homeassistant/components/buienradar/util.py:102:35-52: Cannot set item in `dict[str, bool | None]` [unsupported-operation] +ERROR homeassistant/components/buienradar/util.py:106:39-76: Cannot set item in `dict[str, bool | None]` [unsupported-operation] +ERROR homeassistant/components/buienradar/util.py:110:31-39: Cannot set item in `dict[str, bool | None]` [unsupported-operation] +ERROR homeassistant/components/buienradar/util.py:185:16-29: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/buienradar/util.py:190:16-29: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/buienradar/util.py:195:16-29: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/buienradar/util.py:201:26-39: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/buienradar/util.py:209:26-39: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/buienradar/util.py:217:26-39: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/buienradar/util.py:225:24-37: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/buienradar/util.py:233:24-37: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/buienradar/util.py:241:26-39: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/buienradar/util.py:249:26-39: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/buienradar/util.py:257:24-37: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/buienradar/util.py:264:16-29: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/button/__init__.py:79:5-17: Class member `ButtonEntityDescription.device_class` overrides parent class `EntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/button/__init__.py:90:5-23: Class member `ButtonEntity.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/button/__init__.py:92:5-23: Class member `ButtonEntity._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/button/__init__.py:93:5-16: Class member `ButtonEntity._attr_state` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/button/__init__.py:147:48-58: Argument `BoundMethod[Self@ButtonEntity, (self: Self@ButtonEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/caldav/__init__.py:38:43-59: Argument `BoundMethod[DAVClient, (self: DAVClient, *, url: ParseResult | SplitResult | URL | str | None = None) -> Principal]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/caldav/api.py:20:46-60: Argument `() -> list[Calendar]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/caldav/config_flow.py:70:52-68: Argument `BoundMethod[DAVClient, (self: DAVClient, *, url: ParseResult | SplitResult | URL | str | None = None) -> Principal]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/caldav/todo.py:199:56-67: Argument `BoundMethod[CalendarObjectResource, (self: CalendarObjectResource) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/calendar/__init__.py:513:5-23: Class member `CalendarEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cambridge_audio/__init__.py:69:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/cambridge_audio/media_player.py:81:5-23: Class member `CambridgeAudioDevice._attr_device_class` overrides parent class `CambridgeAudioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cambridge_audio/select.py:54:9-12: Unexpected keyword argument `key` in function `CambridgeAudioSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cambridge_audio/select.py:55:9-24: Unexpected keyword argument `translation_key` in function `CambridgeAudioSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cambridge_audio/select.py:61:9-24: Unexpected keyword argument `entity_category` in function `CambridgeAudioSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cambridge_audio/select.py:69:9-12: Unexpected keyword argument `key` in function `CambridgeAudioSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cambridge_audio/select.py:70:9-24: Unexpected keyword argument `translation_key` in function `CambridgeAudioSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cambridge_audio/select.py:71:9-24: Unexpected keyword argument `entity_category` in function `CambridgeAudioSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cambridge_audio/select.py:80:9-12: Unexpected keyword argument `key` in function `CambridgeAudioSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cambridge_audio/select.py:81:9-24: Unexpected keyword argument `translation_key` in function `CambridgeAudioSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cambridge_audio/select.py:87:9-24: Unexpected keyword argument `entity_category` in function `CambridgeAudioSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cambridge_audio/select.py:115:5-23: Class member `CambridgeAudioSelect.entity_description` overrides parent class `CambridgeAudioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cambridge_audio/select.py:115:5-23: Class member `CambridgeAudioSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cambridge_audio/switch.py:30:9-12: Unexpected keyword argument `key` in function `CambridgeAudioSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cambridge_audio/switch.py:31:9-24: Unexpected keyword argument `translation_key` in function `CambridgeAudioSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cambridge_audio/switch.py:32:9-24: Unexpected keyword argument `entity_category` in function `CambridgeAudioSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cambridge_audio/switch.py:37:9-12: Unexpected keyword argument `key` in function `CambridgeAudioSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cambridge_audio/switch.py:38:9-24: Unexpected keyword argument `translation_key` in function `CambridgeAudioSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cambridge_audio/switch.py:39:9-24: Unexpected keyword argument `entity_category` in function `CambridgeAudioSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cambridge_audio/switch.py:61:5-23: Class member `CambridgeAudioSwitch.entity_description` overrides parent class `CambridgeAudioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cambridge_audio/switch.py:61:5-23: Class member `CambridgeAudioSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/camera/__init__.py:458:5-16: Class member `Camera._attr_state` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/camera/__init__.py:459:5-29: Class member `Camera._attr_supported_features` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/camera/__init__.py:637:48-61: Argument `BoundMethod[Self@Camera, (self: Self@Camera) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/camera/__init__.py:645:48-60: Argument `BoundMethod[Self@Camera, (self: Self@Camera) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/camera/__init__.py:653:48-76: Argument `BoundMethod[Self@Camera, (self: Self@Camera) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/camera/__init__.py:661:48-77: Argument `BoundMethod[Self@Camera, (self: Self@Camera) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/camera/media_source.py:52:5-9: Class member `CameraMediaSource.name` overrides parent class `MediaSource` in an inconsistent manner [bad-override] +ERROR homeassistant/components/canary/alarm_control_panel.py:42:5-29: Class member `CanaryAlarm._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/canary/camera.py:130:52-82: Argument `BoundMethod[Self@CanaryCamera, (self: Self@CanaryCamera) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/canary/camera.py:150:52-84: Argument `BoundMethod[LiveStreamSession, (self: LiveStreamSession) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/canary/camera.py:173:17-30: Argument `asyncio.streams.StreamReader` is not assignable to parameter `stream` with type `aiohttp.streams.StreamReader` in function `homeassistant.helpers.aiohttp_client.async_aiohttp_proxy_stream` [bad-argument-type] +ERROR homeassistant/components/canary/coordinator.py:70:63-80: Argument `BoundMethod[Self@CanaryDataUpdateCoordinator, (self: Self@CanaryDataUpdateCoordinator) -> TypedDict[CanaryData]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/canary/sensor.py:126:14-32: Class member `CanarySensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cast/__init__.py:39:10-27: Function declared to return `list[BrowseMedia]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/cast/__init__.py:62:10-14: Function declared to return `bool` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/cast/config_flow.py:44:9-31: Class member `FlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cast/discovery.py:64:13-21: Class member `CastListener.add_cast` overrides parent class `AbstractCastListener` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/cast/discovery.py:68:13-24: Class member `CastListener.update_cast` overrides parent class `AbstractCastListener` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/cast/helpers.py:132:13-29: Unexpected keyword argument `is_dynamic_group` in function `ChromecastInfo.__init__` [unexpected-keyword] +ERROR homeassistant/components/cast/helpers.py:268:12-37: Module `aiohttp.client_exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/cast/media_player.py:234:60-238:10: Unpacked argument `tuple[CastInfo, HaZeroconf | None]` is not assignable to parameter `*args` with type `tuple[CastInfo, Zeroconf | None, int | None, float | None, float | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/cast/media_player.py:353:28-51: Object of class `NoneType` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/cast/media_player.py:354:29-62: Object of class `NoneType` has no attribute `media_controller` [missing-attribute] +ERROR homeassistant/components/cast/media_player.py:418:38-54: `datetime` is not assignable to attribute `media_status_received` with type `None` [bad-assignment] +ERROR homeassistant/components/cast/media_player.py:460:35-72: Object of class `NoneType` has no attribute `get_multizone_memberships` [missing-attribute] +ERROR homeassistant/components/cast/media_player.py:463:46-87: Object of class `NoneType` has no attribute `get_multizone_mediacontroller` [missing-attribute] +ERROR homeassistant/components/cast/media_player.py:493:28-61: Object of class `NoneType` has no attribute `media_controller` [missing-attribute] +ERROR homeassistant/components/cast/media_player.py:502:40-81: Object of class `NoneType` has no attribute `get_multizone_mediacontroller` [missing-attribute] +ERROR homeassistant/components/cast/media_player.py:599:32-58: Object of class `NoneType` has no attribute `cast_type` [missing-attribute] +ERROR homeassistant/components/cast/media_player.py:608:29-44: Argument `Sequence[BrowseMedia] | None` is not assignable to parameter `iterable` with type `Iterable[BrowseMedia]` in function `list.extend` [bad-argument-type] +ERROR homeassistant/components/ccm15/climate.py:65:5-29: Class member `CCM15Climate._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ccm15/climate.py:149:33-42: Argument `CCM15SlaveDevice | None` is not assignable to parameter `data` with type `CCM15SlaveDevice` in function `homeassistant.components.ccm15.coordinator.CCM15Coordinator.async_set_temperature` [bad-argument-type] +ERROR homeassistant/components/ccm15/climate.py:154:68-77: Argument `CCM15SlaveDevice | None` is not assignable to parameter `data` with type `CCM15SlaveDevice` in function `homeassistant.components.ccm15.coordinator.CCM15Coordinator.async_set_hvac_mode` [bad-argument-type] +ERROR homeassistant/components/ccm15/climate.py:158:67-76: Argument `CCM15SlaveDevice | None` is not assignable to parameter `data` with type `CCM15SlaveDevice` in function `homeassistant.components.ccm15.coordinator.CCM15Coordinator.async_set_fan_mode` [bad-argument-type] +ERROR homeassistant/components/cert_expiry/coordinator.py:24:5-17: Class member `CertExpiryDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cert_expiry/sensor.py:33:5-23: Class member `SSLCertificateTimestamp._attr_device_class` overrides parent class `CertExpiryEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/chacon_dio/__init__.py:47:9-22: Argument `str | None` is not assignable to parameter `service_name` with type `str` in function `dio_chacon_wifi_api.client.DIOChaconAPIClient.__init__` [bad-argument-type] +ERROR homeassistant/components/chacon_dio/__init__.py:80:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/chacon_dio/cover.py:42:5-23: Class member `ChaconDioCover._attr_device_class` overrides parent class `ChaconDioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/chacon_dio/cover.py:45:5-29: Class member `ChaconDioCover._attr_supported_features` overrides parent class `ChaconDioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/chacon_dio/switch.py:38:5-23: Class member `ChaconDioSwitch._attr_device_class` overrides parent class `ChaconDioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/channels/media_player.py:7:1-32: Could not find import of `pychannels` [missing-import] +ERROR homeassistant/components/channels/media_player.py:208:23-32: `Literal['stopped']` is not assignable to attribute `status` with type `None` [bad-assignment] +ERROR homeassistant/components/cisco_ios/device_tracker.py:71:33-35: `list[@_]` is not assignable to attribute `last_results` with type `dict[Unknown, Unknown]` [bad-assignment] +ERROR homeassistant/components/cisco_ios/device_tracker.py:98:33-45: `list[@_]` is not assignable to attribute `last_results` with type `dict[Unknown, Unknown]` [bad-assignment] +ERROR homeassistant/components/cisco_mobility_express/device_tracker.py:7:1-62: Could not find import of `ciscomobilityexpress.ciscome` [missing-import] +ERROR homeassistant/components/cisco_mobility_express/device_tracker.py:89:16-30: Object of class `NoneType` has no attribute `_asdict` [missing-attribute] +ERROR homeassistant/components/cisco_webex_teams/notify.py:8:1-58: Could not find import of `webexpythonsdk` [missing-import] +ERROR homeassistant/components/citybikes/sensor.py:11:1-62: Could not find import of `citybikes` [missing-import] +ERROR homeassistant/components/citybikes/sensor.py:12:1-56: Could not find import of `citybikes.asyncio` [missing-import] +ERROR homeassistant/components/citybikes/sensor.py:178:13-186:40: `float | None` is not assignable to `None` (caused by inconsistent types when breaking cycles) [bad-assignment] +ERROR homeassistant/components/citybikes/sensor.py:184:44-63: `<` is not supported between `None` and `float` [unsupported-operation] +ERROR homeassistant/components/clementine/media_player.py:8:1-46: Could not find import of `clementineremote` [missing-import] +ERROR homeassistant/components/climate/__init__.py:257:5-23: Class member `ClimateEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/climate/__init__.py:272:5-29: Class member `ClimateEntity._attr_supported_features` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/climate/__init__.py:643:52-64: Argument `BoundMethod[Self@ClimateEntity, (self: Self@ClimateEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/climate/__init__.py:671:52-65: Argument `BoundMethod[Self@ClimateEntity, (self: Self@ClimateEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/climate/__init__.py:689:52-63: Argument `BoundMethod[Self@ClimateEntity, (self: Self@ClimateEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/climate/device_action.py:98:17-24: `service` may be uninitialized [unbound-name] +ERROR homeassistant/components/cloud/__init__.py:281:51-61: Argument `str | Unknown` is not assignable to parameter `alexa_user_config` with type `dict[str, Any]` in function `homeassistant.components.cloud.client.CloudClient.__init__` [bad-argument-type] +ERROR homeassistant/components/cloud/__init__.py:281:63-74: Argument `str | Unknown` is not assignable to parameter `google_user_config` with type `dict[str, Any]` in function `homeassistant.components.cloud.client.CloudClient.__init__` [bad-argument-type] +ERROR homeassistant/components/cloud/__init__.py:282:51-59: Unpacked keyword argument `str` is not assignable to parameter `mode` with type `Literal['development', 'production']` in function `hass_nabucasa.Cloud.__init__` [bad-argument-type] +ERROR homeassistant/components/cloud/__init__.py:282:51-59: Unpacked keyword argument `str` is not assignable to parameter `discovery_service_actions` with type `dict[Literal['remote_access_resolve_dns_cname', 'subscription_info', 'subscription_migrate_paypal', 'voice_connection_details'], str] | None` in function `hass_nabucasa.Cloud.__init__` [bad-argument-type] +ERROR homeassistant/components/cloud/backup.py:83:15-36: Class member `CloudBackupAgent.async_download_backup` overrides parent class `BackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cloud/client.py:96:33-44: Module `aiohttp.web` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/cloud/client.py:183:50-66: Argument `HassJob[[_: Any], Coroutine[Unknown, Unknown, None]]` is not assignable to parameter `action` with type `((datetime) -> Coroutine[Any, Any, None] | None) | HassJob[[datetime], Coroutine[Any, Any, None] | None]` in function `homeassistant.helpers.event.async_call_later` [bad-argument-type] +ERROR homeassistant/components/cloud/helpers.py:31:50-59: Argument `() -> list[str]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/cloud/http_api.py:490:46-59: `documentation` may be uninitialized [unbound-name] +ERROR homeassistant/components/cloud/http_api.py:711:18-31: `language_info` is uninitialized [unbound-name] +ERROR homeassistant/components/cloud/prefs.py:131:23-28: `prefs` may be uninitialized [unbound-name] +ERROR homeassistant/components/cloud/tts.py:270:15-21: `gender` may be uninitialized [unbound-name] +ERROR homeassistant/components/cmus/media_player.py:8:1-38: Could not find import of `pycmus` [missing-import] +ERROR homeassistant/components/co2signal/coordinator.py:31:5-17: Class member `CO2SignalCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/co2signal/sensor.py:39:9-12: Unexpected keyword argument `key` in function `CO2SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/co2signal/sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `CO2SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/co2signal/sensor.py:46:9-12: Unexpected keyword argument `key` in function `CO2SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/co2signal/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `CO2SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/co2signal/sensor.py:69:5-23: Class member `CO2Sensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/co2signal/sensor.py:69:5-23: Class member `CO2Sensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/coinbase/config_flow.py:206:9-31: Class member `CoinbaseConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/coinbase/sensor.py:57:24-41: Type `None` is not iterable [not-iterable] +ERROR homeassistant/components/coinbase/sensor.py:66:35-80: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/coinbase/sensor.py:128:24-46: Type `None` is not iterable [not-iterable] +ERROR homeassistant/components/coinbase/sensor.py:144:25-64: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/coinbase/sensor.py:172:24-52: Type `None` is not iterable [not-iterable] +ERROR homeassistant/components/coinbase/sensor.py:181:25-70: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/coinbase/sensor.py:209:23-62: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/coinbase/sensor.py:230:23-68: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/color_extractor/__init__.py:85:17-27: `image_type` is uninitialized [unbound-name] +ERROR homeassistant/components/color_extractor/__init__.py:86:17-32: `image_reference` is uninitialized [unbound-name] +ERROR homeassistant/components/color_extractor/__init__.py:91:12-17: `color` may be uninitialized [unbound-name] +ERROR homeassistant/components/color_extractor/__init__.py:92:44-49: `color` may be uninitialized [unbound-name] +ERROR homeassistant/components/comed_hourly_pricing/sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comed_hourly_pricing/sensor.py:38:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comed_hourly_pricing/sensor.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comed_hourly_pricing/sensor.py:43:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comelit/__init__.py:81:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/comelit/alarm_control_panel.py:74:5-29: Class member `ComelitAlarmEntity._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/comelit/binary_sensor.py:55:5-23: Class member `ComelitVedoBinarySensorEntity._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/comelit/climate.py:119:5-29: Class member `ComelitClimateEntity._attr_supported_features` overrides parent class `ComelitBridgeBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/comelit/coordinator.py:48:5-17: Class member `ComelitBaseCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/comelit/coordinator.py:152:5-8: Class member `ComelitSerialBridge.api` overrides parent class `ComelitBaseCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/comelit/coordinator.py:186:5-8: Class member `ComelitVedoSystem.api` overrides parent class `ComelitBaseCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/comelit/cover.py:51:5-23: Class member `ComelitCoverEntity._attr_device_class` overrides parent class `ComelitBridgeBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/comelit/cover.py:51:5-23: Class member `ComelitCoverEntity._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/comelit/humidifier.py:117:5-29: Class member `ComelitHumidifierEntity._attr_supported_features` overrides parent class `ComelitBridgeBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/comelit/humidifier.py:135:14-32: Class member `ComelitHumidifierEntity._attr_device_class` overrides parent class `ComelitBridgeBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/comelit/sensor.py:31:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comelit/sensor.py:39:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comelit/sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comelit/sensor.py:41:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comelit/sensor.py:130:14-32: Class member `ComelitBridgeSensorEntity.entity_description` overrides parent class `ComelitBridgeBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/comelit/sensor.py:164:14-32: Class member `ComelitVedoSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] + WARN homeassistant/components/comelit/sensor.py:182:20-39: Redundant cast: `str` is the same type as `str` [redundant-cast] +ERROR homeassistant/components/comelit/switch.py:63:18-36: Class member `ComelitSwitchEntity._attr_device_class` overrides parent class `ComelitBridgeBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/comfoconnect/__init__.py:104:26-41: Object of class `str` has no attribute `hex` [missing-attribute] +ERROR homeassistant/components/comfoconnect/__init__.py:112:45-65: `BoundMethod[Self@ComfoConnectBridge, (self: Self@ComfoConnectBridge, var: str, value: str) -> None]` is not assignable to attribute `callback_sensor` with type `None` [bad-assignment] +ERROR homeassistant/components/comfoconnect/fan.py:99:47-101:10: Unpacked argument `tuple[Literal[65]]` is not assignable to parameter `*args` with type `tuple[int, int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/comfoconnect/fan.py:102:47-104:10: Unpacked argument `tuple[Literal[49]]` is not assignable to parameter `*args` with type `tuple[int, int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/comfoconnect/sensor.py:93:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:96:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:102:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:105:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:110:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:113:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:119:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:122:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:128:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:131:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:136:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:139:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:145:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:148:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:153:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:155:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:157:9-13: Unexpected keyword argument `icon` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:161:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:163:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:165:9-13: Unexpected keyword argument `icon` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:169:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:171:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:173:9-13: Unexpected keyword argument `icon` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:177:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:179:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:181:9-13: Unexpected keyword argument `icon` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:185:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:188:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:194:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:197:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:202:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:204:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:206:9-13: Unexpected keyword argument `icon` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:210:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:212:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:214:9-13: Unexpected keyword argument `icon` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:218:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:220:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:222:9-13: Unexpected keyword argument `icon` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:226:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:227:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:229:9-13: Unexpected keyword argument `icon` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:233:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:236:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:241:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:244:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:249:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:252:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:257:9-12: Unexpected keyword argument `key` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:260:9-13: Unexpected keyword argument `name` in function `ComfoconnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/comfoconnect/sensor.py:297:5-23: Class member `ComfoConnectSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/comfoconnect/sensor.py:326:47-328:10: Unpacked argument `tuple[int]` is not assignable to parameter `*args` with type `tuple[int, int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/compensation/sensor.py:76:55-59: `name` may be uninitialized [unbound-name] +ERROR homeassistant/components/compensation/sensor.py:148:12-21: `new_state` is uninitialized [unbound-name] +ERROR homeassistant/components/compensation/sensor.py:153:12-21: `new_state` is uninitialized [unbound-name] +ERROR homeassistant/components/compensation/sensor.py:161:53-62: `new_state` is uninitialized [unbound-name] +ERROR homeassistant/components/compensation/sensor.py:166:29-38: `new_state` is uninitialized [unbound-name] +ERROR homeassistant/components/compensation/sensor.py:171:28-37: `new_state` is uninitialized [unbound-name] +ERROR homeassistant/components/compensation/sensor.py:176:21-30: `new_state` is uninitialized [unbound-name] +ERROR homeassistant/components/compensation/sensor.py:178:29-38: `new_state` is uninitialized [unbound-name] +ERROR homeassistant/components/compensation/sensor.py:178:67-76: `new_state` is uninitialized [unbound-name] +ERROR homeassistant/components/compit/climate.py:107:5-29: Class member `CompitClimate._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/concord232/alarm_control_panel.py:8:1-51: Could not find import of `concord232` [missing-import] +ERROR homeassistant/components/concord232/binary_sensor.py:8:1-51: Could not find import of `concord232` [missing-import] +ERROR homeassistant/components/config/config_entries.py:365:16-40: `_FlowContextT` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/config/config_entries.py:418:16-40: `_FlowContextT` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/config/config_entries.py:428:16-40: `_FlowContextT` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/config/config_entries.py:469:12-17: `entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/config/config_entries.py:565:30-41: `disabled_by` may be uninitialized [unbound-name] +ERROR homeassistant/components/config/config_entries.py:611:36-68: `_FlowContextT` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/config/config_entries.py:613:9-24: Argument `_HandlerT` is not assignable to parameter `handler` with type `str` in function `homeassistant.config_entries.ConfigEntriesFlowManager.async_init` [bad-argument-type] +ERROR homeassistant/components/config/config_entries.py:615:28-56: `_FlowContextT` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `area_id` with type `UndefinedType | str | None` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `categories` with type `UndefinedType | dict[str, str]` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `capabilities` with type `Mapping[str, Any] | UndefinedType | None` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `config_entry_id` with type `UndefinedType | str | None` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `config_subentry_id` with type `UndefinedType | str | None` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `device_class` with type `UndefinedType | str | None` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `device_id` with type `UndefinedType | str | None` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `disabled_by` with type `RegistryEntryDisabler | UndefinedType | None` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `entity_category` with type `EntityCategory | UndefinedType | None` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `hidden_by` with type `RegistryEntryHider | UndefinedType | None` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `icon` with type `UndefinedType | str | None` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `has_entity_name` with type `UndefinedType | bool` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `name` with type `UndefinedType | str | None` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `new_entity_id` with type `UndefinedType | str` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `new_unique_id` with type `UndefinedType | str` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `original_device_class` with type `UndefinedType | str | None` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `original_icon` with type `UndefinedType | str | None` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `original_name` with type `UndefinedType | str | None` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `supported_features` with type `UndefinedType | int` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `translation_key` with type `UndefinedType | str | None` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:264:68-77: Unpacked keyword argument `set[Unknown]` is not assignable to parameter `unit_of_measurement` with type `UndefinedType | str | None` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/config/entity_registry.py:285:47-59: `entity_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/config/entity_registry.py:288:36-48: `entity_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/config/view.py:226:9-14: `value` may be uninitialized [unbound-name] +ERROR homeassistant/components/configurator/__init__.py:84:18-26: `instance` may be uninitialized [unbound-name] +ERROR homeassistant/components/configurator/__init__.py:91:39-47: `instance` may be uninitialized [unbound-name] +ERROR homeassistant/components/control4/climate.py:155:5-29: Class member `Control4Climate._attr_supported_features` overrides parent class `Control4Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/control4/config_flow.py:133:24-50: Object of class `NoneType` has no attribute `split` [missing-attribute] +ERROR homeassistant/components/control4/config_flow.py:138:27-47: Argument `None` is not assignable to parameter `title` with type `str` in function `homeassistant.config_entries.ConfigFlow.async_create_entry` [bad-argument-type] +ERROR homeassistant/components/control4/config_flow.py:153:9-31: Class member `Control4ConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/control4/media_player.py:212:14-38: Class member `Control4Room._attr_supported_features` overrides parent class `Control4Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/conversation/chat_log.py:54:16-31: Object of class `ToolResultContent` has no attribute `content` [missing-attribute] +ERROR homeassistant/components/conversation/chat_log.py:94:13-30: Object of class `NoneType` has no attribute `pop` [missing-attribute] +ERROR homeassistant/components/conversation/chat_log.py:208:30-88: `list[SystemContent]` is not assignable to `list[AssistantContent | SystemContent | ToolResultContent | UserContent]` [bad-assignment] +ERROR homeassistant/components/conversation/chat_log.py:317:29-40: Argument `dict[str, str] | Unknown` is not assignable to parameter `tool_result` with type `dict[str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None]` in function `ToolResultContent.__init__` [bad-argument-type] +ERROR homeassistant/components/conversation/chat_log.py:594:36-55: `extra_system_prompt` may be uninitialized [unbound-name] +ERROR homeassistant/components/conversation/default_agent.py:1026:16-22: Returned type `str | None` is not assignable to declared return type `str` [bad-return] +ERROR homeassistant/components/conversation/default_agent.py:1351:52-77: Argument `BoundMethod[Self@DefaultAgent, (self: Self@DefaultAgent) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/cookidoo/button.py:28:5-8: Unexpected keyword argument `key` in function `CookidooButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cookidoo/button.py:29:5-20: Unexpected keyword argument `translation_key` in function `CookidooButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cookidoo/button.py:31:5-36: Unexpected keyword argument `entity_registry_enabled_default` in function `CookidooButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cookidoo/button.py:49:5-23: Class member `CookidooButton.entity_description` overrides parent class `CookidooBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cookidoo/button.py:49:5-23: Class member `CookidooButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cookidoo/coordinator.py:45:5-17: Class member `CookidooDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cookidoo/entity.py:26:14-25: Class member `CookidooBaseEntity.device_info` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cookidoo/entity.py:26:28-32:10: `TypedDict[DeviceInfo]` is not assignable to attribute `device_info` with type `(self: Self@CookidooBaseEntity) -> TypedDict[DeviceInfo] | None` [bad-assignment] +ERROR homeassistant/components/cookidoo/sensor.py:48:9-12: Unexpected keyword argument `key` in function `CookidooSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cookidoo/sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `CookidooSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cookidoo/sensor.py:55:9-24: Unexpected keyword argument `entity_category` in function `CookidooSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cookidoo/sensor.py:60:9-12: Unexpected keyword argument `key` in function `CookidooSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cookidoo/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `CookidooSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cookidoo/sensor.py:67:9-24: Unexpected keyword argument `entity_category` in function `CookidooSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cookidoo/sensor.py:93:5-23: Class member `CookidooSensorEntity.entity_description` overrides parent class `CookidooBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cookidoo/sensor.py:93:5-23: Class member `CookidooSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/coolmaster/binary_sensor.py:33:5-23: Class member `CoolmasterCleanFilter.entity_description` overrides parent class `CoolmasterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/coolmaster/binary_sensor.py:34:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/coolmaster/binary_sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/coolmaster/binary_sensor.py:37:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/coolmaster/button.py:29:5-23: Class member `CoolmasterResetFilter.entity_description` overrides parent class `CoolmasterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/coolmaster/button.py:30:9-12: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/coolmaster/button.py:31:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/coolmaster/button.py:32:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/coolmaster/climate.py:69:14-29: Class member `CoolmasterClimate._attr_unique_id` overrides parent class `ClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/coolmaster/entity.py:25:14-31: Class member `CoolmasterEntity._attr_device_info` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/coolmaster/entity.py:33:18-33: Class member `CoolmasterEntity._attr_unique_id` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/coolmaster/sensor.py:29:5-23: Class member `CoolmasterCleanFilter.entity_description` overrides parent class `CoolmasterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/coolmaster/sensor.py:30:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/coolmaster/sensor.py:31:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/coolmaster/sensor.py:32:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/cover/__init__.py:197:5-17: Class member `CoverEntityDescription.device_class` overrides parent class `EntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cover/__init__.py:213:5-23: Class member `CoverEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cover/__init__.py:216:5-23: Class member `CoverEntity._attr_device_class` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cover/__init__.py:220:5-16: Class member `CoverEntity._attr_state` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cover/__init__.py:221:5-29: Class member `CoverEntity._attr_supported_features` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cover/device_action.py:144:17-24: `service` may be uninitialized [unbound-name] +ERROR homeassistant/components/cover/device_trigger.py:157:36-44: `to_state` may be uninitialized [unbound-name] +ERROR homeassistant/components/cover/device_trigger.py:174:47-55: `position` may be uninitialized [unbound-name] +ERROR homeassistant/components/cppm_tracker/device_tracker.py:8:1-34: Could not find import of `clearpasspy` [missing-import] +ERROR homeassistant/components/cppm_tracker/device_tracker.py:65:45-57: Type `None` is not iterable [not-iterable] +ERROR homeassistant/components/cppm_tracker/device_tracker.py:70:43-55: Type `None` is not iterable [not-iterable] +ERROR homeassistant/components/cppm_tracker/device_tracker.py:84:24-31: `list[Unknown]` is not assignable to attribute `results` with type `None` [bad-assignment] +ERROR homeassistant/components/cpuspeed/__init__.py:13:46-66: Argument `() -> Unknown` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/cpuspeed/config_flow.py:30:55-75: Argument `() -> Unknown` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/crownstone/config_flow.py:142:9-31: Class member `CrownstoneConfigFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/crownstone/config_flow.py:238:60-70: Cannot index into `dict[str, Sphere]` [bad-index] +ERROR homeassistant/components/crownstone/entry_manager.py:110:20-30: Cannot use `CrownstoneSSEAsync` as a context manager [bad-context-manager] +ERROR homeassistant/components/crownstone/entry_manager.py:110:20-30: Cannot use `CrownstoneSSEAsync` as a context manager [bad-context-manager] +ERROR homeassistant/components/crownstone/light.py:95:12-65: Object of class `NoneType` has no attribute `is_enabled` [missing-attribute] +ERROR homeassistant/components/crownstone/listeners.py:106:13-30: Argument `None` is not assignable to parameter `crownstone_uid` with type `int` in function `crownstone_cloud.cloud.CrownstoneCloud.get_crownstone_by_uid` [bad-argument-type] +ERROR homeassistant/components/cync/config_flow.py:43:23-27: `None` is not assignable to `Auth` [bad-assignment] +ERROR homeassistant/components/cync/config_flow.py:126:40-76: Argument `Any | None` is not assignable to parameter `two_factor_code` with type `str` in function `pycync.auth.Auth.login` [bad-argument-type] +ERROR homeassistant/components/cync/coordinator.py:28:5-17: Class member `CyncCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/cync/light.py:145:40-43: Argument `Any | None` is not assignable to parameter `rgb` with type `tuple[int, int, int]` in function `pycync.devices.devices.CyncLight.set_rgb` [bad-argument-type] +ERROR homeassistant/components/cync/light.py:180:16-59: Returned type `CyncDevice` is not assignable to declared return type `CyncLight` [bad-return] +ERROR homeassistant/components/daikin/__init__.py:87:16-33: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/daikin/climate.py:105:5-20: Class member `DaikinClimate._attr_fan_modes` overrides parent class `ClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/daikin/climate.py:106:5-22: Class member `DaikinClimate._attr_swing_modes` overrides parent class `ClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/daikin/climate.py:119:14-38: Class member `DaikinClimate._attr_supported_features` overrides parent class `DaikinEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/daikin/coordinator.py:30:18-35: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/daikin/entity.py:22:19-27: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/daikin/entity.py:23:18-26: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/daikin/entity.py:24:24-32: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/daikin/sensor.py:51:9-12: Unexpected keyword argument `key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:59:9-12: Unexpected keyword argument `key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:67:9-12: Unexpected keyword argument `key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:74:9-12: Unexpected keyword argument `key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:82:9-12: Unexpected keyword argument `key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:90:9-12: Unexpected keyword argument `key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:91:9-24: Unexpected keyword argument `translation_key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:94:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:98:9-12: Unexpected keyword argument `key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:102:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:106:9-12: Unexpected keyword argument `key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:114:9-12: Unexpected keyword argument `key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:115:9-24: Unexpected keyword argument `translation_key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:119:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:123:9-12: Unexpected keyword argument `key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:124:9-24: Unexpected keyword argument `translation_key` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:128:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DaikinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/daikin/sensor.py:167:5-23: Class member `DaikinSensor.entity_description` overrides parent class `DaikinEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/daikin/sensor.py:167:5-23: Class member `DaikinSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/danfoss_air/__init__.py:6:1-46: Could not find import of `pydanfossair.commands` [missing-import] +ERROR homeassistant/components/danfoss_air/__init__.py:7:1-53: Could not find import of `pydanfossair.danfossclient` [missing-import] +ERROR homeassistant/components/danfoss_air/binary_sensor.py:5:1-46: Could not find import of `pydanfossair.commands` [missing-import] +ERROR homeassistant/components/danfoss_air/sensor.py:7:1-46: Could not find import of `pydanfossair.commands` [missing-import] +ERROR homeassistant/components/danfoss_air/switch.py:8:1-61: Could not find import of `pydanfossair.commands` [missing-import] +ERROR homeassistant/components/datadog/config_flow.py:161:42-79: Unpacked argument `tuple[Literal['connection_test']]` is not assignable to parameter `*args` with type `tuple[Unknown, int | Unknown, Unknown | None, Unknown | None, Unknown | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/date/__init__.py:74:5-23: Class member `DateEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/date/__init__.py:75:5-23: Class member `DateEntity._attr_device_class` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/date/__init__.py:77:5-16: Class member `DateEntity._attr_state` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/datetime/__init__.py:83:5-23: Class member `DateTimeEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/datetime/__init__.py:84:5-23: Class member `DateTimeEntity._attr_device_class` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/datetime/__init__.py:85:5-16: Class member `DateTimeEntity._attr_state` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ddwrt/device_tracker.py:125:29-31: `list[@_]` is not assignable to attribute `last_results` with type `dict[Unknown, Unknown]` [bad-assignment] +ERROR homeassistant/components/ddwrt/device_tracker.py:140:9-33: Object of class `dict` has no attribute `extend` [missing-attribute] +ERROR homeassistant/components/debugpy/__init__.py:64:48-57: Argument `BoundMethod[Event, (self: Event) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/components/deconz/alarm_control_panel.py:77:5-29: Class member `DeconzAlarmControlPanel._attr_supported_features` overrides parent class `DeconzDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deconz/alarm_control_panel.py:103:42-60: Cannot index into `dict[AncillaryControlPanel, AlarmControlPanelState]` [bad-index] +ERROR homeassistant/components/deconz/binary_sensor.py:76:9-12: Unexpected keyword argument `key` in function `DeconzBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/binary_sensor.py:83:9-12: Unexpected keyword argument `key` in function `DeconzBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/binary_sensor.py:90:9-12: Unexpected keyword argument `key` in function `DeconzBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/binary_sensor.py:97:9-12: Unexpected keyword argument `key` in function `DeconzBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/binary_sensor.py:104:9-24: Unexpected keyword argument `entity_category` in function `DeconzBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/binary_sensor.py:107:9-12: Unexpected keyword argument `key` in function `DeconzBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/binary_sensor.py:113:9-12: Unexpected keyword argument `key` in function `DeconzBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/binary_sensor.py:120:9-12: Unexpected keyword argument `key` in function `DeconzBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/binary_sensor.py:127:9-12: Unexpected keyword argument `key` in function `DeconzBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/binary_sensor.py:134:9-12: Unexpected keyword argument `key` in function `DeconzBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/binary_sensor.py:141:9-12: Unexpected keyword argument `key` in function `DeconzBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/binary_sensor.py:147:9-24: Unexpected keyword argument `entity_category` in function `DeconzBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/binary_sensor.py:150:9-12: Unexpected keyword argument `key` in function `DeconzBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/binary_sensor.py:156:9-24: Unexpected keyword argument `entity_category` in function `DeconzBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/binary_sensor.py:193:5-23: Class member `DeconzBinarySensor.entity_description` overrides parent class `DeconzDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deconz/binary_sensor.py:193:5-23: Class member `DeconzBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deconz/button.py:37:13-16: Unexpected keyword argument `key` in function `DeconzButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/button.py:40:13-17: Unexpected keyword argument `icon` in function `DeconzButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/button.py:41:13-28: Unexpected keyword argument `entity_category` in function `DeconzButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/button.py:95:14-32: Class member `DeconzSceneButton.entity_description` overrides parent class `DeconzSceneMixin` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deconz/button.py:95:14-32: Class member `DeconzSceneButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deconz/button.py:120:5-23: Class member `DeconzPresenceResetButton._attr_device_class` overrides parent class `DeconzDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deconz/climate.py:123:14-38: Class member `DeconzThermostat._attr_supported_features` overrides parent class `DeconzDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deconz/climate.py:143:39-60: Cannot index into `dict[ThermostatFanMode, str]` [bad-index] +ERROR homeassistant/components/deconz/climate.py:162:46-63: Cannot index into `dict[ThermostatMode, HVACMode]` [bad-index] +ERROR homeassistant/components/deconz/climate.py:200:42-61: Cannot index into `dict[ThermostatPreset, str]` [bad-index] +ERROR homeassistant/components/deconz/config_flow.py:68:9-31: Class member `DeconzFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deconz/cover.py:63:14-38: Class member `DeconzCover._attr_supported_features` overrides parent class `DeconzDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deconz/cover.py:78:14-32: Class member `DeconzCover._attr_device_class` overrides parent class `DeconzDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deconz/deconz_event.py:86:36-45: `new_event` may be uninitialized [unbound-name] +ERROR homeassistant/components/deconz/deconz_event.py:87:27-36: `new_event` may be uninitialized [unbound-name] +ERROR homeassistant/components/deconz/deconz_event.py:241:25-58: Object of class `NoneType` has no attribute `value` [missing-attribute] +ERROR homeassistant/components/deconz/device_trigger.py:715:62-74: Cannot index into `dict[str, dict[tuple[str, str], dict[str, int]]]` [bad-index] +ERROR homeassistant/components/deconz/device_trigger.py:773:37-49: Cannot index into `dict[str, dict[tuple[str, str], dict[str, int]]]` [bad-index] +ERROR homeassistant/components/deconz/entity.py:141:39-61: Object of class `Scene` has no attribute `reachable` [missing-attribute] +ERROR homeassistant/components/deconz/fan.py:63:5-29: Class member `DeconzFan._attr_supported_features` overrides parent class `DeconzDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deconz/fan.py:106:17-41: Argument `list[LightFanSpeed]` is not assignable to parameter `ordered_list` with type `list[LightFanSpeed | None]` in function `homeassistant.util.percentage.percentage_to_ordered_list_item` [bad-argument-type] +ERROR homeassistant/components/deconz/light.py:209:14-41: Class member `DeconzBaseLight._attr_supported_color_modes` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deconz/light.py:250:47-70: Cannot index into `dict[LightColorMode, ColorMode]` [bad-index] +ERROR homeassistant/components/deconz/number.py:44:9-12: Unexpected keyword argument `key` in function `DeconzNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/number.py:53:9-24: Unexpected keyword argument `entity_category` in function `DeconzNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/number.py:56:9-12: Unexpected keyword argument `key` in function `DeconzNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/number.py:65:9-24: Unexpected keyword argument `entity_category` in function `DeconzNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/number.py:103:5-23: Class member `DeconzNumber.entity_description` overrides parent class `DeconzDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deconz/number.py:103:5-23: Class member `DeconzNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deconz/sensor.py:115:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:122:9-24: Unexpected keyword argument `entity_category` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:128:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:135:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:146:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:157:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:168:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:179:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:189:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:199:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:204:9-13: Unexpected keyword argument `icon` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:205:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:208:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:218:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:225:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:236:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:246:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:257:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:268:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:278:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:288:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:299:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:307:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:316:9-24: Unexpected keyword argument `entity_category` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:319:9-12: Unexpected keyword argument `key` in function `DeconzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deconz/sensor.py:397:5-23: Class member `DeconzSensor.entity_description` overrides parent class `DeconzDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deconz/sensor.py:397:5-23: Class member `DeconzSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deconz/services.py:92:43-46: `hub` may be uninitialized [unbound-name] +ERROR homeassistant/components/deconz/services.py:95:49-52: `hub` may be uninitialized [unbound-name] +ERROR homeassistant/components/deconz/services.py:98:57-60: `hub` may be uninitialized [unbound-name] +ERROR homeassistant/components/deconz/services.py:174:42-57: Argument `str | None` is not assignable to parameter `value` with type `str` in function `list.remove` [bad-argument-type] +ERROR homeassistant/components/deconz/services.py:181:46-61: Argument `str | None` is not assignable to parameter `value` with type `str` in function `list.remove` [bad-argument-type] +ERROR homeassistant/components/deconz/siren.py:48:5-29: Class member `DeconzSiren._attr_supported_features` overrides parent class `DeconzDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deconz/siren.py:66:22-30: `duration` may be uninitialized [unbound-name] +ERROR homeassistant/components/decora_wifi/light.py:8:1-42: Could not find import of `decora_wifi` [missing-import] +ERROR homeassistant/components/decora_wifi/light.py:9:1-45: Could not find import of `decora_wifi.models.person` [missing-import] +ERROR homeassistant/components/decora_wifi/light.py:10:1-51: Could not find import of `decora_wifi.models.residence` [missing-import] +ERROR homeassistant/components/decora_wifi/light.py:11:1-70: Could not find import of `decora_wifi.models.residential_account` [missing-import] +ERROR homeassistant/components/delijn/sensor.py:8:1-34: Could not find import of `pydelijn.api` [missing-import] +ERROR homeassistant/components/delijn/sensor.py:9:1-42: Could not find import of `pydelijn.common` [missing-import] +ERROR homeassistant/components/delijn/sensor.py:117:17-30: `first_passage` may be uninitialized [unbound-name] +ERROR homeassistant/components/deluge/__init__.py:34:44-36:6: Unpacked argument `tuple[Any, Any, Any, Any]` is not assignable to parameter `*args` with type `tuple[Unknown, Unknown, Unknown, Unknown, bool | Unknown, bool | Unknown, int | Unknown]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/deluge/__init__.py:37:5-17: Object of class `DelugeRPCClient` has no attribute `web_port` [missing-attribute] +ERROR homeassistant/components/deluge/__init__.py:39:43-54: Argument `BoundMethod[DelugeRPCClient, (self: DelugeRPCClient) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/deluge/config_flow.py:89:52-63: Argument `BoundMethod[DelugeRPCClient, (self: DelugeRPCClient) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/deluge/coordinator.py:39:5-17: Class member `DelugeDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deluge/coordinator.py:90:62-83: Argument `BoundMethod[Self@DelugeDataUpdateCoordinator, (self: Self@DelugeDataUpdateCoordinator) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/deluge/sensor.py:67:9-12: Unexpected keyword argument `key` in function `DelugeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deluge/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `DelugeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deluge/sensor.py:76:9-12: Unexpected keyword argument `key` in function `DelugeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deluge/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `DelugeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deluge/sensor.py:86:9-12: Unexpected keyword argument `key` in function `DelugeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deluge/sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `DelugeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deluge/sensor.py:94:9-12: Unexpected keyword argument `key` in function `DelugeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deluge/sensor.py:95:9-24: Unexpected keyword argument `translation_key` in function `DelugeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deluge/sensor.py:104:9-12: Unexpected keyword argument `key` in function `DelugeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deluge/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `DelugeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deluge/sensor.py:114:9-12: Unexpected keyword argument `key` in function `DelugeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deluge/sensor.py:115:9-24: Unexpected keyword argument `translation_key` in function `DelugeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deluge/sensor.py:120:9-12: Unexpected keyword argument `key` in function `DelugeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deluge/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `DelugeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/deluge/sensor.py:142:5-23: Class member `DelugeSensor.entity_description` overrides parent class `DelugeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/deluge/sensor.py:142:5-23: Class member `DelugeSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/demo/camera.py:50:55-76: Argument `BoundMethod[Path, (self: Path) -> bytes]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/demo/config_flow.py:34:9-31: Class member `DemoConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/demo/media_player.py:290:14-33: Class member `DemoMusicPlayer._attr_group_members` overrides parent class `AbstractDemoPlayer` in an inconsistent manner [bad-override] +ERROR homeassistant/components/demo/sensor.py:182:5-23: Class member `DemoSumSensor._attr_native_value` overrides parent class `RestoreSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/denon/media_player.py:208:31-42: `str | None` is not assignable to attribute `_mediainfo` with type `str` [bad-assignment] +ERROR homeassistant/components/denonavr/__init__.py:56:26-34: `DenonAVR | None` is not assignable to attribute `runtime_data` with type `DenonAVR` [bad-assignment] +ERROR homeassistant/components/denonavr/config_flow.py:120:9-31: Class member `DenonAvrFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/denonavr/config_flow.py:212:31-60: Object of class `NoneType` has no attribute `replace` [missing-attribute] +ERROR homeassistant/components/denonavr/config_flow.py:229:19-32: Argument `str | None` is not assignable to parameter `title` with type `str` in function `homeassistant.config_entries.ConfigFlow.async_create_entry` [bad-argument-type] +ERROR homeassistant/components/denonavr/media_player.py:122:53-71: Object of class `DenonAVRFoundation` has no attribute `zone` [missing-attribute] +ERROR homeassistant/components/denonavr/media_player.py:124:52-70: Object of class `DenonAVRFoundation` has no attribute `zone` [missing-attribute] +ERROR homeassistant/components/denonavr/media_player.py:127:17-30: Argument `DenonAVRFoundation` is not assignable to parameter `receiver` with type `DenonAVR` in function `DenonDevice.__init__` [bad-argument-type] +ERROR homeassistant/components/denonavr/media_player.py:272:9-275:10: `|=` is not supported between `MediaPlayerEntityFeature` and `None` [unsupported-operation] +ERROR homeassistant/components/denonavr/media_player.py:322:39-61: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/denonavr/receiver.py:87:28-92:10: Missing argument `_host` in function `denonavr.denonavr.DenonAVR.__init__` [missing-argument] +ERROR homeassistant/components/denonavr/receiver.py:88:13-17: Unexpected keyword argument `host` in function `denonavr.denonavr.DenonAVR.__init__` [unexpected-keyword] +ERROR homeassistant/components/denonavr/receiver.py:89:13-28: Unexpected keyword argument `show_all_inputs` in function `denonavr.denonavr.DenonAVR.__init__` [unexpected-keyword] +ERROR homeassistant/components/denonavr/receiver.py:90:13-20: Unexpected keyword argument `timeout` in function `denonavr.denonavr.DenonAVR.__init__` [unexpected-keyword] +ERROR homeassistant/components/denonavr/receiver.py:91:13-22: Unexpected keyword argument `add_zones` in function `denonavr.denonavr.DenonAVR.__init__` [unexpected-keyword] +ERROR homeassistant/components/denonavr/receiver.py:100:27-44: Object of class `DenonAVRFoundation` has no attribute `async_update` [missing-attribute] +ERROR homeassistant/components/denonavr/receiver.py:102:27-53: Object of class `DenonAVRFoundation` has no attribute `async_update_audyssey` [missing-attribute] +ERROR homeassistant/components/derivative/sensor.py:466:21-35: `new_derivative` may be uninitialized [unbound-name] +ERROR homeassistant/components/derivative/sensor.py:475:68-82: `new_derivative` may be uninitialized [unbound-name] +ERROR homeassistant/components/derivative/sensor.py:483:16-28: `elapsed_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/derivative/sensor.py:484:30-44: `new_derivative` may be uninitialized [unbound-name] +ERROR homeassistant/components/devialet/config_flow.py:51:19-37: Argument `str | None` is not assignable to parameter `title` with type `str` in function `homeassistant.config_entries.ConfigFlow.async_create_entry` [bad-argument-type] +ERROR homeassistant/components/devialet/coordinator.py:24:5-17: Class member `DevialetCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devialet/media_player.py:112:16-52: Returned type `bool | None` is not assignable to declared return type `bool` [bad-return] +ERROR homeassistant/components/device_automation/action.py:28:10-20: Function declared to return `dict[str, Any]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/device_automation/action.py:42:10-31: Function declared to return `dict[str, Schema]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/device_automation/action.py:47:10-30: Function declared to return `list[dict[str, Any]]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/device_automation/condition.py:37:10-20: Function declared to return `dict[str, Any]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/device_automation/condition.py:42:10-30: Function declared to return `(HomeAssistant, Mapping[str, Any] | None) -> bool | None` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/device_automation/condition.py:47:10-31: Function declared to return `dict[str, Schema]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/device_automation/condition.py:52:10-30: Function declared to return `list[dict[str, Any]]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/device_automation/trigger.py:34:10-20: Function declared to return `dict[str, Any]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/device_automation/trigger.py:43:10-23: Function declared to return `() -> None` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/device_automation/trigger.py:48:10-31: Function declared to return `dict[str, Schema]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/device_automation/trigger.py:53:10-30: Function declared to return `list[dict[str, Any]]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/device_tracker/config_entry.py:172:5-22: Class member `BaseTrackerEntity._attr_device_info` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/device_tracker/config_entry.py:219:5-23: Class member `TrackerEntity.entity_description` overrides parent class `BaseTrackerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/device_tracker/config_entry.py:310:5-23: Class member `ScannerEntity.entity_description` overrides parent class `BaseTrackerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/device_tracker/legacy.py:298:5-9: Dataclass field `name` without a default may not follow dataclass field with a default [bad-class-definition] +ERROR homeassistant/components/device_tracker/legacy.py:299:5-13: Dataclass field `platform` without a default may not follow dataclass field with a default [bad-class-definition] +ERROR homeassistant/components/device_tracker/legacy.py:300:5-11: Dataclass field `config` without a default may not follow dataclass field with a default [bad-class-definition] +ERROR homeassistant/components/device_tracker/legacy.py:409:33-61: Missing argument `config` in function `DeviceTrackerPlatform.__init__` [missing-argument] +ERROR homeassistant/components/device_tracker/legacy.py:409:34-40: Argument `str` is not assignable to parameter `LEGACY_SETUP` with type `tuple[str, ...]` in function `DeviceTrackerPlatform.__init__` [bad-argument-type] +ERROR homeassistant/components/device_tracker/legacy.py:556:21-33: Object of class `timedelta` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/device_tracker/legacy.py:559:47-56: `track_new` may be uninitialized [unbound-name] +ERROR homeassistant/components/device_tracker/legacy.py:559:47-56: Argument `timedelta | Unknown` is not assignable to parameter `track_new` with type `bool` in function `DeviceTracker.__init__` [bad-argument-type] +ERROR homeassistant/components/device_tracker/legacy.py:559:58-66: Argument `dict[Unknown, Unknown] | timedelta | Unknown` is not assignable to parameter `defaults` with type `dict[str, Any]` in function `DeviceTracker.__init__` [bad-argument-type] +ERROR homeassistant/components/device_tracker/legacy.py:655:12-18: `device` may be uninitialized [unbound-name] +ERROR homeassistant/components/device_tracker/legacy.py:656:19-25: `device` may be uninitialized [unbound-name] +ERROR homeassistant/components/device_tracker/legacy.py:666:16-22: `device` may be uninitialized [unbound-name] +ERROR homeassistant/components/device_tracker/legacy.py:667:17-23: `device` may be uninitialized [unbound-name] +ERROR homeassistant/components/device_tracker/legacy.py:984:55-72: Argument `BoundMethod[Self@DeviceScanner, (self: Self@DeviceScanner) -> list[str]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/device_tracker/legacy.py:1033:52-81: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[str, Secrets | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/devolo_home_control/binary_sensor.py:79:14-32: Class member `DevoloBinaryDeviceEntity._attr_device_class` overrides parent class `DevoloDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devolo_home_control/climate.py:53:5-29: Class member `DevoloClimateDeviceEntity._attr_supported_features` overrides parent class `DevoloMultiLevelSwitchDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devolo_home_control/config_flow.py:104:13-39: Argument `BoundMethod[Mydevolo, (self: Mydevolo) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/devolo_home_control/cover.py:42:5-29: Class member `DevoloCoverDeviceEntity._attr_supported_features` overrides parent class `DevoloMultiLevelSwitchDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devolo_home_control/cover.py:47:5-23: Class member `DevoloCoverDeviceEntity._attr_device_class` overrides parent class `DevoloMultiLevelSwitchDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devolo_home_control/sensor.py:192:60-80: Cannot index into `dict[str, ConsumptionProperty]` [bad-index] +ERROR homeassistant/components/devolo_home_control/siren.py:39:5-29: Class member `DevoloSirenDeviceEntity._attr_supported_features` overrides parent class `DevoloMultiLevelSwitchDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devolo_home_network/binary_sensor.py:44:9-12: Unexpected keyword argument `key` in function `DevoloBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/binary_sensor.py:46:9-24: Unexpected keyword argument `entity_category` in function `DevoloBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/binary_sensor.py:47:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DevoloBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/binary_sensor.py:84:14-32: Class member `DevoloBinarySensorEntity.entity_description` overrides parent class `DevoloCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devolo_home_network/binary_sensor.py:84:14-32: Class member `DevoloBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devolo_home_network/button.py:37:9-12: Unexpected keyword argument `key` in function `DevoloButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/button.py:38:9-24: Unexpected keyword argument `entity_category` in function `DevoloButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/button.py:43:9-12: Unexpected keyword argument `key` in function `DevoloButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/button.py:47:9-12: Unexpected keyword argument `key` in function `DevoloButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/button.py:49:9-24: Unexpected keyword argument `entity_category` in function `DevoloButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/button.py:53:9-12: Unexpected keyword argument `key` in function `DevoloButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/button.py:101:5-23: Class member `DevoloButtonEntity.entity_description` overrides parent class `DevoloEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devolo_home_network/button.py:101:5-23: Class member `DevoloButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devolo_home_network/diagnostics.py:34:48-70: Cannot set item in `dict[str, bool | str]` [unsupported-operation] +ERROR homeassistant/components/devolo_home_network/image.py:34:9-12: Unexpected keyword argument `key` in function `DevoloImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/image.py:35:9-24: Unexpected keyword argument `entity_category` in function `DevoloImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/image.py:72:14-32: Class member `DevoloImageEntity.entity_description` overrides parent class `DevoloCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devolo_home_network/image.py:72:14-32: Class member `DevoloImageEntity.entity_description` overrides parent class `ImageEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devolo_home_network/sensor.py:78:9-12: Unexpected keyword argument `key` in function `DevoloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/sensor.py:79:9-24: Unexpected keyword argument `entity_category` in function `DevoloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/sensor.py:80:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DevoloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/sensor.py:88:9-12: Unexpected keyword argument `key` in function `DevoloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/sensor.py:93:9-12: Unexpected keyword argument `key` in function `DevoloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/sensor.py:94:9-24: Unexpected keyword argument `entity_category` in function `DevoloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/sensor.py:95:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DevoloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/sensor.py:99:9-12: Unexpected keyword argument `key` in function `DevoloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/sensor.py:100:9-24: Unexpected keyword argument `entity_category` in function `DevoloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/sensor.py:101:9-13: Unexpected keyword argument `name` in function `DevoloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/sensor.py:108:9-12: Unexpected keyword argument `key` in function `DevoloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/sensor.py:109:9-24: Unexpected keyword argument `entity_category` in function `DevoloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/sensor.py:110:9-13: Unexpected keyword argument `name` in function `DevoloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/sensor.py:117:9-12: Unexpected keyword argument `key` in function `DevoloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/sensor.py:118:9-24: Unexpected keyword argument `entity_category` in function `DevoloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/sensor.py:119:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DevoloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/sensor.py:208:14-32: Class member `BaseDevoloSensorEntity.entity_description` overrides parent class `DevoloCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devolo_home_network/sensor.py:219:5-23: Class member `DevoloSensorEntity.entity_description` overrides parent class `BaseDevoloSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devolo_home_network/sensor.py:232:5-23: Class member `DevoloPlcDataRateSensorEntity.entity_description` overrides parent class `BaseDevoloSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devolo_home_network/switch.py:39:9-12: Unexpected keyword argument `key` in function `DevoloSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/switch.py:45:9-12: Unexpected keyword argument `key` in function `DevoloSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/switch.py:46:9-24: Unexpected keyword argument `entity_category` in function `DevoloSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/switch.py:88:5-23: Class member `DevoloSwitchEntity.entity_description` overrides parent class `DevoloCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devolo_home_network/switch.py:88:5-23: Class member `DevoloSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devolo_home_network/update.py:41:9-12: Unexpected keyword argument `key` in function `DevoloUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/devolo_home_network/update.py:72:5-29: Class member `DevoloUpdateEntity._attr_supported_features` overrides parent class `DevoloCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devolo_home_network/update.py:76:5-23: Class member `DevoloUpdateEntity.entity_description` overrides parent class `DevoloCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/devolo_home_network/update.py:76:5-23: Class member `DevoloUpdateEntity.entity_description` overrides parent class `UpdateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dexcom/coordinator.py:43:13-52: Argument `BoundMethod[Dexcom, (self: Dexcom) -> GlucoseReading]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/diagnostics/__init__.py:96:10-27: Function declared to return `Mapping[str, Any]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/diagnostics/__init__.py:101:10-27: Function declared to return `Mapping[str, Any]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/diagnostics/__init__.py:219:29-40: Cannot set item in `dict[str, Mapping[str | None, dict[SetupPhases, float]] | Mapping[str, Any] | dict[str, Any] | dict[Unknown, Unknown] | TypedDict[Manifest]]` [unsupported-operation] +ERROR homeassistant/components/dialogflow/__init__.py:94:46-56: `parameters` may be uninitialized [unbound-name] +ERROR homeassistant/components/dialogflow/__init__.py:126:14-17: `req` may be uninitialized [unbound-name] +ERROR homeassistant/components/dialogflow/__init__.py:127:18-21: `req` may be uninitialized [unbound-name] +ERROR homeassistant/components/digital_ocean/__init__.py:6:8-20: Could not find import of `digitalocean` [missing-import] +ERROR homeassistant/components/digital_ocean/binary_sensor.py:79:16-30: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/digital_ocean/binary_sensor.py:84:16-32: Object of class `NoneType` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/digital_ocean/binary_sensor.py:95:30-50: Object of class `NoneType` has no attribute `created_at` [missing-attribute] +ERROR homeassistant/components/digital_ocean/binary_sensor.py:96:30-42: Object of class `NoneType` has no attribute `id` [missing-attribute] +ERROR homeassistant/components/digital_ocean/binary_sensor.py:97:32-46: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/digital_ocean/binary_sensor.py:98:28-46: Object of class `NoneType` has no attribute `features` [missing-attribute] +ERROR homeassistant/components/digital_ocean/binary_sensor.py:99:32-52: Object of class `NoneType` has no attribute `ip_address` [missing-attribute] +ERROR homeassistant/components/digital_ocean/binary_sensor.py:100:32-55: Object of class `NoneType` has no attribute `ip_v6_address` [missing-attribute] +ERROR homeassistant/components/digital_ocean/binary_sensor.py:101:26-42: Object of class `NoneType` has no attribute `memory` [missing-attribute] +ERROR homeassistant/components/digital_ocean/binary_sensor.py:102:26-42: Object of class `NoneType` has no attribute `region` [missing-attribute] +ERROR homeassistant/components/digital_ocean/binary_sensor.py:103:25-40: Object of class `NoneType` has no attribute `vcpus` [missing-attribute] +ERROR homeassistant/components/digital_ocean/switch.py:80:16-30: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/digital_ocean/switch.py:85:16-32: Object of class `NoneType` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/digital_ocean/switch.py:91:30-50: Object of class `NoneType` has no attribute `created_at` [missing-attribute] +ERROR homeassistant/components/digital_ocean/switch.py:92:30-42: Object of class `NoneType` has no attribute `id` [missing-attribute] +ERROR homeassistant/components/digital_ocean/switch.py:93:32-46: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/digital_ocean/switch.py:94:28-46: Object of class `NoneType` has no attribute `features` [missing-attribute] +ERROR homeassistant/components/digital_ocean/switch.py:95:32-52: Object of class `NoneType` has no attribute `ip_address` [missing-attribute] +ERROR homeassistant/components/digital_ocean/switch.py:96:32-55: Object of class `NoneType` has no attribute `ip_v6_address` [missing-attribute] +ERROR homeassistant/components/digital_ocean/switch.py:97:26-42: Object of class `NoneType` has no attribute `memory` [missing-attribute] +ERROR homeassistant/components/digital_ocean/switch.py:98:26-42: Object of class `NoneType` has no attribute `region` [missing-attribute] +ERROR homeassistant/components/digital_ocean/switch.py:99:25-40: Object of class `NoneType` has no attribute `vcpus` [missing-attribute] +ERROR homeassistant/components/digital_ocean/switch.py:104:12-28: Object of class `NoneType` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/digital_ocean/switch.py:105:13-31: Object of class `NoneType` has no attribute `power_on` [missing-attribute] +ERROR homeassistant/components/digital_ocean/switch.py:109:12-28: Object of class `NoneType` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/digital_ocean/switch.py:110:13-32: Object of class `NoneType` has no attribute `power_off` [missing-attribute] +ERROR homeassistant/components/directv/entity.py:22:58-73: Object of class `NoneType` has no attribute `info` [missing-attribute] +ERROR homeassistant/components/directv/entity.py:27:26-46: Object of class `NoneType` has no attribute `info` [missing-attribute] +ERROR homeassistant/components/directv/entity.py:29:24-44: Object of class `NoneType` has no attribute `info` [missing-attribute] +ERROR homeassistant/components/directv/entity.py:30:33-53: Object of class `NoneType` has no attribute `info` [missing-attribute] +ERROR homeassistant/components/directv/media_player.py:70:29-49: Object of class `NoneType` has no attribute `locations` [missing-attribute] +ERROR homeassistant/components/directv/media_player.py:88:14-32: Class member `DIRECTVMediaPlayer._attr_device_class` overrides parent class `DIRECTVEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/directv/media_player.py:103:25-38: `Program | None` is not assignable to attribute `_program` with type `None` [bad-assignment] +ERROR homeassistant/components/directv/media_player.py:116:37-53: `datetime` is not assignable to attribute `_last_update` with type `Never` [bad-assignment] +ERROR homeassistant/components/directv/remote.py:39:29-49: Object of class `NoneType` has no attribute `locations` [missing-attribute] +ERROR homeassistant/components/discogs/sensor.py:9:8-22: Could not find import of `discogs_client` [missing-import] +ERROR homeassistant/components/discogs/sensor.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discogs/sensor.py:43:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discogs/sensor.py:44:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discogs/sensor.py:48:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discogs/sensor.py:49:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discogs/sensor.py:50:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discogs/sensor.py:54:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discogs/sensor.py:55:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discogs/sensor.py:56:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/coordinator.py:27:5-17: Class member `DiscovergyUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/discovergy/sensor.py:53:9-12: Unexpected keyword argument `key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:65:9-12: Unexpected keyword argument `key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:73:9-12: Unexpected keyword argument `key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:79:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:83:9-12: Unexpected keyword argument `key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:84:9-24: Unexpected keyword argument `translation_key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:89:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:93:9-12: Unexpected keyword argument `key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:94:9-24: Unexpected keyword argument `translation_key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:99:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:104:9-12: Unexpected keyword argument `key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:110:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:114:9-12: Unexpected keyword argument `key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:115:9-24: Unexpected keyword argument `translation_key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:120:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:124:9-12: Unexpected keyword argument `key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:130:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:135:9-12: Unexpected keyword argument `key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:136:9-24: Unexpected keyword argument `translation_key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:144:9-12: Unexpected keyword argument `key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:145:9-24: Unexpected keyword argument `translation_key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:156:9-12: Unexpected keyword argument `key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:157:9-24: Unexpected keyword argument `translation_key` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:159:9-24: Unexpected keyword argument `entity_category` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:160:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DiscovergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/discovergy/sensor.py:196:5-23: Class member `DiscovergySensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/discovergy/sensor.py:196:5-23: Class member `DiscovergySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dlink/data.py:44:16-28: Module `urllib.error` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/dlink/switch.py:20:5-8: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dlink/switch.py:33:7-22: Field `entity_description` is declared `EntityDescription` in ancestor `class DLinkEntity: ... +`, which is not assignable to the type `SwitchEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/dnsip/config_flow.py:100:9-31: Class member `DnsIPConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dominos/__init__.py:6:1-45: Could not find import of `pizzapi` [missing-import] +ERROR homeassistant/components/doods/image_processing.py:12:1-28: Could not find import of `pydoods` [missing-import] +ERROR homeassistant/components/doods/image_processing.py:176:71-87: `label_confidence` may be uninitialized [unbound-name] +ERROR homeassistant/components/doods/image_processing.py:177:43-59: `label_confidence` may be uninitialized [unbound-name] +ERROR homeassistant/components/doods/image_processing.py:246:23-33: Argument `list[int]` is not assignable to parameter `box` with type `tuple[float, float, float, float]` in function `homeassistant.util.pil.draw_box` [bad-argument-type] +ERROR homeassistant/components/doorbird/button.py:27:5-8: Unexpected keyword argument `key` in function `DoorbirdButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/doorbird/button.py:32:9-12: Unexpected keyword argument `key` in function `DoorbirdButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/doorbird/button.py:33:9-24: Unexpected keyword argument `translation_key` in function `DoorbirdButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/doorbird/button.py:37:9-12: Unexpected keyword argument `key` in function `DoorbirdButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/doorbird/button.py:38:9-24: Unexpected keyword argument `translation_key` in function `DoorbirdButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/doorbird/button.py:40:9-24: Unexpected keyword argument `entity_category` in function `DoorbirdButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/doorbird/button.py:71:5-23: Class member `DoorBirdButton.entity_description` overrides parent class `DoorBirdEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/doorbird/button.py:71:5-23: Class member `DoorBirdButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/doorbird/camera.py:77:18-42: Class member `DoorBirdCamera._attr_supported_features` overrides parent class `DoorBirdEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/doorbird/config_flow.py:266:9-31: Class member `DoorBirdConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/doorbird/event.py:21:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/doorbird/event.py:22:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/doorbird/event.py:27:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/doorbird/event.py:28:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/doorbird/event.py:52:5-23: Class member `DoorBirdEventEntity.entity_description` overrides parent class `DoorBirdEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dormakaba_dkey/__init__.py:48:38-56: Expected 0 positional arguments, got 1 in function `homeassistant.components.bluetooth.match.BluetoothCallbackMatcher.__init__` [bad-argument-count] +ERROR homeassistant/components/dormakaba_dkey/binary_sensor.py:31:9-12: Unexpected keyword argument `key` in function `DormakabaDkeyBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dormakaba_dkey/binary_sensor.py:36:9-12: Unexpected keyword argument `key` in function `DormakabaDkeyBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dormakaba_dkey/binary_sensor.py:37:9-24: Unexpected keyword argument `translation_key` in function `DormakabaDkeyBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dormakaba_dkey/binary_sensor.py:62:5-23: Class member `DormakabaDkeyBinarySensor.entity_description` overrides parent class `DormakabaDkeyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dormakaba_dkey/binary_sensor.py:62:5-23: Class member `DormakabaDkeyBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dormakaba_dkey/sensor.py:20:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dormakaba_dkey/sensor.py:52:14-32: Class member `DormakabaDkeySensor.entity_description` overrides parent class `DormakabaDkeyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dovado/__init__.py:47:9-15: Could not find name `dovado` [unknown-name] +ERROR homeassistant/components/dovado/sensor.py:44:9-12: Unexpected keyword argument `key` in function `DovadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dovado/sensor.py:45:9-13: Unexpected keyword argument `name` in function `DovadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dovado/sensor.py:46:9-13: Unexpected keyword argument `icon` in function `DovadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dovado/sensor.py:50:9-12: Unexpected keyword argument `key` in function `DovadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dovado/sensor.py:51:9-13: Unexpected keyword argument `name` in function `DovadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dovado/sensor.py:53:9-13: Unexpected keyword argument `icon` in function `DovadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dovado/sensor.py:57:9-12: Unexpected keyword argument `key` in function `DovadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dovado/sensor.py:58:9-13: Unexpected keyword argument `name` in function `DovadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dovado/sensor.py:59:9-13: Unexpected keyword argument `icon` in function `DovadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dovado/sensor.py:63:9-12: Unexpected keyword argument `key` in function `DovadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dovado/sensor.py:64:9-13: Unexpected keyword argument `name` in function `DovadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dovado/sensor.py:67:9-13: Unexpected keyword argument `icon` in function `DovadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dovado/sensor.py:71:9-12: Unexpected keyword argument `key` in function `DovadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dovado/sensor.py:72:9-13: Unexpected keyword argument `name` in function `DovadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dovado/sensor.py:75:9-13: Unexpected keyword argument `icon` in function `DovadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dovado/sensor.py:107:5-23: Class member `DovadoSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dremel_3d_printer/binary_sensor.py:31:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/binary_sensor.py:36:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/binary_sensor.py:58:5-23: Class member `Dremel3DPrinterBinarySensor.entity_description` overrides parent class `Dremel3DPrinterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dremel_3d_printer/binary_sensor.py:58:5-23: Class member `Dremel3DPrinterBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dremel_3d_printer/button.py:28:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/button.py:29:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/button.py:30:18-46: Argument `(api: Dremel3DPrinter) -> dict[str, Any]` is not assignable to parameter `press_fn` with type `(Dremel3DPrinter) -> None` in function `Dremel3DPrinterButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/dremel_3d_printer/button.py:33:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/button.py:34:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/button.py:35:18-47: Argument `(api: Dremel3DPrinter) -> dict[str, Any]` is not assignable to parameter `press_fn` with type `(Dremel3DPrinter) -> None` in function `Dremel3DPrinterButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/dremel_3d_printer/button.py:38:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/button.py:39:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/button.py:40:18-48: Argument `(api: Dremel3DPrinter) -> dict[str, Any]` is not assignable to parameter `press_fn` with type `(Dremel3DPrinter) -> None` in function `Dremel3DPrinterButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/dremel_3d_printer/button.py:60:5-23: Class member `Dremel3DPrinterButtonEntity.entity_description` overrides parent class `Dremel3DPrinterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dremel_3d_printer/button.py:60:5-23: Class member `Dremel3DPrinterButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dremel_3d_printer/camera.py:14:5-8: Unexpected keyword argument `key` in function `homeassistant.components.camera.CameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/camera.py:15:5-9: Unexpected keyword argument `name` in function `homeassistant.components.camera.CameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/config_flow.py:56:40-43: `api` may be uninitialized [unbound-name] +ERROR homeassistant/components/dremel_3d_printer/config_flow.py:58:46-49: `api` may be uninitialized [unbound-name] +ERROR homeassistant/components/dremel_3d_printer/coordinator.py:19:5-17: Class member `Dremel3DPrinterDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dremel_3d_printer/coordinator.py:37:52-68: Argument `BoundMethod[Dremel3DPrinter, (self: Dremel3DPrinter) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:45:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:50:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:60:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:64:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:65:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:69:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:74:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:75:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:79:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:84:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:85:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:89:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:94:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:95:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:101:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:106:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:107:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:113:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:118:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:119:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:123:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:124:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:128:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:129:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:135:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:136:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:140:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:141:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:147:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:148:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:149:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:150:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:154:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:155:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:156:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:157:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:161:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:162:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:165:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:166:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:171:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:172:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:175:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:176:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:181:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:182:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:183:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:184:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:188:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:189:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:190:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:191:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:195:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:196:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:197:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:198:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:202:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:203:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:204:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:205:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:209:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:210:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:211:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:212:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:216:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:217:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:220:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:221:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:225:9-12: Unexpected keyword argument `key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:226:9-24: Unexpected keyword argument `translation_key` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:228:9-24: Unexpected keyword argument `entity_category` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:229:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `Dremel3DPrinterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:250:5-23: Class member `Dremel3DPrinterSensor.entity_description` overrides parent class `Dremel3DPrinterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dremel_3d_printer/sensor.py:250:5-23: Class member `Dremel3DPrinterSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/drop_connect/__init__.py:42:24-35: Argument `bytearray | bytes | str` is not assignable to parameter `payload` with type `bytes | str` in function `dropmqttapi.mqttapi.DropAPI.parse_drop_message` [bad-argument-type] +ERROR homeassistant/components/drop_connect/binary_sensor.py:53:9-12: Unexpected keyword argument `key` in function `DROPBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/binary_sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `DROPBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/binary_sensor.py:59:9-12: Unexpected keyword argument `key` in function `DROPBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/binary_sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `DROPBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/binary_sensor.py:64:9-12: Unexpected keyword argument `key` in function `DROPBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/binary_sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `DROPBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/binary_sensor.py:69:9-12: Unexpected keyword argument `key` in function `DROPBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/binary_sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `DROPBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/binary_sensor.py:74:9-12: Unexpected keyword argument `key` in function `DROPBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/binary_sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `DROPBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/binary_sensor.py:79:9-12: Unexpected keyword argument `key` in function `DROPBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/binary_sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `DROPBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/binary_sensor.py:85:9-12: Unexpected keyword argument `key` in function `DROPBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/binary_sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `DROPBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/binary_sensor.py:129:5-23: Class member `DROPBinarySensor.entity_description` overrides parent class `DROPEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/drop_connect/binary_sensor.py:129:5-23: Class member `DROPBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/drop_connect/config_flow.py:51:39-61: Argument `bytearray | bytes | str` is not assignable to parameter `payload` with type `bytes | str` in function `dropmqttapi.discovery.DropDiscovery.parse_discovery` [bad-argument-type] +ERROR homeassistant/components/drop_connect/coordinator.py:25:5-17: Class member `DROPDeviceDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/drop_connect/select.py:36:9-12: Unexpected keyword argument `key` in function `DROPSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/select.py:37:9-24: Unexpected keyword argument `translation_key` in function `DROPSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/select.py:74:5-23: Class member `DROPSelect.entity_description` overrides parent class `DROPEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/drop_connect/select.py:74:5-23: Class member `DROPSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/drop_connect/sensor.py:71:9-12: Unexpected keyword argument `key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:80:9-12: Unexpected keyword argument `key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:81:9-24: Unexpected keyword argument `translation_key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:89:9-12: Unexpected keyword argument `key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:98:9-12: Unexpected keyword argument `key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:107:9-12: Unexpected keyword argument `key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:108:9-24: Unexpected keyword argument `translation_key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:116:9-12: Unexpected keyword argument `key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:117:9-24: Unexpected keyword argument `translation_key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:125:9-12: Unexpected keyword argument `key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:134:9-12: Unexpected keyword argument `key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:135:9-24: Unexpected keyword argument `translation_key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:143:9-12: Unexpected keyword argument `key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:149:9-24: Unexpected keyword argument `entity_category` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:152:9-12: Unexpected keyword argument `key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:160:9-12: Unexpected keyword argument `key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:161:9-24: Unexpected keyword argument `translation_key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:168:9-12: Unexpected keyword argument `key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:169:9-24: Unexpected keyword argument `translation_key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:176:9-12: Unexpected keyword argument `key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:177:9-24: Unexpected keyword argument `translation_key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:180:9-24: Unexpected keyword argument `entity_category` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:185:9-12: Unexpected keyword argument `key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:186:9-24: Unexpected keyword argument `translation_key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:189:9-24: Unexpected keyword argument `entity_category` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:194:9-12: Unexpected keyword argument `key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:195:9-24: Unexpected keyword argument `translation_key` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:198:9-24: Unexpected keyword argument `entity_category` in function `DROPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/sensor.py:266:5-23: Class member `DROPSensor.entity_description` overrides parent class `DROPEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/drop_connect/sensor.py:266:5-23: Class member `DROPSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/drop_connect/switch.py:43:9-12: Unexpected keyword argument `key` in function `DROPSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/switch.py:44:9-24: Unexpected keyword argument `translation_key` in function `DROPSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/switch.py:49:9-12: Unexpected keyword argument `key` in function `DROPSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/switch.py:50:9-24: Unexpected keyword argument `translation_key` in function `DROPSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/drop_connect/switch.py:89:5-23: Class member `DROPSwitch.entity_description` overrides parent class `DROPEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/drop_connect/switch.py:89:5-23: Class member `DROPSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/droplet/coordinator.py:32:5-17: Class member `DropletDataCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/droplet/sensor.py:45:9-12: Unexpected keyword argument `key` in function `DropletSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/droplet/sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `DropletSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/droplet/sensor.py:55:9-12: Unexpected keyword argument `key` in function `DropletSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/droplet/sensor.py:65:9-12: Unexpected keyword argument `key` in function `DropletSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/droplet/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `DropletSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/droplet/sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `DropletSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/droplet/sensor.py:73:9-12: Unexpected keyword argument `key` in function `DropletSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/droplet/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `DropletSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/droplet/sensor.py:78:9-24: Unexpected keyword argument `entity_category` in function `DropletSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/droplet/sensor.py:96:5-23: Class member `DropletSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/droplet/sensor.py:96:5-23: Class member `DropletSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dsmr/config_flow.py:174:9-31: Class member `DSMRFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dsmr/sensor.py:94:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:97:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:98:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:101:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:108:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:109:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:115:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:123:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:124:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:131:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:132:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:139:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:140:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:143:9-21: Unexpected keyword argument `force_update` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:148:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:149:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:152:9-21: Unexpected keyword argument `force_update` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:157:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:158:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:165:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:166:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:173:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:174:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:177:9-21: Unexpected keyword argument `force_update` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:182:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:183:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:186:9-21: Unexpected keyword argument `force_update` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:191:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:192:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:195:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:199:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:200:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:203:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:207:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:208:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:211:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:215:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:216:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:219:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:223:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:224:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:227:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:231:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:232:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:235:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:239:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:240:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:243:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:245:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:248:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:249:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:252:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:254:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:257:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:258:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:261:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:263:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:266:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:267:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:270:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:272:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:275:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:276:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:279:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:281:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:284:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:285:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:288:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:290:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:293:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:294:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:297:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:299:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:302:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:303:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:306:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:308:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:311:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:312:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:315:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:317:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:320:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:321:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:324:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:326:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:329:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:330:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:333:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:335:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:338:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:339:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:342:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:344:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:347:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:348:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:351:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:353:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:356:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:357:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:360:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:362:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:365:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:366:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:370:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:372:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:375:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:376:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:380:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:382:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:385:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:386:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:393:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:394:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:401:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:402:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:409:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:410:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:417:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:418:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:426:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:427:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:435:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:436:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:440:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:442:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:445:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:446:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:453:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:454:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:457:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:460:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:463:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:464:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:467:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:470:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:473:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:474:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:477:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:480:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:483:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:484:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:487:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:490:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:493:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:494:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:497:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:500:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:503:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:504:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:508:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:510:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:513:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:514:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:518:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:520:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:523:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:524:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:528:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:530:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:533:9-12: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:534:9-24: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:537:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:539:9-24: Unexpected keyword argument `entity_category` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:546:13-16: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:547:13-28: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:556:13-16: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:557:13-28: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:566:13-16: Unexpected keyword argument `key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:567:13-28: Unexpected keyword argument `translation_key` in function `DSMRSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr/sensor.py:590:66-69: Cannot index into `dict[str, UnitOfVolume]` [bad-index] +ERROR homeassistant/components/dsmr/sensor.py:892:5-23: Class member `DSMREntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dsmr/sensor.py:983:42-47: `value` is uninitialized [unbound-name] +ERROR homeassistant/components/dsmr/sensor.py:983:42-47: Argument `float | int | str` is not assignable to parameter `value` with type `str` in function `DSMREntity.translate_tariff` [bad-argument-type] +ERROR homeassistant/components/dsmr/sensor.py:986:33-38: `value` is uninitialized [unbound-name] +ERROR homeassistant/components/dsmr_reader/definitions.py:52:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:53:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:59:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:60:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:66:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:67:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:73:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:74:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:80:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:81:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:87:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:88:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:94:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:95:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:96:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:102:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:103:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:104:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:110:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:111:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:112:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:118:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:119:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:120:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:126:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:127:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:128:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:134:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:135:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:136:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:142:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:143:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:144:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:150:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:151:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:152:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:158:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:159:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:160:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:166:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:167:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:168:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:174:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:175:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:176:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:182:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:183:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:184:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:190:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:191:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:192:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:198:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:199:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:200:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:205:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:206:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:212:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:213:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:218:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:219:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:220:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:225:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:226:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:232:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:233:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:239:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:240:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:246:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:247:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:253:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:254:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:260:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:261:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:267:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:268:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:272:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:273:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:277:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:278:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:282:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:283:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:288:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:289:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:293:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:294:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:298:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:299:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:303:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:304:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:308:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:309:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:313:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:314:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:318:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:319:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:323:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:324:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:328:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:329:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:330:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:334:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:335:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:341:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:342:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:343:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:346:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:347:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:348:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:351:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:352:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:353:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:356:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:357:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:358:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:361:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:362:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:363:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:366:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:367:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:368:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:371:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:372:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:373:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:376:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:377:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:378:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:381:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:382:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:383:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:386:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:387:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:392:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:393:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:398:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:399:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:404:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:405:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:410:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:411:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:416:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:417:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:422:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:423:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:427:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:428:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:432:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:433:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:437:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:438:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:443:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:444:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:448:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:449:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:453:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:454:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:458:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:459:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:464:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:465:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:470:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:471:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:476:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:477:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:482:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:483:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:488:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:489:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:494:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:495:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:499:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:500:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:504:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:505:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:509:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:510:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:515:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:516:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:520:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:521:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:525:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:526:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:530:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:531:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:536:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:537:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:538:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:543:9-12: Unexpected keyword argument `key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:544:9-24: Unexpected keyword argument `translation_key` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/definitions.py:545:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `DSMRReaderSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dsmr_reader/sensor.py:31:5-23: Class member `DSMRSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/duckdns/__init__.py:141:46-67: Argument `HassJob[[now: datetime], Coroutine[Unknown, Unknown, None]]` is not assignable to parameter `action` with type `((datetime) -> Coroutine[Any, Any, None] | None) | HassJob[[datetime], Coroutine[Any, Any, None] | None]` in function `homeassistant.helpers.event.async_call_later` [bad-argument-type] +ERROR homeassistant/components/duke_energy/coordinator.py:41:5-17: Class member `DukeEnergyCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dunehd/config_flow.py:26:56-75: Argument `BoundMethod[DuneHDPlayer, (self: DuneHDPlayer) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/dunehd/media_player.py:109:23-45: Object of class `DuneHDPlayer` has no attribute `volume_up` [missing-attribute] +ERROR homeassistant/components/dunehd/media_player.py:113:23-47: Object of class `DuneHDPlayer` has no attribute `volume_down` [missing-attribute] +ERROR homeassistant/components/duotecno/binary_sensor.py:30:5-10: Class member `DuotecnoBinarySensor._unit` overrides parent class `DuotecnoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/duotecno/climate.py:47:5-10: Class member `DuotecnoClimate._unit` overrides parent class `DuotecnoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/duotecno/climate.py:48:5-29: Class member `DuotecnoClimate._attr_supported_features` overrides parent class `DuotecnoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/duotecno/cover.py:32:5-10: Class member `DuotecnoCover._unit` overrides parent class `DuotecnoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/duotecno/cover.py:33:5-29: Class member `DuotecnoCover._attr_supported_features` overrides parent class `DuotecnoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/duotecno/light.py:29:5-10: Class member `DuotecnoLight._unit` overrides parent class `DuotecnoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/duotecno/switch.py:30:5-10: Class member `DuotecnoSwitch._unit` overrides parent class `DuotecnoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dwd_weather_warnings/config_flow.py:75:35-43: `position` may be uninitialized [unbound-name] +ERROR homeassistant/components/dwd_weather_warnings/coordinator.py:28:5-17: Class member `DwdWeatherWarningsCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dwd_weather_warnings/coordinator.py:70:21-32: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/dwd_weather_warnings/coordinator.py:71:21-32: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/dwd_weather_warnings/coordinator.py:84:56-71: Argument `BoundMethod[DwdWeatherWarningsAPI, (self: DwdWeatherWarningsAPI) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/dwd_weather_warnings/coordinator.py:86:39-47: `tuple[float, float] | None` is not assignable to attribute `_previous_position` with type `None` [bad-assignment] +ERROR homeassistant/components/dwd_weather_warnings/coordinator.py:88:52-67: Argument `BoundMethod[DwdWeatherWarningsAPI, (self: DwdWeatherWarningsAPI) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/dwd_weather_warnings/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dwd_weather_warnings/sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dwd_weather_warnings/sensor.py:49:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dwd_weather_warnings/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/dwd_weather_warnings/sensor.py:89:14-32: Class member `DwdWeatherWarningsSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/dwd_weather_warnings/sensor.py:120:36-58: Cannot set item in `dict[str, None]` [unsupported-operation] +ERROR homeassistant/components/dwd_weather_warnings/sensor.py:120:40-57: Argument `None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR homeassistant/components/dwd_weather_warnings/sensor.py:122:37-54: Argument `None` is not assignable to parameter `iterable` with type `Iterable[@_]` in function `enumerate.__new__` [bad-argument-type] +ERROR homeassistant/components/dynalite/bridge.py:60:53-69: Object of class `DynaliteBaseDevice` has no attribute `unique_id` [missing-attribute] +ERROR homeassistant/components/dynalite/bridge.py:110:49-64: Object of class `DynaliteBaseDevice` has no attribute `category` [missing-attribute] +ERROR homeassistant/components/dynalite/bridge.py:117:55-71: Argument `list[DynaliteBaseDevice]` is not assignable to parameter `iterable` with type `Iterable[str]` in function `list.extend` [bad-argument-type] +ERROR homeassistant/components/dynalite/cover.py:43:14-32: Class member `DynaliteCover._attr_device_class` overrides parent class `DynaliteBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eafm/sensor.py:101:25-66: Argument `set[tuple[str, str, Unknown]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/easyenergy/coordinator.py:38:5-17: Class member `EasyEnergyDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/easyenergy/sensor.py:46:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:54:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:58:31-44: `get_gas_price` is uninitialized [unbound-name] +ERROR homeassistant/components/easyenergy/sensor.py:61:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:69:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:78:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:85:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:92:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:99:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:106:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:113:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:120:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:128:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:129:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:137:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:138:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:144:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:145:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:151:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:152:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:158:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:159:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:165:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:166:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:172:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:173:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:179:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:180:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:186:9-12: Unexpected keyword argument `key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:187:9-24: Unexpected keyword argument `translation_key` in function `EasyEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/easyenergy/sensor.py:233:5-23: Class member `EasyEnergySensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/easyenergy/sensor.py:233:5-23: Class member `EasyEnergySensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ebox/sensor.py:11:1-30: Could not find import of `pyebox` [missing-import] +ERROR homeassistant/components/ebox/sensor.py:12:1-38: Could not find import of `pyebox.client` [missing-import] +ERROR homeassistant/components/ebox/sensor.py:51:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:52:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:54:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:58:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:60:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:63:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:64:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:67:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:70:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:71:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:73:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:76:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:77:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:80:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:83:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:84:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:87:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:90:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:91:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:94:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:97:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:98:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:101:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:104:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:105:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:108:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:111:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:112:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:115:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:118:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:119:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:122:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:125:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:126:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:129:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:132:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:133:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebox/sensor.py:136:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ebusd/__init__.py:5:8-15: Could not find import of `ebusdpy` [missing-import] +ERROR homeassistant/components/ebusd/sensor.py:94:41-59: Cannot set item in `dict[str, None]` [unsupported-operation] +ERROR homeassistant/components/ecoal_boiler/__init__.py:5:1-46: Could not find import of `ecoaliface.simple` [missing-import] +ERROR homeassistant/components/ecobee/__init__.py:62:53-71: Argument `BoundMethod[Ecobee, (self: Ecobee) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ecobee/__init__.py:71:52-78: Argument `BoundMethod[Ecobee, (self: Ecobee) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ecobee/binary_sensor.py:25:28-51: Argument `None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR homeassistant/components/ecobee/binary_sensor.py:27:25-45: Cannot index into `str` [bad-index] +ERROR homeassistant/components/ecobee/binary_sensor.py:31:53-67: Cannot index into `str` [bad-index] +ERROR homeassistant/components/ecobee/climate.py:214:28-51: Argument `None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR homeassistant/components/ecobee/climate.py:216:12-37: Cannot index into `str` [bad-index] +ERROR homeassistant/components/ecobee/climate.py:225:17-35: Cannot index into `str` [bad-index] +ERROR homeassistant/components/ecobee/climate.py:226:17-42: Cannot index into `str` [bad-index] +ERROR homeassistant/components/ecobee/climate.py:228:49-59: Argument `str` is not assignable to parameter `thermostat` with type `dict[Unknown, Unknown]` in function `Thermostat.__init__` [bad-argument-type] +ERROR homeassistant/components/ecobee/climate.py:240:17-43: Object of class `Entity` has no attribute `create_vacation` [missing-attribute] +ERROR homeassistant/components/ecobee/climate.py:251:17-43: Object of class `Entity` has no attribute `delete_vacation` [missing-attribute] +ERROR homeassistant/components/ecobee/climate.py:268:13-43: Object of class `Entity` has no attribute `set_fan_min_on_time` [missing-attribute] +ERROR homeassistant/components/ecobee/climate.py:285:13-38: Object of class `Entity` has no attribute `resume_program` [missing-attribute] +ERROR homeassistant/components/ecobee/climate.py:399:27-81: `str` is not assignable to attribute `thermostat` with type `dict[Unknown, Unknown]` [bad-assignment] +ERROR homeassistant/components/ecobee/climate.py:660:69-82: Argument `None` is not assignable to parameter `vacation` with type `str` in function `pyecobee.Ecobee.delete_vacation` [bad-argument-type] +ERROR homeassistant/components/ecobee/climate.py:801:62-75: Argument `int` is not assignable to parameter `humidity` with type `str` in function `pyecobee.Ecobee.set_humidity` [bad-argument-type] +ERROR homeassistant/components/ecobee/climate.py:821:36-69: Argument `Literal['false', 'true']` is not assignable to parameter `resume_all` with type `bool` in function `pyecobee.Ecobee.resume_program` [bad-argument-type] +ERROR homeassistant/components/ecobee/climate.py:908:36-47: Argument `str | None` is not assignable to parameter `climate_name` with type `str` in function `pyecobee.Ecobee.update_climate_sensors` [bad-argument-type] +ERROR homeassistant/components/ecobee/climate.py:925:16-932:10: Returned type `list[str | None]` is not assignable to declared return type `list[str]` [bad-return] +ERROR homeassistant/components/ecobee/climate.py:1040:36-45: Argument `Unknown | None` is not assignable to parameter `auto_away` with type `bool` in function `pyecobee.Ecobee.set_occupancy_modes` [bad-argument-type] +ERROR homeassistant/components/ecobee/climate.py:1040:47-56: Argument `Unknown | None` is not assignable to parameter `follow_me` with type `bool` in function `pyecobee.Ecobee.set_occupancy_modes` [bad-argument-type] +ERROR homeassistant/components/ecobee/config_flow.py:33:55-79: Argument `BoundMethod[Ecobee, (self: Ecobee) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ecobee/config_flow.py:52:55-82: Argument `BoundMethod[Ecobee, (self: Ecobee) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ecobee/config_flow.py:64:38-67:14: Argument `dict[str, str | None]` is not assignable to parameter `description_placeholders` with type `Mapping[str, str] | None` in function `homeassistant.config_entries.ConfigFlow.async_show_form` [bad-argument-type] +ERROR homeassistant/components/ecobee/entity.py:36:16-70: Returned type `str` is not assignable to declared return type `dict[str, Any]` [bad-return] +ERROR homeassistant/components/ecobee/humidifier.py:38:28-51: Argument `None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR homeassistant/components/ecobee/humidifier.py:40:12-34: Cannot index into `str` [bad-index] +ERROR homeassistant/components/ecobee/notify.py:21:64-87: Argument `None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR homeassistant/components/ecobee/number.py:35:9-12: Unexpected keyword argument `key` in function `EcobeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecobee/number.py:36:9-24: Unexpected keyword argument `translation_key` in function `EcobeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecobee/number.py:38:16-40:10: Argument `(data: EcobeeData, id: int, min_time: int) -> None` is not assignable to parameter `set_fn` with type `(EcobeeData, int, int) -> Awaitable[Unknown]` in function `EcobeeNumberEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/ecobee/number.py:43:9-12: Unexpected keyword argument `key` in function `EcobeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecobee/number.py:44:9-24: Unexpected keyword argument `translation_key` in function `EcobeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecobee/number.py:46:16-48:10: Argument `(data: EcobeeData, id: int, min_time: int) -> None` is not assignable to parameter `set_fn` with type `(EcobeeData, int, int) -> Awaitable[Unknown]` in function `EcobeeNumberEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/ecobee/number.py:65:44-67: Argument `None` is not assignable to parameter `iterable` with type `Iterable[@_]` in function `enumerate.__new__` [bad-argument-type] +ERROR homeassistant/components/ecobee/number.py:74:48-71: Argument `None` is not assignable to parameter `iterable` with type `Iterable[@_]` in function `enumerate.__new__` [bad-argument-type] +ERROR homeassistant/components/ecobee/number.py:85:5-23: Class member `EcobeeVentilatorMinTime.entity_description` overrides parent class `EcobeeBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecobee/number.py:85:5-23: Class member `EcobeeVentilatorMinTime.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecobee/number.py:134:5-23: Class member `EcobeeCompressorMinTemp._attr_device_class` overrides parent class `EcobeeBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecobee/number.py:168:75-80: Argument `float` is not assignable to parameter `threshold` with type `int` in function `pyecobee.Ecobee.set_aux_cutover_threshold` [bad-argument-type] +ERROR homeassistant/components/ecobee/sensor.py:38:9-12: Unexpected keyword argument `key` in function `EcobeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecobee/sensor.py:45:9-12: Unexpected keyword argument `key` in function `EcobeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecobee/sensor.py:52:9-12: Unexpected keyword argument `key` in function `EcobeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecobee/sensor.py:59:9-12: Unexpected keyword argument `key` in function `EcobeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecobee/sensor.py:66:9-12: Unexpected keyword argument `key` in function `EcobeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecobee/sensor.py:82:28-42: Cannot index into `str` [bad-index] +ERROR homeassistant/components/ecobee/sensor.py:83:32-55: Argument `None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR homeassistant/components/ecobee/sensor.py:85:21-41: Cannot index into `str` [bad-index] +ERROR homeassistant/components/ecobee/sensor.py:98:5-23: Class member `EcobeeSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecobee/sensor.py:174:26-37: Argument `None` is not assignable to parameter `x` with type `Buffer | SupportsFloat | SupportsIndex | str` in function `float.__new__` [bad-argument-type] +ERROR homeassistant/components/ecobee/switch.py:40:44-67: Argument `None` is not assignable to parameter `iterable` with type `Iterable[@_]` in function `enumerate.__new__` [bad-argument-type] +ERROR homeassistant/components/ecobee/switch.py:47:48-71: Argument `None` is not assignable to parameter `iterable` with type `Iterable[@_]` in function `enumerate.__new__` [bad-argument-type] +ERROR homeassistant/components/ecobee/switch.py:133:36-72: Argument `str | None` is not assignable to parameter `hvac_mode` with type `str` in function `pyecobee.Ecobee.set_hvac_mode` [bad-argument-type] +ERROR homeassistant/components/ecobee/weather.py:48:28-51: Argument `None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR homeassistant/components/ecobee/weather.py:51:44-62: Cannot index into `str` [bad-index] +ERROR homeassistant/components/ecobee/weather.py:78:24-49: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/ecobee/weather.py:170:12-43: `not in` is not supported between `Literal['forecasts']` and `None` [not-iterable] +ERROR homeassistant/components/ecobee/weather.py:176:42-67: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/ecobee/weather.py:207:51-79: Cannot set item in `dict[str, str | None]` [unsupported-operation] +ERROR homeassistant/components/ecobee/weather.py:209:55-82: Cannot set item in `dict[str, str | None]` [unsupported-operation] +ERROR homeassistant/components/ecobee/weather.py:211:52-76: Cannot set item in `dict[str, str | None]` [unsupported-operation] +ERROR homeassistant/components/ecobee/weather.py:213:57-79: Cannot set item in `dict[str, str | None]` [unsupported-operation] +ERROR homeassistant/components/ecoforest/number.py:27:9-12: Unexpected keyword argument `key` in function `EcoforestNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/number.py:28:9-24: Unexpected keyword argument `translation_key` in function `EcoforestNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/number.py:56:5-23: Class member `EcoforestNumberEntity.entity_description` overrides parent class `EcoforestEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecoforest/number.py:56:5-23: Class member `EcoforestNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecoforest/sensor.py:44:9-12: Unexpected keyword argument `key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:50:9-12: Unexpected keyword argument `key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:54:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:58:9-12: Unexpected keyword argument `key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:62:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:66:9-12: Unexpected keyword argument `key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:70:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:74:9-12: Unexpected keyword argument `key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:81:9-12: Unexpected keyword argument `key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:88:9-12: Unexpected keyword argument `key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:92:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:96:9-12: Unexpected keyword argument `key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:100:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:104:9-12: Unexpected keyword argument `key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:107:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:111:9-12: Unexpected keyword argument `key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:115:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:119:9-12: Unexpected keyword argument `key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:120:9-24: Unexpected keyword argument `translation_key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:123:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:127:9-12: Unexpected keyword argument `key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:130:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:134:9-12: Unexpected keyword argument `key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:135:9-24: Unexpected keyword argument `translation_key` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:137:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcoforestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/sensor.py:161:5-23: Class member `EcoforestSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecoforest/sensor.py:161:5-23: Class member `EcoforestSensor.entity_description` overrides parent class `EcoforestEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecoforest/switch.py:30:9-12: Unexpected keyword argument `key` in function `EcoforestSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/switch.py:31:9-13: Unexpected keyword argument `name` in function `EcoforestSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecoforest/switch.py:56:5-23: Class member `EcoforestSwitchEntity.entity_description` overrides parent class `EcoforestEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecoforest/switch.py:56:5-23: Class member `EcoforestSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/econet/__init__.py:84:43-58: Argument `BoundMethod[EcoNetApiInterface, (self: EcoNetApiInterface) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/econet/binary_sensor.py:20:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/binary_sensor.py:21:9-13: Unexpected keyword argument `name` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/binary_sensor.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/binary_sensor.py:26:9-13: Unexpected keyword argument `name` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/binary_sensor.py:30:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/binary_sensor.py:31:9-13: Unexpected keyword argument `name` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/binary_sensor.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/binary_sensor.py:36:9-13: Unexpected keyword argument `name` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/binary_sensor.py:70:14-32: Class member `EcoNetBinarySensor.entity_description` overrides parent class `EcoNetEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/econet/climate.py:68:30-40: Argument `Equipment` is not assignable to parameter `thermostat` with type `Thermostat` in function `EcoNetThermostat.__init__` [bad-argument-type] +ERROR homeassistant/components/econet/sensor.py:28:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:29:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:34:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:35:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:41:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:46:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:47:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:50:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:51:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:58:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:64:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:65:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:68:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:69:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:73:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:74:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:77:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:78:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/econet/sensor.py:114:14-32: Class member `EcoNetSensor.entity_description` overrides parent class `EcoNetEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/econet/sensor.py:125:16-40: Object of class `Equipment` has no attribute `energy_type` [missing-attribute] +ERROR homeassistant/components/econet/switch.py:29:33-43: Argument `Equipment` is not assignable to parameter `thermostat` with type `Thermostat` in function `EcoNetSwitchAuxHeatOnly.__init__` [bad-argument-type] +ERROR homeassistant/components/econet/water_heater.py:57:31-43: Argument `Equipment` is not assignable to parameter `water_heater` with type `WaterHeater` in function `EcoNetWaterHeater.__init__` [bad-argument-type] +ERROR homeassistant/components/ecovacs/__init__.py:38:43-78: Argument `BoundMethod[VacBot, (self: VacBot) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ecovacs/binary_sensor.py:43:9-12: Unexpected keyword argument `key` in function `EcovacsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/binary_sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `EcovacsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/binary_sensor.py:45:9-24: Unexpected keyword argument `entity_category` in function `EcovacsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/binary_sensor.py:80:5-23: Class member `EcovacsBinarySensor.entity_description` overrides parent class `EcovacsDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/binary_sensor.py:80:5-23: Class member `EcovacsBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/binary_sensor.py:96:5-23: Class member `EcovacsLegacyBatteryChargingSensor._attr_device_class` overrides parent class `EcovacsLegacyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/button.py:53:9-12: Unexpected keyword argument `key` in function `EcovacsButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/button.py:54:9-24: Unexpected keyword argument `translation_key` in function `EcovacsButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/button.py:55:9-24: Unexpected keyword argument `entity_category` in function `EcovacsButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/button.py:62:9-12: Unexpected keyword argument `key` in function `EcovacsStationActionButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/button.py:63:9-24: Unexpected keyword argument `translation_key` in function `EcovacsStationActionButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/button.py:72:9-12: Unexpected keyword argument `key` in function `EcovacsLifespanButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/button.py:73:9-24: Unexpected keyword argument `translation_key` in function `EcovacsLifespanButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/button.py:74:9-24: Unexpected keyword argument `entity_category` in function `EcovacsLifespanButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/button.py:75:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsLifespanButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/button.py:117:5-23: Class member `EcovacsButtonEntity.entity_description` overrides parent class `EcovacsDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/button.py:117:5-23: Class member `EcovacsButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/button.py:130:5-23: Class member `EcovacsResetLifespanButtonEntity.entity_description` overrides parent class `EcovacsDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/button.py:130:5-23: Class member `EcovacsResetLifespanButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/button.py:145:5-23: Class member `EcovacsStationActionButtonEntity.entity_description` overrides parent class `EcovacsDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/button.py:145:5-23: Class member `EcovacsStationActionButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/config_flow.py:71:44-52: `rest_url` may be uninitialized [unbound-name] +ERROR homeassistant/components/ecovacs/config_flow.py:77:27-35: `rest_url` may be uninitialized [unbound-name] +ERROR homeassistant/components/ecovacs/config_flow.py:101:67-75: `mqtt_url` may be uninitialized [unbound-name] +ERROR homeassistant/components/ecovacs/config_flow.py:109:31-39: `mqtt_url` may be uninitialized [unbound-name] +ERROR homeassistant/components/ecovacs/config_flow.py:115:54-62: `mqtt_url` may be uninitialized [unbound-name] +ERROR homeassistant/components/ecovacs/entity.py:143:18-22: `name` may be uninitialized [unbound-name] +ERROR homeassistant/components/ecovacs/event.py:35:5-23: Class member `EcovacsLastJobEventEntity.entity_description` overrides parent class `EcovacsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/event.py:36:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/event.py:37:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/event.py:38:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/image.py:56:9-12: Unexpected keyword argument `key` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/image.py:57:9-24: Unexpected keyword argument `translation_key` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/lawn_mower.py:59:5-29: Class member `EcovacsMower._attr_supported_features` overrides parent class `EcovacsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/lawn_mower.py:65:5-23: Class member `EcovacsMower.entity_description` overrides parent class `EcovacsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/lawn_mower.py:65:59-62: Unexpected keyword argument `key` in function `homeassistant.components.lawn_mower.LawnMowerEntityEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/lawn_mower.py:65:72-76: Unexpected keyword argument `name` in function `homeassistant.components.lawn_mower.LawnMowerEntityEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/number.py:48:9-12: Unexpected keyword argument `key` in function `EcovacsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/number.py:49:9-24: Unexpected keyword argument `translation_key` in function `EcovacsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/number.py:50:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/number.py:51:9-24: Unexpected keyword argument `entity_category` in function `EcovacsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/number.py:59:9-12: Unexpected keyword argument `key` in function `EcovacsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/number.py:60:9-24: Unexpected keyword argument `translation_key` in function `EcovacsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/number.py:61:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/number.py:62:9-24: Unexpected keyword argument `entity_category` in function `EcovacsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/number.py:71:9-12: Unexpected keyword argument `key` in function `EcovacsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/number.py:72:9-24: Unexpected keyword argument `translation_key` in function `EcovacsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/number.py:73:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/number.py:74:9-24: Unexpected keyword argument `entity_category` in function `EcovacsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/number.py:87:9-12: Unexpected keyword argument `key` in function `EcovacsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/number.py:88:9-24: Unexpected keyword argument `translation_key` in function `EcovacsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/number.py:89:9-24: Unexpected keyword argument `entity_category` in function `EcovacsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/number.py:116:5-23: Class member `EcovacsNumberEntity.entity_description` overrides parent class `EcovacsDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/number.py:116:5-23: Class member `EcovacsNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/select.py:52:9-12: Unexpected keyword argument `key` in function `EcovacsSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/select.py:53:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/select.py:54:9-24: Unexpected keyword argument `entity_category` in function `EcovacsSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/select.py:60:9-12: Unexpected keyword argument `key` in function `EcovacsSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/select.py:61:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/select.py:62:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/select.py:63:9-24: Unexpected keyword argument `entity_category` in function `EcovacsSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/select.py:70:9-12: Unexpected keyword argument `key` in function `EcovacsSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/select.py:71:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/select.py:103:5-23: Class member `EcovacsSelectEntity.entity_description` overrides parent class `EcovacsDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/select.py:103:5-23: Class member `EcovacsSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/select.py:140:5-23: Class member `EcovacsActiveMapSelectEntity.entity_description` overrides parent class `EcovacsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/select.py:141:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/select.py:142:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/select.py:143:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:76:9-12: Unexpected keyword argument `key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:85:9-12: Unexpected keyword argument `key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:97:9-12: Unexpected keyword argument `key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:106:9-12: Unexpected keyword argument `key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:116:9-12: Unexpected keyword argument `key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:117:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:123:9-12: Unexpected keyword argument `key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:126:9-24: Unexpected keyword argument `entity_category` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:131:9-12: Unexpected keyword argument `key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:132:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:133:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:134:9-24: Unexpected keyword argument `entity_category` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:139:9-12: Unexpected keyword argument `key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:140:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:141:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:142:9-24: Unexpected keyword argument `entity_category` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:147:9-12: Unexpected keyword argument `key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:148:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:149:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:150:9-24: Unexpected keyword argument `entity_category` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:156:9-12: Unexpected keyword argument `key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:157:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:176:9-12: Unexpected keyword argument `key` in function `EcovacsLifespanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:177:9-24: Unexpected keyword argument `translation_key` in function `EcovacsLifespanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:179:9-24: Unexpected keyword argument `entity_category` in function `EcovacsLifespanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:195:9-12: Unexpected keyword argument `key` in function `EcovacsLegacyLifespanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:196:9-24: Unexpected keyword argument `translation_key` in function `EcovacsLegacyLifespanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:198:9-24: Unexpected keyword argument `entity_category` in function `EcovacsLegacyLifespanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:269:5-23: Class member `EcovacsSensor.entity_description` overrides parent class `EcovacsDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/sensor.py:269:5-23: Class member `EcovacsSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/sensor.py:313:5-23: Class member `EcovacsLifespanSensor.entity_description` overrides parent class `EcovacsDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/sensor.py:313:5-23: Class member `EcovacsLifespanSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/sensor.py:335:5-23: Class member `EcovacsErrorSensor.entity_description` overrides parent class `EcovacsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/sensor.py:336:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:337:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:338:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:339:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/sensor.py:359:5-23: Class member `EcovacsLegacyBatterySensor._attr_device_class` overrides parent class `EcovacsLegacyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/sensor.py:396:5-23: Class member `EcovacsLegacyLifespanSensor.entity_description` overrides parent class `EcovacsLegacyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/sensor.py:396:5-23: Class member `EcovacsLegacyLifespanSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/sensor.py:410:35-40: `value` may be uninitialized [unbound-name] +ERROR homeassistant/components/ecovacs/sensor.py:420:39-44: `value` may be uninitialized [unbound-name] +ERROR homeassistant/components/ecovacs/switch.py:34:9-12: Unexpected keyword argument `key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:35:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:36:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:37:9-24: Unexpected keyword argument `entity_category` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:41:9-12: Unexpected keyword argument `key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:42:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:43:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:44:9-24: Unexpected keyword argument `entity_category` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:48:9-12: Unexpected keyword argument `key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:49:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:50:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:51:9-24: Unexpected keyword argument `entity_category` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:55:9-12: Unexpected keyword argument `key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:56:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:57:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:58:9-24: Unexpected keyword argument `entity_category` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:62:9-12: Unexpected keyword argument `key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:63:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:64:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:65:9-24: Unexpected keyword argument `entity_category` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:69:9-12: Unexpected keyword argument `key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:70:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:71:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:72:9-24: Unexpected keyword argument `entity_category` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:76:9-12: Unexpected keyword argument `key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:77:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:78:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:79:9-24: Unexpected keyword argument `entity_category` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:83:9-12: Unexpected keyword argument `key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:84:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:85:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:86:9-24: Unexpected keyword argument `entity_category` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:90:9-12: Unexpected keyword argument `key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:91:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:92:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:93:9-24: Unexpected keyword argument `entity_category` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:97:9-12: Unexpected keyword argument `key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:98:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:99:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:100:9-24: Unexpected keyword argument `entity_category` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:104:9-12: Unexpected keyword argument `key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:105:9-24: Unexpected keyword argument `translation_key` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:106:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:107:9-24: Unexpected keyword argument `entity_category` in function `EcovacsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/switch.py:132:5-23: Class member `EcovacsSwitchEntity.entity_description` overrides parent class `EcovacsDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/switch.py:132:5-23: Class member `EcovacsSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/vacuum.py:72:5-29: Class member `EcovacsLegacyVacuum._attr_supported_features` overrides parent class `EcovacsLegacyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/vacuum.py:215:5-29: Class member `EcovacsVacuum._attr_supported_features` overrides parent class `EcovacsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/vacuum.py:225:5-23: Class member `EcovacsVacuum.entity_description` overrides parent class `EcovacsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecovacs/vacuum.py:226:9-12: Unexpected keyword argument `key` in function `homeassistant.components.vacuum.StateVacuumEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/vacuum.py:226:23-38: Unexpected keyword argument `translation_key` in function `homeassistant.components.vacuum.StateVacuumEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecovacs/vacuum.py:226:49-53: Unexpected keyword argument `name` in function `homeassistant.components.vacuum.StateVacuumEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/binary_sensor.py:22:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/binary_sensor.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/binary_sensor.py:27:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/binary_sensor.py:30:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/binary_sensor.py:74:14-32: Class member `EcowittBinarySensorEntity.entity_description` overrides parent class `EcowittEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ecowitt/sensor.py:62:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:68:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:74:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:80:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:85:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:91:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:97:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:101:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:104:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:108:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:112:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:118:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:124:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:127:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:131:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:134:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:139:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:145:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:151:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:157:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:163:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:170:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:177:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:182:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:187:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:188:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:190:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:193:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:200:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:207:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:213:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:219:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:225:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:230:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:236:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:242:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:244:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:247:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:253:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ecowitt/sensor.py:318:14-32: Class member `EcowittSensorEntity.entity_description` overrides parent class `EcowittEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/edimax/switch.py:7:1-41: Could not find import of `pyedimax.smartplug` [missing-import] +ERROR homeassistant/components/edl21/sensor.py:53:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:55:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:59:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:64:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:68:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:75:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:84:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:91:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:98:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:106:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:113:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:120:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:127:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:136:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:137:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:143:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:144:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:152:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:153:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:161:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:162:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:170:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:171:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:179:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:180:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:188:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:189:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:197:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:198:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:206:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:207:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:215:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:216:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:224:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:225:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:233:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:234:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:246:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:247:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:250:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:251:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:254:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:255:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:258:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:259:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:262:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:263:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:267:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:268:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:271:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:272:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/edl21/sensor.py:427:41-429:10: `() -> None` is not assignable to attribute `_async_remove_dispatcher` with type `None` [bad-assignment] +ERROR homeassistant/components/efergy/sensor.py:29:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:30:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:36:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:37:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:41:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:44:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:49:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:59:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:64:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:67:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:69:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:72:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:73:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:76:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:79:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:83:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:86:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:92:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:96:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:99:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/efergy/sensor.py:160:14-32: Class member `EfergySensor.entity_description` overrides parent class `EfergyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/egardia/__init__.py:5:1-55: Could not find import of `pythonegardia` [missing-import] +ERROR homeassistant/components/egardia/alarm_control_panel.py:104:44-64: Object of class `NoneType` has no attribute `items` [missing-attribute] +ERROR homeassistant/components/egardia/binary_sensor.py:65:23-63: `Literal['off', 'on']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/eheimdigital/climate.py:64:5-29: Class member `EheimDigitalHeaterClimate._attr_supported_features` overrides parent class `EheimDigitalEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eheimdigital/coordinator.py:33:5-17: Class member `EheimDigitalUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eheimdigital/light.py:69:5-29: Class member `EheimDigitalClassicLEDControlLight._attr_supported_features` overrides parent class `EheimDigitalEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eheimdigital/number.py:49:9-12: Unexpected keyword argument `key` in function `EheimDigitalNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/number.py:50:9-24: Unexpected keyword argument `translation_key` in function `EheimDigitalNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/number.py:51:9-24: Unexpected keyword argument `entity_category` in function `EheimDigitalNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/number.py:58:9-12: Unexpected keyword argument `key` in function `EheimDigitalNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/number.py:59:9-24: Unexpected keyword argument `translation_key` in function `EheimDigitalNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/number.py:60:9-24: Unexpected keyword argument `entity_category` in function `EheimDigitalNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/number.py:67:9-12: Unexpected keyword argument `key` in function `EheimDigitalNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/number.py:68:9-24: Unexpected keyword argument `translation_key` in function `EheimDigitalNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/number.py:69:9-24: Unexpected keyword argument `entity_category` in function `EheimDigitalNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/number.py:79:9-12: Unexpected keyword argument `key` in function `EheimDigitalNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/number.py:80:9-24: Unexpected keyword argument `translation_key` in function `EheimDigitalNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/number.py:81:9-24: Unexpected keyword argument `entity_category` in function `EheimDigitalNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/number.py:95:9-12: Unexpected keyword argument `key` in function `EheimDigitalNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/number.py:96:9-24: Unexpected keyword argument `translation_key` in function `EheimDigitalNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/number.py:97:9-24: Unexpected keyword argument `entity_category` in function `EheimDigitalNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/number.py:114:9-12: Unexpected keyword argument `key` in function `EheimDigitalNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/number.py:115:9-24: Unexpected keyword argument `translation_key` in function `EheimDigitalNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/number.py:116:9-24: Unexpected keyword argument `entity_category` in function `EheimDigitalNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/number.py:171:5-23: Class member `EheimDigitalNumber.entity_description` overrides parent class `EheimDigitalEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eheimdigital/number.py:171:5-23: Class member `EheimDigitalNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eheimdigital/select.py:35:9-12: Unexpected keyword argument `key` in function `EheimDigitalSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/select.py:36:9-24: Unexpected keyword argument `translation_key` in function `EheimDigitalSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/select.py:83:5-23: Class member `EheimDigitalSelect.entity_description` overrides parent class `EheimDigitalEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eheimdigital/select.py:83:5-23: Class member `EheimDigitalSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eheimdigital/sensor.py:40:9-12: Unexpected keyword argument `key` in function `EheimDigitalSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `EheimDigitalSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/sensor.py:46:9-12: Unexpected keyword argument `key` in function `EheimDigitalSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `EheimDigitalSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/sensor.py:52:9-24: Unexpected keyword argument `entity_category` in function `EheimDigitalSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/sensor.py:55:9-12: Unexpected keyword argument `key` in function `EheimDigitalSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `EheimDigitalSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/sensor.py:64:9-24: Unexpected keyword argument `entity_category` in function `EheimDigitalSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/sensor.py:102:5-23: Class member `EheimDigitalSensor.entity_description` overrides parent class `EheimDigitalEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eheimdigital/sensor.py:102:5-23: Class member `EheimDigitalSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eheimdigital/time.py:35:9-12: Unexpected keyword argument `key` in function `EheimDigitalTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/time.py:36:9-24: Unexpected keyword argument `translation_key` in function `EheimDigitalTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/time.py:37:9-24: Unexpected keyword argument `entity_category` in function `EheimDigitalTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/time.py:42:9-12: Unexpected keyword argument `key` in function `EheimDigitalTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/time.py:43:9-24: Unexpected keyword argument `translation_key` in function `EheimDigitalTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/time.py:44:9-24: Unexpected keyword argument `entity_category` in function `EheimDigitalTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/time.py:52:9-12: Unexpected keyword argument `key` in function `EheimDigitalTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/time.py:53:9-24: Unexpected keyword argument `translation_key` in function `EheimDigitalTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/time.py:54:9-24: Unexpected keyword argument `entity_category` in function `EheimDigitalTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/time.py:59:9-12: Unexpected keyword argument `key` in function `EheimDigitalTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/time.py:60:9-24: Unexpected keyword argument `translation_key` in function `EheimDigitalTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/time.py:61:9-24: Unexpected keyword argument `entity_category` in function `EheimDigitalTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eheimdigital/time.py:109:5-23: Class member `EheimDigitalTime.entity_description` overrides parent class `EheimDigitalEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eheimdigital/time.py:109:5-23: Class member `EheimDigitalTime.entity_description` overrides parent class `TimeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ekeybionyx/config_flow.py:254:33-48: `progress_action` may be uninitialized [unbound-name] +ERROR homeassistant/components/electric_kiwi/select.py:22:5-20: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/electric_kiwi/select.py:23:5-8: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/electric_kiwi/select.py:24:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/electric_kiwi/select.py:45:5-23: Class member `ElectricKiwiSelectHOPEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/electric_kiwi/sensor.py:57:9-12: Unexpected keyword argument `key` in function `ElectricKiwiAccountSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/electric_kiwi/sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `ElectricKiwiAccountSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/electric_kiwi/sensor.py:65:9-12: Unexpected keyword argument `key` in function `ElectricKiwiAccountSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/electric_kiwi/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `ElectricKiwiAccountSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/electric_kiwi/sensor.py:73:9-12: Unexpected keyword argument `key` in function `ElectricKiwiAccountSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/electric_kiwi/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `ElectricKiwiAccountSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/electric_kiwi/sensor.py:81:9-12: Unexpected keyword argument `key` in function `ElectricKiwiAccountSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/electric_kiwi/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `ElectricKiwiAccountSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/electric_kiwi/sensor.py:118:9-12: Unexpected keyword argument `key` in function `ElectricKiwiHOPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/electric_kiwi/sensor.py:119:9-24: Unexpected keyword argument `translation_key` in function `ElectricKiwiHOPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/electric_kiwi/sensor.py:124:9-12: Unexpected keyword argument `key` in function `ElectricKiwiHOPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/electric_kiwi/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `ElectricKiwiHOPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/electric_kiwi/sensor.py:163:5-23: Class member `ElectricKiwiAccountEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/electric_kiwi/sensor.py:163:5-23: Class member `ElectricKiwiAccountEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/electric_kiwi/sensor.py:192:5-23: Class member `ElectricKiwiHOPEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/electric_kiwi/sensor.py:192:5-23: Class member `ElectricKiwiHOPEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elevenlabs/tts.py:289:25-33: Unpacked keyword argument `VoiceSettings | str | Any` is not assignable to parameter `voice_id` with type `str` in function `elevenlabs.text_to_speech.raw_client.AsyncRawTextToSpeechClient.stream` [bad-argument-type] +ERROR homeassistant/components/elevenlabs/tts.py:289:25-33: Unpacked keyword argument `VoiceSettings | str | Any` is not assignable to parameter `text` with type `str` in function `elevenlabs.text_to_speech.raw_client.AsyncRawTextToSpeechClient.stream` [bad-argument-type] +ERROR homeassistant/components/elevenlabs/tts.py:289:25-33: Unpacked keyword argument `VoiceSettings | str | Any` is not assignable to parameter `enable_logging` with type `bool | None` in function `elevenlabs.text_to_speech.raw_client.AsyncRawTextToSpeechClient.stream` [bad-argument-type] +ERROR homeassistant/components/elevenlabs/tts.py:289:25-33: Unpacked keyword argument `VoiceSettings | str | Any` is not assignable to parameter `optimize_streaming_latency` with type `int | None` in function `elevenlabs.text_to_speech.raw_client.AsyncRawTextToSpeechClient.stream` [bad-argument-type] +ERROR homeassistant/components/elevenlabs/tts.py:289:25-33: Unpacked keyword argument `VoiceSettings | str | Any` is not assignable to parameter `model_id` with type `str | None` in function `elevenlabs.text_to_speech.raw_client.AsyncRawTextToSpeechClient.stream` [bad-argument-type] +ERROR homeassistant/components/elevenlabs/tts.py:289:25-33: Unpacked keyword argument `VoiceSettings | str | Any` is not assignable to parameter `language_code` with type `str | None` in function `elevenlabs.text_to_speech.raw_client.AsyncRawTextToSpeechClient.stream` [bad-argument-type] +ERROR homeassistant/components/elevenlabs/tts.py:289:25-33: Unpacked keyword argument `VoiceSettings | str | Any` is not assignable to parameter `voice_settings` with type `VoiceSettings | None` in function `elevenlabs.text_to_speech.raw_client.AsyncRawTextToSpeechClient.stream` [bad-argument-type] +ERROR homeassistant/components/elevenlabs/tts.py:289:25-33: Unpacked keyword argument `VoiceSettings | str | Any` is not assignable to parameter `pronunciation_dictionary_locators` with type `Sequence[PronunciationDictionaryVersionLocator] | None` in function `elevenlabs.text_to_speech.raw_client.AsyncRawTextToSpeechClient.stream` [bad-argument-type] +ERROR homeassistant/components/elevenlabs/tts.py:289:25-33: Unpacked keyword argument `VoiceSettings | str | Any` is not assignable to parameter `seed` with type `int | None` in function `elevenlabs.text_to_speech.raw_client.AsyncRawTextToSpeechClient.stream` [bad-argument-type] +ERROR homeassistant/components/elevenlabs/tts.py:289:25-33: Unpacked keyword argument `VoiceSettings | str | Any` is not assignable to parameter `previous_text` with type `str | None` in function `elevenlabs.text_to_speech.raw_client.AsyncRawTextToSpeechClient.stream` [bad-argument-type] +ERROR homeassistant/components/elevenlabs/tts.py:289:25-33: Unpacked keyword argument `VoiceSettings | str | Any` is not assignable to parameter `next_text` with type `str | None` in function `elevenlabs.text_to_speech.raw_client.AsyncRawTextToSpeechClient.stream` [bad-argument-type] +ERROR homeassistant/components/elevenlabs/tts.py:289:25-33: Unpacked keyword argument `VoiceSettings | str | Any` is not assignable to parameter `previous_request_ids` with type `Sequence[str] | None` in function `elevenlabs.text_to_speech.raw_client.AsyncRawTextToSpeechClient.stream` [bad-argument-type] +ERROR homeassistant/components/elevenlabs/tts.py:289:25-33: Unpacked keyword argument `VoiceSettings | str | Any` is not assignable to parameter `next_request_ids` with type `Sequence[str] | None` in function `elevenlabs.text_to_speech.raw_client.AsyncRawTextToSpeechClient.stream` [bad-argument-type] +ERROR homeassistant/components/elevenlabs/tts.py:289:25-33: Unpacked keyword argument `VoiceSettings | str | Any` is not assignable to parameter `use_pvc_as_ivc` with type `bool | None` in function `elevenlabs.text_to_speech.raw_client.AsyncRawTextToSpeechClient.stream` [bad-argument-type] +ERROR homeassistant/components/elevenlabs/tts.py:289:25-33: Unpacked keyword argument `VoiceSettings | str | Any` is not assignable to parameter `apply_language_text_normalization` with type `bool | None` in function `elevenlabs.text_to_speech.raw_client.AsyncRawTextToSpeechClient.stream` [bad-argument-type] +ERROR homeassistant/components/elevenlabs/tts.py:289:25-33: Unpacked keyword argument `VoiceSettings | str | Any` is not assignable to parameter `request_options` with type `TypedDict[RequestOptions] | None` in function `elevenlabs.text_to_speech.raw_client.AsyncRawTextToSpeechClient.stream` [bad-argument-type] +ERROR homeassistant/components/elgato/button.py:36:9-12: Unexpected keyword argument `key` in function `ElgatoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/button.py:38:9-24: Unexpected keyword argument `entity_category` in function `ElgatoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/button.py:42:9-12: Unexpected keyword argument `key` in function `ElgatoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/button.py:44:9-24: Unexpected keyword argument `entity_category` in function `ElgatoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/button.py:69:5-23: Class member `ElgatoButtonEntity.entity_description` overrides parent class `ElgatoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elgato/button.py:69:5-23: Class member `ElgatoButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elgato/coordinator.py:31:5-17: Class member `ElgatoDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elgato/sensor.py:41:9-12: Unexpected keyword argument `key` in function `ElgatoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/sensor.py:43:9-24: Unexpected keyword argument `entity_category` in function `ElgatoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/sensor.py:51:9-12: Unexpected keyword argument `key` in function `ElgatoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `ElgatoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/sensor.py:53:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ElgatoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/sensor.py:55:9-24: Unexpected keyword argument `entity_category` in function `ElgatoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/sensor.py:64:9-12: Unexpected keyword argument `key` in function `ElgatoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `ElgatoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/sensor.py:66:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ElgatoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/sensor.py:68:9-24: Unexpected keyword argument `entity_category` in function `ElgatoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/sensor.py:77:9-12: Unexpected keyword argument `key` in function `ElgatoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `ElgatoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/sensor.py:79:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ElgatoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/sensor.py:81:9-24: Unexpected keyword argument `entity_category` in function `ElgatoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/sensor.py:89:9-12: Unexpected keyword argument `key` in function `ElgatoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `ElgatoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/sensor.py:91:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ElgatoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/sensor.py:93:9-24: Unexpected keyword argument `entity_category` in function `ElgatoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/sensor.py:125:5-23: Class member `ElgatoSensorEntity.entity_description` overrides parent class `ElgatoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elgato/sensor.py:125:5-23: Class member `ElgatoSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elgato/switch.py:34:9-12: Unexpected keyword argument `key` in function `ElgatoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/switch.py:35:9-24: Unexpected keyword argument `translation_key` in function `ElgatoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/switch.py:36:9-24: Unexpected keyword argument `entity_category` in function `ElgatoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/switch.py:42:9-12: Unexpected keyword argument `key` in function `ElgatoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/switch.py:43:9-24: Unexpected keyword argument `translation_key` in function `ElgatoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/switch.py:44:9-24: Unexpected keyword argument `entity_category` in function `ElgatoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/elgato/switch.py:75:5-23: Class member `ElgatoSwitchEntity.entity_description` overrides parent class `ElgatoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elgato/switch.py:75:5-23: Class member `ElgatoSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eliqonline/sensor.py:8:8-18: Could not find import of `eliqonline` [missing-import] +ERROR homeassistant/components/elkm1/alarm_control_panel.py:104:5-29: Class member `ElkArea._attr_supported_features` overrides parent class `ElkAttachedEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elkm1/alarm_control_panel.py:104:5-29: Class member `ElkArea._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elkm1/alarm_control_panel.py:110:5-13: Class member `ElkArea._element` overrides parent class `ElkAttachedEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elkm1/binary_sensor.py:49:5-13: Class member `ElkBinarySensor._element` overrides parent class `ElkAttachedEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elkm1/climate.py:77:5-29: Class member `ElkThermostat._attr_supported_features` overrides parent class `ElkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elkm1/climate.py:89:5-13: Class member `ElkThermostat._element` overrides parent class `ElkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elkm1/light.py:38:5-13: Class member `ElkLight._element` overrides parent class `ElkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elkm1/scene.py:33:5-13: Class member `ElkTask._element` overrides parent class `ElkAttachedEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elkm1/sensor.py:102:5-23: Class member `ElkSensor._attr_native_value` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elkm1/sensor.py:135:5-13: Class member `ElkCounter._element` overrides parent class `ElkSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elkm1/sensor.py:145:5-13: Class member `ElkKeypad._element` overrides parent class `ElkSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elkm1/sensor.py:181:5-13: Class member `ElkPanel._element` overrides parent class `ElkSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elkm1/sensor.py:201:5-13: Class member `ElkSetting._element` overrides parent class `ElkSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elkm1/sensor.py:217:5-13: Class member `ElkZone._element` overrides parent class `ElkSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elkm1/switch.py:41:5-13: Class member `ElkOutput._element` overrides parent class `ElkAttachedEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elkm1/switch.py:60:5-13: Class member `ElkThermostatEMHeat._element` overrides parent class `ElkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elmax/__init__.py:50:25-43: Argument `SSLContext | None` is not assignable to parameter `ssl_context` with type `SSLContext` in function `elmax_api.http.ElmaxLocal.__init__` [bad-argument-type] +ERROR homeassistant/components/elmax/alarm_control_panel.py:68:5-29: Class member `ElmaxArea._attr_supported_features` overrides parent class `ElmaxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elmax/binary_sensor.py:61:5-23: Class member `ElmaxSensor._attr_device_class` overrides parent class `ElmaxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elmax/config_flow.py:167:25-36: Argument `SSLContext | None` is not assignable to parameter `ssl_context` with type `SSLContext` in function `elmax_api.http.ElmaxLocal.__init__` [bad-argument-type] +ERROR homeassistant/components/elmax/config_flow.py:330:39-47: Argument `str | None` is not assignable to parameter `username` with type `str` in function `_store_panel_by_name` [bad-argument-type] +ERROR homeassistant/components/elmax/config_flow.py:342:32-40: `str | None` is not assignable to attribute `_cloud_username` with type `str` [bad-assignment] +ERROR homeassistant/components/elmax/coordinator.py:70:20-56: Returned type `Actuator | Area | Cover | DeviceEndpoint` is not assignable to declared return type `Actuator` [bad-return] +ERROR homeassistant/components/elmax/coordinator.py:76:20-52: Returned type `Actuator | Area | Cover | DeviceEndpoint` is not assignable to declared return type `Actuator` [bad-return] +ERROR homeassistant/components/elmax/coordinator.py:82:20-52: Returned type `Actuator | Area | Cover | DeviceEndpoint` is not assignable to declared return type `Area` [bad-return] +ERROR homeassistant/components/elmax/coordinator.py:88:20-53: Returned type `Actuator | Area | Cover | DeviceEndpoint` is not assignable to declared return type `Cover` [bad-return] +ERROR homeassistant/components/elmax/coordinator.py:154:43-158:10: `PushNotificationHandler` is not assignable to attribute `_push_notification_handler` with type `None` [bad-assignment] +ERROR homeassistant/components/elmax/coordinator.py:159:9-75: Object of class `NoneType` has no attribute `register_push_notification_handler` [missing-attribute] +ERROR homeassistant/components/elmax/coordinator.py:162:9-46: Object of class `NoneType` has no attribute `start` [missing-attribute] +ERROR homeassistant/components/elmax/cover.py:71:5-29: Class member `ElmaxCover._attr_supported_features` overrides parent class `ElmaxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/elv/switch.py:8:8-13: Could not find import of `pypca` [missing-import] +ERROR homeassistant/components/elvia/config_flow.py:58:20-31: `meter_count` is uninitialized [unbound-name] +ERROR homeassistant/components/emby/media_player.py:7:1-30: Could not find import of `pyemby` [missing-import] +ERROR homeassistant/components/emby/media_player.py:161:46-62: `datetime` is not assignable to attribute `media_status_received` with type `None` [bad-assignment] +ERROR homeassistant/components/emoncms/config_flow.py:74:9-31: Class member `EmoncmsConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/emoncms/coordinator.py:20:5-17: Class member `EmoncmsCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/emoncms/sensor.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:49:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:56:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:63:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:70:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:77:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:84:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:91:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:98:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:105:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:112:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:113:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:119:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:120:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:126:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:127:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:133:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:134:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:140:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:141:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:147:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:148:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:154:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:155:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:161:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:162:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:167:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:168:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:173:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:174:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emoncms/sensor.py:252:18-36: Class member `EmonCmsSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/emoncms_history/__init__.py:67:75-79: Argument `int | str` is not assignable to parameter `node` with type `str | None` in function `pyemoncms.emoncms_client.EmoncmsClient.async_input_post` [bad-argument-type] +ERROR homeassistant/components/emonitor/sensor.py:26:29-32: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emonitor/sensor.py:28:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emonitor/sensor.py:29:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emonitor/sensor.py:30:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emonitor/sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emonitor/sensor.py:33:26-41: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emonitor/sensor.py:33:49-80: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/emonitor/sensor.py:48:36-50: Object of class `list` has no attribute `items` [missing-attribute] +ERROR homeassistant/components/emonitor/sensor.py:56:33-44: Argument `DataUpdateCoordinator[EmonitorStatus]` is not assignable to parameter `coordinator` with type `DataUpdateCoordinator[dict[str, Any]]` in function `EmonitorPowerSensor.__init__` [bad-argument-type] +ERROR homeassistant/components/emonitor/sensor.py:63:27-60: `EmonitorStatus` is not assignable to upper bound `DataUpdateCoordinator[Any]` of type variable `_DataUpdateCoordinatorT` [bad-specialization] +ERROR homeassistant/components/emonitor/sensor.py:66:5-23: Class member `EmonitorPowerSensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/emonitor/sensor.py:78:14-32: Class member `EmonitorPowerSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/emonitor/sensor.py:80:26-37: Argument `DataUpdateCoordinator[dict[str, Any]]` is not assignable to parameter `coordinator` with type `EmonitorStatus` in function `homeassistant.helpers.update_coordinator.CoordinatorEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/emonitor/sensor.py:81:27-48: Object of class `EmonitorStatus` has no attribute `data` [missing-attribute] +ERROR homeassistant/components/emonitor/sensor.py:104:48-69: Object of class `EmonitorStatus` has no attribute `data` [missing-attribute] +ERROR homeassistant/components/emulated_hue/hue_api.py:435:47-58: `color_modes` may be uninitialized [unbound-name] +ERROR homeassistant/components/emulated_hue/hue_api.py:474:48-59: `color_modes` may be uninitialized [unbound-name] +ERROR homeassistant/components/emulated_hue/hue_api.py:481:42-53: `color_modes` may be uninitialized [unbound-name] +ERROR homeassistant/components/emulated_hue/hue_api.py:503:48-59: `color_modes` may be uninitialized [unbound-name] +ERROR homeassistant/components/emulated_hue/hue_api.py:871:12-28: `in` is not supported between `ClimateEntityFeature` and `CoverEntityFeature` [unsupported-operation] +ERROR homeassistant/components/emulated_hue/hue_api.py:871:12-28: `in` is not supported between `ClimateEntityFeature` and `FanEntityFeature` [unsupported-operation] +ERROR homeassistant/components/emulated_hue/hue_api.py:871:12-28: `in` is not supported between `ClimateEntityFeature` and `MediaPlayerEntityFeature` [unsupported-operation] +ERROR homeassistant/components/emulated_hue/hue_api.py:871:12-28: `in` is not supported between `CoverEntityFeature` and `ClimateEntityFeature` [unsupported-operation] +ERROR homeassistant/components/emulated_hue/hue_api.py:871:12-28: `in` is not supported between `CoverEntityFeature` and `FanEntityFeature` [unsupported-operation] +ERROR homeassistant/components/emulated_hue/hue_api.py:871:12-28: `in` is not supported between `CoverEntityFeature` and `MediaPlayerEntityFeature` [unsupported-operation] +ERROR homeassistant/components/emulated_hue/hue_api.py:871:12-28: `in` is not supported between `FanEntityFeature` and `ClimateEntityFeature` [unsupported-operation] +ERROR homeassistant/components/emulated_hue/hue_api.py:871:12-28: `in` is not supported between `FanEntityFeature` and `CoverEntityFeature` [unsupported-operation] +ERROR homeassistant/components/emulated_hue/hue_api.py:871:12-28: `in` is not supported between `FanEntityFeature` and `MediaPlayerEntityFeature` [unsupported-operation] +ERROR homeassistant/components/emulated_hue/hue_api.py:871:12-28: `in` is not supported between `MediaPlayerEntityFeature` and `ClimateEntityFeature` [unsupported-operation] +ERROR homeassistant/components/emulated_hue/hue_api.py:871:12-28: `in` is not supported between `MediaPlayerEntityFeature` and `CoverEntityFeature` [unsupported-operation] +ERROR homeassistant/components/emulated_hue/hue_api.py:871:12-28: `in` is not supported between `MediaPlayerEntityFeature` and `FanEntityFeature` [unsupported-operation] +ERROR homeassistant/components/emulated_kasa/__init__.py:139:19-24: `power` may be uninitialized [unbound-name] +ERROR homeassistant/components/emulated_roku/binding.py:135:26-43: Argument `str | None` is not assignable to parameter `advertise_ip` with type `str` in function `emulated_roku.EmulatedRokuServer.__init__` [bad-argument-type] +ERROR homeassistant/components/emulated_roku/binding.py:136:28-47: Argument `int | None` is not assignable to parameter `advertise_port` with type `int` in function `emulated_roku.EmulatedRokuServer.__init__` [bad-argument-type] +ERROR homeassistant/components/emulated_roku/binding.py:137:28-47: Argument `bool | None` is not assignable to parameter `bind_multicast` with type `bool` in function `emulated_roku.EmulatedRokuServer.__init__` [bad-argument-type] +ERROR homeassistant/components/energenie_power_sockets/__init__.py:21:44-86: `Device | None` is not assignable to `PowerStripUSB | None` [bad-assignment] +ERROR homeassistant/components/energy/data.py:367:29-40: `list[TypedDict[BatterySourceType] | TypedDict[GasSourceType] | TypedDict[GridSourceType] | TypedDict[SolarSourceType] | TypedDict[WaterSourceType]] | list[TypedDict[DeviceConsumption]]` is not assignable to TypedDict key `device_consumption` with type `list[TypedDict[DeviceConsumption]]` [bad-typed-dict-key] +ERROR homeassistant/components/energy/data.py:367:29-40: `list[TypedDict[BatterySourceType] | TypedDict[GasSourceType] | TypedDict[GridSourceType] | TypedDict[SolarSourceType] | TypedDict[WaterSourceType]] | list[TypedDict[DeviceConsumption]]` is not assignable to TypedDict key `energy_sources` with type `list[TypedDict[BatterySourceType] | TypedDict[GasSourceType] | TypedDict[GridSourceType] | TypedDict[SolarSourceType] | TypedDict[WaterSourceType]]` [bad-typed-dict-key] +ERROR homeassistant/components/energy/sensor.py:321:17-28: `valid_units` may be uninitialized [unbound-name] +ERROR homeassistant/components/energy/sensor.py:321:30-48: `default_price_unit` may be uninitialized [unbound-name] +ERROR homeassistant/components/energy/sensor.py:340:54-65: `valid_units` may be uninitialized [unbound-name] +ERROR homeassistant/components/energy/sensor.py:374:27-44: `energy_price_unit` may be uninitialized [unbound-name] +ERROR homeassistant/components/energy/validate.py:147:9-14: `issue` may be uninitialized [unbound-name] +ERROR homeassistant/components/energy/validate.py:174:36-51: Module `homeassistant.components.recorder.models` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/energy/validate.py:234:36-51: Module `homeassistant.components.recorder.models` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/energy/validate.py:305:36-51: Module `homeassistant.components.recorder.models` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/energy/validate.py:338:36-51: Module `homeassistant.components.recorder.models` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/energy/validate.py:392:47-62: Module `homeassistant.components.recorder.models` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/energy/validate.py:521:47-62: Module `homeassistant.components.recorder.models` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/energy/validate.py:581:47-62: Module `homeassistant.components.recorder.models` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/energy/validate.py:641:47-62: Module `homeassistant.components.recorder.models` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/energy/validate.py:749:17-36: Module `homeassistant.components.recorder.statistics` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/energy/websocket_api.py:88:22-26: Argument `((HomeAssistant, ActiveConnection, dict[str, Any], EnergyManager) -> Coroutine[Any, Any, None]) | ((HomeAssistant, ActiveConnection, dict[str, Any], EnergyManager) -> None)` is not assignable to parameter `wrapped` with type `(HomeAssistant, ActiveConnection, dict[str, Any], EnergyManager) -> Coroutine[Any, Any, None]` in function `functools.wraps` [bad-argument-type] +ERROR homeassistant/components/energy/websocket_api.py:276:9-28: Module `homeassistant.components.recorder.statistics` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/energy/websocket_api.py:361:43-62: Module `homeassistant.components.recorder.statistics` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/energy/websocket_api.py:372:13-32: Module `homeassistant.components.recorder.statistics` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/energyzero/coordinator.py:38:5-17: Class member `EnergyZeroDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/energyzero/sensor.py:46:9-12: Unexpected keyword argument `key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:54:9-12: Unexpected keyword argument `key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:58:31-44: `get_gas_price` is uninitialized [unbound-name] +ERROR homeassistant/components/energyzero/sensor.py:61:9-12: Unexpected keyword argument `key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:69:9-12: Unexpected keyword argument `key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:78:9-12: Unexpected keyword argument `key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:85:9-12: Unexpected keyword argument `key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:92:9-12: Unexpected keyword argument `key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:99:9-12: Unexpected keyword argument `key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:106:9-12: Unexpected keyword argument `key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:113:9-12: Unexpected keyword argument `key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:120:9-12: Unexpected keyword argument `key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `EnergyZeroSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/energyzero/sensor.py:170:5-23: Class member `EnergyZeroSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/energyzero/sensor.py:170:5-23: Class member `EnergyZeroSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enigma2/config_flow.py:161:9-31: Class member `Enigma2ConfigFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enigma2/coordinator.py:42:5-17: Class member `Enigma2UpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enigma2/media_player.py:47:5-29: Class member `Enigma2Device._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enigma2/media_player.py:170:18-29: Class member `Enigma2Device._attr_state` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enocean/binary_sensor.py:65:14-32: Class member `EnOceanBinarySensor._attr_device_class` overrides parent class `EnOceanEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enocean/config_flow.py:60:58-71: Argument `() -> Unknown` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/enocean/dongle.py:39:45-41:10: `() -> None` is not assignable to attribute `dispatcher_disconnect_handle` with type `None` [bad-assignment] +ERROR homeassistant/components/enocean/light.py:72:27-56: `/` is not supported between `None` and `float` [unsupported-operation] +ERROR homeassistant/components/enocean/sensor.py:56:5-8: Unexpected keyword argument `key` in function `EnOceanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enocean/sensor.py:57:5-9: Unexpected keyword argument `name` in function `EnOceanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enocean/sensor.py:65:5-8: Unexpected keyword argument `key` in function `EnOceanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enocean/sensor.py:66:5-9: Unexpected keyword argument `name` in function `EnOceanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enocean/sensor.py:74:5-8: Unexpected keyword argument `key` in function `EnOceanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enocean/sensor.py:75:5-9: Unexpected keyword argument `name` in function `EnOceanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enocean/sensor.py:83:5-8: Unexpected keyword argument `key` in function `EnOceanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enocean/sensor.py:84:5-9: Unexpected keyword argument `name` in function `EnOceanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enocean/sensor.py:85:5-20: Unexpected keyword argument `translation_key` in function `EnOceanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enocean/sensor.py:155:14-32: Class member `EnOceanSensor.entity_description` overrides parent class `EnOceanEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:37:9-12: Unexpected keyword argument `key` in function `EnvoyEnchargeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `EnvoyEnchargeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:40:9-24: Unexpected keyword argument `entity_category` in function `EnvoyEnchargeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:44:9-12: Unexpected keyword argument `key` in function `EnvoyEnchargeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `EnvoyEnchargeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:46:9-24: Unexpected keyword argument `entity_category` in function `EnvoyEnchargeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:61:9-12: Unexpected keyword argument `key` in function `EnvoyEnpowerBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `EnvoyEnpowerBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:64:9-24: Unexpected keyword argument `entity_category` in function `EnvoyEnpowerBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:68:9-12: Unexpected keyword argument `key` in function `EnvoyEnpowerBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `EnvoyEnpowerBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:84:9-12: Unexpected keyword argument `key` in function `EnvoyCollarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `EnvoyCollarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:87:9-24: Unexpected keyword argument `entity_category` in function `EnvoyCollarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:102:9-12: Unexpected keyword argument `key` in function `EnvoyC6CCBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:103:9-24: Unexpected keyword argument `translation_key` in function `EnvoyC6CCBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:105:9-24: Unexpected keyword argument `entity_category` in function `EnvoyC6CCBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:149:7-34: Field `entity_description` is declared `EntityDescription` in ancestor `class EnvoyBaseEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:156:5-23: Class member `EnvoyEnchargeBinarySensorEntity.entity_description` overrides parent class `EnvoyBaseBinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:191:5-23: Class member `EnvoyEnpowerBinarySensorEntity.entity_description` overrides parent class `EnvoyBaseBinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:224:5-23: Class member `EnvoyCollarBinarySensorEntity.entity_description` overrides parent class `EnvoyBaseBinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/binary_sensor.py:257:5-23: Class member `EnvoyC6CCBinarySensorEntity.entity_description` overrides parent class `EnvoyBaseBinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/config_flow.py:96:9-31: Class member `EnphaseConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/coordinator.py:43:5-17: Class member `EnphaseUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/number.py:48:9-12: Unexpected keyword argument `key` in function `EnvoyRelayNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/number.py:49:9-24: Unexpected keyword argument `translation_key` in function `EnvoyRelayNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/number.py:51:9-24: Unexpected keyword argument `entity_category` in function `EnvoyRelayNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/number.py:55:9-12: Unexpected keyword argument `key` in function `EnvoyRelayNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/number.py:56:9-24: Unexpected keyword argument `translation_key` in function `EnvoyRelayNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/number.py:58:9-24: Unexpected keyword argument `entity_category` in function `EnvoyRelayNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/number.py:64:5-8: Unexpected keyword argument `key` in function `EnvoyStorageSettingsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/number.py:65:5-20: Unexpected keyword argument `translation_key` in function `EnvoyStorageSettingsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/number.py:103:5-23: Class member `EnvoyRelayNumberEntity.entity_description` overrides parent class `EnvoyBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/number.py:103:5-23: Class member `EnvoyRelayNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/number.py:147:5-23: Class member `EnvoyStorageSettingsNumberEntity.entity_description` overrides parent class `EnvoyBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/number.py:147:5-23: Class member `EnvoyStorageSettingsNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/select.py:69:9-12: Unexpected keyword argument `key` in function `EnvoyRelaySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/select.py:70:9-24: Unexpected keyword argument `translation_key` in function `EnvoyRelaySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/select.py:81:9-12: Unexpected keyword argument `key` in function `EnvoyRelaySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/select.py:82:9-24: Unexpected keyword argument `translation_key` in function `EnvoyRelaySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/select.py:93:9-12: Unexpected keyword argument `key` in function `EnvoyRelaySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/select.py:94:9-24: Unexpected keyword argument `translation_key` in function `EnvoyRelaySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/select.py:105:9-12: Unexpected keyword argument `key` in function `EnvoyRelaySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/select.py:106:9-24: Unexpected keyword argument `translation_key` in function `EnvoyRelaySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/select.py:118:5-8: Unexpected keyword argument `key` in function `EnvoyStorageSettingsSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/select.py:119:5-20: Unexpected keyword argument `translation_key` in function `EnvoyStorageSettingsSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/select.py:160:5-23: Class member `EnvoyRelaySelectEntity.entity_description` overrides parent class `EnvoyBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/select.py:160:5-23: Class member `EnvoyRelaySelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/select.py:205:5-23: Class member `EnvoyStorageSettingsSelectEntity.entity_description` overrides parent class `EnvoyBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/select.py:205:5-23: Class member `EnvoyStorageSettingsSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/sensor.py:79:9-12: Unexpected keyword argument `key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:80:9-13: Unexpected keyword argument `name` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:87:9-12: Unexpected keyword argument `key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:93:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:97:9-12: Unexpected keyword argument `key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:103:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:107:9-12: Unexpected keyword argument `key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:108:9-24: Unexpected keyword argument `translation_key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:113:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:117:9-12: Unexpected keyword argument `key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:118:9-24: Unexpected keyword argument `translation_key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:123:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:127:9-12: Unexpected keyword argument `key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:132:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:136:9-12: Unexpected keyword argument `key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:141:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:142:9-24: Unexpected keyword argument `entity_category` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:146:9-12: Unexpected keyword argument `key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:147:9-24: Unexpected keyword argument `translation_key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:152:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:156:9-12: Unexpected keyword argument `key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:157:9-24: Unexpected keyword argument `translation_key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:161:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:165:9-12: Unexpected keyword argument `key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:166:9-24: Unexpected keyword argument `translation_key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:170:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:171:9-24: Unexpected keyword argument `entity_category` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:175:9-12: Unexpected keyword argument `key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:176:9-24: Unexpected keyword argument `translation_key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:181:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:185:9-12: Unexpected keyword argument `key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:186:9-24: Unexpected keyword argument `translation_key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:190:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:191:9-24: Unexpected keyword argument `entity_category` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:195:9-12: Unexpected keyword argument `key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:196:9-24: Unexpected keyword argument `translation_key` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:198:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:214:9-12: Unexpected keyword argument `key` in function `EnvoyProductionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:215:9-24: Unexpected keyword argument `translation_key` in function `EnvoyProductionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:225:9-12: Unexpected keyword argument `key` in function `EnvoyProductionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:226:9-24: Unexpected keyword argument `translation_key` in function `EnvoyProductionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:236:9-12: Unexpected keyword argument `key` in function `EnvoyProductionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:237:9-24: Unexpected keyword argument `translation_key` in function `EnvoyProductionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:246:9-12: Unexpected keyword argument `key` in function `EnvoyProductionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:247:9-24: Unexpected keyword argument `translation_key` in function `EnvoyProductionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:285:9-12: Unexpected keyword argument `key` in function `EnvoyConsumptionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:286:9-24: Unexpected keyword argument `translation_key` in function `EnvoyConsumptionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:296:9-12: Unexpected keyword argument `key` in function `EnvoyConsumptionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:297:9-24: Unexpected keyword argument `translation_key` in function `EnvoyConsumptionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:307:9-12: Unexpected keyword argument `key` in function `EnvoyConsumptionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:308:9-24: Unexpected keyword argument `translation_key` in function `EnvoyConsumptionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:317:9-12: Unexpected keyword argument `key` in function `EnvoyConsumptionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:318:9-24: Unexpected keyword argument `translation_key` in function `EnvoyConsumptionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:348:9-12: Unexpected keyword argument `key` in function `EnvoyConsumptionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:349:9-24: Unexpected keyword argument `translation_key` in function `EnvoyConsumptionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:350:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyConsumptionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:360:9-12: Unexpected keyword argument `key` in function `EnvoyConsumptionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:361:9-24: Unexpected keyword argument `translation_key` in function `EnvoyConsumptionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:362:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyConsumptionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:406:13-16: Unexpected keyword argument `key` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:407:13-28: Unexpected keyword argument `translation_key` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:425:13-16: Unexpected keyword argument `key` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:426:13-28: Unexpected keyword argument `translation_key` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:444:13-16: Unexpected keyword argument `key` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:445:13-28: Unexpected keyword argument `translation_key` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:463:13-16: Unexpected keyword argument `key` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:464:13-28: Unexpected keyword argument `translation_key` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:469:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:482:13-16: Unexpected keyword argument `key` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:483:13-28: Unexpected keyword argument `translation_key` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:489:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:502:13-16: Unexpected keyword argument `key` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:503:13-28: Unexpected keyword argument `translation_key` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:509:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:522:13-16: Unexpected keyword argument `key` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:523:13-28: Unexpected keyword argument `translation_key` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:527:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:540:13-16: Unexpected keyword argument `key` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:541:13-28: Unexpected keyword argument `translation_key` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:543:13-28: Unexpected keyword argument `entity_category` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:545:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:562:13-16: Unexpected keyword argument `key` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:563:13-28: Unexpected keyword argument `translation_key` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:565:13-28: Unexpected keyword argument `entity_category` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:566:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `EnvoyCTSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:621:9-12: Unexpected keyword argument `key` in function `EnvoyEnchargeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:627:9-12: Unexpected keyword argument `key` in function `EnvoyEnchargeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:628:9-24: Unexpected keyword argument `translation_key` in function `EnvoyEnchargeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:636:9-12: Unexpected keyword argument `key` in function `EnvoyEnchargePowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:642:9-12: Unexpected keyword argument `key` in function `EnvoyEnchargePowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:648:9-12: Unexpected keyword argument `key` in function `EnvoyEnchargePowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:665:9-12: Unexpected keyword argument `key` in function `EnvoyEnpowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:671:9-12: Unexpected keyword argument `key` in function `EnvoyEnpowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:672:9-24: Unexpected keyword argument `translation_key` in function `EnvoyEnpowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:694:9-12: Unexpected keyword argument `key` in function `EnvoyCollarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:700:9-12: Unexpected keyword argument `key` in function `EnvoyCollarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:701:9-24: Unexpected keyword argument `translation_key` in function `EnvoyCollarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:708:9-12: Unexpected keyword argument `key` in function `EnvoyCollarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:709:9-24: Unexpected keyword argument `translation_key` in function `EnvoyCollarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:715:9-12: Unexpected keyword argument `key` in function `EnvoyCollarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:716:9-24: Unexpected keyword argument `translation_key` in function `EnvoyCollarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:722:9-12: Unexpected keyword argument `key` in function `EnvoyCollarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:723:9-24: Unexpected keyword argument `translation_key` in function `EnvoyCollarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:738:9-12: Unexpected keyword argument `key` in function `EnvoyC6CCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:739:9-24: Unexpected keyword argument `translation_key` in function `EnvoyC6CCSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:761:9-12: Unexpected keyword argument `key` in function `EnvoyEnchargeAggregateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:767:9-12: Unexpected keyword argument `key` in function `EnvoyEnchargeAggregateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:768:9-24: Unexpected keyword argument `translation_key` in function `EnvoyEnchargeAggregateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:774:9-12: Unexpected keyword argument `key` in function `EnvoyEnchargeAggregateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:775:9-24: Unexpected keyword argument `translation_key` in function `EnvoyEnchargeAggregateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:781:9-12: Unexpected keyword argument `key` in function `EnvoyEnchargeAggregateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:782:9-24: Unexpected keyword argument `translation_key` in function `EnvoyEnchargeAggregateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:788:9-12: Unexpected keyword argument `key` in function `EnvoyEnchargeAggregateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:789:9-24: Unexpected keyword argument `translation_key` in function `EnvoyEnchargeAggregateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:806:9-12: Unexpected keyword argument `key` in function `EnvoyAcbBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:812:9-12: Unexpected keyword argument `key` in function `EnvoyAcbBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:818:9-12: Unexpected keyword argument `key` in function `EnvoyAcbBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:819:9-24: Unexpected keyword argument `translation_key` in function `EnvoyAcbBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:828:9-12: Unexpected keyword argument `key` in function `EnvoyAcbBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:829:9-24: Unexpected keyword argument `translation_key` in function `EnvoyAcbBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:846:9-12: Unexpected keyword argument `key` in function `EnvoyAggregateBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:847:9-24: Unexpected keyword argument `translation_key` in function `EnvoyAggregateBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:853:9-12: Unexpected keyword argument `key` in function `EnvoyAggregateBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:854:9-24: Unexpected keyword argument `translation_key` in function `EnvoyAggregateBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:860:9-12: Unexpected keyword argument `key` in function `EnvoyAggregateBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:861:9-24: Unexpected keyword argument `translation_key` in function `EnvoyAggregateBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/sensor.py:932:42-48: Cannot index into `dict[str, dict[str, EnvoyMeterData]]` [bad-index] +ERROR homeassistant/components/enphase_envoy/sensor.py:991:7-28: Field `entity_description` is declared `EntityDescription` in ancestor `class EnvoyBaseEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/enphase_envoy/sensor.py:1020:5-23: Class member `EnvoyProductionEntity.entity_description` overrides parent class `EnvoySystemSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/sensor.py:1033:5-23: Class member `EnvoyConsumptionEntity.entity_description` overrides parent class `EnvoySystemSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/sensor.py:1046:5-23: Class member `EnvoyNetConsumptionEntity.entity_description` overrides parent class `EnvoySystemSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/sensor.py:1059:5-23: Class member `EnvoyProductionPhaseEntity.entity_description` overrides parent class `EnvoySystemSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/sensor.py:1080:5-23: Class member `EnvoyConsumptionPhaseEntity.entity_description` overrides parent class `EnvoySystemSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/sensor.py:1101:5-23: Class member `EnvoyNetConsumptionPhaseEntity.entity_description` overrides parent class `EnvoySystemSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/sensor.py:1122:5-23: Class member `EnvoyCTEntity.entity_description` overrides parent class `EnvoySystemSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/sensor.py:1131:68-74: Cannot index into `dict[str, EnvoyMeterData]` [bad-index] +ERROR homeassistant/components/enphase_envoy/sensor.py:1137:5-23: Class member `EnvoyCTPhaseEntity.entity_description` overrides parent class `EnvoySystemSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/sensor.py:1149:13-19: Cannot index into `dict[str, dict[str, EnvoyMeterData]]` [bad-index] +ERROR homeassistant/components/enphase_envoy/sensor.py:1153:39-45: Cannot index into `dict[str, dict[str, EnvoyMeterData]]` [bad-index] +ERROR homeassistant/components/enphase_envoy/sensor.py:1160:5-23: Class member `EnvoyInverterEntity.entity_description` overrides parent class `EnvoySensorBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/sensor.py:1237:5-23: Class member `EnvoyEnchargeInventoryEntity.entity_description` overrides parent class `EnvoyEnchargeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/sensor.py:1250:5-23: Class member `EnvoyEnchargePowerEntity.entity_description` overrides parent class `EnvoyEnchargeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/sensor.py:1263:5-23: Class member `EnvoyEnchargeAggregateEntity.entity_description` overrides parent class `EnvoySystemSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/sensor.py:1276:5-23: Class member `EnvoyEnpowerEntity.entity_description` overrides parent class `EnvoySensorBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/sensor.py:1309:5-23: Class member `EnvoyAcbBatteryPowerEntity.entity_description` overrides parent class `EnvoySensorBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/sensor.py:1340:5-23: Class member `EnvoyAcbBatteryEnergyEntity.entity_description` overrides parent class `EnvoySystemSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/sensor.py:1353:5-23: Class member `AggregateBatteryEntity.entity_description` overrides parent class `EnvoySystemSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/sensor.py:1366:5-23: Class member `EnvoyCollarEntity.entity_description` overrides parent class `EnvoySensorBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/sensor.py:1400:5-23: Class member `EnvoyC6CCEntity.entity_description` overrides parent class `EnvoySensorBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/switch.py:54:5-8: Unexpected keyword argument `key` in function `EnvoyEnpowerSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/switch.py:55:5-20: Unexpected keyword argument `translation_key` in function `EnvoyEnpowerSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/switch.py:62:5-8: Unexpected keyword argument `key` in function `EnvoyDryContactSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/switch.py:63:5-20: Unexpected keyword argument `translation_key` in function `EnvoyDryContactSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/switch.py:70:5-8: Unexpected keyword argument `key` in function `EnvoyStorageSettingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/switch.py:71:5-20: Unexpected keyword argument `translation_key` in function `EnvoyStorageSettingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/enphase_envoy/switch.py:120:5-23: Class member `EnvoyEnpowerSwitchEntity.entity_description` overrides parent class `EnvoyBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/switch.py:120:5-23: Class member `EnvoyEnpowerSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/switch.py:167:5-23: Class member `EnvoyDryContactSwitchEntity.entity_description` overrides parent class `EnvoyBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/switch.py:167:5-23: Class member `EnvoyDryContactSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/switch.py:217:5-23: Class member `EnvoyStorageSettingsSwitchEntity.entity_description` overrides parent class `EnvoyBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/enphase_envoy/switch.py:217:5-23: Class member `EnvoyStorageSettingsSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/entur_public_transport/sensor.py:8:1-49: Could not find import of `enturclient` [missing-import] +ERROR homeassistant/components/entur_public_transport/sensor.py:87:16-20: Returned type `None` is not assignable to declared return type `int` [bad-return] +ERROR homeassistant/components/environment_canada/config_flow.py:88:44-48: `info` may be uninitialized [unbound-name] +ERROR homeassistant/components/environment_canada/config_flow.py:89:45-49: `info` may be uninitialized [unbound-name] +ERROR homeassistant/components/environment_canada/config_flow.py:90:46-50: `info` may be uninitialized [unbound-name] +ERROR homeassistant/components/environment_canada/config_flow.py:97:54-58: `info` may be uninitialized [unbound-name] +ERROR homeassistant/components/environment_canada/coordinator.py:37:5-17: Class member `ECDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/environment_canada/sensor.py:47:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:52:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:60:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:68:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:76:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:83:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:84:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:85:9-13: Unexpected keyword argument `name` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:89:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:91:9-13: Unexpected keyword argument `name` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:98:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:105:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:112:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:113:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:118:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:119:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:126:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:133:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:134:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:139:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:140:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:145:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:146:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:151:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:152:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:158:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:159:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:166:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:167:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:174:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:175:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:182:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:183:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:187:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:188:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:195:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:214:5-8: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:215:5-20: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:223:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:224:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:229:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:230:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:235:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:236:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:241:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:242:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:247:9-12: Unexpected keyword argument `key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:248:9-24: Unexpected keyword argument `translation_key` in function `ECSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/environment_canada/sensor.py:280:5-23: Class member `ECBaseSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/environment_canada/sensor.py:280:5-23: Class member `ECBaseSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/environment_canada/sensor.py:292:34-68: Object of class `dict` has no attribute `attribution` [missing-attribute] +ERROR homeassistant/components/environment_canada/sensor.py:316:28-59: Object of class `dict` has no attribute `location` [missing-attribute] +ERROR homeassistant/components/environment_canada/sensor.py:317:27-57: Object of class `dict` has no attribute `station` [missing-attribute] +ERROR homeassistant/components/envisalink/__init__.py:6:1-46: Could not find import of `pyenvisalink` [missing-import] +ERROR homeassistant/components/envisalink/alarm_control_panel.py:85:13-40: Object of class `Entity` has no attribute `async_alarm_keypress` [missing-attribute] +ERROR homeassistant/components/envisalink/alarm_control_panel.py:98:5-29: Class member `EnvisalinkAlarm._attr_supported_features` overrides parent class `EnvisalinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ephember/climate.py:10:1-19:2: Could not find import of `pyephember2.pyephember2` [missing-import] +ERROR homeassistant/components/ephember/climate.py:85:17-22: `ember` may be uninitialized [unbound-name] +ERROR homeassistant/components/ephember/climate.py:91:28-33: `ember` may be uninitialized [unbound-name] +ERROR homeassistant/components/ephember/climate.py:196:23-76: No matching overload found for function `getattr` called with arguments: (Unknown, str | None, None) [no-matching-overload] +ERROR homeassistant/components/epion/config_flow.py:32:67-82: Argument `BoundMethod[Epion, (self: Epion) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/epion/coordinator.py:40:17-43: Argument `BoundMethod[Epion, (self: Epion) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/epion/sensor.py:32:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/epion/sensor.py:39:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/epion/sensor.py:46:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/epion/sensor.py:53:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/epion/sensor.py:90:14-32: Class member `EpionSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/epson/media_player.py:148:27-61: `str | None` is not assignable to attribute `_cmode` with type `None` [bad-assignment] +ERROR homeassistant/components/eq3btsmart/__init__.py:75:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/eq3btsmart/binary_sensor.py:32:9-12: Unexpected keyword argument `key` in function `Eq3BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/binary_sensor.py:34:9-24: Unexpected keyword argument `entity_category` in function `Eq3BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/binary_sensor.py:38:9-12: Unexpected keyword argument `key` in function `Eq3BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/binary_sensor.py:43:9-12: Unexpected keyword argument `key` in function `Eq3BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/binary_sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `Eq3BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/binary_sensor.py:45:9-24: Unexpected keyword argument `entity_category` in function `Eq3BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/binary_sensor.py:66:5-23: Class member `Eq3BinarySensorEntity.entity_description` overrides parent class `Eq3Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eq3btsmart/binary_sensor.py:66:5-23: Class member `Eq3BinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eq3btsmart/climate.py:62:5-29: Class member `Eq3Climate._attr_supported_features` overrides parent class `Eq3Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eq3btsmart/climate.py:179:16-20: `mode` is uninitialized [unbound-name] +ERROR homeassistant/components/eq3btsmart/climate.py:180:48-52: `mode` is uninitialized [unbound-name] +ERROR homeassistant/components/eq3btsmart/climate.py:191:36-47: `temperature` is uninitialized [unbound-name] +ERROR homeassistant/components/eq3btsmart/climate.py:196:58-69: `temperature` is uninitialized [unbound-name] +ERROR homeassistant/components/eq3btsmart/number.py:43:5-20: Class member `Eq3NumberEntityDescription.entity_category` overrides parent class `NumberEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eq3btsmart/number.py:48:9-12: Unexpected keyword argument `key` in function `Eq3NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/number.py:51:9-24: Unexpected keyword argument `translation_key` in function `Eq3NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/number.py:59:9-12: Unexpected keyword argument `key` in function `Eq3NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/number.py:62:9-24: Unexpected keyword argument `translation_key` in function `Eq3NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/number.py:70:9-12: Unexpected keyword argument `key` in function `Eq3NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/number.py:73:9-24: Unexpected keyword argument `translation_key` in function `Eq3NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/number.py:81:9-12: Unexpected keyword argument `key` in function `Eq3NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/number.py:84:9-24: Unexpected keyword argument `translation_key` in function `Eq3NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/number.py:92:9-12: Unexpected keyword argument `key` in function `Eq3NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/number.py:95:9-24: Unexpected keyword argument `translation_key` in function `Eq3NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/number.py:120:5-23: Class member `Eq3NumberEntity.entity_description` overrides parent class `Eq3Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eq3btsmart/number.py:120:5-23: Class member `Eq3NumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eq3btsmart/sensor.py:33:9-12: Unexpected keyword argument `key` in function `Eq3SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/sensor.py:34:9-24: Unexpected keyword argument `translation_key` in function `Eq3SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/sensor.py:40:9-12: Unexpected keyword argument `key` in function `Eq3SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `Eq3SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/sensor.py:64:5-23: Class member `Eq3SensorEntity.entity_description` overrides parent class `Eq3Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eq3btsmart/sensor.py:64:5-23: Class member `Eq3SensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eq3btsmart/switch.py:48:9-12: Unexpected keyword argument `key` in function `Eq3SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/switch.py:49:9-24: Unexpected keyword argument `translation_key` in function `Eq3SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/switch.py:54:9-12: Unexpected keyword argument `key` in function `Eq3SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/switch.py:55:9-24: Unexpected keyword argument `translation_key` in function `Eq3SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/switch.py:60:9-12: Unexpected keyword argument `key` in function `Eq3SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/switch.py:61:9-24: Unexpected keyword argument `translation_key` in function `Eq3SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/eq3btsmart/switch.py:84:5-23: Class member `Eq3SwitchEntity.entity_description` overrides parent class `Eq3Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/eq3btsmart/switch.py:84:5-23: Class member `Eq3SwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/alarm_control_panel.py:87:14-38: Class member `EsphomeAlarmControlPanel._attr_supported_features` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/assist_satellite.py:128:5-23: Class member `EsphomeAssistSatellite.entity_description` overrides parent class `EsphomeAssistEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/assist_satellite.py:129:9-12: Unexpected keyword argument `key` in function `homeassistant.components.assist_satellite.entity.AssistSatelliteEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/esphome/assist_satellite.py:129:33-48: Unexpected keyword argument `translation_key` in function `homeassistant.components.assist_satellite.entity.AssistSatelliteEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/esphome/binary_sensor.py:41:14-32: Class member `EsphomeBinarySensor._attr_device_class` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/button.py:29:14-32: Class member `EsphomeButton._attr_device_class` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/climate.py:191:14-38: Class member `EsphomeClimateEntity._attr_supported_features` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/config_flow.py:696:12-29: `unique_id_matches` may be uninitialized [unbound-name] +ERROR homeassistant/components/esphome/config_flow.py:914:9-31: Class member `EsphomeFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/cover.py:49:14-38: Class member `EsphomeCover._attr_supported_features` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/cover.py:50:14-32: Class member `EsphomeCover._attr_device_class` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/entity.py:318:5-17: Class member `EsphomeBaseEntity.device_entry` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/entity.py:457:27-36: `has_state` may be uninitialized [unbound-name] +ERROR homeassistant/components/esphome/entry_data.py:195:16-64: Returned type `DeviceInfo | str` is not assignable to declared return type `str` [bad-return] +ERROR homeassistant/components/esphome/entry_data.py:201:16-203:10: Returned type `DeviceInfo | str` is not assignable to declared return type `str` [bad-return] +ERROR homeassistant/components/esphome/entry_data.py:277:38-44: `needed` may be uninitialized [unbound-name] +ERROR homeassistant/components/esphome/event.py:28:14-32: Class member `EsphomeEvent._attr_device_class` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/fan.py:174:14-38: Class member `EsphomeFan._attr_supported_features` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/light.py:398:14-38: Class member `EsphomeLight._attr_supported_features` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/lock.py:33:14-38: Class member `EsphomeLock._attr_supported_features` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/manager.py:1198:38-46: Cannot index into `dict[UserServiceArgType, ServiceMetadata]` [bad-index] +ERROR homeassistant/components/esphome/media_player.py:92:5-23: Class member `EsphomeMediaPlayer._attr_device_class` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/media_player.py:104:14-38: Class member `EsphomeMediaPlayer._attr_supported_features` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/number.py:45:14-32: Class member `EsphomeNumber._attr_device_class` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/select.py:115:5-23: Class member `EsphomeAssistSatelliteWakeWordSelect.entity_description` overrides parent class `EsphomeAssistEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/select.py:115:5-23: Class member `EsphomeAssistSatelliteWakeWordSelect.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/select.py:116:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/esphome/select.py:117:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/esphome/select.py:118:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/esphome/sensor.py:85:14-32: Class member `EsphomeSensor._attr_device_class` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/sensor.py:105:23-28: `state` is uninitialized [unbound-name] +ERROR homeassistant/components/esphome/sensor.py:121:14-32: Class member `EsphomeTextSensor._attr_device_class` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/sensor.py:130:21-26: `state` is uninitialized [unbound-name] +ERROR homeassistant/components/esphome/switch.py:33:14-32: Class member `EsphomeSwitch._attr_device_class` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/update.py:111:5-23: Class member `ESPHomeDashboardUpdateEntity._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/update.py:140:18-42: Class member `ESPHomeDashboardUpdateEntity._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/update.py:273:5-29: Class member `ESPHomeUpdateEntity._attr_supported_features` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/update.py:284:14-32: Class member `ESPHomeUpdateEntity._attr_device_class` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/valve.py:41:14-38: Class member `EsphomeValve._attr_supported_features` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/esphome/valve.py:42:14-32: Class member `EsphomeValve._attr_device_class` overrides parent class `EsphomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/etherscan/sensor.py:7:1-36: Could not find import of `pyetherscan` [missing-import] +ERROR homeassistant/components/eufy/__init__.py:3:8-16: Could not find import of `lakeside` [missing-import] +ERROR homeassistant/components/eufy/light.py:7:8-16: Could not find import of `lakeside` [missing-import] +ERROR homeassistant/components/eufy/light.py:72:28-74: `tuple[float, float]` is not assignable to attribute `_hs` with type `None` [bad-assignment] +ERROR homeassistant/components/eufy/light.py:95:20-42: `*` is not supported between `None` and `Literal[255]` [unsupported-operation] +ERROR homeassistant/components/eufy/light.py:102:16-72: `*` is not supported between `None` and `int` [unsupported-operation] +ERROR homeassistant/components/eufy/light.py:132:36-39: `Literal[100]` is not assignable to attribute `_brightness` with type `None` [bad-assignment] +ERROR homeassistant/components/eufy/light.py:145:61-77: `/` is not supported between `None` and `Literal[255]` [unsupported-operation] +ERROR homeassistant/components/eufy/light.py:149:17-28: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/eufy/light.py:149:30-41: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/eufy/light.py:149:43-59: `/` is not supported between `None` and `Literal[255]` [unsupported-operation] +ERROR homeassistant/components/eufy/switch.py:7:8-16: Could not find import of `lakeside` [missing-import] +ERROR homeassistant/components/eufylife_ble/__init__.py:41:38-56: Expected 0 positional arguments, got 1 in function `homeassistant.components.bluetooth.match.BluetoothCallbackMatcher.__init__` [bad-argument-count] +ERROR homeassistant/components/eufylife_ble/sensor.py:41:25-60: Argument `EufyLifeHeartRateSensorEntity` is not assignable to parameter `object` with type `EufyLifeRealTimeWeightSensorEntity | EufyLifeWeightSensorEntity` in function `list.append` [bad-argument-type] +ERROR homeassistant/components/event/__init__.py:77:5-17: Class member `EventEntityDescription.device_class` overrides parent class `EntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/event/__init__.py:115:5-23: Class member `EventEntity.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/event/__init__.py:116:5-23: Class member `EventEntity._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/event/__init__.py:118:5-16: Class member `EventEntity._attr_state` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/evil_genius_labs/light.py:34:5-29: Class member `EvilGeniusLight._attr_supported_features` overrides parent class `EvilGeniusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/evohome/climate.py:148:5-16: Class member `EvoZone._evo_device` overrides parent class `EvoChild` in an inconsistent manner [bad-override] +ERROR homeassistant/components/evohome/climate.py:148:5-16: Class member `EvoZone._evo_device` overrides parent class `EvoClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/evohome/climate.py:173:14-38: Class member `EvoZone._attr_supported_features` overrides parent class `EvoChild` in an inconsistent manner [bad-override] +ERROR homeassistant/components/evohome/climate.py:260:32-37: `until` may be uninitialized [unbound-name] +ERROR homeassistant/components/evohome/climate.py:260:42-47: `until` may be uninitialized [unbound-name] +ERROR homeassistant/components/evohome/climate.py:325:5-16: Class member `EvoController._evo_device` overrides parent class `EvoClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/evohome/entity.py:95:5-16: Class member `EvoChild._evo_device` overrides parent class `EvoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/evohome/water_heater.py:74:5-29: Class member `EvoDHW._attr_supported_features` overrides parent class `EvoChild` in an inconsistent manner [bad-override] +ERROR homeassistant/components/evohome/water_heater.py:81:5-16: Class member `EvoDHW._evo_device` overrides parent class `EvoChild` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ezviz/alarm_control_panel.py:40:5-8: Unexpected keyword argument `key` in function `EzvizAlarmControlPanelEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/alarm_control_panel.py:73:5-23: Class member `EzvizAlarm.entity_description` overrides parent class `AlarmControlPanelEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ezviz/alarm_control_panel.py:104:17-48: Argument `int` is not assignable to parameter `mode` with type `DefenseModeType` in function `pyezvizapi.client.EzvizClient.api_set_defence_mode` [bad-argument-type] +ERROR homeassistant/components/ezviz/alarm_control_panel.py:115:17-48: Argument `int` is not assignable to parameter `mode` with type `DefenseModeType` in function `pyezvizapi.client.EzvizClient.api_set_defence_mode` [bad-argument-type] +ERROR homeassistant/components/ezviz/alarm_control_panel.py:126:17-49: Argument `int` is not assignable to parameter `mode` with type `DefenseModeType` in function `pyezvizapi.client.EzvizClient.api_set_defence_mode` [bad-argument-type] +ERROR homeassistant/components/ezviz/binary_sensor.py:20:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/binary_sensor.py:24:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/binary_sensor.py:25:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/binary_sensor.py:28:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/binary_sensor.py:29:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/binary_sensor.py:66:14-32: Class member `EzvizBinarySensor.entity_description` overrides parent class `EzvizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ezviz/button.py:34:9-12: Unexpected keyword argument `key` in function `EzvizButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/button.py:35:9-24: Unexpected keyword argument `translation_key` in function `EzvizButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/button.py:42:9-12: Unexpected keyword argument `key` in function `EzvizButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/button.py:43:9-24: Unexpected keyword argument `translation_key` in function `EzvizButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/button.py:50:9-12: Unexpected keyword argument `key` in function `EzvizButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/button.py:51:9-24: Unexpected keyword argument `translation_key` in function `EzvizButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/button.py:58:9-12: Unexpected keyword argument `key` in function `EzvizButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/button.py:59:9-24: Unexpected keyword argument `translation_key` in function `EzvizButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/button.py:93:5-23: Class member `EzvizButtonEntity.entity_description` overrides parent class `EzvizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ezviz/button.py:93:5-23: Class member `EzvizButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ezviz/camera.py:142:18-42: Class member `EzvizCamera._attr_supported_features` overrides parent class `EzvizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ezviz/config_flow.py:132:47-134:10: Unpacked argument `tuple[Unknown]` is not assignable to parameter `*args` with type `tuple[str, str, int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ezviz/config_flow.py:151:9-31: Class member `EzvizConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ezviz/coordinator.py:57:21-51: Argument `BoundMethod[EzvizClient, (self: EzvizClient) -> dict[Any, Any]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ezviz/image.py:25:5-8: Unexpected keyword argument `key` in function `homeassistant.components.image.ImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/image.py:26:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.image.ImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/light.py:78:58-82:18: Unpacked argument `tuple[str, int]` is not assignable to parameter `*args` with type `tuple[str, int, int, int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ezviz/light.py:85:54-90:14: Unpacked argument `tuple[str, int, Literal[1]]` is not assignable to parameter `*args` with type `tuple[str, int, int, int, int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ezviz/light.py:102:54-107:14: Unpacked argument `tuple[str, int, Literal[0]]` is not assignable to parameter `*args` with type `tuple[str, int, int, int, int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ezviz/number.py:41:5-8: Unexpected keyword argument `key` in function `EzvizNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/number.py:42:5-20: Unexpected keyword argument `translation_key` in function `EzvizNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/number.py:43:5-20: Unexpected keyword argument `entity_category` in function `EzvizNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/number.py:83:14-32: Class member `EzvizNumber.entity_description` overrides parent class `EzvizBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ezviz/select.py:59:5-8: Unexpected keyword argument `key` in function `EzvizSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/select.py:60:5-20: Unexpected keyword argument `translation_key` in function `EzvizSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/select.py:61:5-20: Unexpected keyword argument `entity_category` in function `EzvizSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/select.py:93:5-8: Unexpected keyword argument `key` in function `EzvizSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/select.py:94:5-20: Unexpected keyword argument `translation_key` in function `EzvizSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/select.py:95:5-9: Unexpected keyword argument `icon` in function `EzvizSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/select.py:96:5-20: Unexpected keyword argument `entity_category` in function `EzvizSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/select.py:154:14-32: Class member `EzvizSelect.entity_description` overrides parent class `EzvizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ezviz/sensor.py:21:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:26:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:27:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:28:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:31:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:32:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:33:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:36:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:37:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:38:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:43:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:46:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:50:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:54:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:62:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:63:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:66:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/sensor.py:101:14-32: Class member `EzvizSensor.entity_description` overrides parent class `EzvizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ezviz/siren.py:30:5-8: Unexpected keyword argument `key` in function `homeassistant.components.siren.SirenEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/siren.py:31:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.siren.SirenEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/siren.py:55:5-29: Class member `EzvizSirenEntity._attr_supported_features` overrides parent class `EzvizBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ezviz/siren.py:55:5-29: Class member `EzvizSirenEntity._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ezviz/siren.py:68:14-32: Class member `EzvizSirenEntity.entity_description` overrides parent class `EzvizBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ezviz/siren.py:68:14-32: Class member `EzvizSirenEntity.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ezviz/siren.py:84:60-86:14: Unpacked argument `tuple[str, Literal[1]]` is not assignable to parameter `*args` with type `tuple[str, int, int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ezviz/siren.py:104:54-106:14: Unpacked argument `tuple[str, Literal[2]]` is not assignable to parameter `*args` with type `tuple[str, int, int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ezviz/switch.py:33:9-12: Unexpected keyword argument `key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:34:9-24: Unexpected keyword argument `translation_key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:39:9-12: Unexpected keyword argument `key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:40:9-24: Unexpected keyword argument `translation_key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:45:9-12: Unexpected keyword argument `key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:46:9-24: Unexpected keyword argument `translation_key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:51:9-12: Unexpected keyword argument `key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:52:9-24: Unexpected keyword argument `translation_key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:57:9-12: Unexpected keyword argument `key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:58:9-24: Unexpected keyword argument `translation_key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:63:9-12: Unexpected keyword argument `key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:64:9-24: Unexpected keyword argument `translation_key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:69:9-12: Unexpected keyword argument `key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:70:9-24: Unexpected keyword argument `translation_key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:75:9-12: Unexpected keyword argument `key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:76:9-24: Unexpected keyword argument `translation_key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:81:9-12: Unexpected keyword argument `key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:82:9-24: Unexpected keyword argument `translation_key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:87:9-12: Unexpected keyword argument `key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:88:9-24: Unexpected keyword argument `translation_key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:93:9-12: Unexpected keyword argument `key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:94:9-24: Unexpected keyword argument `translation_key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:99:9-12: Unexpected keyword argument `key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:100:9-24: Unexpected keyword argument `translation_key` in function `EzvizSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/switch.py:138:14-32: Class member `EzvizSwitch.entity_description` overrides parent class `EzvizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ezviz/switch.py:144:54-149:14: Unpacked argument `tuple[str, int, Literal[1]]` is not assignable to parameter `*args` with type `tuple[str, int, int, int, int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ezviz/switch.py:159:54-164:14: Unpacked argument `tuple[str, int, Literal[0]]` is not assignable to parameter `*args` with type `tuple[str, int, int, int, int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ezviz/update.py:25:5-8: Unexpected keyword argument `key` in function `homeassistant.components.update.UpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ezviz/update.py:50:5-29: Class member `EzvizUpdateEntity._attr_supported_features` overrides parent class `EzvizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ezviz/update.py:66:14-32: Class member `EzvizUpdateEntity.entity_description` overrides parent class `EzvizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ezviz/update.py:104:51-106:14: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[str, int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/faa_delays/binary_sensor.py:34:9-12: Unexpected keyword argument `key` in function `FaaDelaysBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/faa_delays/binary_sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `FaaDelaysBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/faa_delays/binary_sensor.py:43:9-12: Unexpected keyword argument `key` in function `FaaDelaysBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/faa_delays/binary_sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `FaaDelaysBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/faa_delays/binary_sensor.py:52:9-12: Unexpected keyword argument `key` in function `FaaDelaysBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/faa_delays/binary_sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `FaaDelaysBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/faa_delays/binary_sensor.py:63:9-12: Unexpected keyword argument `key` in function `FaaDelaysBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/faa_delays/binary_sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `FaaDelaysBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/faa_delays/binary_sensor.py:74:9-12: Unexpected keyword argument `key` in function `FaaDelaysBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/faa_delays/binary_sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `FaaDelaysBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/faa_delays/binary_sensor.py:106:5-23: Class member `FAABinarySensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/faa_delays/binary_sensor.py:106:5-23: Class member `FAABinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fail2ban/sensor.py:113:29-35: `Literal['None']` is not assignable to attribute `last_ban` with type `None` [bad-assignment] +ERROR homeassistant/components/familyhub/camera.py:5:1-42: Could not find import of `pyfamilyhublocal` [missing-import] +ERROR homeassistant/components/fan/__init__.py:211:5-23: Class member `FanEntity.entity_description` overrides parent class `ToggleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fan/__init__.py:218:5-29: Class member `FanEntity._attr_supported_features` overrides parent class `ToggleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fastdotcom/sensor.py:33:5-23: Class member `SpeedtestSensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/feedreader/config_flow.py:35:45-68: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[Unknown, Unknown | None, Unknown | None, Unknown | None, Unknown | None, Unknown | None, Unknown | None, Unknown | None, Unknown | None, Unknown | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/feedreader/config_flow.py:45:9-31: Class member `FeedReaderConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/feedreader/coordinator.py:39:5-17: Class member `FeedReaderCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/feedreader/coordinator.py:81:55-66: Argument `() -> FeedParserDict` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/feedreader/coordinator.py:161:13-31: Object of class `FeedParserDict` has no attribute `entries` [missing-attribute] +ERROR homeassistant/components/feedreader/event.py:88:35-46: `description` may be uninitialized [unbound-name] +ERROR homeassistant/components/feedreader/event.py:89:29-34: `title` may be uninitialized [unbound-name] +ERROR homeassistant/components/feedreader/event.py:91:31-38: `content` may be uninitialized [unbound-name] +ERROR homeassistant/components/ffmpeg/camera.py:96:17-30: Argument `asyncio.streams.StreamReader` is not assignable to parameter `stream` with type `aiohttp.streams.StreamReader` in function `homeassistant.helpers.aiohttp_client.async_aiohttp_proxy_stream` [bad-argument-type] +ERROR homeassistant/components/ffmpeg_motion/binary_sensor.py:128:9-131:10: Result of async function call is unused. Did you forget to `await`? [unused-coroutine] +ERROR homeassistant/components/fibaro/__init__.py:188:25-58: Argument `set[tuple[str, int]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/fibaro/__init__.py:236:9-288:21: `int | None` is not assignable to `None` (caused by inconsistent types when breaking cycles) [bad-assignment] +ERROR homeassistant/components/fibaro/__init__.py:238:17-41: Object of class `DeviceModel` has no attribute `fibaro_controller` [missing-attribute] +ERROR homeassistant/components/fibaro/__init__.py:242:17-33: Object of class `DeviceModel` has no attribute `room_name` [missing-attribute] +ERROR homeassistant/components/fibaro/__init__.py:243:17-37: Object of class `DeviceModel` has no attribute `friendly_name` [missing-attribute] +ERROR homeassistant/components/fibaro/__init__.py:244:17-29: Object of class `DeviceModel` has no attribute `ha_id` [missing-attribute] +ERROR homeassistant/components/fibaro/__init__.py:251:17-37: Object of class `DeviceModel` has no attribute `unique_id_str` [missing-attribute] +ERROR homeassistant/components/fibaro/__init__.py:255:21-33: Object of class `DeviceModel` has no attribute `ha_id` [missing-attribute] +ERROR homeassistant/components/fibaro/__init__.py:269:25-37: Object of class `DeviceModel` has no attribute `ha_id` [missing-attribute] +ERROR homeassistant/components/fibaro/__init__.py:273:72-84: Object of class `DeviceModel` has no attribute `ha_id` [missing-attribute] +ERROR homeassistant/components/fibaro/binary_sensor.py:68:40-58: `str | None` is not assignable to attribute `_fibaro_sensor_type` with type `None` [bad-assignment] +ERROR homeassistant/components/fibaro/binary_sensor.py:70:40-63: `str | None` is not assignable to attribute `_fibaro_sensor_type` with type `None` [bad-assignment] +ERROR homeassistant/components/fibaro/binary_sensor.py:72:18-36: Class member `FibaroBinarySensor._attr_device_class` overrides parent class `FibaroEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fibaro/climate.py:139:42-61: Object of class `DeviceModel` has no attribute `ha_id` [missing-attribute] +ERROR homeassistant/components/fibaro/climate.py:263:20-42: Returned type `str | None` is not assignable to declared return type `int | str` [bad-return] +ERROR homeassistant/components/fibaro/climate.py:305:35-74: Object of class `NoneType` has no attribute `lower` [missing-attribute] +ERROR homeassistant/components/fibaro/cover.py:117:14-38: Class member `FibaroCover._attr_supported_features` overrides parent class `FibaroEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fibaro/entity.py:27:45-76: Object of class `DeviceModel` has no attribute `fibaro_controller` [missing-attribute] +ERROR homeassistant/components/fibaro/entity.py:28:22-41: Object of class `DeviceModel` has no attribute `ha_id` [missing-attribute] +ERROR homeassistant/components/fibaro/entity.py:29:27-54: Object of class `DeviceModel` has no attribute `friendly_name` [missing-attribute] +ERROR homeassistant/components/fibaro/entity.py:30:32-59: Object of class `DeviceModel` has no attribute `unique_id_str` [missing-attribute] +ERROR homeassistant/components/fibaro/entity.py:97:48-52: Argument `tuple[Any, ...]` is not assignable to parameter `arguments` with type `list[Any] | None` in function `pyfibaro.fibaro_device.DeviceModel.execute_action` [bad-argument-type] +ERROR homeassistant/components/fibaro/event.py:53:30-57: Object of class `DeviceModel` has no attribute `friendly_name` [missing-attribute] +ERROR homeassistant/components/fibaro/event.py:54:14-32: Class member `FibaroEventEntity._attr_device_class` overrides parent class `FibaroEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fibaro/event.py:56:35-62: Object of class `DeviceModel` has no attribute `unique_id_str` [missing-attribute] +ERROR homeassistant/components/fibaro/light.py:72:16-43: `in` is not supported between `Literal['RGB']` and `None` [not-iterable] +ERROR homeassistant/components/fibaro/light.py:73:16-43: `in` is not supported between `Literal['rgb']` and `None` [not-iterable] +ERROR homeassistant/components/fibaro/light.py:74:16-50: `in` is not supported between `Literal['color']` and `None` [not-iterable] +ERROR homeassistant/components/fibaro/light.py:81:16-44: `in` is not supported between `Literal['RGBW']` and `None` [not-iterable] +ERROR homeassistant/components/fibaro/light.py:82:16-44: `in` is not supported between `Literal['rgbw']` and `None` [not-iterable] +ERROR homeassistant/components/fibaro/sensor.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fibaro/sensor.py:36:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fibaro/sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fibaro/sensor.py:42:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fibaro/sensor.py:44:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fibaro/sensor.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fibaro/sensor.py:48:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fibaro/sensor.py:54:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fibaro/sensor.py:55:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fibaro/sensor.py:61:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fibaro/sensor.py:62:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fibaro/sensor.py:68:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fibaro/sensor.py:69:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fibaro/sensor.py:80:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fibaro/sensor.py:81:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fibaro/sensor.py:87:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fibaro/sensor.py:88:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fibaro/sensor.py:111:51-64: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/fibaro/sensor.py:150:18-36: Class member `FibaroSensor.entity_description` overrides parent class `FibaroEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fibaro/sensor.py:157:80-159:18: No matching overload found for function `dict.get` called with arguments: (str | None, str | None) [no-matching-overload] +ERROR homeassistant/components/fibaro/sensor.py:176:14-32: Class member `FibaroAdditionalSensor.entity_description` overrides parent class `FibaroEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fibaro/sensor.py:183:30-57: Object of class `DeviceModel` has no attribute `friendly_name` [missing-attribute] +ERROR homeassistant/components/fibaro/sensor.py:184:35-62: Object of class `DeviceModel` has no attribute `unique_id_str` [missing-attribute] +ERROR homeassistant/components/fido/sensor.py:49:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:50:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:52:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:55:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:56:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:58:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:61:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:62:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:65:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:68:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:69:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:72:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:75:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:76:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:79:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:82:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:83:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:85:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:88:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:89:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:91:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:94:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:95:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:97:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:100:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:101:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:103:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:106:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:107:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:109:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:112:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:113:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:115:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:118:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:119:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:121:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:124:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:125:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:127:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:130:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:131:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:133:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:136:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:137:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:139:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:142:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:143:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:145:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:148:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:149:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:151:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:154:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:155:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:157:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:160:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:161:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:163:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:166:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:167:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fido/sensor.py:169:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/file/config_flow.py:76:9-31: Class member `FileConfigFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/file/sensor.py:76:24-28: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/file_upload/__init__.py:86:54-70: Argument `() -> Path` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/file_upload/__init__.py:147:39-47: `filename` is uninitialized [unbound-name] +ERROR homeassistant/components/file_upload/__init__.py:165:19-38: `/` is not supported between `Path` and `None` [unsupported-operation] +ERROR homeassistant/components/file_upload/__init__.py:176:47-67: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> None` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/file_upload/__init__.py:198:43-51: `filename` is uninitialized [unbound-name] +ERROR homeassistant/components/file_upload/__init__.py:217:13-70: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/filesize/coordinator.py:26:5-17: Class member `FileSizeCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/filesize/coordinator.py:62:60-79: Argument `BoundMethod[Self@FileSizeCoordinator, (self: Self@FileSizeCoordinator) -> Path]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/filesize/coordinator.py:66:59-71: Argument `BoundMethod[Self@FileSizeCoordinator, (self: Self@FileSizeCoordinator) -> stat_result]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/filesize/sensor.py:27:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/filesize/sensor.py:28:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/filesize/sensor.py:34:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/filesize/sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/filesize/sensor.py:36:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/filesize/sensor.py:40:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/filesize/sensor.py:43:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/filesize/sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/filesize/sensor.py:45:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/filesize/sensor.py:47:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/filesize/sensor.py:50:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/filesize/sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/filesize/sensor.py:52:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/filesize/sensor.py:54:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/filesize/sensor.py:87:14-32: Class member `FilesizeEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fing/device_tracker.py:77:46-63: Argument `str | None` is not assignable to parameter `type` with type `str` in function `homeassistant.components.fing.utils.get_icon_from_type` [bad-argument-type] +ERROR homeassistant/components/fing/device_tracker.py:109:54-69: Argument `str | None` is not assignable to parameter `type` with type `str` in function `homeassistant.components.fing.utils.get_icon_from_type` [bad-argument-type] +ERROR homeassistant/components/fing/device_tracker.py:121:50-74: Argument `str | None` is not assignable to parameter `type` with type `str` in function `homeassistant.components.fing.utils.get_icon_from_type` [bad-argument-type] +ERROR homeassistant/components/fints/sensor.py:97:55-67: `account_name` may be uninitialized [unbound-name] +ERROR homeassistant/components/firefly_iii/coordinator.py:49:5-17: Class member `FireflyDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/firefly_iii/sensor.py:82:5-23: Class member `FireflyAccountBalanceSensor._attr_device_class` overrides parent class `FireflyAccountBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/firefly_iii/sensor.py:165:5-23: Class member `FireflyCategorySensor._attr_device_class` overrides parent class `FireflyCategoryBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/firefly_iii/sensor.py:197:5-23: Class member `FireflyBudgetSensor._attr_device_class` overrides parent class `FireflyBudgetBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fireservicerota/config_flow.py:66:20-70:10: `FireServiceRota` is not assignable to attribute `api` with type `None` [bad-assignment] +ERROR homeassistant/components/fireservicerota/config_flow.py:73:65-88: Object of class `NoneType` has no attribute `request_tokens` [missing-attribute] +ERROR homeassistant/components/fireservicerota/config_flow.py:93:53-58: Argument `ConfigEntry[Any] | None` is not assignable to parameter `entry` with type `ConfigEntry[Any]` in function `homeassistant.config_entries.ConfigEntries.async_update_entry` [bad-argument-type] +ERROR homeassistant/components/fireservicerota/config_flow.py:94:53-67: Object of class `NoneType` has no attribute `entry_id` [missing-attribute] +ERROR homeassistant/components/fireservicerota/coordinator.py:37:5-17: Class member `FireServiceUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fireservicerota/coordinator.py:81:17-41: Argument `BoundMethod[FireServiceRota, (self: FireServiceRota) -> dict[Unknown, Unknown]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fireservicerota/coordinator.py:167:49-78: Argument `BoundMethod[FireServiceRotaWebSocket, (self: FireServiceRotaWebSocket) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fireservicerota/coordinator.py:177:53-81: Argument `BoundMethod[FireServiceRotaWebSocket, (self: FireServiceRotaWebSocket) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fireservicerota/coordinator.py:182:57-86: Argument `BoundMethod[FireServiceRotaWebSocket, (self: FireServiceRotaWebSocket) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fireservicerota/coordinator.py:226:49-77: Argument `BoundMethod[FireServiceRotaWebSocket, (self: FireServiceRotaWebSocket) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/firmata/__init__.py:142:25-31: `DOMAIN` may be uninitialized [unbound-name] +ERROR homeassistant/components/firmata/__init__.py:145:56-62: `DOMAIN` may be uninitialized [unbound-name] +ERROR homeassistant/components/firmata/__init__.py:154:21-27: `DOMAIN` may be uninitialized [unbound-name] +ERROR homeassistant/components/firmata/board.py:42:35-39: `None` is not assignable to attribute `api` with type `PymataExpress` [bad-assignment] +ERROR homeassistant/components/firmata/board.py:113:20-24: `None` is not assignable to attribute `api` with type `PymataExpress` [bad-assignment] +ERROR homeassistant/components/firmata/board.py:131:13-53: `+=` is not supported between `int` and `None` [unsupported-operation] +ERROR homeassistant/components/firmata/pin.py:44:5-11: Class member `FirmataBinaryDigitalOutput._state` overrides parent class `FirmataBoardPin` in an inconsistent manner [bad-override] +ERROR homeassistant/components/firmata/pin.py:100:5-11: Class member `FirmataPWMOutput._state` overrides parent class `FirmataBoardPin` in an inconsistent manner [bad-override] +ERROR homeassistant/components/firmata/pin.py:149:5-11: Class member `FirmataBinaryDigitalInput._state` overrides parent class `FirmataBoardPin` in an inconsistent manner [bad-override] +ERROR homeassistant/components/firmata/pin.py:218:5-16: Class member `FirmataAnalogInput._analog_pin` overrides parent class `FirmataBoardPin` in an inconsistent manner [bad-override] +ERROR homeassistant/components/firmata/pin.py:219:5-11: Class member `FirmataAnalogInput._state` overrides parent class `FirmataBoardPin` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fitbit/api.py:132:60-64: Argument `() -> _T` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fitbit/application_credentials.py:64:40-44: `resp` is uninitialized [unbound-name] +ERROR homeassistant/components/fitbit/coordinator.py:29:5-17: Class member `FitbitDeviceCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fitbit/sensor.py:152:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:153:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:155:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:158:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:161:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:162:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:164:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:169:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:170:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:172:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:174:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:176:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:179:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:180:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:188:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:189:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:190:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:195:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:198:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:199:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:201:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:204:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:207:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:208:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:210:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:216:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:217:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:219:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:223:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:226:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:227:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:229:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:233:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:236:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:237:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:239:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:243:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:246:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:247:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:249:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:253:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:256:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:257:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:259:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:264:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:265:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:267:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:269:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:271:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:274:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:275:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:277:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:279:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:281:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:284:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:285:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:290:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:292:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:295:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:296:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:297:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:301:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:303:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:306:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:307:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:309:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:311:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:313:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:316:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:317:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:319:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:322:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:324:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:327:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:328:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:330:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:333:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:335:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:338:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:339:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:341:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:344:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:346:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:349:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:350:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:352:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:355:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:357:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:360:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:361:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:363:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:365:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:367:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:370:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:371:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:373:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:377:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:378:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:381:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:382:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:384:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:388:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:389:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:392:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:393:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:401:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:402:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:404:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:407:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:410:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:411:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:413:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:416:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:419:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:420:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:422:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:426:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:429:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:430:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:432:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:436:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:439:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:440:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:442:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:446:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:449:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:450:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:452:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:456:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:459:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:460:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:462:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:466:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:469:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:470:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:472:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:475:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:478:9-12: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:479:9-24: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:480:9-13: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:484:9-24: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:490:5-8: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:491:5-20: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:492:5-9: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:494:5-20: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:497:5-8: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:498:5-20: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:499:5-9: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:502:5-20: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:506:5-8: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:507:5-20: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:508:5-9: Unexpected keyword argument `icon` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:510:5-20: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:511:5-20: Unexpected keyword argument `has_entity_name` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:514:5-8: Unexpected keyword argument `key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:515:5-20: Unexpected keyword argument `translation_key` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:517:5-20: Unexpected keyword argument `entity_category` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:518:5-20: Unexpected keyword argument `has_entity_name` in function `FitbitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fitbit/sensor.py:597:5-23: Class member `FitbitSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fitbit/sensor.py:652:5-23: Class member `FitbitBatterySensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fitbit/sensor.py:652:5-23: Class member `FitbitBatterySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fitbit/sensor.py:710:5-23: Class member `FitbitBatteryLevelSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fitbit/sensor.py:710:5-23: Class member `FitbitBatteryLevelSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fivem/binary_sensor.py:27:9-12: Unexpected keyword argument `key` in function `FiveMBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fivem/binary_sensor.py:28:9-24: Unexpected keyword argument `translation_key` in function `FiveMBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fivem/binary_sensor.py:50:5-23: Class member `FiveMSensorEntity.entity_description` overrides parent class `FiveMEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fivem/binary_sensor.py:50:5-23: Class member `FiveMSensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fivem/config_flow.py:35:17-45: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/fivem/entity.py:32:5-23: Class member `FiveMEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fivem/sensor.py:31:9-12: Unexpected keyword argument `key` in function `FiveMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fivem/sensor.py:32:9-24: Unexpected keyword argument `translation_key` in function `FiveMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fivem/sensor.py:36:9-12: Unexpected keyword argument `key` in function `FiveMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fivem/sensor.py:37:9-24: Unexpected keyword argument `translation_key` in function `FiveMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fivem/sensor.py:42:9-12: Unexpected keyword argument `key` in function `FiveMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fivem/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `FiveMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fivem/sensor.py:67:5-23: Class member `FiveMSensorEntity.entity_description` overrides parent class `FiveMEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fivem/sensor.py:67:5-23: Class member `FiveMSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fixer/sensor.py:9:1-28: Could not find import of `fixerio` [missing-import] +ERROR homeassistant/components/fixer/sensor.py:10:1-48: Could not find import of `fixerio.exceptions` [missing-import] +ERROR homeassistant/components/fjaraskupan/binary_sensor.py:34:9-12: Unexpected keyword argument `key` in function `EntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fjaraskupan/binary_sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `EntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fjaraskupan/binary_sensor.py:40:9-12: Unexpected keyword argument `key` in function `EntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fjaraskupan/binary_sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `EntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fjaraskupan/binary_sensor.py:72:5-23: Class member `BinarySensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fjaraskupan/binary_sensor.py:72:5-23: Class member `BinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fjaraskupan/coordinator.py:70:5-17: Class member `FjaraskupanCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fjaraskupan/fan.py:67:5-29: Class member `Fan._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fjaraskupan/sensor.py:41:5-23: Class member `RssiSensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fleetgo/device_tracker.py:8:1-26: Could not find import of `ritassist` [missing-import] +ERROR homeassistant/components/flexit_bacnet/binary_sensor.py:29:9-12: Unexpected keyword argument `key` in function `FlexitBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/binary_sensor.py:31:9-24: Unexpected keyword argument `translation_key` in function `FlexitBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/binary_sensor.py:57:5-23: Class member `FlexitBinarySensor.entity_description` overrides parent class `FlexitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flexit_bacnet/binary_sensor.py:57:5-23: Class member `FlexitBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flexit_bacnet/climate.py:66:5-29: Class member `FlexitClimateEntity._attr_supported_features` overrides parent class `FlexitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flexit_bacnet/coordinator.py:28:5-17: Class member `FlexitCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flexit_bacnet/number.py:62:9-12: Unexpected keyword argument `key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:63:9-24: Unexpected keyword argument `translation_key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:74:9-12: Unexpected keyword argument `key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:75:9-24: Unexpected keyword argument `translation_key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:86:9-12: Unexpected keyword argument `key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:87:9-24: Unexpected keyword argument `translation_key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:98:9-12: Unexpected keyword argument `key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:99:9-24: Unexpected keyword argument `translation_key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:110:9-12: Unexpected keyword argument `key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:111:9-24: Unexpected keyword argument `translation_key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:122:9-12: Unexpected keyword argument `key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:123:9-24: Unexpected keyword argument `translation_key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:134:9-12: Unexpected keyword argument `key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:135:9-24: Unexpected keyword argument `translation_key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:146:9-12: Unexpected keyword argument `key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:147:9-24: Unexpected keyword argument `translation_key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:158:9-12: Unexpected keyword argument `key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:159:9-24: Unexpected keyword argument `translation_key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:170:9-12: Unexpected keyword argument `key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:171:9-24: Unexpected keyword argument `translation_key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:182:9-12: Unexpected keyword argument `key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:183:9-24: Unexpected keyword argument `translation_key` in function `FlexitNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/number.py:215:5-23: Class member `FlexitNumber.entity_description` overrides parent class `FlexitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flexit_bacnet/number.py:215:5-23: Class member `FlexitNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flexit_bacnet/sensor.py:38:9-12: Unexpected keyword argument `key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:46:9-12: Unexpected keyword argument `key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:54:9-12: Unexpected keyword argument `key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:62:9-12: Unexpected keyword argument `key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:70:9-12: Unexpected keyword argument `key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:78:9-12: Unexpected keyword argument `key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:87:9-12: Unexpected keyword argument `key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:91:9-24: Unexpected keyword argument `translation_key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:96:9-12: Unexpected keyword argument `key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:103:9-12: Unexpected keyword argument `key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:110:9-12: Unexpected keyword argument `key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:117:9-12: Unexpected keyword argument `key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:120:9-24: Unexpected keyword argument `translation_key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:124:9-12: Unexpected keyword argument `key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:127:9-24: Unexpected keyword argument `translation_key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:132:9-12: Unexpected keyword argument `key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:136:9-24: Unexpected keyword argument `translation_key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:140:9-12: Unexpected keyword argument `key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:143:9-24: Unexpected keyword argument `translation_key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:147:9-12: Unexpected keyword argument `key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:150:9-24: Unexpected keyword argument `translation_key` in function `FlexitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/sensor.py:176:5-23: Class member `FlexitSensor.entity_description` overrides parent class `FlexitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flexit_bacnet/sensor.py:176:5-23: Class member `FlexitSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flexit_bacnet/switch.py:36:9-12: Unexpected keyword argument `key` in function `FlexitSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/switch.py:37:9-24: Unexpected keyword argument `translation_key` in function `FlexitSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/switch.py:43:9-12: Unexpected keyword argument `key` in function `FlexitSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/switch.py:44:9-24: Unexpected keyword argument `translation_key` in function `FlexitSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/switch.py:50:9-12: Unexpected keyword argument `key` in function `FlexitSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/switch.py:51:9-24: Unexpected keyword argument `translation_key` in function `FlexitSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flexit_bacnet/switch.py:78:5-23: Class member `FlexitSwitch._attr_device_class` overrides parent class `FlexitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flexit_bacnet/switch.py:80:5-23: Class member `FlexitSwitch.entity_description` overrides parent class `FlexitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flexit_bacnet/switch.py:80:5-23: Class member `FlexitSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flic/binary_sensor.py:85:37-56: `(address: Unknown) -> Unknown` is not assignable to attribute `on_new_verified_button` with type `(bd_addr: Unknown) -> None` [bad-assignment] +ERROR homeassistant/components/flic/binary_sensor.py:120:32-55: `(scan_wizard: Unknown, result: Unknown, address: Unknown, name: Unknown) -> Unknown` is not assignable to attribute `on_completed` with type `(scan_wizard: Unknown, result: Unknown, bd_addr: Unknown, name: Unknown) -> None` [bad-assignment] +ERROR homeassistant/components/flipr/__init__.py:33:45-66: Argument `BoundMethod[FliprAPIRestClient, (self: FliprAPIRestClient) -> dict[str, list[str]]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/flipr/__init__.py:38:21-33: Cannot index into `object` [bad-index] +ERROR homeassistant/components/flipr/__init__.py:44:19-29: Cannot index into `object` [bad-index] +ERROR homeassistant/components/flipr/binary_sensor.py:18:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flipr/binary_sensor.py:19:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flipr/binary_sensor.py:23:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flipr/binary_sensor.py:24:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flipr/binary_sensor.py:46:7-24: Field `entity_description` is declared `EntityDescription` in ancestor `class FliprEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/flipr/config_flow.py:45:62-83: Argument `BoundMethod[FliprAPIRestClient, (self: FliprAPIRestClient) -> dict[str, list[str]]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/flipr/config_flow.py:57:24-36: Cannot index into `object` [bad-index] +ERROR homeassistant/components/flipr/config_flow.py:57:49-59: Cannot index into `object` [bad-index] +ERROR homeassistant/components/flipr/coordinator.py:34:5-17: Class member `BaseDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flipr/select.py:16:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flipr/select.py:17:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flipr/select.py:38:7-21: Field `entity_description` is declared `EntityDescription` in ancestor `class FliprEntity: ... +`, which is not assignable to the type `SelectEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/flipr/sensor.py:20:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flipr/sensor.py:21:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flipr/sensor.py:26:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flipr/sensor.py:31:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flipr/sensor.py:32:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flipr/sensor.py:38:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flipr/sensor.py:39:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flipr/sensor.py:43:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flipr/sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flipr/sensor.py:49:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flipr/sensor.py:72:7-18: Field `entity_description` is declared `EntityDescription` in ancestor `class FliprEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/flipr/switch.py:17:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flipr/switch.py:18:9-13: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flipr/switch.py:38:7-21: Field `entity_description` is declared `EntityDescription` in ancestor `class FliprEntity: ... +`, which is not assignable to the type `SwitchEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/flo/__init__.py:31:23-43: Object of class `NoneType` has no attribute `get_info` [missing-attribute] +ERROR homeassistant/components/flo/binary_sensor.py:44:5-23: Class member `FloPendingAlertsBinarySensor._attr_device_class` overrides parent class `FloEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flo/binary_sensor.py:71:5-23: Class member `FloWaterDetectedBinarySensor._attr_device_class` overrides parent class `FloEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flo/coordinator.py:35:5-17: Class member `FloDeviceDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flo/sensor.py:58:5-22: Class member `FloDailyUsageSensor._attr_state_class` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flo/sensor.py:59:5-23: Class member `FloDailyUsageSensor._attr_device_class` overrides parent class `FloEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flo/sensor.py:95:5-22: Class member `FloCurrentFlowRateSensor._attr_state_class` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flo/sensor.py:96:5-23: Class member `FloCurrentFlowRateSensor._attr_device_class` overrides parent class `FloEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flo/sensor.py:114:5-23: Class member `FloTemperatureSensor._attr_device_class` overrides parent class `FloEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flo/sensor.py:116:5-22: Class member `FloTemperatureSensor._attr_state_class` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flo/sensor.py:135:5-23: Class member `FloHumiditySensor._attr_device_class` overrides parent class `FloEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flo/sensor.py:137:5-22: Class member `FloHumiditySensor._attr_state_class` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flo/sensor.py:154:5-23: Class member `FloPressureSensor._attr_device_class` overrides parent class `FloEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flo/sensor.py:156:5-22: Class member `FloPressureSensor._attr_state_class` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flo/sensor.py:174:5-23: Class member `FloBatterySensor._attr_device_class` overrides parent class `FloEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flo/sensor.py:176:5-22: Class member `FloBatterySensor._attr_state_class` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flume/binary_sensor.py:36:5-8: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/binary_sensor.py:49:9-12: Unexpected keyword argument `key` in function `FlumeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/binary_sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `FlumeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/binary_sensor.py:51:9-24: Unexpected keyword argument `entity_category` in function `FlumeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/binary_sensor.py:55:9-12: Unexpected keyword argument `key` in function `FlumeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/binary_sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `FlumeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/binary_sensor.py:57:9-24: Unexpected keyword argument `entity_category` in function `FlumeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/binary_sensor.py:61:9-12: Unexpected keyword argument `key` in function `FlumeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/binary_sensor.py:62:9-24: Unexpected keyword argument `entity_category` in function `FlumeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/binary_sensor.py:125:5-23: Class member `FlumeNotificationBinarySensor.entity_description` overrides parent class `FlumeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flume/binary_sensor.py:125:5-23: Class member `FlumeNotificationBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flume/binary_sensor.py:145:5-23: Class member `FlumeConnectionBinarySensor.entity_description` overrides parent class `FlumeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flume/binary_sensor.py:145:5-23: Class member `FlumeConnectionBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flume/binary_sensor.py:147:5-23: Class member `FlumeConnectionBinarySensor._attr_device_class` overrides parent class `FlumeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flume/coordinator.py:41:5-17: Class member `FlumeDeviceDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flume/coordinator.py:63:52-82: Argument `BoundMethod[FlumeData, (self: FlumeData) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/flume/coordinator.py:76:5-17: Class member `FlumeDeviceConnectionUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flume/coordinator.py:107:52-77: Argument `BoundMethod[Self@FlumeDeviceConnectionUpdateCoordinator, (self: Self@FlumeDeviceConnectionUpdateCoordinator) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/flume/coordinator.py:115:5-17: Class member `FlumeNotificationDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flume/coordinator.py:161:52-70: Argument `BoundMethod[Self@FlumeNotificationDataUpdateCoordinator, (self: Self@FlumeNotificationDataUpdateCoordinator) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/flume/sensor.py:34:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/sensor.py:49:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/sensor.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/sensor.py:65:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/sensor.py:72:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/sensor.py:73:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/sensor.py:79:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flume/sensor.py:153:7-18: Field `entity_description` is declared `EntityDescription` in ancestor `class FlumeEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/flux/switch.py:247:30-251:10: `() -> None` is not assignable to attribute `unsub_tracker` with type `None` [bad-assignment] +ERROR homeassistant/components/flux/switch.py:261:13-31: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/flux/switch.py:290:30-46: Object of class `NoneType` has no attribute `timestamp` [missing-attribute] +ERROR homeassistant/components/flux/switch.py:303:64-74: Object of class `NoneType` has no attribute `day` [missing-attribute] +ERROR homeassistant/components/flux/switch.py:305:35-70: `-` is not supported between `None` and `timedelta` [unsupported-operation] +ERROR homeassistant/components/flux/switch.py:309:60-81: Object of class `NoneType` has no attribute `timestamp` +Object of class `timedelta` has no attribute `timestamp` [missing-attribute] +ERROR homeassistant/components/flux/switch.py:310:61-82: Object of class `NoneType` has no attribute `timestamp` +Object of class `timedelta` has no attribute `timestamp` [missing-attribute] +ERROR homeassistant/components/flux/switch.py:322:58-62: Argument `float` is not assignable to parameter `iR` with type `int` in function `homeassistant.util.color.color_RGB_to_xy_brightness` [bad-argument-type] +ERROR homeassistant/components/flux/switch.py:322:58-62: Argument `float` is not assignable to parameter `iG` with type `int` in function `homeassistant.util.color.color_RGB_to_xy_brightness` [bad-argument-type] +ERROR homeassistant/components/flux/switch.py:322:58-62: Argument `float` is not assignable to parameter `iB` with type `int` in function `homeassistant.util.color.color_RGB_to_xy_brightness` [bad-argument-type] +ERROR homeassistant/components/flux_led/__init__.py:253:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/flux_led/button.py:24:5-8: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flux_led/button.py:28:5-8: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flux_led/button.py:29:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/flux_led/button.py:64:14-32: Class member `FluxButton.entity_description` overrides parent class `FluxBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flux_led/config_flow.py:74:9-31: Class member `FluxLedConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flux_led/coordinator.py:29:5-17: Class member `FluxLedUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flux_led/light.py:189:5-29: Class member `FluxLight._attr_supported_features` overrides parent class `FluxOnOffEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flux_led/light.py:189:5-29: Class member `FluxLight._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/flux_led/light.py:290:40-50: `brightness` may be uninitialized [unbound-name] +ERROR homeassistant/components/foobot/sensor.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foobot/sensor.py:48:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foobot/sensor.py:50:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foobot/sensor.py:53:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foobot/sensor.py:54:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foobot/sensor.py:59:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foobot/sensor.py:60:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foobot/sensor.py:62:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foobot/sensor.py:65:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foobot/sensor.py:66:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foobot/sensor.py:68:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foobot/sensor.py:71:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foobot/sensor.py:72:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foobot/sensor.py:74:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foobot/sensor.py:77:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foobot/sensor.py:78:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foobot/sensor.py:80:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foobot/sensor.py:120:9-34: Module `aiohttp.client_exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/foobot/sensor.py:177:13-38: Module `aiohttp.client_exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/forecast_solar/config_flow.py:40:9-31: Class member `ForecastSolarFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/forecast_solar/coordinator.py:32:5-17: Class member `ForecastSolarDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/forecast_solar/coordinator.py:56:22-35: `inverter_size` may be uninitialized [unbound-name] +ERROR homeassistant/components/forecast_solar/sensor.py:40:9-12: Unexpected keyword argument `key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:49:9-12: Unexpected keyword argument `key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:58:9-12: Unexpected keyword argument `key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:67:9-12: Unexpected keyword argument `key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:72:9-12: Unexpected keyword argument `key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:73:9-24: Unexpected keyword argument `translation_key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:77:9-12: Unexpected keyword argument `key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:85:9-12: Unexpected keyword argument `key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:91:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:95:9-12: Unexpected keyword argument `key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:101:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:105:9-12: Unexpected keyword argument `key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:111:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:115:9-12: Unexpected keyword argument `key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:124:9-12: Unexpected keyword argument `key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `ForecastSolarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/forecast_solar/sensor.py:158:5-23: Class member `ForecastSolarSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/forecast_solar/sensor.py:158:5-23: Class member `ForecastSolarSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/forked_daapd/config_flow.py:113:9-31: Class member `ForkedDaapdFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/forked_daapd/config_flow.py:194:28-67: No matching overload found for function `homeassistant.config_entries.ConfigFlowContext.update` called with arguments: (dict[str, dict[str, int | str | Any | None]]) [no-matching-overload] +ERROR homeassistant/components/forked_daapd/media_player.py:331:37-45: `datetime` is not assignable to attribute `_player_last_updated` with type `None` [bad-assignment] +ERROR homeassistant/components/forked_daapd/media_player.py:386:32-390:14: `str | Unknown` is not assignable to attribute `_track_info` with type `defaultdict[Unknown, str]` [bad-assignment] +ERROR homeassistant/components/forked_daapd/media_player.py:388:30-50: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:388:30-50: Type `bool` is not iterable [not-iterable] +ERROR homeassistant/components/forked_daapd/media_player.py:388:30-50: Type `int` is not iterable [not-iterable] +ERROR homeassistant/components/forked_daapd/media_player.py:389:20-31: Cannot index into `str` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:389:35-58: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:423:18-30: Cannot index into `str` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:429:30-43: `dict[str, bool | int | str] | dict[str, int | list[Unknown]] | list[Unknown]` is not assignable to attribute `_last_outputs` with type `list[Unknown]` [bad-assignment] +ERROR homeassistant/components/forked_daapd/media_player.py:430:16-34: Cannot index into `str` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:452:12-33: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:456:20-38: Cannot index into `str` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:465:16-38: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:465:16-44: `/` is not supported between `list[Unknown]` and `Literal[100]` [unsupported-operation] +ERROR homeassistant/components/forked_daapd/media_player.py:465:16-44: `/` is not supported between `str` and `Literal[100]` [unsupported-operation] +ERROR homeassistant/components/forked_daapd/media_player.py:470:16-38: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:475:16-39: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:485:16-46: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:485:16-53: `/` is not supported between `list[Unknown]` and `Literal[1000]` [unsupported-operation] +ERROR homeassistant/components/forked_daapd/media_player.py:485:16-53: `/` is not supported between `str` and `Literal[1000]` [unsupported-operation] +ERROR homeassistant/components/forked_daapd/media_player.py:490:16-48: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:490:16-55: `/` is not supported between `list[Unknown]` and `Literal[1000]` [unsupported-operation] +ERROR homeassistant/components/forked_daapd/media_player.py:490:16-55: `/` is not supported between `str` and `Literal[1000]` [unsupported-operation] +ERROR homeassistant/components/forked_daapd/media_player.py:533:16-39: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:619:16-19: `url` may be uninitialized [unbound-name] +ERROR homeassistant/components/forked_daapd/media_player.py:624:30-43: `dict[str, bool | int | str] | dict[str, int | list[Unknown]] | list[Unknown]` is not assignable to attribute `_last_outputs` with type `list[Unknown]` [bad-assignment] +ERROR homeassistant/components/forked_daapd/media_player.py:630:25-37: Cannot index into `str` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:697:17-33: Cannot index into `str` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:698:29-49: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:698:29-49: Type `bool` is not iterable [not-iterable] +ERROR homeassistant/components/forked_daapd/media_player.py:698:29-49: Type `int` is not iterable [not-iterable] +ERROR homeassistant/components/forked_daapd/media_player.py:699:20-30: Cannot index into `str` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:699:34-57: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:728:31-63: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:729:38-58: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:729:38-62: `>` is not supported between `list[Unknown]` and `Literal[0]` [unsupported-operation] +ERROR homeassistant/components/forked_daapd/media_player.py:729:38-62: `>` is not supported between `str` and `Literal[0]` [unsupported-operation] +ERROR homeassistant/components/forked_daapd/media_player.py:733:42-62: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:733:42-62: Argument `bool | int | list[Unknown] | str | Unknown` is not assignable to parameter `iterable` with type `Iterable[@_]` in function `enumerate.__new__` [bad-argument-type] +ERROR homeassistant/components/forked_daapd/media_player.py:734:34-57: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:747:13-33: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:747:13-36: Cannot index into `bool` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:747:13-36: Cannot index into `int` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:747:13-49: Cannot index into `str` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:767:27-38: Cannot index into `str` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:767:51-71: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/components/forked_daapd/media_player.py:767:51-71: Type `bool` is not iterable [not-iterable] +ERROR homeassistant/components/forked_daapd/media_player.py:767:51-71: Type `int` is not iterable [not-iterable] +ERROR homeassistant/components/forked_daapd/media_player.py:769:36-56: `saved_queue_position` may be uninitialized [unbound-name] +ERROR homeassistant/components/forked_daapd/media_player.py:842:17-30: `other_sources` may be uninitialized [unbound-name] +ERROR homeassistant/components/forked_daapd/media_player.py:846:28-41: `other_sources` may be uninitialized [unbound-name] +ERROR homeassistant/components/forked_daapd/media_player.py:876:19-25: `result` may be uninitialized [unbound-name] +ERROR homeassistant/components/forked_daapd/media_player.py:876:19-29: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/fortios/device_tracker.py:12:1-34: Could not find import of `fortiosapi` [missing-import] +ERROR homeassistant/components/foscam/camera.py:112:18-42: Class member `HassFoscamCamera._attr_supported_features` overrides parent class `FoscamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/foscam/coordinator.py:54:5-17: Class member `FoscamCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/foscam/coordinator.py:212:59-82: Argument `BoundMethod[Self@FoscamCoordinator, (self: Self@FoscamCoordinator) -> FoscamDeviceInfo]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/foscam/number.py:30:9-12: Unexpected keyword argument `key` in function `FoscamNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/number.py:31:9-24: Unexpected keyword argument `translation_key` in function `FoscamNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/number.py:39:9-12: Unexpected keyword argument `key` in function `FoscamNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/number.py:40:9-24: Unexpected keyword argument `translation_key` in function `FoscamNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/number.py:68:5-23: Class member `FoscamVolumeNumberEntity.entity_description` overrides parent class `FoscamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/foscam/number.py:68:5-23: Class member `FoscamVolumeNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/foscam/switch.py:53:9-12: Unexpected keyword argument `key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:54:9-24: Unexpected keyword argument `translation_key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:60:9-12: Unexpected keyword argument `key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:61:9-24: Unexpected keyword argument `translation_key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:67:9-12: Unexpected keyword argument `key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:68:9-24: Unexpected keyword argument `translation_key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:74:9-12: Unexpected keyword argument `key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:75:9-24: Unexpected keyword argument `translation_key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:81:9-12: Unexpected keyword argument `key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:82:9-24: Unexpected keyword argument `translation_key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:88:9-12: Unexpected keyword argument `key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:89:9-24: Unexpected keyword argument `translation_key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:95:9-12: Unexpected keyword argument `key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:96:9-24: Unexpected keyword argument `translation_key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:102:9-12: Unexpected keyword argument `key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:103:9-24: Unexpected keyword argument `translation_key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:109:9-12: Unexpected keyword argument `key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:110:9-24: Unexpected keyword argument `translation_key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:117:9-12: Unexpected keyword argument `key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:118:9-24: Unexpected keyword argument `translation_key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:125:9-12: Unexpected keyword argument `key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:126:9-24: Unexpected keyword argument `translation_key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:133:9-12: Unexpected keyword argument `key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:134:9-24: Unexpected keyword argument `translation_key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:141:9-12: Unexpected keyword argument `key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:142:9-24: Unexpected keyword argument `translation_key` in function `FoscamSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/foscam/switch.py:170:5-23: Class member `FoscamGenericSwitch.entity_description` overrides parent class `FoscamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/foscam/switch.py:170:5-23: Class member `FoscamGenericSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/free_mobile/notify.py:8:1-31: Could not find import of `freesms` [missing-import] +ERROR homeassistant/components/freebox/alarm_control_panel.py:73:14-38: Class member `FreeboxAlarm._attr_supported_features` overrides parent class `FreeboxHomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/freebox/binary_sensor.py:27:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/binary_sensor.py:28:9-13: Unexpected keyword argument `name` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/binary_sensor.py:30:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/button.py:29:9-12: Unexpected keyword argument `key` in function `FreeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/button.py:30:9-13: Unexpected keyword argument `name` in function `FreeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/button.py:32:9-24: Unexpected keyword argument `entity_category` in function `FreeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/button.py:36:9-12: Unexpected keyword argument `key` in function `FreeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/button.py:37:9-13: Unexpected keyword argument `name` in function `FreeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/button.py:38:9-24: Unexpected keyword argument `entity_category` in function `FreeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/button.py:60:5-23: Class member `FreeboxButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/freebox/router.py:63:42-69: Unpacked argument `tuple[Unknown]` is not assignable to parameter `*args` with type `tuple[PathLike[bytes] | PathLike[str] | bytes | str, int, bool]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/freebox/sensor.py:29:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/sensor.py:30:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/sensor.py:34:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/sensor.py:38:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/sensor.py:42:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/sensor.py:48:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/sensor.py:49:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/sensor.py:50:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/sensor.py:56:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/sensor.py:57:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/sensor.py:59:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/sensor.py:82:17-20: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/sensor.py:83:17-21: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/sensor.py:239:5-23: Class member `FreeboxBatterySensor._attr_device_class` overrides parent class `FreeboxHomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/freebox/switch.py:22:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/switch.py:23:9-13: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freebox/switch.py:24:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/freedompro/binary_sensor.py:69:14-32: Class member `Device._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/freedompro/climate.py:69:5-29: Class member `Device._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/freedompro/cover.py:57:5-29: Class member `Device._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/freedompro/cover.py:83:14-32: Class member `Device._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/freedompro/fan.py:66:14-38: Class member `FreedomproFan._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/freedompro/sensor.py:77:14-32: Class member `Device._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritz/binary_sensor.py:39:9-12: Unexpected keyword argument `key` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/binary_sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/binary_sensor.py:42:9-24: Unexpected keyword argument `entity_category` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/binary_sensor.py:46:9-12: Unexpected keyword argument `key` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/binary_sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/binary_sensor.py:49:9-24: Unexpected keyword argument `entity_category` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/binary_sensor.py:78:5-23: Class member `FritzBoxBinarySensor.entity_description` overrides parent class `FritzBoxBaseCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritz/binary_sensor.py:78:5-23: Class member `FritzBoxBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritz/button.py:42:9-12: Unexpected keyword argument `key` in function `FritzButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/button.py:43:9-24: Unexpected keyword argument `translation_key` in function `FritzButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/button.py:45:9-24: Unexpected keyword argument `entity_category` in function `FritzButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/button.py:49:9-12: Unexpected keyword argument `key` in function `FritzButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/button.py:51:9-24: Unexpected keyword argument `entity_category` in function `FritzButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/button.py:55:9-12: Unexpected keyword argument `key` in function `FritzButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/button.py:56:9-24: Unexpected keyword argument `translation_key` in function `FritzButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/button.py:58:9-24: Unexpected keyword argument `entity_category` in function `FritzButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/button.py:62:9-12: Unexpected keyword argument `key` in function `FritzButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/button.py:63:9-24: Unexpected keyword argument `translation_key` in function `FritzButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/button.py:64:9-24: Unexpected keyword argument `entity_category` in function `FritzButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/button.py:107:5-23: Class member `FritzButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritz/config_flow.py:71:9-31: Class member `FritzBoxToolsFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritz/config_flow.py:89:55-76: Argument `BoundMethod[Self@FritzBoxToolsFlowHandler, (self: Self@FritzBoxToolsFlowHandler) -> str | None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritz/config_flow.py:186:16-20: `uuid` may be uninitialized [unbound-name] +ERROR homeassistant/components/fritz/config_flow.py:187:78-82: `uuid` may be uninitialized [unbound-name] +ERROR homeassistant/components/fritz/config_flow.py:295:12-17: `error` may be uninitialized [unbound-name] +ERROR homeassistant/components/fritz/config_flow.py:296:56-61: `error` may be uninitialized [unbound-name] +ERROR homeassistant/components/fritz/coordinator.py:96:5-17: Class member `FritzBoxTools.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritz/coordinator.py:121:44-48: `None` is not assignable to attribute `connection` with type `FritzConnection` [bad-assignment] +ERROR homeassistant/components/fritz/coordinator.py:122:49-53: `None` is not assignable to attribute `fritz_guest_wifi` with type `FritzGuestWLAN` [bad-assignment] +ERROR homeassistant/components/fritz/coordinator.py:123:40-44: `None` is not assignable to attribute `fritz_hosts` with type `FritzHosts` [bad-assignment] +ERROR homeassistant/components/fritz/coordinator.py:124:42-46: `None` is not assignable to attribute `fritz_status` with type `FritzStatus` [bad-assignment] +ERROR homeassistant/components/fritz/coordinator.py:125:38-42: `None` is not assignable to attribute `fritz_call` with type `FritzCall` [bad-assignment] +ERROR homeassistant/components/fritz/coordinator.py:149:48-58: Argument `BoundMethod[Self@FritzBoxTools, (self: Self@FritzBoxTools) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritz/coordinator.py:273:17-43: Argument `BoundMethod[Self@FritzBoxTools, (self: Self@FritzBoxTools) -> dict[Unknown, Unknown]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritz/coordinator.py:378:21-58: Argument `BoundMethod[FritzHosts, (self: FritzHosts) -> list[dict[Unknown, Unknown]]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritz/coordinator.py:382:21-52: Argument `BoundMethod[FritzHosts, (self: FritzHosts) -> list[dict[Unknown, Unknown]]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritz/coordinator.py:441:55-79: Argument `BoundMethod[Self@FritzBoxTools, (self: Self@FritzBoxTools) -> tuple[bool, str | None, str | None]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritz/coordinator.py:548:21-33: Object of class `str` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/fritz/coordinator.py:571:21-33: Object of class `str` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/fritz/coordinator.py:610:48-70: Argument `BoundMethod[FritzConnection, (self: FritzConnection) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritz/coordinator.py:614:48-73: Argument `BoundMethod[FritzConnection, (self: FritzConnection) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritz/coordinator.py:630:52-74: Argument `BoundMethod[FritzCall, (self: FritzCall) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritz/coordinator.py:739:60-78: Argument `() -> str` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritz/diagnostics.py:51:17-62: Argument `BoundMethod[FritzStatus, (self: FritzStatus) -> list[int]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritz/entity.py:96:5-23: Class member `FritzBoxBaseCoordinatorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritz/image.py:34:9-46: Argument `BoundMethod[FritzGuestWLAN, (self: FritzGuestWLAN) -> dict[Unknown, Unknown]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritz/image.py:71:13-64: Object of class `FritzGuestWLAN` has no attribute `get_wifi_qr_code` [missing-attribute] +ERROR homeassistant/components/fritz/sensor.py:162:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:163:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:167:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:168:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:173:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:174:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:176:9-24: Unexpected keyword argument `entity_category` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:181:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:182:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:184:9-24: Unexpected keyword argument `entity_category` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:188:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:189:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:196:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:197:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:204:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:205:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:211:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:212:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:218:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:219:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:226:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:227:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:234:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:235:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:238:9-24: Unexpected keyword argument `entity_category` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:242:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:243:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:246:9-24: Unexpected keyword argument `entity_category` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:250:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:251:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:253:9-24: Unexpected keyword argument `entity_category` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:254:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:259:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:260:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:262:9-24: Unexpected keyword argument `entity_category` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:263:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:268:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:269:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:271:9-24: Unexpected keyword argument `entity_category` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:272:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:277:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:278:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:280:9-24: Unexpected keyword argument `entity_category` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:281:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:286:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:287:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:290:9-24: Unexpected keyword argument `entity_category` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/sensor.py:321:5-23: Class member `FritzBoxSensor.entity_description` overrides parent class `FritzBoxBaseCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritz/sensor.py:321:5-23: Class member `FritzBoxSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritz/switch.py:257:5-23: Class member `FritzBoxBaseCoordinatorSwitch.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritz/switch.py:466:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/switch.py:467:13-17: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/switch.py:468:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/switch.py:507:14-25: Class member `FritzBoxProfileSwitch._attr_is_on` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritz/update.py:50:5-29: Class member `FritzBoxUpdateEntity._attr_supported_features` overrides parent class `FritzBoxBaseCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritz/update.py:52:5-23: Class member `FritzBoxUpdateEntity.entity_description` overrides parent class `FritzBoxBaseCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritz/update.py:52:5-23: Class member `FritzBoxUpdateEntity.entity_description` overrides parent class `UpdateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritz/update.py:61:13-16: Unexpected keyword argument `key` in function `FritzUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritz/update.py:61:27-31: Unexpected keyword argument `name` in function `FritzUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/__init__.py:60:39-70: Argument `BoundMethod[Fritzhome, (self: Fritzhome) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritzbox/binary_sensor.py:39:9-12: Unexpected keyword argument `key` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/binary_sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/binary_sensor.py:46:9-12: Unexpected keyword argument `key` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/binary_sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/binary_sensor.py:49:9-24: Unexpected keyword argument `entity_category` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/binary_sensor.py:54:9-12: Unexpected keyword argument `key` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/binary_sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/binary_sensor.py:57:9-24: Unexpected keyword argument `entity_category` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/binary_sensor.py:62:9-12: Unexpected keyword argument `key` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/binary_sensor.py:64:9-24: Unexpected keyword argument `entity_category` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/binary_sensor.py:67:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/binary_sensor.py:70:9-12: Unexpected keyword argument `key` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/binary_sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/binary_sensor.py:76:9-12: Unexpected keyword argument `key` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/binary_sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/binary_sensor.py:82:9-12: Unexpected keyword argument `key` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/binary_sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `FritzBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/binary_sensor.py:120:5-23: Class member `FritzboxBinarySensor.entity_description` overrides parent class `FritzBoxDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritzbox/binary_sensor.py:120:5-23: Class member `FritzboxBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritzbox/button.py:40:7-23: Field `entity_description` is declared `EntityDescription` in ancestor `class FritzBoxEntity: ... +`, which is not assignable to the type `ButtonEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/fritzbox/button.py:61:48-67: Argument `BoundMethod[Self@FritzBoxTemplate, (self: Self@FritzBoxTemplate) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritzbox/climate.py:94:14-38: Class member `FritzboxThermostat._attr_supported_features` overrides parent class `FritzBoxDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritzbox/config_flow.py:70:55-72: Argument `BoundMethod[Self@FritzboxConfigFlow, (self: Self@FritzboxConfigFlow) -> str]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritzbox/config_flow.py:140:20-24: `uuid` may be uninitialized [unbound-name] +ERROR homeassistant/components/fritzbox/config_flow.py:141:82-86: `uuid` may be uninitialized [unbound-name] +ERROR homeassistant/components/fritzbox/coordinator.py:36:5-17: Class member `FritzboxDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritzbox/coordinator.py:66:52-68: Argument `BoundMethod[Fritzhome, (self: Fritzhome) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritzbox/coordinator.py:73:13-37: Argument `BoundMethod[Fritzhome, (self: Fritzhome) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritzbox/coordinator.py:170:59-85: Argument `BoundMethod[Self@FritzboxDataUpdateCoordinator, (self: Self@FritzboxDataUpdateCoordinator) -> FritzboxCoordinatorData]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritzbox/cover.py:52:5-23: Class member `FritzboxCover._attr_device_class` overrides parent class `FritzBoxDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritzbox/cover.py:53:5-29: Class member `FritzboxCover._attr_supported_features` overrides parent class `FritzBoxDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritzbox/diagnostics.py:27:33-30:6: `dict[str, FritzhomeDevice | FritzhomeTemplate]` is not assignable to `dict[str, dict[Unknown, Unknown]]` [bad-assignment] +ERROR homeassistant/components/fritzbox/entity.py:51:16-55: Returned type `Literal[False] | None` is not assignable to declared return type `bool` [bad-return] +ERROR homeassistant/components/fritzbox/light.py:104:16-56: Returned type `tuple[None, float]` is not assignable to declared return type `tuple[float, float]` [bad-return] +ERROR homeassistant/components/fritzbox/light.py:104:28-38: Argument `None` is not assignable to parameter `x` with type `Buffer | SupportsFloat | SupportsIndex | str` in function `float.__new__` [bad-argument-type] +ERROR homeassistant/components/fritzbox/sensor.py:117:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:126:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:134:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:138:9-24: Unexpected keyword argument `entity_category` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:143:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:151:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:159:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:167:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:176:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:177:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:180:9-24: Unexpected keyword argument `entity_category` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:185:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:186:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:189:9-24: Unexpected keyword argument `entity_category` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:194:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:195:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:198:9-24: Unexpected keyword argument `entity_category` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:203:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:204:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:206:9-24: Unexpected keyword argument `entity_category` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:211:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:212:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:213:9-24: Unexpected keyword argument `entity_category` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:218:9-12: Unexpected keyword argument `key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:219:9-24: Unexpected keyword argument `translation_key` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:220:9-24: Unexpected keyword argument `entity_category` in function `FritzSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fritzbox/sensor.py:257:5-23: Class member `FritzBoxSensor.entity_description` overrides parent class `FritzBoxDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritzbox/sensor.py:257:5-23: Class member `FritzBoxSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritzbox_callmonitor/__init__.py:34:43-76: Argument `BoundMethod[FritzBoxPhonebook, (self: FritzBoxPhonebook) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritzbox_callmonitor/base.py:84:22-49: Object of class `NoneType` has no attribute `contacts` [missing-attribute] +ERROR homeassistant/components/fritzbox_callmonitor/base.py:103:23-36: Type `None` is not iterable [not-iterable] +ERROR homeassistant/components/fritzbox_callmonitor/config_flow.py:133:9-31: Class member `FritzBoxCallMonitorConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fritzbox_callmonitor/config_flow.py:154:57-74: Argument `BoundMethod[Self@FritzBoxCallMonitorConfigFlow, (self: Self@FritzBoxCallMonitorConfigFlow) -> ConnectResult]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritzbox_callmonitor/config_flow.py:245:61-78: Argument `BoundMethod[Self@FritzBoxCallMonitorConfigFlow, (self: Self@FritzBoxCallMonitorConfigFlow) -> ConnectResult]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fritzbox_callmonitor/sensor.py:116:48-72: Argument `BoundMethod[Self@FritzBoxCallSensor, (self: Self@FritzBoxCallSensor) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/fronius/coordinator.py:70:26-41: Class member `FroniusCoordinatorBase.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fronius/coordinator.py:70:44-63: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@FroniusCoordinatorBase, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/fronius/coordinator.py:79:40-61: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@FroniusCoordinatorBase, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/fronius/coordinator.py:165:50-54: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/fronius/diagnostics.py:29:9-84: Cannot set item in `dict[str, dict[Unknown, Unknown]]` [unsupported-operation] +ERROR homeassistant/components/fronius/diagnostics.py:32:9-82: Cannot set item in `dict[str, dict[Unknown, Unknown]]` [unsupported-operation] +ERROR homeassistant/components/fronius/diagnostics.py:35:9-88: Cannot set item in `dict[str, dict[Unknown, Unknown]]` [unsupported-operation] +ERROR homeassistant/components/fronius/diagnostics.py:38:9-40:18: Cannot set item in `dict[str, dict[Unknown, Unknown]]` [unsupported-operation] +ERROR homeassistant/components/fronius/diagnostics.py:43:9-86: Cannot set item in `dict[str, dict[Unknown, Unknown]]` [unsupported-operation] +ERROR homeassistant/components/fronius/sensor.py:125:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:131:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:137:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:144:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:149:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:152:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:159:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:166:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:171:9-24: Unexpected keyword argument `translation_key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:172:9-33: Unexpected keyword argument `translation_placeholders` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:175:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:180:9-24: Unexpected keyword argument `translation_key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:181:9-33: Unexpected keyword argument `translation_placeholders` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:184:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:189:9-24: Unexpected keyword argument `translation_key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:190:9-33: Unexpected keyword argument `translation_placeholders` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:193:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:200:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:205:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:208:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:215:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:220:9-24: Unexpected keyword argument `translation_key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:221:9-33: Unexpected keyword argument `translation_placeholders` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:224:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:229:9-24: Unexpected keyword argument `translation_key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:230:9-33: Unexpected keyword argument `translation_placeholders` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:233:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:238:9-24: Unexpected keyword argument `translation_key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:239:9-33: Unexpected keyword argument `translation_placeholders` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:243:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:244:9-24: Unexpected keyword argument `entity_category` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:247:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:248:9-24: Unexpected keyword argument `entity_category` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:249:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:252:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:254:9-24: Unexpected keyword argument `entity_category` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:260:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:261:9-24: Unexpected keyword argument `entity_category` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:262:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:265:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:267:9-24: Unexpected keyword argument `entity_category` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:273:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:274:9-24: Unexpected keyword argument `entity_category` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:275:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:278:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:279:9-24: Unexpected keyword argument `entity_category` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:280:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:286:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:290:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:294:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:301:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:305:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:308:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:312:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:315:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:319:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:322:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:325:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:329:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:332:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:336:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:340:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:344:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:348:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:352:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:359:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:366:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:372:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:373:9-24: Unexpected keyword argument `entity_category` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:377:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:379:9-24: Unexpected keyword argument `entity_category` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:385:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:389:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:392:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:396:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:399:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:403:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:406:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:410:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:413:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:416:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:419:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:422:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:425:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:428:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:431:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:436:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:440:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:443:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:447:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:450:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:454:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:457:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:461:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:464:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:468:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:471:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:475:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:478:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:482:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:485:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:491:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:495:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:498:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:502:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:505:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:509:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:512:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:516:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:519:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:523:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:526:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:530:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:536:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:543:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:549:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:555:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:556:9-24: Unexpected keyword argument `entity_category` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:559:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:560:9-24: Unexpected keyword argument `entity_category` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:563:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:565:9-24: Unexpected keyword argument `entity_category` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:574:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:578:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:581:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:585:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:588:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:593:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:596:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:597:9-24: Unexpected keyword argument `entity_category` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:600:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:605:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:608:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:617:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:626:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:631:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:634:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:643:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:652:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:657:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:660:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:667:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:670:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:679:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:686:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:692:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:701:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:703:9-24: Unexpected keyword argument `entity_category` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:706:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:708:9-24: Unexpected keyword argument `entity_category` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:711:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:717:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:723:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:727:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:730:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:734:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:737:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:743:9-12: Unexpected keyword argument `key` in function `FroniusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fronius/sensor.py:754:5-23: Class member `_FroniusSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fronius/sensor.py:754:5-23: Class member `_FroniusSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fronius/sensor.py:862:35-44: `meter_uid` may be uninitialized [unbound-name] +ERROR homeassistant/components/fronius/sensor.py:868:35-44: `meter_uid` may be uninitialized [unbound-name] +ERROR homeassistant/components/frontend/__init__.py:541:18-28: `theme_data` may be uninitialized [unbound-name] +ERROR homeassistant/components/frontend/__init__.py:542:23-33: `theme_data` may be uninitialized [unbound-name] +ERROR homeassistant/components/frontend/__init__.py:717:16-19: `tpl` may be uninitialized [unbound-name] +ERROR homeassistant/components/frontend/__init__.py:727:13-30: Argument `BoundMethod[Self@IndexView, (self: Self@IndexView) -> Template]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/frontend/storage.py:35:12-17: `store` may be uninitialized [unbound-name] +ERROR homeassistant/components/frontier_silicon/browse_media.py:36:15-26: Argument `str | None` is not assignable to parameter `title` with type `str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/frontier_silicon/browse_media.py:138:36-40: Argument `dict[str, int | str | None]` is not assignable to parameter `item` with type `dict[str, str]` in function `_item_payload` [bad-argument-type] +ERROR homeassistant/components/frontier_silicon/config_flow.py:132:22-54: `str | None` is not assignable to attribute `_name` with type `str` [bad-assignment] +ERROR homeassistant/components/frontier_silicon/config_flow.py:146:26-58: `str | None` is not assignable to attribute `_name` with type `str` [bad-assignment] +ERROR homeassistant/components/frontier_silicon/config_flow.py:200:26-58: `str | None` is not assignable to attribute `_name` with type `str` [bad-assignment] +ERROR homeassistant/components/frontier_silicon/media_player.py:58:5-29: Class member `AFSAPIDevice._attr_media_content_type` overrides parent class `MediaPlayerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/frontier_silicon/media_player.py:276:48-52: Argument `str` is not assignable to parameter `value` with type `Equaliser | int` in function `afsapi.api.AFSAPI.set_eq_preset` [bad-argument-type] +ERROR homeassistant/components/frontier_silicon/media_player.py:313:59-63: Argument `list[str]` is not assignable to parameter `path` with type `list[int]` in function `afsapi.api.AFSAPI.nav_select_item_via_path` [bad-argument-type] +ERROR homeassistant/components/fujitsu_fglair/climate.py:88:14-38: Class member `FGLairDevice._attr_supported_features` overrides parent class `FGLairEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fujitsu_fglair/coordinator.py:23:5-17: Class member `FGLairCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fujitsu_fglair/coordinator.py:68:71-84: Object of class `Device` has no attribute `is_online` [missing-attribute] +ERROR homeassistant/components/fujitsu_fglair/coordinator.py:77:16-60: Returned type `dict[str | None, Device | FujitsuHVAC]` is not assignable to declared return type `dict[str, FujitsuHVAC]` [bad-return] +ERROR homeassistant/components/fujitsu_fglair/entity.py:22:25-64: Argument `set[tuple[str, str | None]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/fujitsu_fglair/sensor.py:34:5-23: Class member `FGLairOutsideTemperature._attr_device_class` overrides parent class `FGLairEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fully_kiosk/binary_sensor.py:20:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/binary_sensor.py:21:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/binary_sensor.py:22:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/binary_sensor.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/binary_sensor.py:26:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/binary_sensor.py:28:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/binary_sensor.py:31:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/binary_sensor.py:32:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/binary_sensor.py:33:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/binary_sensor.py:63:14-32: Class member `FullyBinarySensor.entity_description` overrides parent class `FullyKioskEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fully_kiosk/button.py:34:9-12: Unexpected keyword argument `key` in function `FullyButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/button.py:35:9-24: Unexpected keyword argument `translation_key` in function `FullyButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/button.py:37:9-24: Unexpected keyword argument `entity_category` in function `FullyButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/button.py:41:9-12: Unexpected keyword argument `key` in function `FullyButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/button.py:42:9-24: Unexpected keyword argument `translation_key` in function `FullyButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/button.py:44:9-24: Unexpected keyword argument `entity_category` in function `FullyButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/button.py:48:9-12: Unexpected keyword argument `key` in function `FullyButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/button.py:49:9-24: Unexpected keyword argument `translation_key` in function `FullyButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/button.py:50:9-24: Unexpected keyword argument `entity_category` in function `FullyButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/button.py:54:9-12: Unexpected keyword argument `key` in function `FullyButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/button.py:55:9-24: Unexpected keyword argument `translation_key` in function `FullyButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/button.py:56:9-24: Unexpected keyword argument `entity_category` in function `FullyButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/button.py:60:9-12: Unexpected keyword argument `key` in function `FullyButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/button.py:61:9-24: Unexpected keyword argument `translation_key` in function `FullyButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/button.py:62:9-24: Unexpected keyword argument `entity_category` in function `FullyButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/button.py:66:9-12: Unexpected keyword argument `key` in function `FullyButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/button.py:67:9-24: Unexpected keyword argument `translation_key` in function `FullyButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/button.py:68:9-24: Unexpected keyword argument `entity_category` in function `FullyButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/button.py:90:5-23: Class member `FullyButtonEntity.entity_description` overrides parent class `FullyKioskEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fully_kiosk/button.py:90:5-23: Class member `FullyButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fully_kiosk/camera.py:31:5-29: Class member `FullyCameraEntity._attr_supported_features` overrides parent class `FullyKioskEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fully_kiosk/coordinator.py:23:5-17: Class member `FullyKioskDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fully_kiosk/image.py:31:9-12: Unexpected keyword argument `key` in function `FullyImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/image.py:32:9-24: Unexpected keyword argument `translation_key` in function `FullyImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/image.py:53:5-23: Class member `FullyImageEntity.entity_description` overrides parent class `FullyKioskEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fully_kiosk/image.py:53:5-23: Class member `FullyImageEntity.entity_description` overrides parent class `ImageEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fully_kiosk/media_player.py:39:5-29: Class member `FullyMediaPlayer._attr_supported_features` overrides parent class `FullyKioskEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fully_kiosk/media_player.py:46:14-25: Class member `FullyMediaPlayer._attr_state` overrides parent class `FullyKioskEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fully_kiosk/notify.py:28:9-12: Unexpected keyword argument `key` in function `FullyNotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/notify.py:29:9-24: Unexpected keyword argument `translation_key` in function `FullyNotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/notify.py:33:9-12: Unexpected keyword argument `key` in function `FullyNotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/notify.py:34:9-24: Unexpected keyword argument `translation_key` in function `FullyNotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/notify.py:55:5-23: Class member `FullyNotifyEntity.entity_description` overrides parent class `FullyKioskEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fully_kiosk/notify.py:55:5-23: Class member `FullyNotifyEntity.entity_description` overrides parent class `NotifyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fully_kiosk/number.py:18:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/number.py:19:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/number.py:24:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/number.py:27:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/number.py:28:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/number.py:32:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/number.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/number.py:36:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/number.py:41:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/number.py:44:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/number.py:45:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/number.py:49:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/number.py:79:14-32: Class member `FullyNumberEntity.entity_description` overrides parent class `FullyKioskEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fully_kiosk/sensor.py:53:9-12: Unexpected keyword argument `key` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:57:9-24: Unexpected keyword argument `entity_category` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:60:9-12: Unexpected keyword argument `key` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:62:9-24: Unexpected keyword argument `entity_category` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:66:9-12: Unexpected keyword argument `key` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:68:9-24: Unexpected keyword argument `entity_category` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:71:9-12: Unexpected keyword argument `key` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:73:9-24: Unexpected keyword argument `entity_category` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:76:9-12: Unexpected keyword argument `key` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:78:9-24: Unexpected keyword argument `entity_category` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:85:9-12: Unexpected keyword argument `key` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:87:9-24: Unexpected keyword argument `entity_category` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:94:9-12: Unexpected keyword argument `key` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:95:9-24: Unexpected keyword argument `translation_key` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:96:9-24: Unexpected keyword argument `entity_category` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:103:9-12: Unexpected keyword argument `key` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:104:9-24: Unexpected keyword argument `translation_key` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:105:9-24: Unexpected keyword argument `entity_category` in function `FullySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/sensor.py:131:5-23: Class member `FullySensor.entity_description` overrides parent class `FullyKioskEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fully_kiosk/sensor.py:131:5-23: Class member `FullySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fully_kiosk/switch.py:34:9-12: Unexpected keyword argument `key` in function `FullySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/switch.py:35:9-24: Unexpected keyword argument `translation_key` in function `FullySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/switch.py:43:9-12: Unexpected keyword argument `key` in function `FullySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/switch.py:44:9-24: Unexpected keyword argument `translation_key` in function `FullySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/switch.py:45:9-24: Unexpected keyword argument `entity_category` in function `FullySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/switch.py:53:9-12: Unexpected keyword argument `key` in function `FullySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/switch.py:54:9-24: Unexpected keyword argument `translation_key` in function `FullySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/switch.py:55:9-24: Unexpected keyword argument `entity_category` in function `FullySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/switch.py:63:9-12: Unexpected keyword argument `key` in function `FullySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/switch.py:64:9-24: Unexpected keyword argument `translation_key` in function `FullySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/switch.py:65:9-24: Unexpected keyword argument `entity_category` in function `FullySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/switch.py:73:9-12: Unexpected keyword argument `key` in function `FullySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/switch.py:74:9-24: Unexpected keyword argument `translation_key` in function `FullySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fully_kiosk/switch.py:100:5-23: Class member `FullySwitchEntity.entity_description` overrides parent class `FullyKioskEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fully_kiosk/switch.py:100:5-23: Class member `FullySwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/futurenow/light.py:7:8-14: Could not find import of `pyfnip` [missing-import] +ERROR homeassistant/components/futurenow/light.py:140:23-34: `bool` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/fyta/binary_sensor.py:33:9-12: Unexpected keyword argument `key` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:35:9-24: Unexpected keyword argument `entity_category` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:39:9-12: Unexpected keyword argument `key` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:41:9-24: Unexpected keyword argument `entity_category` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:42:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:46:9-12: Unexpected keyword argument `key` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:48:9-24: Unexpected keyword argument `entity_category` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:49:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:53:9-12: Unexpected keyword argument `key` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:55:9-24: Unexpected keyword argument `entity_category` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:56:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:60:9-12: Unexpected keyword argument `key` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:62:9-24: Unexpected keyword argument `entity_category` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:63:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:67:9-12: Unexpected keyword argument `key` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:69:9-24: Unexpected keyword argument `entity_category` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:73:9-12: Unexpected keyword argument `key` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:78:9-12: Unexpected keyword argument `key` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `FytaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/binary_sensor.py:113:5-23: Class member `FytaPlantBinarySensor.entity_description` overrides parent class `FytaPlantEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fyta/binary_sensor.py:113:5-23: Class member `FytaPlantBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fyta/coordinator.py:35:5-17: Class member `FytaCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fyta/image.py:39:9-12: Unexpected keyword argument `key` in function `FytaImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/image.py:40:9-24: Unexpected keyword argument `translation_key` in function `FytaImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/image.py:44:9-12: Unexpected keyword argument `key` in function `FytaImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/image.py:45:9-24: Unexpected keyword argument `translation_key` in function `FytaImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/image.py:78:5-23: Class member `FytaPlantImageEntity.entity_description` overrides parent class `FytaPlantEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fyta/image.py:78:5-23: Class member `FytaPlantImageEntity.entity_description` overrides parent class `ImageEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fyta/sensor.py:65:9-12: Unexpected keyword argument `key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:70:9-12: Unexpected keyword argument `key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:77:9-12: Unexpected keyword argument `key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:84:9-12: Unexpected keyword argument `key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:91:9-12: Unexpected keyword argument `key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:98:9-12: Unexpected keyword argument `key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:105:9-12: Unexpected keyword argument `key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:112:9-12: Unexpected keyword argument `key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:118:9-12: Unexpected keyword argument `key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:119:9-24: Unexpected keyword argument `translation_key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:124:9-12: Unexpected keyword argument `key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:130:9-12: Unexpected keyword argument `key` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:134:9-24: Unexpected keyword argument `entity_category` in function `FytaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:141:9-12: Unexpected keyword argument `key` in function `FytaMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:154:9-12: Unexpected keyword argument `key` in function `FytaMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:155:9-24: Unexpected keyword argument `translation_key` in function `FytaMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:167:9-12: Unexpected keyword argument `key` in function `FytaMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:180:9-12: Unexpected keyword argument `key` in function `FytaMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:181:9-24: Unexpected keyword argument `translation_key` in function `FytaMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/fyta/sensor.py:240:5-23: Class member `FytaPlantSensor.entity_description` overrides parent class `FytaPlantEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fyta/sensor.py:240:5-23: Class member `FytaPlantSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/fyta/sensor.py:252:5-23: Class member `FytaPlantMeasurementSensor.entity_description` overrides parent class `FytaPlantSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/garadget/cover.py:124:27-40: `Literal['offline']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/garadget/cover.py:133:27-40: `Literal['offline']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/garadget/cover.py:202:42-204:14: `() -> None` is not assignable to attribute `_unsub_listener_cover` with type `None` [bad-assignment] +ERROR homeassistant/components/garadget/cover.py:233:27-59: `CoverState | str | None` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/garadget/cover.py:240:27-40: `Literal['offline']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/garadget/cover.py:246:27-40: `Literal['offline']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/garadget/cover.py:253:42-46: `None` is not assignable to attribute `_unsub_listener_cover` with type `Never` [bad-assignment] +ERROR homeassistant/components/garages_amsterdam/binary_sensor.py:34:9-12: Unexpected keyword argument `key` in function `GaragesAmsterdamBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/garages_amsterdam/binary_sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `GaragesAmsterdamBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/garages_amsterdam/binary_sensor.py:63:5-23: Class member `GaragesAmsterdamBinarySensor.entity_description` overrides parent class `GaragesAmsterdamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/garages_amsterdam/binary_sensor.py:63:5-23: Class member `GaragesAmsterdamBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/garages_amsterdam/coordinator.py:19:5-17: Class member `GaragesAmsterdamDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/garages_amsterdam/sensor.py:35:9-12: Unexpected keyword argument `key` in function `GaragesAmsterdamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/garages_amsterdam/sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `GaragesAmsterdamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/garages_amsterdam/sensor.py:41:9-12: Unexpected keyword argument `key` in function `GaragesAmsterdamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/garages_amsterdam/sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `GaragesAmsterdamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/garages_amsterdam/sensor.py:47:9-12: Unexpected keyword argument `key` in function `GaragesAmsterdamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/garages_amsterdam/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `GaragesAmsterdamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/garages_amsterdam/sensor.py:52:9-12: Unexpected keyword argument `key` in function `GaragesAmsterdamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/garages_amsterdam/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `GaragesAmsterdamSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/garages_amsterdam/sensor.py:81:5-23: Class member `GaragesAmsterdamSensor.entity_description` overrides parent class `GaragesAmsterdamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/garages_amsterdam/sensor.py:81:5-23: Class member `GaragesAmsterdamSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gardena_bluetooth/__init__.py:103:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/gardena_bluetooth/binary_sensor.py:37:9-12: Unexpected keyword argument `key` in function `GardenaBluetoothBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/binary_sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `GardenaBluetoothBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/binary_sensor.py:40:9-24: Unexpected keyword argument `entity_category` in function `GardenaBluetoothBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/binary_sensor.py:44:9-12: Unexpected keyword argument `key` in function `GardenaBluetoothBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/binary_sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `GardenaBluetoothBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/binary_sensor.py:47:9-24: Unexpected keyword argument `entity_category` in function `GardenaBluetoothBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/binary_sensor.py:73:5-23: Class member `GardenaBluetoothBinarySensor.entity_description` overrides parent class `GardenaBluetoothDescriptorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gardena_bluetooth/binary_sensor.py:73:5-23: Class member `GardenaBluetoothBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gardena_bluetooth/binary_sensor.py:77:56-60: Argument `CharacteristicBool` is not assignable to parameter `char` with type `Characteristic[bool | None]` in function `homeassistant.components.gardena_bluetooth.coordinator.GardenaBluetoothCoordinator.get_cached` [bad-argument-type] +ERROR homeassistant/components/gardena_bluetooth/button.py:33:9-12: Unexpected keyword argument `key` in function `GardenaBluetoothButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/button.py:34:9-24: Unexpected keyword argument `translation_key` in function `GardenaBluetoothButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/button.py:35:9-24: Unexpected keyword argument `entity_category` in function `GardenaBluetoothButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/button.py:36:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `GardenaBluetoothButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/button.py:60:5-23: Class member `GardenaBluetoothButton.entity_description` overrides parent class `GardenaBluetoothDescriptorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gardena_bluetooth/button.py:60:5-23: Class member `GardenaBluetoothButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gardena_bluetooth/config_flow.py:73:51-63: Argument `str | None` is not assignable to parameter `address` with type `str` in function `homeassistant.components.gardena_bluetooth.get_connection` [bad-argument-type] +ERROR homeassistant/components/gardena_bluetooth/coordinator.py:34:5-17: Class member `GardenaBluetoothCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gardena_bluetooth/number.py:49:9-12: Unexpected keyword argument `key` in function `GardenaBluetoothNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/number.py:50:9-24: Unexpected keyword argument `translation_key` in function `GardenaBluetoothNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/number.py:56:9-24: Unexpected keyword argument `entity_category` in function `GardenaBluetoothNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/number.py:61:9-12: Unexpected keyword argument `key` in function `GardenaBluetoothNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/number.py:62:9-24: Unexpected keyword argument `translation_key` in function `GardenaBluetoothNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/number.py:67:9-24: Unexpected keyword argument `entity_category` in function `GardenaBluetoothNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/number.py:72:9-12: Unexpected keyword argument `key` in function `GardenaBluetoothNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/number.py:73:9-24: Unexpected keyword argument `translation_key` in function `GardenaBluetoothNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/number.py:79:9-24: Unexpected keyword argument `entity_category` in function `GardenaBluetoothNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/number.py:84:9-12: Unexpected keyword argument `key` in function `GardenaBluetoothNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/number.py:85:9-24: Unexpected keyword argument `translation_key` in function `GardenaBluetoothNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/number.py:91:9-24: Unexpected keyword argument `entity_category` in function `GardenaBluetoothNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/number.py:96:9-12: Unexpected keyword argument `key` in function `GardenaBluetoothNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/number.py:97:9-24: Unexpected keyword argument `translation_key` in function `GardenaBluetoothNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/number.py:103:9-24: Unexpected keyword argument `entity_category` in function `GardenaBluetoothNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/number.py:130:5-23: Class member `GardenaBluetoothNumber.entity_description` overrides parent class `GardenaBluetoothDescriptorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gardena_bluetooth/number.py:130:5-23: Class member `GardenaBluetoothNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gardena_bluetooth/number.py:161:5-23: Class member `GardenaBluetoothRemainingOpenSetNumber._attr_device_class` overrides parent class `GardenaBluetoothEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:44:9-12: Unexpected keyword argument `key` in function `GardenaBluetoothSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `GardenaBluetoothSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:47:9-24: Unexpected keyword argument `entity_category` in function `GardenaBluetoothSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:48:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `GardenaBluetoothSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:52:9-12: Unexpected keyword argument `key` in function `GardenaBluetoothSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:55:9-24: Unexpected keyword argument `entity_category` in function `GardenaBluetoothSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:60:9-12: Unexpected keyword argument `key` in function `GardenaBluetoothSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `GardenaBluetoothSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:64:9-24: Unexpected keyword argument `entity_category` in function `GardenaBluetoothSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:70:9-12: Unexpected keyword argument `key` in function `GardenaBluetoothSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:78:9-12: Unexpected keyword argument `key` in function `GardenaBluetoothSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `GardenaBluetoothSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:80:9-24: Unexpected keyword argument `entity_category` in function `GardenaBluetoothSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:85:9-12: Unexpected keyword argument `key` in function `GardenaBluetoothSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `GardenaBluetoothSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:88:9-24: Unexpected keyword argument `entity_category` in function `GardenaBluetoothSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:115:5-23: Class member `GardenaBluetoothSensor.entity_description` overrides parent class `GardenaBluetoothDescriptorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:115:5-23: Class member `GardenaBluetoothSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:134:5-23: Class member `GardenaBluetoothRemainSensor._attr_device_class` overrides parent class `GardenaBluetoothEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gardena_bluetooth/sensor.py:135:5-23: Class member `GardenaBluetoothRemainSensor._attr_native_value` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gardena_bluetooth/switch.py:57:56-67: Argument `CharacteristicBool` is not assignable to parameter `char` with type `Characteristic[bool | None]` in function `homeassistant.components.gardena_bluetooth.coordinator.GardenaBluetoothCoordinator.get_cached` [bad-argument-type] +ERROR homeassistant/components/gardena_bluetooth/valve.py:43:5-29: Class member `GardenaBluetoothValve._attr_supported_features` overrides parent class `GardenaBluetoothEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gardena_bluetooth/valve.py:44:5-23: Class member `GardenaBluetoothValve._attr_device_class` overrides parent class `GardenaBluetoothEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gc100/__init__.py:5:8-13: Could not find import of `gc100` [missing-import] +ERROR homeassistant/components/gdacs/diagnostics.py:26:33-72: `StatusUpdate | None` is not assignable to `StatusUpdate` [bad-assignment] +ERROR homeassistant/components/gdacs/geo_location.py:148:36-46: Argument `FeedEntry` is not assignable to parameter `feed_entry` with type `GdacsFeedEntry` in function `GdacsEvent._update_from_feed` [bad-argument-type] +ERROR homeassistant/components/gdacs/geo_location.py:155:55-65: `event_name` may be uninitialized [unbound-name] +ERROR homeassistant/components/gdacs/geo_location.py:163:31-56: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/gdacs/geo_location.py:164:32-57: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/generic/config_flow.py:179:15-18: `url` may be uninitialized [unbound-name] +ERROR homeassistant/components/generic/config_flow.py:265:25-38: `stream_source` may be uninitialized [unbound-name] +ERROR homeassistant/components/generic/config_flow.py:267:62-75: `stream_source` may be uninitialized [unbound-name] +ERROR homeassistant/components/generic/config_flow.py:338:9-31: Class member `GenericIPCamConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/generic_thermostat/climate.py:264:14-38: Class member `GenericThermostat._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/geniushub/__init__.py:176:13-38: Module `aiohttp.client_exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/geniushub/climate.py:48:5-29: Class member `GeniusClimateZone._attr_supported_features` overrides parent class `GeniusHeatingZone` in an inconsistent manner [bad-override] +ERROR homeassistant/components/geniushub/sensor.py:48:5-23: Class member `GeniusBattery._attr_device_class` overrides parent class `GeniusDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/geniushub/water_heater.py:55:5-29: Class member `GeniusWaterHeater._attr_supported_features` overrides parent class `GeniusHeatingZone` in an inconsistent manner [bad-override] +ERROR homeassistant/components/geo_json_events/geo_location.py:109:31-56: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/geo_json_events/geo_location.py:110:32-57: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/geo_rss_events/sensor.py:164:27-44: `int` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/geo_rss_events/sensor.py:171:38-44: `dict[@_, @_]` is not assignable to attribute `_state_attributes` with type `None` [bad-assignment] +ERROR homeassistant/components/geo_rss_events/sensor.py:181:27-28: `Literal[0]` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/geo_rss_events/sensor.py:182:38-40: `dict[@_, @_]` is not assignable to attribute `_state_attributes` with type `None` [bad-assignment] +ERROR homeassistant/components/geocaching/coordinator.py:23:5-17: Class member `GeocachingDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/geocaching/sensor.py:37:9-12: Unexpected keyword argument `key` in function `GeocachingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/geocaching/sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `GeocachingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/geocaching/sensor.py:42:9-12: Unexpected keyword argument `key` in function `GeocachingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/geocaching/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `GeocachingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/geocaching/sensor.py:44:9-40: Unexpected keyword argument `entity_registry_visible_default` in function `GeocachingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/geocaching/sensor.py:48:9-12: Unexpected keyword argument `key` in function `GeocachingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/geocaching/sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `GeocachingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/geocaching/sensor.py:50:9-40: Unexpected keyword argument `entity_registry_visible_default` in function `GeocachingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/geocaching/sensor.py:54:9-12: Unexpected keyword argument `key` in function `GeocachingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/geocaching/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `GeocachingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/geocaching/sensor.py:59:9-12: Unexpected keyword argument `key` in function `GeocachingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/geocaching/sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `GeocachingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/geocaching/sensor.py:61:9-40: Unexpected keyword argument `entity_registry_visible_default` in function `GeocachingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/geocaching/sensor.py:76:9-12: Unexpected keyword argument `key` in function `GeocachingCacheSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/geocaching/sensor.py:81:9-12: Unexpected keyword argument `key` in function `GeocachingCacheSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/geocaching/sensor.py:85:9-12: Unexpected keyword argument `key` in function `GeocachingCacheSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/geocaching/sensor.py:142:5-23: Class member `GeoEntityCacheSensorEntity.entity_description` overrides parent class `GeoEntityBaseCache` in an inconsistent manner [bad-override] +ERROR homeassistant/components/geocaching/sensor.py:142:5-23: Class member `GeoEntityCacheSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/geocaching/sensor.py:163:5-23: Class member `GeocachingProfileSensor.entity_description` overrides parent class `GeocachingBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/geocaching/sensor.py:163:5-23: Class member `GeocachingProfileSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/geofency/device_tracker.py:71:14-31: Class member `GeofencyEntity._attr_device_info` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/geofency/device_tracker.py:71:34-74:10: `TypedDict[DeviceInfo]` is not assignable to attribute `_attr_device_info` with type `None` [bad-assignment] +ERROR homeassistant/components/geofency/device_tracker.py:79:34-81:10: `() -> None` is not assignable to attribute `_unsub_dispatcher` with type `None` [bad-assignment] +ERROR homeassistant/components/geofency/device_tracker.py:98:9-31: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/geonetnz_quakes/__init__.py:139:25-53: Argument `timedelta` is not assignable to parameter `filter_time` with type `datetime` in function `aio_geojson_geonetnz_quakes.feed_manager.GeonetnzQuakesFeedManager.__init__` [bad-argument-type] +ERROR homeassistant/components/geonetnz_quakes/__init__.py:160:44-162:10: `() -> None` is not assignable to attribute `_track_time_remove_callback` with type `None` [bad-assignment] +ERROR homeassistant/components/geonetnz_quakes/geo_location.py:146:31-56: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/geonetnz_quakes/geo_location.py:147:32-57: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/geonetnz_quakes/geo_location.py:149:23-39: `float | None` is not assignable to attribute `_depth` with type `None` [bad-assignment] +ERROR homeassistant/components/geonetnz_quakes/geo_location.py:150:26-45: `str | None` is not assignable to attribute `_locality` with type `None` [bad-assignment] +ERROR homeassistant/components/geonetnz_quakes/geo_location.py:151:27-47: `float | None` is not assignable to attribute `_magnitude` with type `None` [bad-assignment] +ERROR homeassistant/components/geonetnz_quakes/geo_location.py:152:21-35: `int | None` is not assignable to attribute `_mmi` with type `None` [bad-assignment] +ERROR homeassistant/components/geonetnz_quakes/geo_location.py:153:25-43: `str | None` is not assignable to attribute `_quality` with type `None` [bad-assignment] +ERROR homeassistant/components/geonetnz_quakes/geo_location.py:154:22-37: `datetime | None` is not assignable to attribute `_time` with type `None` [bad-assignment] +ERROR homeassistant/components/geonetnz_quakes/sensor.py:67:38-71:10: `() -> None` is not assignable to attribute `_remove_signal_status` with type `None` [bad-assignment] +ERROR homeassistant/components/geonetnz_quakes/sensor.py:99:13-89: `datetime | None` is not assignable to attribute `_last_update` with type `None` [bad-assignment] +ERROR homeassistant/components/geonetnz_quakes/sensor.py:102:44-104:14: `datetime` is not assignable to attribute `_last_update_successful` with type `None` [bad-assignment] +ERROR homeassistant/components/geonetnz_volcano/__init__.py:152:44-154:10: `() -> None` is not assignable to attribute `_track_time_remove_callback` with type `None` [bad-assignment] +ERROR homeassistant/components/geonetnz_volcano/sensor.py:83:38-87:10: `() -> None` is not assignable to attribute `_remove_signal_update` with type `None` [bad-assignment] +ERROR homeassistant/components/geonetnz_volcano/sensor.py:113:30-120:14: `float` is not assignable to attribute `_distance` with type `None` [bad-assignment] +ERROR homeassistant/components/geonetnz_volcano/sensor.py:129:34-86: `datetime | None` is not assignable to attribute `_feed_last_update` with type `None` [bad-assignment] +ERROR homeassistant/components/geonetnz_volcano/sensor.py:131:13-87: `datetime | None` is not assignable to attribute `_feed_last_update_successful` with type `None` [bad-assignment] +ERROR homeassistant/components/gios/coordinator.py:35:5-17: Class member `GiosDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gios/sensor.py:60:9-12: Unexpected keyword argument `key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:67:9-12: Unexpected keyword argument `key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:75:9-12: Unexpected keyword argument `key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:83:9-12: Unexpected keyword argument `key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:91:9-12: Unexpected keyword argument `key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:99:9-12: Unexpected keyword argument `key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:104:9-24: Unexpected keyword argument `translation_key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:107:9-12: Unexpected keyword argument `key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:108:9-24: Unexpected keyword argument `translation_key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:115:9-12: Unexpected keyword argument `key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:123:9-12: Unexpected keyword argument `key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:131:9-12: Unexpected keyword argument `key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:139:9-12: Unexpected keyword argument `key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:144:9-24: Unexpected keyword argument `translation_key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:147:9-12: Unexpected keyword argument `key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:155:9-12: Unexpected keyword argument `key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:163:9-12: Unexpected keyword argument `key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:171:9-12: Unexpected keyword argument `key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:176:9-24: Unexpected keyword argument `translation_key` in function `GiosSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gios/sensor.py:221:5-23: Class member `GiosSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gios/sensor.py:221:5-23: Class member `GiosSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/github/__init__.py:26:21-36: Keyword argument `client_name` with type `str` is not assignable to parameter `**kwargs` with type `dict[GitHubClientKwarg, Any]` in function `aiogithubapi.github.GitHub.__init__` [bad-argument-type] +ERROR homeassistant/components/github/config_flow.py:48:45-50:22: No matching overload found for function `range.__new__` called with arguments: (type[range], int | None, int) [no-matching-overload] +ERROR homeassistant/components/github/config_flow.py:49:52-81: `+` is not supported between `None` and `Literal[1]` [unsupported-operation] +ERROR homeassistant/components/github/config_flow.py:54:17-37: Object of class `NoneType` has no attribute `extend` [missing-attribute] +ERROR homeassistant/components/github/config_flow.py:56:29-42: Argument `list[GitHubRepositoryModel] | None` is not assignable to parameter `*s` with type `Iterable[Unknown]` in function `set.update` [bad-argument-type] +ERROR homeassistant/components/github/config_flow.py:66:45-68:22: No matching overload found for function `range.__new__` called with arguments: (type[range], int | None, int) [no-matching-overload] +ERROR homeassistant/components/github/config_flow.py:67:52-81: `+` is not supported between `None` and `Literal[1]` [unsupported-operation] +ERROR homeassistant/components/github/config_flow.py:72:17-37: Object of class `NoneType` has no attribute `extend` [missing-attribute] +ERROR homeassistant/components/github/config_flow.py:74:29-42: Argument `list[GitHubRepositoryModel] | None` is not assignable to parameter `*s` with type `Iterable[Unknown]` in function `set.update` [bad-argument-type] +ERROR homeassistant/components/github/config_flow.py:132:29-59: Argument `str | None` is not assignable to parameter `device_code` with type `str` in function `aiogithubapi.device.GitHubDeviceAPI.activation` [bad-argument-type] +ERROR homeassistant/components/github/config_flow.py:140:29-44: Keyword argument `client_name` with type `str` is not assignable to parameter `**kwargs` with type `dict[GitHubClientKwarg, Any]` in function `aiogithubapi.device.GitHubDeviceAPI.__init__` [bad-argument-type] +ERROR homeassistant/components/github/config_flow.py:165:38-168:14: Argument `dict[str, str | None]` is not assignable to parameter `description_placeholders` with type `Mapping[str, str] | None` in function `homeassistant.data_entry_flow.FlowHandler.async_show_progress` [bad-argument-type] +ERROR homeassistant/components/github/config_flow.py:183:62-86: Argument `str | None` is not assignable to parameter `access_token` with type `str` in function `get_repositories` [bad-argument-type] +ERROR homeassistant/components/github/config_flow.py:210:9-31: Class member `GitHubConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/github/coordinator.py:108:5-17: Class member `GitHubDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/github/coordinator.py:132:15-33: Class member `GitHubDataUpdateCoordinator._async_update_data` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/github/coordinator.py:149:16-37: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/github/coordinator.py:166:28-46: Argument `(error: GitHubException) -> Coroutine[Unknown, Unknown, None]` is not assignable to parameter `error_callback` with type `(() -> Awaitable[None]) | None` in function `aiogithubapi.namespaces.events.GitHubEventsReposNamespace.subscribe` [bad-argument-type] +ERROR homeassistant/components/github/diagnostics.py:28:21-36: Keyword argument `client_name` with type `str` is not assignable to parameter `**kwargs` with type `dict[GitHubClientKwarg, Any]` in function `aiogithubapi.github.GitHub.__init__` [bad-argument-type] +ERROR homeassistant/components/github/diagnostics.py:36:30-62: Object of class `NoneType` has no attribute `as_dict` [missing-attribute] +ERROR homeassistant/components/github/sensor.py:37:9-12: Unexpected keyword argument `key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:39:9-24: Unexpected keyword argument `entity_category` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:44:9-12: Unexpected keyword argument `key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:46:9-24: Unexpected keyword argument `entity_category` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:51:9-12: Unexpected keyword argument `key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:53:9-24: Unexpected keyword argument `entity_category` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:58:9-12: Unexpected keyword argument `key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:60:9-24: Unexpected keyword argument `entity_category` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:65:9-12: Unexpected keyword argument `key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:67:9-24: Unexpected keyword argument `entity_category` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:72:9-12: Unexpected keyword argument `key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:73:9-24: Unexpected keyword argument `translation_key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:74:9-24: Unexpected keyword argument `entity_category` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:79:9-12: Unexpected keyword argument `key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:88:9-12: Unexpected keyword argument `key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:98:9-12: Unexpected keyword argument `key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:108:9-12: Unexpected keyword argument `key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:109:9-24: Unexpected keyword argument `translation_key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:118:9-12: Unexpected keyword argument `key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:119:9-24: Unexpected keyword argument `translation_key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:128:9-12: Unexpected keyword argument `key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:129:9-24: Unexpected keyword argument `translation_key` in function `GitHubSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/github/sensor.py:161:5-23: Class member `GitHubSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/github/sensor.py:161:5-23: Class member `GitHubSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gitlab_ci/sensor.py:8:1-69: Could not find import of `gitlab` [missing-import] +ERROR homeassistant/components/gitter/sensor.py:7:1-41: Could not find import of `gitterpy.client` [missing-import] +ERROR homeassistant/components/gitter/sensor.py:8:1-62: Could not find import of `gitterpy.errors` [missing-import] +ERROR homeassistant/components/gitter/sensor.py:112:27-44: `int` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/glances/coordinator.py:26:5-17: Class member `GlancesDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/glances/sensor.py:38:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:45:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:53:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:61:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:63:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:70:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:79:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:81:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:86:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:94:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:102:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:104:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:109:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:117:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:119:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:125:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:127:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:128:9-13: Unexpected keyword argument `icon` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:132:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:134:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:135:9-13: Unexpected keyword argument `icon` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:139:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:141:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:142:9-13: Unexpected keyword argument `icon` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:146:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:148:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:149:9-13: Unexpected keyword argument `icon` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:153:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:155:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:156:9-13: Unexpected keyword argument `icon` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:160:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:162:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:164:9-13: Unexpected keyword argument `icon` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:168:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:170:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:176:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:178:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:184:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:186:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:191:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:193:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:199:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:201:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:205:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:207:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:212:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:214:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:220:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:222:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:226:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:228:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:232:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:234:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:238:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:240:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:245:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:247:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:253:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:255:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:261:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:263:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:268:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:270:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:277:9-12: Unexpected keyword argument `key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:279:9-24: Unexpected keyword argument `translation_key` in function `GlancesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/glances/sensor.py:326:5-23: Class member `GlancesSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/glances/sensor.py:326:5-23: Class member `GlancesSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/go2rtc/__init__.py:212:45-69: Unpacked argument `tuple[Literal['go2rtc']]` is not assignable to parameter `*args` with type `tuple[PathLike[str] | str, int, PathLike[str] | str | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/go2rtc/__init__.py:272:26-31: `value` may be uninitialized [unbound-name] +ERROR homeassistant/components/go2rtc/__init__.py:317:40-53: `stream_source` may be uninitialized [unbound-name] +ERROR homeassistant/components/go2rtc/__init__.py:326:20-33: `stream_source` may be uninitialized [unbound-name] +ERROR homeassistant/components/go2rtc/__init__.py:327:49-62: `stream_source` may be uninitialized [unbound-name] +ERROR homeassistant/components/go2rtc/__init__.py:328:13-26: `stream_source` may be uninitialized [unbound-name] +ERROR homeassistant/components/go2rtc/__init__.py:350:13-26: `stream_source` may be uninitialized [unbound-name] +ERROR homeassistant/components/go2rtc/__init__.py:355:21-34: `stream_source` may be uninitialized [unbound-name] +ERROR homeassistant/components/goalzero/binary_sensor.py:23:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/binary_sensor.py:24:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/binary_sensor.py:27:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/binary_sensor.py:28:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/binary_sensor.py:30:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/binary_sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/binary_sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/binary_sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/binary_sensor.py:56:7-27: Field `entity_description` is declared `EntityDescription` in ancestor `class GoalZeroEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/goalzero/coordinator.py:19:5-17: Class member `GoalZeroDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/goalzero/sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:34:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:45:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:48:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:55:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:60:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:63:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:68:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:71:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:78:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:81:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:84:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:90:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:91:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:96:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:99:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:102:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:103:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:106:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:107:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:110:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:114:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:115:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:118:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:119:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:120:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:121:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:124:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:126:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:127:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/sensor.py:143:7-21: Field `entity_description` is declared `EntityDescription` in ancestor `class GoalZeroEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/goalzero/switch.py:16:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/switch.py:17:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/switch.py:20:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/switch.py:21:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/switch.py:24:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/switch.py:25:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goalzero/switch.py:41:7-21: Field `entity_description` is declared `EntityDescription` in ancestor `class GoalZeroEntity: ... +`, which is not assignable to the type `SwitchEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/gogogate2/config_flow.py:96:54-59: Argument `Any | None` is not assignable to parameter `title` with type `str` in function `homeassistant.config_entries.ConfigFlow.async_create_entry` [bad-argument-type] +ERROR homeassistant/components/gogogate2/coordinator.py:24:5-17: Class member `DeviceDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gogogate2/cover.py:46:5-29: Class member `DeviceCover._attr_supported_features` overrides parent class `GoGoGate2Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gogogate2/cover.py:57:14-32: Class member `DeviceCover._attr_device_class` overrides parent class `GoGoGate2Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gogogate2/entity.py:45:16-49: Returned type `DoorStatus | TransitionDoorStatus` is not assignable to declared return type `AbstractDoor` [bad-return] +ERROR homeassistant/components/gogogate2/sensor.py:39:9-43:10: Argument `list[DoorSensorTemperature]` is not assignable to parameter `*iterables` with type `Iterable[DoorSensorBattery]` in function `itertools.chain.__new__` [bad-argument-type] +ERROR homeassistant/components/goodwe/__init__.py:38:21-55: Argument `set[tuple[str, str | None]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/goodwe/button.py:29:5-8: Unexpected keyword argument `key` in function `GoodweButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/button.py:30:5-20: Unexpected keyword argument `translation_key` in function `GoodweButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/button.py:31:5-20: Unexpected keyword argument `entity_category` in function `GoodweButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/button.py:62:5-23: Class member `GoodweButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/goodwe/coordinator.py:35:5-17: Class member `GoodweUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/goodwe/number.py:46:9-12: Unexpected keyword argument `key` in function `GoodweNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/number.py:47:9-24: Unexpected keyword argument `translation_key` in function `GoodweNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/number.py:48:9-24: Unexpected keyword argument `entity_category` in function `GoodweNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/number.py:60:9-12: Unexpected keyword argument `key` in function `GoodweNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/number.py:61:9-24: Unexpected keyword argument `translation_key` in function `GoodweNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/number.py:62:9-24: Unexpected keyword argument `entity_category` in function `GoodweNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/number.py:72:9-12: Unexpected keyword argument `key` in function `GoodweNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/number.py:73:9-24: Unexpected keyword argument `translation_key` in function `GoodweNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/number.py:74:9-13: Unexpected keyword argument `icon` in function `GoodweNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/number.py:75:9-24: Unexpected keyword argument `entity_category` in function `GoodweNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/number.py:118:5-23: Class member `InverterNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/goodwe/select.py:34:5-8: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/select.py:35:5-20: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/select.py:36:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/sensor.py:92:9-12: Unexpected keyword argument `key` in function `GoodweSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/sensor.py:98:9-12: Unexpected keyword argument `key` in function `GoodweSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/sensor.py:104:9-12: Unexpected keyword argument `key` in function `GoodweSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/sensor.py:110:9-12: Unexpected keyword argument `key` in function `GoodweSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/sensor.py:118:9-12: Unexpected keyword argument `key` in function `GoodweSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/sensor.py:122:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `GoodweSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/sensor.py:125:9-12: Unexpected keyword argument `key` in function `GoodweSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/sensor.py:129:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `GoodweSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/sensor.py:132:9-12: Unexpected keyword argument `key` in function `GoodweSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/sensor.py:138:9-12: Unexpected keyword argument `key` in function `GoodweSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/sensor.py:144:9-12: Unexpected keyword argument `key` in function `GoodweSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/sensor.py:148:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `GoodweSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/sensor.py:151:9-12: Unexpected keyword argument `key` in function `GoodweSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/sensor.py:157:5-8: Unexpected keyword argument `key` in function `GoodweSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/sensor.py:161:5-8: Unexpected keyword argument `key` in function `GoodweSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/goodwe/sensor.py:190:5-23: Class member `InverterSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/goodwe/sensor.py:190:5-23: Class member `InverterSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/goodwe/sensor.py:215:37-50: No matching overload found for function `dict.get` called with arguments: (SensorKind | None) [no-matching-overload] +ERROR homeassistant/components/goodwe/sensor.py:218:18-36: Class member `InverterSensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/google/api.py:55:17-35: Object of class `Credentials` has no attribute `token_expiry` [missing-attribute] +ERROR homeassistant/components/google/api.py:57:44-62: Object of class `Credentials` has no attribute `token_expiry` [missing-attribute] +ERROR homeassistant/components/google/api.py:60:29-47: Object of class `Credentials` has no attribute `access_token` [missing-attribute] +ERROR homeassistant/components/google/api.py:61:30-49: Object of class `Credentials` has no attribute `refresh_token` [missing-attribute] +ERROR homeassistant/components/google/api.py:62:31-43: Object of class `Credentials` has no attribute `scopes` [missing-attribute] +ERROR homeassistant/components/google/api.py:134:67-81: Argument `BoundMethod[Self@DeviceFlow, (self: Self@DeviceFlow) -> Credentials]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/google/calendar.py:96:5-9: Class member `GoogleCalendarEntityDescription.name` overrides parent class `CalendarEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/google/calendar.py:152:13-16: Unexpected keyword argument `key` in function `GoogleCalendarEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/google/calendar.py:160:20-26: `search` may be uninitialized [unbound-name] +ERROR homeassistant/components/google/calendar.py:162:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `GoogleCalendarEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/google/calendar.py:169:13-19: `search` may be uninitialized [unbound-name] +ERROR homeassistant/components/google/calendar.py:284:53-287:18: Missing argument `calendarId` in function `gcal_sync.api.SyncEventsRequest.__init__` [missing-argument] +ERROR homeassistant/components/google/calendar.py:319:43-69: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/google/calendar.py:340:5-23: Class member `GoogleCalendarEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/google/calendar.py:340:5-23: Class member `GoogleCalendarEntity.entity_description` overrides parent class `CalendarEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/google/calendar.py:449:27-39: `offset_value` may be uninitialized [unbound-name] +ERROR homeassistant/components/google/config_flow.py:242:9-31: Class member `OAuth2FlowHandler.async_get_options_flow` overrides parent class `AbstractOAuth2FlowHandler` in an inconsistent manner [bad-override] +ERROR homeassistant/components/google/coordinator.py:51:5-17: Class member `CalendarSyncUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/google/coordinator.py:112:5-17: Class member `CalendarQueryUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/google/coordinator.py:139:36-144:10: Missing argument `calendarId` in function `gcal_sync.api.ListEventsRequest.__init__` [missing-argument] +ERROR homeassistant/components/google/coordinator.py:157:36-87: Missing argument `calendarId` in function `gcal_sync.api.ListEventsRequest.__init__` [missing-argument] +ERROR homeassistant/components/google_assistant/helpers.py:77:8-20: `entity_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_assistant/helpers.py:77:25-37: `entity_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_assistant/helpers.py:78:19-31: `entity_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_assistant/helpers.py:89:12-24: `entity_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_assistant/helpers.py:437:58-71: Argument `None` is not assignable to parameter `agent_user_id` with type `str` in function `homeassistant.components.google_assistant.data_redaction.async_redact_msg` [bad-argument-type] +ERROR homeassistant/components/google_assistant/helpers.py:458:65-70: `msgid` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_assistant/helpers.py:460:69-74: `msgid` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_assistant/helpers.py:622:13-40: Cannot set item in `list[str]` [unsupported-operation] +ERROR homeassistant/components/google_assistant/helpers.py:622:13-40: Cannot set item in `str` [unsupported-operation] +ERROR homeassistant/components/google_assistant/helpers.py:637:13-40: Object of class `list` has no attribute `update` +Object of class `str` has no attribute `update` [missing-attribute] +ERROR homeassistant/components/google_assistant/helpers.py:740:22-58: `State | None` is not assignable to attribute `state` with type `State` [bad-assignment] +ERROR homeassistant/components/google_assistant/http.py:252:34-55: Cannot index into `list[Any]` [bad-index] +ERROR homeassistant/components/google_assistant/http.py:253:40-84: `datetime` is not assignable to attribute `_access_token_renew` with type `None` [bad-assignment] +ERROR homeassistant/components/google_assistant/http.py:253:64-83: Cannot index into `list[Any]` [bad-index] +ERROR homeassistant/components/google_assistant/http.py:334:47-51: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_assistant/http.py:336:17-21: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_assistant/http.py:343:42-46: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_assistant/http.py:345:22-26: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_assistant/http.py:401:55-82: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[PathLike[str] | str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/google_assistant/report_state.py:65:44-61: Argument `HassJob[[now: Unknown | None = None], Coroutine[Unknown, Unknown, Unknown]]` is not assignable to parameter `action` with type `((datetime) -> Coroutine[Any, Any, None] | None) | HassJob[[datetime], Coroutine[Any, Any, None] | None]` in function `homeassistant.helpers.event.async_call_later` [bad-argument-type] +ERROR homeassistant/components/google_assistant/report_state.py:143:44-61: Argument `HassJob[[now: Unknown | None = None], Coroutine[Unknown, Unknown, Unknown]]` is not assignable to parameter `action` with type `((datetime) -> Coroutine[Any, Any, None] | None) | HassJob[[datetime], Coroutine[Any, Any, None] | None]` in function `homeassistant.helpers.event.async_call_later` [bad-argument-type] +ERROR homeassistant/components/google_assistant/report_state.py:164:54-77: Argument `(hass: HomeAssistant, old_state: str, old_attrs: dict[Unknown, Unknown], old_extra_arg: dict[Unknown, Unknown], new_state: str, new_attrs: dict[Unknown, Unknown], new_extra_arg: dict[Unknown, Unknown]) -> Unknown` is not assignable to parameter `extra_significant_check` with type `((HomeAssistant, str, MappingProxyType[Unknown, Unknown] | dict[Unknown, Unknown], Any, str, MappingProxyType[Unknown, Unknown] | dict[Unknown, Unknown], Any) -> bool | None) | None` in function `homeassistant.helpers.significant_change.create_checker` [bad-argument-type] +ERROR homeassistant/components/google_assistant/smart_home.py:256:17-261:18: Argument `Future[list[Unknown]]` is not assignable to parameter `arg` with type `Awaitable[tuple[Unknown]] | Future[tuple[Unknown]]` in function `asyncio.tasks.shield` [bad-argument-type] +ERROR homeassistant/components/google_assistant/trait.py:381:9-18: Class member `CameraStreamTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:420:9-18: Class member `ObjectDetection.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:478:9-18: Class member `OnOffTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:668:9-18: Class member `SceneTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:717:9-18: Class member `DockTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:766:9-18: Class member `LocatorTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:806:9-18: Class member `EnergyStorageTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:833:45-75: `descriptive_capacity_remaining` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_assistant/trait.py:861:9-18: Class member `StartStopTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:1027:9-18: Class member `TemperatureControlTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:1082:58-1089:18: Cannot set item in `dict[str, int]` [unsupported-operation] +ERROR homeassistant/components/google_assistant/trait.py:1091:57-1098:18: Cannot set item in `dict[str, int]` [unsupported-operation] +ERROR homeassistant/components/google_assistant/trait.py:1110:54-58: Cannot set item in `dict[str, int]` [unsupported-operation] +ERROR homeassistant/components/google_assistant/trait.py:1111:53-57: Cannot set item in `dict[str, int]` [unsupported-operation] +ERROR homeassistant/components/google_assistant/trait.py:1177:9-18: Class member `TemperatureSettingTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:1447:9-18: Class member `HumiditySettingTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:1534:9-18: Class member `LockUnlockTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:1600:9-18: Class member `ArmDisArmTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:1668:36-45: `arm_level` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_assistant/trait.py:1672:45-54: `arm_level` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_assistant/trait.py:1738:9-18: Class member `FanSpeedTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:1889:9-18: Class member `ModesTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:1928:13-36: Object of class `bool` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/google_assistant/trait.py:2120:9-18: Class member `InputSelectorTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:2192:9-18: Class member `OpenCloseTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:2345:9-18: Class member `VolumeTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:2526:9-18: Class member `TransportControlTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:2645:9-18: Class member `MediaStateTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:2672:9-18: Class member `ChannelTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant/trait.py:2771:9-18: Class member `SensorStateTrait.supported` overrides parent class `_Trait` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/google_assistant_sdk/helpers.py:109:29-67: Object of class `NoneType` has no attribute `format` [missing-attribute] +ERROR homeassistant/components/google_cloud/config_flow.py:115:71-85: Argument `() -> dict[str, Any]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/google_cloud/config_flow.py:134:9-31: Class member `GoogleCloudConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/google_cloud/tts.py:63:8-16: `key_file` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_cloud/tts.py:65:13-21: `key_file` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_drive/backup.py:109:15-36: Class member `GoogleDriveBackupAgent.async_download_backup` overrides parent class `BackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/google_generative_ai_conversation/ai_task.py:93:16-44: Object of class `ToolResultContent` has no attribute `content` [missing-attribute] +ERROR homeassistant/components/google_generative_ai_conversation/config_flow.py:343:53-71: `suggested_llm_apis` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_generative_ai_conversation/entity.py:388:43-65: `thinking_content_index` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_generative_ai_conversation/entity.py:395:25-47: `thinking_content_index` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_generative_ai_conversation/entity.py:402:43-56: `content_index` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_generative_ai_conversation/entity.py:409:25-38: `content_index` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_generative_ai_conversation/entity.py:422:39-54: `tool_call_index` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_generative_ai_conversation/entity.py:728:54-66: Argument `() -> list[File]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/google_mail/config_flow.py:64:56-68: Argument `() -> str` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/google_mail/config_flow.py:70:50-55: Argument `str | None` is not assignable to parameter `title` with type `str` in function `homeassistant.config_entries.ConfigFlow.async_create_entry` [bad-argument-type] +ERROR homeassistant/components/google_mail/notify.py:58:17-55: Object of class `Resource` has no attribute `users` [missing-attribute] +ERROR homeassistant/components/google_mail/notify.py:62:20-28: `to_addrs` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_mail/sensor.py:23:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/google_mail/sensor.py:24:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/google_mail/sensor.py:38:7-23: Field `entity_description` is declared `EntityDescription` in ancestor `class GoogleMailEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/google_mail/sensor.py:44:33-46: Object of class `Resource` has no attribute `users` [missing-attribute] +ERROR homeassistant/components/google_mail/services.py:88:13-26: Object of class `Resource` has no attribute `users` [missing-attribute] +ERROR homeassistant/components/google_maps/device_tracker.py:8:1-39: Could not find import of `locationsharinglib` [missing-import] +ERROR homeassistant/components/google_maps/device_tracker.py:9:1-75: Could not find import of `locationsharinglib.locationsharinglibexceptions` [missing-import] +ERROR homeassistant/components/google_maps/device_tracker.py:115:16-66: `<` is not supported between `datetime` and `str` [unsupported-operation] +ERROR homeassistant/components/google_maps/device_tracker.py:130:39-48: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR homeassistant/components/google_photos/coordinator.py:36:5-17: Class member `GooglePhotosUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/google_sheets/config_flow.py:82:57-84:14: Unpacked argument `tuple[Literal['Home Assistant']]` is not assignable to parameter `*args` with type `tuple[Unknown, Unknown | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/google_sheets/services.py:83:52-81: Object of class `tuple` has no attribute `user_entered` [missing-attribute] +ERROR homeassistant/components/google_tasks/api.py:63:28-45: Object of class `Resource` has no attribute `tasklists` [missing-attribute] +ERROR homeassistant/components/google_tasks/api.py:70:28-41: Object of class `Resource` has no attribute `tasks` [missing-attribute] +ERROR homeassistant/components/google_tasks/api.py:86:28-41: Object of class `Resource` has no attribute `tasks` [missing-attribute] +ERROR homeassistant/components/google_tasks/api.py:100:28-41: Object of class `Resource` has no attribute `tasks` [missing-attribute] +ERROR homeassistant/components/google_tasks/api.py:114:35-65: Object of class `Resource` has no attribute `new_batch_http_request` [missing-attribute] +ERROR homeassistant/components/google_tasks/api.py:127:17-30: Object of class `Resource` has no attribute `tasks` [missing-attribute] +ERROR homeassistant/components/google_tasks/api.py:144:28-41: Object of class `Resource` has no attribute `tasks` [missing-attribute] +ERROR homeassistant/components/google_tasks/api.py:156:53-63: Object of class `ServerNotFoundError` has no attribute `reason` [missing-attribute] +ERROR homeassistant/components/google_tasks/api.py:156:67-82: Object of class `ServerNotFoundError` has no attribute `status_code` [missing-attribute] +ERROR homeassistant/components/google_tasks/coordinator.py:25:5-17: Class member `TaskUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/google_travel_time/config_flow.py:215:9-31: Class member `GoogleTravelTimeConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/google_travel_time/sensor.py:97:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/google_travel_time/sensor.py:279:32-46: `departure_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_travel_time/sensor.py:280:30-42: `arrival_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/google_weather/coordinator.py:63:5-17: Class member `GoogleWeatherBaseCoordinator.config_entry` overrides parent class `TimestampDataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/google_wifi/sensor.py:56:9-12: Unexpected keyword argument `key` in function `GoogleWifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/google_wifi/sensor.py:59:9-13: Unexpected keyword argument `icon` in function `GoogleWifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/google_wifi/sensor.py:62:9-12: Unexpected keyword argument `key` in function `GoogleWifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/google_wifi/sensor.py:65:9-13: Unexpected keyword argument `icon` in function `GoogleWifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/google_wifi/sensor.py:68:9-12: Unexpected keyword argument `key` in function `GoogleWifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/google_wifi/sensor.py:72:9-13: Unexpected keyword argument `icon` in function `GoogleWifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/google_wifi/sensor.py:75:9-12: Unexpected keyword argument `key` in function `GoogleWifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/google_wifi/sensor.py:78:9-13: Unexpected keyword argument `icon` in function `GoogleWifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/google_wifi/sensor.py:81:9-12: Unexpected keyword argument `key` in function `GoogleWifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/google_wifi/sensor.py:84:9-13: Unexpected keyword argument `icon` in function `GoogleWifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/google_wifi/sensor.py:87:9-12: Unexpected keyword argument `key` in function `GoogleWifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/google_wifi/sensor.py:90:9-13: Unexpected keyword argument `icon` in function `GoogleWifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/google_wifi/sensor.py:130:5-23: Class member `GoogleWifiSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/google_wifi/sensor.py:199:20-60: `in` is not supported between `str` and `None` [not-iterable] +ERROR homeassistant/components/google_wifi/sensor.py:200:36-74: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/google_wifi/sensor.py:217:59-79: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/google_wifi/sensor.py:221:43-55: Cannot set item in `dict[str, None]` [unsupported-operation] +ERROR homeassistant/components/govee_ble/binary_sensor.py:31:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/govee_ble/binary_sensor.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/govee_ble/binary_sensor.py:39:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/govee_ble/binary_sensor.py:43:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/govee_ble/binary_sensor.py:94:7-39: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/govee_ble/binary_sensor.py:102:5-14: Class member `GoveeBluetoothBinarySensorEntity.processor` overrides parent class `PassiveBluetoothProcessorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/govee_ble/coordinator.py:90:5-16: Class member `GoveeBLEPassiveBluetoothDataProcessor.coordinator` overrides parent class `PassiveBluetoothDataProcessor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/govee_ble/event.py:26:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/govee_ble/event.py:27:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/govee_ble/event.py:34:5-8: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/govee_ble/event.py:39:5-8: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/govee_ble/event.py:41:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/govee_ble/sensor.py:39:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/govee_ble/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/govee_ble/sensor.py:51:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/govee_ble/sensor.py:60:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/govee_ble/sensor.py:64:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/govee_ble/sensor.py:70:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/govee_ble/sensor.py:123:7-33: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/govee_ble/sensor.py:131:5-14: Class member `GoveeBluetoothSensorEntity.processor` overrides parent class `PassiveBluetoothProcessorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/govee_ble/sensor.py:137:16-140:10: Returned type `ModelInfo | bool` is not assignable to declared return type `bool` [bad-return] +ERROR homeassistant/components/govee_light_local/__init__.py:37:34-49: list literal cannot be used in annotations [invalid-annotation] +ERROR homeassistant/components/govee_light_local/coordinator.py:102:31-38: Missing argument `scene` in function `govee_local_api.controller.GoveeController.set_scene` [missing-argument] +ERROR homeassistant/components/govee_light_local/coordinator.py:102:32-37: Argument `str` is not assignable to parameter `device` with type `GoveeDevice` in function `govee_local_api.controller.GoveeController.set_scene` [bad-argument-type] +ERROR homeassistant/components/govee_light_local/light.py:60:5-32: Class member `GoveeLight._attr_supported_color_modes` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/govee_light_local/light.py:64:5-29: Class member `GoveeLight._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/govee_light_local/light.py:185:54-66: Argument `GoveeDevice` is not assignable to parameter `device` with type `GoveeController` in function `homeassistant.components.govee_light_local.coordinator.GoveeLocalApiCoordinator.set_scene` [bad-argument-type] +ERROR homeassistant/components/govee_light_local/light.py:216:72-78: Argument `int | None` is not assignable to parameter `red` with type `int` in function `homeassistant.components.govee_light_local.coordinator.GoveeLocalApiCoordinator.set_rgb_color` [bad-argument-type] +ERROR homeassistant/components/govee_light_local/light.py:216:72-78: Argument `int | None` is not assignable to parameter `green` with type `int` in function `homeassistant.components.govee_light_local.coordinator.GoveeLocalApiCoordinator.set_rgb_color` [bad-argument-type] +ERROR homeassistant/components/govee_light_local/light.py:216:72-78: Argument `int | None` is not assignable to parameter `blue` with type `int` in function `homeassistant.components.govee_light_local.coordinator.GoveeLocalApiCoordinator.set_rgb_color` [bad-argument-type] +ERROR homeassistant/components/govee_light_local/light.py:218:74-80: Argument `int | None` is not assignable to parameter `temperature` with type `int` in function `homeassistant.components.govee_light_local.coordinator.GoveeLocalApiCoordinator.set_temperature` [bad-argument-type] +ERROR homeassistant/components/gpsd/__init__.py:27:39-49: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/gpsd/__init__.py:39:13-43:14: Argument `() -> Unknown` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/gpsd/__init__.py:46:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/gpsd/sensor.py:51:18-52: Object of class `DataStream` has no attribute `satellites` [missing-attribute] +ERROR homeassistant/components/gpsd/sensor.py:57:18-52: Object of class `DataStream` has no attribute `satellites` [missing-attribute] +ERROR homeassistant/components/gpsd/sensor.py:75:9-12: Unexpected keyword argument `key` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:77:9-13: Unexpected keyword argument `name` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:78:9-24: Unexpected keyword argument `entity_category` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:81:55-83: Object of class `DataStream` has no attribute `mode` [missing-attribute] +ERROR homeassistant/components/gpsd/sensor.py:84:9-12: Unexpected keyword argument `key` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:86:9-24: Unexpected keyword argument `entity_category` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:87:38-65: Object of class `DataStream` has no attribute `lat` [missing-attribute] +ERROR homeassistant/components/gpsd/sensor.py:88:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:91:9-12: Unexpected keyword argument `key` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:93:9-24: Unexpected keyword argument `entity_category` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:94:38-65: Object of class `DataStream` has no attribute `lon` [missing-attribute] +ERROR homeassistant/components/gpsd/sensor.py:95:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:98:9-12: Unexpected keyword argument `key` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:100:9-24: Unexpected keyword argument `entity_category` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:103:38-65: Object of class `DataStream` has no attribute `alt` [missing-attribute] +ERROR homeassistant/components/gpsd/sensor.py:105:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:108:9-12: Unexpected keyword argument `key` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:109:9-24: Unexpected keyword argument `translation_key` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:110:9-24: Unexpected keyword argument `entity_category` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:113:13-41: Object of class `DataStream` has no attribute `time` [missing-attribute] +ERROR homeassistant/components/gpsd/sensor.py:115:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:118:9-12: Unexpected keyword argument `key` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:119:9-24: Unexpected keyword argument `translation_key` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:120:9-24: Unexpected keyword argument `entity_category` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:123:38-67: Object of class `DataStream` has no attribute `speed` [missing-attribute] +ERROR homeassistant/components/gpsd/sensor.py:125:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:128:9-12: Unexpected keyword argument `key` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:129:9-24: Unexpected keyword argument `translation_key` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:130:9-24: Unexpected keyword argument `entity_category` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:133:38-67: Object of class `DataStream` has no attribute `climb` [missing-attribute] +ERROR homeassistant/components/gpsd/sensor.py:135:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:138:9-12: Unexpected keyword argument `key` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:139:9-24: Unexpected keyword argument `translation_key` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:140:9-24: Unexpected keyword argument `entity_category` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:143:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:146:9-12: Unexpected keyword argument `key` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:147:9-24: Unexpected keyword argument `translation_key` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:148:9-24: Unexpected keyword argument `entity_category` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:151:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `GpsdSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gpsd/sensor.py:179:5-23: Class member `GpsdSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gpslogger/device_tracker.py:83:14-31: Class member `GPSLoggerEntity._attr_device_info` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gpslogger/device_tracker.py:83:34-86:10: `TypedDict[DeviceInfo]` is not assignable to attribute `_attr_device_info` with type `None` [bad-assignment] +ERROR homeassistant/components/gpslogger/device_tracker.py:96:34-98:10: `() -> None` is not assignable to attribute `_unsub_dispatcher` with type `None` [bad-assignment] +ERROR homeassistant/components/gpslogger/device_tracker.py:134:9-31: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/graphite/__init__.py:107:9-34: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/gree/climate.py:109:5-29: Class member `GreeClimateEntity._attr_supported_features` overrides parent class `GreeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gree/climate.py:167:30-60: No matching overload found for function `dict.get` called with arguments: (int) [no-matching-overload] +ERROR homeassistant/components/gree/climate.py:189:40-73: Argument `Mode | None` is not assignable to parameter `value` with type `int` in function `greeclimate.device.Device.mode` [bad-argument-type] +ERROR homeassistant/components/gree/climate.py:254:29-36: No matching overload found for function `dict.get` called with arguments: (int) [no-matching-overload] +ERROR homeassistant/components/gree/climate.py:261:45-76: Argument `FanSpeed | None` is not assignable to parameter `value` with type `int` in function `greeclimate.device.Device.fan_speed` [bad-argument-type] +ERROR homeassistant/components/gree/coordinator.py:48:5-17: Class member `DeviceDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gree/switch.py:60:9-12: Unexpected keyword argument `key` in function `GreeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gree/switch.py:61:9-24: Unexpected keyword argument `translation_key` in function `GreeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gree/switch.py:66:9-12: Unexpected keyword argument `key` in function `GreeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gree/switch.py:67:9-24: Unexpected keyword argument `translation_key` in function `GreeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gree/switch.py:72:9-12: Unexpected keyword argument `key` in function `GreeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gree/switch.py:73:9-24: Unexpected keyword argument `translation_key` in function `GreeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gree/switch.py:78:9-12: Unexpected keyword argument `key` in function `GreeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gree/switch.py:79:9-24: Unexpected keyword argument `translation_key` in function `GreeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gree/switch.py:84:9-12: Unexpected keyword argument `key` in function `GreeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gree/switch.py:85:9-24: Unexpected keyword argument `translation_key` in function `GreeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gree/switch.py:88:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `GreeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/gree/switch.py:120:5-23: Class member `GreeSwitch._attr_device_class` overrides parent class `GreeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gree/switch.py:121:5-23: Class member `GreeSwitch.entity_description` overrides parent class `GreeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gree/switch.py:121:5-23: Class member `GreeSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/greeneye_monitor/sensor.py:175:14-21: Class member `CurrentSensor._sensor` overrides parent class `GEMSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/greeneye_monitor/sensor.py:212:14-21: Class member `PulseCounter._sensor` overrides parent class `GEMSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/greeneye_monitor/sensor.py:263:14-21: Class member `TemperatureSensor._sensor` overrides parent class `GEMSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/greeneye_monitor/sensor.py:283:14-21: Class member `VoltageSensor._sensor` overrides parent class `GEMSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/greenwave/light.py:10:8-37: Could not find import of `greenwavereality` [missing-import] +ERROR homeassistant/components/group/__init__.py:238:17-55: Argument `Any | None` is not assignable to parameter `name` with type `str` in function `homeassistant.components.group.entity.Group.async_create_group` [bad-argument-type] +ERROR homeassistant/components/group/config_flow.py:429:60-75: Argument `_HandlerT` is not assignable to parameter `entry_id` with type `str` in function `homeassistant.config_entries.ConfigEntries.async_get_entry` [bad-argument-type] +ERROR homeassistant/components/group/config_flow.py:436:70-85: Argument `_HandlerT` is not assignable to parameter `config_entry_id` with type `str` in function `homeassistant.helpers.entity_registry.async_entries_for_config_entry` [bad-argument-type] +ERROR homeassistant/components/group/cover.py:332:14-38: Class member `CoverGroup._attr_supported_features` overrides parent class `GroupEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/group/entity.py:326:60-86: Cannot set item in `dict[str, SingleStateType]` [unsupported-operation] +ERROR homeassistant/components/group/entity.py:404:40-49: `new_state` may be uninitialized [unbound-name] +ERROR homeassistant/components/group/entity.py:494:12-21: `component` may be uninitialized [unbound-name] +ERROR homeassistant/components/group/fan.py:299:14-38: Class member `FanGroup._attr_supported_features` overrides parent class `GroupEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/group/light.py:305:14-38: Class member `LightGroup._attr_supported_features` overrides parent class `GroupEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/group/lock.py:120:14-38: Class member `LockGroup._attr_supported_features` overrides parent class `GroupEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/group/sensor.py:365:14-32: Class member `SensorGroup._attr_device_class` overrides parent class `GroupEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/group/valve.py:262:14-38: Class member `ValveGroup._attr_supported_features` overrides parent class `GroupEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/growatt_server/__init__.py:40:53-67: `login_response` is uninitialized [unbound-name] +ERROR homeassistant/components/growatt_server/config_flow.py:76:68-78:14: Unpacked argument `tuple[Any, Any]` is not assignable to parameter `*args` with type `tuple[Unknown, Unknown, bool | Unknown]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/growatt_server/config_flow.py:112:69-88: Argument `BoundMethod[OpenApiV1, (self: OpenApiV1) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/growatt_server/coordinator.py:61:24-63:14: `GrowattApi` is not assignable to attribute `api` with type `OpenApiV1` [bad-assignment] +ERROR homeassistant/components/growatt_server/coordinator.py:181:59-81: Argument `BoundMethod[Self@GrowattCoordinator, (self: Self@GrowattCoordinator) -> dict[str, Any]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/growatt_server/number.py:41:9-12: Unexpected keyword argument `key` in function `GrowattNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/number.py:42:9-24: Unexpected keyword argument `translation_key` in function `GrowattNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/number.py:51:9-12: Unexpected keyword argument `key` in function `GrowattNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/number.py:52:9-24: Unexpected keyword argument `translation_key` in function `GrowattNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/number.py:61:9-12: Unexpected keyword argument `key` in function `GrowattNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/number.py:62:9-24: Unexpected keyword argument `translation_key` in function `GrowattNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/number.py:71:9-12: Unexpected keyword argument `key` in function `GrowattNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/number.py:72:9-24: Unexpected keyword argument `translation_key` in function `GrowattNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/number.py:108:5-23: Class member `GrowattNumber.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/growatt_server/number.py:108:5-23: Class member `GrowattNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/growatt_server/sensor/__init__.py:84:5-23: Class member `GrowattSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/growatt_server/sensor/__init__.py:84:5-23: Class member `GrowattSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:19:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:20:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:28:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:29:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:38:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:46:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:47:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:55:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:56:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:64:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:65:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:73:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:74:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:82:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:83:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:91:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:92:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:100:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:101:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:109:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:110:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:118:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:119:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:127:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:128:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:136:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:137:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:145:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:146:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:154:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:155:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:163:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:164:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:172:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:173:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:181:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/inverter.py:182:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:18:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:19:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:26:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:32:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:33:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:41:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:48:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:55:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:56:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:62:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:63:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:70:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:71:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:77:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:78:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:84:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:85:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:91:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:92:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:99:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:100:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:106:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:107:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:114:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:115:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:121:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:122:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:130:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:131:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:137:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:138:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:144:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:145:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:151:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:152:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:158:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:159:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:165:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:166:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:172:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:173:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:179:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:180:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:186:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:187:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:194:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:195:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:201:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:202:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:208:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:209:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:215:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:216:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:222:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:223:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:230:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:231:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:237:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/mix.py:238:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:19:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:20:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:27:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:28:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:36:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:43:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:44:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:51:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:52:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:59:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:60:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:67:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:68:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:75:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:76:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:83:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:84:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:91:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:92:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:99:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:100:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:107:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:108:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:115:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:116:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:123:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:124:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:131:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:132:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:139:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:140:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:146:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:147:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:154:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:155:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:162:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:163:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:170:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:171:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:178:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:179:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:186:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:187:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:195:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:196:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:204:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:205:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:213:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:214:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:222:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:223:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:231:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:232:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:240:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:241:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:249:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:250:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:258:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:259:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:267:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:268:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:276:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:277:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:285:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:286:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:294:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/storage.py:295:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:23:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:24:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:32:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:33:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:43:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:53:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:61:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:62:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:69:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:70:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:77:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:78:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:85:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:86:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:95:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:96:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:104:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:105:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:112:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:113:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:120:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:121:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:128:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:129:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:138:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:139:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:147:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:148:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:155:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:156:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:163:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:164:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:171:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:172:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:181:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:182:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:190:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:191:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:198:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:199:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:206:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:207:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:214:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:215:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:223:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:224:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:232:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:233:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:240:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:241:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:248:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:249:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:256:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:257:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:264:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:265:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:272:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:273:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:280:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:281:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:288:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:289:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:296:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:297:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:304:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:305:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:312:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:313:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:321:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:322:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:328:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:329:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:337:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:338:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:344:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:345:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:353:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:354:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:361:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:362:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:370:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:371:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:377:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:378:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:386:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:387:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:393:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:394:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:402:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:403:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:410:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:411:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:419:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:420:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:427:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:428:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:436:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:437:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:443:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:444:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:451:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:452:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:459:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:460:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:467:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:468:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:476:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:477:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:486:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:487:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:495:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:496:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:505:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:506:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:514:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:515:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:524:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:525:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:533:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:534:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:543:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:544:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:551:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/tlx.py:552:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/total.py:12:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/total.py:13:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/total.py:18:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/total.py:19:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/total.py:24:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/total.py:25:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/total.py:32:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/total.py:33:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/total.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/total.py:41:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/total.py:48:9-12: Unexpected keyword argument `key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/sensor/total.py:49:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.growatt_server.sensor.sensor_entity_description.GrowattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/switch.py:42:9-12: Unexpected keyword argument `key` in function `GrowattSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/switch.py:43:9-24: Unexpected keyword argument `translation_key` in function `GrowattSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/growatt_server/switch.py:75:5-23: Class member `GrowattSwitch.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/growatt_server/switch.py:75:5-23: Class member `GrowattSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/gtfs/sensor.py:11:8-14: Could not find import of `pygtfs` [missing-import] +ERROR homeassistant/components/gtfs/sensor.py:640:36-41: `Literal[False]` is not assignable to attribute `_agency` with type `None` [bad-assignment] +ERROR homeassistant/components/guardian/binary_sensor.py:61:9-12: Unexpected keyword argument `key` in function `PairedSensorBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/binary_sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `PairedSensorBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/binary_sensor.py:67:9-12: Unexpected keyword argument `key` in function `PairedSensorBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/binary_sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `PairedSensorBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/binary_sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `PairedSensorBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/binary_sensor.py:77:9-12: Unexpected keyword argument `key` in function `ValveControllerBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/binary_sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `ValveControllerBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/binary_sensor.py:148:5-23: Class member `PairedSensorBinarySensor.entity_description` overrides parent class `PairedSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/guardian/binary_sensor.py:148:5-23: Class member `PairedSensorBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/guardian/binary_sensor.py:170:5-23: Class member `ValveControllerBinarySensor.entity_description` overrides parent class `ValveControllerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/guardian/binary_sensor.py:170:5-23: Class member `ValveControllerBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/guardian/button.py:51:9-12: Unexpected keyword argument `key` in function `ValveControllerButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/button.py:59:9-12: Unexpected keyword argument `key` in function `ValveControllerButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/button.py:60:9-24: Unexpected keyword argument `translation_key` in function `ValveControllerButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/button.py:85:5-23: Class member `GuardianButton._attr_device_class` overrides parent class `ValveControllerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/guardian/button.py:88:5-23: Class member `GuardianButton.entity_description` overrides parent class `ValveControllerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/guardian/button.py:88:5-23: Class member `GuardianButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/guardian/button.py:104:20-32: Cannot use `Client` as a context manager [bad-context-manager] +ERROR homeassistant/components/guardian/config_flow.py:48:16-45: Cannot use `Client` as a context manager [bad-context-manager] +ERROR homeassistant/components/guardian/coordinator.py:30:5-17: Class member `GuardianDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/guardian/coordinator.py:62:36-48: Cannot use `Client` as a context manager [bad-context-manager] +ERROR homeassistant/components/guardian/sensor.py:68:9-12: Unexpected keyword argument `key` in function `PairedSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `PairedSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:75:9-12: Unexpected keyword argument `key` in function `PairedSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:84:9-12: Unexpected keyword argument `key` in function `ValveControllerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `ValveControllerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:87:9-24: Unexpected keyword argument `entity_category` in function `ValveControllerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:93:9-12: Unexpected keyword argument `key` in function `ValveControllerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:94:9-24: Unexpected keyword argument `translation_key` in function `ValveControllerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:96:9-24: Unexpected keyword argument `entity_category` in function `ValveControllerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:102:9-12: Unexpected keyword argument `key` in function `ValveControllerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:103:9-24: Unexpected keyword argument `translation_key` in function `ValveControllerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:105:9-24: Unexpected keyword argument `entity_category` in function `ValveControllerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:111:9-12: Unexpected keyword argument `key` in function `ValveControllerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:119:9-12: Unexpected keyword argument `key` in function `ValveControllerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:120:9-24: Unexpected keyword argument `translation_key` in function `ValveControllerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:121:9-24: Unexpected keyword argument `entity_category` in function `ValveControllerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:127:9-12: Unexpected keyword argument `key` in function `ValveControllerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `ValveControllerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:129:9-24: Unexpected keyword argument `entity_category` in function `ValveControllerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/sensor.py:185:5-23: Class member `PairedSensorSensor.entity_description` overrides parent class `PairedSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/guardian/sensor.py:185:5-23: Class member `PairedSensorSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/guardian/sensor.py:196:5-23: Class member `ValveControllerSensor.entity_description` overrides parent class `ValveControllerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/guardian/sensor.py:196:5-23: Class member `ValveControllerSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/guardian/services.py:89:24-35: Cannot use `Client` as a context manager [bad-context-manager] +ERROR homeassistant/components/guardian/switch.py:47:16-22: Cannot use `Client` as a context manager [bad-context-manager] +ERROR homeassistant/components/guardian/switch.py:53:16-22: Cannot use `Client` as a context manager [bad-context-manager] +ERROR homeassistant/components/guardian/switch.py:59:16-22: Cannot use `Client` as a context manager [bad-context-manager] +ERROR homeassistant/components/guardian/switch.py:65:16-22: Cannot use `Client` as a context manager [bad-context-manager] +ERROR homeassistant/components/guardian/switch.py:82:9-12: Unexpected keyword argument `key` in function `ValveControllerSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/switch.py:83:9-24: Unexpected keyword argument `translation_key` in function `ValveControllerSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/switch.py:84:9-24: Unexpected keyword argument `entity_category` in function `ValveControllerSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/switch.py:95:9-12: Unexpected keyword argument `key` in function `ValveControllerSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/switch.py:96:9-24: Unexpected keyword argument `translation_key` in function `ValveControllerSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/switch.py:128:5-23: Class member `ValveControllerSwitch.entity_description` overrides parent class `ValveControllerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/guardian/switch.py:128:5-23: Class member `ValveControllerSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/guardian/valve.py:58:16-22: Cannot use `Client` as a context manager [bad-context-manager] +ERROR homeassistant/components/guardian/valve.py:64:16-22: Cannot use `Client` as a context manager [bad-context-manager] +ERROR homeassistant/components/guardian/valve.py:70:16-22: Cannot use `Client` as a context manager [bad-context-manager] +ERROR homeassistant/components/guardian/valve.py:96:9-12: Unexpected keyword argument `key` in function `ValveControllerValveDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/valve.py:97:9-24: Unexpected keyword argument `translation_key` in function `ValveControllerValveDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/guardian/valve.py:127:5-29: Class member `ValveControllerValve._attr_supported_features` overrides parent class `ValveControllerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/guardian/valve.py:130:5-23: Class member `ValveControllerValve.entity_description` overrides parent class `ValveControllerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/guardian/valve.py:130:5-23: Class member `ValveControllerValve.entity_description` overrides parent class `ValveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/binary_sensor.py:50:9-12: Unexpected keyword argument `key` in function `HabiticaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/binary_sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `HabiticaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/binary_sensor.py:87:5-23: Class member `HabiticaBinarySensorEntity.entity_description` overrides parent class `HabiticaBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/binary_sensor.py:87:5-23: Class member `HabiticaBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/binary_sensor.py:107:5-23: Class member `HabiticaPartyBinarySensorEntity.entity_description` overrides parent class `HabiticaPartyBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/binary_sensor.py:108:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/binary_sensor.py:109:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:61:9-12: Unexpected keyword argument `key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:62:9-24: Unexpected keyword argument `translation_key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:67:9-12: Unexpected keyword argument `key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:68:9-24: Unexpected keyword argument `translation_key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:77:9-12: Unexpected keyword argument `key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:78:9-24: Unexpected keyword argument `translation_key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:86:9-12: Unexpected keyword argument `key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:87:9-24: Unexpected keyword argument `translation_key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:96:9-12: Unexpected keyword argument `key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:97:9-24: Unexpected keyword argument `translation_key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:107:9-12: Unexpected keyword argument `key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:108:9-24: Unexpected keyword argument `translation_key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:118:9-12: Unexpected keyword argument `key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:119:9-24: Unexpected keyword argument `translation_key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:131:9-12: Unexpected keyword argument `key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:132:9-24: Unexpected keyword argument `translation_key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:142:9-12: Unexpected keyword argument `key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:143:9-24: Unexpected keyword argument `translation_key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:153:9-12: Unexpected keyword argument `key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:154:9-24: Unexpected keyword argument `translation_key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:164:9-12: Unexpected keyword argument `key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:165:9-24: Unexpected keyword argument `translation_key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:175:9-12: Unexpected keyword argument `key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:176:9-24: Unexpected keyword argument `translation_key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:198:9-12: Unexpected keyword argument `key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:199:9-24: Unexpected keyword argument `translation_key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:210:9-12: Unexpected keyword argument `key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:211:9-24: Unexpected keyword argument `translation_key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:221:9-12: Unexpected keyword argument `key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:222:9-24: Unexpected keyword argument `translation_key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:232:9-12: Unexpected keyword argument `key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:233:9-24: Unexpected keyword argument `translation_key` in function `HabiticaButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/button.py:296:5-23: Class member `HabiticaButton.entity_description` overrides parent class `HabiticaBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/button.py:296:5-23: Class member `HabiticaButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/calendar.py:58:7-29: Field `entity_description` is declared `EntityDescription` in ancestor `class HabiticaBase: ... +`, which is not assignable to the type `CalendarEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/habitica/calendar.py:109:5-23: Class member `HabiticaTodosCalendarEntity.entity_description` overrides parent class `HabiticaCalendarEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/calendar.py:110:9-12: Unexpected keyword argument `key` in function `homeassistant.components.calendar.CalendarEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/calendar.py:111:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.calendar.CalendarEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/calendar.py:163:5-23: Class member `HabiticaDailiesCalendarEntity.entity_description` overrides parent class `HabiticaCalendarEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/calendar.py:164:9-12: Unexpected keyword argument `key` in function `homeassistant.components.calendar.CalendarEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/calendar.py:165:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.calendar.CalendarEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/calendar.py:256:5-23: Class member `HabiticaTodoRemindersCalendarEntity.entity_description` overrides parent class `HabiticaCalendarEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/calendar.py:257:9-12: Unexpected keyword argument `key` in function `homeassistant.components.calendar.CalendarEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/calendar.py:258:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.calendar.CalendarEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/calendar.py:310:5-23: Class member `HabiticaDailyRemindersCalendarEntity.entity_description` overrides parent class `HabiticaCalendarEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/calendar.py:311:9-12: Unexpected keyword argument `key` in function `homeassistant.components.calendar.CalendarEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/calendar.py:312:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.calendar.CalendarEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/coordinator.py:66:5-17: Class member `HabiticaBaseCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/coordinator.py:67:5-21: Class member `HabiticaBaseCoordinator._update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/image.py:77:9-12: Unexpected keyword argument `key` in function `homeassistant.components.image.ImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/image.py:78:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.image.ImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/image.py:137:9-12: Unexpected keyword argument `key` in function `homeassistant.components.image.ImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/image.py:138:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.image.ImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/notify.py:95:7-31: Field `entity_description` is declared `EntityDescription` in ancestor `class HabiticaBase: ... +`, which is not assignable to the type `NotifyEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/habitica/notify.py:162:14-32: Class member `HabiticaPartyChatNotifyEntity.entity_description` overrides parent class `HabiticaBaseNotifyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/notify.py:163:13-16: Unexpected keyword argument `key` in function `homeassistant.components.notify.NotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/notify.py:164:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.notify.NotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/notify.py:188:14-32: Class member `HabiticaPrivateMessageNotifyEntity.entity_description` overrides parent class `HabiticaBaseNotifyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/notify.py:189:13-16: Unexpected keyword argument `key` in function `homeassistant.components.notify.NotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/notify.py:190:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.notify.NotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:124:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:144:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:145:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:151:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:152:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:158:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:159:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:164:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:165:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:170:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:171:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:176:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:177:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:181:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:182:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:188:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:189:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:196:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:197:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:204:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:205:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:212:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:213:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:220:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:221:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:232:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:233:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:239:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:240:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:246:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:247:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:254:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:255:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:261:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:262:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:270:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:271:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:279:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:280:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:285:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:286:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:292:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:293:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:299:9-12: Unexpected keyword argument `key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:300:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:308:9-12: Unexpected keyword argument `key` in function `HabiticaPartySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:309:9-24: Unexpected keyword argument `translation_key` in function `HabiticaPartySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:314:9-12: Unexpected keyword argument `key` in function `HabiticaPartySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:315:9-24: Unexpected keyword argument `translation_key` in function `HabiticaPartySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:319:9-12: Unexpected keyword argument `key` in function `HabiticaPartySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:320:9-24: Unexpected keyword argument `translation_key` in function `HabiticaPartySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:330:9-12: Unexpected keyword argument `key` in function `HabiticaPartySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:331:9-24: Unexpected keyword argument `translation_key` in function `HabiticaPartySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:335:9-12: Unexpected keyword argument `key` in function `HabiticaPartySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:336:9-24: Unexpected keyword argument `translation_key` in function `HabiticaPartySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:342:9-12: Unexpected keyword argument `key` in function `HabiticaPartySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:343:9-24: Unexpected keyword argument `translation_key` in function `HabiticaPartySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:349:9-12: Unexpected keyword argument `key` in function `HabiticaPartySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:350:9-24: Unexpected keyword argument `translation_key` in function `HabiticaPartySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:365:9-12: Unexpected keyword argument `key` in function `HabiticaPartySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:366:9-24: Unexpected keyword argument `translation_key` in function `HabiticaPartySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:372:9-12: Unexpected keyword argument `key` in function `HabiticaPartySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:373:9-24: Unexpected keyword argument `translation_key` in function `HabiticaPartySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/sensor.py:433:5-23: Class member `HabiticaSensor.entity_description` overrides parent class `HabiticaBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/sensor.py:433:5-23: Class member `HabiticaSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/sensor.py:486:5-23: Class member `HabiticaPartySensor.entity_description` overrides parent class `HabiticaPartyBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/sensor.py:486:5-23: Class member `HabiticaPartySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/services.py:718:9-27: `add_checklist_item` may be uninitialized [unbound-name] +ERROR homeassistant/components/habitica/services.py:719:12-33: `remove_checklist_item` may be uninitialized [unbound-name] +ERROR homeassistant/components/habitica/services.py:720:12-32: `score_checklist_item` may be uninitialized [unbound-name] +ERROR homeassistant/components/habitica/services.py:721:12-34: `unscore_checklist_item` may be uninitialized [unbound-name] +ERROR homeassistant/components/habitica/services.py:775:8-21: `add_reminders` may be uninitialized [unbound-name] +ERROR homeassistant/components/habitica/services.py:775:25-40: `remove_reminder` may be uninitialized [unbound-name] +ERROR homeassistant/components/habitica/services.py:775:44-59: `clear_reminders` may be uninitialized [unbound-name] +ERROR homeassistant/components/habitica/switch.py:43:9-12: Unexpected keyword argument `key` in function `HabiticaSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/switch.py:44:9-24: Unexpected keyword argument `translation_key` in function `HabiticaSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/switch.py:70:5-23: Class member `HabiticaSwitch.entity_description` overrides parent class `HabiticaBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/switch.py:70:5-23: Class member `HabiticaSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/habitica/todo.py:257:9-12: Unexpected keyword argument `key` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/todo.py:258:9-24: Unexpected keyword argument `translation_key` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/todo.py:288:22-33: `tasks_order` is uninitialized [unbound-name] +ERROR homeassistant/components/habitica/todo.py:333:9-12: Unexpected keyword argument `key` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/todo.py:334:9-24: Unexpected keyword argument `translation_key` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/habitica/todo.py:374:22-33: `tasks_order` is uninitialized [unbound-name] +ERROR homeassistant/components/hardkernel/hardware.py:30:12-17: `board` is uninitialized [unbound-name] +ERROR homeassistant/components/hardkernel/hardware.py:40:33-38: `board` is uninitialized [unbound-name] +ERROR homeassistant/components/hardkernel/hardware.py:42:23-28: `board` is uninitialized [unbound-name] +ERROR homeassistant/components/hardkernel/hardware.py:47:34-39: `board` is uninitialized [unbound-name] +ERROR homeassistant/components/hardkernel/hardware.py:47:77-82: `board` is uninitialized [unbound-name] +ERROR homeassistant/components/hardware/__init__.py:30:57-80: Argument `type[PsutilWrapper]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/hardware/models.py:26:16-25: Expected a type form, got instance of `Module[psutil_home_assistant]` [not-a-type] +ERROR homeassistant/components/hardware/models.py:67:50-68: Function declared to return `list[HardwareInfo]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/harman_kardon_avr/media_player.py:5:8-13: Could not find import of `hkavr` [missing-import] +ERROR homeassistant/components/harmony/config_flow.py:87:48-57: `validated` may be uninitialized [unbound-name] +ERROR homeassistant/components/harmony/config_flow.py:90:21-30: `validated` may be uninitialized [unbound-name] +ERROR homeassistant/components/harmony/config_flow.py:116:34-53: Argument `bytes | str | None` is not assignable to parameter `ip_address` with type `str` in function `aioharmony.hubconnector_websocket.HubConnector.__init__` [bad-argument-type] +ERROR homeassistant/components/harmony/config_flow.py:157:9-31: Class member `HarmonyConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/harmony/data.py:113:68-79: Unpacked keyword argument `BoundMethod[Self@HarmonyData, (self: Self@HarmonyData, _: dict[Unknown, Unknown] | None = None) -> None] | BoundMethod[Self@HarmonyData, (self: Self@HarmonyData, _: str | None = None) -> None] | BoundMethod[Self@HarmonyData, (self: Self@HarmonyData, activity_info: tuple[Unknown, ...]) -> None]` is not assignable to parameter `connect` with type `((object, Any | None) -> Any) | Event | Future[Unknown] | None` in function `aioharmony.const.ClientCallbackType.__new__` [bad-argument-type] +ERROR homeassistant/components/harmony/data.py:113:68-79: Unpacked keyword argument `BoundMethod[Self@HarmonyData, (self: Self@HarmonyData, _: dict[Unknown, Unknown] | None = None) -> None] | BoundMethod[Self@HarmonyData, (self: Self@HarmonyData, _: str | None = None) -> None] | BoundMethod[Self@HarmonyData, (self: Self@HarmonyData, activity_info: tuple[Unknown, ...]) -> None]` is not assignable to parameter `disconnect` with type `((object, Any | None) -> Any) | Event | Future[Unknown] | None` in function `aioharmony.const.ClientCallbackType.__new__` [bad-argument-type] +ERROR homeassistant/components/harmony/data.py:113:68-79: Unpacked keyword argument `BoundMethod[Self@HarmonyData, (self: Self@HarmonyData, _: dict[Unknown, Unknown] | None = None) -> None] | BoundMethod[Self@HarmonyData, (self: Self@HarmonyData, _: str | None = None) -> None] | BoundMethod[Self@HarmonyData, (self: Self@HarmonyData, activity_info: tuple[Unknown, ...]) -> None]` is not assignable to parameter `new_activity_starting` with type `((object, Any | None) -> Any) | Event | Future[Unknown] | None` in function `aioharmony.const.ClientCallbackType.__new__` [bad-argument-type] +ERROR homeassistant/components/harmony/data.py:113:68-79: Unpacked keyword argument `BoundMethod[Self@HarmonyData, (self: Self@HarmonyData, _: dict[Unknown, Unknown] | None = None) -> None] | BoundMethod[Self@HarmonyData, (self: Self@HarmonyData, _: str | None = None) -> None] | BoundMethod[Self@HarmonyData, (self: Self@HarmonyData, activity_info: tuple[Unknown, ...]) -> None]` is not assignable to parameter `new_activity` with type `((object, Any | None) -> Any) | Event | Future[Unknown] | None` in function `aioharmony.const.ClientCallbackType.__new__` [bad-argument-type] +ERROR homeassistant/components/harmony/data.py:113:68-79: Unpacked keyword argument `BoundMethod[Self@HarmonyData, (self: Self@HarmonyData, _: dict[Unknown, Unknown] | None = None) -> None] | BoundMethod[Self@HarmonyData, (self: Self@HarmonyData, _: str | None = None) -> None] | BoundMethod[Self@HarmonyData, (self: Self@HarmonyData, activity_info: tuple[Unknown, ...]) -> None]` is not assignable to parameter `config_updated` with type `((object, Any | None) -> Any) | Event | Future[Unknown] | None` in function `aioharmony.const.ClientCallbackType.__new__` [bad-argument-type] +ERROR homeassistant/components/harmony/data.py:234:28-37: Argument `str` is not assignable to parameter `device` with type `int` in function `aioharmony.const.SendCommandDevice.__new__` [bad-argument-type] +ERROR homeassistant/components/harmony/remote.py:88:5-29: Class member `HarmonyRemote._attr_supported_features` overrides parent class `HarmonyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/harmony/remote.py:88:5-29: Class member `HarmonyRemote._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/harmony/remote.py:213:48-70: Argument `BoundMethod[Self@HarmonyRemote, (self: Self@HarmonyRemote) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/harmony/remote.py:259:52-74: Argument `BoundMethod[Self@HarmonyRemote, (self: Self@HarmonyRemote) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/harmony/select.py:70:39-58: Argument `HassJob[[activity_info: tuple[Unknown, ...]], None]` is not assignable to parameter `activity_starting` with type `HassJob[[tuple[Unknown, ...]], Any] | None` in function `homeassistant.components.harmony.subscriber.HarmonyCallback.__new__` [bad-argument-type] +ERROR homeassistant/components/harmony/select.py:71:38-57: Argument `HassJob[[activity_info: tuple[Unknown, ...]], None]` is not assignable to parameter `activity_started` with type `HassJob[[tuple[Unknown, ...]], Any] | None` in function `homeassistant.components.harmony.subscriber.HarmonyCallback.__new__` [bad-argument-type] +ERROR homeassistant/components/hassio/__init__.py:500:12-16: `user` may be uninitialized [unbound-name] +ERROR homeassistant/components/hassio/__init__.py:501:33-37: `user` may be uninitialized [unbound-name] +ERROR homeassistant/components/hassio/__init__.py:530:17-53: Argument `HassJob[[_: datetime | None = None], None]` is not assignable to parameter `action` with type `((datetime) -> Coroutine[Any, Any, None] | None) | HassJob[[datetime], Coroutine[Any, Any, None] | None]` in function `homeassistant.helpers.event.async_call_later` [bad-argument-type] +ERROR homeassistant/components/hassio/addon_manager.py:55:20-30: Expected a type form, got instance of `tuple[type[HassioAPIError], type[SupervisorError]] | type[HassioAPIError | SupervisorError]` [not-a-type] +ERROR homeassistant/components/hassio/backup.py:165:15-36: Class member `SupervisorBackupAgent.async_download_backup` overrides parent class `BackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hassio/backup.py:453:67-76: Argument `str | None` is not assignable to parameter `backup` with type `str` in function `aiohasupervisor.backups.BackupsClient.download_backup` [bad-argument-type] +ERROR homeassistant/components/hassio/backup.py:464:21-30: Argument `str | None` is not assignable to parameter `backup` with type `str` in function `aiohasupervisor.backups.BackupsClient.remove_backup` [bad-argument-type] +ERROR homeassistant/components/hassio/backup.py:655:20-25: `stage` may be uninitialized [unbound-name] +ERROR homeassistant/components/hassio/backup.py:660:35-40: `stage` may be uninitialized [unbound-name] +ERROR homeassistant/components/hassio/backup.py:673:31-36: `stage` may be uninitialized [unbound-name] +ERROR homeassistant/components/hassio/backup.py:680:44-49: `stage` may be uninitialized [unbound-name] +ERROR homeassistant/components/hassio/binary_sensor.py:39:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HassioBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/binary_sensor.py:40:9-12: Unexpected keyword argument `key` in function `HassioBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/binary_sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `HassioBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/binary_sensor.py:49:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HassioBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/binary_sensor.py:50:9-12: Unexpected keyword argument `key` in function `HassioBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/binary_sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `HassioBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/binary_sensor.py:92:5-23: Class member `HassioAddonBinarySensor.entity_description` overrides parent class `HassioAddonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hassio/binary_sensor.py:92:5-23: Class member `HassioAddonBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hassio/binary_sensor.py:108:5-23: Class member `HassioMountBinarySensor.entity_description` overrides parent class `HassioMountEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hassio/binary_sensor.py:108:5-23: Class member `HassioMountBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hassio/coordinator.py:308:5-17: Class member `HassioDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hassio/ingress.py:272:38-50: `forward_host` may be uninitialized [unbound-name] +ERROR homeassistant/components/hassio/repairs.py:226:18-27: Object of class `SupervisorIssues` has no attribute `key` [missing-attribute] +ERROR homeassistant/components/hassio/repairs.py:228:18-27: Object of class `SupervisorIssues` has no attribute `key` [missing-attribute] +ERROR homeassistant/components/hassio/repairs.py:230:18-27: Object of class `SupervisorIssues` has no attribute `key` [missing-attribute] +ERROR homeassistant/components/hassio/sensor.py:38:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:39:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:43:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:44:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:51:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:58:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:59:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:73:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:74:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:76:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:79:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:80:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:81:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:82:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:85:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:86:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:90:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:93:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:94:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:95:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:98:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:101:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:102:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:103:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:106:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/sensor.py:167:7-24: Field `entity_description` is declared `EntityDescription` in ancestor `class HassioAddonEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/hassio/sensor.py:178:7-21: Field `entity_description` is declared `EntityDescription` in ancestor `class HassioOSEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/hassio/sensor.py:187:7-17: Field `entity_description` is declared `EntityDescription` in ancestor `class HassioCoreEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/hassio/sensor.py:196:7-23: Field `entity_description` is declared `EntityDescription` in ancestor `class HassioSupervisorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/hassio/sensor.py:205:7-17: Field `entity_description` is declared `EntityDescription` in ancestor `class HassioHostEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/hassio/switch.py:25:5-8: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/switch.py:26:5-9: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/switch.py:27:5-9: Unexpected keyword argument `icon` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/switch.py:28:5-36: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/switch.py:50:7-24: Field `entity_description` is declared `EntityDescription` in ancestor `class HassioAddonEntity: ... +`, which is not assignable to the type `SwitchEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/hassio/update.py:43:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.update.UpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/update.py:44:5-8: Unexpected keyword argument `key` in function `homeassistant.components.update.UpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hassio/update.py:68:9-73:64: Argument `Generator[SupervisorAddonUpdateEntity, None, None]` is not assignable to parameter `iterable` with type `Iterable[SupervisorCoreUpdateEntity | SupervisorSupervisorUpdateEntity]` in function `list.extend` [bad-argument-type] +ERROR homeassistant/components/hassio/update.py:78:13-81:14: Argument `SupervisorOSUpdateEntity` is not assignable to parameter `object` with type `SupervisorCoreUpdateEntity | SupervisorSupervisorUpdateEntity` in function `list.append` [bad-argument-type] +ERROR homeassistant/components/hassio/update.py:87:7-34: Field `entity_description` is declared `EntityDescription` in ancestor `class HassioAddonEntity: ... +`, which is not assignable to the type `UpdateEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/hassio/update.py:90:5-29: Class member `SupervisorAddonUpdateEntity._attr_supported_features` overrides parent class `HassioAddonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hassio/update.py:185:7-31: Field `entity_description` is declared `EntityDescription` in ancestor `class HassioOSEntity: ... +`, which is not assignable to the type `UpdateEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/hassio/update.py:188:5-29: Class member `SupervisorOSUpdateEntity._attr_supported_features` overrides parent class `HassioOSEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hassio/update.py:227:7-39: Field `entity_description` is declared `EntityDescription` in ancestor `class HassioSupervisorEntity: ... +`, which is not assignable to the type `UpdateEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/hassio/update.py:230:5-29: Class member `SupervisorSupervisorUpdateEntity._attr_supported_features` overrides parent class `HassioSupervisorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hassio/update.py:273:7-33: Field `entity_description` is declared `EntityDescription` in ancestor `class HassioCoreEntity: ... +`, which is not assignable to the type `UpdateEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/hassio/update.py:276:5-29: Class member `SupervisorCoreUpdateEntity._attr_supported_features` overrides parent class `HassioCoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/haveibeenpwned/sensor.py:94:17-59: Argument `datetime | None` is not assignable to parameter `dattim` with type `datetime` in function `homeassistant.util.dt.as_local` [bad-argument-type] +ERROR homeassistant/components/haveibeenpwned/sensor.py:124:23-56: `int` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/haveibeenpwned/sensor.py:132:27-60: `int` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/hddtemp/sensor.py:68:27-41: No matching overload found for function `iter` called with arguments: (None) [no-matching-overload] +ERROR homeassistant/components/hddtemp/sensor.py:100:57-85: `Literal[UnitOfTemperature.FAHRENHEIT]` is not assignable to attribute `_attr_native_unit_of_measurement` with type `Never` [bad-assignment] +ERROR homeassistant/components/hddtemp/sensor.py:127:25-89: `dict[str, str]` is not assignable to attribute `data` with type `None` [bad-assignment] +ERROR homeassistant/components/hdmi_cec/__init__.py:110:29-42: `DEVICE_SCHEMA` is uninitialized [unbound-name] +ERROR homeassistant/components/hdmi_cec/__init__.py:189:51-72: Argument `HassJob[[now: Unknown | None = None], Unknown]` is not assignable to parameter `action` with type `((datetime) -> Coroutine[Any, Any, None] | None) | HassJob[[datetime], Coroutine[Any, Any, None] | None]` [bad-argument-type] +ERROR homeassistant/components/hdmi_cec/__init__.py:200:64-85: Argument `HassJob[[now: Unknown | None = None], Unknown]` is not assignable to parameter `action` with type `((datetime) -> Coroutine[Any, Any, None] | None) | HassJob[[datetime], Coroutine[Any, Any, None] | None]` in function `homeassistant.helpers.event.async_call_later` [bad-argument-type] +ERROR homeassistant/components/hdmi_cec/__init__.py:258:49-52: Argument `Literal[''] | Unknown` is not assignable to parameter `att` with type `list[int]` in function `pycec.commands.CecCommand.__init__` [bad-argument-type] +ERROR homeassistant/components/hdmi_cec/__init__.py:285:27-31: `addr` may be uninitialized [unbound-name] +ERROR homeassistant/components/hdmi_cec/__init__.py:286:36-40: `addr` may be uninitialized [unbound-name] +ERROR homeassistant/components/hdmi_cec/__init__.py:287:36-40: `addr` may be uninitialized [unbound-name] +ERROR homeassistant/components/hdmi_cec/__init__.py:288:67-71: `addr` may be uninitialized [unbound-name] +ERROR homeassistant/components/hdmi_cec/media_player.py:95:14-25: Class member `CecPlayerEntity._attr_state` overrides parent class `CecEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/heatmiser/climate.py:8:1-46: Could not find import of `heatmiserv3` [missing-import] +ERROR homeassistant/components/heatmiser/climate.py:116:36-52: `int` is not assignable to attribute `_target_temperature` with type `None` [bad-assignment] +ERROR homeassistant/components/heatmiser/climate.py:131:37-69: `int` is not assignable to attribute `_current_temperature` with type `None` [bad-assignment] +ERROR homeassistant/components/heatmiser/climate.py:132:36-69: `int` is not assignable to attribute `_target_temperature` with type `None` [bad-assignment] +ERROR homeassistant/components/heos/media_player.py:168:5-29: Class member `HeosMediaPlayer._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/here_travel_time/config_flow.py:116:9-31: Class member `HERETravelTimeConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/here_travel_time/coordinator.py:67:5-17: Class member `HERERoutingDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/here_travel_time/coordinator.py:123:17-51: Object of class `FunctionType` has no attribute `total_seconds` [missing-attribute] +ERROR homeassistant/components/here_travel_time/coordinator.py:125:18-33: Class member `HERERoutingDataUpdateCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/here_travel_time/coordinator.py:125:36-127:14: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@HERERoutingDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/here_travel_time/coordinator.py:126:25-59: Object of class `FunctionType` has no attribute `total_seconds` [missing-attribute] +ERROR homeassistant/components/here_travel_time/coordinator.py:136:36-76: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@HERERoutingDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/here_travel_time/coordinator.py:191:5-17: Class member `HERETransitDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/here_travel_time/coordinator.py:226:30-46: Argument `str` is not assignable to parameter `latitude` with type `float` in function `here_transit.model.Place.__init__` [bad-argument-type] +ERROR homeassistant/components/here_travel_time/coordinator.py:226:58-74: Argument `str` is not assignable to parameter `longitude` with type `float` in function `here_transit.model.Place.__init__` [bad-argument-type] +ERROR homeassistant/components/here_travel_time/coordinator.py:229:30-51: Argument `str` is not assignable to parameter `latitude` with type `float` in function `here_transit.model.Place.__init__` [bad-argument-type] +ERROR homeassistant/components/here_travel_time/coordinator.py:229:63-84: Argument `str` is not assignable to parameter `longitude` with type `float` in function `here_transit.model.Place.__init__` [bad-argument-type] +ERROR homeassistant/components/here_travel_time/coordinator.py:242:17-51: Object of class `FunctionType` has no attribute `total_seconds` [missing-attribute] +ERROR homeassistant/components/here_travel_time/coordinator.py:244:18-33: Class member `HERETransitDataUpdateCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/here_travel_time/coordinator.py:244:36-246:14: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@HERETransitDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/here_travel_time/coordinator.py:245:25-59: Object of class `FunctionType` has no attribute `total_seconds` [missing-attribute] +ERROR homeassistant/components/here_travel_time/coordinator.py:260:36-76: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@HERETransitDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/here_travel_time/sensor.py:54:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/here_travel_time/sensor.py:55:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/here_travel_time/sensor.py:56:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/here_travel_time/sensor.py:63:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/here_travel_time/sensor.py:64:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/here_travel_time/sensor.py:65:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/here_travel_time/sensor.py:72:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/here_travel_time/sensor.py:73:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/here_travel_time/sensor.py:74:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/here_travel_time/sensor.py:127:14-32: Class member `HERETravelTimeSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/here_travel_time/sensor.py:176:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/here_travel_time/sensor.py:177:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/here_travel_time/sensor.py:178:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/here_travel_time/sensor.py:205:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/here_travel_time/sensor.py:206:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/here_travel_time/sensor.py:207:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hikvision/binary_sensor.py:8:1-38: Could not find import of `pyhik.hikvision` [missing-import] +ERROR homeassistant/components/hikvision/binary_sensor.py:286:31-35: `None` is not assignable to attribute `_timer` with type `Never` [bad-assignment] +ERROR homeassistant/components/hikvision/binary_sensor.py:288:27-290:14: `() -> None` is not assignable to attribute `_timer` with type `None` [bad-assignment] +ERROR homeassistant/components/hikvision/binary_sensor.py:296:31-35: `None` is not assignable to attribute `_timer` with type `Never` [bad-assignment] +ERROR homeassistant/components/hikvisioncam/switch.py:8:8-21: Could not find import of `hikvision.api` [missing-import] +ERROR homeassistant/components/hikvisioncam/switch.py:9:1-62: Could not find import of `hikvision.error` [missing-import] + WARN homeassistant/components/history/__init__.py:124:20-137:10: Redundant cast: `Response` is the same type as `Response` [redundant-cast] +ERROR homeassistant/components/history/websocket_api.py:426:12-22: `start_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/history/websocket_api.py:426:26-36: `start_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/history/websocket_api.py:437:23-33: `start_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/history/websocket_api.py:457:35-45: `start_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/history/websocket_api.py:460:60-70: `start_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/history/websocket_api.py:469:13-23: `start_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/history/websocket_api.py:533:9-19: `start_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/history/websocket_api.py:579:29-39: `start_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/history_stats/config_flow.py:194:73-196:10: No matching overload found for function `dict.get` called with arguments: (_HandlerT) [no-matching-overload] +ERROR homeassistant/components/history_stats/config_flow.py:201:60-82: Argument `_HandlerT` is not assignable to parameter `entry_id` with type `str` in function `homeassistant.config_entries.ConfigEntries.async_get_entry` [bad-argument-type] +ERROR homeassistant/components/history_stats/config_flow.py:206:60-82: Argument `_HandlerT` is not assignable to parameter `entry_id` with type `str` in function `homeassistant.config_entries.ConfigEntries.async_get_entry` [bad-argument-type] +ERROR homeassistant/components/hitron_coda/device_tracker.py:96:28-49: `str` is not assignable to attribute `_userid` with type `None` [bad-assignment] +ERROR homeassistant/components/hitron_coda/device_tracker.py:113:63-87: Argument `dict[str, None]` is not assignable to parameter `cookies` with type `CookieJar | MutableMapping[str, str] | None` in function `requests.api.get` [bad-argument-type] +ERROR homeassistant/components/hive/binary_sensor.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/binary_sensor.py:28:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/binary_sensor.py:32:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/binary_sensor.py:36:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/binary_sensor.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/binary_sensor.py:44:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/binary_sensor.py:51:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/binary_sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/binary_sensor.py:55:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/binary_sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/binary_sensor.py:59:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/binary_sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/binary_sensor.py:63:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/binary_sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/binary_sensor.py:83:20-27: Type `None` is not iterable [not-iterable] +ERROR homeassistant/components/hive/binary_sensor.py:91:20-27: Type `None` is not iterable [not-iterable] +ERROR homeassistant/components/hive/binary_sensor.py:110:14-32: Class member `HiveBinarySensorEntity.entity_description` overrides parent class `HiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hive/binary_sensor.py:140:14-32: Class member `HiveSensorEntity.entity_description` overrides parent class `HiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hive/climate.py:93:5-29: Class member `HiveClimateEntity._attr_supported_features` overrides parent class `HiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hive/climate.py:127:61-63: Argument `Literal[30]` is not assignable to parameter `mins` with type `str` in function `apyhiveapi.heating.HiveHeating.setBoostOn` [bad-argument-type] +ERROR homeassistant/components/hive/config_flow.py:167:9-31: Class member `HiveFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hive/config_flow.py:194:21-51: `Hive` is not assignable to attribute `hive` with type `None` [bad-assignment] +ERROR homeassistant/components/hive/light.py:83:26-40: Argument `int | None` is not assignable to parameter `brightness` with type `int` in function `apyhiveapi.light.Light.turnOn` [bad-argument-type] +ERROR homeassistant/components/hive/light.py:83:42-56: Argument `Any | None` is not assignable to parameter `color_temp` with type `int` in function `apyhiveapi.light.Light.turnOn` [bad-argument-type] +ERROR homeassistant/components/hive/light.py:83:58-67: Argument `tuple[int, int, Literal[100]] | None` is not assignable to parameter `color` with type `list[Unknown]` in function `apyhiveapi.light.Light.turnOn` [bad-argument-type] +ERROR homeassistant/components/hive/sensor.py:42:9-12: Unexpected keyword argument `key` in function `HiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/sensor.py:45:9-24: Unexpected keyword argument `entity_category` in function `HiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/sensor.py:48:9-12: Unexpected keyword argument `key` in function `HiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/sensor.py:52:9-24: Unexpected keyword argument `entity_category` in function `HiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/sensor.py:55:9-12: Unexpected keyword argument `key` in function `HiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/sensor.py:59:9-24: Unexpected keyword argument `entity_category` in function `HiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/sensor.py:62:9-12: Unexpected keyword argument `key` in function `HiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/sensor.py:68:9-12: Unexpected keyword argument `key` in function `HiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/sensor.py:74:9-12: Unexpected keyword argument `key` in function `HiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `HiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/sensor.py:81:9-12: Unexpected keyword argument `key` in function `HiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/sensor.py:84:9-24: Unexpected keyword argument `translation_key` in function `HiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/sensor.py:114:5-23: Class member `HiveSensorEntity.entity_description` overrides parent class `HiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hive/sensor.py:114:5-23: Class member `HiveSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hive/switch.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/switch.py:28:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/switch.py:29:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hive/switch.py:67:14-32: Class member `HiveSwitch.entity_description` overrides parent class `HiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hive/water_heater.py:76:5-29: Class member `HiveWaterHeater._attr_supported_features` overrides parent class `HiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hko/coordinator.py:74:5-17: Class member `HKOUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hlk_sw16/config_flow.py:56:17-56: Object of class `NoneType` has no attribute `set_exception` [missing-attribute] +ERROR homeassistant/components/holiday/config_flow.py:116:9-31: Class member `HolidayConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/holiday/config_flow.py:176:69-77: `province` may be uninitialized [unbound-name] +ERROR homeassistant/components/holiday/config_flow.py:207:69-77: `province` may be uninitialized [unbound-name] +ERROR homeassistant/components/home_connect/binary_sensor.py:39:9-12: Unexpected keyword argument `key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:43:9-12: Unexpected keyword argument `key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:47:9-12: Unexpected keyword argument `key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:51:9-12: Unexpected keyword argument `key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:60:9-12: Unexpected keyword argument `key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:69:9-12: Unexpected keyword argument `key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:73:9-12: Unexpected keyword argument `key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:77:9-12: Unexpected keyword argument `key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:81:9-12: Unexpected keyword argument `key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:84:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:87:9-12: Unexpected keyword argument `key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:93:9-12: Unexpected keyword argument `key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:99:9-12: Unexpected keyword argument `key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:105:9-12: Unexpected keyword argument `key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:108:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:111:9-12: Unexpected keyword argument `key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:117:9-12: Unexpected keyword argument `key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:120:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:123:9-12: Unexpected keyword argument `key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:129:9-12: Unexpected keyword argument `key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:132:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:137:5-8: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/binary_sensor.py:176:5-23: Class member `HomeConnectBinarySensor.entity_description` overrides parent class `HomeConnectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/home_connect/binary_sensor.py:176:5-23: Class member `HomeConnectBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/home_connect/binary_sensor.py:189:7-42: Field `entity_description` is declared `EntityDescription` in ancestor `class HomeConnectEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/home_connect/button.py:27:5-8: Class member `HomeConnectCommandButtonEntityDescription.key` overrides parent class `ButtonEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/home_connect/button.py:33:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectCommandButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/button.py:37:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectCommandButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/button.py:41:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectCommandButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/button.py:45:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectCommandButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/button.py:85:5-23: Class member `HomeConnectButtonEntity.entity_description` overrides parent class `HomeConnectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/home_connect/button.py:108:5-23: Class member `HomeConnectCommandButtonEntity.entity_description` overrides parent class `HomeConnectButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/home_connect/button.py:142:17-20: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/button.py:143:17-32: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/home_connect/const.py:77:52-73: Redundant cast: `ProgramKey` is the same type as `ProgramKey` [redundant-cast] +ERROR homeassistant/components/home_connect/coordinator.py:104:5-17: Class member `HomeConnectCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/home_connect/entity.py:156:45-56: `retry_after` may be uninitialized [unbound-name] +ERROR homeassistant/components/home_connect/light.py:51:9-12: Unexpected keyword argument `key` in function `HomeConnectLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/light.py:54:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/light.py:57:9-12: Unexpected keyword argument `key` in function `HomeConnectLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/light.py:60:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/light.py:63:9-12: Unexpected keyword argument `key` in function `HomeConnectLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/light.py:66:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/light.py:69:9-12: Unexpected keyword argument `key` in function `HomeConnectLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/light.py:75:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/light.py:108:5-23: Class member `HomeConnectLight.entity_description` overrides parent class `HomeConnectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/home_connect/number.py:31:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:33:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:36:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:38:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:43:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:46:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:48:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:51:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:53:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:56:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:58:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:61:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:63:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:66:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:68:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:71:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:73:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:76:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:78:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:81:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:82:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:86:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:88:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:91:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:93:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:99:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:100:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:103:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:104:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:107:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:108:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:111:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:112:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:117:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:118:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/number.py:162:7-30: Field `entity_description` is declared `EntityDescription` in ancestor `class HomeConnectEntity: ... +`, which is not assignable to the type `NumberEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/home_connect/select.py:99:9-12: Unexpected keyword argument `key` in function `HomeConnectProgramSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:100:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectProgramSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:108:9-12: Unexpected keyword argument `key` in function `HomeConnectProgramSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:109:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectProgramSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:120:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:121:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:130:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:131:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:140:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:141:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:153:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:154:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:163:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:164:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:173:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:174:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:183:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:184:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:193:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:194:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:203:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:204:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:213:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:214:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:223:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:224:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:233:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:234:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:243:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:244:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:253:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:254:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:263:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:264:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:273:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:274:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:283:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:284:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:293:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:294:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:303:9-12: Unexpected keyword argument `key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:304:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/select.py:366:5-23: Class member `HomeConnectProgramSelectEntity.entity_description` overrides parent class `HomeConnectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/home_connect/select.py:366:5-23: Class member `HomeConnectProgramSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/home_connect/select.py:443:5-23: Class member `HomeConnectSelectEntity.entity_description` overrides parent class `HomeConnectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/home_connect/select.py:443:5-23: Class member `HomeConnectSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/home_connect/select.py:520:5-23: Class member `HomeConnectSelectOptionEntity.entity_description` overrides parent class `HomeConnectOptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/home_connect/select.py:520:5-23: Class member `HomeConnectSelectOptionEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/home_connect/sensor.py:52:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:67:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:76:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:92:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:102:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:103:9-24: Unexpected keyword argument `entity_category` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:108:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:109:9-24: Unexpected keyword argument `entity_category` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:114:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:115:9-24: Unexpected keyword argument `entity_category` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:119:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:122:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:123:9-24: Unexpected keyword argument `entity_category` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:128:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:129:9-24: Unexpected keyword argument `entity_category` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:131:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:134:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:135:9-24: Unexpected keyword argument `entity_category` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:137:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:140:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:141:9-24: Unexpected keyword argument `entity_category` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:143:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:146:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:147:9-24: Unexpected keyword argument `entity_category` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:149:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:152:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:153:9-24: Unexpected keyword argument `entity_category` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:155:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:158:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:162:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:173:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:176:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:184:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:187:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:190:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:197:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:201:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:205:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:209:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:221:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:225:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:229:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:233:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:237:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:241:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:245:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:249:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:253:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:257:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:261:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:265:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:269:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:273:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:277:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:281:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:285:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:289:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:293:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:297:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:301:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:305:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:309:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:313:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:317:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:321:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:325:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:329:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:333:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:337:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:341:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:345:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:349:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:353:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:357:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:361:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:365:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:369:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:373:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:377:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:381:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:385:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:389:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:393:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:397:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:401:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:405:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:409:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:413:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:417:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:421:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:425:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:429:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:433:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:437:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:441:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:445:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:449:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:453:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:457:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:461:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:465:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:469:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:473:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:477:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:481:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:485:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:489:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:493:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:497:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:501:9-12: Unexpected keyword argument `key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:505:9-24: Unexpected keyword argument `translation_key` in function `HomeConnectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/sensor.py:552:5-23: Class member `HomeConnectSensor.entity_description` overrides parent class `HomeConnectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/home_connect/sensor.py:552:5-23: Class member `HomeConnectSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/home_connect/services.py:248:15-26: `method_call` may be uninitialized [unbound-name] +ERROR homeassistant/components/home_connect/services.py:252:29-54: `exception_translation_key` may be uninitialized [unbound-name] +ERROR homeassistant/components/home_connect/switch.py:27:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:28:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:31:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:32:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:36:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:39:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:40:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:43:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:44:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:48:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:51:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:52:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:55:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:56:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:59:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:60:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:63:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:64:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:67:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:68:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:71:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:72:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:78:5-8: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:79:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:84:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:85:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:88:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:89:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:92:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:93:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:96:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:97:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:100:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:101:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:104:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:105:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:108:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:109:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:112:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:113:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:116:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:117:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:120:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:121:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:124:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:125:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:128:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:129:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:132:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:133:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/home_connect/switch.py:184:7-24: Field `entity_description` is declared `EntityDescription` in ancestor `class HomeConnectEntity: ... +`, which is not assignable to the type `SwitchEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/home_connect/switch.py:232:7-29: Field `entity_description` is declared `EntityDescription` in ancestor `class HomeConnectEntity: ... +`, which is not assignable to the type `SwitchEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/homeassistant/__init__.py:433:46-60: Argument `dict[str, Any | None]` is not assignable to parameter `translation_placeholders` with type `dict[str, str] | None` in function `homeassistant.helpers.issue_registry.async_create_issue` [bad-argument-type] +ERROR homeassistant/components/homeassistant/exposed_entities.py:162:29-46: `assistant_options` is uninitialized [unbound-name] +ERROR homeassistant/components/homeassistant/exposed_entities.py:294:12-26: `exposed_entity` may be uninitialized [unbound-name] +ERROR homeassistant/components/homeassistant/scene.py:326:22-34: `scene_config` is uninitialized [unbound-name] +ERROR homeassistant/components/homeassistant/triggers/numeric_state.py:183:17-29: Object of class `NoneType` has no attribute `context` [missing-attribute] +ERROR homeassistant/components/homeassistant/triggers/time.py:176:16-24: `has_date` may be uninitialized [unbound-name] +ERROR homeassistant/components/homeassistant/triggers/time.py:180:25-29: `year` may be uninitialized [unbound-name] +ERROR homeassistant/components/homeassistant/triggers/time.py:181:25-30: `month` may be uninitialized [unbound-name] +ERROR homeassistant/components/homeassistant/triggers/time.py:182:25-28: `day` may be uninitialized [unbound-name] +ERROR homeassistant/components/homeassistant/triggers/time.py:201:18-26: `has_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/homeassistant/triggers/time.py:248:12-18: `remove` may be uninitialized [unbound-name] +ERROR homeassistant/components/homeassistant/triggers/time.py:249:45-51: `remove` may be uninitialized [unbound-name] +ERROR homeassistant/components/homeassistant_connect_zbt2/update.py:36:9-12: Unexpected keyword argument `key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homeassistant_connect_zbt2/update.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homeassistant_connect_zbt2/update.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homeassistant_connect_zbt2/update.py:69:9-12: Unexpected keyword argument `key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homeassistant_green/config_flow.py:47:9-31: Class member `HomeAssistantGreenConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homeassistant_green/hardware.py:26:12-17: `board` is uninitialized [unbound-name] +ERROR homeassistant/components/homeassistant_green/hardware.py:36:33-38: `board` is uninitialized [unbound-name] +ERROR homeassistant/components/homeassistant_hardware/firmware_config_flow.py:271:41-84: Argument `str | None` is not assignable to parameter `version` with type `str` in function `universal_silabs_flasher.common.Version.__init__` [bad-argument-type] +ERROR homeassistant/components/homeassistant_hardware/firmware_config_flow.py:666:5-26: Class member `BaseFirmwareOptionsFlow._probed_firmware_info` overrides parent class `BaseFirmwareInstallFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homeassistant_hardware/helpers.py:188:41-79: Object of class `SyncHardwareFirmwareInfoModule` has no attribute `async_get_firmware_info` [missing-attribute] +ERROR homeassistant/components/homeassistant_hardware/silabs_multiprotocol_addon.py:263:66-70: Function declared to return `bool` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/homeassistant_hardware/update.py:88:5-23: Class member `BaseFirmwareUpdateEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homeassistant_hardware/update.py:88:5-23: Class member `BaseFirmwareUpdateEntity.entity_description` overrides parent class `UpdateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homeassistant_hardware/update.py:92:5-29: Class member `BaseFirmwareUpdateEntity._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homeassistant_hardware/update.py:233:22-52: Object of class `NoneType` has no attribute `metadata` [missing-attribute] +ERROR homeassistant/components/homeassistant_hardware/update.py:236:42-77: Object of class `NoneType` has no attribute `release_notes` [missing-attribute] +ERROR homeassistant/components/homeassistant_sky_connect/__init__.py:166:66-83: Argument `() -> Sequence[USBDevice]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/homeassistant_sky_connect/update.py:43:9-12: Unexpected keyword argument `key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homeassistant_sky_connect/update.py:54:9-12: Unexpected keyword argument `key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homeassistant_sky_connect/update.py:65:9-12: Unexpected keyword argument `key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homeassistant_sky_connect/update.py:76:9-12: Unexpected keyword argument `key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homeassistant_sky_connect/update.py:87:9-12: Unexpected keyword argument `key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homeassistant_yellow/hardware.py:26:12-17: `board` is uninitialized [unbound-name] +ERROR homeassistant/components/homeassistant_yellow/hardware.py:36:33-38: `board` is uninitialized [unbound-name] +ERROR homeassistant/components/homeassistant_yellow/update.py:36:9-12: Unexpected keyword argument `key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homeassistant_yellow/update.py:37:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homeassistant_yellow/update.py:48:9-12: Unexpected keyword argument `key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homeassistant_yellow/update.py:49:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homeassistant_yellow/update.py:60:9-12: Unexpected keyword argument `key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homeassistant_yellow/update.py:61:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homeassistant_yellow/update.py:72:9-12: Unexpected keyword argument `key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homeassistant_yellow/update.py:73:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homeassistant_yellow/update.py:84:9-12: Unexpected keyword argument `key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homeassistant_yellow/update.py:85:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.homeassistant_hardware.update.FirmwareUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/alarm_control_panel.py:35:9-12: Unexpected keyword argument `key` in function `HomeeAlarmControlPanelEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/alarm_control_panel.py:92:5-23: Class member `HomeeAlarmPanel.entity_description` overrides parent class `HomeeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/alarm_control_panel.py:92:5-23: Class member `HomeeAlarmPanel.entity_description` overrides parent class `AlarmControlPanelEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/alarm_control_panel.py:104:14-38: Class member `HomeeAlarmPanel._attr_supported_features` overrides parent class `HomeeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/binary_sensor.py:23:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:25:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:28:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:30:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:36:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:39:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:43:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:45:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:48:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:53:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:56:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:60:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:62:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:65:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:67:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:70:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:72:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:75:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:77:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:80:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:84:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:86:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:89:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:93:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:97:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:99:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:102:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:104:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:107:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:111:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:113:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:116:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:120:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:122:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:125:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:129:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:131:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:134:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:136:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:139:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:141:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:144:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:146:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:149:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:151:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/binary_sensor.py:196:14-32: Class member `HomeeBinarySensor.entity_description` overrides parent class `HomeeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/button.py:22:67-70: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/button.py:23:65-68: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/button.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/button.py:26:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/button.py:29:52-55: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/button.py:30:58-61: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/button.py:31:65-68: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/button.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/button.py:36:9-12: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/button.py:37:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/button.py:39:62-65: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/button.py:78:14-32: Class member `HomeeButton.entity_description` overrides parent class `HomeeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/climate.py:69:18-42: Class member `HomeeClimate._attr_supported_features` overrides parent class `HomeeNodeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/cover.py:41:12-22: `open_close` may be uninitialized [unbound-name] +ERROR homeassistant/components/homee/cover.py:122:14-38: Class member `HomeeCover._attr_supported_features` overrides parent class `HomeeNodeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/cover.py:125:14-32: Class member `HomeeCover._attr_device_class` overrides parent class `HomeeNodeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/event.py:30:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/event.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/event.py:90:14-32: Class member `HomeeEvent.entity_description` overrides parent class `HomeeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/fan.py:98:16-80: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/homee/fan.py:110:35-64: Object of class `NoneType` has no attribute `index` [missing-attribute] +ERROR homeassistant/components/homee/number.py:36:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:37:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:40:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:41:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:44:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:45:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:48:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:49:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:52:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:53:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:56:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:57:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:60:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:62:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:65:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:66:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:69:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:70:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:73:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:74:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:77:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:79:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:82:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:83:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:86:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:88:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:91:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:93:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:96:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:97:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:100:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:101:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:104:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:105:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:108:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:109:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:112:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:114:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:117:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:119:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:122:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:124:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:127:9-12: Unexpected keyword argument `key` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:129:9-24: Unexpected keyword argument `entity_category` in function `HomeeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/number.py:167:5-23: Class member `HomeeNumber.entity_description` overrides parent class `HomeeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/number.py:167:5-23: Class member `HomeeNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/select.py:19:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/select.py:21:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/select.py:24:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/select.py:26:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/select.py:66:14-32: Class member `HomeeSelect.entity_description` overrides parent class `HomeeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/sensor.py:81:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:86:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:88:9-24: Unexpected keyword argument `entity_category` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:92:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:103:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:108:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:113:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:114:9-24: Unexpected keyword argument `entity_category` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:118:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:123:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:128:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:130:9-24: Unexpected keyword argument `entity_category` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:133:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:138:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:143:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:148:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:153:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:155:9-24: Unexpected keyword argument `entity_category` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:158:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:163:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:164:9-24: Unexpected keyword argument `entity_category` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:168:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:171:9-24: Unexpected keyword argument `entity_category` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:174:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:179:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:184:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:188:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:193:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:198:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:203:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:208:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:213:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:218:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:223:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:228:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:240:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:244:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:249:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:254:9-12: Unexpected keyword argument `key` in function `HomeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:271:9-12: Unexpected keyword argument `key` in function `HomeeNodeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:289:9-24: Unexpected keyword argument `entity_category` in function `HomeeNodeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:290:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeeNodeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:291:9-24: Unexpected keyword argument `translation_key` in function `HomeeNodeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/sensor.py:388:5-23: Class member `HomeeSensor.entity_description` overrides parent class `HomeeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/sensor.py:388:5-23: Class member `HomeeSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/sensor.py:403:14-32: Class member `HomeeSensor._attr_device_class` overrides parent class `HomeeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/sensor.py:423:5-23: Class member `HomeeNodeSensor.entity_description` overrides parent class `HomeeNodeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/sensor.py:423:5-23: Class member `HomeeNodeSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/siren.py:47:5-29: Class member `HomeeSiren._attr_supported_features` overrides parent class `HomeeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/switch.py:55:9-12: Unexpected keyword argument `key` in function `HomeeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/switch.py:55:38-53: Unexpected keyword argument `entity_category` in function `HomeeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/switch.py:58:9-12: Unexpected keyword argument `key` in function `HomeeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/switch.py:61:9-12: Unexpected keyword argument `key` in function `HomeeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/switch.py:61:57-61: Unexpected keyword argument `name` in function `HomeeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/switch.py:64:9-12: Unexpected keyword argument `key` in function `HomeeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/switch.py:64:25-40: Unexpected keyword argument `entity_category` in function `HomeeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/switch.py:103:5-23: Class member `HomeeSwitch.entity_description` overrides parent class `HomeeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/switch.py:103:5-23: Class member `HomeeSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homee/valve.py:23:9-12: Unexpected keyword argument `key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homee/valve.py:66:14-32: Class member `HomeeValve.entity_description` overrides parent class `HomeeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit/__init__.py:294:39-49: Argument `() -> Unknown` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/homekit/__init__.py:898:56-75: Argument `BoundMethod[HomeDriver, (self: HomeDriver) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/homekit/__init__.py:913:56-77: Argument `Accessory | None` is not assignable to parameter `accessory` with type `Accessory` in function `homeassistant.components.homekit.util.accessory_friendly_name` [bad-argument-type] +ERROR homeassistant/components/homekit/__init__.py:915:13-42: Object of class `NoneType` has no attribute `xhm_uri` [missing-attribute] +ERROR homeassistant/components/homekit/__init__.py:964:61-82: Argument `Accessory | None` is not assignable to parameter `accessory` with type `Accessory` in function `homeassistant.components.homekit.util.accessory_friendly_name` [bad-argument-type] +ERROR homeassistant/components/homekit/__init__.py:1025:16-27: Returned type `HomeBridge` is not assignable to declared return type `HomeAccessory` [bad-return] +ERROR homeassistant/components/homekit/__init__.py:1168:46-79: `current_humidity_sensor_entity_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/homekit/__init__.py:1232:18-28: `entry_data` is uninitialized [unbound-name] +ERROR homeassistant/components/homekit/accessories.py:310:5-11: Class member `HomeAccessory.driver` overrides parent class `Accessory` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit/accessories.py:327:13-26: Multiple values for argument `driver` in function `pyhap.accessory.Accessory.__init__` [bad-keyword-argument] +ERROR homeassistant/components/homekit/accessories.py:328:13-56: Multiple values for argument `display_name` in function `pyhap.accessory.Accessory.__init__` [bad-keyword-argument] +ERROR homeassistant/components/homekit/accessories.py:329:13-20: Multiple values for argument `aid` in function `pyhap.accessory.Accessory.__init__` [bad-keyword-argument] +ERROR homeassistant/components/homekit/accessories.py:330:13-59: Multiple values for argument `iid_manager` in function `pyhap.accessory.Accessory.__init__` [bad-keyword-argument] +ERROR homeassistant/components/homekit/accessories.py:378:13-41: Object of class `NoneType` has no attribute `add_characteristic` [missing-attribute] +ERROR homeassistant/components/homekit/accessories.py:379:13-37: Object of class `NoneType` has no attribute `configure_char` [missing-attribute] +ERROR homeassistant/components/homekit/accessories.py:440:49-69: Argument `Literal['BatteryService']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/accessories.py:441:30-86: `Characteristic` is not assignable to attribute `_char_battery` with type `None` [bad-assignment] +ERROR homeassistant/components/homekit/accessories.py:442:31-444:10: `Characteristic` is not assignable to attribute `_char_charging` with type `None` [bad-assignment] +ERROR homeassistant/components/homekit/accessories.py:445:34-447:10: `Characteristic` is not assignable to attribute `_char_low_battery` with type `None` [bad-assignment] +ERROR homeassistant/components/homekit/accessories.py:464:43-48: `state` may be uninitialized [unbound-name] +ERROR homeassistant/components/homekit/accessories.py:493:14-19: `state` may be uninitialized [unbound-name] +ERROR homeassistant/components/homekit/accessories.py:494:29-34: `state` may be uninitialized [unbound-name] +ERROR homeassistant/components/homekit/accessories.py:506:49-54: `state` may be uninitialized [unbound-name] +ERROR homeassistant/components/homekit/accessories.py:507:38-43: `state` may be uninitialized [unbound-name] +ERROR homeassistant/components/homekit/accessories.py:749:56-70: Argument `Accessory | None` is not assignable to parameter `accessory` with type `Accessory` in function `homeassistant.components.homekit.util.accessory_friendly_name` [bad-argument-type] +ERROR homeassistant/components/homekit/accessories.py:751:13-35: Object of class `NoneType` has no attribute `xhm_uri` [missing-attribute] +ERROR homeassistant/components/homekit/accessories.py:765:15-29: Object of class `NoneType` has no attribute `aid` [missing-attribute] +ERROR homeassistant/components/homekit/accessories.py:767:32-43: `Service | None` is not assignable to `Service` [bad-assignment] +ERROR homeassistant/components/homekit/config_flow.py:363:9-31: Class member `HomeKitConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit/diagnostics.py:42:66-82: Argument `Accessory` is not assignable to parameter `accessory` with type `HomeAccessory` in function `_get_accessory_diagnostics` [bad-argument-type] +ERROR homeassistant/components/homekit/diagnostics.py:80:32-74: Cannot set item in `dict[str, dict[str, Any] | int | str | None]` [unsupported-operation] +ERROR homeassistant/components/homekit/doorbell.py:55:50-63: Argument `Literal['Doorbell']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/doorbell.py:57:40-60:10: `Characteristic` is not assignable to attribute `_char_doorbell_detected` with type `None` [bad-assignment] +ERROR homeassistant/components/homekit/doorbell.py:62:13-47: Argument `Literal['StatelessProgrammableSwitch']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/doorbell.py:64:47-68:10: `Characteristic` is not assignable to attribute `_char_doorbell_detected_switch` with type `None` [bad-assignment] +ERROR homeassistant/components/homekit/doorbell.py:69:49-61: Argument `Literal['Speaker']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_air_purifiers.py:96:54-71: Argument `Literal['AirPurifier']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_air_purifiers.py:96:73-83: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_air_purifiers.py:126:54-74: Argument `Literal['HumiditySensor']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_air_purifiers.py:126:76-85: Argument `Literal['Name']` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_air_purifiers.py:139:17-40: Argument `Literal['AirQualitySensor']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_air_purifiers.py:140:17-65: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_air_purifiers.py:156:17-40: Argument `Literal['TemperatureSensor']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_air_purifiers.py:156:42-79: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_air_purifiers.py:181:17-40: Argument `Literal['FilterMaintenance']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_air_purifiers.py:181:42-47: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_air_purifiers.py:428:69-87: `current_life_level` may be uninitialized [unbound-name] +ERROR homeassistant/components/homekit/type_air_purifiers.py:434:17-35: `current_life_level` may be uninitialized [unbound-name] +ERROR homeassistant/components/homekit/type_cameras.py:226:56-74: Argument `Literal['MotionSensor']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_cameras.py:227:46-229:18: `Characteristic` is not assignable to attribute `_char_motion_detected` with type `None` [bad-assignment] +ERROR homeassistant/components/homekit/type_cameras.py:366:26-38: `input_source` may be uninitialized [unbound-name] +ERROR homeassistant/components/homekit/type_covers.py:110:53-76: Argument `Literal['GarageDoorOpener']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_covers.py:353:65-74: Argument `Literal['Door']` is not assignable to parameter `service` with type `Service` in function `OpeningDevice.__init__` [bad-argument-type] +ERROR homeassistant/components/homekit/type_covers.py:365:67-78: Argument `Literal['Window']` is not assignable to parameter `service` with type `Service` in function `OpeningDevice.__init__` [bad-argument-type] +ERROR homeassistant/components/homekit/type_covers.py:378:63-83: Argument `Literal['WindowCovering']` is not assignable to parameter `service` with type `Service` in function `OpeningDevice.__init__` [bad-argument-type] +ERROR homeassistant/components/homekit/type_covers.py:393:63-83: Argument `Literal['WindowCovering']` is not assignable to parameter `service` with type `Service` in function `OpeningDeviceBase.__init__` [bad-argument-type] +ERROR homeassistant/components/homekit/type_fans.py:94:35-96:14: `Characteristic` is not assignable to attribute `char_direction` with type `None` [bad-assignment] +ERROR homeassistant/components/homekit/type_fans.py:102:31-106:14: `Characteristic` is not assignable to attribute `char_speed` with type `None` [bad-assignment] +ERROR homeassistant/components/homekit/type_fans.py:114:42-117:14: `Characteristic` is not assignable to attribute `char_target_fan_state` with type `None` [bad-assignment] +ERROR homeassistant/components/homekit/type_fans.py:124:21-32: Argument `Literal['Switch']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_fans.py:125:21-54: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_fans.py:149:31-80: `Characteristic` is not assignable to attribute `char_swing` with type `None` [bad-assignment] +ERROR homeassistant/components/homekit/type_fans.py:157:45-55: Argument `Literal['Fanv2']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_fans.py:157:57-67: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_humidifiers.py:124:13-41: Argument `Literal['HumidifierDehumidifier']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_humidifiers.py:124:43-53: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_lights.py:114:47-61: Argument `Literal['Lightbulb']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_locks.py:70:56-65: Argument `Literal['LockMechanism']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_media_players.py:105:17-28: Argument `Literal['Switch']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_media_players.py:105:30-63: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_media_players.py:120:17-28: Argument `Literal['Switch']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_media_players.py:121:17-50: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_media_players.py:137:17-28: Argument `Literal['Switch']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_media_players.py:138:17-50: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_media_players.py:154:17-28: Argument `Literal['Switch']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_media_players.py:155:17-50: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_media_players.py:287:17-40: Argument `Literal['TelevisionSpeaker']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_media_players.py:287:42-60: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_remotes.py:118:13-28: Argument `Literal['Television']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_remotes.py:118:30-43: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_remotes.py:138:17-34: Argument `Literal['InputSource']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_remotes.py:138:36-64: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_security_systems.py:97:47-67: Argument `Literal['SecuritySystem']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_security_systems.py:126:33-61: Object of class `NoneType` has no attribute `items` [missing-attribute] +ERROR homeassistant/components/homekit/type_security_systems.py:135:33-62: Object of class `NoneType` has no attribute `items` [missing-attribute] +ERROR homeassistant/components/homekit/type_sensors.py:123:46-69: Argument `Literal['TemperatureSensor']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_sensors.py:154:50-70: Argument `Literal['HumiditySensor']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_sensors.py:188:13-36: Argument `Literal['AirQualitySensor']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_sensors.py:188:38-68: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_sensors.py:214:13-36: Argument `Literal['AirQualitySensor']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_sensors.py:214:38-57: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_sensors.py:241:13-36: Argument `Literal['AirQualitySensor']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_sensors.py:241:38-57: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_sensors.py:268:13-36: Argument `Literal['AirQualitySensor']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_sensors.py:268:38-69: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_sensors.py:300:13-36: Argument `Literal['AirQualitySensor']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_sensors.py:300:38-56: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_sensors.py:337:13-40: Argument `Literal['CarbonMonoxideSensor']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_sensors.py:338:13-74: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_sensors.py:377:13-39: Argument `Literal['CarbonDioxideSensor']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_sensors.py:378:13-72: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_sensors.py:416:47-64: Argument `Literal['LightSensor']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_sensors.py:443:39-51: Cannot index into `dict[str, SI]` [bad-index] +ERROR homeassistant/components/homekit/type_sensors.py:449:44-64: Argument `str` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_switches.py:130:48-59: Argument `Literal['Outlet']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_switches.py:169:48-59: Argument `Literal['Switch']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_switches.py:315:47-57: Argument `Literal['Valve']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_switches.py:522:17-28: Argument `Literal['Outlet']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_switches.py:523:17-63: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_switches.py:535:34-63: Argument `Characteristic` is not assignable to parameter `primary_service` with type `Service` in function `pyhap.accessory.Accessory.set_primary_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_thermostats.py:235:52-67: Argument `Literal['Thermostat']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_thermostats.py:235:69-79: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_thermostats.py:252:26-49: Argument `dict[HVACMode, int]` is not assignable to parameter `valid_values` with type `dict[str, Any] | None` in function `pyhap.characteristic.Characteristic.override_properties` [bad-argument-type] +ERROR homeassistant/components/homekit/type_thermostats.py:279:45-286:14: `Characteristic` is not assignable to attribute `char_cooling_thresh_temp` with type `None` [bad-assignment] +ERROR homeassistant/components/homekit/type_thermostats.py:288:45-295:14: `Characteristic` is not assignable to attribute `char_heating_thresh_temp` with type `None` [bad-assignment] +ERROR homeassistant/components/homekit/type_thermostats.py:298:41-307:14: `Characteristic` is not assignable to attribute `char_target_humidity` with type `None` [bad-assignment] +ERROR homeassistant/components/homekit/type_thermostats.py:310:42-312:14: `Characteristic` is not assignable to attribute `char_current_humidity` with type `None` [bad-assignment] +ERROR homeassistant/components/homekit/type_thermostats.py:349:49-59: Argument `Literal['Fanv2']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_thermostats.py:349:61-75: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_thermostats.py:475:20-47: `CHAR_TARGET_HEATING_COOLING` may be uninitialized [unbound-name] +ERROR homeassistant/components/homekit/type_thermostats.py:476:33-60: `CHAR_TARGET_HEATING_COOLING` may be uninitialized [unbound-name] +ERROR homeassistant/components/homekit/type_thermostats.py:719:74-88: Argument `str | None` is not assignable to parameter `item` with type `str` in function `homeassistant.util.percentage.ordered_list_item_to_percentage` [bad-argument-type] +ERROR homeassistant/components/homekit/type_thermostats.py:755:52-67: Argument `Literal['Thermostat']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_triggers.py:69:17-51: Argument `Literal['StatelessProgrammableSwitch']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_triggers.py:70:17-76: Argument `list[str]` is not assignable to parameter `chars` with type `Iterable[Characteristic] | None` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_triggers.py:88:17-35: Argument `Literal['ServiceLabel']` is not assignable to parameter `service` with type `Service` in function `pyhap.accessory.Accessory.add_preload_service` [bad-argument-type] +ERROR homeassistant/components/homekit/type_triggers.py:107:13-30: Argument `str | None` is not assignable to parameter `name` with type `str` in function `homeassistant.helpers.trigger.async_initialize_triggers` [bad-argument-type] +ERROR homeassistant/components/homekit_controller/alarm_control_panel.py:67:5-29: Class member `HomeKitAlarmControlPanelEntity._attr_supported_features` overrides parent class `HomeKitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/binary_sensor.py:25:5-23: Class member `HomeKitMotionSensor._attr_device_class` overrides parent class `HomeKitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/binary_sensor.py:40:5-23: Class member `HomeKitContactSensor._attr_device_class` overrides parent class `HomeKitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/binary_sensor.py:55:5-23: Class member `HomeKitSmokeSensor._attr_device_class` overrides parent class `HomeKitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/binary_sensor.py:70:5-23: Class member `HomeKitCarbonMonoxideSensor._attr_device_class` overrides parent class `HomeKitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/binary_sensor.py:85:5-23: Class member `HomeKitOccupancySensor._attr_device_class` overrides parent class `HomeKitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/binary_sensor.py:100:5-23: Class member `HomeKitLeakSensor._attr_device_class` overrides parent class `HomeKitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/binary_sensor.py:115:5-23: Class member `HomeKitBatteryLowSensor._attr_device_class` overrides parent class `HomeKitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/button.py:43:9-12: Unexpected keyword argument `key` in function `HomeKitButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/button.py:44:9-13: Unexpected keyword argument `name` in function `HomeKitButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/button.py:45:9-24: Unexpected keyword argument `translation_key` in function `HomeKitButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/button.py:46:9-24: Unexpected keyword argument `entity_category` in function `HomeKitButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/button.py:50:9-12: Unexpected keyword argument `key` in function `HomeKitButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/button.py:51:9-13: Unexpected keyword argument `name` in function `HomeKitButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/button.py:53:9-24: Unexpected keyword argument `entity_category` in function `HomeKitButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/button.py:57:9-12: Unexpected keyword argument `key` in function `HomeKitButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/button.py:58:9-13: Unexpected keyword argument `name` in function `HomeKitButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/button.py:60:9-24: Unexpected keyword argument `entity_category` in function `HomeKitButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/button.py:111:5-23: Class member `HomeKitButton.entity_description` overrides parent class `BaseHomeKitButton` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/cover.py:78:5-23: Class member `HomeKitGarageDoorCover._attr_device_class` overrides parent class `HomeKitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/cover.py:79:5-29: Class member `HomeKitGarageDoorCover._attr_supported_features` overrides parent class `HomeKitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/cover.py:276:21-25: `char` may be uninitialized [unbound-name] +ERROR homeassistant/components/homekit_controller/cover.py:277:21-25: `char` may be uninitialized [unbound-name] +ERROR homeassistant/components/homekit_controller/cover.py:293:47-51: `char` may be uninitialized [unbound-name] +ERROR homeassistant/components/homekit_controller/device_trigger.py:256:12-18: `source` may be uninitialized [unbound-name] +ERROR homeassistant/components/homekit_controller/event.py:51:14-32: Class member `HomeKitEventEntity.entity_description` overrides parent class `BaseCharacteristicEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/event.py:105:25-28: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/event.py:107:25-40: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/event.py:129:25-28: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/event.py:131:25-40: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/event.py:146:29-32: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/event.py:148:29-44: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/fan.py:150:18-85: No matching overload found for function `max` called with arguments: (Literal[1], float | int) [no-matching-overload] +ERROR homeassistant/components/homekit_controller/humidifier.py:47:5-29: Class member `HomeKitBaseHumidifier._attr_supported_features` overrides parent class `HomeKitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/media_player.py:68:5-23: Class member `HomeKitTelevision._attr_device_class` overrides parent class `HomeKitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/number.py:30:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:31:9-13: Unexpected keyword argument `name` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:32:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:33:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:36:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:37:9-13: Unexpected keyword argument `name` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:38:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:39:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:43:9-13: Unexpected keyword argument `name` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:44:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:45:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:48:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:49:9-13: Unexpected keyword argument `name` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:50:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:51:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:54:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:55:9-13: Unexpected keyword argument `name` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:56:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:57:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:60:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:61:9-13: Unexpected keyword argument `name` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:62:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:63:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/number.py:109:14-32: Class member `HomeKitNumber.entity_description` overrides parent class `CharacteristicEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/select.py:31:5-9: Class member `HomeKitSelectEntityDescription.name` overrides parent class `SelectEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/select.py:36:9-12: Unexpected keyword argument `key` in function `HomeKitSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/select.py:37:9-24: Unexpected keyword argument `translation_key` in function `HomeKitSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/select.py:39:9-24: Unexpected keyword argument `entity_category` in function `HomeKitSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/select.py:46:9-12: Unexpected keyword argument `key` in function `HomeKitSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/select.py:47:9-24: Unexpected keyword argument `translation_key` in function `HomeKitSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/select.py:49:9-24: Unexpected keyword argument `entity_category` in function `HomeKitSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/select.py:72:5-23: Class member `HomeKitSelect.entity_description` overrides parent class `BaseHomeKitSelect` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/sensor.py:150:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:151:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:157:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:158:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:164:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:165:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:171:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:172:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:178:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:179:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:185:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:186:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:192:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:193:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:199:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:200:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:206:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:207:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:213:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:214:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:220:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:221:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:227:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:228:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:234:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:235:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:244:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:245:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:254:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:255:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:260:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:261:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:267:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:268:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:274:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:275:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:281:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:282:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:288:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:289:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:295:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:296:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:302:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:303:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:304:9-24: Unexpected keyword argument `entity_category` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:315:9-24: Unexpected keyword argument `translation_key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:318:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:319:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:320:9-24: Unexpected keyword argument `entity_category` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:332:9-24: Unexpected keyword argument `translation_key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:335:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:336:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:337:9-24: Unexpected keyword argument `entity_category` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:344:9-24: Unexpected keyword argument `translation_key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:347:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:348:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:354:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:355:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:360:9-12: Unexpected keyword argument `key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:361:9-13: Unexpected keyword argument `name` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:362:9-24: Unexpected keyword argument `translation_key` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:363:9-24: Unexpected keyword argument `entity_category` in function `HomeKitSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/sensor.py:546:5-23: Class member `SimpleSensor.entity_description` overrides parent class `CharacteristicEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/sensor.py:546:5-23: Class member `SimpleSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/sensor.py:599:5-23: Class member `RSSISensor._attr_device_class` overrides parent class `HomeKitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/switch.py:44:9-12: Unexpected keyword argument `key` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:45:9-13: Unexpected keyword argument `name` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:46:9-24: Unexpected keyword argument `translation_key` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:47:9-24: Unexpected keyword argument `entity_category` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:50:9-12: Unexpected keyword argument `key` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:51:9-13: Unexpected keyword argument `name` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:52:9-24: Unexpected keyword argument `translation_key` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:53:9-24: Unexpected keyword argument `entity_category` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:56:9-12: Unexpected keyword argument `key` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:57:9-13: Unexpected keyword argument `name` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:58:9-24: Unexpected keyword argument `translation_key` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:59:9-24: Unexpected keyword argument `entity_category` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:62:9-12: Unexpected keyword argument `key` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:63:9-13: Unexpected keyword argument `name` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:64:9-24: Unexpected keyword argument `translation_key` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:65:9-24: Unexpected keyword argument `entity_category` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:68:9-12: Unexpected keyword argument `key` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:69:9-13: Unexpected keyword argument `name` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:70:9-24: Unexpected keyword argument `translation_key` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:71:9-24: Unexpected keyword argument `entity_category` in function `DeclarativeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homekit_controller/switch.py:184:14-32: Class member `DeclarativeCharacteristicSwitch.entity_description` overrides parent class `CharacteristicEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homekit_controller/switch.py:184:14-32: Class member `DeclarativeCharacteristicSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematic/__init__.py:510:28-52: No matching overload found for function `typing.MutableMapping.update` called with arguments: (dict[None, Unknown]) [no-matching-overload] +ERROR homeassistant/components/homematic/binary_sensor.py:58:7-21: Field `entity_description` is declared `EntityDescription` in ancestor `class HMDevice: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/homematic/binary_sensor.py:83:7-22: Field `entity_description` is declared `EntityDescription` in ancestor `class HMDevice: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/homematic/binary_sensor.py:86:5-23: Class member `HMBatterySensor._attr_device_class` overrides parent class `HMDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematic/climate.py:56:7-19: Field `entity_description` is declared `EntityDescription` in ancestor `class HMDevice: ... +`, which is not assignable to the type `ClimateEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/homematic/climate.py:59:5-29: Class member `HMThermostat._attr_supported_features` overrides parent class `HMDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematic/climate.py:70:5-11: Class member `HMThermostat._state` overrides parent class `HMDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematic/climate.py:78:39-63: Object of class `HMGeneric` has no attribute `OFF_VALUE` [missing-attribute] +ERROR homeassistant/components/homematic/climate.py:80:27-52: Object of class `HMGeneric` has no attribute `ACTIONNODE` [missing-attribute] +ERROR homeassistant/components/homematic/climate.py:81:41-65: Object of class `HMGeneric` has no attribute `MANU_MODE` [missing-attribute] +ERROR homeassistant/components/homematic/climate.py:96:27-52: Object of class `HMGeneric` has no attribute `ACTIONNODE` [missing-attribute] +ERROR homeassistant/components/homematic/climate.py:122:25-50: Object of class `HMGeneric` has no attribute `ACTIONNODE` [missing-attribute] +ERROR homeassistant/components/homematic/climate.py:152:9-37: Object of class `HMGeneric` has no attribute `writeNodeData` [missing-attribute] +ERROR homeassistant/components/homematic/climate.py:157:13-32: Object of class `HMGeneric` has no attribute `MODE` [missing-attribute] +ERROR homeassistant/components/homematic/climate.py:159:13-32: Object of class `HMGeneric` has no attribute `MODE` [missing-attribute] +ERROR homeassistant/components/homematic/climate.py:161:13-35: Object of class `HMGeneric` has no attribute `turnoff` [missing-attribute] +ERROR homeassistant/components/homematic/climate.py:166:13-32: Object of class `HMGeneric` has no attribute `MODE` [missing-attribute] +ERROR homeassistant/components/homematic/climate.py:168:13-32: Object of class `HMGeneric` has no attribute `MODE` [missing-attribute] +ERROR homeassistant/components/homematic/climate.py:170:13-32: Object of class `HMGeneric` has no attribute `MODE` [missing-attribute] +ERROR homeassistant/components/homematic/climate.py:183:33-57: Object of class `HMGeneric` has no attribute `WRITENODE` [missing-attribute] +ERROR homeassistant/components/homematic/climate.py:187:32-60: Object of class `HMGeneric` has no attribute `ATTRIBUTENODE` [missing-attribute] +ERROR homeassistant/components/homematic/climate.py:188:37-65: Object of class `HMGeneric` has no attribute `ATTRIBUTENODE` [missing-attribute] +ERROR homeassistant/components/homematic/climate.py:192:21-46: Object of class `HMGeneric` has no attribute `SENSORNODE` [missing-attribute] +ERROR homeassistant/components/homematic/cover.py:43:7-14: Field `entity_description` is declared `EntityDescription` in ancestor `class HMDevice: ... +`, which is not assignable to the type `CoverEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/homematic/cover.py:58:36-49: No matching overload found for function `max` called with arguments: (Literal[0], float) [no-matching-overload] +ERROR homeassistant/components/homematic/cover.py:60:13-37: Object of class `HMGeneric` has no attribute `set_level` [missing-attribute] +ERROR homeassistant/components/homematic/cover.py:71:9-31: Object of class `HMGeneric` has no attribute `move_up` [missing-attribute] +ERROR homeassistant/components/homematic/cover.py:75:9-33: Object of class `HMGeneric` has no attribute `move_down` [missing-attribute] +ERROR homeassistant/components/homematic/cover.py:79:9-28: Object of class `HMGeneric` has no attribute `stop` [missing-attribute] +ERROR homeassistant/components/homematic/cover.py:85:25-49: Object of class `HMGeneric` has no attribute `WRITENODE` [missing-attribute] +ERROR homeassistant/components/homematic/cover.py:102:36-49: No matching overload found for function `max` called with arguments: (Literal[0], float) [no-matching-overload] +ERROR homeassistant/components/homematic/cover.py:104:13-51: Object of class `HMGeneric` has no attribute `set_cover_tilt_position` [missing-attribute] +ERROR homeassistant/components/homematic/cover.py:109:13-38: Object of class `HMGeneric` has no attribute `open_slats` [missing-attribute] +ERROR homeassistant/components/homematic/cover.py:114:13-39: Object of class `HMGeneric` has no attribute `close_slats` [missing-attribute] +ERROR homeassistant/components/homematic/cover.py:139:16-40: Object of class `HMGeneric` has no attribute `is_closed` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:73:16-39: Object of class `NoneType` has no attribute `replace` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:134:35-57: Object of class `HMGeneric` has no attribute `UNREACH` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:135:35-57: Object of class `HMGeneric` has no attribute `UNREACH` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:145:13-38: Object of class `HMGeneric` has no attribute `ACTIONNODE` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:146:13-37: Object of class `HMGeneric` has no attribute `EVENTNODE` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:147:13-37: Object of class `HMGeneric` has no attribute `WRITENODE` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:148:13-41: Object of class `HMGeneric` has no attribute `ATTRIBUTENODE` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:149:13-38: Object of class `HMGeneric` has no attribute `BINARYNODE` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:150:13-38: Object of class `HMGeneric` has no attribute `SENSORNODE` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:166:9-40: Object of class `HMGeneric` has no attribute `setEventCallback` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:175:14-42: Object of class `HMGeneric` has no attribute `ATTRIBUTENODE` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:175:44-75: Object of class `HMGeneric` has no attribute `getAttributeData` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:176:14-38: Object of class `HMGeneric` has no attribute `WRITENODE` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:176:40-67: Object of class `HMGeneric` has no attribute `getWriteData` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:177:14-39: Object of class `HMGeneric` has no attribute `SENSORNODE` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:177:41-69: Object of class `HMGeneric` has no attribute `getSensorData` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:178:14-39: Object of class `HMGeneric` has no attribute `BINARYNODE` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:178:41-69: Object of class `HMGeneric` has no attribute `getBinaryData` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:189:24-35: Cannot set item in `dict[str, Any]` [unsupported-operation] +ERROR homeassistant/components/homematic/entity.py:194:31-42: Cannot index into `dict[str, Any]` [bad-index] +ERROR homeassistant/components/homematic/entity.py:200:26-54: Object of class `HMGeneric` has no attribute `ATTRIBUTENODE` [missing-attribute] +ERROR homeassistant/components/homematic/entity.py:259:27-32: `int | None` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/homematic/light.py:47:7-14: Field `entity_description` is declared `EntityDescription` in ancestor `class HMDevice: ... +`, which is not assignable to the type `LightEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/homematic/light.py:72:23-47: Object of class `HMGeneric` has no attribute `WRITENODE` [missing-attribute] +ERROR homeassistant/components/homematic/light.py:83:23-47: Object of class `HMGeneric` has no attribute `WRITENODE` [missing-attribute] +ERROR homeassistant/components/homematic/light.py:96:25-49: Object of class `HMGeneric` has no attribute `WRITENODE` [missing-attribute] +ERROR homeassistant/components/homematic/light.py:105:20-47: Object of class `HMGeneric` has no attribute `get_hs_color` [missing-attribute] +ERROR homeassistant/components/homematic/light.py:113:25-54: Object of class `HMGeneric` has no attribute `get_color_temp` [missing-attribute] +ERROR homeassistant/components/homematic/light.py:123:16-46: Object of class `HMGeneric` has no attribute `get_effect_list` [missing-attribute] +ERROR homeassistant/components/homematic/light.py:130:16-41: Object of class `HMGeneric` has no attribute `get_effect` [missing-attribute] +ERROR homeassistant/components/homematic/light.py:135:13-36: Object of class `HMGeneric` has no attribute `setValue` [missing-attribute] +ERROR homeassistant/components/homematic/light.py:139:13-37: Object of class `HMGeneric` has no attribute `set_level` [missing-attribute] +ERROR homeassistant/components/homematic/light.py:145:13-30: Object of class `HMGeneric` has no attribute `on` [missing-attribute] +ERROR homeassistant/components/homematic/light.py:148:13-40: Object of class `HMGeneric` has no attribute `set_hs_color` [missing-attribute] +ERROR homeassistant/components/homematic/light.py:158:13-42: Object of class `HMGeneric` has no attribute `set_color_temp` [missing-attribute] +ERROR homeassistant/components/homematic/light.py:160:13-38: Object of class `HMGeneric` has no attribute `set_effect` [missing-attribute] +ERROR homeassistant/components/homematic/light.py:165:13-36: Object of class `HMGeneric` has no attribute `setValue` [missing-attribute] +ERROR homeassistant/components/homematic/light.py:167:9-27: Object of class `HMGeneric` has no attribute `off` [missing-attribute] +ERROR homeassistant/components/homematic/lock.py:29:7-13: Field `entity_description` is declared `EntityDescription` in ancestor `class HMDevice: ... +`, which is not assignable to the type `LockEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/homematic/lock.py:32:5-29: Class member `HMLock._attr_supported_features` overrides parent class `HMDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematic/lock.py:41:9-28: Object of class `HMGeneric` has no attribute `lock` [missing-attribute] +ERROR homeassistant/components/homematic/lock.py:45:9-30: Object of class `HMGeneric` has no attribute `unlock` [missing-attribute] +ERROR homeassistant/components/homematic/lock.py:49:9-28: Object of class `HMGeneric` has no attribute `open` [missing-attribute] +ERROR homeassistant/components/homematic/sensor.py:60:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:66:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:72:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:78:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:84:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:90:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:96:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:102:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:108:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:114:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:120:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:126:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:132:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:138:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:144:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:150:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:156:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:161:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:167:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:172:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:175:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:178:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:184:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:188:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:192:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:198:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:203:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:207:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:211:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:215:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:219:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:221:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:224:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:230:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:236:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:242:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:248:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:254:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:260:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:263:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:266:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:269:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:272:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:275:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:278:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:281:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:284:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:287:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:292:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:293:5-36: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematic/sensor.py:322:37-48: `entity_desc` may be uninitialized [unbound-name] +ERROR homeassistant/components/homematic/sensor.py:328:7-15: Field `entity_description` is declared `EntityDescription` in ancestor `class HMDevice: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/homematic/switch.py:34:7-15: Field `entity_description` is declared `EntityDescription` in ancestor `class HMDevice: ... +`, which is not assignable to the type `SwitchEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/homematic/switch.py:58:9-26: Object of class `HMGeneric` has no attribute `on` [missing-attribute] +ERROR homeassistant/components/homematic/switch.py:62:9-27: Object of class `HMGeneric` has no attribute `off` [missing-attribute] +ERROR homeassistant/components/homematic/switch.py:70:21-46: Object of class `HMGeneric` has no attribute `SENSORNODE` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/__init__.py:99:29-39: Object of class `AsyncHome` has no attribute `label` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/__init__.py:103:21-40: Argument `set[tuple[str, None]]` is not assignable to parameter `identifiers` with type `UndefinedType | set[tuple[str, str]] | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/homematicip_cloud/__init__.py:106:14-21: Argument `object | str` is not assignable to parameter `name` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/homematicip_cloud/__init__.py:128:8-44: `<` is not supported between `None` and `Literal['2.2.12']` [unsupported-operation] +ERROR homeassistant/components/homematicip_cloud/alarm_control_panel.py:58:24-47: Argument `tuple[Literal['homematicip_cloud'], None]` is not assignable to parameter `via_device` with type `tuple[str, str]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/homematicip_cloud/alarm_control_panel.py:80:16-67: Returned type `FunctionalHome | None` is not assignable to declared return type `SecurityAndAlarmHome` [bad-return] +ERROR homeassistant/components/homematicip_cloud/alarm_control_panel.py:118:12-27: Object of class `AsyncHome` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/alarm_control_panel.py:125:16-36: Returned type `None` is not assignable to declared return type `bool` [bad-return] +ERROR homeassistant/components/homematicip_cloud/binary_sensor.py:156:28-43: Object of class `AsyncHome` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/binary_sensor.py:163:25-166:14: Argument `set[tuple[str, None]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/homematicip_cloud/binary_sensor.py:181:16-36: Returned type `None` is not assignable to declared return type `bool` [bad-return] +ERROR homeassistant/components/homematicip_cloud/binary_sensor.py:192:5-23: Class member `HomematicipBaseActionSensor._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/binary_sensor.py:222:5-23: Class member `HomematicipMultiContactInterface._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/binary_sensor.py:283:5-23: Class member `HomematicipMotionDetector._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/binary_sensor.py:294:5-23: Class member `HomematicipPresenceDetector._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/binary_sensor.py:305:5-23: Class member `HomematicipSmokeDetector._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/binary_sensor.py:321:5-23: Class member `HomematicipWaterDetector._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/binary_sensor.py:350:5-23: Class member `HomematicipRainSensor._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/binary_sensor.py:365:5-23: Class member `HomematicipSunshineSensor._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/binary_sensor.py:391:5-23: Class member `HomematicipBatterySensor._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/binary_sensor.py:408:5-23: Class member `HomematicipPluggableMainsFailureSurveillanceSensor._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/binary_sensor.py:423:5-23: Class member `HomematicipSecurityZoneSensorGroup._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/climate.py:78:5-29: Class member `HomematicipHeatingGroup._attr_supported_features` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/climate.py:85:9-25: Object of class `HeatingGroup` has no attribute `modelType` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/climate.py:89:36-67: `HeatingThermostat | HeatingThermostatCompact | HeatingThermostatEvo | None` is not assignable to attribute `_simple_heating` with type `None` [bad-assignment] +ERROR homeassistant/components/homematicip_cloud/climate.py:259:16-64: Returned type `FunctionalHome | None` is not assignable to declared return type `IndoorClimateHome` [bad-return] +ERROR homeassistant/components/homematicip_cloud/climate.py:281:20-32: Returned type `None` is not assignable to declared return type `str` [bad-return] +ERROR homeassistant/components/homematicip_cloud/climate.py:296:31-44: Cannot index into `dict[str, int]` [bad-index] +ERROR homeassistant/components/homematicip_cloud/cover.py:70:5-23: Class member `HomematicipBlindModule._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/cover.py:148:5-23: Class member `HomematicipMultiCoverShutter._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/cover.py:270:5-23: Class member `HomematicipGarageDoorModule._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/cover.py:286:16-49: Object of class `FunctionalChannel` has no attribute `doorState` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/cover.py:290:15-62: Object of class `FunctionalChannel` has no attribute `async_send_door_command` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/cover.py:294:15-62: Object of class `FunctionalChannel` has no attribute `async_send_door_command` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/cover.py:298:15-62: Object of class `FunctionalChannel` has no attribute `async_send_door_command` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/cover.py:304:5-23: Class member `HomematicipCoverShutterGroup._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/entity.py:105:29-108:18: Argument `set[tuple[str, None]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/homematicip_cloud/entity.py:114:28-57: Argument `tuple[Literal['homematicip_cloud'], None]` is not assignable to parameter `via_device` with type `tuple[str, str]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/homematicip_cloud/entity.py:205:21-36: Object of class `AsyncHome` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/entity.py:265:16-20: Returned type `None` is not assignable to declared return type `FunctionalChannel` [bad-return] +ERROR homeassistant/components/homematicip_cloud/event.py:33:9-12: Unexpected keyword argument `key` in function `HmipEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematicip_cloud/event.py:34:9-24: Unexpected keyword argument `translation_key` in function `HmipEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homematicip_cloud/event.py:71:5-23: Class member `HomematicipDoorBellEvent._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/event.py:72:5-23: Class member `HomematicipDoorBellEvent.entity_description` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/event.py:72:5-23: Class member `HomematicipDoorBellEvent.entity_description` overrides parent class `EventEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/event.py:121:20-44: Returned type `str | None` is not assignable to declared return type `str` [bad-return] +ERROR homeassistant/components/homematicip_cloud/hap.py:35:15-33: Module `homeassistant.util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/homematicip_cloud/hap.py:35:15-37: Module `homeassistant.util.ssl` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/homematicip_cloud/hap.py:39:24-29: Argument `str | None` is not assignable to parameter `accesspoint_id` with type `str` in function `homematicip.connection.connection_context.ConnectionContextBuilder.build_context_async` [bad-argument-type] +ERROR homeassistant/components/homematicip_cloud/hap.py:291:9-18: Object of class `AsyncHome` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/hap.py:293:9-19: Object of class `AsyncHome` has no attribute `label` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/hap.py:294:9-23: Object of class `AsyncHome` has no attribute `modelType` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/light.py:70:38-60: Argument `None` is not assignable to parameter `version` with type `str` in function `packaging.version.Version.__init__` [bad-argument-type] +ERROR homeassistant/components/homematicip_cloud/light.py:137:16-42: Object of class `FunctionalChannel` has no attribute `on` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/light.py:142:20-52: Object of class `FunctionalChannel` has no attribute `dimLevel` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/light.py:148:13-40: Object of class `FunctionalChannel` has no attribute `hue` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/light.py:149:16-55: Object of class `FunctionalChannel` has no attribute `saturationLevel` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/light.py:152:16-155:10: Returned type `tuple[object, float]` is not assignable to declared return type `tuple[float, float] | None` [bad-return] +ERROR homeassistant/components/homematicip_cloud/light.py:154:13-60: `*` is not supported between `object` and `float` [unsupported-operation] +ERROR homeassistant/components/homematicip_cloud/light.py:166:19-46: Object of class `FunctionalChannel` has no attribute `hue` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/light.py:167:26-65: Object of class `FunctionalChannel` has no attribute `saturationLevel` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/light.py:171:25-57: Object of class `FunctionalChannel` has no attribute `dimLevel` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/light.py:173:15-73: Object of class `FunctionalChannel` has no attribute `set_hue_saturation_dim_level_async` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/light.py:179:15-61: Object of class `FunctionalChannel` has no attribute `set_switch_state_async` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/light.py:244:5-29: Class member `HomematicipNotificationLight._attr_supported_features` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/light.py:359:16-33: Returned type `list[OpticalSignalBehaviour]` is not assignable to declared return type `list[str] | None` [bad-return] +ERROR homeassistant/components/homematicip_cloud/light.py:392:36-42: Argument `str | Any | None` is not assignable to parameter `opticalSignalBehaviour` with type `OpticalSignalBehaviour` in function `homematicip.base.functionalChannels.NotificationLightChannel.async_set_optical_signal` [bad-argument-type] +ERROR homeassistant/components/homematicip_cloud/lock.py:54:5-29: Class member `HomematicipDoorLockDrive._attr_supported_features` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/sensor.py:310:16-49: Object of class `FunctionalChannel` has no attribute `waterFlow` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/sensor.py:373:5-23: Class member `HomematicipTiltStateSensor._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/sensor.py:498:5-23: Class member `HomematicipHumiditySensor._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/sensor.py:515:5-23: Class member `HomematicipTemperatureSensor._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/sensor.py:546:5-23: Class member `HomematicipAbsoluteHumiditySensor._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/sensor.py:561:17-52: Object of class `FunctionalChannel` has no attribute `vaporAmount` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/sensor.py:565:13-48: Object of class `FunctionalChannel` has no attribute `vaporAmount` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/sensor.py:576:5-23: Class member `HomematicipIlluminanceSensor._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/sensor.py:607:5-23: Class member `HomematicipPowerSensor._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/sensor.py:624:5-23: Class member `HomematicipEnergySensor._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/sensor.py:641:5-23: Class member `HomematicipWindspeedSensor._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/sensor.py:673:5-23: Class member `HomematicipTodayRainSensor._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/sensor.py:690:5-23: Class member `HomematicpTemperatureExternalSensorCh1._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/sensor.py:707:5-23: Class member `HomematicpTemperatureExternalSensorCh2._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/sensor.py:724:5-23: Class member `HomematicpTemperatureExternalSensorDelta._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/sensor.py:788:38-69: Object of class `FunctionalChannel` has no attribute `currentPowerConsumption` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/sensor.py:806:38-62: Object of class `FunctionalChannel` has no attribute `energyCounterOne` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/sensor.py:807:37-65: Object of class `FunctionalChannel` has no attribute `energyCounterOneType` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/sensor.py:824:38-62: Object of class `FunctionalChannel` has no attribute `energyCounterTwo` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/sensor.py:825:37-65: Object of class `FunctionalChannel` has no attribute `energyCounterTwoType` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/sensor.py:842:38-64: Object of class `FunctionalChannel` has no attribute `energyCounterThree` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/sensor.py:843:37-67: Object of class `FunctionalChannel` has no attribute `energyCounterThreeType` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/sensor.py:860:38-60: Object of class `FunctionalChannel` has no attribute `currentGasFlow` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/sensor.py:878:38-55: Object of class `FunctionalChannel` has no attribute `gasVolume` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/sensor.py:896:38-69: Object of class `FunctionalChannel` has no attribute `currentPowerConsumption` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/sensor.py:914:38-62: Object of class `FunctionalChannel` has no attribute `energyCounterOne` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/switch.py:116:16-42: Object of class `FunctionalChannel` has no attribute `on` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/switch.py:120:15-52: Object of class `FunctionalChannel` has no attribute `async_turn_on` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/switch.py:124:15-53: Object of class `FunctionalChannel` has no attribute `async_turn_off` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/valve.py:39:5-29: Class member `HomematicipWateringValve._attr_supported_features` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/valve.py:40:5-23: Class member `HomematicipWateringValve._attr_device_class` overrides parent class `HomematicipGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homematicip_cloud/valve.py:50:15-70: Object of class `FunctionalChannel` has no attribute `set_watering_switch_state_async` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/valve.py:54:15-70: Object of class `FunctionalChannel` has no attribute `set_watering_switch_state_async` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/valve.py:59:16-54: Object of class `FunctionalChannel` has no attribute `wateringActive` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/weather.py:127:9-27: Object of class `AsyncHome` has no attribute `modelType` [missing-attribute] +ERROR homeassistant/components/homematicip_cloud/weather.py:133:16-36: Returned type `None` is not assignable to declared return type `bool` [bad-return] +ERROR homeassistant/components/homematicip_cloud/weather.py:138:27-51: Object of class `NoneType` has no attribute `city` [missing-attribute] +ERROR homeassistant/components/homewizard/__init__.py:59:17-45: Object of class `object` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/homewizard/button.py:29:5-23: Class member `HomeWizardIdentifyButton._attr_device_class` overrides parent class `HomeWizardEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homewizard/coordinator.py:25:5-17: Class member `HWEnergyDeviceUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homewizard/select.py:36:9-12: Unexpected keyword argument `key` in function `HomeWizardSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/select.py:37:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/select.py:38:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/select.py:39:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/select.py:68:5-23: Class member `HomeWizardSelectEntity.entity_description` overrides parent class `HomeWizardEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homewizard/select.py:68:5-23: Class member `HomeWizardSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homewizard/sensor.py:79:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:81:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:86:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:88:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:93:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:94:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:95:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:100:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:101:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:102:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:111:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:123:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:124:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:127:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:128:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:140:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:141:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:144:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:145:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:155:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:156:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:164:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:165:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:166:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:178:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:179:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:180:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:188:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:189:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:190:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:198:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:199:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:200:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:208:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:209:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:218:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:219:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:220:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:233:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:234:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:235:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:244:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:245:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:246:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:255:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:256:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:257:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:266:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:275:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:276:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:277:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:286:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:287:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:288:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:297:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:298:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:299:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:308:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:312:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:317:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:318:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:319:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:323:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:328:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:329:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:330:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:334:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:339:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:340:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:341:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:345:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:350:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:354:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:359:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:360:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:361:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:365:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:370:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:371:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:372:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:376:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:381:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:382:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:383:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:387:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:392:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:396:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:401:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:405:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:410:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:411:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:412:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:416:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:421:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:422:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:423:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:427:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:432:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:433:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:434:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:438:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:443:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:447:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:452:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:453:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:454:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:458:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:463:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:464:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:465:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:469:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:474:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:475:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:476:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:480:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:485:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:489:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:494:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:495:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:496:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:500:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:505:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:506:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:507:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:511:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:516:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:517:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:518:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:522:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:527:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:528:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:529:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:530:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:535:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:536:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:537:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:538:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:543:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:544:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:545:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:546:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:551:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:552:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:553:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:554:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:559:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:560:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:561:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:562:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:567:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:568:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:569:9-33: Unexpected keyword argument `translation_placeholders` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:570:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:575:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:576:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:577:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:582:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:583:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:584:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:589:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:590:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:597:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:598:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:605:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:606:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:613:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:614:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:622:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:623:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:632:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:633:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:634:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:640:9-12: Unexpected keyword argument `key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:641:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:643:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:644:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `HomeWizardSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:661:9-12: Unexpected keyword argument `key` in function `HomeWizardExternalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:667:9-12: Unexpected keyword argument `key` in function `HomeWizardExternalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:673:9-12: Unexpected keyword argument `key` in function `HomeWizardExternalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:679:9-12: Unexpected keyword argument `key` in function `HomeWizardExternalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:685:9-12: Unexpected keyword argument `key` in function `HomeWizardExternalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/sensor.py:727:5-23: Class member `HomeWizardSensorEntity.entity_description` overrides parent class `HomeWizardEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homewizard/sensor.py:727:5-23: Class member `HomeWizardSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homewizard/sensor.py:763:14-32: Class member `HomeWizardExternalSensorEntity.entity_description` overrides parent class `HomeWizardEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homewizard/switch.py:40:9-12: Unexpected keyword argument `key` in function `HomeWizardSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/switch.py:41:9-13: Unexpected keyword argument `name` in function `HomeWizardSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/switch.py:49:9-12: Unexpected keyword argument `key` in function `HomeWizardSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/switch.py:50:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/switch.py:51:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/switch.py:58:9-12: Unexpected keyword argument `key` in function `HomeWizardSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/switch.py:59:9-24: Unexpected keyword argument `translation_key` in function `HomeWizardSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/switch.py:60:9-24: Unexpected keyword argument `entity_category` in function `HomeWizardSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/homewizard/switch.py:85:5-23: Class member `HomeWizardSwitchEntity.entity_description` overrides parent class `HomeWizardEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homewizard/switch.py:85:5-23: Class member `HomeWizardSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/homeworks/__init__.py:159:43-61: Argument `BoundMethod[Homeworks, (self: Homeworks) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/homeworks/__init__.py:190:43-77: Argument `BoundMethod[Homeworks, (self: Homeworks) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/homeworks/__init__.py:192:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/homeworks/config_flow.py:662:9-31: Class member `HomeworksConfigFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/honeywell/__init__.py:61:12-33: Module `aiosomecomfort.device` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/honeywell/__init__.py:65:9-30: Module `aiosomecomfort.device` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/honeywell/__init__.py:66:9-30: Module `aiosomecomfort.device` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/honeywell/__init__.py:67:9-30: Module `aiosomecomfort.device` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/honeywell/__init__.py:102:24-45: Module `aiosomecomfort.device` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/honeywell/climate.py:286:16-45: Returned type `float | None` is not assignable to declared return type `int | None` [bad-return] +ERROR homeassistant/components/honeywell/climate.py:345:37-60: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/honeywell/climate.py:421:63-74: `temperature` is uninitialized [unbound-name] +ERROR homeassistant/components/honeywell/climate.py:425:66-77: `temperature` is uninitialized [unbound-name] +ERROR homeassistant/components/honeywell/config_flow.py:132:9-31: Class member `HoneywellConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/honeywell/humidifier.py:43:9-12: Unexpected keyword argument `key` in function `HoneywellHumidifierEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/honeywell/humidifier.py:44:9-24: Unexpected keyword argument `translation_key` in function `HoneywellHumidifierEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/honeywell/humidifier.py:56:9-12: Unexpected keyword argument `key` in function `HoneywellHumidifierEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/honeywell/humidifier.py:57:9-24: Unexpected keyword argument `translation_key` in function `HoneywellHumidifierEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/honeywell/humidifier.py:93:5-23: Class member `HoneywellHumidifier.entity_description` overrides parent class `HumidifierEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/honeywell/sensor.py:49:9-12: Unexpected keyword argument `key` in function `HoneywellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/honeywell/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `HoneywellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/honeywell/sensor.py:57:9-12: Unexpected keyword argument `key` in function `HoneywellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/honeywell/sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `HoneywellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/honeywell/sensor.py:65:9-12: Unexpected keyword argument `key` in function `HoneywellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/honeywell/sensor.py:72:9-12: Unexpected keyword argument `key` in function `HoneywellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/honeywell/sensor.py:100:5-23: Class member `HoneywellSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/honeywell/switch.py:27:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/honeywell/switch.py:28:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/horizon/media_player.py:9:1-34: Could not find import of `horimote` [missing-import] +ERROR homeassistant/components/horizon/media_player.py:10:1-52: Could not find import of `horimote.exceptions` [missing-import] +ERROR homeassistant/components/hp_ilo/sensor.py:8:8-13: Could not find import of `hpilo` [missing-import] +ERROR homeassistant/components/html5/notify.py:481:13-35: Object of class `str` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/html5/notify.py:484:13-41: Cannot set item in `str` [unsupported-operation] +ERROR homeassistant/components/html5/notify.py:501:28-35: `targets` may be uninitialized [unbound-name] +ERROR homeassistant/components/http/__init__.py:428:17-41: Argument `BoundMethod[Self@HomeAssistantHTTP, (self: Self@HomeAssistantHTTP) -> SSLContext | None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/http/auth.py:82:44-50: `secret` may be uninitialized [unbound-name] +ERROR homeassistant/components/http/auth.py:130:26-30: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/http/auth.py:131:47-51: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/http/auth.py:140:9-13: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/http/auth.py:141:32-36: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/http/auth.py:238:17-26: `auth_type` may be uninitialized [unbound-name] +ERROR homeassistant/components/http/ban.py:38:26-40: Expected a type form, got instance of `Literal['IpBanManager']` [not-a-type] +ERROR homeassistant/components/http/ban.py:218:59-220:14: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[str, Secrets | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/http/security_filter.py:53:16-24: `unquoted` may be uninitialized [unbound-name] +ERROR homeassistant/components/http/static.py:42:37-84: `str` is not assignable to attribute `content_type` with type `(self: FileResponse, value: str) -> None` [bad-assignment] +ERROR homeassistant/components/http/web_runner.py:58:15-28: Method `start` inherited from class `BaseSite` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR homeassistant/components/huawei_lte/__init__.py:309:56-64: Argument `() -> Connection` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/huawei_lte/__init__.py:319:39-52: Argument `BoundMethod[Router, (self: Router) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/huawei_lte/__init__.py:364:13-52: Argument `BoundMethod[WLan, (self: WLan) -> dict[str, Any]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/huawei_lte/__init__.py:485:73-76: `url` may be uninitialized [unbound-name] +ERROR homeassistant/components/huawei_lte/binary_sensor.py:137:17-32: Cannot index into `dict[str, str]` [bad-index] +ERROR homeassistant/components/huawei_lte/binary_sensor.py:161:5-26: Class member `HuaweiLteWifiStatusBinarySensor._attr_translation_key` overrides parent class `HuaweiLteBaseWifiStatusBinarySensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huawei_lte/binary_sensor.py:170:5-26: Class member `HuaweiLteWifi24ghzStatusBinarySensor._attr_translation_key` overrides parent class `HuaweiLteBaseWifiStatusBinarySensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huawei_lte/binary_sensor.py:179:5-26: Class member `HuaweiLteWifi5ghzStatusBinarySensor._attr_translation_key` overrides parent class `HuaweiLteBaseWifiStatusBinarySensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huawei_lte/binary_sensor.py:188:5-26: Class member `HuaweiLteSmsStorageFullBinarySensor._attr_translation_key` overrides parent class `HuaweiLteBaseBinarySensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huawei_lte/button.py:72:9-12: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/button.py:73:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/button.py:74:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/button.py:89:9-12: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/button.py:91:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/config_flow.py:78:9-31: Class member `HuaweiLteConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huawei_lte/config_flow.py:169:59-74: Argument `() -> Connection` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/huawei_lte/config_flow.py:309:37-40: Argument `str | None` is not assignable to parameter `url` with type `str` in function `huawei_lte_api.Connection.Connection.__init__` [bad-argument-type] +ERROR homeassistant/components/huawei_lte/config_flow.py:317:55-75: Argument `() -> bool` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/huawei_lte/select.py:47:9-12: Unexpected keyword argument `key` in function `HuaweiSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/select.py:48:9-24: Unexpected keyword argument `entity_category` in function `HuaweiSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/select.py:49:9-24: Unexpected keyword argument `translation_key` in function `HuaweiSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/select.py:80:5-23: Class member `HuaweiLteSelectEntity.entity_description` overrides parent class `HuaweiLteBaseEntityWithDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huawei_lte/select.py:80:5-23: Class member `HuaweiLteSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huawei_lte/sensor.py:95:13-60: No matching overload found for function `_bisect.bisect_right` called with arguments: (Sequence[int], float | int | str) [no-matching-overload] +ERROR homeassistant/components/huawei_lte/sensor.py:104:13-60: No matching overload found for function `_bisect.bisect_right` called with arguments: (Sequence[int], float | int | str) [no-matching-overload] +ERROR homeassistant/components/huawei_lte/sensor.py:122:5-9: Class member `HuaweiSensorEntityDescription.name` overrides parent class `SensorEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huawei_lte/sensor.py:139:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:140:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:143:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:146:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:147:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:148:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:149:17-48: Unexpected keyword argument `entity_registry_enabled_default` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:152:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:153:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:154:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:164:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:165:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:166:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:169:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:170:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:171:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:174:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:175:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:176:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:179:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:180:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:181:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:184:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:185:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:186:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:189:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:190:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:191:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:194:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:195:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:196:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:199:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:200:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:202:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:205:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:206:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:208:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:211:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:212:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:213:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:216:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:217:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:222:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:225:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:226:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:227:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:230:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:231:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:232:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:235:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:236:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:237:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:240:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:241:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:245:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:248:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:249:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:253:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:256:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:257:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:269:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:272:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:273:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:274:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:277:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:278:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:279:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:282:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:283:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:284:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:287:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:288:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:289:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:292:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:293:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:296:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:299:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:300:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:301:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:304:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:305:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:306:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:309:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:310:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:311:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:314:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:315:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:319:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:320:17-48: Unexpected keyword argument `entity_registry_enabled_default` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:323:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:324:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:328:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:329:17-48: Unexpected keyword argument `entity_registry_enabled_default` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:332:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:333:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:337:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:338:17-48: Unexpected keyword argument `entity_registry_enabled_default` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:341:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:342:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:352:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:355:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:356:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:358:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:361:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:362:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:363:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:366:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:367:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:368:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:371:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:372:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:373:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:376:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:377:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:378:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:381:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:382:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:383:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:386:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:387:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:392:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:395:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:396:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:401:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:402:17-48: Unexpected keyword argument `entity_registry_enabled_default` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:405:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:406:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:411:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:412:17-48: Unexpected keyword argument `entity_registry_enabled_default` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:415:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:416:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:421:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:422:17-48: Unexpected keyword argument `entity_registry_enabled_default` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:425:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:426:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:428:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:431:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:432:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:433:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:436:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:437:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:442:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:443:17-48: Unexpected keyword argument `entity_registry_enabled_default` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:446:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:447:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:448:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:451:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:452:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:453:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:456:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:457:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:458:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:461:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:462:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:472:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:475:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:476:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:477:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:480:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:481:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:483:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:486:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:487:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:489:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:492:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:493:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:495:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:513:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:514:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:524:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:525:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:533:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:534:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:542:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:543:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:559:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:560:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:564:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:567:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:568:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:570:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:573:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:574:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:575:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:578:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:579:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:580:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:583:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:584:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:585:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:588:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:589:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:590:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:598:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:599:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:604:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:605:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:611:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:612:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:618:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:619:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:625:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:626:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:632:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:633:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:639:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:640:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:646:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:647:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:653:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:654:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:660:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:661:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:675:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:676:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:677:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:680:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:681:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:682:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:685:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:686:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:687:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:695:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:696:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:697:17-32: Unexpected keyword argument `entity_category` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:707:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:708:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:711:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:712:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:715:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:716:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:719:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:720:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:723:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:724:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:727:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:728:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:731:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:732:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:735:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:736:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:739:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:740:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:743:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:744:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:747:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:748:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:751:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:752:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:755:17-20: Unexpected keyword argument `key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:756:17-32: Unexpected keyword argument `translation_key` in function `HuaweiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huawei_lte/sensor.py:778:37-42: `items` may be uninitialized [unbound-name] +ERROR homeassistant/components/huawei_lte/sensor.py:779:21-26: `items` may be uninitialized [unbound-name] +ERROR homeassistant/components/huawei_lte/sensor.py:805:5-23: Class member `HuaweiLteSensor.entity_description` overrides parent class `HuaweiLteBaseEntityWithDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huawei_lte/sensor.py:805:5-23: Class member `HuaweiLteSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huawei_lte/sensor.py:903:69-74: Argument `Unknown | None` is not assignable to parameter with type `str` [bad-argument-type] +ERROR homeassistant/components/huawei_lte/switch.py:52:5-23: Class member `HuaweiLteBaseSwitch._attr_device_class` overrides parent class `HuaweiLteBaseEntityWithDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huawei_lte/switch.py:52:5-23: Class member `HuaweiLteBaseSwitch._attr_device_class` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huawei_lte/switch.py:91:5-26: Class member `HuaweiLteMobileDataSwitch._attr_translation_key` overrides parent class `HuaweiLteBaseSwitch` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huawei_lte/switch.py:115:5-26: Class member `HuaweiLteWifiGuestNetworkSwitch._attr_translation_key` overrides parent class `HuaweiLteBaseSwitch` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/__init__.py:40:37-57: Object of class `NoneType` has no attribute `bridge_id` [missing-attribute] +ERROR homeassistant/components/hue/__init__.py:76:54-76: Object of class `NoneType` has no attribute `mac_address` [missing-attribute] +ERROR homeassistant/components/hue/__init__.py:77:35-55: Object of class `NoneType` has no attribute `bridge_id` [missing-attribute] +ERROR homeassistant/components/hue/__init__.py:79:18-33: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/hue/__init__.py:80:22-41: Object of class `NoneType` has no attribute `model_id` [missing-attribute] +ERROR homeassistant/components/hue/__init__.py:81:24-51: Object of class `NoneType` has no attribute `software_version` [missing-attribute] +ERROR homeassistant/components/hue/__init__.py:85:13-32: Object of class `NoneType` has no attribute `model_id` [missing-attribute] +ERROR homeassistant/components/hue/__init__.py:86:17-44: Object of class `NoneType` has no attribute `software_version` [missing-attribute] +ERROR homeassistant/components/hue/__init__.py:101:54-76: Object of class `NoneType` has no attribute `mac_address` [missing-attribute] +ERROR homeassistant/components/hue/__init__.py:103:26-46: Object of class `NoneType` has no attribute `bridge_id` [missing-attribute] +ERROR homeassistant/components/hue/__init__.py:104:26-50: Object of class `Config` has no attribute `bridge_device` +Object of class `NoneType` has no attribute `bridge_device` [missing-attribute] +ERROR homeassistant/components/hue/__init__.py:106:26-50: Object of class `Config` has no attribute `bridge_device` +Object of class `NoneType` has no attribute `bridge_device` [missing-attribute] +ERROR homeassistant/components/hue/__init__.py:107:18-33: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/hue/__init__.py:108:22-41: Object of class `NoneType` has no attribute `model_id` [missing-attribute] +ERROR homeassistant/components/hue/__init__.py:109:24-51: Object of class `NoneType` has no attribute `software_version` [missing-attribute] +ERROR homeassistant/components/hue/bridge.py:61:24-55: `HueBridgeV2` is not assignable to attribute `api` with type `HueBridgeV1` [bad-assignment] +ERROR homeassistant/components/hue/config_flow.py:56:9-31: Class member `HueFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/config_flow.py:98:20-24: Returned type `None` is not assignable to declared return type `DiscoveredHueBridge` [bad-return] +ERROR homeassistant/components/hue/config_flow.py:223:31-38: `app_key` may be uninitialized [unbound-name] +ERROR homeassistant/components/hue/diagnostics.py:21:18-44: Object of class `HueBridgeV1` has no attribute `get_diagnostics` [missing-attribute] +ERROR homeassistant/components/hue/event.py:33:24-34: `HueBridgeV1` is not assignable to `HueBridgeV2` [bad-assignment] +ERROR homeassistant/components/hue/event.py:48:76-84: Argument `RelativeRotary` is not assignable to parameter `resource` with type `DevicePower | GroupedLight | Light | LightLevel | Motion` in function `homeassistant.components.hue.v2.entity.HueBaseEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/hue/event.py:66:56-60: Argument `type` is not assignable to parameter `resource` with type `BellButton | Button | RelativeRotary` in function `async_add_entity` [bad-argument-type] +ERROR homeassistant/components/hue/event.py:71:17-33: Argument `(event_type: EventType, resource: BellButton | Button | RelativeRotary) -> None` is not assignable to parameter `callback` with type `(EventType, dict[Unknown, Unknown] | None) -> None` in function `aiohue.v2.controllers.base.BaseResourcesController.subscribe` [bad-argument-type] +ERROR homeassistant/components/hue/event.py:79:5-13: Class member `HueButtonEventEntity.resource` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/event.py:81:5-23: Class member `HueButtonEventEntity.entity_description` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/event.py:82:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/event.py:84:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/event.py:85:9-24: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/event.py:92:22-69: Object of class `NoneType` has no attribute `id` [missing-attribute] +ERROR homeassistant/components/hue/event.py:93:20-43: Object of class `HueBridgeV1` has no attribute `devices` [missing-attribute] +ERROR homeassistant/components/hue/event.py:100:47-102:10: `dict[str, int]` is not assignable to attribute `_attr_translation_placeholders` with type `Mapping[str, str]` [bad-assignment] +ERROR homeassistant/components/hue/event.py:105:9-22: Class member `HueButtonEventEntity._handle_event` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/event.py:115:43-51: Argument `BellButton | Button` is not assignable to parameter `resource` with type `DevicePower | GroupedLight | Light | LightLevel | Motion` in function `homeassistant.components.hue.v2.entity.HueBaseEntity._handle_event` [bad-argument-type] +ERROR homeassistant/components/hue/event.py:124:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/event.py:126:9-24: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/event.py:133:5-23: Class member `HueRotaryEventEntity.entity_description` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/event.py:134:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/event.py:136:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/event.py:141:9-24: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/event.py:145:9-22: Class member `HueRotaryEventEntity._handle_event` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/event.py:162:43-51: Argument `RelativeRotary` is not assignable to parameter `resource` with type `DevicePower | GroupedLight | Light | LightLevel | Motion` in function `homeassistant.components.hue.v2.entity.HueBaseEntity._handle_event` [bad-argument-type] +ERROR homeassistant/components/hue/migration.py:89:16-42: Cannot use `HueBridgeV2` as a context manager [bad-context-manager] +ERROR homeassistant/components/hue/migration.py:99:58-68: Object of class `type` has no attribute `id` [missing-attribute] +ERROR homeassistant/components/hue/migration.py:105:16-36: Object of class `type` has no attribute `product_data` [missing-attribute] +ERROR homeassistant/components/hue/migration.py:116:21-37: Object of class `type` has no attribute `metadata` [missing-attribute] +ERROR homeassistant/components/hue/migration.py:117:21-31: Object of class `type` has no attribute `id` [missing-attribute] +ERROR homeassistant/components/hue/migration.py:121:56-66: Object of class `type` has no attribute `id` [missing-attribute] +ERROR homeassistant/components/hue/migration.py:123:52-68: Object of class `type` has no attribute `metadata` [missing-attribute] +ERROR homeassistant/components/hue/migration.py:130:47-61: Object of class `type` has no attribute `lights` [missing-attribute] +ERROR homeassistant/components/hue/migration.py:139:67-77: Object of class `type` has no attribute `id` [missing-attribute] +ERROR homeassistant/components/hue/migration.py:189:37-60: Object of class `GroupedLight` has no attribute `grouped_light` +Object of class `type` has no attribute `grouped_light` [missing-attribute] +ERROR homeassistant/components/hue/migration.py:204:74-87: Argument `object | str` is not assignable to parameter `new_unique_id` with type `UndefinedType | str` in function `homeassistant.helpers.entity_registry.EntityRegistry.async_update_entity` [bad-argument-type] +ERROR homeassistant/components/hue/scene.py:40:24-34: `HueBridgeV1` is not assignable to `HueBridgeV2` [bad-assignment] +ERROR homeassistant/components/hue/scene.py:63:30-46: Argument `(event_type: EventType, resource: Scene | SmartScene) -> None` is not assignable to parameter `callback` with type `(EventType, dict[Unknown, Unknown] | None) -> None` in function `aiohue.v2.controllers.base.GroupedControllerBase.subscribe` [bad-argument-type] +ERROR homeassistant/components/hue/scene.py:98:34-44: Argument `ScenesController` is not assignable to parameter `controller` with type `BaseResourcesController[Unknown]` in function `homeassistant.components.hue.v2.entity.HueBaseEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/hue/scene.py:98:46-54: Argument `Scene | SmartScene` is not assignable to parameter `resource` with type `DevicePower | GroupedLight | Light | LightLevel | Motion` in function `homeassistant.components.hue.v2.entity.HueBaseEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/hue/scene.py:99:25-33: `Scene | SmartScene` is not assignable to attribute `resource` with type `DevicePower | GroupedLight | Light | LightLevel | Motion` [bad-assignment] +ERROR homeassistant/components/hue/scene.py:100:27-37: `ScenesController` is not assignable to attribute `controller` with type `BaseResourcesController[Unknown]` [bad-assignment] +ERROR homeassistant/components/hue/scene.py:101:22-47: Object of class `BaseResourcesController` has no attribute `get_group` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:113:13-45: Object of class `Groups` has no attribute `subscribe` +Object of class `NoneType` has no attribute `subscribe` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:123:16-38: Object of class `DevicePower` has no attribute `metadata` +Object of class `GroupedLight` has no attribute `metadata` +Object of class `LightLevel` has no attribute `metadata` +Object of class `Light` has no attribute `metadata` +Object of class `Motion` has no attribute `metadata` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:133:13-34: Object of class `DevicePower` has no attribute `palette` +Object of class `GroupedLight` has no attribute `palette` +Object of class `LightLevel` has no attribute `palette` +Object of class `Light` has no attribute `palette` +Object of class `Motion` has no attribute `palette` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:134:17-44: Object of class `object` has no attribute `color` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:135:21-48: Argument `object` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR homeassistant/components/hue/scene.py:139:13-34: Object of class `DevicePower` has no attribute `palette` +Object of class `GroupedLight` has no attribute `palette` +Object of class `LightLevel` has no attribute `palette` +Object of class `Light` has no attribute `palette` +Object of class `Motion` has no attribute `palette` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:140:17-56: Object of class `object` has no attribute `color_temperature` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:141:21-60: Argument `object` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR homeassistant/components/hue/scene.py:158:17-38: Object of class `BaseResourcesController` has no attribute `scene` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:164:13-34: Object of class `BaseResourcesController` has no attribute `scene` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:175:23-44: Object of class `DevicePower` has no attribute `palette` +Object of class `GroupedLight` has no attribute `palette` +Object of class `LightLevel` has no attribute `palette` +Object of class `Light` has no attribute `palette` +Object of class `Motion` has no attribute `palette` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:180:27-48: Object of class `DevicePower` has no attribute `actions` +Object of class `GroupedLight` has no attribute `actions` +Object of class `LightLevel` has no attribute `actions` +Object of class `Light` has no attribute `actions` +Object of class `Motion` has no attribute `actions` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:190:21-43: Object of class `DevicePower` has no attribute `metadata` +Object of class `GroupedLight` has no attribute `metadata` +Object of class `LightLevel` has no attribute `metadata` +Object of class `Light` has no attribute `metadata` +Object of class `Motion` has no attribute `metadata` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:191:22-41: Object of class `DevicePower` has no attribute `speed` +Object of class `GroupedLight` has no attribute `speed` +Object of class `LightLevel` has no attribute `speed` +Object of class `Light` has no attribute `speed` +Object of class `Motion` has no attribute `speed` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:203:16-35: Object of class `DevicePower` has no attribute `state` +Object of class `GroupedLight` has no attribute `state` +Object of class `LightLevel` has no attribute `state` +Object of class `Light` has no attribute `state` +Object of class `Motion` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:209:13-40: Object of class `BaseResourcesController` has no attribute `smart_scene` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:219:21-43: Object of class `DevicePower` has no attribute `metadata` +Object of class `GroupedLight` has no attribute `metadata` +Object of class `LightLevel` has no attribute `metadata` +Object of class `Light` has no attribute `metadata` +Object of class `Motion` has no attribute `metadata` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:222:31-60: Object of class `DevicePower` has no attribute `active_timeslot` +Object of class `GroupedLight` has no attribute `active_timeslot` +Object of class `LightLevel` has no attribute `active_timeslot` +Object of class `Light` has no attribute `active_timeslot` +Object of class `Motion` has no attribute `active_timeslot` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:223:41-82: Object of class `object` has no attribute `timeslot_id` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:224:43-80: Object of class `object` has no attribute `weekday` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:228:33-61: Object of class `DevicePower` has no attribute `week_timeslots` +Object of class `GroupedLight` has no attribute `week_timeslots` +Object of class `LightLevel` has no attribute `week_timeslots` +Object of class `Light` has no attribute `week_timeslots` +Object of class `Motion` has no attribute `week_timeslots` [missing-attribute] +ERROR homeassistant/components/hue/scene.py:230:33-74: Object of class `object` has no attribute `timeslot_id` [missing-attribute] +ERROR homeassistant/components/hue/services.py:93:29-46: Object of class `NoneType` has no attribute `values` [missing-attribute] +ERROR homeassistant/components/hue/services.py:109:41-58: Object of class `NoneType` has no attribute `update` [missing-attribute] +ERROR homeassistant/components/hue/services.py:145:24-34: `HueBridgeV1` is not assignable to `HueBridgeV2` [bad-assignment] +ERROR homeassistant/components/hue/switch.py:37:24-34: `HueBridgeV1` is not assignable to `HueBridgeV2` [bad-assignment] +ERROR homeassistant/components/hue/switch.py:59:66-74: Argument `BehaviorInstance | LightLevel | Motion` is not assignable to parameter `resource` with type `DevicePower | GroupedLight | Light | LightLevel | Motion` in function `homeassistant.components.hue.v2.entity.HueBaseEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/hue/switch.py:63:56-60: Argument `type` is not assignable to parameter `resource` with type `BehaviorInstance | LightLevel | Motion` in function `async_add_entity` [bad-argument-type] +ERROR homeassistant/components/hue/switch.py:68:17-33: Argument `(event_type: EventType, resource: BehaviorInstance | LightLevel | Motion) -> None` is not assignable to parameter `callback` with type `(EventType, dict[Unknown, Unknown] | None) -> None` in function `aiohue.v2.controllers.base.BaseResourcesController.subscribe` [bad-argument-type] +ERROR homeassistant/components/hue/switch.py:81:5-15: Class member `HueResourceEnabledEntity.controller` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/switch.py:82:5-13: Class member `HueResourceEnabledEntity.resource` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/switch.py:84:5-23: Class member `HueResourceEnabledEntity.entity_description` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/switch.py:85:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/switch.py:87:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/switch.py:88:9-24: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/switch.py:112:5-13: Class member `HueBehaviorInstanceEnabledEntity.resource` overrides parent class `HueResourceEnabledEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/switch.py:115:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/switch.py:117:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/switch.py:118:9-24: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/switch.py:131:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/switch.py:133:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/switch.py:134:9-24: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/switch.py:135:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/switch.py:143:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/switch.py:145:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/switch.py:146:9-24: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/switch.py:147:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v1/binary_sensor.py:38:5-23: Class member `HuePresence._attr_device_class` overrides parent class `GenericZLLSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v1/device_trigger.py:116:26-74: Object of class `NoneType` has no attribute `current_events` [missing-attribute] +ERROR homeassistant/components/hue/v1/device_trigger.py:140:31-49: Cannot index into `dict[str, dict[tuple[str, str], dict[str, int]]]` [bad-index] +ERROR homeassistant/components/hue/v1/device_trigger.py:191:37-49: Cannot index into `dict[str, dict[tuple[str, str], dict[str, int]]]` [bad-index] +ERROR homeassistant/components/hue/v1/hue_event.py:99:35-43: `str` is not assignable to attribute `device_registry_id` with type `None` [bad-assignment] +ERROR homeassistant/components/hue/v1/light.py:150:41-69: Object of class `NoneType` has no attribute `apiversion` [missing-attribute] +ERROR homeassistant/components/hue/v1/light.py:164:57-81: Object of class `NoneType` has no attribute `update` [missing-attribute] +ERROR homeassistant/components/hue/v1/light.py:199:57-81: Object of class `NoneType` has no attribute `update` [missing-attribute] +ERROR homeassistant/components/hue/v1/light.py:227:24-41: Type `None` is not iterable [not-iterable] +ERROR homeassistant/components/hue/v1/light.py:228:21-47: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/hue/v1/light.py:236:34-62: Argument `None` is not assignable to parameter `value` with type `() -> None` in function `list.remove` [bad-argument-type] +ERROR homeassistant/components/hue/v1/light.py:237:9-37: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/hue/v1/light.py:334:14-38: Class member `HueLight._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v1/light.py:439:61-71: Expected 3 positional arguments, got 4 in function `homeassistant.util.color.color_xy_to_hs` [bad-argument-count] +ERROR homeassistant/components/hue/v1/light.py:544:41-74: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/hue/v1/light.py:548:34-77: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/hue/v1/light.py:549:34-75: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/hue/v1/light.py:554:78-88: Expected 3 positional arguments, got 4 in function `homeassistant.util.color.color_hs_to_xy` [bad-argument-count] +ERROR homeassistant/components/hue/v1/light.py:555:33-41: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/hue/v1/light.py:561:29-81: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/hue/v1/light.py:569:32-41: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/hue/v1/light.py:572:32-40: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/hue/v1/light.py:580:32-38: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/hue/v1/light.py:585:37-48: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/hue/v1/light.py:587:34-60: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/hue/v1/light.py:588:34-60: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/hue/v1/light.py:590:37-43: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/hue/v1/light.py:604:41-74: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/hue/v1/light.py:609:32-41: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/hue/v1/light.py:612:32-40: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/hue/v1/light.py:615:32-38: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/hue/v1/sensor.py:103:5-23: Class member `HueBattery._attr_device_class` overrides parent class `GenericHueSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v1/sensor_base.py:134:24-58: Class `HueEvent` has no class attribute `format` [missing-attribute] +ERROR homeassistant/components/hue/v1/sensor_base.py:135:29-50: Expected a callable, got `str` [not-callable] +ERROR homeassistant/components/hue/v1/sensor_base.py:155:13-68: Object of class `NoneType` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/hue/v2/binary_sensor.py:75:27-48: Object of class `CameraMotionController` has no attribute `get_parent` +Object of class `ContactController` has no attribute `get_parent` +Object of class `EntertainmentConfigurationController` has no attribute `get_parent` +Object of class `MotionController` has no attribute `get_parent` +Object of class `SecurityAreaMotionController` has no attribute `get_parent` +Object of class `TamperController` has no attribute `get_parent` [missing-attribute] +ERROR homeassistant/components/hue/v2/binary_sensor.py:92:24-34: `HueBridgeV1` is not assignable to `HueBridgeV2` [bad-assignment] +ERROR homeassistant/components/hue/v2/binary_sensor.py:96:45-57: Argument `CameraMotion | Contact | EntertainmentConfiguration | GroupedMotion | Motion | SecurityAreaMotion | Tamper` is not assignable to parameter `func` with type `(...) -> @_` in function `functools.partial.__new__` [bad-argument-type] +ERROR homeassistant/components/hue/v2/binary_sensor.py:109:32-38: Argument `type` is not assignable to parameter `resource` with type `CameraMotion | Contact | EntertainmentConfiguration | GroupedMotion | Motion | SecurityAreaMotion | Tamper` in function `_resource_valid` [bad-argument-type] +ERROR homeassistant/components/hue/v2/binary_sensor.py:115:17-33: Argument `(event_type: EventType, resource: CameraMotion | Contact | EntertainmentConfiguration | GroupedMotion | Motion | SecurityAreaMotion | Tamper) -> None` is not assignable to parameter `callback` with type `(EventType, dict[Unknown, Unknown] | None) -> None` in function `aiohue.v2.controllers.base.BaseResourcesController.subscribe` [bad-argument-type] +ERROR homeassistant/components/hue/v2/binary_sensor.py:120:47-62: Argument `type[HueMotionSensor]` is not assignable to parameter `sensor_class` with type `CameraMotion | Contact | EntertainmentConfiguration | GroupedMotion | Motion | SecurityAreaMotion | Tamper` in function `register_items` [bad-argument-type] +ERROR homeassistant/components/hue/v2/binary_sensor.py:121:40-55: Argument `type[HueMotionSensor]` is not assignable to parameter `sensor_class` with type `CameraMotion | Contact | EntertainmentConfiguration | GroupedMotion | Motion | SecurityAreaMotion | Tamper` in function `register_items` [bad-argument-type] +ERROR homeassistant/components/hue/v2/binary_sensor.py:122:60-88: Argument `type[HueEntertainmentActiveSensor]` is not assignable to parameter `sensor_class` with type `CameraMotion | Contact | EntertainmentConfiguration | GroupedMotion | Motion | SecurityAreaMotion | Tamper` in function `register_items` [bad-argument-type] +ERROR homeassistant/components/hue/v2/binary_sensor.py:123:41-57: Argument `type[HueContactSensor]` is not assignable to parameter `sensor_class` with type `CameraMotion | Contact | EntertainmentConfiguration | GroupedMotion | Motion | SecurityAreaMotion | Tamper` in function `register_items` [bad-argument-type] +ERROR homeassistant/components/hue/v2/binary_sensor.py:124:40-55: Argument `type[HueTamperSensor]` is not assignable to parameter `sensor_class` with type `CameraMotion | Contact | EntertainmentConfiguration | GroupedMotion | Motion | SecurityAreaMotion | Tamper` in function `register_items` [bad-argument-type] +ERROR homeassistant/components/hue/v2/binary_sensor.py:125:48-70: Argument `type[HueGroupedMotionSensor]` is not assignable to parameter `sensor_class` with type `CameraMotion | Contact | EntertainmentConfiguration | GroupedMotion | Motion | SecurityAreaMotion | Tamper` in function `register_items` [bad-argument-type] +ERROR homeassistant/components/hue/v2/binary_sensor.py:126:54-74: Argument `type[HueMotionAwareSensor]` is not assignable to parameter `sensor_class` with type `CameraMotion | Contact | EntertainmentConfiguration | GroupedMotion | Motion | SecurityAreaMotion | Tamper` in function `register_items` [bad-argument-type] +ERROR homeassistant/components/hue/v2/binary_sensor.py:133:5-15: Class member `HueMotionSensor.controller` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/binary_sensor.py:134:5-13: Class member `HueMotionSensor.resource` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/binary_sensor.py:136:5-23: Class member `HueMotionSensor.entity_description` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/binary_sensor.py:137:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/binary_sensor.py:139:9-24: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/binary_sensor.py:159:5-15: Class member `HueGroupedMotionSensor.controller` overrides parent class `HueMotionSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/binary_sensor.py:160:5-13: Class member `HueGroupedMotionSensor.resource` overrides parent class `HueMotionSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/binary_sensor.py:169:46-54: Argument `GroupedMotion` is not assignable to parameter `resource` with type `DevicePower | GroupedLight | Light | LightLevel | Motion` in function `homeassistant.components.hue.v2.entity.HueBaseEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/hue/v2/binary_sensor.py:174:35-44: Object of class `NoneType` has no attribute `id` [missing-attribute] +ERROR homeassistant/components/hue/v2/binary_sensor.py:189:5-15: Class member `HueMotionAwareSensor.controller` overrides parent class `HueMotionSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/binary_sensor.py:190:5-13: Class member `HueMotionAwareSensor.resource` overrides parent class `HueMotionSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/binary_sensor.py:193:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/binary_sensor.py:195:9-24: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/binary_sensor.py:210:46-54: Argument `SecurityAreaMotion` is not assignable to parameter `resource` with type `DevicePower | GroupedLight | Light | LightLevel | Motion` in function `homeassistant.components.hue.v2.entity.HueBaseEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/hue/v2/binary_sensor.py:216:22-54: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/hue/v2/binary_sensor.py:226:13-45: Object of class `Config` has no attribute `subscribe` +Object of class `NoneType` has no attribute `subscribe` [missing-attribute] +ERROR homeassistant/components/hue/v2/binary_sensor.py:236:5-15: Class member `HueEntertainmentActiveSensor.controller` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/binary_sensor.py:237:5-13: Class member `HueEntertainmentActiveSensor.resource` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/binary_sensor.py:239:5-23: Class member `HueEntertainmentActiveSensor.entity_description` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/binary_sensor.py:240:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/binary_sensor.py:242:9-24: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/binary_sensor.py:260:5-15: Class member `HueContactSensor.controller` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/binary_sensor.py:261:5-13: Class member `HueContactSensor.resource` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/binary_sensor.py:263:5-23: Class member `HueContactSensor.entity_description` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/binary_sensor.py:264:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/binary_sensor.py:266:9-24: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/binary_sensor.py:275:16-50: Object of class `NoneType` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/hue/v2/binary_sensor.py:282:5-15: Class member `HueTamperSensor.controller` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/binary_sensor.py:283:5-13: Class member `HueTamperSensor.resource` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/binary_sensor.py:285:5-23: Class member `HueTamperSensor.entity_description` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/binary_sensor.py:286:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/binary_sensor.py:288:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/binary_sensor.py:289:9-24: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/device.py:38:24-34: `HueBridgeV1` is not assignable to `HueBridgeV2` [bad-assignment] +ERROR homeassistant/components/hue/v2/device.py:71:13-41: Object of class `str` has no attribute `add` [missing-attribute] +ERROR homeassistant/components/hue/v2/device.py:73:39-76: Cannot set item in `dict[str, set[tuple[str, str]] | str]` [unsupported-operation] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `config_subentry_id` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `configuration_url` with type `URL | UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `connections` with type `UndefinedType | set[tuple[str, str]] | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `created_at` with type `UndefinedType | datetime | str` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `default_manufacturer` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `default_model` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `default_name` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `disabled_by` with type `DeviceEntryDisabler | UndefinedType | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `entry_type` with type `DeviceEntryType | UndefinedType | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `hw_version` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `identifiers` with type `UndefinedType | set[tuple[str, str]] | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `manufacturer` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `model` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `model_id` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `modified_at` with type `UndefinedType | datetime | str` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `name` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `serial_number` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `suggested_area` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `sw_version` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `translation_key` with type `str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `translation_placeholders` with type `Mapping[str, str] | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:78:76-84: Unpacked keyword argument `set[tuple[str, str]] | str` is not assignable to parameter `via_device` with type `UndefinedType | tuple[str, str] | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:102:33-43: Argument `type` is not assignable to parameter `hue_resource` with type `Device | Room | ServiceGroup | Zone` in function `add_device` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:103:34-42: Argument `type` is not assignable to parameter `hue_resource` with type `Device | Room | ServiceGroup | Zone` in function `add_device` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:104:34-42: Argument `type` is not assignable to parameter `hue_resource` with type `Device | Room | ServiceGroup | Zone` in function `add_device` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:105:34-36: Argument `type` is not assignable to parameter `hue_resource` with type `Device | Room | ServiceGroup | Zone` in function `add_device` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:113:52-71: Argument `(evt_type: EventType, hue_resource: Device | Room | ServiceGroup | Zone) -> None` is not assignable to parameter `callback` with type `(EventType, dict[Unknown, Unknown] | None) -> None` in function `aiohue.v2.controllers.base.BaseResourcesController.subscribe` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:114:53-72: Argument `(evt_type: EventType, hue_resource: Device | Room | ServiceGroup | Zone) -> None` is not assignable to parameter `callback` with type `(EventType, dict[Unknown, Unknown] | None) -> None` in function `aiohue.v2.controllers.base.BaseResourcesController.subscribe` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:115:53-72: Argument `(evt_type: EventType, hue_resource: Device | Room | ServiceGroup | Zone) -> None` is not assignable to parameter `callback` with type `(EventType, dict[Unknown, Unknown] | None) -> None` in function `aiohue.v2.controllers.base.BaseResourcesController.subscribe` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device.py:116:62-81: Argument `(evt_type: EventType, hue_resource: Device | Room | ServiceGroup | Zone) -> None` is not assignable to parameter `callback` with type `(EventType, dict[Unknown, Unknown] | None) -> None` in function `aiohue.v2.controllers.base.BaseResourcesController.subscribe` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device_trigger.py:88:24-34: `HueBridgeV1` is not assignable to `HueBridgeV2` [bad-assignment] +ERROR homeassistant/components/hue/v2/device_trigger.py:94:16-52: Object of class `type` has no attribute `product_data` [missing-attribute] +ERROR homeassistant/components/hue/v2/device_trigger.py:94:28-38: Cannot index into `DevicesController` [bad-index] +ERROR homeassistant/components/hue/v2/device_trigger.py:96:45-55: Argument `str | None` is not assignable to parameter `id` with type `str` in function `aiohue.v2.controllers.devices.DevicesController.get_sensors` [bad-argument-type] +ERROR homeassistant/components/hue/v2/device_trigger.py:105:35-52: Object of class `CameraMotion` has no attribute `metadata` +Object of class `Contact` has no attribute `metadata` +Object of class `ConvenienceAreaMotion` has no attribute `metadata` +Object of class `DevicePower` has no attribute `metadata` +Object of class `GeofenceClient` has no attribute `metadata` +Object of class `GroupedLightLevel` has no attribute `metadata` +Object of class `GroupedMotion` has no attribute `metadata` +Object of class `LightLevel` has no attribute `metadata` +Object of class `Motion` has no attribute `metadata` +Object of class `RelativeRotary` has no attribute `metadata` +Object of class `SecurityAreaMotion` has no attribute `metadata` +Object of class `Tamper` has no attribute `metadata` +Object of class `Temperature` has no attribute `metadata` +Object of class `ZigbeeConnectivity` has no attribute `metadata` [missing-attribute] +ERROR homeassistant/components/hue/v2/entity.py:63:39-63: Object of class `Config` has no attribute `bridge` +Object of class `NoneType` has no attribute `bridge` [missing-attribute] +ERROR homeassistant/components/hue/v2/entity.py:79:17-35: Argument `BoundMethod[Self@HueBaseEntity, (self: Self@HueBaseEntity, event_type: EventType, resource: DevicePower | GroupedLight | Light | LightLevel | Motion) -> None]` is not assignable to parameter `callback` with type `(EventType, dict[Unknown, Unknown] | None) -> None` in function `aiohue.v2.controllers.base.BaseResourcesController.subscribe` [bad-argument-type] +ERROR homeassistant/components/hue/v2/entity.py:81:17-73: Argument `tuple[Literal[EventType.RESOURCE_UPDATED], Literal[EventType.RESOURCE_DELETED]]` is not assignable to parameter `event_filter` with type `EventType | tuple[EventType] | None` in function `aiohue.v2.controllers.base.BaseResourcesController.subscribe` [bad-argument-type] +ERROR homeassistant/components/hue/v2/entity.py:88:13-36: Object of class `HueBridgeV1` has no attribute `devices` [missing-attribute] +ERROR homeassistant/components/hue/v2/entity.py:95:22-45: Object of class `HueBridgeV1` has no attribute `devices` [missing-attribute] +ERROR homeassistant/components/hue/v2/entity.py:97:17-60: Object of class `NoneType` has no attribute `zigbee_connectivity` +Object of class `Sensors` has no attribute `zigbee_connectivity` [missing-attribute] +ERROR homeassistant/components/hue/v2/entity.py:116:22-45: Object of class `HueBridgeV1` has no attribute `devices` [missing-attribute] +ERROR homeassistant/components/hue/v2/entity.py:148:41-46: `Literal[False]` is not assignable to attribute `_ignore_availability` with type `None` [bad-assignment] +ERROR homeassistant/components/hue/v2/entity.py:154:41-45: `Literal[True]` is not assignable to attribute `_ignore_availability` with type `None` [bad-assignment] +ERROR homeassistant/components/hue/v2/entity.py:163:41-46: `Literal[False]` is not assignable to attribute `_ignore_availability` with type `None` [bad-assignment] +ERROR homeassistant/components/hue/v2/entity.py:199:45-50: `Literal[False]` is not assignable to attribute `_ignore_availability` with type `Never` [bad-assignment] +ERROR homeassistant/components/hue/v2/group.py:49:24-34: `HueBridgeV1` is not assignable to `HueBridgeV2` [bad-assignment] +ERROR homeassistant/components/hue/v2/group.py:70:12-22: Object of class `type` has no attribute `owner` [missing-attribute] +ERROR homeassistant/components/hue/v2/group.py:74:61-65: Argument `type` is not assignable to parameter `resource` with type `GroupedLight` in function `async_add_light` [bad-argument-type] +ERROR homeassistant/components/hue/v2/group.py:79:13-28: Argument `(event_type: EventType, resource: GroupedLight) -> Coroutine[Unknown, Unknown, None]` is not assignable to parameter `callback` with type `(EventType, dict[Unknown, Unknown] | None) -> None` in function `aiohue.v2.controllers.base.BaseResourcesController.subscribe` [bad-argument-type] +ERROR homeassistant/components/hue/v2/group.py:88:5-23: Class member `GroupedHueLight.entity_description` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/group.py:89:9-12: Unexpected keyword argument `key` in function `homeassistant.components.light.LightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/group.py:90:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.light.LightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/group.py:91:9-24: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.light.LightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/group.py:92:9-13: Unexpected keyword argument `name` in function `homeassistant.components.light.LightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/group.py:99:22-53: Object of class `Groups` has no attribute `grouped_light` +Object of class `NoneType` has no attribute `grouped_light` [missing-attribute] +ERROR homeassistant/components/hue/v2/group.py:104:33-43: `HueBridgeV1` is not assignable to attribute `api` with type `HueBridgeV2` [bad-assignment] +ERROR homeassistant/components/hue/v2/group.py:123:39-57: Argument `BoundMethod[Self@GroupedHueLight, (self: Self@GroupedHueLight, event_type: EventType, resource: DevicePower | GroupedLight | Light | LightLevel | Motion) -> None]` is not assignable to parameter `callback` with type `(EventType, dict[Unknown, Unknown] | None) -> None` in function `aiohue.v2.controllers.base.GroupedControllerBase.subscribe` [bad-argument-type] +ERROR homeassistant/components/hue/v2/group.py:129:31-57: Object of class `BaseResourcesController` has no attribute `get_lights` [missing-attribute] +ERROR homeassistant/components/hue/v2/group.py:132:43-61: Argument `BoundMethod[Self@GroupedHueLight, (self: Self@GroupedHueLight, event_type: EventType, resource: DevicePower | GroupedLight | Light | LightLevel | Motion) -> None]` is not assignable to parameter `callback` with type `(EventType, dict[Unknown, Unknown] | None) -> None` in function `aiohue.v2.controllers.base.BaseResourcesController.subscribe` [bad-argument-type] +ERROR homeassistant/components/hue/v2/group.py:138:16-32: Object of class `DevicePower` has no attribute `on` +Object of class `LightLevel` has no attribute `on` +Object of class `Motion` has no attribute `on` [missing-attribute] +ERROR homeassistant/components/hue/v2/group.py:147:27-53: Object of class `BaseResourcesController` has no attribute `get_lights` [missing-attribute] +ERROR homeassistant/components/hue/v2/group.py:190:13-38: Object of class `BaseResourcesController` has no attribute `set_state` [missing-attribute] +ERROR homeassistant/components/hue/v2/group.py:212:13-38: Object of class `BaseResourcesController` has no attribute `set_state` [missing-attribute] +ERROR homeassistant/components/hue/v2/group.py:221:13-38: Object of class `BaseResourcesController` has no attribute `set_flash` [missing-attribute] +ERROR homeassistant/components/hue/v2/group.py:240:22-48: Object of class `BaseResourcesController` has no attribute `get_lights` [missing-attribute] +ERROR homeassistant/components/hue/v2/group.py:372:29-77: Object of class `NoneType` has no attribute `metadata` [missing-attribute] +ERROR homeassistant/components/hue/v2/hue_event.py:33:24-34: `HueBridgeV1` is not assignable to `HueBridgeV2` [bad-assignment] +ERROR homeassistant/components/hue/v2/hue_event.py:50:65-78: Object of class `NoneType` has no attribute `id` [missing-attribute] +ERROR homeassistant/components/hue/v2/hue_event.py:55:33-52: Object of class `NoneType` has no attribute `metadata` [missing-attribute] +ERROR homeassistant/components/hue/v2/hue_event.py:58:24-63: Object of class `NoneType` has no attribute `event` [missing-attribute] +ERROR homeassistant/components/hue/v2/hue_event.py:66:13-32: Argument `(evt_type: EventType, hue_resource: Button) -> None` is not assignable to parameter `callback` with type `(EventType, dict[Unknown, Unknown] | None) -> None` in function `aiohue.v2.controllers.base.BaseResourcesController.subscribe` [bad-argument-type] +ERROR homeassistant/components/hue/v2/hue_event.py:76:65-78: Object of class `NoneType` has no attribute `id` [missing-attribute] +ERROR homeassistant/components/hue/v2/hue_event.py:82:24-66: Object of class `NoneType` has no attribute `rotary_report` [missing-attribute] +ERROR homeassistant/components/hue/v2/hue_event.py:83:27-69: Object of class `NoneType` has no attribute `rotary_report` [missing-attribute] +ERROR homeassistant/components/hue/v2/hue_event.py:84:28-70: Object of class `NoneType` has no attribute `rotary_report` [missing-attribute] +ERROR homeassistant/components/hue/v2/hue_event.py:85:25-67: Object of class `NoneType` has no attribute `rotary_report` [missing-attribute] +ERROR homeassistant/components/hue/v2/hue_event.py:92:13-32: Argument `(evt_type: EventType, hue_resource: RelativeRotary) -> None` is not assignable to parameter `callback` with type `(EventType, dict[Unknown, Unknown] | None) -> None` in function `aiohue.v2.controllers.base.BaseResourcesController.subscribe` [bad-argument-type] +ERROR homeassistant/components/hue/v2/light.py:58:24-34: `HueBridgeV1` is not assignable to `HueBridgeV2` [bad-assignment] +ERROR homeassistant/components/hue/v2/light.py:71:30-45: Argument `(event_type: EventType, resource: Light) -> None` is not assignable to parameter `callback` with type `(EventType, dict[Unknown, Unknown] | None) -> None` in function `aiohue.v2.controllers.base.BaseResourcesController.subscribe` [bad-argument-type] +ERROR homeassistant/components/hue/v2/light.py:80:5-23: Class member `HueLight.entity_description` overrides parent class `HueBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/light.py:81:9-12: Unexpected keyword argument `key` in function `homeassistant.components.light.LightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/light.py:81:26-41: Unexpected keyword argument `translation_key` in function `homeassistant.components.light.LightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/light.py:81:55-70: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.light.LightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/light.py:81:77-81: Unexpected keyword argument `name` in function `homeassistant.components.light.LightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/light.py:89:12-31: Object of class `DevicePower` has no attribute `alert` +Object of class `LightLevel` has no attribute `alert` +Object of class `Motion` has no attribute `alert` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:89:36-69: Object of class `object` has no attribute `action_values` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:130:23-44: Object of class `DevicePower` has no attribute `dimming` +Object of class `LightLevel` has no attribute `dimming` +Object of class `Motion` has no attribute `dimming` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:138:16-32: Object of class `DevicePower` has no attribute `on` +Object of class `LightLevel` has no attribute `on` +Object of class `Motion` has no attribute `on` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:156:22-53: Object of class `DevicePower` has no attribute `color_temperature` +Object of class `GroupedLight` has no attribute `color_temperature` +Object of class `LightLevel` has no attribute `color_temperature` +Object of class `Motion` has no attribute `color_temperature` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:161:12-36: Object of class `NoneType` has no attribute `product_data` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:162:20-51: Object of class `DevicePower` has no attribute `color_temperature` +Object of class `GroupedLight` has no attribute `color_temperature` +Object of class `LightLevel` has no attribute `color_temperature` +Object of class `Motion` has no attribute `color_temperature` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:168:21-40: Object of class `DevicePower` has no attribute `color` +Object of class `GroupedLight` has no attribute `color` +Object of class `LightLevel` has no attribute `color` +Object of class `Motion` has no attribute `color` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:175:26-57: Object of class `DevicePower` has no attribute `color_temperature` +Object of class `GroupedLight` has no attribute `color_temperature` +Object of class `LightLevel` has no attribute `color_temperature` +Object of class `Motion` has no attribute `color_temperature` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:183:26-57: Object of class `DevicePower` has no attribute `color_temperature` +Object of class `GroupedLight` has no attribute `color_temperature` +Object of class `LightLevel` has no attribute `color_temperature` +Object of class `Motion` has no attribute `color_temperature` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:191:26-57: Object of class `DevicePower` has no attribute `color_temperature` +Object of class `GroupedLight` has no attribute `color_temperature` +Object of class `LightLevel` has no attribute `color_temperature` +Object of class `Motion` has no attribute `color_temperature` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:210:21-39: Object of class `DevicePower` has no attribute `mode` +Object of class `GroupedLight` has no attribute `mode` +Object of class `LightLevel` has no attribute `mode` +Object of class `Motion` has no attribute `mode` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:211:25-47: Object of class `DevicePower` has no attribute `dynamics` +Object of class `GroupedLight` has no attribute `dynamics` +Object of class `LightLevel` has no attribute `dynamics` +Object of class `Motion` has no attribute `dynamics` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:217:23-44: Object of class `DevicePower` has no attribute `effects` +Object of class `GroupedLight` has no attribute `effects` +Object of class `LightLevel` has no attribute `effects` +Object of class `Motion` has no attribute `effects` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:220:29-56: Object of class `DevicePower` has no attribute `timed_effects` +Object of class `GroupedLight` has no attribute `timed_effects` +Object of class `LightLevel` has no attribute `timed_effects` +Object of class `Motion` has no attribute `timed_effects` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:293:13-38: Object of class `BaseResourcesController` has no attribute `set_state` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:306:39-60: Object of class `DevicePower` has no attribute `dimming` +Object of class `LightLevel` has no attribute `dimming` +Object of class `Motion` has no attribute `dimming` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:307:37-69: Object of class `object` has no attribute `brightness` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:318:13-38: Object of class `BaseResourcesController` has no attribute `set_state` [missing-attribute] +ERROR homeassistant/components/hue/v2/light.py:327:13-38: Object of class `BaseResourcesController` has no attribute `set_flash` [missing-attribute] +ERROR homeassistant/components/hue/v2/sensor.py:71:16-31: Object of class `Bridge` has no attribute `children` +Object of class `EntertainmentConfiguration` has no attribute `children` +Object of class `Entertainment` has no attribute `children` +Object of class `GroupedLight` has no attribute `children` +Object of class `MotionAreaConfiguration` has no attribute `children` [missing-attribute] +ERROR homeassistant/components/hue/v2/sensor.py:84:24-34: `HueBridgeV1` is not assignable to `HueBridgeV2` [bad-assignment] +ERROR homeassistant/components/hue/v2/sensor.py:89:38-50: Argument `DevicePower | GroupedLightLevel | LightLevel | Temperature | ZigbeeConnectivity` is not assignable to parameter `func` with type `(...) -> @_` in function `functools.partial.__new__` [bad-argument-type] +ERROR homeassistant/components/hue/v2/sensor.py:102:32-38: Argument `type` is not assignable to parameter `resource` with type `DevicePower | GroupedLightLevel | LightLevel | Temperature | ZigbeeConnectivity` in function `_resource_valid` [bad-argument-type] +ERROR homeassistant/components/hue/v2/sensor.py:108:17-33: Argument `(event_type: EventType, resource: DevicePower | GroupedLightLevel | LightLevel | Temperature | ZigbeeConnectivity) -> None` is not assignable to parameter `callback` with type `(EventType, dict[Unknown, Unknown] | None) -> None` in function `aiohue.v2.controllers.base.BaseResourcesController.subscribe` [bad-argument-type] +ERROR homeassistant/components/hue/v2/sensor.py:113:43-63: Argument `type[HueTemperatureSensor]` is not assignable to parameter `sensor_class` with type `DevicePower | GroupedLightLevel | LightLevel | Temperature | ZigbeeConnectivity` in function `register_items` [bad-argument-type] +ERROR homeassistant/components/hue/v2/sensor.py:114:43-62: Argument `type[HueLightLevelSensor]` is not assignable to parameter `sensor_class` with type `DevicePower | GroupedLightLevel | LightLevel | Temperature | ZigbeeConnectivity` in function `register_items` [bad-argument-type] +ERROR homeassistant/components/hue/v2/sensor.py:115:44-60: Argument `type[HueBatterySensor]` is not assignable to parameter `sensor_class` with type `DevicePower | GroupedLightLevel | LightLevel | Temperature | ZigbeeConnectivity` in function `register_items` [bad-argument-type] +ERROR homeassistant/components/hue/v2/sensor.py:116:51-78: Argument `type[HueZigbeeConnectivitySensor]` is not assignable to parameter `sensor_class` with type `DevicePower | GroupedLightLevel | LightLevel | Temperature | ZigbeeConnectivity` in function `register_items` [bad-argument-type] +ERROR homeassistant/components/hue/v2/sensor.py:117:53-79: Argument `type[HueGroupedLightLevelSensor]` is not assignable to parameter `sensor_class` with type `DevicePower | GroupedLightLevel | LightLevel | Temperature | ZigbeeConnectivity` in function `register_items` [bad-argument-type] +ERROR homeassistant/components/hue/v2/sensor.py:131:46-54: Argument `DevicePower | GroupedLightLevel | LightLevel | Temperature | ZigbeeConnectivity` is not assignable to parameter `resource` with type `DevicePower | GroupedLight | Light | LightLevel | Motion` in function `homeassistant.components.hue.v2.entity.HueBaseEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/hue/v2/sensor.py:132:25-33: `DevicePower | GroupedLightLevel | LightLevel | Temperature | ZigbeeConnectivity` is not assignable to attribute `resource` with type `DevicePower | GroupedLight | Light | LightLevel | Motion` [bad-assignment] +ERROR homeassistant/components/hue/v2/sensor.py:141:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/sensor.py:144:9-24: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/sensor.py:151:22-47: Object of class `DevicePower` has no attribute `temperature` +Object of class `GroupedLight` has no attribute `temperature` +Object of class `LightLevel` has no attribute `temperature` +Object of class `Light` has no attribute `temperature` +Object of class `Motion` has no attribute `temperature` [missing-attribute] +ERROR homeassistant/components/hue/v2/sensor.py:159:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/sensor.py:162:9-24: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/sensor.py:173:28-47: Object of class `DevicePower` has no attribute `light` +Object of class `GroupedLight` has no attribute `light` +Object of class `Light` has no attribute `light` +Object of class `Motion` has no attribute `light` [missing-attribute] +ERROR homeassistant/components/hue/v2/sensor.py:179:28-47: Object of class `DevicePower` has no attribute `light` +Object of class `GroupedLight` has no attribute `light` +Object of class `Light` has no attribute `light` +Object of class `Motion` has no attribute `light` [missing-attribute] +ERROR homeassistant/components/hue/v2/sensor.py:187:5-15: Class member `HueGroupedLightLevelSensor.controller` overrides parent class `HueLightLevelSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/sensor.py:188:5-13: Class member `HueGroupedLightLevelSensor.resource` overrides parent class `HueLightLevelSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hue/v2/sensor.py:202:18-32: Object of class `Groups` has no attribute `get` +Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/hue/v2/sensor.py:202:47-61: Object of class `Config` has no attribute `get` +Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/hue/v2/sensor.py:213:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/sensor.py:216:9-24: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/sensor.py:218:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/sensor.py:224:16-41: Object of class `GroupedLight` has no attribute `power_state` +Object of class `LightLevel` has no attribute `power_state` +Object of class `Light` has no attribute `power_state` +Object of class `Motion` has no attribute `power_state` [missing-attribute] +ERROR homeassistant/components/hue/v2/sensor.py:229:12-37: Object of class `GroupedLight` has no attribute `power_state` +Object of class `LightLevel` has no attribute `power_state` +Object of class `Light` has no attribute `power_state` +Object of class `Motion` has no attribute `power_state` [missing-attribute] +ERROR homeassistant/components/hue/v2/sensor.py:231:34-59: Object of class `GroupedLight` has no attribute `power_state` +Object of class `LightLevel` has no attribute `power_state` +Object of class `Light` has no attribute `power_state` +Object of class `Motion` has no attribute `power_state` [missing-attribute] +ERROR homeassistant/components/hue/v2/sensor.py:239:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/sensor.py:241:9-24: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/sensor.py:242:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/sensor.py:243:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/sensor.py:250:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hue/v2/sensor.py:256:16-36: Object of class `DevicePower` has no attribute `status` +Object of class `GroupedLight` has no attribute `status` +Object of class `LightLevel` has no attribute `status` +Object of class `Light` has no attribute `status` +Object of class `Motion` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/hue/v2/sensor.py:261:32-57: Object of class `DevicePower` has no attribute `mac_address` +Object of class `GroupedLight` has no attribute `mac_address` +Object of class `LightLevel` has no attribute `mac_address` +Object of class `Light` has no attribute `mac_address` +Object of class `Motion` has no attribute `mac_address` [missing-attribute] +ERROR homeassistant/components/huisbaasje/coordinator.py:36:5-17: Class member `EnergyFlipUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huisbaasje/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:60:9-12: Unexpected keyword argument `key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:68:9-12: Unexpected keyword argument `key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:76:9-12: Unexpected keyword argument `key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:84:9-12: Unexpected keyword argument `key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:92:9-12: Unexpected keyword argument `key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:99:9-12: Unexpected keyword argument `key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:108:9-12: Unexpected keyword argument `key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:117:9-12: Unexpected keyword argument `key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:126:9-12: Unexpected keyword argument `key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:132:9-24: Unexpected keyword argument `translation_key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:136:9-12: Unexpected keyword argument `key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:141:9-24: Unexpected keyword argument `translation_key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:145:9-12: Unexpected keyword argument `key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:150:9-24: Unexpected keyword argument `translation_key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:154:9-12: Unexpected keyword argument `key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:159:9-24: Unexpected keyword argument `translation_key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:163:9-12: Unexpected keyword argument `key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:168:9-24: Unexpected keyword argument `translation_key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:172:9-12: Unexpected keyword argument `key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:176:9-24: Unexpected keyword argument `translation_key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:179:9-12: Unexpected keyword argument `key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:185:9-24: Unexpected keyword argument `translation_key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:188:9-12: Unexpected keyword argument `key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:194:9-24: Unexpected keyword argument `translation_key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:197:9-12: Unexpected keyword argument `key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:203:9-24: Unexpected keyword argument `translation_key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:206:9-12: Unexpected keyword argument `key` in function `EnergyFlipSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/huisbaasje/sensor.py:232:5-23: Class member `EnergyFlipSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huisbaasje/sensor.py:232:5-23: Class member `EnergyFlipSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/humidifier/__init__.py:131:5-17: Class member `HumidifierEntityDescription.device_class` overrides parent class `ToggleEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/humidifier/__init__.py:154:5-23: Class member `HumidifierEntity.entity_description` overrides parent class `ToggleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/humidifier/__init__.py:158:5-23: Class member `HumidifierEntity._attr_device_class` overrides parent class `ToggleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/humidifier/__init__.py:162:5-29: Class member `HumidifierEntity._attr_supported_features` overrides parent class `ToggleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hunterdouglas_powerview/__init__.py:71:21-67: Argument `set[tuple[str, None]]` is not assignable to parameter `connections` with type `UndefinedType | set[tuple[str, str]] | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hunterdouglas_powerview/__init__.py:72:21-50: Argument `set[tuple[str, None]]` is not assignable to parameter `identifiers` with type `UndefinedType | set[tuple[str, str]] | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/hunterdouglas_powerview/__init__.py:77:20-51: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/hunterdouglas_powerview/__init__.py:114:19-38: Argument `dict[str, Automation | BaseShade | Hub | Room | Scene]` is not assignable to parameter `room_data` with type `dict[str, Room]` in function `homeassistant.components.hunterdouglas_powerview.model.PowerviewEntryData.__init__` [bad-argument-type] +ERROR homeassistant/components/hunterdouglas_powerview/__init__.py:115:20-40: Argument `dict[str, Automation | BaseShade | Hub | Room | Scene]` is not assignable to parameter `scene_data` with type `dict[str, Scene]` in function `homeassistant.components.hunterdouglas_powerview.model.PowerviewEntryData.__init__` [bad-argument-type] +ERROR homeassistant/components/hunterdouglas_powerview/__init__.py:116:20-40: Argument `dict[str, Automation | BaseShade | Hub | Room | Scene]` is not assignable to parameter `shade_data` with type `dict[str, BaseShade]` in function `homeassistant.components.hunterdouglas_powerview.model.PowerviewEntryData.__init__` [bad-argument-type] +ERROR homeassistant/components/hunterdouglas_powerview/button.py:49:9-12: Unexpected keyword argument `key` in function `PowerviewButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/button.py:50:9-24: Unexpected keyword argument `translation_key` in function `PowerviewButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/button.py:51:9-13: Unexpected keyword argument `icon` in function `PowerviewButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/button.py:52:9-24: Unexpected keyword argument `entity_category` in function `PowerviewButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/button.py:54:36-51: Object of class `Hub` has no attribute `calibrate` [missing-attribute] +ERROR homeassistant/components/hunterdouglas_powerview/button.py:57:9-12: Unexpected keyword argument `key` in function `PowerviewButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/button.py:59:9-24: Unexpected keyword argument `entity_category` in function `PowerviewButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/button.py:61:36-45: Object of class `Hub` has no attribute `jog` [missing-attribute] +ERROR homeassistant/components/hunterdouglas_powerview/button.py:64:9-12: Unexpected keyword argument `key` in function `PowerviewButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/button.py:65:9-24: Unexpected keyword argument `translation_key` in function `PowerviewButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/button.py:66:9-13: Unexpected keyword argument `icon` in function `PowerviewButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/button.py:67:9-24: Unexpected keyword argument `entity_category` in function `PowerviewButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/button.py:69:36-50: Object of class `Hub` has no attribute `favorite` [missing-attribute] +ERROR homeassistant/components/hunterdouglas_powerview/button.py:83:51-66: No matching overload found for function `dict.get` called with arguments: (int) [no-matching-overload] +ERROR homeassistant/components/hunterdouglas_powerview/button.py:113:14-32: Class member `PowerviewShadeButton.entity_description` overrides parent class `ShadeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hunterdouglas_powerview/button.py:113:14-32: Class member `PowerviewShadeButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hunterdouglas_powerview/config_flow.py:44:12-48:6: Returned type `dict[str, int | str]` is not assignable to declared return type `dict[str, str]` [bad-return] +ERROR homeassistant/components/hunterdouglas_powerview/coordinator.py:26:5-17: Class member `PowerviewShadeUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:75:51-66: No matching overload found for function `dict.get` called with arguments: (int) [no-matching-overload] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:95:5-23: Class member `PowerViewShadeBase._attr_device_class` overrides parent class `ShadeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:96:5-29: Class member `PowerViewShadeBase._attr_supported_features` overrides parent class `ShadeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:115:13-69: `|=` is not supported between `None` and `Literal[CoverEntityFeature.STOP]` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:146:16-57: `<=` is not supported between `None` and `Literal[0]` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:151:16-38: Returned type `float | int | None` is not assignable to declared return type `int` [bad-return] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:156:16-38: Returned type `float | int | None` is not assignable to declared return type `int` [bad-return] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:352:9-356:10: `|=` is not supported between `None` and `CoverEntityFeature` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:364:16-35: Returned type `float | int | None` is not assignable to declared return type `int` [bad-return] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:369:16-60: `+` is not supported between `float` and `None` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:369:16-60: `+` is not supported between `int` and `None` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:369:16-60: `+` is not supported between `None` and `float` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:369:16-60: `+` is not supported between `None` and `int` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:369:16-60: `+` is not supported between `None` and `None` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:369:16-60: Returned type `float | int | Unknown` is not assignable to declared return type `int` [bad-return] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:529:16-35: Returned type `float | int | None` is not assignable to declared return type `int` [bad-return] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:534:16-54: `<=` is not supported between `None` and `Literal[0]` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:552:16-53: `-` is not supported between `Literal[100]` and `None` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:552:16-53: Returned type `float | int` is not assignable to declared return type `int` [bad-return] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:561:17-54: `-` is not supported between `Literal[100]` and `None` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:575:16-65: `+` is not supported between `float` and `None` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:575:16-65: `+` is not supported between `int` and `None` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:575:16-65: `+` is not supported between `None` and `float` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:575:16-65: `+` is not supported between `None` and `int` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:575:16-65: `+` is not supported between `None` and `None` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:575:16-65: Returned type `float | int | Unknown` is not assignable to declared return type `int` [bad-return] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:603:19-84: No matching overload found for function `min` called with arguments: (int, float | int) [no-matching-overload] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:603:43-82: `-` is not supported between `Literal[100]` and `None` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:650:16-59: `<=` is not supported between `None` and `Literal[0]` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:656:16-40: Returned type `float | int | None` is not assignable to declared return type `int` [bad-return] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:672:19-82: No matching overload found for function `min` called with arguments: (int, float | int) [no-matching-overload] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:672:43-80: `-` is not supported between `Literal[100]` and `None` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:696:20-46: `/` is not supported between `None` and `Literal[2]` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:700:21-49: `/` is not supported between `None` and `Literal[2]` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:749:16-59: `<=` is not supported between `None` and `Literal[0]` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:756:21-47: `/` is not supported between `None` and `Literal[2]` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:758:24-52: `/` is not supported between `None` and `Literal[2]` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:880:16-59: `<=` is not supported between `None` and `Literal[0]` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:885:16-40: Returned type `float | int | None` is not assignable to declared return type `int` [bad-return] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:929:9-933:10: `|=` is not supported between `None` and `CoverEntityFeature` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:944:20-46: `/` is not supported between `None` and `Literal[2]` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:948:21-49: `/` is not supported between `None` and `Literal[2]` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:950:21-47: `+` is not supported between `float` and `None` [unsupported-operation] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:1016:55-1018:6: No matching overload found for function `dict.get` called with arguments: (int | str, tuple[type[PowerViewShade]]) [no-matching-overload] +ERROR homeassistant/components/hunterdouglas_powerview/cover.py:1028:9-12: Expected a callable, got `BaseShade` [not-callable] +ERROR homeassistant/components/hunterdouglas_powerview/number.py:30:5-20: Class member `PowerviewNumberDescription.entity_category` overrides parent class `NumberEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hunterdouglas_powerview/number.py:44:9-12: Unexpected keyword argument `key` in function `PowerviewNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/number.py:45:9-13: Unexpected keyword argument `name` in function `PowerviewNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/number.py:47:9-13: Unexpected keyword argument `icon` in function `PowerviewNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/number.py:63:51-66: No matching overload found for function `dict.get` called with arguments: (int) [no-matching-overload] +ERROR homeassistant/components/hunterdouglas_powerview/number.py:82:5-23: Class member `PowerViewNumber.entity_description` overrides parent class `ShadeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hunterdouglas_powerview/number.py:82:5-23: Class member `PowerViewNumber.entity_description` overrides parent class `RestoreNumber` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hunterdouglas_powerview/select.py:38:5-20: Class member `PowerviewSelectDescription.entity_category` overrides parent class `SelectEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hunterdouglas_powerview/select.py:43:9-12: Unexpected keyword argument `key` in function `PowerviewSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/select.py:44:9-24: Unexpected keyword argument `translation_key` in function `PowerviewSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/select.py:45:9-13: Unexpected keyword argument `icon` in function `PowerviewSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/select.py:65:51-66: No matching overload found for function `dict.get` called with arguments: (int) [no-matching-overload] +ERROR homeassistant/components/hunterdouglas_powerview/select.py:95:14-32: Class member `PowerViewSelect.entity_description` overrides parent class `ShadeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hunterdouglas_powerview/select.py:95:14-32: Class member `PowerViewSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hunterdouglas_powerview/sensor.py:58:9-12: Unexpected keyword argument `key` in function `PowerviewSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/sensor.py:66:9-12: Unexpected keyword argument `key` in function `PowerviewSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `PowerviewSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/sensor.py:68:9-13: Unexpected keyword argument `icon` in function `PowerviewSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/sensor.py:71:25-66: Argument `(shade: BaseShade) -> int | str` is not assignable to parameter `native_value_fn` with type `(BaseShade) -> int` in function `PowerviewSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/hunterdouglas_powerview/sensor.py:74:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PowerviewSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hunterdouglas_powerview/sensor.py:88:51-66: No matching overload found for function `dict.get` called with arguments: (int) [no-matching-overload] +ERROR homeassistant/components/hunterdouglas_powerview/sensor.py:107:5-23: Class member `PowerViewSensor.entity_description` overrides parent class `ShadeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hunterdouglas_powerview/sensor.py:107:5-23: Class member `PowerViewSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hunterdouglas_powerview/util.py:25:14-22: Argument `str | None` is not assignable to parameter `name` with type `str` in function `homeassistant.components.hunterdouglas_powerview.model.PowerviewDeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/hunterdouglas_powerview/util.py:26:21-36: Argument `None` is not assignable to parameter `mac_address` with type `str` in function `homeassistant.components.hunterdouglas_powerview.model.PowerviewDeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/hunterdouglas_powerview/util.py:27:23-40: Argument `None` is not assignable to parameter `serial_number` with type `str` in function `homeassistant.components.hunterdouglas_powerview.model.PowerviewDeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/hunterdouglas_powerview/util.py:29:15-24: Argument `str | None` is not assignable to parameter `model` with type `str` in function `homeassistant.components.hunterdouglas_powerview.model.PowerviewDeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/hunterdouglas_powerview/util.py:30:21-27: Argument `None` is not assignable to parameter `hub_address` with type `str` in function `homeassistant.components.hunterdouglas_powerview.model.PowerviewDeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/husqvarna_automower/binary_sensor.py:35:9-12: Unexpected keyword argument `key` in function `AutomowerBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/binary_sensor.py:40:9-12: Unexpected keyword argument `key` in function `AutomowerBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/binary_sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `AutomowerBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/binary_sensor.py:69:5-23: Class member `AutomowerBinarySensorEntity.entity_description` overrides parent class `AutomowerBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/husqvarna_automower/binary_sensor.py:69:5-23: Class member `AutomowerBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/husqvarna_automower/button.py:50:9-12: Unexpected keyword argument `key` in function `AutomowerButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/button.py:51:9-24: Unexpected keyword argument `translation_key` in function `AutomowerButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/button.py:57:9-12: Unexpected keyword argument `key` in function `AutomowerButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/button.py:58:9-24: Unexpected keyword argument `translation_key` in function `AutomowerButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/button.py:62:9-12: Unexpected keyword argument `key` in function `AutomowerButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/button.py:63:9-24: Unexpected keyword argument `translation_key` in function `AutomowerButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/button.py:95:5-23: Class member `AutomowerButtonEntity.entity_description` overrides parent class `AutomowerControlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/husqvarna_automower/button.py:95:5-23: Class member `AutomowerButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/husqvarna_automower/coordinator.py:41:5-17: Class member `AutomowerDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/husqvarna_automower/coordinator.py:119:22-37: Class member `AutomowerDataUpdateCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/husqvarna_automower/coordinator.py:119:40-44: `None` is not assignable to attribute `update_interval` with type `(self: Self@AutomowerDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/husqvarna_automower/coordinator.py:124:40-53: `timedelta` is not assignable to attribute `update_interval` with type `Never` [bad-assignment] +ERROR homeassistant/components/husqvarna_automower/coordinator.py:210:48-61: `timedelta` is not assignable to attribute `update_interval` with type `Never` [bad-assignment] +ERROR homeassistant/components/husqvarna_automower/diagnostics.py:46:47-55: `mower_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/husqvarna_automower/event.py:79:5-23: Class member `AutomowerMessageEventEntity.entity_description` overrides parent class `AutomowerBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/husqvarna_automower/lawn_mower.py:96:5-29: Class member `AutomowerLawnMowerEntity._attr_supported_features` overrides parent class `AutomowerBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/husqvarna_automower/number.py:71:9-12: Unexpected keyword argument `key` in function `AutomowerNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/number.py:72:9-24: Unexpected keyword argument `translation_key` in function `AutomowerNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/number.py:73:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AutomowerNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/number.py:74:9-24: Unexpected keyword argument `entity_category` in function `AutomowerNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/number.py:97:9-12: Unexpected keyword argument `key` in function `WorkAreaNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/number.py:99:9-24: Unexpected keyword argument `entity_category` in function `WorkAreaNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/number.py:160:5-23: Class member `AutomowerNumberEntity.entity_description` overrides parent class `AutomowerControlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/husqvarna_automower/number.py:160:5-23: Class member `AutomowerNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/husqvarna_automower/number.py:189:5-23: Class member `WorkAreaNumberEntity.entity_description` overrides parent class `WorkAreaControlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/husqvarna_automower/number.py:189:5-23: Class member `WorkAreaNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/husqvarna_automower/sensor.py:166:9-12: Unexpected keyword argument `key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:173:9-12: Unexpected keyword argument `key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:174:9-24: Unexpected keyword argument `translation_key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:184:9-12: Unexpected keyword argument `key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:185:9-24: Unexpected keyword argument `translation_key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:186:9-24: Unexpected keyword argument `entity_category` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:195:9-12: Unexpected keyword argument `key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:196:9-24: Unexpected keyword argument `translation_key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:197:9-24: Unexpected keyword argument `entity_category` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:200:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:208:9-12: Unexpected keyword argument `key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:209:9-24: Unexpected keyword argument `translation_key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:210:9-24: Unexpected keyword argument `entity_category` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:219:9-12: Unexpected keyword argument `key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:220:9-24: Unexpected keyword argument `translation_key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:221:9-24: Unexpected keyword argument `entity_category` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:230:9-12: Unexpected keyword argument `key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:231:9-24: Unexpected keyword argument `translation_key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:232:9-24: Unexpected keyword argument `entity_category` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:241:9-12: Unexpected keyword argument `key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:242:9-24: Unexpected keyword argument `translation_key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:243:9-24: Unexpected keyword argument `entity_category` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:252:9-12: Unexpected keyword argument `key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:253:9-24: Unexpected keyword argument `translation_key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:254:9-24: Unexpected keyword argument `entity_category` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:260:9-12: Unexpected keyword argument `key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:261:9-24: Unexpected keyword argument `translation_key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:262:9-24: Unexpected keyword argument `entity_category` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:263:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:269:9-12: Unexpected keyword argument `key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:270:9-24: Unexpected keyword argument `translation_key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:271:9-24: Unexpected keyword argument `entity_category` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:280:9-12: Unexpected keyword argument `key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:281:9-24: Unexpected keyword argument `translation_key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:282:9-24: Unexpected keyword argument `entity_category` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:285:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:293:9-12: Unexpected keyword argument `key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:294:9-24: Unexpected keyword argument `translation_key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:299:9-12: Unexpected keyword argument `key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:300:9-24: Unexpected keyword argument `translation_key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:306:9-12: Unexpected keyword argument `key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:307:9-24: Unexpected keyword argument `translation_key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:313:9-12: Unexpected keyword argument `key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:314:9-24: Unexpected keyword argument `translation_key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:321:9-12: Unexpected keyword argument `key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:322:9-24: Unexpected keyword argument `translation_key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:330:9-12: Unexpected keyword argument `key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:331:9-24: Unexpected keyword argument `translation_key` in function `AutomowerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:352:9-12: Unexpected keyword argument `key` in function `WorkAreaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:360:9-12: Unexpected keyword argument `key` in function `WorkAreaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower/sensor.py:431:5-23: Class member `AutomowerSensorEntity.entity_description` overrides parent class `AutomowerBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/husqvarna_automower/sensor.py:431:5-23: Class member `AutomowerSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/husqvarna_automower/sensor.py:469:5-23: Class member `WorkAreaSensorEntity.entity_description` overrides parent class `WorkAreaAvailableEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/husqvarna_automower/sensor.py:469:5-23: Class member `WorkAreaSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/husqvarna_automower_ble/__init__.py:68:81-86: Argument `str | None` is not assignable to parameter `model` with type `str` in function `homeassistant.components.husqvarna_automower_ble.coordinator.HusqvarnaCoordinator.__init__` [bad-argument-type] +ERROR homeassistant/components/husqvarna_automower_ble/__init__.py:83:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/husqvarna_automower_ble/coordinator.py:84:37-69: Cannot set item in `dict[str, int | str]` [unsupported-operation] +ERROR homeassistant/components/husqvarna_automower_ble/coordinator.py:90:32-65: Cannot set item in `dict[str, int | str]` [unsupported-operation] +ERROR homeassistant/components/husqvarna_automower_ble/coordinator.py:96:29-59: Cannot set item in `dict[str, int | str]` [unsupported-operation] +ERROR homeassistant/components/husqvarna_automower_ble/lawn_mower.py:45:5-29: Class member `AutomowerLawnMower._attr_supported_features` overrides parent class `HusqvarnaAutomowerBleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/husqvarna_automower_ble/sensor.py:20:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower_ble/sensor.py:23:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/husqvarna_automower_ble/sensor.py:46:5-23: Class member `HusqvarnaAutomowerBleSensor.entity_description` overrides parent class `HusqvarnaAutomowerBleDescriptorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huum/binary_sensor.py:30:5-23: Class member `HuumDoorSensor._attr_device_class` overrides parent class `HuumBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huum/climate.py:41:5-29: Class member `HuumDevice._attr_supported_features` overrides parent class `HuumBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huum/climate.py:59:16-59: Object of class `NoneType` has no attribute `min_temp` [missing-attribute] +ERROR homeassistant/components/huum/climate.py:64:16-59: Object of class `NoneType` has no attribute `max_temp` [missing-attribute] +ERROR homeassistant/components/huum/coordinator.py:29:5-17: Class member `HuumDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/huum/number.py:50:16-46: Returned type `int | None` is not assignable to declared return type `float` [bad-return] +ERROR homeassistant/components/hvv_departures/binary_sensor.py:131:5-23: Class member `HvvDepartureBinarySensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hvv_departures/binary_sensor.py:143:25-150:14: Argument `set[tuple[str, Unknown, Unknown, Unknown]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/hvv_departures/config_flow.py:134:9-31: Class member `HVVDeparturesConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hvv_departures/sensor.py:79:25-86:14: Argument `set[tuple[str, Unknown, Unknown, Unknown]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/hvv_departures/sensor.py:121:36-47: `type[InvalidAuth]` is not assignable to attribute `_last_error` with type `None` [bad-assignment] +ERROR homeassistant/components/hvv_departures/sensor.py:126:36-56: `type[ClientConnectorError]` is not assignable to attribute `_last_error` with type `None` [bad-assignment] +ERROR homeassistant/components/hvv_departures/sensor.py:131:36-41: `Exception` is not assignable to attribute `_last_error` with type `None` [bad-assignment] +ERROR homeassistant/components/hvv_departures/sensor.py:134:17-21: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/hvv_departures/sensor.py:134:48-52: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/hvv_departures/sensor.py:143:21-25: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/hvv_departures/sensor.py:169:26-30: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/hydrawise/binary_sensor.py:37:9-12: Unexpected keyword argument `key` in function `HydrawiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/binary_sensor.py:50:9-12: Unexpected keyword argument `key` in function `HydrawiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/binary_sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `HydrawiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/binary_sensor.py:59:9-12: Unexpected keyword argument `key` in function `HydrawiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/binary_sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `HydrawiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/binary_sensor.py:148:5-23: Class member `HydrawiseBinarySensor.entity_description` overrides parent class `HydrawiseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hydrawise/binary_sensor.py:148:5-23: Class member `HydrawiseBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hydrawise/coordinator.py:55:5-17: Class member `HydrawiseDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hydrawise/sensor.py:41:9-12: Unexpected keyword argument `key` in function `HydrawiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `HydrawiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/sensor.py:54:9-12: Unexpected keyword argument `key` in function `HydrawiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `HydrawiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/sensor.py:68:9-12: Unexpected keyword argument `key` in function `HydrawiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `HydrawiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/sensor.py:75:9-12: Unexpected keyword argument `key` in function `HydrawiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `HydrawiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/sensor.py:82:9-12: Unexpected keyword argument `key` in function `HydrawiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `HydrawiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/sensor.py:92:9-12: Unexpected keyword argument `key` in function `HydrawiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `HydrawiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/sensor.py:104:9-12: Unexpected keyword argument `key` in function `HydrawiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `HydrawiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/sensor.py:114:9-12: Unexpected keyword argument `key` in function `HydrawiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/sensor.py:115:9-24: Unexpected keyword argument `translation_key` in function `HydrawiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/sensor.py:202:5-23: Class member `HydrawiseSensor.entity_description` overrides parent class `HydrawiseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hydrawise/sensor.py:202:5-23: Class member `HydrawiseSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hydrawise/switch.py:37:9-12: Unexpected keyword argument `key` in function `HydrawiseSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/switch.py:38:9-24: Unexpected keyword argument `translation_key` in function `HydrawiseSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/switch.py:47:9-12: Unexpected keyword argument `key` in function `HydrawiseSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/switch.py:48:9-24: Unexpected keyword argument `translation_key` in function `HydrawiseSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/switch.py:89:5-23: Class member `HydrawiseSwitch.entity_description` overrides parent class `HydrawiseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hydrawise/switch.py:89:5-23: Class member `HydrawiseSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hydrawise/valve.py:24:9-12: Unexpected keyword argument `key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hydrawise/valve.py:54:7-21: Field `entity_description` is declared `EntityDescription` in ancestor `class HydrawiseEntity: ... +`, which is not assignable to the type `ValveEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/hydrawise/valve.py:59:5-29: Class member `HydrawiseValve._attr_supported_features` overrides parent class `HydrawiseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hyperion/camera.py:160:20-66: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/hyperion/config_flow.py:427:9-31: Class member `HyperionConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/hyperion/sensor.py:47:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hyperion/sensor.py:48:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/hyperion/sensor.py:49:5-9: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ialarm/__init__.py:26:53-67: Argument `BoundMethod[IAlarm, (self: IAlarm) -> str]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ialarm/alarm_control_panel.py:35:5-29: Class member `IAlarmPanel._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ialarm/config_flow.py:27:46-60: Argument `BoundMethod[IAlarm, (self: IAlarm) -> str]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ialarm/coordinator.py:28:5-17: Class member `IAlarmDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ialarm/coordinator.py:62:56-73: Argument `BoundMethod[Self@IAlarmDataUpdateCoordinator, (self: Self@IAlarmDataUpdateCoordinator) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/iammeter/sensor.py:11:1-37: Could not find import of `iammeter.client` [missing-import] +ERROR homeassistant/components/iammeter/sensor.py:164:5-23: Class member `IammeterSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iammeter/sensor.py:164:5-23: Class member `IammeterSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iammeter/sensor.py:188:50-58: Argument `Any | None` is not assignable to parameter with type `float | int` [bad-argument-type] +ERROR homeassistant/components/iammeter/sensor.py:188:50-58: Argument `Any | None` is not assignable to parameter with type `datetime` [bad-argument-type] +ERROR homeassistant/components/iammeter/sensor.py:201:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:202:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:206:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:209:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:210:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:214:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:217:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:218:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:224:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:225:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:231:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:232:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:240:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:241:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:242:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:246:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:249:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:250:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:251:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:255:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:258:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:259:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:260:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:266:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:267:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:268:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:274:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:275:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:276:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:282:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:283:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:284:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:288:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:291:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:292:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:293:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:298:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:301:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:302:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:303:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:307:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:310:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:311:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:312:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:316:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:319:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:320:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:321:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:327:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:328:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:329:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:335:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:336:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:337:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:343:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:344:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:345:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:349:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:352:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:353:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:354:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:359:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:362:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:363:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:364:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:368:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:371:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:372:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:373:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:377:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:380:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:381:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:382:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:388:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:389:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:390:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:396:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:397:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:398:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:404:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:405:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:406:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:410:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:413:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:414:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:415:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:420:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:423:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:424:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:425:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:429:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:432:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:433:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:437:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:440:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:441:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:442:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:446:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:449:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:450:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:451:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:455:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:458:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:459:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:460:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:464:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:467:9-12: Unexpected keyword argument `key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:468:9-24: Unexpected keyword argument `translation_key` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:469:9-13: Unexpected keyword argument `icon` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iammeter/sensor.py:474:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IammeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iaqualink/__init__.py:152:20-33: Object of class `str` has no attribute `online` [missing-attribute] +ERROR homeassistant/components/iaqualink/__init__.py:155:23-36: Object of class `str` has no attribute `update` [missing-attribute] +ERROR homeassistant/components/iaqualink/__init__.py:160:25-38: Object of class `str` has no attribute `serial` [missing-attribute] +ERROR homeassistant/components/iaqualink/__init__.py:163:23-38: Object of class `str` has no attribute `aqualink` [missing-attribute] +ERROR homeassistant/components/iaqualink/__init__.py:165:23-36: Object of class `str` has no attribute `online` [missing-attribute] +ERROR homeassistant/components/iaqualink/__init__.py:167:75-88: Object of class `str` has no attribute `serial` [missing-attribute] +ERROR homeassistant/components/iaqualink/binary_sensor.py:45:18-36: Class member `HassAqualinkBinarySensor._attr_device_class` overrides parent class `AqualinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iaqualink/climate.py:46:5-29: Class member `HassAqualinkThermostat._attr_supported_features` overrides parent class `AqualinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iaqualink/climate.py:84:31-47: Object of class `AqualinkThermostat` has no attribute `_heater` [missing-attribute] +ERROR homeassistant/components/iaqualink/light.py:46:43-64: Object of class `AqualinkLight` has no attribute `supported_effects` [missing-attribute] +ERROR homeassistant/components/iaqualink/light.py:47:18-42: Class member `HassAqualinkLight._attr_supported_features` overrides parent class `AqualinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iaqualink/light.py:87:16-41: `*` is not supported between `None` and `Literal[255]` [unsupported-operation] +ERROR homeassistant/components/iaqualink/light.py:87:16-47: Returned type `float` is not assignable to declared return type `int` [bad-return] +ERROR homeassistant/components/iaqualink/light.py:92:16-31: Returned type `str | None` is not assignable to declared return type `str` [bad-return] +ERROR homeassistant/components/iaqualink/sensor.py:39:14-32: Class member `HassAqualinkSensor._attr_device_class` overrides parent class `AqualinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iaqualink/switch.py:38:21-31: Class member `HassAqualinkSwitch._attr_name` overrides parent class `AqualinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iaqualink/switch.py:38:21-31: Class member `HassAqualinkSwitch._attr_name` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ibeacon/device_tracker.py:51:7-27: Field `_attr_device_info` is declared `TypedDict[DeviceInfo] | None` in ancestor `class IBeaconEntity: ... +`, which is not assignable to the type `None` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/ibeacon/sensor.py:36:9-12: Unexpected keyword argument `key` in function `IBeaconSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ibeacon/sensor.py:39:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IBeaconSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ibeacon/sensor.py:44:9-12: Unexpected keyword argument `key` in function `IBeaconSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ibeacon/sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `IBeaconSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ibeacon/sensor.py:48:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IBeaconSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ibeacon/sensor.py:53:9-12: Unexpected keyword argument `key` in function `IBeaconSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ibeacon/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `IBeaconSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ibeacon/sensor.py:61:9-12: Unexpected keyword argument `key` in function `IBeaconSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ibeacon/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `IBeaconSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ibeacon/sensor.py:63:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IBeaconSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ibeacon/sensor.py:103:5-23: Class member `IBeaconSensorEntity.entity_description` overrides parent class `IBeaconEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ibeacon/sensor.py:103:5-23: Class member `IBeaconSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/icloud/__init__.py:61:39-52: Argument `BoundMethod[IcloudAccount, (self: IcloudAccount) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/icloud/account.py:148:35-69: Object of class `NoneType` has no attribute `items` [missing-attribute] +ERROR homeassistant/components/icloud/account.py:223:26-76: Unpacked argument `tuple[HomeAssistant]` is not assignable to parameter `*args` with type `tuple[HomeAssistant, TypedDict[ConfigFlowContext] | None, dict[str, Any] | None]` in function `homeassistant.core.HomeAssistant.add_job` [bad-argument-type] +ERROR homeassistant/components/icloud/account.py:450:54-58: Argument `None` is not assignable to parameter `newpasscode` with type `str` in function `pyicloud.services.findmyiphone.AppleDevice.lost_device` [bad-argument-type] +ERROR homeassistant/components/icloud/config_flow.py:118:24-126:14: `PyiCloudService` is not assignable to attribute `api` with type `None` [bad-assignment] +ERROR homeassistant/components/icloud/config_flow.py:118:62-126:14: Unpacked argument `tuple[Unknown, Unknown, Unknown, Literal[True], None, Unknown]` is not assignable to parameter `*args` with type `tuple[str, str | None, str | None, bool, str | None, bool, bool, bool]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/icloud/config_flow.py:133:12-33: Object of class `NoneType` has no attribute `requires_2fa` [missing-attribute] +ERROR homeassistant/components/icloud/config_flow.py:136:12-33: Object of class `NoneType` has no attribute `requires_2sa` [missing-attribute] +ERROR homeassistant/components/icloud/config_flow.py:163:53-58: Argument `ConfigEntry[Any] | None` is not assignable to parameter `entry` with type `ConfigEntry[Any]` in function `homeassistant.config_entries.ConfigEntries.async_update_entry` [bad-argument-type] +ERROR homeassistant/components/icloud/config_flow.py:164:53-67: Object of class `NoneType` has no attribute `entry_id` [missing-attribute] +ERROR homeassistant/components/icloud/config_flow.py:176:51-81: Unpacked argument `tuple[Unknown]` is not assignable to parameter `*args` with type `tuple[PathLike[bytes] | PathLike[str] | bytes | str, int, bool]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/icloud/config_flow.py:234:36-40: `None` is not assignable to attribute `_trusted_device` with type `Never` [bad-assignment] +ERROR homeassistant/components/icloud/config_flow.py:292:36-40: `None` is not assignable to attribute `_trusted_device` with type `Never` [bad-assignment] +ERROR homeassistant/components/icloud/config_flow.py:293:39-43: `None` is not assignable to attribute `_verification_code` with type `Never` [bad-assignment] +ERROR homeassistant/components/icloud/config_flow.py:310:32-36: `None` is not assignable to attribute `api` with type `Never` [bad-assignment] +ERROR homeassistant/components/icloud/services.py:105:16-20: Returned type `None` is not assignable to declared return type `IcloudAccount` [bad-return] +ERROR homeassistant/components/idasen_desk/__init__.py:51:38-56: Expected 0 positional arguments, got 1 in function `homeassistant.components.bluetooth.match.BluetoothCallbackMatcher.__init__` [bad-argument-count] +ERROR homeassistant/components/idasen_desk/__init__.py:73:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/idasen_desk/button.py:30:9-12: Unexpected keyword argument `key` in function `IdasenDeskButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/idasen_desk/button.py:31:9-24: Unexpected keyword argument `translation_key` in function `IdasenDeskButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/idasen_desk/button.py:32:9-24: Unexpected keyword argument `entity_category` in function `IdasenDeskButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/idasen_desk/button.py:36:9-12: Unexpected keyword argument `key` in function `IdasenDeskButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/idasen_desk/button.py:37:9-24: Unexpected keyword argument `translation_key` in function `IdasenDeskButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/idasen_desk/button.py:38:9-24: Unexpected keyword argument `entity_category` in function `IdasenDeskButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/idasen_desk/button.py:57:5-23: Class member `IdasenDeskButton.entity_description` overrides parent class `IdasenDeskEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/idasen_desk/button.py:57:5-23: Class member `IdasenDeskButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/idasen_desk/coordinator.py:25:5-17: Class member `IdasenDeskCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/idasen_desk/cover.py:36:5-23: Class member `IdasenDeskCover._attr_device_class` overrides parent class `IdasenDeskEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/idasen_desk/cover.py:37:5-29: Class member `IdasenDeskCover._attr_supported_features` overrides parent class `IdasenDeskEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/idasen_desk/sensor.py:31:9-12: Unexpected keyword argument `key` in function `IdasenDeskSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/idasen_desk/sensor.py:32:9-24: Unexpected keyword argument `translation_key` in function `IdasenDeskSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/idasen_desk/sensor.py:36:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IdasenDeskSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/idasen_desk/sensor.py:59:5-23: Class member `IdasenDeskSensor.entity_description` overrides parent class `IdasenDeskEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/idasen_desk/sensor.py:59:5-23: Class member `IdasenDeskSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/idteck_prox/__init__.py:7:1-39: Could not find import of `rfk101py.rfk101py` [missing-import] +ERROR homeassistant/components/iglo/light.py:7:1-22: Could not find import of `iglo` [missing-import] +ERROR homeassistant/components/iglo/light.py:8:1-33: Could not find import of `iglo.lamp` [missing-import] +ERROR homeassistant/components/igloohome/lock.py:52:5-29: Class member `IgloohomeLockEntity._attr_supported_features` overrides parent class `IgloohomeBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/igloohome/sensor.py:46:5-23: Class member `IgloohomeBatteryEntity._attr_device_class` overrides parent class `IgloohomeBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ign_sismologia/geo_location.py:203:23-39: `str | None` is not assignable to attribute `_title` with type `None` [bad-assignment] +ERROR homeassistant/components/ign_sismologia/geo_location.py:208:24-41: `float | None` is not assignable to attribute `_region` with type `None` [bad-assignment] +ERROR homeassistant/components/ign_sismologia/geo_location.py:209:27-47: `float` is not assignable to attribute `_magnitude` with type `None` [bad-assignment] +ERROR homeassistant/components/ign_sismologia/geo_location.py:210:34-54: `datetime | None` is not assignable to attribute `_publication_date` with type `None` [bad-assignment] +ERROR homeassistant/components/ign_sismologia/geo_location.py:211:27-47: `str | None` is not assignable to attribute `_image_url` with type `None` [bad-assignment] +ERROR homeassistant/components/ihc/__init__.py:5:1-47: Could not find import of `ihcsdk.ihccontroller` [missing-import] +ERROR homeassistant/components/ihc/binary_sensor.py:5:1-47: Could not find import of `ihcsdk.ihccontroller` [missing-import] +ERROR homeassistant/components/ihc/binary_sensor.py:70:14-32: Class member `IHCBinarySensor._attr_device_class` overrides parent class `IHCEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ihc/entity.py:5:1-47: Could not find import of `ihcsdk.ihccontroller` [missing-import] +ERROR homeassistant/components/ihc/entity.py:46:34-65: `str` is not assignable to attribute `device_id` with type `None` [bad-assignment] +ERROR homeassistant/components/ihc/light.py:7:1-47: Could not find import of `ihcsdk.ihccontroller` [missing-import] +ERROR homeassistant/components/ihc/light.py:105:66-76: `brightness` may be uninitialized [unbound-name] +ERROR homeassistant/components/ihc/sensor.py:5:1-47: Could not find import of `ihcsdk.ihccontroller` [missing-import] +ERROR homeassistant/components/ihc/sensor.py:57:18-36: Class member `IHCSensor._attr_device_class` overrides parent class `IHCEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ihc/switch.py:7:1-47: Could not find import of `ihcsdk.ihccontroller` [missing-import] +ERROR homeassistant/components/ihc/util.py:5:1-47: Could not find import of `ihcsdk.ihccontroller` [missing-import] +ERROR homeassistant/components/image/__init__.py:187:5-16: Class member `ImageEntity._attr_state` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/image/__init__.py:272:55-65: Argument `BoundMethod[Self@ImageEntity, (self: Self@ImageEntity) -> bytes | None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/image/__init__.py:428:50-72: Argument `() -> None` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_later` [bad-argument-type] +ERROR homeassistant/components/image/media_source.py:29:5-9: Class member `ImageMediaSource.name` overrides parent class `MediaSource` in an inconsistent manner [bad-override] +ERROR homeassistant/components/image_processing/__init__.py:125:5-17: Class member `ImageProcessingEntityDescription.device_class` overrides parent class `EntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/image_processing/__init__.py:133:5-23: Class member `ImageProcessingEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/image_processing/__init__.py:134:5-23: Class member `ImageProcessingEntity._attr_device_class` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/image_upload/__init__.py:152:47-88: Unpacked argument `tuple[Path]` is not assignable to parameter `*args` with type `tuple[PathLike[bytes] | PathLike[str] | bytes | str, bool, (((...) -> Any, str, tuple[type[BaseException], BaseException, TracebackType]) -> object) | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/image_upload/__init__.py:223:54-73: Argument `BoundMethod[Path, (self: Path, *, follow_symlinks: bool = True) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/image_upload/media_source.py:30:5-9: Class member `ImageUploadMediaSource.name` overrides parent class `MediaSource` in an inconsistent manner [bad-override] +ERROR homeassistant/components/imap/__init__.py:169:17-40: Object of class `NoneType` has no attribute `expunge` [missing-attribute] +ERROR homeassistant/components/imap/__init__.py:196:17-40: Object of class `NoneType` has no attribute `expunge` [missing-attribute] +ERROR homeassistant/components/imap/__init__.py:254:29-45: Object of class `str` has no attribute `get_payload` [missing-attribute] +ERROR homeassistant/components/imap/__init__.py:264:20-24: Returned type `Message[str, str] | str | Any` is not assignable to declared return type `Message[str, str]` [bad-return] +ERROR homeassistant/components/imap/__init__.py:356:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/imap/config_flow.py:210:9-31: Class member `IMAPConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/imap/coordinator.py:84:8-29: Object of class `NoneType` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/imap/coordinator.py:156:48-56: `date_str` is uninitialized [unbound-name] +ERROR homeassistant/components/imap/coordinator.py:159:77-85: `date_str` is uninitialized [unbound-name] +ERROR homeassistant/components/imap/coordinator.py:218:34-55: Argument `Message[str, str] | list[Message[str, str] | str] | str | Any` is not assignable to parameter `iterable` with type `Iterable[str]` in function `enumerate.__new__` [bad-argument-type] +ERROR homeassistant/components/imap/coordinator.py:237:5-17: Class member `ImapDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/imap/coordinator.py:277:32-79: `IMAP4_SSL` is not assignable to attribute `imap_client` with type `Never` [bad-assignment] +ERROR homeassistant/components/imap/coordinator.py:288:37-47: `message_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/imap/coordinator.py:312:25-35: `message_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/imap/coordinator.py:343:17-27: `message_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/imap/coordinator.py:402:36-40: `None` is not assignable to attribute `imap_client` with type `IMAP4_SSL` [bad-assignment] +ERROR homeassistant/components/imap/sensor.py:24:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imap/sensor.py:25:5-20: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imap/sensor.py:28:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imap/sensor.py:55:14-32: Class member `ImapSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/imeon_inverter/config_flow.py:69:52-58: `serial` may be uninitialized [unbound-name] +ERROR homeassistant/components/imeon_inverter/config_flow.py:74:40-46: `serial` may be uninitialized [unbound-name] +ERROR homeassistant/components/imeon_inverter/coordinator.py:34:5-17: Class member `InverterCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/imeon_inverter/select.py:32:9-12: Unexpected keyword argument `key` in function `ImeonSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/select.py:33:9-24: Unexpected keyword argument `translation_key` in function `ImeonSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/select.py:36:22-38:10: Argument `(api: Inverter, mode: str) -> Coroutine[Unknown, Unknown, bool | None]` is not assignable to parameter `set_value_fn` with type `(Inverter, str) -> Awaitable[bool]` in function `ImeonSelectEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/imeon_inverter/select.py:37:13-40: Argument `str` is not assignable to parameter `mode` with type `Literal['bup', 'ofg', 'ong', 'smg']` in function `imeon_inverter_api.inverter.Inverter.set_inverter_mode` [bad-argument-type] +ERROR homeassistant/components/imeon_inverter/select.py:59:5-23: Class member `InverterSelect.entity_description` overrides parent class `InverterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/imeon_inverter/select.py:59:5-23: Class member `InverterSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/imeon_inverter/sensor.py:38:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:39:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:65:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:73:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:80:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:81:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:87:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:94:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:95:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:101:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:108:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:109:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:115:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:123:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:124:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:130:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:131:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:137:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:138:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:144:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:145:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:152:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:153:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:159:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:166:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:167:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:173:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:174:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:181:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:182:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:188:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:189:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:195:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:196:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:202:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:203:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:209:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:210:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:216:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:217:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:223:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:224:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:230:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:231:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:237:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:238:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:244:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:245:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:251:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:252:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:259:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:260:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:266:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:267:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:273:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:274:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:280:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:281:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:287:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:288:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:295:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:296:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:302:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:303:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:310:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:311:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:317:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:318:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:325:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:326:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:333:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:334:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:341:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:342:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:349:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:350:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:357:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:358:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:366:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:367:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:373:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:374:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:381:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:382:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:389:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:390:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:397:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:398:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:405:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:406:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:413:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:414:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:422:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:423:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:429:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:430:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imeon_inverter/sensor.py:452:7-21: Field `entity_description` is declared `EntityDescription` in ancestor `class InverterEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/imgw_pib/coordinator.py:33:5-17: Class member `ImgwPibDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/imgw_pib/sensor.py:56:9-12: Unexpected keyword argument `key` in function `ImgwPibSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imgw_pib/sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `ImgwPibSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imgw_pib/sensor.py:64:9-12: Unexpected keyword argument `key` in function `ImgwPibSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imgw_pib/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `ImgwPibSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imgw_pib/sensor.py:73:9-12: Unexpected keyword argument `key` in function `ImgwPibSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imgw_pib/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `ImgwPibSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imgw_pib/sensor.py:82:9-12: Unexpected keyword argument `key` in function `ImgwPibSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imgw_pib/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `ImgwPibSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/imgw_pib/sensor.py:119:5-23: Class member `ImgwPibSensorEntity.entity_description` overrides parent class `ImgwPibEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/imgw_pib/sensor.py:119:5-23: Class member `ImgwPibSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/immich/coordinator.py:47:5-17: Class member `ImmichDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/immich/sensor.py:36:9-12: Unexpected keyword argument `key` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:37:9-24: Unexpected keyword argument `translation_key` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:46:9-12: Unexpected keyword argument `key` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:56:9-12: Unexpected keyword argument `key` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:64:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:67:9-12: Unexpected keyword argument `key` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:72:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:75:9-12: Unexpected keyword argument `key` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:82:9-12: Unexpected keyword argument `key` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:89:9-12: Unexpected keyword argument `key` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:98:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:101:9-12: Unexpected keyword argument `key` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:110:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ImmichSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/immich/sensor.py:132:5-23: Class member `ImmichSensorEntity.entity_description` overrides parent class `ImmichEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/immich/sensor.py:132:5-23: Class member `ImmichSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/immich/services.py:78:12-24: `target_album` may be uninitialized [unbound-name] +ERROR homeassistant/components/immich/services.py:80:17-29: `target_album` may be uninitialized [unbound-name] +ERROR homeassistant/components/improv_ble/config_flow.py:221:17-66: Expected 0 positional arguments, got 1 in function `homeassistant.components.bluetooth.match.BluetoothCallbackMatcher.__init__` [bad-argument-count] +ERROR homeassistant/components/improv_ble/config_flow.py:384:42-61: Object of class `object` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/incomfort/binary_sensor.py:32:5-20: Class member `IncomfortBinarySensorEntityDescription.entity_category` overrides parent class `BinarySensorEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/incomfort/binary_sensor.py:37:9-12: Unexpected keyword argument `key` in function `IncomfortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/binary_sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `IncomfortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/binary_sensor.py:44:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IncomfortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/binary_sensor.py:47:9-12: Unexpected keyword argument `key` in function `IncomfortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/binary_sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `IncomfortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/binary_sensor.py:51:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IncomfortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/binary_sensor.py:54:9-12: Unexpected keyword argument `key` in function `IncomfortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/binary_sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `IncomfortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/binary_sensor.py:58:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IncomfortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/binary_sensor.py:61:9-12: Unexpected keyword argument `key` in function `IncomfortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/binary_sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `IncomfortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/binary_sensor.py:65:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IncomfortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/binary_sensor.py:88:5-23: Class member `IncomfortBinarySensor.entity_description` overrides parent class `IncomfortBoilerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/incomfort/binary_sensor.py:88:5-23: Class member `IncomfortBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/incomfort/climate.py:51:5-29: Class member `InComfortClimate._attr_supported_features` overrides parent class `IncomfortEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/incomfort/config_flow.py:107:9-31: Class member `InComfortConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/incomfort/config_flow.py:189:22-39: `reconfigure_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/incomfort/config_flow.py:190:24-38: `is_reconfigure` may be uninitialized [unbound-name] +ERROR homeassistant/components/incomfort/config_flow.py:194:20-34: `is_reconfigure` may be uninitialized [unbound-name] +ERROR homeassistant/components/incomfort/config_flow.py:196:25-42: `reconfigure_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/incomfort/coordinator.py:56:5-17: Class member `InComfortDataCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/incomfort/errors.py:11:5-23: Class member `NotFound.translation_domain` overrides parent class `HomeAssistantError` in an inconsistent manner [bad-override] +ERROR homeassistant/components/incomfort/errors.py:12:5-20: Class member `NotFound.translation_key` overrides parent class `HomeAssistantError` in an inconsistent manner [bad-override] +ERROR homeassistant/components/incomfort/errors.py:18:5-23: Class member `NoHeaters.translation_domain` overrides parent class `ConfigEntryNotReady` in an inconsistent manner [bad-override] +ERROR homeassistant/components/incomfort/errors.py:19:5-20: Class member `NoHeaters.translation_key` overrides parent class `ConfigEntryNotReady` in an inconsistent manner [bad-override] +ERROR homeassistant/components/incomfort/errors.py:25:5-23: Class member `InComfortTimeout.translation_domain` overrides parent class `ConfigEntryNotReady` in an inconsistent manner [bad-override] +ERROR homeassistant/components/incomfort/errors.py:26:5-20: Class member `InComfortTimeout.translation_key` overrides parent class `ConfigEntryNotReady` in an inconsistent manner [bad-override] +ERROR homeassistant/components/incomfort/errors.py:32:5-23: Class member `InComfortUnknownError.translation_domain` overrides parent class `ConfigEntryNotReady` in an inconsistent manner [bad-override] +ERROR homeassistant/components/incomfort/errors.py:33:5-20: Class member `InComfortUnknownError.translation_key` overrides parent class `ConfigEntryNotReady` in an inconsistent manner [bad-override] +ERROR homeassistant/components/incomfort/sensor.py:38:9-12: Unexpected keyword argument `key` in function `IncomfortSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/sensor.py:43:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IncomfortSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/sensor.py:46:9-12: Unexpected keyword argument `key` in function `IncomfortSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/sensor.py:52:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IncomfortSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/sensor.py:55:9-12: Unexpected keyword argument `key` in function `IncomfortSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `IncomfortSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/sensor.py:62:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IncomfortSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/sensor.py:67:9-12: Unexpected keyword argument `key` in function `IncomfortSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `IncomfortSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/sensor.py:72:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IncomfortSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/incomfort/sensor.py:95:5-23: Class member `IncomfortSensor.entity_description` overrides parent class `IncomfortBoilerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/incomfort/sensor.py:95:5-23: Class member `IncomfortSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/inels/switch.py:32:9-12: Unexpected keyword argument `key` in function `InelsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/inels/switch.py:33:9-24: Unexpected keyword argument `translation_key` in function `InelsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/inels/switch.py:40:9-12: Unexpected keyword argument `key` in function `InelsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/inels/switch.py:41:9-24: Unexpected keyword argument `translation_key` in function `InelsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/inels/switch.py:48:9-12: Unexpected keyword argument `key` in function `InelsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/inels/switch.py:49:9-24: Unexpected keyword argument `translation_key` in function `InelsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/inels/switch.py:87:5-23: Class member `InelsSwitch.entity_description` overrides parent class `InelsBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/inels/switch.py:87:5-23: Class member `InelsSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/influxdb/__init__.py:283:12-26: `_include_value` may be uninitialized [unbound-name] +ERROR homeassistant/components/influxdb/__init__.py:284:59-74: `_state_as_value` may be uninitialized [unbound-name] +ERROR homeassistant/components/influxdb/__init__.py:440:13-32: Object of class `InfluxDBClient` has no attribute `write_points` [missing-attribute] +ERROR homeassistant/components/influxdb/__init__.py:455:25-37: Object of class `InfluxDBClient` has no attribute `query` [missing-attribute] +ERROR homeassistant/components/influxdb/sensor.py:214:25-221:14: `InfluxQLSensorData` is not assignable to attribute `data` with type `InfluxFluxSensorData` [bad-assignment] +ERROR homeassistant/components/influxdb/sensor.py:245:21-26: `value` may be uninitialized [unbound-name] +ERROR homeassistant/components/influxdb/sensor.py:248:23-28: `value` may be uninitialized [unbound-name] +ERROR homeassistant/components/influxdb/sensor.py:289:27-87: `str` is not assignable to attribute `full_query` with type `None` [bad-assignment] +ERROR homeassistant/components/influxdb/sensor.py:334:13-335:56: `str` is not assignable to attribute `query` with type `None` [bad-assignment] +ERROR homeassistant/components/inkbird/sensor.py:34:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/inkbird/sensor.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/inkbird/sensor.py:46:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/inkbird/sensor.py:55:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/inkbird/sensor.py:59:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/inkbird/sensor.py:62:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/inkbird/sensor.py:68:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/inkbird/sensor.py:125:7-35: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/input_datetime/__init__.py:237:38-239:14: `datetime` is not assignable to attribute `_current_datetime` with type `None` [bad-assignment] +ERROR homeassistant/components/input_datetime/__init__.py:241:38-243:14: `datetime` is not assignable to attribute `_current_datetime` with type `None` [bad-assignment] +ERROR homeassistant/components/input_datetime/__init__.py:272:38-75: `datetime | None` is not assignable to attribute `_current_datetime` with type `None` [bad-assignment] +ERROR homeassistant/components/input_datetime/__init__.py:295:34-58: Object of class `NoneType` has no attribute `replace` [missing-attribute] +ERROR homeassistant/components/input_datetime/__init__.py:372:34-54: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/input_datetime/__init__.py:404:20-47: Object of class `NoneType` has no attribute `date` [missing-attribute] +ERROR homeassistant/components/input_datetime/__init__.py:407:20-47: Object of class `NoneType` has no attribute `time` [missing-attribute] +ERROR homeassistant/components/input_datetime/__init__.py:409:34-411:10: `datetime` is not assignable to attribute `_current_datetime` with type `None` [bad-assignment] +ERROR homeassistant/components/input_number/__init__.py:316:40-72: `+` is not supported between `None` and `int` [unsupported-operation] +ERROR homeassistant/components/input_number/__init__.py:320:40-72: `-` is not supported between `None` and `int` [unsupported-operation] +ERROR homeassistant/components/insteon/__init__.py:69:11-18: `devices` may be uninitialized [unbound-name] +ERROR homeassistant/components/insteon/api/config.py:314:45-52: Argument `DeviceManager` is not assignable to parameter `devices` with type `dict[Address, Device]` in function `pyinsteon.managers.link_manager.get_broken_links` [bad-argument-type] +ERROR homeassistant/components/insteon/api/config.py:335:45-52: Argument `DeviceManager` is not assignable to parameter `devices` with type `dict[Address, Device]` in function `pyinsteon.managers.link_manager.get_broken_links` [bad-argument-type] +ERROR homeassistant/components/insteon/api/device.py:120:17-40: Argument `Any | None` is not assignable to parameter `address` with type `Address` in function `pyinsteon.managers.device_manager.DeviceManager.async_add_device` [bad-argument-type] +ERROR homeassistant/components/insteon/api/properties.py:46:81-82: Cannot index into `dict[str, Any]` [bad-index] +ERROR homeassistant/components/insteon/api/properties.py:50:84-85: Cannot index into `dict[str, Any]` [bad-index] +ERROR homeassistant/components/insteon/api/properties.py:54:82-83: Cannot index into `dict[str, Any]` [bad-index] +ERROR homeassistant/components/insteon/api/properties.py:61:7-8: Cannot index into `dict[str, Any]` [bad-index] +ERROR homeassistant/components/insteon/api/properties.py:68:7-8: Cannot index into `dict[str, Any]` [bad-index] +ERROR homeassistant/components/insteon/api/properties.py:73:82-83: Cannot index into `dict[str, Any]` [bad-index] +ERROR homeassistant/components/insteon/api/scenes.py:91:5-21: Type `int` is not iterable [not-iterable] +ERROR homeassistant/components/insteon/binary_sensor.py:61:13-27: Argument `Unknown | None` is not assignable to parameter `discovery_info` with type `dict[str, Any]` in function `homeassistant.components.insteon.utils.async_add_insteon_entities` [bad-argument-type] +ERROR homeassistant/components/insteon/binary_sensor.py:80:14-32: Class member `InsteonBinarySensorEntity._attr_device_class` overrides parent class `InsteonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/insteon/climate.py:70:13-27: Argument `Unknown | None` is not assignable to parameter `discovery_info` with type `dict[str, Any]` in function `homeassistant.components.insteon.utils.async_add_insteon_entities` [bad-argument-type] +ERROR homeassistant/components/insteon/climate.py:86:5-29: Class member `InsteonClimateEntity._attr_supported_features` overrides parent class `InsteonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/insteon/cover.py:33:75-89: Argument `Unknown | None` is not assignable to parameter `discovery_info` with type `dict[str, Any]` in function `homeassistant.components.insteon.utils.async_add_insteon_entities` [bad-argument-type] +ERROR homeassistant/components/insteon/cover.py:49:5-29: Class member `InsteonCoverEntity._attr_supported_features` overrides parent class `InsteonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/insteon/entity.py:72:19-30: `description` may be uninitialized [unbound-name] +ERROR homeassistant/components/insteon/entity.py:72:63-72: `extension` may be uninitialized [unbound-name] +ERROR homeassistant/components/insteon/fan.py:37:71-85: Argument `Unknown | None` is not assignable to parameter `discovery_info` with type `dict[str, Any]` in function `homeassistant.components.insteon.utils.async_add_insteon_entities` [bad-argument-type] +ERROR homeassistant/components/insteon/fan.py:53:5-29: Class member `InsteonFanEntity._attr_supported_features` overrides parent class `InsteonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/insteon/ipdb.py:52:64-109:2: `dict[type[AccessControl_Morningstar] | type[ClimateControl_Thermostat] | type[ClimateControl_WirelessThermostat] | type[DimmableLightingControl] | type[DimmableLightingControl_Dial] | type[DimmableLightingControl_DinRail] | type[DimmableLightingControl_FanLinc] | type[DimmableLightingControl_I3_KeypadLinc_4] | type[DimmableLightingControl_InLineLinc01] | type[DimmableLightingControl_InLineLinc02] | type[DimmableLightingControl_KeypadLinc_6] | type[DimmableLightingControl_KeypadLinc_8] | type[DimmableLightingControl_LampLinc] | type[DimmableLightingControl_OutletLinc] | type[DimmableLightingControl_SwitchLinc01] | type[DimmableLightingControl_SwitchLinc02] | type[DimmableLightingControl_ToggleLinc] | type[EnergyManagement_LoadController] | type[SecurityHealthSafety_DoorSensor] | type[SecurityHealthSafety_LeakSensor] | type[SecurityHealthSafety_MotionSensor] | type[SecurityHealthSafety_OpenCloseSensor] | type[SecurityHealthSafety_Smokebridge] | type[SensorsActuators_IOLink] | type[SwitchedLightingControl] | type[SwitchedLightingControl_ApplianceLinc] | type[SwitchedLightingControl_DinRail] | type[SwitchedLightingControl_I3Outlet] | type[SwitchedLightingControl_InLineLinc01] | type[SwitchedLightingControl_InLineLinc02] | type[SwitchedLightingControl_KeypadLinc_6] | type[SwitchedLightingControl_KeypadLinc_8] | type[SwitchedLightingControl_OnOffOutlet] | type[SwitchedLightingControl_OutletLinc] | type[SwitchedLightingControl_SwitchLinc01] | type[SwitchedLightingControl_SwitchLinc02] | type[SwitchedLightingControl_ToggleLinc] | type[WindowCovering] | type[X10Dimmable] | type[X10OnOff] | type[X10OnOffSensor], dict[EntityPlatforms, Iterable[int]]]` is not assignable to `dict[Device, dict[EntityPlatforms, Iterable[int]]]` [bad-assignment] +ERROR homeassistant/components/insteon/ipdb.py:114:31-49: No matching overload found for function `dict.get` called with arguments: (type[Unknown], dict[@_, @_]) [no-matching-overload] +ERROR homeassistant/components/insteon/light.py:37:13-27: Argument `Unknown | None` is not assignable to parameter `discovery_info` with type `dict[str, Any]` in function `homeassistant.components.insteon.utils.async_add_insteon_entities` [bad-argument-type] +ERROR homeassistant/components/insteon/lock.py:28:73-87: Argument `Unknown | None` is not assignable to parameter `discovery_info` with type `dict[str, Any]` in function `homeassistant.components.insteon.utils.async_add_insteon_entities` [bad-argument-type] +ERROR homeassistant/components/insteon/services.py:104:42-47: Argument `Any | None` is not assignable to parameter `group` with type `int` in function `pyinsteon.managers.link_manager.async_enter_unlinking_mode` [bad-argument-type] +ERROR homeassistant/components/insteon/services.py:148:39-48: Argument `Any | None` is not assignable to parameter `housecode` with type `str` in function `pyinsteon.managers.x10_manager.async_x10_all_units_off` [bad-argument-type] +ERROR homeassistant/components/insteon/services.py:153:40-49: Argument `Any | None` is not assignable to parameter `housecode` with type `str` in function `pyinsteon.managers.x10_manager.async_x10_all_lights_off` [bad-argument-type] +ERROR homeassistant/components/insteon/services.py:158:39-48: Argument `Any | None` is not assignable to parameter `housecode` with type `str` in function `pyinsteon.managers.x10_manager.async_x10_all_lights_on` [bad-argument-type] +ERROR homeassistant/components/insteon/services.py:188:33-37: Argument `None` is not assignable to parameter `cat` with type `int` in function `pyinsteon.managers.device_manager.DeviceManager.set_id` [bad-argument-type] +ERROR homeassistant/components/insteon/services.py:188:39-43: Argument `None` is not assignable to parameter `subcat` with type `int` in function `pyinsteon.managers.device_manager.DeviceManager.set_id` [bad-argument-type] +ERROR homeassistant/components/insteon/services.py:188:45-49: Argument `None` is not assignable to parameter `firmware` with type `int` in function `pyinsteon.managers.device_manager.DeviceManager.set_id` [bad-argument-type] +ERROR homeassistant/components/insteon/switch.py:32:13-27: Argument `Unknown | None` is not assignable to parameter `discovery_info` with type `dict[str, Any]` in function `homeassistant.components.insteon.utils.async_add_insteon_entities` [bad-argument-type] +ERROR homeassistant/components/insteon/utils.py:66:41-50: Cannot set item in `dict[str, Address | int]` [unsupported-operation] +ERROR homeassistant/components/insteon/utils.py:201:46-59: Argument `() -> dict[str, str]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/integration/sensor.py:268:21-32: `unit_prefix` may be uninitialized [unbound-name] +ERROR homeassistant/components/integration/sensor.py:601:60-72: Argument `State | None` is not assignable to parameter `source_state` with type `State` in function `IntegrationSensor._derive_and_set_attributes_from_state` [bad-argument-type] +ERROR homeassistant/components/integration/sensor.py:603:38-54: Argument `Decimal | None` is not assignable to parameter `constant_state` with type `Decimal` in function `_IntegrationMethod.calculate_area_with_one_state` [bad-argument-type] +ERROR homeassistant/components/intellifire/__init__.py:81:24-51: Cannot use `IntelliFireCloudInterface` as a context manager [bad-context-manager] +ERROR homeassistant/components/intellifire/binary_sensor.py:37:9-12: Unexpected keyword argument `key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:42:9-12: Unexpected keyword argument `key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:47:9-12: Unexpected keyword argument `key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:52:9-12: Unexpected keyword argument `key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:57:9-12: Unexpected keyword argument `key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:59:9-24: Unexpected keyword argument `entity_category` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:64:9-12: Unexpected keyword argument `key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:66:9-24: Unexpected keyword argument `entity_category` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:71:9-12: Unexpected keyword argument `key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:73:9-24: Unexpected keyword argument `entity_category` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:78:9-12: Unexpected keyword argument `key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:80:9-24: Unexpected keyword argument `entity_category` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:85:9-12: Unexpected keyword argument `key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:87:9-24: Unexpected keyword argument `entity_category` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:92:9-12: Unexpected keyword argument `key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:94:9-24: Unexpected keyword argument `entity_category` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:99:9-12: Unexpected keyword argument `key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:101:9-24: Unexpected keyword argument `entity_category` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:106:9-12: Unexpected keyword argument `key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:108:9-24: Unexpected keyword argument `entity_category` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:113:9-12: Unexpected keyword argument `key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:115:9-24: Unexpected keyword argument `entity_category` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:120:9-12: Unexpected keyword argument `key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:122:9-24: Unexpected keyword argument `entity_category` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:127:9-12: Unexpected keyword argument `key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:129:9-24: Unexpected keyword argument `entity_category` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:134:9-12: Unexpected keyword argument `key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:135:9-24: Unexpected keyword argument `translation_key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:136:9-24: Unexpected keyword argument `entity_category` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:141:9-12: Unexpected keyword argument `key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:142:9-24: Unexpected keyword argument `translation_key` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:143:9-24: Unexpected keyword argument `entity_category` in function `IntellifireBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/binary_sensor.py:167:5-23: Class member `IntellifireBinarySensor.entity_description` overrides parent class `IntellifireEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/intellifire/binary_sensor.py:167:5-23: Class member `IntellifireBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/intellifire/climate.py:22:30-33: Unexpected keyword argument `key` in function `homeassistant.components.climate.ClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/climate.py:22:45-49: Unexpected keyword argument `name` in function `homeassistant.components.climate.ClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/climate.py:47:5-23: Class member `IntellifireClimate.entity_description` overrides parent class `IntellifireEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/intellifire/climate.py:52:5-29: Class member `IntellifireClimate._attr_supported_features` overrides parent class `IntellifireEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/intellifire/config_flow.py:116:28-52: Cannot use `IntelliFireCloudInterface` as a context manager [bad-context-manager] +ERROR homeassistant/components/intellifire/config_flow.py:159:44-50: `serial` may be uninitialized [unbound-name] +ERROR homeassistant/components/intellifire/config_flow.py:160:71-77: `serial` may be uninitialized [unbound-name] +ERROR homeassistant/components/intellifire/config_flow.py:163:80-86: `serial` may be uninitialized [unbound-name] +ERROR homeassistant/components/intellifire/coordinator.py:25:5-17: Class member `IntellifireDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/intellifire/fan.py:48:9-12: Unexpected keyword argument `key` in function `IntellifireFanEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/fan.py:49:9-24: Unexpected keyword argument `translation_key` in function `IntellifireFanEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/fan.py:77:5-23: Class member `IntellifireFan.entity_description` overrides parent class `IntellifireEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/intellifire/fan.py:77:5-23: Class member `IntellifireFan.entity_description` overrides parent class `FanEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/intellifire/fan.py:78:5-29: Class member `IntellifireFan._attr_supported_features` overrides parent class `IntellifireEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/intellifire/light.py:43:9-12: Unexpected keyword argument `key` in function `IntellifireLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/light.py:44:9-24: Unexpected keyword argument `translation_key` in function `IntellifireLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/light.py:54:5-23: Class member `IntellifireLight.entity_description` overrides parent class `IntellifireEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/intellifire/light.py:54:5-23: Class member `IntellifireLight.entity_description` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/intellifire/number.py:29:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/number.py:30:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/number.py:43:7-36: Field `entity_description` is declared `EntityDescription` in ancestor `class IntellifireEntity: ... +`, which is not assignable to the type `NumberEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/intellifire/sensor.py:70:9-12: Unexpected keyword argument `key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:77:9-12: Unexpected keyword argument `key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:84:9-12: Unexpected keyword argument `key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:92:9-12: Unexpected keyword argument `key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:98:9-12: Unexpected keyword argument `key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:105:9-12: Unexpected keyword argument `key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:107:9-24: Unexpected keyword argument `entity_category` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:112:9-12: Unexpected keyword argument `key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:113:9-24: Unexpected keyword argument `translation_key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:114:9-24: Unexpected keyword argument `entity_category` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:119:9-12: Unexpected keyword argument `key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:120:9-24: Unexpected keyword argument `translation_key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:121:9-24: Unexpected keyword argument `entity_category` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:123:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:126:9-12: Unexpected keyword argument `key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:127:9-24: Unexpected keyword argument `translation_key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:128:9-24: Unexpected keyword argument `entity_category` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:130:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:133:9-12: Unexpected keyword argument `key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:134:9-24: Unexpected keyword argument `translation_key` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:135:9-24: Unexpected keyword argument `entity_category` in function `IntellifireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/sensor.py:158:5-23: Class member `IntelliFireSensor.entity_description` overrides parent class `IntellifireEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/intellifire/sensor.py:158:5-23: Class member `IntelliFireSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/intellifire/switch.py:35:9-12: Unexpected keyword argument `key` in function `IntellifireSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/switch.py:36:9-24: Unexpected keyword argument `translation_key` in function `IntellifireSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/switch.py:42:9-12: Unexpected keyword argument `key` in function `IntellifireSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/switch.py:43:9-24: Unexpected keyword argument `translation_key` in function `IntellifireSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/intellifire/switch.py:68:5-23: Class member `IntellifireSwitch.entity_description` overrides parent class `IntellifireEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/intellifire/switch.py:68:5-23: Class member `IntellifireSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/intent/__init__.py:114:28-48: Argument `set[type[ButtonDeviceClass] | type[CoverDeviceClass] | type[MediaPlayerDeviceClass] | type[SwitchDeviceClass] | type[ValveDeviceClass]]` is not assignable to parameter `device_classes` with type `set[type[StrEnum]] | None` in function `homeassistant.helpers.intent.ServiceIntentHandler.__init__` [bad-argument-type] +ERROR homeassistant/components/intent/__init__.py:124:28-48: Argument `set[type[ButtonDeviceClass] | type[CoverDeviceClass] | type[MediaPlayerDeviceClass] | type[SwitchDeviceClass] | type[ValveDeviceClass]]` is not assignable to parameter `device_classes` with type `set[type[StrEnum]] | None` in function `homeassistant.helpers.intent.ServiceIntentHandler.__init__` [bad-argument-type] +ERROR homeassistant/components/intent/__init__.py:134:28-48: Argument `set[type[ButtonDeviceClass] | type[CoverDeviceClass] | type[MediaPlayerDeviceClass] | type[SwitchDeviceClass] | type[ValveDeviceClass]]` is not assignable to parameter `device_classes` with type `set[type[StrEnum]] | None` in function `homeassistant.helpers.intent.ServiceIntentHandler.__init__` [bad-argument-type] +ERROR homeassistant/components/intent/timers.py:299:27-42: Cannot index into `dict[str, (TimerEventType, TimerInfo) -> None]` [bad-index] +ERROR homeassistant/components/intent/timers.py:338:27-42: Cannot index into `dict[str, (TimerEventType, TimerInfo) -> None]` [bad-index] +ERROR homeassistant/components/intent/timers.py:367:27-42: Cannot index into `dict[str, (TimerEventType, TimerInfo) -> None]` [bad-index] +ERROR homeassistant/components/intent/timers.py:405:27-42: Cannot index into `dict[str, (TimerEventType, TimerInfo) -> None]` [bad-index] +ERROR homeassistant/components/intent/timers.py:431:27-42: Cannot index into `dict[str, (TimerEventType, TimerInfo) -> None]` [bad-index] +ERROR homeassistant/components/intent/timers.py:464:27-42: Cannot index into `dict[str, (TimerEventType, TimerInfo) -> None]` [bad-index] +ERROR homeassistant/components/intent/timers.py:727:29-36: Object of class `NoneType` has no attribute `id` [missing-attribute] +ERROR homeassistant/components/intent/timers.py:730:30-43: Object of class `NoneType` has no attribute `floor_id` [missing-attribute] +ERROR homeassistant/components/intesishome/climate.py:9:1-80: Could not find import of `pyintesishome` [missing-import] +ERROR homeassistant/components/intesishome/climate.py:280:27-36: `Literal[HVACMode.AUTO, HVACMode.COOL, HVACMode.DRY, HVACMode.FAN_ONLY, HVACMode.HEAT, HVACMode.HEAT_COOL]` is not assignable to attribute `_hvac_mode` with type `None` [bad-assignment] +ERROR homeassistant/components/intesishome/climate.py:324:27-56: `HVACMode | None` is not assignable to attribute `_hvac_mode` with type `None` [bad-assignment] +ERROR homeassistant/components/intesishome/climate.py:351:39-56: No matching overload found for function `dict.get` called with arguments: (None) [no-matching-overload] +ERROR homeassistant/components/intesishome/climate.py:359:31-36: `Literal[False]` is not assignable to attribute `_connected` with type `None` [bad-assignment] +ERROR homeassistant/components/intesishome/climate.py:375:31-35: `Literal[True]` is not assignable to attribute `_connected` with type `None` [bad-assignment] +ERROR homeassistant/components/intesishome/climate.py:409:20-35: Returned type `None` is not assignable to declared return type `HVACMode` [bad-return] +ERROR homeassistant/components/iometer/binary_sensor.py:28:9-12: Unexpected keyword argument `key` in function `IOmeterBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/binary_sensor.py:29:9-24: Unexpected keyword argument `translation_key` in function `IOmeterBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/binary_sensor.py:31:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IOmeterBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/binary_sensor.py:39:9-12: Unexpected keyword argument `key` in function `IOmeterBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/binary_sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `IOmeterBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/binary_sensor.py:42:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IOmeterBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/binary_sensor.py:72:5-23: Class member `IOmeterBinarySensor.entity_description` overrides parent class `IOmeterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iometer/binary_sensor.py:72:5-23: Class member `IOmeterBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iometer/config_flow.py:50:30-49: `str | None` is not assignable to attribute `_meter_number` with type `str` [bad-assignment] +ERROR homeassistant/components/iometer/config_flow.py:91:38-57: `str | None` is not assignable to attribute `_meter_number` with type `str` [bad-assignment] +ERROR homeassistant/components/iometer/coordinator.py:34:5-17: Class member `IOMeterCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iometer/sensor.py:38:9-12: Unexpected keyword argument `key` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:39:9-24: Unexpected keyword argument `translation_key` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:40:9-13: Unexpected keyword argument `icon` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:41:18-55: Argument `(data: IOmeterData) -> str | None` is not assignable to parameter `value_fn` with type `(IOmeterData) -> float | int | str` in function `IOmeterEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/iometer/sensor.py:44:9-12: Unexpected keyword argument `key` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:49:9-24: Unexpected keyword argument `entity_category` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:50:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:54:9-12: Unexpected keyword argument `key` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:59:9-24: Unexpected keyword argument `entity_category` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:60:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:61:18-59: Argument `(data: IOmeterData) -> int | None` is not assignable to parameter `value_fn` with type `(IOmeterData) -> float | int | str` in function `IOmeterEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/iometer/sensor.py:64:9-12: Unexpected keyword argument `key` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:71:9-12: Unexpected keyword argument `key` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:76:18-68: Argument `(data: IOmeterData) -> int | None` is not assignable to parameter `value_fn` with type `(IOmeterData) -> float | int | str` in function `IOmeterEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/iometer/sensor.py:79:9-12: Unexpected keyword argument `key` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:86:9-12: Unexpected keyword argument `key` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:91:18-67: Argument `(data: IOmeterData) -> float | None` is not assignable to parameter `value_fn` with type `(IOmeterData) -> float | int | str` in function `IOmeterEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/iometer/sensor.py:94:9-12: Unexpected keyword argument `key` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:95:9-24: Unexpected keyword argument `translation_key` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:99:18-66: Argument `(data: IOmeterData) -> float | None` is not assignable to parameter `value_fn` with type `(IOmeterData) -> float | int | str` in function `IOmeterEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/iometer/sensor.py:102:9-12: Unexpected keyword argument `key` in function `IOmeterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iometer/sensor.py:106:18-63: Argument `(data: IOmeterData) -> float | None` is not assignable to parameter `value_fn` with type `(IOmeterData) -> float | int | str` in function `IOmeterEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/iometer/sensor.py:131:5-23: Class member `IOmeterSensor.entity_description` overrides parent class `IOmeterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iometer/sensor.py:131:5-23: Class member `IOmeterSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ios/__init__.py:254:51-256:6: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[PathLike[str] | str, dict[str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None]]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ios/__init__.py:264:29-38: `conf_user` may be uninitialized [unbound-name] +ERROR homeassistant/components/ios/notify.py:97:23-30: `targets` may be uninitialized [unbound-name] +ERROR homeassistant/components/ios/notify.py:99:78-85: `targets` may be uninitialized [unbound-name] +ERROR homeassistant/components/ios/sensor.py:43:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ios/sensor.py:48:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ios/sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/coordinator.py:31:5-17: Class member `IotawattUpdater.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iotawatt/sensor.py:48:9-12: Unexpected keyword argument `key` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:52:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:55:9-12: Unexpected keyword argument `key` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:59:9-13: Unexpected keyword argument `icon` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:60:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:63:9-12: Unexpected keyword argument `key` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:68:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:71:9-12: Unexpected keyword argument `key` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:77:9-12: Unexpected keyword argument `key` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:83:9-12: Unexpected keyword argument `key` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:87:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:90:9-12: Unexpected keyword argument `key` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:93:9-13: Unexpected keyword argument `icon` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:94:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:97:9-12: Unexpected keyword argument `key` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:100:9-13: Unexpected keyword argument `icon` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:101:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:104:9-12: Unexpected keyword argument `key` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:108:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:128:61-64: Unexpected keyword argument `key` in function `IotaWattSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotawatt/sensor.py:155:5-23: Class member `IotaWattSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iotawatt/sensor.py:155:5-23: Class member `IotaWattSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iotty/coordinator.py:49:5-17: Class member `IottyDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iotty/cover.py:95:5-23: Class member `IottyShutter._attr_device_class` overrides parent class `IottyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iotty/cover.py:96:5-18: Class member `IottyShutter._iotty_device` overrides parent class `IottyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iotty/cover.py:97:5-29: Class member `IottyShutter._attr_supported_features` overrides parent class `IottyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iotty/cover.py:97:5-29: Class member `IottyShutter._attr_supported_features` overrides parent class `CoverEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iotty/switch.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotty/switch.py:34:9-13: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotty/switch.py:38:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotty/switch.py:39:9-13: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iotty/switch.py:146:5-23: Class member `IottySwitch._attr_device_class` overrides parent class `IottyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iotty/switch.py:147:5-18: Class member `IottySwitch._iotty_device` overrides parent class `IottyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iotty/switch.py:158:14-32: Class member `IottySwitch.entity_description` overrides parent class `IottyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iperf3/__init__.py:8:8-14: Could not find import of `iperf3` [missing-import] +ERROR homeassistant/components/iperf3/__init__.py:55:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iperf3/__init__.py:56:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iperf3/__init__.py:57:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iperf3/__init__.py:63:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iperf3/__init__.py:64:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iperf3/__init__.py:65:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iperf3/sensor.py:48:14-32: Class member `Iperf3Sensor.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ipma/sensor.py:53:16-38: Returned type `tuple[int | None, dict[str, Any]]` is not assignable to declared return type `tuple[int, dict[str, Any]] | tuple[None, dict[str, Any]]` [bad-return] +ERROR homeassistant/components/ipma/sensor.py:71:9-12: Unexpected keyword argument `key` in function `IPMASensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ipma/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `IPMASensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ipma/sensor.py:76:9-12: Unexpected keyword argument `key` in function `IPMASensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ipma/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `IPMASensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ipma/sensor.py:81:9-12: Unexpected keyword argument `key` in function `IPMASensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ipma/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `IPMASensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ipma/sensor.py:105:5-23: Class member `IPMASensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ipma/sensor.py:105:5-23: Class member `IPMASensor.entity_description` overrides parent class `IPMADevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ipp/coordinator.py:28:5-17: Class member `IPPDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ipp/sensor.py:60:9-12: Unexpected keyword argument `key` in function `IPPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ipp/sensor.py:61:9-13: Unexpected keyword argument `name` in function `IPPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ipp/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `IPPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ipp/sensor.py:77:9-12: Unexpected keyword argument `key` in function `IPPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ipp/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `IPPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ipp/sensor.py:80:9-24: Unexpected keyword argument `entity_category` in function `IPPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ipp/sensor.py:81:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IPPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ipp/sensor.py:107:21-24: Unexpected keyword argument `key` in function `IPPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ipp/sensor.py:108:21-25: Unexpected keyword argument `name` in function `IPPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ipp/sensor.py:109:21-36: Unexpected keyword argument `translation_key` in function `IPPSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ipp/sensor.py:134:5-23: Class member `IPPSensor.entity_description` overrides parent class `IPPEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ipp/sensor.py:134:5-23: Class member `IPPSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iqvia/coordinator.py:25:5-17: Class member `IqviaUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iqvia/sensor.py:80:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:81:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:82:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:85:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:86:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:87:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:90:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:91:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:92:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:98:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:99:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:100:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:104:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:105:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:106:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:109:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:110:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:111:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:115:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:116:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:117:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:120:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:121:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:122:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iqvia/sensor.py:177:7-21: Field `entity_description` is declared `EntityDescription` in ancestor `class IQVIAEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/iqvia/sensor.py:222:7-18: Field `entity_description` is declared `EntityDescription` in ancestor `class IQVIAEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/iqvia/sensor.py:250:37-41: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/irish_rail_transport/sensor.py:8:1-50: Could not find import of `pyirishrail.pyirishrail` [missing-import] +ERROR homeassistant/components/irm_kmi/config_flow.py:48:9-31: Class member `IrmKmiConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/irm_kmi/coordinator.py:91:59-61: Argument `ZoneInfo | None` is not assignable to parameter `tz` with type `ZoneInfo` in function `irm_kmi_api.api.IrmKmiApiClientHa.get_current_weather` [bad-argument-type] +ERROR homeassistant/components/irm_kmi/coordinator.py:92:57-59: Argument `ZoneInfo | None` is not assignable to parameter `tz` with type `ZoneInfo` in function `irm_kmi_api.api.IrmKmiApiClientHa.get_daily_forecast` [bad-argument-type] +ERROR homeassistant/components/irm_kmi/coordinator.py:93:59-61: Argument `ZoneInfo | None` is not assignable to parameter `tz` with type `ZoneInfo` in function `irm_kmi_api.api.IrmKmiApiClientHa.get_hourly_forecast` [bad-argument-type] +ERROR homeassistant/components/irm_kmi/coordinator.py:94:21-44: Argument `str | None` is not assignable to parameter `country` with type `str` in function `homeassistant.components.irm_kmi.data.ProcessedCoordinatorData.__init__` [bad-argument-type] +ERROR homeassistant/components/irm_kmi/weather.py:107:16-52: Returned type `list[TypedDict[ExtendedForecast]]` is not assignable to declared return type `list[TypedDict[Forecast]] | None` [bad-return] +ERROR homeassistant/components/irm_kmi/weather.py:119:32-68: `list[TypedDict[ExtendedForecast]]` is not assignable to `list[TypedDict[Forecast]]` [bad-assignment] +ERROR homeassistant/components/iron_os/binary_sensor.py:38:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/binary_sensor.py:39:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/binary_sensor.py:46:7-31: Field `entity_description` is declared `EntityDescription` in ancestor `class IronOSBaseEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/iron_os/button.py:38:9-12: Unexpected keyword argument `key` in function `IronOSButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/button.py:39:9-24: Unexpected keyword argument `translation_key` in function `IronOSButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/button.py:41:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/button.py:42:9-24: Unexpected keyword argument `entity_category` in function `IronOSButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/button.py:45:9-12: Unexpected keyword argument `key` in function `IronOSButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/button.py:46:9-24: Unexpected keyword argument `translation_key` in function `IronOSButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/button.py:48:9-24: Unexpected keyword argument `entity_category` in function `IronOSButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/button.py:70:5-23: Class member `IronOSButtonEntity.entity_description` overrides parent class `IronOSBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iron_os/button.py:70:5-23: Class member `IronOSButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iron_os/coordinator.py:58:5-17: Class member `IronOSBaseCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iron_os/number.py:86:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:87:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:96:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:97:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:100:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:101:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:110:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:111:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:114:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:115:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:124:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:127:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:128:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:135:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:138:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:139:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:146:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:150:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:151:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:158:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:160:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:163:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:164:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:171:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:173:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:176:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:177:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:184:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:185:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:188:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:189:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:196:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:198:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:201:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:202:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:209:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:212:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:213:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:220:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:222:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:225:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:226:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:236:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:238:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:241:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:242:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:252:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:254:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:257:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:258:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:266:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:267:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:273:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:274:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:282:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:284:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:297:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:298:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:308:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:311:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:312:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:322:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:325:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:326:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:334:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:337:9-12: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:338:9-24: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:346:9-24: Unexpected keyword argument `entity_category` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:351:5-8: Unexpected keyword argument `key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:352:5-20: Unexpected keyword argument `translation_key` in function `IronOSNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/number.py:394:5-23: Class member `IronOSNumberEntity.entity_description` overrides parent class `IronOSBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iron_os/number.py:394:5-23: Class member `IronOSNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iron_os/select.py:67:9-12: Unexpected keyword argument `key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:68:9-24: Unexpected keyword argument `translation_key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:73:9-24: Unexpected keyword argument `entity_category` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:74:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:77:9-12: Unexpected keyword argument `key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:78:9-24: Unexpected keyword argument `translation_key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:83:9-24: Unexpected keyword argument `entity_category` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:86:9-12: Unexpected keyword argument `key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:87:9-24: Unexpected keyword argument `translation_key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:92:9-24: Unexpected keyword argument `entity_category` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:93:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:96:9-12: Unexpected keyword argument `key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:97:9-24: Unexpected keyword argument `translation_key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:102:9-24: Unexpected keyword argument `entity_category` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:105:9-12: Unexpected keyword argument `key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:106:9-24: Unexpected keyword argument `translation_key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:111:9-24: Unexpected keyword argument `entity_category` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:112:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:115:9-12: Unexpected keyword argument `key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:116:9-24: Unexpected keyword argument `translation_key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:121:9-24: Unexpected keyword argument `entity_category` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:122:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:125:9-12: Unexpected keyword argument `key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:126:9-24: Unexpected keyword argument `translation_key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:131:9-24: Unexpected keyword argument `entity_category` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:134:9-12: Unexpected keyword argument `key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:135:9-24: Unexpected keyword argument `translation_key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:140:9-24: Unexpected keyword argument `entity_category` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:141:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:146:9-12: Unexpected keyword argument `key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:147:9-24: Unexpected keyword argument `translation_key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:152:9-24: Unexpected keyword argument `entity_category` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:153:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:158:9-12: Unexpected keyword argument `key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:159:9-24: Unexpected keyword argument `translation_key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:164:9-24: Unexpected keyword argument `entity_category` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:165:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:168:9-12: Unexpected keyword argument `key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:169:9-24: Unexpected keyword argument `translation_key` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:174:9-24: Unexpected keyword argument `entity_category` in function `IronOSSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/select.py:202:5-23: Class member `IronOSSelectEntity.entity_description` overrides parent class `IronOSBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iron_os/select.py:202:5-23: Class member `IronOSSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iron_os/sensor.py:66:9-12: Unexpected keyword argument `key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:74:9-12: Unexpected keyword argument `key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:80:9-24: Unexpected keyword argument `entity_category` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:83:9-12: Unexpected keyword argument `key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:84:9-24: Unexpected keyword argument `translation_key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:91:9-12: Unexpected keyword argument `key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:98:9-24: Unexpected keyword argument `entity_category` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:101:9-12: Unexpected keyword argument `key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:108:9-24: Unexpected keyword argument `entity_category` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:111:9-12: Unexpected keyword argument `key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:115:9-24: Unexpected keyword argument `entity_category` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:119:9-12: Unexpected keyword argument `key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:120:9-24: Unexpected keyword argument `translation_key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:125:9-24: Unexpected keyword argument `entity_category` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:128:9-12: Unexpected keyword argument `key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:129:9-24: Unexpected keyword argument `translation_key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:134:9-24: Unexpected keyword argument `entity_category` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:137:9-12: Unexpected keyword argument `key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:138:9-24: Unexpected keyword argument `translation_key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:142:9-24: Unexpected keyword argument `entity_category` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:145:9-12: Unexpected keyword argument `key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:146:9-24: Unexpected keyword argument `translation_key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:152:9-24: Unexpected keyword argument `entity_category` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:155:9-12: Unexpected keyword argument `key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:156:9-24: Unexpected keyword argument `translation_key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:158:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:160:9-24: Unexpected keyword argument `entity_category` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:163:9-12: Unexpected keyword argument `key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:164:9-24: Unexpected keyword argument `translation_key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:174:9-12: Unexpected keyword argument `key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:175:9-24: Unexpected keyword argument `translation_key` in function `IronOSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/sensor.py:201:5-23: Class member `IronOSSensorEntity.entity_description` overrides parent class `IronOSBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iron_os/sensor.py:201:5-23: Class member `IronOSSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iron_os/switch.py:48:9-12: Unexpected keyword argument `key` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:49:9-24: Unexpected keyword argument `translation_key` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:52:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:53:9-24: Unexpected keyword argument `entity_category` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:56:9-12: Unexpected keyword argument `key` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:57:9-24: Unexpected keyword argument `translation_key` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:60:9-24: Unexpected keyword argument `entity_category` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:63:9-12: Unexpected keyword argument `key` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:64:9-24: Unexpected keyword argument `translation_key` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:67:9-24: Unexpected keyword argument `entity_category` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:70:9-12: Unexpected keyword argument `key` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:71:9-24: Unexpected keyword argument `translation_key` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:74:9-24: Unexpected keyword argument `entity_category` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:77:9-12: Unexpected keyword argument `key` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:78:9-24: Unexpected keyword argument `translation_key` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:81:9-24: Unexpected keyword argument `entity_category` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:84:9-12: Unexpected keyword argument `key` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:85:9-24: Unexpected keyword argument `translation_key` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:88:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:89:9-24: Unexpected keyword argument `entity_category` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:92:9-12: Unexpected keyword argument `key` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:93:9-24: Unexpected keyword argument `translation_key` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:96:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:97:9-24: Unexpected keyword argument `entity_category` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:100:9-12: Unexpected keyword argument `key` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:101:9-24: Unexpected keyword argument `translation_key` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:104:9-24: Unexpected keyword argument `entity_category` in function `IronOSSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/switch.py:127:5-23: Class member `IronOSSwitchEntity.entity_description` overrides parent class `IronOSBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iron_os/switch.py:127:5-23: Class member `IronOSSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iron_os/update.py:23:5-8: Unexpected keyword argument `key` in function `homeassistant.components.update.UpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iron_os/update.py:42:7-19: Field `entity_description` is declared `EntityDescription` in ancestor `class IronOSBaseEntity: ... +`, which is not assignable to the type `UpdateEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/iron_os/update.py:45:5-29: Class member `IronOSUpdate._attr_supported_features` overrides parent class `IronOSBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iron_os/update.py:45:5-29: Class member `IronOSUpdate._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iskra/config_flow.py:147:37-48: `device_info` may be uninitialized [unbound-name] +ERROR homeassistant/components/iskra/config_flow.py:183:33-44: `device_info` may be uninitialized [unbound-name] +ERROR homeassistant/components/iskra/config_flow.py:219:33-44: `device_info` may be uninitialized [unbound-name] +ERROR homeassistant/components/iskra/coordinator.py:28:5-17: Class member `IskraDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iskra/sensor.py:60:9-12: Unexpected keyword argument `key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:65:35-60: Object of class `NoneType` has no attribute `total` [missing-attribute] +ERROR homeassistant/components/iskra/sensor.py:68:9-12: Unexpected keyword argument `key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:73:35-60: Object of class `NoneType` has no attribute `total` [missing-attribute] +ERROR homeassistant/components/iskra/sensor.py:76:9-12: Unexpected keyword argument `key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:81:35-60: Object of class `NoneType` has no attribute `total` [missing-attribute] +ERROR homeassistant/components/iskra/sensor.py:84:9-12: Unexpected keyword argument `key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:89:35-61: Object of class `NoneType` has no attribute `phases` [missing-attribute] +ERROR homeassistant/components/iskra/sensor.py:92:9-12: Unexpected keyword argument `key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:97:35-61: Object of class `NoneType` has no attribute `phases` [missing-attribute] +ERROR homeassistant/components/iskra/sensor.py:100:9-12: Unexpected keyword argument `key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:101:9-24: Unexpected keyword argument `translation_key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:105:35-61: Object of class `NoneType` has no attribute `phases` [missing-attribute] +ERROR homeassistant/components/iskra/sensor.py:109:9-12: Unexpected keyword argument `key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:110:9-24: Unexpected keyword argument `translation_key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:114:35-61: Object of class `NoneType` has no attribute `phases` [missing-attribute] +ERROR homeassistant/components/iskra/sensor.py:117:9-12: Unexpected keyword argument `key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:118:9-24: Unexpected keyword argument `translation_key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:122:35-61: Object of class `NoneType` has no attribute `phases` [missing-attribute] +ERROR homeassistant/components/iskra/sensor.py:125:9-12: Unexpected keyword argument `key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:130:35-61: Object of class `NoneType` has no attribute `phases` [missing-attribute] +ERROR homeassistant/components/iskra/sensor.py:134:9-12: Unexpected keyword argument `key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:135:9-24: Unexpected keyword argument `translation_key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:139:35-61: Object of class `NoneType` has no attribute `phases` [missing-attribute] +ERROR homeassistant/components/iskra/sensor.py:142:9-12: Unexpected keyword argument `key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:143:9-24: Unexpected keyword argument `translation_key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:147:35-61: Object of class `NoneType` has no attribute `phases` [missing-attribute] +ERROR homeassistant/components/iskra/sensor.py:150:9-12: Unexpected keyword argument `key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:151:9-24: Unexpected keyword argument `translation_key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:155:35-61: Object of class `NoneType` has no attribute `phases` [missing-attribute] +ERROR homeassistant/components/iskra/sensor.py:159:9-12: Unexpected keyword argument `key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:164:35-64: Object of class `NoneType` has no attribute `frequency` [missing-attribute] +ERROR homeassistant/components/iskra/sensor.py:180:13-16: Unexpected keyword argument `key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:181:13-28: Unexpected keyword argument `translation_key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:183:39-69: Object of class `NoneType` has no attribute `non_resettable` [missing-attribute] +ERROR homeassistant/components/iskra/sensor.py:188:13-16: Unexpected keyword argument `key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:189:13-28: Unexpected keyword argument `translation_key` in function `IskraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/iskra/sensor.py:191:39-65: Object of class `NoneType` has no attribute `resettable` [missing-attribute] +ERROR homeassistant/components/iskra/sensor.py:250:45-75: Object of class `NoneType` has no attribute `non_resettable` [missing-attribute] +ERROR homeassistant/components/iskra/sensor.py:256:45-71: Object of class `NoneType` has no attribute `resettable` [missing-attribute] +ERROR homeassistant/components/iskra/sensor.py:268:5-23: Class member `IskraSensor.entity_description` overrides parent class `IskraEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iskra/sensor.py:268:5-23: Class member `IskraSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/islamic_prayer_times/__init__.py:71:47-56: `unique_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/islamic_prayer_times/__init__.py:89:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/islamic_prayer_times/config_flow.py:51:9-31: Class member `IslamicPrayerFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/islamic_prayer_times/coordinator.py:38:5-17: Class member `IslamicPrayerDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] + WARN homeassistant/components/islamic_prayer_times/coordinator.py:90:20-63: Redundant cast: `dict[str, Any]` is the same type as `dict[str, Any]` [redundant-cast] +ERROR homeassistant/components/islamic_prayer_times/sensor.py:21:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/islamic_prayer_times/sensor.py:22:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/islamic_prayer_times/sensor.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/islamic_prayer_times/sensor.py:26:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/islamic_prayer_times/sensor.py:29:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/islamic_prayer_times/sensor.py:30:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/islamic_prayer_times/sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/islamic_prayer_times/sensor.py:34:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/islamic_prayer_times/sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/islamic_prayer_times/sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/islamic_prayer_times/sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/islamic_prayer_times/sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/islamic_prayer_times/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/islamic_prayer_times/sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/islamic_prayer_times/sensor.py:70:5-23: Class member `IslamicPrayerTimeSensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/islamic_prayer_times/sensor.py:80:14-32: Class member `IslamicPrayerTimeSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/israel_rail/__init__.py:30:42-84: Unpacked argument `tuple[Any, Any]` is not assignable to parameter `*args` with type `tuple[Unknown, Unknown, Unknown | None, Unknown | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/israel_rail/config_flow.py:40:55-44:18: Unpacked argument `tuple[Any, Any]` is not assignable to parameter `*args` with type `tuple[Unknown, Unknown, Unknown | None, Unknown | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/israel_rail/coordinator.py:47:5-17: Class member `IsraelRailDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/israel_rail/sensor.py:44:13-16: Unexpected keyword argument `key` in function `IsraelRailSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/israel_rail/sensor.py:45:13-28: Unexpected keyword argument `translation_key` in function `IsraelRailSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/israel_rail/sensor.py:56:9-12: Unexpected keyword argument `key` in function `IsraelRailSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/israel_rail/sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `IsraelRailSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/israel_rail/sensor.py:61:9-12: Unexpected keyword argument `key` in function `IsraelRailSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/israel_rail/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `IsraelRailSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/israel_rail/sensor.py:66:9-12: Unexpected keyword argument `key` in function `IsraelRailSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/israel_rail/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `IsraelRailSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/israel_rail/sensor.py:97:5-23: Class member `IsraelRailEntitySensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/israel_rail/sensor.py:97:5-23: Class member `IsraelRailEntitySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/iss/__init__.py:77:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/iss/config_flow.py:26:9-31: Class member `ISSConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ista_ecotrend/__init__.py:26:9-16: Argument `Logger` is not assignable to parameter `totp` with type `str | None` in function `pyecotrend_ista.pyecotrend_ista.PyEcotrendIsta.__init__` [bad-argument-type] +ERROR homeassistant/components/ista_ecotrend/config_flow.py:54:17-24: Argument `Logger` is not assignable to parameter `totp` with type `str | None` in function `pyecotrend_ista.pyecotrend_ista.PyEcotrendIsta.__init__` [bad-argument-type] +ERROR homeassistant/components/ista_ecotrend/config_flow.py:57:56-66: Argument `BoundMethod[PyEcotrendIsta, (self: PyEcotrendIsta, **kwargs: Unknown) -> str | None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ista_ecotrend/config_flow.py:105:17-24: Argument `Logger` is not assignable to parameter `totp` with type `str | None` in function `pyecotrend_ista.pyecotrend_ista.PyEcotrendIsta.__init__` [bad-argument-type] +ERROR homeassistant/components/ista_ecotrend/config_flow.py:117:21-42: Argument `() -> set[str]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ista_ecotrend/coordinator.py:27:5-17: Class member `IstaCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ista_ecotrend/coordinator.py:47:67-83: Argument `BoundMethod[Self@IstaCoordinator, (self: Self@IstaCoordinator) -> dict[str, Any]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ista_ecotrend/coordinator.py:66:59-84: Argument `BoundMethod[Self@IstaCoordinator, (self: Self@IstaCoordinator) -> dict[str, Any]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ista_ecotrend/sensor.py:74:9-12: Unexpected keyword argument `key` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:81:9-12: Unexpected keyword argument `key` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:92:9-12: Unexpected keyword argument `key` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:98:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:103:9-12: Unexpected keyword argument `key` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:104:9-24: Unexpected keyword argument `translation_key` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:113:9-12: Unexpected keyword argument `key` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:124:9-12: Unexpected keyword argument `key` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:130:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:135:9-12: Unexpected keyword argument `key` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:136:9-24: Unexpected keyword argument `translation_key` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:141:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:146:9-12: Unexpected keyword argument `key` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:147:9-24: Unexpected keyword argument `translation_key` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:152:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IstaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ista_ecotrend/sensor.py:178:5-23: Class member `IstaSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ista_ecotrend/sensor.py:178:5-23: Class member `IstaSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ista_ecotrend/sensor.py:180:5-17: Class member `IstaSensor.device_entry` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ista_ecotrend/sensor.py:180:5-17: Class member `IstaSensor.device_entry` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ista_ecotrend/sensor.py:273:47-61: `statistics_sum` is uninitialized [unbound-name] +ERROR homeassistant/components/isy994/__init__.py:103:17-28: Argument `Any | None` is not assignable to parameter `tls_ver` with type `float` in function `pyisy.isy.ISY.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/__init__.py:134:33-42: Argument `Nodes | None` is not assignable to parameter `nodes` with type `Nodes` in function `homeassistant.components.isy994.helpers._categorize_nodes` [bad-argument-type] +ERROR homeassistant/components/isy994/__init__.py:135:36-48: Argument `Programs | None` is not assignable to parameter `programs` with type `Programs` in function `homeassistant.components.isy994.helpers._categorize_programs` [bad-argument-type] +ERROR homeassistant/components/isy994/__init__.py:137:8-30: Object of class `NoneType` has no attribute `children` [missing-attribute] +ERROR homeassistant/components/isy994/__init__.py:142:30-52: Type `object` is not iterable [not-iterable] +ERROR homeassistant/components/isy994/__init__.py:143:28-48: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/isy994/__init__.py:143:28-53: Cannot index into `Variable` [bad-index] +ERROR homeassistant/components/isy994/__init__.py:146:11-31: Object of class `NoneType` has no attribute `nobjs` [missing-attribute] +ERROR homeassistant/components/isy994/__init__.py:150:25-45: Type `object` is not iterable [not-iterable] +ERROR homeassistant/components/isy994/__init__.py:169:9-27: Object of class `NoneType` has no attribute `stop` [missing-attribute] +ERROR homeassistant/components/isy994/__init__.py:172:5-24: Object of class `NoneType` has no attribute `start` [missing-attribute] +ERROR homeassistant/components/isy994/__init__.py:222:5-43: Object of class `NoneType` has no attribute `stop` [missing-attribute] +ERROR homeassistant/components/isy994/binary_sensor.py:87:34-53: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/isy994/binary_sensor.py:127:53-77: Object of class `NoneType` has no attribute `address` [missing-attribute] +ERROR homeassistant/components/isy994/binary_sensor.py:146:35-48: `parent_entity` may be uninitialized [unbound-name] +ERROR homeassistant/components/isy994/binary_sensor.py:147:17-30: `parent_entity` may be uninitialized [unbound-name] +ERROR homeassistant/components/isy994/binary_sensor.py:149:35-48: `parent_entity` may be uninitialized [unbound-name] +ERROR homeassistant/components/isy994/binary_sensor.py:153:27-40: `parent_entity` may be uninitialized [unbound-name] +ERROR homeassistant/components/isy994/binary_sensor.py:155:17-30: `parent_entity` may be uninitialized [unbound-name] +ERROR homeassistant/components/isy994/binary_sensor.py:168:31-44: `parent_entity` may be uninitialized [unbound-name] +ERROR homeassistant/components/isy994/binary_sensor.py:169:37-50: `parent_entity` may be uninitialized [unbound-name] +ERROR homeassistant/components/isy994/binary_sensor.py:221:23-32: Object of class `Group` has no attribute `type` [missing-attribute] +ERROR homeassistant/components/isy994/binary_sensor.py:228:27-43: Object of class `Group` has no attribute `zwave_props` [missing-attribute] +ERROR homeassistant/components/isy994/binary_sensor.py:230:16-32: Object of class `Group` has no attribute `zwave_props` [missing-attribute] +ERROR homeassistant/components/isy994/binary_sensor.py:254:14-32: Class member `ISYBinarySensorEntity._attr_device_class` overrides parent class `ISYNodeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/isy994/binary_sensor.py:295:9-34: Object of class `Program` has no attribute `control_events` +Object of class `Variable` has no attribute `control_events` [missing-attribute] +ERROR homeassistant/components/isy994/binary_sensor.py:417:5-23: Class member `ISYBinarySensorHeartbeat._attr_device_class` overrides parent class `ISYNodeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/isy994/binary_sensor.py:417:5-23: Class member `ISYBinarySensorHeartbeat._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/isy994/binary_sensor.py:448:9-34: Object of class `Program` has no attribute `control_events` +Object of class `Variable` has no attribute `control_events` [missing-attribute] +ERROR homeassistant/components/isy994/button.py:123:30-48: Object of class `ISY` has no attribute `address` [missing-attribute] +ERROR homeassistant/components/isy994/button.py:142:15-31: Object of class `NetworkCommand` has no attribute `query` [missing-attribute] +ERROR homeassistant/components/isy994/button.py:150:15-30: Object of class `ISY` has no attribute `beep` +Object of class `NetworkCommand` has no attribute `beep` [missing-attribute] +ERROR homeassistant/components/isy994/button.py:160:15-29: Object of class `ISY` has no attribute `run` +Object of class `Node` has no attribute `run` [missing-attribute] +ERROR homeassistant/components/isy994/climate.py:72:29-33: Argument `Group | Node` is not assignable to parameter `node` with type `Node` in function `ISYThermostatEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/climate.py:72:46-65: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/isy994/climate.py:82:5-29: Class member `ISYThermostatEntity._attr_supported_features` overrides parent class `ISYNodeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/isy994/climate.py:95:21-35: Object of class `Program` has no attribute `uom` +Object of class `Variable` has no attribute `uom` [missing-attribute] +ERROR homeassistant/components/isy994/climate.py:97:25-39: Object of class `Program` has no attribute `uom` +Object of class `Variable` has no attribute `uom` [missing-attribute] +ERROR homeassistant/components/isy994/climate.py:102:24-49: Object of class `Program` has no attribute `aux_properties` +Object of class `Variable` has no attribute `aux_properties` [missing-attribute] +ERROR homeassistant/components/isy994/climate.py:113:29-54: Object of class `Program` has no attribute `aux_properties` +Object of class `Variable` has no attribute `aux_properties` [missing-attribute] +ERROR homeassistant/components/isy994/climate.py:122:30-55: Object of class `Program` has no attribute `aux_properties` +Object of class `Variable` has no attribute `aux_properties` [missing-attribute] +ERROR homeassistant/components/isy994/climate.py:142:23-48: Object of class `Program` has no attribute `aux_properties` +Object of class `Variable` has no attribute `aux_properties` [missing-attribute] +ERROR homeassistant/components/isy994/climate.py:153:13-30: Argument `((self: Node, value: float) -> float) | ((self: Program, value: int) -> int) | object | None` is not assignable to parameter `value` with type `float | None` in function `homeassistant.components.isy994.helpers.convert_isy_value_to_hass` [bad-argument-type] +ERROR homeassistant/components/isy994/climate.py:153:43-58: Object of class `Program` has no attribute `prec` [missing-attribute] +ERROR homeassistant/components/isy994/climate.py:168:18-43: Object of class `Program` has no attribute `aux_properties` +Object of class `Variable` has no attribute `aux_properties` [missing-attribute] +ERROR homeassistant/components/isy994/climate.py:176:18-43: Object of class `Program` has no attribute `aux_properties` +Object of class `Variable` has no attribute `aux_properties` [missing-attribute] +ERROR homeassistant/components/isy994/climate.py:184:20-45: Object of class `Program` has no attribute `aux_properties` +Object of class `Variable` has no attribute `aux_properties` [missing-attribute] +ERROR homeassistant/components/isy994/climate.py:200:19-55: Object of class `Program` has no attribute `set_climate_setpoint_heat` +Object of class `Variable` has no attribute `set_climate_setpoint_heat` [missing-attribute] +ERROR homeassistant/components/isy994/climate.py:202:19-55: Object of class `Program` has no attribute `set_climate_setpoint_cool` +Object of class `Variable` has no attribute `set_climate_setpoint_cool` [missing-attribute] +ERROR homeassistant/components/isy994/climate.py:208:15-38: Object of class `Program` has no attribute `set_fan_mode` +Object of class `Variable` has no attribute `set_fan_mode` [missing-attribute] +ERROR homeassistant/components/isy994/climate.py:214:15-42: Object of class `Program` has no attribute `set_climate_mode` +Object of class `Variable` has no attribute `set_climate_mode` [missing-attribute] +ERROR homeassistant/components/isy994/config_flow.py:105:17-28: Argument `Any | None` is not assignable to parameter `tls_ver` with type `float` in function `pyisy.connection.Connection.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/config_flow.py:144:9-31: Class member `Isy994ConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/isy994/cover.py:32:41-60: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/isy994/cover.py:47:5-29: Class member `ISYCoverEntity._attr_supported_features` overrides parent class `ISYNodeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/isy994/cover.py:58:12-26: Object of class `Program` has no attribute `uom` +Object of class `Variable` has no attribute `uom` [missing-attribute] +ERROR homeassistant/components/isy994/cover.py:60:19-59: No matching overload found for function `int.__new__` called with arguments: (type[int], Literal[0, 100] | ((self: Node, value: float) -> float) | ((self: Program, value: int) -> int) | object | None) [no-matching-overload] +ERROR homeassistant/components/isy994/cover.py:71:22-40: Object of class `Program` has no attribute `turn_on` +Object of class `Variable` has no attribute `turn_on` [missing-attribute] +ERROR homeassistant/components/isy994/cover.py:76:22-41: Object of class `Program` has no attribute `turn_off` +Object of class `Variable` has no attribute `turn_off` [missing-attribute] +ERROR homeassistant/components/isy994/cover.py:82:12-26: Object of class `Program` has no attribute `uom` +Object of class `Variable` has no attribute `uom` [missing-attribute] +ERROR homeassistant/components/isy994/cover.py:84:22-40: Object of class `Program` has no attribute `turn_on` +Object of class `Variable` has no attribute `turn_on` [missing-attribute] +ERROR homeassistant/components/isy994/entity.py:46:22-26: `Group | Node | Program | Variable` is not assignable to attribute `_node` with type `Node | Program | Variable` [bad-assignment] +ERROR homeassistant/components/isy994/entity.py:121:32-57: Object of class `Program` has no attribute `aux_properties` +Object of class `Variable` has no attribute `aux_properties` [missing-attribute] +ERROR homeassistant/components/isy994/entity.py:160:15-45: Object of class `Program` has no attribute `get_zwave_parameter` +Object of class `Variable` has no attribute `get_zwave_parameter` [missing-attribute] +ERROR homeassistant/components/isy994/entity.py:171:15-45: Object of class `Program` has no attribute `set_zwave_parameter` +Object of class `Variable` has no attribute `set_zwave_parameter` [missing-attribute] +ERROR homeassistant/components/isy994/entity.py:172:15-45: Object of class `Program` has no attribute `get_zwave_parameter` +Object of class `Variable` has no attribute `get_zwave_parameter` [missing-attribute] +ERROR homeassistant/components/isy994/entity.py:176:15-32: Object of class `Program` has no attribute `rename` +Object of class `Variable` has no attribute `rename` [missing-attribute] +ERROR homeassistant/components/isy994/entity.py:184:5-10: Class member `ISYProgramEntity._node` overrides parent class `ISYEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/isy994/entity.py:186:71-75: Default `None` is not assignable to parameter `actions` with type `Program` [bad-function-definition] +ERROR homeassistant/components/isy994/entity.py:199:49-76: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/isy994/entity.py:201:44-66: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/isy994/entity.py:203:47-72: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/isy994/entity.py:204:32-54: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/isy994/entity.py:205:32-54: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/isy994/entity.py:210:44-68: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/isy994/entity.py:212:39-58: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/isy994/entity.py:214:42-64: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/isy994/entity.py:242:47-51: `None` is not assignable to attribute `_change_handler` with type `EventListener` [bad-assignment] +ERROR homeassistant/components/isy994/entity.py:243:53-57: `None` is not assignable to attribute `_availability_handler` with type `EventListener` [bad-assignment] +ERROR homeassistant/components/isy994/entity.py:252:38-72: Object of class `NoneType` has no attribute `status_events` [missing-attribute] + WARN homeassistant/components/isy994/entity.py:269:20-46: Redundant cast: `bool` is the same type as `bool` [redundant-cast] +ERROR homeassistant/components/isy994/fan.py:36:39-58: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/isy994/fan.py:51:5-29: Class member `ISYFanEntity._attr_supported_features` overrides parent class `ISYNodeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/isy994/fan.py:62:56-73: Argument `((self: Node, value: float) -> float) | ((self: Program, value: int) -> int) | object | None` is not assignable to parameter `value` with type `float` in function `homeassistant.util.percentage.ranged_value_to_percentage` [bad-argument-type] +ERROR homeassistant/components/isy994/fan.py:81:19-38: Object of class `Program` has no attribute `turn_off` +Object of class `Variable` has no attribute `turn_off` [missing-attribute] +ERROR homeassistant/components/isy994/fan.py:86:15-33: Object of class `Program` has no attribute `turn_on` +Object of class `Variable` has no attribute `turn_on` [missing-attribute] +ERROR homeassistant/components/isy994/fan.py:99:15-34: Object of class `Program` has no attribute `turn_off` +Object of class `Variable` has no attribute `turn_off` [missing-attribute] +ERROR homeassistant/components/isy994/fan.py:110:56-73: Argument `(self: Program, value: int) -> int` is not assignable to parameter `value` with type `float` in function `homeassistant.util.percentage.ranged_value_to_percentage` [bad-argument-type] +ERROR homeassistant/components/isy994/helpers.py:287:26-42: Cannot index into `dict[str, str]` [bad-index] +ERROR homeassistant/components/isy994/helpers.py:298:22-41: Object of class `NoneType` has no attribute `title` [missing-attribute] +ERROR homeassistant/components/isy994/helpers.py:336:9-19: Type `Node` is not iterable [not-iterable] +ERROR homeassistant/components/isy994/helpers.py:336:9-19: Type `Nodes` is not iterable [not-iterable] +ERROR homeassistant/components/isy994/helpers.py:336:23-28: Type `Nodes` is not iterable [not-iterable] +ERROR homeassistant/components/isy994/helpers.py:337:19-44: `in` is not supported between `str` and `Node` [not-iterable] +ERROR homeassistant/components/isy994/helpers.py:337:19-44: `in` is not supported between `str` and `Nodes` [unsupported-operation] +ERROR homeassistant/components/isy994/helpers.py:344:30-42: Object of class `Nodes` has no attribute `address` [missing-attribute] +ERROR homeassistant/components/isy994/helpers.py:344:68-72: Argument `Node | Nodes | Unknown` is not assignable to parameter `node` with type `Node` in function `_generate_device_info` [bad-argument-type] +ERROR homeassistant/components/isy994/helpers.py:345:57-61: Argument `Node | Nodes | Unknown` is not assignable to parameter `object` with type `Node` in function `list.append` [bad-argument-type] +ERROR homeassistant/components/isy994/helpers.py:347:61-85: Argument `tuple[Node | Nodes | Unknown, Literal['ERR']]` is not assignable to parameter `object` with type `tuple[Node, str]` in function `list.append` [bad-argument-type] +ERROR homeassistant/components/isy994/helpers.py:350:63-82: Object of class `Nodes` has no attribute `aux_properties` [missing-attribute] +ERROR homeassistant/components/isy994/helpers.py:353:62-77: Argument `tuple[Node | Nodes | Unknown, str]` is not assignable to parameter `object` with type `tuple[Node, str]` in function `list.append` [bad-argument-type] +ERROR homeassistant/components/isy994/helpers.py:355:65-84: Argument `tuple[Node | Nodes | Unknown, Literal['enabled']]` is not assignable to parameter `object` with type `tuple[Node, str]` in function `list.append` [bad-argument-type] +ERROR homeassistant/components/isy994/helpers.py:356:51-55: Argument `Node | Nodes | Unknown` is not assignable to parameter `node` with type `Node` in function `_add_backlight_if_supported` [bad-argument-type] +ERROR homeassistant/components/isy994/helpers.py:358:12-25: Object of class `Nodes` has no attribute `protocol` [missing-attribute] +ERROR homeassistant/components/isy994/helpers.py:359:55-59: Argument `Node | Nodes | Unknown` is not assignable to parameter `object` with type `Group | Node` in function `list.append` [bad-argument-type] +ERROR homeassistant/components/isy994/helpers.py:363:28-47: Object of class `Nodes` has no attribute `aux_properties` [missing-attribute] +ERROR homeassistant/components/isy994/helpers.py:366:65-80: Argument `tuple[Node | Nodes | Unknown, Unknown]` is not assignable to parameter `object` with type `tuple[Node, str]` in function `list.append` [bad-argument-type] +ERROR homeassistant/components/isy994/helpers.py:368:12-37: `in` is not supported between `str` and `Node` [not-iterable] +ERROR homeassistant/components/isy994/helpers.py:368:12-37: `in` is not supported between `str` and `Nodes` [unsupported-operation] +ERROR homeassistant/components/isy994/helpers.py:371:53-57: Argument `Node | Nodes | Unknown` is not assignable to parameter `node` with type `Group | Node` in function `_is_sensor_a_binary_sensor` [bad-argument-type] +ERROR homeassistant/components/isy994/helpers.py:373:52-56: Argument `Node | Nodes | Unknown` is not assignable to parameter `object` with type `Group | Node` in function `list.append` [bad-argument-type] +ERROR homeassistant/components/isy994/helpers.py:379:42-46: Argument `Node | Nodes | Unknown` is not assignable to parameter `node` with type `Group | Node` in function `_check_for_node_def` [bad-argument-type] +ERROR homeassistant/components/isy994/helpers.py:381:46-50: Argument `Node | Nodes | Unknown` is not assignable to parameter `node` with type `Group | Node` in function `_check_for_insteon_type` [bad-argument-type] +ERROR homeassistant/components/isy994/helpers.py:383:43-47: Argument `Node | Nodes | Unknown` is not assignable to parameter `node` with type `Group | Node` in function `_check_for_zwave_cat` [bad-argument-type] +ERROR homeassistant/components/isy994/helpers.py:385:40-44: Argument `Node | Nodes | Unknown` is not assignable to parameter `node` with type `Group | Node` in function `_check_for_uom_id` [bad-argument-type] +ERROR homeassistant/components/isy994/helpers.py:387:47-51: Argument `Node | Nodes | Unknown` is not assignable to parameter `node` with type `Group | Node` in function `_check_for_states_in_uom` [bad-argument-type] +ERROR homeassistant/components/isy994/helpers.py:391:48-52: Argument `Node | Nodes | Unknown` is not assignable to parameter `object` with type `Group | Node` in function `list.append` [bad-argument-type] +ERROR homeassistant/components/isy994/helpers.py:401:34-49: Object of class `Folder` has no attribute `children` +Object of class `Program` has no attribute `children` [missing-attribute] +ERROR homeassistant/components/isy994/helpers.py:404:39-54: Cannot index into `Folder` [bad-index] +ERROR homeassistant/components/isy994/helpers.py:404:39-54: Cannot index into `Program` [bad-index] +ERROR homeassistant/components/isy994/helpers.py:404:39-54: `Folder | Program | Unknown | None` is not assignable to `Programs` [bad-assignment] +ERROR homeassistant/components/isy994/helpers.py:407:30-45: Object of class `Programs` has no attribute `protocol` [missing-attribute] +ERROR homeassistant/components/isy994/helpers.py:417:35-51: Object of class `Programs` has no attribute `protocol` [missing-attribute] +ERROR homeassistant/components/isy994/helpers.py:429:48-54: Argument `tuple[str, Folder | Program | Programs, Folder | Program | Programs | None]` is not assignable to parameter `object` with type `tuple[str, Program, Program]` in function `list.append` [bad-argument-type] +ERROR homeassistant/components/isy994/light.py:37:24-28: Argument `Group | Node` is not assignable to parameter `node` with type `Node` in function `ISYLightEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/light.py:37:62-81: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/isy994/light.py:64:19-38: No matching overload found for function `int.__new__` called with arguments: (type[int], ((self: Node, value: float) -> float) | ((self: Program, value: int) -> int) | object | None) [no-matching-overload] +ERROR homeassistant/components/isy994/light.py:72:12-26: Object of class `Program` has no attribute `uom` +Object of class `Variable` has no attribute `uom` [missing-attribute] +ERROR homeassistant/components/isy994/light.py:74:19-38: No matching overload found for function `int.__new__` called with arguments: (type[int], ((self: Node, value: float) -> float) | ((self: Program, value: int) -> int) | object | None) [no-matching-overload] +ERROR homeassistant/components/isy994/light.py:79:22-41: Object of class `Program` has no attribute `turn_off` +Object of class `Variable` has no attribute `turn_off` [missing-attribute] +ERROR homeassistant/components/isy994/light.py:86:37-54: `((self: Node, value: float) -> float) | ((self: Program, value: int) -> int) | object | None` is not assignable to attribute `_last_brightness` with type `int | None` [bad-assignment] +ERROR homeassistant/components/isy994/light.py:87:16-30: Object of class `Program` has no attribute `uom` +Object of class `Variable` has no attribute `uom` [missing-attribute] +ERROR homeassistant/components/isy994/light.py:88:47-72: `*` is not supported between `(self: Node, value: float) -> float` and `float` [unsupported-operation] +ERROR homeassistant/components/isy994/light.py:88:47-72: `*` is not supported between `(self: Program, value: int) -> int` and `float` [unsupported-operation] +ERROR homeassistant/components/isy994/light.py:88:47-72: `*` is not supported between `object` and `float` [unsupported-operation] +ERROR homeassistant/components/isy994/light.py:88:47-72: `*` is not supported between `None` and `float` [unsupported-operation] +ERROR homeassistant/components/isy994/light.py:90:41-58: `((self: Node, value: float) -> float) | ((self: Program, value: int) -> int) | object | None` is not assignable to attribute `_last_brightness` with type `int | None` [bad-assignment] +ERROR homeassistant/components/isy994/light.py:98:39-53: Object of class `Program` has no attribute `uom` +Object of class `Variable` has no attribute `uom` [missing-attribute] +ERROR homeassistant/components/isy994/light.py:100:22-40: Object of class `Program` has no attribute `turn_on` +Object of class `Variable` has no attribute `turn_on` [missing-attribute] +ERROR homeassistant/components/isy994/lock.py:56:40-59: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/isy994/lock.py:77:34-53: No matching overload found for function `dict.get` called with arguments: (((self: Node, value: float) -> float) | ((self: Program, value: int) -> int) | object | None) [no-matching-overload] +ERROR homeassistant/components/isy994/lock.py:81:22-44: Object of class `Program` has no attribute `secure_lock` +Object of class `Variable` has no attribute `secure_lock` [missing-attribute] +ERROR homeassistant/components/isy994/lock.py:86:22-46: Object of class `Program` has no attribute `secure_unlock` +Object of class `Variable` has no attribute `secure_unlock` [missing-attribute] +ERROR homeassistant/components/isy994/lock.py:91:22-52: Object of class `Program` has no attribute `set_zwave_lock_code` +Object of class `Variable` has no attribute `set_zwave_lock_code` [missing-attribute] +ERROR homeassistant/components/isy994/lock.py:98:22-55: Object of class `Program` has no attribute `delete_zwave_lock_code` +Object of class `Variable` has no attribute `delete_zwave_lock_code` [missing-attribute] + WARN homeassistant/components/isy994/models.py:57:20-41: Redundant cast: `str` is the same type as `str` [redundant-cast] +ERROR homeassistant/components/isy994/number.py:55:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/isy994/number.py:57:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/isy994/number.py:63:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/isy994/number.py:65:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/isy994/number.py:91:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/isy994/number.py:92:13-17: Unexpected keyword argument `name` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/isy994/number.py:93:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/isy994/number.py:130:43-62: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/isy994/number.py:133:54-72: Unpacked keyword argument `Node | NumberEntityDescription | str` is not assignable to parameter `node` with type `Node` in function `ISYBacklightNumberEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/number.py:133:54-72: Unpacked keyword argument `Node | NumberEntityDescription | str` is not assignable to parameter `control` with type `str` in function `ISYBacklightNumberEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/number.py:133:54-72: Unpacked keyword argument `Node | NumberEntityDescription | str` is not assignable to parameter `unique_id` with type `str` in function `ISYBacklightNumberEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/number.py:133:54-72: Unpacked keyword argument `Node | NumberEntityDescription | str` is not assignable to parameter `description` with type `NumberEntityDescription` in function `ISYBacklightNumberEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/number.py:133:54-72: Unpacked keyword argument `Node | NumberEntityDescription | str` is not assignable to parameter `device_info` with type `TypedDict[DeviceInfo] | None` in function `ISYBacklightNumberEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/number.py:135:51-69: Unpacked keyword argument `Node | NumberEntityDescription | str` is not assignable to parameter `node` with type `Node` in function `homeassistant.components.isy994.entity.ISYAuxControlEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/number.py:135:51-69: Unpacked keyword argument `Node | NumberEntityDescription | str` is not assignable to parameter `control` with type `str` in function `homeassistant.components.isy994.entity.ISYAuxControlEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/number.py:135:51-69: Unpacked keyword argument `Node | NumberEntityDescription | str` is not assignable to parameter `unique_id` with type `str` in function `homeassistant.components.isy994.entity.ISYAuxControlEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/number.py:135:51-69: Unpacked keyword argument `Node | NumberEntityDescription | str` is not assignable to parameter `description` with type `EntityDescription` in function `homeassistant.components.isy994.entity.ISYAuxControlEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/number.py:135:51-69: Unpacked keyword argument `Node | NumberEntityDescription | str` is not assignable to parameter `device_info` with type `TypedDict[DeviceInfo] | None` in function `homeassistant.components.isy994.entity.ISYAuxControlEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/number.py:139:7-32: Field `entity_description` is declared `EntityDescription` in ancestor `class ISYAuxControlEntity: ... +`, which is not assignable to the type `NumberEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/isy994/number.py:152:13-63: Object of class `EntityDescription` has no attribute `native_unit_of_measurement` [missing-attribute] +ERROR homeassistant/components/isy994/number.py:162:12-62: Object of class `EntityDescription` has no attribute `native_unit_of_measurement` [missing-attribute] +ERROR homeassistant/components/isy994/number.py:169:43-48: Argument `float` is not assignable to parameter `val` with type `int` in function `pyisy.nodes.node.Node.set_on_level` [bad-argument-type] +ERROR homeassistant/components/isy994/number.py:219:13-72: Argument `object | None` is not assignable to parameter `value` with type `float | None` in function `homeassistant.components.isy994.helpers.convert_isy_value_to_hass` [bad-argument-type] +ERROR homeassistant/components/isy994/number.py:267:39-73: Object of class `NoneType` has no attribute `status_events` [missing-attribute] +ERROR homeassistant/components/isy994/select.py:51:34-38: Argument `float | int` is not assignable to parameter `i` with type `int` in function `time_string` [bad-argument-type] +ERROR homeassistant/components/isy994/select.py:80:49-54: No matching overload found for function `dict.get` called with arguments: (Literal[True]) [no-matching-overload] +ERROR homeassistant/components/isy994/select.py:84:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/isy994/select.py:85:13-17: Unexpected keyword argument `name` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/isy994/select.py:86:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/isy994/select.py:94:43-62: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/isy994/select.py:98:53-68: Unpacked keyword argument `Node | SelectEntityDescription | str` is not assignable to parameter `node` with type `Node` in function `homeassistant.components.isy994.entity.ISYAuxControlEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/select.py:98:53-68: Unpacked keyword argument `Node | SelectEntityDescription | str` is not assignable to parameter `control` with type `str` in function `homeassistant.components.isy994.entity.ISYAuxControlEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/select.py:98:53-68: Unpacked keyword argument `Node | SelectEntityDescription | str` is not assignable to parameter `unique_id` with type `str` in function `homeassistant.components.isy994.entity.ISYAuxControlEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/select.py:98:53-68: Unpacked keyword argument `Node | SelectEntityDescription | str` is not assignable to parameter `description` with type `EntityDescription` in function `homeassistant.components.isy994.entity.ISYAuxControlEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/select.py:98:53-68: Unpacked keyword argument `Node | SelectEntityDescription | str` is not assignable to parameter `device_info` with type `TypedDict[DeviceInfo] | None` in function `homeassistant.components.isy994.entity.ISYAuxControlEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/select.py:101:54-69: Unpacked keyword argument `Node | SelectEntityDescription | str` is not assignable to parameter `node` with type `Node` in function `ISYBacklightSelectEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/select.py:101:54-69: Unpacked keyword argument `Node | SelectEntityDescription | str` is not assignable to parameter `control` with type `str` in function `ISYBacklightSelectEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/select.py:101:54-69: Unpacked keyword argument `Node | SelectEntityDescription | str` is not assignable to parameter `unique_id` with type `str` in function `ISYBacklightSelectEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/select.py:101:54-69: Unpacked keyword argument `Node | SelectEntityDescription | str` is not assignable to parameter `description` with type `SelectEntityDescription` in function `ISYBacklightSelectEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/select.py:101:54-69: Unpacked keyword argument `Node | SelectEntityDescription | str` is not assignable to parameter `device_info` with type `TypedDict[DeviceInfo] | None` in function `ISYBacklightSelectEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/select.py:104:60-75: Unpacked keyword argument `Node | SelectEntityDescription | str` is not assignable to parameter `node` with type `Node` in function `homeassistant.components.isy994.entity.ISYAuxControlEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/select.py:104:60-75: Unpacked keyword argument `Node | SelectEntityDescription | str` is not assignable to parameter `control` with type `str` in function `homeassistant.components.isy994.entity.ISYAuxControlEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/select.py:104:60-75: Unpacked keyword argument `Node | SelectEntityDescription | str` is not assignable to parameter `unique_id` with type `str` in function `homeassistant.components.isy994.entity.ISYAuxControlEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/select.py:104:60-75: Unpacked keyword argument `Node | SelectEntityDescription | str` is not assignable to parameter `description` with type `EntityDescription` in function `homeassistant.components.isy994.entity.ISYAuxControlEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/select.py:104:60-75: Unpacked keyword argument `Node | SelectEntityDescription | str` is not assignable to parameter `device_info` with type `TypedDict[DeviceInfo] | None` in function `homeassistant.components.isy994.entity.ISYAuxControlEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/isy994/select.py:113:7-30: Field `entity_description` is declared `EntityDescription` in ancestor `class ISYAuxControlEntity: ... +`, which is not assignable to the type `SelectEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/isy994/select.py:131:7-37: Field `entity_description` is declared `EntityDescription` in ancestor `class ISYAuxControlEntity: ... +`, which is not assignable to the type `SelectEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/isy994/select.py:142:46-80: No matching overload found for function `dict.get` called with arguments: (float | int, float | int) [no-matching-overload] + WARN homeassistant/components/isy994/select.py:143:20-46: Redundant cast: `str` is the same type as `str` [redundant-cast] +ERROR homeassistant/components/isy994/select.py:154:7-31: Field `entity_description` is declared `EntityDescription` in ancestor `class ISYAuxControlEntity: ... +`, which is not assignable to the type `SelectEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/isy994/select.py:181:39-73: Object of class `NoneType` has no attribute `status_events` [missing-attribute] +ERROR homeassistant/components/isy994/sensor.py:120:58-77: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/isy994/sensor.py:134:40-59: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/isy994/sensor.py:147:16-26: Returned type `Node | Program | Variable` is not assignable to declared return type `Node | NodeProperty | None` [bad-return] +ERROR homeassistant/components/isy994/sensor.py:167:43-48: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/isy994/sensor.py:174:37-42: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/isy994/sensor.py:246:14-29: Class member `ISYAuxSensorEntity._change_handler` overrides parent class `ISYSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/isy994/sensor.py:246:47-51: `None` is not assignable to attribute `_change_handler` with type `EventListener` [bad-assignment] +ERROR homeassistant/components/isy994/sensor.py:247:53-57: `None` is not assignable to attribute `_availability_handler` with type `EventListener` [bad-assignment] +ERROR homeassistant/components/isy994/sensor.py:255:33-58: Object of class `Program` has no attribute `aux_properties` +Object of class `Variable` has no attribute `aux_properties` [missing-attribute] +ERROR homeassistant/components/isy994/sensor.py:258:35-60: Object of class `Program` has no attribute `aux_properties` +Object of class `Variable` has no attribute `aux_properties` [missing-attribute] +ERROR homeassistant/components/isy994/sensor.py:263:49-66: Object of class `Node` has no attribute `value` [missing-attribute] +ERROR homeassistant/components/isy994/sensor.py:273:32-57: Object of class `Program` has no attribute `control_events` +Object of class `Variable` has no attribute `control_events` [missing-attribute] +ERROR homeassistant/components/isy994/sensor.py:276:38-72: Object of class `NoneType` has no attribute `status_events` [missing-attribute] +ERROR homeassistant/components/isy994/sensor.py:292:27-45: Object of class `Variable` has no attribute `enabled` [missing-attribute] +ERROR homeassistant/components/isy994/switch.py:39:5-9: Class member `ISYSwitchEntityDescription.name` overrides parent class `SwitchEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/isy994/switch.py:55:49-65: Object of class `Node` has no attribute `controllers` [missing-attribute] +ERROR homeassistant/components/isy994/switch.py:57:23-47: Object of class `NoneType` has no attribute `get_by_id` [missing-attribute] +ERROR homeassistant/components/isy994/switch.py:57:48-67: Cannot index into `object` [bad-index] +ERROR homeassistant/components/isy994/switch.py:59:62-71: No matching overload found for function `dict.get` called with arguments: (str | Unknown | None) [no-matching-overload] +ERROR homeassistant/components/isy994/switch.py:68:13-16: Unexpected keyword argument `key` in function `ISYSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/isy994/switch.py:71:13-28: Unexpected keyword argument `entity_category` in function `ISYSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/isy994/switch.py:79:44-63: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/isy994/switch.py:97:22-41: Object of class `Program` has no attribute `turn_off` +Object of class `Variable` has no attribute `turn_off` [missing-attribute] +ERROR homeassistant/components/isy994/switch.py:102:22-40: Object of class `Program` has no attribute `turn_on` +Object of class `Variable` has no attribute `turn_on` [missing-attribute] +ERROR homeassistant/components/isy994/switch.py:138:7-28: Field `entity_description` is declared `EntityDescription` in ancestor `class ISYAuxControlEntity: ... +`, which is not assignable to the type `SwitchEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/isy994/switch.py:158:14-29: Class member `ISYEnableSwitchEntity._change_handler` overrides parent class `ISYAuxControlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/isy994/switch.py:163:32-66: Object of class `NoneType` has no attribute `status_events` [missing-attribute] +ERROR homeassistant/components/isy994/switch.py:173:9-24: Class member `ISYEnableSwitchEntity.async_on_update` overrides parent class `ISYAuxControlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/isy994/system_health.py:33:39-52: Cannot set item in `dict[str, dict[str, str] | str]` [unsupported-operation] +ERROR homeassistant/components/isy994/system_health.py:34:37-65: Object of class `NoneType` has no attribute `last_heartbeat` [missing-attribute] +ERROR homeassistant/components/isy994/system_health.py:35:39-59: Object of class `NoneType` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/itach/remote.py:9:8-20: Could not find import of `pyitachip2ir` [missing-import] +ERROR homeassistant/components/itunes/media_player.py:74:20-28: `response` may be uninitialized [unbound-name] +ERROR homeassistant/components/itunes/media_player.py:279:17-44: Object of class `NoneType` has no attribute `update_state` [missing-attribute] +ERROR homeassistant/components/itunes/media_player.py:298:16-43: `/` is not supported between `None` and `float` [unsupported-operation] +ERROR homeassistant/components/ituran/binary_sensor.py:33:9-12: Unexpected keyword argument `key` in function `IturanBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/binary_sensor.py:59:5-23: Class member `IturanBinarySensor.entity_description` overrides parent class `IturanBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ituran/binary_sensor.py:59:5-23: Class member `IturanBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ituran/coordinator.py:30:5-17: Class member `IturanDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ituran/sensor.py:42:9-12: Unexpected keyword argument `key` in function `IturanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `IturanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/sensor.py:44:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IturanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/sensor.py:48:9-12: Unexpected keyword argument `key` in function `IturanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/sensor.py:55:9-12: Unexpected keyword argument `key` in function `IturanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `IturanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/sensor.py:64:9-12: Unexpected keyword argument `key` in function `IturanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `IturanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/sensor.py:69:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IturanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/sensor.py:73:9-12: Unexpected keyword argument `key` in function `IturanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `IturanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/sensor.py:77:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IturanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/sensor.py:81:9-12: Unexpected keyword argument `key` in function `IturanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `IturanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/sensor.py:84:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `IturanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/sensor.py:88:9-12: Unexpected keyword argument `key` in function `IturanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `IturanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/sensor.py:96:9-12: Unexpected keyword argument `key` in function `IturanSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ituran/sensor.py:123:5-23: Class member `IturanSensor.entity_description` overrides parent class `IturanBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ituran/sensor.py:123:5-23: Class member `IturanSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/izone/climate.py:367:16-44: Returned type `float | None` is not assignable to declared return type `float` [bad-return] +ERROR homeassistant/components/izone/climate.py:539:16-39: Returned type `float | None` is not assignable to declared return type `float` [bad-return] +ERROR homeassistant/components/jellyfin/config_flow.py:140:9-31: Class member `JellyfinConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/jellyfin/coordinator.py:22:5-17: Class member `JellyfinDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/jellyfin/media_player.py:151:14-25: Class member `JellyfinMediaPlayer._attr_state` overrides parent class `JellyfinClientEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/jellyfin/media_source.py:67:5-9: Class member `JellyfinSource.name` overrides parent class `MediaSource` in an inconsistent manner [bad-override] +ERROR homeassistant/components/jellyfin/sensor.py:36:9-12: Unexpected keyword argument `key` in function `JellyfinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jellyfin/sensor.py:37:9-24: Unexpected keyword argument `translation_key` in function `JellyfinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jellyfin/sensor.py:59:5-23: Class member `JellyfinServerSensor.entity_description` overrides parent class `JellyfinServerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/jellyfin/sensor.py:59:5-23: Class member `JellyfinServerSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/jewish_calendar/binary_sensor.py:34:9-12: Unexpected keyword argument `key` in function `JewishCalendarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/binary_sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/binary_sensor.py:39:9-12: Unexpected keyword argument `key` in function `JewishCalendarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/binary_sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/binary_sensor.py:42:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `JewishCalendarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/binary_sensor.py:45:9-12: Unexpected keyword argument `key` in function `JewishCalendarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/binary_sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/binary_sensor.py:48:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `JewishCalendarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/binary_sensor.py:70:5-23: Class member `JewishCalendarBinarySensor.entity_description` overrides parent class `JewishCalendarEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/jewish_calendar/binary_sensor.py:70:5-23: Class member `JewishCalendarBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/jewish_calendar/config_flow.py:67:43-71: Argument `() -> set[str]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/jewish_calendar/config_flow.py:91:9-31: Class member `JewishCalendarConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/jewish_calendar/sensor.py:62:9-12: Unexpected keyword argument `key` in function `JewishCalendarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:63:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:74:9-12: Unexpected keyword argument `key` in function `JewishCalendarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:82:9-12: Unexpected keyword argument `key` in function `JewishCalendarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:95:9-12: Unexpected keyword argument `key` in function `JewishCalendarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:97:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `JewishCalendarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:101:9-12: Unexpected keyword argument `key` in function `JewishCalendarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:103:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `JewishCalendarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:110:9-12: Unexpected keyword argument `key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:112:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:115:9-12: Unexpected keyword argument `key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:117:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:120:9-12: Unexpected keyword argument `key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:124:9-12: Unexpected keyword argument `key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:126:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:129:9-12: Unexpected keyword argument `key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:130:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:131:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:134:9-12: Unexpected keyword argument `key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:135:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:136:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:139:9-12: Unexpected keyword argument `key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:140:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:141:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:144:9-12: Unexpected keyword argument `key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:145:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:146:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:149:9-12: Unexpected keyword argument `key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:150:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:151:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:154:9-12: Unexpected keyword argument `key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:155:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:156:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:159:9-12: Unexpected keyword argument `key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:161:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:164:9-12: Unexpected keyword argument `key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:165:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:168:9-12: Unexpected keyword argument `key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:169:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:170:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:173:9-12: Unexpected keyword argument `key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:174:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:175:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:178:9-12: Unexpected keyword argument `key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:179:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:180:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:187:9-12: Unexpected keyword argument `key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:188:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:189:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:194:9-12: Unexpected keyword argument `key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:195:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:202:9-12: Unexpected keyword argument `key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:203:9-24: Unexpected keyword argument `translation_key` in function `JewishCalendarTimestampSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jewish_calendar/sensor.py:233:5-23: Class member `JewishCalendarBaseSensor.entity_description` overrides parent class `JewishCalendarEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/jewish_calendar/sensor.py:233:5-23: Class member `JewishCalendarBaseSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/jewish_calendar/sensor.py:265:5-23: Class member `JewishCalendarSensor.entity_description` overrides parent class `JewishCalendarBaseSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/jewish_calendar/sensor.py:295:5-23: Class member `JewishCalendarTimeSensor.entity_description` overrides parent class `JewishCalendarBaseSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/joaoapps_join/__init__.py:5:1-13:2: Could not find import of `pyjoin` [missing-import] +ERROR homeassistant/components/joaoapps_join/notify.py:7:1-50: Could not find import of `pyjoin` [missing-import] +ERROR homeassistant/components/justnimbus/config_flow.py:53:52-67: Argument `BoundMethod[JustNimbusClient, (self: JustNimbusClient) -> JustNimbusModel]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/justnimbus/coordinator.py:25:5-17: Class member `JustNimbusCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/justnimbus/coordinator.py:45:55-76: Argument `BoundMethod[JustNimbusClient, (self: JustNimbusClient) -> JustNimbusModel]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/justnimbus/sensor.py:39:9-12: Unexpected keyword argument `key` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:44:9-24: Unexpected keyword argument `entity_category` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:48:9-12: Unexpected keyword argument `key` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:53:9-24: Unexpected keyword argument `entity_category` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:57:9-12: Unexpected keyword argument `key` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:62:9-24: Unexpected keyword argument `entity_category` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:66:9-12: Unexpected keyword argument `key` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:71:9-24: Unexpected keyword argument `entity_category` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:75:9-12: Unexpected keyword argument `key` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:80:9-24: Unexpected keyword argument `entity_category` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:84:9-12: Unexpected keyword argument `key` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:89:9-24: Unexpected keyword argument `entity_category` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:93:9-12: Unexpected keyword argument `key` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:94:9-24: Unexpected keyword argument `translation_key` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:95:9-24: Unexpected keyword argument `entity_category` in function `JustNimbusEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/justnimbus/sensor.py:128:14-32: Class member `JustNimbusSensor.entity_description` overrides parent class `JustNimbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/justnimbus/sensor.py:128:14-32: Class member `JustNimbusSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/jvc_projector/__init__.py:62:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/jvc_projector/coordinator.py:35:5-17: Class member `JvcProjectorDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/jvc_projector/coordinator.py:64:18-33: Class member `JvcProjectorDataUpdateCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/jvc_projector/coordinator.py:64:36-49: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@JvcProjectorDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/jvc_projector/coordinator.py:66:36-49: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@JvcProjectorDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/jvc_projector/select.py:32:9-12: Unexpected keyword argument `key` in function `JvcProjectorSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jvc_projector/select.py:33:9-24: Unexpected keyword argument `translation_key` in function `JvcProjectorSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jvc_projector/select.py:56:5-23: Class member `JvcProjectorSelectEntity.entity_description` overrides parent class `JvcProjectorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/jvc_projector/select.py:56:5-23: Class member `JvcProjectorSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/jvc_projector/sensor.py:21:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jvc_projector/sensor.py:22:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jvc_projector/sensor.py:24:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/jvc_projector/sensor.py:59:14-32: Class member `JvcSensor.entity_description` overrides parent class `JvcProjectorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kaiterra/api_data.py:7:1-72: Could not find import of `kaiterra_async_client` [missing-import] +ERROR homeassistant/components/kaiterra/sensor.py:31:9-12: Unexpected keyword argument `key` in function `KaiterraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaiterra/sensor.py:36:9-12: Unexpected keyword argument `key` in function `KaiterraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/media_player.py:47:5-29: Class member `KaleidescapeMediaPlayer._attr_supported_features` overrides parent class `KaleidescapeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kaleidescape/sensor.py:29:9-12: Unexpected keyword argument `key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:30:9-24: Unexpected keyword argument `translation_key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:34:9-12: Unexpected keyword argument `key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:39:9-12: Unexpected keyword argument `key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:44:9-12: Unexpected keyword argument `key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:46:9-24: Unexpected keyword argument `entity_category` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:50:9-12: Unexpected keyword argument `key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:52:9-24: Unexpected keyword argument `entity_category` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:56:9-12: Unexpected keyword argument `key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:58:9-24: Unexpected keyword argument `entity_category` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:62:9-12: Unexpected keyword argument `key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:63:9-24: Unexpected keyword argument `translation_key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:64:9-24: Unexpected keyword argument `entity_category` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:68:9-12: Unexpected keyword argument `key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:74:9-12: Unexpected keyword argument `key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:76:9-24: Unexpected keyword argument `entity_category` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:80:9-12: Unexpected keyword argument `key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:81:9-24: Unexpected keyword argument `translation_key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:82:9-24: Unexpected keyword argument `entity_category` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:87:9-12: Unexpected keyword argument `key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:89:9-24: Unexpected keyword argument `entity_category` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:94:9-12: Unexpected keyword argument `key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:95:9-24: Unexpected keyword argument `translation_key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:96:9-24: Unexpected keyword argument `entity_category` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:100:9-12: Unexpected keyword argument `key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:101:9-24: Unexpected keyword argument `translation_key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:102:9-24: Unexpected keyword argument `entity_category` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:107:9-12: Unexpected keyword argument `key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:108:9-24: Unexpected keyword argument `translation_key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:109:9-24: Unexpected keyword argument `entity_category` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:114:9-12: Unexpected keyword argument `key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:115:9-24: Unexpected keyword argument `translation_key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:116:9-24: Unexpected keyword argument `entity_category` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:120:9-12: Unexpected keyword argument `key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:122:9-24: Unexpected keyword argument `entity_category` in function `KaleidescapeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kaleidescape/sensor.py:143:5-23: Class member `KaleidescapeSensor.entity_description` overrides parent class `KaleidescapeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kaleidescape/sensor.py:143:5-23: Class member `KaleidescapeSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kankun/switch.py:88:26-30: `None` is not assignable to attribute `_auth` with type `tuple[Unknown, Unknown]` [bad-assignment] +ERROR homeassistant/components/keba/__init__.py:6:1-52: Could not find import of `keba_kecontact.connection` [missing-import] +ERROR homeassistant/components/keba/__init__.py:131:15-32: Object of class `KebaHandler` has no attribute `request_data` [missing-attribute] +ERROR homeassistant/components/keba/__init__.py:152:15-32: Object of class `KebaHandler` has no attribute `request_data` [missing-attribute] +ERROR homeassistant/components/keba/__init__.py:154:13-27: Object of class `KebaHandler` has no attribute `get_value` [missing-attribute] +ERROR homeassistant/components/keba/__init__.py:155:17-31: Object of class `KebaHandler` has no attribute `get_value` [missing-attribute] +ERROR homeassistant/components/keba/__init__.py:157:46-60: Object of class `KebaHandler` has no attribute `get_value` [missing-attribute] +ERROR homeassistant/components/keba/__init__.py:158:32-46: Object of class `KebaHandler` has no attribute `get_value` [missing-attribute] +ERROR homeassistant/components/keba/__init__.py:175:9-34: Object of class `NoneType` has no attribute `cancel` [missing-attribute] +ERROR homeassistant/components/keba/__init__.py:187:15-32: Object of class `KebaHandler` has no attribute `request_data` [missing-attribute] +ERROR homeassistant/components/keba/__init__.py:194:19-34: Object of class `KebaHandler` has no attribute `set_energy` [missing-attribute] +ERROR homeassistant/components/keba/__init__.py:203:19-35: Object of class `KebaHandler` has no attribute `set_current` [missing-attribute] +ERROR homeassistant/components/keba/__init__.py:210:15-25: Object of class `KebaHandler` has no attribute `start` [missing-attribute] +ERROR homeassistant/components/keba/__init__.py:215:15-24: Object of class `KebaHandler` has no attribute `stop` [missing-attribute] +ERROR homeassistant/components/keba/__init__.py:220:15-26: Object of class `KebaHandler` has no attribute `enable` [missing-attribute] +ERROR homeassistant/components/keba/__init__.py:225:15-26: Object of class `KebaHandler` has no attribute `enable` [missing-attribute] +ERROR homeassistant/components/keba/__init__.py:231:23-45: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/keba/__init__.py:232:24-47: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/keba/__init__.py:233:23-45: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/keba/__init__.py:234:19-36: Object of class `KebaHandler` has no attribute `set_failsafe` [missing-attribute] +ERROR homeassistant/components/keba/sensor.py:36:17-20: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/keba/sensor.py:37:17-21: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/keba/sensor.py:46:17-20: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/keba/sensor.py:47:17-21: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/keba/sensor.py:56:17-20: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/keba/sensor.py:57:17-21: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/keba/sensor.py:67:17-20: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/keba/sensor.py:68:17-21: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/keba/sensor.py:77:17-20: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/keba/sensor.py:78:17-21: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/keenetic_ndms2/config_flow.py:57:9-31: Class member `KeeneticFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/keenetic_ndms2/config_flow.py:75:21-25: Argument `bytes | str | Any` is not assignable to parameter `host` with type `str` in function `ndms2_client.connection.TelnetConnection.__init__` [bad-argument-type] +ERROR homeassistant/components/keenetic_ndms2/config_flow.py:85:21-44: Argument `BoundMethod[Client, (self: Client) -> RouterInfo]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/keenetic_ndms2/config_flow.py:187:16-36: Object of class `NoneType` has no attribute `lower` [missing-attribute] +ERROR homeassistant/components/keenetic_ndms2/device_tracker.py:56:34-60: Argument `str | None` is not assignable to parameter `name` with type `str` in function `ndms2_client.client.Device.__new__` [bad-argument-type] +ERROR homeassistant/components/keenetic_ndms2/device_tracker.py:57:32-36: Argument `None` is not assignable to parameter `ip` with type `str` in function `ndms2_client.client.Device.__new__` [bad-argument-type] +ERROR homeassistant/components/keenetic_ndms2/device_tracker.py:58:39-43: Argument `None` is not assignable to parameter `interface` with type `str` in function `ndms2_client.client.Device.__new__` [bad-argument-type] +ERROR homeassistant/components/keenetic_ndms2/router.py:129:26-74: `Task[Unknown]` is not assignable to attribute `_progress` with type `None` [bad-assignment] +ERROR homeassistant/components/keenetic_ndms2/router.py:130:9-29: Type `None` is not awaitable [not-async] +ERROR homeassistant/components/keenetic_ndms2/router.py:136:48-68: Argument `BoundMethod[Self@KeeneticRouter, (self: Self@KeeneticRouter) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/keenetic_ndms2/router.py:150:52-76: Argument `BoundMethod[Self@KeeneticRouter, (self: Self@KeeneticRouter) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/keenetic_ndms2/router.py:168:9-36: Object of class `NoneType` has no attribute `disconnect` [missing-attribute] +ERROR homeassistant/components/keenetic_ndms2/router.py:172:33-61: Object of class `NoneType` has no attribute `get_router_info` [missing-attribute] +ERROR homeassistant/components/keenetic_ndms2/router.py:183:25-49: Object of class `NoneType` has no attribute `get_devices` [missing-attribute] +ERROR homeassistant/components/keenetic_ndms2/router.py:194:33-61: Object of class `NoneType` has no attribute `get_router_info` [missing-attribute] +ERROR homeassistant/components/kef/media_player.py:10:1-35: Could not find import of `aiokef` [missing-import] +ERROR homeassistant/components/kef/media_player.py:11:1-45: Could not find import of `aiokef.aiokef` [missing-import] +ERROR homeassistant/components/kef/media_player.py:327:21-335:10: `dict[str, Unknown]` is not assignable to attribute `_dsp` with type `None` [bad-assignment] +ERROR homeassistant/components/kef/media_player.py:339:41-341:10: `() -> None` is not assignable to attribute `_update_dsp_task_remover` with type `None` [bad-assignment] +ERROR homeassistant/components/kef/media_player.py:345:9-38: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/kegtron/sensor.py:36:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kegtron/sensor.py:37:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kegtron/sensor.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kegtron/sensor.py:41:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kegtron/sensor.py:46:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kegtron/sensor.py:47:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kegtron/sensor.py:50:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kegtron/sensor.py:51:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kegtron/sensor.py:56:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kegtron/sensor.py:57:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kegtron/sensor.py:63:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kegtron/sensor.py:64:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kegtron/sensor.py:67:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kegtron/sensor.py:68:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kegtron/sensor.py:71:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kegtron/sensor.py:75:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kegtron/sensor.py:76:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kegtron/sensor.py:124:7-35: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/keyboard_remote/__init__.py:12:1-64: Could not find import of `evdev` [missing-import] +ERROR homeassistant/components/keyboard_remote/__init__.py:119:24-33: `Inotify` is not assignable to attribute `inotify` with type `None` [bad-assignment] +ERROR homeassistant/components/keyboard_remote/__init__.py:120:24-46: Object of class `NoneType` has no attribute `add_watch` [missing-attribute] +ERROR homeassistant/components/keyboard_remote/__init__.py:144:29-86: `Task[Unknown]` is not assignable to attribute `monitor_task` with type `None` [bad-assignment] +ERROR homeassistant/components/keyboard_remote/__init__.py:163:37-73: Object of class `Future` has no attribute `async_device_stop_monitoring` [missing-attribute] +ERROR homeassistant/components/keyboard_remote/__init__.py:204:32-44: Type `None` is not an async iterable [not-iterable] +ERROR homeassistant/components/keyboard_remote/__init__.py:218:27-63: Object of class `Future` has no attribute `async_device_stop_monitoring` [missing-attribute] +ERROR homeassistant/components/keyboard_remote/__init__.py:268:38-51: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/keyboard_remote/__init__.py:284:37-286:18: `Task[Unknown]` is not assignable to attribute `monitor_task` with type `None` [bad-assignment] +ERROR homeassistant/components/keyboard_remote/__init__.py:309:37-41: `None` is not assignable to attribute `monitor_task` with type `Never` [bad-assignment] +ERROR homeassistant/components/keyboard_remote/__init__.py:318:28-32: `None` is not assignable to attribute `dev` with type `Never` [bad-assignment] +ERROR homeassistant/components/keyboard_remote/__init__.py:332:56-69: Object of class `NoneType` has no attribute `grab` [missing-attribute] +ERROR homeassistant/components/keyboard_remote/__init__.py:333:36-60: Object of class `NoneType` has no attribute `async_read_loop` [missing-attribute] +ERROR homeassistant/components/keyboard_remote/__init__.py:337:51-64: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/keyboard_remote/__init__.py:346:50-63: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/keymitt_ble/config_flow.py:68:41-61: Argument `MicroBotAdvertisement | None` is not assignable to parameter `discovery` with type `MicroBotAdvertisement` in function `name_from_discovery` [bad-argument-type] +ERROR homeassistant/components/keymitt_ble/config_flow.py:105:46-66: Argument `MicroBotAdvertisement | None` is not assignable to parameter `discovery` with type `MicroBotAdvertisement` in function `name_from_discovery` [bad-argument-type] +ERROR homeassistant/components/keymitt_ble/config_flow.py:133:20-36: Argument `BLEDevice | None` is not assignable to parameter `device` with type `BLEDevice` in function `microbot.MicroBotApiClient.__init__` [bad-argument-type] +ERROR homeassistant/components/kitchen_sink/backup.py:77:15-36: Class member `KitchenSinkBackupAgent.async_download_backup` overrides parent class `BackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kitchen_sink/config_flow.py:35:9-31: Class member `KitchenSinkConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kitchen_sink/image.py:72:55-76: Argument `BoundMethod[Path, (self: Path) -> bytes]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/kiwi/lock.py:8:1-45: Could not find import of `kiwiki` [missing-import] +ERROR homeassistant/components/kmtronic/config_flow.py:50:12-37: Module `aiohttp.client_exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/kmtronic/config_flow.py:52:12-37: Module `aiohttp.client_exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/kmtronic/config_flow.py:65:9-31: Class member `KmtronicConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knocki/coordinator.py:19:5-17: Class member `KnockiCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/binary_sensor.py:113:5-12: Class member `KnxYamlBinarySensor._device` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/binary_sensor.py:132:14-32: Class member `KnxYamlBinarySensor._attr_device_class` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/binary_sensor.py:140:5-12: Class member `KnxUiBinarySensor._device` overrides parent class `KnxUiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/button.py:34:5-12: Class member `KNXButton._device` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/climate.py:323:5-12: Class member `_KnxClimate._device` overrides parent class `_KnxEntityBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/climate.py:344:14-38: Class member `_KnxClimate._attr_supported_features` overrides parent class `_KnxEntityBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/climate.py:517:61-80: Argument `HVACControllerMode | None` is not assignable to parameter `controller_mode` with type `HVACControllerMode` in function `xknx.devices.climate_mode.ClimateMode.set_controller_mode` [bad-argument-type] +ERROR homeassistant/components/knx/climate.py:646:5-12: Class member `KnxYamlClimate._device` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/climate.py:676:5-12: Class member `KnxUiClimate._device` overrides parent class `KnxUiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/config_flow.py:127:9-31: Class member `KNXConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/config_flow.py:312:20-68: Object of class `NoneType` has no attribute `tunnelling_requires_secure` [missing-attribute] +ERROR homeassistant/components/knx/config_flow.py:314:20-65: Object of class `NoneType` has no attribute `supports_tunnelling_tcp` [missing-attribute] +ERROR homeassistant/components/knx/config_flow.py:318:22-51: Object of class `NoneType` has no attribute `ip_addr` [missing-attribute] +ERROR homeassistant/components/knx/config_flow.py:319:22-48: Object of class `NoneType` has no attribute `port` [missing-attribute] +ERROR homeassistant/components/knx/config_flow.py:458:36-44: `_host_ip` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/config_flow.py:477:26-31: `_host` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/config_flow.py:480:30-36: `_local` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/config_flow.py:492:26-31: `_host` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/config_flow.py:757:60-67: `host_ia` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/config_flow.py:846:30-36: `_local` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/cover.py:190:5-12: Class member `KnxYamlCover._device` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/cover.py:225:18-36: Class member `KnxYamlCover._attr_device_class` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/cover.py:255:5-12: Class member `KnxUiCover._device` overrides parent class `KnxUiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/date.py:66:5-12: Class member `KNXDateEntity._device` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/datetime.py:67:5-12: Class member `KNXDateTimeEntity._device` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/entity.py:102:5-20: Class member `KnxUiEntity._attr_unique_id` overrides parent class `_KnxEntityBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/expose.py:114:46-57: Argument `bool | float | int | str | None` is not assignable to parameter `value` with type `bool | None` in function `xknx.remote_value.remote_value.RemoteValue.value` [bad-argument-type] +ERROR homeassistant/components/knx/expose.py:218:23-38: `xknx_device_cls` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/fan.py:45:5-12: Class member `KNXFan._device` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/light.py:324:5-32: Class member `_KnxLight._attr_max_color_temp_kelvin` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/light.py:325:5-32: Class member `_KnxLight._attr_min_color_temp_kelvin` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/light.py:458:17-27: `color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/light.py:459:17-20: `rgb` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/light.py:460:17-21: `rgbw` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/light.py:461:17-25: `hs_color` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/light.py:462:17-25: `xy_color` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/light.py:489:12-16: `rgbw` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/light.py:490:29-33: `rgbw` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/light.py:490:39-43: `rgbw` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/light.py:492:12-15: `rgb` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/light.py:493:29-32: `rgb` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/light.py:496:12-22: `color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/light.py:499:55-65: `color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/light.py:514:12-20: `xy_color` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/light.py:516:32-40: `xy_color` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/light.py:520:12-20: `hs_color` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/light.py:522:25-33: `hs_color` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/light.py:523:25-33: `hs_color` may be uninitialized [unbound-name] +ERROR homeassistant/components/knx/light.py:557:5-12: Class member `KnxYamlLight._device` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/light.py:585:5-12: Class member `KnxUiLight._device` overrides parent class `KnxUiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/notify.py:45:5-12: Class member `KNXNotify._device` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/number.py:58:5-12: Class member `KNXNumber._device` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/project.py:126:58-72: Argument `() -> TypedDict[KNXProject]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/knx/scene.py:37:5-12: Class member `KNXScene._device` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/select.py:64:5-12: Class member `KNXSelect._device` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/sensor.py:51:5-20: Class member `KNXSystemEntityDescription.entity_category` overrides parent class `SensorEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/sensor.py:52:5-20: Class member `KNXSystemEntityDescription.has_entity_name` overrides parent class `SensorEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/sensor.py:59:9-12: Unexpected keyword argument `key` in function `KNXSystemEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/knx/sensor.py:65:9-12: Unexpected keyword argument `key` in function `KNXSystemEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/knx/sensor.py:72:9-12: Unexpected keyword argument `key` in function `KNXSystemEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/knx/sensor.py:75:17-58: Argument `list[str | None]` is not assignable to parameter `options` with type `list[str] | None` in function `KNXSystemEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/knx/sensor.py:80:9-12: Unexpected keyword argument `key` in function `KNXSystemEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/knx/sensor.py:81:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `KNXSystemEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/knx/sensor.py:82:9-21: Unexpected keyword argument `force_update` in function `KNXSystemEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/knx/sensor.py:87:9-12: Unexpected keyword argument `key` in function `KNXSystemEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/knx/sensor.py:92:9-12: Unexpected keyword argument `key` in function `KNXSystemEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/knx/sensor.py:93:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `KNXSystemEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/knx/sensor.py:94:9-21: Unexpected keyword argument `force_update` in function `KNXSystemEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/knx/sensor.py:99:9-12: Unexpected keyword argument `key` in function `KNXSystemEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/knx/sensor.py:104:9-12: Unexpected keyword argument `key` in function `KNXSystemEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/knx/sensor.py:105:9-21: Unexpected keyword argument `force_update` in function `KNXSystemEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/knx/sensor.py:149:5-12: Class member `KNXSensor._device` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/sensor.py:158:18-36: Class member `KNXSensor._attr_device_class` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/sensor.py:206:14-32: Class member `KNXSystemSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/storage/keyring.py:48:46-61: Argument `() -> Keyring` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/knx/switch.py:106:5-12: Class member `KnxYamlSwitch._device` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/switch.py:122:14-32: Class member `KnxYamlSwitch._attr_device_class` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/switch.py:129:5-12: Class member `KnxUiSwitch._device` overrides parent class `KnxUiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/text.py:57:5-12: Class member `KNXText._device` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/time.py:66:5-12: Class member `KNXTimeEntity._device` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/weather.py:81:5-12: Class member `KNXWeather._device` overrides parent class `KnxYamlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/knx/websocket.py:135:13-51: Type `None` is not awaitable [not-async] +ERROR homeassistant/components/knx/websocket.py:139:16-20: Argument `((HomeAssistant, KNXModule, ActiveConnection, dict[str, Any]) -> Awaitable[None]) | ((HomeAssistant, KNXModule, ActiveConnection, dict[str, Any]) -> None)` is not assignable to parameter `wrapped` with type `(HomeAssistant, KNXModule, ActiveConnection, dict[str, Any]) -> Awaitable[None]` in function `functools.wraps` [bad-argument-type] +ERROR homeassistant/components/kodi/__init__.py:81:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/kodi/browse_media.py:54:23-40: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/kodi/browse_media.py:230:42-55: Argument `Sequence[BrowseMedia] | None` is not assignable to parameter `iterable` with type `Iterable[Unknown]` in function `list.extend` [bad-argument-type] +ERROR homeassistant/components/kodi/config_flow.py:289:19-43: Argument `str | None` is not assignable to parameter `title` with type `str` in function `homeassistant.config_entries.ConfigFlow.async_create_entry` [bad-argument-type] +ERROR homeassistant/components/kodi/media_player.py:129:59-62: `uid` may be uninitialized [unbound-name] +ERROR homeassistant/components/kodi/media_player.py:321:55-81: Argument `set[tuple[str, str | None]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]] | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_device` [bad-argument-type] +ERROR homeassistant/components/kodi/media_player.py:322:37-46: Object of class `NoneType` has no attribute `id` [missing-attribute] +ERROR homeassistant/components/kodi/media_player.py:323:27-36: Object of class `NoneType` has no attribute `id` [missing-attribute] +ERROR homeassistant/components/kodi/media_player.py:406:51-67: `datetime` is not assignable to attribute `_media_position_updated_at` with type `None` [bad-assignment] +ERROR homeassistant/components/kodi/media_player.py:456:36-60: No matching overload found for function `dict.get` called with arguments: (Unknown | None) [no-matching-overload] +ERROR homeassistant/components/konnected/__init__.py:242:32-35: `cfg` may be uninitialized [unbound-name] +ERROR homeassistant/components/konnected/__init__.py:243:28-31: `cfg` may be uninitialized [unbound-name] +ERROR homeassistant/components/konnected/__init__.py:250:28-31: `cfg` may be uninitialized [unbound-name] +ERROR homeassistant/components/konnected/__init__.py:253:19-22: `cfg` may be uninitialized [unbound-name] +ERROR homeassistant/components/konnected/__init__.py:355:28-35: `payload` may be uninitialized [unbound-name] +ERROR homeassistant/components/konnected/__init__.py:355:66-73: `payload` may be uninitialized [unbound-name] +ERROR homeassistant/components/konnected/__init__.py:356:13-20: `payload` may be uninitialized [unbound-name] +ERROR homeassistant/components/konnected/__init__.py:377:21-28: `payload` may be uninitialized [unbound-name] +ERROR homeassistant/components/konnected/__init__.py:380:65-72: `payload` may be uninitialized [unbound-name] +ERROR homeassistant/components/konnected/__init__.py:427:31-39: `zone_num` may be uninitialized [unbound-name] +ERROR homeassistant/components/konnected/__init__.py:428:14-22: `zone_num` may be uninitialized [unbound-name] +ERROR homeassistant/components/konnected/__init__.py:429:42-50: `zone_num` may be uninitialized [unbound-name] +ERROR homeassistant/components/konnected/config_flow.py:397:9-31: Class member `KonnectedFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/konnected/config_flow.py:766:52-81: No matching overload found for function `dict.get` called with arguments: (Literal['activation'], Literal['high']) [no-matching-overload] +ERROR homeassistant/components/konnected/config_flow.py:770:52-83: No matching overload found for function `dict.get` called with arguments: (Literal['momentary'], Undefined) [no-matching-overload] +ERROR homeassistant/components/konnected/config_flow.py:774:52-79: No matching overload found for function `dict.get` called with arguments: (Literal['pause'], Undefined) [no-matching-overload] +ERROR homeassistant/components/konnected/config_flow.py:778:52-80: No matching overload found for function `dict.get` called with arguments: (Literal['repeat'], Undefined) [no-matching-overload] +ERROR homeassistant/components/konnected/config_flow.py:818:56-85: No matching overload found for function `dict.get` called with arguments: (Literal['activation'], Literal['high']) [no-matching-overload] +ERROR homeassistant/components/konnected/config_flow.py:822:56-87: No matching overload found for function `dict.get` called with arguments: (Literal['momentary'], Undefined) [no-matching-overload] +ERROR homeassistant/components/konnected/config_flow.py:826:56-83: No matching overload found for function `dict.get` called with arguments: (Literal['pause'], Undefined) [no-matching-overload] +ERROR homeassistant/components/konnected/config_flow.py:830:56-84: No matching overload found for function `dict.get` called with arguments: (Literal['repeat'], Undefined) [no-matching-overload] +ERROR homeassistant/components/konnected/panel.py:117:27-121:14: `Client` is not assignable to attribute `client` with type `None` [bad-assignment] +ERROR homeassistant/components/konnected/panel.py:122:33-55: Object of class `NoneType` has no attribute `get_status` [missing-attribute] +ERROR homeassistant/components/konnected/panel.py:136:16-39: Object of class `NoneType` has no attribute `ClientError` [missing-attribute] +ERROR homeassistant/components/konnected/panel.py:141:41-143:14: `() -> None` is not assignable to attribute `cancel_connect_retry` with type `None` [bad-assignment] +ERROR homeassistant/components/konnected/panel.py:191:16-39: Object of class `NoneType` has no attribute `ClientError` [missing-attribute] +ERROR homeassistant/components/konnected/panel.py:320:28-43: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/konnected/panel.py:356:20-43: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/konnected/panel.py:361:26-41: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/konnected/panel.py:363:26-41: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/konnected/panel.py:364:28-43: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/konnected/panel.py:365:32-47: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/konnected/panel.py:384:19-43: Object of class `NoneType` has no attribute `put_settings` [missing-attribute] +ERROR homeassistant/components/konnected/sensor.py:29:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/konnected/sensor.py:30:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/konnected/sensor.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/konnected/sensor.py:36:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/konnected/sensor.py:122:27-31: `name` may be uninitialized [unbound-name] +ERROR homeassistant/components/kostal_plenticore/__init__.py:39:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/kostal_plenticore/coordinator.py:57:16-28: Returned type `None` is not assignable to declared return type `ApiClient` [bad-return] +ERROR homeassistant/components/kostal_plenticore/coordinator.py:61:24-63:10: `ExtendedApiClient` is not assignable to attribute `_client` with type `None` [bad-assignment] +ERROR homeassistant/components/kostal_plenticore/coordinator.py:65:19-37: Object of class `NoneType` has no attribute `login` [missing-attribute] +ERROR homeassistant/components/kostal_plenticore/coordinator.py:85:45-57: Argument `None` is not assignable to parameter `client` with type `ApiClient` in function `homeassistant.components.kostal_plenticore.helper.get_hostname_id` [bad-argument-type] +ERROR homeassistant/components/kostal_plenticore/coordinator.py:86:26-57: Object of class `NoneType` has no attribute `get_setting_values` [missing-attribute] +ERROR homeassistant/components/kostal_plenticore/coordinator.py:103:28-113:10: `TypedDict[DeviceInfo]` is not assignable to attribute `device_info` with type `dict[Unknown, Unknown]` [bad-assignment] +ERROR homeassistant/components/kostal_plenticore/coordinator.py:128:15-34: Object of class `NoneType` has no attribute `logout` [missing-attribute] +ERROR homeassistant/components/kostal_plenticore/coordinator.py:171:5-17: Class member `PlenticoreUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kostal_plenticore/coordinator.py:262:5-17: Class member `PlenticoreSelectUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kostal_plenticore/number.py:41:9-12: Unexpected keyword argument `key` in function `PlenticoreNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/number.py:42:9-24: Unexpected keyword argument `entity_category` in function `PlenticoreNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/number.py:43:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PlenticoreNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/number.py:44:9-13: Unexpected keyword argument `icon` in function `PlenticoreNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/number.py:45:9-13: Unexpected keyword argument `name` in function `PlenticoreNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/number.py:56:9-12: Unexpected keyword argument `key` in function `PlenticoreNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/number.py:58:9-24: Unexpected keyword argument `entity_category` in function `PlenticoreNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/number.py:59:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PlenticoreNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/number.py:60:9-13: Unexpected keyword argument `name` in function `PlenticoreNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/number.py:114:17-39: Argument `dict[Unknown, Unknown]` is not assignable to parameter `device_info` with type `TypedDict[DeviceInfo]` in function `PlenticoreDataNumber.__init__` [bad-argument-type] +ERROR homeassistant/components/kostal_plenticore/number.py:128:5-23: Class member `PlenticoreDataNumber.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kostal_plenticore/number.py:128:5-23: Class member `PlenticoreDataNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kostal_plenticore/select.py:31:9-12: Unexpected keyword argument `key` in function `PlenticoreSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/select.py:32:9-13: Unexpected keyword argument `name` in function `PlenticoreSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/select.py:74:29-51: Argument `dict[Unknown, Unknown]` is not assignable to parameter `device_info` with type `TypedDict[DeviceInfo]` in function `PlenticoreDataSelect.__init__` [bad-argument-type] +ERROR homeassistant/components/kostal_plenticore/select.py:87:5-23: Class member `PlenticoreDataSelect.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kostal_plenticore/select.py:87:5-23: Class member `PlenticoreDataSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kostal_plenticore/sensor.py:48:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:49:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:50:9-13: Unexpected keyword argument `icon` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:55:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:56:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:59:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:65:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:66:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:69:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:75:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:76:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:84:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:85:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:93:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:94:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:102:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:103:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:111:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:112:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:120:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:121:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:124:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:130:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:131:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:139:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:140:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:148:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:149:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:157:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:158:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:166:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:167:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:175:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:176:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:184:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:185:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:193:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:194:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:202:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:203:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:211:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:212:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:220:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:221:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:222:9-13: Unexpected keyword argument `icon` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:227:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:228:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:229:9-13: Unexpected keyword argument `icon` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:235:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:236:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:244:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:245:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:252:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:253:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:255:9-13: Unexpected keyword argument `icon` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:260:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:261:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:263:9-13: Unexpected keyword argument `icon` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:268:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:269:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:271:9-13: Unexpected keyword argument `icon` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:277:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:278:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:280:9-13: Unexpected keyword argument `icon` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:285:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:286:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:288:9-13: Unexpected keyword argument `icon` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:293:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:294:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:296:9-13: Unexpected keyword argument `icon` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:301:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:302:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:304:9-13: Unexpected keyword argument `icon` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:310:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:311:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:313:9-13: Unexpected keyword argument `icon` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:318:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:319:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:327:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:328:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:336:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:337:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:345:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:346:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:354:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:355:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:363:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:364:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:372:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:373:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:381:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:382:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:390:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:391:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:399:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:400:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:408:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:409:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:417:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:418:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:426:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:427:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:435:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:436:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:444:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:445:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:453:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:454:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:462:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:463:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:471:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:472:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:480:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:481:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:489:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:490:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:498:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:499:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:507:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:508:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:516:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:517:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:525:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:526:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:534:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:535:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:543:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:544:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:552:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:553:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:561:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:562:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:570:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:571:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:574:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:580:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:581:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:589:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:590:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:598:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:599:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:607:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:608:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:616:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:617:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:625:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:626:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:634:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:635:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:643:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:644:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:652:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:653:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:661:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:662:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:670:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:671:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:679:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:680:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:688:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:689:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:697:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:698:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:706:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:707:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:715:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:716:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:724:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:725:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:733:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:734:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:742:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:743:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:751:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:752:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:753:9-24: Unexpected keyword argument `entity_category` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:754:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:755:9-13: Unexpected keyword argument `icon` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:760:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:761:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:764:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:770:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:771:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:779:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:780:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:788:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:789:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:797:9-12: Unexpected keyword argument `key` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:798:9-13: Unexpected keyword argument `name` in function `PlenticoreSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/sensor.py:839:17-39: Argument `dict[Unknown, Unknown]` is not assignable to parameter `device_info` with type `TypedDict[DeviceInfo]` in function `PlenticoreDataSensor.__init__` [bad-argument-type] +ERROR homeassistant/components/kostal_plenticore/sensor.py:851:5-23: Class member `PlenticoreDataSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kostal_plenticore/sensor.py:851:5-23: Class member `PlenticoreDataSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kostal_plenticore/switch.py:40:9-12: Unexpected keyword argument `key` in function `PlenticoreSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/switch.py:41:9-13: Unexpected keyword argument `name` in function `PlenticoreSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/switch.py:50:9-12: Unexpected keyword argument `key` in function `PlenticoreSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/switch.py:51:9-13: Unexpected keyword argument `name` in function `PlenticoreSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/switch.py:103:17-39: Argument `dict[Unknown, Unknown]` is not assignable to parameter `device_info` with type `TypedDict[DeviceInfo]` in function `PlenticoreDataSwitch.__init__` [bad-argument-type] +ERROR homeassistant/components/kostal_plenticore/switch.py:148:21-43: Argument `dict[Unknown, Unknown]` is not assignable to parameter `device_info` with type `TypedDict[DeviceInfo]` in function `PlenticoreShadowMgmtSwitch.__init__` [bad-argument-type] +ERROR homeassistant/components/kostal_plenticore/switch.py:167:5-23: Class member `PlenticoreDataSwitch.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kostal_plenticore/switch.py:167:5-23: Class member `PlenticoreDataSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kostal_plenticore/switch.py:258:5-23: Class member `PlenticoreShadowMgmtSwitch.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kostal_plenticore/switch.py:285:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/switch.py:286:13-17: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kostal_plenticore/switch.py:287:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/__init__.py:77:64-85: Argument `BoundMethod[Self@KrakenData, (self: Self@KrakenData) -> dict[str, TypedDict[KrakenResponseEntry]]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/kraken/config_flow.py:32:9-31: Class member `KrakenConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kraken/sensor.py:45:9-12: Unexpected keyword argument `key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:50:9-12: Unexpected keyword argument `key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:53:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:56:9-12: Unexpected keyword argument `key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:61:9-12: Unexpected keyword argument `key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:64:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:67:9-12: Unexpected keyword argument `key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:70:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:73:9-12: Unexpected keyword argument `key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:76:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:79:9-12: Unexpected keyword argument `key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:82:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:85:9-12: Unexpected keyword argument `key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:88:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:91:9-12: Unexpected keyword argument `key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:94:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:97:9-12: Unexpected keyword argument `key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:100:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:103:9-12: Unexpected keyword argument `key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:104:9-24: Unexpected keyword argument `translation_key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:106:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:109:9-12: Unexpected keyword argument `key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:110:9-24: Unexpected keyword argument `translation_key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:114:9-12: Unexpected keyword argument `key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:115:9-24: Unexpected keyword argument `translation_key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:117:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:120:9-12: Unexpected keyword argument `key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:125:9-12: Unexpected keyword argument `key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:128:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:131:9-12: Unexpected keyword argument `key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:132:9-24: Unexpected keyword argument `translation_key` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:134:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `KrakenSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/kraken/sensor.py:204:5-23: Class member `KrakenSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kraken/sensor.py:204:5-23: Class member `KrakenSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/kwb/sensor.py:5:1-22: Could not find import of `pykwb` [missing-import] +ERROR homeassistant/components/lacrosse/sensor.py:9:8-18: Could not find import of `pylacrosse` [missing-import] +ERROR homeassistant/components/lacrosse_view/coordinator.py:32:5-17: Class member `LaCrosseUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lacrosse_view/sensor.py:62:9-12: Unexpected keyword argument `key` in function `LaCrosseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lacrosse_view/sensor.py:70:9-12: Unexpected keyword argument `key` in function `LaCrosseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lacrosse_view/sensor.py:78:9-12: Unexpected keyword argument `key` in function `LaCrosseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lacrosse_view/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `LaCrosseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lacrosse_view/sensor.py:87:9-12: Unexpected keyword argument `key` in function `LaCrosseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lacrosse_view/sensor.py:95:9-12: Unexpected keyword argument `key` in function `LaCrosseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lacrosse_view/sensor.py:103:9-12: Unexpected keyword argument `key` in function `LaCrosseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lacrosse_view/sensor.py:104:9-24: Unexpected keyword argument `translation_key` in function `LaCrosseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lacrosse_view/sensor.py:112:9-12: Unexpected keyword argument `key` in function `LaCrosseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lacrosse_view/sensor.py:113:9-24: Unexpected keyword argument `translation_key` in function `LaCrosseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lacrosse_view/sensor.py:117:9-12: Unexpected keyword argument `key` in function `LaCrosseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lacrosse_view/sensor.py:118:9-24: Unexpected keyword argument `translation_key` in function `LaCrosseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lacrosse_view/sensor.py:122:9-12: Unexpected keyword argument `key` in function `LaCrosseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lacrosse_view/sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `LaCrosseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lacrosse_view/sensor.py:131:9-12: Unexpected keyword argument `key` in function `LaCrosseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lacrosse_view/sensor.py:132:9-24: Unexpected keyword argument `translation_key` in function `LaCrosseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lacrosse_view/sensor.py:140:9-12: Unexpected keyword argument `key` in function `LaCrosseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lacrosse_view/sensor.py:141:9-24: Unexpected keyword argument `translation_key` in function `LaCrosseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lacrosse_view/sensor.py:217:5-23: Class member `LaCrosseViewSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lacrosse_view/sensor.py:217:5-23: Class member `LaCrosseViewSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/binary_sensor.py:39:9-12: Unexpected keyword argument `key` in function `LaMarzoccoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/binary_sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/binary_sensor.py:43:9-24: Unexpected keyword argument `entity_category` in function `LaMarzoccoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/binary_sensor.py:46:9-12: Unexpected keyword argument `key` in function `LaMarzoccoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/binary_sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/binary_sensor.py:56:9-24: Unexpected keyword argument `entity_category` in function `LaMarzoccoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/binary_sensor.py:59:9-12: Unexpected keyword argument `key` in function `LaMarzoccoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/binary_sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/binary_sensor.py:71:9-24: Unexpected keyword argument `entity_category` in function `LaMarzoccoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/binary_sensor.py:77:9-12: Unexpected keyword argument `key` in function `LaMarzoccoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/binary_sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/binary_sensor.py:81:9-24: Unexpected keyword argument `entity_category` in function `LaMarzoccoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/binary_sensor.py:82:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `LaMarzoccoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/binary_sensor.py:105:5-23: Class member `LaMarzoccoBinarySensorEntity.entity_description` overrides parent class `LaMarzoccoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/binary_sensor.py:105:5-23: Class member `LaMarzoccoBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/button.py:46:9-12: Unexpected keyword argument `key` in function `LaMarzoccoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/button.py:47:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/button.py:71:5-23: Class member `LaMarzoccoButtonEntity.entity_description` overrides parent class `LaMarzoccoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/button.py:71:5-23: Class member `LaMarzoccoButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/config_flow.py:368:9-31: Class member `LmConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/coordinator.py:46:5-17: Class member `LaMarzoccoUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/coordinator.py:90:5-17: Class member `LaMarzoccoConfigUpdateCoordinator.cloud_client` overrides parent class `LaMarzoccoUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/entity.py:88:5-23: Class member `LaMarzoccoEntity.entity_description` overrides parent class `LaMarzoccoBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/number.py:48:9-12: Unexpected keyword argument `key` in function `LaMarzoccoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/number.py:49:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/number.py:63:9-12: Unexpected keyword argument `key` in function `LaMarzoccoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/number.py:64:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/number.py:70:9-24: Unexpected keyword argument `entity_category` in function `LaMarzoccoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/number.py:81:9-12: Unexpected keyword argument `key` in function `LaMarzoccoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/number.py:82:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/number.py:88:9-24: Unexpected keyword argument `entity_category` in function `LaMarzoccoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/number.py:119:9-12: Unexpected keyword argument `key` in function `LaMarzoccoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/number.py:120:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/number.py:126:9-24: Unexpected keyword argument `entity_category` in function `LaMarzoccoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/number.py:158:9-12: Unexpected keyword argument `key` in function `LaMarzoccoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/number.py:159:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/number.py:165:9-24: Unexpected keyword argument `entity_category` in function `LaMarzoccoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/number.py:221:5-23: Class member `LaMarzoccoNumberEntity.entity_description` overrides parent class `LaMarzoccoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/number.py:221:5-23: Class member `LaMarzoccoNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/select.py:67:9-12: Unexpected keyword argument `key` in function `LaMarzoccoSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/select.py:68:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/select.py:85:9-12: Unexpected keyword argument `key` in function `LaMarzoccoSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/select.py:86:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/select.py:87:9-24: Unexpected keyword argument `entity_category` in function `LaMarzoccoSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/select.py:106:9-12: Unexpected keyword argument `key` in function `LaMarzoccoSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/select.py:107:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/select.py:108:9-24: Unexpected keyword argument `entity_category` in function `LaMarzoccoSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/select.py:140:5-23: Class member `LaMarzoccoSelectEntity.entity_description` overrides parent class `LaMarzoccoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/select.py:140:5-23: Class member `LaMarzoccoSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/sensor.py:51:9-12: Unexpected keyword argument `key` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:66:9-24: Unexpected keyword argument `entity_category` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:69:9-12: Unexpected keyword argument `key` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:88:9-24: Unexpected keyword argument `entity_category` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:91:9-12: Unexpected keyword argument `key` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:99:9-24: Unexpected keyword argument `entity_category` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:110:9-12: Unexpected keyword argument `key` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:118:9-24: Unexpected keyword argument `entity_category` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:125:9-12: Unexpected keyword argument `key` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:136:9-24: Unexpected keyword argument `entity_category` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:146:9-12: Unexpected keyword argument `key` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:147:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:154:9-24: Unexpected keyword argument `entity_category` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:157:9-12: Unexpected keyword argument `key` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:158:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:165:9-24: Unexpected keyword argument `entity_category` in function `LaMarzoccoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/sensor.py:195:5-23: Class member `LaMarzoccoSensorEntity.entity_description` overrides parent class `LaMarzoccoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/sensor.py:195:5-23: Class member `LaMarzoccoSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/switch.py:43:9-12: Unexpected keyword argument `key` in function `LaMarzoccoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/switch.py:44:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/switch.py:45:9-13: Unexpected keyword argument `name` in function `LaMarzoccoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/switch.py:55:9-12: Unexpected keyword argument `key` in function `LaMarzoccoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/switch.py:56:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/switch.py:70:9-12: Unexpected keyword argument `key` in function `LaMarzoccoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/switch.py:71:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/switch.py:85:9-12: Unexpected keyword argument `key` in function `LaMarzoccoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/switch.py:86:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/switch.py:87:9-24: Unexpected keyword argument `entity_category` in function `LaMarzoccoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/switch.py:125:5-23: Class member `LaMarzoccoSwitchEntity.entity_description` overrides parent class `LaMarzoccoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/switch.py:125:5-23: Class member `LaMarzoccoSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/update.py:41:9-12: Unexpected keyword argument `key` in function `LaMarzoccoUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/update.py:42:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/update.py:48:9-12: Unexpected keyword argument `key` in function `LaMarzoccoUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/update.py:49:9-24: Unexpected keyword argument `translation_key` in function `LaMarzoccoUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lamarzocco/update.py:75:5-23: Class member `LaMarzoccoUpdateEntity.entity_description` overrides parent class `LaMarzoccoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/update.py:75:5-23: Class member `LaMarzoccoUpdateEntity.entity_description` overrides parent class `UpdateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lamarzocco/update.py:76:5-29: Class member `LaMarzoccoUpdateEntity._attr_supported_features` overrides parent class `LaMarzoccoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lametric/__init__.py:49:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/lametric/button.py:30:9-12: Unexpected keyword argument `key` in function `LaMetricButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/button.py:31:9-24: Unexpected keyword argument `translation_key` in function `LaMetricButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/button.py:32:9-24: Unexpected keyword argument `entity_category` in function `LaMetricButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/button.py:36:9-12: Unexpected keyword argument `key` in function `LaMetricButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/button.py:37:9-24: Unexpected keyword argument `translation_key` in function `LaMetricButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/button.py:38:9-24: Unexpected keyword argument `entity_category` in function `LaMetricButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/button.py:42:9-12: Unexpected keyword argument `key` in function `LaMetricButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/button.py:43:9-24: Unexpected keyword argument `translation_key` in function `LaMetricButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/button.py:44:9-24: Unexpected keyword argument `entity_category` in function `LaMetricButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/button.py:48:9-12: Unexpected keyword argument `key` in function `LaMetricButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/button.py:49:9-24: Unexpected keyword argument `translation_key` in function `LaMetricButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/button.py:50:9-24: Unexpected keyword argument `entity_category` in function `LaMetricButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/button.py:75:5-23: Class member `LaMetricButtonEntity.entity_description` overrides parent class `LaMetricEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lametric/button.py:75:5-23: Class member `LaMetricButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lametric/coordinator.py:22:5-17: Class member `LaMetricDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lametric/notify.py:60:26-30: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/lametric/notify.py:62:51-55: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/lametric/notify.py:63:58-62: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/lametric/notify.py:66:33-36: `snd` is uninitialized [unbound-name] +ERROR homeassistant/components/lametric/notify.py:69:44-48: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/lametric/notify.py:70:43-47: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/lametric/notify.py:74:30-34: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/lametric/notify.py:78:28-32: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/lametric/number.py:33:9-12: Unexpected keyword argument `key` in function `LaMetricNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/number.py:34:9-24: Unexpected keyword argument `translation_key` in function `LaMetricNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/number.py:35:9-24: Unexpected keyword argument `entity_category` in function `LaMetricNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/number.py:43:9-12: Unexpected keyword argument `key` in function `LaMetricNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/number.py:44:9-24: Unexpected keyword argument `translation_key` in function `LaMetricNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/number.py:45:9-24: Unexpected keyword argument `entity_category` in function `LaMetricNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/number.py:75:5-23: Class member `LaMetricNumberEntity.entity_description` overrides parent class `LaMetricEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lametric/number.py:75:5-23: Class member `LaMetricNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lametric/select.py:31:9-12: Unexpected keyword argument `key` in function `LaMetricSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/select.py:32:9-24: Unexpected keyword argument `translation_key` in function `LaMetricSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/select.py:33:9-24: Unexpected keyword argument `entity_category` in function `LaMetricSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/select.py:60:5-23: Class member `LaMetricSelectEntity.entity_description` overrides parent class `LaMetricEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lametric/select.py:60:5-23: Class member `LaMetricSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lametric/sensor.py:32:9-12: Unexpected keyword argument `key` in function `LaMetricSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/sensor.py:33:9-24: Unexpected keyword argument `translation_key` in function `LaMetricSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/sensor.py:34:9-24: Unexpected keyword argument `entity_category` in function `LaMetricSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/sensor.py:35:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `LaMetricSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/sensor.py:62:5-23: Class member `LaMetricSensorEntity.entity_description` overrides parent class `LaMetricEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lametric/sensor.py:62:5-23: Class member `LaMetricSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lametric/services.py:127:29-32: `snd` is uninitialized [unbound-name] +ERROR homeassistant/components/lametric/switch.py:33:9-12: Unexpected keyword argument `key` in function `LaMetricSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/switch.py:34:9-24: Unexpected keyword argument `translation_key` in function `LaMetricSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/switch.py:35:9-24: Unexpected keyword argument `entity_category` in function `LaMetricSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lametric/switch.py:66:5-23: Class member `LaMetricSwitchEntity.entity_description` overrides parent class `LaMetricEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lametric/switch.py:66:5-23: Class member `LaMetricSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lametric/update.py:29:5-23: Class member `LaMetricUpdate._attr_device_class` overrides parent class `LaMetricEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/landisgyr_heat_meter/config_flow.py:109:63-78: Argument `BoundMethod[HeatMeterService, (self: HeatMeterService) -> HeatMeterResponse]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/landisgyr_heat_meter/config_flow.py:116:16-26: Object of class `object` has no attribute `model` [missing-attribute] +ERROR homeassistant/components/landisgyr_heat_meter/config_flow.py:116:28-46: Object of class `object` has no attribute `device_number` [missing-attribute] +ERROR homeassistant/components/landisgyr_heat_meter/coordinator.py:24:5-17: Class member `UltraheatCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/landisgyr_heat_meter/coordinator.py:46:63-76: Argument `BoundMethod[HeatMeterService, (self: HeatMeterService) -> HeatMeterResponse]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:49:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:50:9-13: Unexpected keyword argument `icon` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:51:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:58:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:59:9-13: Unexpected keyword argument `icon` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:60:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:67:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:68:9-13: Unexpected keyword argument `icon` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:69:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:76:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:77:9-13: Unexpected keyword argument `icon` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:78:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:81:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:85:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:86:9-13: Unexpected keyword argument `icon` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:87:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:90:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:94:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:95:9-13: Unexpected keyword argument `icon` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:96:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:99:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:103:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:104:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:105:9-13: Unexpected keyword argument `icon` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:106:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:110:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:111:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:112:9-13: Unexpected keyword argument `icon` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:113:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:117:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:118:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:119:9-13: Unexpected keyword argument `icon` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:120:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:124:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:125:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:128:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:132:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:133:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:136:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:140:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:141:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:144:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:148:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:149:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:151:9-13: Unexpected keyword argument `icon` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:152:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:156:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:157:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:159:9-13: Unexpected keyword argument `icon` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:160:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:164:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:165:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:168:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:172:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:173:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:176:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:180:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:181:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:184:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:188:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:189:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:192:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:196:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:197:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:200:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:204:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:205:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:208:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:212:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:213:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:216:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:220:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:221:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:224:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:228:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:229:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:230:9-13: Unexpected keyword argument `icon` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:231:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:235:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:236:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:237:9-13: Unexpected keyword argument `icon` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:238:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:242:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:243:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:244:9-13: Unexpected keyword argument `icon` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:246:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:252:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:253:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:255:9-13: Unexpected keyword argument `icon` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:256:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:260:9-12: Unexpected keyword argument `key` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:261:9-13: Unexpected keyword argument `name` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:262:9-24: Unexpected keyword argument `entity_category` in function `HeatMeterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:298:5-23: Class member `HeatMeterSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/landisgyr_heat_meter/sensor.py:298:5-23: Class member `HeatMeterSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lannouncer/notify.py:59:18-37: Argument `() -> None` is not assignable to parameter `target` with type `((**tuple[*@_]) -> Any) | Coroutine[Any, Any, Any]` in function `homeassistant.core.HomeAssistant.add_job` [bad-argument-type] +ERROR homeassistant/components/lastfm/config_flow.py:83:9-31: Class member `LastFmConfigFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lastfm/coordinator.py:41:5-17: Class member `LastFMDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/launch_library/__init__.py:44:29-73: Argument `dict[str, int | str]` is not assignable to parameter `filters` with type `Mapping[str, str] | None` in function `pylaunches.api.PyLaunches.launch_upcoming` [bad-argument-type] +ERROR homeassistant/components/launch_library/__init__.py:73:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/launch_library/diagnostics.py:30:16-23: Returned type `TypedDict[Event] | TypedDict[Launch]` is not assignable to declared return type `dict[str, Any] | None` [bad-return] +ERROR homeassistant/components/launch_library/diagnostics.py:33:39-76: Argument `list[TypedDict[Launch]]` is not assignable to parameter `data` with type `list[TypedDict[Event] | TypedDict[Launch]]` in function `_first_element` [bad-argument-type] +ERROR homeassistant/components/launch_library/diagnostics.py:35:13-57: Object of class `StarshipResponse` has no attribute `upcoming` [missing-attribute] +ERROR homeassistant/components/launch_library/diagnostics.py:38:13-57: Object of class `StarshipResponse` has no attribute `upcoming` [missing-attribute] +ERROR homeassistant/components/launch_library/sensor.py:44:9-12: Unexpected keyword argument `key` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:45:9-13: Unexpected keyword argument `icon` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:49:28-53: TypedDict `Event` does not have key `launch_service_provider` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:50:23-28: TypedDict `Event` does not have key `pad` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:51:28-33: TypedDict `Event` does not have key `pad` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:52:41-46: TypedDict `Event` does not have key `pad` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:56:9-12: Unexpected keyword argument `key` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:57:9-13: Unexpected keyword argument `icon` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:60:47-52: TypedDict `Event` does not have key `net` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:62:32-46: TypedDict `Event` does not have key `window_start` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:63:30-42: TypedDict `Event` does not have key `window_end` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:64:31-45: TypedDict `Event` does not have key `window_start` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:68:9-12: Unexpected keyword argument `key` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:69:9-13: Unexpected keyword argument `icon` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:72:40-53: TypedDict `Event` does not have key `probability` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:76:9-12: Unexpected keyword argument `key` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:77:9-13: Unexpected keyword argument `icon` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:79:32-40: TypedDict `Event` does not have key `status` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:83:9-12: Unexpected keyword argument `key` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:84:9-13: Unexpected keyword argument `icon` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:86:32-41: TypedDict `Event` does not have key `mission` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:88:32-41: TypedDict `Event` does not have key `mission` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:89:32-41: TypedDict `Event` does not have key `mission` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:90:31-40: TypedDict `Event` does not have key `mission` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:94:9-12: Unexpected keyword argument `key` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:95:9-13: Unexpected keyword argument `icon` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:98:47-52: TypedDict `Event` does not have key `net` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:100:25-34: TypedDict `Event` does not have key `mission` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:101:26-34: TypedDict `Event` does not have key `status` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:102:32-41: TypedDict `Event` does not have key `mission` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:103:31-40: TypedDict `Event` does not have key `mission` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:107:9-12: Unexpected keyword argument `key` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:108:9-13: Unexpected keyword argument `icon` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:109:9-24: Unexpected keyword argument `translation_key` in function `LaunchLibrarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/launch_library/sensor.py:111:47-53: TypedDict `Launch` does not have key `date` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:114:28-38: TypedDict `Launch` does not have key `location` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:115:26-37: TypedDict `Launch` does not have key `video_url` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:116:31-44: TypedDict `Launch` does not have key `description` [bad-typed-dict-key] +ERROR homeassistant/components/launch_library/sensor.py:150:5-23: Class member `LaunchLibrarySensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/launch_library/sensor.py:150:5-23: Class member `LaunchLibrarySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/laundrify/binary_sensor.py:43:5-23: Class member `LaundrifyPowerPlug._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/laundrify/binary_sensor.py:44:5-20: Class member `LaundrifyPowerPlug._attr_unique_id` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/laundrify/binary_sensor.py:44:5-20: Class member `LaundrifyPowerPlug._attr_unique_id` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/laundrify/binary_sensor.py:54:21-30: Object of class `LaundrifyDevice` has no attribute `id` [missing-attribute] +ERROR homeassistant/components/laundrify/binary_sensor.py:58:18-29: Object of class `LaundrifyDevice` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/laundrify/binary_sensor.py:60:26-38: Object of class `LaundrifyDevice` has no attribute `model` [missing-attribute] +ERROR homeassistant/components/laundrify/binary_sensor.py:61:24-46: Object of class `LaundrifyDevice` has no attribute `firmwareVersion` [missing-attribute] +ERROR homeassistant/components/laundrify/binary_sensor.py:62:41-58: Object of class `LaundrifyDevice` has no attribute `internalIP` [missing-attribute] +ERROR homeassistant/components/laundrify/binary_sensor.py:76:21-40: Object of class `LaundrifyDevice` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/laundrify/coordinator.py:25:5-17: Class member `LaundrifyUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/laundrify/sensor.py:50:67-76: Object of class `LaundrifyDevice` has no attribute `id` [missing-attribute] +ERROR homeassistant/components/laundrify/sensor.py:51:35-44: Object of class `LaundrifyDevice` has no attribute `id` [missing-attribute] +ERROR homeassistant/components/laundrify/sensor.py:81:5-23: Class member `LaundrifyEnergySensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/laundrify/sensor.py:97:40-55: Object of class `LaundrifyDevice` has no attribute `id` [missing-attribute] +ERROR homeassistant/components/laundrify/sensor.py:98:22-40: Object of class `LaundrifyDevice` has no attribute `totalEnergy` [missing-attribute] +ERROR homeassistant/components/lawn_mower/__init__.py:83:5-23: Class member `LawnMowerEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lawn_mower/__init__.py:85:5-29: Class member `LawnMowerEntity._attr_supported_features` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lawn_mower/__init__.py:109:48-65: Argument `BoundMethod[Self@LawnMowerEntity, (self: Self@LawnMowerEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/lawn_mower/__init__.py:117:48-57: Argument `BoundMethod[Self@LawnMowerEntity, (self: Self@LawnMowerEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/lawn_mower/__init__.py:125:48-58: Argument `BoundMethod[Self@LawnMowerEntity, (self: Self@LawnMowerEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/lcn/__init__.py:279:65-68: Argument `ModStatusAccessControl` is not assignable to parameter `inp` with type `type[Input]` in function `_async_fire_access_control_event` [bad-argument-type] +ERROR homeassistant/components/lcn/__init__.py:281:60-63: Argument `ModSendKeysHost` is not assignable to parameter `inp` with type `type[Input]` in function `_async_fire_send_keys_event` [bad-argument-type] +ERROR homeassistant/components/lcn/__init__.py:294:17-25: Class `Input` has no class attribute `code` [missing-attribute] +ERROR homeassistant/components/lcn/__init__.py:298:26-55: No matching overload found for function `typing.MutableMapping.update` called with arguments: (dict[str, str]) [no-matching-overload] +ERROR homeassistant/components/lcn/__init__.py:300:8-21: Class `Input` has no class attribute `periphery` [missing-attribute] +ERROR homeassistant/components/lcn/__init__.py:302:23-32: Class `Input` has no class attribute `level` [missing-attribute] +ERROR homeassistant/components/lcn/__init__.py:302:41-48: Class `Input` has no class attribute `key` [missing-attribute] +ERROR homeassistant/components/lcn/__init__.py:302:60-70: Class `Input` has no class attribute `action` [missing-attribute] +ERROR homeassistant/components/lcn/__init__.py:305:25-44: Object of class `object` has no attribute `value` [missing-attribute] +ERROR homeassistant/components/lcn/__init__.py:316:36-47: Class `Input` has no class attribute `actions` [missing-attribute] +ERROR homeassistant/components/lcn/__init__.py:320:40-48: Class `Input` has no class attribute `keys` [missing-attribute] +ERROR homeassistant/components/lcn/binary_sensor.py:76:15-67: Object of class `GroupConnection` has no attribute `request_status_binary_sensors` [missing-attribute] +ERROR homeassistant/components/lcn/climate.py:110:14-38: Class member `LcnClimate._attr_supported_features` overrides parent class `LcnEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lcn/climate.py:187:13-59: Object of class `GroupConnection` has no attribute `request_status_variable` [missing-attribute] +ERROR homeassistant/components/lcn/climate.py:190:13-59: Object of class `GroupConnection` has no attribute `request_status_variable` [missing-attribute] +ERROR homeassistant/components/lcn/climate.py:201:41-85: `float | int` is not assignable to attribute `_current_temperature` with type `None` [bad-assignment] +ERROR homeassistant/components/lcn/climate.py:205:44-88: `float | int` is not assignable to attribute `_target_temperature` with type `None` [bad-assignment] +ERROR homeassistant/components/lcn/cover.py:97:33-37: `None` is not assignable to attribute `reverse_time` with type `MotorReverseTime` [bad-assignment] +ERROR homeassistant/components/lcn/cover.py:135:17-61: Object of class `GroupConnection` has no attribute `request_status_output` [missing-attribute] +ERROR homeassistant/components/lcn/cover.py:138:17-61: Object of class `GroupConnection` has no attribute `request_status_output` [missing-attribute] +ERROR homeassistant/components/lcn/cover.py:175:5-29: Class member `LcnRelayCover._attr_supported_features` overrides parent class `LcnEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lcn/cover.py:192:13-77: `|=` is not supported between `None` and `Literal[CoverEntityFeature.SET_POSITION]` [unsupported-operation] +ERROR homeassistant/components/lcn/cover.py:258:18-62: Object of class `GroupConnection` has no attribute `request_status_relays` [missing-attribute] +ERROR homeassistant/components/lcn/cover.py:261:17-69: Object of class `GroupConnection` has no attribute `request_status_motor_position` [missing-attribute] +ERROR homeassistant/components/lcn/cover.py:286:49-67: `float` is not assignable to attribute `_attr_current_cover_position` with type `int | None` [bad-assignment] +ERROR homeassistant/components/lcn/entity.py:72:39-81: Object of class `GroupConnection` has no attribute `register_for_inputs` [missing-attribute] +ERROR homeassistant/components/lcn/helpers.py:254:15-46: Object of class `GroupConnection` has no attribute `serials_known` [missing-attribute] +ERROR homeassistant/components/lcn/helpers.py:273:12-20: `is_group` may be uninitialized [unbound-name] +ERROR homeassistant/components/lcn/helpers.py:274:29-59: Object of class `GroupConnection` has no attribute `request_name` [missing-attribute] +ERROR homeassistant/components/lcn/helpers.py:275:8-16: `is_group` may be uninitialized [unbound-name] +ERROR homeassistant/components/lcn/helpers.py:276:34-42: `is_group` may be uninitialized [unbound-name] +ERROR homeassistant/components/lcn/light.py:84:5-29: Class member `LcnOutputLight._attr_supported_features` overrides parent class `LcnEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lcn/light.py:152:15-59: Object of class `GroupConnection` has no attribute `request_status_output` [missing-attribute] +ERROR homeassistant/components/lcn/light.py:203:15-59: Object of class `GroupConnection` has no attribute `request_status_relays` [missing-attribute] +ERROR homeassistant/components/lcn/scene.py:87:31-89:14: `int` is not assignable to attribute `transition` with type `None` [bad-assignment] +ERROR homeassistant/components/lcn/schemas.py:66:9-34: Argument `Literal[UnitOfTemperature.CELSIUS]` is not assignable to parameter `container` with type `Container[Unknown]` in function `voluptuous.validators.In.__init__` [bad-argument-type] +ERROR homeassistant/components/lcn/sensor.py:132:14-32: Class member `LcnVariableSensor._attr_device_class` overrides parent class `LcnEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lcn/sensor.py:136:15-61: Object of class `GroupConnection` has no attribute `request_status_variable` [missing-attribute] +ERROR homeassistant/components/lcn/sensor.py:166:27-168:14: `LogicOpPort` is not assignable to attribute `source` with type `LedPort` [bad-assignment] +ERROR homeassistant/components/lcn/sensor.py:172:15-70: Object of class `GroupConnection` has no attribute `request_status_led_and_logic_ops` [missing-attribute] +ERROR homeassistant/components/lcn/switch.py:98:15-59: Object of class `GroupConnection` has no attribute `request_status_output` [missing-attribute] +ERROR homeassistant/components/lcn/switch.py:145:15-59: Object of class `GroupConnection` has no attribute `request_status_relays` [missing-attribute] +ERROR homeassistant/components/lcn/switch.py:186:15-61: Object of class `GroupConnection` has no attribute `request_status_variable` [missing-attribute] +ERROR homeassistant/components/lcn/switch.py:239:15-64: Object of class `GroupConnection` has no attribute `request_status_locked_keys` [missing-attribute] +ERROR homeassistant/components/ld2410_ble/__init__.py:65:38-56: Expected 0 positional arguments, got 1 in function `homeassistant.components.bluetooth.match.BluetoothCallbackMatcher.__init__` [bad-argument-count] +ERROR homeassistant/components/ld2410_ble/__init__.py:98:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/ld2410_ble/binary_sensor.py:19:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/binary_sensor.py:23:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/binary_sensor.py:61:14-32: Class member `LD2410BLEBinarySensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ld2410_ble/coordinator.py:30:5-17: Class member `LD2410BLECoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ld2410_ble/coordinator.py:74:46-72: Argument `HassJob[[_now: datetime], None]` is not assignable to parameter `action` with type `((datetime) -> Coroutine[Any, Any, None] | None) | HassJob[[datetime], Coroutine[Any, Any, None] | None]` in function `homeassistant.helpers.event.async_call_later` [bad-argument-type] +ERROR homeassistant/components/ld2410_ble/sensor.py:22:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:23:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:25:5-36: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:26:5-36: Unexpected keyword argument `entity_registry_visible_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:32:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:33:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:35:5-36: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:36:5-36: Unexpected keyword argument `entity_registry_visible_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:42:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:43:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:45:5-36: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:46:5-36: Unexpected keyword argument `entity_registry_visible_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:52:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:53:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:55:5-36: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:56:5-36: Unexpected keyword argument `entity_registry_visible_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:62:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:63:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:65:5-36: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:66:5-36: Unexpected keyword argument `entity_registry_visible_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:72:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:73:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:74:5-20: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:75:5-36: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:80:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:81:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:82:5-20: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:83:5-36: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:89:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:91:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:92:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:100:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:101:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:102:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:103:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ld2410_ble/sensor.py:157:14-32: Class member `LD2410BLESensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/leaone/sensor.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/leaone/sensor.py:39:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/leaone/sensor.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/leaone/sensor.py:48:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/leaone/sensor.py:49:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/leaone/sensor.py:52:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/leaone/sensor.py:53:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/leaone/sensor.py:59:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/leaone/sensor.py:63:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/leaone/sensor.py:64:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/leaone/sensor.py:70:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/leaone/sensor.py:71:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/leaone/sensor.py:73:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/leaone/sensor.py:123:7-34: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/led_ble/__init__.py:51:38-56: Expected 0 positional arguments, got 1 in function `homeassistant.components.bluetooth.match.BluetoothCallbackMatcher.__init__` [bad-argument-count] +ERROR homeassistant/components/led_ble/__init__.py:117:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/led_ble/light.py:47:5-29: Class member `LEDBLEEntity._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lektrico/binary_sensor.py:29:9-12: Unexpected keyword argument `key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:30:9-24: Unexpected keyword argument `translation_key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:31:9-24: Unexpected keyword argument `entity_category` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:36:9-12: Unexpected keyword argument `key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:37:9-24: Unexpected keyword argument `translation_key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:38:9-24: Unexpected keyword argument `entity_category` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:43:9-12: Unexpected keyword argument `key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:45:9-24: Unexpected keyword argument `entity_category` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:50:9-12: Unexpected keyword argument `key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:52:9-24: Unexpected keyword argument `entity_category` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:57:9-12: Unexpected keyword argument `key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:59:9-24: Unexpected keyword argument `entity_category` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:64:9-12: Unexpected keyword argument `key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:66:9-24: Unexpected keyword argument `entity_category` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:71:9-12: Unexpected keyword argument `key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:73:9-24: Unexpected keyword argument `entity_category` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:78:9-12: Unexpected keyword argument `key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:80:9-24: Unexpected keyword argument `entity_category` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:85:9-12: Unexpected keyword argument `key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:87:9-24: Unexpected keyword argument `entity_category` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:92:9-12: Unexpected keyword argument `key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:94:9-24: Unexpected keyword argument `entity_category` in function `LektricoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/binary_sensor.py:122:5-23: Class member `LektricoBinarySensor.entity_description` overrides parent class `LektricoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lektrico/binary_sensor.py:122:5-23: Class member `LektricoBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lektrico/button.py:31:9-12: Unexpected keyword argument `key` in function `LektricoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/button.py:32:9-24: Unexpected keyword argument `translation_key` in function `LektricoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/button.py:33:9-24: Unexpected keyword argument `entity_category` in function `LektricoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/button.py:37:9-12: Unexpected keyword argument `key` in function `LektricoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/button.py:38:9-24: Unexpected keyword argument `translation_key` in function `LektricoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/button.py:39:9-24: Unexpected keyword argument `entity_category` in function `LektricoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/button.py:43:9-12: Unexpected keyword argument `key` in function `LektricoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/button.py:44:9-24: Unexpected keyword argument `translation_key` in function `LektricoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/button.py:45:9-24: Unexpected keyword argument `entity_category` in function `LektricoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/button.py:49:9-12: Unexpected keyword argument `key` in function `LektricoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/button.py:51:9-24: Unexpected keyword argument `entity_category` in function `LektricoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/button.py:58:9-12: Unexpected keyword argument `key` in function `LektricoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/button.py:60:9-24: Unexpected keyword argument `entity_category` in function `LektricoButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/button.py:93:5-23: Class member `LektricoButton.entity_description` overrides parent class `LektricoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lektrico/button.py:93:5-23: Class member `LektricoButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lektrico/coordinator.py:31:5-17: Class member `LektricoDeviceDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lektrico/number.py:34:9-12: Unexpected keyword argument `key` in function `LektricoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/number.py:35:9-24: Unexpected keyword argument `translation_key` in function `LektricoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/number.py:36:9-24: Unexpected keyword argument `entity_category` in function `LektricoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/number.py:45:9-12: Unexpected keyword argument `key` in function `LektricoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/number.py:46:9-24: Unexpected keyword argument `translation_key` in function `LektricoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/number.py:47:9-24: Unexpected keyword argument `entity_category` in function `LektricoNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/number.py:79:5-23: Class member `LektricoNumber.entity_description` overrides parent class `LektricoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lektrico/number.py:79:5-23: Class member `LektricoNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lektrico/select.py:36:9-12: Unexpected keyword argument `key` in function `LektricoSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/select.py:37:9-24: Unexpected keyword argument `translation_key` in function `LektricoSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/select.py:39:9-24: Unexpected keyword argument `entity_category` in function `LektricoSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/select.py:68:5-23: Class member `LektricoSelect.entity_description` overrides parent class `LektricoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lektrico/select.py:68:5-23: Class member `LektricoSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lektrico/sensor.py:61:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:78:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:85:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:93:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:99:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:106:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:114:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:115:9-24: Unexpected keyword argument `translation_key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:121:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:122:9-24: Unexpected keyword argument `translation_key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:135:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:136:9-24: Unexpected keyword argument `translation_key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:146:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:152:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:162:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:163:9-24: Unexpected keyword argument `translation_key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:169:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:170:9-24: Unexpected keyword argument `translation_key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:176:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:177:9-24: Unexpected keyword argument `translation_key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:183:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:184:9-24: Unexpected keyword argument `translation_key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:191:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:192:9-24: Unexpected keyword argument `translation_key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:199:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:200:9-24: Unexpected keyword argument `translation_key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:211:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:219:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:230:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:231:9-24: Unexpected keyword argument `translation_key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:239:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:240:9-24: Unexpected keyword argument `translation_key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:248:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:249:9-24: Unexpected keyword argument `translation_key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:257:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:258:9-24: Unexpected keyword argument `translation_key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:265:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:266:9-24: Unexpected keyword argument `translation_key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:273:9-12: Unexpected keyword argument `key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:274:9-24: Unexpected keyword argument `translation_key` in function `LektricoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/sensor.py:320:5-23: Class member `LektricoSensor.entity_description` overrides parent class `LektricoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lektrico/sensor.py:320:5-23: Class member `LektricoSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lektrico/switch.py:28:9-12: Unexpected keyword argument `key` in function `LektricoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/switch.py:29:9-24: Unexpected keyword argument `translation_key` in function `LektricoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/switch.py:30:9-24: Unexpected keyword argument `entity_category` in function `LektricoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/switch.py:35:9-12: Unexpected keyword argument `key` in function `LektricoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/switch.py:36:9-24: Unexpected keyword argument `translation_key` in function `LektricoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/switch.py:37:9-24: Unexpected keyword argument `entity_category` in function `LektricoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/switch.py:46:9-12: Unexpected keyword argument `key` in function `LektricoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/switch.py:47:9-24: Unexpected keyword argument `translation_key` in function `LektricoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/switch.py:48:9-24: Unexpected keyword argument `entity_category` in function `LektricoSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lektrico/switch.py:86:5-23: Class member `LektricoSwitch.entity_description` overrides parent class `LektricoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lektrico/switch.py:86:5-23: Class member `LektricoSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/letpot/__init__.py:103:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/letpot/binary_sensor.py:35:9-12: Unexpected keyword argument `key` in function `LetPotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/binary_sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `LetPotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/binary_sensor.py:38:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `LetPotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/binary_sensor.py:39:9-24: Unexpected keyword argument `entity_category` in function `LetPotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/binary_sensor.py:46:9-12: Unexpected keyword argument `key` in function `LetPotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/binary_sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `LetPotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/binary_sensor.py:49:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `LetPotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/binary_sensor.py:50:9-24: Unexpected keyword argument `entity_category` in function `LetPotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/binary_sensor.py:55:9-12: Unexpected keyword argument `key` in function `LetPotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/binary_sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `LetPotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/binary_sensor.py:67:9-12: Unexpected keyword argument `key` in function `LetPotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/binary_sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `LetPotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/binary_sensor.py:70:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `LetPotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/binary_sensor.py:71:9-24: Unexpected keyword argument `entity_category` in function `LetPotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/binary_sensor.py:78:9-12: Unexpected keyword argument `key` in function `LetPotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/binary_sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `LetPotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/binary_sensor.py:81:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `LetPotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/binary_sensor.py:82:9-24: Unexpected keyword argument `entity_category` in function `LetPotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/binary_sensor.py:109:5-23: Class member `LetPotBinarySensorEntity.entity_description` overrides parent class `LetPotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/letpot/binary_sensor.py:109:5-23: Class member `LetPotBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/letpot/coordinator.py:28:5-17: Class member `LetPotDeviceCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/letpot/number.py:38:9-12: Unexpected keyword argument `key` in function `LetPotNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/number.py:39:9-24: Unexpected keyword argument `translation_key` in function `LetPotNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/number.py:70:9-24: Unexpected keyword argument `entity_category` in function `LetPotNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/number.py:73:9-12: Unexpected keyword argument `key` in function `LetPotNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/number.py:74:9-24: Unexpected keyword argument `translation_key` in function `LetPotNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/number.py:108:5-23: Class member `LetPotNumberEntity.entity_description` overrides parent class `LetPotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/letpot/number.py:108:5-23: Class member `LetPotNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/letpot/select.py:64:9-12: Unexpected keyword argument `key` in function `LetPotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/select.py:65:9-24: Unexpected keyword argument `translation_key` in function `LetPotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/select.py:83:9-24: Unexpected keyword argument `entity_category` in function `LetPotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/select.py:86:9-12: Unexpected keyword argument `key` in function `LetPotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/select.py:87:9-24: Unexpected keyword argument `translation_key` in function `LetPotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/select.py:100:9-24: Unexpected keyword argument `entity_category` in function `LetPotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/select.py:103:9-12: Unexpected keyword argument `key` in function `LetPotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/select.py:104:9-24: Unexpected keyword argument `translation_key` in function `LetPotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/select.py:116:9-24: Unexpected keyword argument `entity_category` in function `LetPotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/select.py:139:5-23: Class member `LetPotSelectEntity.entity_description` overrides parent class `LetPotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/letpot/select.py:139:5-23: Class member `LetPotSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/letpot/sensor.py:42:9-12: Unexpected keyword argument `key` in function `LetPotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/sensor.py:59:9-12: Unexpected keyword argument `key` in function `LetPotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `LetPotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/sensor.py:92:5-23: Class member `LetPotSensorEntity.entity_description` overrides parent class `LetPotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/letpot/sensor.py:92:5-23: Class member `LetPotSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/letpot/switch.py:33:9-12: Unexpected keyword argument `key` in function `LetPotSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/switch.py:34:9-24: Unexpected keyword argument `translation_key` in function `LetPotSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/switch.py:39:9-24: Unexpected keyword argument `entity_category` in function `LetPotSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/switch.py:43:9-12: Unexpected keyword argument `key` in function `LetPotSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/switch.py:44:9-24: Unexpected keyword argument `translation_key` in function `LetPotSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/switch.py:51:9-24: Unexpected keyword argument `entity_category` in function `LetPotSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/switch.py:60:9-12: Unexpected keyword argument `key` in function `LetPotSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/switch.py:61:9-24: Unexpected keyword argument `translation_key` in function `LetPotSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/switch.py:66:9-24: Unexpected keyword argument `entity_category` in function `LetPotSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/switch.py:69:9-12: Unexpected keyword argument `key` in function `LetPotSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/switch.py:70:9-24: Unexpected keyword argument `translation_key` in function `LetPotSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/switch.py:75:9-24: Unexpected keyword argument `entity_category` in function `LetPotSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/switch.py:99:5-23: Class member `LetPotSwitchEntity.entity_description` overrides parent class `LetPotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/letpot/switch.py:99:5-23: Class member `LetPotSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/letpot/time.py:34:9-12: Unexpected keyword argument `key` in function `LetPotTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/time.py:35:9-24: Unexpected keyword argument `translation_key` in function `LetPotTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/time.py:42:9-24: Unexpected keyword argument `entity_category` in function `LetPotTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/time.py:45:9-12: Unexpected keyword argument `key` in function `LetPotTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/time.py:46:9-24: Unexpected keyword argument `translation_key` in function `LetPotTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/time.py:53:9-24: Unexpected keyword argument `entity_category` in function `LetPotTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/letpot/time.py:75:5-23: Class member `LetPotTimeEntity.entity_description` overrides parent class `LetPotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/letpot/time.py:75:5-23: Class member `LetPotTimeEntity.entity_description` overrides parent class `TimeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lg_netcast/config_flow.py:114:17-44: Argument `BoundMethod[LgNetCastClient, (self: LgNetCastClient) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/lg_netcast/config_flow.py:146:17-44: Argument `BoundMethod[LgNetCastClient, (self: LgNetCastClient) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/lg_netcast/helpers.py:33:50-74: Argument `BoundMethod[LgNetCastClient, (self: LgNetCastClient) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/lg_netcast/media_player.py:130:44-64: `int` is not assignable to attribute `_channel_id` with type `None` [bad-assignment] +ERROR homeassistant/components/lg_soundbar/media_player.py:85:48-61: Argument `BoundMethod[Self@LGDevice, (self: Self@LGDevice) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/lg_soundbar/media_player.py:89:24-91:10: `temescal` is not assignable to attribute `_device` with type `None` [bad-assignment] +ERROR homeassistant/components/lg_soundbar/media_player.py:92:9-38: Object of class `NoneType` has no attribute `get_product_info` [missing-attribute] +ERROR homeassistant/components/lg_soundbar/media_player.py:93:9-34: Object of class `NoneType` has no attribute `get_mac_info` [missing-attribute] +ERROR homeassistant/components/lg_soundbar/media_player.py:155:9-28: Object of class `NoneType` has no attribute `get_eq` [missing-attribute] +ERROR homeassistant/components/lg_soundbar/media_player.py:156:9-30: Object of class `NoneType` has no attribute `get_info` [missing-attribute] +ERROR homeassistant/components/lg_soundbar/media_player.py:157:9-30: Object of class `NoneType` has no attribute `get_func` [missing-attribute] +ERROR homeassistant/components/lg_soundbar/media_player.py:158:9-34: Object of class `NoneType` has no attribute `get_settings` [missing-attribute] +ERROR homeassistant/components/lg_soundbar/media_player.py:207:9-32: Object of class `NoneType` has no attribute `set_volume` [missing-attribute] +ERROR homeassistant/components/lg_soundbar/media_player.py:211:9-30: Object of class `NoneType` has no attribute `set_mute` [missing-attribute] +ERROR homeassistant/components/lg_soundbar/media_player.py:215:9-30: Object of class `NoneType` has no attribute `set_func` [missing-attribute] +ERROR homeassistant/components/lg_soundbar/media_player.py:219:9-28: Object of class `NoneType` has no attribute `set_eq` [missing-attribute] +ERROR homeassistant/components/lg_soundbar/media_player.py:231:9-33: Object of class `NoneType` has no attribute `send_packet` [missing-attribute] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:33:9-12: Unexpected keyword argument `key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:34:9-24: Unexpected keyword argument `translation_key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:37:9-12: Unexpected keyword argument `key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:41:9-12: Unexpected keyword argument `key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:45:9-12: Unexpected keyword argument `key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:49:9-12: Unexpected keyword argument `key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:53:9-12: Unexpected keyword argument `key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:58:9-12: Unexpected keyword argument `key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:63:9-12: Unexpected keyword argument `key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:68:9-12: Unexpected keyword argument `key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:73:9-12: Unexpected keyword argument `key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:78:9-12: Unexpected keyword argument `key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:84:9-12: Unexpected keyword argument `key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `ThinQBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:92:5-133:2: `dict[str, tuple[ThinQBinarySensorEntityDescription, ...]]` is not assignable to `dict[DeviceType, tuple[ThinQBinarySensorEntityDescription, ...]]` [bad-assignment] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:146:62-148:14: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:165:5-23: Class member `ThinQBinarySensorEntity.entity_description` overrides parent class `ThinQEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lg_thinq/binary_sensor.py:165:5-23: Class member `ThinQBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lg_thinq/climate.py:32:83-47:2: `dict[str, tuple[ClimateEntityDescription, ...]]` is not assignable to `dict[DeviceType, tuple[ClimateEntityDescription, ...]]` [bad-assignment] +ERROR homeassistant/components/lg_thinq/climate.py:35:13-16: Unexpected keyword argument `key` in function `homeassistant.components.climate.ClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/climate.py:36:13-17: Unexpected keyword argument `name` in function `homeassistant.components.climate.ClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/climate.py:37:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.climate.ClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/climate.py:42:13-16: Unexpected keyword argument `key` in function `homeassistant.components.climate.ClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/climate.py:43:13-17: Unexpected keyword argument `name` in function `homeassistant.components.climate.ClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/climate.py:44:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.climate.ClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/climate.py:86:56-88:14: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/lg_thinq/climate.py:100:7-25: Field `entity_description` is declared `EntityDescription` in ancestor `class ThinQEntity: ... +`, which is not assignable to the type `ClimateEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/lg_thinq/climate.py:112:14-38: Class member `ThinQClimateEntity._attr_supported_features` overrides parent class `ThinQEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lg_thinq/climate.py:141:12-47: Object of class `PropertyState` has no attribute `support_temperature_range` [missing-attribute] +ERROR homeassistant/components/lg_thinq/climate.py:160:52-162:14: No matching overload found for function `dict.get` called with arguments: (str | None, str | None) [no-matching-overload] +ERROR homeassistant/components/lg_thinq/climate.py:164:53-75: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/lg_thinq/climate.py:166:64-168:14: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/lg_thinq/climate.py:253:35-61: Argument `str | None` is not assignable to parameter `value` with type `str` in function `thinqconnect.integration.homeassistant.api.HABridge.async_set_hvac_mode` [bad-argument-type] +ERROR homeassistant/components/lg_thinq/climate.py:296:35-63: Argument `str | None` is not assignable to parameter `value` with type `str` in function `thinqconnect.integration.homeassistant.api.HABridge.async_set_swing_mode` [bad-argument-type] +ERROR homeassistant/components/lg_thinq/climate.py:310:35-74: Argument `str | None` is not assignable to parameter `value` with type `str` in function `thinqconnect.integration.homeassistant.api.HABridge.async_set_swing_horizontal_mode` [bad-argument-type] +ERROR homeassistant/components/lg_thinq/climate.py:328:12-21: `hvac_mode` may be uninitialized [unbound-name] +ERROR homeassistant/components/lg_thinq/climate.py:328:26-35: `hvac_mode` may be uninitialized [unbound-name] +ERROR homeassistant/components/lg_thinq/climate.py:329:53-62: `hvac_mode` may be uninitialized [unbound-name] +ERROR homeassistant/components/lg_thinq/climate.py:338:16-35: `>=` is not supported between `None` and `Literal[1]` [unsupported-operation] +ERROR homeassistant/components/lg_thinq/climate.py:351:16-35: `>=` is not supported between `None` and `Literal[1]` [unsupported-operation] +ERROR homeassistant/components/lg_thinq/coordinator.py:28:5-17: Class member `DeviceDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lg_thinq/coordinator.py:41:21-50: `dict[str, PropertyState] | None` is not assignable to attribute `data` with type `dict[str, Any]` [bad-assignment] +ERROR homeassistant/components/lg_thinq/event.py:19:5-8: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/event.py:20:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/event.py:23:5-8: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/event.py:24:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/event.py:30:79-52:2: `dict[str, tuple[EventEntityDescription, ...]]` is not assignable to `dict[DeviceType, tuple[EventEntityDescription, ...]]` [bad-assignment] +ERROR homeassistant/components/lg_thinq/event.py:66:54-68:14: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/lg_thinq/event.py:82:7-23: Field `entity_description` is declared `EntityDescription` in ancestor `class ThinQEntity: ... +`, which is not assignable to the type `EventEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/lg_thinq/event.py:95:34-51: `list[str] | None` is not assignable to attribute `_attr_event_types` with type `list[str]` [bad-assignment] +ERROR homeassistant/components/lg_thinq/fan.py:38:80-55:2: `dict[str, tuple[ThinQFanEntityDescription, ...]]` is not assignable to `dict[DeviceType, tuple[ThinQFanEntityDescription, ...]]` [bad-assignment] +ERROR homeassistant/components/lg_thinq/fan.py:41:13-16: Unexpected keyword argument `key` in function `ThinQFanEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/fan.py:42:13-17: Unexpected keyword argument `name` in function `ThinQFanEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/fan.py:48:13-16: Unexpected keyword argument `key` in function `ThinQFanEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/fan.py:49:13-17: Unexpected keyword argument `name` in function `ThinQFanEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/fan.py:50:13-28: Unexpected keyword argument `translation_key` in function `ThinQFanEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/fan.py:71:52-88: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/lg_thinq/fan.py:85:7-21: Field `entity_description` is declared `EntityDescription` in ancestor `class ThinQEntity: ... +`, which is not assignable to the type `FanEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/lg_thinq/fan.py:98:14-38: Class member `ThinQFanEntity._attr_supported_features` overrides parent class `ThinQEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lg_thinq/fan.py:104:23-40: Type `None` is not iterable [not-iterable] +ERROR homeassistant/components/lg_thinq/fan.py:115:29-66: `not in` is not supported between `str` and `None` [not-iterable] +ERROR homeassistant/components/lg_thinq/number.py:26:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:27:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:30:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:31:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:34:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:36:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:39:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:42:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:47:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:50:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:52:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:55:67-83:2: `dict[Property | TimerProperty, NumberEntityDescription]` is not assignable to `dict[Property, NumberEntityDescription]` [bad-assignment] +ERROR homeassistant/components/lg_thinq/number.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:59:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:62:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:65:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:68:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:70:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:73:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:76:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:79:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:81:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/number.py:85:23-62: Cannot index into `dict[Property, NumberEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/number.py:86:23-61: Cannot index into `dict[Property, NumberEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/number.py:89:81-129:2: `dict[str, tuple[NumberEntityDescription, ...]]` is not assignable to `dict[DeviceType, tuple[NumberEntityDescription, ...]]` [bad-assignment] +ERROR homeassistant/components/lg_thinq/number.py:114:43-81: Cannot index into `dict[Property, NumberEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/number.py:143:55-145:14: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/lg_thinq/number.py:159:7-24: Field `entity_description` is declared `EntityDescription` in ancestor `class ThinQEntity: ... +`, which is not assignable to the type `NumberEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/lg_thinq/number.py:178:13-53: Object of class `EntityDescription` has no attribute `native_min_value` [missing-attribute] +ERROR homeassistant/components/lg_thinq/number.py:184:13-53: Object of class `EntityDescription` has no attribute `native_max_value` [missing-attribute] +ERROR homeassistant/components/lg_thinq/number.py:190:13-48: Object of class `EntityDescription` has no attribute `native_step` [missing-attribute] +ERROR homeassistant/components/lg_thinq/select.py:21:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:22:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:26:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:29:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:30:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:34:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:38:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:43:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:44:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:48:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:53:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:54:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:58:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:61:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:62:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:65:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:66:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:69:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:70:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:73:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:74:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:77:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:78:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:81:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:82:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:86:81-149:2: `dict[str, tuple[SelectEntityDescription, ...]]` is not assignable to `dict[DeviceType, tuple[SelectEntityDescription, ...]]` [bad-assignment] +ERROR homeassistant/components/lg_thinq/select.py:104:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:105:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:126:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:127:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/select.py:163:55-165:14: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/lg_thinq/select.py:179:7-24: Field `entity_description` is declared `EntityDescription` in ancestor `class ThinQEntity: ... +`, which is not assignable to the type `SelectEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/lg_thinq/sensor.py:39:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:51:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:63:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:68:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:74:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:79:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:81:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:84:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:91:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:97:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:104:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:109:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:114:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:121:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:127:70-143:2: `dict[Property | ThinQPropertyEx, SensorEntityDescription]` is not assignable to `dict[Property, SensorEntityDescription]` [bad-assignment] +ERROR homeassistant/components/lg_thinq/sensor.py:129:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:131:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:134:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:136:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:139:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:141:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:146:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:147:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:150:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:152:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:157:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:158:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:163:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:165:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:168:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:170:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:175:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:177:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:180:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:182:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:185:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:187:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:190:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:191:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:194:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:196:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:199:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:201:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:204:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:205:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:208:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:210:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:213:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:215:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:218:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:220:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:225:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:227:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:230:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:232:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:237:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:239:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:242:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:244:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:247:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:249:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:252:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:254:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:257:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:259:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:262:73-309:2: `dict[Property | ThinQPropertyEx, SensorEntityDescription]` is not assignable to `dict[Property, SensorEntityDescription]` [bad-assignment] +ERROR homeassistant/components/lg_thinq/sensor.py:264:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:266:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:269:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:272:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:275:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:278:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:281:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:283:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:286:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:289:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:292:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:295:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:298:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:301:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:304:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:307:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:312:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:314:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:317:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:318:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:321:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:323:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:326:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:328:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:331:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:333:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:338:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:339:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:344:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:347:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:350:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:353:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:356:66-372:2: `dict[TimerProperty, SensorEntityDescription]` is not assignable to `dict[Property, SensorEntityDescription]` [bad-assignment] +ERROR homeassistant/components/lg_thinq/sensor.py:358:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:360:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:363:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:365:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:368:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:370:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:373:67-418:2: `dict[TimerProperty, SensorEntityDescription]` is not assignable to `dict[Property, SensorEntityDescription]` [bad-assignment] +ERROR homeassistant/components/lg_thinq/sensor.py:375:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:378:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:381:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:384:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:387:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:390:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:393:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:396:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:399:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:401:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:404:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:406:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:409:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:411:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:414:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:416:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:422:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:423:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:426:23-42: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:427:23-57: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:428:23-56: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:429:23-43: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:431:81-594:2: `dict[str, tuple[SensorEntityDescription, ...]]` is not assignable to `dict[DeviceType, tuple[SensorEntityDescription, ...]]` [bad-assignment] +ERROR homeassistant/components/lg_thinq/sensor.py:441:27-58: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:442:27-57: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:443:27-69: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:444:26-57: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:445:26-56: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:456:27-69: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:457:26-57: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:458:26-56: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:472:26-57: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:473:26-56: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:478:27-47: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:489:27-46: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:490:27-61: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:491:27-47: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:517:27-69: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:518:26-57: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:519:26-56: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:524:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:525:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:542:26-51: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:556:27-48: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:557:26-57: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:561:30-76: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:566:33-77: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:567:33-82: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:568:33-83: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:576:26-57: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:577:26-56: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:578:27-69: Cannot index into `dict[Property, SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/lg_thinq/sensor.py:613:9-12: Unexpected keyword argument `key` in function `ThinQEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:614:9-24: Unexpected keyword argument `translation_key` in function `ThinQEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:620:9-12: Unexpected keyword argument `key` in function `ThinQEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:621:9-24: Unexpected keyword argument `translation_key` in function `ThinQEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:628:9-12: Unexpected keyword argument `key` in function `ThinQEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:629:9-24: Unexpected keyword argument `translation_key` in function `ThinQEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/sensor.py:647:55-649:14: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/lg_thinq/sensor.py:687:7-24: Field `entity_description` is declared `EntityDescription` in ancestor `class ThinQEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/lg_thinq/sensor.py:760:28-78: Object of class `EntityDescription` has no attribute `native_unit_of_measurement` [missing-attribute] +ERROR homeassistant/components/lg_thinq/sensor.py:789:5-23: Class member `ThinQEnergySensorEntity.entity_description` overrides parent class `ThinQEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lg_thinq/sensor.py:789:5-23: Class member `ThinQEnergySensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lg_thinq/sensor.py:838:39-844:14: `dict[Unknown, Unknown] | None` is not assignable to attribute `_attr_native_value` with type `Decimal | date | datetime | float | int | str | None` [bad-assignment] +ERROR homeassistant/components/lg_thinq/switch.py:35:5-8: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:35:45-60: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:39:5-8: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:39:46-61: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:43:86-211:2: `dict[str, tuple[ThinQSwitchEntityDescription, ...]]` is not assignable to `dict[DeviceType, tuple[ThinQSwitchEntityDescription, ...]]` [bad-assignment] +ERROR homeassistant/components/lg_thinq/switch.py:46:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:47:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:48:13-28: Unexpected keyword argument `entity_category` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:51:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:52:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:55:13-28: Unexpected keyword argument `entity_category` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:58:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:59:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:62:13-28: Unexpected keyword argument `entity_category` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:65:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:66:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:69:13-28: Unexpected keyword argument `entity_category` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:74:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:74:55-70: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:77:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:78:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:81:13-28: Unexpected keyword argument `entity_category` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:84:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:85:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:88:13-28: Unexpected keyword argument `entity_category` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:93:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:94:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:99:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:100:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:105:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:106:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:112:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:113:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:116:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:117:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:120:13-28: Unexpected keyword argument `entity_category` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:123:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:124:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:127:13-28: Unexpected keyword argument `entity_category` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:130:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:131:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:134:13-28: Unexpected keyword argument `entity_category` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:137:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:138:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:141:13-28: Unexpected keyword argument `entity_category` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:146:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:147:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:150:13-28: Unexpected keyword argument `entity_category` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:153:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:154:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:157:13-28: Unexpected keyword argument `entity_category` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:160:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:161:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:164:13-28: Unexpected keyword argument `entity_category` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:169:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:170:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:171:13-28: Unexpected keyword argument `entity_category` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:174:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:175:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:178:13-28: Unexpected keyword argument `entity_category` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:183:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:183:54-69: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:188:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:189:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:190:13-28: Unexpected keyword argument `entity_category` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:204:13-16: Unexpected keyword argument `key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:205:13-28: Unexpected keyword argument `translation_key` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:208:13-28: Unexpected keyword argument `entity_category` in function `ThinQSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/switch.py:225:55-227:14: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/lg_thinq/switch.py:245:5-23: Class member `ThinQSwitchEntity.entity_description` overrides parent class `ThinQEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lg_thinq/switch.py:245:5-23: Class member `ThinQSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lg_thinq/switch.py:246:5-23: Class member `ThinQSwitchEntity._attr_device_class` overrides parent class `ThinQEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lg_thinq/vacuum.py:24:86-31:2: `dict[str, tuple[StateVacuumEntityDescription, ...]]` is not assignable to `dict[DeviceType, tuple[StateVacuumEntityDescription, ...]]` [bad-assignment] +ERROR homeassistant/components/lg_thinq/vacuum.py:27:13-16: Unexpected keyword argument `key` in function `homeassistant.components.vacuum.StateVacuumEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/vacuum.py:28:13-17: Unexpected keyword argument `name` in function `homeassistant.components.vacuum.StateVacuumEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/vacuum.py:83:55-85:14: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/lg_thinq/vacuum.py:97:7-29: Field `entity_description` is declared `EntityDescription` in ancestor `class ThinQEntity: ... +`, which is not assignable to the type `StateVacuumEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/lg_thinq/vacuum.py:100:5-29: Class member `ThinQStateVacuumEntity._attr_supported_features` overrides parent class `ThinQEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lg_thinq/vacuum.py:114:50-73: Cannot index into `dict[str, VacuumActivity]` [bad-index] +ERROR homeassistant/components/lg_thinq/water_heater.py:29:70-38:2: `dict[str, WaterHeaterEntityDescription]` is not assignable to `dict[DeviceType, WaterHeaterEntityDescription]` [bad-assignment] +ERROR homeassistant/components/lg_thinq/water_heater.py:31:9-12: Unexpected keyword argument `key` in function `homeassistant.components.water_heater.WaterHeaterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/water_heater.py:32:9-13: Unexpected keyword argument `name` in function `homeassistant.components.water_heater.WaterHeaterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/water_heater.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.water_heater.WaterHeaterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/water_heater.py:36:9-13: Unexpected keyword argument `name` in function `homeassistant.components.water_heater.WaterHeaterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lg_thinq/water_heater.py:61:50-86: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/lg_thinq/water_heater.py:79:7-29: Field `entity_description` is declared `EntityDescription` in ancestor `class ThinQEntity: ... +`, which is not assignable to the type `WaterHeaterEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/lg_thinq/water_heater.py:90:14-38: Class member `ThinQWaterHeaterEntity._attr_supported_features` overrides parent class `ThinQEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/libre_hardware_monitor/coordinator.py:38:5-17: Class member `LibreHardwareMonitorCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/libre_hardware_monitor/sensor.py:55:14-24: Class member `LibreHardwareMonitorSensor._attr_name` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/libre_hardware_monitor/sensor.py:55:14-24: Class member `LibreHardwareMonitorSensor._attr_name` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/libre_hardware_monitor/sensor.py:56:14-32: Class member `LibreHardwareMonitorSensor._attr_native_value` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/libre_hardware_monitor/sensor.py:62:14-29: Class member `LibreHardwareMonitorSensor._attr_unique_id` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/libre_hardware_monitor/sensor.py:62:14-29: Class member `LibreHardwareMonitorSensor._attr_unique_id` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lidarr/coordinator.py:41:5-17: Class member `LidarrDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lidarr/sensor.py:76:9-12: Unexpected keyword argument `key` in function `LidarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lidarr/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `LidarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lidarr/sensor.py:85:9-12: Unexpected keyword argument `key` in function `LidarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lidarr/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `LidarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lidarr/sensor.py:90:46-55: `queue_str` is uninitialized [unbound-name] +ERROR homeassistant/components/lidarr/sensor.py:93:9-12: Unexpected keyword argument `key` in function `LidarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lidarr/sensor.py:94:9-24: Unexpected keyword argument `translation_key` in function `LidarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lidarr/sensor.py:98:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `LidarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lidarr/sensor.py:104:9-12: Unexpected keyword argument `key` in function `LidarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lidarr/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `LidarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lidarr/sensor.py:109:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `LidarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lidarr/sensor.py:137:5-23: Class member `LidarrSensor.entity_description` overrides parent class `LidarrEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lidarr/sensor.py:137:5-23: Class member `LidarrSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lifx/__init__.py:244:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/lifx/binary_sensor.py:20:5-8: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lifx/binary_sensor.py:21:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lifx/binary_sensor.py:22:5-20: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lifx/binary_sensor.py:51:14-32: Class member `LIFXHevCycleBinarySensorEntity.entity_description` overrides parent class `LIFXEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lifx/button.py:19:5-8: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lifx/button.py:21:5-20: Unexpected keyword argument `entity_category` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lifx/button.py:25:5-8: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lifx/button.py:27:5-20: Unexpected keyword argument `entity_category` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lifx/config_flow.py:147:46-58: `dict[str, None]` is not assignable to TypedDict key `title_placeholders` with type `Mapping[str, str]` [bad-typed-dict-key] +ERROR homeassistant/components/lifx/config_flow.py:149:67-79: Argument `dict[str, None]` is not assignable to parameter `description_placeholders` with type `Mapping[str, str] | None` in function `homeassistant.config_entries.ConfigFlow.async_show_form` [bad-argument-type] +ERROR homeassistant/components/lifx/config_flow.py:219:19-31: Argument `None` is not assignable to parameter `title` with type `str` in function `homeassistant.config_entries.ConfigFlow.async_create_entry` [bad-argument-type] +ERROR homeassistant/components/lifx/config_flow.py:233:25-42: `None` is not assignable to `Light` [bad-assignment] +ERROR homeassistant/components/lifx/config_flow.py:261:27-60: `str | Unknown` is not assignable to attribute `mac_addr` with type `Never` [bad-assignment] +ERROR homeassistant/components/lifx/coordinator.py:93:5-17: Class member `LIFXUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lifx/coordinator.py:139:27-60: Argument `None` is not assignable to parameter `version` with type `str` in function `awesomeversion.awesomeversion.AwesomeVersion.__new__` [bad-argument-type] +ERROR homeassistant/components/lifx/coordinator.py:147:52-83: Argument `None` is not assignable to parameter `value` with type `int` in function `homeassistant.components.lifx.util.infrared_brightness_value_to_option` [bad-argument-type] +ERROR homeassistant/components/lifx/coordinator.py:162:13-46: Argument `None` is not assignable to parameter `firmware` with type `str` in function `homeassistant.components.lifx.util.get_real_mac_addr` [bad-argument-type] +ERROR homeassistant/components/lifx/coordinator.py:200:20-40: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/lifx/coordinator.py:201:27-47: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/lifx/coordinator.py:202:27-47: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/lifx/coordinator.py:203:23-43: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/lifx/coordinator.py:209:48-71: Argument `None` is not assignable to parameter `iterable` with type `Iterable[@_]` in function `enumerate.__new__` [bad-argument-type] +ERROR homeassistant/components/lifx/coordinator.py:210:17-38: Cannot set item in `int` [unsupported-operation] +ERROR homeassistant/components/lifx/coordinator.py:294:27-31: Argument `Light` is not assignable to parameter with type `Message` [bad-argument-type] +ERROR homeassistant/components/lifx/coordinator.py:294:33-41: Argument `Message` is not assignable to parameter with type `dict[str, Any] | None` [bad-argument-type] +ERROR homeassistant/components/lifx/coordinator.py:385:47-66: Object of class `Message` has no attribute `signal` [missing-attribute] +ERROR homeassistant/components/lifx/coordinator.py:388:49-88: Enum `FirmwareEffect` can only be indexed by strings [bad-index] +ERROR homeassistant/components/lifx/coordinator.py:532:28-69: `int` is not assignable to variable `sky_type` with type `str | None` [bad-assignment] +ERROR homeassistant/components/lifx/entity.py:29:43-75: No matching overload found for function `dict.get` called with arguments: (None, Literal['LIFX Bulb']) [no-matching-overload] +ERROR homeassistant/components/lifx/light.py:120:5-29: Class member `LIFXLight._attr_supported_features` overrides parent class `LIFXEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lifx/light.py:155:16-45: `/` is not supported between `None` and `Literal[65535]` [unsupported-operation] +ERROR homeassistant/components/lifx/light.py:156:43-75: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/lifx/light.py:161:20-48: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/lifx/light.py:315:34-49: Argument `None` is not assignable to parameter `base` with type `list[float | int | None]` in function `homeassistant.components.lifx.util.merge_hsbk` [bad-argument-type] +ERROR homeassistant/components/lifx/light.py:383:19-51: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/lifx/light.py:389:9-23: Type `None` is not iterable [not-iterable] +ERROR homeassistant/components/lifx/light.py:426:26-40: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/lifx/light.py:429:17-34: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/lifx/light.py:433:17-34: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/lifx/light.py:447:36-53: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/lifx/light.py:488:42-53: Argument `None` is not assignable to parameter `iterable` with type `Iterable[@_]` in function `enumerate.__new__` [bad-argument-type] +ERROR homeassistant/components/lifx/light.py:489:17-35: Cannot set item in `None` [unsupported-operation] +ERROR homeassistant/components/lifx/light.py:492:42-53: Argument `None` is not assignable to parameter `iterable` with type `Iterable[@_]` in function `enumerate.__new__` [bad-argument-type] +ERROR homeassistant/components/lifx/light.py:494:21-39: Cannot set item in `None` [unsupported-operation] +ERROR homeassistant/components/lifx/light.py:499:17-28: Argument `None` is not assignable to parameter `colors` with type `list[tuple[float | int, float | int, float | int, float | int]]` in function `homeassistant.components.lifx.coordinator.LIFXUpdateCoordinator.async_set_extended_color_zones` [bad-argument-type] +ERROR homeassistant/components/lifx/select.py:20:5-8: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lifx/select.py:21:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lifx/select.py:22:5-20: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lifx/select.py:27:5-8: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lifx/select.py:28:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lifx/select.py:29:5-20: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lifx/select.py:68:14-32: Class member `LIFXInfraredBrightnessSelectEntity.entity_description` overrides parent class `LIFXEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lifx/select.py:99:14-32: Class member `LIFXThemeSelectEntity.entity_description` overrides parent class `LIFXEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lifx/sensor.py:24:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lifx/sensor.py:25:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lifx/sensor.py:27:5-20: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lifx/sensor.py:29:5-36: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lifx/sensor.py:54:14-32: Class member `LIFXRssiSensor.entity_description` overrides parent class `LIFXEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lifx/util.py:82:34-48: No matching overload found for function `dict.get` called with arguments: (None) [no-matching-overload] +ERROR homeassistant/components/light/__init__.py:503:21-48: Expected 7 positional arguments, got 9 in function `homeassistant.util.color.color_rgbww_to_rgb` [bad-argument-count] +ERROR homeassistant/components/light/__init__.py:806:25-28: `rec` is uninitialized [unbound-name] +ERROR homeassistant/components/light/__init__.py:815:60-83: Argument `BoundMethod[Self@Profiles, (self: Self@Profiles) -> dict[str, Profile]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/light/__init__.py:903:5-23: Class member `LightEntity.entity_description` overrides parent class `ToggleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/light/__init__.py:919:5-29: Class member `LightEntity._attr_supported_features` overrides parent class `ToggleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/light/reproduce_state.py:154:51-64: `cm_attr_state` may be uninitialized [unbound-name] +ERROR homeassistant/components/light/reproduce_state.py:166:17-24: `service` may be uninitialized [unbound-name] +ERROR homeassistant/components/lightwave/__init__.py:5:1-39: Could not find import of `lightwave.lightwave` [missing-import] +ERROR homeassistant/components/limitlessled/light.py:9:1-31: Could not find import of `limitlessled` [missing-import] +ERROR homeassistant/components/limitlessled/light.py:10:1-39: Could not find import of `limitlessled.bridge` [missing-import] +ERROR homeassistant/components/limitlessled/light.py:11:1-37: Could not find import of `limitlessled.group` [missing-import] +ERROR homeassistant/components/limitlessled/light.py:12:1-50: Could not find import of `limitlessled.group.dimmer` [missing-import] +ERROR homeassistant/components/limitlessled/light.py:13:1-46: Could not find import of `limitlessled.group.rgbw` [missing-import] +ERROR homeassistant/components/limitlessled/light.py:14:1-48: Could not find import of `limitlessled.group.rgbww` [missing-import] +ERROR homeassistant/components/limitlessled/light.py:15:1-48: Could not find import of `limitlessled.group.white` [missing-import] +ERROR homeassistant/components/limitlessled/light.py:16:1-43: Could not find import of `limitlessled.pipeline` [missing-import] +ERROR homeassistant/components/limitlessled/light.py:17:1-43: Could not find import of `limitlessled.presets` [missing-import] +ERROR homeassistant/components/limitlessled/light.py:203:51-74: `Kwargs[_P]` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/limitlessled/light.py:229:18-42: Class member `LimitlessLEDGroup._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/limitlessled/light.py:246:38-76: `ColorMode | str` is not assignable to attribute `_fixed_color_mode` with type `None` [bad-assignment] +ERROR homeassistant/components/limitlessled/light.py:362:26-42: No matching overload found for function `min` called with arguments: (Literal[1], float) [no-matching-overload] +ERROR homeassistant/components/linkplay/__init__.py:68:36-42: Argument `LinkPlayBridge | None` is not assignable to parameter `bridge_to_remove` with type `LinkPlayBridge` in function `linkplay.controller.LinkPlayController.remove_bridge` [bad-argument-type] +ERROR homeassistant/components/linkplay/button.py:36:9-12: Unexpected keyword argument `key` in function `LinkPlayButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/linkplay/button.py:37:9-24: Unexpected keyword argument `translation_key` in function `LinkPlayButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/linkplay/button.py:39:9-24: Unexpected keyword argument `entity_category` in function `LinkPlayButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/linkplay/button.py:42:9-12: Unexpected keyword argument `key` in function `LinkPlayButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/linkplay/button.py:45:9-24: Unexpected keyword argument `entity_category` in function `LinkPlayButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/linkplay/button.py:67:5-23: Class member `LinkPlayButton.entity_description` overrides parent class `LinkPlayBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/linkplay/button.py:67:5-23: Class member `LinkPlayButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/linkplay/entity.py:42:78-87: Cannot index into `dict[DeviceAttribute, str]` [bad-index] +ERROR homeassistant/components/linkplay/entity.py:45:49-58: Cannot index into `dict[DeviceAttribute, str]` [bad-index] +ERROR homeassistant/components/linkplay/entity.py:50:70-75: Cannot index into `dict[DeviceAttribute, str]` [bad-index] +ERROR homeassistant/components/linkplay/entity.py:54:31-46: Argument `LinkPlayEndpoint` is not assignable to parameter `configuration_url` with type `URL | str | None` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/linkplay/entity.py:56:49-59: Cannot index into `dict[DeviceAttribute, str]` [bad-index] +ERROR homeassistant/components/linkplay/entity.py:62:49-59: Cannot index into `dict[DeviceAttribute, str]` [bad-index] +ERROR homeassistant/components/linkplay/media_player.py:143:5-23: Class member `LinkPlayMediaPlayerEntity._attr_device_class` overrides parent class `LinkPlayBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/linkplay/media_player.py:353:14-25: Class member `LinkPlayMediaPlayerEntity._attr_state` overrides parent class `LinkPlayBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/linkplay/media_player.py:359:14-38: Class member `LinkPlayMediaPlayerEntity._attr_supported_features` overrides parent class `LinkPlayBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/linkplay/select.py:51:9-12: Unexpected keyword argument `key` in function `LinkPlaySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/linkplay/select.py:52:9-24: Unexpected keyword argument `translation_key` in function `LinkPlaySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/linkplay/select.py:53:27-46: Argument `(bridge: LinkPlayBridge) -> Coroutine[Unknown, Unknown, str]` is not assignable to parameter `current_option_fn` with type `(LinkPlayPlayer) -> Awaitable[str]` in function `LinkPlaySelectEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/linkplay/select.py:56:21-43: Object of class `LinkPlayPlayer` has no attribute `player` [missing-attribute] +ERROR homeassistant/components/linkplay/select.py:75:28-60: Argument `LinkPlayBridge` is not assignable to parameter `bridge` with type `LinkPlayPlayer` in function `LinkPlaySelect.__init__` [bad-argument-type] +ERROR homeassistant/components/linkplay/select.py:83:5-23: Class member `LinkPlaySelect.entity_description` overrides parent class `LinkPlayBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/linkplay/select.py:83:5-23: Class member `LinkPlaySelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/linkplay/select.py:91:26-32: Argument `LinkPlayPlayer` is not assignable to parameter `bridge` with type `LinkPlayBridge` in function `homeassistant.components.linkplay.entity.LinkPlayBaseEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/linkplay/select.py:93:35-48: Object of class `LinkPlayPlayer` has no attribute `device` [missing-attribute] +ERROR homeassistant/components/linkplay/select.py:100:17-29: Argument `LinkPlayBridge` is not assignable to parameter with type `LinkPlayPlayer` [bad-argument-type] +ERROR homeassistant/components/linkplay/select.py:112:53-65: Argument `LinkPlayBridge` is not assignable to parameter with type `LinkPlayPlayer` [bad-argument-type] +ERROR homeassistant/components/linode/__init__.py:6:8-14: Could not find import of `linode` [missing-import] +ERROR homeassistant/components/linode/switch.py:73:12-28: Object of class `NoneType` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/linode/switch.py:74:13-27: Object of class `NoneType` has no attribute `boot` [missing-attribute] +ERROR homeassistant/components/linode/switch.py:78:12-28: Object of class `NoneType` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/linode/switch.py:79:13-31: Object of class `NoneType` has no attribute `shutdown` [missing-attribute] +ERROR homeassistant/components/linode/switch.py:90:49-99:14: `dict[str, Never]` is not assignable to attribute `_attr_extra_state_attributes` with type `Never` [bad-assignment] +ERROR homeassistant/components/linux_battery/sensor.py:8:1-30: Could not find import of `batinfo` [missing-import] +ERROR homeassistant/components/linux_battery/sensor.py:104:28-51: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/linux_battery/sensor.py:105:28-51: Object of class `NoneType` has no attribute `path` [missing-attribute] +ERROR homeassistant/components/linux_battery/sensor.py:106:30-55: Object of class `NoneType` has no attribute `health` [missing-attribute] +ERROR homeassistant/components/linux_battery/sensor.py:107:30-55: Object of class `NoneType` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/linux_battery/sensor.py:110:24-47: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/linux_battery/sensor.py:111:24-47: Object of class `NoneType` has no attribute `path` [missing-attribute] +ERROR homeassistant/components/linux_battery/sensor.py:112:25-49: Object of class `NoneType` has no attribute `alarm` [missing-attribute] +ERROR homeassistant/components/linux_battery/sensor.py:113:34-67: Object of class `NoneType` has no attribute `capacity_level` [missing-attribute] +ERROR homeassistant/components/linux_battery/sensor.py:114:31-61: Object of class `NoneType` has no attribute `cycle_count` [missing-attribute] +ERROR homeassistant/components/linux_battery/sensor.py:115:31-61: Object of class `NoneType` has no attribute `energy_full` [missing-attribute] +ERROR homeassistant/components/linux_battery/sensor.py:116:38-75: Object of class `NoneType` has no attribute `energy_full_design` [missing-attribute] +ERROR homeassistant/components/linux_battery/sensor.py:117:30-59: Object of class `NoneType` has no attribute `energy_now` [missing-attribute] +ERROR homeassistant/components/linux_battery/sensor.py:118:32-63: Object of class `NoneType` has no attribute `manufacturer` [missing-attribute] +ERROR homeassistant/components/linux_battery/sensor.py:119:30-59: Object of class `NoneType` has no attribute `model_name` [missing-attribute] +ERROR homeassistant/components/linux_battery/sensor.py:120:29-57: Object of class `NoneType` has no attribute `power_now` [missing-attribute] +ERROR homeassistant/components/linux_battery/sensor.py:121:33-65: Object of class `NoneType` has no attribute `serial_number` [missing-attribute] +ERROR homeassistant/components/linux_battery/sensor.py:122:26-51: Object of class `NoneType` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/linux_battery/sensor.py:123:38-75: Object of class `NoneType` has no attribute `voltage_min_design` [missing-attribute] +ERROR homeassistant/components/linux_battery/sensor.py:124:31-61: Object of class `NoneType` has no attribute `voltage_now` [missing-attribute] +ERROR homeassistant/components/litejet/config_flow.py:79:9-31: Class member `LiteJetConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/litejet/light.py:110:73-85: No matching overload found for function `int.__new__` called with arguments: (type[int], Any | None) [no-matching-overload] +ERROR homeassistant/components/litejet/trigger.py:88:26-37: Argument `() -> None` is not assignable to parameter `target` with type `((**tuple[*@_]) -> Any) | Coroutine[Any, Any, Any]` in function `homeassistant.core.HomeAssistant.add_job` [bad-argument-type] +ERROR homeassistant/components/litejet/trigger.py:110:26-37: Argument `() -> None` is not assignable to parameter `target` with type `((**tuple[*@_]) -> Any) | Coroutine[Any, Any, Any]` in function `homeassistant.core.HomeAssistant.add_job` [bad-argument-type] +ERROR homeassistant/components/litterrobot/binary_sensor.py:36:13-16: Unexpected keyword argument `key` in function `RobotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/binary_sensor.py:37:13-28: Unexpected keyword argument `translation_key` in function `RobotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/binary_sensor.py:38:13-28: Unexpected keyword argument `entity_category` in function `RobotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/binary_sensor.py:39:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `RobotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/binary_sensor.py:43:13-16: Unexpected keyword argument `key` in function `RobotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/binary_sensor.py:44:13-28: Unexpected keyword argument `translation_key` in function `RobotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/binary_sensor.py:45:13-28: Unexpected keyword argument `entity_category` in function `RobotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/binary_sensor.py:46:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `RobotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/binary_sensor.py:52:13-16: Unexpected keyword argument `key` in function `RobotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/binary_sensor.py:53:13-28: Unexpected keyword argument `translation_key` in function `RobotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/binary_sensor.py:55:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `RobotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/binary_sensor.py:61:13-16: Unexpected keyword argument `key` in function `RobotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/binary_sensor.py:62:13-28: Unexpected keyword argument `translation_key` in function `RobotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/binary_sensor.py:64:13-28: Unexpected keyword argument `entity_category` in function `RobotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/binary_sensor.py:65:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `RobotBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/binary_sensor.py:95:5-23: Class member `LitterRobotBinarySensorEntity.entity_description` overrides parent class `LitterRobotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/litterrobot/binary_sensor.py:95:5-23: Class member `LitterRobotBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/litterrobot/button.py:29:9-12: Unexpected keyword argument `key` in function `RobotButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/button.py:30:9-24: Unexpected keyword argument `translation_key` in function `RobotButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/button.py:31:9-24: Unexpected keyword argument `entity_category` in function `RobotButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/button.py:35:9-12: Unexpected keyword argument `key` in function `RobotButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/button.py:36:9-24: Unexpected keyword argument `translation_key` in function `RobotButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/button.py:37:9-24: Unexpected keyword argument `entity_category` in function `RobotButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/button.py:41:9-12: Unexpected keyword argument `key` in function `RobotButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/button.py:42:9-24: Unexpected keyword argument `translation_key` in function `RobotButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/button.py:68:5-23: Class member `LitterRobotButtonEntity.entity_description` overrides parent class `LitterRobotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/litterrobot/button.py:68:5-23: Class member `LitterRobotButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/litterrobot/coordinator.py:31:5-17: Class member `LitterRobotDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/litterrobot/select.py:29:5-20: Class member `RobotSelectEntityDescription.entity_category` overrides parent class `SelectEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/litterrobot/select.py:38:13-16: Unexpected keyword argument `key` in function `RobotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/select.py:39:13-28: Unexpected keyword argument `translation_key` in function `RobotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/select.py:40:13-32: Unexpected keyword argument `unit_of_measurement` in function `RobotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/select.py:48:13-16: Unexpected keyword argument `key` in function `RobotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/select.py:49:13-28: Unexpected keyword argument `translation_key` in function `RobotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/select.py:63:13-16: Unexpected keyword argument `key` in function `RobotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/select.py:64:13-28: Unexpected keyword argument `translation_key` in function `RobotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/select.py:78:13-16: Unexpected keyword argument `key` in function `RobotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/select.py:79:13-28: Unexpected keyword argument `translation_key` in function `RobotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/select.py:95:13-16: Unexpected keyword argument `key` in function `RobotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/select.py:96:13-28: Unexpected keyword argument `translation_key` in function `RobotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/select.py:97:13-32: Unexpected keyword argument `unit_of_measurement` in function `RobotSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/select.py:131:5-23: Class member `LitterRobotSelectEntity.entity_description` overrides parent class `LitterRobotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/litterrobot/select.py:131:5-23: Class member `LitterRobotSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/litterrobot/sensor.py:50:13-16: Unexpected keyword argument `key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:51:13-28: Unexpected keyword argument `translation_key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:58:13-16: Unexpected keyword argument `key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:59:13-28: Unexpected keyword argument `translation_key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:68:13-16: Unexpected keyword argument `key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:69:13-28: Unexpected keyword argument `translation_key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:78:13-16: Unexpected keyword argument `key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:79:13-28: Unexpected keyword argument `translation_key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:81:13-28: Unexpected keyword argument `entity_category` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:85:13-16: Unexpected keyword argument `key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:86:13-28: Unexpected keyword argument `translation_key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:87:13-28: Unexpected keyword argument `entity_category` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:121:13-16: Unexpected keyword argument `key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:122:13-28: Unexpected keyword argument `translation_key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:123:13-28: Unexpected keyword argument `entity_category` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:124:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:131:13-16: Unexpected keyword argument `key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:132:13-28: Unexpected keyword argument `translation_key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:149:13-16: Unexpected keyword argument `key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:150:13-28: Unexpected keyword argument `translation_key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:157:13-16: Unexpected keyword argument `key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:158:13-28: Unexpected keyword argument `translation_key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:167:13-16: Unexpected keyword argument `key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:168:13-28: Unexpected keyword argument `translation_key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:178:13-16: Unexpected keyword argument `key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:179:13-28: Unexpected keyword argument `translation_key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:186:13-16: Unexpected keyword argument `key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:187:13-28: Unexpected keyword argument `translation_key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:196:13-16: Unexpected keyword argument `key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:197:13-28: Unexpected keyword argument `translation_key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:206:9-12: Unexpected keyword argument `key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:213:9-12: Unexpected keyword argument `key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:214:9-24: Unexpected keyword argument `translation_key` in function `RobotSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/sensor.py:251:5-23: Class member `LitterRobotSensorEntity.entity_description` overrides parent class `LitterRobotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/litterrobot/sensor.py:251:5-23: Class member `LitterRobotSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/litterrobot/switch.py:35:5-20: Class member `RobotSwitchEntityDescription.entity_category` overrides parent class `SwitchEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/litterrobot/switch.py:43:5-8: Unexpected keyword argument `key` in function `RobotSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/switch.py:44:5-20: Unexpected keyword argument `translation_key` in function `RobotSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/switch.py:52:13-16: Unexpected keyword argument `key` in function `RobotSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/switch.py:53:13-28: Unexpected keyword argument `translation_key` in function `RobotSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/switch.py:62:13-16: Unexpected keyword argument `key` in function `RobotSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/switch.py:63:13-28: Unexpected keyword argument `translation_key` in function `RobotSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/switch.py:131:5-23: Class member `RobotSwitchEntity.entity_description` overrides parent class `LitterRobotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/litterrobot/switch.py:131:5-23: Class member `RobotSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/litterrobot/time.py:36:5-8: Unexpected keyword argument `key` in function `RobotTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/time.py:37:5-20: Unexpected keyword argument `translation_key` in function `RobotTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/time.py:38:5-20: Unexpected keyword argument `entity_category` in function `RobotTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/time.py:70:5-23: Class member `LitterRobotTimeEntity.entity_description` overrides parent class `LitterRobotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/litterrobot/time.py:70:5-23: Class member `LitterRobotTimeEntity.entity_description` overrides parent class `TimeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/litterrobot/update.py:26:5-8: Unexpected keyword argument `key` in function `homeassistant.components.update.UpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/update.py:49:7-24: Field `entity_description` is declared `EntityDescription` in ancestor `class LitterRobotEntity: ... +`, which is not assignable to the type `UpdateEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/litterrobot/update.py:53:5-29: Class member `RobotUpdateEntity._attr_supported_features` overrides parent class `LitterRobotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/litterrobot/vacuum.py:42:5-8: Unexpected keyword argument `key` in function `homeassistant.components.vacuum.StateVacuumEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/vacuum.py:42:23-38: Unexpected keyword argument `translation_key` in function `homeassistant.components.vacuum.StateVacuumEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/litterrobot/vacuum.py:71:7-25: Field `entity_description` is declared `EntityDescription` in ancestor `class LitterRobotEntity: ... +`, which is not assignable to the type `StateVacuumEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/litterrobot/vacuum.py:74:5-29: Class member `LitterRobotCleaner._attr_supported_features` overrides parent class `LitterRobotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/livisi/climate.py:68:5-29: Class member `LivisiClimate._attr_supported_features` overrides parent class `LivisiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/livisi/climate.py:93:13-41: Argument `Any | None` is not assignable to parameter `target_temperature` with type `float` in function `livisi.aiolivisi.AioLivisi.async_vrcc_set_temperature` [bad-argument-type] +ERROR homeassistant/components/livisi/config_flow.py:25:38-42: `None` is not assignable to attribute `aio_livisi` with type `AioLivisi` [bad-assignment] +ERROR homeassistant/components/livisi/config_flow.py:78:27-42: `controller_data` may be uninitialized [unbound-name] +ERROR homeassistant/components/livisi/config_flow.py:82:13-28: `controller_data` may be uninitialized [unbound-name] +ERROR homeassistant/components/livisi/coordinator.py:35:5-17: Class member `LivisiDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/livisi/coordinator.py:89:32-47: `controller_type` may be uninitialized [unbound-name] +ERROR homeassistant/components/livisi/coordinator.py:98:36-100:10: `dict[str, Any] | None` is not assignable to `dict[str, Any]` [bad-assignment] +ERROR homeassistant/components/livisi/coordinator.py:107:42-84: `dict[str, Any]` is not assignable to `list[dict[str, Any]]` [bad-assignment] +ERROR homeassistant/components/local_calendar/calendar.py:100:55-70: Argument `() -> list[CalendarEvent]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/local_calendar/calendar.py:112:62-72: Argument `() -> CalendarEvent | None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/local_calendar/calendar.py:175:56-66: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/local_calendar/calendar.py:220:13-24: `-` is not supported between `datetime` and `date` [unsupported-operation] +ERROR homeassistant/components/local_calendar/store.py:23:60-70: Argument `BoundMethod[Self@LocalCalendarStore, (self: Self@LocalCalendarStore) -> str]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/local_todo/store.py:21:60-70: Argument `BoundMethod[Self@LocalTodoListStore, (self: Self@LocalTodoListStore) -> str]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/local_todo/todo.py:155:25-28: `due` may be uninitialized [unbound-name] +ERROR homeassistant/components/local_todo/todo.py:176:51-84: Unpacked argument `tuple[str, Todo]` is not assignable to parameter `*args` with type `tuple[str, Todo, str | None, Range]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/locative/device_tracker.py:52:34-54:10: `() -> None` is not assignable to attribute `_unsub_dispatcher` with type `None` [bad-assignment] +ERROR homeassistant/components/locative/device_tracker.py:58:9-31: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/lock/__init__.py:116:5-23: Class member `LockEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lock/__init__.py:125:5-16: Class member `LockEntity._attr_state` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lock/__init__.py:126:5-29: Class member `LockEntity._attr_supported_features` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lock/device_action.py:89:17-24: `service` may be uninitialized [unbound-name] +ERROR homeassistant/components/lock/reproduce_state.py:64:17-24: `service` may be uninitialized [unbound-name] +ERROR homeassistant/components/logbook/processor.py:244:16-29: `is_continuous` may be uninitialized [unbound-name] +ERROR homeassistant/components/logbook/processor.py:365:55-65: Cannot index into `dict[EventType[Any] | str, tuple[str, (LazyEventPartialState) -> dict[str, Any]]]` [bad-index] +ERROR homeassistant/components/logbook/rest_api.py:82:40-51: `datetime_dt` may be uninitialized [unbound-name] +ERROR homeassistant/components/logbook/rest_api.py:85:25-36: `datetime_dt` may be uninitialized [unbound-name] +ERROR homeassistant/components/logbook/websocket_api.py:268:12-22: `start_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/logbook/websocket_api.py:268:26-36: `start_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/logbook/websocket_api.py:279:23-33: `start_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/logbook/websocket_api.py:288:60-70: `start_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/logbook/websocket_api.py:311:13-23: `start_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/logbook/websocket_api.py:377:9-19: `start_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/logbook/websocket_api.py:424:29-39: `start_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/london_air/sensor.py:141:26-84: Cannot set item in `dict[str, None]` [unsupported-operation] +ERROR homeassistant/components/london_underground/config_flow.py:36:9-31: Class member `LondonUndergroundConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/components/lookin/__init__.py:81:78-82: Argument `None` is not assignable to parameter `device_id` with type `str` in function `aiolookin.protocol.start_lookin_udp` [bad-argument-type] +ERROR homeassistant/components/lookin/__init__.py:82:20-39: Returned type `LookinUDPSubscriptions | None` is not assignable to declared return type `LookinUDPSubscriptions` [bad-return] +ERROR homeassistant/components/lookin/__init__.py:157:33-44: Argument `str | None` is not assignable to parameter `value` with type `str` in function `aiolookin.models.MeteoSensor.update_from_value` [bad-argument-type] +ERROR homeassistant/components/lookin/__init__.py:178:27-44: `meteo_coordinator` may be uninitialized [unbound-name] +ERROR homeassistant/components/lookin/climate.py:96:5-29: Class member `ConditionerEntity._attr_supported_features` overrides parent class `LookinCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lookin/climate.py:103:5-20: Class member `ConditionerEntity._attr_fan_modes` overrides parent class `ClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lookin/climate.py:104:5-22: Class member `ConditionerEntity._attr_swing_modes` overrides parent class `ClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lookin/climate.py:183:18-38: Argument `str | None` is not assignable to parameter `uuid` with type `str` in function `aiolookin.protocol.LookInHttpProtocol.update_conditioner` [bad-argument-type] +ERROR homeassistant/components/lookin/climate.py:204:52-67: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/lookin/climate.py:205:49-65: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/lookin/climate.py:217:42-53: Argument `str | None` is not assignable to parameter `status` with type `str` in function `aiolookin.models.Climate.update_from_status` [bad-argument-type] +ERROR homeassistant/components/lookin/coordinator.py:50:5-17: Class member `LookinDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lookin/entity.py:161:34-53: Argument `str | None` is not assignable to parameter `status` with type `str` in function `LookinPowerPushRemoteEntity._update_from_status` [bad-argument-type] +ERROR homeassistant/components/lookin/entity.py:175:34-45: Argument `str | None` is not assignable to parameter `status` with type `str` in function `LookinPowerPushRemoteEntity._update_from_status` [bad-argument-type] +ERROR homeassistant/components/lookin/media_player.py:85:14-32: Class member `LookinMedia._attr_device_class` overrides parent class `LookinPowerPushRemoteEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lookin/media_player.py:139:14-25: Class member `LookinMedia._attr_state` overrides parent class `LookinPowerPushRemoteEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lookin/sensor.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lookin/sensor.py:26:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lookin/sensor.py:32:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lookin/sensor.py:33:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lookin/sensor.py:66:14-32: Class member `LookinSensorEntity.entity_description` overrides parent class `LookinDeviceCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/loqed/coordinator.py:76:5-17: Class member `LoqedDataCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/loqed/lock.py:32:5-29: Class member `LoqedLock._attr_supported_features` overrides parent class `LoqedEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/loqed/sensor.py:24:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/loqed/sensor.py:25:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/loqed/sensor.py:29:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/loqed/sensor.py:30:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/loqed/sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/loqed/sensor.py:36:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/loqed/sensor.py:61:14-32: Class member `LoqedSensor.entity_description` overrides parent class `LoqedEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/loqed/sensor.py:67:16-37: Returned type `Lock` is not assignable to declared return type `TypedDict[StatusMessage]` [bad-return] +ERROR homeassistant/components/lovelace/__init__.py:333:58-66: Unpacked keyword argument `bool | dict[str, str] | str | Unknown | None` is not assignable to parameter `sidebar_title` with type `str | None` in function `homeassistant.components.frontend.async_register_built_in_panel` [bad-argument-type] +ERROR homeassistant/components/lovelace/__init__.py:333:58-66: Unpacked keyword argument `bool | dict[str, str] | str | Unknown | None` is not assignable to parameter `sidebar_icon` with type `str | None` in function `homeassistant.components.frontend.async_register_built_in_panel` [bad-argument-type] +ERROR homeassistant/components/lovelace/__init__.py:333:58-66: Unpacked keyword argument `bool | dict[str, str] | str | Unknown | None` is not assignable to parameter `sidebar_default_visible` with type `bool` in function `homeassistant.components.frontend.async_register_built_in_panel` [bad-argument-type] +ERROR homeassistant/components/lovelace/__init__.py:333:58-66: Unpacked keyword argument `bool | dict[str, str] | str | Unknown | None` is not assignable to parameter `frontend_url_path` with type `str | None` in function `homeassistant.components.frontend.async_register_built_in_panel` [bad-argument-type] +ERROR homeassistant/components/lovelace/__init__.py:333:58-66: Unpacked keyword argument `bool | dict[str, str] | str | Unknown | None` is not assignable to parameter `config` with type `dict[str, Any] | None` in function `homeassistant.components.frontend.async_register_built_in_panel` [bad-argument-type] +ERROR homeassistant/components/lovelace/__init__.py:333:58-66: Unpacked keyword argument `bool | dict[str, str] | str | Unknown | None` is not assignable to parameter `require_admin` with type `bool` in function `homeassistant.components.frontend.async_register_built_in_panel` [bad-argument-type] +ERROR homeassistant/components/lovelace/__init__.py:333:58-66: Unpacked keyword argument `bool | dict[str, str] | str | Unknown | None` is not assignable to parameter `update` with type `bool` in function `homeassistant.components.frontend.async_register_built_in_panel` [bad-argument-type] +ERROR homeassistant/components/lovelace/__init__.py:333:58-66: Unpacked keyword argument `bool | dict[str, str] | str | Unknown | None` is not assignable to parameter `config_panel_domain` with type `str | None` in function `homeassistant.components.frontend.async_register_built_in_panel` [bad-argument-type] +ERROR homeassistant/components/lovelace/resources.py:153:15-27: Class member `ResourceStorageCollectionWebsocket.ws_list_item` overrides parent class `DictStorageCollectionWebsocket` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lovelace/websocket.py:61:43-49: `result` may be uninitialized [unbound-name] +ERROR homeassistant/components/luci/device_tracker.py:7:1-40: Could not find import of `openwrt_luci_rpc` [missing-import] +ERROR homeassistant/components/luci/device_tracker.py:101:29-108:10: `list[Unknown]` is not assignable to attribute `last_results` with type `dict[Unknown, Unknown]` [bad-assignment] +ERROR homeassistant/components/luftdaten/coordinator.py:28:5-17: Class member `LuftdatenDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/luftdaten/sensor.py:32:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/luftdaten/sensor.py:38:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/luftdaten/sensor.py:44:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/luftdaten/sensor.py:50:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/luftdaten/sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/luftdaten/sensor.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/luftdaten/sensor.py:63:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/luftdaten/sensor.py:108:14-32: Class member `SensorCommunitySensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lunatone/__init__.py:45:20-40: Object of class `NoneType` has no attribute `device` [missing-attribute] +ERROR homeassistant/components/lunatone/__init__.py:50:16-36: Object of class `NoneType` has no attribute `device` [missing-attribute] +ERROR homeassistant/components/lunatone/__init__.py:50:53-73: Object of class `NoneType` has no attribute `device` [missing-attribute] +ERROR homeassistant/components/lunatone/coordinator.py:38:5-17: Class member `LunatoneInfoDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lunatone/coordinator.py:70:5-17: Class member `LunatoneDevicesDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lupusec/__init__.py:36:59-38:10: Unpacked argument `tuple[Any, Any, Any]` is not assignable to parameter `*args` with type `tuple[Unknown, Unknown, Unknown, bool | Unknown]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/lupusec/alarm_control_panel.py:42:5-29: Class member `LupusecAlarm._attr_supported_features` overrides parent class `LupusecDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lupusec/alarm_control_panel.py:49:45-72: No attribute `LupusecAlarm` in module `lupupy.devices` [missing-attribute] +ERROR homeassistant/components/lupusec/alarm_control_panel.py:64:12-35: Object of class `LupusecDevice` has no attribute `is_standby` [missing-attribute] +ERROR homeassistant/components/lupusec/alarm_control_panel.py:66:14-34: Object of class `LupusecDevice` has no attribute `is_away` [missing-attribute] +ERROR homeassistant/components/lupusec/alarm_control_panel.py:68:14-34: Object of class `LupusecDevice` has no attribute `is_home` [missing-attribute] +ERROR homeassistant/components/lupusec/alarm_control_panel.py:70:14-45: Object of class `LupusecDevice` has no attribute `is_alarm_triggered` [missing-attribute] +ERROR homeassistant/components/lupusec/alarm_control_panel.py:78:9-30: Object of class `LupusecDevice` has no attribute `set_away` [missing-attribute] +ERROR homeassistant/components/lupusec/alarm_control_panel.py:82:9-33: Object of class `LupusecDevice` has no attribute `set_standby` [missing-attribute] +ERROR homeassistant/components/lupusec/alarm_control_panel.py:86:9-30: Object of class `LupusecDevice` has no attribute `set_home` [missing-attribute] +ERROR homeassistant/components/lupusec/binary_sensor.py:53:16-34: Object of class `LupusecDevice` has no attribute `is_on` [missing-attribute] +ERROR homeassistant/components/lupusec/config_flow.py:70:42-84: Unpacked argument `tuple[str, str, str]` is not assignable to parameter `*args` with type `tuple[Unknown, Unknown, Unknown, bool | Unknown]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/lupusec/switch.py:47:9-31: Object of class `LupusecDevice` has no attribute `switch_on` [missing-attribute] +ERROR homeassistant/components/lupusec/switch.py:51:9-32: Object of class `LupusecDevice` has no attribute `switch_off` [missing-attribute] +ERROR homeassistant/components/lupusec/switch.py:56:16-34: Object of class `LupusecDevice` has no attribute `is_on` [missing-attribute] +ERROR homeassistant/components/lutron/__init__.py:127:46-78: Argument `tuple[Unknown, Unknown, Unknown, Unknown | None]` is not assignable to parameter `object` with type `tuple[str, Keypad, Button, Led]` in function `list.append` [bad-argument-type] +ERROR homeassistant/components/lutron/binary_sensor.py:49:5-19: Class member `LutronOccupancySensor._lutron_device` overrides parent class `LutronDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron/binary_sensor.py:50:5-23: Class member `LutronOccupancySensor._attr_device_class` overrides parent class `LutronDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron/config_flow.py:62:48-52: `guid` may be uninitialized [unbound-name] +ERROR homeassistant/components/lutron/config_flow.py:81:9-31: Class member `LutronConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron/cover.py:48:5-29: Class member `LutronCover._attr_supported_features` overrides parent class `LutronDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron/cover.py:53:5-19: Class member `LutronCover._lutron_device` overrides parent class `LutronDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron/event.py:62:27-31: `name` may be uninitialized [unbound-name] +ERROR homeassistant/components/lutron/event.py:71:48-52: `name` may be uninitialized [unbound-name] +ERROR homeassistant/components/lutron/event.py:72:28-32: `name` may be uninitialized [unbound-name] +ERROR homeassistant/components/lutron/event.py:77:60-77: Argument `BoundMethod[Self@LutronEventEntity, (self: Self@LutronEventEntity, button: Button, _context: None, event: LutronEvent, _params: dict[Unknown, Unknown]) -> None]` is not assignable to parameter `handler` with type `(LutronEntity, Any, LutronEvent, dict[Unknown, Unknown]) -> None` in function `pylutron.LutronEntity.subscribe` [bad-argument-type] +ERROR homeassistant/components/lutron/fan.py:43:5-29: Class member `LutronFan._attr_supported_features` overrides parent class `LutronDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron/fan.py:48:5-19: Class member `LutronFan._lutron_device` overrides parent class `LutronDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron/light.py:63:5-29: Class member `LutronLight._attr_supported_features` overrides parent class `LutronDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron/light.py:64:5-19: Class member `LutronLight._lutron_device` overrides parent class `LutronDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron/scene.py:38:5-19: Class member `LutronScene._lutron_device` overrides parent class `LutronKeypad` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron/switch.py:45:5-19: Class member `LutronSwitch._lutron_device` overrides parent class `LutronDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron/switch.py:73:5-19: Class member `LutronLed._lutron_device` overrides parent class `LutronKeypad` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron/switch.py:90:37-38: Argument `Literal[1]` is not assignable to parameter `new_state` with type `bool` in function `pylutron.Led.state` [bad-argument-type] +ERROR homeassistant/components/lutron/switch.py:94:37-38: Argument `Literal[0]` is not assignable to parameter `new_state` with type `bool` in function `pylutron.Led.state` [bad-argument-type] +ERROR homeassistant/components/lutron_caseta/__init__.py:291:40-46: `keypad` may be uninitialized [unbound-name] +ERROR homeassistant/components/lutron_caseta/__init__.py:292:35-41: `keypad` may be uninitialized [unbound-name] +ERROR homeassistant/components/lutron_caseta/__init__.py:303:9-15: `keypad` may be uninitialized [unbound-name] +ERROR homeassistant/components/lutron_caseta/__init__.py:483:13-485:14: Argument `(event_type: str, button_id: Unknown) -> Unknown` is not assignable to parameter `callback_` with type `(str) -> None` in function `pylutron_caseta.smartbridge.Smartbridge.add_button_subscriber` [bad-argument-type] +ERROR homeassistant/components/lutron_caseta/binary_sensor.py:43:5-23: Class member `LutronOccupancySensor._attr_device_class` overrides parent class `LutronCasetaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron_caseta/binary_sensor.py:50:14-24: Class member `LutronOccupancySensor._attr_name` overrides parent class `LutronCasetaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron_caseta/binary_sensor.py:55:18-27: Argument `UndefinedType | str | None` is not assignable to parameter `name` with type `str | None` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/lutron_caseta/button.py:56:57-68: `device_name` may be uninitialized [unbound-name] +ERROR homeassistant/components/lutron_caseta/button.py:82:14-24: Class member `LutronCasetaButton._attr_name` overrides parent class `LutronCasetaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron_caseta/config_flow.py:111:56-78: Argument `BoundMethod[Self@LutronCasetaFlowHandler, (self: Self@LutronCasetaFlowHandler) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/lutron_caseta/cover.py:32:5-29: Class member `LutronCasetaShade._attr_supported_features` overrides parent class `LutronCasetaUpdatableEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron_caseta/cover.py:38:5-23: Class member `LutronCasetaShade._attr_device_class` overrides parent class `LutronCasetaUpdatableEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron_caseta/cover.py:107:5-29: Class member `LutronCasetaTiltOnlyBlind._attr_supported_features` overrides parent class `LutronCasetaUpdatableEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron_caseta/cover.py:113:5-23: Class member `LutronCasetaTiltOnlyBlind._attr_device_class` overrides parent class `LutronCasetaUpdatableEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron_caseta/entity.py:43:14-24: Class member `LutronCasetaEntity._attr_name` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron_caseta/fan.py:47:5-29: Class member `LutronCasetaFan._attr_supported_features` overrides parent class `LutronCasetaUpdatableEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron_caseta/light.py:87:5-29: Class member `LutronCasetaLight._attr_supported_features` overrides parent class `LutronCasetaUpdatableEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lutron_caseta/light.py:169:29-39: Argument `Unknown | None` is not assignable to parameter `enabled` with type `bool` in function `pylutron_caseta.smartbridge.Smartbridge.set_warm_dim` [bad-argument-type] +ERROR homeassistant/components/lutron_caseta/light.py:185:36-47: Argument `float` is not assignable to parameter `hue` with type `int` in function `pylutron_caseta.color_value.FullColorValue.__init__` [bad-argument-type] +ERROR homeassistant/components/lutron_caseta/light.py:185:49-60: Argument `float` is not assignable to parameter `saturation` with type `int` in function `pylutron_caseta.color_value.FullColorValue.__init__` [bad-argument-type] +ERROR homeassistant/components/lutron_caseta/switch.py:47:14-24: Class member `LutronCasetaLight._attr_name` overrides parent class `LutronCasetaUpdatableEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lw12wifi/light.py:8:8-12: Could not find import of `lw12` [missing-import] +ERROR homeassistant/components/lw12wifi/light.py:124:31-81: `tuple[int, int, int]` is not assignable to attribute `_rgb_color` with type `list[int]` [bad-assignment] +ERROR homeassistant/components/lw12wifi/light.py:145:23-27: `Literal[True]` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/lw12wifi/light.py:150:23-28: `Literal[False]` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/lyric/climate.py:133:21-24: Unexpected keyword argument `key` in function `homeassistant.components.climate.ClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lyric/climate.py:134:21-25: Unexpected keyword argument `name` in function `homeassistant.components.climate.ClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lyric/climate.py:165:5-23: Class member `LyricClimate.entity_description` overrides parent class `LyricDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lyric/climate.py:219:18-42: Class member `LyricClimate._attr_supported_features` overrides parent class `LyricDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lyric/coordinator.py:29:5-17: Class member `LyricDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lyric/sensor.py:61:9-12: Unexpected keyword argument `key` in function `LyricSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lyric/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `LyricSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lyric/sensor.py:69:9-12: Unexpected keyword argument `key` in function `LyricSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lyric/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `LyricSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lyric/sensor.py:78:9-12: Unexpected keyword argument `key` in function `LyricSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lyric/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `LyricSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lyric/sensor.py:86:9-12: Unexpected keyword argument `key` in function `LyricSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lyric/sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `LyricSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lyric/sensor.py:95:9-12: Unexpected keyword argument `key` in function `LyricSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lyric/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `LyricSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lyric/sensor.py:98:33-62: `get_datetime_from_future_time` is uninitialized [unbound-name] +ERROR homeassistant/components/lyric/sensor.py:106:9-12: Unexpected keyword argument `key` in function `LyricSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lyric/sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `LyricSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lyric/sensor.py:108:33-52: `get_setpoint_status` is uninitialized [unbound-name] +ERROR homeassistant/components/lyric/sensor.py:121:9-12: Unexpected keyword argument `key` in function `LyricSensorAccessoryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lyric/sensor.py:122:9-24: Unexpected keyword argument `translation_key` in function `LyricSensorAccessoryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lyric/sensor.py:129:9-12: Unexpected keyword argument `key` in function `LyricSensorAccessoryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lyric/sensor.py:130:9-24: Unexpected keyword argument `translation_key` in function `LyricSensorAccessoryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/lyric/sensor.py:195:5-23: Class member `LyricSensor.entity_description` overrides parent class `LyricDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lyric/sensor.py:195:5-23: Class member `LyricSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lyric/sensor.py:227:5-23: Class member `LyricAccessorySensor.entity_description` overrides parent class `LyricAccessoryEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/lyric/sensor.py:227:5-23: Class member `LyricAccessorySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/madvr/binary_sensor.py:33:9-12: Unexpected keyword argument `key` in function `MadvrBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/binary_sensor.py:34:9-24: Unexpected keyword argument `translation_key` in function `MadvrBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/binary_sensor.py:38:9-12: Unexpected keyword argument `key` in function `MadvrBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/binary_sensor.py:39:9-24: Unexpected keyword argument `translation_key` in function `MadvrBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/binary_sensor.py:43:9-12: Unexpected keyword argument `key` in function `MadvrBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/binary_sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `MadvrBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/binary_sensor.py:48:9-12: Unexpected keyword argument `key` in function `MadvrBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/binary_sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `MadvrBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/binary_sensor.py:70:5-23: Class member `MadvrBinarySensor.entity_description` overrides parent class `MadVREntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/madvr/binary_sensor.py:70:5-23: Class member `MadvrBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/madvr/coordinator.py:24:5-17: Class member `MadVRCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/madvr/sensor.py:75:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:81:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:84:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:90:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:93:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:99:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:102:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:108:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:111:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:113:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:116:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:118:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:121:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:124:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:129:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:131:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:136:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:138:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:143:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:145:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:150:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:152:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:157:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:159:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:162:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:165:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:167:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:170:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:172:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:175:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:178:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:180:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:183:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:185:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:190:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:192:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:197:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:199:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:204:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:206:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:211:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:213:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:214:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:217:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:219:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:222:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:224:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:225:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:228:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:230:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:231:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:234:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:236:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:237:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:240:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:242:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:245:9-12: Unexpected keyword argument `key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:247:9-24: Unexpected keyword argument `translation_key` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:248:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MadvrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/madvr/sensor.py:273:14-32: Class member `MadvrSensor.entity_description` overrides parent class `MadVREntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/madvr/sensor.py:273:14-32: Class member `MadvrSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mailgun/notify.py:75:24-74: `Client` is not assignable to attribute `_client` with type `None` [bad-assignment] +ERROR homeassistant/components/mailgun/notify.py:76:45-64: Object of class `NoneType` has no attribute `domain` [missing-attribute] +ERROR homeassistant/components/mailgun/notify.py:77:24-43: Object of class `NoneType` has no attribute `domain` [missing-attribute] +ERROR homeassistant/components/mailgun/notify.py:105:20-42: Object of class `NoneType` has no attribute `send_mail` [missing-attribute] +ERROR homeassistant/components/manual/alarm_control_panel.py:251:14-38: Class member `ManualAlarm._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/manual_mqtt/alarm_control_panel.py:361:26-42: `datetime` is not assignable to attribute `_state_ts` with type `None` [bad-assignment] +ERROR homeassistant/components/manual_mqtt/alarm_control_panel.py:405:23-28: `str` is not assignable to attribute `_state` with type `AlarmControlPanelState` [bad-assignment] +ERROR homeassistant/components/manual_mqtt/alarm_control_panel.py:406:26-42: `datetime` is not assignable to attribute `_state_ts` with type `None` [bad-assignment] +ERROR homeassistant/components/mastodon/coordinator.py:34:5-17: Class member `MastodonCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mastodon/sensor.py:35:9-12: Unexpected keyword argument `key` in function `MastodonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mastodon/sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `MastodonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mastodon/sensor.py:41:9-12: Unexpected keyword argument `key` in function `MastodonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mastodon/sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `MastodonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mastodon/sensor.py:47:9-12: Unexpected keyword argument `key` in function `MastodonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mastodon/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `MastodonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mastodon/sensor.py:76:5-23: Class member `MastodonSensorEntity.entity_description` overrides parent class `MastodonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mastodon/sensor.py:76:5-23: Class member `MastodonSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matrix/__init__.py:79:50-60: Cannot extend final class `Pattern` [invalid-inheritance] +ERROR homeassistant/components/matrix/__init__.py:208:44-76: Argument `tuple[type[ReactionEvent], type[RoomMessageText]]` is not assignable to parameter `filter` with type `tuple[type[Event], None] | type[Event]` in function `nio.client.base_client.Client.add_event_callback` [bad-argument-type] +ERROR homeassistant/components/matrix/__init__.py:259:71-81: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/matrix/__init__.py:348:35-42: `room_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/matrix/__init__.py:387:58-389:14: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[PathLike[str] | str, dict[str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None]]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/matrix/__init__.py:422:27-49: Argument `str | None` is not assignable to parameter `device_id` with type `str` in function `nio.client.base_client.Client.restore_login` [bad-argument-type] +ERROR homeassistant/components/matrix/__init__.py:423:30-35: Argument `bool | dict[str, Unknown] | float | int | list[Unknown] | str` is not assignable to parameter `access_token` with type `str` in function `nio.client.base_client.Client.restore_login` [bad-argument-type] +ERROR homeassistant/components/matrix/__init__.py:507:55-79: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[IO[bytes] | PathLike[bytes] | PathLike[str] | bytes | str, Literal['r'], list[str] | tuple[str, ...] | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/matter/__init__.py:90:16-25: `use_addon` may be uninitialized [unbound-name] +ERROR homeassistant/components/matter/binary_sensor.py:48:5-23: Class member `MatterBinarySensor.entity_description` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/binary_sensor.py:48:5-23: Class member `MatterBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/binary_sensor.py:71:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:83:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:94:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:105:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:107:13-28: Unexpected keyword argument `entity_category` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:120:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:132:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:133:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:143:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:144:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:154:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:155:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:165:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:181:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:185:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:186:13-28: Unexpected keyword argument `entity_category` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:194:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:198:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:200:13-28: Unexpected keyword argument `entity_category` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:208:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:212:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:214:13-28: Unexpected keyword argument `entity_category` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:222:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:223:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:225:13-28: Unexpected keyword argument `entity_category` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:233:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:234:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:236:13-28: Unexpected keyword argument `entity_category` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:244:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:256:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:261:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:269:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:274:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:282:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:283:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:302:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:303:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:322:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:323:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:339:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:340:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:351:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:352:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:354:13-28: Unexpected keyword argument `entity_category` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:373:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:374:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:390:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:391:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:393:13-28: Unexpected keyword argument `entity_category` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:405:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:406:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:408:13-28: Unexpected keyword argument `entity_category` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:420:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:421:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:423:13-28: Unexpected keyword argument `entity_category` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:439:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:440:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:442:13-28: Unexpected keyword argument `entity_category` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:458:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:459:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:461:13-28: Unexpected keyword argument `entity_category` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:476:13-16: Unexpected keyword argument `key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:477:13-28: Unexpected keyword argument `translation_key` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/binary_sensor.py:479:13-28: Unexpected keyword argument `entity_category` in function `MatterBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:46:5-23: Class member `MatterCommandButton.entity_description` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/button.py:46:5-23: Class member `MatterCommandButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/button.py:60:13-16: Unexpected keyword argument `key` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:61:13-28: Unexpected keyword argument `entity_category` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:63:78-80: Argument `Literal[15]` is not assignable to parameter `identifyTime` with type `uint` in function `chip.clusters.Objects.Identify.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/button.py:73:13-16: Unexpected keyword argument `key` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:74:13-28: Unexpected keyword argument `translation_key` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:85:13-16: Unexpected keyword argument `key` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:86:13-28: Unexpected keyword argument `translation_key` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:97:13-16: Unexpected keyword argument `key` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:98:13-28: Unexpected keyword argument `translation_key` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:109:13-16: Unexpected keyword argument `key` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:110:13-28: Unexpected keyword argument `translation_key` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:121:13-16: Unexpected keyword argument `key` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:122:13-28: Unexpected keyword argument `translation_key` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:135:13-16: Unexpected keyword argument `key` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:136:13-28: Unexpected keyword argument `translation_key` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:149:13-16: Unexpected keyword argument `key` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:150:13-28: Unexpected keyword argument `translation_key` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:151:13-28: Unexpected keyword argument `entity_category` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:161:13-16: Unexpected keyword argument `key` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/button.py:162:13-28: Unexpected keyword argument `translation_key` in function `MatterButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/climate.py:191:7-20: Field `entity_description` is declared `EntityDescription` in ancestor `class MatterEntity: ... +`, which is not assignable to the type `ClimateEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/matter/climate.py:195:5-20: Class member `MatterClimate._attr_hvac_mode` overrides parent class `ClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/climate.py:396:14-38: Class member `MatterClimate._attr_supported_features` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/climate.py:433:13-16: Unexpected keyword argument `key` in function `MatterClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/climate.py:434:13-17: Unexpected keyword argument `name` in function `MatterClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/config_flow.py:176:60-70: `ws_address` may be uninitialized [unbound-name] +ERROR homeassistant/components/matter/cover.py:73:5-23: Class member `MatterCover.entity_description` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/cover.py:73:5-23: Class member `MatterCover.entity_description` overrides parent class `CoverEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/cover.py:188:14-32: Class member `MatterCover._attr_device_class` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/cover.py:200:14-38: Class member `MatterCover._attr_supported_features` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/cover.py:208:13-16: Unexpected keyword argument `key` in function `MatterCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/cover.py:209:13-17: Unexpected keyword argument `name` in function `MatterCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/cover.py:224:13-16: Unexpected keyword argument `key` in function `MatterCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/cover.py:224:49-53: Unexpected keyword argument `name` in function `MatterCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/cover.py:239:13-16: Unexpected keyword argument `key` in function `MatterCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/cover.py:239:49-53: Unexpected keyword argument `name` in function `MatterCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/cover.py:254:13-16: Unexpected keyword argument `key` in function `MatterCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/cover.py:254:56-60: Unexpected keyword argument `name` in function `MatterCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/entity.py:142:49-75: No matching overload found for function `dict.get` called with arguments: (uint | None, dict[@_, @_]) [no-matching-overload] +ERROR homeassistant/components/matter/event.py:55:7-24: Field `entity_description` is declared `EntityDescription` in ancestor `class MatterEntity: ... +`, which is not assignable to the type `EventEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/matter/event.py:142:13-16: Unexpected keyword argument `key` in function `MatterEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/event.py:144:13-28: Unexpected keyword argument `translation_key` in function `MatterEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/fan.py:61:7-16: Field `entity_description` is declared `EntityDescription` in ancestor `class MatterEntity: ... +`, which is not assignable to the type `FanEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/matter/fan.py:256:14-38: Class member `MatterFan._attr_supported_features` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/fan.py:318:13-16: Unexpected keyword argument `key` in function `MatterFanEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/fan.py:319:13-17: Unexpected keyword argument `name` in function `MatterFanEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/light.py:97:5-23: Class member `MatterLight.entity_description` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/light.py:97:5-23: Class member `MatterLight.entity_description` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/light.py:115:24-41: Argument `int` is not assignable to parameter `colorX` with type `uint` in function `chip.clusters.Objects.MoveToColor.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:116:24-41: Argument `int` is not assignable to parameter `colorY` with type `uint` in function `chip.clusters.Objects.MoveToColor.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:118:32-52: Argument `int` is not assignable to parameter `transitionTime` with type `uint` in function `chip.clusters.Objects.MoveToColor.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:121:29-30: Argument `Literal[1]` is not assignable to parameter `optionsMask` with type `uint` in function `chip.clusters.Objects.MoveToColor.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:122:33-34: Argument `Literal[1]` is not assignable to parameter `optionsOverride` with type `uint` in function `chip.clusters.Objects.MoveToColor.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:135:21-38: Argument `int` is not assignable to parameter `hue` with type `uint` in function `chip.clusters.Objects.MoveToHueAndSaturation.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:136:28-45: Argument `int` is not assignable to parameter `saturation` with type `uint` in function `chip.clusters.Objects.MoveToHueAndSaturation.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:138:32-52: Argument `int` is not assignable to parameter `transitionTime` with type `uint` in function `chip.clusters.Objects.MoveToHueAndSaturation.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:141:29-30: Argument `Literal[1]` is not assignable to parameter `optionsMask` with type `uint` in function `chip.clusters.Objects.MoveToHueAndSaturation.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:142:33-34: Argument `Literal[1]` is not assignable to parameter `optionsOverride` with type `uint` in function `chip.clusters.Objects.MoveToHueAndSaturation.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:155:40-56: Argument `int` is not assignable to parameter `colorTemperatureMireds` with type `uint` in function `chip.clusters.Objects.MoveToColorTemperature.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:157:32-52: Argument `int` is not assignable to parameter `transitionTime` with type `uint` in function `chip.clusters.Objects.MoveToColorTemperature.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:160:29-30: Argument `Literal[1]` is not assignable to parameter `optionsMask` with type `uint` in function `chip.clusters.Objects.MoveToColorTemperature.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:161:33-34: Argument `Literal[1]` is not assignable to parameter `optionsOverride` with type `uint` in function `chip.clusters.Objects.MoveToColorTemperature.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:176:17-77: Argument `tuple[Literal[1] | uint, Literal[254] | uint]` is not assignable to parameter `to_range` with type `tuple[float, float]` in function `homeassistant.components.matter.util.renormalize` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:182:23-28: Argument `int` is not assignable to parameter `level` with type `uint` in function `chip.clusters.Objects.MoveToLevelWithOnOff.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:184:32-52: Argument `int` is not assignable to parameter `transitionTime` with type `Nullable | uint` in function `chip.clusters.Objects.MoveToLevelWithOnOff.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:271:17-43: Argument `Nullable | uint` is not assignable to parameter `number` with type `float` in function `homeassistant.components.matter.util.renormalize` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:272:17-77: Argument `tuple[Literal[1] | uint, Literal[254] | uint]` is not assignable to parameter `from_range` with type `tuple[float, float]` in function `homeassistant.components.matter.util.renormalize` [bad-argument-type] +ERROR homeassistant/components/matter/light.py:427:18-34: Class member `MatterLight._attr_color_mode` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/light.py:468:13-16: Unexpected keyword argument `key` in function `MatterLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/light.py:469:13-17: Unexpected keyword argument `name` in function `MatterLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/light.py:497:13-16: Unexpected keyword argument `key` in function `MatterLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/light.py:498:13-17: Unexpected keyword argument `name` in function `MatterLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/light.py:518:13-16: Unexpected keyword argument `key` in function `MatterLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/light.py:519:13-17: Unexpected keyword argument `name` in function `MatterLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/light.py:539:13-16: Unexpected keyword argument `key` in function `MatterLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/light.py:540:13-17: Unexpected keyword argument `name` in function `MatterLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/lock.py:61:7-17: Field `entity_description` is declared `EntityDescription` in ancestor `class MatterEntity: ... +`, which is not assignable to the type `LockEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/matter/lock.py:257:14-38: Class member `MatterLock._attr_supported_features` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/lock.py:264:13-16: Unexpected keyword argument `key` in function `MatterLockEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/lock.py:265:13-17: Unexpected keyword argument `name` in function `MatterLockEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:76:5-23: Class member `MatterNumber.entity_description` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/number.py:76:5-23: Class member `MatterNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/number.py:97:5-23: Class member `MatterRangeNumber.entity_description` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/number.py:97:5-23: Class member `MatterRangeNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/number.py:138:5-23: Class member `MatterLevelControlNumber.entity_description` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/number.py:138:5-23: Class member `MatterLevelControlNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/number.py:147:23-33: Argument `int | Any` is not assignable to parameter `level` with type `uint` in function `chip.clusters.Objects.MoveToLevel.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/number.py:165:13-16: Unexpected keyword argument `key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:166:13-28: Unexpected keyword argument `entity_category` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:167:13-28: Unexpected keyword argument `translation_key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:186:13-16: Unexpected keyword argument `key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:187:13-28: Unexpected keyword argument `entity_category` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:188:13-28: Unexpected keyword argument `translation_key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:205:13-16: Unexpected keyword argument `key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:206:13-28: Unexpected keyword argument `entity_category` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:207:13-28: Unexpected keyword argument `translation_key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:224:13-16: Unexpected keyword argument `key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:225:13-28: Unexpected keyword argument `entity_category` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:226:13-28: Unexpected keyword argument `translation_key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:243:13-16: Unexpected keyword argument `key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:245:13-28: Unexpected keyword argument `entity_category` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:246:13-28: Unexpected keyword argument `translation_key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:259:13-16: Unexpected keyword argument `key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:261:13-28: Unexpected keyword argument `entity_category` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:262:13-28: Unexpected keyword argument `translation_key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:280:13-16: Unexpected keyword argument `key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:282:13-28: Unexpected keyword argument `translation_key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:302:13-16: Unexpected keyword argument `key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:303:13-28: Unexpected keyword argument `entity_category` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:304:13-28: Unexpected keyword argument `translation_key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:319:13-16: Unexpected keyword argument `key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:320:13-28: Unexpected keyword argument `entity_category` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:321:13-28: Unexpected keyword argument `translation_key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:333:13-16: Unexpected keyword argument `key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:334:13-28: Unexpected keyword argument `entity_category` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:335:13-28: Unexpected keyword argument `translation_key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:350:13-16: Unexpected keyword argument `key` in function `MatterRangeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:351:13-28: Unexpected keyword argument `translation_key` in function `MatterRangeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:354:26-36: Argument `int` is not assignable to parameter `cookTime` with type `uint | None` in function `chip.clusters.Objects.SetCookingParameters.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/number.py:371:13-16: Unexpected keyword argument `key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:372:13-28: Unexpected keyword argument `entity_category` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:373:13-28: Unexpected keyword argument `translation_key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:385:13-16: Unexpected keyword argument `key` in function `MatterRangeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:386:13-17: Unexpected keyword argument `name` in function `MatterRangeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:387:13-28: Unexpected keyword argument `translation_key` in function `MatterRangeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:410:13-16: Unexpected keyword argument `key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:411:13-28: Unexpected keyword argument `entity_category` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:412:13-28: Unexpected keyword argument `translation_key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:426:13-16: Unexpected keyword argument `key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:427:13-28: Unexpected keyword argument `entity_category` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:428:13-28: Unexpected keyword argument `translation_key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:442:13-16: Unexpected keyword argument `key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:443:13-28: Unexpected keyword argument `entity_category` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:444:13-28: Unexpected keyword argument `translation_key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:456:13-16: Unexpected keyword argument `key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:457:13-28: Unexpected keyword argument `entity_category` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/number.py:458:13-28: Unexpected keyword argument `translation_key` in function `MatterNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:96:5-23: Class member `MatterAttributeSelectEntity.entity_description` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/select.py:96:5-23: Class member `MatterAttributeSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/select.py:121:5-23: Class member `MatterMapSelectEntity.entity_description` overrides parent class `MatterAttributeSelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/select.py:146:34-148:10: `None` is not assignable to `DeviceEnergyManagementMode | DishwasherMode | EnergyEvseMode | LaundryWasherMode | ModeSelect | OvenMode | RefrigeratorAndTemperatureControlledCabinetMode | RvcCleanMode | RvcRunMode | WaterHeaterMode` [bad-assignment] +ERROR homeassistant/components/matter/select.py:163:34-165:10: `None` is not assignable to `DeviceEnergyManagementMode | DishwasherMode | EnergyEvseMode | LaundryWasherMode | ModeSelect | OvenMode | RefrigeratorAndTemperatureControlledCabinetMode | RvcCleanMode | RvcRunMode | WaterHeaterMode` [bad-assignment] +ERROR homeassistant/components/matter/select.py:177:5-23: Class member `MatterListSelectEntity.entity_description` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/select.py:177:5-23: Class member `MatterListSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/select.py:223:13-16: Unexpected keyword argument `key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:224:13-28: Unexpected keyword argument `entity_category` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:225:13-28: Unexpected keyword argument `translation_key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:238:13-16: Unexpected keyword argument `key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:239:13-28: Unexpected keyword argument `translation_key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:252:13-16: Unexpected keyword argument `key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:253:13-28: Unexpected keyword argument `translation_key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:266:13-16: Unexpected keyword argument `key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:267:13-28: Unexpected keyword argument `translation_key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:280:13-16: Unexpected keyword argument `key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:281:13-28: Unexpected keyword argument `translation_key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:294:13-16: Unexpected keyword argument `key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:295:13-28: Unexpected keyword argument `translation_key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:308:13-16: Unexpected keyword argument `key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:309:13-28: Unexpected keyword argument `translation_key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:322:13-16: Unexpected keyword argument `key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:323:13-28: Unexpected keyword argument `translation_key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:336:13-16: Unexpected keyword argument `key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:337:13-28: Unexpected keyword argument `entity_category` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:338:13-28: Unexpected keyword argument `translation_key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:361:13-16: Unexpected keyword argument `key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:362:13-28: Unexpected keyword argument `entity_category` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:363:13-28: Unexpected keyword argument `translation_key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:382:13-16: Unexpected keyword argument `key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:383:13-28: Unexpected keyword argument `entity_category` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:384:13-28: Unexpected keyword argument `translation_key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:403:13-16: Unexpected keyword argument `key` in function `MatterListSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:404:13-28: Unexpected keyword argument `translation_key` in function `MatterListSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:406:40-54: Argument `int` is not assignable to parameter `targetTemperatureLevel` with type `uint | None` in function `chip.clusters.Objects.SetTemperature.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/select.py:421:13-16: Unexpected keyword argument `key` in function `MatterListSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:422:13-28: Unexpected keyword argument `translation_key` in function `MatterListSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:436:13-16: Unexpected keyword argument `key` in function `MatterMapSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:437:13-28: Unexpected keyword argument `translation_key` in function `MatterMapSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:453:13-16: Unexpected keyword argument `key` in function `MatterListSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:454:13-28: Unexpected keyword argument `translation_key` in function `MatterListSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:456:34-48: Argument `int` is not assignable to parameter `wattSettingIndex` with type `uint | None` in function `chip.clusters.Objects.SetCookingParameters.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/select.py:471:13-16: Unexpected keyword argument `key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:472:13-28: Unexpected keyword argument `entity_category` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:473:13-28: Unexpected keyword argument `translation_key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:494:13-16: Unexpected keyword argument `key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:495:13-28: Unexpected keyword argument `translation_key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:508:13-16: Unexpected keyword argument `key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:509:13-28: Unexpected keyword argument `entity_category` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:510:13-28: Unexpected keyword argument `translation_key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:533:13-16: Unexpected keyword argument `key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:534:13-28: Unexpected keyword argument `entity_category` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:535:13-28: Unexpected keyword argument `translation_key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:561:13-16: Unexpected keyword argument `key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:562:13-28: Unexpected keyword argument `entity_category` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/select.py:563:13-28: Unexpected keyword argument `translation_key` in function `MatterSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:232:5-23: Class member `MatterSensor.entity_description` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/sensor.py:232:5-23: Class member `MatterSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/sensor.py:249:5-23: Class member `MatterDraftElectricalMeasurementSensor.entity_description` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/sensor.py:249:5-23: Class member `MatterDraftElectricalMeasurementSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/sensor.py:278:5-23: Class member `MatterOperationalStateSensor.entity_description` overrides parent class `MatterSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/sensor.py:316:5-23: Class member `MatterListSensor.entity_description` overrides parent class `MatterSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/sensor.py:322:14-27: Class member `MatterListSensor._attr_options` overrides parent class `MatterSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/sensor.py:340:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:352:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:364:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:366:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:376:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:391:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:403:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:406:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:417:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:418:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:422:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:431:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:432:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:436:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:445:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:446:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:448:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:458:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:459:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:463:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:472:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:473:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:476:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:488:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:490:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:502:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:504:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:516:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:518:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:530:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:532:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:544:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:545:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:554:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:566:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:567:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:579:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:592:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:605:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:618:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:631:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:644:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:645:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:658:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:671:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:672:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:684:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:697:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:701:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:709:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:713:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:723:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:725:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:740:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:742:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:757:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:759:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:772:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:774:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:786:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:788:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:801:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:803:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:815:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:819:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:820:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:821:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:830:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:832:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:846:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:848:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:862:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:864:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:878:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:879:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:881:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:893:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:894:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:896:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:910:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:911:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:913:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:927:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:928:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:930:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:944:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:945:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:947:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:961:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:962:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:964:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:978:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:980:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:996:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:997:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:999:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1015:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1017:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1033:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1035:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1051:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1053:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1069:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1070:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1081:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1082:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1093:13-16: Unexpected keyword argument `key` in function `MatterOperationalStateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1095:13-28: Unexpected keyword argument `translation_key` in function `MatterOperationalStateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1108:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1109:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1123:13-16: Unexpected keyword argument `key` in function `MatterListSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1124:13-28: Unexpected keyword argument `translation_key` in function `MatterListSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1138:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1139:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1141:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1151:13-16: Unexpected keyword argument `key` in function `MatterListSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1152:13-28: Unexpected keyword argument `translation_key` in function `MatterListSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1166:13-16: Unexpected keyword argument `key` in function `MatterListSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1167:13-28: Unexpected keyword argument `translation_key` in function `MatterListSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1181:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1195:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1196:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1198:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1208:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1209:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1225:13-16: Unexpected keyword argument `key` in function `MatterOperationalStateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1227:13-28: Unexpected keyword argument `translation_key` in function `MatterOperationalStateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1244:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1245:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1247:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1257:13-16: Unexpected keyword argument `key` in function `MatterOperationalStateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1259:13-28: Unexpected keyword argument `translation_key` in function `MatterOperationalStateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1274:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1275:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1276:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1277:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1289:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1290:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1292:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1302:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1303:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1305:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1317:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1318:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1320:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1332:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1333:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1335:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1347:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1348:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1350:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1362:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1363:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1374:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1375:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1386:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1387:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1397:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1398:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1400:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1414:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1415:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1417:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1427:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1428:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1430:13-28: Unexpected keyword argument `entity_category` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1440:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1441:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1456:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1457:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1467:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1468:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1482:13-16: Unexpected keyword argument `key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/sensor.py:1483:13-28: Unexpected keyword argument `translation_key` in function `MatterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/switch.py:50:7-19: Field `entity_description` is declared `EntityDescription` in ancestor `class MatterEntity: ... +`, which is not assignable to the type `SwitchEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/matter/switch.py:78:5-23: Class member `MatterGenericCommandSwitch.entity_description` overrides parent class `MatterSwitch` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/switch.py:145:5-23: Class member `MatterNumericSwitch.entity_description` overrides parent class `MatterSwitch` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/switch.py:152:19-29: `send_value` may be uninitialized [unbound-name] +ERROR homeassistant/components/matter/switch.py:177:13-16: Unexpected keyword argument `key` in function `MatterSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/switch.py:179:13-17: Unexpected keyword argument `name` in function `MatterSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/switch.py:188:13-16: Unexpected keyword argument `key` in function `MatterSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/switch.py:190:13-28: Unexpected keyword argument `translation_key` in function `MatterSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/switch.py:216:13-16: Unexpected keyword argument `key` in function `MatterSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/switch.py:218:13-17: Unexpected keyword argument `name` in function `MatterSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/switch.py:252:13-16: Unexpected keyword argument `key` in function `MatterNumericSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/switch.py:253:13-28: Unexpected keyword argument `translation_key` in function `MatterNumericSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/switch.py:270:13-16: Unexpected keyword argument `key` in function `MatterNumericSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/switch.py:271:13-28: Unexpected keyword argument `entity_category` in function `MatterNumericSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/switch.py:272:13-28: Unexpected keyword argument `translation_key` in function `MatterNumericSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/switch.py:291:13-16: Unexpected keyword argument `key` in function `MatterNumericSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/switch.py:292:13-28: Unexpected keyword argument `entity_category` in function `MatterNumericSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/switch.py:293:13-28: Unexpected keyword argument `translation_key` in function `MatterNumericSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/switch.py:303:13-16: Unexpected keyword argument `key` in function `MatterGenericCommandSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/switch.py:304:13-28: Unexpected keyword argument `translation_key` in function `MatterGenericCommandSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/update.py:75:7-19: Field `entity_description` is declared `EntityDescription` in ancestor `class MatterEntity: ... +`, which is not assignable to the type `UpdateEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/matter/update.py:84:5-29: Class member `MatterUpdate._attr_supported_features` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/update.py:259:13-16: Unexpected keyword argument `key` in function `MatterUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/vacuum.py:76:5-23: Class member `MatterVacuum.entity_description` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/vacuum.py:76:5-23: Class member `MatterVacuum.entity_description` overrides parent class `StateVacuumEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/vacuum.py:216:14-38: Class member `MatterVacuum._attr_supported_features` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/vacuum.py:224:13-16: Unexpected keyword argument `key` in function `MatterStateVacuumEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/vacuum.py:224:40-44: Unexpected keyword argument `name` in function `MatterStateVacuumEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/valve.py:48:5-23: Class member `MatterValve.entity_description` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/valve.py:48:5-23: Class member `MatterValve.entity_description` overrides parent class `ValveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/valve.py:63:72-80: Argument `int` is not assignable to parameter `targetLevel` with type `uint | None` in function `chip.clusters.Objects.Open.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/valve.py:122:14-38: Class member `MatterValve._attr_supported_features` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/valve.py:139:13-16: Unexpected keyword argument `key` in function `MatterValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/valve.py:141:13-17: Unexpected keyword argument `name` in function `MatterValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/water_heater.py:66:7-24: Field `entity_description` is declared `EntityDescription` in ancestor `class MatterEntity: ... +`, which is not assignable to the type `WaterHeaterEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/matter/water_heater.py:70:5-28: Class member `MatterWaterHeater._attr_current_operation` overrides parent class `WaterHeaterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/water_heater.py:77:5-29: Class member `MatterWaterHeater._attr_supported_features` overrides parent class `MatterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/matter/water_heater.py:94:22-30: Argument `int` is not assignable to parameter `duration` with type `uint` in function `chip.clusters.Objects.WaterHeaterBoostInfoStruct.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/water_heater.py:97:17-99:30: Argument `type[Nullable] | int` is not assignable to parameter `temporarySetpoint` with type `int | None` in function `chip.clusters.Objects.WaterHeaterBoostInfoStruct.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/water_heater.py:129:13-131:10: `WaterHeaterManagement.Structs.WaterHeaterBoostInfoStruct` is not assignable to `type[WaterHeaterManagement.Structs.WaterHeaterBoostInfoStruct]` [bad-assignment] +ERROR homeassistant/components/matter/water_heater.py:130:22-44: Argument `Literal[3600]` is not assignable to parameter `duration` with type `uint` in function `chip.clusters.Objects.WaterHeaterBoostInfoStruct.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/water_heater.py:146:73-83: Argument `type[WaterHeaterManagement.Structs.WaterHeaterBoostInfoStruct]` is not assignable to parameter `boostInfo` with type `WaterHeaterManagement.Structs.WaterHeaterBoostInfoStruct` in function `chip.clusters.Objects.Boost.__init__` [bad-argument-type] +ERROR homeassistant/components/matter/water_heater.py:212:13-16: Unexpected keyword argument `key` in function `MatterWaterHeaterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/matter/water_heater.py:213:13-17: Unexpected keyword argument `name` in function `MatterWaterHeaterEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mcp/coordinator.py:102:5-17: Class member `ModelContextProtocolCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mcp_server/http.py:180:31-41: Argument `() -> Coroutine[Unknown, Unknown, None]` is not assignable to parameter `func` with type `(**tuple[*@_]) -> Awaitable[Any]` in function `anyio.abc._tasks.TaskGroup.start_soon` [bad-argument-type] +ERROR homeassistant/components/mcp_server/http.py:272:27-37: Argument `() -> Coroutine[Unknown, Unknown, None]` is not assignable to parameter `func` with type `(**tuple[*@_]) -> Awaitable[Any]` in function `anyio.abc._tasks.TaskGroup.start_soon` [bad-argument-type] +ERROR homeassistant/components/mealie/coordinator.py:47:5-17: Class member `MealieDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mealie/coordinator.py:49:5-21: Class member `MealieDataUpdateCoordinator._update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mealie/sensor.py:32:9-12: Unexpected keyword argument `key` in function `MealieStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mealie/sensor.py:37:9-12: Unexpected keyword argument `key` in function `MealieStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mealie/sensor.py:42:9-12: Unexpected keyword argument `key` in function `MealieStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mealie/sensor.py:47:9-12: Unexpected keyword argument `key` in function `MealieStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mealie/sensor.py:52:9-12: Unexpected keyword argument `key` in function `MealieStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mealie/sensor.py:75:5-23: Class member `MealieStatisticSensors.entity_description` overrides parent class `MealieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mealie/sensor.py:75:5-23: Class member `MealieStatisticSensors.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mealie/sensor.py:76:5-16: Class member `MealieStatisticSensors.coordinator` overrides parent class `MealieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mealie/todo.py:98:5-16: Class member `MealieShoppingListTodoListEntity.coordinator` overrides parent class `MealieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/meater/__init__.py:32:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/meater/coordinator.py:30:5-17: Class member `MeaterCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/meater/sensor.py:70:9-12: Unexpected keyword argument `key` in function `MeaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meater/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `MeaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meater/sensor.py:79:9-12: Unexpected keyword argument `key` in function `MeaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meater/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `MeaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meater/sensor.py:88:9-12: Unexpected keyword argument `key` in function `MeaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meater/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `MeaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meater/sensor.py:94:9-12: Unexpected keyword argument `key` in function `MeaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meater/sensor.py:95:9-24: Unexpected keyword argument `translation_key` in function `MeaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meater/sensor.py:103:9-12: Unexpected keyword argument `key` in function `MeaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meater/sensor.py:104:9-24: Unexpected keyword argument `translation_key` in function `MeaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meater/sensor.py:117:9-12: Unexpected keyword argument `key` in function `MeaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meater/sensor.py:118:9-24: Unexpected keyword argument `translation_key` in function `MeaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meater/sensor.py:132:9-12: Unexpected keyword argument `key` in function `MeaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meater/sensor.py:133:9-24: Unexpected keyword argument `translation_key` in function `MeaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meater/sensor.py:141:9-12: Unexpected keyword argument `key` in function `MeaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meater/sensor.py:142:9-24: Unexpected keyword argument `translation_key` in function `MeaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meater/sensor.py:194:5-23: Class member `MeaterProbeTemperature.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/meater/sensor.py:194:5-23: Class member `MeaterProbeTemperature.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/medcom_ble/__init__.py:46:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/medcom_ble/coordinator.py:25:5-17: Class member `MedcomBleUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/medcom_ble/coordinator.py:46:50-60: Argument `BLEDevice | None` is not assignable to parameter `ble_device` with type `BLEDevice` in function `medcom_ble.parser.MedcomBleDeviceData.update_device` [bad-argument-type] +ERROR homeassistant/components/medcom_ble/sensor.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/medcom_ble/sensor.py:26:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/medcom_ble/sensor.py:71:14-32: Class member `MedcomSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/medcom_ble/sensor.py:96:16-74: Returned type `float | str | None` is not assignable to declared return type `float` [bad-return] +ERROR homeassistant/components/media_extractor/__init__.py:74:52-64: Argument `() -> dict[str, Any]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/media_extractor/__init__.py:168:30-38: `entities` may be uninitialized [unbound-name] +ERROR homeassistant/components/media_extractor/__init__.py:178:40-57: Cannot set item in `dict[str, Logger | bool]` [unsupported-operation] +ERROR homeassistant/components/media_player/__init__.py:493:5-17: Class member `MediaPlayerEntityDescription.device_class` overrides parent class `EntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/media_player/__init__.py:553:5-23: Class member `MediaPlayerEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/media_player/__init__.py:558:5-23: Class member `MediaPlayerEntity._attr_device_class` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/media_player/__init__.py:585:5-16: Class member `MediaPlayerEntity._attr_state` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/media_player/__init__.py:586:5-29: Class member `MediaPlayerEntity._attr_supported_features` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/media_player/__init__.py:808:48-60: Argument `BoundMethod[Self@MediaPlayerEntity, (self: Self@MediaPlayerEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/media_player/__init__.py:816:48-61: Argument `BoundMethod[Self@MediaPlayerEntity, (self: Self@MediaPlayerEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/media_player/__init__.py:840:48-63: Argument `BoundMethod[Self@MediaPlayerEntity, (self: Self@MediaPlayerEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/media_player/__init__.py:848:48-64: Argument `BoundMethod[Self@MediaPlayerEntity, (self: Self@MediaPlayerEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/media_player/__init__.py:856:48-63: Argument `BoundMethod[Self@MediaPlayerEntity, (self: Self@MediaPlayerEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/media_player/__init__.py:864:48-73: Argument `BoundMethod[Self@MediaPlayerEntity, (self: Self@MediaPlayerEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/media_player/__init__.py:872:48-69: Argument `BoundMethod[Self@MediaPlayerEntity, (self: Self@MediaPlayerEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/media_player/__init__.py:918:48-67: Argument `BoundMethod[Self@MediaPlayerEntity, (self: Self@MediaPlayerEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/media_player/__init__.py:1194:48-66: Argument `BoundMethod[Self@MediaPlayerEntity, (self: Self@MediaPlayerEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/media_source/__init__.py:51:68-79: Function declared to return `MediaSource` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/media_source/__init__.py:74:56-68: Argument `Module[homeassistant.components.media_source.local_source]` is not assignable to parameter `platform` with type `MediaSourceProtocol` in function `_process_media_source_platform` [bad-argument-type] +ERROR homeassistant/components/media_source/local_source.py:112:48-58: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/media_source/local_source.py:150:13-21: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/media_source/local_source.py:305:49-67: Argument `BoundMethod[Path, (self: Path, *, follow_symlinks: bool = True) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/mediaroom/media_player.py:8:1-14:2: Could not find import of `pymediaroom` [missing-import] +ERROR homeassistant/components/mediaroom/media_player.py:79:9-20: `known_hosts` may be uninitialized [unbound-name] +ERROR homeassistant/components/mediaroom/media_player.py:85:12-44: `in` is not supported between `Unknown` and `None` [not-iterable] +ERROR homeassistant/components/mediaroom/media_player.py:90:9-27: Object of class `NoneType` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/melcloud/__init__.py:105:25-68: Argument `set[tuple[str, Any | None]]` is not assignable to parameter `connections` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/melcloud/climate.py:84:38-55: Argument `Device` is not assignable to parameter `ata_device` with type `AtaDevice` in function `AtaDeviceClimate.__init__` [bad-argument-type] +ERROR homeassistant/components/melcloud/climate.py:89:46-63: Argument `Device` is not assignable to parameter `atw_device` with type `AtwDevice` in function `AtwDeviceZoneClimate.__init__` [bad-argument-type] +ERROR homeassistant/components/melcloud/climate.py:91:25-48: Object of class `Device` has no attribute `zones` [missing-attribute] +ERROR homeassistant/components/melcloud/climate.py:262:12-66: `not in` is not supported between `str` and `None` [not-iterable] +ERROR homeassistant/components/melcloud/climate.py:271:12-64: `not in` is not supported between `str` and `None` [not-iterable] +ERROR homeassistant/components/melcloud/climate.py:383:30-34: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR homeassistant/components/melcloud/climate.py:396:47-68: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/melcloud/config_flow.py:50:25-33: Argument `str | None` is not assignable to parameter `password` with type `str` in function `pymelcloud.login` [bad-argument-type] +ERROR homeassistant/components/melcloud/config_flow.py:54:21-35: `acquired_token` may be uninitialized [unbound-name] +ERROR homeassistant/components/melcloud/config_flow.py:64:51-65: `acquired_token` may be uninitialized [unbound-name] +ERROR homeassistant/components/melcloud/sensor.py:35:9-12: Unexpected keyword argument `key` in function `MelcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melcloud/sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `MelcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melcloud/sensor.py:44:9-12: Unexpected keyword argument `key` in function `MelcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melcloud/sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `MelcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melcloud/sensor.py:53:9-12: Unexpected keyword argument `key` in function `MelcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melcloud/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `MelcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melcloud/sensor.py:64:9-12: Unexpected keyword argument `key` in function `MelcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melcloud/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `MelcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melcloud/sensor.py:73:9-12: Unexpected keyword argument `key` in function `MelcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melcloud/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `MelcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melcloud/sensor.py:84:9-12: Unexpected keyword argument `key` in function `MelcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melcloud/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `MelcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melcloud/sensor.py:93:9-12: Unexpected keyword argument `key` in function `MelcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melcloud/sensor.py:94:9-24: Unexpected keyword argument `translation_key` in function `MelcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melcloud/sensor.py:102:9-12: Unexpected keyword argument `key` in function `MelcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melcloud/sensor.py:103:9-24: Unexpected keyword argument `translation_key` in function `MelcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melcloud/sensor.py:136:25-48: Object of class `Device` has no attribute `zones` [missing-attribute] +ERROR homeassistant/components/melcloud/sensor.py:147:5-23: Class member `MelDeviceSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/melcloud/water_heater.py:37:40-57: Argument `Device` is not assignable to parameter `device` with type `AtwDevice` in function `AtwWaterHeater.__init__` [bad-argument-type] +ERROR homeassistant/components/melissa/climate.py:150:25-48: Object of class `NoneType` has no attribute `copy` [missing-attribute] +ERROR homeassistant/components/melissa/climate.py:151:13-38: Object of class `NoneType` has no attribute `update` [missing-attribute] +ERROR homeassistant/components/melnor/coordinator.py:20:5-17: Class member `MelnorDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/melnor/number.py:34:9-24: Unexpected keyword argument `entity_category` in function `MelnorZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/number.py:37:9-12: Unexpected keyword argument `key` in function `MelnorZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/number.py:38:9-24: Unexpected keyword argument `translation_key` in function `MelnorZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/number.py:44:9-24: Unexpected keyword argument `entity_category` in function `MelnorZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/number.py:47:9-12: Unexpected keyword argument `key` in function `MelnorZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/number.py:48:9-24: Unexpected keyword argument `translation_key` in function `MelnorZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/number.py:54:9-24: Unexpected keyword argument `entity_category` in function `MelnorZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/number.py:57:9-12: Unexpected keyword argument `key` in function `MelnorZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/number.py:58:9-24: Unexpected keyword argument `translation_key` in function `MelnorZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/number.py:89:5-23: Class member `MelnorZoneNumber.entity_description` overrides parent class `MelnorZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/melnor/number.py:89:5-23: Class member `MelnorZoneNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/melnor/sensor.py:69:9-24: Unexpected keyword argument `entity_category` in function `MelnorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/sensor.py:70:9-12: Unexpected keyword argument `key` in function `MelnorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/sensor.py:77:9-24: Unexpected keyword argument `entity_category` in function `MelnorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/sensor.py:78:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MelnorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/sensor.py:79:9-12: Unexpected keyword argument `key` in function `MelnorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `MelnorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/sensor.py:90:9-12: Unexpected keyword argument `key` in function `MelnorZoneSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/sensor.py:91:9-24: Unexpected keyword argument `translation_key` in function `MelnorZoneSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/sensor.py:96:9-12: Unexpected keyword argument `key` in function `MelnorZoneSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `MelnorZoneSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/sensor.py:136:5-23: Class member `MelnorSensorEntity.entity_description` overrides parent class `MelnorBluetoothEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/melnor/sensor.py:136:5-23: Class member `MelnorSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/melnor/sensor.py:159:5-23: Class member `MelnorZoneSensorEntity.entity_description` overrides parent class `MelnorZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/melnor/sensor.py:159:5-23: Class member `MelnorZoneSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/melnor/switch.py:34:9-12: Unexpected keyword argument `key` in function `MelnorSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/switch.py:35:9-24: Unexpected keyword argument `translation_key` in function `MelnorSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/switch.py:36:9-13: Unexpected keyword argument `name` in function `MelnorSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/switch.py:42:9-12: Unexpected keyword argument `key` in function `MelnorSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/switch.py:43:9-24: Unexpected keyword argument `translation_key` in function `MelnorSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/switch.py:73:5-23: Class member `MelnorZoneSwitch.entity_description` overrides parent class `MelnorZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/melnor/switch.py:73:5-23: Class member `MelnorZoneSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/melnor/time.py:31:9-24: Unexpected keyword argument `entity_category` in function `MelnorZoneTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/time.py:32:9-12: Unexpected keyword argument `key` in function `MelnorZoneTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/time.py:33:9-24: Unexpected keyword argument `translation_key` in function `MelnorZoneTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/melnor/time.py:61:5-23: Class member `MelnorZoneTime.entity_description` overrides parent class `MelnorZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/melnor/time.py:61:5-23: Class member `MelnorZoneTime.entity_description` overrides parent class `TimeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/message_bird/notify.py:7:8-19: Could not find import of `messagebird` [missing-import] +ERROR homeassistant/components/message_bird/notify.py:8:1-46: Could not find import of `messagebird.client` [missing-import] +ERROR homeassistant/components/met/config_flow.py:143:9-31: Class member `MetConfigFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/met/coordinator.py:95:5-17: Class member `MetDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/met_eireann/coordinator.py:52:5-17: Class member `MetEireannUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/meteo_france/__init__.py:47:49-49:10: Unpacked argument `tuple[Any, Any]` is not assignable to parameter `*args` with type `tuple[float, float, str]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/meteo_france/__init__.py:53:49-87: Unpacked argument `tuple[Any, Any]` is not assignable to parameter `*args` with type `tuple[float, float, str]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/meteo_france/config_flow.py:64:65-66:14: Unpacked argument `tuple[Any]` is not assignable to parameter `*args` with type `tuple[str, str | None, str | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/meteo_france/sensor.py:62:9-12: Unexpected keyword argument `key` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:63:9-13: Unexpected keyword argument `name` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:67:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:71:9-12: Unexpected keyword argument `key` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:72:9-13: Unexpected keyword argument `name` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:76:9-13: Unexpected keyword argument `icon` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:77:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:81:9-12: Unexpected keyword argument `key` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:82:9-13: Unexpected keyword argument `name` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:86:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:90:9-12: Unexpected keyword argument `key` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:91:9-13: Unexpected keyword argument `name` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:95:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:99:9-12: Unexpected keyword argument `key` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:100:9-13: Unexpected keyword argument `name` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:102:9-13: Unexpected keyword argument `icon` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:106:9-12: Unexpected keyword argument `key` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:107:9-13: Unexpected keyword argument `name` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:113:9-12: Unexpected keyword argument `key` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:114:9-13: Unexpected keyword argument `name` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:116:9-13: Unexpected keyword argument `icon` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:120:9-12: Unexpected keyword argument `key` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:121:9-13: Unexpected keyword argument `name` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:122:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:126:9-12: Unexpected keyword argument `key` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:127:9-13: Unexpected keyword argument `name` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:128:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:132:9-12: Unexpected keyword argument `key` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:133:9-13: Unexpected keyword argument `name` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:143:9-12: Unexpected keyword argument `key` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:144:9-13: Unexpected keyword argument `name` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:152:9-12: Unexpected keyword argument `key` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:153:9-13: Unexpected keyword argument `name` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:154:9-13: Unexpected keyword argument `icon` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:161:9-12: Unexpected keyword argument `key` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:162:9-13: Unexpected keyword argument `name` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:164:9-13: Unexpected keyword argument `icon` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:168:9-12: Unexpected keyword argument `key` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:169:9-13: Unexpected keyword argument `name` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:171:9-13: Unexpected keyword argument `icon` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:175:9-12: Unexpected keyword argument `key` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:176:9-13: Unexpected keyword argument `name` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:178:9-13: Unexpected keyword argument `icon` in function `MeteoFranceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteo_france/sensor.py:234:5-23: Class member `MeteoFranceSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/meteo_france/sensor.py:234:5-23: Class member `MeteoFranceSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/meteo_france/sensor.py:284:27-38: `*` is not supported between `None` and `float` [unsupported-operation] +ERROR homeassistant/components/meteo_lt/weather.py:81:16-65: Returned type `float` is not assignable to declared return type `int | None` [bad-return] +ERROR homeassistant/components/meteo_lt/weather.py:96:16-69: Returned type `float` is not assignable to declared return type `int | None` [bad-return] +ERROR homeassistant/components/meteo_lt/weather.py:106:16-71: Returned type `float` is not assignable to declared return type `int | None` [bad-return] +ERROR homeassistant/components/meteoalarm/binary_sensor.py:8:1-37: Could not find import of `meteoalertapi` [missing-import] +ERROR homeassistant/components/meteoclimatic/coordinator.py:21:5-17: Class member `MeteoclimaticUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/meteoclimatic/sensor.py:28:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:29:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:36:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:42:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:48:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:54:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:55:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:60:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:61:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:66:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:67:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:73:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:74:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:79:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:80:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:85:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:86:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:92:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:93:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:98:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:99:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:101:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:106:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:107:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/meteoclimatic/sensor.py:142:14-32: Class member `MeteoclimaticSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/meteoclimatic/sensor.py:152:35-71: Object of class `NoneType` has no attribute `unique_id` [missing-attribute] +ERROR homeassistant/components/meteoclimatic/weather.py:68:35-71: Object of class `NoneType` has no attribute `unique_id` [missing-attribute] +ERROR homeassistant/components/metoffice/sensor.py:60:9-12: Unexpected keyword argument `key` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:62:9-13: Unexpected keyword argument `name` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:63:9-13: Unexpected keyword argument `icon` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:64:9-24: Unexpected keyword argument `entity_category` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:65:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:68:9-12: Unexpected keyword argument `key` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:70:9-13: Unexpected keyword argument `name` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:71:9-13: Unexpected keyword argument `icon` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:72:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:75:9-12: Unexpected keyword argument `key` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:77:9-13: Unexpected keyword argument `name` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:81:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:84:9-12: Unexpected keyword argument `key` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:86:9-13: Unexpected keyword argument `name` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:90:9-13: Unexpected keyword argument `icon` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:91:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:94:9-12: Unexpected keyword argument `key` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:96:9-13: Unexpected keyword argument `name` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:103:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:106:9-12: Unexpected keyword argument `key` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:108:9-13: Unexpected keyword argument `name` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:112:9-13: Unexpected keyword argument `icon` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:113:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:116:9-12: Unexpected keyword argument `key` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:118:9-13: Unexpected keyword argument `name` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:125:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:128:9-12: Unexpected keyword argument `key` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:130:9-13: Unexpected keyword argument `name` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:134:9-13: Unexpected keyword argument `icon` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:135:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:138:9-12: Unexpected keyword argument `key` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:140:9-13: Unexpected keyword argument `name` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:142:9-13: Unexpected keyword argument `icon` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:143:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:146:9-12: Unexpected keyword argument `key` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:149:9-13: Unexpected keyword argument `name` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:151:9-13: Unexpected keyword argument `icon` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:152:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:155:9-12: Unexpected keyword argument `key` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:157:9-13: Unexpected keyword argument `name` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:161:9-13: Unexpected keyword argument `icon` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:162:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:165:9-12: Unexpected keyword argument `key` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:167:9-13: Unexpected keyword argument `name` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:172:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MetOfficeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/metoffice/sensor.py:230:5-23: Class member `MetOfficeCurrentSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/metoffice/sensor.py:230:5-23: Class member `MetOfficeCurrentSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mfi/switch.py:107:34-38: `None` is not assignable to attribute `_target_state` with type `Never` [bad-assignment] +ERROR homeassistant/components/mfi/switch.py:112:30-34: `Literal[True]` is not assignable to attribute `_target_state` with type `None` [bad-assignment] +ERROR homeassistant/components/mfi/switch.py:117:30-35: `Literal[False]` is not assignable to attribute `_target_state` with type `None` [bad-assignment] +ERROR homeassistant/components/microbees/__init__.py:64:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/microbees/binary_sensor.py:21:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/microbees/binary_sensor.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/microbees/binary_sensor.py:29:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/microbees/binary_sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/microbees/binary_sensor.py:70:14-32: Class member `MBBinarySensor.entity_description` overrides parent class `MicroBeesEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/microbees/binary_sensor.py:80:16-33: Returned type `float` is not assignable to declared return type `bool` [bad-return] +ERROR homeassistant/components/microbees/climate.py:63:5-29: Class member `MBClimate._attr_supported_features` overrides parent class `MicroBeesActuatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/microbees/climate.py:112:44-55: `Any | None` is not assignable to attribute `targetTemp` with type `float` [bad-assignment] +ERROR homeassistant/components/microbees/coordinator.py:32:5-17: Class member `MicroBeesUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/microbees/cover.py:56:5-23: Class member `MBCover._attr_device_class` overrides parent class `MicroBeesEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/microbees/cover.py:57:5-29: Class member `MBCover._attr_supported_features` overrides parent class `MicroBeesEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/microbees/light.py:46:33-66: `list[int]` is not assignable to attribute `_attr_rgbw_color` with type `tuple[int, int, int, int] | None` [bad-assignment] +ERROR homeassistant/components/microbees/light.py:56:16-35: Returned type `int` is not assignable to declared return type `bool` [bad-return] +ERROR homeassistant/components/microbees/sensor.py:31:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/microbees/sensor.py:38:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/microbees/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/microbees/sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/microbees/sensor.py:59:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/microbees/sensor.py:95:14-32: Class member `MBSensor.entity_description` overrides parent class `MicroBeesEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/microbees/switch.py:56:16-35: Returned type `int` is not assignable to declared return type `bool` [bad-return] +ERROR homeassistant/components/microsoft_face/__init__.py:336:67-75: `response` is uninitialized [unbound-name] +ERROR homeassistant/components/miele/binary_sensor.py:72:13-16: Unexpected keyword argument `key` in function `MieleBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/binary_sensor.py:106:13-16: Unexpected keyword argument `key` in function `MieleBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/binary_sensor.py:109:13-28: Unexpected keyword argument `translation_key` in function `MieleBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/binary_sensor.py:110:13-28: Unexpected keyword argument `entity_category` in function `MieleBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/binary_sensor.py:145:13-16: Unexpected keyword argument `key` in function `MieleBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/binary_sensor.py:148:13-28: Unexpected keyword argument `entity_category` in function `MieleBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/binary_sensor.py:181:13-16: Unexpected keyword argument `key` in function `MieleBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/binary_sensor.py:182:13-28: Unexpected keyword argument `translation_key` in function `MieleBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/binary_sensor.py:184:13-28: Unexpected keyword argument `entity_category` in function `MieleBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/binary_sensor.py:216:13-16: Unexpected keyword argument `key` in function `MieleBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/binary_sensor.py:218:13-28: Unexpected keyword argument `translation_key` in function `MieleBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/binary_sensor.py:219:13-28: Unexpected keyword argument `entity_category` in function `MieleBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/binary_sensor.py:252:13-16: Unexpected keyword argument `key` in function `MieleBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/binary_sensor.py:254:13-28: Unexpected keyword argument `translation_key` in function `MieleBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/binary_sensor.py:255:13-28: Unexpected keyword argument `entity_category` in function `MieleBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/binary_sensor.py:290:5-23: Class member `MieleBinarySensor.entity_description` overrides parent class `MieleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/binary_sensor.py:290:5-23: Class member `MieleBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/button.py:59:13-16: Unexpected keyword argument `key` in function `MieleButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/button.py:60:13-28: Unexpected keyword argument `translation_key` in function `MieleButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/button.py:62:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `MieleButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/button.py:84:13-16: Unexpected keyword argument `key` in function `MieleButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/button.py:85:13-28: Unexpected keyword argument `translation_key` in function `MieleButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/button.py:87:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `MieleButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/button.py:100:13-16: Unexpected keyword argument `key` in function `MieleButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/button.py:101:13-28: Unexpected keyword argument `translation_key` in function `MieleButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/button.py:103:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `MieleButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/button.py:137:5-23: Class member `MieleButton.entity_description` overrides parent class `MieleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/button.py:137:5-23: Class member `MieleButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/climate.py:72:13-16: Unexpected keyword argument `key` in function `MieleClimateDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/climate.py:93:13-16: Unexpected keyword argument `key` in function `MieleClimateDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/climate.py:100:13-28: Unexpected keyword argument `translation_key` in function `MieleClimateDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/climate.py:115:13-16: Unexpected keyword argument `key` in function `MieleClimateDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/climate.py:122:13-28: Unexpected keyword argument `translation_key` in function `MieleClimateDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/climate.py:171:5-23: Class member `MieleClimate.entity_description` overrides parent class `MieleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/climate.py:171:5-23: Class member `MieleClimate.entity_description` overrides parent class `ClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/climate.py:177:5-29: Class member `MieleClimate._attr_supported_features` overrides parent class `MieleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/coordinator.py:37:5-17: Class member `MieleDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/fan.py:49:13-16: Unexpected keyword argument `key` in function `homeassistant.components.fan.FanEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/fan.py:50:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.fan.FanEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/fan.py:56:13-16: Unexpected keyword argument `key` in function `homeassistant.components.fan.FanEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/fan.py:57:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.fan.FanEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/fan.py:91:5-23: Class member `MieleFan.entity_description` overrides parent class `MieleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/fan.py:101:14-38: Class member `MieleFan._attr_supported_features` overrides parent class `MieleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/light.py:65:13-16: Unexpected keyword argument `key` in function `MieleLightDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/light.py:68:13-28: Unexpected keyword argument `translation_key` in function `MieleLightDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/light.py:74:13-16: Unexpected keyword argument `key` in function `MieleLightDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/light.py:77:13-28: Unexpected keyword argument `translation_key` in function `MieleLightDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/light.py:111:5-23: Class member `MieleLight.entity_description` overrides parent class `MieleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/light.py:111:5-23: Class member `MieleLight.entity_description` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/sensor.py:122:31-39: `duration` may be uninitialized [unbound-name] +ERROR homeassistant/components/miele/sensor.py:194:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:195:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:221:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:222:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:230:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:231:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:259:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:260:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:286:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:287:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:289:13-28: Unexpected keyword argument `entity_category` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:304:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:305:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:311:13-28: Unexpected keyword argument `entity_category` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:324:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:325:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:332:13-28: Unexpected keyword argument `entity_category` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:342:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:343:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:349:13-28: Unexpected keyword argument `entity_category` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:359:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:360:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:367:13-28: Unexpected keyword argument `entity_category` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:377:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:378:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:381:13-28: Unexpected keyword argument `entity_category` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:403:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:404:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:409:13-28: Unexpected keyword argument `entity_category` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:429:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:430:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:435:13-28: Unexpected keyword argument `entity_category` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:457:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:458:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:463:13-28: Unexpected keyword argument `entity_category` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:487:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:488:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:493:13-28: Unexpected keyword argument `entity_category` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:513:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:514:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:519:13-28: Unexpected keyword argument `entity_category` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:543:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:560:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:563:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:577:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:580:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:594:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:595:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:615:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:616:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:633:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:634:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:651:17-20: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:652:17-32: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:653:17-41: Unexpected keyword argument `translation_placeholders` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:671:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:672:13-28: Unexpected keyword argument `translation_key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:676:13-28: Unexpected keyword argument `entity_category` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:684:13-16: Unexpected keyword argument `key` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:687:13-28: Unexpected keyword argument `entity_category` in function `MieleSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/sensor.py:825:5-23: Class member `MieleSensor.entity_description` overrides parent class `MieleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/sensor.py:825:5-23: Class member `MieleSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/sensor.py:857:5-23: Class member `MieleRestorableSensor._attr_native_value` overrides parent class `MieleSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/sensor.py:857:5-23: Class member `MieleRestorableSensor._attr_native_value` overrides parent class `RestoreSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/switch.py:59:13-16: Unexpected keyword argument `key` in function `MieleSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/switch.py:62:13-28: Unexpected keyword argument `translation_key` in function `MieleSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/switch.py:74:13-16: Unexpected keyword argument `key` in function `MieleSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/switch.py:77:13-28: Unexpected keyword argument `translation_key` in function `MieleSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/switch.py:103:13-16: Unexpected keyword argument `key` in function `MieleSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/switch.py:106:13-28: Unexpected keyword argument `translation_key` in function `MieleSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/switch.py:154:5-23: Class member `MieleSwitch.entity_description` overrides parent class `MieleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/switch.py:154:5-23: Class member `MieleSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/vacuum.py:116:13-16: Unexpected keyword argument `key` in function `MieleVacuumDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/vacuum.py:118:13-17: Unexpected keyword argument `name` in function `MieleVacuumDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/vacuum.py:119:13-28: Unexpected keyword argument `translation_key` in function `MieleVacuumDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/miele/vacuum.py:163:5-23: Class member `MieleVacuum.entity_description` overrides parent class `MieleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/vacuum.py:163:5-23: Class member `MieleVacuum.entity_description` overrides parent class `StateVacuumEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/miele/vacuum.py:164:5-29: Class member `MieleVacuum._attr_supported_features` overrides parent class `MieleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mikrotik/__init__.py:27:39-70: Argument `BoundMethod[MikrotikData, (self: MikrotikData) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/mikrotik/config_flow.py:45:9-31: Class member `MikrotikFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mikrotik/coordinator.py:251:5-17: Class member `MikrotikDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mikrotik/coordinator.py:310:48-76: Argument `BoundMethod[MikrotikData, (self: MikrotikData) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/mikrotik/coordinator.py:345:12-15: Returned type `type[Api]` is not assignable to declared return type `Api` [bad-return] +ERROR homeassistant/components/mill/climate.py:98:5-29: Class member `MillHeater._attr_supported_features` overrides parent class `MillBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mill/climate.py:117:15-68: Object of class `Mill` has no attribute `set_heater_temp` [missing-attribute] +ERROR homeassistant/components/mill/climate.py:125:19-71: Object of class `Mill` has no attribute `heater_control` [missing-attribute] +ERROR homeassistant/components/mill/climate.py:130:19-71: Object of class `Mill` has no attribute `heater_control` [missing-attribute] +ERROR homeassistant/components/mill/climate.py:136:9-21: Class member `MillHeater._update_attr` overrides parent class `MillBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mill/climate.py:137:27-43: `bool | None` is not assignable to attribute `_available` with type `bool` [bad-assignment] +ERROR homeassistant/components/mill/climate.py:167:5-29: Class member `LocalMillHeater._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mill/climate.py:178:19-63: Object of class `Mill` has no attribute `mac_address` [missing-attribute] +ERROR homeassistant/components/mill/climate.py:182:35-76: Object of class `Mill` has no attribute `url` [missing-attribute] +ERROR homeassistant/components/mill/climate.py:185:22-59: Object of class `Mill` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/mill/climate.py:186:28-68: Object of class `Mill` has no attribute `version` [missing-attribute] +ERROR homeassistant/components/mill/climate.py:195:15-75: Object of class `Mill` has no attribute `set_target_temperature` [missing-attribute] +ERROR homeassistant/components/mill/climate.py:203:19-96: Object of class `Mill` has no attribute `set_operation_mode_control_individually` [missing-attribute] +ERROR homeassistant/components/mill/climate.py:206:19-79: Object of class `Mill` has no attribute `set_operation_mode_off` [missing-attribute] +ERROR homeassistant/components/mill/coordinator.py:40:5-17: Class member `MillDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mill/coordinator.py:85:14-29: Class member `MillHistoricDataUpdateCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mill/coordinator.py:86:13-71: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@MillHistoricDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/mill/entity.py:33:25-58: Argument `set[tuple[str, str | None]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/mill/entity.py:43:49-57: Cannot index into `dict[str, Any]` [bad-index] +ERROR homeassistant/components/mill/number.py:39:5-23: Class member `MillNumber._attr_device_class` overrides parent class `MillBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mill/number.py:56:35-64: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/mill/number.py:59:27-83: `bool | None` is not assignable to attribute `_available` with type `bool` [bad-assignment] +ERROR homeassistant/components/mill/number.py:63:15-70: Object of class `Mill` has no attribute `max_heating_power` [missing-attribute] +ERROR homeassistant/components/mill/sensor.py:50:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:64:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:71:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:80:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:86:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:92:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:96:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:99:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:106:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:108:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:115:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:121:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:122:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:128:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:129:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:133:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:139:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mill/sensor.py:197:14-32: Class member `MillSensor.entity_description` overrides parent class `MillBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mill/sensor.py:220:14-32: Class member `LocalMillSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mill/sensor.py:221:19-63: Object of class `Mill` has no attribute `mac_address` [missing-attribute] +ERROR homeassistant/components/mill/sensor.py:225:35-76: Object of class `Mill` has no attribute `url` [missing-attribute] +ERROR homeassistant/components/mill/sensor.py:228:22-59: Object of class `Mill` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/mill/sensor.py:229:28-68: Object of class `Mill` has no attribute `version` [missing-attribute] +ERROR homeassistant/components/minecraft_server/__init__.py:42:39-76: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/minecraft_server/api.py:80:71-82:18: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[str, float]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/minecraft_server/binary_sensor.py:19:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/binary_sensor.py:20:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/binary_sensor.py:57:14-32: Class member `MinecraftServerBinarySensorEntity.entity_description` overrides parent class `MinecraftServerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/minecraft_server/coordinator.py:33:5-17: Class member `MinecraftServerCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/minecraft_server/sensor.py:61:9-12: Unexpected keyword argument `key` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:69:9-24: Unexpected keyword argument `entity_category` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:72:9-12: Unexpected keyword argument `key` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:73:9-24: Unexpected keyword argument `translation_key` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:80:9-24: Unexpected keyword argument `entity_category` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:81:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:84:9-12: Unexpected keyword argument `key` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:93:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:96:9-12: Unexpected keyword argument `key` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:106:9-24: Unexpected keyword argument `entity_category` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:109:9-12: Unexpected keyword argument `key` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:110:9-24: Unexpected keyword argument `translation_key` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:119:9-12: Unexpected keyword argument `key` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:120:9-24: Unexpected keyword argument `translation_key` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:130:9-12: Unexpected keyword argument `key` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:131:9-24: Unexpected keyword argument `translation_key` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:137:9-24: Unexpected keyword argument `entity_category` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:138:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:141:9-12: Unexpected keyword argument `key` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:142:9-24: Unexpected keyword argument `translation_key` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:150:9-12: Unexpected keyword argument `key` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:151:9-24: Unexpected keyword argument `translation_key` in function `MinecraftServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/minecraft_server/sensor.py:183:5-23: Class member `MinecraftServerSensorEntity.entity_description` overrides parent class `MinecraftServerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/minecraft_server/sensor.py:183:5-23: Class member `MinecraftServerSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/minio/__init__.py:245:36-255:10: `MinioEventThread` is not assignable to attribute `_minio_event_thread` with type `None` [bad-assignment] +ERROR homeassistant/components/minio/__init__.py:256:9-39: Object of class `NoneType` has no attribute `start` [missing-attribute] +ERROR homeassistant/components/minio/minio_helper.py:139:41-75: `MinioEventStreamIterator` is not assignable to attribute `_event_stream_it` with type `None` [bad-assignment] +ERROR homeassistant/components/minio/minio_helper.py:182:37-41: `None` is not assignable to attribute `_event_stream_it` with type `Never` [bad-assignment] +ERROR homeassistant/components/mjpeg/config_flow.py:117:63-123:14: Unpacked argument `tuple[Any, Any | None, Any, Any]` is not assignable to parameter `*args` with type `tuple[str, str | None, str, bool, str]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/mjpeg/config_flow.py:140:9-31: Class member `MJPEGFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mjpeg/config_flow.py:162:27-80: Argument `Any | None` is not assignable to parameter `title` with type `str` in function `homeassistant.config_entries.ConfigFlow.async_create_entry` [bad-argument-type] +ERROR homeassistant/components/moat/__init__.py:50:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/moat/sensor.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/moat/sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/moat/sensor.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/moat/sensor.py:53:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/moat/sensor.py:62:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/moat/sensor.py:66:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/moat/sensor.py:123:7-32: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/mobile_app/__init__.py:74:27-37: `app_config` may be uninitialized [unbound-name] +ERROR homeassistant/components/mobile_app/binary_sensor.py:73:7-28: Field `_attr_device_class` is declared `str | None` in ancestor `class MobileAppEntity: ... +`, which is not assignable to the type `BinarySensorDeviceClass | None` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/mobile_app/device_tracker.py:70:16-30: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/mobile_app/device_tracker.py:77:26-40: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/mobile_app/device_tracker.py:85:16-30: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/mobile_app/device_tracker.py:90:20-34: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/mobile_app/device_tracker.py:98:20-34: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/mobile_app/device_tracker.py:106:29-43: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/mobile_app/device_tracker.py:129:32-133:10: `() -> None` is not assignable to attribute `_dispatch_unsub` with type `None` [bad-assignment] +ERROR homeassistant/components/mobile_app/entity.py:83:28-46: Argument `MappingProxyType[str, Any]` is not assignable to parameter `registration` with type `dict[Unknown, Unknown]` in function `homeassistant.components.mobile_app.helpers.device_info` [bad-argument-type] +ERROR homeassistant/components/mobile_app/notify.py:70:20-71: `-` is not supported between `None` and `datetime` [unsupported-operation] +ERROR homeassistant/components/mobile_app/notify.py:128:23-30: `targets` may be uninitialized [unbound-name] +ERROR homeassistant/components/mobile_app/push_notification.py:85:28-32: `None` is not assignable to attribute `on_teardown` with type `() -> None` [bad-assignment] +ERROR homeassistant/components/mobile_app/webhook.py:171:23-35: Module `voluptuous.humanize` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/mobile_app/webhook.py:212:15-27: Module `voluptuous.humanize` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/mobile_app/webhook.py:674:23-35: Module `voluptuous.humanize` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/mochad/light.py:72:14-24: Class member `MochadLight._attr_name` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mochad/switch.py:60:14-24: Class member `MochadSwitch._attr_name` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/modbus/binary_sensor.py:62:7-25: Field `_attr_device_class` is declared `str | None` in ancestor `class ModbusBaseEntity: ... +`, which is not assignable to the type `BinarySensorDeviceClass | None` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/modbus/binary_sensor.py:142:14-32: Class member `SlaveSensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/modbus/binary_sensor.py:142:14-32: Class member `SlaveSensor._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/modbus/climate.py:143:5-29: Class member `ModbusThermostat._attr_supported_features` overrides parent class `ModbusStructEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/modbus/climate.py:143:5-29: Class member `ModbusThermostat._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/modbus/cover.py:45:7-18: Field `_attr_device_class` is declared `str | None` in ancestor `class ModbusBaseEntity: ... +`, which is not assignable to the type `CoverDeviceClass | None` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/modbus/cover.py:48:5-29: Class member `ModbusCover._attr_supported_features` overrides parent class `ModbusBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/modbus/cover.py:48:5-29: Class member `ModbusCover._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/modbus/cover.py:100:34-54: Argument `Any | None` is not assignable to parameter `value` with type `bool | int | str` in function `ModbusCover._set_attr_state` [bad-argument-type] +ERROR homeassistant/components/modbus/light.py:67:14-41: Class member `ModbusLight._attr_min_color_temp_kelvin` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/modbus/light.py:68:14-41: Class member `ModbusLight._attr_max_color_temp_kelvin` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/modbus/modbus.py:179:16-46: Returned type `tuple[ModbusHub | Unknown, Any | None, Any]` is not assignable to declared return type `tuple[ModbusHub, int, int]` [bad-return] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `port` with type `str` in function `pymodbus.client.serial.AsyncModbusSerialClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `framer` with type `FramerType` in function `pymodbus.client.serial.AsyncModbusSerialClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `parity` with type `str` in function `pymodbus.client.serial.AsyncModbusSerialClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `handle_local_echo` with type `bool` in function `pymodbus.client.serial.AsyncModbusSerialClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `name` with type `str` in function `pymodbus.client.serial.AsyncModbusSerialClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `trace_packet` with type `((bool, bytes) -> bytes) | None` in function `pymodbus.client.serial.AsyncModbusSerialClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `trace_pdu` with type `((bool, ModbusPDU) -> ModbusPDU) | None` in function `pymodbus.client.serial.AsyncModbusSerialClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `trace_connect` with type `((bool) -> None) | None` in function `pymodbus.client.serial.AsyncModbusSerialClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `host` with type `str` in function `pymodbus.client.tcp.AsyncModbusTcpClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `framer` with type `FramerType` in function `pymodbus.client.tcp.AsyncModbusTcpClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `name` with type `str` in function `pymodbus.client.tcp.AsyncModbusTcpClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `source_address` with type `tuple[str, int] | None` in function `pymodbus.client.tcp.AsyncModbusTcpClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `trace_packet` with type `((bool, bytes) -> bytes) | None` in function `pymodbus.client.tcp.AsyncModbusTcpClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `trace_pdu` with type `((bool, ModbusPDU) -> ModbusPDU) | None` in function `pymodbus.client.tcp.AsyncModbusTcpClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `trace_connect` with type `((bool) -> None) | None` in function `pymodbus.client.tcp.AsyncModbusTcpClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `host` with type `str` in function `pymodbus.client.udp.AsyncModbusUdpClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `framer` with type `FramerType` in function `pymodbus.client.udp.AsyncModbusUdpClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `name` with type `str` in function `pymodbus.client.udp.AsyncModbusUdpClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `source_address` with type `tuple[str, int] | None` in function `pymodbus.client.udp.AsyncModbusUdpClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `trace_packet` with type `((bool, bytes) -> bytes) | None` in function `pymodbus.client.udp.AsyncModbusUdpClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `trace_pdu` with type `((bool, ModbusPDU) -> ModbusPDU) | None` in function `pymodbus.client.udp.AsyncModbusUdpClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/modbus.py:336:62-79: Unpacked keyword argument `int | Any` is not assignable to parameter `trace_connect` with type `((bool) -> None) | None` in function `pymodbus.client.udp.AsyncModbusUdpClient.__init__` [bad-argument-type] +ERROR homeassistant/components/modbus/sensor.py:88:14-32: Class member `ModbusRegisterSensor._attr_device_class` overrides parent class `ModbusStructEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/modbus/sensor.py:186:14-32: Class member `SlaveSensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/modbus/validators.py:72:9-16: Class member `PARM_IS_LEGAL.count` overrides parent class `NamedTupleFallback` in an inconsistent manner [bad-override] +ERROR homeassistant/components/modern_forms/coordinator.py:26:5-17: Class member `ModernFormsDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/modern_forms/coordinator.py:46:15-33: Class member `ModernFormsDataUpdateCoordinator._async_update_data` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/modern_forms/coordinator.py:49:20-51:14: Returned type `Device` is not assignable to declared return type `ModernFormsDevice` [bad-return] +ERROR homeassistant/components/modern_forms/fan.py:74:5-29: Class member `ModernFormsFanEntity._attr_supported_features` overrides parent class `ModernFormsDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/modern_forms/fan.py:141:31-143:14: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/modern_forms/fan.py:144:49-55: Unpacked keyword argument `bool` is not assignable to parameter `direction` with type `str | None` in function `aiomodernforms.modernforms.ModernFormsDevice.fan` [bad-argument-type] +ERROR homeassistant/components/modern_forms/light.py:120:36-122:14: Cannot set item in `dict[str, bool]` [unsupported-operation] +ERROR homeassistant/components/moehlenhoff_alpha2/binary_sensor.py:39:5-23: Class member `Alpha2IODeviceBatterySensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/moehlenhoff_alpha2/climate.py:44:5-29: Class member `Alpha2Climate._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/moehlenhoff_alpha2/config_flow.py:29:13-38: Module `aiohttp.client_exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/moehlenhoff_alpha2/coordinator.py:24:5-17: Class member `Alpha2BaseCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mold_indicator/config_flow.py:136:73-138:10: No matching overload found for function `dict.get` called with arguments: (_HandlerT) [no-matching-overload] +ERROR homeassistant/components/mold_indicator/config_flow.py:140:60-82: Argument `_HandlerT` is not assignable to parameter `entry_id` with type `str` in function `homeassistant.config_entries.ConfigEntries.async_get_entry` [bad-argument-type] +ERROR homeassistant/components/mold_indicator/config_flow.py:147:60-82: Argument `_HandlerT` is not assignable to parameter `entry_id` with type `str` in function `homeassistant.config_entries.ConfigEntries.async_get_entry` [bad-argument-type] +ERROR homeassistant/components/monarch_money/coordinator.py:39:5-17: Class member `MonarchMoneyDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/monarch_money/sensor.py:42:9-12: Unexpected keyword argument `key` in function `MonarchMoneyAccountSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monarch_money/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `MonarchMoneyAccountSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monarch_money/sensor.py:55:9-12: Unexpected keyword argument `key` in function `MonarchMoneyAccountSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monarch_money/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `MonarchMoneyAccountSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monarch_money/sensor.py:67:9-12: Unexpected keyword argument `key` in function `MonarchMoneyAccountSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monarch_money/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `MonarchMoneyAccountSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monarch_money/sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `MonarchMoneyAccountSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monarch_money/sensor.py:77:9-12: Unexpected keyword argument `key` in function `MonarchMoneyCashflowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monarch_money/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `MonarchMoneyCashflowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monarch_money/sensor.py:85:9-12: Unexpected keyword argument `key` in function `MonarchMoneyCashflowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monarch_money/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `MonarchMoneyCashflowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monarch_money/sensor.py:93:9-12: Unexpected keyword argument `key` in function `MonarchMoneyCashflowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monarch_money/sensor.py:94:9-24: Unexpected keyword argument `translation_key` in function `MonarchMoneyCashflowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monarch_money/sensor.py:101:9-12: Unexpected keyword argument `key` in function `MonarchMoneyCashflowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monarch_money/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `MonarchMoneyCashflowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monarch_money/sensor.py:159:5-23: Class member `MonarchMoneyCashFlowSensor.entity_description` overrides parent class `MonarchMoneyCashFlowEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/monarch_money/sensor.py:159:5-23: Class member `MonarchMoneyCashFlowSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/monarch_money/sensor.py:170:5-23: Class member `MonarchMoneySensor.entity_description` overrides parent class `MonarchMoneyAccountEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/monarch_money/sensor.py:170:5-23: Class member `MonarchMoneySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/monoprice/config_flow.py:107:9-31: Class member `MonoPriceConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/monzo/coordinator.py:33:5-17: Class member `MonzoCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/monzo/sensor.py:34:9-12: Unexpected keyword argument `key` in function `MonzoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monzo/sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `MonzoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monzo/sensor.py:42:9-12: Unexpected keyword argument `key` in function `MonzoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monzo/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `MonzoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monzo/sensor.py:53:9-12: Unexpected keyword argument `key` in function `MonzoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monzo/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `MonzoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/monzo/sensor.py:97:5-23: Class member `MonzoSensor.entity_description` overrides parent class `MonzoBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/monzo/sensor.py:97:5-23: Class member `MonzoSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mopeka/config_flow.py:57:9-31: Class member `MopekaConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mopeka/sensor.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mopeka/sensor.py:39:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mopeka/sensor.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mopeka/sensor.py:46:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mopeka/sensor.py:47:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mopeka/sensor.py:50:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mopeka/sensor.py:56:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mopeka/sensor.py:60:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mopeka/sensor.py:61:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mopeka/sensor.py:64:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mopeka/sensor.py:65:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mopeka/sensor.py:70:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mopeka/sensor.py:76:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mopeka/sensor.py:77:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mopeka/sensor.py:78:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mopeka/sensor.py:81:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mopeka/sensor.py:82:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mopeka/sensor.py:83:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mopeka/sensor.py:131:7-34: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/motion_blinds/button.py:57:52-84: Object of class `MotionGateway` has no attribute `Go_favorite_position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/button.py:77:52-85: Object of class `MotionGateway` has no attribute `Set_favorite_position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/config_flow.py:81:9-31: Class member `MotionBlindsFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/motion_blinds/config_flow.py:98:52-73: Argument `BoundMethod[MotionGateway, (self: MotionGateway) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/motion_blinds/config_flow.py:128:63-86: Argument `BoundMethod[MotionDiscovery, (self: MotionDiscovery) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/motion_blinds/coordinator.py:29:5-17: Class member `DataUpdateCoordinatorMotionBlinds.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/motion_blinds/coordinator.py:82:17-36: Argument `BoundMethod[Self@DataUpdateCoordinatorMotionBlinds, (self: Self@DataUpdateCoordinatorMotionBlinds) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/motion_blinds/coordinator.py:94:18-33: Class member `DataUpdateCoordinatorMotionBlinds.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/motion_blinds/coordinator.py:94:36-70: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@DataUpdateCoordinatorMotionBlinds, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/motion_blinds/coordinator.py:96:36-75: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@DataUpdateCoordinatorMotionBlinds, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/motion_blinds/cover.py:181:14-32: Class member `MotionBaseDevice._attr_device_class` overrides parent class `MotionCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/motion_blinds/cover.py:201:12-32: Object of class `MotionGateway` has no attribute `position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:203:16-42: `-` is not supported between `Literal[100]` and `object` [unsupported-operation] +ERROR homeassistant/components/motion_blinds/cover.py:208:12-32: Object of class `MotionGateway` has no attribute `position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:215:52-68: Object of class `MotionGateway` has no attribute `Open` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:221:52-69: Object of class `MotionGateway` has no attribute `Close` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:229:17-41: Object of class `MotionGateway` has no attribute `Set_position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:245:17-41: Object of class `MotionGateway` has no attribute `Set_position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:255:52-68: Object of class `MotionGateway` has no attribute `Stop` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:277:12-29: Object of class `MotionGateway` has no attribute `angle` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:279:16-53: Returned type `float | Unknown` is not assignable to declared return type `int | None` [bad-return] +ERROR homeassistant/components/motion_blinds/cover.py:279:23-46: `*` is not supported between `object` and `Literal[100]` [unsupported-operation] +ERROR homeassistant/components/motion_blinds/cover.py:284:12-32: Object of class `MotionGateway` has no attribute `position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:286:16-42: `>=` is not supported between `object` and `Literal[95]` [unsupported-operation] +ERROR homeassistant/components/motion_blinds/cover.py:291:52-73: Object of class `MotionGateway` has no attribute `Set_angle` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:298:52-73: Object of class `MotionGateway` has no attribute `Set_angle` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:306:52-73: Object of class `MotionGateway` has no attribute `Set_angle` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:313:52-68: Object of class `MotionGateway` has no attribute `Stop` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:348:12-32: Object of class `MotionGateway` has no attribute `position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:349:16-33: Object of class `MotionGateway` has no attribute `angle` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:351:20-57: Returned type `float | Unknown` is not assignable to declared return type `int | None` [bad-return] +ERROR homeassistant/components/motion_blinds/cover.py:351:27-50: `*` is not supported between `object` and `Literal[100]` [unsupported-operation] +ERROR homeassistant/components/motion_blinds/cover.py:353:16-42: `-` is not supported between `Literal[100]` and `object` [unsupported-operation] +ERROR homeassistant/components/motion_blinds/cover.py:358:12-32: Object of class `MotionGateway` has no attribute `position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:359:16-33: Object of class `MotionGateway` has no attribute `angle` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:368:52-68: Object of class `MotionGateway` has no attribute `Open` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:375:52-69: Object of class `MotionGateway` has no attribute `Close` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:382:12-32: Object of class `MotionGateway` has no attribute `position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:386:21-42: Object of class `MotionGateway` has no attribute `Set_angle` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:391:21-45: Object of class `MotionGateway` has no attribute `Set_position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:402:12-32: Object of class `MotionGateway` has no attribute `position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:406:21-42: Object of class `MotionGateway` has no attribute `Set_angle` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:411:21-45: Object of class `MotionGateway` has no attribute `Set_position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:437:12-39: Object of class `MotionBlind` has no attribute `scaled_position` +Object of class `MotionGateway` has no attribute `scaled_position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:440:22-66: Cannot index into `object` [bad-index] +ERROR homeassistant/components/motion_blinds/cover.py:445:12-32: Object of class `MotionGateway` has no attribute `position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:449:20-37: Object of class `MotionBlind` has no attribute `width` +Object of class `MotionGateway` has no attribute `width` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:451:16-53: Cannot index into `object` [bad-index] +ERROR homeassistant/components/motion_blinds/cover.py:457:12-32: Object of class `MotionGateway` has no attribute `position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:459:23-60: Cannot index into `object` [bad-index] +ERROR homeassistant/components/motion_blinds/cover.py:461:12-29: Object of class `MotionBlind` has no attribute `width` +Object of class `MotionGateway` has no attribute `width` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:468:52-68: Object of class `MotionGateway` has no attribute `Open` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:474:52-69: Object of class `MotionGateway` has no attribute `Close` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:482:17-48: Object of class `MotionBlind` has no attribute `Set_scaled_position` +Object of class `MotionGateway` has no attribute `Set_scaled_position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:493:17-41: Object of class `MotionGateway` has no attribute `Set_position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/cover.py:501:52-68: Object of class `MotionGateway` has no attribute `Stop` [missing-attribute] +ERROR homeassistant/components/motion_blinds/entity.py:55:23-37: Object of class `MotionGateway` has no attribute `_gateway` [missing-attribute] +ERROR homeassistant/components/motion_blinds/entity.py:56:12-28: Object of class `MotionBlind` has no attribute `firmware` [missing-attribute] +ERROR homeassistant/components/motion_blinds/entity.py:57:59-75: Object of class `MotionBlind` has no attribute `protocol` [missing-attribute] +ERROR homeassistant/components/motion_blinds/entity.py:59:39-55: Object of class `MotionBlind` has no attribute `protocol` [missing-attribute] +ERROR homeassistant/components/motion_blinds/entity.py:75:23-39: Object of class `MotionGateway` has no attribute `blind_type` [missing-attribute] +ERROR homeassistant/components/motion_blinds/entity.py:78:28-47: Object of class `MotionGateway` has no attribute `wireless_name` [missing-attribute] +ERROR homeassistant/components/motion_blinds/entity.py:84:23-39: Object of class `MotionGateway` has no attribute `blind_type` [missing-attribute] +ERROR homeassistant/components/motion_blinds/entity.py:86:37-51: Object of class `MotionGateway` has no attribute `_gateway` [missing-attribute] +ERROR homeassistant/components/motion_blinds/entity.py:87:28-47: Object of class `MotionGateway` has no attribute `wireless_name` [missing-attribute] +ERROR homeassistant/components/motion_blinds/entity.py:115:41-61: Object of class `MotionGateway` has no attribute `position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/entity.py:116:38-55: Object of class `MotionGateway` has no attribute `angle` [missing-attribute] +ERROR homeassistant/components/motion_blinds/entity.py:123:52-78: Object of class `MotionGateway` has no attribute `Update_trigger` [missing-attribute] +ERROR homeassistant/components/motion_blinds/entity.py:130:17-37: Object of class `MotionGateway` has no attribute `position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/entity.py:135:17-34: Object of class `MotionGateway` has no attribute `angle` [missing-attribute] +ERROR homeassistant/components/motion_blinds/entity.py:156:12-32: Object of class `MotionGateway` has no attribute `position` [missing-attribute] +ERROR homeassistant/components/motion_blinds/entity.py:156:45-62: Object of class `MotionGateway` has no attribute `angle` [missing-attribute] +ERROR homeassistant/components/motion_blinds/gateway.py:53:32-55:10: `MotionGateway` is not assignable to attribute `_gateway_device` with type `None` [bad-assignment] +ERROR homeassistant/components/motion_blinds/gateway.py:54:41-56: Argument `Unknown | None` is not assignable to parameter `multicast` with type `MotionMulticast` in function `motionblinds.motion_blinds.MotionGateway.__init__` [bad-argument-type] +ERROR homeassistant/components/motion_blinds/gateway.py:121:36-123:14: `MotionGateway` is not assignable to attribute `_gateway_device` with type `None` [bad-assignment] +ERROR homeassistant/components/motion_blinds/gateway.py:122:45-60: Argument `AsyncMotionMulticast` is not assignable to parameter `multicast` with type `MotionMulticast` in function `motionblinds.motion_blinds.MotionGateway.__init__` [bad-argument-type] +ERROR homeassistant/components/motion_blinds/sensor.py:55:5-23: Class member `MotionBatterySensor._attr_device_class` overrides parent class `MotionCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/motion_blinds/sensor.py:68:16-41: Object of class `MotionGateway` has no attribute `battery_level` [missing-attribute] +ERROR homeassistant/components/motion_blinds/sensor.py:73:39-66: Object of class `MotionGateway` has no attribute `battery_voltage` [missing-attribute] +ERROR homeassistant/components/motion_blinds/sensor.py:90:12-37: Object of class `MotionGateway` has no attribute `battery_level` [missing-attribute] +ERROR homeassistant/components/motion_blinds/sensor.py:92:16-57: Cannot index into `object` [bad-index] +ERROR homeassistant/components/motion_blinds/sensor.py:98:12-39: Object of class `MotionGateway` has no attribute `battery_voltage` [missing-attribute] +ERROR homeassistant/components/motion_blinds/sensor.py:99:48-101:14: Cannot index into `object` [bad-index] +ERROR homeassistant/components/motion_blinds/sensor.py:108:5-23: Class member `MotionSignalStrengthSensor._attr_device_class` overrides parent class `MotionCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/motionblinds_ble/__init__.py:140:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/motionblinds_ble/button.py:35:9-12: Unexpected keyword argument `key` in function `MotionblindsBLEButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/button.py:36:9-24: Unexpected keyword argument `translation_key` in function `MotionblindsBLEButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/button.py:37:9-24: Unexpected keyword argument `entity_category` in function `MotionblindsBLEButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/button.py:38:17-48: Argument `(device: MotionDevice) -> Coroutine[Unknown, Unknown, bool]` is not assignable to parameter `command` with type `(MotionDevice) -> Coroutine[Any, Any, None]` in function `MotionblindsBLEButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/motionblinds_ble/button.py:41:9-12: Unexpected keyword argument `key` in function `MotionblindsBLEButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/button.py:42:9-24: Unexpected keyword argument `translation_key` in function `MotionblindsBLEButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/button.py:43:9-24: Unexpected keyword argument `entity_category` in function `MotionblindsBLEButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/button.py:47:9-12: Unexpected keyword argument `key` in function `MotionblindsBLEButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/button.py:48:9-24: Unexpected keyword argument `translation_key` in function `MotionblindsBLEButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/button.py:49:9-24: Unexpected keyword argument `entity_category` in function `MotionblindsBLEButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/button.py:78:5-23: Class member `MotionblindsBLEButtonEntity.entity_description` overrides parent class `MotionblindsBLEEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/motionblinds_ble/button.py:78:5-23: Class member `MotionblindsBLEButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/motionblinds_ble/config_flow.py:90:20-47: Expected a type form, got instance of `tuple[type[CouldNotFindMotor] | type[InvalidMACCode] | type[NoBluetoothAdapter] | type[NoDevicesFound], ...]` [not-a-type] +ERROR homeassistant/components/motionblinds_ble/cover.py:34:5-8: Class member `MotionblindsBLECoverEntityDescription.key` overrides parent class `CoverEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/motionblinds_ble/cover.py:35:5-20: Class member `MotionblindsBLECoverEntityDescription.translation_key` overrides parent class `CoverEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/motionblinds_ble/cover.py:48:44-48: Unexpected keyword argument `icon` in function `MotionblindsBLECoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/cover.py:82:7-33: Field `entity_description` is declared `EntityDescription` in ancestor `class MotionblindsBLEEntity: ... +`, which is not assignable to the type `CoverEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/motionblinds_ble/select.py:26:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/select.py:27:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/select.py:28:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/select.py:47:7-18: Field `entity_description` is declared `EntityDescription` in ancestor `class MotionblindsBLEEntity: ... +`, which is not assignable to the type `SelectEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/motionblinds_ble/sensor.py:62:9-12: Unexpected keyword argument `key` in function `MotionblindsBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/sensor.py:63:9-24: Unexpected keyword argument `translation_key` in function `MotionblindsBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/sensor.py:65:9-24: Unexpected keyword argument `entity_category` in function `MotionblindsBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/sensor.py:72:9-12: Unexpected keyword argument `key` in function `MotionblindsBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/sensor.py:73:9-24: Unexpected keyword argument `translation_key` in function `MotionblindsBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/sensor.py:75:9-24: Unexpected keyword argument `entity_category` in function `MotionblindsBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/sensor.py:83:9-12: Unexpected keyword argument `key` in function `MotionblindsBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/sensor.py:85:9-24: Unexpected keyword argument `entity_category` in function `MotionblindsBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/sensor.py:89:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `MotionblindsBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/sensor.py:115:5-23: Class member `MotionblindsBLESensorEntity.entity_description` overrides parent class `MotionblindsBLEEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/motionblinds_ble/sensor.py:115:5-23: Class member `MotionblindsBLESensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/motionblinds_ble/sensor.py:145:7-20: Field `entity_description` is declared `EntityDescription` in ancestor `class MotionblindsBLEEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/motionblinds_ble/sensor.py:155:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motionblinds_ble/sensor.py:159:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/config_flow.py:182:9-31: Class member `MotionEyeConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/motioneye/media_source.py:56:5-9: Class member `MotionEyeMediaSource.name` overrides parent class `MediaSource` in an inconsistent manner [bad-override] +ERROR homeassistant/components/motioneye/sensor.py:52:7-28: Field `entity_description` is declared `EntityDescription` in ancestor `class MotionEyeEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/motioneye/sensor.py:74:17-20: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/sensor.py:74:51-82: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:31:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:32:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:33:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:34:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:38:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:39:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:40:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:43:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:44:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:45:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:46:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:49:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:50:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:51:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:52:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:55:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:56:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:57:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:58:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:61:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:62:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:63:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:64:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/motioneye/switch.py:97:7-22: Field `entity_description` is declared `EntityDescription` in ancestor `class MotionEyeEntity: ... +`, which is not assignable to the type `SwitchEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/motionmount/__init__.py:85:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/motionmount/binary_sensor.py:33:5-23: Class member `MotionMountMovingSensor._attr_device_class` overrides parent class `MotionMountEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/motionmount/sensor.py:41:5-23: Class member `MotionMountErrorStatusSensor._attr_device_class` overrides parent class `MotionMountEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mpd/config_flow.py:39:13-27: Object of class `MPDClient` has no attribute `timeout` [missing-attribute] +ERROR homeassistant/components/mpd/config_flow.py:40:13-31: Object of class `MPDClient` has no attribute `idletimeout` [missing-attribute] +ERROR homeassistant/components/mpd/config_flow.py:45:31-46: Object of class `MPDClient` has no attribute `password` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:120:9-29: Object of class `MPDClient` has no attribute `timeout` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:121:9-33: Object of class `MPDClient` has no attribute `idletimeout` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:137:48-68: Object of class `MPDClient` has no attribute `timeout` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:144:27-48: Object of class `MPDClient` has no attribute `password` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:175:38-57: Object of class `MPDClient` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:176:43-67: Object of class `MPDClient` has no attribute `currentsong` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:185:20-28: `position` may be uninitialized [unbound-name] +ERROR homeassistant/components/mpd/media_player.py:185:74-82: `position` may be uninitialized [unbound-name] +ERROR homeassistant/components/mpd/media_player.py:187:59-67: `position` may be uninitialized [unbound-name] +ERROR homeassistant/components/mpd/media_player.py:210:16-37: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:215:32-53: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:227:16-37: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:228:17-38: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:229:21-42: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:245:19-40: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:253:16-37: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:292:38-294:31: `str` is not assignable to attribute `_media_image_hash` with type `Never` [bad-assignment] +ERROR homeassistant/components/mpd/media_player.py:299:38-42: `None` is not assignable to attribute `_media_image_hash` with type `Never` [bad-assignment] +ERROR homeassistant/components/mpd/media_player.py:308:35-56: Object of class `MPDClient` has no attribute `commands` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:318:38-62: Object of class `MPDClient` has no attribute `readpicture` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:330:38-59: Object of class `MPDClient` has no attribute `albumart` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:384:44-70: Object of class `MPDClient` has no attribute `listplaylists` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:394:23-42: Object of class `MPDClient` has no attribute `setvol` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:403:21-40: Object of class `MPDClient` has no attribute `setvol` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:412:27-46: Object of class `MPDClient` has no attribute `setvol` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:418:23-41: Object of class `MPDClient` has no attribute `pause` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:420:23-40: Object of class `MPDClient` has no attribute `play` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:425:19-37: Object of class `MPDClient` has no attribute `pause` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:430:19-36: Object of class `MPDClient` has no attribute `stop` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:435:19-36: Object of class `MPDClient` has no attribute `next` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:440:19-40: Object of class `MPDClient` has no attribute `previous` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:471:23-41: Object of class `MPDClient` has no attribute `clear` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:472:23-40: Object of class `MPDClient` has no attribute `load` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:473:23-40: Object of class `MPDClient` has no attribute `play` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:475:23-41: Object of class `MPDClient` has no attribute `clear` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:477:23-39: Object of class `MPDClient` has no attribute `add` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:478:23-40: Object of class `MPDClient` has no attribute `play` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:493:23-42: Object of class `MPDClient` has no attribute `repeat` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:494:23-42: Object of class `MPDClient` has no attribute `single` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:496:23-42: Object of class `MPDClient` has no attribute `repeat` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:498:27-46: Object of class `MPDClient` has no attribute `single` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:500:27-46: Object of class `MPDClient` has no attribute `single` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:505:24-52: No matching overload found for function `int.__new__` called with arguments: (type[int], Any | None) [no-matching-overload] +ERROR homeassistant/components/mpd/media_player.py:510:19-38: Object of class `MPDClient` has no attribute `random` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:515:19-36: Object of class `MPDClient` has no attribute `stop` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:520:19-36: Object of class `MPDClient` has no attribute `play` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:526:19-37: Object of class `MPDClient` has no attribute `clear` [missing-attribute] +ERROR homeassistant/components/mpd/media_player.py:531:19-39: Object of class `MPDClient` has no attribute `seekcur` [missing-attribute] +ERROR homeassistant/components/mqtt/__init__.py:359:47-57: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/mqtt/alarm_control_panel.py:134:9-22: Class member `MqttAlarm.config_schema` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/binary_sensor.py:140:9-22: Class member `MqttBinarySensor.config_schema` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/binary_sensor.py:152:14-32: Class member `MqttBinarySensor._attr_device_class` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/binary_sensor.py:152:14-32: Class member `MqttBinarySensor._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/button.py:71:9-22: Class member `MqttButton.config_schema` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/button.py:80:14-32: Class member `MqttButton._attr_device_class` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/camera.py:97:9-22: Class member `MqttCamera.config_schema` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/client.py:258:40-52: Argument `() -> None` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/components/mqtt/client.py:319:23-32: `client_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/client.py:359:12-23: `certificate` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/client.py:361:17-28: `certificate` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/client.py:486:48-65: Argument `BoundMethod[MqttClientSetup, (self: MqttClientSetup) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/mqtt/client.py:534:76-87: Argument `() -> None` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_at` [bad-argument-type] +ERROR homeassistant/components/mqtt/client.py:536:68-79: Argument `() -> None` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_at` [bad-argument-type] +ERROR homeassistant/components/mqtt/client.py:730:64-85: Argument `BoundMethod[AsyncMQTTClient, (self: AsyncMQTTClient) -> MQTTErrorCode]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/mqtt/client.py:822:50-57: `max_qos` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/climate.py:667:14-38: Class member `MqttClimate._attr_supported_features` overrides parent class `MqttTemperatureControlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/climate.py:807:15-44: Method `async_set_temperature` inherited from class `MqttTemperatureControlEntity` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR homeassistant/components/mqtt/config_flow.py:846:12-16: `code` is uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/config_flow.py:924:64-75: Cannot index into `dict[SensorStateClass | str, set[str | type[StrEnum] | None]]` [bad-index] +ERROR homeassistant/components/mqtt/config_flow.py:1129:9-21: `device_class` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/config_flow.py:1138:9-21: `device_class` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/config_flow.py:1139:13-25: `device_class` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/config_flow.py:1140:59-71: `device_class` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/config_flow.py:3457:60-84: Expected 0 positional arguments, got 1 in function `homeassistant.data_entry_flow.SectionConfig.__init__` [bad-argument-count] +ERROR homeassistant/components/mqtt/config_flow.py:3591:9-31: Class member `FlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/config_flow.py:3847:13-30: `reconfigure_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/config_flow.py:3847:39-53: `is_reconfigure` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/config_flow.py:3852:16-30: `is_reconfigure` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/config_flow.py:3854:21-38: `reconfigure_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/config_flow.py:3863:20-34: `is_reconfigure` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/config_flow.py:3865:25-42: `reconfigure_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/config_flow.py:4219:76-84: `reconfig` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/config_flow.py:4737:46-67: Argument `() -> bytes` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/mqtt/config_flow.py:4869:13-34: Argument `() -> str | None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/mqtt/config_flow.py:4890:17-40: Expected a type form, got instance of `*Unknown` [not-a-type] +ERROR homeassistant/components/mqtt/config_flow.py:4890:18-40: Expected a type form, got instance of `tuple[type[JSONDecodeError]]` [not-a-type] +ERROR homeassistant/components/mqtt/config_flow.py:5129:8-26: `client_certificate` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/config_flow.py:5129:31-42: `private_key` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/config_flow.py:5131:37-55: `client_certificate` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/config_flow.py:5131:57-68: `private_key` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/cover.py:331:14-32: Class member `MqttCover._attr_device_class` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/cover.py:348:14-38: Class member `MqttCover._attr_supported_features` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/device_tracker.py:155:9-47: Class member `MqttDeviceTracker._process_update_extra_state_attributes` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/device_tracker.py:174:40-49: `longitude` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/diagnostics.py:59:35-78: Cannot set item in `dict[str, bool | dict[str, dict[str, Any] | dict[Unknown, Unknown]]]` [unsupported-operation] +ERROR homeassistant/components/mqtt/diagnostics.py:62:20-70:10: No matching overload found for function `typing.MutableMapping.update` called with arguments: (devices=list[dict[str, Any]], mqtt_debug_info=dict[str, list[Any]]) [no-matching-overload] +ERROR homeassistant/components/mqtt/discovery.py:447:17-34: `discovery_payload` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/discovery.py:448:17-34: `discovery_payload` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/discovery.py:456:25-42: `discovery_payload` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/entity.py:1330:5-20: `device_registry` is uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/entity.py:1425:31-48: `default_entity_id` is uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/entity.py:1642:9-26: Class member `MqttEntity._message_callback` overrides parent class `MqttAttributesMixin` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/entity.py:1642:9-26: Class member `MqttEntity._message_callback` overrides parent class `MqttAvailabilityMixin` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/entity.py:1667:64-78: `attrs_snapshot` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/event.py:105:14-32: Class member `MqttEvent._attr_device_class` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/fan.py:292:14-38: Class member `MqttFan._attr_supported_features` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/humidifier.py:223:14-32: Class member `MqttHumidifier._attr_device_class` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/humidifier.py:239:18-42: Class member `MqttHumidifier._attr_supported_features` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/lawn_mower.py:132:14-38: Class member `MqttLawnMower._attr_supported_features` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/lawn_mower.py:132:14-38: Class member `MqttLawnMower._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/light/schema_basic.py:390:14-38: Class member `MqttLight._attr_supported_features` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/light/schema_basic.py:390:14-38: Class member `MqttLight._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/light/schema_template.py:197:14-38: Class member `MqttLightTemplate._attr_supported_features` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/light/schema_template.py:197:14-38: Class member `MqttLightTemplate._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/lock.py:144:9-22: Class member `MqttLock.config_schema` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/lock.py:155:28-38: `optimistic` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/lock.py:156:41-51: `optimistic` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/lock.py:172:14-38: Class member `MqttLock._attr_supported_features` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/lock.py:191:41-57: Class member `MqttLock._attr_is_locking` overrides parent class `LockEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/lock.py:193:18-31: Class member `MqttLock._attr_is_open` overrides parent class `LockEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/lock.py:193:39-55: Class member `MqttLock._attr_is_opening` overrides parent class `LockEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/lock.py:197:37-80: `bool` is not assignable to attribute `_attr_is_locking` with type `None` [bad-assignment] +ERROR homeassistant/components/mqtt/lock.py:198:34-74: `bool` is not assignable to attribute `_attr_is_open` with type `None` [bad-assignment] +ERROR homeassistant/components/mqtt/lock.py:199:37-80: `bool` is not assignable to attribute `_attr_is_opening` with type `None` [bad-assignment] +ERROR homeassistant/components/mqtt/lock.py:265:34-38: `Literal[True]` is not assignable to attribute `_attr_is_open` with type `None` [bad-assignment] +ERROR homeassistant/components/mqtt/models.py:140:5-13: Class member `MqttCommandTemplateException._message` overrides parent class `ServiceValidationError` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/models.py:228:5-13: Class member `MqttValueTemplateException._message` overrides parent class `TemplateError` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/notify.py:63:9-22: Class member `MqttNotify.config_schema` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/number.py:161:14-32: Class member `MqttNumber._attr_device_class` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/scene.py:70:9-22: Class member `MqttScene.config_schema` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/sensor.py:133:41-60: `unit_of_measurement` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/sensor.py:141:9-28: `unit_of_measurement` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/sensor.py:141:30-49: `unit_of_measurement` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/sensor.py:219:29-39: `last_state` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/sensor.py:227:39-55: `last_sensor_data` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/sensor.py:257:14-32: Class member `MqttSensor._attr_device_class` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/siren.py:175:14-38: Class member `MqttSiren._attr_supported_features` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/subscription.py:165:10-39: Function declared to return `dict[str, EntitySubscription]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/mqtt/switch.py:99:9-22: Class member `MqttSwitch.config_schema` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/switch.py:105:14-32: Class member `MqttSwitch._attr_device_class` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/switch.py:105:14-32: Class member `MqttSwitch._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/tag.py:90:9-13: `tags` may be uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/tag.py:99:12-16: `tags` is uninitialized [unbound-name] +ERROR homeassistant/components/mqtt/tag.py:184:60-74: Cannot index into `dict[str, dict[str, MQTTTagScanner]]` [bad-index] +ERROR homeassistant/components/mqtt/tag.py:185:22-36: Cannot index into `dict[str, dict[str, MQTTTagScanner]]` [bad-index] +ERROR homeassistant/components/mqtt/update.py:117:14-32: Class member `MqttUpdate._attr_device_class` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/update.py:117:14-32: Class member `MqttUpdate._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/util.py:113:57-82: Argument `BoundMethod[Self@EnsureJobAfterCooldown, (self: Self@EnsureJobAfterCooldown) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_at` [bad-argument-type] +ERROR homeassistant/components/mqtt/util.py:131:38-63: Argument `BoundMethod[Self@EnsureJobAfterCooldown, (self: Self@EnsureJobAfterCooldown) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_at` [bad-argument-type] +ERROR homeassistant/components/mqtt/util.py:371:39-65: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/mqtt/vacuum.py:235:14-38: Class member `MqttStateVacuum._attr_supported_features` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/valve.py:199:14-32: Class member `MqttValve._attr_device_class` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/valve.py:213:14-38: Class member `MqttValve._attr_supported_features` overrides parent class `MqttEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/water_heater.py:260:14-38: Class member `MqttWaterHeater._attr_supported_features` overrides parent class `MqttTemperatureControlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mqtt/water_heater.py:303:15-44: Method `async_set_temperature` inherited from class `MqttTemperatureControlEntity` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR homeassistant/components/mqtt_room/sensor.py:138:29-45: `datetime` is not assignable to attribute `_updated` with type `None` [bad-assignment] +ERROR homeassistant/components/msteams/notify.py:7:8-17: Could not find import of `pymsteams` [missing-import] +ERROR homeassistant/components/mullvad/__init__.py:24:53-63: Argument `type[MullvadAPI]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/mullvad/binary_sensor.py:21:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mullvad/binary_sensor.py:22:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mullvad/binary_sensor.py:55:14-32: Class member `MullvadBinarySensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mullvad/config_flow.py:27:56-66: Argument `type[MullvadAPI]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/music_assistant/button.py:39:5-23: Class member `MusicAssistantFavoriteButton.entity_description` overrides parent class `MusicAssistantEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/music_assistant/button.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/music_assistant/button.py:41:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/music_assistant/media_player.py:197:14-32: Class member `MusicAssistantPlayer._attr_device_class` overrides parent class `MusicAssistantEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/music_assistant/media_player.py:260:18-29: Class member `MusicAssistantPlayer._attr_state` overrides parent class `MusicAssistantEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/music_assistant/media_player.py:734:14-38: Class member `MusicAssistantPlayer._attr_supported_features` overrides parent class `MusicAssistantEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/music_assistant/services.py:80:8-13: `entry` is uninitialized [unbound-name] +ERROR homeassistant/components/music_assistant/services.py:82:12-17: `entry` is uninitialized [unbound-name] +ERROR homeassistant/components/mutesync/config_flow.py:41:12-17: Returned type `str` is not assignable to declared return type `dict[str, Any]` [bad-return] +ERROR homeassistant/components/mvglive/sensor.py:11:1-51: Could not find import of `mvg` [missing-import] +ERROR homeassistant/components/mycroft/notify.py:7:1-34: Could not find import of `mycroftapi` [missing-import] +ERROR homeassistant/components/mycroft/notify.py:40:24-68: Missing argument `msg` in function `logging.Logger.log` [missing-argument] +ERROR homeassistant/components/mycroft/notify.py:40:25-67: Argument `Literal['Could not reach this instance of mycroft']` is not assignable to parameter `level` with type `int` in function `logging.Logger.log` [bad-argument-type] +ERROR homeassistant/components/mysensors/__init__.py:83:5-30: Object of class `NoneType` has no attribute `persistence` [missing-attribute] +ERROR homeassistant/components/mysensors/__init__.py:140:27-44: Expected a callable, got `Mapping[str, type[MySensorsChildEntity]]` [not-callable] +ERROR homeassistant/components/mysensors/__init__.py:140:45-55: Argument `BaseAsyncGateway | int | str | Unknown` is not assignable to parameter `gateway_id` with type `str` in function `homeassistant.components.mysensors.entity.MySensorsChildEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/mysensors/__init__.py:140:45-55: Argument `BaseAsyncGateway | int | str | Unknown` is not assignable to parameter `gateway` with type `BaseAsyncGateway` in function `homeassistant.components.mysensors.entity.MySensorsChildEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/mysensors/__init__.py:140:45-55: Argument `BaseAsyncGateway | int | str | Unknown` is not assignable to parameter `node_id` with type `int` in function `homeassistant.components.mysensors.entity.MySensorsChildEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/mysensors/__init__.py:140:45-55: Argument `BaseAsyncGateway | int | str | Unknown` is not assignable to parameter `child_id` with type `int` in function `homeassistant.components.mysensors.entity.MySensorsChildEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/mysensors/__init__.py:140:45-55: Argument `BaseAsyncGateway | int | str | Unknown` is not assignable to parameter `value_type` with type `int` in function `homeassistant.components.mysensors.entity.MySensorsChildEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/mysensors/binary_sensor.py:36:9-12: Unexpected keyword argument `key` in function `MySensorsBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/binary_sensor.py:40:9-12: Unexpected keyword argument `key` in function `MySensorsBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/binary_sensor.py:44:9-12: Unexpected keyword argument `key` in function `MySensorsBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/binary_sensor.py:48:9-12: Unexpected keyword argument `key` in function `MySensorsBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/binary_sensor.py:52:9-12: Unexpected keyword argument `key` in function `MySensorsBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/binary_sensor.py:56:9-12: Unexpected keyword argument `key` in function `MySensorsBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/binary_sensor.py:60:9-12: Unexpected keyword argument `key` in function `MySensorsBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/binary_sensor.py:64:9-12: Unexpected keyword argument `key` in function `MySensorsBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/binary_sensor.py:100:5-23: Class member `MySensorsBinarySensor.entity_description` overrides parent class `MySensorsChildEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mysensors/binary_sensor.py:100:5-23: Class member `MySensorsBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mysensors/climate.py:168:29-39: `value_type` may be uninitialized [unbound-name] +ERROR homeassistant/components/mysensors/gateway.py:107:32-44: `(_: BaseAsyncGateway) -> None` is not assignable to attribute `on_conn_made` with type `None` [bad-assignment] +ERROR homeassistant/components/mysensors/gateway.py:285:28-45: `(_: BaseAsyncGateway) -> None` is not assignable to attribute `on_conn_made` with type `None` [bad-assignment] +ERROR homeassistant/components/mysensors/gateway.py:327:20-37: Object of class `NoneType` has no attribute `const` [missing-attribute] +ERROR homeassistant/components/mysensors/handler.py:40:16-33: Object of class `NoneType` has no attribute `const` [missing-attribute] +ERROR homeassistant/components/mysensors/helpers.py:167:26-37: Argument `Unknown | None` is not assignable to parameter `gateway` with type `BaseAsyncGateway` in function `validate_node` [bad-argument-type] +ERROR homeassistant/components/mysensors/helpers.py:169:13-32: Object of class `NoneType` has no attribute `sensors` [missing-attribute] +ERROR homeassistant/components/mysensors/helpers.py:170:39-50: Argument `Unknown | None` is not assignable to parameter `gateway` with type `BaseAsyncGateway` in function `validate_child` [bad-argument-type] +ERROR homeassistant/components/mysensors/sensor.py:56:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:61:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:67:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:69:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:72:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:74:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:77:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:78:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:81:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:82:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:85:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:86:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:89:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:90:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:93:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:94:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:97:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:98:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:101:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:103:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:108:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:113:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:118:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:122:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:128:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:134:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:136:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:141:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:143:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:146:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:151:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:156:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:160:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:166:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:168:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:171:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:177:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:183:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:184:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:187:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:191:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:196:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:200:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:204:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mysensors/sensor.py:256:5-23: Class member `MyBatterySensor._attr_device_class` overrides parent class `MySensorNodeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mysensors/sensor.py:287:18-36: Class member `MySensorsSensor.entity_description` overrides parent class `MySensorsChildEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mystrom/sensor.py:34:9-12: Unexpected keyword argument `key` in function `MyStromSwitchSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mystrom/sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `MyStromSwitchSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mystrom/sensor.py:41:9-12: Unexpected keyword argument `key` in function `MyStromSwitchSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mystrom/sensor.py:48:9-12: Unexpected keyword argument `key` in function `MyStromSwitchSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/mystrom/sensor.py:63:29-54: `MyStromBulb | MyStromSwitch` is not assignable to `MyStromSwitch` [bad-assignment] +ERROR homeassistant/components/mystrom/sensor.py:75:5-23: Class member `MyStromSwitchSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/mystrom/sensor.py:91:25-47: Argument `set[tuple[str, str | None]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/myuplink/binary_sensor.py:22:13-16: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/binary_sensor.py:23:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/binary_sensor.py:28:13-16: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/binary_sensor.py:29:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/binary_sensor.py:35:5-8: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/binary_sensor.py:40:5-8: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/binary_sensor.py:42:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/binary_sensor.py:134:18-36: Class member `MyUplinkDevicePointBinarySensor.entity_description` overrides parent class `MyUplinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/myuplink/binary_sensor.py:168:14-32: Class member `MyUplinkDeviceBinarySensor.entity_description` overrides parent class `MyUplinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/myuplink/binary_sensor.py:198:14-32: Class member `MyUplinkSystemBinarySensor.entity_description` overrides parent class `MyUplinkSystemEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/myuplink/coordinator.py:33:5-17: Class member `MyUplinkDataCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/myuplink/number.py:19:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/number.py:20:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/number.py:28:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/number.py:29:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/number.py:35:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/number.py:36:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/number.py:124:18-36: Class member `MyUplinkNumber.entity_description` overrides parent class `MyUplinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/myuplink/sensor.py:34:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:46:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:65:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:72:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:79:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:85:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:91:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:97:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:104:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:111:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:118:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:119:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:125:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:132:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:145:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:146:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:149:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:150:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:154:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:155:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:159:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:160:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:164:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:165:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:171:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:172:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:175:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:176:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:180:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:181:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:185:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:186:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/sensor.py:289:18-36: Class member `MyUplinkDevicePointSensor.entity_description` overrides parent class `MyUplinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/myuplink/switch.py:22:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/switch.py:23:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/switch.py:26:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/switch.py:27:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/switch.py:32:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/switch.py:33:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/switch.py:36:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/switch.py:37:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/switch.py:108:18-36: Class member `MyUplinkDevicePointSwitch.entity_description` overrides parent class `MyUplinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/myuplink/update.py:15:5-8: Unexpected keyword argument `key` in function `homeassistant.components.update.UpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/myuplink/update.py:56:14-32: Class member `MyUplinkDeviceUpdate.entity_description` overrides parent class `MyUplinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nad/media_player.py:5:1-72: Could not find import of `nad_receiver` [missing-import] +ERROR homeassistant/components/nam/button.py:29:5-8: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/button.py:31:5-20: Unexpected keyword argument `entity_category` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/button.py:63:14-32: Class member `NAMButton.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nam/coordinator.py:29:5-17: Class member `NAMDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nam/sensor.py:89:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:98:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:107:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:108:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:116:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:117:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:125:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:134:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:135:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:143:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:144:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:152:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:153:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:161:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:162:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:170:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:171:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:179:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:180:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:188:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:189:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:197:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:198:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:202:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:203:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:209:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:210:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:218:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:219:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:227:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:228:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:236:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:237:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:241:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:242:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:248:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:249:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:257:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:258:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:266:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:267:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:275:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:276:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:284:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:285:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:289:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:290:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:296:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:297:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:305:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:306:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:314:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:315:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:323:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:324:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:332:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:333:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:341:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:342:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:350:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:354:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:356:9-24: Unexpected keyword argument `entity_category` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:360:9-12: Unexpected keyword argument `key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:361:9-24: Unexpected keyword argument `translation_key` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:363:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:364:9-24: Unexpected keyword argument `entity_category` in function `NAMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nam/sensor.py:404:5-23: Class member `NAMSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nam/sensor.py:404:5-23: Class member `NAMSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nanoleaf/__init__.py:73:28-48: `touch_event_callback` may be uninitialized [unbound-name] +ERROR homeassistant/components/nanoleaf/__init__.py:73:52-66: `supports_touch` may be uninitialized [unbound-name] +ERROR homeassistant/components/nanoleaf/button.py:25:5-23: Class member `NanoleafIdentifyButton._attr_device_class` overrides parent class `NanoleafEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nanoleaf/config_flow.py:142:69-144:10: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[PathLike[str] | str, dict[str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None]]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/nanoleaf/config_flow.py:223:55-225:18: Unpacked argument `tuple[str, dict[str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None]]` is not assignable to parameter `*args` with type `tuple[str, dict[Unknown, Unknown] | list[Unknown], bool]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/nanoleaf/coordinator.py:21:5-17: Class member `NanoleafCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nanoleaf/light.py:40:5-29: Class member `NanoleafLight._attr_supported_features` overrides parent class `NanoleafEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nasweb/__init__.py:129:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/nasweb/alarm_control_panel.py:124:59-75: Cannot index into `dict[str, AlarmControlPanelState]` [bad-index] +ERROR homeassistant/components/nasweb/coordinator.py:176:13-22: Argument `HassJob[[now: datetime], Coroutine[Unknown, Unknown, None]]` is not assignable to parameter `action` with type `((datetime) -> Coroutine[Any, Any, None] | None) | HassJob[[datetime], Coroutine[Any, Any, None] | None]` in function `homeassistant.helpers.event.async_call_at` [bad-argument-type] +ERROR homeassistant/components/nasweb/sensor.py:126:5-18: Class member `InputStateSensor._attr_options` overrides parent class `BaseSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nasweb/sensor.py:143:14-32: Class member `InputStateSensor._attr_native_value` overrides parent class `BaseSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nasweb/switch.py:115:53-71: Cannot index into `dict[str | None, bool | None]` [bad-index] +ERROR homeassistant/components/neato/__init__.py:58:43-60: Argument `BoundMethod[NeatoHub, (...) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/neato/api.py:31:9-23: Class member `ConfigEntryAuth.refresh_tokens` overrides parent class `OAuthSession` in an inconsistent manner [bad-override] +ERROR homeassistant/components/neato/button.py:44:48-80: Argument `BoundMethod[Robot, (self: Robot) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/neato/camera.py:94:26-34: `map_data` may be uninitialized [unbound-name] +ERROR homeassistant/components/neato/camera.py:114:30-38: `map_data` may be uninitialized [unbound-name] +ERROR homeassistant/components/neato/entity.py:21:14-31: Class member `NeatoEntity._attr_device_info` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/neato/hub.py:42:49-79: Argument `BoundMethod[Account, (self: Account) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/neato/sensor.py:48:5-23: Class member `NeatoSensor._attr_device_class` overrides parent class `NeatoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/neato/vacuum.py:98:5-29: Class member `NeatoConnectedVacuum._attr_supported_features` overrides parent class `NeatoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/neato/vacuum.py:125:14-29: Class member `NeatoConnectedVacuum._attr_unique_id` overrides parent class `NeatoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/neato/vacuum.py:125:14-29: Class member `NeatoConnectedVacuum._attr_unique_id` overrides parent class `StateVacuumEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nederlandse_spoorwegen/config_flow.py:60:52-71: Argument `BoundMethod[NSAPI, (self: NSAPI) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/nederlandse_spoorwegen/config_flow.py:142:63-82: Argument `BoundMethod[NSAPI, (self: NSAPI) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/nederlandse_spoorwegen/config_flow.py:205:25-44: Argument `BoundMethod[NSAPI, (self: NSAPI) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/nederlandse_spoorwegen/sensor.py:132:5-23: Class member `NSDepartureSensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ness_alarm/alarm_control_panel.py:74:35-39: Argument `str | None` is not assignable to parameter `code` with type `str` in function `nessclient.client.Client.disarm` [bad-argument-type] +ERROR homeassistant/components/ness_alarm/alarm_control_panel.py:86:34-38: Argument `str | None` is not assignable to parameter `code` with type `str` in function `nessclient.client.Client.panic` [bad-argument-type] +ERROR homeassistant/components/ness_alarm/alarm_control_panel.py:101:62-103:14: No matching overload found for function `dict.get` called with arguments: (ArmingMode | None, Literal[AlarmControlPanelState.ARMED_AWAY]) [no-matching-overload] +ERROR homeassistant/components/nest/__init__.py:175:41-51: Cannot set item in `dict[str, datetime | str]` [unsupported-operation] +ERROR homeassistant/components/nest/__init__.py:177:36-53: Cannot set item in `dict[str, datetime | str]` [unsupported-operation] +ERROR homeassistant/components/nest/__init__.py:286:49-66: `subscription_name` may be uninitialized [unbound-name] +ERROR homeassistant/components/nest/__init__.py:288:48-65: `subscription_name` may be uninitialized [unbound-name] +ERROR homeassistant/components/nest/__init__.py:295:13-30: `subscription_name` may be uninitialized [unbound-name] +ERROR homeassistant/components/nest/__init__.py:407:57-69: `content_type` may be uninitialized [unbound-name] +ERROR homeassistant/components/nest/api.py:70:24-76: `datetime` is not assignable to attribute `expiry` with type `None` [bad-assignment] +ERROR homeassistant/components/nest/api.py:132:68-85: `subscription_name` may be uninitialized [unbound-name] +ERROR homeassistant/components/nest/camera.py:315:27-45: Object of class `NoneType` has no attribute `stop_stream` [missing-attribute] +ERROR homeassistant/components/nest/event.py:42:9-12: Unexpected keyword argument `key` in function `NestEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nest/event.py:43:9-24: Unexpected keyword argument `translation_key` in function `NestEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nest/event.py:50:9-12: Unexpected keyword argument `key` in function `NestEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nest/event.py:51:9-24: Unexpected keyword argument `translation_key` in function `NestEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nest/event.py:85:5-23: Class member `NestTraitEventEntity.entity_description` overrides parent class `EventEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nest/media_source.py:91:39-44: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/nest/media_source.py:384:5-9: Class member `NestMediaSource.name` overrides parent class `MediaSource` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/binary_sensor.py:19:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/binary_sensor.py:55:14-32: Class member `NetatmoWeatherBinarySensor.entity_description` overrides parent class `NetatmoWeatherModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/button.py:46:5-11: Class member `NetatmoCoverPreferredPositionButton.device` overrides parent class `NetatmoModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/camera.py:89:5-29: Class member `NetatmoCamera._attr_supported_features` overrides parent class `NetatmoModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/camera.py:91:5-11: Class member `NetatmoCamera.device` overrides parent class `NetatmoModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/climate.py:191:5-29: Class member `NetatmoThermostat._attr_supported_features` overrides parent class `NetatmoRoomEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/cover.py:49:5-29: Class member `NetatmoCover._attr_supported_features` overrides parent class `NetatmoModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/cover.py:56:5-23: Class member `NetatmoCover._attr_device_class` overrides parent class `NetatmoModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/cover.py:58:5-11: Class member `NetatmoCover.device` overrides parent class `NetatmoModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/entity.py:120:5-11: Class member `NetatmoRoomEntity.device` overrides parent class `NetatmoDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/entity.py:153:5-11: Class member `NetatmoModuleEntity.device` overrides parent class `NetatmoDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/fan.py:50:5-29: Class member `NetatmoFan._attr_supported_features` overrides parent class `NetatmoModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/fan.py:53:5-11: Class member `NetatmoFan.device` overrides parent class `NetatmoModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/light.py:70:5-11: Class member `NetatmoCameraLight.device` overrides parent class `NetatmoModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/light.py:151:5-11: Class member `NetatmoLight.device` overrides parent class `NetatmoModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/media_source.py:38:5-9: Class member `NetatmoSource.name` overrides parent class `MediaSource` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/sensor.py:127:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:135:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:137:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:140:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:147:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:155:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:157:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:160:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:167:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:174:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:181:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:183:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:190:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:197:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:199:9-24: Unexpected keyword argument `entity_category` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:205:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:212:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:214:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:220:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:227:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:229:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:235:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:237:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:243:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:245:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:251:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:253:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:254:9-24: Unexpected keyword argument `entity_category` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:257:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:259:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:260:9-24: Unexpected keyword argument `entity_category` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:264:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:266:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:267:9-24: Unexpected keyword argument `entity_category` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:271:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:278:9-12: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:299:9-12: Unexpected keyword argument `key` in function `NetatmoPublicWeatherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:307:9-12: Unexpected keyword argument `key` in function `NetatmoPublicWeatherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:315:9-12: Unexpected keyword argument `key` in function `NetatmoPublicWeatherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:322:9-12: Unexpected keyword argument `key` in function `NetatmoPublicWeatherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:329:9-12: Unexpected keyword argument `key` in function `NetatmoPublicWeatherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:330:9-24: Unexpected keyword argument `translation_key` in function `NetatmoPublicWeatherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:331:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetatmoPublicWeatherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:339:9-12: Unexpected keyword argument `key` in function `NetatmoPublicWeatherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:340:9-24: Unexpected keyword argument `translation_key` in function `NetatmoPublicWeatherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:347:9-12: Unexpected keyword argument `key` in function `NetatmoPublicWeatherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:348:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetatmoPublicWeatherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:355:9-12: Unexpected keyword argument `key` in function `NetatmoPublicWeatherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:362:9-12: Unexpected keyword argument `key` in function `NetatmoPublicWeatherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:363:9-24: Unexpected keyword argument `translation_key` in function `NetatmoPublicWeatherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:364:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetatmoPublicWeatherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:371:9-12: Unexpected keyword argument `key` in function `NetatmoPublicWeatherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:372:9-24: Unexpected keyword argument `translation_key` in function `NetatmoPublicWeatherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:373:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetatmoPublicWeatherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:382:5-8: Unexpected keyword argument `key` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:384:5-20: Unexpected keyword argument `entity_category` in function `NetatmoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netatmo/sensor.py:519:5-23: Class member `NetatmoWeatherSensor.entity_description` overrides parent class `NetatmoWeatherModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/sensor.py:519:5-23: Class member `NetatmoWeatherSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/sensor.py:555:5-23: Class member `NetatmoClimateBatterySensor.entity_description` overrides parent class `NetatmoModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/sensor.py:555:5-23: Class member `NetatmoClimateBatterySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/sensor.py:556:5-11: Class member `NetatmoClimateBatterySensor.device` overrides parent class `NetatmoModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/sensor.py:598:5-23: Class member `NetatmoSensor.entity_description` overrides parent class `NetatmoModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/sensor.py:598:5-23: Class member `NetatmoSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/sensor.py:644:5-23: Class member `NetatmoRoomSensor.entity_description` overrides parent class `NetatmoRoomEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/sensor.py:644:5-23: Class member `NetatmoRoomSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/sensor.py:683:5-23: Class member `NetatmoPublicSensor.entity_description` overrides parent class `NetatmoBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/sensor.py:683:5-23: Class member `NetatmoPublicSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netatmo/switch.py:46:5-11: Class member `NetatmoSwitch.device` overrides parent class `NetatmoModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netdata/sensor.py:7:1-28: Could not find import of `netdata` [missing-import] +ERROR homeassistant/components/netdata/sensor.py:8:1-44: Could not find import of `netdata.exceptions` [missing-import] +ERROR homeassistant/components/netdata/sensor.py:214:31-41: `Literal['critical']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/netdata/sensor.py:216:23-76: `Literal['ok', 'warning']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/netgear/button.py:32:9-12: Unexpected keyword argument `key` in function `NetgearButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/button.py:34:9-24: Unexpected keyword argument `entity_category` in function `NetgearButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/button.py:57:5-23: Class member `NetgearRouterButtonEntity.entity_description` overrides parent class `NetgearRouterCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netgear/button.py:57:5-23: Class member `NetgearRouterButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netgear/config_flow.py:109:9-31: Class member `NetgearFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netgear/config_flow.py:133:38-55: Argument `dict[str, bool | int | str]` is not assignable to parameter `description_placeholders` with type `Mapping[str, str] | None` in function `homeassistant.config_entries.ConfigFlow.async_show_form` [bad-argument-type] +ERROR homeassistant/components/netgear/config_flow.py:147:36-44: `hostname` may be uninitialized [unbound-name] +ERROR homeassistant/components/netgear/config_flow.py:200:57-202:14: Unpacked argument `tuple[Any, Any, Any, bool | int | str, bool | int | str]` is not assignable to parameter `*args` with type `tuple[str, str | None, str | None, int | None, bool]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/netgear/router.py:84:29-33: `None` is not assignable to attribute `api` with type `Netgear` [bad-assignment] +ERROR homeassistant/components/netgear/router.py:115:30-83: `bool | Unknown` is not assignable to attribute `track_devices` with type `Never` [bad-assignment] +ERROR homeassistant/components/netgear/router.py:124:39-40: `Literal[2]` is not assignable to attribute `method_version` with type `Never` [bad-assignment] +ERROR homeassistant/components/netgear/router.py:135:39-40: `Literal[1]` is not assignable to attribute `method_version` with type `Never` [bad-assignment] +ERROR homeassistant/components/netgear/router.py:142:59-70: Argument `BoundMethod[Self@NetgearRouter, (self: Self@NetgearRouter) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/netgear/router.py:181:21-50: Argument `BoundMethod[Netgear, (self: Netgear) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/netgear/router.py:186:17-48: Argument `BoundMethod[Netgear, (self: Netgear) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/netgear/router.py:232:59-85: Argument `BoundMethod[Netgear, (self: Netgear) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/netgear/router.py:238:17-51: Argument `BoundMethod[Netgear, (self: Netgear) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/netgear/router.py:244:59-87: Argument `BoundMethod[Netgear, (self: Netgear) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/netgear/router.py:256:59-83: Argument `BoundMethod[Netgear, (self: Netgear) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/netgear/router.py:261:52-67: Argument `BoundMethod[Netgear, (self: Netgear) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/netgear/router.py:266:59-86: Argument `BoundMethod[Netgear, (self: Netgear) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/netgear/router.py:271:52-80: Argument `BoundMethod[Netgear, (self: Netgear) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/netgear/sensor.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:49:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:50:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:53:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:56:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:57:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:60:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:63:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:64:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:67:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:69:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:72:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:73:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:74:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:75:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:90:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:91:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:92:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:97:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:99:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:104:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:106:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:111:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:113:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:118:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:119:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:120:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:127:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:129:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:136:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:137:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:138:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:145:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:146:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:147:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:154:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:155:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:156:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:163:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:164:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:165:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:172:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:173:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:174:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:181:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:182:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:183:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:190:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:191:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:192:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:199:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:200:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:201:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:208:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:209:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:210:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:217:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:218:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:219:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:229:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:230:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:231:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:236:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:237:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:238:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:243:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:244:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:245:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:252:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:253:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:254:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:259:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:260:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:261:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:269:9-12: Unexpected keyword argument `key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:270:9-24: Unexpected keyword argument `translation_key` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:271:9-24: Unexpected keyword argument `entity_category` in function `NetgearSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/sensor.py:345:14-32: Class member `NetgearSensorEntity.entity_description` overrides parent class `NetgearDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netgear/sensor.py:372:5-23: Class member `NetgearRouterSensorEntity.entity_description` overrides parent class `NetgearRouterCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netgear/sensor.py:372:5-23: Class member `NetgearRouterSensorEntity.entity_description` overrides parent class `RestoreSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netgear/switch.py:28:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:29:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:30:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:50:9-12: Unexpected keyword argument `key` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:51:9-24: Unexpected keyword argument `translation_key` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:52:9-24: Unexpected keyword argument `entity_category` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:57:9-12: Unexpected keyword argument `key` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:58:9-24: Unexpected keyword argument `translation_key` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:59:9-24: Unexpected keyword argument `entity_category` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:64:9-12: Unexpected keyword argument `key` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:65:9-24: Unexpected keyword argument `translation_key` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:66:9-24: Unexpected keyword argument `entity_category` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:71:9-12: Unexpected keyword argument `key` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:72:9-24: Unexpected keyword argument `translation_key` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:73:9-24: Unexpected keyword argument `entity_category` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:78:9-12: Unexpected keyword argument `key` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:79:9-24: Unexpected keyword argument `translation_key` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:80:9-24: Unexpected keyword argument `entity_category` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:85:9-12: Unexpected keyword argument `key` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:86:9-24: Unexpected keyword argument `translation_key` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:87:9-24: Unexpected keyword argument `entity_category` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:92:9-12: Unexpected keyword argument `key` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:93:9-24: Unexpected keyword argument `translation_key` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:94:9-24: Unexpected keyword argument `entity_category` in function `NetgearSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear/switch.py:159:14-32: Class member `NetgearAllowBlock.entity_description` overrides parent class `NetgearDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netgear/switch.py:188:5-23: Class member `NetgearRouterSwitchEntity.entity_description` overrides parent class `NetgearRouterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netgear/switch.py:188:5-23: Class member `NetgearRouterSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netgear/switch.py:212:17-61: Argument `() -> bool | None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/netgear/update.py:41:5-23: Class member `NetgearUpdateEntity._attr_device_class` overrides parent class `NetgearRouterCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netgear/update.py:42:5-29: Class member `NetgearUpdateEntity._attr_supported_features` overrides parent class `NetgearRouterCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netgear_lte/__init__.py:76:32-40: Unexpected keyword argument `hostname` in function `eternalegypt.eternalegypt.LB2120.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/__init__.py:76:47-57: Unexpected keyword argument `websession` in function `eternalegypt.eternalegypt.LB2120.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/__init__.py:76:58-65: `session` may be uninitialized [unbound-name] +ERROR homeassistant/components/netgear_lte/binary_sensor.py:19:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/binary_sensor.py:20:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/binary_sensor.py:21:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/binary_sensor.py:22:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/binary_sensor.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/binary_sensor.py:26:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/binary_sensor.py:27:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/binary_sensor.py:31:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/binary_sensor.py:32:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/binary_sensor.py:33:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/binary_sensor.py:50:7-29: Field `entity_description` is declared `EntityDescription` in ancestor `class LTEEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/netgear_lte/config_flow.py:66:13-21: Unexpected keyword argument `hostname` in function `eternalegypt.eternalegypt.LB2120.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/config_flow.py:67:13-21: Unexpected keyword argument `password` in function `eternalegypt.eternalegypt.LB2120.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/config_flow.py:68:13-23: Unexpected keyword argument `websession` in function `eternalegypt.eternalegypt.LB2120.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/coordinator.py:21:5-17: Class member `NetgearLTEDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netgear_lte/notify.py:50:16-23: `targets` may be uninitialized [unbound-name] +ERROR homeassistant/components/netgear_lte/notify.py:57:23-30: `targets` may be uninitialized [unbound-name] +ERROR homeassistant/components/netgear_lte/sensor.py:38:9-12: Unexpected keyword argument `key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:39:9-24: Unexpected keyword argument `translation_key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:44:9-12: Unexpected keyword argument `key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:50:9-12: Unexpected keyword argument `key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:53:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:60:9-12: Unexpected keyword argument `key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:62:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:63:9-24: Unexpected keyword argument `entity_category` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:67:9-12: Unexpected keyword argument `key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:70:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:71:9-24: Unexpected keyword argument `entity_category` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:75:9-12: Unexpected keyword argument `key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:78:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:79:9-24: Unexpected keyword argument `entity_category` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:83:9-12: Unexpected keyword argument `key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:84:9-24: Unexpected keyword argument `translation_key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:85:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:86:9-24: Unexpected keyword argument `entity_category` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:89:9-12: Unexpected keyword argument `key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:91:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:92:9-24: Unexpected keyword argument `entity_category` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:95:9-12: Unexpected keyword argument `key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:97:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:98:9-24: Unexpected keyword argument `entity_category` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:101:9-12: Unexpected keyword argument `key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:103:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:104:9-24: Unexpected keyword argument `entity_category` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:107:9-12: Unexpected keyword argument `key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:108:9-24: Unexpected keyword argument `translation_key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:109:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:110:9-24: Unexpected keyword argument `entity_category` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:113:9-12: Unexpected keyword argument `key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:115:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:116:9-24: Unexpected keyword argument `entity_category` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:119:9-12: Unexpected keyword argument `key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:120:9-24: Unexpected keyword argument `translation_key` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:121:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:122:9-24: Unexpected keyword argument `entity_category` in function `NetgearLTESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/netgear_lte/sensor.py:139:5-23: Class member `NetgearLTESensor.entity_description` overrides parent class `LTEEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netgear_lte/sensor.py:139:5-23: Class member `NetgearLTESensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/netgear_lte/services.py:64:19-24: `modem` is uninitialized [unbound-name] +ERROR homeassistant/components/netgear_lte/services.py:67:19-24: `modem` is uninitialized [unbound-name] +ERROR homeassistant/components/netgear_lte/services.py:69:19-24: `modem` is uninitialized [unbound-name] +ERROR homeassistant/components/netgear_lte/services.py:71:15-20: `modem` is uninitialized [unbound-name] +ERROR homeassistant/components/netgear_lte/services.py:73:15-20: `modem` is uninitialized [unbound-name] +ERROR homeassistant/components/netio/switch.py:10:1-26: Could not find import of `pynetio` [missing-import] +ERROR homeassistant/components/network/__init__.py:90:12-65: Returned type `str | Unknown | None` is not assignable to declared return type `str` [bad-return] +ERROR homeassistant/components/network/__init__.py:182:46-83: Argument `() -> bool` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/neurio_energy/sensor.py:8:8-14: Could not find import of `neurio` [missing-import] +ERROR homeassistant/components/neurio_energy/sensor.py:135:29-42: `int` is not assignable to attribute `_daily_usage` with type `None` [bad-assignment] +ERROR homeassistant/components/neurio_energy/sensor.py:156:41-68: `Literal[UnitOfEnergy.KILO_WATT_HOUR]` is not assignable to attribute `_unit_of_measurement` with type `UnitOfPower` [bad-assignment] +ERROR homeassistant/components/nexia/climate.py:170:45-57: Argument `int | str` is not assignable to parameter `unique_id` with type `str` in function `homeassistant.components.nexia.entity.NexiaThermostatZoneEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/nexia/climate.py:181:14-38: Class member `NexiaZone._attr_supported_features` overrides parent class `NexiaThermostatZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nexia/climate.py:368:17-46: `-` is not supported between `None` and `int` [unsupported-operation] +ERROR homeassistant/components/nexia/climate.py:375:17-46: `-` is not supported between `int` and `None` [unsupported-operation] +ERROR homeassistant/components/nexia/config_flow.py:103:52-56: `info` may be uninitialized [unbound-name] +ERROR homeassistant/components/nexia/config_flow.py:105:54-58: `info` may be uninitialized [unbound-name] +ERROR homeassistant/components/nexia/coordinator.py:23:5-17: Class member `NexiaDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nexia/coordinator.py:44:16-46: Returned type `dict[str, Any] | None` is not assignable to declared return type `dict[str, Any]` [bad-return] +ERROR homeassistant/components/nexia/entity.py:59:25-50: Argument `set[tuple[str, int | str]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/nexia/entity.py:110:9-31: `dict[str, object]` is not assignable to attribute `_attr_device_info` with type `TypedDict[DeviceInfo] | None` [bad-assignment] +ERROR homeassistant/components/nexia/scene.py:45:39-63: Argument `int` is not assignable to parameter `unique_id` with type `str` in function `homeassistant.components.nexia.entity.NexiaEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/nexia/sensor.py:211:14-32: Class member `NexiaThermostatSensor._attr_device_class` overrides parent class `NexiaThermostatEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nexia/sensor.py:251:14-32: Class member `NexiaThermostatZoneSensor._attr_device_class` overrides parent class `NexiaThermostatZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nexia/switch.py:74:45-52: Argument `int | str` is not assignable to parameter `unique_id` with type `str` in function `homeassistant.components.nexia.entity.NexiaThermostatZoneEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/nexia/switch.py:112:46-58: Cannot index into `dict[int, NexiaRoomIQHarmonizer]` [bad-index] +ERROR homeassistant/components/nexia/switch.py:117:27-39: Cannot set item in `dict[int, NexiaRoomIQHarmonizer]` [unsupported-operation] +ERROR homeassistant/components/nextbus/coordinator.py:118:55-72: Cannot set item in `dict[RouteStop, dict[str, Any]]` [unsupported-operation] +ERROR homeassistant/components/nextbus/coordinator.py:129:55-67: Argument `() -> dict[RouteStop, dict[str, Any]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/nextbus/sensor.py:63:5-23: Class member `NextBusDepartureSensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nextcloud/__init__.py:57:49-60: Argument `() -> Unknown` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/nextcloud/binary_sensor.py:20:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:21:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:22:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:23:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:26:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:27:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:28:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:29:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:32:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:33:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:34:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:39:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:44:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:49:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/binary_sensor.py:68:7-28: Field `entity_description` is declared `EntityDescription` in ancestor `class NextcloudEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/nextcloud/coordinator.py:23:5-17: Class member `NextcloudDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nextcloud/coordinator.py:81:48-60: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/nextcloud/sensor.py:43:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:46:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:49:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:52:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:55:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:58:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:61:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:64:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:65:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:68:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:71:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:77:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:79:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:80:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:83:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:84:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:86:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:87:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:90:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:91:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:93:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:94:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:97:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:100:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:101:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:104:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:107:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:108:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:111:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:114:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:115:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:118:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:119:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:121:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:122:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:126:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:127:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:128:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:129:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:132:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:133:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:140:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:141:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:142:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:145:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:146:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:147:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:150:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:151:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:153:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:154:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:160:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:161:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:163:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:164:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:170:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:171:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:173:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:174:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:177:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:178:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:180:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:181:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:187:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:188:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:190:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:191:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:197:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:198:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:200:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:201:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:207:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:208:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:209:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:210:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:213:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:214:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:215:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:216:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:219:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:220:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:221:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:222:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:225:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:226:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:228:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:229:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:233:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:234:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:236:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:237:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:240:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:241:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:243:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:244:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:247:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:248:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:250:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:251:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:254:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:255:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:257:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:258:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:262:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:263:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:265:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:266:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:269:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:270:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:272:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:273:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:276:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:277:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:279:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:280:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:283:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:284:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:286:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:287:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:290:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:291:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:293:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:294:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:297:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:298:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:300:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:301:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:304:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:305:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:306:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:307:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:312:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:313:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:315:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:316:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:320:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:321:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:322:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:323:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:328:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:329:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:331:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:332:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:338:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:339:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:341:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:342:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:348:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:349:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:351:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:352:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:358:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:359:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:361:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:365:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:366:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:368:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:374:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:375:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:377:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:383:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:384:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:385:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:388:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:389:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:390:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:393:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:394:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:396:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:399:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:400:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:402:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:405:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:406:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:410:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:411:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:413:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:416:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:417:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:419:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:422:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:423:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:425:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:428:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:429:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:431:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:434:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:435:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:437:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:440:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:441:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:443:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:446:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:447:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:449:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:450:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:456:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:457:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:459:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:460:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:463:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:464:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:466:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:467:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:473:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:474:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:478:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:479:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:483:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:484:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:486:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:489:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:490:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:492:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:495:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:496:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:498:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:501:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:502:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:506:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:507:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:511:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:512:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:516:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:517:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:522:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:523:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:528:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:529:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:534:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:535:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:542:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:543:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:550:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:551:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:558:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:559:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:560:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:561:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:564:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:565:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:566:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:567:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:570:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:571:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:572:9-24: Unexpected keyword argument `entity_category` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:573:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:576:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:577:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:584:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:585:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:592:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:593:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:596:9-12: Unexpected keyword argument `key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:597:9-24: Unexpected keyword argument `translation_key` in function `NextcloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/sensor.py:619:5-23: Class member `NextcloudSensor.entity_description` overrides parent class `NextcloudEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nextcloud/sensor.py:619:5-23: Class member `NextcloudSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nextcloud/update.py:25:61-64: Unexpected keyword argument `key` in function `homeassistant.components.update.UpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextcloud/update.py:31:7-28: Field `entity_description` is declared `EntityDescription` in ancestor `class NextcloudEntity: ... +`, which is not assignable to the type `UpdateEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/nextdns/__init__.py:115:38-52: Unpacked keyword argument `NextDnsUpdateCoordinator[ConnectionStatus]` is not assignable to parameter `dnssec` with type `NextDnsUpdateCoordinator[AnalyticsDnssec]` in function `NextDnsData.__init__` [bad-argument-type] +ERROR homeassistant/components/nextdns/__init__.py:115:38-52: Unpacked keyword argument `NextDnsUpdateCoordinator[ConnectionStatus]` is not assignable to parameter `encryption` with type `NextDnsUpdateCoordinator[AnalyticsEncryption]` in function `NextDnsData.__init__` [bad-argument-type] +ERROR homeassistant/components/nextdns/__init__.py:115:38-52: Unpacked keyword argument `NextDnsUpdateCoordinator[ConnectionStatus]` is not assignable to parameter `ip_versions` with type `NextDnsUpdateCoordinator[AnalyticsIpVersions]` in function `NextDnsData.__init__` [bad-argument-type] +ERROR homeassistant/components/nextdns/__init__.py:115:38-52: Unpacked keyword argument `NextDnsUpdateCoordinator[ConnectionStatus]` is not assignable to parameter `protocols` with type `NextDnsUpdateCoordinator[AnalyticsProtocols]` in function `NextDnsData.__init__` [bad-argument-type] +ERROR homeassistant/components/nextdns/__init__.py:115:38-52: Unpacked keyword argument `NextDnsUpdateCoordinator[ConnectionStatus]` is not assignable to parameter `settings` with type `NextDnsUpdateCoordinator[Settings]` in function `NextDnsData.__init__` [bad-argument-type] +ERROR homeassistant/components/nextdns/__init__.py:115:38-52: Unpacked keyword argument `NextDnsUpdateCoordinator[ConnectionStatus]` is not assignable to parameter `status` with type `NextDnsUpdateCoordinator[AnalyticsStatus]` in function `NextDnsData.__init__` [bad-argument-type] +ERROR homeassistant/components/nextdns/binary_sensor.py:34:9-12: Unexpected keyword argument `key` in function `NextDnsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/binary_sensor.py:35:9-24: Unexpected keyword argument `entity_category` in function `NextDnsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/binary_sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `NextDnsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/binary_sensor.py:41:9-12: Unexpected keyword argument `key` in function `NextDnsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/binary_sensor.py:42:9-24: Unexpected keyword argument `entity_category` in function `NextDnsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/binary_sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `NextDnsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/binary_sensor.py:66:5-23: Class member `NextDnsBinarySensor.entity_description` overrides parent class `NextDnsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nextdns/binary_sensor.py:66:5-23: Class member `NextDnsBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nextdns/button.py:23:5-8: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/button.py:24:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/button.py:25:5-20: Unexpected keyword argument `entity_category` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/button.py:40:7-20: Field `entity_description` is declared `EntityDescription` in ancestor `class NextDnsEntity: ... +`, which is not assignable to the type `ButtonEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/nextdns/coordinator.py:47:5-17: Class member `NextDnsUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nextdns/coordinator.py:48:5-21: Class member `NextDnsUpdateCoordinator._update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nextdns/sensor.py:52:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:54:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:60:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:62:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:63:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:68:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:76:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:78:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:85:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:87:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:88:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:94:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:96:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:97:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:103:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:105:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:106:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:112:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:114:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:115:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:121:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:123:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:124:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:130:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:132:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:133:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:134:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:139:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:141:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:142:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:143:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:149:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:151:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:152:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:153:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:159:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:161:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:162:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:163:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:169:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:171:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:172:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:173:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:179:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:181:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:182:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:183:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:189:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:191:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:192:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:193:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:199:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:201:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:202:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:203:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:208:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:210:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:211:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:212:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:217:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:219:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:220:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:221:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:227:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:229:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:230:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:231:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:236:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:238:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:239:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:240:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:245:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:247:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:248:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:249:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:255:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:257:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:258:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:259:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:264:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:266:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:267:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:268:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:273:9-12: Unexpected keyword argument `key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:275:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:276:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:277:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/sensor.py:304:5-23: Class member `NextDnsSensor.entity_description` overrides parent class `NextDnsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nextdns/sensor.py:304:5-23: Class member `NextDnsSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nextdns/switch.py:36:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:37:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:38:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:42:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:43:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:44:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:48:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:49:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:50:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:54:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:55:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:56:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:60:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:61:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:62:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:66:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:67:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:68:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:72:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:73:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:74:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:78:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:79:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:80:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:84:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:85:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:86:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:90:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:91:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:92:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:96:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:97:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:98:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:102:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:103:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:104:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:108:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:109:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:110:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:114:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:115:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:116:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:120:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:121:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:122:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:126:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:127:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:128:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:132:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:133:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:134:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:138:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:139:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:140:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:144:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:145:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:146:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:150:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:151:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:152:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:156:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:157:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:158:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:162:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:163:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:164:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:168:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:169:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:170:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:174:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:175:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:176:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:180:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:181:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:182:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:183:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:187:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:188:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:189:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:190:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:194:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:195:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:196:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:197:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:201:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:202:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:203:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:204:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:208:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:209:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:210:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:211:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:215:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:216:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:217:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:218:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:222:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:223:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:224:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:225:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:229:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:230:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:231:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:232:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:236:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:237:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:238:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:239:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:243:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:244:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:245:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:246:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:250:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:251:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:252:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:253:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:257:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:258:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:259:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:260:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:264:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:265:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:266:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:267:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:271:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:272:9-13: Unexpected keyword argument `name` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:273:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:274:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:278:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:279:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:280:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:281:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:285:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:286:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:287:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:288:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:292:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:293:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:294:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:295:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:299:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:300:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:301:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:302:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:306:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:307:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:308:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:309:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:313:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:314:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:315:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:316:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:320:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:321:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:322:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:323:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:327:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:328:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:329:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:330:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:334:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:335:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:336:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:337:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:341:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:342:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:343:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:344:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:348:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:349:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:350:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:351:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:355:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:356:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:357:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:358:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:362:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:363:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:364:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:365:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:369:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:370:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:371:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:372:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:376:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:377:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:378:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:379:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:383:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:384:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:385:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:386:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:390:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:391:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:392:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:393:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:397:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:398:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:399:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:400:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:404:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:405:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:406:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:407:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:411:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:412:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:413:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:414:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:418:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:419:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:420:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:421:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:425:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:426:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:427:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:428:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:432:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:433:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:434:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:435:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:439:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:440:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:441:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:442:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:446:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:447:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:448:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:449:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:453:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:454:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:455:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:456:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:460:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:461:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:462:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:463:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:467:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:468:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:469:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:470:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:474:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:475:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:476:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:477:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:481:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:482:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:483:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:484:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:488:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:489:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:490:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:491:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:495:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:496:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:497:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:498:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:502:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:503:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:504:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:505:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:509:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:510:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:511:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:512:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:516:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:517:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:518:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:519:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:523:9-12: Unexpected keyword argument `key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:524:9-24: Unexpected keyword argument `translation_key` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:525:9-24: Unexpected keyword argument `entity_category` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:526:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NextDnsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nextdns/switch.py:548:5-23: Class member `NextDnsSwitch.entity_description` overrides parent class `NextDnsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nextdns/switch.py:548:5-23: Class member `NextDnsSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nibe_heatpump/__init__.py:121:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/nibe_heatpump/climate.py:56:27-79: Object of class `tuple` has no attribute `items` [missing-attribute] +ERROR homeassistant/components/nibe_heatpump/climate.py:69:5-29: Class member `NibeClimateEntity._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nibe_heatpump/climate.py:126:43-73: `Coil` is not assignable to attribute `_coil_active_accessory` with type `None` [bad-assignment] +ERROR homeassistant/components/nibe_heatpump/climate.py:239:74-85: `temperature` may be uninitialized [unbound-name] +ERROR homeassistant/components/nibe_heatpump/coordinator.py:76:5-17: Class member `CoilCoordinator.config_entry` overrides parent class `ContextCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nibe_heatpump/sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:38:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:44:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:45:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:51:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:52:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:59:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:65:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:66:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:72:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:73:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:79:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:80:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:86:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:87:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:93:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:94:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:100:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:101:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:107:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:108:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:114:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:115:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:121:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:122:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:128:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:129:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:135:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:136:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:142:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:143:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:149:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:150:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:156:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:157:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:163:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:164:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:170:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:171:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:177:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:178:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nibe_heatpump/sensor.py:214:18-36: Class member `Sensor.entity_description` overrides parent class `CoilEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nibe_heatpump/water_heater.py:42:27-84: Object of class `tuple` has no attribute `items` [missing-attribute] +ERROR homeassistant/components/nibe_heatpump/water_heater.py:56:5-29: Class member `WaterHeater._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nice_go/__init__.py:51:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/nice_go/coordinator.py:63:5-17: Class member `NiceGOUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nice_go/cover.py:42:5-29: Class member `NiceGOCoverEntity._attr_supported_features` overrides parent class `NiceGOEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nice_go/switch.py:54:5-23: Class member `NiceGOSwitchEntity._attr_device_class` overrides parent class `NiceGOEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nice_go/util.py:34:24-31: `Args[P]` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/nightscout/__init__.py:39:14-25: Object of class `ServerStatus` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/nightscout/__init__.py:40:20-34: Object of class `ServerStatus` has no attribute `version` [missing-attribute] +ERROR homeassistant/components/nightscout/config_flow.py:29:12-27: Object of class `ServerStatus` has no attribute `settings` [missing-attribute] +ERROR homeassistant/components/nightscout/config_flow.py:37:22-33: Object of class `ServerStatus` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/niko_home_control/climate.py:44:5-29: Class member `NikoHomeControlClimate._attr_supported_features` overrides parent class `NikoHomeControlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/niko_home_control/climate.py:51:5-12: Class member `NikoHomeControlClimate._action` overrides parent class `NikoHomeControlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/niko_home_control/climate.py:97:55-73: Cannot index into `dict[int, str]` [bad-index] +ERROR homeassistant/components/niko_home_control/cover.py:35:5-29: Class member `NikoHomeControlCover._attr_supported_features` overrides parent class `NikoHomeControlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/niko_home_control/cover.py:35:5-29: Class member `NikoHomeControlCover._attr_supported_features` overrides parent class `CoverEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/niko_home_control/cover.py:38:5-12: Class member `NikoHomeControlCover._action` overrides parent class `NikoHomeControlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/niko_home_control/entity.py:26:14-29: Class member `NikoHomeControlEntity._attr_unique_id` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/niko_home_control/light.py:40:5-12: Class member `NikoHomeControlLight._action` overrides parent class `NikoHomeControlEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/niko_home_control/light.py:52:37-49: `int | str` is not assignable to attribute `_attr_brightness` with type `int | None` [bad-assignment] +ERROR homeassistant/components/niko_home_control/light.py:65:28-37: `>` is not supported between `str` and `Literal[0]` [unsupported-operation] +ERROR homeassistant/components/niko_home_control/light.py:67:37-42: `int | str` is not assignable to attribute `_attr_brightness` with type `int | None` [bad-assignment] +ERROR homeassistant/components/niko_home_control/scene.py:36:15-36: Object of class `NHCAction` has no attribute `activate` [missing-attribute] +ERROR homeassistant/components/nilu/air_quality.py:8:1-23:2: Could not find import of `niluclient` [missing-import] +ERROR homeassistant/components/nina/binary_sensor.py:61:5-23: Class member `NINAMessage._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nina/config_flow.py:176:9-31: Class member `NinaConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nina/coordinator.py:53:5-17: Class member `NINADataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nintendo_parental_controls/coordinator.py:30:5-17: Class member `NintendoUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nintendo_parental_controls/number.py:41:9-12: Unexpected keyword argument `key` in function `NintendoParentalControlsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nintendo_parental_controls/number.py:42:9-24: Unexpected keyword argument `translation_key` in function `NintendoParentalControlsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nintendo_parental_controls/number.py:72:5-23: Class member `NintendoParentalControlsNumberEntity.entity_description` overrides parent class `NintendoDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nintendo_parental_controls/number.py:72:5-23: Class member `NintendoParentalControlsNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nintendo_parental_controls/sensor.py:42:9-12: Unexpected keyword argument `key` in function `NintendoParentalControlsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nintendo_parental_controls/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `NintendoParentalControlsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nintendo_parental_controls/sensor.py:50:9-12: Unexpected keyword argument `key` in function `NintendoParentalControlsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nintendo_parental_controls/sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `NintendoParentalControlsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nintendo_parental_controls/sensor.py:76:5-23: Class member `NintendoParentalControlsSensorEntity.entity_description` overrides parent class `NintendoDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nintendo_parental_controls/sensor.py:76:5-23: Class member `NintendoParentalControlsSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nintendo_parental_controls/services.py:68:8-20: `config_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/nintendo_parental_controls/services.py:69:15-27: `config_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/nintendo_parental_controls/switch.py:43:9-12: Unexpected keyword argument `key` in function `NintendoParentalControlsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nintendo_parental_controls/switch.py:44:9-24: Unexpected keyword argument `translation_key` in function `NintendoParentalControlsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nintendo_parental_controls/switch.py:71:5-23: Class member `NintendoParentalControlsSwitchEntity.entity_description` overrides parent class `NintendoDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nintendo_parental_controls/switch.py:71:5-23: Class member `NintendoParentalControlsSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nintendo_parental_controls/time.py:45:9-12: Unexpected keyword argument `key` in function `NintendoParentalControlsTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nintendo_parental_controls/time.py:46:9-24: Unexpected keyword argument `translation_key` in function `NintendoParentalControlsTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nintendo_parental_controls/time.py:69:5-23: Class member `NintendoParentalControlsTimeEntity.entity_description` overrides parent class `NintendoDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nintendo_parental_controls/time.py:69:5-23: Class member `NintendoParentalControlsTimeEntity.entity_description` overrides parent class `TimeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nissan_leaf/__init__.py:12:1-53: Could not find import of `pycarwings2` [missing-import] +ERROR homeassistant/components/nissan_leaf/__init__.py:13:1-16:2: Could not find import of `pycarwings2.responses` [missing-import] +ERROR homeassistant/components/nissan_leaf/binary_sensor.py:44:5-23: Class member `LeafPluggedInSensor._attr_device_class` overrides parent class `LeafEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nissan_leaf/binary_sensor.py:70:5-23: Class member `LeafChargingSensor._attr_device_class` overrides parent class `LeafEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nissan_leaf/sensor.py:52:5-23: Class member `LeafBatterySensor._attr_device_class` overrides parent class `LeafEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nmap_tracker/__init__.py:131:24-35: `new_options` may be uninitialized [unbound-name] +ERROR homeassistant/components/nmap_tracker/__init__.py:195:31-197:10: `timedelta` is not assignable to attribute `_scan_interval` with type `None` [bad-assignment] +ERROR homeassistant/components/nmap_tracker/__init__.py:202:30-204:10: `timedelta` is not assignable to attribute `home_interval` with type `None` [bad-assignment] +ERROR homeassistant/components/nmap_tracker/__init__.py:209:27-41: `Lock` is not assignable to attribute `_scan_lock` with type `None` [bad-assignment] +ERROR homeassistant/components/nmap_tracker/__init__.py:220:37-225:10: `dict[str, str | None]` is not assignable to attribute `_known_mac_addresses` with type `dict[str, str]` [bad-assignment] +ERROR homeassistant/components/nmap_tracker/__init__.py:249:17-36: Argument `None` is not assignable to parameter `interval` with type `timedelta` in function `homeassistant.helpers.event.async_track_time_interval` [bad-argument-type] +ERROR homeassistant/components/nmap_tracker/__init__.py:265:33-89: `+` is not supported between `None` and `list[str]` [unsupported-operation] +ERROR homeassistant/components/nmap_tracker/__init__.py:272:13-63: `+=` is not supported between `None` and `str` [unsupported-operation] +ERROR homeassistant/components/nmap_tracker/__init__.py:274:12-37: `not in` is not supported between `Literal['--reason']` and `None` [not-iterable] +ERROR homeassistant/components/nmap_tracker/__init__.py:275:13-35: `+=` is not supported between `None` and `Literal[' --reason']` [unsupported-operation] +ERROR homeassistant/components/nmap_tracker/__init__.py:277:12-31: `not in` is not supported between `Literal['-v']` and `None` [not-iterable] +ERROR homeassistant/components/nmap_tracker/__init__.py:278:13-29: `+=` is not supported between `None` and `Literal[' -v']` [unsupported-operation] +ERROR homeassistant/components/nmap_tracker/__init__.py:284:12-34: Object of class `NoneType` has no attribute `locked` [missing-attribute] +ERROR homeassistant/components/nmap_tracker/__init__.py:291:20-35: Cannot use `None` as a context manager [bad-context-manager] +ERROR homeassistant/components/nmap_tracker/__init__.py:291:20-35: Cannot use `None` as a context manager [bad-context-manager] +ERROR homeassistant/components/nmap_tracker/__init__.py:312:17-21: Argument `None` is not assignable to parameter `hostname` with type `str` in function `NmapDevice.__init__` [bad-argument-type] +ERROR homeassistant/components/nmap_tracker/__init__.py:314:17-21: Argument `None` is not assignable to parameter `ipv4` with type `str` in function `NmapDevice.__init__` [bad-argument-type] +ERROR homeassistant/components/nmap_tracker/__init__.py:315:17-47: Argument `str | None` is not assignable to parameter `manufacturer` with type `str` in function `NmapDevice.__init__` [bad-argument-type] +ERROR homeassistant/components/nmap_tracker/__init__.py:318:17-18: Argument `Literal[1]` is not assignable to parameter `first_offline` with type `datetime | None` in function `NmapDevice.__init__` [bad-argument-type] +ERROR homeassistant/components/nmap_tracker/__init__.py:326:29-42: `PortScanner` is not assignable to attribute `_scanner` with type `None` [bad-assignment] +ERROR homeassistant/components/nmap_tracker/__init__.py:330:26-44: Object of class `NoneType` has no attribute `scan` [missing-attribute] +ERROR homeassistant/components/nmap_tracker/__init__.py:331:35-48: No matching overload found for function `str.join` called with arguments: (None) [no-matching-overload] +ERROR homeassistant/components/nmap_tracker/__init__.py:348:16-22: `result` may be uninitialized [unbound-name] +ERROR homeassistant/components/nmap_tracker/__init__.py:392:58-77: Argument `BoundMethod[Self@NmapDeviceScanner, (self: Self@NmapDeviceScanner) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/nmap_tracker/__init__.py:418:16-50: `in` is not supported between `str` and `None` [not-iterable] +ERROR homeassistant/components/nmap_tracker/__init__.py:430:50-56: Argument `str | Unknown | None` is not assignable to parameter `vendor` with type `str` in function `human_readable_name` [bad-argument-type] +ERROR homeassistant/components/nmap_tracker/__init__.py:432:54-60: Argument `str | Unknown | None` is not assignable to parameter `manufacturer` with type `str` in function `NmapDevice.__init__` [bad-argument-type] +ERROR homeassistant/components/nmap_tracker/config_flow.py:262:9-31: Class member `NmapTrackerConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nmbs/sensor.py:118:14-45: Class member `NMBSLiveBoard.entity_registry_enabled_default` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nmbs/sensor.py:118:48-53: `Literal[False]` is not assignable to attribute `entity_registry_enabled_default` with type `(self: Self@NMBSLiveBoard) -> bool` [bad-assignment] +ERROR homeassistant/components/nmbs/sensor.py:261:34-38: Cannot set item in `dict[str, Never]` [unsupported-operation] +ERROR homeassistant/components/nmbs/sensor.py:262:42-46: Cannot set item in `dict[str, Never]` [unsupported-operation] +ERROR homeassistant/components/nmbs/sensor.py:264:34-59: Cannot set item in `dict[str, Never]` [unsupported-operation] +ERROR homeassistant/components/nmbs/sensor.py:281:26-44: Cannot set item in `dict[str, Never]` [unsupported-operation] +ERROR homeassistant/components/noaa_tides/sensor.py:9:8-27: Could not find import of `noaa_coops` [missing-import] +ERROR homeassistant/components/nobo_hub/__init__.py:58:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/nobo_hub/config_flow.py:169:38-65: Object of class `NoneType` has no attribute `items` [missing-attribute] +ERROR homeassistant/components/nobo_hub/config_flow.py:174:9-31: Class member `NoboHubConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nordpool/coordinator.py:36:5-17: Class member `NordPoolDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nordpool/sensor.py:159:9-12: Unexpected keyword argument `key` in function `NordpoolDefaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `NordpoolDefaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:163:9-24: Unexpected keyword argument `entity_category` in function `NordpoolDefaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:166:9-12: Unexpected keyword argument `key` in function `NordpoolDefaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:167:9-24: Unexpected keyword argument `translation_key` in function `NordpoolDefaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:169:9-24: Unexpected keyword argument `entity_category` in function `NordpoolDefaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:172:9-12: Unexpected keyword argument `key` in function `NordpoolDefaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:173:9-24: Unexpected keyword argument `translation_key` in function `NordpoolDefaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:176:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NordpoolDefaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:177:9-24: Unexpected keyword argument `entity_category` in function `NordpoolDefaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:182:9-12: Unexpected keyword argument `key` in function `NordpoolPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:183:9-24: Unexpected keyword argument `translation_key` in function `NordpoolPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:190:9-12: Unexpected keyword argument `key` in function `NordpoolPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:191:9-24: Unexpected keyword argument `translation_key` in function `NordpoolPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:197:9-12: Unexpected keyword argument `key` in function `NordpoolPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:198:9-24: Unexpected keyword argument `translation_key` in function `NordpoolPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:204:9-12: Unexpected keyword argument `key` in function `NordpoolPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:205:9-24: Unexpected keyword argument `translation_key` in function `NordpoolPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:214:9-12: Unexpected keyword argument `key` in function `NordpoolPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:215:9-24: Unexpected keyword argument `translation_key` in function `NordpoolPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:226:9-12: Unexpected keyword argument `key` in function `NordpoolBlockPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:227:9-24: Unexpected keyword argument `translation_key` in function `NordpoolBlockPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:231:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NordpoolBlockPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:234:9-12: Unexpected keyword argument `key` in function `NordpoolBlockPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:235:9-24: Unexpected keyword argument `translation_key` in function `NordpoolBlockPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:239:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NordpoolBlockPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:242:9-12: Unexpected keyword argument `key` in function `NordpoolBlockPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:243:9-24: Unexpected keyword argument `translation_key` in function `NordpoolBlockPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:247:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NordpoolBlockPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:250:9-12: Unexpected keyword argument `key` in function `NordpoolBlockPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:251:9-24: Unexpected keyword argument `translation_key` in function `NordpoolBlockPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:254:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NordpoolBlockPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:257:9-12: Unexpected keyword argument `key` in function `NordpoolBlockPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:258:9-24: Unexpected keyword argument `translation_key` in function `NordpoolBlockPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:261:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NordpoolBlockPricesSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:266:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:267:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:270:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nordpool/sensor.py:324:5-23: Class member `NordpoolSensor.entity_description` overrides parent class `NordpoolBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nordpool/sensor.py:324:5-23: Class member `NordpoolSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nordpool/sensor.py:335:5-23: Class member `NordpoolPriceSensor.entity_description` overrides parent class `NordpoolBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nordpool/sensor.py:335:5-23: Class member `NordpoolPriceSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nordpool/sensor.py:362:5-23: Class member `NordpoolBlockPriceSensor.entity_description` overrides parent class `NordpoolBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nordpool/sensor.py:362:5-23: Class member `NordpoolBlockPriceSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nordpool/sensor.py:391:5-23: Class member `NordpoolDailyAveragePriceSensor.entity_description` overrides parent class `NordpoolBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/notify/__init__.py:132:5-23: Class member `NotifyEntity.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/notify/__init__.py:133:5-29: Class member `NotifyEntity._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/notify/__init__.py:135:5-23: Class member `NotifyEntity._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/notify/__init__.py:136:5-16: Class member `NotifyEntity._attr_state` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/notify/legacy.py:54:52-55: Default `Ellipsis` is not assignable to parameter `discovery_info` with type `dict[str, Any] | None` [bad-function-definition] +ERROR homeassistant/components/notify/legacy.py:62:52-55: Default `Ellipsis` is not assignable to parameter `discovery_info` with type `dict[str, Any] | None` [bad-function-definition] +ERROR homeassistant/components/notify/legacy.py:274:63-276:10: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[PathLike[str] | str, Secrets | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/notify_events/notify.py:76:61-70: Argument `Unknown | None` is not assignable to parameter `file_name` with type `str` in function `notify_events.message.Message.add_image_from_url` [bad-argument-type] +ERROR homeassistant/components/notify_events/notify.py:76:72-81: Argument `Unknown | None` is not assignable to parameter `mime_type` with type `str` in function `notify_events.message.Message.add_image_from_url` [bad-argument-type] +ERROR homeassistant/components/notify_events/notify.py:78:60-69: Argument `Unknown | None` is not assignable to parameter `file_name` with type `str` in function `notify_events.message.Message.add_file_from_url` [bad-argument-type] +ERROR homeassistant/components/notify_events/notify.py:78:71-80: Argument `Unknown | None` is not assignable to parameter `mime_type` with type `str` in function `notify_events.message.Message.add_file_from_url` [bad-argument-type] +ERROR homeassistant/components/notify_events/notify.py:82:46-55: Argument `Unknown | None` is not assignable to parameter `file_name` with type `str` in function `notify_events.message.Message.add_image_from_content` [bad-argument-type] +ERROR homeassistant/components/notify_events/notify.py:82:57-66: Argument `Unknown | None` is not assignable to parameter `mime_type` with type `str` in function `notify_events.message.Message.add_image_from_content` [bad-argument-type] +ERROR homeassistant/components/notify_events/notify.py:85:68-77: Argument `Unknown | None` is not assignable to parameter `file_name` with type `str` in function `notify_events.message.Message.add_file_from_content` [bad-argument-type] +ERROR homeassistant/components/notify_events/notify.py:85:79-88: Argument `Unknown | None` is not assignable to parameter `mime_type` with type `str` in function `notify_events.message.Message.add_file_from_content` [bad-argument-type] +ERROR homeassistant/components/notify_events/notify.py:91:57-66: Argument `Unknown | None` is not assignable to parameter `file_name` with type `str` in function `notify_events.message.Message.add_image` [bad-argument-type] +ERROR homeassistant/components/notify_events/notify.py:91:68-77: Argument `Unknown | None` is not assignable to parameter `mime_type` with type `str` in function `notify_events.message.Message.add_image` [bad-argument-type] +ERROR homeassistant/components/notify_events/notify.py:93:56-65: Argument `Unknown | None` is not assignable to parameter `file_name` with type `str` in function `notify_events.message.Message.add_file` [bad-argument-type] +ERROR homeassistant/components/notify_events/notify.py:93:67-76: Argument `Unknown | None` is not assignable to parameter `mime_type` with type `str` in function `notify_events.message.Message.add_file` [bad-argument-type] +ERROR homeassistant/components/notify_events/notify.py:133:18-23: Argument `Unknown | None` is not assignable to parameter `channel_token` with type `str` in function `notify_events.message.Message.send` [bad-argument-type] +ERROR homeassistant/components/notion/binary_sensor.py:48:9-12: Unexpected keyword argument `key` in function `NotionBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/notion/binary_sensor.py:50:9-24: Unexpected keyword argument `entity_category` in function `NotionBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/notion/binary_sensor.py:55:9-12: Unexpected keyword argument `key` in function `NotionBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/notion/binary_sensor.py:61:9-12: Unexpected keyword argument `key` in function `NotionBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/notion/binary_sensor.py:67:9-12: Unexpected keyword argument `key` in function `NotionBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/notion/binary_sensor.py:73:9-12: Unexpected keyword argument `key` in function `NotionBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/notion/binary_sensor.py:75:9-24: Unexpected keyword argument `entity_category` in function `NotionBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/notion/binary_sensor.py:80:9-12: Unexpected keyword argument `key` in function `NotionBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/notion/binary_sensor.py:81:9-24: Unexpected keyword argument `translation_key` in function `NotionBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/notion/binary_sensor.py:87:9-12: Unexpected keyword argument `key` in function `NotionBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/notion/binary_sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `NotionBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/notion/binary_sensor.py:94:9-12: Unexpected keyword argument `key` in function `NotionBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/notion/binary_sensor.py:95:9-24: Unexpected keyword argument `translation_key` in function `NotionBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/notion/binary_sensor.py:101:9-12: Unexpected keyword argument `key` in function `NotionBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/notion/binary_sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `NotionBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/notion/binary_sensor.py:137:5-23: Class member `NotionBinarySensor.entity_description` overrides parent class `NotionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/notion/binary_sensor.py:137:5-23: Class member `NotionBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/notion/config_flow.py:62:19-25: `client` may be uninitialized [unbound-name] +ERROR homeassistant/components/notion/config_flow.py:62:51-57: `client` may be uninitialized [unbound-name] +ERROR homeassistant/components/notion/coordinator.py:107:5-17: Class member `NotionDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/notion/coordinator.py:159:29-36: `bridges` may be uninitialized [unbound-name] +ERROR homeassistant/components/notion/coordinator.py:160:31-40: `listeners` may be uninitialized [unbound-name] +ERROR homeassistant/components/notion/coordinator.py:161:29-36: `sensors` may be uninitialized [unbound-name] +ERROR homeassistant/components/notion/coordinator.py:162:38-54: `user_preferences` may be uninitialized [unbound-name] +ERROR homeassistant/components/notion/sensor.py:30:9-12: Unexpected keyword argument `key` in function `NotionSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/notion/sensor.py:31:9-24: Unexpected keyword argument `translation_key` in function `NotionSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/notion/sensor.py:35:9-12: Unexpected keyword argument `key` in function `NotionSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/notion/sensor.py:69:7-19: Field `entity_description` is declared `EntityDescription` in ancestor `class NotionEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/nsw_fuel_station/__init__.py:64:20-66:14: Argument `dict[tuple[int | None, str], float]` is not assignable to parameter `prices` with type `dict[tuple[int, str], float]` in function `StationPriceData.__init__` [bad-argument-type] +ERROR homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:249:31-56: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:250:32-57: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:252:26-45: `str` is not assignable to attribute `_category` with type `None` [bad-assignment] +ERROR homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:253:34-61: `datetime` is not assignable to attribute `_publication_date` with type `None` [bad-assignment] +ERROR homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:254:26-45: `str` is not assignable to attribute `_location` with type `None` [bad-assignment] +ERROR homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:255:30-53: `str` is not assignable to attribute `_council_area` with type `None` [bad-assignment] +ERROR homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:256:24-41: `str` is not assignable to attribute `_status` with type `None` [bad-assignment] +ERROR homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:257:22-37: `str` is not assignable to attribute `_type` with type `None` [bad-assignment] +ERROR homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:258:22-37: `bool` is not assignable to attribute `_fire` with type `None` [bad-assignment] +ERROR homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:259:22-37: `str` is not assignable to attribute `_size` with type `None` [bad-assignment] +ERROR homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:260:36-65: `str` is not assignable to attribute `_responsible_agency` with type `None` [bad-assignment] +ERROR homeassistant/components/ntfy/config_flow.py:330:24-29: `token` may be uninitialized [unbound-name] +ERROR homeassistant/components/ntfy/config_flow.py:355:51-56: `token` may be uninitialized [unbound-name] +ERROR homeassistant/components/ntfy/config_flow.py:367:37-42: `token` may be uninitialized [unbound-name] +ERROR homeassistant/components/ntfy/coordinator.py:31:5-17: Class member `NtfyDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ntfy/event.py:56:5-23: Class member `NtfyEventEntity.entity_description` overrides parent class `NtfyBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ntfy/event.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/event.py:58:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/event.py:59:9-13: Unexpected keyword argument `name` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/notify.py:90:5-23: Class member `NtfyNotifyEntity.entity_description` overrides parent class `NtfyBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ntfy/notify.py:91:9-12: Unexpected keyword argument `key` in function `homeassistant.components.notify.NotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/notify.py:92:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.notify.NotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/notify.py:93:9-13: Unexpected keyword argument `name` in function `homeassistant.components.notify.NotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/notify.py:95:5-29: Class member `NtfyNotifyEntity._attr_supported_features` overrides parent class `NtfyBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ntfy/sensor.py:64:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:69:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:72:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:75:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:78:9-24: Unexpected keyword argument `entity_category` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:81:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:88:9-24: Unexpected keyword argument `entity_category` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:94:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:95:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:99:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:102:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:105:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:108:9-24: Unexpected keyword argument `entity_category` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:111:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:116:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:117:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:119:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:122:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:125:9-24: Unexpected keyword argument `entity_category` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:128:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:129:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:133:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:134:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:136:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:139:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:140:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:144:9-24: Unexpected keyword argument `entity_category` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:147:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:148:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:154:9-24: Unexpected keyword argument `entity_category` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:160:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:161:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:169:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:170:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:176:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:179:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:180:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:186:9-24: Unexpected keyword argument `entity_category` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:193:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:194:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:200:9-24: Unexpected keyword argument `entity_category` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:207:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:208:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:214:9-24: Unexpected keyword argument `entity_category` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:221:9-12: Unexpected keyword argument `key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:222:9-24: Unexpected keyword argument `translation_key` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:224:9-24: Unexpected keyword argument `entity_category` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:225:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NtfySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ntfy/sensor.py:246:5-23: Class member `NtfySensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ntfy/sensor.py:246:5-23: Class member `NtfySensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nuheat/climate.py:76:5-29: Class member `NuHeatThermostat._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nuheat/climate.py:159:52-85: No matching overload found for function `dict.get` called with arguments: (None, Literal['Run Schedule']) [no-matching-overload] +ERROR homeassistant/components/nuheat/climate.py:210:31-51: `int` is not assignable to attribute `_schedule_mode` with type `None` [bad-assignment] +ERROR homeassistant/components/nuheat/config_flow.py:37:43-59: Argument `BoundMethod[NuHeat, (self: NuHeat) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/nuheat/config_flow.py:87:48-52: `info` may be uninitialized [unbound-name] +ERROR homeassistant/components/nuheat/config_flow.py:89:54-58: `info` may be uninitialized [unbound-name] +ERROR homeassistant/components/nuki/binary_sensor.py:50:5-23: Class member `NukiDoorsensorEntity._attr_device_class` overrides parent class `NukiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nuki/binary_sensor.py:60:38-80: Object of class `NukiDevice` has no attribute `is_door_sensor_activated` [missing-attribute] +ERROR homeassistant/components/nuki/binary_sensor.py:65:16-51: Object of class `NukiDevice` has no attribute `door_sensor_state` [missing-attribute] +ERROR homeassistant/components/nuki/binary_sensor.py:70:16-56: Object of class `NukiDevice` has no attribute `door_sensor_state_name` [missing-attribute] +ERROR homeassistant/components/nuki/binary_sensor.py:92:16-51: Object of class `NukiDevice` has no attribute `ring_action_state` [missing-attribute] +ERROR homeassistant/components/nuki/binary_sensor.py:99:5-23: Class member `NukiBatteryCriticalEntity._attr_device_class` overrides parent class `NukiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nuki/binary_sensor.py:117:5-23: Class member `NukiBatteryChargingEntity._attr_device_class` overrides parent class `NukiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nuki/binary_sensor.py:129:16-50: Object of class `NukiDevice` has no attribute `battery_charging` [missing-attribute] +ERROR homeassistant/components/nuki/config_flow.py:54:50-61: Argument `BoundMethod[NukiBridge, (self: NukiBridge) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/nuki/config_flow.py:132:26-30: `info` may be uninitialized [unbound-name] +ERROR homeassistant/components/nuki/config_flow.py:171:38-42: `info` may be uninitialized [unbound-name] +ERROR homeassistant/components/nuki/coordinator.py:32:5-17: Class member `NukiCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nuki/coordinator.py:65:64-67:18: Unpacked argument `tuple[list[NukiLock | NukiOpener]]` is not assignable to parameter `*args` with type `tuple[list[NukiDevice]]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/nuki/lock.py:65:5-29: Class member `NukiDeviceEntity._attr_supported_features` overrides parent class `NukiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nuki/sensor.py:36:5-23: Class member `NukiBatterySensor._attr_device_class` overrides parent class `NukiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nuki/sensor.py:47:16-48: Object of class `NukiDevice` has no attribute `battery_charge` [missing-attribute] +ERROR homeassistant/components/number/__init__.py:141:5-17: Class member `NumberEntityDescription.device_class` overrides parent class `EntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/number/__init__.py:150:5-24: Class member `NumberEntityDescription.unit_of_measurement` overrides parent class `EntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/number/__init__.py:189:5-23: Class member `NumberEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/number/__init__.py:190:5-23: Class member `NumberEntity._attr_device_class` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/number/__init__.py:194:5-16: Class member `NumberEntity._attr_state` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/number/__init__.py:196:5-30: Class member `NumberEntity._attr_unit_of_measurement` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/number/__init__.py:472:52-64: Cannot index into `dict[NumberDeviceClass, type[BaseUnitConverter]]` [bad-index] +ERROR homeassistant/components/number/__init__.py:496:36-48: Cannot index into `dict[NumberDeviceClass, type[BaseUnitConverter]]` [bad-index] +ERROR homeassistant/components/number/__init__.py:513:32-44: Cannot index into `dict[NumberDeviceClass, type[BaseUnitConverter]]` [bad-index] +ERROR homeassistant/components/number/__init__.py:514:48-60: Cannot index into `dict[NumberDeviceClass, type[BaseUnitConverter]]` [bad-index] +ERROR homeassistant/components/nut/button.py:45:17-20: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/button.py:46:17-32: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/button.py:47:17-41: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/button.py:49:17-48: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/button.py:60:7-16: Field `entity_description` is declared `EntityDescription` in ancestor `class NUTBaseEntity: ... +`, which is not assignable to the type `ButtonEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/nut/config_flow.py:232:31-40: `unique_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/nut/config_flow.py:278:31-40: `unique_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/nut/sensor.py:73:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:78:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:81:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:85:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:88:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:93:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:96:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:100:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:103:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:104:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:105:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:106:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:109:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:110:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:112:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:113:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:116:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:117:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:123:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:124:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:126:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:127:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:130:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:131:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:133:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:134:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:137:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:138:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:140:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:141:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:144:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:145:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:150:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:151:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:155:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:156:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:159:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:163:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:164:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:167:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:168:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:169:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:170:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:173:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:174:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:175:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:176:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:179:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:180:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:181:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:182:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:185:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:186:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:187:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:188:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:191:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:192:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:195:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:196:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:199:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:200:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:203:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:204:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:207:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:208:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:211:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:212:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:215:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:216:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:220:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:221:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:224:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:225:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:226:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:227:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:230:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:231:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:235:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:236:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:239:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:240:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:243:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:244:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:247:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:248:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:251:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:252:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:255:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:256:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:259:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:260:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:263:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:264:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:268:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:269:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:272:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:273:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:277:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:278:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:281:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:282:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:286:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:287:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:290:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:291:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:295:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:296:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:299:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:300:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:304:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:305:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:308:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:309:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:313:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:314:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:317:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:318:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:322:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:323:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:326:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:327:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:331:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:332:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:335:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:336:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:340:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:341:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:344:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:345:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:349:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:350:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:353:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:354:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:358:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:359:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:362:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:363:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:364:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:365:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:368:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:369:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:373:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:374:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:377:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:378:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:382:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:383:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:386:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:387:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:391:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:394:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:395:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:398:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:399:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:402:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:403:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:407:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:408:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:411:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:412:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:415:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:416:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:419:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:420:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:423:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:424:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:427:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:428:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:432:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:433:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:436:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:437:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:441:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:442:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:445:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:446:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:450:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:451:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:454:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:455:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:459:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:460:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:463:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:464:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:468:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:469:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:472:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:473:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:477:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:478:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:481:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:482:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:486:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:487:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:490:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:491:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:495:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:496:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:499:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:500:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:504:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:505:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:508:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:509:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:513:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:514:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:517:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:518:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:522:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:523:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:526:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:527:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:531:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:532:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:535:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:536:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:541:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:542:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:543:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:544:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:547:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:548:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:552:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:553:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:556:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:557:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:561:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:562:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:565:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:566:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:567:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:568:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:571:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:572:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:575:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:576:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:579:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:580:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:583:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:584:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:587:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:588:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:589:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:590:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:593:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:594:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:600:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:601:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:604:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:605:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:608:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:609:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:610:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:611:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:614:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:615:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:619:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:620:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:623:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:624:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:628:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:629:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:632:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:633:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:637:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:638:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:641:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:642:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:648:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:649:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:653:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:654:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:657:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:658:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:661:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:662:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:665:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:666:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:670:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:671:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:674:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:675:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:678:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:679:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:682:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:683:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:687:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:688:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:691:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:692:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:696:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:697:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:700:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:701:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:703:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:704:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:707:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:708:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:712:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:713:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:716:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:717:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:721:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:722:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:725:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:726:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:730:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:731:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:734:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:735:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:737:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:738:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:741:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:742:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:746:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:747:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:750:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:751:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:755:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:756:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:759:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:760:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:764:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:765:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:768:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:769:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:771:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:772:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:775:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:776:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:780:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:781:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:784:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:785:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:786:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:787:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:790:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:791:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:795:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:796:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:799:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:800:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:803:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:804:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:807:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:808:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:812:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:813:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:816:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:817:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:820:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:821:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:824:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:825:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:831:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:832:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:835:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:836:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:839:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:840:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:843:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:844:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:847:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:848:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:851:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:852:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:853:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:854:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:857:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:858:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:861:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:862:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:865:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:866:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:869:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:870:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:873:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:874:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:877:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:878:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:881:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:882:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:883:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:884:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:887:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:888:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:891:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:892:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:895:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:896:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:897:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:898:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:901:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:902:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:907:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:908:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:910:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:911:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:914:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:915:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:919:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:920:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:923:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:924:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:927:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:928:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:931:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:932:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:936:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:937:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:940:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:941:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:944:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:945:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:948:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:949:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:950:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:951:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:954:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:955:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:956:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:957:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:960:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:961:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:962:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:963:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:966:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:967:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:968:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:969:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:972:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:973:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:976:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:977:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:980:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:981:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:985:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:986:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:989:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:990:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:991:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:992:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:995:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:996:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:999:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1000:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1003:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1004:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1005:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1006:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1009:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1010:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1013:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1014:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1017:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1018:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1021:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1022:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1025:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1026:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1029:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1030:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1033:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1034:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1035:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1036:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1039:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1040:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1041:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1042:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1071:21-24: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1072:21-36: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1073:21-45: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1079:21-24: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1080:21-36: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1081:21-45: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1082:21-36: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1083:21-52: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1086:21-24: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1087:21-36: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1088:21-45: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1091:21-24: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1092:21-36: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1093:21-45: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1099:21-24: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1100:21-36: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1101:21-45: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/sensor.py:1137:7-16: Field `entity_description` is declared `EntityDescription` in ancestor `class NUTBaseEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/nut/switch.py:43:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/switch.py:44:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/switch.py:45:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/switch.py:50:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nut/switch.py:66:7-16: Field `entity_description` is declared `EntityDescription` in ancestor `class NUTBaseEntity: ... +`, which is not assignable to the type `SwitchEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/nws/__init__.py:76:21-45: Argument `BoundMethod[SimpleNWS, (self: SimpleNWS, *, raise_no_data: bool = False) -> Coroutine[Unknown, Unknown, None]]` is not assignable to parameter `func` with type `(Any, Any) -> Awaitable[Any]` in function `pynws.simple_nws.call_with_retry` [bad-argument-type] +ERROR homeassistant/components/nws/__init__.py:94:21-52: Argument `BoundMethod[SimpleNWS, (self: SimpleNWS, *, raise_no_data: bool = False) -> Coroutine[Unknown, Unknown, None]]` is not assignable to parameter `func` with type `(Any, Any) -> Awaitable[Any]` in function `pynws.simple_nws.call_with_retry` [bad-argument-type] +ERROR homeassistant/components/nws/config_flow.py:45:12-34: Returned type `dict[str, str | None]` is not assignable to declared return type `dict[str, str]` [bad-return] +ERROR homeassistant/components/nws/coordinator.py:38:5-17: Class member `NWSObservationDataUpdateCoordinator.config_entry` overrides parent class `TimestampDataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nws/sensor.py:55:9-12: Unexpected keyword argument `key` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:56:9-13: Unexpected keyword argument `name` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:63:9-12: Unexpected keyword argument `key` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:64:9-13: Unexpected keyword argument `name` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:71:9-12: Unexpected keyword argument `key` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:72:9-13: Unexpected keyword argument `name` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:79:9-12: Unexpected keyword argument `key` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:80:9-13: Unexpected keyword argument `name` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:87:9-12: Unexpected keyword argument `key` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:88:9-13: Unexpected keyword argument `name` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:95:9-12: Unexpected keyword argument `key` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:96:9-13: Unexpected keyword argument `name` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:103:9-12: Unexpected keyword argument `key` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:104:9-13: Unexpected keyword argument `name` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:112:9-12: Unexpected keyword argument `key` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:113:9-13: Unexpected keyword argument `name` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:114:9-13: Unexpected keyword argument `icon` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:121:9-12: Unexpected keyword argument `key` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:122:9-13: Unexpected keyword argument `name` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:129:9-12: Unexpected keyword argument `key` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:130:9-13: Unexpected keyword argument `name` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:137:9-12: Unexpected keyword argument `key` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:138:9-13: Unexpected keyword argument `name` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:139:9-13: Unexpected keyword argument `icon` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:145:9-12: Unexpected keyword argument `key` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:146:9-13: Unexpected keyword argument `name` in function `NWSSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nws/sensor.py:176:5-23: Class member `NWSSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nws/sensor.py:176:5-23: Class member `NWSSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nws/weather.py:230:38-42: `time` may be uninitialized [unbound-name] +ERROR homeassistant/components/nws/weather.py:323:31-55: Argument `list[dict[str, Any]] | None` is not assignable to parameter `nws_forecast` with type `list[dict[str, Any]]` in function `NWSWeather._forecast` [bad-argument-type] +ERROR homeassistant/components/nws/weather.py:328:31-48: Argument `list[dict[str, Any]] | None` is not assignable to parameter `nws_forecast` with type `list[dict[str, Any]]` in function `NWSWeather._forecast` [bad-argument-type] +ERROR homeassistant/components/nx584/alarm_control_panel.py:61:43-66: Argument `BoundMethod[Client, (self: Client) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/nx584/alarm_control_panel.py:130:16-20: `part` may be uninitialized [unbound-name] +ERROR homeassistant/components/nx584/alarm_control_panel.py:137:21-25: `part` may be uninitialized [unbound-name] +ERROR homeassistant/components/nyt_games/coordinator.py:32:5-17: Class member `NYTGamesCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nyt_games/sensor.py:33:9-12: Unexpected keyword argument `key` in function `NYTGamesWordleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:34:9-24: Unexpected keyword argument `translation_key` in function `NYTGamesWordleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:40:9-12: Unexpected keyword argument `key` in function `NYTGamesWordleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `NYTGamesWordleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:47:9-12: Unexpected keyword argument `key` in function `NYTGamesWordleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `NYTGamesWordleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:55:9-12: Unexpected keyword argument `key` in function `NYTGamesWordleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `NYTGamesWordleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:74:9-12: Unexpected keyword argument `key` in function `NYTGamesSpellingBeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `NYTGamesSpellingBeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:81:9-12: Unexpected keyword argument `key` in function `NYTGamesSpellingBeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `NYTGamesSpellingBeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:85:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NYTGamesSpellingBeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:89:9-12: Unexpected keyword argument `key` in function `NYTGamesSpellingBeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `NYTGamesSpellingBeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:93:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `NYTGamesSpellingBeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:108:9-12: Unexpected keyword argument `key` in function `NYTGamesConnectionsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:109:9-24: Unexpected keyword argument `translation_key` in function `NYTGamesConnectionsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:115:9-12: Unexpected keyword argument `key` in function `NYTGamesConnectionsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `NYTGamesConnectionsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:122:9-12: Unexpected keyword argument `key` in function `NYTGamesConnectionsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `NYTGamesConnectionsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:128:9-12: Unexpected keyword argument `key` in function `NYTGamesConnectionsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:129:9-24: Unexpected keyword argument `translation_key` in function `NYTGamesConnectionsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:136:9-12: Unexpected keyword argument `key` in function `NYTGamesConnectionsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:137:9-24: Unexpected keyword argument `translation_key` in function `NYTGamesConnectionsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nyt_games/sensor.py:175:5-23: Class member `NYTGamesWordleSensor.entity_description` overrides parent class `WordleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nyt_games/sensor.py:175:5-23: Class member `NYTGamesWordleSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nyt_games/sensor.py:198:5-23: Class member `NYTGamesSpellingBeeSensor.entity_description` overrides parent class `SpellingBeeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nyt_games/sensor.py:198:5-23: Class member `NYTGamesSpellingBeeSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nyt_games/sensor.py:222:5-23: Class member `NYTGamesConnectionsSensor.entity_description` overrides parent class `ConnectionsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nyt_games/sensor.py:222:5-23: Class member `NYTGamesConnectionsSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nzbget/coordinator.py:29:5-17: Class member `NZBGetDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nzbget/coordinator.py:98:63-75: Argument `() -> dict[Unknown, Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/nzbget/sensor.py:28:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:29:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:34:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:64:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:69:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:73:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:79:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:84:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/nzbget/sensor.py:127:14-32: Class member `NZBGetSensor.entity_description` overrides parent class `NZBGetEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/nzbget/switch.py:66:48-86: Argument `BoundMethod[NZBGetAPI, (self: NZBGetAPI) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/nzbget/switch.py:71:48-85: Argument `BoundMethod[NZBGetAPI, (self: NZBGetAPI) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/oasa_telematics/sensor.py:9:8-22: Could not find import of `oasatelematics` [missing-import] +ERROR homeassistant/components/oasa_telematics/sensor.py:120:34-66: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/oasa_telematics/sensor.py:121:33-64: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/obihai/__init__.py:20:39-55: Argument `BoundMethod[ObihaiConnection, (self: ObihaiConnection) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/obihai/__init__.py:37:13-46: Argument `BoundMethod[PyObihai, (self: PyObihai) -> str]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/obihai/button.py:20:5-8: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/obihai/button.py:21:5-9: Unexpected keyword argument `name` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/obihai/button.py:23:5-20: Unexpected keyword argument `entity_category` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/obihai/config_flow.py:78:25-48: Argument `BoundMethod[PyObihai, (self: PyObihai) -> str]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/obihai/connectivity.py:55:35-39: `None` is not assignable to attribute `pyobihai` with type `PyObihai` [bad-assignment] +ERROR homeassistant/components/obihai/connectivity.py:62:29-83: `PyObihai | None` is not assignable to attribute `pyobihai` with type `PyObihai` [bad-assignment] +ERROR homeassistant/components/obihai/connectivity.py:68:25-50: `dict[str, Any]` is not assignable to attribute `services` with type `list[Unknown]` [bad-assignment] +ERROR homeassistant/components/obihai/connectivity.py:69:30-60: `dict[str, Any]` is not assignable to attribute `line_services` with type `list[Unknown]` [bad-assignment] +ERROR homeassistant/components/obihai/connectivity.py:70:31-65: `dict[str, str]` is not assignable to attribute `call_direction` with type `list[Unknown]` [bad-assignment] +ERROR homeassistant/components/octoprint/config_flow.py:158:40-59: Object of class `NoneType` has no attribute `upnp_uuid` [missing-attribute] +ERROR homeassistant/components/octoprint/coordinator.py:29:5-17: Class member `OctoprintDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/octoprint/number.py:93:5-23: Class member `OctoPrintTemperatureNumber._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/octoprint/sensor.py:31:9-34:41: Returned type `OctoprintPrinterInfo | PrinterFlags | PrinterState | bool` is not assignable to declared return type `bool` [bad-return] +ERROR homeassistant/components/octoprint/sensor.py:285:16-33: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/octoprint/sensor.py:293:16-41: Returned type `OctoprintJobInfo | Unknown` is not assignable to declared return type `bool` [bad-return] +ERROR homeassistant/components/octoprint/sensor.py:293:24-41: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/octoprint/sensor.py:316:16-33: Object of class `NoneType` has no attribute `size` [missing-attribute] +ERROR homeassistant/components/octoprint/sensor.py:324:16-41: Returned type `OctoprintJobInfo | Unknown` is not assignable to declared return type `bool` [bad-return] +ERROR homeassistant/components/octoprint/sensor.py:324:24-41: Object of class `NoneType` has no attribute `size` [missing-attribute] +ERROR homeassistant/components/oem/climate.py:7:1-37: Could not find import of `oemthermostat` [missing-import] +ERROR homeassistant/components/ohmconnect/sensor.py:88:60-63: `url` is uninitialized [unbound-name] +ERROR homeassistant/components/ohme/button.py:32:9-12: Unexpected keyword argument `key` in function `OhmeButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/button.py:33:9-24: Unexpected keyword argument `translation_key` in function `OhmeButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/button.py:59:5-23: Class member `OhmeButton.entity_description` overrides parent class `OhmeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ohme/button.py:59:5-23: Class member `OhmeButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ohme/coordinator.py:36:5-17: Class member `OhmeBaseCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ohme/entity.py:28:5-23: Class member `OhmeEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ohme/number.py:32:9-12: Unexpected keyword argument `key` in function `OhmeNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/number.py:33:9-24: Unexpected keyword argument `translation_key` in function `OhmeNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/number.py:42:9-12: Unexpected keyword argument `key` in function `OhmeNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/number.py:43:9-24: Unexpected keyword argument `translation_key` in function `OhmeNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/number.py:75:5-23: Class member `OhmeNumber.entity_description` overrides parent class `OhmeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ohme/number.py:75:5-23: Class member `OhmeNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ohme/select.py:34:5-8: Unexpected keyword argument `key` in function `OhmeSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/select.py:35:5-20: Unexpected keyword argument `translation_key` in function `OhmeSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/select.py:43:5-8: Unexpected keyword argument `key` in function `OhmeSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/select.py:44:5-20: Unexpected keyword argument `translation_key` in function `OhmeSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/select.py:71:5-23: Class member `OhmeSelect.entity_description` overrides parent class `OhmeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ohme/select.py:71:5-23: Class member `OhmeSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ohme/sensor.py:42:9-12: Unexpected keyword argument `key` in function `OhmeSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `OhmeSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/sensor.py:49:9-12: Unexpected keyword argument `key` in function `OhmeSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/sensor.py:55:9-12: Unexpected keyword argument `key` in function `OhmeSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/sensor.py:63:9-12: Unexpected keyword argument `key` in function `OhmeSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/sensor.py:72:9-12: Unexpected keyword argument `key` in function `OhmeSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/sensor.py:79:9-12: Unexpected keyword argument `key` in function `OhmeSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `OhmeSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/sensor.py:87:9-12: Unexpected keyword argument `key` in function `OhmeSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `OhmeSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/sensor.py:96:9-12: Unexpected keyword argument `key` in function `OhmeSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `OhmeSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/sensor.py:102:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OhmeSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/sensor.py:130:5-23: Class member `OhmeSensor.entity_description` overrides parent class `OhmeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ohme/sensor.py:130:5-23: Class member `OhmeSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ohme/switch.py:40:9-12: Unexpected keyword argument `key` in function `OhmeConfigSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/switch.py:41:9-24: Unexpected keyword argument `translation_key` in function `OhmeConfigSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/switch.py:42:9-24: Unexpected keyword argument `entity_category` in function `OhmeConfigSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/switch.py:47:9-12: Unexpected keyword argument `key` in function `OhmeConfigSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/switch.py:48:9-24: Unexpected keyword argument `translation_key` in function `OhmeConfigSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/switch.py:49:9-24: Unexpected keyword argument `entity_category` in function `OhmeConfigSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/switch.py:54:9-12: Unexpected keyword argument `key` in function `OhmeConfigSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/switch.py:55:9-24: Unexpected keyword argument `translation_key` in function `OhmeConfigSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/switch.py:56:9-24: Unexpected keyword argument `entity_category` in function `OhmeConfigSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/switch.py:64:9-12: Unexpected keyword argument `key` in function `OhmeSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/switch.py:65:9-24: Unexpected keyword argument `translation_key` in function `OhmeSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/switch.py:98:5-23: Class member `OhmeSwitch.entity_description` overrides parent class `OhmeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ohme/switch.py:98:5-23: Class member `OhmeSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ohme/switch.py:119:5-23: Class member `OhmeConfigSwitch.entity_description` overrides parent class `OhmeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ohme/switch.py:119:5-23: Class member `OhmeConfigSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ohme/time.py:32:9-12: Unexpected keyword argument `key` in function `OhmeTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/time.py:33:9-24: Unexpected keyword argument `translation_key` in function `OhmeTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ohme/time.py:63:5-23: Class member `OhmeTime.entity_description` overrides parent class `OhmeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ohme/time.py:63:5-23: Class member `OhmeTime.entity_description` overrides parent class `TimeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ollama/ai_task.py:60:16-44: Object of class `ToolResultContent` has no attribute `content` [missing-attribute] +ERROR homeassistant/components/ombi/__init__.py:5:8-14: Could not find import of `pyombi` [missing-import] +ERROR homeassistant/components/ombi/sensor.py:8:1-29: Could not find import of `pyombi` [missing-import] +ERROR homeassistant/components/ombi/sensor.py:24:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ombi/sensor.py:25:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ombi/sensor.py:26:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ombi/sensor.py:29:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ombi/sensor.py:30:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ombi/sensor.py:31:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ombi/sensor.py:34:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ombi/sensor.py:35:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ombi/sensor.py:36:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ombi/sensor.py:39:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ombi/sensor.py:40:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ombi/sensor.py:41:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ombi/sensor.py:44:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ombi/sensor.py:45:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ombi/sensor.py:46:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ombi/sensor.py:49:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ombi/sensor.py:50:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ombi/sensor.py:51:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/omnilogic/config_flow.py:33:9-31: Class member `OmniLogicConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/omnilogic/coordinator.py:21:5-17: Class member `OmniLogicUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/omnilogic/sensor.py:93:14-32: Class member `OmnilogicSensor._attr_device_class` overrides parent class `OmniLogicEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/omnilogic/sensor.py:134:13-136:14: Cannot index into `dict[str, str]` [bad-index] +ERROR homeassistant/components/omnilogic/sensor.py:158:16-21: `state` may be uninitialized [unbound-name] +ERROR homeassistant/components/onboarding/__init__.py:106:27-31: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/onboarding/__init__.py:108:25-29: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/onboarding/__init__.py:119:13-17: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/onboarding/__init__.py:119:33-42: `STEP_USER` may be uninitialized [unbound-name] +ERROR homeassistant/components/onboarding/__init__.py:120:36-40: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/onboarding/__init__.py:122:12-16: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/onboarding/__init__.py:125:51-55: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/onboarding/__init__.py:127:35-39: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/ondilo_ico/coordinator.py:47:5-17: Class member `OndiloIcoPoolsCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ondilo_ico/coordinator.py:69:63-80: Argument `BoundMethod[Self@OndiloIcoPoolsCoordinator, (self: Self@OndiloIcoPoolsCoordinator) -> dict[str, OndiloIcoPoolData]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ondilo_ico/coordinator.py:77:25-38: Cannot index into `Iterable[Unknown]` [bad-index] +ERROR homeassistant/components/ondilo_ico/coordinator.py:104:25-38: Cannot index into `Iterable[Unknown]` [bad-index] +ERROR homeassistant/components/ondilo_ico/coordinator.py:110:16-20: Returned type `Iterable[Unknown]` is not assignable to declared return type `dict[str, OndiloIcoPoolData]` [bad-return] +ERROR homeassistant/components/ondilo_ico/coordinator.py:168:59-76: Argument `BoundMethod[Self@OndiloIcoMeasuresCoordinator, (self: Self@OndiloIcoMeasuresCoordinator) -> OndiloIcoMeasurementData]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ondilo_ico/coordinator.py:174:18-33: Class member `OndiloIcoMeasuresCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ondilo_ico/coordinator.py:174:36-54: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@OndiloIcoMeasuresCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/ondilo_ico/coordinator.py:181:55-68: Argument `str` is not assignable to parameter `pool_id` with type `int` in function `ondilo.ondilo.Ondilo.get_last_pool_measures` [bad-argument-type] +ERROR homeassistant/components/ondilo_ico/sensor.py:34:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ondilo_ico/sensor.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ondilo_ico/sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ondilo_ico/sensor.py:46:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ondilo_ico/sensor.py:51:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ondilo_ico/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ondilo_ico/sensor.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ondilo_ico/sensor.py:60:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ondilo_ico/sensor.py:64:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ondilo_ico/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ondilo_ico/sensor.py:67:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ondilo_ico/sensor.py:71:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ondilo_ico/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ondilo_ico/sensor.py:138:14-32: Class member `OndiloICO.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/onedrive/backup.py:136:15-36: Class member `OneDriveBackupAgent.async_download_backup` overrides parent class `BackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/onedrive/config_flow.py:146:41-47: `folder` may be uninitialized [unbound-name] +ERROR homeassistant/components/onedrive/config_flow.py:191:71-86: `new_folder_name` may be uninitialized [unbound-name] +ERROR homeassistant/components/onedrive/config_flow.py:229:9-31: Class member `OneDriveConfigFlow.async_get_options_flow` overrides parent class `AbstractOAuth2FlowHandler` in an inconsistent manner [bad-override] +ERROR homeassistant/components/onedrive/coordinator.py:44:5-17: Class member `OneDriveUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/onedrive/sensor.py:36:9-12: Unexpected keyword argument `key` in function `OneDriveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onedrive/sensor.py:42:9-24: Unexpected keyword argument `entity_category` in function `OneDriveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onedrive/sensor.py:43:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OneDriveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onedrive/sensor.py:46:9-12: Unexpected keyword argument `key` in function `OneDriveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onedrive/sensor.py:52:9-24: Unexpected keyword argument `entity_category` in function `OneDriveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onedrive/sensor.py:55:9-12: Unexpected keyword argument `key` in function `OneDriveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onedrive/sensor.py:61:9-24: Unexpected keyword argument `entity_category` in function `OneDriveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onedrive/sensor.py:64:9-12: Unexpected keyword argument `key` in function `OneDriveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onedrive/sensor.py:68:9-24: Unexpected keyword argument `entity_category` in function `OneDriveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onedrive/sensor.py:91:5-23: Class member `OneDriveDriveStateSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/onedrive/sensor.py:91:5-23: Class member `OneDriveDriveStateSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/onewire/binary_sensor.py:36:13-16: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:37:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:38:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:43:13-16: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:44:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:45:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:46:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:52:13-16: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:53:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:54:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:55:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:61:13-16: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:62:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:63:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:64:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:75:13-16: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:76:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:77:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:79:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:80:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/binary_sensor.py:150:7-32: Field `entity_description` is declared `EntityDescription` in ancestor `class OneWireEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/onewire/config_flow.py:160:9-31: Class member `OneWireFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/onewire/onewirehub.py:47:42-54: Expected a type form, got instance of `Literal['OneWireHub']` [not-a-type] +ERROR homeassistant/components/onewire/select.py:31:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/select.py:32:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/select.py:34:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/select.py:35:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/select.py:91:7-26: Field `entity_description` is declared `EntityDescription` in ancestor `class OneWireEntity: ... +`, which is not assignable to the type `SelectEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/onewire/sensor.py:78:5-8: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:91:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:93:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:98:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:100:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:108:17-20: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:110:17-48: Unexpected keyword argument `entity_registry_enabled_default` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:113:17-32: Unexpected keyword argument `translation_key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:114:17-41: Unexpected keyword argument `translation_placeholders` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:120:17-20: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:124:17-32: Unexpected keyword argument `translation_key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:125:17-41: Unexpected keyword argument `translation_placeholders` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:134:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:136:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:141:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:143:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:146:13-28: Unexpected keyword argument `translation_key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:149:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:151:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:154:13-28: Unexpected keyword argument `translation_key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:157:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:159:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:162:13-28: Unexpected keyword argument `translation_key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:165:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:167:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:170:13-28: Unexpected keyword argument `translation_key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:173:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:175:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:180:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:182:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:187:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:189:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:192:13-28: Unexpected keyword argument `translation_key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:195:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:197:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:200:13-28: Unexpected keyword argument `translation_key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:203:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:205:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:208:13-28: Unexpected keyword argument `translation_key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:213:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:223:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:225:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:229:13-28: Unexpected keyword argument `translation_key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:232:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:234:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:239:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:241:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:244:13-28: Unexpected keyword argument `translation_key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:251:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:253:13-28: Unexpected keyword argument `translation_key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:254:13-37: Unexpected keyword argument `translation_placeholders` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:265:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:271:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:275:13-28: Unexpected keyword argument `translation_key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:278:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:286:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:290:13-28: Unexpected keyword argument `translation_key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:291:13-37: Unexpected keyword argument `translation_placeholders` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:302:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:308:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:316:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:322:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:328:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:334:13-16: Unexpected keyword argument `key` in function `OneWireSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/sensor.py:451:7-26: Field `entity_description` is declared `EntityDescription` in ancestor `class OneWireEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/onewire/switch.py:33:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:34:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:35:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:41:17-20: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:42:17-48: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:43:17-32: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:44:17-41: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:50:17-20: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:51:17-48: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:52:17-32: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:53:17-41: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:60:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:61:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:62:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:63:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:69:17-20: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:70:17-48: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:71:17-32: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:72:17-41: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:78:17-20: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:79:17-48: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:80:17-32: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:81:17-41: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:88:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:89:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:90:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:91:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:103:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:104:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:105:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:106:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:107:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:114:17-20: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:115:17-48: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:116:17-32: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:117:17-32: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:118:17-41: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:124:17-20: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:125:17-48: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:126:17-32: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:127:17-32: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:128:17-41: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onewire/switch.py:203:7-26: Field `entity_description` is declared `EntityDescription` in ancestor `class OneWireEntity: ... +`, which is not assignable to the type `SwitchEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/onkyo/config_flow.py:339:9-31: Class member `OnkyoConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/onkyo/media_player.py:215:14-37: Expected a callable, got `Literal[CodeBase.get_from_kind_zone]` [not-callable] +ERROR homeassistant/components/onkyo/media_player.py:357:46-63: No matching overload found for function `min` called with arguments: (Literal[1], float) [no-matching-overload] +ERROR homeassistant/components/onvif/binary_sensor.py:75:5-20: Class member `ONVIFBinarySensor._attr_unique_id` overrides parent class `ONVIFBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/onvif/binary_sensor.py:75:5-20: Class member `ONVIFBinarySensor._attr_unique_id` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/onvif/binary_sensor.py:75:5-20: Class member `ONVIFBinarySensor._attr_unique_id` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/onvif/binary_sensor.py:87:18-36: Class member `ONVIFBinarySensor._attr_device_class` overrides parent class `ONVIFBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/onvif/binary_sensor.py:87:18-36: Class member `ONVIFBinarySensor._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/onvif/button.py:27:5-23: Class member `RebootButton._attr_device_class` overrides parent class `ONVIFBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/onvif/camera.py:98:5-29: Class member `ONVIFCameraEntity._attr_supported_features` overrides parent class `ONVIFBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/onvif/camera.py:182:17-30: Argument `asyncio.streams.StreamReader` is not assignable to parameter `stream` with type `aiohttp.streams.StreamReader` in function `homeassistant.helpers.aiohttp_client.async_aiohttp_proxy_stream` [bad-argument-type] +ERROR homeassistant/components/onvif/config_flow.py:83:50-61: Argument `() -> list[Service]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/onvif/config_flow.py:115:9-31: Class member `OnvifFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/onvif/device.py:189:20-43: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/onvif/device.py:480:15-40: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/onvif/device.py:508:44-52: No matching overload found for function `dict.get` called with arguments: (Unknown | None, Literal[0]) [no-matching-overload] +ERROR homeassistant/components/onvif/device.py:509:46-55: No matching overload found for function `dict.get` called with arguments: (Unknown | None, Literal[0]) [no-matching-overload] +ERROR homeassistant/components/onvif/device.py:510:46-55: No matching overload found for function `dict.get` called with arguments: (Unknown | None, Literal[0]) [no-matching-overload] +ERROR homeassistant/components/onvif/device.py:526:19-42: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/onvif/device.py:546:23-46: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/onvif/device.py:636:19-42: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/onvif/device.py:664:19-46: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/onvif/event.py:477:35-58: Argument `HassJob[[_now: datetime | None = None], None]` is not assignable to parameter `action` with type `((datetime) -> Coroutine[Any, Any, None] | None) | HassJob[[datetime], Coroutine[Any, Any, None] | None]` in function `homeassistant.helpers.event.async_call_later` [bad-argument-type] +ERROR homeassistant/components/onvif/event.py:558:25-42: Argument `str | None` is not assignable to parameter `address` with type `str` in function `onvif.client.ONVIFCamera.create_notification_manager` [bad-argument-type] +ERROR homeassistant/components/onvif/sensor.py:83:18-36: Class member `ONVIFSensor._attr_device_class` overrides parent class `ONVIFBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/onvif/switch.py:37:9-12: Unexpected keyword argument `key` in function `ONVIFSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onvif/switch.py:38:9-24: Unexpected keyword argument `translation_key` in function `ONVIFSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onvif/switch.py:46:9-12: Unexpected keyword argument `key` in function `ONVIFSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onvif/switch.py:47:9-24: Unexpected keyword argument `translation_key` in function `ONVIFSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onvif/switch.py:55:9-12: Unexpected keyword argument `key` in function `ONVIFSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onvif/switch.py:56:9-24: Unexpected keyword argument `translation_key` in function `ONVIFSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/onvif/switch.py:84:5-23: Class member `ONVIFSwitch.entity_description` overrides parent class `ONVIFBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/onvif/switch.py:84:5-23: Class member `ONVIFSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/open_meteo/coordinator.py:30:5-17: Class member `OpenMeteoDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/open_router/__init__.py:29:43-66: Argument `BoundMethod[AsyncOpenAI, (self: AsyncOpenAI) -> dict[str, str]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/open_router/ai_task.py:61:16-44: Object of class `ToolResultContent` has no attribute `content` [missing-attribute] +ERROR homeassistant/components/open_router/entity.py:207:46-69: Argument `() -> list[TypedDict[ChatCompletionContentPartImageParam]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/open_router/entity.py:293:62-76: No matching overload found for function `openai.resources.chat.completions.completions.AsyncCompletions.create` called with arguments: (**dict[str, dict[str, bool] | dict[str, str] | str | Any]) [no-matching-overload] +ERROR homeassistant/components/openai_conversation/__init__.py:181:63-77: No matching overload found for function `openai.resources.responses.responses.AsyncResponses.create` called with arguments: (**dict[str, bool | list[TypedDict[ApplyPatchCall] | TypedDict[ApplyPatchCallOutput] | TypedDict[ComputerCallOutput] | TypedDict[EasyInputMessageParam] | TypedDict[FunctionCallOutput] | TypedDict[ImageGenerationCall] | TypedDict[ItemReference] | TypedDict[LocalShellCall] | TypedDict[LocalShellCallOutput] | TypedDict[McpApprovalRequest] | TypedDict[McpApprovalResponse] | TypedDict[McpCall] | TypedDict[McpListTools] | TypedDict[Message] | TypedDict[ResponseCodeInterpreterToolCallParam] | TypedDict[ResponseComputerToolCallParam] | TypedDict[ResponseCustomToolCallOutputParam] | TypedDict[ResponseCustomToolCallParam] | TypedDict[ResponseFileSearchToolCallParam] | TypedDict[ResponseFunctionToolCallParam] | TypedDict[ResponseFunctionWebSearchParam] | TypedDict[ResponseOutputMessageParam] | TypedDict[ResponseReasoningItemParam] | TypedDict[ShellCall] | TypedDict[ShellCallOutput]] | str | Any | None]) [no-matching-overload] +ERROR homeassistant/components/openai_conversation/__init__.py:243:43-66: Argument `BoundMethod[AsyncOpenAI, (self: AsyncOpenAI) -> dict[str, str]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/openai_conversation/__init__.py:246:43-88: Argument `BoundMethod[AsyncModels, (self: AsyncModels, *, extra_headers: Mapping[str, Omit | str] | None = None, extra_query: Mapping[str, object] | None = None, extra_body: object | None = None, timeout: NotGiven | Timeout | float | None = ...) -> AsyncPaginator[Model, AsyncPage[Model]]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/openai_conversation/ai_task.py:82:16-44: Object of class `ToolResultContent` has no attribute `content` [missing-attribute] +ERROR homeassistant/components/openai_conversation/config_flow.py:101:39-84: Argument `BoundMethod[AsyncModels, (self: AsyncModels, *, extra_headers: Mapping[str, Omit | str] | None = None, extra_query: Mapping[str, object] | None = None, extra_body: object | None = None, timeout: NotGiven | Timeout | float | None = ...) -> AsyncPaginator[Model, AsyncPage[Model]]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/openai_conversation/entity.py:390:13-30: `current_tool_call` is uninitialized [unbound-name] +ERROR homeassistant/components/openai_conversation/entity.py:392:13-30: `current_tool_call` is uninitialized [unbound-name] +ERROR homeassistant/components/openai_conversation/entity.py:712:46-69: Argument `() -> list[TypedDict[ResponseInputFileParam] | TypedDict[ResponseInputImageParam] | TypedDict[ResponseInputTextParam]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/openevse/sensor.py:7:8-20: Could not find import of `openevsewifi` [missing-import] +ERROR homeassistant/components/openevse/sensor.py:34:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openevse/sensor.py:35:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openevse/sensor.py:38:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openevse/sensor.py:39:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openevse/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openevse/sensor.py:46:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openevse/sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openevse/sensor.py:53:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openevse/sensor.py:59:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openevse/sensor.py:60:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openevse/sensor.py:66:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openevse/sensor.py:67:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openevse/sensor.py:73:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openevse/sensor.py:74:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openexchangerates/__init__.py:63:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/openexchangerates/coordinator.py:27:5-17: Class member `OpenexchangeratesCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opengarage/binary_sensor.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opengarage/binary_sensor.py:26:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opengarage/binary_sensor.py:50:7-29: Field `entity_description` is declared `EntityDescription` in ancestor `class OpenGarageEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/opengarage/button.py:35:9-12: Unexpected keyword argument `key` in function `OpenGarageButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opengarage/button.py:37:9-24: Unexpected keyword argument `entity_category` in function `OpenGarageButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opengarage/button.py:64:5-23: Class member `OpenGarageButtonEntity.entity_description` overrides parent class `OpenGarageEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opengarage/button.py:64:5-23: Class member `OpenGarageButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opengarage/coordinator.py:24:5-17: Class member `OpenGarageDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opengarage/cover.py:38:7-22: Field `entity_description` is declared `EntityDescription` in ancestor `class OpenGarageEntity: ... +`, which is not assignable to the type `CoverEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/opengarage/cover.py:41:5-23: Class member `OpenGarageCover._attr_device_class` overrides parent class `OpenGarageEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opengarage/cover.py:42:5-29: Class member `OpenGarageCover._attr_supported_features` overrides parent class `OpenGarageEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opengarage/sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opengarage/sensor.py:39:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opengarage/sensor.py:41:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opengarage/sensor.py:42:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opengarage/sensor.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opengarage/sensor.py:53:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opengarage/sensor.py:81:7-23: Field `entity_description` is declared `EntityDescription` in ancestor `class OpenGarageEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/openrgb/coordinator.py:56:65-61:14: Unpacked argument `tuple[Any, Any, Literal['Home Assistant']]` is not assignable to parameter `*args` with type `tuple[str, int, str, int | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/openrgb/coordinator.py:76:56-75: Argument `BoundMethod[Self@OpenRGBCoordinator, (self: Self@OpenRGBCoordinator) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/openrgb/coordinator.py:123:52-74: Argument `BoundMethod[OpenRGBClient, (self: OpenRGBClient) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/openrgb/light.py:141:18-42: Class member `OpenRGBLight._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/openrgb/light.py:293:55-83: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[ModeData | int | str, bool, bool]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/opensensemap/air_quality.py:8:1-42: Could not find import of `opensensemap_api` [missing-import] +ERROR homeassistant/components/opensensemap/air_quality.py:9:1-58: Could not find import of `opensensemap_api.exceptions` [missing-import] +ERROR homeassistant/components/opensky/config_flow.py:43:9-31: Class member `OpenSkyConfigFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opensky/coordinator.py:37:5-17: Class member `OpenSkyDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:37:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:43:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:45:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:50:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:52:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:57:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:63:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:69:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:75:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:81:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:86:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:91:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:96:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:101:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:106:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:111:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:117:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:118:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:122:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:128:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:129:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:134:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:135:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:140:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:141:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:146:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:147:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:151:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:152:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:156:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:157:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:161:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:162:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:166:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:167:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:168:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:172:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:173:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:174:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:178:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:179:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:183:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:184:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:188:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:189:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:190:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:194:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:195:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:196:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:200:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:201:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:205:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:206:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:210:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:211:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:215:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:216:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:220:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:221:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:225:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:226:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:231:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:232:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:233:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:238:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:239:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:240:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:245:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:246:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:251:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:252:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:257:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:258:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:263:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:264:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:269:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:270:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:274:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:275:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:279:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:280:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:284:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:285:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:289:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:290:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:294:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:295:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:299:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:300:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:305:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:306:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:310:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:311:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:316:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:317:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:322:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:323:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:328:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:329:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:334:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:335:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:339:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:340:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:344:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:345:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:349:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:350:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:354:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:355:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:356:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:360:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:361:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:362:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:366:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:367:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:371:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:372:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:376:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:377:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:381:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:382:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:386:9-12: Unexpected keyword argument `key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:387:9-24: Unexpected keyword argument `translation_key` in function `OpenThermBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:411:5-23: Class member `OpenThermBinarySensor.entity_description` overrides parent class `OpenThermStatusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opentherm_gw/binary_sensor.py:411:5-23: Class member `OpenThermBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opentherm_gw/button.py:39:9-12: Unexpected keyword argument `key` in function `OpenThermButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/button.py:40:9-24: Unexpected keyword argument `translation_key` in function `OpenThermButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/button.py:45:9-12: Unexpected keyword argument `key` in function `OpenThermButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/button.py:70:5-23: Class member `OpenThermButton.entity_description` overrides parent class `OpenThermEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opentherm_gw/button.py:70:5-23: Class member `OpenThermButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opentherm_gw/climate.py:63:17-20: Unexpected keyword argument `key` in function `OpenThermClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/climate.py:76:5-29: Class member `OpenThermClimate._attr_supported_features` overrides parent class `OpenThermStatusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opentherm_gw/climate.py:93:5-23: Class member `OpenThermClimate.entity_description` overrides parent class `OpenThermStatusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opentherm_gw/climate.py:93:5-23: Class member `OpenThermClimate.entity_description` overrides parent class `ClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opentherm_gw/config_flow.py:48:9-31: Class member `OpenThermGwConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opentherm_gw/entity.py:35:5-23: Class member `OpenThermEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opentherm_gw/select.py:148:9-12: Unexpected keyword argument `key` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:149:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:150:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:165:9-12: Unexpected keyword argument `key` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:166:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:167:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:178:9-12: Unexpected keyword argument `key` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:179:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:180:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:187:9-12: Unexpected keyword argument `key` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:188:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:189:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:196:9-12: Unexpected keyword argument `key` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:197:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:198:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:205:9-12: Unexpected keyword argument `key` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:206:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:207:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:214:9-12: Unexpected keyword argument `key` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:215:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:216:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:223:9-12: Unexpected keyword argument `key` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:224:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:225:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/select.py:252:5-23: Class member `OpenThermSelect.entity_description` overrides parent class `OpenThermStatusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opentherm_gw/select.py:252:5-23: Class member `OpenThermSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opentherm_gw/sensor.py:49:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:51:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:59:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:61:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:69:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:74:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:79:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:87:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:95:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:103:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:104:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:110:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:118:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:119:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:127:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:136:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:137:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:138:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:146:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:147:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:148:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:156:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:157:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:158:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:166:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:167:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:168:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:176:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:177:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:185:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:186:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:194:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:195:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:203:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:204:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:211:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:212:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:219:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:220:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:227:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:228:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:235:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:236:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:243:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:244:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:252:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:253:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:261:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:262:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:266:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:267:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:273:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:274:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:280:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:281:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:287:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:288:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:294:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:295:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:302:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:303:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:310:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:311:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:318:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:319:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:326:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:327:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:332:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:333:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:337:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:338:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:342:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:343:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:347:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:348:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:352:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:353:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:357:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:358:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:362:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:363:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:367:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:368:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:369:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:373:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:374:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:375:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:379:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:380:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:381:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:385:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:386:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:387:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:391:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:392:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:393:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:397:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:398:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:399:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:403:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:404:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:405:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:409:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:410:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:411:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:415:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:416:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:424:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:425:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:429:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:430:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:434:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:435:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:439:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:440:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:444:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:445:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:449:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:450:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:458:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:459:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:460:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:468:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:469:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:470:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:478:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:479:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:487:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:488:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:496:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:497:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:502:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:503:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:507:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:508:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:512:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:513:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:514:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:522:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:523:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:524:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:532:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:533:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:537:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:538:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:542:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:543:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:550:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:551:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:558:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:559:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:566:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:567:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:573:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:574:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:581:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:582:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:590:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:591:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:599:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:600:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:601:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:609:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:610:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:611:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:619:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:620:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:621:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:629:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:630:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:631:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:639:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:640:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:648:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:649:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:657:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:658:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:666:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:667:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:674:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:675:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:682:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:683:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:690:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:691:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:698:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:699:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:706:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:707:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:715:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:716:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:724:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:725:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:729:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:730:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:736:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:737:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:743:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:744:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:750:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:751:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:757:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:758:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:765:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:766:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:773:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:774:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:781:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:782:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:789:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:790:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:795:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:796:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:800:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:801:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:805:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:806:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:810:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:811:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:819:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:820:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:821:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:829:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:830:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:831:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:839:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:840:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:848:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:849:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:857:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:858:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:863:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:864:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:868:9-12: Unexpected keyword argument `key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:869:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/sensor.py:896:5-23: Class member `OpenThermSensor.entity_description` overrides parent class `OpenThermStatusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opentherm_gw/sensor.py:896:5-23: Class member `OpenThermSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opentherm_gw/services.py:123:43-51: Argument `Literal['ABCDEF']` is not assignable to parameter `container` with type `Container[Unknown]` in function `voluptuous.validators.In.__init__` [bad-argument-type] +ERROR homeassistant/components/opentherm_gw/services.py:124:45-59: Argument `Literal['RXTBOFHWCEMP']` is not assignable to parameter `container` with type `Container[Unknown]` in function `voluptuous.validators.In.__init__` [bad-argument-type] +ERROR homeassistant/components/opentherm_gw/switch.py:30:9-12: Unexpected keyword argument `key` in function `OpenThermSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/switch.py:31:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/switch.py:32:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/switch.py:38:9-12: Unexpected keyword argument `key` in function `OpenThermSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/switch.py:39:9-24: Unexpected keyword argument `translation_key` in function `OpenThermSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/switch.py:40:9-33: Unexpected keyword argument `translation_placeholders` in function `OpenThermSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opentherm_gw/switch.py:67:5-23: Class member `OpenThermSwitch.entity_description` overrides parent class `OpenThermEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opentherm_gw/switch.py:67:5-23: Class member `OpenThermSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/openuv/binary_sensor.py:22:5-8: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/binary_sensor.py:23:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/binary_sensor.py:46:7-25: Field `entity_description` is declared `EntityDescription` in ancestor `class OpenUvEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/openuv/config_flow.py:136:9-31: Class member `OpenUvFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/openuv/coordinator.py:27:5-17: Class member `OpenUvCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/openuv/coordinator.py:28:5-18: Class member `OpenUvCoordinator.update_method` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/openuv/sensor.py:84:9-12: Unexpected keyword argument `key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:91:9-12: Unexpected keyword argument `key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:98:9-12: Unexpected keyword argument `key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:105:9-12: Unexpected keyword argument `key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:112:9-12: Unexpected keyword argument `key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:113:9-24: Unexpected keyword argument `translation_key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:121:9-12: Unexpected keyword argument `key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:122:9-24: Unexpected keyword argument `translation_key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:130:9-12: Unexpected keyword argument `key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:131:9-24: Unexpected keyword argument `translation_key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:139:9-12: Unexpected keyword argument `key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:140:9-24: Unexpected keyword argument `translation_key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:148:9-12: Unexpected keyword argument `key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:149:9-24: Unexpected keyword argument `translation_key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:157:9-12: Unexpected keyword argument `key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:158:9-24: Unexpected keyword argument `translation_key` in function `OpenUvSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openuv/sensor.py:187:5-23: Class member `OpenUvSensor.entity_description` overrides parent class `OpenUvEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/openuv/sensor.py:187:5-23: Class member `OpenUvSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/openweathermap/config_flow.py:70:9-31: Class member `OpenWeatherMapConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/openweathermap/coordinator.py:85:5-17: Class member `OWMUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/openweathermap/coordinator.py:190:25-45: Argument `Decimal` is not assignable to parameter `temperature` with type `None` in function `homeassistant.components.weather.Forecast.__init__` [bad-argument-type] +ERROR homeassistant/components/openweathermap/coordinator.py:191:41-60: Argument `Decimal` is not assignable to parameter `native_apparent_temperature` with type `float | None` in function `homeassistant.components.weather.Forecast.__init__` [bad-argument-type] +ERROR homeassistant/components/openweathermap/coordinator.py:192:22-39: Argument `int` is not assignable to parameter `pressure` with type `None` in function `homeassistant.components.weather.Forecast.__init__` [bad-argument-type] +ERROR homeassistant/components/openweathermap/coordinator.py:194:30-48: Argument `Decimal | None` is not assignable to parameter `native_dew_point` with type `float | None` in function `homeassistant.components.weather.Forecast.__init__` [bad-argument-type] +ERROR homeassistant/components/openweathermap/coordinator.py:196:24-43: Argument `Decimal` is not assignable to parameter `wind_speed` with type `None` in function `homeassistant.components.weather.Forecast.__init__` [bad-argument-type] +ERROR homeassistant/components/openweathermap/coordinator.py:197:36-54: Argument `Decimal | None` is not assignable to parameter `native_wind_gust_speed` with type `float | None` in function `homeassistant.components.weather.Forecast.__init__` [bad-argument-type] +ERROR homeassistant/components/openweathermap/coordinator.py:210:25-49: Argument `Decimal` is not assignable to parameter `temperature` with type `None` in function `homeassistant.components.weather.Forecast.__init__` [bad-argument-type] +ERROR homeassistant/components/openweathermap/coordinator.py:211:21-45: Argument `Decimal` is not assignable to parameter `templow` with type `None` in function `homeassistant.components.weather.Forecast.__init__` [bad-argument-type] +ERROR homeassistant/components/openweathermap/coordinator.py:212:41-60: Argument `DailyTemperature` is not assignable to parameter `native_apparent_temperature` with type `float | None` in function `homeassistant.components.weather.Forecast.__init__` [bad-argument-type] +ERROR homeassistant/components/openweathermap/coordinator.py:213:22-39: Argument `int` is not assignable to parameter `pressure` with type `None` in function `homeassistant.components.weather.Forecast.__init__` [bad-argument-type] +ERROR homeassistant/components/openweathermap/coordinator.py:215:30-48: Argument `Decimal` is not assignable to parameter `native_dew_point` with type `float | None` in function `homeassistant.components.weather.Forecast.__init__` [bad-argument-type] +ERROR homeassistant/components/openweathermap/coordinator.py:217:24-43: Argument `Decimal` is not assignable to parameter `wind_speed` with type `None` in function `homeassistant.components.weather.Forecast.__init__` [bad-argument-type] +ERROR homeassistant/components/openweathermap/coordinator.py:218:36-54: Argument `Decimal | None` is not assignable to parameter `native_wind_gust_speed` with type `float | None` in function `homeassistant.components.weather.Forecast.__init__` [bad-argument-type] +ERROR homeassistant/components/openweathermap/coordinator.py:222:27-66: Argument `Decimal` is not assignable to parameter `precipitation` with type `None` in function `homeassistant.components.weather.Forecast.__init__` [bad-argument-type] +ERROR homeassistant/components/openweathermap/sensor.py:66:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:70:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:77:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:83:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:84:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:90:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:96:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:103:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:109:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:115:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:122:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:128:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:129:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:135:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:136:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:142:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:143:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:146:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:147:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:152:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:153:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:160:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:161:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:164:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:165:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:171:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:176:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:182:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:188:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:194:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:200:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:206:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/openweathermap/sensor.py:212:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/coordinator.py:50:5-17: Class member `OpowerCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opower/coordinator.py:290:33-61: No matching overload found for function `max` called with arguments: (Literal[0], float) [no-matching-overload] +ERROR homeassistant/components/opower/coordinator.py:291:41-70: No matching overload found for function `max` called with arguments: (Literal[0], float) [no-matching-overload] +ERROR homeassistant/components/opower/coordinator.py:292:40-66: No matching overload found for function `max` called with arguments: (Literal[0], float) [no-matching-overload] +ERROR homeassistant/components/opower/coordinator.py:293:35-62: No matching overload found for function `max` called with arguments: (Literal[0], float) [no-matching-overload] +ERROR homeassistant/components/opower/coordinator.py:416:43-53: No matching overload found for function `max` called with arguments: (Literal[0], float) [no-matching-overload] +ERROR homeassistant/components/opower/coordinator.py:417:39-50: No matching overload found for function `max` called with arguments: (Literal[0], float) [no-matching-overload] +ERROR homeassistant/components/opower/sensor.py:42:9-12: Unexpected keyword argument `key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:52:9-12: Unexpected keyword argument `key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:61:9-12: Unexpected keyword argument `key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:70:9-12: Unexpected keyword argument `key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:79:9-12: Unexpected keyword argument `key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:88:9-12: Unexpected keyword argument `key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:97:9-12: Unexpected keyword argument `key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:100:9-24: Unexpected keyword argument `entity_category` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:101:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:105:9-12: Unexpected keyword argument `key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:108:9-24: Unexpected keyword argument `entity_category` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:109:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:115:9-12: Unexpected keyword argument `key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:124:9-12: Unexpected keyword argument `key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:133:9-12: Unexpected keyword argument `key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:134:9-24: Unexpected keyword argument `translation_key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:142:9-12: Unexpected keyword argument `key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:143:9-24: Unexpected keyword argument `translation_key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:151:9-12: Unexpected keyword argument `key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:152:9-24: Unexpected keyword argument `translation_key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:160:9-12: Unexpected keyword argument `key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:161:9-24: Unexpected keyword argument `translation_key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:169:9-12: Unexpected keyword argument `key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:170:9-24: Unexpected keyword argument `translation_key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:172:9-24: Unexpected keyword argument `entity_category` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:173:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:177:9-12: Unexpected keyword argument `key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:178:9-24: Unexpected keyword argument `translation_key` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:180:9-24: Unexpected keyword argument `entity_category` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:181:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OpowerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/opower/sensor.py:235:5-23: Class member `OpowerSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opower/sensor.py:235:5-23: Class member `OpowerSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/opple/light.py:8:1-56: Could not find import of `pyoppleio.OppleLightDevice` [missing-import] +ERROR homeassistant/components/oralb/sensor.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:46:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:48:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:53:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:55:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:60:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:61:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:64:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:68:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:71:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:77:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:79:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:87:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:91:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:92:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:95:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:99:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/oralb/sensor.py:145:7-33: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/oralb/sensor.py:160:17-48: Object of class `EntityDescription` has no attribute `options` [missing-attribute] +ERROR homeassistant/components/oralb/sensor.py:161:21-65: `not in` is not supported between `str` and `object` [not-iterable] +ERROR homeassistant/components/oralb/sensor.py:163:17-55: Object of class `object` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/oru/sensor.py:8:1-34: Could not find import of `oru` [missing-import] +ERROR homeassistant/components/oru/sensor.py:78:31-35: `Literal[True]` is not assignable to attribute `_available` with type `None` [bad-assignment] +ERROR homeassistant/components/oru/sensor.py:87:31-36: `Literal[False]` is not assignable to attribute `_available` with type `None` [bad-assignment] +ERROR homeassistant/components/orvibo/switch.py:8:1-51: Could not find import of `orvibo.s20` [missing-import] +ERROR homeassistant/components/osoenergy/binary_sensor.py:30:9-12: Unexpected keyword argument `key` in function `OSOEnergyBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/binary_sensor.py:31:9-24: Unexpected keyword argument `translation_key` in function `OSOEnergyBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/binary_sensor.py:32:38-55: Object of class `OSOEnergy` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/osoenergy/binary_sensor.py:35:9-12: Unexpected keyword argument `key` in function `OSOEnergyBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/binary_sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `OSOEnergyBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/binary_sensor.py:37:38-55: Object of class `OSOEnergy` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/osoenergy/binary_sensor.py:40:9-12: Unexpected keyword argument `key` in function `OSOEnergyBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/binary_sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `OSOEnergyBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/binary_sensor.py:42:38-55: Object of class `OSOEnergy` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/osoenergy/binary_sensor.py:68:5-23: Class member `OSOEnergyBinarySensor.entity_description` overrides parent class `OSOEnergyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/osoenergy/binary_sensor.py:68:5-23: Class member `OSOEnergyBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/osoenergy/binary_sensor.py:86:49-65: Argument `OSOEnergyBinarySensorData` is not assignable to parameter with type `OSOEnergy` [bad-argument-type] +ERROR homeassistant/components/osoenergy/sensor.py:39:9-12: Unexpected keyword argument `key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:52:38-55: Object of class `OSOEnergy` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/osoenergy/sensor.py:55:9-12: Unexpected keyword argument `key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:59:38-55: Object of class `OSOEnergy` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/osoenergy/sensor.py:62:9-12: Unexpected keyword argument `key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:66:38-55: Object of class `OSOEnergy` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/osoenergy/sensor.py:69:9-12: Unexpected keyword argument `key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:73:38-55: Object of class `OSOEnergy` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/osoenergy/sensor.py:76:9-12: Unexpected keyword argument `key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:80:38-55: Object of class `OSOEnergy` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/osoenergy/sensor.py:83:9-12: Unexpected keyword argument `key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:84:9-24: Unexpected keyword argument `translation_key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:87:38-55: Object of class `OSOEnergy` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/osoenergy/sensor.py:90:9-12: Unexpected keyword argument `key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:91:9-24: Unexpected keyword argument `translation_key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:94:38-55: Object of class `OSOEnergy` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/osoenergy/sensor.py:97:9-12: Unexpected keyword argument `key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:101:38-55: Object of class `OSOEnergy` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/osoenergy/sensor.py:104:9-12: Unexpected keyword argument `key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:107:38-55: Object of class `OSOEnergy` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/osoenergy/sensor.py:110:9-12: Unexpected keyword argument `key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:114:38-55: Object of class `OSOEnergy` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/osoenergy/sensor.py:117:9-12: Unexpected keyword argument `key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:118:9-24: Unexpected keyword argument `translation_key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:121:38-55: Object of class `OSOEnergy` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/osoenergy/sensor.py:124:9-12: Unexpected keyword argument `key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:128:38-55: Object of class `OSOEnergy` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/osoenergy/sensor.py:131:9-12: Unexpected keyword argument `key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:132:9-24: Unexpected keyword argument `translation_key` in function `OSOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/osoenergy/sensor.py:135:38-55: Object of class `OSOEnergy` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/osoenergy/sensor.py:163:5-23: Class member `OSOEnergySensor.entity_description` overrides parent class `OSOEnergyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/osoenergy/sensor.py:163:5-23: Class member `OSOEnergySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/osoenergy/sensor.py:181:49-65: Argument `OSOEnergySensorData` is not assignable to parameter with type `OSOEnergy` [bad-argument-type] +ERROR homeassistant/components/osoenergy/water_heater.py:178:5-29: Class member `OSOEnergyWaterHeater._attr_supported_features` overrides parent class `OSOEnergyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/osoenergy/water_heater.py:271:69-76: Argument `list[int]` is not assignable to parameter `profile` with type `array[Unknown]` in function `apyosoenergyapi.waterheater.OSOWaterHeater.set_profile` [bad-argument-type] +ERROR homeassistant/components/osoenergy/water_heater.py:289:69-76: Argument `list[float]` is not assignable to parameter `profile` with type `array[Unknown]` in function `apyosoenergyapi.waterheater.OSOWaterHeater.set_profile` [bad-argument-type] +ERROR homeassistant/components/osramlightify/light.py:9:1-30: Could not find import of `lightify` [missing-import] +ERROR homeassistant/components/osramlightify/light.py:254:43-59: Type `None` is not iterable [not-iterable] +ERROR homeassistant/components/osramlightify/light.py:289:31-293:14: `tuple[int, int, int]` is not assignable to attribute `_rgb_color` with type `None` [bad-assignment] +ERROR homeassistant/components/osramlightify/light.py:308:31-81: `tuple[int, int, int]` is not assignable to attribute `_rgb_color` with type `None` [bad-assignment] +ERROR homeassistant/components/osramlightify/light.py:328:32-50: `Literal[2]` is not assignable to attribute `_brightness` with type `None` [bad-assignment] +ERROR homeassistant/components/osramlightify/light.py:360:32-64: `int` is not assignable to attribute `_brightness` with type `None` [bad-assignment] +ERROR homeassistant/components/osramlightify/light.py:362:12-68: `in` is not supported between `Literal[ColorMode.COLOR_TEMP]` and `None` [not-iterable] +ERROR homeassistant/components/osramlightify/light.py:365:12-60: `in` is not supported between `Literal[ColorMode.HS]` and `None` [not-iterable] +ERROR homeassistant/components/osramlightify/light.py:368:16-48: Argument `set[ColorMode] | set[str] | None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR homeassistant/components/osramlightify/light.py:402:35-40: `dict[str, str | Unknown]` is not assignable to attribute `_device_attributes` with type `None` [bad-assignment] +ERROR homeassistant/components/osramlightify/light.py:447:35-75: `dict[str, Unknown]` is not assignable to attribute `_device_attributes` with type `None` [bad-assignment] +ERROR homeassistant/components/otbr/__init__.py:40:57-79: Argument `Module[homeassistant.components.otbr.homeassistant_hardware]` is not assignable to parameter `platform` with type `AsyncHardwareFirmwareInfoModule | SyncHardwareFirmwareInfoModule` in function `homeassistant.components.homeassistant_hardware.helpers.async_register_firmware_info_provider` [bad-argument-type] +ERROR homeassistant/components/otbr/config_flow.py:210:20-29: `unique_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/otbr/config_flow.py:230:31-40: `unique_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/otbr/websocket_api.py:230:28-50: `thread_dataset_channel` may be uninitialized [unbound-name] +ERROR homeassistant/components/otbr/websocket_api.py:234:52-74: `thread_dataset_channel` may be uninitialized [unbound-name] +ERROR homeassistant/components/otp/config_flow.py:54:25-63: Argument `BoundMethod[TOTP, (self: TOTP) -> str]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/otp/config_flow.py:93:54-95:14: Unpacked argument `tuple[Any]` is not assignable to parameter `*args` with type `tuple[str, datetime | None, int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/otp/config_flow.py:106:66-110:10: Unpacked argument `tuple[Any, Literal['Home Assistant']]` is not assignable to parameter `*args` with type `tuple[str | None, str | None, str | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/otp/sensor.py:41:5-23: Class member `TOTPSensor._attr_native_value` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/otp/sensor.py:51:14-25: Class member `TOTPSensor.device_info` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/otp/sensor.py:51:28-55:10: `TypedDict[DeviceInfo]` is not assignable to attribute `device_info` with type `(self: Self@TOTPSensor) -> TypedDict[DeviceInfo] | None` [bad-assignment] +ERROR homeassistant/components/ourgroceries/__init__.py:47:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/ourgroceries/coordinator.py:25:5-17: Class member `OurGroceriesDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/alarm_control_panel.py:143:9-12: Unexpected keyword argument `key` in function `OverkizAlarmDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/alarm_control_panel.py:144:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizAlarmDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/alarm_control_panel.py:163:9-12: Unexpected keyword argument `key` in function `OverkizAlarmDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/alarm_control_panel.py:182:9-12: Unexpected keyword argument `key` in function `OverkizAlarmDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/alarm_control_panel.py:192:9-12: Unexpected keyword argument `key` in function `OverkizAlarmDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/alarm_control_panel.py:234:5-23: Class member `OverkizAlarmControlPanel.entity_description` overrides parent class `OverkizDescriptiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/alarm_control_panel.py:234:5-23: Class member `OverkizAlarmControlPanel.entity_description` overrides parent class `AlarmControlPanelEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/alarm_control_panel.py:246:14-38: Class member `OverkizAlarmControlPanel._attr_supported_features` overrides parent class `OverkizDescriptiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/binary_sensor.py:35:9-12: Unexpected keyword argument `key` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:36:9-13: Unexpected keyword argument `name` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:37:9-13: Unexpected keyword argument `icon` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:42:9-12: Unexpected keyword argument `key` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:43:9-13: Unexpected keyword argument `name` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:49:9-12: Unexpected keyword argument `key` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:50:9-13: Unexpected keyword argument `name` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:51:9-13: Unexpected keyword argument `icon` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:57:9-12: Unexpected keyword argument `key` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:58:9-13: Unexpected keyword argument `name` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:65:9-12: Unexpected keyword argument `key` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:66:9-13: Unexpected keyword argument `name` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:72:9-12: Unexpected keyword argument `key` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:73:9-13: Unexpected keyword argument `name` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:79:9-12: Unexpected keyword argument `key` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:80:9-13: Unexpected keyword argument `name` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:86:9-12: Unexpected keyword argument `key` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:87:9-13: Unexpected keyword argument `name` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:93:9-12: Unexpected keyword argument `key` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:94:9-13: Unexpected keyword argument `name` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:100:9-12: Unexpected keyword argument `key` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:101:9-13: Unexpected keyword argument `name` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:109:9-12: Unexpected keyword argument `key` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:110:9-13: Unexpected keyword argument `name` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:116:9-12: Unexpected keyword argument `key` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:117:9-13: Unexpected keyword argument `name` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:123:9-12: Unexpected keyword argument `key` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:124:9-13: Unexpected keyword argument `name` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:130:9-12: Unexpected keyword argument `key` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:131:9-13: Unexpected keyword argument `name` in function `OverkizBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/binary_sensor.py:176:5-23: Class member `OverkizBinarySensor.entity_description` overrides parent class `OverkizDescriptiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/binary_sensor.py:176:5-23: Class member `OverkizBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/button.py:34:9-12: Unexpected keyword argument `key` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:35:9-13: Unexpected keyword argument `name` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:36:9-13: Unexpected keyword argument `icon` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:40:9-12: Unexpected keyword argument `key` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:41:9-13: Unexpected keyword argument `name` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:42:9-13: Unexpected keyword argument `icon` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:43:9-24: Unexpected keyword argument `entity_category` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:44:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:47:9-12: Unexpected keyword argument `key` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:48:9-13: Unexpected keyword argument `name` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:49:9-13: Unexpected keyword argument `icon` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:50:9-24: Unexpected keyword argument `entity_category` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:51:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:54:9-12: Unexpected keyword argument `key` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:55:9-13: Unexpected keyword argument `name` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:56:9-13: Unexpected keyword argument `icon` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:57:9-24: Unexpected keyword argument `entity_category` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:62:9-12: Unexpected keyword argument `key` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:62:39-43: Unexpected keyword argument `name` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:62:57-61: Unexpected keyword argument `icon` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:64:30-33: Unexpected keyword argument `key` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:64:54-58: Unexpected keyword argument `name` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:64:66-70: Unexpected keyword argument `icon` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:66:9-12: Unexpected keyword argument `key` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:67:9-13: Unexpected keyword argument `name` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:68:9-13: Unexpected keyword argument `icon` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:71:9-12: Unexpected keyword argument `key` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:71:34-38: Unexpected keyword argument `name` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:71:47-51: Unexpected keyword argument `icon` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:75:9-12: Unexpected keyword argument `key` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:77:9-13: Unexpected keyword argument `name` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:78:9-13: Unexpected keyword argument `icon` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:81:9-12: Unexpected keyword argument `key` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:82:9-13: Unexpected keyword argument `name` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:83:9-13: Unexpected keyword argument `icon` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:87:9-12: Unexpected keyword argument `key` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:89:9-13: Unexpected keyword argument `name` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:90:9-13: Unexpected keyword argument `icon` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:91:9-24: Unexpected keyword argument `entity_category` in function `OverkizButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/button.py:132:5-23: Class member `OverkizButton.entity_description` overrides parent class `OverkizDescriptiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/button.py:132:5-23: Class member `OverkizButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/climate/__init__.py:112:62-77: Cannot index into `dict[Protocol, type[HitachiAirToAirHeatPumpHLRRWIFI] | type[HitachiAirToAirHeatPumpOVP]]` [bad-index] +ERROR homeassistant/components/overkiz/climate/atlantic_electrical_heater.py:50:5-29: Class member `AtlanticElectricalHeater._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/climate/atlantic_electrical_heater_with_adjustable_temperature_setpoint.py:84:5-29: Class member `AtlanticElectricalHeaterWithAdjustableTemperatureSetpoint._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py:50:5-29: Class member `AtlanticElectricalTowelDryer._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py:70:13-74:14: `+=` is not supported between `None` and `list[str]` [unsupported-operation] +ERROR homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py:73:20-55: `not in` is not supported between `str` and `None` [not-iterable] +ERROR homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py:137:12-52: `in` is not supported between `Literal['drying']` and `None` [not-iterable] +ERROR homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py:175:14-54: `in` is not supported between `Literal['drying']` and `None` [not-iterable] +ERROR homeassistant/components/overkiz/climate/atlantic_heat_recovery_ventilation.py:51:5-29: Class member `AtlanticHeatRecoveryVentilation._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/climate/atlantic_pass_apc_heat_pump_main_component.py:39:5-29: Class member `AtlanticPassAPCHeatPumpMainComponent._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/climate/atlantic_pass_apc_heating_zone.py:87:5-29: Class member `AtlanticPassAPCHeatingZone._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/climate/atlantic_pass_apc_zone_control.py:31:5-29: Class member `AtlanticPassAPCZoneControl._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/climate/evo_home_controller.py:39:5-29: Class member `EvoHomeController._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/climate/evo_home_controller.py:60:46-60: Cannot index into `dict[str, HVACMode]` [bad-index] +ERROR homeassistant/components/overkiz/climate/evo_home_controller.py:79:44-62: Cannot index into `dict[str, str]` [bad-index] +ERROR homeassistant/components/overkiz/climate/evo_home_controller.py:100:13-26: `time_interval` may be uninitialized [unbound-name] +ERROR homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_hlrrwifi.py:101:14-38: Class member `HitachiAirToAirHeatPumpHLRRWIFI._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_ovp.py:105:14-38: Class member `HitachiAirToAirHeatPumpOVP._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/climate/hitachi_air_to_water_heating_zone.py:42:5-29: Class member `HitachiAirToWaterHeatingZone._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/climate/somfy_heating_temperature_interface.py:74:5-29: Class member `SomfyHeatingTemperatureInterface._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/climate/somfy_thermostat.py:59:5-29: Class member `SomfyThermostat._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/climate/valve_heating_temperature_interface.py:54:5-29: Class member `ValveHeatingTemperatureInterface._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/coordinator.py:42:5-17: Class member `OverkizDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/coordinator.py:116:18-33: Class member `OverkizDataUpdateCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/coordinator.py:116:36-65: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@OverkizDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/overkiz/coordinator.py:139:32-47: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@OverkizDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/overkiz/coordinator.py:215:39-59: `timedelta` is not assignable to attribute `update_interval` with type `(self: OverkizDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/overkiz/coordinator.py:227:36-49: Cannot delete item in `dict[str, dict[str, str]]` [unsupported-operation] +ERROR homeassistant/components/overkiz/light.py:47:14-41: Class member `OverkizLight._attr_supported_color_modes` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/number.py:79:9-12: Unexpected keyword argument `key` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:80:9-13: Unexpected keyword argument `name` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:81:9-13: Unexpected keyword argument `icon` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:85:9-24: Unexpected keyword argument `entity_category` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:89:9-12: Unexpected keyword argument `key` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:90:9-13: Unexpected keyword argument `name` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:91:9-13: Unexpected keyword argument `icon` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:97:9-24: Unexpected keyword argument `entity_category` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:100:9-12: Unexpected keyword argument `key` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:101:9-13: Unexpected keyword argument `name` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:108:9-24: Unexpected keyword argument `entity_category` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:111:9-12: Unexpected keyword argument `key` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:112:9-13: Unexpected keyword argument `name` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:119:9-24: Unexpected keyword argument `entity_category` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:123:9-12: Unexpected keyword argument `key` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:124:9-13: Unexpected keyword argument `name` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:125:9-13: Unexpected keyword argument `icon` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:131:9-24: Unexpected keyword argument `entity_category` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:134:9-12: Unexpected keyword argument `key` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:135:9-13: Unexpected keyword argument `name` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:136:9-13: Unexpected keyword argument `icon` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:142:9-24: Unexpected keyword argument `entity_category` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:145:9-12: Unexpected keyword argument `key` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:146:9-13: Unexpected keyword argument `name` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:147:9-13: Unexpected keyword argument `icon` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:153:9-24: Unexpected keyword argument `entity_category` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:158:9-12: Unexpected keyword argument `key` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:159:9-13: Unexpected keyword argument `icon` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:167:9-12: Unexpected keyword argument `key` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:168:9-13: Unexpected keyword argument `name` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:169:9-13: Unexpected keyword argument `icon` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:174:9-24: Unexpected keyword argument `entity_category` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:180:9-12: Unexpected keyword argument `key` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:181:9-13: Unexpected keyword argument `name` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:182:9-13: Unexpected keyword argument `icon` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:186:9-24: Unexpected keyword argument `entity_category` in function `OverkizNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/number.py:227:5-23: Class member `OverkizNumber.entity_description` overrides parent class `OverkizDescriptiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/number.py:227:5-23: Class member `OverkizNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/number.py:250:55-60: `state` may be uninitialized [unbound-name] +ERROR homeassistant/components/overkiz/select.py:73:9-12: Unexpected keyword argument `key` in function `OverkizSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/select.py:74:9-13: Unexpected keyword argument `name` in function `OverkizSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/select.py:81:9-24: Unexpected keyword argument `translation_key` in function `OverkizSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/select.py:84:9-12: Unexpected keyword argument `key` in function `OverkizSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/select.py:85:9-13: Unexpected keyword argument `name` in function `OverkizSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/select.py:92:9-24: Unexpected keyword argument `translation_key` in function `OverkizSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/select.py:95:9-12: Unexpected keyword argument `key` in function `OverkizSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/select.py:96:9-13: Unexpected keyword argument `name` in function `OverkizSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/select.py:99:9-24: Unexpected keyword argument `entity_category` in function `OverkizSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/select.py:100:9-24: Unexpected keyword argument `translation_key` in function `OverkizSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/select.py:104:9-12: Unexpected keyword argument `key` in function `OverkizSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/select.py:105:9-13: Unexpected keyword argument `name` in function `OverkizSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/select.py:110:9-24: Unexpected keyword argument `entity_category` in function `OverkizSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/select.py:111:9-24: Unexpected keyword argument `translation_key` in function `OverkizSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/select.py:115:9-12: Unexpected keyword argument `key` in function `OverkizSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/select.py:116:9-13: Unexpected keyword argument `name` in function `OverkizSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/select.py:119:9-24: Unexpected keyword argument `translation_key` in function `OverkizSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/select.py:158:5-23: Class member `OverkizSelect.entity_description` overrides parent class `OverkizDescriptiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/select.py:158:5-23: Class member `OverkizSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/sensor.py:57:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:58:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:62:9-24: Unexpected keyword argument `entity_category` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:66:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:67:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:68:9-24: Unexpected keyword argument `entity_category` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:69:9-13: Unexpected keyword argument `icon` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:75:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:76:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:77:9-24: Unexpected keyword argument `entity_category` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:78:9-13: Unexpected keyword argument `icon` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:81:9-24: Unexpected keyword argument `translation_key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:84:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:85:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:90:9-24: Unexpected keyword argument `entity_category` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:91:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:94:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:95:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:96:9-13: Unexpected keyword argument `icon` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:100:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:101:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:102:9-13: Unexpected keyword argument `icon` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:109:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:110:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:111:9-13: Unexpected keyword argument `icon` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:114:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:118:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:119:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:120:9-13: Unexpected keyword argument `icon` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:126:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:127:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:128:9-13: Unexpected keyword argument `icon` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:134:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:135:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:136:9-13: Unexpected keyword argument `icon` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:141:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:142:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:148:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:149:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:155:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:156:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:162:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:163:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:169:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:170:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:177:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:178:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:186:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:187:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:196:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:197:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:205:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:206:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:212:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:213:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:219:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:220:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:226:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:227:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:231:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:235:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:236:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:240:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:244:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:245:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:249:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:253:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:254:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:258:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:262:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:263:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:267:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:271:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:272:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:276:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:280:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:281:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:285:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:289:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:290:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:294:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:298:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:299:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:303:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:308:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:309:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:318:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:319:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:328:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:329:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:335:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:336:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:342:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:343:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:350:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:351:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:358:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:359:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:366:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:367:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:369:9-13: Unexpected keyword argument `icon` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:376:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:377:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:379:9-13: Unexpected keyword argument `icon` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:386:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:387:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:390:9-24: Unexpected keyword argument `entity_category` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:391:9-13: Unexpected keyword argument `icon` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:392:9-24: Unexpected keyword argument `translation_key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:395:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:396:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:397:9-13: Unexpected keyword argument `icon` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:398:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:399:9-24: Unexpected keyword argument `translation_key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:405:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:406:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:407:9-13: Unexpected keyword argument `icon` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:409:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:412:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:413:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:414:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:415:9-24: Unexpected keyword argument `entity_category` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:416:9-13: Unexpected keyword argument `icon` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:419:9-24: Unexpected keyword argument `translation_key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:422:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:423:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:424:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:425:9-24: Unexpected keyword argument `entity_category` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:426:9-24: Unexpected keyword argument `translation_key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:435:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:436:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:438:9-24: Unexpected keyword argument `entity_category` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:442:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:443:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:446:9-24: Unexpected keyword argument `entity_category` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:449:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:450:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:456:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:457:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:463:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:464:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:471:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:472:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:474:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:478:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:479:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:482:9-24: Unexpected keyword argument `translation_key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:486:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:487:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:494:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:495:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:502:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:503:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:511:9-12: Unexpected keyword argument `key` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:512:9-13: Unexpected keyword argument `name` in function `OverkizSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/sensor.py:563:5-23: Class member `OverkizStateSensor.entity_description` overrides parent class `OverkizDescriptiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/sensor.py:563:5-23: Class member `OverkizStateSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/siren.py:38:5-29: Class member `OverkizSiren._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/switch.py:39:9-12: Unexpected keyword argument `key` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:47:9-13: Unexpected keyword argument `icon` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:50:9-12: Unexpected keyword argument `key` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:59:9-12: Unexpected keyword argument `key` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:65:9-13: Unexpected keyword argument `icon` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:68:9-12: Unexpected keyword argument `key` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:71:9-13: Unexpected keyword argument `icon` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:74:9-12: Unexpected keyword argument `key` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:77:9-13: Unexpected keyword argument `icon` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:80:9-12: Unexpected keyword argument `key` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:83:9-13: Unexpected keyword argument `icon` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:86:9-12: Unexpected keyword argument `key` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:89:9-13: Unexpected keyword argument `icon` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:92:9-12: Unexpected keyword argument `key` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:93:9-13: Unexpected keyword argument `name` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:96:9-13: Unexpected keyword argument `icon` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:101:9-24: Unexpected keyword argument `entity_category` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:104:9-12: Unexpected keyword argument `key` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:107:9-13: Unexpected keyword argument `icon` in function `OverkizSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overkiz/switch.py:144:5-23: Class member `OverkizSwitch.entity_description` overrides parent class `OverkizDescriptiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/switch.py:144:5-23: Class member `OverkizSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/water_heater/atlantic_domestic_hot_water_production_mlb_component.py:26:5-29: Class member `AtlanticDomesticHotWaterProductionMBLComponent._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/water_heater/atlantic_domestic_hot_water_production_v2_io_component.py:34:5-29: Class member `AtlanticDomesticHotWaterProductionV2IOComponent._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/water_heater/atlantic_pass_apc_dhw.py:24:5-29: Class member `AtlanticPassAPCDHW._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/water_heater/domestic_hot_water_production.py:47:5-29: Class member `DomesticHotWaterProduction._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/water_heater/hitachi_dhw.py:41:5-29: Class member `HitachiDHW._attr_supported_features` overrides parent class `OverkizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overkiz/water_heater/hitachi_dhw.py:85:46-71: Cannot index into `dict[str, str]` [bad-index] +ERROR homeassistant/components/overseerr/coordinator.py:28:5-17: Class member `OverseerrCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overseerr/event.py:29:9-12: Unexpected keyword argument `key` in function `OverseerrEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overseerr/event.py:30:9-24: Unexpected keyword argument `translation_key` in function `OverseerrEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overseerr/event.py:67:5-23: Class member `OverseerrEvent.entity_description` overrides parent class `OverseerrEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overseerr/event.py:67:5-23: Class member `OverseerrEvent.entity_description` overrides parent class `EventEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overseerr/sensor.py:32:9-12: Unexpected keyword argument `key` in function `OverseerrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overseerr/sensor.py:38:9-12: Unexpected keyword argument `key` in function `OverseerrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overseerr/sensor.py:44:9-12: Unexpected keyword argument `key` in function `OverseerrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overseerr/sensor.py:50:9-12: Unexpected keyword argument `key` in function `OverseerrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overseerr/sensor.py:56:9-12: Unexpected keyword argument `key` in function `OverseerrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overseerr/sensor.py:62:9-12: Unexpected keyword argument `key` in function `OverseerrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overseerr/sensor.py:68:9-12: Unexpected keyword argument `key` in function `OverseerrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/overseerr/sensor.py:92:5-23: Class member `OverseerrSensor.entity_description` overrides parent class `OverseerrEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/overseerr/sensor.py:92:5-23: Class member `OverseerrSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ovo_energy/config_flow.py:66:31-46: Argument `str | None` is not assignable to parameter `title` with type `str` in function `homeassistant.config_entries.ConfigFlow.async_create_entry` [bad-argument-type] +ERROR homeassistant/components/ovo_energy/config_flow.py:111:21-34: Argument `None` is not assignable to parameter `username` with type `str` in function `ovoenergy.OVOEnergy.authenticate` [bad-argument-type] +ERROR homeassistant/components/ovo_energy/entity.py:40:25-60: Argument `set[tuple[str, int | None]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/ovo_energy/sensor.py:41:62-67: `Overload[[_T](number: _SupportsRound1[_T], ndigits: None = None) -> _T, [_T](number: _SupportsRound2[_T], ndigits: SupportsIndex) -> _T]` is not assignable to `(OVODailyUsage) -> datetime | float | int | str | None` [bad-assignment] +ERROR homeassistant/components/ovo_energy/sensor.py:46:9-12: Unexpected keyword argument `key` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:51:29-50: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/ovo_energy/sensor.py:54:9-12: Unexpected keyword argument `key` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:58:29-50: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/ovo_energy/sensor.py:58:29-62: Object of class `NoneType` has no attribute `amount` [missing-attribute] +ERROR homeassistant/components/ovo_energy/sensor.py:59:12-33: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/ovo_energy/sensor.py:63:9-12: Unexpected keyword argument `key` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:65:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:67:44-65: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/ovo_energy/sensor.py:67:44-80: Object of class `NoneType` has no attribute `start` [missing-attribute] +ERROR homeassistant/components/ovo_energy/sensor.py:70:9-12: Unexpected keyword argument `key` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:72:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:74:44-65: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/ovo_energy/sensor.py:74:44-78: Object of class `NoneType` has no attribute `end` [missing-attribute] +ERROR homeassistant/components/ovo_energy/sensor.py:80:9-12: Unexpected keyword argument `key` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:81:9-24: Unexpected keyword argument `translation_key` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:85:29-42: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/ovo_energy/sensor.py:88:9-12: Unexpected keyword argument `key` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:92:29-42: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/ovo_energy/sensor.py:92:29-54: Object of class `NoneType` has no attribute `amount` [missing-attribute] +ERROR homeassistant/components/ovo_energy/sensor.py:93:12-25: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/ovo_energy/sensor.py:97:9-12: Unexpected keyword argument `key` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:99:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:101:44-57: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/ovo_energy/sensor.py:101:44-72: Object of class `NoneType` has no attribute `start` [missing-attribute] +ERROR homeassistant/components/ovo_energy/sensor.py:104:9-12: Unexpected keyword argument `key` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:106:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `OVOEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ovo_energy/sensor.py:108:44-57: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/ovo_energy/sensor.py:108:44-70: Object of class `NoneType` has no attribute `end` [missing-attribute] +ERROR homeassistant/components/ovo_energy/sensor.py:137:29-80: Object of class `NoneType` has no attribute `currency_unit` [missing-attribute] +ERROR homeassistant/components/ovo_energy/sensor.py:150:52-152:45: Object of class `NoneType` has no attribute `currency_unit` [missing-attribute] +ERROR homeassistant/components/ovo_energy/sensor.py:162:5-16: Class member `OVOEnergySensor.coordinator` overrides parent class `OVOEnergyDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ovo_energy/sensor.py:163:5-23: Class member `OVOEnergySensor.entity_description` overrides parent class `OVOEnergyDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ovo_energy/sensor.py:163:5-23: Class member `OVOEnergySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ovo_energy/sensor.py:180:46-51: Argument `DataUpdateCoordinator[OVODailyUsage]` is not assignable to parameter with type `OVODailyUsage` [bad-argument-type] +ERROR homeassistant/components/owntracks/__init__.py:148:9-25: Cannot set item in `bool` [unsupported-operation] +ERROR homeassistant/components/owntracks/__init__.py:148:9-25: Cannot set item in `float` [unsupported-operation] +ERROR homeassistant/components/owntracks/__init__.py:148:9-25: Cannot set item in `int` [unsupported-operation] +ERROR homeassistant/components/owntracks/__init__.py:148:9-25: Cannot set item in `list[Unknown]` [unsupported-operation] +ERROR homeassistant/components/owntracks/__init__.py:148:9-25: Cannot set item in `str` [unsupported-operation] +ERROR homeassistant/components/owntracks/__init__.py:148:9-25: Cannot set item in `None` [unsupported-operation] +ERROR homeassistant/components/owntracks/messages.py:74:9-41: Cannot set item in `str` [unsupported-operation] +ERROR homeassistant/components/owntracks/messages.py:76:9-36: Cannot set item in `str` [unsupported-operation] +ERROR homeassistant/components/owntracks/messages.py:78:9-40: Cannot set item in `str` [unsupported-operation] +ERROR homeassistant/components/owntracks/messages.py:80:9-39: Cannot set item in `str` [unsupported-operation] +ERROR homeassistant/components/owntracks/messages.py:82:9-47: Cannot set item in `str` [unsupported-operation] +ERROR homeassistant/components/p1_monitor/coordinator.py:48:5-17: Class member `P1MonitorDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/p1_monitor/sensor.py:39:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:41:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:54:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:61:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:68:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:75:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:82:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:89:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:96:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:103:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:104:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:110:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:117:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:118:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:124:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:131:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:132:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:138:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:139:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:145:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:146:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:152:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:153:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:159:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:166:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:167:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:173:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:174:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:183:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:184:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:185:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:190:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:191:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:196:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:197:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:202:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:203:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:208:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:209:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:217:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:218:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:224:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:225:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:231:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:232:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/p1_monitor/sensor.py:303:14-32: Class member `P1MonitorSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/palazzetti/climate.py:40:5-29: Class member `PalazzettiClimateEntity._attr_supported_features` overrides parent class `PalazzettiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/palazzetti/coordinator.py:19:5-17: Class member `PalazzettiDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/palazzetti/number.py:42:5-23: Class member `PalazzettiCombustionPowerEntity._attr_device_class` overrides parent class `PalazzettiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/palazzetti/number.py:83:5-23: Class member `PalazzettiFanEntity._attr_device_class` overrides parent class `PalazzettiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/palazzetti/sensor.py:32:9-12: Unexpected keyword argument `key` in function `PropertySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/palazzetti/sensor.py:34:9-24: Unexpected keyword argument `translation_key` in function `PropertySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/palazzetti/sensor.py:40:9-12: Unexpected keyword argument `key` in function `PropertySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/palazzetti/sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `PropertySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/palazzetti/sensor.py:48:9-12: Unexpected keyword argument `key` in function `PropertySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/palazzetti/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `PropertySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/palazzetti/sensor.py:72:17-20: Unexpected keyword argument `key` in function `PropertySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/palazzetti/sensor.py:76:17-32: Unexpected keyword argument `translation_key` in function `PropertySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/palazzetti/sensor.py:99:5-23: Class member `PalazzettiSensor.entity_description` overrides parent class `PalazzettiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/palazzetti/sensor.py:99:5-23: Class member `PalazzettiSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/panasonic_bluray/media_player.py:7:1-34: Could not find import of `panacotta` [missing-import] +ERROR homeassistant/components/panasonic_viera/__init__.py:88:39-48: `on_action` may be uninitialized [unbound-name] +ERROR homeassistant/components/panasonic_viera/__init__.py:187:35-47: Argument `BoundMethod[Self@Remote, (self: Self@Remote) -> None]` is not assignable to parameter `func` with type `(**tuple[*@_]) -> @_` in function `Remote._handle_errors` [bad-argument-type] +ERROR homeassistant/components/panasonic_viera/__init__.py:198:33-42: Object of class `Keys` has no attribute `upper` [missing-attribute] +ERROR homeassistant/components/panasonic_viera/__init__.py:242:49-78: Argument `BoundMethod[RemoteControl, (self: RemoteControl) -> Unknown]` is not assignable to parameter `func` with type `(**tuple[*@_]) -> @_` in function `Remote._handle_errors` [bad-argument-type] +ERROR homeassistant/components/panasonic_viera/__init__.py:251:62-66: Argument `(**tuple[*_Ts]) -> _R` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/panasonic_viera/config_flow.py:61:21-49: Argument `BoundMethod[RemoteControl, (self: RemoteControl) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/paperless_ngx/coordinator.py:42:5-17: Class member `PaperlessCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/paperless_ngx/sensor.py:43:9-12: Unexpected keyword argument `key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:49:9-12: Unexpected keyword argument `key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:55:9-12: Unexpected keyword argument `key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:59:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:62:9-12: Unexpected keyword argument `key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:63:9-24: Unexpected keyword argument `translation_key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:66:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:69:9-12: Unexpected keyword argument `key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:73:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:76:9-12: Unexpected keyword argument `key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:80:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:86:9-12: Unexpected keyword argument `key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:91:9-24: Unexpected keyword argument `entity_category` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:106:9-12: Unexpected keyword argument `key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:111:9-24: Unexpected keyword argument `entity_category` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:126:9-12: Unexpected keyword argument `key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:127:9-24: Unexpected keyword argument `translation_key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:129:9-24: Unexpected keyword argument `entity_category` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:144:9-12: Unexpected keyword argument `key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:145:9-24: Unexpected keyword argument `translation_key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:147:9-24: Unexpected keyword argument `entity_category` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:148:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:163:9-12: Unexpected keyword argument `key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:164:9-24: Unexpected keyword argument `translation_key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:166:9-24: Unexpected keyword argument `entity_category` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:167:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:182:9-12: Unexpected keyword argument `key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:183:9-24: Unexpected keyword argument `translation_key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:185:9-24: Unexpected keyword argument `entity_category` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:186:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:201:9-12: Unexpected keyword argument `key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:202:9-24: Unexpected keyword argument `translation_key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:204:9-24: Unexpected keyword argument `entity_category` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:219:9-12: Unexpected keyword argument `key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:220:9-24: Unexpected keyword argument `translation_key` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:222:9-24: Unexpected keyword argument `entity_category` in function `PaperlessEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/sensor.py:272:5-23: Class member `PaperlessSensor.entity_description` overrides parent class `PaperlessEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/paperless_ngx/sensor.py:272:5-23: Class member `PaperlessSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/paperless_ngx/update.py:36:9-12: Unexpected keyword argument `key` in function `homeassistant.components.update.UpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/update.py:37:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.update.UpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/paperless_ngx/update.py:52:7-22: Field `entity_description` is declared `EntityDescription` in ancestor `class PaperlessEntity: ... +`, which is not assignable to the type `UpdateEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/peblar/binary_sensor.py:32:9-12: Unexpected keyword argument `key` in function `PeblarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/binary_sensor.py:33:9-24: Unexpected keyword argument `translation_key` in function `PeblarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/binary_sensor.py:35:9-24: Unexpected keyword argument `entity_category` in function `PeblarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/binary_sensor.py:36:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PeblarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/binary_sensor.py:40:9-12: Unexpected keyword argument `key` in function `PeblarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/binary_sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `PeblarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/binary_sensor.py:43:9-24: Unexpected keyword argument `entity_category` in function `PeblarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/binary_sensor.py:44:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PeblarBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/binary_sensor.py:72:5-23: Class member `PeblarBinarySensorEntity.entity_description` overrides parent class `PeblarEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/peblar/binary_sensor.py:72:5-23: Class member `PeblarBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/peblar/button.py:36:9-12: Unexpected keyword argument `key` in function `PeblarButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/button.py:38:9-24: Unexpected keyword argument `entity_category` in function `PeblarButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/button.py:39:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PeblarButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/button.py:43:9-12: Unexpected keyword argument `key` in function `PeblarButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/button.py:45:9-24: Unexpected keyword argument `entity_category` in function `PeblarButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/button.py:46:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PeblarButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/button.py:74:5-23: Class member `PeblarButtonEntity.entity_description` overrides parent class `PeblarEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/peblar/button.py:74:5-23: Class member `PeblarButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/peblar/coordinator.py:141:5-17: Class member `PeblarDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/peblar/number.py:55:5-23: Class member `PeblarChargeCurrentLimitNumberEntity._attr_device_class` overrides parent class `PeblarEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/peblar/number.py:71:49-52: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/number.py:107:35-55: `current_charge_limit` is uninitialized [unbound-name] +ERROR homeassistant/components/peblar/number.py:112:13-33: `current_charge_limit` is uninitialized [unbound-name] +ERROR homeassistant/components/peblar/select.py:33:9-12: Unexpected keyword argument `key` in function `PeblarSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/select.py:34:9-24: Unexpected keyword argument `translation_key` in function `PeblarSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/select.py:35:9-24: Unexpected keyword argument `entity_category` in function `PeblarSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/select.py:71:5-23: Class member `PeblarSelectEntity.entity_description` overrides parent class `PeblarEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/peblar/select.py:71:5-23: Class member `PeblarSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/peblar/sensor.py:48:9-12: Unexpected keyword argument `key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:55:9-12: Unexpected keyword argument `key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:58:9-24: Unexpected keyword argument `entity_category` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:65:9-12: Unexpected keyword argument `key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:67:9-24: Unexpected keyword argument `entity_category` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:68:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:76:9-12: Unexpected keyword argument `key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:79:9-24: Unexpected keyword argument `entity_category` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:80:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:89:9-12: Unexpected keyword argument `key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:92:9-24: Unexpected keyword argument `entity_category` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:93:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:102:9-12: Unexpected keyword argument `key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:103:9-24: Unexpected keyword argument `translation_key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:105:9-24: Unexpected keyword argument `entity_category` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:106:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:115:9-12: Unexpected keyword argument `key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:125:9-12: Unexpected keyword argument `key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:128:9-24: Unexpected keyword argument `entity_category` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:136:9-12: Unexpected keyword argument `key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:143:9-12: Unexpected keyword argument `key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:144:9-24: Unexpected keyword argument `translation_key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:146:9-24: Unexpected keyword argument `entity_category` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:147:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:154:9-12: Unexpected keyword argument `key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:155:9-24: Unexpected keyword argument `translation_key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:157:9-24: Unexpected keyword argument `entity_category` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:158:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:165:9-12: Unexpected keyword argument `key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:166:9-24: Unexpected keyword argument `translation_key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:168:9-24: Unexpected keyword argument `entity_category` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:169:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:176:9-12: Unexpected keyword argument `key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:178:9-24: Unexpected keyword argument `entity_category` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:179:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:186:9-12: Unexpected keyword argument `key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:187:9-24: Unexpected keyword argument `translation_key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:189:9-24: Unexpected keyword argument `entity_category` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:190:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:197:9-12: Unexpected keyword argument `key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:198:9-24: Unexpected keyword argument `translation_key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:200:9-24: Unexpected keyword argument `entity_category` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:201:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:208:9-12: Unexpected keyword argument `key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:209:9-24: Unexpected keyword argument `translation_key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:211:9-24: Unexpected keyword argument `entity_category` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:212:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:219:9-12: Unexpected keyword argument `key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:220:9-24: Unexpected keyword argument `translation_key` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:222:9-24: Unexpected keyword argument `entity_category` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:223:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PeblarSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/sensor.py:251:5-23: Class member `PeblarSensorEntity.entity_description` overrides parent class `PeblarEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/peblar/sensor.py:251:5-23: Class member `PeblarSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/peblar/switch.py:51:9-12: Unexpected keyword argument `key` in function `PeblarSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/switch.py:52:9-24: Unexpected keyword argument `translation_key` in function `PeblarSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/switch.py:53:9-24: Unexpected keyword argument `entity_category` in function `PeblarSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/switch.py:62:9-12: Unexpected keyword argument `key` in function `PeblarSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/switch.py:63:9-24: Unexpected keyword argument `translation_key` in function `PeblarSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/switch.py:64:9-24: Unexpected keyword argument `entity_category` in function `PeblarSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/switch.py:94:5-23: Class member `PeblarSwitchEntity.entity_description` overrides parent class `PeblarEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/peblar/switch.py:94:5-23: Class member `PeblarSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/peblar/update.py:37:9-12: Unexpected keyword argument `key` in function `PeblarUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/update.py:44:9-12: Unexpected keyword argument `key` in function `PeblarUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/update.py:45:9-24: Unexpected keyword argument `translation_key` in function `PeblarUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peblar/update.py:76:5-23: Class member `PeblarUpdateEntity.entity_description` overrides parent class `PeblarEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/peblar/update.py:76:5-23: Class member `PeblarUpdateEntity.entity_description` overrides parent class `UpdateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/peco/__init__.py:89:52-64: Argument `Any | None` is not assignable to parameter `phone_number` with type `str` in function `peco.PecoOutageApi.meter_check` [bad-argument-type] +ERROR homeassistant/components/peco/__init__.py:120:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/peco/binary_sensor.py:47:5-23: Class member `PecoBinarySensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/peco/sensor.py:39:9-12: Unexpected keyword argument `key` in function `PECOSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peco/sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `PECOSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peco/sensor.py:46:9-12: Unexpected keyword argument `key` in function `PECOSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peco/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `PECOSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peco/sensor.py:54:9-12: Unexpected keyword argument `key` in function `PECOSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peco/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `PECOSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peco/sensor.py:61:9-12: Unexpected keyword argument `key` in function `PECOSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peco/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `PECOSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peco/sensor.py:68:9-12: Unexpected keyword argument `key` in function `PECOSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peco/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `PECOSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/peco/sensor.py:95:5-23: Class member `PecoSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/peco/sensor.py:95:5-23: Class member `PecoSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pegel_online/coordinator.py:21:5-17: Class member `PegelOnlineDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pegel_online/sensor.py:36:9-12: Unexpected keyword argument `key` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:37:9-24: Unexpected keyword argument `translation_key` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:40:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:44:9-12: Unexpected keyword argument `key` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:51:9-12: Unexpected keyword argument `key` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:54:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:58:9-12: Unexpected keyword argument `key` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:61:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:65:9-12: Unexpected keyword argument `key` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:69:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:73:9-12: Unexpected keyword argument `key` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:77:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:81:9-12: Unexpected keyword argument `key` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:87:9-12: Unexpected keyword argument `key` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:91:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PegelOnlineSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pegel_online/sensor.py:117:5-23: Class member `PegelOnlineSensor.entity_description` overrides parent class `PegelOnlineEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pegel_online/sensor.py:117:5-23: Class member `PegelOnlineSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pencom/switch.py:8:1-39: Could not find import of `pencompy.pencompy` [missing-import] +ERROR homeassistant/components/permobil/__init__.py:65:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/permobil/binary_sensor.py:36:9-12: Unexpected keyword argument `key` in function `PermobilBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/binary_sensor.py:37:9-24: Unexpected keyword argument `translation_key` in function `PermobilBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/binary_sensor.py:60:5-23: Class member `PermobilbinarySensor.entity_description` overrides parent class `PermobilEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/permobil/binary_sensor.py:60:5-23: Class member `PermobilbinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/permobil/coordinator.py:29:5-17: Class member `MyPermobilCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/permobil/sensor.py:57:9-12: Unexpected keyword argument `key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:67:9-12: Unexpected keyword argument `key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:76:9-12: Unexpected keyword argument `key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:85:9-12: Unexpected keyword argument `key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:94:9-12: Unexpected keyword argument `key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:95:9-24: Unexpected keyword argument `translation_key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:104:9-12: Unexpected keyword argument `key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:115:9-12: Unexpected keyword argument `key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:125:9-12: Unexpected keyword argument `key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:134:9-12: Unexpected keyword argument `key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:135:9-24: Unexpected keyword argument `translation_key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:144:9-12: Unexpected keyword argument `key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:145:9-24: Unexpected keyword argument `translation_key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:153:9-12: Unexpected keyword argument `key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:154:9-24: Unexpected keyword argument `translation_key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:162:9-12: Unexpected keyword argument `key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:163:9-24: Unexpected keyword argument `translation_key` in function `PermobilSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/permobil/sensor.py:197:5-23: Class member `PermobilSensor.entity_description` overrides parent class `PermobilEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/permobil/sensor.py:197:5-23: Class member `PermobilSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/person/__init__.py:438:14-25: Class member `Person._attr_state` overrides parent class `CollectionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/person/__init__.py:438:14-25: Class member `Person._attr_state` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pglab/__init__.py:48:38-49: Argument `bytearray | bytes | str` is not assignable to parameter with type `str` [bad-argument-type] +ERROR homeassistant/components/pglab/__init__.py:69:36-48: Argument `(topic: str, payload: str, qos: int, retain: bool) -> Coroutine[Unknown, Unknown, None]` is not assignable to parameter `publish` with type `(str, str, int | None, bool | None) -> Coroutine[Any, Any, dict[Unknown, Unknown]]` in function `pypglab.mqtt.Client.__init__` [bad-argument-type] +ERROR homeassistant/components/pglab/__init__.py:69:66-82: Argument `(sub_state: dict[str, Any]) -> Coroutine[Unknown, Unknown, None]` is not assignable to parameter `unsubscribe` with type `(dict[str, Any]) -> Coroutine[Any, Any, dict[Unknown, Unknown]]` in function `pypglab.mqtt.Client.__init__` [bad-argument-type] +ERROR homeassistant/components/pglab/cover.py:67:47-79: `dict[str, int]` is not assignable to attribute `_attr_translation_placeholders` with type `Mapping[str, str]` [bad-assignment] +ERROR homeassistant/components/pglab/cover.py:71:14-32: Class member `PGLabCover._attr_device_class` overrides parent class `PGLabEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pglab/cover.py:72:14-38: Class member `PGLabCover._attr_supported_features` overrides parent class `PGLabEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pglab/discovery.py:287:29-33: `Client` is not assignable to attribute `_mqtt_client` with type `None` [bad-assignment] +ERROR homeassistant/components/pglab/entity.py:92:44-48: Argument `None` is not assignable to parameter `on_state_update` with type `(str) -> None` in function `pypglab.entity.Entity.set_on_state_callback` [bad-argument-type] +ERROR homeassistant/components/pglab/sensor.py:27:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pglab/sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pglab/sensor.py:34:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pglab/sensor.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pglab/sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pglab/sensor.py:43:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pglab/sensor.py:95:14-32: Class member `PGLabSensor.entity_description` overrides parent class `PGLabSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pglab/switch.py:61:47-75: `dict[str, int]` is not assignable to attribute `_attr_translation_placeholders` with type `Mapping[str, str]` [bad-assignment] +ERROR homeassistant/components/philips_js/binary_sensor.py:29:9-12: Unexpected keyword argument `key` in function `PhilipsTVBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/philips_js/binary_sensor.py:30:9-24: Unexpected keyword argument `translation_key` in function `PhilipsTVBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/philips_js/binary_sensor.py:34:9-12: Unexpected keyword argument `key` in function `PhilipsTVBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/philips_js/binary_sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `PhilipsTVBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/philips_js/binary_sensor.py:69:5-23: Class member `PhilipsTVBinarySensorEntityRecordingType.entity_description` overrides parent class `PhilipsJsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/philips_js/binary_sensor.py:69:5-23: Class member `PhilipsTVBinarySensorEntityRecordingType.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/philips_js/config_flow.py:241:9-31: Class member `PhilipsJSConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/philips_js/coordinator.py:34:5-17: Class member `PhilipsTVDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/philips_js/light.py:153:14-38: Class member `PhilipsTVLightEntity._attr_supported_features` overrides parent class `PhilipsJsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/philips_js/light.py:201:45-68: Argument `str | None` is not assignable to parameter `style` with type `str` in function `AmbilightEffect.__init__` [bad-argument-type] +ERROR homeassistant/components/philips_js/light.py:219:47-58: Argument `str | None` is not assignable to parameter `effect_string` with type `str` in function `AmbilightEffect.from_str` [bad-argument-type] +ERROR homeassistant/components/philips_js/light.py:237:43-60: Argument `str | None` is not assignable to parameter `effect_string` with type `str` in function `AmbilightEffect.from_str` [bad-argument-type] +ERROR homeassistant/components/philips_js/light.py:252:37-58: `float` is not assignable to attribute `_attr_brightness` with type `int | None` [bad-assignment] +ERROR homeassistant/components/philips_js/light.py:306:39-46: `dict[str, dict[str, int] | str | None]` is not assignable to TypedDict key `colorSettings` with type `TypedDict[AmbilightColorSettingsType]` [bad-typed-dict-key] +ERROR homeassistant/components/philips_js/light.py:307:20-27: TypedDict `AmbilightCurrentConfiguration` does not have key `speed` [bad-typed-dict-key] +ERROR homeassistant/components/philips_js/light.py:310:39-46: `dict[str, dict[str, int] | str | None]` is not assignable to TypedDict key `audioSettings` with type `TypedDict[AmbilightAudioSettingsType]` [bad-typed-dict-key] +ERROR homeassistant/components/philips_js/light.py:311:20-28: TypedDict `AmbilightCurrentConfiguration` does not have key `tuning` [bad-typed-dict-key] +ERROR homeassistant/components/philips_js/light.py:321:28-44: `str | None` is not assignable to TypedDict key `menuSetting` with type `str` [bad-typed-dict-key] +ERROR homeassistant/components/philips_js/media_player.py:68:5-23: Class member `PhilipsTVMediaPlayer._attr_device_class` overrides parent class `PhilipsJsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/philips_js/media_player.py:79:14-25: Class member `PhilipsTVMediaPlayer._attr_state` overrides parent class `PhilipsJsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/philips_js/media_player.py:443:46-66: No matching overload found for function `dict.get` called with arguments: (None) [no-matching-overload] +ERROR homeassistant/components/philips_js/media_player.py:472:55-75: No matching overload found for function `dict.get` called with arguments: (None) [no-matching-overload] +ERROR homeassistant/components/pi_hole/__init__.py:52:10-14: Expected a type form, got instance of `(*args: Unknown, *, version: int | Unknown = 6, **kwargs: Unknown) -> Unknown` [not-a-type] +ERROR homeassistant/components/pi_hole/__init__.py:207:15-34: Object of class `HoleV5` has no attribute `authenticate` [missing-attribute] +ERROR homeassistant/components/pi_hole/binary_sensor.py:28:28-32: Expected a type form, got instance of `(*args: Unknown, *, version: int | Unknown = 6, **kwargs: Unknown) -> Unknown` [not-a-type] +ERROR homeassistant/components/pi_hole/binary_sensor.py:29:28-32: Expected a type form, got instance of `(*args: Unknown, *, version: int | Unknown = 6, **kwargs: Unknown) -> Unknown` [not-a-type] +ERROR homeassistant/components/pi_hole/binary_sensor.py:34:9-12: Unexpected keyword argument `key` in function `PiHoleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/binary_sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `PiHoleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/binary_sensor.py:67:5-23: Class member `PiHoleBinarySensor.entity_description` overrides parent class `PiHoleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pi_hole/binary_sensor.py:67:5-23: Class member `PiHoleBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pi_hole/binary_sensor.py:72:14-18: Expected a type form, got instance of `(*args: Unknown, *, version: int | Unknown = 6, **kwargs: Unknown) -> Unknown` [not-a-type] +ERROR homeassistant/components/pi_hole/config_flow.py:141:18-22: Expected a type form, got instance of `(*args: Unknown, *, version: int | Unknown = 6, **kwargs: Unknown) -> Unknown` [not-a-type] +ERROR homeassistant/components/pi_hole/entity.py:21:14-18: Expected a type form, got instance of `(*args: Unknown, *, version: int | Unknown = 6, **kwargs: Unknown) -> Unknown` [not-a-type] +ERROR homeassistant/components/pi_hole/sensor.py:22:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:23:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:27:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:28:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:34:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:38:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:39:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:43:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:48:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:53:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:63:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:71:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:76:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:82:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:87:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:92:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:97:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:102:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:103:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:107:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:108:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:112:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:113:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/sensor.py:145:5-23: Class member `PiHoleSensor.entity_description` overrides parent class `PiHoleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pi_hole/sensor.py:150:14-18: Expected a type form, got instance of `(*args: Unknown, *, version: int | Unknown = 6, **kwargs: Unknown) -> Unknown` [not-a-type] +ERROR homeassistant/components/pi_hole/update.py:24:34-38: Expected a type form, got instance of `(*args: Unknown, *, version: int | Unknown = 6, **kwargs: Unknown) -> Unknown` [not-a-type] +ERROR homeassistant/components/pi_hole/update.py:25:31-35: Expected a type form, got instance of `(*args: Unknown, *, version: int | Unknown = 6, **kwargs: Unknown) -> Unknown` [not-a-type] +ERROR homeassistant/components/pi_hole/update.py:26:27-31: Expected a type form, got instance of `(*args: Unknown, *, version: int | Unknown = 6, **kwargs: Unknown) -> Unknown` [not-a-type] +ERROR homeassistant/components/pi_hole/update.py:33:9-12: Unexpected keyword argument `key` in function `PiHoleUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/update.py:34:9-24: Unexpected keyword argument `translation_key` in function `PiHoleUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/update.py:43:9-12: Unexpected keyword argument `key` in function `PiHoleUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/update.py:44:9-24: Unexpected keyword argument `translation_key` in function `PiHoleUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/update.py:53:9-12: Unexpected keyword argument `key` in function `PiHoleUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/update.py:54:9-24: Unexpected keyword argument `translation_key` in function `PiHoleUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pi_hole/update.py:89:5-23: Class member `PiHoleUpdateEntity.entity_description` overrides parent class `PiHoleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pi_hole/update.py:89:5-23: Class member `PiHoleUpdateEntity.entity_description` overrides parent class `UpdateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pi_hole/update.py:94:14-18: Expected a type form, got instance of `(*args: Unknown, *, version: int | Unknown = 6, **kwargs: Unknown) -> Unknown` [not-a-type] +ERROR homeassistant/components/picnic/__init__.py:30:20-53: Argument `Any | None` is not assignable to parameter `auth_token` with type `str` in function `python_picnic_api2.client.PicnicAPI.__init__` [bad-argument-type] +ERROR homeassistant/components/picnic/__init__.py:31:22-55: Argument `Any | None` is not assignable to parameter `country_code` with type `str` in function `python_picnic_api2.client.PicnicAPI.__init__` [bad-argument-type] +ERROR homeassistant/components/picnic/coordinator.py:24:5-17: Class member `PicnicUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/picnic/coordinator.py:51:63-78: Argument `BoundMethod[Self@PicnicUpdateCoordinator, (self: Self@PicnicUpdateCoordinator) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/picnic/coordinator.py:85:17-86:74: `str` is not assignable to attribute `_user_address` with type `None` [bad-assignment] + WARN homeassistant/components/picnic/coordinator.py:110:22-59: `python_picnic_api2.client.PicnicAPI.get_deliveries` is deprecated [deprecated] +ERROR homeassistant/components/picnic/coordinator.py:148:37-48: Cannot set item in `dict[str, list[Unknown]]` [unsupported-operation] +ERROR homeassistant/components/picnic/coordinator.py:151:30-51: No matching overload found for function `typing.MutableMapping.setdefault` called with arguments: (Literal['delivery_time'], dict[@_, @_]) [no-matching-overload] +ERROR homeassistant/components/picnic/sensor.py:57:5-36: Class member `PicnicSensorEntityDescription.entity_registry_enabled_default` overrides parent class `SensorEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/picnic/sensor.py:62:9-12: Unexpected keyword argument `key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:63:9-24: Unexpected keyword argument `translation_key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:68:9-12: Unexpected keyword argument `key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:76:9-12: Unexpected keyword argument `key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:84:9-12: Unexpected keyword argument `key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:92:9-12: Unexpected keyword argument `key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:100:9-12: Unexpected keyword argument `key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:101:9-24: Unexpected keyword argument `translation_key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:112:9-12: Unexpected keyword argument `key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:113:9-24: Unexpected keyword argument `translation_key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:121:9-12: Unexpected keyword argument `key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:122:9-24: Unexpected keyword argument `translation_key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:130:9-12: Unexpected keyword argument `key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:131:9-24: Unexpected keyword argument `translation_key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:136:9-12: Unexpected keyword argument `key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:137:9-24: Unexpected keyword argument `translation_key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:146:9-12: Unexpected keyword argument `key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:147:9-24: Unexpected keyword argument `translation_key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:156:9-12: Unexpected keyword argument `key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:157:9-24: Unexpected keyword argument `translation_key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:163:9-12: Unexpected keyword argument `key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:164:9-24: Unexpected keyword argument `translation_key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:173:9-12: Unexpected keyword argument `key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:174:9-24: Unexpected keyword argument `translation_key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:183:9-12: Unexpected keyword argument `key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:184:9-24: Unexpected keyword argument `translation_key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:192:9-12: Unexpected keyword argument `key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:193:9-24: Unexpected keyword argument `translation_key` in function `PicnicSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/picnic/sensor.py:223:5-23: Class member `PicnicSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/picnic/sensor.py:223:5-23: Class member `PicnicSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pilight/binary_sensor.py:192:37-194:18: `datetime` is not assignable to attribute `_delay_after` with type `None` [bad-assignment] +ERROR homeassistant/components/pilight/binary_sensor.py:195:68-85: Argument `None` is not assignable to parameter `point_in_time` with type `datetime` [bad-argument-type] +ERROR homeassistant/components/pilight/entity.py:94:32-66: `Any | None` is not assignable to attribute `_brightness` with type `int` [bad-assignment] +ERROR homeassistant/components/ping/binary_sensor.py:29:5-23: Class member `PingBinarySensor._attr_device_class` overrides parent class `PingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ping/config_flow.py:73:9-31: Class member `PingConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ping/coordinator.py:33:5-17: Class member `PingUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ping/sensor.py:31:9-12: Unexpected keyword argument `key` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:32:9-24: Unexpected keyword argument `translation_key` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:36:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:37:9-24: Unexpected keyword argument `entity_category` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:42:9-12: Unexpected keyword argument `key` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:47:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:48:9-24: Unexpected keyword argument `entity_category` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:53:9-12: Unexpected keyword argument `key` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:58:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:59:9-24: Unexpected keyword argument `entity_category` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:64:9-12: Unexpected keyword argument `key` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:69:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:75:9-12: Unexpected keyword argument `key` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:80:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:81:9-24: Unexpected keyword argument `entity_category` in function `PingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ping/sensor.py:106:5-23: Class member `PingSensor.entity_description` overrides parent class `PingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ping/sensor.py:106:5-23: Class member `PingSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pioneer/media_player.py:142:24-80: `float | None` is not assignable to attribute `_volume` with type `int` [bad-assignment] +ERROR homeassistant/components/pioneer/media_player.py:145:23-71: `Unknown | None` is not assignable to attribute `_muted` with type `bool` [bad-assignment] +ERROR homeassistant/components/pioneer/media_player.py:164:37-87: `Unknown | None` is not assignable to attribute `_selected_source` with type `str` [bad-assignment] +ERROR homeassistant/components/pioneer/media_player.py:166:37-41: `None` is not assignable to attribute `_selected_source` with type `str` [bad-assignment] +ERROR homeassistant/components/plaato/binary_sensor.py:47:18-36: Class member `PlaatoBinarySensor._attr_device_class` overrides parent class `PlaatoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plaato/config_flow.py:184:9-31: Class member `PlaatoConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plaato/coordinator.py:22:5-17: Class member `PlaatoCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plaato/sensor.py:85:18-36: Class member `PlaatoSensor._attr_device_class` overrides parent class `PlaatoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plant/__init__.py:212:30-35: `Literal['unavailable'] | int` is not assignable to attribute `_moisture` with type `None` [bad-assignment] +ERROR homeassistant/components/plant/__init__.py:216:29-34: `Literal['unavailable'] | int` is not assignable to attribute `_battery` with type `None` [bad-assignment] +ERROR homeassistant/components/plant/__init__.py:220:33-38: `Literal['unavailable'] | float` is not assignable to attribute `_temperature` with type `None` [bad-assignment] +ERROR homeassistant/components/plant/__init__.py:224:34-39: `Literal['unavailable'] | int` is not assignable to attribute `_conductivity` with type `None` [bad-assignment] +ERROR homeassistant/components/plant/__init__.py:228:32-37: `Literal['unavailable'] | int` is not assignable to attribute `_brightness` with type `None` [bad-assignment] +ERROR homeassistant/components/plant/__init__.py:264:27-40: `Literal['problem']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/plant/__init__.py:267:27-35: `Literal['ok']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/plant/__init__.py:391:26-33: `deque[@_]` is not assignable to attribute `_days` with type `None` [bad-assignment] +ERROR homeassistant/components/plant/__init__.py:409:16-26: Argument `None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR homeassistant/components/plant/__init__.py:410:22-40: Object of class `NoneType` has no attribute `popleft` [missing-attribute] +ERROR homeassistant/components/plant/__init__.py:412:9-26: Object of class `NoneType` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/playstation_network/binary_sensor.py:43:9-12: Unexpected keyword argument `key` in function `PlaystationNetworkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/binary_sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `PlaystationNetworkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/binary_sensor.py:69:5-23: Class member `PlaystationNetworkBinarySensorEntity.entity_description` overrides parent class `PlaystationNetworkServiceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/binary_sensor.py:69:5-23: Class member `PlaystationNetworkBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/binary_sensor.py:70:5-16: Class member `PlaystationNetworkBinarySensorEntity.coordinator` overrides parent class `PlaystationNetworkServiceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/coordinator.py:56:5-17: Class member `PlayStationNetworkBaseCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/coordinator.py:101:5-21: Class member `PlaystationNetworkUserDataCoordinator._update_interval` overrides parent class `PlayStationNetworkBaseCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/coordinator.py:129:5-21: Class member `PlaystationNetworkTrophyTitlesCoordinator._update_interval` overrides parent class `PlayStationNetworkBaseCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/coordinator.py:134:13-69: Argument `() -> list[TrophyTitle]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/playstation_network/coordinator.py:145:5-21: Class member `PlaystationNetworkFriendlistCoordinator._update_interval` overrides parent class `PlayStationNetworkBaseCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/coordinator.py:151:13-153:14: Argument `() -> dict[str, User]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/playstation_network/coordinator.py:164:5-21: Class member `PlaystationNetworkGroupsUpdateCoordinator._update_interval` overrides parent class `PlayStationNetworkBaseCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/coordinator.py:170:17-174:18: Argument `() -> dict[str, TypedDict[GroupDetails]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/playstation_network/coordinator.py:230:52-63: Argument `BoundMethod[Self@PlaystationNetworkFriendDataCoordinator, (self: Self@PlaystationNetworkFriendDataCoordinator) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/playstation_network/coordinator.py:272:55-72: Argument `BoundMethod[Self@PlaystationNetworkFriendDataCoordinator, (self: Self@PlaystationNetworkFriendDataCoordinator) -> PlaystationNetworkData]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/playstation_network/helpers.py:77:48-59: Argument `BoundMethod[Self@PlaystationNetwork, (self: Self@PlaystationNetwork) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/playstation_network/helpers.py:108:55-77: Argument `BoundMethod[Self@PlaystationNetwork, (self: Self@PlaystationNetwork) -> PlaystationNetworkData]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/playstation_network/image.py:46:9-12: Unexpected keyword argument `key` in function `PlaystationNetworkImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/image.py:47:9-24: Unexpected keyword argument `translation_key` in function `PlaystationNetworkImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/image.py:53:9-12: Unexpected keyword argument `key` in function `PlaystationNetworkImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/image.py:54:9-24: Unexpected keyword argument `translation_key` in function `PlaystationNetworkImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/image.py:67:9-12: Unexpected keyword argument `key` in function `PlaystationNetworkImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/image.py:68:9-24: Unexpected keyword argument `translation_key` in function `PlaystationNetworkImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/image.py:114:5-23: Class member `PlaystationNetworkImageBaseEntity.entity_description` overrides parent class `PlaystationNetworkServiceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/image.py:114:5-23: Class member `PlaystationNetworkImageBaseEntity.entity_description` overrides parent class `ImageEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/image.py:148:5-16: Class member `PlaystationNetworkImageEntity.coordinator` overrides parent class `PlaystationNetworkImageBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/image.py:154:5-16: Class member `PlaystationNetworkFriendImageEntity.coordinator` overrides parent class `PlaystationNetworkImageBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/media_player.py:91:5-23: Class member `PsnMediaPlayerEntity._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/notify.py:111:7-41: Field `entity_description` is declared `EntityDescription` in ancestor `class PlaystationNetworkServiceEntity: ... +`, which is not assignable to the type `NotifyEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/playstation_network/notify.py:150:5-16: Class member `PlaystationNetworkNotifyEntity.coordinator` overrides parent class `PlaystationNetworkNotifyBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/notify.py:160:14-32: Class member `PlaystationNetworkNotifyEntity.entity_description` overrides parent class `PlaystationNetworkNotifyBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/notify.py:161:13-16: Unexpected keyword argument `key` in function `homeassistant.components.notify.NotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/notify.py:162:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.notify.NotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/notify.py:163:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.notify.NotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/notify.py:179:5-16: Class member `PlaystationNetworkDirectMessageNotifyEntity.coordinator` overrides parent class `PlaystationNetworkNotifyBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/notify.py:188:14-32: Class member `PlaystationNetworkDirectMessageNotifyEntity.entity_description` overrides parent class `PlaystationNetworkNotifyBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/notify.py:189:13-16: Unexpected keyword argument `key` in function `homeassistant.components.notify.NotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/notify.py:190:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.notify.NotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/notify.py:191:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.notify.NotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/notify.py:194:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.notify.NotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:59:9-12: Unexpected keyword argument `key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:66:9-12: Unexpected keyword argument `key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:74:9-12: Unexpected keyword argument `key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:83:9-12: Unexpected keyword argument `key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:84:9-24: Unexpected keyword argument `translation_key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:92:9-12: Unexpected keyword argument `key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:101:9-12: Unexpected keyword argument `key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:110:9-12: Unexpected keyword argument `key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:115:9-12: Unexpected keyword argument `key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:126:9-12: Unexpected keyword argument `key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:127:9-24: Unexpected keyword argument `translation_key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:137:9-12: Unexpected keyword argument `key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:138:9-24: Unexpected keyword argument `translation_key` in function `PlaystationNetworkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/playstation_network/sensor.py:179:5-23: Class member `PlaystationNetworkSensorBaseEntity.entity_description` overrides parent class `PlaystationNetworkServiceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/sensor.py:179:5-23: Class member `PlaystationNetworkSensorBaseEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/sensor.py:214:5-16: Class member `PlaystationNetworkSensorEntity.coordinator` overrides parent class `PlaystationNetworkSensorBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/playstation_network/sensor.py:220:5-16: Class member `PlaystationNetworkFriendSensorEntity.coordinator` overrides parent class `PlaystationNetworkSensorBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plex/__init__.py:137:43-62: Argument `BoundMethod[PlexServer, (self: PlexServer) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/plex/config_flow.py:103:9-31: Class member `PlexFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plex/config_flow.py:214:52-71: Argument `BoundMethod[PlexServer, (self: PlexServer) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/plex/config_flow.py:361:26-57: `str` is not assignable to attribute `client_id` with type `None` [bad-assignment] +ERROR homeassistant/components/plex/media_browser.py:46:45-54: Argument `str | None` is not assignable to parameter `server_id` with type `str` in function `homeassistant.components.plex.helpers.get_plex_server` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:74:13-40: Object of class `NoneType` has no attribute `thumbnail_cache` [missing-attribute] +ERROR homeassistant/components/plex/media_browser.py:79:21-30: Argument `str | None` is not assignable to parameter `server_id` with type `str` in function `get_proxy_image_url` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:84:28-37: Unpacked keyword argument `MediaClass | bool | Unknown` is not assignable to parameter `media_class` with type `MediaClass | str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:84:28-37: Unpacked keyword argument `MediaClass | bool | Unknown` is not assignable to parameter `media_content_id` with type `str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:84:28-37: Unpacked keyword argument `MediaClass | bool | Unknown` is not assignable to parameter `media_content_type` with type `MediaType | str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:84:28-37: Unpacked keyword argument `MediaClass | bool | Unknown` is not assignable to parameter `title` with type `str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:84:28-37: Unpacked keyword argument `MediaClass | bool | Unknown` is not assignable to parameter `can_play` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:84:28-37: Unpacked keyword argument `MediaClass | bool | Unknown` is not assignable to parameter `can_expand` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:84:28-37: Unpacked keyword argument `MediaClass | bool | Unknown` is not assignable to parameter `children` with type `Sequence[BrowseMedia] | None` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:84:28-37: Unpacked keyword argument `MediaClass | bool | Unknown` is not assignable to parameter `children_media_class` with type `MediaClass | str | None` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:84:28-37: Unpacked keyword argument `MediaClass | bool | Unknown` is not assignable to parameter `thumbnail` with type `str | None` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:84:28-37: Unpacked keyword argument `MediaClass | bool | Unknown` is not assignable to parameter `not_shown` with type `int` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:84:28-37: Unpacked keyword argument `MediaClass | bool | Unknown` is not assignable to parameter `can_search` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:89:19-44: Object of class `NoneType` has no attribute `friendly_name` [missing-attribute] +ERROR homeassistant/components/plex/media_browser.py:100:13-40: Object of class `NoneType` has no attribute `append` +Object of class `Sequence` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/plex/media_browser.py:103:24-43: Object of class `NoneType` has no attribute `library` [missing-attribute] +ERROR homeassistant/components/plex/media_browser.py:108:13-40: Object of class `NoneType` has no attribute `append` +Object of class `Sequence` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/plex/media_browser.py:109:9-36: Object of class `NoneType` has no attribute `append` +Object of class `Sequence` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/plex/media_browser.py:134:25-46: Object of class `NoneType` has no attribute `playlists` [missing-attribute] +ERROR homeassistant/components/plex/media_browser.py:142:17-50: Object of class `MediaClass` has no attribute `append` +Object of class `bool` has no attribute `append` +Object of class `str` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/plex/media_browser.py:145:32-48: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `media_class` with type `MediaClass | str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:145:32-48: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `media_content_id` with type `str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:145:32-48: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `media_content_type` with type `MediaType | str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:145:32-48: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `title` with type `str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:145:32-48: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `can_play` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:145:32-48: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `can_expand` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:145:32-48: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `children` with type `Sequence[BrowseMedia] | None` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:145:32-48: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `children_media_class` with type `MediaClass | str | None` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:145:32-48: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `thumbnail` with type `str | None` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:145:32-48: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `not_shown` with type `int` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:145:32-48: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `can_search` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:152:21-45: Object of class `NoneType` has no attribute `lookup_media` [missing-attribute] +ERROR homeassistant/components/plex/media_browser.py:173:12-24: `hub_location` may be uninitialized [unbound-name] +ERROR homeassistant/components/plex/media_browser.py:176:26-45: Object of class `NoneType` has no attribute `library` [missing-attribute] +ERROR homeassistant/components/plex/media_browser.py:177:39-53: `hub_identifier` may be uninitialized [unbound-name] +ERROR homeassistant/components/plex/media_browser.py:181:31-50: Object of class `NoneType` has no attribute `library` [missing-attribute] +ERROR homeassistant/components/plex/media_browser.py:181:67-79: `hub_location` may be uninitialized [unbound-name] +ERROR homeassistant/components/plex/media_browser.py:183:73-87: `hub_identifier` may be uninitialized [unbound-name] +ERROR homeassistant/components/plex/media_browser.py:204:17-43: Object of class `MediaClass` has no attribute `append` +Object of class `bool` has no attribute `append` +Object of class `str` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/plex/media_browser.py:210:17-43: Object of class `MediaClass` has no attribute `append` +Object of class `bool` has no attribute `append` +Object of class `str` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/plex/media_browser.py:213:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `media_class` with type `MediaClass | str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:213:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `media_content_id` with type `str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:213:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `media_content_type` with type `MediaType | str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:213:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `title` with type `str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:213:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `can_play` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:213:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `can_expand` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:213:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `children` with type `Sequence[BrowseMedia] | None` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:213:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `children_media_class` with type `MediaClass | str | None` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:213:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `thumbnail` with type `str | None` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:213:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `not_shown` with type `int` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:213:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | str | Unknown` is not assignable to parameter `can_search` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:217:34-53: Object of class `NoneType` has no attribute `library` [missing-attribute] +ERROR homeassistant/components/plex/media_browser.py:219:21-46: Object of class `NoneType` has no attribute `friendly_name` [missing-attribute] +ERROR homeassistant/components/plex/media_browser.py:221:34-53: Object of class `NoneType` has no attribute `library` [missing-attribute] +ERROR homeassistant/components/plex/media_browser.py:251:17-43: Object of class `MediaClass` has no attribute `append` +Object of class `bool` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/plex/media_browser.py:253:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | Unknown` is not assignable to parameter `media_class` with type `MediaClass | str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:253:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | Unknown` is not assignable to parameter `media_content_id` with type `str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:253:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | Unknown` is not assignable to parameter `media_content_type` with type `MediaType | str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:253:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | Unknown` is not assignable to parameter `title` with type `str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:253:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | Unknown` is not assignable to parameter `can_play` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:253:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | Unknown` is not assignable to parameter `can_expand` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:253:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | Unknown` is not assignable to parameter `children` with type `Sequence[BrowseMedia] | None` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:253:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | Unknown` is not assignable to parameter `children_media_class` with type `MediaClass | str | None` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:253:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | Unknown` is not assignable to parameter `thumbnail` with type `str | None` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:253:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | Unknown` is not assignable to parameter `not_shown` with type `int` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:253:28-37: Unpacked keyword argument `MediaClass | bool | list[@_] | Unknown` is not assignable to parameter `can_search` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:261:23-42: Object of class `NoneType` has no attribute `library` [missing-attribute] +ERROR homeassistant/components/plex/media_browser.py:373:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown` is not assignable to parameter `media_class` with type `MediaClass | str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:373:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown` is not assignable to parameter `media_content_id` with type `str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:373:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown` is not assignable to parameter `media_content_type` with type `MediaType | str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:373:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown` is not assignable to parameter `title` with type `str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:373:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown` is not assignable to parameter `can_play` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:373:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown` is not assignable to parameter `can_expand` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:373:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown` is not assignable to parameter `children` with type `Sequence[BrowseMedia] | None` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:373:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown` is not assignable to parameter `children_media_class` with type `MediaClass | str | None` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:373:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown` is not assignable to parameter `thumbnail` with type `str | None` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:373:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown` is not assignable to parameter `not_shown` with type `int` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_browser.py:373:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown` is not assignable to parameter `can_search` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/plex/media_player.py:226:56-68: No matching overload found for function `str.join` called with arguments: (list[None]) [no-matching-overload] +ERROR homeassistant/components/plex/media_player.py:392:28-76: `in` is not supported between `Literal['playback']` and `None` [not-iterable] +ERROR homeassistant/components/plex/media_player.py:412:28-76: `in` is not supported between `Literal['playback']` and `None` [not-iterable] +ERROR homeassistant/components/plex/media_player.py:414:34-40: `float` is not assignable to attribute `_volume_level` with type `int` [bad-assignment] +ERROR homeassistant/components/plex/media_player.py:422:17-65: `in` is not supported between `Literal['playback']` and `None` [not-iterable] +ERROR homeassistant/components/plex/media_player.py:441:33-81: `in` is not supported between `Literal['playback']` and `None` [not-iterable] +ERROR homeassistant/components/plex/media_player.py:453:28-76: `in` is not supported between `Literal['playback']` and `None` [not-iterable] +ERROR homeassistant/components/plex/media_player.py:458:28-76: `in` is not supported between `Literal['playback']` and `None` [not-iterable] +ERROR homeassistant/components/plex/media_player.py:463:28-76: `in` is not supported between `Literal['playback']` and `None` [not-iterable] +ERROR homeassistant/components/plex/media_player.py:468:28-76: `in` is not supported between `Literal['playback']` and `None` [not-iterable] +ERROR homeassistant/components/plex/media_player.py:473:28-76: `in` is not supported between `Literal['playback']` and `None` [not-iterable] +ERROR homeassistant/components/plex/media_player.py:478:28-76: `in` is not supported between `Literal['playback']` and `None` [not-iterable] +ERROR homeassistant/components/plex/media_player.py:485:33-81: `in` is not supported between `Literal['playback']` and `None` [not-iterable] +ERROR homeassistant/components/plex/models.py:48:31-50: Object of class `NoneType` has no attribute `product` [missing-attribute] +ERROR homeassistant/components/plex/models.py:51:22-39: Object of class `NoneType` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/plex/models.py:74:35-61: `int` is not assignable to attribute `media_duration` with type `None` [bad-assignment] +ERROR homeassistant/components/plex/models.py:77:40-80: `str` is not assignable to attribute `media_library_title` with type `None` [bad-assignment] +ERROR homeassistant/components/plex/models.py:79:40-55: `Literal['Unknown']` is not assignable to attribute `media_library_title` with type `None` [bad-assignment] +ERROR homeassistant/components/plex/models.py:90:17-84: `Literal[''] | Unknown` is not assignable to attribute `media_library_title` with type `None` [bad-assignment] +ERROR homeassistant/components/plex/models.py:94:39-55: `Literal[MediaType.TVSHOW]` is not assignable to attribute `media_content_type` with type `None` [bad-assignment] +ERROR homeassistant/components/plex/models.py:100:17-102:39: `str` is not assignable to attribute `sensor_title` with type `None` [bad-assignment] +ERROR homeassistant/components/plex/models.py:105:39-54: `Literal[MediaType.MOVIE]` is not assignable to attribute `media_content_type` with type `None` [bad-assignment] +ERROR homeassistant/components/plex/models.py:110:39-54: `Literal[MediaType.MUSIC]` is not assignable to attribute `media_content_type` with type `None` [bad-assignment] +ERROR homeassistant/components/plex/models.py:116:17-86: `str` is not assignable to attribute `sensor_title` with type `None` [bad-assignment] +ERROR homeassistant/components/plex/models.py:119:39-54: `Literal[MediaType.VIDEO]` is not assignable to attribute `media_content_type` with type `None` [bad-assignment] +ERROR homeassistant/components/plex/models.py:122:33-42: `Literal['Unknown']` is not assignable to attribute `sensor_title` with type `None` [bad-assignment] +ERROR homeassistant/components/plex/sensor.py:69:39-61: Argument `() -> Unknown` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/plex/sensor.py:166:52-80: Argument `BoundMethod[Self@PlexLibrarySectionSensor, (self: Self@PlexLibrarySectionSensor) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/plex/server.py:116:38-85: `MyPlexAccount` is not assignable to attribute `_plex_account` with type `None` [bad-assignment] +ERROR homeassistant/components/plex/server.py:130:45-48: `float` is not assignable to attribute `_plextv_client_timestamp` with type `int` [bad-assignment] +ERROR homeassistant/components/plex/server.py:131:36-135:14: `list[Unknown]` is not assignable to attribute `_plextv_clients` with type `None` [bad-assignment] +ERROR homeassistant/components/plex/server.py:170:33-172:14: `PlexServer` is not assignable to attribute `_plex_server` with type `None` [bad-assignment] +ERROR homeassistant/components/plex/server.py:218:31-63: Object of class `NoneType` has no attribute `systemAccounts` [missing-attribute] +ERROR homeassistant/components/plex/server.py:243:25-50: Object of class `NoneType` has no attribute `version` [missing-attribute] +ERROR homeassistant/components/plex/server.py:294:13-40: Object of class `NoneType` has no attribute `update_media` [missing-attribute] +ERROR homeassistant/components/plex/server.py:316:13-38: Object of class `NoneType` has no attribute `clients` [missing-attribute] +ERROR homeassistant/components/plex/server.py:317:13-39: Object of class `NoneType` has no attribute `sessions` [missing-attribute] +ERROR homeassistant/components/plex/server.py:348:16-34: Module `plexapi.exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/plex/server.py:355:13-31: Module `plexapi.exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/plex/server.py:403:27-56: Object of class `NoneType` has no attribute `createToken` [missing-attribute] +ERROR homeassistant/components/plex/server.py:563:16-46: Object of class `NoneType` has no attribute `friendlyName` [missing-attribute] +ERROR homeassistant/components/plex/server.py:568:16-51: Object of class `NoneType` has no attribute `machineIdentifier` [missing-attribute] +ERROR homeassistant/components/plex/server.py:573:16-42: Object of class `NoneType` has no attribute `_baseurl` [missing-attribute] +ERROR homeassistant/components/plex/server.py:578:16-39: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/plex/server.py:583:16-39: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/plex/server.py:588:16-39: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/plex/server.py:593:16-39: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/plex/server.py:598:16-41: Object of class `NoneType` has no attribute `library` [missing-attribute] +ERROR homeassistant/components/plex/server.py:602:16-42: Object of class `NoneType` has no attribute `playlist` [missing-attribute] +ERROR homeassistant/components/plex/server.py:606:16-43: Object of class `NoneType` has no attribute `playlists` [missing-attribute] +ERROR homeassistant/components/plex/server.py:622:16-43: Object of class `NoneType` has no attribute `fetchItem` [missing-attribute] +ERROR homeassistant/components/plex/server.py:644:50-63: `playlist_name` is uninitialized [unbound-name] +ERROR homeassistant/components/plex/server.py:654:29-41: `library_name` is uninitialized [unbound-name] +ERROR homeassistant/components/plex/server.py:669:29-40: `PlexServer` is not assignable to attribute `_plex_server` with type `None` [bad-assignment] +ERROR homeassistant/components/plex/services.py:162:5-19: Object of class `str` has no attribute `update` [missing-attribute] +ERROR homeassistant/components/plex/services.py:164:24-35: Object of class `str` has no attribute `pop` [missing-attribute] +ERROR homeassistant/components/plex/services.py:175:20-32: Object of class `str` has no attribute `copy` [missing-attribute] +ERROR homeassistant/components/plex/update.py:39:5-26: Class member `PlexUpdate._attr_translation_key` overrides parent class `UpdateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/binary_sensor.py:33:5-8: Class member `PlugwiseBinarySensorEntityDescription.key` overrides parent class `BinarySensorEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/binary_sensor.py:40:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/binary_sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/binary_sensor.py:45:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/binary_sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/binary_sensor.py:50:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/binary_sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/binary_sensor.py:55:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/binary_sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/binary_sensor.py:60:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/binary_sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/binary_sensor.py:65:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/binary_sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/binary_sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/binary_sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/binary_sensor.py:75:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/binary_sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/binary_sensor.py:80:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/binary_sensor.py:114:5-23: Class member `PlugwiseBinarySensorEntity.entity_description` overrides parent class `PlugwiseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/binary_sensor.py:114:5-23: Class member `PlugwiseBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/button.py:36:5-23: Class member `PlugwiseButtonEntity._attr_device_class` overrides parent class `PlugwiseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/climate.py:123:14-38: Class member `PlugwiseClimateEntity._attr_supported_features` overrides parent class `PlugwiseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/climate.py:123:14-38: Class member `PlugwiseClimateEntity._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/coordinator.py:35:5-17: Class member `PlugwiseDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/number.py:29:5-8: Class member `PlugwiseNumberEntityDescription.key` overrides parent class `NumberEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/number.py:35:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/number.py:37:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/number.py:42:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/number.py:44:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/number.py:49:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/number.py:51:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/number.py:85:5-23: Class member `PlugwiseNumberEntity.entity_description` overrides parent class `PlugwiseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/number.py:85:5-23: Class member `PlugwiseNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/select.py:32:5-8: Class member `PlugwiseSelectEntityDescription.key` overrides parent class `SelectEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/select.py:39:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/select.py:40:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/select.py:45:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/select.py:46:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/select.py:51:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/select.py:52:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/select.py:57:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/select.py:58:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/select.py:63:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/select.py:64:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/select.py:98:5-23: Class member `PlugwiseSelectEntity.entity_description` overrides parent class `PlugwiseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/select.py:98:5-23: Class member `PlugwiseSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/sensor.py:41:5-8: Class member `PlugwiseSensorEntityDescription.key` overrides parent class `SensorEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:77:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:85:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:93:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:101:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:109:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:117:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:122:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:129:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:133:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:137:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:144:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:151:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:158:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:162:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:166:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:173:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:180:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:187:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:194:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:201:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:208:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:215:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:222:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:229:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:236:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:243:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:250:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:257:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:264:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:271:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:278:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:285:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:292:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:296:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:300:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:304:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:308:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:312:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:316:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:322:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:329:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:336:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:345:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:352:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:357:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:359:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:364:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:366:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:371:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:374:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:385:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:388:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:393:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:396:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/sensor.py:431:5-23: Class member `PlugwiseSensorEntity.entity_description` overrides parent class `PlugwiseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/sensor.py:431:5-23: Class member `PlugwiseSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/switch.py:30:5-8: Class member `PlugwiseSwitchEntityDescription.key` overrides parent class `SwitchEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/switch.py:36:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/switch.py:37:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/switch.py:41:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/switch.py:42:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/switch.py:46:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/switch.py:51:9-24: Unexpected keyword argument `translation_key` in function `PlugwiseSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/switch.py:52:9-24: Unexpected keyword argument `entity_category` in function `PlugwiseSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/plugwise/switch.py:86:5-23: Class member `PlugwiseSwitchEntity.entity_description` overrides parent class `PlugwiseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/plugwise/switch.py:86:5-23: Class member `PlugwiseSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pocketcasts/sensor.py:8:1-36: Could not find import of `pycketcasts` [missing-import] +ERROR homeassistant/components/pocketcasts/sensor.py:74:27-54: `int` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/point/__init__.py:113:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/point/binary_sensor.py:78:14-32: Class member `MinutPointBinarySensor._attr_device_class` overrides parent class `MinutPointEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/point/sensor.py:26:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/point/sensor.py:32:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/point/sensor.py:38:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/point/sensor.py:81:14-32: Class member `MinutPointSensor.entity_description` overrides parent class `MinutPointEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pooldose/coordinator.py:25:5-17: Class member `PooldoseCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pooldose/sensor.py:39:9-12: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:43:37-40: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:45:9-12: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:51:9-12: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:56:9-12: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:62:9-12: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:63:9-24: Unexpected keyword argument `translation_key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:64:9-24: Unexpected keyword argument `entity_category` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:69:9-12: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:71:9-24: Unexpected keyword argument `entity_category` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:72:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:77:9-12: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:79:9-24: Unexpected keyword argument `entity_category` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:81:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:85:9-12: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:87:9-24: Unexpected keyword argument `entity_category` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:88:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:93:9-12: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:94:9-24: Unexpected keyword argument `translation_key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:95:9-24: Unexpected keyword argument `entity_category` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:96:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:101:9-12: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:103:9-24: Unexpected keyword argument `entity_category` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:104:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:109:9-12: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:110:9-24: Unexpected keyword argument `translation_key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:111:9-24: Unexpected keyword argument `entity_category` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:112:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:117:9-12: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:118:9-24: Unexpected keyword argument `translation_key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:120:9-24: Unexpected keyword argument `entity_category` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:121:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:125:9-12: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:127:9-24: Unexpected keyword argument `entity_category` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:128:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:133:9-12: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:134:9-24: Unexpected keyword argument `translation_key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:135:9-24: Unexpected keyword argument `entity_category` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:138:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:142:9-12: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:143:9-24: Unexpected keyword argument `translation_key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:144:9-24: Unexpected keyword argument `entity_category` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:147:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:151:9-12: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:152:9-24: Unexpected keyword argument `translation_key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:153:9-24: Unexpected keyword argument `entity_category` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:154:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:159:9-12: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:161:9-24: Unexpected keyword argument `entity_category` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:164:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:168:9-12: Unexpected keyword argument `key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:169:9-24: Unexpected keyword argument `translation_key` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:170:9-24: Unexpected keyword argument `entity_category` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:173:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PooldoseSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pooldose/sensor.py:208:5-23: Class member `PooldoseSensor.entity_description` overrides parent class `PooldoseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pooldose/sensor.py:208:5-23: Class member `PooldoseSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/poolsense/binary_sensor.py:18:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/binary_sensor.py:19:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/binary_sensor.py:23:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/binary_sensor.py:24:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/binary_sensor.py:44:7-28: Field `entity_description` is declared `EntityDescription` in ancestor `class PoolSenseEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/poolsense/coordinator.py:28:5-17: Class member `PoolSenseDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/poolsense/sensor.py:20:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/sensor.py:21:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/sensor.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/sensor.py:29:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/sensor.py:34:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/sensor.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/sensor.py:50:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/sensor.py:55:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/sensor.py:59:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/poolsense/sensor.py:78:7-22: Field `entity_description` is declared `EntityDescription` in ancestor `class PoolSenseEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/portainer/binary_sensor.py:42:9-12: Unexpected keyword argument `key` in function `PortainerContainerBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/binary_sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `PortainerContainerBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/binary_sensor.py:46:9-24: Unexpected keyword argument `entity_category` in function `PortainerContainerBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/binary_sensor.py:52:9-12: Unexpected keyword argument `key` in function `PortainerEndpointBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/binary_sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `PortainerEndpointBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/binary_sensor.py:56:9-24: Unexpected keyword argument `entity_category` in function `PortainerEndpointBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/binary_sensor.py:120:5-23: Class member `PortainerEndpointSensor.entity_description` overrides parent class `PortainerEndpointEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/portainer/binary_sensor.py:120:5-23: Class member `PortainerEndpointSensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/portainer/binary_sensor.py:148:5-23: Class member `PortainerContainerSensor.entity_description` overrides parent class `PortainerContainerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/portainer/binary_sensor.py:148:5-23: Class member `PortainerContainerSensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/portainer/button.py:48:9-12: Unexpected keyword argument `key` in function `PortainerButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/button.py:49:9-13: Unexpected keyword argument `name` in function `PortainerButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/button.py:51:9-24: Unexpected keyword argument `entity_category` in function `PortainerButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/button.py:97:5-23: Class member `PortainerButton.entity_description` overrides parent class `PortainerContainerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/portainer/button.py:97:5-23: Class member `PortainerButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/portainer/coordinator.py:60:5-17: Class member `PortainerCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/portainer/sensor.py:48:9-12: Unexpected keyword argument `key` in function `PortainerContainerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `PortainerContainerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:53:9-12: Unexpected keyword argument `key` in function `PortainerContainerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `PortainerContainerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:60:9-24: Unexpected keyword argument `entity_category` in function `PortainerContainerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:64:9-12: Unexpected keyword argument `key` in function `PortainerContainerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `PortainerContainerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:71:9-24: Unexpected keyword argument `entity_category` in function `PortainerContainerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:75:9-12: Unexpected keyword argument `key` in function `PortainerContainerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `PortainerContainerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:83:9-24: Unexpected keyword argument `entity_category` in function `PortainerContainerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:88:9-12: Unexpected keyword argument `key` in function `PortainerContainerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `PortainerContainerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:111:9-24: Unexpected keyword argument `entity_category` in function `PortainerContainerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:118:9-12: Unexpected keyword argument `key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:119:9-24: Unexpected keyword argument `translation_key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:121:9-24: Unexpected keyword argument `entity_category` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:122:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:125:9-12: Unexpected keyword argument `key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:128:9-24: Unexpected keyword argument `entity_category` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:129:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:132:9-12: Unexpected keyword argument `key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:133:9-24: Unexpected keyword argument `translation_key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:135:9-24: Unexpected keyword argument `entity_category` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:136:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:139:9-12: Unexpected keyword argument `key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:140:9-24: Unexpected keyword argument `translation_key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:142:9-24: Unexpected keyword argument `entity_category` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:143:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:146:9-12: Unexpected keyword argument `key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:147:9-24: Unexpected keyword argument `translation_key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:149:9-24: Unexpected keyword argument `entity_category` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:150:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:153:9-12: Unexpected keyword argument `key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:154:9-24: Unexpected keyword argument `translation_key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:156:9-24: Unexpected keyword argument `entity_category` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:157:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:160:9-12: Unexpected keyword argument `key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:161:9-24: Unexpected keyword argument `translation_key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:163:9-24: Unexpected keyword argument `entity_category` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:167:9-12: Unexpected keyword argument `key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:168:9-24: Unexpected keyword argument `translation_key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:170:9-24: Unexpected keyword argument `entity_category` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:174:9-12: Unexpected keyword argument `key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:175:9-24: Unexpected keyword argument `translation_key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:177:9-24: Unexpected keyword argument `entity_category` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:181:9-12: Unexpected keyword argument `key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:182:9-24: Unexpected keyword argument `translation_key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:184:9-24: Unexpected keyword argument `entity_category` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:188:9-12: Unexpected keyword argument `key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:189:9-24: Unexpected keyword argument `translation_key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:191:9-24: Unexpected keyword argument `entity_category` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:195:9-12: Unexpected keyword argument `key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:196:9-24: Unexpected keyword argument `translation_key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:202:9-24: Unexpected keyword argument `entity_category` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:203:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:206:9-12: Unexpected keyword argument `key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:207:9-24: Unexpected keyword argument `translation_key` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:209:9-24: Unexpected keyword argument `entity_category` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:210:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PortainerEndpointSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/sensor.py:275:5-23: Class member `PortainerContainerSensor.entity_description` overrides parent class `PortainerContainerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/portainer/sensor.py:275:5-23: Class member `PortainerContainerSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/portainer/sensor.py:304:5-23: Class member `PortainerEndpointSensor.entity_description` overrides parent class `PortainerEndpointEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/portainer/sensor.py:304:5-23: Class member `PortainerEndpointSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/portainer/switch.py:71:9-12: Unexpected keyword argument `key` in function `PortainerSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/switch.py:72:9-24: Unexpected keyword argument `translation_key` in function `PortainerSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/portainer/switch.py:117:5-23: Class member `PortainerContainerSwitch.entity_description` overrides parent class `PortainerContainerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/portainer/switch.py:117:5-23: Class member `PortainerContainerSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/powerfox/coordinator.py:27:5-17: Class member `PowerfoxDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/powerfox/sensor.py:35:9-12: Unexpected keyword argument `key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:42:9-12: Unexpected keyword argument `key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:50:9-12: Unexpected keyword argument `key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:58:9-12: Unexpected keyword argument `key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:66:9-12: Unexpected keyword argument `key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:78:9-12: Unexpected keyword argument `key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:86:9-12: Unexpected keyword argument `key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:97:9-12: Unexpected keyword argument `key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:105:9-12: Unexpected keyword argument `key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:112:9-12: Unexpected keyword argument `key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:113:9-24: Unexpected keyword argument `translation_key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:120:9-12: Unexpected keyword argument `key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `PowerfoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerfox/sensor.py:172:5-23: Class member `PowerfoxSensorEntity.entity_description` overrides parent class `PowerfoxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/powerfox/sensor.py:172:5-23: Class member `PowerfoxSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/powerwall/__init__.py:202:19-28: `base_info` may be uninitialized [unbound-name] +ERROR homeassistant/components/powerwall/__init__.py:208:19-28: `base_info` may be uninitialized [unbound-name] +ERROR homeassistant/components/powerwall/__init__.py:240:56-65: `base_info` may be uninitialized [unbound-name] +ERROR homeassistant/components/powerwall/binary_sensor.py:48:5-23: Class member `PowerWallRunningSensor._attr_device_class` overrides parent class `PowerWallEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/powerwall/binary_sensor.py:65:5-23: Class member `PowerWallConnectedSensor._attr_device_class` overrides parent class `PowerWallEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/powerwall/binary_sensor.py:82:5-23: Class member `PowerWallGridServicesActiveSensor._attr_device_class` overrides parent class `PowerWallEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/powerwall/binary_sensor.py:99:5-23: Class member `PowerWallGridStatusSensor._attr_device_class` overrides parent class `PowerWallEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/powerwall/binary_sensor.py:115:5-23: Class member `PowerWallChargingStatusSensor._attr_device_class` overrides parent class `PowerWallEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/powerwall/sensor.py:67:9-12: Unexpected keyword argument `key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:75:9-12: Unexpected keyword argument `key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:80:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:84:9-12: Unexpected keyword argument `key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:89:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:93:9-12: Unexpected keyword argument `key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:94:9-24: Unexpected keyword argument `translation_key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:98:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:121:9-12: Unexpected keyword argument `key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:122:9-24: Unexpected keyword argument `translation_key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:123:9-24: Unexpected keyword argument `entity_category` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:132:9-12: Unexpected keyword argument `key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:133:9-24: Unexpected keyword argument `translation_key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:134:9-24: Unexpected keyword argument `entity_category` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:141:9-12: Unexpected keyword argument `key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:142:9-24: Unexpected keyword argument `translation_key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:143:9-24: Unexpected keyword argument `entity_category` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:147:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:151:9-12: Unexpected keyword argument `key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:152:9-24: Unexpected keyword argument `translation_key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:153:9-24: Unexpected keyword argument `entity_category` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:157:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:161:9-12: Unexpected keyword argument `key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:162:9-24: Unexpected keyword argument `translation_key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:163:9-24: Unexpected keyword argument `entity_category` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:170:9-12: Unexpected keyword argument `key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:171:9-24: Unexpected keyword argument `translation_key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:172:9-24: Unexpected keyword argument `entity_category` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:181:9-12: Unexpected keyword argument `key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:182:9-24: Unexpected keyword argument `translation_key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:183:9-24: Unexpected keyword argument `entity_category` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:192:9-12: Unexpected keyword argument `key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:193:9-24: Unexpected keyword argument `translation_key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:194:9-24: Unexpected keyword argument `entity_category` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:203:9-12: Unexpected keyword argument `key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:204:9-24: Unexpected keyword argument `translation_key` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:205:9-24: Unexpected keyword argument `entity_category` in function `PowerwallSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/powerwall/sensor.py:253:5-23: Class member `PowerWallChargeSensor._attr_device_class` overrides parent class `PowerWallEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/powerwall/sensor.py:269:5-23: Class member `PowerWallEnergySensor.entity_description` overrides parent class `PowerWallEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/powerwall/sensor.py:269:5-23: Class member `PowerWallEnergySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/powerwall/sensor.py:319:5-23: Class member `PowerWallEnergyDirectionSensor._attr_device_class` overrides parent class `PowerWallEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/powerwall/sensor.py:392:5-23: Class member `PowerWallBatterySensor.entity_description` overrides parent class `BatteryEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/powerwall/sensor.py:392:5-23: Class member `PowerWallBatterySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/powerwall/switch.py:36:5-23: Class member `PowerwallOffGridEnabledEntity._attr_device_class` overrides parent class `PowerWallEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/private_ble_device/device_tracker.py:30:7-31: Field `_attr_device_info` is declared `TypedDict[DeviceInfo] | None` in ancestor `class BasePrivateDeviceEntity: ... +`, which is not assignable to the type `None` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/private_ble_device/sensor.py:41:9-12: Unexpected keyword argument `key` in function `PrivateDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/private_ble_device/sensor.py:44:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PrivateDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/private_ble_device/sensor.py:45:9-24: Unexpected keyword argument `entity_category` in function `PrivateDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/private_ble_device/sensor.py:50:9-12: Unexpected keyword argument `key` in function `PrivateDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/private_ble_device/sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `PrivateDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/private_ble_device/sensor.py:54:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PrivateDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/private_ble_device/sensor.py:55:9-24: Unexpected keyword argument `entity_category` in function `PrivateDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/private_ble_device/sensor.py:60:9-12: Unexpected keyword argument `key` in function `PrivateDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/private_ble_device/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `PrivateDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/private_ble_device/sensor.py:63:18-67:10: Argument `(_: HomeAssistant, service_info: BluetoothServiceInfoBleak) -> Literal[0] | AdvertisementData | float | None` is not assignable to parameter `value_fn` with type `(HomeAssistant, BluetoothServiceInfoBleak) -> float | int | str | None` in function `PrivateDeviceSensorEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/private_ble_device/sensor.py:73:9-12: Unexpected keyword argument `key` in function `PrivateDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/private_ble_device/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `PrivateDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/private_ble_device/sensor.py:76:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PrivateDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/private_ble_device/sensor.py:77:9-24: Unexpected keyword argument `entity_category` in function `PrivateDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/private_ble_device/sensor.py:109:5-23: Class member `PrivateBLEDeviceSensor.entity_description` overrides parent class `BasePrivateDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/private_ble_device/sensor.py:109:5-23: Class member `PrivateBLEDeviceSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/probe_plus/coordinator.py:34:5-17: Class member `ProbePlusDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/probe_plus/sensor.py:38:9-12: Unexpected keyword argument `key` in function `ProbePlusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/probe_plus/sensor.py:41:33-70: Object of class `NoneType` has no attribute `probe_temperature` [missing-attribute] +ERROR homeassistant/components/probe_plus/sensor.py:45:9-12: Unexpected keyword argument `key` in function `ProbePlusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/probe_plus/sensor.py:48:33-66: Object of class `NoneType` has no attribute `probe_battery` [missing-attribute] +ERROR homeassistant/components/probe_plus/sensor.py:52:9-12: Unexpected keyword argument `key` in function `ProbePlusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/probe_plus/sensor.py:55:33-66: Object of class `NoneType` has no attribute `relay_battery` [missing-attribute] +ERROR homeassistant/components/probe_plus/sensor.py:59:9-12: Unexpected keyword argument `key` in function `ProbePlusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/probe_plus/sensor.py:63:9-24: Unexpected keyword argument `entity_category` in function `ProbePlusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/probe_plus/sensor.py:64:33-63: Object of class `NoneType` has no attribute `probe_rssi` [missing-attribute] +ERROR homeassistant/components/probe_plus/sensor.py:65:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProbePlusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/probe_plus/sensor.py:68:9-12: Unexpected keyword argument `key` in function `ProbePlusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/probe_plus/sensor.py:71:9-24: Unexpected keyword argument `entity_category` in function `ProbePlusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/probe_plus/sensor.py:73:33-66: Object of class `NoneType` has no attribute `relay_voltage` [missing-attribute] +ERROR homeassistant/components/probe_plus/sensor.py:74:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProbePlusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/probe_plus/sensor.py:77:9-12: Unexpected keyword argument `key` in function `ProbePlusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/probe_plus/sensor.py:80:9-24: Unexpected keyword argument `entity_category` in function `ProbePlusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/probe_plus/sensor.py:82:33-66: Object of class `NoneType` has no attribute `probe_voltage` [missing-attribute] +ERROR homeassistant/components/probe_plus/sensor.py:83:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProbePlusSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/probe_plus/sensor.py:101:5-23: Class member `ProbeSensor.entity_description` overrides parent class `ProbePlusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/probe_plus/sensor.py:101:5-23: Class member `ProbeSensor.entity_description` overrides parent class `RestoreSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/progettihwsw/binary_sensor.py:69:38-53: Cannot index into `dict[str, Any]` [bad-index] +ERROR homeassistant/components/progettihwsw/switch.py:85:38-53: Cannot index into `dict[str, Any]` [bad-index] +ERROR homeassistant/components/proliphix/climate.py:7:8-17: Could not find import of `proliphix` [missing-import] +ERROR homeassistant/components/prometheus/__init__.py:471:20-25: `value` may be uninitialized [unbound-name] +ERROR homeassistant/components/prometheus/__init__.py:537:17-22: `value` may be uninitialized [unbound-name] +ERROR homeassistant/components/prometheus/__init__.py:572:15-19: `temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/proximity/config_flow.py:90:9-31: Class member `ProximityConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/proximity/coordinator.py:75:5-17: Class member `ProximityDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/proximity/sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/proximity/sensor.py:34:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/proximity/sensor.py:39:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/proximity/sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/proximity/sensor.py:48:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/proximity/sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/proximity/sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/proximity/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/proximity/sensor.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/proximity/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/proximity/sensor.py:144:14-32: Class member `ProximitySensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/proximity/sensor.py:175:14-32: Class member `ProximityTrackedEntitySensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/proxmoxve/__init__.py:8:1-54: Could not find import of `proxmoxer` [missing-import] +ERROR homeassistant/components/proxmoxve/__init__.py:136:39-51: Argument `() -> Unknown` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/proxmoxve/__init__.py:205:55-63: Argument `() -> dict[str, Any] | None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/proxmoxve/binary_sensor.py:78:5-23: Class member `ProxmoxBinarySensor._attr_device_class` overrides parent class `ProxmoxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/proxmoxve/common.py:7:1-33: Could not find import of `proxmoxer` [missing-import] +ERROR homeassistant/components/proxmoxve/common.py:8:1-45: Could not find import of `proxmoxer.core` [missing-import] +ERROR homeassistant/components/proxy/camera.py:278:32-43: `bytes` is not assignable to attribute `_last_image` with type `None` [bad-assignment] +ERROR homeassistant/components/prusalink/__init__.py:128:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/prusalink/binary_sensor.py:48:13-16: Unexpected keyword argument `key` in function `PrusaLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/binary_sensor.py:49:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/binary_sensor.py:50:22-46: Argument `(data: TypedDict[PrinterInfo]) -> bool | None` is not assignable to parameter `value_fn` with type `(TypedDict[PrinterInfo]) -> bool` in function `PrusaLinkBinarySensorEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/prusalink/binary_sensor.py:51:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `PrusaLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/binary_sensor.py:81:5-23: Class member `PrusaLinkBinarySensorEntity.entity_description` overrides parent class `PrusaLinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/prusalink/binary_sensor.py:81:5-23: Class member `PrusaLinkBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/prusalink/button.py:44:13-16: Unexpected keyword argument `key` in function `PrusaLinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/button.py:45:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/button.py:53:13-16: Unexpected keyword argument `key` in function `PrusaLinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/button.py:54:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkButtonEntityDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/prusalink/button.py:56:43-58:14: Redundant cast: `bool` is the same type as `bool` [redundant-cast] +ERROR homeassistant/components/prusalink/button.py:61:13-16: Unexpected keyword argument `key` in function `PrusaLinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/button.py:62:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkButtonEntityDescription.__init__` [unexpected-keyword] + WARN homeassistant/components/prusalink/button.py:64:43-66:14: Redundant cast: `bool` is the same type as `bool` [redundant-cast] +ERROR homeassistant/components/prusalink/button.py:97:5-23: Class member `PrusaLinkButtonEntity.entity_description` overrides parent class `PrusaLinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/prusalink/button.py:97:5-23: Class member `PrusaLinkButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/prusalink/config_flow.py:46:12-50: Object of class `object` has no attribute `startswith` [missing-attribute] +ERROR homeassistant/components/prusalink/config_flow.py:48:65-73: TypedDict `VersionInfo` does not have key `server` [bad-typed-dict-key] +ERROR homeassistant/components/prusalink/config_flow.py:79:30-40: TypedDict `VersionInfo` does not have key `hostname` [bad-typed-dict-key] +ERROR homeassistant/components/prusalink/coordinator.py:41:5-17: Class member `PrusaLinkUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/prusalink/coordinator.py:55:55-59: Argument `None` is not assignable to parameter `data` with type `T` in function `PrusaLinkUpdateCoordinator._get_update_interval` [bad-argument-type] +ERROR homeassistant/components/prusalink/coordinator.py:73:14-29: Class member `PrusaLinkUpdateCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/prusalink/coordinator.py:73:32-63: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@PrusaLinkUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/prusalink/coordinator.py:118:29-68: `TypedDict[PrinterInfo]` is not assignable to upper bound `TypedDict[JobInfo] | TypedDict[LegacyPrinterStatus] | TypedDict[PrinterStatus]` of type variable `T` [bad-specialization] +ERROR homeassistant/components/prusalink/sensor.py:58:13-16: Unexpected keyword argument `key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:59:13-17: Unexpected keyword argument `name` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:60:46-76: Object of class `PrinterState` has no attribute `lower` [missing-attribute] +ERROR homeassistant/components/prusalink/sensor.py:63:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:66:13-16: Unexpected keyword argument `key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:67:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:72:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:75:13-16: Unexpected keyword argument `key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:76:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:81:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:84:13-16: Unexpected keyword argument `key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:85:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:90:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:93:13-16: Unexpected keyword argument `key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:94:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:99:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:102:13-16: Unexpected keyword argument `key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:103:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:108:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:111:13-16: Unexpected keyword argument `key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:112:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:117:13-16: Unexpected keyword argument `key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:118:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:121:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:124:13-16: Unexpected keyword argument `key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:125:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:128:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:131:13-16: Unexpected keyword argument `key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:132:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:135:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:140:13-16: Unexpected keyword argument `key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:141:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:142:45-74: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/prusalink/sensor.py:147:13-16: Unexpected keyword argument `key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:148:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:157:13-16: Unexpected keyword argument `key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:158:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:159:45-73: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/prusalink/sensor.py:166:13-16: Unexpected keyword argument `key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:167:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:179:13-16: Unexpected keyword argument `key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:180:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:194:13-16: Unexpected keyword argument `key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:195:13-28: Unexpected keyword argument `translation_key` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:199:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `PrusaLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/prusalink/sensor.py:230:5-23: Class member `PrusaLinkSensorEntity.entity_description` overrides parent class `PrusaLinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/prusalink/sensor.py:230:5-23: Class member `PrusaLinkSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ps4/config_flow.py:67:56-86: Unpacked argument `tuple[dict_keys[int, str]]` is not assignable to parameter `*args` with type `tuple[list[Unknown]]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ps4/config_flow.py:173:72-180:14: Unpacked argument `tuple[Any, str | None, str, Literal['Home-Assistant'], Literal[1988]]` is not assignable to parameter `*args` with type `tuple[str, str, str, Unknown | None, int | Unknown]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ps4/media_player.py:152:52-72: Argument `BoundMethod[Ps4Async, (self: Ps4Async) -> dict[Unknown, Unknown]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ps4/media_player.py:156:38-71: `DDPProtocol` is not assignable to attribute `ddp_protocol` with type `None` [bad-assignment] +ERROR homeassistant/components/ps4/media_player.py:159:48-66: Argument `BoundMethod[Self@PS4Device, (self: Self@PS4Device) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ps4/media_player.py:205:54-75: Cannot index into `dict[str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None]` [bad-index] +ERROR homeassistant/components/ps4/media_player.py:283:52-68: Argument `BoundMethod[Self@PS4Device, (self: Self@PS4Device) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ps4/media_player.py:289:54-75: Cannot index into `dict[str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None]` [bad-index] +ERROR homeassistant/components/ps4/media_player.py:295:32-55: No matching overload found for function `dict.pop` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/pterodactyl/api.py:77:67-88: Argument `BoundMethod[Self@PterodactylAPI, (self: Self@PterodactylAPI) -> list[str]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/pterodactyl/binary_sensor.py:19:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/binary_sensor.py:20:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/binary_sensor.py:58:14-32: Class member `PterodactylBinarySensorEntity.entity_description` overrides parent class `PterodactylEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pterodactyl/button.py:38:9-12: Unexpected keyword argument `key` in function `PterodactylButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/button.py:39:9-24: Unexpected keyword argument `translation_key` in function `PterodactylButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/button.py:43:9-12: Unexpected keyword argument `key` in function `PterodactylButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/button.py:44:9-24: Unexpected keyword argument `translation_key` in function `PterodactylButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/button.py:48:9-12: Unexpected keyword argument `key` in function `PterodactylButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/button.py:49:9-24: Unexpected keyword argument `translation_key` in function `PterodactylButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/button.py:53:9-12: Unexpected keyword argument `key` in function `PterodactylButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/button.py:54:9-24: Unexpected keyword argument `translation_key` in function `PterodactylButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/button.py:56:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PterodactylButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/button.py:79:5-23: Class member `PterodactylButtonEntity.entity_description` overrides parent class `PterodactylEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pterodactyl/button.py:79:5-23: Class member `PterodactylButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pterodactyl/coordinator.py:31:5-17: Class member `PterodactylCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pterodactyl/sensor.py:47:9-12: Unexpected keyword argument `key` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:50:9-24: Unexpected keyword argument `entity_category` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:56:9-12: Unexpected keyword argument `key` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:59:9-24: Unexpected keyword argument `entity_category` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:63:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:66:9-12: Unexpected keyword argument `key` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:69:9-24: Unexpected keyword argument `entity_category` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:77:9-12: Unexpected keyword argument `key` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:82:9-24: Unexpected keyword argument `entity_category` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:86:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:89:9-12: Unexpected keyword argument `key` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:94:9-24: Unexpected keyword argument `entity_category` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:100:9-12: Unexpected keyword argument `key` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:101:9-24: Unexpected keyword argument `translation_key` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:103:9-24: Unexpected keyword argument `entity_category` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:109:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:112:9-12: Unexpected keyword argument `key` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:113:9-24: Unexpected keyword argument `translation_key` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:115:9-24: Unexpected keyword argument `entity_category` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:121:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:124:9-12: Unexpected keyword argument `key` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:127:9-24: Unexpected keyword argument `entity_category` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:133:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:136:9-12: Unexpected keyword argument `key` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:137:9-24: Unexpected keyword argument `translation_key` in function `PterodactylSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pterodactyl/sensor.py:166:5-23: Class member `PterodactylSensorEntity.entity_description` overrides parent class `PterodactylEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pterodactyl/sensor.py:166:5-23: Class member `PterodactylSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pulseaudio_loopback/switch.py:8:1-39: Could not find import of `pulsectl` [missing-import] +ERROR homeassistant/components/pure_energie/coordinator.py:30:5-17: Class member `PureEnergieDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pure_energie/sensor.py:38:9-12: Unexpected keyword argument `key` in function `PureEnergieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pure_energie/sensor.py:39:9-24: Unexpected keyword argument `translation_key` in function `PureEnergieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pure_energie/sensor.py:46:9-12: Unexpected keyword argument `key` in function `PureEnergieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pure_energie/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `PureEnergieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pure_energie/sensor.py:54:9-12: Unexpected keyword argument `key` in function `PureEnergieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pure_energie/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `PureEnergieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pure_energie/sensor.py:85:5-23: Class member `PureEnergieSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pure_energie/sensor.py:85:5-23: Class member `PureEnergieSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/purpleair/config_flow.py:194:34-55: `nearby_sensor_results` may be uninitialized [unbound-name] +ERROR homeassistant/components/purpleair/config_flow.py:208:9-31: Class member `PurpleAirConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/purpleair/coordinator.py:55:5-17: Class member `PurpleAirDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/purpleair/sensor.py:45:9-12: Unexpected keyword argument `key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:52:9-12: Unexpected keyword argument `key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:54:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:60:9-12: Unexpected keyword argument `key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:62:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:68:9-12: Unexpected keyword argument `key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:70:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:76:9-12: Unexpected keyword argument `key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:83:9-12: Unexpected keyword argument `key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:84:9-24: Unexpected keyword argument `translation_key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:85:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:91:9-12: Unexpected keyword argument `key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:98:9-12: Unexpected keyword argument `key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:100:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:106:9-12: Unexpected keyword argument `key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:113:9-12: Unexpected keyword argument `key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:115:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:121:9-12: Unexpected keyword argument `key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:128:9-12: Unexpected keyword argument `key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:129:9-24: Unexpected keyword argument `translation_key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:131:9-24: Unexpected keyword argument `entity_category` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:132:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:138:9-12: Unexpected keyword argument `key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:145:9-12: Unexpected keyword argument `key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:146:9-24: Unexpected keyword argument `translation_key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:147:9-24: Unexpected keyword argument `entity_category` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:148:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:156:9-12: Unexpected keyword argument `key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:157:9-24: Unexpected keyword argument `translation_key` in function `PurpleAirSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/purpleair/sensor.py:181:5-23: Class member `PurpleAirSensorEntity.entity_description` overrides parent class `PurpleAirEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/purpleair/sensor.py:181:5-23: Class member `PurpleAirSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/push/camera.py:151:31-47: `datetime` is not assignable to attribute `_last_trip` with type `None` [bad-assignment] +ERROR homeassistant/components/push/camera.py:168:34-170:10: `() -> None` is not assignable to attribute `_expired_listener` with type `None` [bad-assignment] +ERROR homeassistant/components/pushbullet/__init__.py:42:55-44:10: Unpacked argument `tuple[Any]` is not assignable to parameter `*args` with type `tuple[Unknown, Unknown | None, Unknown | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/pushbullet/__init__.py:81:43-60: Argument `BoundMethod[PushBulletNotificationProvider, (self: PushBulletNotificationProvider, **kwargs: Unknown) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/pushbullet/__init__.py:82:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/pushbullet/config_flow.py:37:68-39:18: Unpacked argument `tuple[Any]` is not assignable to parameter `*args` with type `tuple[Unknown, Unknown | None, Unknown | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/pushbullet/config_flow.py:46:48-58: `pushbullet` may be uninitialized [unbound-name] +ERROR homeassistant/components/pushbullet/notify.py:116:51-79: Argument `Channel | Device` is not assignable to parameter `pusher` with type `Pushbullet` in function `PushBulletNotificationService._push_data` [bad-argument-type] +ERROR homeassistant/components/pushbullet/sensor.py:18:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:19:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:20:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:23:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:24:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:27:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:28:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:29:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:32:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:33:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:34:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:39:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:44:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:49:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:54:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:61:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushbullet/sensor.py:63:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pushover/__init__.py:39:42-41:10: Unpacked argument `tuple[Any]` is not assignable to parameter `*args` with type `tuple[Unknown, Unknown | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/pushover/config_flow.py:31:42-86: Unpacked argument `tuple[Any]` is not assignable to parameter `*args` with type `tuple[Unknown, Unknown | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/pushover/notify.py:109:23-28: `image` may be uninitialized [unbound-name] +ERROR homeassistant/components/pushsafer/notify.py:88:57-64: Argument `Unknown | None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR homeassistant/components/pushsafer/notify.py:136:23-30: Type `None` is not iterable [not-iterable] +ERROR homeassistant/components/pvoutput/__init__.py:27:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/pvoutput/coordinator.py:20:5-17: Class member `PVOutputDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pvoutput/sensor.py:41:9-12: Unexpected keyword argument `key` in function `PVOutputSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvoutput/sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `PVOutputSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvoutput/sensor.py:49:9-12: Unexpected keyword argument `key` in function `PVOutputSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvoutput/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `PVOutputSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvoutput/sensor.py:57:9-12: Unexpected keyword argument `key` in function `PVOutputSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvoutput/sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `PVOutputSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvoutput/sensor.py:66:9-12: Unexpected keyword argument `key` in function `PVOutputSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvoutput/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `PVOutputSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvoutput/sensor.py:74:9-12: Unexpected keyword argument `key` in function `PVOutputSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvoutput/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `PVOutputSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvoutput/sensor.py:82:9-12: Unexpected keyword argument `key` in function `PVOutputSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvoutput/sensor.py:89:9-12: Unexpected keyword argument `key` in function `PVOutputSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvoutput/sensor.py:123:5-23: Class member `PVOutputSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pvoutput/sensor.py:123:5-23: Class member `PVOutputSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pvpc_hourly_pricing/config_flow.py:55:9-31: Class member `TariffSelectorConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pvpc_hourly_pricing/coordinator.py:26:5-17: Class member `ElecPricesDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pvpc_hourly_pricing/sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvpc_hourly_pricing/sensor.py:34:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvpc_hourly_pricing/sensor.py:38:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvpc_hourly_pricing/sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvpc_hourly_pricing/sensor.py:42:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvpc_hourly_pricing/sensor.py:46:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvpc_hourly_pricing/sensor.py:49:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvpc_hourly_pricing/sensor.py:50:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvpc_hourly_pricing/sensor.py:54:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvpc_hourly_pricing/sensor.py:55:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvpc_hourly_pricing/sensor.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvpc_hourly_pricing/sensor.py:59:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvpc_hourly_pricing/sensor.py:63:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvpc_hourly_pricing/sensor.py:64:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pvpc_hourly_pricing/sensor.py:178:14-32: Class member `ElecPriceSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pyload/button.py:42:9-12: Unexpected keyword argument `key` in function `PyLoadButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/button.py:43:9-24: Unexpected keyword argument `translation_key` in function `PyLoadButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/button.py:47:9-12: Unexpected keyword argument `key` in function `PyLoadButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/button.py:48:9-24: Unexpected keyword argument `translation_key` in function `PyLoadButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/button.py:52:9-12: Unexpected keyword argument `key` in function `PyLoadButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/button.py:53:9-24: Unexpected keyword argument `translation_key` in function `PyLoadButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/button.py:57:9-12: Unexpected keyword argument `key` in function `PyLoadButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/button.py:58:9-24: Unexpected keyword argument `translation_key` in function `PyLoadButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/button.py:60:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `PyLoadButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/button.py:83:5-23: Class member `PyLoadBinarySensor.entity_description` overrides parent class `BasePyLoadEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pyload/button.py:83:5-23: Class member `PyLoadBinarySensor.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pyload/coordinator.py:44:5-17: Class member `PyLoadCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pyload/sensor.py:46:9-12: Unexpected keyword argument `key` in function `PyLoadSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `PyLoadSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/sensor.py:55:9-12: Unexpected keyword argument `key` in function `PyLoadSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `PyLoadSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/sensor.py:62:9-12: Unexpected keyword argument `key` in function `PyLoadSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/sensor.py:63:9-24: Unexpected keyword argument `translation_key` in function `PyLoadSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/sensor.py:69:9-12: Unexpected keyword argument `key` in function `PyLoadSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `PyLoadSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/sensor.py:76:9-12: Unexpected keyword argument `key` in function `PyLoadSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `PyLoadSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/sensor.py:110:5-23: Class member `PyLoadSensor.entity_description` overrides parent class `BasePyLoadEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pyload/sensor.py:110:5-23: Class member `PyLoadSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pyload/switch.py:47:9-12: Unexpected keyword argument `key` in function `PyLoadSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/switch.py:48:9-24: Unexpected keyword argument `translation_key` in function `PyLoadSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/switch.py:56:9-12: Unexpected keyword argument `key` in function `PyLoadSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/switch.py:57:9-24: Unexpected keyword argument `translation_key` in function `PyLoadSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/pyload/switch.py:85:5-23: Class member `PyLoadSwitchEntity.entity_description` overrides parent class `BasePyLoadEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/pyload/switch.py:85:5-23: Class member `PyLoadSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/python_script/__init__.py:249:56-69: No attribute `__class__` in module `datetime` +No attribute `__class__` in module `homeassistant.util.dt` [missing-attribute] +ERROR homeassistant/components/qbittorrent/__init__.py:145:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/qbittorrent/coordinator.py:31:5-17: Class member `QBittorrentDataCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbittorrent/coordinator.py:60:21-59: Argument `BoundMethod[Client, (self: Client, **kwargs: Any) -> str]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/qbittorrent/coordinator.py:90:17-66: Argument `() -> TorrentInfoList` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/qbittorrent/sensor.py:117:9-12: Unexpected keyword argument `key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:118:9-24: Unexpected keyword argument `translation_key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:124:9-12: Unexpected keyword argument `key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:131:9-12: Unexpected keyword argument `key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:132:9-24: Unexpected keyword argument `translation_key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:141:9-12: Unexpected keyword argument `key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:142:9-24: Unexpected keyword argument `translation_key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:151:9-12: Unexpected keyword argument `key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:152:9-24: Unexpected keyword argument `translation_key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:159:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:162:9-12: Unexpected keyword argument `key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:163:9-24: Unexpected keyword argument `translation_key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:170:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:173:9-12: Unexpected keyword argument `key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:174:9-24: Unexpected keyword argument `translation_key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:183:9-12: Unexpected keyword argument `key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:184:9-24: Unexpected keyword argument `translation_key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:193:9-12: Unexpected keyword argument `key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:194:9-24: Unexpected keyword argument `translation_key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:197:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:200:9-12: Unexpected keyword argument `key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:201:9-24: Unexpected keyword argument `translation_key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:202:38-62: `count_torrents_in_states` is uninitialized [unbound-name] +ERROR homeassistant/components/qbittorrent/sensor.py:205:9-12: Unexpected keyword argument `key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:206:9-24: Unexpected keyword argument `translation_key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:207:38-62: `count_torrents_in_states` is uninitialized [unbound-name] +ERROR homeassistant/components/qbittorrent/sensor.py:212:9-12: Unexpected keyword argument `key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:213:9-24: Unexpected keyword argument `translation_key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:214:38-62: `count_torrents_in_states` is uninitialized [unbound-name] +ERROR homeassistant/components/qbittorrent/sensor.py:219:9-12: Unexpected keyword argument `key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:220:9-24: Unexpected keyword argument `translation_key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:221:38-62: `count_torrents_in_states` is uninitialized [unbound-name] +ERROR homeassistant/components/qbittorrent/sensor.py:226:9-12: Unexpected keyword argument `key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:227:9-24: Unexpected keyword argument `translation_key` in function `QBittorrentSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/sensor.py:228:38-62: `count_torrents_in_states` is uninitialized [unbound-name] +ERROR homeassistant/components/qbittorrent/sensor.py:254:5-23: Class member `QBittorrentSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbittorrent/sensor.py:254:5-23: Class member `QBittorrentSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbittorrent/switch.py:32:9-12: Unexpected keyword argument `key` in function `QBittorrentSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/switch.py:33:9-24: Unexpected keyword argument `translation_key` in function `QBittorrentSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/switch.py:34:9-13: Unexpected keyword argument `icon` in function `QBittorrentSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbittorrent/switch.py:62:5-23: Class member `QBittorrentSwitch.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbittorrent/switch.py:62:5-23: Class member `QBittorrentSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbus/__init__.py:76:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/qbus/binary_sensor.py:41:9-12: Unexpected keyword argument `key` in function `QbusWeatherDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/binary_sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `QbusWeatherDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/binary_sensor.py:46:9-12: Unexpected keyword argument `key` in function `QbusWeatherDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/binary_sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `QbusWeatherDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/binary_sensor.py:95:5-23: Class member `QbusWeatherBinarySensor.entity_description` overrides parent class `QbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbus/binary_sensor.py:95:5-23: Class member `QbusWeatherBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbus/climate.py:64:5-29: Class member `QbusClimate._attr_supported_features` overrides parent class `QbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbus/climate.py:86:14-43: Class member `QbusClimate._attr_target_temperature_step` overrides parent class `ClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbus/climate.py:87:14-32: Class member `QbusClimate._attr_preset_modes` overrides parent class `ClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbus/climate.py:88:14-31: Class member `QbusClimate._attr_preset_mode` overrides parent class `ClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbus/coordinator.py:45:14-26: Class member `QbusControllerCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbus/coordinator.py:227:16-27: `coordinator` may be uninitialized [unbound-name] +ERROR homeassistant/components/qbus/cover.py:57:5-29: Class member `QbusCover._attr_supported_features` overrides parent class `QbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbus/cover.py:57:5-29: Class member `QbusCover._attr_supported_features` overrides parent class `CoverEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbus/cover.py:58:5-23: Class member `QbusCover._attr_device_class` overrides parent class `QbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbus/sensor.py:55:9-12: Unexpected keyword argument `key` in function `QbusWeatherDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `QbusWeatherDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:63:9-12: Unexpected keyword argument `key` in function `QbusWeatherDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:70:9-12: Unexpected keyword argument `key` in function `QbusWeatherDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `QbusWeatherDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:78:9-12: Unexpected keyword argument `key` in function `QbusWeatherDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `QbusWeatherDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:86:9-12: Unexpected keyword argument `key` in function `QbusWeatherDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `QbusWeatherDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:94:9-12: Unexpected keyword argument `key` in function `QbusWeatherDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:101:9-12: Unexpected keyword argument `key` in function `QbusWeatherDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:111:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:117:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:123:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:129:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:135:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:141:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:147:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:153:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:159:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:165:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:171:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:177:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:183:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:189:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:195:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:201:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:207:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:213:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:219:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qbus/sensor.py:309:14-32: Class member `QbusGaugeVariantSensor.entity_description` overrides parent class `QbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbus/sensor.py:320:5-23: Class member `QbusHumiditySensor._attr_device_class` overrides parent class `QbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbus/sensor.py:334:5-23: Class member `QbusThermoSensor._attr_device_class` overrides parent class `QbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbus/sensor.py:347:5-23: Class member `QbusVentilationSensor._attr_device_class` overrides parent class `QbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbus/sensor.py:362:5-23: Class member `QbusWeatherSensor.entity_description` overrides parent class `QbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbus/sensor.py:362:5-23: Class member `QbusWeatherSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbus/sensor.py:378:18-30: Class member `QbusWeatherSensor.native_value` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qbus/switch.py:47:5-23: Class member `QbusSwitch._attr_device_class` overrides parent class `QbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qingping/binary_sensor.py:29:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qingping/binary_sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qingping/binary_sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qingping/binary_sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qingping/binary_sensor.py:92:7-36: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/qingping/sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qingping/sensor.py:45:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qingping/sensor.py:51:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qingping/sensor.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qingping/sensor.py:63:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qingping/sensor.py:72:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qingping/sensor.py:81:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qingping/sensor.py:87:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qingping/sensor.py:96:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qingping/sensor.py:100:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qingping/sensor.py:101:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qingping/sensor.py:107:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qingping/sensor.py:160:7-36: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/qld_bushfire/geo_location.py:218:26-45: `str | None` is not assignable to attribute `_category` with type `None` [bad-assignment] +ERROR homeassistant/components/qld_bushfire/geo_location.py:219:34-54: `datetime | None` is not assignable to attribute `_publication_date` with type `None` [bad-assignment] +ERROR homeassistant/components/qld_bushfire/geo_location.py:220:30-48: `datetime | None` is not assignable to attribute `_updated_date` with type `None` [bad-assignment] +ERROR homeassistant/components/qld_bushfire/geo_location.py:221:24-41: `str` is not assignable to attribute `_status` with type `None` [bad-assignment] +ERROR homeassistant/components/qnap/__init__.py:34:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/qnap/config_flow.py:68:64-84: Argument `BoundMethod[QNAPStats, (self: QNAPStats) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/qnap/coordinator.py:88:55-72: Argument `BoundMethod[Self@QnapCoordinator, (self: Self@QnapCoordinator) -> dict[str, dict[str, Any]]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/qnap/sensor.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:49:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:56:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:60:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:63:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:64:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:69:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:73:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:74:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:78:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:81:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:88:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:92:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:93:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:99:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:103:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:104:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:110:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:114:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:115:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:121:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:122:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:124:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:131:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:132:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:133:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:136:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:137:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:140:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:141:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:147:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:148:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:151:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:152:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:158:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:159:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:160:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:161:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:165:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:166:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:169:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:170:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:176:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:177:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:178:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:179:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:182:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:183:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:186:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:187:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:193:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:194:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:197:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:198:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:204:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:205:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:208:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:209:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:215:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:216:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:219:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:220:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:226:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:227:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:229:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap/sensor.py:323:14-32: Class member `QNAPSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qnap/sensor.py:381:5-19: Class member `QNAPNetworkSensor.monitor_device` overrides parent class `QNAPSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qnap/sensor.py:434:5-19: Class member `QNAPDriveSensor.monitor_device` overrides parent class `QNAPSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qnap/sensor.py:466:5-19: Class member `QNAPVolumeSensor.monitor_device` overrides parent class `QNAPSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qnap_qsw/__init__.py:62:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/qnap_qsw/binary_sensor.py:51:9-24: Unexpected keyword argument `entity_category` in function `QswBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/binary_sensor.py:52:9-12: Unexpected keyword argument `key` in function `QswBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/binary_sensor.py:60:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/binary_sensor.py:61:9-12: Unexpected keyword argument `key` in function `QswBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/binary_sensor.py:63:9-13: Unexpected keyword argument `name` in function `QswBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/binary_sensor.py:71:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/binary_sensor.py:72:9-12: Unexpected keyword argument `key` in function `QswBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/binary_sensor.py:74:9-13: Unexpected keyword argument `name` in function `QswBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/binary_sensor.py:135:5-23: Class member `QswBinarySensor.entity_description` overrides parent class `QswSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qnap_qsw/binary_sensor.py:135:5-23: Class member `QswBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qnap_qsw/button.py:36:9-24: Unexpected keyword argument `entity_category` in function `QswButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/button.py:37:9-12: Unexpected keyword argument `key` in function `QswButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/button.py:60:5-23: Class member `QswButton.entity_description` overrides parent class `QswDataEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qnap_qsw/button.py:60:5-23: Class member `QswButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qnap_qsw/coordinator.py:28:5-17: Class member `QswDataCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qnap_qsw/coordinator.py:57:5-17: Class member `QswFirmwareCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qnap_qsw/entity.py:104:5-23: Class member `QswSensorEntity.entity_description` overrides parent class `QswDataEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qnap_qsw/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:69:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:76:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:86:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:87:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:92:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:95:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:101:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:103:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:104:9-24: Unexpected keyword argument `entity_category` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:109:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:110:9-24: Unexpected keyword argument `translation_key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:112:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:122:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:128:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:129:9-24: Unexpected keyword argument `translation_key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:131:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:137:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:138:9-24: Unexpected keyword argument `translation_key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:140:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:146:9-24: Unexpected keyword argument `translation_key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:147:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:149:9-24: Unexpected keyword argument `entity_category` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:158:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:159:9-13: Unexpected keyword argument `icon` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:160:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:161:9-13: Unexpected keyword argument `name` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:168:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:169:9-13: Unexpected keyword argument `icon` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:170:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:171:9-13: Unexpected keyword argument `name` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:178:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:179:9-13: Unexpected keyword argument `icon` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:180:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:181:9-24: Unexpected keyword argument `entity_category` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:182:9-13: Unexpected keyword argument `name` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:189:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:190:9-13: Unexpected keyword argument `icon` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:191:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:192:9-13: Unexpected keyword argument `name` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:199:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:200:9-13: Unexpected keyword argument `icon` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:201:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:202:9-13: Unexpected keyword argument `name` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:210:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:211:9-13: Unexpected keyword argument `icon` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:212:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:213:9-13: Unexpected keyword argument `name` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:224:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:225:9-13: Unexpected keyword argument `icon` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:226:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:227:9-13: Unexpected keyword argument `name` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:234:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:235:9-13: Unexpected keyword argument `icon` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:236:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:237:9-13: Unexpected keyword argument `name` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:244:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:245:9-13: Unexpected keyword argument `icon` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:246:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:247:9-24: Unexpected keyword argument `entity_category` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:248:9-13: Unexpected keyword argument `name` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:255:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:256:9-13: Unexpected keyword argument `icon` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:257:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:258:9-13: Unexpected keyword argument `name` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:265:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:266:9-13: Unexpected keyword argument `icon` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:267:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:268:9-13: Unexpected keyword argument `name` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:276:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:277:9-13: Unexpected keyword argument `icon` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:278:9-12: Unexpected keyword argument `key` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:279:9-13: Unexpected keyword argument `name` in function `QswSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/sensor.py:351:5-23: Class member `QswSensor.entity_description` overrides parent class `QswSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qnap_qsw/sensor.py:351:5-23: Class member `QswSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qnap_qsw/update.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.update.UpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/qnap_qsw/update.py:55:5-29: Class member `QswUpdate._attr_supported_features` overrides parent class `QswFirmwareEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qnap_qsw/update.py:56:5-23: Class member `QswUpdate.entity_description` overrides parent class `QswFirmwareEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/qrcode/image_processing.py:8:1-26: Could not find import of `pyzbar` [missing-import] +ERROR homeassistant/components/qvr_pro/__init__.py:5:1-28: Could not find import of `pyqvrpro` [missing-import] +ERROR homeassistant/components/qvr_pro/__init__.py:6:1-78: Could not find import of `pyqvrpro.client` [missing-import] +ERROR homeassistant/components/qvr_pro/camera.py:7:1-45: Could not find import of `pyqvrpro.client` [missing-import] +ERROR homeassistant/components/rabbitair/__init__.py:47:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/rabbitair/coordinator.py:46:5-17: Class member `RabbitAirDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rabbitair/fan.py:54:5-29: Class member `RabbitAirFanEntity._attr_supported_features` overrides parent class `RabbitAirBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rabbitair/fan.py:142:59-69: Argument `list[Speed]` is not assignable to parameter `ordered_list` with type `list[Speed | None]` in function `homeassistant.util.percentage.percentage_to_ordered_list_item` [bad-argument-type] +ERROR homeassistant/components/rachio/__init__.py:31:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/rachio/__init__.py:57:5-24: Object of class `Rachio` has no attribute `webhook_auth` [missing-attribute] +ERROR homeassistant/components/rachio/__init__.py:65:5-23: Object of class `Rachio` has no attribute `webhook_url` [missing-attribute] +ERROR homeassistant/components/rachio/binary_sensor.py:58:9-12: Unexpected keyword argument `key` in function `RachioControllerBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rachio/binary_sensor.py:69:9-12: Unexpected keyword argument `key` in function `RachioControllerBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rachio/binary_sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `RachioControllerBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rachio/binary_sensor.py:92:9-12: Unexpected keyword argument `key` in function `RachioHoseTimerBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rachio/binary_sensor.py:93:9-24: Unexpected keyword argument `entity_category` in function `RachioHoseTimerBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rachio/binary_sensor.py:98:9-12: Unexpected keyword argument `key` in function `RachioHoseTimerBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rachio/binary_sensor.py:100:9-24: Unexpected keyword argument `entity_category` in function `RachioHoseTimerBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rachio/binary_sensor.py:101:9-24: Unexpected keyword argument `translation_key` in function `RachioHoseTimerBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rachio/binary_sensor.py:141:5-23: Class member `RachioControllerBinarySensor.entity_description` overrides parent class `RachioDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rachio/binary_sensor.py:141:5-23: Class member `RachioControllerBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rachio/binary_sensor.py:192:5-23: Class member `RachioHoseTimerBinarySensor.entity_description` overrides parent class `RachioHoseTimerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rachio/binary_sensor.py:192:5-23: Class member `RachioHoseTimerBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rachio/config_flow.py:49:50-68: Argument `BoundMethod[Person, (self: Person) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/rachio/config_flow.py:51:16-23: Cannot index into `object` [bad-index] +ERROR homeassistant/components/rachio/config_flow.py:54:21-28: Cannot index into `object` [bad-index] +ERROR homeassistant/components/rachio/config_flow.py:113:9-31: Class member `RachioConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rachio/device.py:285:15-38: Object of class `Rachio` has no attribute `webhook_url` [missing-attribute] +ERROR homeassistant/components/rachio/device.py:286:35-59: Object of class `Rachio` has no attribute `webhook_auth` [missing-attribute] +ERROR homeassistant/components/rachio/webhooks.py:99:20-46: Object of class `Rachio` has no attribute `webhook_auth` [missing-attribute] +ERROR homeassistant/components/rachio/webhooks.py:138:70-80: `webhook_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/rachio/webhooks.py:141:23-36: `cloudhook_url` may be uninitialized [unbound-name] +ERROR homeassistant/components/rachio/webhooks.py:144:56-66: `webhook_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/radarr/binary_sensor.py:21:5-8: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/radarr/binary_sensor.py:22:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/radarr/binary_sensor.py:23:5-20: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/radarr/binary_sensor.py:38:7-25: Field `entity_description` is declared `EntityDescription` in ancestor `class RadarrEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/radarr/calendar.py:16:5-8: Unexpected keyword argument `key` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/radarr/calendar.py:17:5-9: Unexpected keyword argument `name` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/radarr/calendar.py:31:7-27: Field `entity_description` is declared `EntityDescription` in ancestor `class RadarrEntity: ... +`, which is not assignable to the type `CalendarEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/radarr/calendar.py:34:5-16: Class member `RadarrCalendarEntity.coordinator` overrides parent class `RadarrEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/radarr/coordinator.py:63:5-17: Class member `RadarrDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/radarr/coordinator.py:64:5-21: Class member `RadarrDataUpdateCoordinator._update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/radarr/sensor.py:73:9-12: Unexpected keyword argument `key` in function `RadarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/radarr/sensor.py:74:9-13: Unexpected keyword argument `name` in function `RadarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/radarr/sensor.py:77:9-13: Unexpected keyword argument `icon` in function `RadarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/radarr/sensor.py:82:9-12: Unexpected keyword argument `key` in function `RadarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/radarr/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `RadarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/radarr/sensor.py:84:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RadarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/radarr/sensor.py:88:9-12: Unexpected keyword argument `key` in function `RadarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/radarr/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `RadarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/radarr/sensor.py:90:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RadarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/radarr/sensor.py:95:9-12: Unexpected keyword argument `key` in function `RadarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/radarr/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `RadarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/radarr/sensor.py:98:9-24: Unexpected keyword argument `entity_category` in function `RadarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/radarr/sensor.py:99:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RadarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/radarr/sensor.py:138:5-23: Class member `RadarrSensor.entity_description` overrides parent class `RadarrEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/radarr/sensor.py:138:5-23: Class member `RadarrSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/radio_browser/media_source.py:152:52-84: Argument `() -> int` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/radiotherm/__init__.py:74:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/radiotherm/climate.py:116:14-38: Class member `RadioThermostat._attr_supported_features` overrides parent class `RadioThermostatEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/radiotherm/coordinator.py:25:5-17: Class member `RadioThermUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainbird/__init__.py:131:32-43: `mac_address` may be uninitialized [unbound-name] +ERROR homeassistant/components/rainbird/__init__.py:154:23-34: `mac_address` may be uninitialized [unbound-name] +ERROR homeassistant/components/rainbird/binary_sensor.py:22:5-8: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainbird/binary_sensor.py:23:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainbird/binary_sensor.py:49:14-32: Class member `RainBirdSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainbird/calendar.py:82:21-45: Object of class `Timespan` has no attribute `program_id` [missing-attribute] +ERROR homeassistant/components/rainbird/calendar.py:85:19-42: Object of class `Timespan` has no attribute `rrule_str` [missing-attribute] +ERROR homeassistant/components/rainbird/calendar.py:97:39-56: Argument `tzinfo | None` is not assignable to parameter `tzinfo` with type `tzinfo` in function `pyrainbird.data.Schedule.timeline_tz` [bad-argument-type] +ERROR homeassistant/components/rainbird/calendar.py:103:25-49: Object of class `Timespan` has no attribute `program_id` [missing-attribute] +ERROR homeassistant/components/rainbird/calendar.py:106:23-46: Object of class `Timespan` has no attribute `rrule_str` [missing-attribute] +ERROR homeassistant/components/rainbird/config_flow.py:67:9-31: Class member `RainbirdConfigFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainbird/coordinator.py:61:5-17: Class member `RainbirdUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainbird/coordinator.py:145:5-17: Class member `RainbirdScheduleUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainbird/number.py:67:62-67: Argument `float` is not assignable to parameter `days` with type `int` in function `pyrainbird.async_client.AsyncRainbirdController.set_rain_delay` [bad-argument-type] +ERROR homeassistant/components/rainbird/sensor.py:20:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainbird/sensor.py:21:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainbird/sensor.py:53:14-32: Class member `RainBirdSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/raincloud/__init__.py:6:1-39: Could not find import of `raincloudy.core` [missing-import] +ERROR homeassistant/components/raincloud/switch.py:82:23-27: `Literal[True]` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/raincloud/switch.py:90:23-28: `Literal[False]` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/raincloud/switch.py:96:27-56: `bool` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/rainforest_eagle/coordinator.py:32:5-17: Class member `EagleDataCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainforest_eagle/coordinator.py:89:26-40: `eagle200_meter` may be uninitialized [unbound-name] +ERROR homeassistant/components/rainforest_eagle/coordinator.py:92:35-49: `eagle200_meter` may be uninitialized [unbound-name] +ERROR homeassistant/components/rainforest_eagle/coordinator.py:93:35-49: `eagle200_meter` may be uninitialized [unbound-name] +ERROR homeassistant/components/rainforest_eagle/coordinator.py:102:59-79: Argument `BoundMethod[Self@EagleDataCoordinator, (self: Self@EagleDataCoordinator) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/rainforest_eagle/sensor.py:24:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_eagle/sensor.py:25:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_eagle/sensor.py:31:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_eagle/sensor.py:32:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_eagle/sensor.py:38:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_eagle/sensor.py:39:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_eagle/sensor.py:61:21-24: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_eagle/sensor.py:62:21-36: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_eagle/sensor.py:80:14-32: Class member `EagleSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainforest_raven/coordinator.py:72:5-17: Class member `RAVEnDataCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainforest_raven/sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `RAVEnSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_raven/sensor.py:41:9-12: Unexpected keyword argument `key` in function `RAVEnSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_raven/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `RAVEnSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_raven/sensor.py:49:9-12: Unexpected keyword argument `key` in function `RAVEnSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_raven/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `RAVEnSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_raven/sensor.py:57:9-12: Unexpected keyword argument `key` in function `RAVEnSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_raven/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `RAVEnSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_raven/sensor.py:69:9-12: Unexpected keyword argument `key` in function `RAVEnSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_raven/sensor.py:72:9-24: Unexpected keyword argument `entity_category` in function `RAVEnSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_raven/sensor.py:104:25-40: Unexpected keyword argument `translation_key` in function `RAVEnSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_raven/sensor.py:105:25-28: Unexpected keyword argument `key` in function `RAVEnSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainforest_raven/sensor.py:124:5-23: Class member `RAVEnSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainforest_raven/sensor.py:124:5-23: Class member `RAVEnSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/binary_sensor.py:43:9-12: Unexpected keyword argument `key` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:49:9-12: Unexpected keyword argument `key` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:51:9-24: Unexpected keyword argument `entity_category` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:56:9-12: Unexpected keyword argument `key` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:58:9-24: Unexpected keyword argument `entity_category` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:63:9-12: Unexpected keyword argument `key` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:65:9-24: Unexpected keyword argument `entity_category` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:70:9-12: Unexpected keyword argument `key` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:72:9-24: Unexpected keyword argument `entity_category` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:77:9-12: Unexpected keyword argument `key` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:79:9-24: Unexpected keyword argument `entity_category` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:80:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:85:9-12: Unexpected keyword argument `key` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:87:9-24: Unexpected keyword argument `entity_category` in function `RainMachineBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/binary_sensor.py:142:5-23: Class member `CurrentRestrictionsBinarySensor.entity_description` overrides parent class `RainMachineEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/binary_sensor.py:142:5-23: Class member `CurrentRestrictionsBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/binary_sensor.py:164:5-23: Class member `ProvisionSettingsBinarySensor.entity_description` overrides parent class `RainMachineEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/binary_sensor.py:164:5-23: Class member `ProvisionSettingsBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/button.py:46:9-12: Unexpected keyword argument `key` in function `RainMachineButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/button.py:69:5-23: Class member `RainMachineButton._attr_device_class` overrides parent class `RainMachineEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/button.py:72:5-23: Class member `RainMachineButton.entity_description` overrides parent class `RainMachineEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/button.py:72:5-23: Class member `RainMachineButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/config_flow.py:62:9-31: Class member `RainMachineFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/coordinator.py:28:5-17: Class member `RainMachineDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/select.py:52:9-12: Unexpected keyword argument `key` in function `FreezeProtectionSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/select.py:53:9-24: Unexpected keyword argument `translation_key` in function `FreezeProtectionSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/select.py:54:9-24: Unexpected keyword argument `entity_category` in function `FreezeProtectionSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/select.py:109:5-23: Class member `FreezeProtectionTemperatureSelect.entity_description` overrides parent class `RainMachineEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/select.py:109:5-23: Class member `FreezeProtectionTemperatureSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/sensor.py:68:9-12: Unexpected keyword argument `key` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:71:9-24: Unexpected keyword argument `entity_category` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:72:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:78:9-12: Unexpected keyword argument `key` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:81:9-24: Unexpected keyword argument `entity_category` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:83:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:89:9-12: Unexpected keyword argument `key` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:91:9-24: Unexpected keyword argument `entity_category` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:93:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:99:9-12: Unexpected keyword argument `key` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:102:9-24: Unexpected keyword argument `entity_category` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:104:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:110:9-12: Unexpected keyword argument `key` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:112:9-13: Unexpected keyword argument `icon` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:113:9-24: Unexpected keyword argument `entity_category` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:115:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:120:9-12: Unexpected keyword argument `key` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:122:9-13: Unexpected keyword argument `icon` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:123:9-24: Unexpected keyword argument `entity_category` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:125:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:131:9-12: Unexpected keyword argument `key` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:132:9-24: Unexpected keyword argument `translation_key` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:133:9-13: Unexpected keyword argument `icon` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:134:9-24: Unexpected keyword argument `entity_category` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:135:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:141:9-12: Unexpected keyword argument `key` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:142:9-24: Unexpected keyword argument `translation_key` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:143:9-13: Unexpected keyword argument `icon` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:144:9-24: Unexpected keyword argument `entity_category` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:145:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RainMachineSensorDataDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:198:21-24: Unexpected keyword argument `key` in function `RainMachineSensorCompletionTimerDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:199:21-25: Unexpected keyword argument `name` in function `RainMachineSensorCompletionTimerDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:201:21-36: Unexpected keyword argument `entity_category` in function `RainMachineSensorCompletionTimerDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:214:21-24: Unexpected keyword argument `key` in function `RainMachineSensorCompletionTimerDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:215:21-25: Unexpected keyword argument `name` in function `RainMachineSensorCompletionTimerDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:217:21-36: Unexpected keyword argument `entity_category` in function `RainMachineSensorCompletionTimerDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/sensor.py:230:5-23: Class member `TimeRemainingSensor.entity_description` overrides parent class `RainMachineEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/sensor.py:230:5-23: Class member `TimeRemainingSensor.entity_description` overrides parent class `RestoreSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/sensor.py:314:5-23: Class member `ProvisionSettingsSensor.entity_description` overrides parent class `RainMachineEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/sensor.py:314:5-23: Class member `ProvisionSettingsSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/switch.py:158:9-12: Unexpected keyword argument `key` in function `RainMachineRestrictionSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/switch.py:159:9-24: Unexpected keyword argument `translation_key` in function `RainMachineRestrictionSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/switch.py:160:9-13: Unexpected keyword argument `icon` in function `RainMachineRestrictionSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/switch.py:165:9-12: Unexpected keyword argument `key` in function `RainMachineRestrictionSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/switch.py:166:9-24: Unexpected keyword argument `translation_key` in function `RainMachineRestrictionSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/switch.py:167:9-13: Unexpected keyword argument `icon` in function `RainMachineRestrictionSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/switch.py:216:25-28: Unexpected keyword argument `key` in function `RainMachineActivitySwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/switch.py:217:25-29: Unexpected keyword argument `name` in function `RainMachineActivitySwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/switch.py:231:25-28: Unexpected keyword argument `key` in function `RainMachineActivitySwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/switch.py:232:25-29: Unexpected keyword argument `name` in function `RainMachineActivitySwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/switch.py:253:5-23: Class member `RainMachineBaseSwitch.entity_description` overrides parent class `RainMachineEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/switch.py:253:5-23: Class member `RainMachineBaseSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/switch.py:295:5-23: Class member `RainMachineActivitySwitch.entity_description` overrides parent class `RainMachineBaseSwitch` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/switch.py:356:5-23: Class member `RainMachineEnabledSwitch.entity_description` overrides parent class `RainMachineBaseSwitch` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/switch.py:451:5-23: Class member `RainMachineRestrictionSwitch.entity_description` overrides parent class `RainMachineBaseSwitch` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/update.py:55:5-8: Unexpected keyword argument `key` in function `RainMachineUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rainmachine/update.py:70:7-30: Field `entity_description` is declared `EntityDescription` in ancestor `class RainMachineEntity: ... +`, which is not assignable to the type `UpdateEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/rainmachine/update.py:73:5-23: Class member `RainMachineUpdateEntity._attr_device_class` overrides parent class `RainMachineEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rainmachine/update.py:75:5-29: Class member `RainMachineUpdateEntity._attr_supported_features` overrides parent class `RainMachineEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rapt_ble/__init__.py:50:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/rapt_ble/sensor.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rapt_ble/sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rapt_ble/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rapt_ble/sensor.py:49:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rapt_ble/sensor.py:55:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rapt_ble/sensor.py:59:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rapt_ble/sensor.py:60:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rapt_ble/sensor.py:117:7-36: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/raspberry_pi/hardware.py:45:12-17: `board` is uninitialized [unbound-name] +ERROR homeassistant/components/raspberry_pi/hardware.py:55:33-38: `board` is uninitialized [unbound-name] +ERROR homeassistant/components/raspberry_pi/hardware.py:57:34-39: `board` is uninitialized [unbound-name] +ERROR homeassistant/components/raspberry_pi/hardware.py:62:34-39: `board` is uninitialized [unbound-name] +ERROR homeassistant/components/raspberry_pi/hardware.py:62:72-77: `board` is uninitialized [unbound-name] +ERROR homeassistant/components/raspyrfm/switch.py:7:1-43: Could not find import of `raspyrfm_client` [missing-import] +ERROR homeassistant/components/raspyrfm/switch.py:8:1-78: Could not find import of `raspyrfm_client.device_implementations.controlunit.actions` [missing-import] +ERROR homeassistant/components/raspyrfm/switch.py:9:1-11:2: Could not find import of `raspyrfm_client.device_implementations.controlunit.controlunit_constants` [missing-import] +ERROR homeassistant/components/raspyrfm/switch.py:12:1-14:2: Could not find import of `raspyrfm_client.device_implementations.gateway.manufacturer.gateway_constants` [missing-import] +ERROR homeassistant/components/raspyrfm/switch.py:15:1-87: Could not find import of `raspyrfm_client.device_implementations.manufacturer_constants` [missing-import] +ERROR homeassistant/components/rdw/binary_sensor.py:36:9-12: Unexpected keyword argument `key` in function `RDWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rdw/binary_sensor.py:37:9-24: Unexpected keyword argument `translation_key` in function `RDWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rdw/binary_sensor.py:41:9-12: Unexpected keyword argument `key` in function `RDWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rdw/binary_sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `RDWBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rdw/binary_sensor.py:71:5-23: Class member `RDWBinarySensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rdw/binary_sensor.py:71:5-23: Class member `RDWBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rdw/sensor.py:37:9-12: Unexpected keyword argument `key` in function `RDWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rdw/sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `RDWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rdw/sensor.py:43:9-12: Unexpected keyword argument `key` in function `RDWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rdw/sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `RDWSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rdw/sensor.py:71:5-23: Class member `RDWSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rdw/sensor.py:71:5-23: Class member `RDWSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/recollect_waste/config_flow.py:35:9-31: Class member `RecollectWasteConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/recollect_waste/sensor.py:31:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/recollect_waste/sensor.py:32:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/recollect_waste/sensor.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/recollect_waste/sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/recollect_waste/sensor.py:60:5-23: Class member `ReCollectWasteSensor._attr_device_class` overrides parent class `ReCollectWasteEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/recollect_waste/sensor.py:77:14-32: Class member `ReCollectWasteSensor.entity_description` overrides parent class `ReCollectWasteEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/recollect_waste/sensor.py:93:65-70: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/recollect_waste/sensor.py:95:58-63: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/recollect_waste/sensor.py:97:39-44: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/recorder/core.py:742:27-56: Argument `BoundMethod[Self@Recorder, (self: Self@Recorder) -> None]` is not assignable to parameter `target` with type `((**tuple[*@_]) -> Any) | Coroutine[Any, Any, Any]` in function `homeassistant.core.HomeAssistant.add_job` [bad-argument-type] +ERROR homeassistant/components/recorder/core.py:781:39-60: Argument `BoundMethod[Self@Recorder, (self: Self@Recorder) -> None]` is not assignable to parameter `target` with type `((**tuple[*@_]) -> Any) | Coroutine[Any, Any, Any]` in function `homeassistant.core.HomeAssistant.add_job` [bad-argument-type] +ERROR homeassistant/components/recorder/core.py:802:27-72: Argument `BoundMethod[Self@Recorder, (self: Self@Recorder) -> None]` is not assignable to parameter `target` with type `((**tuple[*@_]) -> Any) | Coroutine[Any, Any, Any]` in function `homeassistant.core.HomeAssistant.add_job` [bad-argument-type] +ERROR homeassistant/components/recorder/core.py:821:27-50: Argument `BoundMethod[Self@Recorder, (self: Self@Recorder) -> None]` is not assignable to parameter `target` with type `((**tuple[*@_]) -> Any) | Coroutine[Any, Any, Any]` in function `homeassistant.core.HomeAssistant.add_job` [bad-argument-type] +ERROR homeassistant/components/recorder/core.py:1419:54-74: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR homeassistant/components/recorder/db_schema.py:646:13-24: Unexpected keyword argument `metadata_id` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:647:13-20: Unexpected keyword argument `created` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:648:13-23: Unexpected keyword argument `created_ts` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:649:13-18: Unexpected keyword argument `start` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:650:13-21: Unexpected keyword argument `start_ts` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:651:13-17: Unexpected keyword argument `mean` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:652:13-24: Unexpected keyword argument `mean_weight` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:653:13-16: Unexpected keyword argument `min` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:654:13-16: Unexpected keyword argument `max` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:655:13-23: Unexpected keyword argument `last_reset` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:656:13-26: Unexpected keyword argument `last_reset_ts` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:657:13-18: Unexpected keyword argument `state` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:658:13-16: Unexpected keyword argument `sum` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:670:13-24: Unexpected keyword argument `metadata_id` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:671:13-20: Unexpected keyword argument `created` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:672:13-23: Unexpected keyword argument `created_ts` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:673:13-18: Unexpected keyword argument `start` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:674:13-21: Unexpected keyword argument `start_ts` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:675:13-17: Unexpected keyword argument `mean` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:676:13-24: Unexpected keyword argument `mean_weight` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:677:13-16: Unexpected keyword argument `min` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:678:13-16: Unexpected keyword argument `max` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:679:13-23: Unexpected keyword argument `last_reset` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:680:13-26: Unexpected keyword argument `last_reset_ts` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:681:13-18: Unexpected keyword argument `state` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/db_schema.py:682:13-16: Unexpected keyword argument `sum` in function `object.__init__` [unexpected-keyword] +ERROR homeassistant/components/recorder/executor.py:55:19-23: Argument `None` is not assignable to parameter `item` with type `_WorkItem[Any]` in function `_queue.SimpleQueue.put` [bad-argument-type] +ERROR homeassistant/components/recorder/migration.py:302:35-45: `is_current` may be uninitialized [unbound-name] +ERROR homeassistant/components/recorder/migration.py:2821:27-33: `states` may be uninitialized [unbound-name] +ERROR homeassistant/components/recorder/migration.py:2865:27-33: `events` may be uninitialized [unbound-name] +ERROR homeassistant/components/recorder/migration.py:2935:27-33: `events` may be uninitialized [unbound-name] +ERROR homeassistant/components/recorder/migration.py:3015:27-33: `states` may be uninitialized [unbound-name] +ERROR homeassistant/components/recorder/models/state.py:107:9-31: Class member `LazyState.last_changed_timestamp` overrides parent class `State` in an inconsistent manner [bad-override] +ERROR homeassistant/components/recorder/models/state.py:115:9-32: Class member `LazyState.last_reported_timestamp` overrides parent class `State` in an inconsistent manner [bad-override] +ERROR homeassistant/components/recorder/statistics.py:1846:26-31: Argument `float | Any | None` is not assignable to parameter with type `float` [bad-argument-type] +ERROR homeassistant/components/recorder/statistics.py:2249:52-69: `metadata_id_to_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/recorder/system_health/__init__.py:75:12-19: `db_runs` may be uninitialized [unbound-name] +ERROR homeassistant/components/recorder/table_managers/event_data.py:81:36-43: `data_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/recorder/table_managers/event_types.py:85:35-48: `event_type_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/recorder/table_managers/recorder_runs.py:90:27-30: `run` may be uninitialized [unbound-name] +ERROR homeassistant/components/recorder/table_managers/state_attributes.py:92:37-50: `attributes_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/recorder/table_managers/states_meta.py:96:34-45: `metadata_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/recorder/tasks.py:328:49-77: Argument `BoundMethod[Self@SynchronizeTask, (self: Self@SynchronizeTask) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/components/recorder/util.py:126:49-60: `timer_start` may be uninitialized [unbound-name] +ERROR homeassistant/components/recorder/websocket_api.py:245:13-18: `types` may be uninitialized [unbound-name] +ERROR homeassistant/components/recorder/websocket_api.py:369:40-54: Argument `BoundMethod[Event, (self: Event) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/components/recorder/websocket_api.py:425:40-54: Argument `BoundMethod[Event, (self: Event) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/components/recswitch/switch.py:8:1-50: Could not find import of `pyrecswitch` [missing-import] +ERROR homeassistant/components/reddit/sensor.py:88:12-27: Module `praw.exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/reddit/sensor.py:156:16-31: Module `praw.exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/refoss/coordinator.py:20:5-17: Class member `RefossDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/refoss/sensor.py:56:13-16: Unexpected keyword argument `key` in function `RefossSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/refoss/sensor.py:57:13-28: Unexpected keyword argument `translation_key` in function `RefossSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/refoss/sensor.py:66:13-16: Unexpected keyword argument `key` in function `RefossSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/refoss/sensor.py:67:13-28: Unexpected keyword argument `translation_key` in function `RefossSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/refoss/sensor.py:76:13-16: Unexpected keyword argument `key` in function `RefossSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/refoss/sensor.py:77:13-28: Unexpected keyword argument `translation_key` in function `RefossSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/refoss/sensor.py:86:13-16: Unexpected keyword argument `key` in function `RefossSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/refoss/sensor.py:87:13-28: Unexpected keyword argument `translation_key` in function `RefossSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/refoss/sensor.py:94:13-16: Unexpected keyword argument `key` in function `RefossSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/refoss/sensor.py:95:13-28: Unexpected keyword argument `translation_key` in function `RefossSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/refoss/sensor.py:104:13-16: Unexpected keyword argument `key` in function `RefossSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/refoss/sensor.py:105:13-28: Unexpected keyword argument `translation_key` in function `RefossSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/refoss/sensor.py:160:5-23: Class member `RefossSensor.entity_description` overrides parent class `RefossEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/refoss/sensor.py:160:5-23: Class member `RefossSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/refoss/sensor.py:179:17-50: Object of class `BaseDevice` has no attribute `get_value` [missing-attribute] +ERROR homeassistant/components/refoss/switch.py:65:16-45: Object of class `BaseDevice` has no attribute `is_on` [missing-attribute] +ERROR homeassistant/components/refoss/switch.py:69:15-52: Object of class `BaseDevice` has no attribute `async_turn_on` [missing-attribute] +ERROR homeassistant/components/refoss/switch.py:74:15-53: Object of class `BaseDevice` has no attribute `async_turn_off` [missing-attribute] +ERROR homeassistant/components/refoss/switch.py:79:15-51: Object of class `BaseDevice` has no attribute `async_toggle` [missing-attribute] +ERROR homeassistant/components/rehlko/__init__.py:45:39-65: Argument `(refresh_token: str) -> Coroutine[Unknown, Unknown, None]` is not assignable to parameter `callback` with type `(str | None) -> Awaitable[None]` in function `aiokem.main.AioKem.set_refresh_token_callback` [bad-argument-type] +ERROR homeassistant/components/rehlko/binary_sensor.py:44:9-12: Unexpected keyword argument `key` in function `RehlkoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/binary_sensor.py:46:9-24: Unexpected keyword argument `entity_category` in function `RehlkoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/binary_sensor.py:52:9-12: Unexpected keyword argument `key` in function `RehlkoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/binary_sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `RehlkoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/binary_sensor.py:58:9-12: Unexpected keyword argument `key` in function `RehlkoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/binary_sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `RehlkoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/binary_sensor.py:61:9-24: Unexpected keyword argument `entity_category` in function `RehlkoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/binary_sensor.py:94:5-23: Class member `RehlkoBinarySensorEntity.entity_description` overrides parent class `RehlkoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rehlko/binary_sensor.py:94:5-23: Class member `RehlkoBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rehlko/coordinator.py:37:5-17: Class member `RehlkoUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rehlko/sensor.py:53:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:55:9-24: Unexpected keyword argument `entity_category` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:60:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:67:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:74:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:81:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:86:9-24: Unexpected keyword argument `entity_category` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:89:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:96:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:101:9-24: Unexpected keyword argument `entity_category` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:104:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:111:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:116:9-24: Unexpected keyword argument `entity_category` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:117:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:120:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:125:9-24: Unexpected keyword argument `entity_category` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:126:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:130:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:131:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:135:9-24: Unexpected keyword argument `entity_category` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:136:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:139:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:140:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:141:9-24: Unexpected keyword argument `entity_category` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:142:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:146:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:147:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:148:9-24: Unexpected keyword argument `entity_category` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:149:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:152:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:153:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:159:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:166:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:167:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:173:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:174:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:177:9-24: Unexpected keyword argument `entity_category` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:180:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:181:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:185:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:186:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:189:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:190:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:193:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:194:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:199:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:200:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:204:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:207:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:208:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:212:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:215:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:216:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:220:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:223:9-12: Unexpected keyword argument `key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:224:9-24: Unexpected keyword argument `translation_key` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:228:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RehlkoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rehlko/sensor.py:259:5-23: Class member `RehlkoSensorEntity.entity_description` overrides parent class `RehlkoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rehlko/sensor.py:259:5-23: Class member `RehlkoSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rejseplanen/sensor.py:14:8-12: Could not find import of `rjpl` [missing-import] +ERROR homeassistant/components/remember_the_milk/__init__.py:127:51-56: Argument `Unknown | None` is not assignable to parameter `token` with type `str` in function `homeassistant.components.remember_the_milk.storage.RememberTheMilkConfiguration.set_token` [bad-argument-type] +ERROR homeassistant/components/remember_the_milk/__init__.py:135:13-18: Argument `Unknown | None` is not assignable to parameter `token` with type `str` in function `_create_instance` [bad-argument-type] +ERROR homeassistant/components/remote/__init__.py:163:5-23: Class member `RemoteEntity.entity_description` overrides parent class `ToggleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/remote/__init__.py:166:5-29: Class member `RemoteEntity._attr_supported_features` overrides parent class `ToggleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/remote/reproduce_state.py:56:17-24: `service` may be uninitialized [unbound-name] +ERROR homeassistant/components/remote_calendar/calendar.py:78:55-70: Argument `() -> list[CalendarEvent]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/remote_calendar/calendar.py:94:65-78: Argument `() -> SortableItemTimeline[Event] | None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/remote_calendar/coordinator.py:28:5-17: Class member `RemoteCalendarDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/remote_rpi_gpio/__init__.py:39:21-33: `pull_gpio_up` may be uninitialized [unbound-name] +ERROR homeassistant/components/renault/binary_sensor.py:69:5-23: Class member `RenaultBinarySensor.entity_description` overrides parent class `RenaultDataEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renault/binary_sensor.py:69:5-23: Class member `RenaultBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renault/binary_sensor.py:104:13-16: Unexpected keyword argument `key` in function `RenaultBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/binary_sensor.py:110:13-16: Unexpected keyword argument `key` in function `RenaultBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/binary_sensor.py:117:13-16: Unexpected keyword argument `key` in function `RenaultBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/binary_sensor.py:121:13-28: Unexpected keyword argument `translation_key` in function `RenaultBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/binary_sensor.py:124:13-16: Unexpected keyword argument `key` in function `RenaultBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/binary_sensor.py:132:13-16: Unexpected keyword argument `key` in function `RenaultBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/binary_sensor.py:138:13-28: Unexpected keyword argument `translation_key` in function `RenaultBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/binary_sensor.py:143:13-16: Unexpected keyword argument `key` in function `RenaultBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/binary_sensor.py:149:13-28: Unexpected keyword argument `translation_key` in function `RenaultBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/button.py:47:5-23: Class member `RenaultButtonEntity.entity_description` overrides parent class `RenaultEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renault/button.py:47:5-23: Class member `RenaultButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renault/button.py:57:9-12: Unexpected keyword argument `key` in function `RenaultButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/button.py:58:9-24: Unexpected keyword argument `translation_key` in function `RenaultButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/button.py:62:9-12: Unexpected keyword argument `key` in function `RenaultButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/button.py:64:9-24: Unexpected keyword argument `translation_key` in function `RenaultButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/button.py:68:9-12: Unexpected keyword argument `key` in function `RenaultButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/button.py:70:9-24: Unexpected keyword argument `translation_key` in function `RenaultButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/coordinator.py:35:5-17: Class member `RenaultDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renault/coordinator.py:36:5-18: Class member `RenaultDataUpdateCoordinator.update_method` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renault/coordinator.py:86:22-37: Class member `RenaultDataUpdateCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renault/coordinator.py:86:40-44: `None` is not assignable to attribute `update_interval` with type `(self: Self@RenaultDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/renault/coordinator.py:102:36-40: `None` is not assignable to attribute `update_interval` with type `(self: Self@RenaultDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/renault/device_tracker.py:50:5-23: Class member `RenaultDeviceTracker.entity_description` overrides parent class `RenaultDataEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renault/device_tracker.py:50:5-23: Class member `RenaultDeviceTracker.entity_description` overrides parent class `TrackerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renault/device_tracker.py:65:9-12: Unexpected keyword argument `key` in function `RenaultTrackerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/device_tracker.py:67:9-24: Unexpected keyword argument `translation_key` in function `RenaultTrackerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/renault_vehicle.py:103:47-60: `timedelta` is not assignable to attribute `update_interval` with type `(self: RenaultDataUpdateCoordinator[Unknown], value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/renault/select.py:52:5-23: Class member `RenaultSelectEntity.entity_description` overrides parent class `RenaultDataEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renault/select.py:52:5-23: Class member `RenaultSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renault/select.py:71:9-12: Unexpected keyword argument `key` in function `RenaultSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/select.py:74:9-24: Unexpected keyword argument `translation_key` in function `RenaultSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:82:5-23: Class member `RenaultSensor.entity_description` overrides parent class `RenaultDataEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renault/sensor.py:82:5-23: Class member `RenaultSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renault/sensor.py:133:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:142:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:145:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:161:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:168:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:174:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:182:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:187:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:196:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:199:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:202:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:215:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:222:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:225:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:232:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:235:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:242:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:245:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:250:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:252:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:255:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:263:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:266:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:275:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:278:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:287:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:290:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:297:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:300:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:305:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:308:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:313:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:314:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:318:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:323:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:324:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:328:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:332:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:335:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:339:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:340:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:343:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:350:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:353:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:360:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:363:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:370:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:373:9-12: Unexpected keyword argument `key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renault/sensor.py:380:9-24: Unexpected keyword argument `translation_key` in function `RenaultSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/__init__.py:42:46-57: Argument `BoundMethod[RensonVentilation, (self: RensonVentilation) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/renson/__init__.py:62:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/renson/binary_sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:44:9-12: Unexpected keyword argument `key` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:46:9-24: Unexpected keyword argument `entity_category` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:49:9-12: Unexpected keyword argument `key` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:52:9-24: Unexpected keyword argument `entity_category` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:55:9-12: Unexpected keyword argument `key` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:60:9-12: Unexpected keyword argument `key` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:63:9-24: Unexpected keyword argument `entity_category` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:66:9-12: Unexpected keyword argument `key` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:69:9-24: Unexpected keyword argument `entity_category` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:72:9-12: Unexpected keyword argument `key` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:73:9-24: Unexpected keyword argument `translation_key` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:75:9-24: Unexpected keyword argument `entity_category` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:78:9-12: Unexpected keyword argument `key` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:81:9-24: Unexpected keyword argument `entity_category` in function `RensonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/binary_sensor.py:119:14-32: Class member `RensonBinarySensor.entity_description` overrides parent class `RensonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renson/button.py:34:9-12: Unexpected keyword argument `key` in function `RensonButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/button.py:35:9-24: Unexpected keyword argument `entity_category` in function `RensonButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/button.py:36:9-24: Unexpected keyword argument `translation_key` in function `RensonButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/button.py:40:9-12: Unexpected keyword argument `key` in function `RensonButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/button.py:42:9-24: Unexpected keyword argument `entity_category` in function `RensonButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/button.py:46:9-12: Unexpected keyword argument `key` in function `RensonButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/button.py:47:9-24: Unexpected keyword argument `translation_key` in function `RensonButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/button.py:48:9-24: Unexpected keyword argument `entity_category` in function `RensonButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/button.py:75:5-23: Class member `RensonButton.entity_description` overrides parent class `RensonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renson/button.py:75:5-23: Class member `RensonButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renson/config_flow.py:38:55-66: Argument `BoundMethod[RensonVentilation, (self: RensonVentilation) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/renson/coordinator.py:24:5-17: Class member `RensonCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renson/coordinator.py:47:59-80: Argument `BoundMethod[RensonVentilation, (self: RensonVentilation) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/renson/fan.py:124:5-29: Class member `RensonFan._attr_supported_features` overrides parent class `RensonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renson/fan.py:197:62-86: Argument `FieldEnum` is not assignable to parameter `fieldname` with type `str` in function `renson_endura_delta.renson.RensonVentilation.get_field_value` [bad-argument-type] +ERROR homeassistant/components/renson/fan.py:198:51-200:14: Unpacked argument `tuple[Level, str, Literal[True]]` is not assignable to parameter `*args` with type `tuple[Level, int, bool]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/renson/fan.py:241:13-24: Argument `str` is not assignable to parameter `co2_control` with type `bool` in function `renson_endura_delta.renson.RensonVentilation.set_pollution` [bad-argument-type] +ERROR homeassistant/components/renson/fan.py:242:13-26: Argument `int` is not assignable to parameter `co2_threshold` with type `bool` in function `renson_endura_delta.renson.RensonVentilation.set_pollution` [bad-argument-type] +ERROR homeassistant/components/renson/fan.py:243:13-27: Argument `int` is not assignable to parameter `co2_hysteresis` with type `bool` in function `renson_endura_delta.renson.RensonVentilation.set_pollution` [bad-argument-type] +ERROR homeassistant/components/renson/number.py:28:5-8: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/number.py:29:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/number.py:33:5-20: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/number.py:34:5-20: Unexpected keyword argument `has_entity_name` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/number.py:67:14-32: Class member `RensonNumber.entity_description` overrides parent class `RensonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renson/number.py:82:47-80: Unpacked argument `tuple[float]` is not assignable to parameter `*args` with type `tuple[int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/renson/sensor.py:64:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:72:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:73:9-24: Unexpected keyword argument `translation_key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:80:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:88:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:96:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:104:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:112:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:113:9-24: Unexpected keyword argument `translation_key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:120:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:129:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:130:9-24: Unexpected keyword argument `translation_key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:138:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:139:9-24: Unexpected keyword argument `translation_key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:147:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:155:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:156:9-24: Unexpected keyword argument `translation_key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:163:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:164:9-24: Unexpected keyword argument `translation_key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:171:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:172:9-24: Unexpected keyword argument `translation_key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:179:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:180:9-24: Unexpected keyword argument `translation_key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:183:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:188:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:189:9-24: Unexpected keyword argument `translation_key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:192:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:197:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:198:9-24: Unexpected keyword argument `translation_key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:202:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:205:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:206:9-24: Unexpected keyword argument `translation_key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:210:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:213:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:214:9-24: Unexpected keyword argument `translation_key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:222:9-12: Unexpected keyword argument `key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:223:9-24: Unexpected keyword argument `translation_key` in function `RensonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/sensor.py:248:14-32: Class member `RensonSensor.entity_description` overrides parent class `RensonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renson/switch.py:26:5-23: Class member `RensonBreezeSwitch._attr_device_class` overrides parent class `RensonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renson/time.py:34:9-12: Unexpected keyword argument `key` in function `RensonTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/time.py:35:9-24: Unexpected keyword argument `entity_category` in function `RensonTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/time.py:36:9-24: Unexpected keyword argument `translation_key` in function `RensonTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/time.py:41:9-12: Unexpected keyword argument `key` in function `RensonTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/time.py:42:9-24: Unexpected keyword argument `translation_key` in function `RensonTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/time.py:43:9-24: Unexpected keyword argument `entity_category` in function `RensonTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/renson/time.py:69:5-23: Class member `RensonTime.entity_description` overrides parent class `RensonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/renson/time.py:69:5-23: Class member `RensonTime.entity_description` overrides parent class `TimeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/binary_sensor.py:73:9-12: Unexpected keyword argument `key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:80:9-12: Unexpected keyword argument `key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:87:9-12: Unexpected keyword argument `key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:94:9-12: Unexpected keyword argument `key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:101:9-12: Unexpected keyword argument `key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:103:9-24: Unexpected keyword argument `translation_key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:108:9-12: Unexpected keyword argument `key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:110:9-24: Unexpected keyword argument `translation_key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:118:9-12: Unexpected keyword argument `key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:120:9-24: Unexpected keyword argument `translation_key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:125:9-12: Unexpected keyword argument `key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:127:9-24: Unexpected keyword argument `translation_key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:132:9-12: Unexpected keyword argument `key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:134:9-24: Unexpected keyword argument `translation_key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:140:9-12: Unexpected keyword argument `key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:142:9-24: Unexpected keyword argument `translation_key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:150:9-12: Unexpected keyword argument `key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:153:9-24: Unexpected keyword argument `translation_key` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:154:9-24: Unexpected keyword argument `entity_category` in function `ReolinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:162:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:165:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:175:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:178:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:188:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:191:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:201:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:204:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:214:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:217:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:227:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:230:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:240:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:243:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:253:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:256:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:266:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:269:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:279:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:282:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:287:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:290:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAIBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:297:5-8: Unexpected keyword argument `key` in function `ReolinkIndexBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:299:5-20: Unexpected keyword argument `translation_key` in function `ReolinkIndexBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/binary_sensor.py:348:5-23: Class member `ReolinkBinarySensorEntity.entity_description` overrides parent class `ReolinkChannelCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/binary_sensor.py:348:5-23: Class member `ReolinkBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/binary_sensor.py:404:5-23: Class member `ReolinkSmartAIBinarySensorEntity.entity_description` overrides parent class `ReolinkChannelCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/binary_sensor.py:404:5-23: Class member `ReolinkSmartAIBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/binary_sensor.py:419:14-29: Class member `ReolinkSmartAIBinarySensorEntity._attr_unique_id` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/binary_sensor.py:441:5-23: Class member `ReolinkIndexBinarySensorEntity.entity_description` overrides parent class `ReolinkChannelCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/binary_sensor.py:441:5-23: Class member `ReolinkIndexBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/binary_sensor.py:453:14-29: Class member `ReolinkIndexBinarySensorEntity._attr_unique_id` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/button.py:64:9-12: Unexpected keyword argument `key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:65:9-24: Unexpected keyword argument `translation_key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:73:9-12: Unexpected keyword argument `key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:74:9-24: Unexpected keyword argument `translation_key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:80:9-12: Unexpected keyword argument `key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:81:9-24: Unexpected keyword argument `translation_key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:87:9-12: Unexpected keyword argument `key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:88:9-24: Unexpected keyword argument `translation_key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:94:9-12: Unexpected keyword argument `key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:95:9-24: Unexpected keyword argument `translation_key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:101:9-12: Unexpected keyword argument `key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:102:9-24: Unexpected keyword argument `translation_key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:103:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:109:9-12: Unexpected keyword argument `key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:110:9-24: Unexpected keyword argument `translation_key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:111:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:117:9-12: Unexpected keyword argument `key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:118:9-24: Unexpected keyword argument `translation_key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:119:9-24: Unexpected keyword argument `entity_category` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:124:9-12: Unexpected keyword argument `key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:125:9-24: Unexpected keyword argument `translation_key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:130:9-12: Unexpected keyword argument `key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:131:9-24: Unexpected keyword argument `translation_key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:132:9-24: Unexpected keyword argument `entity_category` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:137:9-12: Unexpected keyword argument `key` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:140:9-24: Unexpected keyword argument `entity_category` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:141:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:149:9-12: Unexpected keyword argument `key` in function `ReolinkHostButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:152:9-24: Unexpected keyword argument `entity_category` in function `ReolinkHostButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:153:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkHostButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/button.py:193:5-23: Class member `ReolinkButtonEntity.entity_description` overrides parent class `ReolinkChannelCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/button.py:193:5-23: Class member `ReolinkButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/button.py:233:5-23: Class member `ReolinkHostButtonEntity.entity_description` overrides parent class `ReolinkHostCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/button.py:233:5-23: Class member `ReolinkHostButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/camera.py:37:9-12: Unexpected keyword argument `key` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:39:9-24: Unexpected keyword argument `translation_key` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:43:9-12: Unexpected keyword argument `key` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:45:9-24: Unexpected keyword argument `translation_key` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:47:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:50:9-12: Unexpected keyword argument `key` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:52:9-24: Unexpected keyword argument `translation_key` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:54:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:57:9-12: Unexpected keyword argument `key` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:59:9-24: Unexpected keyword argument `translation_key` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:61:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:64:9-12: Unexpected keyword argument `key` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:66:9-24: Unexpected keyword argument `translation_key` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:68:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:71:9-12: Unexpected keyword argument `key` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:73:9-24: Unexpected keyword argument `translation_key` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:77:9-12: Unexpected keyword argument `key` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:79:9-24: Unexpected keyword argument `translation_key` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:81:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:84:9-12: Unexpected keyword argument `key` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:86:9-24: Unexpected keyword argument `translation_key` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:88:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:91:9-12: Unexpected keyword argument `key` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:93:9-24: Unexpected keyword argument `translation_key` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:95:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/camera.py:127:5-23: Class member `ReolinkCamera.entity_description` overrides parent class `ReolinkChannelCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/camera.py:127:5-23: Class member `ReolinkCamera.entity_description` overrides parent class `Camera` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/camera.py:141:18-42: Class member `ReolinkCamera._attr_supported_features` overrides parent class `ReolinkChannelCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/config_flow.py:119:9-31: Class member `ReolinkFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/entity.py:60:5-23: Class member `ReolinkHostCoordinatorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/entity.py:73:14-29: Class member `ReolinkHostCoordinatorEntity._attr_unique_id` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/entity.py:81:30-87: `str` is not assignable to attribute `_conf_url` with type `None` [bad-assignment] +ERROR homeassistant/components/reolink/light.py:62:9-12: Unexpected keyword argument `key` in function `ReolinkLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/light.py:65:9-24: Unexpected keyword argument `translation_key` in function `ReolinkLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/light.py:77:9-12: Unexpected keyword argument `key` in function `ReolinkLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/light.py:79:9-24: Unexpected keyword argument `translation_key` in function `ReolinkLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/light.py:80:9-24: Unexpected keyword argument `entity_category` in function `ReolinkLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/light.py:89:9-12: Unexpected keyword argument `key` in function `ReolinkHostLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/light.py:91:9-24: Unexpected keyword argument `translation_key` in function `ReolinkHostLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/light.py:92:9-24: Unexpected keyword argument `entity_category` in function `ReolinkHostLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/light.py:126:5-23: Class member `ReolinkLightEntity.entity_description` overrides parent class `ReolinkChannelCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/light.py:126:5-23: Class member `ReolinkLightEntity.entity_description` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/light.py:213:5-23: Class member `ReolinkHostLightEntity.entity_description` overrides parent class `ReolinkHostCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/light.py:213:5-23: Class member `ReolinkHostLightEntity.entity_description` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/media_source.py:55:5-9: Class member `ReolinkVODMediaSource.name` overrides parent class `MediaSource` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/number.py:88:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:90:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:100:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:102:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:115:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:118:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:119:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:120:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:129:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:132:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:133:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:134:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:145:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:147:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:148:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:159:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:162:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:163:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:165:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:177:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:180:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:181:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:183:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:195:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:197:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:198:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:207:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:209:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:210:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:219:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:221:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:222:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:231:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:233:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:234:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:235:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:244:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:246:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:247:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:258:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:260:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:261:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:270:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:272:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:273:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:282:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:284:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:285:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:287:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:297:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:299:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:300:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:311:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:313:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:314:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:325:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:327:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:328:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:339:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:341:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:342:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:356:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:358:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:359:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:370:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:372:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:373:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:386:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:388:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:389:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:400:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:402:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:403:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:412:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:414:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:415:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:417:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:429:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:431:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:432:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:434:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:446:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:448:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:449:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:451:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:465:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:467:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:468:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:470:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:482:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:484:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:485:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:487:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:499:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:501:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:502:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:504:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:518:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:520:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:521:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:523:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:535:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:537:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:538:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:549:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:551:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:552:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:553:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:562:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:564:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:565:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:566:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:575:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:577:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:578:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:580:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:592:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:594:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:595:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:597:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:607:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:609:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:610:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:611:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:620:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:623:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:624:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:625:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:634:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:637:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:638:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:639:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:648:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:651:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:652:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:653:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:662:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:665:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:666:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:667:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:676:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:679:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:680:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:681:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:690:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:692:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:693:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:694:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:706:9-12: Unexpected keyword argument `key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:708:9-24: Unexpected keyword argument `translation_key` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:709:9-24: Unexpected keyword argument `entity_category` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:710:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:725:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:728:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:729:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:730:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:743:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:746:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:747:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:748:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:761:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:764:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:765:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:766:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:779:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:782:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:783:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:784:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:797:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:800:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:801:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:802:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:813:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:816:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:817:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:818:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:831:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:834:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:835:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:836:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:848:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:851:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:852:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:853:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:866:9-12: Unexpected keyword argument `key` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:869:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:870:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:871:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSmartAINumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:887:9-12: Unexpected keyword argument `key` in function `ReolinkHostNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:889:9-24: Unexpected keyword argument `translation_key` in function `ReolinkHostNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:890:9-24: Unexpected keyword argument `entity_category` in function `ReolinkHostNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:899:9-12: Unexpected keyword argument `key` in function `ReolinkHostNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:901:9-24: Unexpected keyword argument `translation_key` in function `ReolinkHostNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:902:9-24: Unexpected keyword argument `entity_category` in function `ReolinkHostNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:914:9-12: Unexpected keyword argument `key` in function `ReolinkChimeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:916:9-24: Unexpected keyword argument `translation_key` in function `ReolinkChimeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:917:9-24: Unexpected keyword argument `entity_category` in function `ReolinkChimeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:925:9-12: Unexpected keyword argument `key` in function `ReolinkChimeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:927:9-24: Unexpected keyword argument `translation_key` in function `ReolinkChimeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:928:9-24: Unexpected keyword argument `entity_category` in function `ReolinkChimeNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/number.py:987:5-23: Class member `ReolinkNumberEntity.entity_description` overrides parent class `ReolinkChannelCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/number.py:987:5-23: Class member `ReolinkNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/number.py:1024:5-23: Class member `ReolinkSmartAINumberEntity.entity_description` overrides parent class `ReolinkChannelCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/number.py:1024:5-23: Class member `ReolinkSmartAINumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/number.py:1040:14-29: Class member `ReolinkSmartAINumberEntity._attr_unique_id` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/number.py:1069:5-23: Class member `ReolinkHostNumberEntity.entity_description` overrides parent class `ReolinkHostCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/number.py:1069:5-23: Class member `ReolinkHostNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/number.py:1097:5-23: Class member `ReolinkChimeNumberEntity.entity_description` overrides parent class `ReolinkChimeCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/number.py:1097:5-23: Class member `ReolinkChimeNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/number.py:1126:5-23: Class member `ReolinkHostChimeNumberEntity.entity_description` overrides parent class `ReolinkHostChimeCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/number.py:1126:5-23: Class member `ReolinkHostChimeNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/select.py:89:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:92:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:93:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:100:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:103:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:104:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:115:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:118:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:119:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:126:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:127:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:133:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:134:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:142:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:144:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:145:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:154:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:156:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:157:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:166:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:168:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:169:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:180:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:182:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:183:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:190:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:192:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:193:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:202:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:204:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:205:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:206:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:213:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:215:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:216:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:217:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:224:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:226:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:227:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:228:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:237:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:239:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:240:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:241:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:242:9-28: Unexpected keyword argument `unit_of_measurement` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:249:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:251:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:252:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:253:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:254:9-28: Unexpected keyword argument `unit_of_measurement` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:261:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:263:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:264:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:265:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:266:9-28: Unexpected keyword argument `unit_of_measurement` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:273:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:275:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:276:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:277:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:278:9-28: Unexpected keyword argument `unit_of_measurement` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:285:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:287:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:288:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:289:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:296:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:298:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:299:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:300:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:307:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:309:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:310:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:311:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:312:9-28: Unexpected keyword argument `unit_of_measurement` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:321:9-12: Unexpected keyword argument `key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:323:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:324:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:325:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:335:9-12: Unexpected keyword argument `key` in function `ReolinkHostSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:337:9-24: Unexpected keyword argument `translation_key` in function `ReolinkHostSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:338:9-24: Unexpected keyword argument `entity_category` in function `ReolinkHostSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:345:9-12: Unexpected keyword argument `key` in function `ReolinkHostSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:347:9-24: Unexpected keyword argument `translation_key` in function `ReolinkHostSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:348:9-24: Unexpected keyword argument `entity_category` in function `ReolinkHostSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:349:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkHostSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:359:9-12: Unexpected keyword argument `key` in function `ReolinkChimeSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:361:9-24: Unexpected keyword argument `translation_key` in function `ReolinkChimeSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:362:9-24: Unexpected keyword argument `entity_category` in function `ReolinkChimeSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:369:9-12: Unexpected keyword argument `key` in function `ReolinkChimeSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:371:9-24: Unexpected keyword argument `translation_key` in function `ReolinkChimeSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:372:9-24: Unexpected keyword argument `entity_category` in function `ReolinkChimeSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:379:9-12: Unexpected keyword argument `key` in function `ReolinkChimeSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:381:9-24: Unexpected keyword argument `translation_key` in function `ReolinkChimeSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:382:9-24: Unexpected keyword argument `entity_category` in function `ReolinkChimeSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:389:9-12: Unexpected keyword argument `key` in function `ReolinkChimeSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:391:9-24: Unexpected keyword argument `translation_key` in function `ReolinkChimeSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:392:9-24: Unexpected keyword argument `entity_category` in function `ReolinkChimeSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:399:9-12: Unexpected keyword argument `key` in function `ReolinkChimeSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:401:9-24: Unexpected keyword argument `translation_key` in function `ReolinkChimeSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:402:9-24: Unexpected keyword argument `entity_category` in function `ReolinkChimeSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/select.py:448:5-23: Class member `ReolinkSelectEntity.entity_description` overrides parent class `ReolinkChannelCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/select.py:448:5-23: Class member `ReolinkSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/select.py:493:5-23: Class member `ReolinkHostSelectEntity.entity_description` overrides parent class `ReolinkHostCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/select.py:493:5-23: Class member `ReolinkHostSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/select.py:520:5-23: Class member `ReolinkChimeSelectEntity.entity_description` overrides parent class `ReolinkChimeCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/select.py:520:5-23: Class member `ReolinkChimeSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/select.py:548:5-23: Class member `ReolinkHostChimeSelectEntity.entity_description` overrides parent class `ReolinkHostChimeCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/select.py:548:5-23: Class member `ReolinkHostChimeSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/sensor.py:63:9-12: Unexpected keyword argument `key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:67:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:72:9-12: Unexpected keyword argument `key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:76:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:81:9-12: Unexpected keyword argument `key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:87:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:92:9-12: Unexpected keyword argument `key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:95:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:99:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:100:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:105:9-12: Unexpected keyword argument `key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:108:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:110:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:111:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:117:9-12: Unexpected keyword argument `key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:120:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:122:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:128:9-12: Unexpected keyword argument `key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:130:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:133:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:135:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:140:9-12: Unexpected keyword argument `key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:142:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:151:9-12: Unexpected keyword argument `key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:153:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:162:9-12: Unexpected keyword argument `key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:164:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:176:9-12: Unexpected keyword argument `key` in function `ReolinkHostSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:179:9-24: Unexpected keyword argument `translation_key` in function `ReolinkHostSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:182:9-24: Unexpected keyword argument `entity_category` in function `ReolinkHostSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:184:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkHostSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:189:9-12: Unexpected keyword argument `key` in function `ReolinkHostSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:191:9-24: Unexpected keyword argument `translation_key` in function `ReolinkHostSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:194:9-24: Unexpected keyword argument `entity_category` in function `ReolinkHostSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:195:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkHostSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:203:9-12: Unexpected keyword argument `key` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:207:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:208:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/sensor.py:248:5-23: Class member `ReolinkSensorEntity.entity_description` overrides parent class `ReolinkChannelCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/sensor.py:248:5-23: Class member `ReolinkSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/sensor.py:269:5-23: Class member `ReolinkHostSensorEntity.entity_description` overrides parent class `ReolinkHostCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/sensor.py:269:5-23: Class member `ReolinkHostSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/sensor.py:289:5-23: Class member `ReolinkHddSensorEntity.entity_description` overrides parent class `ReolinkHostCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/sensor.py:289:5-23: Class member `ReolinkHddSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/sensor.py:302:14-29: Class member `ReolinkHddSensorEntity._attr_unique_id` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/siren.py:45:9-12: Unexpected keyword argument `key` in function `ReolinkSirenEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/siren.py:47:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSirenEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/siren.py:54:9-12: Unexpected keyword argument `key` in function `ReolinkHostSirenEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/siren.py:55:9-24: Unexpected keyword argument `translation_key` in function `ReolinkHostSirenEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/siren.py:86:5-29: Class member `ReolinkSirenEntity._attr_supported_features` overrides parent class `ReolinkChannelCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/siren.py:92:5-23: Class member `ReolinkSirenEntity.entity_description` overrides parent class `ReolinkChannelCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/siren.py:92:5-23: Class member `ReolinkSirenEntity.entity_description` overrides parent class `SirenEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/siren.py:126:5-29: Class member `ReolinkHostSirenEntity._attr_supported_features` overrides parent class `ReolinkHostCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/siren.py:129:5-23: Class member `ReolinkHostSirenEntity.entity_description` overrides parent class `ReolinkHostCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/siren.py:129:5-23: Class member `ReolinkHostSirenEntity.entity_description` overrides parent class `SirenEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/switch.py:77:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:79:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:80:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:86:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:88:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:89:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:95:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:97:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:98:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:104:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:106:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:107:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:113:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:115:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:116:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:122:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:124:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:125:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:131:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:132:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:138:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:140:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:141:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:147:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:149:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:150:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:156:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:158:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:159:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:165:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:167:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:168:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:174:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:177:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:178:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:184:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:186:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:187:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:193:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:195:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:196:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:202:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:204:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:205:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:211:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:213:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:214:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:215:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:221:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:223:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:224:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:225:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:231:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:233:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:234:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:240:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:242:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:243:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:249:9-12: Unexpected keyword argument `key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:251:9-24: Unexpected keyword argument `translation_key` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:252:9-24: Unexpected keyword argument `entity_category` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:253:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ReolinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:262:9-12: Unexpected keyword argument `key` in function `ReolinkHostSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:264:9-24: Unexpected keyword argument `translation_key` in function `ReolinkHostSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:265:9-24: Unexpected keyword argument `entity_category` in function `ReolinkHostSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:271:9-12: Unexpected keyword argument `key` in function `ReolinkHostSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:273:9-24: Unexpected keyword argument `translation_key` in function `ReolinkHostSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:274:9-24: Unexpected keyword argument `entity_category` in function `ReolinkHostSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:280:9-12: Unexpected keyword argument `key` in function `ReolinkHostSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:282:9-24: Unexpected keyword argument `translation_key` in function `ReolinkHostSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:283:9-24: Unexpected keyword argument `entity_category` in function `ReolinkHostSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:289:9-12: Unexpected keyword argument `key` in function `ReolinkHostSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:291:9-24: Unexpected keyword argument `translation_key` in function `ReolinkHostSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:292:9-24: Unexpected keyword argument `entity_category` in function `ReolinkHostSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:298:9-12: Unexpected keyword argument `key` in function `ReolinkHostSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:300:9-24: Unexpected keyword argument `translation_key` in function `ReolinkHostSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:301:9-24: Unexpected keyword argument `entity_category` in function `ReolinkHostSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:310:9-12: Unexpected keyword argument `key` in function `ReolinkChimeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:312:9-24: Unexpected keyword argument `translation_key` in function `ReolinkChimeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:313:9-24: Unexpected keyword argument `entity_category` in function `ReolinkChimeSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:320:5-8: Unexpected keyword argument `key` in function `ReolinkSwitchIndexEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:322:5-20: Unexpected keyword argument `translation_key` in function `ReolinkSwitchIndexEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/switch.py:372:5-23: Class member `ReolinkSwitchEntity.entity_description` overrides parent class `ReolinkChannelCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/switch.py:372:5-23: Class member `ReolinkSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/switch.py:405:5-23: Class member `ReolinkHostSwitchEntity.entity_description` overrides parent class `ReolinkHostCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/switch.py:405:5-23: Class member `ReolinkHostSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/switch.py:437:5-23: Class member `ReolinkChimeSwitchEntity.entity_description` overrides parent class `ReolinkChimeCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/switch.py:437:5-23: Class member `ReolinkChimeSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/switch.py:470:5-23: Class member `ReolinkHostChimeSwitchEntity.entity_description` overrides parent class `ReolinkHostChimeCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/switch.py:470:5-23: Class member `ReolinkHostChimeSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/switch.py:503:5-23: Class member `ReolinkIndexSwitchEntity.entity_description` overrides parent class `ReolinkChannelCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/switch.py:503:5-23: Class member `ReolinkIndexSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/switch.py:519:14-29: Class member `ReolinkIndexSwitchEntity._attr_unique_id` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/update.py:60:9-12: Unexpected keyword argument `key` in function `ReolinkUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/update.py:68:9-12: Unexpected keyword argument `key` in function `ReolinkHostUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/reolink/update.py:272:5-23: Class member `ReolinkUpdateEntity.entity_description` overrides parent class `ReolinkUpdateBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/update.py:272:5-23: Class member `ReolinkUpdateEntity.entity_description` overrides parent class `ReolinkChannelCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/update.py:273:5-13: Class member `ReolinkUpdateEntity._channel` overrides parent class `ReolinkUpdateBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/update.py:297:5-23: Class member `ReolinkHostUpdateEntity.entity_description` overrides parent class `ReolinkUpdateBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/update.py:297:5-23: Class member `ReolinkHostUpdateEntity.entity_description` overrides parent class `ReolinkHostCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/reolink/util.py:154:53-78: No matching overload found for function `dict.get` called with arguments: (type[ReolinkError], Literal['unexpected']) [no-matching-overload] +ERROR homeassistant/components/reolink/views.py:31:12-29: Object of class `NoneType` has no attribute `format` [missing-attribute] +ERROR homeassistant/components/repairs/models.py:26:10-21: Function declared to return `RepairsFlow` but is missing an explicit `return` [bad-return] +ERROR homeassistant/components/repetier/__init__.py:9:8-34: Could not find import of `pyrepetierng` [missing-import] +ERROR homeassistant/components/repetier/__init__.py:145:9-12: Unexpected keyword argument `key` in function `RepetierSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/repetier/__init__.py:148:9-13: Unexpected keyword argument `name` in function `RepetierSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/repetier/__init__.py:152:9-12: Unexpected keyword argument `key` in function `RepetierSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/repetier/__init__.py:155:9-13: Unexpected keyword argument `name` in function `RepetierSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/repetier/__init__.py:159:9-12: Unexpected keyword argument `key` in function `RepetierSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/repetier/__init__.py:162:9-13: Unexpected keyword argument `name` in function `RepetierSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/repetier/__init__.py:166:9-12: Unexpected keyword argument `key` in function `RepetierSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/repetier/__init__.py:168:9-13: Unexpected keyword argument `icon` in function `RepetierSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/repetier/__init__.py:171:9-12: Unexpected keyword argument `key` in function `RepetierSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/repetier/__init__.py:174:9-13: Unexpected keyword argument `icon` in function `RepetierSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/repetier/__init__.py:175:9-13: Unexpected keyword argument `name` in function `RepetierSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/repetier/__init__.py:178:9-12: Unexpected keyword argument `key` in function `RepetierSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/repetier/__init__.py:180:9-13: Unexpected keyword argument `icon` in function `RepetierSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/repetier/__init__.py:181:9-13: Unexpected keyword argument `name` in function `RepetierSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/repetier/__init__.py:184:9-12: Unexpected keyword argument `key` in function `RepetierSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/repetier/__init__.py:186:9-13: Unexpected keyword argument `icon` in function `RepetierSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/repetier/__init__.py:187:9-13: Unexpected keyword argument `name` in function `RepetierSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/repetier/sensor.py:64:5-23: Class member `RepetierSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/repetier/sensor.py:130:21-49: No matching overload found for function `round` called with arguments: (Decimal | date | datetime | float | int | str, Literal[2]) [no-matching-overload] +ERROR homeassistant/components/repetier/sensor.py:151:21-49: No matching overload found for function `round` called with arguments: (Decimal | date | datetime | float | int | str, Literal[2]) [no-matching-overload] +ERROR homeassistant/components/rest/data.py:100:16-21: `value` may be uninitialized [unbound-name] +ERROR homeassistant/components/rflink/__init__.py:270:56-70: Argument `HassJob[[_: Exception | None = None], None]` is not assignable to parameter `action` with type `((datetime) -> Coroutine[Any, Any, None] | None) | HassJob[[datetime], Coroutine[Any, Any, None] | None]` in function `homeassistant.helpers.event.async_call_later` [bad-argument-type] +ERROR homeassistant/components/rflink/__init__.py:278:43-51: Argument `Protocol` is not assignable to parameter `protocol` with type `ProtocolBase | None` in function `homeassistant.components.rflink.entity.RflinkCommand.set_rflink_protocol` [bad-argument-type] +ERROR homeassistant/components/rflink/binary_sensor.py:89:14-32: Class member `RflinkBinarySensor._attr_device_class` overrides parent class `RflinkDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rflink/binary_sensor.py:89:14-32: Class member `RflinkBinarySensor._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rflink/binary_sensor.py:123:36-125:14: `() -> None` is not assignable to attribute `_delay_listener` with type `None` [bad-assignment] +ERROR homeassistant/components/rflink/entity.py:219:22-52: Object of class `NoneType` has no attribute `send_command_ack` +Object of class `ProtocolBase` has no attribute `send_command_ack` [missing-attribute] +ERROR homeassistant/components/rflink/entity.py:260:40-43: `cmd` may be uninitialized [unbound-name] +ERROR homeassistant/components/rflink/entity.py:286:19-50: Object of class `NoneType` has no attribute `send_command_ack` +Object of class `ProtocolBase` has no attribute `send_command_ack` [missing-attribute] +ERROR homeassistant/components/rflink/entity.py:292:13-40: Object of class `NoneType` has no attribute `send_command` +Object of class `ProtocolBase` has no attribute `send_command` [missing-attribute] +ERROR homeassistant/components/rflink/sensor.py:60:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:61:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:67:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:68:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:76:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:77:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:78:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:81:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:82:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:88:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:89:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:90:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:93:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:94:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:100:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:101:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:107:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:108:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:114:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:115:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:121:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:122:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:123:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:126:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:127:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:128:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:131:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:132:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:133:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:136:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:137:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:143:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:144:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:145:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:148:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:149:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:155:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:156:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:162:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:163:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:164:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:167:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:168:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:169:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:172:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:173:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:179:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:180:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:181:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:184:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:185:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:191:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:192:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:198:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:199:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:200:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:205:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:206:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:207:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:210:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:211:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:217:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:218:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:224:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:225:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:226:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:229:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:230:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:236:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:237:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:238:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:244:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:245:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:251:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:252:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:258:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:259:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rflink/sensor.py:295:21-52: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/rflink/sensor.py:349:18-36: Class member `RflinkSensor.entity_description` overrides parent class `RflinkDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rfxtrx/__init__.py:192:38-48: Object of class `RFXtrxEvent` has no attribute `data` [missing-attribute] +ERROR homeassistant/components/rfxtrx/__init__.py:234:41-51: Object of class `RFXtrxEvent` has no attribute `data` [missing-attribute] +ERROR homeassistant/components/rfxtrx/__init__.py:239:39-49: Object of class `RFXtrxEvent` has no attribute `data` [missing-attribute] +ERROR homeassistant/components/rfxtrx/binary_sensor.py:55:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/binary_sensor.py:59:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/binary_sensor.py:63:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/binary_sensor.py:67:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/binary_sensor.py:71:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/binary_sensor.py:100:50-53: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/binary_sensor.py:150:14-32: Class member `RfxtrxBinarySensor.entity_description` overrides parent class `RfxtrxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rfxtrx/config_flow.py:226:20-30: `command_on` may be uninitialized [unbound-name] +ERROR homeassistant/components/rfxtrx/config_flow.py:227:47-57: `command_on` may be uninitialized [unbound-name] +ERROR homeassistant/components/rfxtrx/config_flow.py:228:20-31: `command_off` may be uninitialized [unbound-name] +ERROR homeassistant/components/rfxtrx/config_flow.py:229:48-59: `command_off` may be uninitialized [unbound-name] +ERROR homeassistant/components/rfxtrx/config_flow.py:537:69-73: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/rfxtrx/config_flow.py:569:69-73: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/rfxtrx/config_flow.py:601:69-73: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/rfxtrx/config_flow.py:634:9-31: Class member `RfxtrxConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rfxtrx/cover.py:52:23-46: Argument `RFXtrxEvent | None` is not assignable to parameter `event` with type `RFXtrxEvent` in function `RfxtrxCover.__init__` [bad-argument-type] +ERROR homeassistant/components/rfxtrx/cover.py:64:5-12: Class member `RfxtrxCover._device` overrides parent class `RfxtrxCommandEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rfxtrx/cover.py:70:40-44: Default `None` is not assignable to parameter `event` with type `RFXtrxEvent` [bad-function-definition] +ERROR homeassistant/components/rfxtrx/cover.py:78:14-38: Class member `RfxtrxCover._attr_supported_features` overrides parent class `RfxtrxCommandEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rfxtrx/cover.py:104:36-61: Object of class `LightingDevice` has no attribute `send_up05sec` +Object of class `RollerTrolDevice` has no attribute `send_up05sec` [missing-attribute] +ERROR homeassistant/components/rfxtrx/cover.py:106:36-60: Object of class `LightingDevice` has no attribute `send_up2sec` +Object of class `RollerTrolDevice` has no attribute `send_up2sec` [missing-attribute] +ERROR homeassistant/components/rfxtrx/cover.py:115:36-63: Object of class `LightingDevice` has no attribute `send_down05sec` +Object of class `RollerTrolDevice` has no attribute `send_down05sec` [missing-attribute] +ERROR homeassistant/components/rfxtrx/cover.py:117:36-62: Object of class `LightingDevice` has no attribute `send_down2sec` +Object of class `RollerTrolDevice` has no attribute `send_down2sec` [missing-attribute] +ERROR homeassistant/components/rfxtrx/cover.py:132:36-60: Object of class `LightingDevice` has no attribute `send_up2sec` +Object of class `RollerTrolDevice` has no attribute `send_up2sec` [missing-attribute] +ERROR homeassistant/components/rfxtrx/cover.py:134:36-61: Object of class `LightingDevice` has no attribute `send_up05sec` +Object of class `RollerTrolDevice` has no attribute `send_up05sec` [missing-attribute] +ERROR homeassistant/components/rfxtrx/cover.py:139:36-62: Object of class `LightingDevice` has no attribute `send_down2sec` +Object of class `RollerTrolDevice` has no attribute `send_down2sec` [missing-attribute] +ERROR homeassistant/components/rfxtrx/cover.py:141:36-63: Object of class `LightingDevice` has no attribute `send_down05sec` +Object of class `RollerTrolDevice` has no attribute `send_down05sec` [missing-attribute] +ERROR homeassistant/components/rfxtrx/entity.py:73:57-73: Object of class `RFXtrxEvent` has no attribute `data` [missing-attribute] +ERROR homeassistant/components/rfxtrx/entity.py:123:48-51: Argument `(**tuple[PySerialTransport, *_Ts]) -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/rfxtrx/light.py:63:5-21: Class member `RfxtrxLight._attr_brightness` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rfxtrx/light.py:64:5-12: Class member `RfxtrxLight._device` overrides parent class `RfxtrxCommandEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rfxtrx/sensor.py:74:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:80:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:85:9-24: Unexpected keyword argument `entity_category` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:88:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:94:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:95:9-24: Unexpected keyword argument `translation_key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:101:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:108:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:109:9-24: Unexpected keyword argument `translation_key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:115:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:122:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:128:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:133:9-24: Unexpected keyword argument `entity_category` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:136:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:142:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:143:9-24: Unexpected keyword argument `translation_key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:149:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:150:9-24: Unexpected keyword argument `translation_key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:156:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:162:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:163:9-24: Unexpected keyword argument `translation_key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:169:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:175:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:176:9-24: Unexpected keyword argument `translation_key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:179:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:180:9-24: Unexpected keyword argument `translation_key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:183:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:184:9-24: Unexpected keyword argument `translation_key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:188:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:189:9-24: Unexpected keyword argument `translation_key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:193:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:194:9-24: Unexpected keyword argument `translation_key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:200:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:201:9-24: Unexpected keyword argument `translation_key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:207:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:208:9-24: Unexpected keyword argument `translation_key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:214:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:220:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:221:9-24: Unexpected keyword argument `translation_key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:224:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:225:9-24: Unexpected keyword argument `translation_key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:228:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:229:9-24: Unexpected keyword argument `translation_key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:232:9-12: Unexpected keyword argument `key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:233:9-24: Unexpected keyword argument `translation_key` in function `RfxtrxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rfxtrx/sensor.py:265:34-46: Object of class `RFXtrxEvent` has no attribute `values` [missing-attribute] +ERROR homeassistant/components/rfxtrx/sensor.py:282:5-23: Class member `RfxtrxSensor.entity_description` overrides parent class `RfxtrxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rfxtrx/sensor.py:282:5-23: Class member `RfxtrxSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rfxtrx/sensor.py:305:31-52: Argument `RFXtrxEvent | None` is not assignable to parameter `event` with type `RFXtrxEvent` in function `homeassistant.components.rfxtrx.entity.RfxtrxEntity._apply_event` [bad-argument-type] +ERROR homeassistant/components/rfxtrx/sensor.py:312:17-35: Object of class `RFXtrxEvent` has no attribute `values` [missing-attribute] +ERROR homeassistant/components/rfxtrx/sensor.py:321:47-59: Object of class `RFXtrxEvent` has no attribute `values` [missing-attribute] +ERROR homeassistant/components/rfxtrx/siren.py:128:5-29: Class member `RfxtrxChime._attr_supported_features` overrides parent class `RfxtrxCommandEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rfxtrx/siren.py:128:5-29: Class member `RfxtrxChime._attr_supported_features` overrides parent class `RfxtrxOffDelayMixin` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rfxtrx/siren.py:129:5-12: Class member `RfxtrxChime._device` overrides parent class `RfxtrxCommandEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rfxtrx/siren.py:164:9-21: Class member `RfxtrxChime._apply_event` overrides parent class `RfxtrxCommandEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rfxtrx/siren.py:179:31-36: Argument `RFXtrxEvent` is not assignable to parameter `event` with type `ControlEvent` in function `RfxtrxChime._apply_event` [bad-argument-type] +ERROR homeassistant/components/rfxtrx/siren.py:187:5-29: Class member `RfxtrxSecurityPanic._attr_supported_features` overrides parent class `RfxtrxCommandEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rfxtrx/siren.py:187:5-29: Class member `RfxtrxSecurityPanic._attr_supported_features` overrides parent class `RfxtrxOffDelayMixin` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rfxtrx/siren.py:188:5-12: Class member `RfxtrxSecurityPanic._device` overrides parent class `RfxtrxCommandEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rfxtrx/siren.py:226:9-21: Class member `RfxtrxSecurityPanic._apply_event` overrides parent class `RfxtrxCommandEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rfxtrx/siren.py:244:31-36: Argument `RFXtrxEvent` is not assignable to parameter `event` with type `SensorEvent` in function `RfxtrxSecurityPanic._apply_event` [bad-argument-type] +ERROR homeassistant/components/rfxtrx/switch.py:138:36-61: Object of class `RFXtrxDevice` has no attribute `send_command` [missing-attribute] +ERROR homeassistant/components/rfxtrx/switch.py:140:36-56: Object of class `RFXtrxDevice` has no attribute `send_on` [missing-attribute] +ERROR homeassistant/components/rfxtrx/switch.py:147:36-61: Object of class `RFXtrxDevice` has no attribute `send_command` [missing-attribute] +ERROR homeassistant/components/rfxtrx/switch.py:149:36-57: Object of class `RFXtrxDevice` has no attribute `send_off` [missing-attribute] +ERROR homeassistant/components/ridwell/__init__.py:40:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/ridwell/config_flow.py:109:9-31: Class member `RidwellConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ridwell/config_flow.py:122:16-43: `schema_options_flow_handler` may be uninitialized [unbound-name] +ERROR homeassistant/components/ridwell/coordinator.py:30:5-17: Class member `RidwellDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ridwell/sensor.py:30:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ridwell/sensor.py:31:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ridwell/sensor.py:63:14-32: Class member `RidwellSensor.entity_description` overrides parent class `RidwellEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ridwell/switch.py:21:5-8: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ridwell/switch.py:22:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ridwell/switch.py:53:14-32: Class member `RidwellSwitch.entity_description` overrides parent class `RidwellEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ring/binary_sensor.py:48:9-12: Unexpected keyword argument `key` in function `RingBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/binary_sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `RingBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/binary_sensor.py:57:9-12: Unexpected keyword argument `key` in function `RingBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/binary_sensor.py:109:14-32: Class member `RingBinarySensor.entity_description` overrides parent class `RingBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ring/button.py:20:5-8: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/button.py:20:22-37: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/button.py:54:14-32: Class member `RingDoorButton.entity_description` overrides parent class `RingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ring/camera.py:59:9-12: Unexpected keyword argument `key` in function `RingCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/camera.py:60:9-24: Unexpected keyword argument `translation_key` in function `RingCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/camera.py:66:9-12: Unexpected keyword argument `key` in function `RingCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/camera.py:67:9-24: Unexpected keyword argument `translation_key` in function `RingCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/camera.py:68:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RingCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/camera.py:169:16-21: `image` may be uninitialized [unbound-name] +ERROR homeassistant/components/ring/camera.py:186:17-30: Argument `asyncio.streams.StreamReader` is not assignable to parameter `stream` with type `aiohttp.streams.StreamReader` in function `homeassistant.helpers.aiohttp_client.async_aiohttp_proxy_stream` [bad-argument-type] +ERROR homeassistant/components/ring/coordinator.py:51:5-17: Class member `RingDataCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ring/coordinator.py:76:32-39: Unpacked argument `tuple[object, ...]` is not assignable to varargs type `tuple[*_Ts]` [bad-argument-type] +ERROR homeassistant/components/ring/coordinator.py:119:33-64: Argument `BoundMethod[RingGeneric, (self: RingGeneric) -> Coroutine[Unknown, Unknown, None]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> Coroutine[Any, Any, @_]` in function `RingDataCoordinator._call_api` [bad-argument-type] +ERROR homeassistant/components/ring/entity.py:145:34-49: `deprecated_info` may be uninitialized [unbound-name] +ERROR homeassistant/components/ring/entity.py:154:33-48: `deprecated_info` may be uninitialized [unbound-name] +ERROR homeassistant/components/ring/event.py:34:9-12: Unexpected keyword argument `key` in function `RingEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/event.py:35:9-24: Unexpected keyword argument `translation_key` in function `RingEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/event.py:41:9-12: Unexpected keyword argument `key` in function `RingEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/event.py:42:9-24: Unexpected keyword argument `translation_key` in function `RingEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/event.py:48:9-12: Unexpected keyword argument `key` in function `RingEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/event.py:49:9-24: Unexpected keyword argument `translation_key` in function `RingEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/event.py:77:5-23: Class member `RingEvent.entity_description` overrides parent class `RingBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ring/event.py:77:5-23: Class member `RingEvent.entity_description` overrides parent class `EventEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ring/number.py:56:9-12: Unexpected keyword argument `key` in function `RingNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/number.py:57:9-24: Unexpected keyword argument `translation_key` in function `RingNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/number.py:67:9-12: Unexpected keyword argument `key` in function `RingNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/number.py:68:9-24: Unexpected keyword argument `translation_key` in function `RingNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/number.py:78:9-12: Unexpected keyword argument `key` in function `RingNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/number.py:79:9-24: Unexpected keyword argument `translation_key` in function `RingNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/number.py:89:9-12: Unexpected keyword argument `key` in function `RingNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/number.py:90:9-24: Unexpected keyword argument `translation_key` in function `RingNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/number.py:100:9-12: Unexpected keyword argument `key` in function `RingNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/number.py:101:9-24: Unexpected keyword argument `translation_key` in function `RingNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/number.py:116:5-23: Class member `RingNumber.entity_description` overrides parent class `RingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ring/number.py:116:5-23: Class member `RingNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ring/sensor.py:76:5-23: Class member `RingSensor.entity_description` overrides parent class `RingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ring/sensor.py:76:5-23: Class member `RingSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ring/sensor.py:158:9-12: Unexpected keyword argument `key` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:162:9-24: Unexpected keyword argument `entity_category` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:167:9-12: Unexpected keyword argument `key` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:168:9-24: Unexpected keyword argument `translation_key` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:179:9-12: Unexpected keyword argument `key` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:180:9-24: Unexpected keyword argument `translation_key` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:198:9-12: Unexpected keyword argument `key` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:199:9-24: Unexpected keyword argument `translation_key` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:217:9-12: Unexpected keyword argument `key` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:218:9-24: Unexpected keyword argument `translation_key` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:226:9-12: Unexpected keyword argument `key` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:227:9-24: Unexpected keyword argument `translation_key` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:235:9-12: Unexpected keyword argument `key` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:236:9-24: Unexpected keyword argument `translation_key` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:244:9-12: Unexpected keyword argument `key` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:245:9-24: Unexpected keyword argument `translation_key` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:253:9-12: Unexpected keyword argument `key` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:254:9-24: Unexpected keyword argument `translation_key` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:255:9-24: Unexpected keyword argument `entity_category` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:256:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:260:9-12: Unexpected keyword argument `key` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:263:9-24: Unexpected keyword argument `entity_category` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/sensor.py:264:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/siren.py:64:9-12: Unexpected keyword argument `key` in function `RingSirenEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/siren.py:65:9-24: Unexpected keyword argument `translation_key` in function `RingSirenEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/siren.py:75:9-12: Unexpected keyword argument `key` in function `RingSirenEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/siren.py:76:9-24: Unexpected keyword argument `translation_key` in function `RingSirenEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/siren.py:111:5-23: Class member `RingSiren.entity_description` overrides parent class `RingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ring/siren.py:111:5-23: Class member `RingSiren.entity_description` overrides parent class `SirenEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ring/siren.py:132:14-38: Class member `RingSiren._attr_supported_features` overrides parent class `RingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ring/switch.py:54:9-12: Unexpected keyword argument `key` in function `RingSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/switch.py:55:9-24: Unexpected keyword argument `translation_key` in function `RingSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/switch.py:65:9-12: Unexpected keyword argument `key` in function `RingSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/switch.py:66:9-24: Unexpected keyword argument `translation_key` in function `RingSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/switch.py:76:9-12: Unexpected keyword argument `key` in function `RingSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/switch.py:77:9-24: Unexpected keyword argument `translation_key` in function `RingSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ring/switch.py:112:5-23: Class member `RingSwitch.entity_description` overrides parent class `RingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ring/switch.py:112:5-23: Class member `RingSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ripple/sensor.py:7:1-33: Could not find import of `pyripple` [missing-import] +ERROR homeassistant/components/risco/binary_sensor.py:31:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/risco/binary_sensor.py:32:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/risco/binary_sensor.py:36:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/risco/binary_sensor.py:37:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/risco/binary_sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/risco/binary_sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/risco/binary_sensor.py:46:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/risco/binary_sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/risco/binary_sensor.py:51:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/risco/binary_sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/risco/binary_sensor.py:56:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/risco/binary_sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/risco/binary_sensor.py:61:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/risco/binary_sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/risco/binary_sensor.py:66:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/risco/binary_sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/risco/binary_sensor.py:112:5-23: Class member `RiscoCloudBinarySensor._attr_device_class` overrides parent class `RiscoCloudZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/risco/binary_sensor.py:130:5-23: Class member `RiscoLocalBinarySensor._attr_device_class` overrides parent class `RiscoLocalZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/risco/config_flow.py:128:9-31: Class member `RiscoConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/risco/config_flow.py:272:51-75: Cannot index into `bool` [bad-index] +ERROR homeassistant/components/risco/config_flow.py:272:63-74: Cannot index into `dict[AlarmControlPanelState, str]` [bad-index] +ERROR homeassistant/components/risco/config_flow.py:294:32-50: Object of class `bool` has no attribute `values` [missing-attribute] +ERROR homeassistant/components/risco/config_flow.py:300:20-44: Cannot index into `bool` [bad-index] +ERROR homeassistant/components/risco/config_flow.py:300:32-43: Cannot index into `dict[AlarmControlPanelState, str]` [bad-index] +ERROR homeassistant/components/risco/config_flow.py:302:23-62: Object of class `bool` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/risco/coordinator.py:29:5-17: Class member `RiscoDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/risco/coordinator.py:62:5-17: Class member `RiscoEventsDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/risco/sensor.py:93:14-32: Class member `RiscoSensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/risco/switch.py:57:18-22: Argument `pyrisco.common.Zone` is not assignable to parameter `zone` with type `pyrisco.cloud.zone.Zone` in function `homeassistant.components.risco.entity.RiscoCloudZoneEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/risco/switch.py:91:18-22: Argument `pyrisco.common.Zone` is not assignable to parameter `zone` with type `pyrisco.local.zone.Zone` in function `homeassistant.components.risco.entity.RiscoLocalZoneEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/rituals_perfume_genie/binary_sensor.py:35:9-12: Unexpected keyword argument `key` in function `RitualsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rituals_perfume_genie/binary_sensor.py:37:9-24: Unexpected keyword argument `entity_category` in function `RitualsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rituals_perfume_genie/binary_sensor.py:65:5-23: Class member `RitualsBinarySensorEntity.entity_description` overrides parent class `DiffuserEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rituals_perfume_genie/binary_sensor.py:65:5-23: Class member `RitualsBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rituals_perfume_genie/coordinator.py:20:5-17: Class member `RitualsDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rituals_perfume_genie/number.py:31:9-12: Unexpected keyword argument `key` in function `RitualsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rituals_perfume_genie/number.py:32:9-24: Unexpected keyword argument `translation_key` in function `RitualsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rituals_perfume_genie/number.py:60:5-23: Class member `RitualsNumberEntity.entity_description` overrides parent class `DiffuserEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rituals_perfume_genie/number.py:60:5-23: Class member `RitualsNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rituals_perfume_genie/select.py:31:9-12: Unexpected keyword argument `key` in function `RitualsSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rituals_perfume_genie/select.py:32:9-24: Unexpected keyword argument `translation_key` in function `RitualsSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rituals_perfume_genie/select.py:33:9-28: Unexpected keyword argument `unit_of_measurement` in function `RitualsSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rituals_perfume_genie/select.py:34:9-24: Unexpected keyword argument `entity_category` in function `RitualsSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rituals_perfume_genie/select.py:64:5-23: Class member `RitualsSelectEntity.entity_description` overrides parent class `DiffuserEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rituals_perfume_genie/select.py:64:5-23: Class member `RitualsSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rituals_perfume_genie/sensor.py:35:9-12: Unexpected keyword argument `key` in function `RitualsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rituals_perfume_genie/sensor.py:42:9-12: Unexpected keyword argument `key` in function `RitualsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rituals_perfume_genie/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `RitualsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rituals_perfume_genie/sensor.py:47:9-12: Unexpected keyword argument `key` in function `RitualsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rituals_perfume_genie/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `RitualsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rituals_perfume_genie/sensor.py:52:9-12: Unexpected keyword argument `key` in function `RitualsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rituals_perfume_genie/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `RitualsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rituals_perfume_genie/sensor.py:81:5-23: Class member `RitualsSensorEntity.entity_description` overrides parent class `DiffuserEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rituals_perfume_genie/sensor.py:81:5-23: Class member `RitualsSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rituals_perfume_genie/switch.py:32:9-12: Unexpected keyword argument `key` in function `RitualsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rituals_perfume_genie/switch.py:33:9-13: Unexpected keyword argument `name` in function `RitualsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rituals_perfume_genie/switch.py:34:9-24: Unexpected keyword argument `translation_key` in function `RitualsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rituals_perfume_genie/switch.py:62:5-23: Class member `RitualsSwitchEntity.entity_description` overrides parent class `DiffuserEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rituals_perfume_genie/switch.py:62:5-23: Class member `RitualsSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/__init__.py:255:52-257:6: Unpacked argument `tuple[UserData, DeviceData]` is not assignable to parameter `*args` with type `tuple[UserData, DeviceData, int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/roborock/__init__.py:323:52-328:6: Unpacked argument `tuple[UserData, DeviceData, RoborockCategory]` is not assignable to parameter `*args` with type `tuple[UserData, DeviceData, RoborockCategory, int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/roborock/binary_sensor.py:37:9-12: Unexpected keyword argument `key` in function `RoborockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/binary_sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `RoborockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/binary_sensor.py:40:9-24: Unexpected keyword argument `entity_category` in function `RoborockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/binary_sensor.py:45:9-12: Unexpected keyword argument `key` in function `RoborockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/binary_sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `RoborockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/binary_sensor.py:48:9-24: Unexpected keyword argument `entity_category` in function `RoborockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/binary_sensor.py:52:9-12: Unexpected keyword argument `key` in function `RoborockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/binary_sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `RoborockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/binary_sensor.py:55:9-24: Unexpected keyword argument `entity_category` in function `RoborockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/binary_sensor.py:59:9-12: Unexpected keyword argument `key` in function `RoborockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/binary_sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `RoborockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/binary_sensor.py:62:9-24: Unexpected keyword argument `entity_category` in function `RoborockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/binary_sensor.py:66:9-12: Unexpected keyword argument `key` in function `RoborockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/binary_sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `RoborockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/binary_sensor.py:69:9-24: Unexpected keyword argument `entity_category` in function `RoborockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/binary_sensor.py:73:9-12: Unexpected keyword argument `key` in function `RoborockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/binary_sensor.py:75:9-24: Unexpected keyword argument `entity_category` in function `RoborockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/binary_sensor.py:102:5-23: Class member `RoborockBinarySensorEntity.entity_description` overrides parent class `RoborockCoordinatedEntityV1` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/binary_sensor.py:102:5-23: Class member `RoborockBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/button.py:33:9-12: Unexpected keyword argument `key` in function `RoborockButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/button.py:34:9-24: Unexpected keyword argument `translation_key` in function `RoborockButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/button.py:37:9-24: Unexpected keyword argument `entity_category` in function `RoborockButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/button.py:38:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RoborockButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/button.py:41:9-12: Unexpected keyword argument `key` in function `RoborockButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/button.py:42:9-24: Unexpected keyword argument `translation_key` in function `RoborockButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/button.py:45:9-24: Unexpected keyword argument `entity_category` in function `RoborockButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/button.py:46:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RoborockButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/button.py:49:9-12: Unexpected keyword argument `key` in function `RoborockButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/button.py:50:9-24: Unexpected keyword argument `translation_key` in function `RoborockButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/button.py:53:9-24: Unexpected keyword argument `entity_category` in function `RoborockButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/button.py:54:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RoborockButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/button.py:57:9-12: Unexpected keyword argument `key` in function `RoborockButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/button.py:58:9-24: Unexpected keyword argument `translation_key` in function `RoborockButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/button.py:61:9-24: Unexpected keyword argument `entity_category` in function `RoborockButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/button.py:62:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RoborockButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/button.py:91:25-28: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/button.py:92:25-29: Unexpected keyword argument `name` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/button.py:107:5-23: Class member `RoborockButtonEntity.entity_description` overrides parent class `RoborockEntityV1` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/button.py:107:5-23: Class member `RoborockButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/button.py:130:5-23: Class member `RoborockRoutineButtonEntity.entity_description` overrides parent class `RoborockEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/config_flow.py:194:9-31: Class member `RoborockFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/coordinator.py:93:5-17: Class member `RoborockDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/coordinator.py:293:22-37: Class member `RoborockDataUpdateCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/coordinator.py:293:40-70: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@RoborockDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/roborock/coordinator.py:362:40-69: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@RoborockDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/roborock/coordinator.py:364:40-69: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@RoborockDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/roborock/coordinator.py:366:36-66: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@RoborockDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/roborock/coordinator.py:368:36-66: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@RoborockDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/roborock/coordinator.py:504:5-17: Class member `RoborockDataUpdateCoordinatorA01.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/entity.py:48:5-9: Class member `RoborockEntityV1._api` overrides parent class `RoborockEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/entity.py:101:5-9: Class member `RoborockEntityA01._api` overrides parent class `RoborockEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/image.py:47:5-15: Class member `RoborockMap._attr_name` overrides parent class `RoborockCoordinatedEntityV1` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/image.py:47:5-15: Class member `RoborockMap._attr_name` overrides parent class `ImageEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/number.py:40:9-12: Unexpected keyword argument `key` in function `RoborockNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/number.py:41:9-24: Unexpected keyword argument `translation_key` in function `RoborockNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/number.py:46:9-24: Unexpected keyword argument `entity_category` in function `RoborockNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/number.py:93:5-23: Class member `RoborockNumberEntity.entity_description` overrides parent class `RoborockEntityV1` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/number.py:93:5-23: Class member `RoborockNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/roborock_storage.py:66:49-59: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/roborock/select.py:43:9-12: Unexpected keyword argument `key` in function `RoborockSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/select.py:44:9-24: Unexpected keyword argument `translation_key` in function `RoborockSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/select.py:47:9-24: Unexpected keyword argument `entity_category` in function `RoborockSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/select.py:55:9-12: Unexpected keyword argument `key` in function `RoborockSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/select.py:56:9-24: Unexpected keyword argument `translation_key` in function `RoborockSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/select.py:59:9-24: Unexpected keyword argument `entity_category` in function `RoborockSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/select.py:66:9-12: Unexpected keyword argument `key` in function `RoborockSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/select.py:67:9-24: Unexpected keyword argument `translation_key` in function `RoborockSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/select.py:70:9-24: Unexpected keyword argument `entity_category` in function `RoborockSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/select.py:111:5-23: Class member `RoborockSelectEntity.entity_description` overrides parent class `RoborockCoordinatedEntityV1` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/select.py:111:5-23: Class member `RoborockSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/sensor.py:83:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:87:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:93:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:95:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:97:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:103:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:107:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:112:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:116:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:121:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:125:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:131:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:133:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:135:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:140:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:141:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:144:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:149:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:150:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:153:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:156:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:157:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:160:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:163:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:165:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:167:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:172:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:173:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:175:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:179:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:180:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:182:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:186:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:187:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:190:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:195:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:197:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:203:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:204:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:208:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:212:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:213:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:217:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:222:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:223:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:225:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:230:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:231:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:233:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:239:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:243:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:244:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:252:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:254:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:255:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:260:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:262:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:267:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:272:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:273:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:276:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:281:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:282:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:285:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:288:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:289:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:293:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:298:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:299:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:302:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:304:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:305:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:310:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:314:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:315:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:318:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:322:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:323:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:326:9-12: Unexpected keyword argument `key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:329:9-24: Unexpected keyword argument `translation_key` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:330:9-24: Unexpected keyword argument `entity_category` in function `RoborockSensorDescriptionA01.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/sensor.py:368:5-23: Class member `RoborockSensorEntity.entity_description` overrides parent class `RoborockCoordinatedEntityV1` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/sensor.py:368:5-23: Class member `RoborockSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/sensor.py:395:5-23: Class member `RoborockCurrentRoom._attr_device_class` overrides parent class `RoborockCoordinatedEntityV1` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/sensor.py:437:5-23: Class member `RoborockSensorEntityA01.entity_description` overrides parent class `RoborockCoordinatedEntityA01` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/sensor.py:437:5-23: Class member `RoborockSensorEntityA01.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/switch.py:51:9-12: Unexpected keyword argument `key` in function `RoborockSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/switch.py:52:9-24: Unexpected keyword argument `translation_key` in function `RoborockSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/switch.py:53:9-24: Unexpected keyword argument `entity_category` in function `RoborockSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/switch.py:62:9-12: Unexpected keyword argument `key` in function `RoborockSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/switch.py:63:9-24: Unexpected keyword argument `translation_key` in function `RoborockSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/switch.py:64:9-24: Unexpected keyword argument `entity_category` in function `RoborockSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/switch.py:80:9-12: Unexpected keyword argument `key` in function `RoborockSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/switch.py:81:9-24: Unexpected keyword argument `translation_key` in function `RoborockSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/switch.py:82:9-24: Unexpected keyword argument `entity_category` in function `RoborockSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/switch.py:97:9-12: Unexpected keyword argument `key` in function `RoborockSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/switch.py:98:9-24: Unexpected keyword argument `translation_key` in function `RoborockSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/switch.py:99:9-24: Unexpected keyword argument `entity_category` in function `RoborockSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/switch.py:100:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RoborockSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/switch.py:146:5-23: Class member `RoborockSwitch.entity_description` overrides parent class `RoborockEntityV1` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/switch.py:146:5-23: Class member `RoborockSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/time.py:44:9-12: Unexpected keyword argument `key` in function `RoborockTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/time.py:45:9-24: Unexpected keyword argument `translation_key` in function `RoborockTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/time.py:58:9-24: Unexpected keyword argument `entity_category` in function `RoborockTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/time.py:61:9-12: Unexpected keyword argument `key` in function `RoborockTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/time.py:62:9-24: Unexpected keyword argument `translation_key` in function `RoborockTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/time.py:75:9-24: Unexpected keyword argument `entity_category` in function `RoborockTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/time.py:78:9-12: Unexpected keyword argument `key` in function `RoborockTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/time.py:79:9-24: Unexpected keyword argument `translation_key` in function `RoborockTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/time.py:92:9-24: Unexpected keyword argument `entity_category` in function `RoborockTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/time.py:93:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RoborockTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/time.py:96:9-12: Unexpected keyword argument `key` in function `RoborockTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/time.py:97:9-24: Unexpected keyword argument `translation_key` in function `RoborockTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/time.py:110:9-24: Unexpected keyword argument `entity_category` in function `RoborockTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/time.py:111:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RoborockTimeDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roborock/time.py:157:5-23: Class member `RoborockTimeEntity.entity_description` overrides parent class `RoborockEntityV1` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/time.py:157:5-23: Class member `RoborockTimeEntity.entity_description` overrides parent class `TimeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roborock/vacuum.py:103:5-29: Class member `RoborockVacuum._attr_supported_features` overrides parent class `RoborockCoordinatedEntityV1` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rocketchat/notify.py:8:1-11:2: Could not find import of `rocketchat_API.APIExceptions.RocketExceptions` [missing-import] +ERROR homeassistant/components/rocketchat/notify.py:12:1-49: Could not find import of `rocketchat_API.rocketchat` [missing-import] +ERROR homeassistant/components/roku/binary_sensor.py:34:9-12: Unexpected keyword argument `key` in function `RokuBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/binary_sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `RokuBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/binary_sensor.py:39:9-12: Unexpected keyword argument `key` in function `RokuBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/binary_sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `RokuBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/binary_sensor.py:41:9-24: Unexpected keyword argument `entity_category` in function `RokuBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/binary_sensor.py:45:9-12: Unexpected keyword argument `key` in function `RokuBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/binary_sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `RokuBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/binary_sensor.py:47:9-24: Unexpected keyword argument `entity_category` in function `RokuBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/binary_sensor.py:51:9-12: Unexpected keyword argument `key` in function `RokuBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/binary_sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `RokuBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/binary_sensor.py:53:9-24: Unexpected keyword argument `entity_category` in function `RokuBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/binary_sensor.py:77:5-23: Class member `RokuBinarySensorEntity.entity_description` overrides parent class `RokuEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roku/binary_sensor.py:77:5-23: Class member `RokuBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roku/browse_media.py:252:18-26: Argument `Literal['', False] | Unknown` is not assignable to parameter `can_play` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/roku/config_flow.py:198:9-31: Class member `RokuConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roku/coordinator.py:32:5-17: Class member `RokuDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roku/media_player.py:108:7-22: Field `entity_description` is declared `EntityDescription` in ancestor `class RokuEntity: ... +`, which is not assignable to the type `MediaPlayerEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/roku/media_player.py:112:5-29: Class member `RokuMediaPlayer._attr_supported_features` overrides parent class `RokuEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roku/media_player.py:130:18-36: Class member `RokuMediaPlayer._attr_device_class` overrides parent class `RokuEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roku/remote.py:35:7-17: Field `entity_description` is declared `EntityDescription` in ancestor `class RokuEntity: ... +`, which is not assignable to the type `RemoteEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/roku/select.py:91:9-12: Unexpected keyword argument `key` in function `RokuSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/select.py:92:9-24: Unexpected keyword argument `translation_key` in function `RokuSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/select.py:96:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RokuSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/select.py:101:5-8: Unexpected keyword argument `key` in function `RokuSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/select.py:102:5-20: Unexpected keyword argument `translation_key` in function `RokuSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/select.py:139:5-23: Class member `RokuSelectEntity.entity_description` overrides parent class `RokuEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roku/select.py:139:5-23: Class member `RokuSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roku/sensor.py:31:9-12: Unexpected keyword argument `key` in function `RokuSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/sensor.py:32:9-24: Unexpected keyword argument `translation_key` in function `RokuSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/sensor.py:33:9-24: Unexpected keyword argument `entity_category` in function `RokuSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/sensor.py:37:9-12: Unexpected keyword argument `key` in function `RokuSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `RokuSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/sensor.py:39:9-24: Unexpected keyword argument `entity_category` in function `RokuSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roku/sensor.py:63:5-23: Class member `RokuSensorEntity.entity_description` overrides parent class `RokuEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roku/sensor.py:63:5-23: Class member `RokuSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/romy/__init__.py:36:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/romy/binary_sensor.py:18:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/binary_sensor.py:19:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/binary_sensor.py:22:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/binary_sensor.py:23:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/binary_sensor.py:27:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/binary_sensor.py:28:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/binary_sensor.py:32:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/binary_sensor.py:33:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/binary_sensor.py:58:5-23: Class member `RomyBinarySensor.entity_description` overrides parent class `RomyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/romy/coordinator.py:15:5-17: Class member `RomyVacuumCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/romy/sensor.py:27:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:30:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:34:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:37:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:42:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:44:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:51:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:54:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:58:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:61:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:65:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:68:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:72:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/romy/sensor.py:96:5-23: Class member `RomySensor.entity_description` overrides parent class `RomyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/romy/vacuum.py:65:5-29: Class member `RomyVacuumEntity._attr_supported_features` overrides parent class `RomyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roomba/__init__.py:84:47-61: Argument `BoundMethod[Roomba, (self: Roomba) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/roomba/__init__.py:108:47-64: Argument `BoundMethod[Roomba, (self: Roomba) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/roomba/config_flow.py:92:9-31: Class member `RoombaConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roomba/config_flow.py:134:30-53: Object of class `object` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/roomba/config_flow.py:252:63-85: Argument `BoundMethod[RoombaPassword, (self: RoombaPassword) -> str | None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/roomba/config_flow.py:364:68-85: Argument `BoundMethod[RoombaDiscovery, (self: RoombaDiscovery) -> set[RoombaInfo]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/roomba/sensor.py:34:9-12: Unexpected keyword argument `key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:37:9-24: Unexpected keyword argument `entity_category` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:44:9-12: Unexpected keyword argument `key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:47:9-24: Unexpected keyword argument `entity_category` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:51:9-12: Unexpected keyword argument `key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:54:9-24: Unexpected keyword argument `entity_category` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:58:9-12: Unexpected keyword argument `key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:61:9-24: Unexpected keyword argument `entity_category` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:66:9-12: Unexpected keyword argument `key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:69:9-24: Unexpected keyword argument `entity_category` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:73:9-12: Unexpected keyword argument `key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:76:9-24: Unexpected keyword argument `entity_category` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:80:9-12: Unexpected keyword argument `key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:81:9-24: Unexpected keyword argument `translation_key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:84:9-24: Unexpected keyword argument `entity_category` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:88:9-12: Unexpected keyword argument `key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:92:9-24: Unexpected keyword argument `entity_category` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:96:9-12: Unexpected keyword argument `key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:100:9-24: Unexpected keyword argument `entity_category` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:104:9-12: Unexpected keyword argument `key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:108:9-24: Unexpected keyword argument `entity_category` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:112:9-12: Unexpected keyword argument `key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:113:9-24: Unexpected keyword argument `translation_key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:116:9-24: Unexpected keyword argument `entity_category` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:118:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:121:9-12: Unexpected keyword argument `key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:122:9-24: Unexpected keyword argument `translation_key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:124:9-24: Unexpected keyword argument `entity_category` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:129:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:132:9-12: Unexpected keyword argument `key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:133:9-24: Unexpected keyword argument `translation_key` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:135:9-24: Unexpected keyword argument `entity_category` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:137:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RoombaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/roomba/sensor.py:168:5-23: Class member `RoombaSensor.entity_description` overrides parent class `IRobotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roomba/sensor.py:168:5-23: Class member `RoombaSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roomba/vacuum.py:119:5-29: Class member `IRobotVacuum._attr_supported_features` overrides parent class `IRobotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/roomba/vacuum.py:200:17-30: `cleaning_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/roomba/vacuum.py:200:32-44: `cleaned_area` may be uninitialized [unbound-name] +ERROR homeassistant/components/roomba/vacuum.py:363:77-82: `split` is uninitialized [unbound-name] +ERROR homeassistant/components/roon/event.py:66:25-51: Argument `set[tuple[str, str | None]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/roon/event.py:72:19-28: `dev_model` may be uninitialized [unbound-name] +ERROR homeassistant/components/roon/media_browser.py:94:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown | None` is not assignable to parameter `media_class` with type `MediaClass | str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/roon/media_browser.py:94:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown | None` is not assignable to parameter `media_content_id` with type `str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/roon/media_browser.py:94:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown | None` is not assignable to parameter `media_content_type` with type `MediaType | str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/roon/media_browser.py:94:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown | None` is not assignable to parameter `title` with type `str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/roon/media_browser.py:94:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown | None` is not assignable to parameter `can_play` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/roon/media_browser.py:94:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown | None` is not assignable to parameter `can_expand` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/roon/media_browser.py:94:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown | None` is not assignable to parameter `children` with type `Sequence[BrowseMedia] | None` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/roon/media_browser.py:94:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown | None` is not assignable to parameter `children_media_class` with type `MediaClass | str | None` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/roon/media_browser.py:94:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown | None` is not assignable to parameter `thumbnail` with type `str | None` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/roon/media_browser.py:94:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown | None` is not assignable to parameter `not_shown` with type `int` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/roon/media_browser.py:94:24-33: Unpacked keyword argument `MediaClass | bool | str | Unknown | None` is not assignable to parameter `can_search` with type `bool` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/roon/media_browser.py:154:9-37: Object of class `NoneType` has no attribute `append` +Object of class `Sequence` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/roon/media_player.py:169:19-28: `dev_model` may be uninitialized [unbound-name] +ERROR homeassistant/components/roon/media_player.py:207:26-66: Cannot set item in `dict[str, bool | int]` [unsupported-operation] +ERROR homeassistant/components/roon/server.py:88:16-34: Object of class `NoneType` has no attribute `zones` [missing-attribute] +ERROR homeassistant/components/roon/server.py:105:9-26: Object of class `NoneType` has no attribute `stop` [missing-attribute] +ERROR homeassistant/components/roon/server.py:124:31-49: Object of class `NoneType` has no attribute `zones` [missing-attribute] +ERROR homeassistant/components/roon/server.py:127:20-38: Object of class `NoneType` has no attribute `zones` [missing-attribute] +ERROR homeassistant/components/roon/server.py:144:20-38: Object of class `NoneType` has no attribute `zones` [missing-attribute] +ERROR homeassistant/components/roon/server.py:149:21-39: Object of class `NoneType` has no attribute `zones` [missing-attribute] +ERROR homeassistant/components/route_b_smart_meter/__init__.py:27:39-67: Argument `BoundMethod[Momonga, (self: Momonga) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/route_b_smart_meter/coordinator.py:57:13-26: Argument `BoundMethod[Momonga, (self: Momonga) -> Momonga]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/route_b_smart_meter/coordinator.py:73:59-73: Argument `BoundMethod[Self@BRouteUpdateCoordinator, (self: Self@BRouteUpdateCoordinator) -> BRouteData]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/route_b_smart_meter/sensor.py:39:9-12: Unexpected keyword argument `key` in function `SensorEntityDescriptionWithValueAccessor.__init__` [unexpected-keyword] +ERROR homeassistant/components/route_b_smart_meter/sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `SensorEntityDescriptionWithValueAccessor.__init__` [unexpected-keyword] +ERROR homeassistant/components/route_b_smart_meter/sensor.py:47:9-12: Unexpected keyword argument `key` in function `SensorEntityDescriptionWithValueAccessor.__init__` [unexpected-keyword] +ERROR homeassistant/components/route_b_smart_meter/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `SensorEntityDescriptionWithValueAccessor.__init__` [unexpected-keyword] +ERROR homeassistant/components/route_b_smart_meter/sensor.py:55:9-12: Unexpected keyword argument `key` in function `SensorEntityDescriptionWithValueAccessor.__init__` [unexpected-keyword] +ERROR homeassistant/components/route_b_smart_meter/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `SensorEntityDescriptionWithValueAccessor.__init__` [unexpected-keyword] +ERROR homeassistant/components/route_b_smart_meter/sensor.py:63:9-12: Unexpected keyword argument `key` in function `SensorEntityDescriptionWithValueAccessor.__init__` [unexpected-keyword] +ERROR homeassistant/components/route_b_smart_meter/sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `SensorEntityDescriptionWithValueAccessor.__init__` [unexpected-keyword] +ERROR homeassistant/components/route_b_smart_meter/sensor.py:99:14-32: Class member `SmartMeterBRouteSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/route_b_smart_meter/sensor.py:99:14-32: Class member `SmartMeterBRouteSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rova/__init__.py:30:55-71: Argument `BoundMethod[Rova, (self: Rova) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/rova/__init__.py:64:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/rova/config_flow.py:37:63-79: Argument `BoundMethod[Rova, (self: Rova) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/rova/coordinator.py:20:5-17: Class member `RovaCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rova/sensor.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rova/sensor.py:26:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rova/sensor.py:29:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rova/sensor.py:30:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rova/sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rova/sensor.py:34:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rova/sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rova/sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rova/sensor.py:62:5-23: Class member `RovaSensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rova/sensor.py:73:14-32: Class member `RovaSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rpi_power/binary_sensor.py:34:55-72: Argument `() -> UnderVoltage | None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/rpi_power/config_flow.py:19:55-72: Argument `() -> UnderVoltage | None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/rtorrent/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rtorrent/sensor.py:46:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rtorrent/sensor.py:49:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rtorrent/sensor.py:50:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rtorrent/sensor.py:55:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rtorrent/sensor.py:56:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rtorrent/sensor.py:61:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rtorrent/sensor.py:62:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rtorrent/sensor.py:65:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rtorrent/sensor.py:66:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rtorrent/sensor.py:69:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rtorrent/sensor.py:70:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rtorrent/sensor.py:73:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rtorrent/sensor.py:74:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rtorrent/sensor.py:77:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rtorrent/sensor.py:78:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rtorrent/sensor.py:81:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rtorrent/sensor.py:82:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruckus_unleashed/coordinator.py:22:5-17: Class member `RuckusDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/russound_rio/__init__.py:100:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/russound_rio/media_player.py:66:5-23: Class member `RussoundZoneDevice._attr_device_class` overrides parent class `RussoundBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/russound_rio/media_player.py:68:5-29: Class member `RussoundZoneDevice._attr_supported_features` overrides parent class `RussoundBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/russound_rio/number.py:29:9-12: Unexpected keyword argument `key` in function `RussoundZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/russound_rio/number.py:30:9-24: Unexpected keyword argument `translation_key` in function `RussoundZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/russound_rio/number.py:34:9-24: Unexpected keyword argument `entity_category` in function `RussoundZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/russound_rio/number.py:39:9-12: Unexpected keyword argument `key` in function `RussoundZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/russound_rio/number.py:40:9-24: Unexpected keyword argument `translation_key` in function `RussoundZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/russound_rio/number.py:44:9-24: Unexpected keyword argument `entity_category` in function `RussoundZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/russound_rio/number.py:49:9-12: Unexpected keyword argument `key` in function `RussoundZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/russound_rio/number.py:50:9-24: Unexpected keyword argument `translation_key` in function `RussoundZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/russound_rio/number.py:54:9-24: Unexpected keyword argument `entity_category` in function `RussoundZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/russound_rio/number.py:59:9-12: Unexpected keyword argument `key` in function `RussoundZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/russound_rio/number.py:60:9-24: Unexpected keyword argument `translation_key` in function `RussoundZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/russound_rio/number.py:64:9-24: Unexpected keyword argument `entity_category` in function `RussoundZoneNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/russound_rio/number.py:89:5-23: Class member `RussoundNumberEntity.entity_description` overrides parent class `RussoundBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/russound_rio/number.py:89:5-23: Class member `RussoundNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/russound_rio/switch.py:30:9-12: Unexpected keyword argument `key` in function `RussoundZoneSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/russound_rio/switch.py:31:9-24: Unexpected keyword argument `translation_key` in function `RussoundZoneSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/russound_rio/switch.py:32:9-24: Unexpected keyword argument `entity_category` in function `RussoundZoneSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/russound_rio/switch.py:57:5-23: Class member `RussoundSwitchEntity.entity_description` overrides parent class `RussoundBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/russound_rio/switch.py:57:5-23: Class member `RussoundSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/russound_rnet/media_player.py:8:1-30: Could not find import of `russound` [missing-import] +ERROR homeassistant/components/ruuvi_gateway/__init__.py:35:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/ruuvi_gateway/coordinator.py:22:5-17: Class member `RuuviGatewayUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ruuvitag_ble/__init__.py:50:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:48:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:54:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:60:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:66:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:70:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:73:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:76:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:80:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:81:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:84:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:87:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:91:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:94:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:95:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:98:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:101:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:105:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:109:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:115:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:121:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:127:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:133:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:139:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:145:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:146:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:150:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:151:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ruuvitag_ble/sensor.py:207:7-36: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/rympro/__init__.py:57:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/rympro/coordinator.py:24:5-17: Class member `RymProDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rympro/sensor.py:33:9-12: Unexpected keyword argument `key` in function `RymProSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rympro/sensor.py:34:9-24: Unexpected keyword argument `translation_key` in function `RymProSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rympro/sensor.py:40:9-12: Unexpected keyword argument `key` in function `RymProSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rympro/sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `RymProSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rympro/sensor.py:47:9-12: Unexpected keyword argument `key` in function `RymProSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rympro/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `RymProSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rympro/sensor.py:54:9-12: Unexpected keyword argument `key` in function `RymProSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rympro/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `RymProSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/rympro/sensor.py:80:5-23: Class member `RymProSensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rympro/sensor.py:82:5-23: Class member `RymProSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/rympro/sensor.py:82:5-23: Class member `RymProSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sabnzbd/binary_sensor.py:31:9-12: Unexpected keyword argument `key` in function `SabnzbdBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/binary_sensor.py:32:9-24: Unexpected keyword argument `translation_key` in function `SabnzbdBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/binary_sensor.py:34:9-24: Unexpected keyword argument `entity_category` in function `SabnzbdBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/binary_sensor.py:56:5-23: Class member `SabnzbdBinarySensor.entity_description` overrides parent class `SabnzbdEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sabnzbd/binary_sensor.py:56:5-23: Class member `SabnzbdBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sabnzbd/button.py:28:9-12: Unexpected keyword argument `key` in function `SabnzbdButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/button.py:29:9-24: Unexpected keyword argument `translation_key` in function `SabnzbdButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/button.py:33:9-12: Unexpected keyword argument `key` in function `SabnzbdButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/button.py:34:9-24: Unexpected keyword argument `translation_key` in function `SabnzbdButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/button.py:56:5-23: Class member `SabnzbdButton.entity_description` overrides parent class `SabnzbdEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sabnzbd/button.py:56:5-23: Class member `SabnzbdButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sabnzbd/coordinator.py:21:5-17: Class member `SabnzbdUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sabnzbd/number.py:34:9-12: Unexpected keyword argument `key` in function `SabnzbdNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/number.py:35:9-24: Unexpected keyword argument `translation_key` in function `SabnzbdNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/number.py:64:5-23: Class member `SabnzbdNumber.entity_description` overrides parent class `SabnzbdEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sabnzbd/number.py:64:5-23: Class member `SabnzbdNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sabnzbd/sensor.py:26:5-8: Class member `SabnzbdSensorEntityDescription.key` overrides parent class `SensorEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sabnzbd/sensor.py:32:9-24: Unexpected keyword argument `translation_key` in function `SabnzbdSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `SabnzbdSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `SabnzbdSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `SabnzbdSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `SabnzbdSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `SabnzbdSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/sensor.py:73:9-24: Unexpected keyword argument `translation_key` in function `SabnzbdSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `SabnzbdSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/sensor.py:82:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SabnzbdSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `SabnzbdSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/sensor.py:91:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SabnzbdSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `SabnzbdSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/sensor.py:100:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SabnzbdSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `SabnzbdSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sabnzbd/sensor.py:129:5-23: Class member `SabnzbdSensor.entity_description` overrides parent class `SabnzbdEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sabnzbd/sensor.py:129:5-23: Class member `SabnzbdSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/saj/sensor.py:10:8-13: Could not find import of `pysaj` [missing-import] +ERROR homeassistant/components/saj/sensor.py:145:9-31: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/samsungtv/bridge.py:281:55-66: Argument `BoundMethod[Self@SamsungTVLegacyBridge, (self: Self@SamsungTVLegacyBridge) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/samsungtv/bridge.py:296:55-72: Argument `BoundMethod[Self@SamsungTVLegacyBridge, (self: Self@SamsungTVLegacyBridge) -> str]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/samsungtv/bridge.py:333:49-70: Argument `() -> None` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/components/samsungtv/bridge.py:351:16-28: Returned type `Remote | None` is not assignable to declared return type `Remote` [bad-return] +ERROR homeassistant/components/samsungtv/bridge.py:393:48-66: Argument `BoundMethod[Self@SamsungTVLegacyBridge, (self: Self@SamsungTVLegacyBridge) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/samsungtv/bridge.py:520:18-22: Class member `SamsungTVWSBridge.port` overrides parent class `SamsungTVWSBaseBridge` in an inconsistent manner [bad-override] +ERROR homeassistant/components/samsungtv/coordinator.py:24:5-17: Class member `SamsungTVDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/samsungtv/entity.py:101:52-69: Argument `BoundMethod[Self@SamsungTVEntity, (self: Self@SamsungTVEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/samsungtv/media_player.py:80:5-22: Class member `SamsungTVDevice._attr_source_list` overrides parent class `MediaPlayerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/samsungtv/media_player.py:82:5-23: Class member `SamsungTVDevice._attr_device_class` overrides parent class `SamsungTVEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/samsungtv/media_player.py:93:14-35: Class member `SamsungTVDevice._attr_is_volume_muted` overrides parent class `MediaPlayerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/samsungtv/media_player.py:98:14-38: Class member `SamsungTVDevice._attr_supported_features` overrides parent class `SamsungTVEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/samsungtv/media_player.py:138:18-29: Class member `SamsungTVDevice._attr_state` overrides parent class `SamsungTVEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sanix/__init__.py:37:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/sanix/config_flow.py:44:56-76: Argument `BoundMethod[Sanix, (self: Sanix) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/sanix/coordinator.py:22:5-17: Class member `SanixCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sanix/coordinator.py:40:59-85: Argument `BoundMethod[Sanix, (self: Sanix) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/sanix/sensor.py:43:9-12: Unexpected keyword argument `key` in function `SanixSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sanix/sensor.py:50:9-12: Unexpected keyword argument `key` in function `SanixSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sanix/sensor.py:57:9-12: Unexpected keyword argument `key` in function `SanixSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sanix/sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `SanixSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sanix/sensor.py:63:9-12: Unexpected keyword argument `key` in function `SanixSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sanix/sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `SanixSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sanix/sensor.py:70:9-12: Unexpected keyword argument `key` in function `SanixSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sanix/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `SanixSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sanix/sensor.py:72:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SanixSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sanix/sensor.py:76:9-12: Unexpected keyword argument `key` in function `SanixSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sanix/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `SanixSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sanix/sensor.py:78:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SanixSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sanix/sensor.py:101:5-23: Class member `SanixSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sanix/sensor.py:101:5-23: Class member `SanixSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/satel_integra/__init__.py:243:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/satel_integra/alarm_control_panel.py:81:5-29: Class member `SatelIntegraAlarmPanel._attr_supported_features` overrides parent class `SatelIntegraEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/satel_integra/binary_sensor.py:105:14-32: Class member `SatelIntegraBinarySensor._attr_device_class` overrides parent class `SatelIntegraEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/satel_integra/config_flow.py:98:9-31: Class member `SatelConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/saunum/__init__.py:50:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/saunum/climate.py:46:5-29: Class member `LeilSaunaClimate._attr_supported_features` overrides parent class `LeilSaunaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/saunum/coordinator.py:24:5-17: Class member `LeilSaunaCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/scene/__init__.py:113:49-78: Argument `BoundMethod[Self@BaseScene, (self: Self@BaseScene) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> @_` in function `homeassistant.util.async_.run_callback_threadsafe` [bad-argument-type] +ERROR homeassistant/components/schedule/__init__.py:251:16-20: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/schedule/__init__.py:263:5-16: Class member `Schedule._attr_state` overrides parent class `CollectionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/schlage/binary_sensor.py:30:9-12: Unexpected keyword argument `key` in function `SchlageBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/schlage/binary_sensor.py:31:9-24: Unexpected keyword argument `translation_key` in function `SchlageBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/schlage/binary_sensor.py:33:9-24: Unexpected keyword argument `entity_category` in function `SchlageBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/schlage/binary_sensor.py:65:5-23: Class member `SchlageBinarySensor.entity_description` overrides parent class `SchlageEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/schlage/binary_sensor.py:65:5-23: Class member `SchlageBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/schlage/coordinator.py:43:5-17: Class member `SchlageDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/schlage/lock.py:60:48-63: Argument `BoundMethod[Lock, (self: Lock) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/schlage/lock.py:65:48-65: Argument `BoundMethod[Lock, (self: Lock) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/schlage/select.py:17:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/schlage/select.py:18:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/schlage/select.py:19:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/schlage/select.py:59:14-32: Class member `SchlageSelect.entity_description` overrides parent class `SchlageEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/schlage/sensor.py:20:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/schlage/sensor.py:22:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/schlage/sensor.py:63:14-32: Class member `SchlageBatterySensor.entity_description` overrides parent class `SchlageEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/schlage/switch.py:36:9-12: Unexpected keyword argument `key` in function `SchlageSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/schlage/switch.py:37:9-24: Unexpected keyword argument `translation_key` in function `SchlageSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/schlage/switch.py:39:9-24: Unexpected keyword argument `entity_category` in function `SchlageSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/schlage/switch.py:45:9-12: Unexpected keyword argument `key` in function `SchlageSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/schlage/switch.py:46:9-24: Unexpected keyword argument `translation_key` in function `SchlageSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/schlage/switch.py:48:9-24: Unexpected keyword argument `entity_category` in function `SchlageSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/schlage/switch.py:82:5-23: Class member `SchlageSwitch.entity_description` overrides parent class `SchlageEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/schlage/switch.py:82:5-23: Class member `SchlageSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/schluter/__init__.py:6:1-29: Could not find import of `schluter.api` [missing-import] +ERROR homeassistant/components/schluter/__init__.py:7:1-70: Could not find import of `schluter.authenticator` [missing-import] +ERROR homeassistant/components/schluter/climate.py:83:5-29: Class member `SchluterThermostat._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/scrape/__init__.py:76:28-41: `scrape_config` is uninitialized [unbound-name] +ERROR homeassistant/components/scrape/coordinator.py:55:54-83: Unpacked argument `tuple[str, Literal['lxml']]` is not assignable to parameter `*args` with type `tuple[IO[bytes] | IO[str] | bytes | str, Sequence[str] | str | None, TreeBuilder | type[TreeBuilder] | None, SoupStrainer | None, str | None, Iterable[str] | None, dict[type[PageElement], type[PageElement]] | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/scrape/sensor.py:220:56-61: `value` may be uninitialized [unbound-name] +ERROR homeassistant/components/screenlogic/__init__.py:66:37-51: Unpacked keyword argument `int | str` is not assignable to parameter `connection_closed_callback` with type `(...) -> Unknown` in function `screenlogicpy.gateway.ScreenLogicGateway.async_connect` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:48:27-46: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushBinarySensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:50:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:55:27-46: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushBinarySensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:57:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:61:27-46: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushBinarySensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:63:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:67:27-46: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushBinarySensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:69:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:73:27-46: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushBinarySensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:75:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:83:9-12: Unexpected keyword argument `key` in function `ScreenLogicBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:89:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushBinarySensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:91:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:96:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushBinarySensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:98:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:101:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:104:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushBinarySensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:106:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:108:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:109:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:112:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushBinarySensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:114:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:117:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:120:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushBinarySensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:122:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:124:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:125:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:128:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushBinarySensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:130:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:132:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:133:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:136:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushBinarySensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:138:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:140:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:141:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:144:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushBinarySensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:146:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:148:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:151:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushBinarySensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:153:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:154:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:155:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:158:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushBinarySensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:160:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:161:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:162:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:165:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushBinarySensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:167:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:168:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:171:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushBinarySensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:173:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:175:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:178:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushBinarySensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/binary_sensor.py:180:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:182:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:189:9-12: Unexpected keyword argument `key` in function `ScreenLogicBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:190:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/binary_sensor.py:263:5-23: Class member `ScreenLogicBinarySensor.entity_description` overrides parent class `ScreenLogicEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/binary_sensor.py:263:5-23: Class member `ScreenLogicBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/binary_sensor.py:276:5-23: Class member `ScreenLogicPushBinarySensor.entity_description` overrides parent class `ScreenLogicPushEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/binary_sensor.py:276:5-23: Class member `ScreenLogicPushBinarySensor.entity_description` overrides parent class `ScreenLogicBinarySensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/climate.py:56:35-54: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicClimateDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/climate.py:58:17-20: Unexpected keyword argument `key` in function `ScreenLogicClimateDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/climate.py:59:17-32: Unexpected keyword argument `translation_key` in function `ScreenLogicClimateDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/climate.py:76:5-23: Class member `ScreenLogicClimate.entity_description` overrides parent class `ScreenLogicPushEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/climate.py:76:5-23: Class member `ScreenLogicClimate.entity_description` overrides parent class `ClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/climate.py:76:5-23: Class member `ScreenLogicClimate.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/climate.py:78:5-29: Class member `ScreenLogicClimate._attr_supported_features` overrides parent class `ScreenLogicPushEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/climate.py:78:5-29: Class member `ScreenLogicClimate._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/climate.py:140:30-47: Argument `None` is not assignable to parameter `value` with type `int` in function `enum.IntEnum.__new__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/climate.py:181:29-39: `int` is not assignable to attribute `_last_preset` with type `None` [bad-assignment] +ERROR homeassistant/components/screenlogic/climate.py:207:36-79: Argument `Any | None` is not assignable to parameter `value` with type `str` in function `screenlogicpy.const.common.SLIntEnum.parse` [bad-argument-type] +ERROR homeassistant/components/screenlogic/climate.py:212:33-43: `int` is not assignable to attribute `_last_preset` with type `None` [bad-assignment] +ERROR homeassistant/components/screenlogic/climate.py:219:33-43: `int` is not assignable to attribute `_last_preset` with type `None` [bad-assignment] +ERROR homeassistant/components/screenlogic/config_flow.py:80:9-31: Class member `ScreenlogicConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/config_flow.py:169:48-51: `mac` may be uninitialized [unbound-name] +ERROR homeassistant/components/screenlogic/config_flow.py:172:40-43: `mac` may be uninitialized [unbound-name] +ERROR homeassistant/components/screenlogic/coordinator.py:39:36-39: Cannot index into `dict[str, dict[str, Any]]` [bad-index] +ERROR homeassistant/components/screenlogic/coordinator.py:55:5-17: Class member `ScreenlogicDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/coordinator.py:101:50-64: Unpacked keyword argument `int | str` is not assignable to parameter `connection_closed_callback` with type `(...) -> Unknown` in function `screenlogicpy.gateway.ScreenLogicGateway.async_connect` [bad-argument-type] +ERROR homeassistant/components/screenlogic/entity.py:43:5-23: Class member `ScreenLogicEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/entity.py:110:5-23: Class member `ScreenLogicPushEntity.entity_description` overrides parent class `ScreenLogicEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/entity.py:134:17-40: Argument `CODE` is not assignable to parameter `code` with type `int` in function `screenlogicpy.gateway.ScreenLogicGateway.async_subscribe_client` [bad-argument-type] +ERROR homeassistant/components/screenlogic/entity.py:171:50-64: Argument `str` is not assignable to parameter `circuitID` with type `int` in function `screenlogicpy.gateway.ScreenLogicGateway.async_set_circuit` [bad-argument-type] +ERROR homeassistant/components/screenlogic/light.py:44:39-58: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicLightDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/light.py:46:21-24: Unexpected keyword argument `key` in function `ScreenLogicLightDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/light.py:47:21-52: Unexpected keyword argument `entity_registry_enabled_default` in function `ScreenLogicLightDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/light.py:68:5-23: Class member `ScreenLogicLight.entity_description` overrides parent class `ScreenLogicCircuitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/light.py:68:5-23: Class member `ScreenLogicLight.entity_description` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/number.py:55:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushNumberDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/number.py:57:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/number.py:58:9-24: Unexpected keyword argument `entity_category` in function `ScreenLogicPushNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/number.py:60:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/number.py:63:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushNumberDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/number.py:65:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/number.py:66:9-24: Unexpected keyword argument `entity_category` in function `ScreenLogicPushNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/number.py:68:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/number.py:71:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushNumberDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/number.py:73:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/number.py:74:9-24: Unexpected keyword argument `entity_category` in function `ScreenLogicPushNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/number.py:76:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/number.py:79:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushNumberDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/number.py:81:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/number.py:82:9-24: Unexpected keyword argument `entity_category` in function `ScreenLogicPushNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/number.py:84:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/number.py:91:9-12: Unexpected keyword argument `key` in function `ScreenLogicNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/number.py:92:9-24: Unexpected keyword argument `entity_category` in function `ScreenLogicNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/number.py:93:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/number.py:97:9-12: Unexpected keyword argument `key` in function `ScreenLogicNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/number.py:98:9-24: Unexpected keyword argument `entity_category` in function `ScreenLogicNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/number.py:99:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/number.py:144:5-23: Class member `ScreenLogicNumber.entity_description` overrides parent class `ScreenLogicEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/number.py:144:5-23: Class member `ScreenLogicNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/number.py:183:5-23: Class member `ScreenLogicPushNumber.entity_description` overrides parent class `ScreenLogicPushEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/number.py:183:5-23: Class member `ScreenLogicPushNumber.entity_description` overrides parent class `ScreenLogicNumber` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/sensor.py:56:27-46: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:58:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:64:27-46: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:66:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:72:9-24: Unexpected keyword argument `entity_category` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:73:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:80:9-12: Unexpected keyword argument `key` in function `ScreenLogicSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:85:9-12: Unexpected keyword argument `key` in function `ScreenLogicSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:90:9-12: Unexpected keyword argument `key` in function `ScreenLogicSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:97:27-46: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:99:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:103:27-46: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:105:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:109:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:111:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:113:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:114:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:117:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:119:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:122:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:125:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:127:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:130:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:131:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:134:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:136:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:139:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:140:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:143:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:145:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:148:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:151:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:153:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:155:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:158:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:160:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:161:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:162:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:165:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:167:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:168:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:169:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:172:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:174:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:175:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:176:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:179:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:181:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:182:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:183:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:186:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:188:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:189:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:190:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:193:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:195:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:196:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:197:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:200:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:202:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:205:42-45: Argument `int | str` is not assignable to parameter `value` with type `int` in function `enum.IntEnum.__new__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:206:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:207:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:210:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:212:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:215:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:216:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:219:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:221:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:224:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:225:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:228:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:230:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:233:42-45: Argument `int | str` is not assignable to parameter `value` with type `int` in function `enum.IntEnum.__new__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:234:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:235:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:238:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:240:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:243:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:244:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:247:27-49: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicPushSensorDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/sensor.py:249:9-12: Unexpected keyword argument `key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:252:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:253:9-33: Unexpected keyword argument `translation_placeholders` in function `ScreenLogicPushSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:260:9-12: Unexpected keyword argument `key` in function `ScreenLogicSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:262:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:266:9-12: Unexpected keyword argument `key` in function `ScreenLogicSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:267:9-24: Unexpected keyword argument `translation_key` in function `ScreenLogicSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/sensor.py:344:5-23: Class member `ScreenLogicSensor.entity_description` overrides parent class `ScreenLogicEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/sensor.py:344:5-23: Class member `ScreenLogicSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/sensor.py:369:5-23: Class member `ScreenLogicPushSensor.entity_description` overrides parent class `ScreenLogicSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/sensor.py:369:5-23: Class member `ScreenLogicPushSensor.entity_description` overrides parent class `ScreenLogicPushEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/switch.py:51:39-58: Argument `int` is not assignable to parameter `subscription_code` with type `CODE` in function `ScreenLogicCircuitSwitchDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/screenlogic/switch.py:53:21-24: Unexpected keyword argument `key` in function `ScreenLogicCircuitSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/switch.py:54:21-52: Unexpected keyword argument `entity_registry_enabled_default` in function `ScreenLogicCircuitSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/screenlogic/switch.py:68:5-23: Class member `ScreenLogicCircuitSwitch.entity_description` overrides parent class `ScreenLogicCircuitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/screenlogic/switch.py:68:5-23: Class member `ScreenLogicCircuitSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/script/__init__.py:545:5-20: Class member `ScriptEntity._attr_unique_id` overrides parent class `BaseScriptEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/script/__init__.py:545:5-20: Class member `ScriptEntity._attr_unique_id` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/scsgate/__init__.py:6:1-42: Could not find import of `scsgate.connection` [missing-import] +ERROR homeassistant/components/scsgate/__init__.py:7:1-68: Could not find import of `scsgate.messages` [missing-import] +ERROR homeassistant/components/scsgate/__init__.py:8:1-36: Could not find import of `scsgate.reactor` [missing-import] +ERROR homeassistant/components/scsgate/__init__.py:9:1-40: Could not find import of `scsgate.tasks` [missing-import] +ERROR homeassistant/components/scsgate/__init__.py:47:9-21: Object of class `NoneType` has no attribute `stop` [missing-attribute] +ERROR homeassistant/components/scsgate/cover.py:8:1-12:2: Could not find import of `scsgate.tasks` [missing-import] +ERROR homeassistant/components/scsgate/light.py:8:1-43: Could not find import of `scsgate.tasks` [missing-import] +ERROR homeassistant/components/scsgate/switch.py:8:1-68: Could not find import of `scsgate.messages` [missing-import] +ERROR homeassistant/components/scsgate/switch.py:9:1-43: Could not find import of `scsgate.tasks` [missing-import] +ERROR homeassistant/components/search/__init__.py:553:16-28: `device_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/search/__init__.py:594:16-28: `entity_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/search/__init__.py:605:16-26: `area_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/select/__init__.py:129:5-23: Class member `SelectEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/select/__init__.py:132:5-16: Class member `SelectEntity._attr_state` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sendgrid/notify.py:8:1-39: Could not find import of `sendgrid` [missing-import] +ERROR homeassistant/components/sense/binary_sensor.py:45:5-23: Class member `SenseBinarySensor._attr_device_class` overrides parent class `SenseDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sense/coordinator.py:36:5-17: Class member `SenseCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sense/sensor.py:124:5-23: Class member `SensePowerSensor._attr_device_class` overrides parent class `SenseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sense/sensor.py:159:5-23: Class member `SenseVoltageSensor._attr_device_class` overrides parent class `SenseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sense/sensor.py:210:18-36: Class member `SenseTrendsSensor._attr_device_class` overrides parent class `SenseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sense/sensor.py:234:5-23: Class member `SenseDevicePowerSensor._attr_device_class` overrides parent class `SenseDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sense/sensor.py:258:5-23: Class member `SenseDeviceEnergySensor._attr_device_class` overrides parent class `SenseDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/binary_sensor.py:44:5-8: Unexpected keyword argument `key` in function `SensiboDeviceBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:45:5-20: Unexpected keyword argument `translation_key` in function `SensiboDeviceBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:52:9-12: Unexpected keyword argument `key` in function `SensiboMotionBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:54:9-24: Unexpected keyword argument `entity_category` in function `SensiboMotionBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:58:9-12: Unexpected keyword argument `key` in function `SensiboMotionBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `SensiboMotionBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:60:9-24: Unexpected keyword argument `entity_category` in function `SensiboMotionBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:64:9-12: Unexpected keyword argument `key` in function `SensiboMotionBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:72:9-12: Unexpected keyword argument `key` in function `SensiboDeviceBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:73:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:85:9-12: Unexpected keyword argument `key` in function `SensiboDeviceBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:87:9-24: Unexpected keyword argument `entity_category` in function `SensiboDeviceBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:92:9-12: Unexpected keyword argument `key` in function `SensiboDeviceBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:94:9-24: Unexpected keyword argument `entity_category` in function `SensiboDeviceBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:99:9-12: Unexpected keyword argument `key` in function `SensiboDeviceBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:101:9-24: Unexpected keyword argument `entity_category` in function `SensiboDeviceBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:106:9-12: Unexpected keyword argument `key` in function `SensiboDeviceBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:108:9-24: Unexpected keyword argument `entity_category` in function `SensiboDeviceBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/binary_sensor.py:181:5-23: Class member `SensiboMotionSensor.entity_description` overrides parent class `SensiboMotionBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/binary_sensor.py:181:5-23: Class member `SensiboMotionSensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/binary_sensor.py:212:5-23: Class member `SensiboDeviceSensor.entity_description` overrides parent class `SensiboDeviceBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/binary_sensor.py:212:5-23: Class member `SensiboDeviceSensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/button.py:28:5-8: Unexpected keyword argument `key` in function `SensiboButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/button.py:29:5-20: Unexpected keyword argument `translation_key` in function `SensiboButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/button.py:30:5-20: Unexpected keyword argument `entity_category` in function `SensiboButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/button.py:66:5-23: Class member `SensiboDeviceButton.entity_description` overrides parent class `SensiboDeviceBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/button.py:66:5-23: Class member `SensiboDeviceButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/climate.py:99:37-60: No matching overload found for function `_bisect.bisect_left` called with arguments: (list[int], float) [no-matching-overload] +ERROR homeassistant/components/sensibo/coordinator.py:31:5-17: Class member `SensiboDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/number.py:37:9-12: Unexpected keyword argument `key` in function `SensiboNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/number.py:38:9-24: Unexpected keyword argument `translation_key` in function `SensiboNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/number.py:42:9-24: Unexpected keyword argument `entity_category` in function `SensiboNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/number.py:43:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SensiboNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/number.py:50:9-12: Unexpected keyword argument `key` in function `SensiboNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/number.py:51:9-24: Unexpected keyword argument `translation_key` in function `SensiboNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/number.py:55:9-24: Unexpected keyword argument `entity_category` in function `SensiboNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/number.py:56:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SensiboNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/number.py:97:5-23: Class member `SensiboNumber.entity_description` overrides parent class `SensiboDeviceBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/number.py:97:5-23: Class member `SensiboNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/select.py:34:9-12: Unexpected keyword argument `key` in function `SensiboSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/select.py:38:9-24: Unexpected keyword argument `translation_key` in function `SensiboSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/select.py:77:5-23: Class member `SensiboSelect.entity_description` overrides parent class `SensiboDeviceBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/select.py:77:5-23: Class member `SensiboSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/select.py:132:13-25: Argument `bool | dict[str, Any] | str | Any` is not assignable to parameter `name` with type `str` in function `pysensibo.SensiboClient.async_set_ac_state_property` [bad-argument-type] +ERROR homeassistant/components/sensibo/select.py:134:13-30: Argument `bool | dict[str, Any] | str | Any` is not assignable to parameter `ac_state` with type `dict[str, Any]` in function `pysensibo.SensiboClient.async_set_ac_state_property` [bad-argument-type] +ERROR homeassistant/components/sensibo/select.py:135:13-34: Argument `bool | dict[str, Any] | str | Any` is not assignable to parameter `assumed_state` with type `bool` in function `pysensibo.SensiboClient.async_set_ac_state_property` [bad-argument-type] +ERROR homeassistant/components/sensibo/sensor.py:62:5-8: Unexpected keyword argument `key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:63:5-20: Unexpected keyword argument `translation_key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:71:9-12: Unexpected keyword argument `key` in function `SensiboMotionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `SensiboMotionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:74:9-24: Unexpected keyword argument `entity_category` in function `SensiboMotionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:78:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SensiboMotionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:81:9-12: Unexpected keyword argument `key` in function `SensiboMotionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `SensiboMotionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:84:9-24: Unexpected keyword argument `entity_category` in function `SensiboMotionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:90:9-12: Unexpected keyword argument `key` in function `SensiboMotionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:97:9-12: Unexpected keyword argument `key` in function `SensiboMotionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:117:9-12: Unexpected keyword argument `key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:118:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:125:9-12: Unexpected keyword argument `key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:136:9-12: Unexpected keyword argument `key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:137:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:143:9-12: Unexpected keyword argument `key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:144:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:150:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:153:9-12: Unexpected keyword argument `key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:154:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:160:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:163:9-12: Unexpected keyword argument `key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:164:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:170:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:173:9-12: Unexpected keyword argument `key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:174:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:177:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:184:9-12: Unexpected keyword argument `key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:185:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:192:9-12: Unexpected keyword argument `key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:193:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:205:9-12: Unexpected keyword argument `key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:213:9-12: Unexpected keyword argument `key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:214:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:221:9-12: Unexpected keyword argument `key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:229:9-12: Unexpected keyword argument `key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:232:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:237:9-12: Unexpected keyword argument `key` in function `SensiboDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/sensor.py:299:5-23: Class member `SensiboMotionSensor.entity_description` overrides parent class `SensiboMotionBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/sensor.py:299:5-23: Class member `SensiboMotionSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/sensor.py:330:5-23: Class member `SensiboDeviceSensor.entity_description` overrides parent class `SensiboDeviceBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/sensor.py:330:5-23: Class member `SensiboDeviceSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/switch.py:41:9-12: Unexpected keyword argument `key` in function `SensiboDeviceSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/switch.py:42:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/switch.py:51:9-12: Unexpected keyword argument `key` in function `SensiboDeviceSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/switch.py:52:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/switch.py:64:9-12: Unexpected keyword argument `key` in function `SensiboDeviceSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/switch.py:65:9-24: Unexpected keyword argument `translation_key` in function `SensiboDeviceSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/switch.py:112:5-23: Class member `SensiboDeviceSwitch.entity_description` overrides parent class `SensiboDeviceBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/switch.py:112:5-23: Class member `SensiboDeviceSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/update.py:36:9-12: Unexpected keyword argument `key` in function `SensiboDeviceUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensibo/update.py:78:5-23: Class member `SensiboDeviceUpdate.entity_description` overrides parent class `SensiboDeviceBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensibo/update.py:78:5-23: Class member `SensiboDeviceUpdate.entity_description` overrides parent class `UpdateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensirion_ble/__init__.py:50:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/sensirion_ble/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensirion_ble/sensor.py:51:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensirion_ble/sensor.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensirion_ble/sensor.py:124:7-37: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/sensor/__init__.py:111:5-17: Class member `SensorEntityDescription.device_class` overrides parent class `EntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensor/__init__.py:118:5-24: Class member `SensorEntityDescription.unit_of_measurement` overrides parent class `EntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensor/__init__.py:185:5-23: Class member `SensorEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensor/__init__.py:186:5-23: Class member `SensorEntity._attr_device_class` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensor/__init__.py:192:5-16: Class member `SensorEntity._attr_state` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensor/__init__.py:195:5-30: Class member `SensorEntity._attr_unit_of_measurement` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensor/__init__.py:754:87-92: `units` may be uninitialized [unbound-name] +ERROR homeassistant/components/sensor/recorder.py:668:27-670:14: `tuple[Any, ...]` is not assignable to TypedDict key `max` with type `float` [bad-typed-dict-key] +ERROR homeassistant/components/sensor/recorder.py:672:27-674:14: `tuple[Any, ...]` is not assignable to TypedDict key `min` with type `float` [bad-typed-dict-key] +ERROR homeassistant/components/sensorpro/__init__.py:50:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/sensorpro/sensor.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpro/sensor.py:44:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpro/sensor.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpro/sensor.py:56:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpro/sensor.py:60:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpro/sensor.py:61:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpro/sensor.py:67:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpro/sensor.py:76:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpro/sensor.py:129:7-37: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/sensorpush/sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush/sensor.py:39:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush/sensor.py:54:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush/sensor.py:58:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush/sensor.py:115:7-38: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:47:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:53:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:55:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:60:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:62:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:63:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:68:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:70:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:76:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:82:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:84:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:89:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:95:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:97:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensorpush_cloud/sensor.py:134:14-32: Class member `SensorPushCloudSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensoterra/coordinator.py:26:5-17: Class member `SensoterraCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sensoterra/sensor.py:44:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensoterra/sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensoterra/sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensoterra/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensoterra/sensor.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensoterra/sensor.py:65:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensoterra/sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensoterra/sensor.py:73:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensoterra/sensor.py:78:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensoterra/sensor.py:79:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sensoterra/sensor.py:137:14-32: Class member `SensoterraEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sentry/__init__.py:107:50-59: Argument `() -> Unknown` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_import_executor_job` [bad-argument-type] +ERROR homeassistant/components/sentry/config_flow.py:48:9-31: Class member `SentryConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/senz/climate.py:45:5-29: Class member `SENZClimate._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/senz/sensor.py:35:9-12: Unexpected keyword argument `key` in function `SenzSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/senz/sensor.py:62:5-23: Class member `SENZSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/senz/sensor.py:62:5-23: Class member `SENZSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/serial/sensor.py:150:34-161:10: `Task[Unknown]` is not assignable to attribute `_serial_loop_task` with type `None` [bad-assignment] +ERROR homeassistant/components/serial/sensor.py:218:52-56: `dict[Unknown, Unknown]` is not assignable to attribute `_attributes` with type `None` [bad-assignment] +ERROR homeassistant/components/serial/sensor.py:226:39-43: `str | Unknown` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/serial_pm/sensor.py:7:1-37: Could not find import of `pmsensor` [missing-import] +ERROR homeassistant/components/sesame/lock.py:7:8-17: Could not find import of `pysesame2` [missing-import] +ERROR homeassistant/components/seventeentrack/config_flow.py:56:9-31: Class member `SeventeenTrackConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/seventeentrack/coordinator.py:35:5-17: Class member `SeventeenTrackCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/seventeentrack/sensor.py:42:25-59: Argument `set[tuple[str, str | None]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/seventeentrack/services.py:141:34-53: Object of class `str` has no attribute `isoformat` [missing-attribute] +ERROR homeassistant/components/sfr_box/binary_sensor.py:33:9-12: Unexpected keyword argument `key` in function `SFRBoxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/binary_sensor.py:35:9-24: Unexpected keyword argument `entity_category` in function `SFRBoxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/binary_sensor.py:37:9-24: Unexpected keyword argument `translation_key` in function `SFRBoxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/binary_sensor.py:42:9-12: Unexpected keyword argument `key` in function `SFRBoxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/binary_sensor.py:44:9-24: Unexpected keyword argument `entity_category` in function `SFRBoxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/binary_sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `SFRBoxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/binary_sensor.py:51:9-12: Unexpected keyword argument `key` in function `SFRBoxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/binary_sensor.py:53:9-24: Unexpected keyword argument `entity_category` in function `SFRBoxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/binary_sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `SFRBoxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/binary_sensor.py:92:5-23: Class member `SFRBoxBinarySensor.entity_description` overrides parent class `SFRCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sfr_box/binary_sensor.py:92:5-23: Class member `SFRBoxBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sfr_box/button.py:59:9-24: Unexpected keyword argument `entity_category` in function `SFRBoxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/button.py:60:9-12: Unexpected keyword argument `key` in function `SFRBoxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/button.py:85:5-23: Class member `SFRBoxButton.entity_description` overrides parent class `SFREntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sfr_box/button.py:85:5-23: Class member `SFRBoxButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sfr_box/coordinator.py:39:5-17: Class member `SFRDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sfr_box/sensor.py:39:9-12: Unexpected keyword argument `key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:40:9-24: Unexpected keyword argument `entity_category` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:41:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:46:9-12: Unexpected keyword argument `key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:47:9-24: Unexpected keyword argument `entity_category` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:48:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:53:9-12: Unexpected keyword argument `key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:54:9-24: Unexpected keyword argument `entity_category` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:55:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:60:9-12: Unexpected keyword argument `key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:62:9-24: Unexpected keyword argument `entity_category` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:63:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:70:9-12: Unexpected keyword argument `key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:72:9-24: Unexpected keyword argument `entity_category` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:73:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:80:9-12: Unexpected keyword argument `key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:82:9-24: Unexpected keyword argument `entity_category` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:83:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:90:9-12: Unexpected keyword argument `key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:92:9-24: Unexpected keyword argument `entity_category` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:93:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:100:9-12: Unexpected keyword argument `key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:104:9-24: Unexpected keyword argument `translation_key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:108:9-12: Unexpected keyword argument `key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:116:9-12: Unexpected keyword argument `key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:118:9-24: Unexpected keyword argument `entity_category` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:119:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:129:28-44: `_value_to_option` is uninitialized [unbound-name] +ERROR homeassistant/components/sfr_box/sensor.py:132:9-12: Unexpected keyword argument `key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:134:9-24: Unexpected keyword argument `entity_category` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:135:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:148:9-24: Unexpected keyword argument `translation_key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:149:28-44: `_value_to_option` is uninitialized [unbound-name] +ERROR homeassistant/components/sfr_box/sensor.py:154:9-12: Unexpected keyword argument `key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:156:9-24: Unexpected keyword argument `entity_category` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:157:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:164:9-24: Unexpected keyword argument `translation_key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:168:9-12: Unexpected keyword argument `key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:170:9-24: Unexpected keyword argument `entity_category` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:171:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:177:9-12: Unexpected keyword argument `key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:179:9-24: Unexpected keyword argument `entity_category` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:180:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:183:28-44: `_get_temperature` is uninitialized [unbound-name] +ERROR homeassistant/components/sfr_box/sensor.py:188:9-12: Unexpected keyword argument `key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:190:9-24: Unexpected keyword argument `entity_category` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:191:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:199:9-24: Unexpected keyword argument `translation_key` in function `SFRBoxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sfr_box/sensor.py:248:5-23: Class member `SFRBoxSensor.entity_description` overrides parent class `SFRCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sfr_box/sensor.py:248:5-23: Class member `SFRBoxSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sftp_storage/backup.py:64:15-36: Class member `SFTPBackupAgent.async_download_backup` overrides parent class `BackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sftp_storage/config_flow.py:236:46-61: Argument `() -> str` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/sharkiq/coordinator.py:27:5-17: Class member `SharkIqUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sharkiq/coordinator.py:73:20-74:73: `>` is not supported between `datetime` and `timedelta` [unsupported-operation] +ERROR homeassistant/components/sharkiq/coordinator.py:74:19-73: `-` is not supported between `None` and `timedelta` [unsupported-operation] +ERROR homeassistant/components/sharkiq/vacuum.py:84:5-29: Class member `SharkVacuumEntity._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sharkiq/vacuum.py:233:36-78: Argument `PowerModes | None` is not assignable to parameter `value` with type `Enum | int | str` in function `sharkiq.sharkiq.SharkIqVacuum.async_set_property_value` [bad-argument-type] +ERROR homeassistant/components/shell_command/__init__.py:80:47-60: Argument `Any | None` is not assignable to parameter `s` with type `_ShlexInstream | str` in function `shlex.split` [bad-argument-type] +ERROR homeassistant/components/shelly/binary_sensor.py:68:5-23: Class member `RpcBinarySensor.entity_description` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/binary_sensor.py:68:5-23: Class member `RpcBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/binary_sensor.py:109:9-12: Unexpected keyword argument `key` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:110:9-13: Unexpected keyword argument `name` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:112:9-24: Unexpected keyword argument `entity_category` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:115:9-12: Unexpected keyword argument `key` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:116:9-13: Unexpected keyword argument `name` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:118:9-24: Unexpected keyword argument `entity_category` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:121:9-12: Unexpected keyword argument `key` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:122:9-13: Unexpected keyword argument `name` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:124:9-24: Unexpected keyword argument `entity_category` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:127:9-12: Unexpected keyword argument `key` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:128:9-13: Unexpected keyword argument `name` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:130:9-24: Unexpected keyword argument `entity_category` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:133:9-12: Unexpected keyword argument `key` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:134:9-13: Unexpected keyword argument `name` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:139:9-12: Unexpected keyword argument `key` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:139:29-33: Unexpected keyword argument `name` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:142:9-12: Unexpected keyword argument `key` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:143:9-13: Unexpected keyword argument `name` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:145:9-24: Unexpected keyword argument `translation_key` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:149:9-12: Unexpected keyword argument `key` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:149:29-33: Unexpected keyword argument `name` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:152:9-12: Unexpected keyword argument `key` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:153:9-13: Unexpected keyword argument `name` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:157:9-12: Unexpected keyword argument `key` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:158:9-13: Unexpected keyword argument `name` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:163:9-12: Unexpected keyword argument `key` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:164:9-13: Unexpected keyword argument `name` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:169:9-12: Unexpected keyword argument `key` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:170:9-13: Unexpected keyword argument `name` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:175:9-12: Unexpected keyword argument `key` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:176:9-13: Unexpected keyword argument `name` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:178:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:181:9-12: Unexpected keyword argument `key` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:181:30-34: Unexpected keyword argument `name` in function `BlockBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:187:9-12: Unexpected keyword argument `key` in function `RestBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:188:9-13: Unexpected keyword argument `name` in function `RestBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:191:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RestBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:192:9-24: Unexpected keyword argument `entity_category` in function `RestBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:198:9-12: Unexpected keyword argument `key` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:204:9-12: Unexpected keyword argument `key` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:206:9-13: Unexpected keyword argument `name` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:208:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:209:9-24: Unexpected keyword argument `entity_category` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:212:9-12: Unexpected keyword argument `key` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:214:9-13: Unexpected keyword argument `name` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:217:9-24: Unexpected keyword argument `entity_category` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:220:9-12: Unexpected keyword argument `key` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:222:9-13: Unexpected keyword argument `name` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:225:9-24: Unexpected keyword argument `entity_category` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:229:9-12: Unexpected keyword argument `key` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:231:9-13: Unexpected keyword argument `name` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:234:9-24: Unexpected keyword argument `entity_category` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:238:9-12: Unexpected keyword argument `key` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:240:9-13: Unexpected keyword argument `name` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:243:9-24: Unexpected keyword argument `entity_category` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:247:9-12: Unexpected keyword argument `key` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:249:9-13: Unexpected keyword argument `name` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:252:9-24: Unexpected keyword argument `entity_category` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:256:9-12: Unexpected keyword argument `key` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:258:9-13: Unexpected keyword argument `name` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:262:9-12: Unexpected keyword argument `key` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:264:9-13: Unexpected keyword argument `name` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:266:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:267:9-24: Unexpected keyword argument `entity_category` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:270:9-12: Unexpected keyword argument `key` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:278:9-12: Unexpected keyword argument `key` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:281:9-24: Unexpected keyword argument `entity_category` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:286:9-12: Unexpected keyword argument `key` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:288:9-13: Unexpected keyword argument `name` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:291:9-24: Unexpected keyword argument `entity_category` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:295:9-12: Unexpected keyword argument `key` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:297:9-13: Unexpected keyword argument `name` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:301:9-12: Unexpected keyword argument `key` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:303:9-13: Unexpected keyword argument `name` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:304:9-24: Unexpected keyword argument `entity_category` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:307:9-12: Unexpected keyword argument `key` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:312:9-13: Unexpected keyword argument `name` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:314:9-24: Unexpected keyword argument `entity_category` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:318:9-12: Unexpected keyword argument `key` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:321:9-13: Unexpected keyword argument `name` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:326:9-12: Unexpected keyword argument `key` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:328:9-13: Unexpected keyword argument `name` in function `RpcBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/binary_sensor.py:414:5-23: Class member `BlockBinarySensor.entity_description` overrides parent class `ShellyBlockAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/binary_sensor.py:414:5-23: Class member `BlockBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/binary_sensor.py:425:5-23: Class member `RestBinarySensor.entity_description` overrides parent class `ShellyRestAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/binary_sensor.py:425:5-23: Class member `RestBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/binary_sensor.py:438:5-23: Class member `BlockSleepingBinarySensor.entity_description` overrides parent class `ShellySleepingBlockAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/binary_sensor.py:438:5-23: Class member `BlockSleepingBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/binary_sensor.py:438:5-23: Class member `BlockSleepingBinarySensor.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/binary_sensor.py:462:5-23: Class member `RpcSleepingBinarySensor.entity_description` overrides parent class `ShellySleepingRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/binary_sensor.py:462:5-23: Class member `RpcSleepingBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/binary_sensor.py:462:5-23: Class member `RpcSleepingBinarySensor.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/button.py:79:9-12: Unexpected keyword argument `key` in function `ShellyButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:81:9-24: Unexpected keyword argument `entity_category` in function `ShellyButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:85:9-12: Unexpected keyword argument `key` in function `ShellyButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:86:9-24: Unexpected keyword argument `translation_key` in function `ShellyButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:87:9-24: Unexpected keyword argument `entity_category` in function `ShellyButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:92:9-12: Unexpected keyword argument `key` in function `ShellyButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:93:9-24: Unexpected keyword argument `translation_key` in function `ShellyButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:94:9-24: Unexpected keyword argument `entity_category` in function `ShellyButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:99:9-12: Unexpected keyword argument `key` in function `ShellyButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:100:9-24: Unexpected keyword argument `translation_key` in function `ShellyButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:101:9-24: Unexpected keyword argument `entity_category` in function `ShellyButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:106:9-12: Unexpected keyword argument `key` in function `ShellyButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:107:9-24: Unexpected keyword argument `translation_key` in function `ShellyButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:113:9-12: Unexpected keyword argument `key` in function `ShellyButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:114:9-24: Unexpected keyword argument `translation_key` in function `ShellyButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:260:5-23: Class member `ShellyBaseButton.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/button.py:260:5-23: Class member `ShellyBaseButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/button.py:339:5-23: Class member `ShellyBluTrvButton.entity_description` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/button.py:339:5-23: Class member `ShellyBluTrvButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/button.py:340:5-8: Class member `ShellyBluTrvButton._id` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/button.py:373:5-23: Class member `RpcVirtualButton.entity_description` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/button.py:373:5-23: Class member `RpcVirtualButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/button.py:374:5-8: Class member `RpcVirtualButton._id` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/button.py:401:5-23: Class member `RpcSleepingSmokeMuteButton.entity_description` overrides parent class `ShellySleepingRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/button.py:401:5-23: Class member `RpcSleepingSmokeMuteButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/button.py:439:9-12: Unexpected keyword argument `key` in function `RpcButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:443:9-12: Unexpected keyword argument `key` in function `RpcButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:444:9-24: Unexpected keyword argument `translation_key` in function `RpcButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:445:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:450:9-12: Unexpected keyword argument `key` in function `RpcButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:451:9-24: Unexpected keyword argument `translation_key` in function `RpcButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:452:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:457:9-12: Unexpected keyword argument `key` in function `RpcButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:458:9-24: Unexpected keyword argument `translation_key` in function `RpcButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:459:9-24: Unexpected keyword argument `entity_category` in function `RpcButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:464:9-12: Unexpected keyword argument `key` in function `RpcButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/button.py:466:9-24: Unexpected keyword argument `translation_key` in function `RpcButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/climate.py:85:5-23: Class member `RpcLinkedgoThermostatClimate.entity_description` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/climate.py:85:5-23: Class member `RpcLinkedgoThermostatClimate.entity_description` overrides parent class `ClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/climate.py:88:5-8: Class member `RpcLinkedgoThermostatClimate._id` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/climate.py:101:14-38: Class member `RpcLinkedgoThermostatClimate._attr_supported_features` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/climate.py:259:9-12: Unexpected keyword argument `key` in function `RpcClimateDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/climate.py:314:8-20: Expected `__bool__` to be a callable, got `BoundMethod[NoneType, (self: NoneType) -> Literal[False]] | str | None` [not-callable] +ERROR homeassistant/components/shelly/climate.py:314:8-20: Expected `__bool__` to be a callable, got `str | None` [not-callable] +ERROR homeassistant/components/shelly/climate.py:403:5-29: Class member `BlockSleepingClimate._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/climate.py:403:5-29: Class member `BlockSleepingClimate._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/climate.py:662:12-29: Expected `__bool__` to be a callable, got `BoundMethod[NoneType, (self: NoneType) -> Literal[False]] | str | None` [not-callable] +ERROR homeassistant/components/shelly/climate.py:662:12-29: Expected `__bool__` to be a callable, got `str | None` [not-callable] +ERROR homeassistant/components/shelly/climate.py:688:5-29: Class member `RpcClimate._attr_supported_features` overrides parent class `ShellyRpcEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/climate.py:766:5-29: Class member `RpcBluTrvClimate._attr_supported_features` overrides parent class `ShellyRpcEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/config_flow.py:310:21-40: Object of class `object` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/shelly/config_flow.py:311:21-40: Object of class `object` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/shelly/config_flow.py:685:16-19: `mac` may be uninitialized [unbound-name] +ERROR homeassistant/components/shelly/config_flow.py:834:9-31: Class member `ShellyConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/coordinator.py:108:5-17: Class member `ShellyCoordinatorBase.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/coordinator.py:245:12-28: `new_sleep_period` may be uninitialized [unbound-name] +ERROR homeassistant/components/shelly/coordinator.py:246:39-55: `new_sleep_period` may be uninitialized [unbound-name] +ERROR homeassistant/components/shelly/coordinator.py:376:74-84: Cannot index into `dict[str, str]` [bad-index] +ERROR homeassistant/components/shelly/coordinator.py:384:61-71: Cannot index into `dict[str, str]` [bad-index] +ERROR homeassistant/components/shelly/coordinator.py:577:14-29: Class member `ShellyRpcCoordinator.update_interval` overrides parent class `ShellyCoordinatorBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/coordinator.py:577:32-66: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@ShellyRpcCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/shelly/cover.py:51:9-12: Unexpected keyword argument `key` in function `BlockCoverDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/cover.py:57:9-12: Unexpected keyword argument `key` in function `RpcCoverDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/cover.py:107:5-23: Class member `BlockShellyCover.entity_description` overrides parent class `ShellyBlockAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/cover.py:107:5-23: Class member `BlockShellyCover.entity_description` overrides parent class `CoverEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/cover.py:108:5-23: Class member `BlockShellyCover._attr_device_class` overrides parent class `ShellyBlockAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/cover.py:109:5-29: Class member `BlockShellyCover._attr_supported_features` overrides parent class `ShellyBlockAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/cover.py:109:5-29: Class member `BlockShellyCover._attr_supported_features` overrides parent class `CoverEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/cover.py:123:14-29: Class member `BlockShellyCover._attr_unique_id` overrides parent class `CoverEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/cover.py:191:5-23: Class member `RpcShellyCover.entity_description` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/cover.py:191:5-23: Class member `RpcShellyCover.entity_description` overrides parent class `CoverEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/cover.py:192:5-23: Class member `RpcShellyCover._attr_device_class` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/cover.py:193:5-29: Class member `RpcShellyCover._attr_supported_features` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/cover.py:193:5-29: Class member `RpcShellyCover._attr_supported_features` overrides parent class `CoverEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/cover.py:196:5-8: Class member `RpcShellyCover._id` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/cover.py:207:14-29: Class member `RpcShellyCover._attr_unique_id` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/cover.py:207:14-29: Class member `RpcShellyCover._attr_unique_id` overrides parent class `CoverEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/diagnostics.py:84:40-49: `ws_config` may be uninitialized [unbound-name] +ERROR homeassistant/components/shelly/diagnostics.py:88:25-34: `ws_config` may be uninitialized [unbound-name] +ERROR homeassistant/components/shelly/entity.py:221:24-36: `sleep_period` may be uninitialized [unbound-name] +ERROR homeassistant/components/shelly/entity.py:455:5-23: Class member `ShellyBlockAttributeEntity.entity_description` overrides parent class `ShellyBlockEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/entity.py:455:5-23: Class member `ShellyBlockAttributeEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/entity.py:469:14-29: Class member `ShellyBlockAttributeEntity._attr_unique_id` overrides parent class `ShellyBlockEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/entity.py:469:14-29: Class member `ShellyBlockAttributeEntity._attr_unique_id` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/entity.py:497:5-23: Class member `ShellyRestAttributeEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/entity.py:535:5-23: Class member `ShellyRpcAttributeEntity.entity_description` overrides parent class `ShellyRpcEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/entity.py:535:5-23: Class member `ShellyRpcAttributeEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/event.py:61:5-8: Unexpected keyword argument `key` in function `ShellyBlockEventDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/event.py:62:5-20: Unexpected keyword argument `translation_key` in function `ShellyBlockEventDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/event.py:69:5-8: Unexpected keyword argument `key` in function `ShellyRpcEventDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/event.py:70:5-20: Unexpected keyword argument `translation_key` in function `ShellyRpcEventDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/event.py:78:5-8: Unexpected keyword argument `key` in function `ShellyRpcEventDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/event.py:79:5-20: Unexpected keyword argument `translation_key` in function `ShellyRpcEventDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/event.py:80:5-36: Unexpected keyword argument `entity_registry_enabled_default` in function `ShellyRpcEventDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/event.py:181:5-23: Class member `ShellyBlockEvent.entity_description` overrides parent class `ShellyBlockEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/event.py:181:5-23: Class member `ShellyBlockEvent.entity_description` overrides parent class `EventEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/event.py:230:5-23: Class member `ShellyRpcEvent.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/event.py:230:5-23: Class member `ShellyRpcEvent.entity_description` overrides parent class `EventEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/event.py:305:33-43: Argument `Any | None` is not assignable to parameter `event_type` with type `str` in function `homeassistant.components.event.EventEntity._trigger_event` [bad-argument-type] +ERROR homeassistant/components/shelly/light.py:69:9-12: Unexpected keyword argument `key` in function `BlockLightDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/light.py:72:9-12: Unexpected keyword argument `key` in function `BlockLightDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/light.py:110:5-23: Class member `BlockShellyLight.entity_description` overrides parent class `ShellyBlockAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/light.py:110:5-23: Class member `BlockShellyLight.entity_description` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/light.py:111:5-32: Class member `BlockShellyLight._attr_supported_color_modes` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/light.py:123:14-29: Class member `BlockShellyLight._attr_unique_id` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/light.py:368:5-23: Class member `RpcShellyLightBase.entity_description` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/light.py:368:5-23: Class member `RpcShellyLightBase.entity_description` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/light.py:535:9-12: Unexpected keyword argument `key` in function `homeassistant.components.shelly.entity.RpcEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/light.py:543:9-12: Unexpected keyword argument `key` in function `homeassistant.components.shelly.entity.RpcEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/light.py:548:9-12: Unexpected keyword argument `key` in function `homeassistant.components.shelly.entity.RpcEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/light.py:553:9-12: Unexpected keyword argument `key` in function `homeassistant.components.shelly.entity.RpcEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/light.py:558:9-12: Unexpected keyword argument `key` in function `homeassistant.components.shelly.entity.RpcEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/light.py:563:9-12: Unexpected keyword argument `key` in function `homeassistant.components.shelly.entity.RpcEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:84:5-23: Class member `RpcNumber.entity_description` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/number.py:84:5-23: Class member `RpcNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/number.py:186:9-12: Unexpected keyword argument `key` in function `BlockNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:187:9-24: Unexpected keyword argument `translation_key` in function `BlockNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:190:9-24: Unexpected keyword argument `entity_category` in function `BlockNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:203:9-12: Unexpected keyword argument `key` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:205:9-24: Unexpected keyword argument `translation_key` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:210:9-24: Unexpected keyword argument `entity_category` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:217:9-12: Unexpected keyword argument `key` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:233:9-12: Unexpected keyword argument `key` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:235:9-24: Unexpected keyword argument `translation_key` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:247:9-12: Unexpected keyword argument `key` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:249:9-24: Unexpected keyword argument `translation_key` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:250:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:261:9-12: Unexpected keyword argument `key` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:263:9-24: Unexpected keyword argument `translation_key` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:265:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:276:9-12: Unexpected keyword argument `key` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:278:9-24: Unexpected keyword argument `translation_key` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:280:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:291:9-12: Unexpected keyword argument `key` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:293:9-24: Unexpected keyword argument `translation_key` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:305:9-12: Unexpected keyword argument `key` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:307:9-24: Unexpected keyword argument `translation_key` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:321:9-12: Unexpected keyword argument `key` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:323:9-24: Unexpected keyword argument `translation_key` in function `RpcNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/number.py:400:5-23: Class member `BlockSleepingNumber.entity_description` overrides parent class `ShellySleepingBlockAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/number.py:400:5-23: Class member `BlockSleepingNumber.entity_description` overrides parent class `RestoreNumber` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/select.py:46:5-23: Class member `RpcSelect.entity_description` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/select.py:46:5-23: Class member `RpcSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/select.py:47:5-8: Class member `RpcSelect._id` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/select.py:104:9-12: Unexpected keyword argument `key` in function `RpcSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/select.py:106:9-24: Unexpected keyword argument `translation_key` in function `RpcSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/select.py:120:9-12: Unexpected keyword argument `key` in function `RpcSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:97:5-23: Class member `RpcSensor.entity_description` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/sensor.py:97:5-23: Class member `RpcSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/sensor.py:220:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:226:9-24: Unexpected keyword argument `entity_category` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:229:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:230:9-24: Unexpected keyword argument `translation_key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:235:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:236:9-24: Unexpected keyword argument `entity_category` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:239:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:245:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:246:9-24: Unexpected keyword argument `translation_key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:250:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:253:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:258:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:261:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:268:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:275:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:280:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:283:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:290:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:296:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:303:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:310:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:319:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:328:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:329:9-24: Unexpected keyword argument `translation_key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:338:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:345:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:348:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:357:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:366:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:367:9-24: Unexpected keyword argument `translation_key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:372:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:377:9-24: Unexpected keyword argument `entity_category` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:380:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:389:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:398:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:405:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:406:9-24: Unexpected keyword argument `translation_key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:411:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:412:9-24: Unexpected keyword argument `translation_key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:416:9-24: Unexpected keyword argument `entity_category` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:419:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:420:9-24: Unexpected keyword argument `translation_key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:427:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:428:9-24: Unexpected keyword argument `translation_key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:434:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:435:9-24: Unexpected keyword argument `translation_key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:446:9-24: Unexpected keyword argument `entity_category` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:450:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:451:9-24: Unexpected keyword argument `translation_key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:460:9-24: Unexpected keyword argument `entity_category` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:463:9-12: Unexpected keyword argument `key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:464:9-24: Unexpected keyword argument `translation_key` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:467:9-24: Unexpected keyword argument `entity_category` in function `BlockSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:473:9-12: Unexpected keyword argument `key` in function `RestSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:478:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RestSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:479:9-24: Unexpected keyword argument `entity_category` in function `RestSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:482:9-12: Unexpected keyword argument `key` in function `RestSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:483:9-24: Unexpected keyword argument `translation_key` in function `RestSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:486:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RestSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:487:9-24: Unexpected keyword argument `entity_category` in function `RestSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:494:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:501:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:508:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:515:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:522:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:529:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:536:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:543:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:545:9-13: Unexpected keyword argument `name` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:551:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:560:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:569:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:578:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:585:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:594:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:603:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:612:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:619:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:626:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:632:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:640:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:648:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:656:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:663:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:666:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:673:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:676:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:683:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:686:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:693:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:696:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:703:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:706:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:713:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:716:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:723:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:726:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:731:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:736:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:741:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:746:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:751:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:756:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:762:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:765:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:771:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:774:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:780:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:783:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:789:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:792:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:798:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:801:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:807:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:810:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:816:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:819:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:824:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:829:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:834:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:839:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:844:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:849:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:851:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:856:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:859:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:864:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:867:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:877:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:879:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:891:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:893:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:900:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:907:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:917:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:927:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:929:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:938:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:940:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:947:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:951:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:961:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:971:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:981:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:983:9-13: Unexpected keyword argument `name` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:992:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1002:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1010:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1013:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1021:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1026:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1034:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1039:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1047:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1052:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1054:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1063:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1065:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1072:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1075:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1077:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1084:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1089:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1091:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1098:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1103:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1105:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1112:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1117:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1123:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1126:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1132:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1135:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1141:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1144:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1150:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1155:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1161:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1166:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1172:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1177:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1184:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1191:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1192:9-24: Unexpected keyword argument `entity_category` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1196:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1203:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1204:9-24: Unexpected keyword argument `entity_category` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1208:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1215:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1216:9-24: Unexpected keyword argument `entity_category` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1220:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1227:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1228:9-24: Unexpected keyword argument `entity_category` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1232:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1239:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1240:9-24: Unexpected keyword argument `entity_category` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1244:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1252:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1257:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1259:9-24: Unexpected keyword argument `entity_category` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1263:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1265:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1268:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1269:9-24: Unexpected keyword argument `entity_category` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1273:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1281:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1287:9-24: Unexpected keyword argument `entity_category` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1291:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1293:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1302:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1304:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1309:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1311:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1319:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1321:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1330:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1332:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1341:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1343:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1353:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1355:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1363:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1365:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1374:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1382:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1391:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1400:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1402:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1405:9-24: Unexpected keyword argument `entity_category` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1411:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1416:9-24: Unexpected keyword argument `entity_category` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1420:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1425:9-24: Unexpected keyword argument `entity_category` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1429:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1431:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1436:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1438:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1448:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1450:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1459:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1468:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1477:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1479:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1486:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1488:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1495:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1497:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1505:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1507:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1512:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1514:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1522:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1524:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1531:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1533:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1538:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1540:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1545:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1547:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1556:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1566:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1576:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1586:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1588:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1589:9-33: Unexpected keyword argument `translation_placeholders` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1598:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1600:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1601:9-33: Unexpected keyword argument `translation_placeholders` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1610:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1612:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1613:9-33: Unexpected keyword argument `translation_placeholders` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1622:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1624:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1625:9-33: Unexpected keyword argument `translation_placeholders` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1634:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1636:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1637:9-33: Unexpected keyword argument `translation_placeholders` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1646:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1648:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1649:9-33: Unexpected keyword argument `translation_placeholders` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1658:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1660:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1661:9-33: Unexpected keyword argument `translation_placeholders` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1670:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1672:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1673:9-33: Unexpected keyword argument `translation_placeholders` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1682:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1684:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1685:9-33: Unexpected keyword argument `translation_placeholders` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1694:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1696:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1700:9-24: Unexpected keyword argument `entity_category` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1705:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1707:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1709:9-24: Unexpected keyword argument `entity_category` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1714:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1716:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1720:9-24: Unexpected keyword argument `entity_category` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1725:9-12: Unexpected keyword argument `key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1727:9-24: Unexpected keyword argument `translation_key` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1729:9-24: Unexpected keyword argument `entity_category` in function `RpcSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/sensor.py:1811:5-23: Class member `BlockSensor.entity_description` overrides parent class `ShellyBlockAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/sensor.py:1811:5-23: Class member `BlockSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/sensor.py:1837:5-23: Class member `RestSensor.entity_description` overrides parent class `ShellyRestAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/sensor.py:1837:5-23: Class member `RestSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/sensor.py:1860:5-23: Class member `BlockSleepingSensor.entity_description` overrides parent class `ShellySleepingBlockAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/sensor.py:1860:5-23: Class member `BlockSleepingSensor.entity_description` overrides parent class `RestoreSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/sensor.py:1908:5-23: Class member `RpcSleepingSensor.entity_description` overrides parent class `ShellySleepingRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/sensor.py:1908:5-23: Class member `RpcSleepingSensor.entity_description` overrides parent class `RestoreSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/switch.py:62:9-12: Unexpected keyword argument `key` in function `BlockSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:69:9-12: Unexpected keyword argument `key` in function `BlockSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:70:9-24: Unexpected keyword argument `translation_key` in function `BlockSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:71:9-24: Unexpected keyword argument `entity_category` in function `BlockSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:88:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:100:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:112:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:114:9-24: Unexpected keyword argument `translation_key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:115:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:124:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:126:9-24: Unexpected keyword argument `translation_key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:135:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:137:9-24: Unexpected keyword argument `translation_key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:138:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:147:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:149:9-24: Unexpected keyword argument `translation_key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:158:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:160:9-24: Unexpected keyword argument `translation_key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:161:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:170:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:172:9-24: Unexpected keyword argument `translation_key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:173:9-33: Unexpected keyword argument `translation_placeholders` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:174:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:183:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:185:9-24: Unexpected keyword argument `translation_key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:186:9-33: Unexpected keyword argument `translation_placeholders` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:187:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:196:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:198:9-24: Unexpected keyword argument `translation_key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:199:9-33: Unexpected keyword argument `translation_placeholders` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:200:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:209:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:211:9-24: Unexpected keyword argument `translation_key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:212:9-33: Unexpected keyword argument `translation_placeholders` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:213:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:222:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:224:9-24: Unexpected keyword argument `translation_key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:225:9-33: Unexpected keyword argument `translation_placeholders` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:226:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:235:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:237:9-24: Unexpected keyword argument `translation_key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:238:9-33: Unexpected keyword argument `translation_placeholders` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:239:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:248:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:254:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:255:9-24: Unexpected keyword argument `entity_category` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:258:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:260:9-24: Unexpected keyword argument `translation_key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:265:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:270:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:272:9-24: Unexpected keyword argument `translation_key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:277:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:282:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:284:9-24: Unexpected keyword argument `translation_key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:289:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:294:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:296:9-24: Unexpected keyword argument `translation_key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:301:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:306:9-12: Unexpected keyword argument `key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:308:9-13: Unexpected keyword argument `name` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:309:9-24: Unexpected keyword argument `translation_key` in function `RpcSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/switch.py:413:5-23: Class member `BlockSleepingMotionSwitch.entity_description` overrides parent class `ShellySleepingBlockAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/switch.py:413:5-23: Class member `BlockSleepingMotionSwitch.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/switch.py:413:5-23: Class member `BlockSleepingMotionSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/switch.py:461:5-23: Class member `BlockRelaySwitch.entity_description` overrides parent class `ShellyBlockAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/switch.py:461:5-23: Class member `BlockRelaySwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/switch.py:473:14-29: Class member `BlockRelaySwitch._attr_unique_id` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/switch.py:503:5-23: Class member `RpcSwitch.entity_description` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/switch.py:503:5-23: Class member `RpcSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/switch.py:562:14-29: Class member `RpcRelaySwitch._attr_unique_id` overrides parent class `RpcSwitch` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/text.py:43:9-12: Unexpected keyword argument `key` in function `RpcTextDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/text.py:97:5-23: Class member `RpcText.entity_description` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/text.py:97:5-23: Class member `RpcText.entity_description` overrides parent class `TextEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/text.py:99:5-8: Class member `RpcText._id` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/update.py:72:9-12: Unexpected keyword argument `key` in function `RestUpdateDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/update.py:77:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RestUpdateDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/update.py:80:9-12: Unexpected keyword argument `key` in function `RestUpdateDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/update.py:81:9-24: Unexpected keyword argument `translation_key` in function `RestUpdateDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/update.py:86:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RestUpdateDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/update.py:92:9-12: Unexpected keyword argument `key` in function `RpcUpdateDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/update.py:100:9-12: Unexpected keyword argument `key` in function `RpcUpdateDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/update.py:102:9-24: Unexpected keyword argument `translation_key` in function `RpcUpdateDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/update.py:107:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `RpcUpdateDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/update.py:165:5-29: Class member `RestUpdateEntity._attr_supported_features` overrides parent class `ShellyRestAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/update.py:168:5-23: Class member `RestUpdateEntity.entity_description` overrides parent class `ShellyRestAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/update.py:168:5-23: Class member `RestUpdateEntity.entity_description` overrides parent class `UpdateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/update.py:261:5-29: Class member `RpcUpdateEntity._attr_supported_features` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/update.py:264:5-23: Class member `RpcUpdateEntity.entity_description` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/update.py:264:5-23: Class member `RpcUpdateEntity.entity_description` overrides parent class `UpdateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/update.py:377:5-23: Class member `RpcSleepingUpdateEntity.entity_description` overrides parent class `ShellySleepingRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/update.py:377:5-23: Class member `RpcSleepingUpdateEntity.entity_description` overrides parent class `UpdateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/update.py:377:5-23: Class member `RpcSleepingUpdateEntity.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/utils.py:136:8-13: Expected `__bool__` to be a callable, got `BoundMethod[NoneType, (self: NoneType) -> Literal[False]] | str | None` [not-callable] +ERROR homeassistant/components/shelly/utils.py:136:8-13: Expected `__bool__` to be a callable, got `str | None` [not-callable] +ERROR homeassistant/components/shelly/utils.py:147:12-17: Expected `__bool__` to be a callable, got `BoundMethod[NoneType, (self: NoneType) -> Literal[False]] | str | None` [not-callable] +ERROR homeassistant/components/shelly/utils.py:147:12-17: Expected `__bool__` to be a callable, got `str | None` [not-callable] +ERROR homeassistant/components/shelly/utils.py:418:27-45: Expected a type form, got instance of `tuple[Literal['boolean'], Literal['button'], Literal['enum'], Literal['number'], Literal['text']]` [not-a-type] +ERROR homeassistant/components/shelly/utils.py:423:23-41: Expected a type form, got instance of `tuple[Literal['boolean'], Literal['button'], Literal['enum'], Literal['number'], Literal['text']]` [not-a-type] +ERROR homeassistant/components/shelly/utils.py:878:32-47: Expected a type form, got instance of `tuple[Literal['cct'], Literal['light'], Literal['rgb'], Literal['rgbw']]` [not-a-type] +ERROR homeassistant/components/shelly/valve.py:51:9-12: Unexpected keyword argument `key` in function `BlockValveDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/valve.py:52:9-13: Unexpected keyword argument `name` in function `BlockValveDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/valve.py:63:5-23: Class member `RpcShellyBaseWaterValve.entity_description` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/valve.py:63:5-23: Class member `RpcShellyBaseWaterValve.entity_description` overrides parent class `ValveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/valve.py:64:5-23: Class member `RpcShellyBaseWaterValve._attr_device_class` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/valve.py:65:5-8: Class member `RpcShellyBaseWaterValve._id` overrides parent class `ShellyRpcAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/valve.py:121:9-12: Unexpected keyword argument `key` in function `RpcValveDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/valve.py:128:9-12: Unexpected keyword argument `key` in function `RpcValveDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/valve.py:135:9-12: Unexpected keyword argument `key` in function `RpcValveDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/valve.py:142:9-12: Unexpected keyword argument `key` in function `RpcValveDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/valve.py:149:9-12: Unexpected keyword argument `key` in function `RpcValveDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/valve.py:156:9-12: Unexpected keyword argument `key` in function `RpcValveDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/valve.py:163:9-12: Unexpected keyword argument `key` in function `RpcValveDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/valve.py:170:9-12: Unexpected keyword argument `key` in function `RpcValveDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/shelly/valve.py:228:5-23: Class member `BlockShellyValve.entity_description` overrides parent class `ShellyBlockAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/valve.py:228:5-23: Class member `BlockShellyValve.entity_description` overrides parent class `ValveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/valve.py:229:5-23: Class member `BlockShellyValve._attr_device_class` overrides parent class `ShellyBlockAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shelly/valve.py:230:5-29: Class member `BlockShellyValve._attr_supported_features` overrides parent class `ShellyBlockAttributeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/shodan/sensor.py:8:8-14: Could not find import of `shodan` [missing-import] +ERROR homeassistant/components/shopping_list/__init__.py:211:48-57: Argument `BoundMethod[Self@ShoppingData, (self: Self@ShoppingData) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/shopping_list/__init__.py:248:48-57: Argument `BoundMethod[Self@ShoppingData, (self: Self@ShoppingData) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/shopping_list/__init__.py:272:48-57: Argument `BoundMethod[Self@ShoppingData, (self: Self@ShoppingData) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/shopping_list/__init__.py:293:48-57: Argument `BoundMethod[Self@ShoppingData, (self: Self@ShoppingData) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/shopping_list/__init__.py:305:48-57: Argument `BoundMethod[Self@ShoppingData, (self: Self@ShoppingData) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/shopping_list/__init__.py:319:48-57: Argument `BoundMethod[Self@ShoppingData, (self: Self@ShoppingData) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/shopping_list/__init__.py:354:42-51: Argument `BoundMethod[Self@ShoppingData, (self: Self@ShoppingData) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/shopping_list/__init__.py:379:48-57: Argument `BoundMethod[Self@ShoppingData, (self: Self@ShoppingData) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/shopping_list/__init__.py:391:42-51: Argument `BoundMethod[Self@ShoppingData, (self: Self@ShoppingData) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/shopping_list/__init__.py:409:61-65: Argument `() -> list[dict[str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/sia/alarm_control_panel.py:36:5-8: Unexpected keyword argument `key` in function `SIAAlarmControlPanelEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sia/alarm_control_panel.py:90:5-23: Class member `SIAAlarmControlPanel.entity_description` overrides parent class `SIABaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sia/alarm_control_panel.py:90:5-23: Class member `SIAAlarmControlPanel.entity_description` overrides parent class `AlarmControlPanelEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sia/binary_sensor.py:45:5-8: Unexpected keyword argument `key` in function `SIABinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sia/binary_sensor.py:47:5-20: Unexpected keyword argument `entity_category` in function `SIABinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sia/binary_sensor.py:55:5-8: Unexpected keyword argument `key` in function `SIABinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sia/binary_sensor.py:65:5-36: Unexpected keyword argument `entity_registry_enabled_default` in function `SIABinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sia/binary_sensor.py:69:5-8: Unexpected keyword argument `key` in function `SIABinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sia/binary_sensor.py:75:5-36: Unexpected keyword argument `entity_registry_enabled_default` in function `SIABinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sia/binary_sensor.py:79:5-8: Unexpected keyword argument `key` in function `SIABinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sia/binary_sensor.py:81:5-20: Unexpected keyword argument `entity_category` in function `SIABinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sia/binary_sensor.py:117:5-23: Class member `SIABinarySensor.entity_description` overrides parent class `SIABaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sia/binary_sensor.py:117:5-23: Class member `SIABinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sia/config_flow.py:102:9-31: Class member `SIAConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sia/entity.py:55:5-23: Class member `SIABaseEntity.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sia/entity.py:75:14-29: Class member `SIABaseEntity._attr_unique_id` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sia/entity.py:75:36-46: Class member `SIABaseEntity._attr_name` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sia/hub.py:103:34-105:38: Argument `tuple[Literal[80], Literal[40]] | None` is not assignable to parameter `allowed_timeband` with type `tuple[int, int]` in function `pysiaalarm.account.SIAAccount.__init__` [bad-argument-type] +ERROR homeassistant/components/sia/hub.py:113:36-119:10: Cannot instantiate `SIAClient` because the following members are abstract: `async_start`, `async_stop` [bad-instantiation] +ERROR homeassistant/components/sigfox/sensor.py:71:22-35: Module `requests.auth` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/sighthound/image_processing.py:82:13-29: `save_file_folder` may be uninitialized [unbound-name] +ERROR homeassistant/components/sighthound/image_processing.py:141:44-61: Argument `int | None` is not assignable to parameter `img_width` with type `int` in function `simplehound.core.bbox_to_tf_style` [bad-argument-type] +ERROR homeassistant/components/sighthound/image_processing.py:141:63-81: Argument `int | None` is not assignable to parameter `img_height` with type `int` in function `simplehound.core.bbox_to_tf_style` [bad-argument-type] +ERROR homeassistant/components/simplefin/binary_sensor.py:30:9-12: Unexpected keyword argument `key` in function `SimpleFinBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/simplefin/binary_sensor.py:31:9-24: Unexpected keyword argument `translation_key` in function `SimpleFinBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/simplefin/binary_sensor.py:33:9-24: Unexpected keyword argument `entity_category` in function `SimpleFinBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/simplefin/binary_sensor.py:63:5-23: Class member `SimpleFinBinarySensor.entity_description` overrides parent class `SimpleFinEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/simplefin/binary_sensor.py:63:5-23: Class member `SimpleFinBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/simplefin/coordinator.py:24:5-17: Class member `SimpleFinDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/simplefin/entity.py:43:16-74: Returned type `Account | None` is not assignable to declared return type `Account` [bad-return] +ERROR homeassistant/components/simplefin/sensor.py:37:9-12: Unexpected keyword argument `key` in function `SimpleFinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/simplefin/sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `SimpleFinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/simplefin/sensor.py:43:17-62: Argument `(account: Account) -> AccountType` is not assignable to parameter `icon_fn` with type `((Account) -> str) | None` in function `SimpleFinSensorEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/simplefin/sensor.py:46:9-12: Unexpected keyword argument `key` in function `SimpleFinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/simplefin/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `SimpleFinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/simplefin/sensor.py:49:9-24: Unexpected keyword argument `entity_category` in function `SimpleFinSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/simplefin/sensor.py:79:5-23: Class member `SimpleFinSensor.entity_description` overrides parent class `SimpleFinEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/simplefin/sensor.py:79:5-23: Class member `SimpleFinSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/simplisafe/alarm_control_panel.py:123:5-29: Class member `SimpliSafeAlarm._attr_supported_features` overrides parent class `SimpliSafeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/simplisafe/binary_sensor.py:108:14-32: Class member `TriggeredBinarySensor._attr_device_class` overrides parent class `SimpliSafeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/simplisafe/binary_sensor.py:109:14-21: Class member `TriggeredBinarySensor._device` overrides parent class `SimpliSafeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/simplisafe/binary_sensor.py:120:5-23: Class member `BatteryBinarySensor._attr_device_class` overrides parent class `SimpliSafeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/simplisafe/binary_sensor.py:130:14-21: Class member `BatteryBinarySensor._device` overrides parent class `SimpliSafeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/simplisafe/button.py:41:9-12: Unexpected keyword argument `key` in function `SimpliSafeButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/simplisafe/button.py:42:9-24: Unexpected keyword argument `translation_key` in function `SimpliSafeButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/simplisafe/button.py:70:5-23: Class member `SimpliSafeButton.entity_description` overrides parent class `SimpliSafeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/simplisafe/button.py:70:5-23: Class member `SimpliSafeButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/simplisafe/config_flow.py:70:9-31: Class member `SimpliSafeFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/simplisafe/config_flow.py:143:34-44: `simplisafe` may be uninitialized [unbound-name] +ERROR homeassistant/components/simplisafe/config_flow.py:144:64-74: `simplisafe` may be uninitialized [unbound-name] +ERROR homeassistant/components/simplisafe/lock.py:58:5-12: Class member `SimpliSafeLock._device` overrides parent class `SimpliSafeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/simplisafe/sensor.py:50:5-23: Class member `SimplisafeFreezeSensor._attr_device_class` overrides parent class `SimpliSafeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/simplisafe/sensor.py:60:14-21: Class member `SimplisafeFreezeSensor._device` overrides parent class `SimpliSafeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sinch/notify.py:7:1-45: Could not find import of `clx.xms.api` [missing-import] +ERROR homeassistant/components/sinch/notify.py:8:1-34: Could not find import of `clx.xms.client` [missing-import] +ERROR homeassistant/components/sinch/notify.py:9:1-14:2: Could not find import of `clx.xms.exceptions` [missing-import] +ERROR homeassistant/components/siren/__init__.py:161:5-23: Class member `SirenEntity.entity_description` overrides parent class `ToggleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/siren/__init__.py:163:5-29: Class member `SirenEntity._attr_supported_features` overrides parent class `ToggleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sisyphus/__init__.py:6:1-35: Could not find import of `sisyphus_control` [missing-import] +ERROR homeassistant/components/sisyphus/media_player.py:6:1-35: Could not find import of `sisyphus_control` [missing-import] +ERROR homeassistant/components/sky_hub/device_tracker.py:7:1-39: Could not find import of `pyskyqhub.skyq_hub` [missing-import] +ERROR homeassistant/components/skybeacon/sensor.py:9:1-34: Could not find import of `pygatt` [missing-import] +ERROR homeassistant/components/skybeacon/sensor.py:10:1-60: Could not find import of `pygatt.backends` [missing-import] +ERROR homeassistant/components/skybeacon/sensor.py:11:1-79: Could not find import of `pygatt.exceptions` [missing-import] +ERROR homeassistant/components/skybeacon/sensor.py:187:29-60: Cannot set item in `dict[str, str]` [unsupported-operation] +ERROR homeassistant/components/skybell/__init__.py:66:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/skybell/binary_sensor.py:22:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/binary_sensor.py:23:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/binary_sensor.py:27:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/binary_sensor.py:46:7-26: Field `entity_description` is declared `EntityDescription` in ancestor `class SkybellEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/skybell/camera.py:22:9-12: Unexpected keyword argument `key` in function `homeassistant.components.camera.CameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/camera.py:23:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.camera.CameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/camera.py:26:9-12: Unexpected keyword argument `key` in function `homeassistant.components.camera.CameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/camera.py:27:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.camera.CameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/camera.py:82:17-42: Argument `asyncio.streams.StreamReader` is not assignable to parameter `stream` with type `aiohttp.streams.StreamReader` in function `homeassistant.helpers.aiohttp_client.async_aiohttp_proxy_stream` [bad-argument-type] +ERROR homeassistant/components/skybell/coordinator.py:17:5-17: Class member `SkybellDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/skybell/light.py:31:58-61: Unexpected keyword argument `key` in function `homeassistant.components.light.LightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/light.py:36:7-19: Field `entity_description` is declared `EntityDescription` in ancestor `class SkybellEntity: ... +`, which is not assignable to the type `LightEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/skybell/sensor.py:35:9-12: Unexpected keyword argument `key` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:40:9-12: Unexpected keyword argument `key` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:46:9-12: Unexpected keyword argument `key` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:52:9-12: Unexpected keyword argument `key` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:54:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:56:9-24: Unexpected keyword argument `entity_category` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:60:9-12: Unexpected keyword argument `key` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:62:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:63:9-24: Unexpected keyword argument `entity_category` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:67:9-12: Unexpected keyword argument `key` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:69:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:74:9-12: Unexpected keyword argument `key` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:76:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:77:9-24: Unexpected keyword argument `entity_category` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:81:9-12: Unexpected keyword argument `key` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:83:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:84:9-24: Unexpected keyword argument `entity_category` in function `SkybellSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/sensor.py:107:5-23: Class member `SkybellSensor.entity_description` overrides parent class `SkybellEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/skybell/sensor.py:107:5-23: Class member `SkybellSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/skybell/switch.py:17:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/switch.py:18:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/switch.py:21:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/switch.py:22:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/switch.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/switch.py:26:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/skybell/switch.py:44:7-20: Field `entity_description` is declared `EntityDescription` in ancestor `class SkybellEntity: ... +`, which is not assignable to the type `SwitchEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/slack/notify.py:173:25-36: Argument `list[str]` is not assignable to parameter `channel_ids` with type `list[str | None]` in function `homeassistant.components.slack.utils.upload_file_to_slack` [bad-argument-type] +ERROR homeassistant/components/slack/notify.py:223:25-36: Argument `list[str]` is not assignable to parameter `channel_ids` with type `list[str | None]` in function `homeassistant.components.slack.utils.upload_file_to_slack` [bad-argument-type] +ERROR homeassistant/components/slack/sensor.py:32:21-24: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/slack/sensor.py:33:21-36: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/slack/sensor.py:43:7-24: Field `entity_description` is declared `EntityDescription` in ancestor `class SlackEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/sleep_as_android/event.py:46:9-12: Unexpected keyword argument `key` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:47:9-24: Unexpected keyword argument `translation_key` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:57:9-12: Unexpected keyword argument `key` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:58:9-24: Unexpected keyword argument `translation_key` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:69:9-12: Unexpected keyword argument `key` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:70:9-24: Unexpected keyword argument `translation_key` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:77:9-12: Unexpected keyword argument `key` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:78:9-24: Unexpected keyword argument `translation_key` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:86:9-12: Unexpected keyword argument `key` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:87:9-24: Unexpected keyword argument `translation_key` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:97:9-12: Unexpected keyword argument `key` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:98:9-24: Unexpected keyword argument `translation_key` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:108:9-12: Unexpected keyword argument `key` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:109:9-24: Unexpected keyword argument `translation_key` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:117:9-12: Unexpected keyword argument `key` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:118:9-24: Unexpected keyword argument `translation_key` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:125:9-12: Unexpected keyword argument `key` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:126:9-24: Unexpected keyword argument `translation_key` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:131:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SleepAsAndroidEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/event.py:152:5-23: Class member `SleepAsAndroidEventEntity.entity_description` overrides parent class `SleepAsAndroidEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sleep_as_android/event.py:152:5-23: Class member `SleepAsAndroidEventEntity.entity_description` overrides parent class `EventEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sleep_as_android/sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/sensor.py:34:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/sensor.py:38:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/sensor.py:39:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleep_as_android/sensor.py:60:5-23: Class member `SleepAsAndroidSensorEntity.entity_description` overrides parent class `SleepAsAndroidEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sleepiq/__init__.py:119:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/sleepiq/binary_sensor.py:37:5-23: Class member `IsInBedBinarySensor._attr_device_class` overrides parent class `SleepIQSleeperEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sleepiq/button.py:30:9-12: Unexpected keyword argument `key` in function `SleepIQButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleepiq/button.py:31:9-13: Unexpected keyword argument `name` in function `SleepIQButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleepiq/button.py:33:9-13: Unexpected keyword argument `icon` in function `SleepIQButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleepiq/button.py:36:9-12: Unexpected keyword argument `key` in function `SleepIQButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleepiq/button.py:37:9-13: Unexpected keyword argument `name` in function `SleepIQButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleepiq/button.py:39:9-13: Unexpected keyword argument `icon` in function `SleepIQButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleepiq/button.py:62:5-23: Class member `SleepNumberButton.entity_description` overrides parent class `SleepIQEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sleepiq/button.py:62:5-23: Class member `SleepNumberButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sleepiq/coordinator.py:24:5-17: Class member `SleepIQDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sleepiq/coordinator.py:53:5-17: Class member `SleepIQPauseUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sleepiq/number.py:129:9-12: Unexpected keyword argument `key` in function `SleepIQNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleepiq/number.py:133:9-13: Unexpected keyword argument `name` in function `SleepIQNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleepiq/number.py:134:9-13: Unexpected keyword argument `icon` in function `SleepIQNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleepiq/number.py:141:9-12: Unexpected keyword argument `key` in function `SleepIQNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleepiq/number.py:145:9-13: Unexpected keyword argument `name` in function `SleepIQNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleepiq/number.py:146:9-13: Unexpected keyword argument `icon` in function `SleepIQNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleepiq/number.py:153:9-12: Unexpected keyword argument `key` in function `SleepIQNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleepiq/number.py:157:9-13: Unexpected keyword argument `name` in function `SleepIQNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleepiq/number.py:158:9-13: Unexpected keyword argument `icon` in function `SleepIQNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleepiq/number.py:165:9-12: Unexpected keyword argument `key` in function `SleepIQNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleepiq/number.py:169:9-13: Unexpected keyword argument `name` in function `SleepIQNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleepiq/number.py:170:9-13: Unexpected keyword argument `icon` in function `SleepIQNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sleepiq/number.py:234:5-23: Class member `SleepIQNumberEntity.entity_description` overrides parent class `SleepIQBedEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sleepiq/number.py:234:5-23: Class member `SleepIQNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/slide/cover.py:90:16-19: `pos` may be uninitialized [unbound-name] +ERROR homeassistant/components/slide_local/config_flow.py:45:9-31: Class member `SlideConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/slide_local/coordinator.py:41:5-17: Class member `SlideCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/slide_local/cover.py:45:5-23: Class member `SlideCoverLocal._attr_device_class` overrides parent class `SlideEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/slide_local/switch.py:44:5-23: Class member `SlideSwitch._attr_device_class` overrides parent class `SlideEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/slimproto/media_player.py:66:32-38: Argument `SlimClient | None` is not assignable to parameter `player` with type `SlimClient` in function `async_add_player` [bad-argument-type] +ERROR homeassistant/components/slimproto/media_player.py:70:30-43: Argument `(event: SlimEvent) -> Coroutine[Unknown, Unknown, None]` is not assignable to parameter `cb_func` with type `(SlimEvent) -> None` in function `aioslimproto.server.SlimServer.subscribe` [bad-argument-type] +ERROR homeassistant/components/slimproto/media_player.py:120:17-36: Argument `BoundMethod[Self@SlimProtoPlayer, (self: Self@SlimProtoPlayer, event: SlimEvent) -> Coroutine[Unknown, Unknown, None]]` is not assignable to parameter `cb_func` with type `(SlimEvent) -> None` in function `aioslimproto.server.SlimServer.subscribe` [bad-argument-type] +ERROR homeassistant/components/slimproto/media_player.py:121:17-127:18: Argument `tuple[Literal[EventType.PLAYER_UPDATED], Literal[EventType.PLAYER_CONNECTED], Literal[EventType.PLAYER_DISCONNECTED], Literal[EventType.PLAYER_NAME_RECEIVED], Literal[EventType.PLAYER_CLI_EVENT]]` is not assignable to parameter `event_filter` with type `EventType | tuple[EventType] | None` in function `aioslimproto.server.SlimServer.subscribe` [bad-argument-type] +ERROR homeassistant/components/slimproto/media_player.py:149:37-64: `float` is not assignable to attribute `_attr_media_position` with type `int | None` [bad-assignment] +ERROR homeassistant/components/slimproto/media_player.py:182:38-44: Argument `float` is not assignable to parameter `volume_level` with type `int` in function `aioslimproto.client.SlimClient.volume_set` [bad-argument-type] +ERROR homeassistant/components/slimproto/media_player.py:231:27-70: `SlimClient | None` is not assignable to attribute `player` with type `SlimClient` [bad-assignment] +ERROR homeassistant/components/slimproto/media_player.py:237:19-29: Expected a mapping, got dict[str, Any] | None [invalid-argument] +ERROR homeassistant/components/sma/coordinator.py:40:5-17: Class member `SMADataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sma/sensor.py:39:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:40:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:41:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:44:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:45:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:46:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:47:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:50:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:51:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:52:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:53:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:56:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:57:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:58:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:59:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:62:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:63:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:64:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:65:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:68:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:69:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:70:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:71:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:74:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:75:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:76:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:77:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:80:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:81:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:87:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:88:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:94:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:95:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:99:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:102:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:103:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:107:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:110:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:111:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:115:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:118:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:119:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:123:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:126:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:127:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:133:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:134:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:140:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:141:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:145:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:148:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:149:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:152:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:155:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:156:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:160:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:163:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:164:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:170:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:171:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:177:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:178:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:182:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:185:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:186:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:190:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:193:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:194:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:198:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:201:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:202:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:206:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:209:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:210:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:214:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:217:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:218:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:222:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:225:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:226:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:230:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:233:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:234:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:238:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:241:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:242:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:246:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:249:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:250:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:254:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:257:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:258:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:262:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:265:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:266:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:270:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:273:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:274:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:277:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:280:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:281:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:282:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:283:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:286:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:287:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:291:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:294:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:295:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:299:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:302:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:303:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:307:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:310:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:311:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:317:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:318:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:322:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:325:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:326:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:330:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:333:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:334:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:338:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:341:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:342:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:348:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:349:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:355:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:356:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:362:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:363:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:369:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:370:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:376:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:377:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:383:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:384:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:390:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:391:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:397:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:398:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:404:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:405:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:411:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:412:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:416:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:419:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:420:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:424:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:427:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:428:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:432:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:435:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:436:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:442:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:443:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:449:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:450:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:456:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:457:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:463:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:464:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:470:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:471:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:477:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:478:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:482:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:485:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:486:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:490:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:493:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:494:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:500:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:501:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:505:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:508:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:509:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:513:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:516:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:517:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:521:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:524:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:525:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:531:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:532:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:536:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:539:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:540:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:544:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:547:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:548:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:552:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:555:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:556:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:562:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:563:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:567:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:570:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:571:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:575:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:578:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:579:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:583:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:586:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:587:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:591:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:594:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:595:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:599:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:602:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:603:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:607:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:610:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:611:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:617:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:618:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:624:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:625:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:631:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:632:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:638:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:639:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:645:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:646:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:652:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:653:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:656:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:657:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:661:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:662:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:664:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:667:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:668:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:670:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:673:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:674:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:676:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:679:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:680:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:684:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:687:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:688:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:692:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:695:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:696:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:700:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:703:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:704:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:710:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:711:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:715:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:718:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:719:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:723:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:726:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:727:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:731:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:734:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:735:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:741:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:742:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:746:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:749:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:750:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:754:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:757:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:758:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:762:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:765:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:766:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:772:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:773:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:777:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:780:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:781:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:785:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:788:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:789:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:793:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:796:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:797:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:803:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:804:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:808:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:811:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:812:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:816:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:819:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:820:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:824:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:827:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:828:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sma/sensor.py:868:18-36: Class member `SMAsensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sma/sensor.py:904:19-30: `name_prefix` may be uninitialized [unbound-name] +ERROR homeassistant/components/smappee/__init__.py:85:47-85: Argument `BoundMethod[SmappeeLocalMqtt, (self: SmappeeLocalMqtt) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/smappee/__init__.py:95:43-78: Argument `BoundMethod[Smappee, (self: Smappee) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/smappee/__init__.py:132:13-60: Argument `BoundMethod[Smappee, (self: Smappee) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/smappee/config_flow.py:92:62-88: Argument `BoundMethod[SmappeeLocalMqtt, (self: SmappeeLocalMqtt) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/smappee/config_flow.py:98:60-77: Argument `BoundMethod[SmappeeLocalApi, (self: SmappeeLocalApi) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/smappee/config_flow.py:165:56-73: Argument `BoundMethod[SmappeeLocalApi, (self: SmappeeLocalApi) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/smappee/config_flow.py:168:17-49: Argument `BoundMethod[SmappeeLocalApi, (self: SmappeeLocalApi) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/smappee/config_flow.py:176:62-88: Argument `BoundMethod[SmappeeLocalMqtt, (self: SmappeeLocalMqtt) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/smappee/config_flow.py:181:17-55: Argument `BoundMethod[SmappeeLocalMqtt, (self: SmappeeLocalMqtt) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/smappee/config_flow.py:183:52-69: Argument `BoundMethod[SmappeeLocalMqtt, (self: SmappeeLocalMqtt) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/smappee/sensor.py:45:9-12: Unexpected keyword argument `key` in function `SmappeePollingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:46:9-13: Unexpected keyword argument `name` in function `SmappeePollingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:54:9-12: Unexpected keyword argument `key` in function `SmappeePollingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:55:9-13: Unexpected keyword argument `name` in function `SmappeePollingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:62:9-12: Unexpected keyword argument `key` in function `SmappeePollingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:63:9-13: Unexpected keyword argument `name` in function `SmappeePollingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:70:9-12: Unexpected keyword argument `key` in function `SmappeePollingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:71:9-13: Unexpected keyword argument `name` in function `SmappeePollingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:78:9-12: Unexpected keyword argument `key` in function `SmappeePollingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:79:9-13: Unexpected keyword argument `name` in function `SmappeePollingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:86:9-12: Unexpected keyword argument `key` in function `SmappeePollingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:87:9-13: Unexpected keyword argument `name` in function `SmappeePollingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:96:9-12: Unexpected keyword argument `key` in function `SmappeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:97:9-13: Unexpected keyword argument `name` in function `SmappeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:106:9-12: Unexpected keyword argument `key` in function `SmappeePollingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:107:9-13: Unexpected keyword argument `name` in function `SmappeePollingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:115:9-12: Unexpected keyword argument `key` in function `SmappeePollingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:116:9-13: Unexpected keyword argument `name` in function `SmappeePollingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:123:9-12: Unexpected keyword argument `key` in function `SmappeePollingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:124:9-13: Unexpected keyword argument `name` in function `SmappeePollingSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:133:9-12: Unexpected keyword argument `key` in function `SmappeeVoltageSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:134:9-13: Unexpected keyword argument `name` in function `SmappeeVoltageSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:142:9-12: Unexpected keyword argument `key` in function `SmappeeVoltageSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:143:9-13: Unexpected keyword argument `name` in function `SmappeeVoltageSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:151:9-12: Unexpected keyword argument `key` in function `SmappeeVoltageSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:152:9-13: Unexpected keyword argument `name` in function `SmappeeVoltageSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:160:9-12: Unexpected keyword argument `key` in function `SmappeeVoltageSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:161:9-13: Unexpected keyword argument `name` in function `SmappeeVoltageSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:169:9-12: Unexpected keyword argument `key` in function `SmappeeVoltageSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:170:9-13: Unexpected keyword argument `name` in function `SmappeeVoltageSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:178:9-12: Unexpected keyword argument `key` in function `SmappeeVoltageSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:179:9-13: Unexpected keyword argument `name` in function `SmappeeVoltageSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:246:25-28: Unexpected keyword argument `key` in function `SmappeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:247:25-29: Unexpected keyword argument `name` in function `SmappeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:285:25-28: Unexpected keyword argument `key` in function `SmappeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:286:25-29: Unexpected keyword argument `name` in function `SmappeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:287:25-29: Unexpected keyword argument `icon` in function `SmappeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:309:25-28: Unexpected keyword argument `key` in function `SmappeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:310:25-29: Unexpected keyword argument `name` in function `SmappeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smappee/sensor.py:328:5-23: Class member `SmappeeSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarla/__init__.py:40:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/smarla/entity.py:25:5-23: Class member `SmarlaBaseEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarla/number.py:26:9-12: Unexpected keyword argument `key` in function `SmarlaNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarla/number.py:27:9-24: Unexpected keyword argument `translation_key` in function `SmarlaNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarla/number.py:51:5-23: Class member `SmarlaNumber.entity_description` overrides parent class `SmarlaBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarla/number.py:51:5-23: Class member `SmarlaNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarla/sensor.py:30:9-12: Unexpected keyword argument `key` in function `SmarlaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarla/sensor.py:31:9-24: Unexpected keyword argument `translation_key` in function `SmarlaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarla/sensor.py:40:9-12: Unexpected keyword argument `key` in function `SmarlaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarla/sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `SmarlaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarla/sensor.py:50:9-12: Unexpected keyword argument `key` in function `SmarlaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarla/sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `SmarlaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarla/sensor.py:57:9-12: Unexpected keyword argument `key` in function `SmarlaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarla/sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `SmarlaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarla/sensor.py:86:5-23: Class member `SmarlaSensor.entity_description` overrides parent class `SmarlaBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarla/sensor.py:86:5-23: Class member `SmarlaSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarla/sensor.py:99:5-23: Class member `SmarlaSensorMultiple.entity_description` overrides parent class `SmarlaBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarla/sensor.py:99:5-23: Class member `SmarlaSensorMultiple.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarla/switch.py:23:9-12: Unexpected keyword argument `key` in function `SmarlaSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarla/switch.py:24:9-13: Unexpected keyword argument `name` in function `SmarlaSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarla/switch.py:29:9-12: Unexpected keyword argument `key` in function `SmarlaSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarla/switch.py:30:9-24: Unexpected keyword argument `translation_key` in function `SmarlaSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarla/switch.py:50:5-23: Class member `SmarlaSwitch.entity_description` overrides parent class `SmarlaBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarla/switch.py:50:5-23: Class member `SmarlaSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smart_meter_texas/sensor.py:48:5-23: Class member `SmartMeterTexasSensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smart_meter_texas/sensor.py:48:5-23: Class member `SmartMeterTexasSensor._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/binary_sensor.py:46:13-16: Unexpected keyword argument `key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:47:13-28: Unexpected keyword argument `translation_key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:54:13-16: Unexpected keyword argument `key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:77:13-16: Unexpected keyword argument `key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:78:13-28: Unexpected keyword argument `translation_key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:80:13-28: Unexpected keyword argument `entity_category` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:85:13-16: Unexpected keyword argument `key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:86:13-28: Unexpected keyword argument `translation_key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:93:13-16: Unexpected keyword argument `key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:94:13-28: Unexpected keyword argument `translation_key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:96:13-28: Unexpected keyword argument `entity_category` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:101:13-16: Unexpected keyword argument `key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:102:13-28: Unexpected keyword argument `translation_key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:109:13-16: Unexpected keyword argument `key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:110:13-28: Unexpected keyword argument `translation_key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:116:13-16: Unexpected keyword argument `key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:123:13-16: Unexpected keyword argument `key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:130:13-16: Unexpected keyword argument `key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:131:13-28: Unexpected keyword argument `translation_key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:137:13-16: Unexpected keyword argument `key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:144:13-16: Unexpected keyword argument `key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:152:13-16: Unexpected keyword argument `key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:155:13-28: Unexpected keyword argument `entity_category` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:160:13-16: Unexpected keyword argument `key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:161:13-28: Unexpected keyword argument `translation_key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:169:13-16: Unexpected keyword argument `key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:176:13-16: Unexpected keyword argument `key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:177:13-28: Unexpected keyword argument `translation_key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:184:13-16: Unexpected keyword argument `key` in function `SmartThingsBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/binary_sensor.py:270:5-23: Class member `SmartThingsBinarySensor.entity_description` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/binary_sensor.py:270:5-23: Class member `SmartThingsBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/binary_sensor.py:292:18-36: Class member `SmartThingsBinarySensor._attr_device_class` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/button.py:22:5-8: Class member `SmartThingsButtonDescription.key` overrides parent class `ButtonEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/button.py:29:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/button.py:34:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/button.py:60:5-23: Class member `SmartThingsButtonEntity.entity_description` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/button.py:60:5-23: Class member `SmartThingsButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/climate.py:202:14-38: Class member `SmartThingsThermostat._attr_supported_features` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/climate.py:405:14-38: Class member `SmartThingsAirConditioner._attr_supported_features` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/cover.py:75:14-38: Class member `SmartThingsCover._attr_supported_features` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/cover.py:90:18-36: Class member `SmartThingsCover._attr_device_class` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/event.py:37:5-23: Class member `SmartThingsButtonEvent._attr_device_class` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/fan.py:65:14-38: Class member `SmartThingsFan._attr_supported_features` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/light.py:62:5-32: Class member `SmartThingsLight._attr_supported_color_modes` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/light.py:103:14-38: Class member `SmartThingsLight._attr_supported_features` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/light.py:103:14-38: Class member `SmartThingsLight._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/media_player.py:95:14-38: Class member `SmartThingsMediaPlayer._attr_supported_features` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/media_player.py:96:14-32: Class member `SmartThingsMediaPlayer._attr_device_class` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/number.py:160:5-23: Class member `SmartThingsRefrigeratorTemperatureNumberEntity._attr_device_class` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/select.py:64:5-8: Class member `SmartThingsSelectDescription.key` overrides parent class `SelectEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/select.py:78:9-13: Unexpected keyword argument `name` in function `SmartThingsSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/select.py:79:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/select.py:87:9-13: Unexpected keyword argument `name` in function `SmartThingsSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/select.py:88:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/select.py:97:9-13: Unexpected keyword argument `name` in function `SmartThingsSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/select.py:98:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/select.py:107:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/select.py:111:9-24: Unexpected keyword argument `entity_category` in function `SmartThingsSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/select.py:115:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/select.py:119:9-24: Unexpected keyword argument `entity_category` in function `SmartThingsSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/select.py:123:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/select.py:128:9-24: Unexpected keyword argument `entity_category` in function `SmartThingsSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/select.py:134:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/select.py:139:9-24: Unexpected keyword argument `entity_category` in function `SmartThingsSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/select.py:143:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/select.py:148:9-24: Unexpected keyword argument `entity_category` in function `SmartThingsSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/select.py:186:5-23: Class member `SmartThingsSelectEntity.entity_description` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/select.py:186:5-23: Class member `SmartThingsSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/sensor.py:164:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:165:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:166:17-32: Unexpected keyword argument `entity_category` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:173:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:174:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:175:17-32: Unexpected keyword argument `entity_category` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:188:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:189:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:198:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:199:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:208:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:217:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:218:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:231:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:234:17-32: Unexpected keyword argument `entity_category` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:242:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:243:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:253:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:254:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:264:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:275:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:276:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:286:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:296:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:297:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:306:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:307:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:321:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:322:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:331:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:332:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:341:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:342:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:349:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:350:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:369:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:370:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:380:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:381:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:382:17-32: Unexpected keyword argument `entity_category` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:389:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:390:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:397:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:398:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:422:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:423:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:432:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:440:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:450:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:451:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:460:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:471:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:472:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:482:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:493:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:494:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:503:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:504:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:512:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:513:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:518:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:519:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:526:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:536:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:547:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:548:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:557:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:558:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:569:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:570:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:578:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:579:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:587:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:588:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:606:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:607:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:614:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:615:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:616:17-32: Unexpected keyword argument `entity_category` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:626:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:627:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:634:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:635:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:661:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:662:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:671:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:672:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:683:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:695:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:708:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:709:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:721:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:722:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:734:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:735:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:751:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:762:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:763:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:764:17-32: Unexpected keyword argument `entity_category` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:772:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:773:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:781:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:782:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:790:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:800:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:801:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:804:17-32: Unexpected keyword argument `entity_category` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:811:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:812:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:833:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:834:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:840:17-32: Unexpected keyword argument `entity_category` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:847:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:848:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:850:17-32: Unexpected keyword argument `entity_category` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:855:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:858:17-32: Unexpected keyword argument `entity_category` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:866:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:867:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:876:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:895:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:896:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:918:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:919:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:920:17-32: Unexpected keyword argument `entity_category` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:929:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:930:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:932:17-32: Unexpected keyword argument `entity_category` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:941:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:942:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:943:17-32: Unexpected keyword argument `entity_category` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:952:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:953:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:962:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:963:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:965:17-32: Unexpected keyword argument `entity_category` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:972:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:973:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:977:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:978:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:982:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:983:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:991:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:992:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:997:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:998:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:1005:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:1015:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:1016:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:1024:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:1034:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:1044:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:1045:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:1046:17-32: Unexpected keyword argument `entity_category` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:1053:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:1054:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:1061:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:1062:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:1087:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:1088:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:1097:17-20: Unexpected keyword argument `key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:1098:17-32: Unexpected keyword argument `translation_key` in function `SmartThingsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/sensor.py:1211:5-23: Class member `SmartThingsSensor.entity_description` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/sensor.py:1211:5-23: Class member `SmartThingsSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/switch.py:64:5-8: Unexpected keyword argument `key` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:66:5-9: Unexpected keyword argument `name` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:72:9-12: Unexpected keyword argument `key` in function `SmartThingsCommandSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:73:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsCommandSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:76:9-24: Unexpected keyword argument `entity_category` in function `SmartThingsCommandSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:79:9-12: Unexpected keyword argument `key` in function `SmartThingsCommandSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:80:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsCommandSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:83:9-24: Unexpected keyword argument `entity_category` in function `SmartThingsCommandSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:86:9-12: Unexpected keyword argument `key` in function `SmartThingsCommandSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:87:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsCommandSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:90:9-24: Unexpected keyword argument `entity_category` in function `SmartThingsCommandSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:95:9-12: Unexpected keyword argument `key` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:96:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:101:9-24: Unexpected keyword argument `entity_category` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:104:9-12: Unexpected keyword argument `key` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:105:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:107:9-24: Unexpected keyword argument `entity_category` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:110:9-12: Unexpected keyword argument `key` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:118:9-12: Unexpected keyword argument `key` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:119:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:121:9-24: Unexpected keyword argument `entity_category` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:124:9-12: Unexpected keyword argument `key` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:125:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:130:9-24: Unexpected keyword argument `entity_category` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:133:9-12: Unexpected keyword argument `key` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:134:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:139:9-24: Unexpected keyword argument `entity_category` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:142:9-12: Unexpected keyword argument `key` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:143:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:145:9-24: Unexpected keyword argument `entity_category` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:148:9-12: Unexpected keyword argument `key` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:149:9-24: Unexpected keyword argument `translation_key` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:151:9-24: Unexpected keyword argument `entity_category` in function `SmartThingsSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smartthings/switch.py:255:5-23: Class member `SmartThingsSwitch.entity_description` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/switch.py:255:5-23: Class member `SmartThingsSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/switch.py:305:5-23: Class member `SmartThingsCommandSwitch.entity_description` overrides parent class `SmartThingsSwitch` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/update.py:45:5-23: Class member `SmartThingsUpdateEntity._attr_device_class` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/update.py:46:5-29: Class member `SmartThingsUpdateEntity._attr_supported_features` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/vacuum.py:44:5-29: Class member `SamsungJetBotVacuum._attr_supported_features` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/valve.py:42:5-29: Class member `SmartThingsValve._attr_supported_features` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smartthings/valve.py:49:14-32: Class member `SmartThingsValve._attr_device_class` overrides parent class `SmartThingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarttub/binary_sensor.py:98:5-23: Class member `SmartTubOnline._attr_device_class` overrides parent class `SmartTubOnboardSensorBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarttub/binary_sensor.py:117:5-23: Class member `SmartTubReminder._attr_device_class` overrides parent class `SmartTubEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarttub/binary_sensor.py:169:5-23: Class member `SmartTubError._attr_device_class` overrides parent class `SmartTubEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarttub/binary_sensor.py:213:5-23: Class member `SmartTubCoverSensor._attr_device_class` overrides parent class `SmartTubExternalSensorBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarttub/climate.py:68:5-29: Class member `SmartTubThermostat._attr_supported_features` overrides parent class `SmartTubEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarttub/climate.py:85:33-55: Object of class `SpaState` has no attribute `heater` [missing-attribute] +ERROR homeassistant/components/smarttub/climate.py:99:29-54: Object of class `SpaState` has no attribute `heat_mode` [missing-attribute] +ERROR homeassistant/components/smarttub/climate.py:104:16-37: Object of class `SpaState` has no attribute `water` [missing-attribute] +ERROR homeassistant/components/smarttub/climate.py:109:16-47: Object of class `SpaState` has no attribute `set_temperature` [missing-attribute] +ERROR homeassistant/components/smarttub/light.py:48:5-29: Class member `SmartTubLight._attr_supported_features` overrides parent class `SmartTubEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarttub/sensor.py:127:16-33: Object of class `SpaPrimaryFiltrationCycle` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/smarttub/sensor.py:133:28-47: Object of class `SpaPrimaryFiltrationCycle` has no attribute `duration` [missing-attribute] +ERROR homeassistant/components/smarttub/sensor.py:134:38-61: Object of class `SpaPrimaryFiltrationCycle` has no attribute `last_updated` [missing-attribute] +ERROR homeassistant/components/smarttub/sensor.py:135:24-39: Object of class `SpaPrimaryFiltrationCycle` has no attribute `mode` [missing-attribute] +ERROR homeassistant/components/smarttub/sensor.py:136:30-51: Object of class `SpaPrimaryFiltrationCycle` has no attribute `start_hour` [missing-attribute] +ERROR homeassistant/components/smarttub/sensor.py:167:16-33: Object of class `SpaSecondaryFiltrationCycle` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/smarttub/sensor.py:173:38-61: Object of class `SpaSecondaryFiltrationCycle` has no attribute `last_updated` [missing-attribute] +ERROR homeassistant/components/smarttub/sensor.py:174:24-39: Object of class `SpaSecondaryFiltrationCycle` has no attribute `mode` [missing-attribute] +ERROR homeassistant/components/smarty/binary_sensor.py:34:9-12: Unexpected keyword argument `key` in function `SmartyBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/binary_sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `SmartyBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/binary_sensor.py:40:9-12: Unexpected keyword argument `key` in function `SmartyBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/binary_sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `SmartyBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/binary_sensor.py:46:9-12: Unexpected keyword argument `key` in function `SmartyBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/binary_sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `SmartyBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/binary_sensor.py:70:5-23: Class member `SmartyBinarySensor.entity_description` overrides parent class `SmartyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarty/binary_sensor.py:70:5-23: Class member `SmartyBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarty/button.py:31:9-12: Unexpected keyword argument `key` in function `SmartyButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/button.py:32:9-24: Unexpected keyword argument `translation_key` in function `SmartyButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/button.py:55:5-23: Class member `SmartyButton.entity_description` overrides parent class `SmartyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarty/button.py:55:5-23: Class member `SmartyButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarty/coordinator.py:21:5-17: Class member `SmartyCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarty/coordinator.py:37:55-73: Argument `BoundMethod[Smarty, (self: Smarty) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/smarty/coordinator.py:44:55-73: Argument `BoundMethod[Smarty, (self: Smarty) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/smarty/fan.py:46:5-29: Class member `SmartyFan._attr_supported_features` overrides parent class `SmartyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarty/sensor.py:44:9-12: Unexpected keyword argument `key` in function `SmartySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `SmartySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/sensor.py:51:9-12: Unexpected keyword argument `key` in function `SmartySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `SmartySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/sensor.py:58:9-12: Unexpected keyword argument `key` in function `SmartySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `SmartySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/sensor.py:65:9-12: Unexpected keyword argument `key` in function `SmartySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `SmartySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/sensor.py:71:9-12: Unexpected keyword argument `key` in function `SmartySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `SmartySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/sensor.py:77:9-12: Unexpected keyword argument `key` in function `SmartySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `SmartySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/sensor.py:102:5-23: Class member `SmartySensor.entity_description` overrides parent class `SmartyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarty/sensor.py:102:5-23: Class member `SmartySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarty/switch.py:33:9-12: Unexpected keyword argument `key` in function `SmartySwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/switch.py:34:9-24: Unexpected keyword argument `translation_key` in function `SmartySwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smarty/switch.py:59:5-23: Class member `SmartySwitch.entity_description` overrides parent class `SmartyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smarty/switch.py:59:5-23: Class member `SmartySwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smhi/coordinator.py:50:5-17: Class member `SMHIDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smhi/coordinator.py:96:5-17: Class member `SMHIFireDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smhi/sensor.py:95:9-12: Unexpected keyword argument `key` in function `SMHIWeatherEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `SMHIWeatherEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:101:9-12: Unexpected keyword argument `key` in function `SMHIWeatherEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `SMHIWeatherEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:105:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SMHIWeatherEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:108:9-12: Unexpected keyword argument `key` in function `SMHIWeatherEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:109:9-24: Unexpected keyword argument `translation_key` in function `SMHIWeatherEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:112:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SMHIWeatherEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:115:9-12: Unexpected keyword argument `key` in function `SMHIWeatherEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `SMHIWeatherEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:119:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SMHIWeatherEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:122:9-12: Unexpected keyword argument `key` in function `SMHIWeatherEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `SMHIWeatherEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:126:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SMHIWeatherEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:129:9-12: Unexpected keyword argument `key` in function `SMHIWeatherEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:130:9-24: Unexpected keyword argument `translation_key` in function `SMHIWeatherEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:138:9-12: Unexpected keyword argument `key` in function `SMHIWeatherEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:139:9-24: Unexpected keyword argument `translation_key` in function `SMHIWeatherEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:146:9-12: Unexpected keyword argument `key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:147:9-24: Unexpected keyword argument `translation_key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:153:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:156:9-12: Unexpected keyword argument `key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:157:9-24: Unexpected keyword argument `translation_key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:160:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:163:9-12: Unexpected keyword argument `key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:164:9-24: Unexpected keyword argument `translation_key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:167:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:170:9-12: Unexpected keyword argument `key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:171:9-24: Unexpected keyword argument `translation_key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:178:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:181:9-12: Unexpected keyword argument `key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:182:9-24: Unexpected keyword argument `translation_key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:185:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:188:9-12: Unexpected keyword argument `key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:189:9-24: Unexpected keyword argument `translation_key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:192:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:195:9-12: Unexpected keyword argument `key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:196:9-24: Unexpected keyword argument `translation_key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:199:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:202:9-12: Unexpected keyword argument `key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:203:9-24: Unexpected keyword argument `translation_key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:209:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:212:9-12: Unexpected keyword argument `key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:213:9-24: Unexpected keyword argument `translation_key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:218:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:221:9-12: Unexpected keyword argument `key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:222:9-24: Unexpected keyword argument `translation_key` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:228:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SMHIFireEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smhi/sensor.py:269:5-23: Class member `SMHIWeatherSensor.entity_description` overrides parent class `SmhiWeatherEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smhi/sensor.py:269:5-23: Class member `SMHIWeatherSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smhi/sensor.py:296:5-23: Class member `SMHIFireSensor.entity_description` overrides parent class `SmhiFireEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smhi/sensor.py:296:5-23: Class member `SMHIFireSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smhi/weather.py:168:17-183:18: Expected argument `datetime` to be passed by name in function `homeassistant.components.weather.Forecast.__init__` [unexpected-positional-argument] +ERROR homeassistant/components/smlight/binary_sensor.py:38:9-12: Unexpected keyword argument `key` in function `SmBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/binary_sensor.py:39:9-24: Unexpected keyword argument `translation_key` in function `SmBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/binary_sensor.py:43:9-12: Unexpected keyword argument `key` in function `SmBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/binary_sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `SmBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/binary_sensor.py:45:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SmBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/binary_sensor.py:49:9-12: Unexpected keyword argument `key` in function `SmBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/binary_sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `SmBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/binary_sensor.py:51:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SmBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/binary_sensor.py:79:5-23: Class member `SmBinarySensorEntity.entity_description` overrides parent class `SmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/binary_sensor.py:79:5-23: Class member `SmBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/binary_sensor.py:80:5-23: Class member `SmBinarySensorEntity._attr_device_class` overrides parent class `SmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/binary_sensor.py:104:5-23: Class member `SmInternetSensorEntity._attr_device_class` overrides parent class `SmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/button.py:40:9-12: Unexpected keyword argument `key` in function `SmButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/button.py:41:9-24: Unexpected keyword argument `translation_key` in function `SmButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/button.py:46:9-12: Unexpected keyword argument `key` in function `SmButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/button.py:47:9-24: Unexpected keyword argument `translation_key` in function `SmButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/button.py:52:9-12: Unexpected keyword argument `key` in function `SmButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/button.py:53:9-24: Unexpected keyword argument `translation_key` in function `SmButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/button.py:54:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SmButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/button.py:60:5-8: Unexpected keyword argument `key` in function `SmButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/button.py:61:5-20: Unexpected keyword argument `translation_key` in function `SmButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/button.py:62:5-36: Unexpected keyword argument `entity_registry_enabled_default` in function `SmButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/button.py:108:5-16: Class member `SmButton.coordinator` overrides parent class `SmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/button.py:109:5-23: Class member `SmButton.entity_description` overrides parent class `SmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/button.py:109:5-23: Class member `SmButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/coordinator.py:56:5-17: Class member `SmBaseDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/coordinator.py:157:14-29: Class member `SmFirmwareUpdateCoordinator.update_interval` overrides parent class `SmBaseDataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/coordinator.py:157:32-54: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@SmFirmwareUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/smlight/sensor.py:47:9-12: Unexpected keyword argument `key` in function `SmInfoEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `SmInfoEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:54:9-12: Unexpected keyword argument `key` in function `SmInfoEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `SmInfoEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:63:5-8: Unexpected keyword argument `key` in function `SmInfoEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:64:5-20: Unexpected keyword argument `translation_key` in function `SmInfoEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:73:9-12: Unexpected keyword argument `key` in function `SmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `SmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:82:9-12: Unexpected keyword argument `key` in function `SmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `SmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:91:9-12: Unexpected keyword argument `key` in function `SmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `SmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:95:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:99:9-12: Unexpected keyword argument `key` in function `SmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `SmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:103:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:109:5-8: Unexpected keyword argument `key` in function `SmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:110:5-20: Unexpected keyword argument `translation_key` in function `SmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:120:9-12: Unexpected keyword argument `key` in function `SmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `SmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:123:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:127:9-12: Unexpected keyword argument `key` in function `SmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `SmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:130:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SmSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/sensor.py:146:13-82: Argument `Generator[SmSensorEntity, None, None]` is not assignable to parameter `*iterables` with type `Iterable[SmInfoSensorEntity]` in function `itertools.chain.__new__` [bad-argument-type] +ERROR homeassistant/components/smlight/sensor.py:147:13-87: Argument `Generator[SmUptimeSensorEntity, None, None]` is not assignable to parameter `*iterables` with type `Iterable[SmInfoSensorEntity]` in function `itertools.chain.__new__` [bad-argument-type] +ERROR homeassistant/components/smlight/sensor.py:165:5-16: Class member `SmSensorEntity.coordinator` overrides parent class `SmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/sensor.py:166:5-23: Class member `SmSensorEntity.entity_description` overrides parent class `SmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/sensor.py:166:5-23: Class member `SmSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/sensor.py:189:5-16: Class member `SmInfoSensorEntity.coordinator` overrides parent class `SmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/sensor.py:190:5-23: Class member `SmInfoSensorEntity.entity_description` overrides parent class `SmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/sensor.py:190:5-23: Class member `SmInfoSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/switch.py:40:9-12: Unexpected keyword argument `key` in function `SmSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/switch.py:41:9-24: Unexpected keyword argument `translation_key` in function `SmSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/switch.py:46:9-12: Unexpected keyword argument `key` in function `SmSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/switch.py:47:9-24: Unexpected keyword argument `translation_key` in function `SmSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/switch.py:52:9-12: Unexpected keyword argument `key` in function `SmSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/switch.py:53:9-24: Unexpected keyword argument `translation_key` in function `SmSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/switch.py:55:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SmSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/switch.py:59:9-12: Unexpected keyword argument `key` in function `SmSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/switch.py:60:9-24: Unexpected keyword argument `translation_key` in function `SmSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/switch.py:62:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SmSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/switch.py:82:5-16: Class member `SmSwitch.coordinator` overrides parent class `SmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/switch.py:83:5-23: Class member `SmSwitch.entity_description` overrides parent class `SmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/switch.py:83:5-23: Class member `SmSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/switch.py:84:5-23: Class member `SmSwitch._attr_device_class` overrides parent class `SmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/update.py:51:5-8: Unexpected keyword argument `key` in function `SmUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/update.py:52:5-20: Unexpected keyword argument `translation_key` in function `SmUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/update.py:58:5-8: Unexpected keyword argument `key` in function `SmUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/update.py:59:5-20: Unexpected keyword argument `translation_key` in function `SmUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/smlight/update.py:91:5-16: Class member `SmUpdateEntity.coordinator` overrides parent class `SmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/update.py:92:5-23: Class member `SmUpdateEntity.entity_description` overrides parent class `SmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/update.py:92:5-23: Class member `SmUpdateEntity.entity_description` overrides parent class `UpdateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/update.py:94:5-23: Class member `SmUpdateEntity._attr_device_class` overrides parent class `SmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/update.py:95:5-29: Class member `SmUpdateEntity._attr_supported_features` overrides parent class `SmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/smlight/update.py:187:20-38: `int` is not assignable to variable `progress` with type `MessageEvent` [bad-assignment] +ERROR homeassistant/components/smlight/update.py:188:40-48: `MessageEvent` is not assignable to attribute `_attr_update_percentage` with type `float | int | None` [bad-assignment] +ERROR homeassistant/components/snapcast/__init__.py:36:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/snapcast/coordinator.py:20:5-17: Class member `SnapcastUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/snapcast/media_player.py:175:5-29: Class member `SnapcastBaseDevice._attr_supported_features` overrides parent class `SnapcastCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/snapcast/media_player.py:177:5-23: Class member `SnapcastBaseDevice._attr_device_class` overrides parent class `SnapcastCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/snapcast/media_player.py:361:5-12: Class member `SnapcastGroupDevice._device` overrides parent class `SnapcastBaseDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/snapcast/media_player.py:449:5-12: Class member `SnapcastClientDevice._device` overrides parent class `SnapcastBaseDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/snmp/device_tracker.py:95:31-97:14: `CommunityData` is not assignable to attribute `_auth_data` with type `UsmUserData` [bad-assignment] +ERROR homeassistant/components/snmp/device_tracker.py:113:17-37: Argument `tuple[Unknown, Literal['161']]` is not assignable to parameter `address` with type `tuple[str, int]` in function `pysnmp.hlapi.transport.AbstractTransportTarget.create` [bad-argument-type] +ERROR homeassistant/components/snmp/device_tracker.py:119:21-41: Argument `tuple[Unknown, Literal['161']]` is not assignable to parameter `timeout` with type `float` in function `pysnmp.hlapi.transport.AbstractTransportTarget.__init__` [bad-argument-type] +ERROR homeassistant/components/snmp/device_tracker.py:119:43-66: Multiple values for argument `timeout` in function `pysnmp.hlapi.transport.AbstractTransportTarget.__init__` [bad-keyword-argument] +ERROR homeassistant/components/snmp/device_tracker.py:195:21-42: Object of class `int` has no attribute `prettyPrint` +Object of class `str` has no attribute `prettyPrint` [missing-attribute] +ERROR homeassistant/components/snmp/sensor.py:137:50-62: Argument `tuple[Any | None, Any | None]` is not assignable to parameter `address` with type `tuple[str, int]` in function `pysnmp.hlapi.transport.AbstractTransportTarget.create` [bad-argument-type] +ERROR homeassistant/components/snmp/sensor.py:141:42-54: Argument `tuple[Any | None, Any | None]` is not assignable to parameter `timeout` with type `float` in function `pysnmp.hlapi.transport.AbstractTransportTarget.__init__` [bad-argument-type] +ERROR homeassistant/components/snmp/sensor.py:141:56-79: Multiple values for argument `timeout` in function `pysnmp.hlapi.transport.AbstractTransportTarget.__init__` [bad-keyword-argument] +ERROR homeassistant/components/snmp/sensor.py:220:56-61: `value` may be uninitialized [unbound-name] +ERROR homeassistant/components/snmp/sensor.py:246:17-38: Object of class `int` has no attribute `prettyPrint` [missing-attribute] +ERROR homeassistant/components/snmp/switch.py:273:17-38: Object of class `int` has no attribute `prettyPrint` [missing-attribute] +ERROR homeassistant/components/snmp/util.py:78:48-64: Argument `() -> SnmpEngine` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/snoo/binary_sensor.py:32:9-12: Unexpected keyword argument `key` in function `SnooBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/binary_sensor.py:33:9-24: Unexpected keyword argument `translation_key` in function `SnooBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/binary_sensor.py:34:18-52: Argument `(data: SnooData) -> int` is not assignable to parameter `value_fn` with type `(SnooData) -> bool` in function `SnooBinarySensorEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/snoo/binary_sensor.py:36:9-24: Unexpected keyword argument `entity_category` in function `SnooBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/binary_sensor.py:39:9-12: Unexpected keyword argument `key` in function `SnooBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/binary_sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `SnooBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/binary_sensor.py:41:18-53: Argument `(data: SnooData) -> int` is not assignable to parameter `value_fn` with type `(SnooData) -> bool` in function `SnooBinarySensorEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/snoo/binary_sensor.py:43:9-24: Unexpected keyword argument `entity_category` in function `SnooBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/binary_sensor.py:65:5-23: Class member `SnooBinarySensor.entity_description` overrides parent class `SnooDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/snoo/binary_sensor.py:65:5-23: Class member `SnooBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/snoo/button.py:29:9-12: Unexpected keyword argument `key` in function `SnooButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/button.py:30:9-24: Unexpected keyword argument `translation_key` in function `SnooButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/button.py:55:5-23: Class member `SnooButton.entity_description` overrides parent class `SnooDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/snoo/button.py:55:5-23: Class member `SnooButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/snoo/coordinator.py:20:5-17: Class member `SnooCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/snoo/event.py:22:17-20: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/event.py:23:17-32: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/event.py:42:7-16: Field `entity_description` is declared `EntityDescription` in ancestor `class SnooDescriptionEntity: ... +`, which is not assignable to the type `EventEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/snoo/select.py:32:9-12: Unexpected keyword argument `key` in function `SnooSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/select.py:33:9-24: Unexpected keyword argument `translation_key` in function `SnooSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/select.py:34:31-60: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/snoo/select.py:36:21-38: Argument `SnooLevels` is not assignable to parameter `level` with type `SnooStates` in function `python_snoo.snoo.Snoo.set_level` [bad-argument-type] +ERROR homeassistant/components/snoo/select.py:60:5-23: Class member `SnooSelect.entity_description` overrides parent class `SnooDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/snoo/select.py:60:5-23: Class member `SnooSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/snoo/sensor.py:33:9-12: Unexpected keyword argument `key` in function `SnooSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/sensor.py:34:9-24: Unexpected keyword argument `translation_key` in function `SnooSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/sensor.py:40:9-12: Unexpected keyword argument `key` in function `SnooSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `SnooSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/sensor.py:42:18-69: Argument `(data: SnooData) -> datetime | None` is not assignable to parameter `value_fn` with type `(SnooData) -> float | int | str | None` in function `SnooSensorEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/snoo/sensor.py:44:9-24: Unexpected keyword argument `entity_category` in function `SnooSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/sensor.py:66:5-23: Class member `SnooSensor.entity_description` overrides parent class `SnooDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/snoo/sensor.py:66:5-23: Class member `SnooSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/snoo/switch.py:33:9-12: Unexpected keyword argument `key` in function `SnooSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/switch.py:34:9-24: Unexpected keyword argument `translation_key` in function `SnooSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/switch.py:41:9-12: Unexpected keyword argument `key` in function `SnooSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/switch.py:42:9-24: Unexpected keyword argument `translation_key` in function `SnooSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/snoo/switch.py:45:21-45: Argument `SnooLevels | None` is not assignable to parameter `level` with type `SnooStates` in function `python_snoo.snoo.Snoo.set_level` [bad-argument-type] +ERROR homeassistant/components/snoo/switch.py:68:5-23: Class member `SnooSwitch.entity_description` overrides parent class `SnooDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/snoo/switch.py:68:5-23: Class member `SnooSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/snooz/__init__.py:63:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/snooz/fan.py:80:5-29: Class member `SnoozFan._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/solaredge/coordinator.py:341:5-17: Class member `SolarEdgeModulesCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/solaredge/sensor.py:46:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:54:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:57:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:62:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:65:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:70:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:73:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:78:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:86:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:89:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:92:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:94:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:95:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:98:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:101:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:104:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:107:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:110:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:113:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:116:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:118:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:119:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:122:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:124:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:125:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:128:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:130:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:131:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:134:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:136:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:137:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:140:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:142:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:143:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:146:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:148:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:149:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:155:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:157:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:158:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:164:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:166:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:167:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:173:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:175:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:176:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:182:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:184:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:185:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:191:9-12: Unexpected keyword argument `key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:193:9-24: Unexpected keyword argument `translation_key` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:194:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SolarEdgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge/sensor.py:296:5-23: Class member `SolarEdgeSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/solaredge/sensor.py:296:5-23: Class member `SolarEdgeSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/solaredge_local/sensor.py:12:1-38: Could not find import of `solaredge_local` [missing-import] +ERROR homeassistant/components/solaredge_local/sensor.py:63:9-12: Unexpected keyword argument `key` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:64:9-13: Unexpected keyword argument `name` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:67:9-13: Unexpected keyword argument `icon` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:70:9-12: Unexpected keyword argument `key` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:71:9-13: Unexpected keyword argument `name` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:74:9-13: Unexpected keyword argument `icon` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:77:9-12: Unexpected keyword argument `key` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:78:9-13: Unexpected keyword argument `name` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:83:9-12: Unexpected keyword argument `key` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:84:9-13: Unexpected keyword argument `name` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:87:9-13: Unexpected keyword argument `icon` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:90:9-12: Unexpected keyword argument `key` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:91:9-13: Unexpected keyword argument `name` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:94:9-13: Unexpected keyword argument `icon` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:97:9-12: Unexpected keyword argument `key` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:98:9-13: Unexpected keyword argument `name` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:101:9-13: Unexpected keyword argument `icon` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:104:9-12: Unexpected keyword argument `key` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:105:9-13: Unexpected keyword argument `name` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:108:9-13: Unexpected keyword argument `icon` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:111:9-12: Unexpected keyword argument `key` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:112:9-13: Unexpected keyword argument `name` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:115:9-13: Unexpected keyword argument `icon` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:118:9-12: Unexpected keyword argument `key` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:119:9-13: Unexpected keyword argument `name` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:121:9-13: Unexpected keyword argument `icon` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:125:9-12: Unexpected keyword argument `key` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:126:9-13: Unexpected keyword argument `name` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:129:9-13: Unexpected keyword argument `icon` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:132:9-12: Unexpected keyword argument `key` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:133:9-13: Unexpected keyword argument `name` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:136:9-13: Unexpected keyword argument `icon` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:139:9-12: Unexpected keyword argument `key` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:140:9-13: Unexpected keyword argument `name` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:142:9-13: Unexpected keyword argument `icon` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:146:9-12: Unexpected keyword argument `key` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:147:9-13: Unexpected keyword argument `name` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:150:9-13: Unexpected keyword argument `icon` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:155:5-8: Unexpected keyword argument `key` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:156:5-9: Unexpected keyword argument `name` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:164:9-12: Unexpected keyword argument `key` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:165:9-13: Unexpected keyword argument `name` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:168:9-13: Unexpected keyword argument `icon` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:171:9-12: Unexpected keyword argument `key` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:172:9-13: Unexpected keyword argument `name` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:175:9-13: Unexpected keyword argument `icon` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:181:9-12: Unexpected keyword argument `key` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:182:9-13: Unexpected keyword argument `name` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:185:9-13: Unexpected keyword argument `icon` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:188:9-12: Unexpected keyword argument `key` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:189:9-13: Unexpected keyword argument `name` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:192:9-13: Unexpected keyword argument `icon` in function `SolarEdgeLocalSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solaredge_local/sensor.py:277:5-23: Class member `SolarEdgeSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/solarlog/coordinator.py:37:5-17: Class member `SolarLogCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/solarlog/coordinator.py:155:27-42: `current_devices` may be uninitialized [unbound-name] +ERROR homeassistant/components/solarlog/coordinator.py:161:37-52: `current_devices` may be uninitialized [unbound-name] +ERROR homeassistant/components/solarlog/sensor.py:54:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:60:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:68:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:76:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:84:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:92:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:102:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:103:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:111:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:121:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:122:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:130:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:131:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:140:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:141:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:148:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:149:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:158:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:159:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:167:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:168:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:177:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:178:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:187:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:188:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:197:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:198:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:205:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:206:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:213:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:214:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:221:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:222:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:230:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:231:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:239:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:240:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:247:9-12: Unexpected keyword argument `key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:248:9-24: Unexpected keyword argument `translation_key` in function `SolarLogCoordinatorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:259:9-12: Unexpected keyword argument `key` in function `SolarLogBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:260:9-24: Unexpected keyword argument `translation_key` in function `SolarLogBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:267:9-12: Unexpected keyword argument `key` in function `SolarLogBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:268:9-24: Unexpected keyword argument `translation_key` in function `SolarLogBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:275:9-12: Unexpected keyword argument `key` in function `SolarLogBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:276:9-24: Unexpected keyword argument `translation_key` in function `SolarLogBatterySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:286:9-12: Unexpected keyword argument `key` in function `SolarLogInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:287:9-24: Unexpected keyword argument `translation_key` in function `SolarLogInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:296:9-12: Unexpected keyword argument `key` in function `SolarLogInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:297:9-24: Unexpected keyword argument `translation_key` in function `SolarLogInverterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solarlog/sensor.py:353:5-23: Class member `SolarLogCoordinatorSensor.entity_description` overrides parent class `SolarLogCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/solarlog/sensor.py:353:5-23: Class member `SolarLogCoordinatorSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/solarlog/sensor.py:365:5-23: Class member `SolarLogBatterySensor.entity_description` overrides parent class `SolarLogCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/solarlog/sensor.py:365:5-23: Class member `SolarLogBatterySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/solarlog/sensor.py:378:5-23: Class member `SolarLogInverterSensor.entity_description` overrides parent class `SolarLogInverterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/solarlog/sensor.py:378:5-23: Class member `SolarLogInverterSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/solax/sensor.py:36:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solax/sensor.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solax/sensor.py:48:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solax/sensor.py:54:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solax/sensor.py:60:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solax/sensor.py:66:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solax/sensor.py:72:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solax/sensor.py:78:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solax/sensor.py:84:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/solax/sensor.py:144:14-32: Class member `InverterSensorEntity._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/solax/sensor.py:156:16-42: Object of class `dict` has no attribute `data` [missing-attribute] +ERROR homeassistant/components/soma/__init__.py:52:49-65: Argument `BoundMethod[SomaApi, (self: SomaApi) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/soma/config_flow.py:52:61-77: Argument `BoundMethod[SomaApi, (self: SomaApi) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/soma/cover.py:49:5-23: Class member `SomaTilt._attr_device_class` overrides parent class `SomaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/soma/cover.py:50:5-29: Class member `SomaTilt._attr_supported_features` overrides parent class `SomaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/soma/cover.py:123:37-69: `float` is not assignable to attribute `current_position` with type `int` [bad-assignment] +ERROR homeassistant/components/soma/cover.py:125:37-69: `float` is not assignable to attribute `current_position` with type `int` [bad-assignment] +ERROR homeassistant/components/soma/cover.py:132:5-23: Class member `SomaShade._attr_device_class` overrides parent class `SomaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/soma/cover.py:133:5-29: Class member `SomaShade._attr_supported_features` overrides parent class `SomaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/soma/sensor.py:35:5-23: Class member `SomaSensor._attr_device_class` overrides parent class `SomaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/somfy_mylink/__init__.py:59:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/somfy_mylink/config_flow.py:121:9-31: Class member `SomfyConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/somfy_mylink/cover.py:85:14-32: Class member `SomfyShade._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sonarr/config_flow.py:64:9-31: Class member `SonarrConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sonarr/coordinator.py:46:5-17: Class member `SonarrDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sonarr/sensor.py:91:9-12: Unexpected keyword argument `key` in function `SonarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonarr/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `SonarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonarr/sensor.py:93:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SonarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonarr/sensor.py:98:9-12: Unexpected keyword argument `key` in function `SonarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonarr/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `SonarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonarr/sensor.py:102:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SonarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonarr/sensor.py:107:9-12: Unexpected keyword argument `key` in function `SonarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonarr/sensor.py:108:9-24: Unexpected keyword argument `translation_key` in function `SonarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonarr/sensor.py:109:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SonarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonarr/sensor.py:114:9-12: Unexpected keyword argument `key` in function `SonarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonarr/sensor.py:115:9-24: Unexpected keyword argument `translation_key` in function `SonarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonarr/sensor.py:116:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SonarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonarr/sensor.py:127:9-12: Unexpected keyword argument `key` in function `SonarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonarr/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `SonarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonarr/sensor.py:135:9-12: Unexpected keyword argument `key` in function `SonarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonarr/sensor.py:136:9-24: Unexpected keyword argument `translation_key` in function `SonarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonarr/sensor.py:137:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SonarrSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonarr/sensor.py:163:5-23: Class member `SonarrSensor.entity_description` overrides parent class `SonarrEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sonarr/sensor.py:163:5-23: Class member `SonarrSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/songpal/media_player.py:253:16-37: Object of class `NoneType` has no attribute `macAddr` [missing-attribute] +ERROR homeassistant/components/songpal/media_player.py:253:41-70: Object of class `NoneType` has no attribute `wirelessMacAddr` [missing-attribute] +ERROR homeassistant/components/songpal/media_player.py:259:12-33: Object of class `NoneType` has no attribute `macAddr` [missing-attribute] +ERROR homeassistant/components/songpal/media_player.py:261:12-41: Object of class `NoneType` has no attribute `wirelessMacAddr` [missing-attribute] +ERROR homeassistant/components/songpal/media_player.py:264:25-36: Argument `set[tuple[str, object]]` is not assignable to parameter `connections` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/songpal/media_player.py:269:24-45: Object of class `NoneType` has no attribute `version` [missing-attribute] +ERROR homeassistant/components/songpal/media_player.py:394:22-53: Object of class `NoneType` has no attribute `set_volume` [missing-attribute] +ERROR homeassistant/components/songpal/media_player.py:398:22-53: Object of class `NoneType` has no attribute `set_volume` [missing-attribute] +ERROR homeassistant/components/songpal/media_player.py:402:22-53: Object of class `NoneType` has no attribute `set_volume` [missing-attribute] +ERROR homeassistant/components/songpal/media_player.py:431:22-51: Object of class `NoneType` has no attribute `set_mute` [missing-attribute] +ERROR homeassistant/components/sonos/__init__.py:115:33-47: `Module[soco.events_asyncio]` is not assignable to attribute `EVENTS_MODULE` with type `None` [bad-assignment] +ERROR homeassistant/components/sonos/__init__.py:117:38-43: `Literal[False]` is not assignable to attribute `ZGT_EVENT_FALLBACK` with type `Literal[True]` [bad-assignment] +ERROR homeassistant/components/sonos/__init__.py:118:5-39: No attribute `EVENT_CACHE_TIMEOUT` in module `soco.zonegroupstate` [missing-attribute] +ERROR homeassistant/components/sonos/__init__.py:349:52-65: Argument `() -> Unknown` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/sonos/__init__.py:456:60-78: Argument `BoundMethod[SonosSpeaker, (SonosSpeaker) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/sonos/binary_sensor.py:62:5-23: Class member `SonosPowerEntity._attr_device_class` overrides parent class `SonosEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sonos/binary_sensor.py:104:48-63: Argument `BoundMethod[Self@SonosMicrophoneSensorEntity, (Self@SonosMicrophoneSensorEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/sonos/diagnostics.py:106:9-32: Argument `() -> dict[str, Any] | str` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/sonos/diagnostics.py:129:20-30: Returned type `MappingProxyType[str, Any]` is not assignable to declared return type `dict[str, Any] | float | int | str` [bad-return] +ERROR homeassistant/components/sonos/household_coordinator.py:41:27-44: Argument `BoundMethod[Self@SonosHouseholdCoordinator, (self: Self@SonosHouseholdCoordinator) -> None]` is not assignable to parameter `target` with type `((**tuple[*@_]) -> Any) | Coroutine[Any, Any, Any]` in function `homeassistant.core.HomeAssistant.add_job` [bad-argument-type] +ERROR homeassistant/components/sonos/media.py:176:16-21: `ct_md` may be uninitialized [unbound-name] +ERROR homeassistant/components/sonos/media.py:176:34-39: `ct_md` may be uninitialized [unbound-name] +ERROR homeassistant/components/sonos/media.py:176:59-64: `ct_md` may be uninitialized [unbound-name] +ERROR homeassistant/components/sonos/media.py:177:30-35: `ct_md` may be uninitialized [unbound-name] +ERROR homeassistant/components/sonos/media_browser.py:66:41-59: Argument `Overload[(string: str, safe: Iterable[int] | str = '/', encoding: str | None = None, errors: str | None = None) -> str, (string: bytearray | bytes, safe: Iterable[int] | str = '/') -> str]` is not assignable to parameter `quote_via` with type `_QuoteVia` in function `urllib.parse.urlencode` [bad-argument-type] +ERROR homeassistant/components/sonos/media_browser.py:259:21-38: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/sonos/media_browser.py:285:31-53: Argument `str` is not assignable to parameter `item` with type `DidlObject` in function `can_expand` [bad-argument-type] +ERROR homeassistant/components/sonos/media_browser.py:304:21-38: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/sonos/media_browser.py:497:26-34: Argument `DidlFavorite` is not assignable to parameter `item` with type `MusicServiceItem | None` in function `get_thumbnail_url_full` [bad-argument-type] +ERROR homeassistant/components/sonos/media_player.py:116:5-29: Class member `SonosMediaPlayerEntity._attr_supported_features` overrides parent class `SonosEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sonos/media_player.py:136:5-23: Class member `SonosMediaPlayerEntity._attr_device_class` overrides parent class `SonosEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sonos/media_player.py:208:48-60: Argument `BoundMethod[Self@SonosMediaPlayerEntity, (self: Self@SonosMediaPlayerEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/sonos/media_player.py:230:27-47: Cannot index into `dict[str, tuple[bool, bool] | tuple[bool, str]]` [bad-index] +ERROR homeassistant/components/sonos/media_player.py:235:35-55: Cannot index into `dict[str, tuple[bool, bool] | tuple[bool, str]]` [bad-index] +ERROR homeassistant/components/sonos/media_player.py:317:35-55: Cannot index into `dict[str, tuple[bool, bool] | tuple[bool, str]]` [bad-index] +ERROR homeassistant/components/sonos/media_player.py:319:13-42: Cannot index into `dict[tuple[bool, bool] | tuple[bool, str], str]` [bad-index] +ERROR homeassistant/components/sonos/media_player.py:325:36-56: Cannot index into `dict[str, tuple[bool, bool] | tuple[bool, str]]` [bad-index] +ERROR homeassistant/components/sonos/media_player.py:328:13-42: Cannot index into `dict[tuple[bool, bool] | tuple[bool, str], str]` [bad-index] +ERROR homeassistant/components/sonos/media_player.py:381:22-49: Object of class `DidlFavorite` has no attribute `resource_meta_data` [missing-attribute] +ERROR homeassistant/components/sonos/media_player.py:487:46-490:22: Argument `dict[str, dict[str, Any] | str]` is not assignable to parameter `translation_placeholders` with type `dict[str, str] | None` in function `homeassistant.exceptions.HomeAssistantError.__init__` [bad-argument-type] +ERROR homeassistant/components/sonos/number.py:122:14-36: Class member `SonosLevelEntity._attr_native_min_value` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sonos/number.py:122:43-65: Class member `SonosLevelEntity._attr_native_max_value` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sonos/number.py:126:48-63: Argument `BoundMethod[Self@SonosLevelEntity, (Self@SonosLevelEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/sonos/select.py:36:9-12: Unexpected keyword argument `key` in function `SonosSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonos/select.py:37:9-24: Unexpected keyword argument `translation_key` in function `SonosSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sonos/select.py:104:48-63: Argument `BoundMethod[Self@SonosSelectEntity, (Self@SonosSelectEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/sonos/sensor.py:100:5-23: Class member `SonosBatteryEntity._attr_device_class` overrides parent class `SonosEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sonos/sensor.py:127:5-23: Class member `SonosPowerSourceEntity._attr_device_class` overrides parent class `SonosEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sonos/speaker.py:131:13-42: Object of class `SubscriptionBase` has no attribute `callback` [missing-attribute] +ERROR homeassistant/components/sonos/speaker.py:337:22-59: Object of class `SubscriptionBase` has no attribute `event_listener` [missing-attribute] +ERROR homeassistant/components/sonos/speaker.py:683:52-61: Argument `BoundMethod[Self@SonosSpeaker, (Self@SonosSpeaker) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/sonos/speaker.py:795:21-44: Argument `BoundMethod[Self@SonosSpeaker, (Self@SonosSpeaker) -> dict[str, Any]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/sonos/speaker.py:830:17-40: Argument `BoundMethod[Self@SonosSpeaker, (Self@SonosSpeaker) -> dict[str, Any]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/sonos/speaker.py:909:59-74: Argument `() -> list[str]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/sonos/statistics.py:75:44-73: Cannot set item in `dict[str, dict[str, float | int]]` [unsupported-operation] +ERROR homeassistant/components/sonos/statistics.py:76:43-71: Cannot set item in `dict[str, dict[str, float | int]]` [unsupported-operation] +ERROR homeassistant/components/sonos/switch.py:180:52-67: Argument `BoundMethod[Self@SonosSwitchEntity, (Self@SonosSwitchEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/sonos/switch.py:257:16-259:10: Returned type `Alarm | None` is not assignable to declared return type `Alarm` [bad-return] +ERROR homeassistant/components/sony_projector/switch.py:8:8-14: Could not find import of `pysdcp` [missing-import] +ERROR homeassistant/components/sony_projector/switch.py:100:27-35: `Literal['on']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/sony_projector/switch.py:109:27-36: `Literal['off']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/soundtouch/__init__.py:136:51-138:10: Unpacked argument `tuple[Any]` is not assignable to parameter `*args` with type `tuple[Unknown, int | Unknown]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/soundtouch/__init__.py:154:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/soundtouch/config_flow.py:84:56-86: Unpacked argument `tuple[str | None]` is not assignable to parameter `*args` with type `tuple[Unknown, int | Unknown]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/soundtouch/media_player.py:120:16-35: Object of class `NoneType` has no attribute `actual` [missing-attribute] +ERROR homeassistant/components/soundtouch/media_player.py:136:16-35: Object of class `NoneType` has no attribute `source` [missing-attribute] +ERROR homeassistant/components/soundtouch/media_player.py:141:16-34: Object of class `NoneType` has no attribute `muted` [missing-attribute] +ERROR homeassistant/components/soundtouch/media_player.py:190:16-34: Object of class `NoneType` has no attribute `image` [missing-attribute] +ERROR homeassistant/components/soundtouch/media_player.py:195:12-37: Object of class `NoneType` has no attribute `station_name` [missing-attribute] +ERROR homeassistant/components/soundtouch/media_player.py:197:12-31: Object of class `NoneType` has no attribute `artist` [missing-attribute] +ERROR homeassistant/components/soundtouch/media_player.py:198:47-65: Object of class `NoneType` has no attribute `track` [missing-attribute] +ERROR homeassistant/components/soundtouch/media_player.py:205:16-37: Object of class `NoneType` has no attribute `duration` [missing-attribute] +ERROR homeassistant/components/soundtouch/media_player.py:210:16-35: Object of class `NoneType` has no attribute `artist` [missing-attribute] +ERROR homeassistant/components/soundtouch/media_player.py:215:16-34: Object of class `NoneType` has no attribute `track` [missing-attribute] +ERROR homeassistant/components/soundtouch/media_player.py:220:16-34: Object of class `NoneType` has no attribute `album` [missing-attribute] +ERROR homeassistant/components/spaceapi/__init__.py:305:32-308:14: Cannot set item in `dict[str, int | str]` [unsupported-operation] +ERROR homeassistant/components/spaceapi/__init__.py:348:21-48: Object of class `float` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/speedtestdotnet/config_flow.py:33:9-31: Class member `SpeedTestFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/speedtestdotnet/coordinator.py:23:5-17: Class member `SpeedTestDataCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/speedtestdotnet/coordinator.py:80:59-75: Argument `BoundMethod[Self@SpeedTestDataCoordinator, (self: Self@SpeedTestDataCoordinator) -> dict[str, Any]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/speedtestdotnet/sensor.py:44:9-12: Unexpected keyword argument `key` in function `SpeedtestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/speedtestdotnet/sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `SpeedtestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/speedtestdotnet/sensor.py:51:9-12: Unexpected keyword argument `key` in function `SpeedtestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/speedtestdotnet/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `SpeedtestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/speedtestdotnet/sensor.py:59:9-12: Unexpected keyword argument `key` in function `SpeedtestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/speedtestdotnet/sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `SpeedtestSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/speedtestdotnet/sensor.py:85:5-23: Class member `SpeedtestSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/speedtestdotnet/sensor.py:85:5-23: Class member `SpeedtestSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/splunk/__init__.py:9:1-56: Could not find import of `hass_splunk` [missing-import] +ERROR homeassistant/components/spotify/coordinator.py:57:5-17: Class member `SpotifyCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/spotify/coordinator.py:85:14-29: Class member `SpotifyCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/spotify/coordinator.py:85:32-47: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@SpotifyCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/spotify/coordinator.py:139:40-72: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@SpotifyCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/sql/config_flow.py:173:9-31: Class member `SQLConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sql/config_flow.py:198:31-52: `db_url_for_validation` may be uninitialized [unbound-name] +ERROR homeassistant/components/sql/sensor.py:261:52-64: Argument `BoundMethod[Self@SQLSensor, (self: Self@SQLSensor) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/sql/sensor.py:284:17-31: `rendered_query` is uninitialized [unbound-name] +ERROR homeassistant/components/sql/sensor.py:295:51-54: Cannot set item in `dict[str, Any]` [unsupported-operation] +ERROR homeassistant/components/sql/services.py:78:25-34: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/sql/services.py:95:35-38: Cannot set item in `dict[str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None]` [unsupported-operation] +ERROR homeassistant/components/sql/services.py:107:61-87: Argument `() -> list[bool | dict[str, Unknown] | float | int | list[Unknown] | str | None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/sql/util.py:92:29-37: `instance` may be uninitialized [unbound-name] +ERROR homeassistant/components/sql/util.py:94:16-24: `instance` may be uninitialized [unbound-name] +ERROR homeassistant/components/sql/util.py:95:54-62: `instance` may be uninitialized [unbound-name] +ERROR homeassistant/components/squeezebox/__init__.py:159:16-41: `int | list[Unknown] | str | Unknown` is not assignable to attribute `uuid` with type `str | None` [bad-assignment] +ERROR homeassistant/components/squeezebox/__init__.py:161:16-164:14: `int | list[Unknown] | str | Unknown` is not assignable to attribute `name` with type `str | None` [bad-assignment] +ERROR homeassistant/components/squeezebox/__init__.py:168:46-70: Argument `int | list[Unknown] | str | Unknown` is not assignable to parameter `*args` with type `Hashable` in function `functools._lru_cache_wrapper.__call__` [bad-argument-type] +ERROR homeassistant/components/squeezebox/__init__.py:176:21-41: Argument `set[tuple[str, str | None]]` is not assignable to parameter `identifiers` with type `UndefinedType | set[tuple[str, str]] | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/squeezebox/__init__.py:181:20-27: Argument `int | list[Unknown] | str | Unknown | None` is not assignable to parameter `sw_version` with type `UndefinedType | str | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/squeezebox/__init__.py:207:42-50: Argument `str | None` is not assignable to parameter `server_uuid` with type `str` in function `homeassistant.components.squeezebox.coordinator.SqueezeBoxPlayerUpdateCoordinator.__init__` [bad-argument-type] +ERROR homeassistant/components/squeezebox/binary_sensor.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/binary_sensor.py:29:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/binary_sensor.py:31:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/binary_sensor.py:51:7-31: Field `entity_description` is declared `EntityDescription` in ancestor `class LMSStatusEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/squeezebox/browse_media.py:162:43-47: Argument `int | str` is not assignable to parameter `*parameters` with type `str` in function `pysqueezebox.player.Player.async_query` [bad-argument-type] +ERROR homeassistant/components/squeezebox/browse_media.py:164:24-44: Type `int` is not iterable [not-iterable] +ERROR homeassistant/components/squeezebox/browse_media.py:165:36-46: Cannot index into `str` [bad-index] +ERROR homeassistant/components/squeezebox/browse_media.py:174:43-47: Argument `int | str` is not assignable to parameter `*parameters` with type `str` in function `pysqueezebox.player.Player.async_query` [bad-argument-type] +ERROR homeassistant/components/squeezebox/browse_media.py:176:24-46: Type `int` is not iterable [not-iterable] +ERROR homeassistant/components/squeezebox/browse_media.py:177:36-46: Cannot index into `str` [bad-index] + WARN homeassistant/components/squeezebox/browse_media.py:266:24-80: Redundant cast: `str` is the same type as `str` [redundant-cast] + WARN homeassistant/components/squeezebox/browse_media.py:274:19-65: Redundant cast: `str` is the same type as `str` [redundant-cast] +ERROR homeassistant/components/squeezebox/browse_media.py:322:21-36: Type `int` is not iterable [not-iterable] +ERROR homeassistant/components/squeezebox/browse_media.py:324:13-23: Cannot set item in `str` [unsupported-operation] +ERROR homeassistant/components/squeezebox/browse_media.py:324:30-38: Object of class `str` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/squeezebox/browse_media.py:326:57-61: Argument `str | Unknown` is not assignable to parameter `item` with type `dict[str, Any]` in function `_build_response_favorites` [bad-argument-type] +ERROR homeassistant/components/squeezebox/browse_media.py:331:20-33: Cannot index into `str` [bad-index] +ERROR homeassistant/components/squeezebox/browse_media.py:331:49-57: Object of class `str` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/squeezebox/browse_media.py:334:36-47: Cannot index into `str` [bad-index] +ERROR homeassistant/components/squeezebox/browse_media.py:340:64-68: Argument `str | Unknown` is not assignable to parameter `item` with type `dict[str, Any]` in function `_build_response_apps_radios_category` [bad-argument-type] +ERROR homeassistant/components/squeezebox/browse_media.py:345:21-29: Object of class `str` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/squeezebox/browse_media.py:346:24-32: Object of class `str` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/squeezebox/browse_media.py:351:83-87: Argument `str | Unknown` is not assignable to parameter `item` with type `dict[str, Any]` in function `_build_response_known_app` [bad-argument-type] +ERROR homeassistant/components/squeezebox/browse_media.py:356:27-40: Cannot index into `str` [bad-index] +ERROR homeassistant/components/squeezebox/browse_media.py:363:20-31: `child_media` may be uninitialized [unbound-name] +ERROR homeassistant/components/squeezebox/browse_media.py:365:13-24: `child_media` may be uninitialized [unbound-name] +ERROR homeassistant/components/squeezebox/browse_media.py:366:22-26: Argument `str | Unknown` is not assignable to parameter `item` with type `dict[str, Any]` in function `_get_item_thumbnail` [bad-argument-type] +ERROR homeassistant/components/squeezebox/browse_media.py:375:29-40: `child_media` may be uninitialized [unbound-name] +ERROR homeassistant/components/squeezebox/browse_media.py:392:15-25: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/squeezebox/browse_media.py:486:23-38: `int | list[Unknown] | str | Unknown` is not assignable to `list[Unknown]` [bad-assignment] +ERROR homeassistant/components/squeezebox/button.py:52:9-12: Unexpected keyword argument `key` in function `SqueezeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/button.py:53:9-24: Unexpected keyword argument `translation_key` in function `SqueezeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/button.py:54:9-33: Unexpected keyword argument `translation_placeholders` in function `SqueezeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/button.py:62:9-12: Unexpected keyword argument `key` in function `SqueezeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/button.py:63:9-24: Unexpected keyword argument `translation_key` in function `SqueezeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/button.py:67:9-12: Unexpected keyword argument `key` in function `SqueezeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/button.py:68:9-24: Unexpected keyword argument `translation_key` in function `SqueezeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/button.py:75:9-12: Unexpected keyword argument `key` in function `SqueezeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/button.py:76:9-24: Unexpected keyword argument `translation_key` in function `SqueezeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/button.py:80:9-12: Unexpected keyword argument `key` in function `SqueezeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/button.py:81:9-24: Unexpected keyword argument `translation_key` in function `SqueezeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/button.py:85:9-12: Unexpected keyword argument `key` in function `SqueezeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/button.py:86:9-24: Unexpected keyword argument `translation_key` in function `SqueezeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/button.py:90:9-12: Unexpected keyword argument `key` in function `SqueezeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/button.py:91:9-24: Unexpected keyword argument `translation_key` in function `SqueezeboxButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/button.py:145:5-23: Class member `SqueezeboxButtonEntity.entity_description` overrides parent class `SqueezeboxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/squeezebox/button.py:145:5-23: Class member `SqueezeboxButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/squeezebox/config_flow.py:101:9-31: Class member `SqueezeboxConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/squeezebox/config_flow.py:159:44-58: Argument `int | list[Unknown] | str | Unknown` is not assignable to parameter `unique_id` with type `str | None` in function `homeassistant.config_entries.ConfigFlow.async_set_unique_id` [bad-argument-type] +ERROR homeassistant/components/squeezebox/coordinator.py:36:5-17: Class member `LMSStatusDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/squeezebox/coordinator.py:46:18-26: Argument `str | None` is not assignable to parameter `name` with type `str` in function `homeassistant.helpers.update_coordinator.DataUpdateCoordinator.__init__` [bad-argument-type] +ERROR homeassistant/components/squeezebox/coordinator.py:83:5-17: Class member `SqueezeBoxPlayerUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/squeezebox/media_player.py:234:5-29: Class member `SqueezeBoxMediaPlayerEntity._attr_supported_features` overrides parent class `SqueezeboxEntity` in an inconsistent manner [bad-override] + WARN homeassistant/components/squeezebox/media_player.py:384:20-52: Redundant cast: `str | None` is the same type as `str | None` [redundant-cast] + WARN homeassistant/components/squeezebox/media_player.py:389:20-59: Redundant cast: `str | None` is the same type as `str | None` [redundant-cast] + WARN homeassistant/components/squeezebox/media_player.py:394:20-53: Redundant cast: `str | None` is the same type as `str | None` [redundant-cast] + WARN homeassistant/components/squeezebox/media_player.py:399:20-52: Redundant cast: `str | None` is the same type as `str | None` [redundant-cast] +ERROR homeassistant/components/squeezebox/media_player.py:422:27-50: Type `None` is not iterable [not-iterable] +ERROR homeassistant/components/squeezebox/media_player.py:581:50-65: Argument `float | None` is not assignable to parameter `volume` with type `int | None` in function `pysqueezebox.player.Player.set_announce_volume` [bad-argument-type] +ERROR homeassistant/components/squeezebox/media_player.py:889:17-62: Argument `BoundMethod[Player, (self: Player, track_id: int) -> str]` is not assignable to parameter `method` with type `(...) -> Awaitable[Any]` in function `homeassistant.components.squeezebox.util.safe_library_call` [bad-argument-type] +ERROR homeassistant/components/squeezebox/sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/sensor.py:56:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/sensor.py:60:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/sensor.py:64:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/sensor.py:68:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/sensor.py:70:9-40: Unexpected keyword argument `entity_registry_visible_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/sensor.py:90:7-25: Field `entity_description` is declared `EntityDescription` in ancestor `class LMSStatusEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/squeezebox/switch.py:113:14-29: Class member `SqueezeBoxAlarmEntity._attr_unique_id` overrides parent class `SqueezeboxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/squeezebox/switch.py:113:14-29: Class member `SqueezeBoxAlarmEntity._attr_unique_id` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] + WARN homeassistant/components/squeezebox/switch.py:150:20-49: Redundant cast: `bool` is the same type as `bool` [redundant-cast] +ERROR homeassistant/components/squeezebox/switch.py:172:14-29: Class member `SqueezeBoxAlarmsEnabledEntity._attr_unique_id` overrides parent class `SqueezeboxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/squeezebox/switch.py:172:14-29: Class member `SqueezeBoxAlarmsEnabledEntity._attr_unique_id` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] + WARN homeassistant/components/squeezebox/switch.py:179:20-66: Redundant cast: `bool` is the same type as `bool` [redundant-cast] +ERROR homeassistant/components/squeezebox/update.py:33:5-8: Unexpected keyword argument `key` in function `homeassistant.components.update.UpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/update.py:37:5-8: Unexpected keyword argument `key` in function `homeassistant.components.update.UpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/squeezebox/update.py:63:7-25: Field `entity_description` is declared `EntityDescription` in ancestor `class LMSStatusEntity: ... +`, which is not assignable to the type `UpdateEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/srp_energy/__init__.py:46:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/srp_energy/config_flow.py:29:50-69: Argument `BoundMethod[SrpEnergyClient, (self: SrpEnergyClient) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/srp_energy/config_flow.py:35:12-20: Returned type `object` is not assignable to declared return type `dict[str, Any]` [bad-return] +ERROR homeassistant/components/srp_energy/coordinator.py:30:5-17: Class member `SRPEnergyDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/srp_energy/sensor.py:38:5-23: Class member `SrpEntity._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ssdp/__init__.py:166:9-169:10: Argument `((**tuple[SsdpServiceInfo, SsdpChange]) -> Coroutine[Any, Any, None]) | ((**tuple[SsdpServiceInfo, SsdpChange]) -> None)` is not assignable to parameter `target` with type `(**tuple[SsdpServiceInfo, SsdpChange]) -> Coroutine[Any, Any, None]` in function `homeassistant.core.HassJob.__init__` [bad-argument-type] +ERROR homeassistant/components/ssdp/server.py:86:5-21: Class member `HassUpnpServiceDevice.EMBEDDED_DEVICES` overrides parent class `UpnpServerDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ssdp/server.py:87:5-13: Class member `HassUpnpServiceDevice.SERVICES` overrides parent class `UpnpServerDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ssdp/websocket_api.py:69:78-81: Argument `HassJob[[info: SsdpServiceInfo, change: SsdpChange], None]` is not assignable to parameter `callback` with type `HassJob[[SsdpServiceInfo, SsdpChange], Coroutine[Any, Any, None] | None]` in function `homeassistant.components.ssdp.scanner.Scanner.async_register_callback` [bad-argument-type] +ERROR homeassistant/components/starline/account.py:104:49-66: Argument `BoundMethod[Self@StarlineAccount, (self: Self@StarlineAccount) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/starline/account.py:108:49-70: Argument `BoundMethod[Self@StarlineAccount, (self: Self@StarlineAccount) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/starline/binary_sensor.py:21:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:22:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:26:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:30:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:31:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:47:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:50:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:52:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:55:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:57:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:60:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:62:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:65:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:67:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/binary_sensor.py:100:14-32: Class member `StarlineSensor.entity_description` overrides parent class `StarlineEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starline/button.py:16:9-12: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/button.py:17:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/button.py:20:9-12: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/button.py:21:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/button.py:22:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/button.py:26:13-16: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/button.py:27:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/button.py:28:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/button.py:29:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/button.py:54:5-23: Class member `StarlineButton.entity_description` overrides parent class `StarlineEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starline/config_flow.py:194:68-196:14: Unpacked argument `tuple[str | None, str | None]` is not assignable to parameter `*args` with type `tuple[str, str]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/starline/config_flow.py:197:69-199:14: Unpacked argument `tuple[str | None, str | None, str]` is not assignable to parameter `*args` with type `tuple[str, str, str]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/starline/config_flow.py:210:65-218:14: Unpacked argument `tuple[str, str | None, str | None, str | None, str | None, str | None]` is not assignable to parameter `*args` with type `tuple[str, str, str, str, str, str]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/starline/config_flow.py:246:51-248:10: Unpacked argument `tuple[None]` is not assignable to parameter `*args` with type `tuple[str]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/starline/sensor.py:30:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:31:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:49:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:56:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:62:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:63:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:68:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:71:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:75:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:82:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/sensor.py:118:14-32: Class member `StarlineSensor.entity_description` overrides parent class `StarlineEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starline/switch.py:18:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/switch.py:19:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/switch.py:22:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/switch.py:23:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/switch.py:26:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/switch.py:27:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/switch.py:30:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/switch.py:31:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starline/switch.py:66:14-32: Class member `StarlineSwitch.entity_description` overrides parent class `StarlineEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starlingbank/sensor.py:9:1-41: Could not find import of `starlingbank` [missing-import] +ERROR homeassistant/components/starlink/binary_sensor.py:43:5-23: Class member `StarlinkBinarySensorEntity.entity_description` overrides parent class `StarlinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starlink/binary_sensor.py:43:5-23: Class member `StarlinkBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starlink/binary_sensor.py:53:9-12: Unexpected keyword argument `key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:58:9-12: Unexpected keyword argument `key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:63:9-12: Unexpected keyword argument `key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:66:9-24: Unexpected keyword argument `entity_category` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:70:9-12: Unexpected keyword argument `key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:72:9-24: Unexpected keyword argument `entity_category` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:76:9-12: Unexpected keyword argument `key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:78:9-24: Unexpected keyword argument `entity_category` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:82:9-12: Unexpected keyword argument `key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:85:9-24: Unexpected keyword argument `entity_category` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:89:9-12: Unexpected keyword argument `key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:92:9-24: Unexpected keyword argument `entity_category` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:96:9-12: Unexpected keyword argument `key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:99:9-24: Unexpected keyword argument `entity_category` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:103:9-12: Unexpected keyword argument `key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:104:9-24: Unexpected keyword argument `translation_key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:106:9-24: Unexpected keyword argument `entity_category` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:110:9-12: Unexpected keyword argument `key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:113:9-24: Unexpected keyword argument `entity_category` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/binary_sensor.py:117:9-12: Unexpected keyword argument `key` in function `StarlinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/button.py:43:5-23: Class member `StarlinkButtonEntity.entity_description` overrides parent class `StarlinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starlink/button.py:43:5-23: Class member `StarlinkButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starlink/button.py:52:9-12: Unexpected keyword argument `key` in function `StarlinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/button.py:54:9-24: Unexpected keyword argument `entity_category` in function `StarlinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/coordinator.py:56:5-17: Class member `StarlinkUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starlink/coordinator.py:84:36-56: `int` is not assignable to attribute `history_stats_start` with type `None` [bad-assignment] +ERROR homeassistant/components/starlink/coordinator.py:92:63-86: Argument `BoundMethod[Self@StarlinkUpdateCoordinator, (self: Self@StarlinkUpdateCoordinator) -> StarlinkData]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/starlink/device_tracker.py:42:9-12: Unexpected keyword argument `key` in function `StarlinkDeviceTrackerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/device_tracker.py:43:9-24: Unexpected keyword argument `translation_key` in function `StarlinkDeviceTrackerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/device_tracker.py:44:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `StarlinkDeviceTrackerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/device_tracker.py:45:21-59: Argument `(data: StarlinkData) -> float | None` is not assignable to parameter `latitude_fn` with type `(StarlinkData) -> float` in function `StarlinkDeviceTrackerEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/starlink/device_tracker.py:46:22-61: Argument `(data: StarlinkData) -> float | None` is not assignable to parameter `longitude_fn` with type `(StarlinkData) -> float` in function `StarlinkDeviceTrackerEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/starlink/device_tracker.py:47:21-59: Argument `(data: StarlinkData) -> float | None` is not assignable to parameter `altitude_fn` with type `(StarlinkData) -> float` in function `StarlinkDeviceTrackerEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/starlink/device_tracker.py:55:5-23: Class member `StarlinkDeviceTrackerEntity.entity_description` overrides parent class `StarlinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starlink/device_tracker.py:55:5-23: Class member `StarlinkDeviceTrackerEntity.entity_description` overrides parent class `TrackerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starlink/sensor.py:59:5-23: Class member `StarlinkSensorEntity.entity_description` overrides parent class `StarlinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starlink/sensor.py:59:5-23: Class member `StarlinkSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starlink/sensor.py:70:5-23: Class member `StarlinkAccumulationSensor._attr_native_value` overrides parent class `StarlinkSensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starlink/sensor.py:70:5-23: Class member `StarlinkAccumulationSensor._attr_native_value` overrides parent class `RestoreSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starlink/sensor.py:96:9-12: Unexpected keyword argument `key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:105:9-12: Unexpected keyword argument `key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:108:9-24: Unexpected keyword argument `entity_category` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:110:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:116:9-12: Unexpected keyword argument `key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:117:9-24: Unexpected keyword argument `translation_key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:119:9-24: Unexpected keyword argument `entity_category` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:121:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:127:9-12: Unexpected keyword argument `key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:138:9-12: Unexpected keyword argument `key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:139:9-24: Unexpected keyword argument `translation_key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:149:9-12: Unexpected keyword argument `key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:150:9-24: Unexpected keyword argument `translation_key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:152:9-24: Unexpected keyword argument `entity_category` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:159:9-12: Unexpected keyword argument `key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:167:9-12: Unexpected keyword argument `key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:176:9-12: Unexpected keyword argument `key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:185:9-12: Unexpected keyword argument `key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:186:9-24: Unexpected keyword argument `translation_key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:196:9-12: Unexpected keyword argument `key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/sensor.py:197:9-24: Unexpected keyword argument `translation_key` in function `StarlinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/switch.py:45:5-23: Class member `StarlinkSwitchEntity.entity_description` overrides parent class `StarlinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starlink/switch.py:45:5-23: Class member `StarlinkSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starlink/switch.py:63:9-12: Unexpected keyword argument `key` in function `StarlinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/switch.py:64:9-24: Unexpected keyword argument `translation_key` in function `StarlinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/switch.py:71:9-12: Unexpected keyword argument `key` in function `StarlinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/switch.py:72:9-24: Unexpected keyword argument `translation_key` in function `StarlinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/time.py:43:5-23: Class member `StarlinkTimeEntity.entity_description` overrides parent class `StarlinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starlink/time.py:43:5-23: Class member `StarlinkTimeEntity.entity_description` overrides parent class `TimeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/starlink/time.py:89:9-12: Unexpected keyword argument `key` in function `StarlinkTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/time.py:90:9-24: Unexpected keyword argument `translation_key` in function `StarlinkTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/time.py:98:9-12: Unexpected keyword argument `key` in function `StarlinkTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/starlink/time.py:99:9-24: Unexpected keyword argument `translation_key` in function `StarlinkTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:44:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:45:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:47:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:50:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:51:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:54:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:58:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:61:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:64:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:65:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:68:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:71:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:72:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:75:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:78:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:79:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:82:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:85:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:86:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:89:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:92:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:93:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:96:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:99:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:100:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:103:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:106:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:107:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:110:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:113:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:114:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:117:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:120:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:121:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/startca/sensor.py:124:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/statistics/config_flow.py:198:73-200:10: No matching overload found for function `dict.get` called with arguments: (_HandlerT) [no-matching-overload] +ERROR homeassistant/components/statistics/config_flow.py:205:60-82: Argument `_HandlerT` is not assignable to parameter `entry_id` with type `str` in function `homeassistant.config_entries.ConfigEntries.async_get_entry` [bad-argument-type] +ERROR homeassistant/components/statistics/config_flow.py:211:60-82: Argument `_HandlerT` is not assignable to parameter `entry_id` with type `str` in function `homeassistant.config_entries.ConfigEntries.async_get_entry` [bad-argument-type] +ERROR homeassistant/components/statistics/sensor.py:674:14-24: Class member `StatisticsSensor._attr_name` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/steam_online/config_flow.py:41:9-31: Class member `SteamFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/steam_online/config_flow.py:76:27-31: `name` may be uninitialized [unbound-name] +ERROR homeassistant/components/steam_online/config_flow.py:78:72-76: `name` may be uninitialized [unbound-name] +ERROR homeassistant/components/steam_online/config_flow.py:154:68-85: Argument `BoundMethod[Self@SteamOptionsFlowHandler, (self: Self@SteamOptionsFlowHandler) -> list[dict[str, int | str]]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/steam_online/coordinator.py:26:5-17: Class member `SteamDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/steam_online/coordinator.py:38:44-48: `None` is not assignable to attribute `player_interface` with type `_interface_method` [bad-assignment] +ERROR homeassistant/components/steam_online/coordinator.py:39:42-46: `None` is not assignable to attribute `user_interface` with type `_interface_method` [bad-assignment] +ERROR homeassistant/components/steam_online/coordinator.py:51:23-58: Object of class `_interface_method` has no attribute `GetOwnedGames` [missing-attribute] +ERROR homeassistant/components/steam_online/coordinator.py:57:20-58: Object of class `_interface_method` has no attribute `GetPlayerSummaries` [missing-attribute] +ERROR homeassistant/components/steam_online/coordinator.py:64:20-55: Object of class `_interface_method` has no attribute `GetSteamLevel` [missing-attribute] +ERROR homeassistant/components/steam_online/coordinator.py:71:59-71: Argument `BoundMethod[Self@SteamDataUpdateCoordinator, (self: Self@SteamDataUpdateCoordinator) -> dict[str, dict[str, int | str]]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/steam_online/sensor.py:47:14-32: Class member `SteamSensor.entity_description` overrides parent class `SteamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/steam_online/sensor.py:48:13-16: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/steam_online/sensor.py:49:13-17: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/steam_online/sensor.py:50:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/steamist/__init__.py:71:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/steamist/coordinator.py:21:5-17: Class member `SteamistDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/steamist/sensor.py:43:9-12: Unexpected keyword argument `key` in function `SteamistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/steamist/sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `SteamistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/steamist/sensor.py:49:9-12: Unexpected keyword argument `key` in function `SteamistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/steamist/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `SteamistSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/steamist/sensor.py:78:5-23: Class member `SteamistSensorEntity.entity_description` overrides parent class `SteamistEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/steamist/sensor.py:78:5-23: Class member `SteamistSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/steamist/switch.py:17:5-8: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/steamist/switch.py:18:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/steamist/switch.py:34:7-27: Field `entity_description` is declared `EntityDescription` in ancestor `class SteamistEntity: ... +`, which is not assignable to the type `SwitchEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/stiebel_eltron/__init__.py:131:49-62: Argument `BoundMethod[StiebelEltronAPI, (self: StiebelEltronAPI) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/stiebel_eltron/climate.py:169:36-44: Argument `str | None` is not assignable to parameter `mode` with type `str` in function `pystiebeleltron.pystiebeleltron.StiebelEltronAPI.set_operation` [bad-argument-type] +ERROR homeassistant/components/stiebel_eltron/climate.py:182:36-44: Argument `str | None` is not assignable to parameter `mode` with type `str` in function `pystiebeleltron.pystiebeleltron.StiebelEltronAPI.set_operation` [bad-argument-type] +ERROR homeassistant/components/stiebel_eltron/config_flow.py:38:66-79: Argument `BoundMethod[StiebelEltronAPI, (self: StiebelEltronAPI) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/stiebel_eltron/config_flow.py:68:62-75: Argument `BoundMethod[StiebelEltronAPI, (self: StiebelEltronAPI) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/stookwijzer/coordinator.py:23:5-17: Class member `StookwijzerCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/stookwijzer/sensor.py:35:9-12: Unexpected keyword argument `key` in function `StookwijzerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/stookwijzer/sensor.py:44:9-12: Unexpected keyword argument `key` in function `StookwijzerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/stookwijzer/sensor.py:50:9-12: Unexpected keyword argument `key` in function `StookwijzerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/stookwijzer/sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `StookwijzerSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/stookwijzer/sensor.py:73:5-23: Class member `StookwijzerSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/stookwijzer/sensor.py:73:5-23: Class member `StookwijzerSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/stream/__init__.py:392:16-24: `provider` may be uninitialized [unbound-name] +ERROR homeassistant/components/stream/__init__.py:397:27-40: Cannot index into `dict[str, StreamOutput]` [bad-index] +ERROR homeassistant/components/stream/__init__.py:398:31-44: Cannot delete item in `dict[str, StreamOutput]` [unsupported-operation] +ERROR homeassistant/components/stream/core.py:462:46-61: Argument `BoundMethod[Event, (self: Event) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/components/stream/fmp4utils.py:28:11-12: Integer literal used as condition. It's equivalent to `True` [redundant-condition] +ERROR homeassistant/components/stream/fmp4utils.py:144:23-28: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR homeassistant/components/stream/fmp4utils.py:153:11-12: Integer literal used as condition. It's equivalent to `True` [redundant-condition] +ERROR homeassistant/components/stream/hls.py:99:46-71: Argument `BoundMethod[Self@HlsStreamOutput, (self: Self@HlsStreamOutput) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/components/stream/worker.py:334:27-338:10: No matching overload found for function `min` called with arguments: (int, float) [no-matching-overload] +ERROR homeassistant/components/stream/worker.py:382:60-76: `segment_duration` may be uninitialized [unbound-name] +ERROR homeassistant/components/streamlabswater/__init__.py:49:45-54: Argument `Any | None` is not assignable to parameter `home_or_away` with type `str` in function `streamlabswater.streamlabswater.StreamlabsClient.update_location` [bad-argument-type] +ERROR homeassistant/components/streamlabswater/__init__.py:63:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/streamlabswater/config_flow.py:21:50-70: Argument `BoundMethod[StreamlabsClient, (self: StreamlabsClient) -> dict[Unknown, Unknown]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/streamlabswater/coordinator.py:29:5-17: Class member `StreamlabsCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/streamlabswater/coordinator.py:48:55-72: Argument `BoundMethod[Self@StreamlabsCoordinator, (self: Self@StreamlabsCoordinator) -> dict[str, StreamlabsData]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/streamlabswater/sensor.py:34:9-12: Unexpected keyword argument `key` in function `StreamlabsWaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/streamlabswater/sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `StreamlabsWaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/streamlabswater/sensor.py:42:9-12: Unexpected keyword argument `key` in function `StreamlabsWaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/streamlabswater/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `StreamlabsWaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/streamlabswater/sensor.py:50:9-12: Unexpected keyword argument `key` in function `StreamlabsWaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/streamlabswater/sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `StreamlabsWaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/streamlabswater/sensor.py:78:5-23: Class member `StreamLabsSensor.entity_description` overrides parent class `StreamlabsWaterEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/streamlabswater/sensor.py:78:5-23: Class member `StreamLabsSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/subaru/__init__.py:60:13-17: Argument `None` is not assignable to parameter `device_name` with type `str` in function `subarulink.controller.Controller.__init__` [bad-argument-type] +ERROR homeassistant/components/subaru/config_flow.py:105:9-31: Class member `SubaruConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/subaru/config_flow.py:128:17-21: Argument `None` is not assignable to parameter `pin` with type `str` in function `subarulink.controller.Controller.__init__` [bad-argument-type] +ERROR homeassistant/components/subaru/device_tracker.py:58:14-31: Class member `SubaruDeviceTracker._attr_device_info` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/subaru/sensor.py:54:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:65:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:71:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:78:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:85:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:92:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:99:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:110:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:120:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:127:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:134:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:135:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/subaru/sensor.py:199:14-32: Class member `SubaruSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/subaru/sensor.py:262:67-70: Cannot index into `dict[str, str]` [bad-index] +ERROR homeassistant/components/subaru/sensor.py:265:75-78: Cannot index into `dict[str, str]` [bad-index] +ERROR homeassistant/components/suez_water/coordinator.py:63:5-17: Class member `SuezWaterCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/suez_water/sensor.py:36:9-12: Unexpected keyword argument `key` in function `SuezWaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/suez_water/sensor.py:37:9-24: Unexpected keyword argument `translation_key` in function `SuezWaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/suez_water/sensor.py:44:9-12: Unexpected keyword argument `key` in function `SuezWaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/suez_water/sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `SuezWaterSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/suez_water/sensor.py:72:5-23: Class member `SuezWaterSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/suez_water/sensor.py:72:5-23: Class member `SuezWaterSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sun/__init__.py:68:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/sun/binary_sensor.py:35:9-12: Unexpected keyword argument `key` in function `SunBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/binary_sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `SunBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/binary_sensor.py:38:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SunBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/binary_sensor.py:67:5-23: Class member `SunBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sun/sensor.py:44:9-12: Unexpected keyword argument `key` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:51:9-12: Unexpected keyword argument `key` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:58:9-12: Unexpected keyword argument `key` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:65:9-12: Unexpected keyword argument `key` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:72:9-12: Unexpected keyword argument `key` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:79:9-12: Unexpected keyword argument `key` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:81:9-24: Unexpected keyword argument `translation_key` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:86:9-12: Unexpected keyword argument `key` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:90:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:95:9-12: Unexpected keyword argument `key` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:99:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:104:9-12: Unexpected keyword argument `key` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:107:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SunSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/sun/sensor.py:133:5-23: Class member `SunSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/sunricher_dali/__init__.py:52:21-69: Unpacked argument `tuple[HomeAssistant, str, bool]` is not assignable to parameter `*args` with type `tuple[HomeAssistant, SignalType[*Unknown], *Unknown]` in function `homeassistant.core.HomeAssistant.add_job` [bad-argument-type] +ERROR homeassistant/components/sunricher_dali/__init__.py:88:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/sunricher_dali/light.py:48:21-66: Unpacked argument `tuple[HomeAssistant, str, TypedDict[LightStatus]]` is not assignable to parameter `*args` with type `tuple[HomeAssistant, SignalType[*Unknown], *Unknown]` in function `homeassistant.core.HomeAssistant.add_job` [bad-argument-type] +ERROR homeassistant/components/supla/__init__.py:9:1-34: Could not find import of `asyncpysupla` [missing-import] +ERROR homeassistant/components/supla/cover.py:101:5-23: Class member `SuplaDoorEntity._attr_device_class` overrides parent class `SuplaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/surepetcare/binary_sensor.py:83:14-25: Class member `Hub._attr_is_on` overrides parent class `SurePetcareBinarySensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/surepetcare/coordinator.py:36:5-17: Class member `SurePetcareDataCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/surepetcare/sensor.py:51:5-23: Class member `SureBattery._attr_device_class` overrides parent class `SurePetcareEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/surepetcare/sensor.py:91:5-23: Class member `Felaqua._attr_device_class` overrides parent class `SurePetcareEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/swiss_hydrological_data/sensor.py:8:1-42: Could not find import of `swisshydrodata` [missing-import] +ERROR homeassistant/components/swiss_hydrological_data/sensor.py:106:19-48: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/swiss_public_transport/coordinator.py:59:5-17: Class member `SwissPublicTransportDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/swiss_public_transport/coordinator.py:114:23-47: Argument `None` is not assignable to parameter `start` with type `str` in function `DataConnection.__init__` [bad-argument-type] +ERROR homeassistant/components/swiss_public_transport/coordinator.py:115:29-51: Argument `None` is not assignable to parameter `destination` with type `str` in function `DataConnection.__init__` [bad-argument-type] +ERROR homeassistant/components/swiss_public_transport/sensor.py:49:13-16: Unexpected keyword argument `key` in function `SwissPublicTransportSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/swiss_public_transport/sensor.py:50:13-28: Unexpected keyword argument `translation_key` in function `SwissPublicTransportSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/swiss_public_transport/sensor.py:58:9-12: Unexpected keyword argument `key` in function `SwissPublicTransportSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/swiss_public_transport/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `SwissPublicTransportSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/swiss_public_transport/sensor.py:66:9-12: Unexpected keyword argument `key` in function `SwissPublicTransportSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/swiss_public_transport/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `SwissPublicTransportSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/swiss_public_transport/sensor.py:71:9-12: Unexpected keyword argument `key` in function `SwissPublicTransportSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/swiss_public_transport/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `SwissPublicTransportSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/swiss_public_transport/sensor.py:76:9-12: Unexpected keyword argument `key` in function `SwissPublicTransportSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/swiss_public_transport/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `SwissPublicTransportSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/swiss_public_transport/sensor.py:83:9-12: Unexpected keyword argument `key` in function `SwissPublicTransportSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/swiss_public_transport/sensor.py:84:9-24: Unexpected keyword argument `translation_key` in function `SwissPublicTransportSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/swiss_public_transport/sensor.py:112:5-23: Class member `SwissPublicTransportSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/swiss_public_transport/sensor.py:112:5-23: Class member `SwissPublicTransportSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/swisscom/device_tracker.py:78:29-43: `list[Unknown]` is not assignable to attribute `last_results` with type `dict[Unknown, Unknown]` [bad-assignment] +ERROR homeassistant/components/switch/__init__.py:90:5-17: Class member `SwitchEntityDescription.device_class` overrides parent class `ToggleEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switch/__init__.py:101:5-23: Class member `SwitchEntity.entity_description` overrides parent class `ToggleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switch/__init__.py:102:5-23: Class member `SwitchEntity._attr_device_class` overrides parent class `ToggleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switch/reproduce_state.py:56:17-24: `service` may be uninitialized [unbound-name] +ERROR homeassistant/components/switch_as_x/cover.py:57:5-29: Class member `CoverSwitch._attr_supported_features` overrides parent class `BaseInvertableEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switch_as_x/fan.py:48:5-29: Class member `FanSwitch._attr_supported_features` overrides parent class `BaseToggleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switch_as_x/siren.py:46:5-29: Class member `SirenSwitch._attr_supported_features` overrides parent class `BaseToggleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switch_as_x/valve.py:57:5-29: Class member `ValveSwitch._attr_supported_features` overrides parent class `BaseInvertableEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbee/__init__.py:82:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/switchbee/climate.py:109:14-38: Class member `SwitchBeeClimateEntity._attr_supported_features` overrides parent class `SwitchBeeDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbee/climate.py:127:14-29: Class member `SwitchBeeClimateEntity._attr_hvac_mode` overrides parent class `ClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbee/coordinator.py:26:5-17: Class member `SwitchBeeCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbee/cover.py:48:5-23: Class member `SwitchBeeSomfyEntity._attr_device_class` overrides parent class `SwitchBeeDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbee/cover.py:49:5-29: Class member `SwitchBeeSomfyEntity._attr_supported_features` overrides parent class `SwitchBeeDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbee/cover.py:79:5-23: Class member `SwitchBeeCoverEntity._attr_device_class` overrides parent class `SwitchBeeDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbee/cover.py:80:5-29: Class member `SwitchBeeCoverEntity._attr_supported_features` overrides parent class `SwitchBeeDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/__init__.py:195:24-51: Argument `Any | None` is not assignable to parameter `key_id` with type `str` in function `switchbot.devices.air_purifier.SwitchbotAirPurifier.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/__init__.py:195:24-51: Argument `Any | None` is not assignable to parameter `key_id` with type `str` in function `switchbot.devices.evaporative_humidifier.SwitchbotEvaporativeHumidifier.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/__init__.py:195:24-51: Argument `Any | None` is not assignable to parameter `key_id` with type `str` in function `switchbot.devices.relay_switch.SwitchbotGarageDoorOpener.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/__init__.py:195:24-51: Argument `Any | None` is not assignable to parameter `key_id` with type `str` in function `switchbot.devices.lock.SwitchbotLock.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/__init__.py:195:24-51: Argument `Any | None` is not assignable to parameter `key_id` with type `str` in function `switchbot.devices.relay_switch.SwitchbotRelaySwitch.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/__init__.py:195:24-51: Argument `Any | None` is not assignable to parameter `key_id` with type `str` in function `switchbot.devices.relay_switch.SwitchbotRelaySwitch2PM.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/__init__.py:195:24-51: Argument `Any | None` is not assignable to parameter `key_id` with type `str` in function `switchbot.devices.light_strip.SwitchbotRgbicLight.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/__init__.py:195:24-51: Argument `Any | None` is not assignable to parameter `key_id` with type `str` in function `switchbot.devices.smart_thermostat_radiator.SwitchbotSmartThermostatRadiator.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/__init__.py:195:24-51: Argument `Any | None` is not assignable to parameter `key_id` with type `str` in function `switchbot.devices.light_strip.SwitchbotStripLight3.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/__init__.py:196:32-67: Argument `Any | None` is not assignable to parameter `encryption_key` with type `str` in function `switchbot.devices.air_purifier.SwitchbotAirPurifier.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/__init__.py:196:32-67: Argument `Any | None` is not assignable to parameter `encryption_key` with type `str` in function `switchbot.devices.evaporative_humidifier.SwitchbotEvaporativeHumidifier.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/__init__.py:196:32-67: Argument `Any | None` is not assignable to parameter `encryption_key` with type `str` in function `switchbot.devices.relay_switch.SwitchbotGarageDoorOpener.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/__init__.py:196:32-67: Argument `Any | None` is not assignable to parameter `encryption_key` with type `str` in function `switchbot.devices.lock.SwitchbotLock.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/__init__.py:196:32-67: Argument `Any | None` is not assignable to parameter `encryption_key` with type `str` in function `switchbot.devices.relay_switch.SwitchbotRelaySwitch.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/__init__.py:196:32-67: Argument `Any | None` is not assignable to parameter `encryption_key` with type `str` in function `switchbot.devices.relay_switch.SwitchbotRelaySwitch2PM.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/__init__.py:196:32-67: Argument `Any | None` is not assignable to parameter `encryption_key` with type `str` in function `switchbot.devices.light_strip.SwitchbotRgbicLight.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/__init__.py:196:32-67: Argument `Any | None` is not assignable to parameter `encryption_key` with type `str` in function `switchbot.devices.smart_thermostat_radiator.SwitchbotSmartThermostatRadiator.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/__init__.py:196:32-67: Argument `Any | None` is not assignable to parameter `encryption_key` with type `str` in function `switchbot.devices.light_strip.SwitchbotStripLight3.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/__init__.py:207:21-211:10: Missing argument `key_id` in function `switchbot.devices.air_purifier.SwitchbotAirPurifier.__init__` [missing-argument] +ERROR homeassistant/components/switchbot/__init__.py:207:21-211:10: Missing argument `encryption_key` in function `switchbot.devices.air_purifier.SwitchbotAirPurifier.__init__` [missing-argument] +ERROR homeassistant/components/switchbot/__init__.py:207:21-211:10: Missing argument `key_id` in function `switchbot.devices.evaporative_humidifier.SwitchbotEvaporativeHumidifier.__init__` [missing-argument] +ERROR homeassistant/components/switchbot/__init__.py:207:21-211:10: Missing argument `encryption_key` in function `switchbot.devices.evaporative_humidifier.SwitchbotEvaporativeHumidifier.__init__` [missing-argument] +ERROR homeassistant/components/switchbot/__init__.py:207:21-211:10: Missing argument `key_id` in function `switchbot.devices.relay_switch.SwitchbotGarageDoorOpener.__init__` [missing-argument] +ERROR homeassistant/components/switchbot/__init__.py:207:21-211:10: Missing argument `encryption_key` in function `switchbot.devices.relay_switch.SwitchbotGarageDoorOpener.__init__` [missing-argument] +ERROR homeassistant/components/switchbot/__init__.py:207:21-211:10: Missing argument `key_id` in function `switchbot.devices.lock.SwitchbotLock.__init__` [missing-argument] +ERROR homeassistant/components/switchbot/__init__.py:207:21-211:10: Missing argument `encryption_key` in function `switchbot.devices.lock.SwitchbotLock.__init__` [missing-argument] +ERROR homeassistant/components/switchbot/__init__.py:207:21-211:10: Missing argument `key_id` in function `switchbot.devices.relay_switch.SwitchbotRelaySwitch.__init__` [missing-argument] +ERROR homeassistant/components/switchbot/__init__.py:207:21-211:10: Missing argument `encryption_key` in function `switchbot.devices.relay_switch.SwitchbotRelaySwitch.__init__` [missing-argument] +ERROR homeassistant/components/switchbot/__init__.py:207:21-211:10: Missing argument `key_id` in function `switchbot.devices.relay_switch.SwitchbotRelaySwitch2PM.__init__` [missing-argument] +ERROR homeassistant/components/switchbot/__init__.py:207:21-211:10: Missing argument `encryption_key` in function `switchbot.devices.relay_switch.SwitchbotRelaySwitch2PM.__init__` [missing-argument] +ERROR homeassistant/components/switchbot/__init__.py:207:21-211:10: Missing argument `key_id` in function `switchbot.devices.light_strip.SwitchbotRgbicLight.__init__` [missing-argument] +ERROR homeassistant/components/switchbot/__init__.py:207:21-211:10: Missing argument `encryption_key` in function `switchbot.devices.light_strip.SwitchbotRgbicLight.__init__` [missing-argument] +ERROR homeassistant/components/switchbot/__init__.py:207:21-211:10: Missing argument `key_id` in function `switchbot.devices.smart_thermostat_radiator.SwitchbotSmartThermostatRadiator.__init__` [missing-argument] +ERROR homeassistant/components/switchbot/__init__.py:207:21-211:10: Missing argument `encryption_key` in function `switchbot.devices.smart_thermostat_radiator.SwitchbotSmartThermostatRadiator.__init__` [missing-argument] +ERROR homeassistant/components/switchbot/__init__.py:207:21-211:10: Missing argument `key_id` in function `switchbot.devices.light_strip.SwitchbotStripLight3.__init__` [missing-argument] +ERROR homeassistant/components/switchbot/__init__.py:207:21-211:10: Missing argument `encryption_key` in function `switchbot.devices.light_strip.SwitchbotStripLight3.__init__` [missing-argument] +ERROR homeassistant/components/switchbot/__init__.py:217:9-15: Argument `Switchbot | SwitchbotAirPurifier | SwitchbotBlindTilt | SwitchbotBulb | SwitchbotCeilingLight | SwitchbotCurtain | SwitchbotDevice | SwitchbotEvaporativeHumidifier | SwitchbotFan | SwitchbotGarageDoorOpener | SwitchbotHumidifier | SwitchbotLightStrip | SwitchbotLock | SwitchbotPlugMini | SwitchbotRelaySwitch | SwitchbotRelaySwitch2PM | SwitchbotRgbicLight | SwitchbotRollerShade | SwitchbotSmartThermostatRadiator | SwitchbotStripLight3 | SwitchbotVacuum` is not assignable to parameter `device` with type `SwitchbotDevice` in function `homeassistant.components.switchbot.coordinator.SwitchbotDataUpdateCoordinator.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot/binary_sensor.py:21:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:22:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:23:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:26:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:30:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:31:9-13: Unexpected keyword argument `name` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:38:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:46:9-13: Unexpected keyword argument `name` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:50:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:52:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:56:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:58:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:62:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:63:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:64:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:67:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:68:9-13: Unexpected keyword argument `name` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/binary_sensor.py:100:14-32: Class member `SwitchBotBinarySensor.entity_description` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/climate.py:61:5-29: Class member `SwitchBotClimateEntity._attr_supported_features` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/climate.py:75:16-44: Object of class `SwitchbotDevice` has no attribute `min_temperature` [missing-attribute] +ERROR homeassistant/components/switchbot/climate.py:80:16-44: Object of class `SwitchbotDevice` has no attribute `max_temperature` [missing-attribute] +ERROR homeassistant/components/switchbot/climate.py:85:16-41: Object of class `SwitchbotDevice` has no attribute `preset_modes` [missing-attribute] +ERROR homeassistant/components/switchbot/climate.py:90:16-40: Object of class `SwitchbotDevice` has no attribute `preset_mode` [missing-attribute] +ERROR homeassistant/components/switchbot/climate.py:96:13-35: Object of class `SwitchbotDevice` has no attribute `hvac_mode` [missing-attribute] +ERROR homeassistant/components/switchbot/climate.py:104:25-48: Object of class `SwitchbotDevice` has no attribute `hvac_modes` [missing-attribute] +ERROR homeassistant/components/switchbot/climate.py:111:13-37: Object of class `SwitchbotDevice` has no attribute `hvac_action` [missing-attribute] +ERROR homeassistant/components/switchbot/climate.py:117:16-48: Object of class `SwitchbotDevice` has no attribute `current_temperature` [missing-attribute] +ERROR homeassistant/components/switchbot/climate.py:122:16-47: Object of class `SwitchbotDevice` has no attribute `target_temperature` [missing-attribute] +ERROR homeassistant/components/switchbot/climate.py:127:22-48: Object of class `SwitchbotDevice` has no attribute `set_hvac_mode` [missing-attribute] +ERROR homeassistant/components/switchbot/climate.py:134:22-50: Object of class `SwitchbotDevice` has no attribute `set_preset_mode` [missing-attribute] +ERROR homeassistant/components/switchbot/climate.py:140:22-57: Object of class `SwitchbotDevice` has no attribute `set_target_temperature` [missing-attribute] +ERROR homeassistant/components/switchbot/config_flow.py:83:9-31: Class member `SwitchbotConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/const.py:144:5-162:2: `dict[SwitchbotModel, type[SwitchbotAirPurifier] | type[SwitchbotEvaporativeHumidifier] | type[SwitchbotLock] | type[SwitchbotRelaySwitch] | type[SwitchbotRelaySwitch2PM] | type[SwitchbotRgbicLight] | type[SwitchbotSmartThermostatRadiator] | type[SwitchbotStripLight3]]` is not assignable to `dict[SwitchbotModel, SwitchbotEncryptedDevice]` [bad-assignment] +ERROR homeassistant/components/switchbot/cover.py:51:5-12: Class member `SwitchBotCurtainEntity._device` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/cover.py:52:5-23: Class member `SwitchBotCurtainEntity._attr_device_class` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/cover.py:52:5-23: Class member `SwitchBotCurtainEntity._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/cover.py:53:5-29: Class member `SwitchBotCurtainEntity._attr_supported_features` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/cover.py:53:5-29: Class member `SwitchBotCurtainEntity._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/cover.py:117:71-79: Argument `Any | None` is not assignable to parameter `position` with type `int` in function `switchbot.devices.curtain.SwitchbotCurtain.set_position` [bad-argument-type] +ERROR homeassistant/components/switchbot/cover.py:136:5-12: Class member `SwitchBotBlindTiltEntity._device` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/cover.py:137:5-23: Class member `SwitchBotBlindTiltEntity._attr_device_class` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/cover.py:137:5-23: Class member `SwitchBotBlindTiltEntity._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/cover.py:138:5-29: Class member `SwitchBotBlindTiltEntity._attr_supported_features` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/cover.py:138:5-29: Class member `SwitchBotBlindTiltEntity._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/cover.py:200:71-79: Argument `Any | None` is not assignable to parameter `position` with type `int` in function `switchbot.devices.base_cover.SwitchbotBaseCover.set_position` [bad-argument-type] +ERROR homeassistant/components/switchbot/cover.py:219:5-12: Class member `SwitchBotRollerShadeEntity._device` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/cover.py:220:5-23: Class member `SwitchBotRollerShadeEntity._attr_device_class` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/cover.py:220:5-23: Class member `SwitchBotRollerShadeEntity._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/cover.py:221:5-29: Class member `SwitchBotRollerShadeEntity._attr_supported_features` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/cover.py:221:5-29: Class member `SwitchBotRollerShadeEntity._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/cover.py:286:71-79: Argument `Any | None` is not assignable to parameter `position` with type `int` in function `switchbot.devices.roller_shade.SwitchbotRollerShade.set_position` [bad-argument-type] +ERROR homeassistant/components/switchbot/cover.py:305:5-12: Class member `SwitchbotGarageDoorOpenerEntity._device` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/cover.py:306:5-23: Class member `SwitchbotGarageDoorOpenerEntity._attr_device_class` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/cover.py:307:5-29: Class member `SwitchbotGarageDoorOpenerEntity._attr_supported_features` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/entity.py:121:5-12: Class member `SwitchbotSwitchedEntity._device` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/fan.py:39:5-12: Class member `SwitchBotFanEntity._device` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/fan.py:40:5-29: Class member `SwitchBotFanEntity._attr_supported_features` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/fan.py:40:5-29: Class member `SwitchBotFanEntity._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/fan.py:131:5-12: Class member `SwitchBotAirPurifierEntity._device` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/fan.py:132:5-29: Class member `SwitchBotAirPurifierEntity._attr_supported_features` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/humidifier.py:27:66-31:2: `dict[switchbot.const.evaporative_humidifier.HumidifierAction, homeassistant.components.humidifier.const.HumidifierAction]` is not assignable to `dict[int, homeassistant.components.humidifier.const.HumidifierAction]` [bad-assignment] +ERROR homeassistant/components/switchbot/humidifier.py:50:5-29: Class member `SwitchBotHumidifier._attr_supported_features` overrides parent class `SwitchbotSwitchedEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/humidifier.py:51:5-23: Class member `SwitchBotHumidifier._attr_device_class` overrides parent class `SwitchbotSwitchedEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/humidifier.py:53:5-12: Class member `SwitchBotHumidifier._device` overrides parent class `SwitchbotSwitchedEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/humidifier.py:92:5-12: Class member `SwitchBotEvaporativeHumidifier._device` overrides parent class `SwitchbotSwitchedEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/humidifier.py:93:5-23: Class member `SwitchBotEvaporativeHumidifier._attr_device_class` overrides parent class `SwitchbotSwitchedEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/humidifier.py:94:5-29: Class member `SwitchBotEvaporativeHumidifier._attr_supported_features` overrides parent class `SwitchbotSwitchedEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/humidifier.py:109:16-44: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/switchbot/light.py:47:5-12: Class member `SwitchbotLightEntity._device` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/light.py:64:64-88: Object of class `SwitchbotBaseLight` has no attribute `color_modes` [missing-attribute] +ERROR homeassistant/components/switchbot/light.py:74:38-68: `*` is not supported between `None` and `float` [unsupported-operation] +ERROR homeassistant/components/switchbot/light.py:106:16-31: Returned type `bool | None` is not assignable to declared return type `bool` [bad-return] +ERROR homeassistant/components/switchbot/lock.py:35:5-12: Class member `SwitchBotLock._device` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/lock.py:44:18-42: Class member `SwitchBotLock._attr_supported_features` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/sensor.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:45:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:46:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:49:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:54:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:55:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:62:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:65:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:71:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:76:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:82:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:88:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:94:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:100:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:106:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:112:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:113:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:118:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:124:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot/sensor.py:170:14-32: Class member `SwitchBotSensor.entity_description` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/switch.py:46:5-23: Class member `SwitchBotSwitch._attr_device_class` overrides parent class `SwitchbotSwitchedEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/switch.py:46:5-23: Class member `SwitchBotSwitch._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/switch.py:88:5-23: Class member `SwitchbotMultiChannelSwitch._attr_device_class` overrides parent class `SwitchbotSwitchedEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/switch.py:110:35-48: Expected 0 positional arguments, got 1 in function `switchbot.devices.bot.Switchbot.is_on` [bad-argument-count] +ERROR homeassistant/components/switchbot/switch.py:118:36-49: Expected 0 positional arguments, got 1 in function `switchbot.devices.bot.Switchbot.turn_on` [bad-argument-count] +ERROR homeassistant/components/switchbot/switch.py:127:37-50: Expected 0 positional arguments, got 1 in function `switchbot.devices.bot.Switchbot.turn_off` [bad-argument-count] +ERROR homeassistant/components/switchbot/vacuum.py:88:5-12: Class member `SwitchbotVacuumEntity._device` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot/vacuum.py:89:5-29: Class member `SwitchbotVacuumEntity._attr_supported_features` overrides parent class `SwitchbotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/__init__.py:330:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/switchbot_cloud/binary_sensor.py:35:5-8: Unexpected keyword argument `key` in function `SwitchBotCloudBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/binary_sensor.py:36:5-9: Unexpected keyword argument `name` in function `SwitchBotCloudBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/binary_sensor.py:37:5-20: Unexpected keyword argument `translation_key` in function `SwitchBotCloudBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/binary_sensor.py:39:5-20: Unexpected keyword argument `entity_category` in function `SwitchBotCloudBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/binary_sensor.py:44:5-8: Unexpected keyword argument `key` in function `SwitchBotCloudBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/binary_sensor.py:50:5-8: Unexpected keyword argument `key` in function `SwitchBotCloudBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/binary_sensor.py:60:5-8: Unexpected keyword argument `key` in function `SwitchBotCloudBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/binary_sensor.py:66:5-8: Unexpected keyword argument `key` in function `SwitchBotCloudBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/binary_sensor.py:72:5-8: Unexpected keyword argument `key` in function `SwitchBotCloudBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/binary_sensor.py:136:5-23: Class member `SwitchBotCloudBinarySensor.entity_description` overrides parent class `SwitchBotCloudEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/binary_sensor.py:136:5-23: Class member `SwitchBotCloudBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/climate.py:68:5-29: Class member `SwitchBotCloudAirConditioner._attr_supported_features` overrides parent class `SwitchBotCloudEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/climate.py:68:5-29: Class member `SwitchBotCloudAirConditioner._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/climate.py:124:45-126:14: No matching overload found for function `dict.get` called with arguments: (HVACMode | None, int) [no-matching-overload] +ERROR homeassistant/components/switchbot_cloud/climate.py:127:41-86: No matching overload found for function `dict.get` called with arguments: (Literal[HVACMode.AUTO, HVACMode.COOL, HVACMode.DRY, HVACMode.FAN_ONLY, HVACMode.HEAT, HVACMode.HEAT_COOL] | None, int) [no-matching-overload] +ERROR homeassistant/components/switchbot_cloud/climate.py:137:49-139:10: No matching overload found for function `dict.get` called with arguments: (str | None, int) [no-matching-overload] +ERROR homeassistant/components/switchbot_cloud/climate.py:141:25-42: No matching overload found for function `int.__new__` called with arguments: (type[int], float | None) [no-matching-overload] +ERROR homeassistant/components/switchbot_cloud/climate.py:180:40-49: Argument `Literal[HVACMode.AUTO, HVACMode.COOL, HVACMode.DRY, HVACMode.FAN_ONLY, HVACMode.HEAT, HVACMode.HEAT_COOL] | None` is not assignable to parameter `hvac_mode` with type `HVACMode` in function `SwitchBotCloudAirConditioner.async_set_hvac_mode` [bad-argument-type] +ERROR homeassistant/components/switchbot_cloud/coordinator.py:23:5-17: Class member `SwitchBotCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/coordinator.py:55:22-37: Class member `SwitchBotCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/coordinator.py:55:40-44: `None` is not assignable to attribute `update_interval` with type `(self: Self@SwitchBotCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/switchbot_cloud/coordinator.py:57:40-61: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@SwitchBotCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/switchbot_cloud/cover.py:64:5-29: Class member `SwitchBotCloudCoverCurtain._attr_supported_features` overrides parent class `SwitchBotCloudCover` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/cover.py:104:5-29: Class member `SwitchBotCloudCoverRollerShade._attr_supported_features` overrides parent class `SwitchBotCloudCover` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/cover.py:138:5-29: Class member `SwitchBotCloudCoverBlindTilt._attr_supported_features` overrides parent class `SwitchBotCloudCover` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/cover.py:192:5-29: Class member `SwitchBotCloudCoverGarageDoorOpener._attr_supported_features` overrides parent class `SwitchBotCloudCover` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/entity.py:50:37-55:10: `Commands` is not assignable to upper bound `CommonCommands` of type variable `T` [bad-specialization] +ERROR homeassistant/components/switchbot_cloud/entity.py:51:13-33: Argument `str | None` is not assignable to parameter `device_id` with type `str` in function `switchbot_api.SwitchBotAPI.send_command` [bad-argument-type] +ERROR homeassistant/components/switchbot_cloud/entity.py:54:13-23: Argument `dict[Unknown, Unknown] | int | str` is not assignable to parameter `parameters` with type `dict[Unknown, Unknown] | str` in function `switchbot_api.SwitchBotAPI.send_command` [bad-argument-type] +ERROR homeassistant/components/switchbot_cloud/fan.py:51:5-29: Class member `SwitchBotCloudFan._attr_supported_features` overrides parent class `SwitchBotCloudEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/fan.py:138:5-29: Class member `SwitchBotAirPurifierEntity._attr_supported_features` overrides parent class `SwitchBotCloudEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/humidifier.py:45:5-29: Class member `SwitchBotHumidifier._attr_supported_features` overrides parent class `SwitchBotCloudEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/humidifier.py:46:5-23: Class member `SwitchBotHumidifier._attr_device_class` overrides parent class `SwitchBotCloudEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/humidifier.py:106:5-29: Class member `SwitchBotEvaporativeHumidifier._attr_supported_features` overrides parent class `SwitchBotCloudEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/humidifier.py:107:5-23: Class member `SwitchBotEvaporativeHumidifier._attr_device_class` overrides parent class `SwitchBotCloudEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/lock.py:50:18-42: Class member `SwitchBotCloudLock._attr_supported_features` overrides parent class `SwitchBotCloudEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/sensor.py:60:5-8: Unexpected keyword argument `key` in function `SwitchbotCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/sensor.py:69:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/sensor.py:76:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/sensor.py:83:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/sensor.py:90:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/sensor.py:97:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/sensor.py:104:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/sensor.py:111:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/sensor.py:118:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/sensor.py:125:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/sensor.py:132:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/sensor.py:139:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/sensor.py:146:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/sensor.py:153:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/sensor.py:160:5-8: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/sensor.py:161:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switchbot_cloud/sensor.py:291:14-32: Class member `SwitchBotCloudSensor.entity_description` overrides parent class `SwitchBotCloudEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/sensor.py:343:38-44: Argument `Device | Remote` is not assignable to parameter `device` with type `Device` in function `SwitchBotCloudSensor.__init__` [bad-argument-type] +ERROR homeassistant/components/switchbot_cloud/switch.py:45:5-23: Class member `SwitchBotCloudSwitch._attr_device_class` overrides parent class `SwitchBotCloudEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchbot_cloud/vacuum.py:79:5-29: Class member `SwitchBotCloudVacuum._attr_supported_features` overrides parent class `SwitchBotCloudEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switcher_kis/button.py:37:9-12: Unexpected keyword argument `key` in function `SwitcherThermostatButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switcher_kis/button.py:38:9-24: Unexpected keyword argument `translation_key` in function `SwitcherThermostatButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switcher_kis/button.py:39:9-24: Unexpected keyword argument `entity_category` in function `SwitcherThermostatButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switcher_kis/button.py:44:9-12: Unexpected keyword argument `key` in function `SwitcherThermostatButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switcher_kis/button.py:45:9-24: Unexpected keyword argument `translation_key` in function `SwitcherThermostatButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switcher_kis/button.py:46:9-24: Unexpected keyword argument `entity_category` in function `SwitcherThermostatButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switcher_kis/button.py:51:9-12: Unexpected keyword argument `key` in function `SwitcherThermostatButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switcher_kis/button.py:52:9-24: Unexpected keyword argument `translation_key` in function `SwitcherThermostatButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switcher_kis/button.py:57:9-12: Unexpected keyword argument `key` in function `SwitcherThermostatButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switcher_kis/button.py:58:9-24: Unexpected keyword argument `translation_key` in function `SwitcherThermostatButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switcher_kis/button.py:93:5-23: Class member `SwitcherThermostatButtonEntity.entity_description` overrides parent class `SwitcherEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switcher_kis/button.py:93:5-23: Class member `SwitcherThermostatButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switcher_kis/coordinator.py:26:5-17: Class member `SwitcherDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switcher_kis/cover.py:65:5-23: Class member `SwitcherBaseCoverEntity._attr_device_class` overrides parent class `SwitcherEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switcher_kis/cover.py:66:5-29: Class member `SwitcherBaseCoverEntity._attr_supported_features` overrides parent class `SwitcherEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switcher_kis/sensor.py:46:9-12: Unexpected keyword argument `key` in function `SwitcherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switcher_kis/sensor.py:53:9-12: Unexpected keyword argument `key` in function `SwitcherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switcher_kis/sensor.py:62:9-12: Unexpected keyword argument `key` in function `SwitcherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switcher_kis/sensor.py:63:9-24: Unexpected keyword argument `translation_key` in function `SwitcherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switcher_kis/sensor.py:67:9-12: Unexpected keyword argument `key` in function `SwitcherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switcher_kis/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `SwitcherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switcher_kis/sensor.py:69:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SwitcherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switcher_kis/sensor.py:75:9-12: Unexpected keyword argument `key` in function `SwitcherSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/switcher_kis/sensor.py:129:14-32: Class member `SwitcherSensorEntity.entity_description` overrides parent class `SwitcherEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switcher_kis/sensor.py:129:14-32: Class member `SwitcherSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switcher_kis/switch.py:159:14-25: Class member `SwitcherWaterHeaterSwitchEntity._attr_is_on` overrides parent class `SwitcherBaseSwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switcher_kis/switch.py:159:33-47: Class member `SwitcherWaterHeaterSwitchEntity.control_result` overrides parent class `SwitcherBaseSwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switcher_kis/switch.py:166:5-23: Class member `SwitcherShutterChildLockBaseSwitchEntity._attr_device_class` overrides parent class `SwitcherEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/switchmate/switch.py:8:1-34: Could not find import of `switchmate` [missing-import] +ERROR homeassistant/components/syncthing/__init__.py:48:12-35: Module `aiosyncthing.exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/syncthing/__init__.py:112:29-64: `Task[Unknown]` is not assignable to attribute `_listen_task` with type `None` [bad-assignment] +ERROR homeassistant/components/syncthing/__init__.py:155:20-43: Module `aiosyncthing.exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/syncthing/__init__.py:174:16-39: Module `aiosyncthing.exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/syncthing/config_flow.py:36:12-35: Module `aiosyncthing.exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/syncthing/sensor.py:36:12-35: Module `aiosyncthing.exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/syncthing/sensor.py:111:16-36: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/syncthing/sensor.py:127:16-39: Module `aiosyncthing.exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/syncthing/sensor.py:141:33-143:14: `() -> None` is not assignable to attribute `_unsub_timer` with type `None` [bad-assignment] +ERROR homeassistant/components/syncthing/sensor.py:150:33-37: `None` is not assignable to attribute `_unsub_timer` with type `Never` [bad-assignment] +ERROR homeassistant/components/syncthru/binary_sensor.py:41:9-12: Unexpected keyword argument `key` in function `SyncThruBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/binary_sensor.py:46:9-12: Unexpected keyword argument `key` in function `SyncThruBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/binary_sensor.py:70:5-23: Class member `SyncThruBinarySensor.entity_description` overrides parent class `SyncthruEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/syncthru/binary_sensor.py:70:5-23: Class member `SyncThruBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/syncthru/sensor.py:41:9-12: Unexpected keyword argument `key` in function `SyncThruSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `SyncThruSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/sensor.py:43:9-24: Unexpected keyword argument `entity_category` in function `SyncThruSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/sensor.py:53:9-12: Unexpected keyword argument `key` in function `SyncThruSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `SyncThruSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/sensor.py:55:9-24: Unexpected keyword argument `entity_category` in function `SyncThruSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/sensor.py:71:9-12: Unexpected keyword argument `key` in function `SyncThruSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `SyncThruSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/sensor.py:73:9-24: Unexpected keyword argument `entity_category` in function `SyncThruSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/sensor.py:74:9-33: Unexpected keyword argument `translation_placeholders` in function `SyncThruSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/sensor.py:88:9-12: Unexpected keyword argument `key` in function `SyncThruSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `SyncThruSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/sensor.py:90:9-24: Unexpected keyword argument `entity_category` in function `SyncThruSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/sensor.py:91:9-33: Unexpected keyword argument `translation_placeholders` in function `SyncThruSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/sensor.py:106:9-12: Unexpected keyword argument `key` in function `SyncThruSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `SyncThruSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/sensor.py:111:9-12: Unexpected keyword argument `key` in function `SyncThruSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/sensor.py:112:9-13: Unexpected keyword argument `name` in function `SyncThruSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/syncthru/sensor.py:153:5-23: Class member `SyncThruSensor.entity_description` overrides parent class `SyncthruEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/syncthru/sensor.py:153:5-23: Class member `SyncThruSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/__init__.py:94:13-44: Expected a type form, got instance of `*Unknown` [not-a-type] +ERROR homeassistant/components/synology_dsm/__init__.py:94:14-44: Expected a type form, got instance of `tuple[type[SynologyDSMAPIErrorException], type[SynologyDSMLoginFailedException], type[SynologyDSMRequestException]]` [not-a-type] +ERROR homeassistant/components/synology_dsm/__init__.py:172:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/synology_dsm/__init__.py:193:9-28: Argument `list[str]` is not assignable to parameter `*iterables` with type `Iterable[int]` in function `itertools.chain.__new__` [bad-argument-type] +ERROR homeassistant/components/synology_dsm/__init__.py:194:9-26: Argument `list[str]` is not assignable to parameter `*iterables` with type `Iterable[int]` in function `itertools.chain.__new__` [bad-argument-type] +ERROR homeassistant/components/synology_dsm/__init__.py:195:9-28: Argument `list[str]` is not assignable to parameter `*iterables` with type `Iterable[int]` in function `itertools.chain.__new__` [bad-argument-type] +ERROR homeassistant/components/synology_dsm/__init__.py:196:9-48: Argument `tuple[str]` is not assignable to parameter `*iterables` with type `Iterable[int]` in function `itertools.chain.__new__` [bad-argument-type] +ERROR homeassistant/components/synology_dsm/backup.py:128:15-36: Class member `SynologyDSMBackupAgent.async_download_backup` overrides parent class `BackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/binary_sensor.py:39:9-12: Unexpected keyword argument `key` in function `SynologyDSMBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/binary_sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/binary_sensor.py:48:9-12: Unexpected keyword argument `key` in function `SynologyDSMBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/binary_sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/binary_sensor.py:51:9-24: Unexpected keyword argument `entity_category` in function `SynologyDSMBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/binary_sensor.py:55:9-12: Unexpected keyword argument `key` in function `SynologyDSMBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/binary_sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/binary_sensor.py:58:9-24: Unexpected keyword argument `entity_category` in function `SynologyDSMBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/binary_sensor.py:98:5-23: Class member `SynoDSMBinarySensor.entity_description` overrides parent class `SynologyDSMBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/binary_sensor.py:98:5-23: Class member `SynoDSMBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/binary_sensor.py:134:5-23: Class member `SynoDSMStorageBinarySensor.entity_description` overrides parent class `SynologyDSMDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/button.py:36:9-12: Unexpected keyword argument `key` in function `SynologyDSMbuttonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/button.py:37:9-13: Unexpected keyword argument `name` in function `SynologyDSMbuttonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/button.py:39:9-24: Unexpected keyword argument `entity_category` in function `SynologyDSMbuttonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/button.py:43:9-12: Unexpected keyword argument `key` in function `SynologyDSMbuttonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/button.py:44:9-13: Unexpected keyword argument `name` in function `SynologyDSMbuttonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/button.py:45:9-13: Unexpected keyword argument `icon` in function `SynologyDSMbuttonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/button.py:46:9-24: Unexpected keyword argument `entity_category` in function `SynologyDSMbuttonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/button.py:65:5-23: Class member `SynologyDSMButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/camera.py:64:5-29: Class member `SynoDSMCamera._attr_supported_features` overrides parent class `SynologyDSMBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/camera.py:65:5-23: Class member `SynoDSMCamera.entity_description` overrides parent class `SynologyDSMBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/camera.py:65:5-23: Class member `SynoDSMCamera.entity_description` overrides parent class `Camera` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/camera.py:76:13-16: Unexpected keyword argument `key` in function `SynologyDSMCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/camera.py:78:13-17: Unexpected keyword argument `name` in function `SynologyDSMCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/camera.py:79:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `SynologyDSMCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/config_flow.py:133:9-31: Class member `SynologyDSMFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/config_flow.py:243:57-63: `serial` may be uninitialized [unbound-name] +ERROR homeassistant/components/synology_dsm/coordinator.py:75:5-17: Class member `SynologyDSMUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/entity.py:32:5-23: Class member `SynologyDSMBaseEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/entity.py:54:14-29: Class member `SynologyDSMBaseEntity._attr_unique_id` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/entity.py:115:17-118:39: `str` is not assignable to attribute `_device_type` with type `None` [bad-assignment] +ERROR homeassistant/components/synology_dsm/entity.py:130:33-49: `str` is not assignable to attribute `_device_type` with type `None` [bad-assignment] +ERROR homeassistant/components/synology_dsm/entity.py:140:41-59: `str` is not assignable to attribute `_device_type` with type `None` [bad-assignment] +ERROR homeassistant/components/synology_dsm/media_source.py:56:29-43: `str` is not assignable to attribute `album_id` with type `None` [bad-assignment] +ERROR homeassistant/components/synology_dsm/media_source.py:61:30-38: `str` is not assignable to attribute `cache_key` with type `None` [bad-assignment] +ERROR homeassistant/components/synology_dsm/media_source.py:64:30-38: `str` is not assignable to attribute `file_name` with type `None` [bad-assignment] +ERROR homeassistant/components/synology_dsm/media_source.py:65:16-39: Object of class `NoneType` has no attribute `endswith` [missing-attribute] +ERROR homeassistant/components/synology_dsm/media_source.py:67:34-61: Object of class `NoneType` has no attribute `removesuffix` [missing-attribute] +ERROR homeassistant/components/synology_dsm/media_source.py:304:70-76: `shared` may be uninitialized [unbound-name] +ERROR homeassistant/components/synology_dsm/sensor.py:57:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:60:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:65:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:72:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:73:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:75:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:80:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:81:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:87:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:90:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:94:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:95:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:100:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:101:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:106:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:113:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:119:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:124:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:130:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:135:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:136:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:145:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:146:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:155:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:156:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:165:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:166:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:175:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:176:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:185:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:186:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:197:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:198:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:202:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:203:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:208:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:213:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:214:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:223:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:224:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:229:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:230:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:233:9-24: Unexpected keyword argument `entity_category` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:237:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:238:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:241:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:242:9-24: Unexpected keyword argument `entity_category` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:248:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:249:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:250:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:251:9-24: Unexpected keyword argument `entity_category` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:255:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:256:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:257:9-24: Unexpected keyword argument `entity_category` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:261:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:262:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:266:9-24: Unexpected keyword argument `entity_category` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:272:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:273:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:277:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:278:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:283:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:290:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:291:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:300:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:301:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:310:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:311:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:320:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:321:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:325:9-24: Unexpected keyword argument `entity_category` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:329:9-12: Unexpected keyword argument `key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:330:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:332:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:333:9-24: Unexpected keyword argument `entity_category` in function `SynologyDSMSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/sensor.py:428:5-23: Class member `SynoDSMSensor.entity_description` overrides parent class `SynologyDSMBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/sensor.py:428:5-23: Class member `SynoDSMSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/sensor.py:468:5-23: Class member `SynoDSMStorageSensor.entity_description` overrides parent class `SynologyDSMDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/sensor.py:492:5-23: Class member `SynoDSMExternalUSBSensor.entity_description` overrides parent class `SynologyDSMDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/sensor.py:521:21-25: `attr` may be uninitialized [unbound-name] +ERROR homeassistant/components/synology_dsm/sensor.py:522:20-24: `attr` may be uninitialized [unbound-name] +ERROR homeassistant/components/synology_dsm/sensor.py:523:12-16: `attr` may be uninitialized [unbound-name] +ERROR homeassistant/components/synology_dsm/services.py:59:34-40: Cannot index into `dict[str, SynologyDSMData]` [bad-index] +ERROR homeassistant/components/synology_dsm/switch.py:34:9-12: Unexpected keyword argument `key` in function `SynologyDSMSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/switch.py:35:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/switch.py:63:5-23: Class member `SynoDSMSurveillanceHomeModeToggle.entity_description` overrides parent class `SynologyDSMBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/switch.py:63:5-23: Class member `SynoDSMSurveillanceHomeModeToggle.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/update.py:30:9-12: Unexpected keyword argument `key` in function `SynologyDSMUpdateEntityEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/update.py:31:9-24: Unexpected keyword argument `translation_key` in function `SynologyDSMUpdateEntityEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/synology_dsm/update.py:55:5-23: Class member `SynoDSMUpdateEntity.entity_description` overrides parent class `SynologyDSMBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_dsm/update.py:55:5-23: Class member `SynoDSMUpdateEntity.entity_description` overrides parent class `UpdateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/synology_srm/device_tracker.py:7:8-20: Could not find import of `synology_srm` [missing-import] +ERROR homeassistant/components/system_bridge/binary_sensor.py:40:9-12: Unexpected keyword argument `key` in function `SystemBridgeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/binary_sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `SystemBridgeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/binary_sensor.py:45:9-12: Unexpected keyword argument `key` in function `SystemBridgeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/binary_sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `SystemBridgeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/binary_sensor.py:50:9-12: Unexpected keyword argument `key` in function `SystemBridgeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/binary_sensor.py:58:9-12: Unexpected keyword argument `key` in function `SystemBridgeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/binary_sensor.py:94:5-23: Class member `SystemBridgeBinarySensor.entity_description` overrides parent class `SystemBridgeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/system_bridge/binary_sensor.py:94:5-23: Class member `SystemBridgeBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/system_bridge/coordinator.py:43:5-17: Class member `SystemBridgeDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/system_bridge/data.py:24:20-24: `None` is not assignable to `Disks` [bad-assignment] +ERROR homeassistant/components/system_bridge/data.py:28:22-26: `None` is not assignable to `Memory` [bad-assignment] +ERROR homeassistant/components/system_bridge/data.py:30:22-26: `None` is not assignable to `System` [bad-assignment] +ERROR homeassistant/components/system_bridge/media_player.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.media_player.MediaPlayerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/media_player.py:59:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.media_player.MediaPlayerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/media_player.py:89:5-23: Class member `SystemBridgeMediaPlayer.entity_description` overrides parent class `SystemBridgeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/system_bridge/notify.py:72:19-83: Argument `Any | None` is not assignable to parameter `title` with type `str` in function `systembridgemodels.notification.Notification.__init__` [bad-argument-type] +ERROR homeassistant/components/system_bridge/sensor.py:233:9-12: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:234:9-24: Unexpected keyword argument `translation_key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:239:9-12: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:240:9-24: Unexpected keyword argument `translation_key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:247:9-12: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:248:9-24: Unexpected keyword argument `translation_key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:256:9-12: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:257:9-24: Unexpected keyword argument `translation_key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:258:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:266:9-12: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:267:9-24: Unexpected keyword argument `translation_key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:268:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:276:9-12: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:277:9-24: Unexpected keyword argument `translation_key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:281:9-12: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:282:9-24: Unexpected keyword argument `translation_key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:290:9-12: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:294:9-13: Unexpected keyword argument `icon` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:298:9-12: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:299:9-24: Unexpected keyword argument `translation_key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:300:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:308:9-12: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:309:9-24: Unexpected keyword argument `translation_key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:313:9-12: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:314:9-24: Unexpected keyword argument `translation_key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:319:9-12: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:320:9-24: Unexpected keyword argument `translation_key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:327:9-12: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:328:9-24: Unexpected keyword argument `translation_key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:336:9-12: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:337:9-24: Unexpected keyword argument `translation_key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:341:9-12: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:342:9-24: Unexpected keyword argument `translation_key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:349:9-12: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:357:9-12: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:358:9-24: Unexpected keyword argument `translation_key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:386:21-24: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:387:21-25: Unexpected keyword argument `name` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:391:21-25: Unexpected keyword argument `icon` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:417:17-20: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:418:17-32: Unexpected keyword argument `translation_key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:433:25-28: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:434:25-29: Unexpected keyword argument `name` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:437:25-29: Unexpected keyword argument `icon` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:447:25-28: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:448:25-29: Unexpected keyword argument `name` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:451:25-29: Unexpected keyword argument `icon` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:461:25-28: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:462:25-29: Unexpected keyword argument `name` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:467:25-29: Unexpected keyword argument `icon` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:480:25-28: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:481:25-29: Unexpected keyword argument `name` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:482:25-56: Unexpected keyword argument `entity_registry_enabled_default` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:487:25-29: Unexpected keyword argument `icon` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:495:25-28: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:496:25-29: Unexpected keyword argument `name` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:497:25-56: Unexpected keyword argument `entity_registry_enabled_default` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:502:25-29: Unexpected keyword argument `icon` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:510:25-28: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:511:25-29: Unexpected keyword argument `name` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:516:25-29: Unexpected keyword argument `icon` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:524:25-28: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:525:25-29: Unexpected keyword argument `name` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:529:25-29: Unexpected keyword argument `icon` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:537:25-28: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:538:25-29: Unexpected keyword argument `name` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:539:25-56: Unexpected keyword argument `entity_registry_enabled_default` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:544:25-29: Unexpected keyword argument `icon` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:552:25-28: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:553:25-29: Unexpected keyword argument `name` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:554:25-56: Unexpected keyword argument `entity_registry_enabled_default` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:557:25-29: Unexpected keyword argument `icon` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:565:25-28: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:566:25-29: Unexpected keyword argument `name` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:567:25-56: Unexpected keyword argument `entity_registry_enabled_default` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:577:25-28: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:578:25-29: Unexpected keyword argument `name` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:579:25-56: Unexpected keyword argument `entity_registry_enabled_default` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:591:25-28: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:592:25-29: Unexpected keyword argument `name` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:596:25-29: Unexpected keyword argument `icon` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:611:29-32: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:612:29-33: Unexpected keyword argument `name` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:613:29-60: Unexpected keyword argument `entity_registry_enabled_default` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:616:29-33: Unexpected keyword argument `icon` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:625:29-32: Unexpected keyword argument `key` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:626:29-33: Unexpected keyword argument `name` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:627:29-60: Unexpected keyword argument `entity_registry_enabled_default` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:630:29-33: Unexpected keyword argument `icon` in function `SystemBridgeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/system_bridge/sensor.py:645:5-23: Class member `SystemBridgeSensor.entity_description` overrides parent class `SystemBridgeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/system_bridge/sensor.py:645:5-23: Class member `SystemBridgeSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/system_log/__init__.py:304:15-19: `conf` may be uninitialized [unbound-name] +ERROR homeassistant/components/system_log/__init__.py:304:39-43: `conf` may be uninitialized [unbound-name] +ERROR homeassistant/components/systemmonitor/__init__.py:36:56-79: Argument `type[PsutilWrapper]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/systemmonitor/binary_sensor.py:75:9-12: Unexpected keyword argument `key` in function `SysMonitorBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/binary_sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/binary_sensor.py:77:9-13: Unexpected keyword argument `icon` in function `SysMonitorBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/binary_sensor.py:86:9-12: Unexpected keyword argument `key` in function `SysMonitorBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/binary_sensor.py:94:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SysMonitorBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/binary_sensor.py:140:5-23: Class member `SystemMonitorSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/systemmonitor/binary_sensor.py:140:5-23: Class member `SystemMonitorSensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/systemmonitor/binary_sensor.py:153:14-29: Class member `SystemMonitorSensor._attr_unique_id` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/systemmonitor/binary_sensor.py:153:14-29: Class member `SystemMonitorSensor._attr_unique_id` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/systemmonitor/coordinator.py:100:5-17: Class member `SystemMonitorCoordinator.config_entry` overrides parent class `TimestampDataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/systemmonitor/coordinator.py:153:56-72: Argument `BoundMethod[Self@SystemMonitorCoordinator, (self: Self@SystemMonitorCoordinator) -> dict[str, Any]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/systemmonitor/sensor.py:174:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:187:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:188:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:196:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:197:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:213:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:214:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:230:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:231:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:244:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:245:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:254:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:255:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:262:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:263:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:270:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:271:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:277:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:278:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:279:9-13: Unexpected keyword argument `icon` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:285:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:286:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:287:9-13: Unexpected keyword argument `icon` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:293:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:294:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:295:9-13: Unexpected keyword argument `icon` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:301:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:302:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:312:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:313:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:330:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:331:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:338:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:339:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:349:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:350:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:360:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:361:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:369:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:370:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:378:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:379:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:382:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:388:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:389:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:391:9-13: Unexpected keyword argument `icon` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:403:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:404:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:415:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:416:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:424:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:425:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:433:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:434:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:441:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:442:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:452:9-12: Unexpected keyword argument `key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:453:9-24: Unexpected keyword argument `translation_key` in function `SysMonitorSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/systemmonitor/sensor.py:515:59-72: Argument `() -> dict[str, Any]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/systemmonitor/sensor.py:630:5-23: Class member `SystemMonitorSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/systemmonitor/sensor.py:630:5-23: Class member `SystemMonitorSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/systemmonitor/sensor.py:648:14-29: Class member `SystemMonitorSensor._attr_unique_id` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/systemmonitor/sensor.py:648:14-29: Class member `SystemMonitorSensor._attr_unique_id` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tado/__init__.py:90:65-85: Argument `() -> tuple[Tado, str]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tado/binary_sensor.py:43:5-8: Unexpected keyword argument `key` in function `TadoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/binary_sensor.py:48:5-8: Unexpected keyword argument `key` in function `TadoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/binary_sensor.py:49:5-20: Unexpected keyword argument `translation_key` in function `TadoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/binary_sensor.py:54:5-8: Unexpected keyword argument `key` in function `TadoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/binary_sensor.py:59:5-8: Unexpected keyword argument `key` in function `TadoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/binary_sensor.py:64:5-8: Unexpected keyword argument `key` in function `TadoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/binary_sensor.py:65:5-20: Unexpected keyword argument `translation_key` in function `TadoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/binary_sensor.py:73:5-8: Unexpected keyword argument `key` in function `TadoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/binary_sensor.py:79:5-8: Unexpected keyword argument `key` in function `TadoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/binary_sensor.py:80:5-20: Unexpected keyword argument `translation_key` in function `TadoBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/binary_sensor.py:163:5-23: Class member `TadoDeviceBinarySensor.entity_description` overrides parent class `TadoDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tado/binary_sensor.py:163:5-23: Class member `TadoDeviceBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tado/binary_sensor.py:198:5-23: Class member `TadoZoneBinarySensor.entity_description` overrides parent class `TadoZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tado/binary_sensor.py:198:5-23: Class member `TadoZoneBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tado/climate.py:313:14-38: Class member `TadoClimate._attr_supported_features` overrides parent class `TadoZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tado/climate.py:340:31-46: No attribute `TadoZone` in module `PyTado` [missing-attribute] +ERROR homeassistant/components/tado/climate.py:813:20-33: `in` is not supported between `None` and `str` [unsupported-operation] +ERROR homeassistant/components/tado/config_flow.py:75:29-44: Argument `str | None` is not assignable to parameter `val` with type `SplitResult | URL | UndefinedType | str` in function `yarl._url.URL.__new__` [bad-argument-type] +ERROR homeassistant/components/tado/config_flow.py:82:56-83: Argument `BoundMethod[Tado, (self: Tado) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tado/config_flow.py:103:17-44: Argument `BoundMethod[Tado, (self: Tado) -> str | None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tado/config_flow.py:110:38-113:14: Argument `dict[str, str | None]` is not assignable to parameter `description_placeholders` with type `Mapping[str, str] | None` in function `homeassistant.data_entry_flow.FlowHandler.async_show_progress` [bad-argument-type] +ERROR homeassistant/components/tado/config_flow.py:111:24-39: `tado_device_url` may be uninitialized [unbound-name] +ERROR homeassistant/components/tado/config_flow.py:112:25-34: `user_code` may be uninitialized [unbound-name] +ERROR homeassistant/components/tado/config_flow.py:178:9-31: Class member `TadoConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tado/coordinator.py:43:5-17: Class member `TadoDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tado/coordinator.py:111:13-41: Argument `BoundMethod[Tado, (self: Tado) -> str | None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tado/coordinator.py:200:16-20: Returned type `object` is not assignable to declared return type `dict[str, str]` [bad-return] +ERROR homeassistant/components/tado/coordinator.py:218:16-58: Returned type `dict[str, object]` is not assignable to declared return type `dict[str, dict[Unknown, Unknown]]` [bad-return] +ERROR homeassistant/components/tado/coordinator.py:315:33-40: Argument `Unknown | None` is not assignable to parameter `zone_id` with type `int` in function `TadoDataUpdateCoordinator._update_zone` [bad-argument-type] +ERROR homeassistant/components/tado/coordinator.py:371:5-17: Class member `TadoMobileDeviceUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tado/sensor.py:87:9-12: Unexpected keyword argument `key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:99:9-12: Unexpected keyword argument `key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:110:9-12: Unexpected keyword argument `key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:117:9-12: Unexpected keyword argument `key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:118:9-24: Unexpected keyword argument `translation_key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:123:9-12: Unexpected keyword argument `key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:124:9-24: Unexpected keyword argument `translation_key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:129:9-12: Unexpected keyword argument `key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:130:9-24: Unexpected keyword argument `translation_key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:137:5-8: Unexpected keyword argument `key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:148:5-8: Unexpected keyword argument `key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:156:5-8: Unexpected keyword argument `key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:157:5-20: Unexpected keyword argument `translation_key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:161:5-8: Unexpected keyword argument `key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:162:5-20: Unexpected keyword argument `translation_key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:169:5-8: Unexpected keyword argument `key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:170:5-20: Unexpected keyword argument `translation_key` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:171:5-9: Unexpected keyword argument `name` in function `TadoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tado/sensor.py:232:5-23: Class member `TadoHomeSensor.entity_description` overrides parent class `TadoHomeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tado/sensor.py:232:5-23: Class member `TadoHomeSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tado/sensor.py:259:68-84: `tado_sensor_data` may be uninitialized [unbound-name] +ERROR homeassistant/components/tado/sensor.py:262:17-33: `tado_sensor_data` may be uninitialized [unbound-name] +ERROR homeassistant/components/tado/sensor.py:270:5-23: Class member `TadoZoneSensor.entity_description` overrides parent class `TadoZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tado/sensor.py:270:5-23: Class member `TadoZoneSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tado/water_heater.py:161:14-38: Class member `TadoWaterHeater._attr_supported_features` overrides parent class `TadoZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tailscale/binary_sensor.py:33:9-12: Unexpected keyword argument `key` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:34:9-24: Unexpected keyword argument `translation_key` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:36:9-24: Unexpected keyword argument `entity_category` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:40:9-12: Unexpected keyword argument `key` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:42:9-24: Unexpected keyword argument `entity_category` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:46:9-12: Unexpected keyword argument `key` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:48:9-24: Unexpected keyword argument `entity_category` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:56:9-12: Unexpected keyword argument `key` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:58:9-24: Unexpected keyword argument `entity_category` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:66:9-12: Unexpected keyword argument `key` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:68:9-24: Unexpected keyword argument `entity_category` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:76:9-12: Unexpected keyword argument `key` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:78:9-24: Unexpected keyword argument `entity_category` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:86:9-12: Unexpected keyword argument `key` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:88:9-24: Unexpected keyword argument `entity_category` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:96:9-12: Unexpected keyword argument `key` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:98:9-24: Unexpected keyword argument `entity_category` in function `TailscaleBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/binary_sensor.py:129:5-23: Class member `TailscaleBinarySensorEntity.entity_description` overrides parent class `TailscaleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tailscale/binary_sensor.py:129:5-23: Class member `TailscaleBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tailscale/coordinator.py:20:5-17: Class member `TailscaleDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tailscale/sensor.py:34:9-12: Unexpected keyword argument `key` in function `TailscaleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `TailscaleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/sensor.py:37:9-24: Unexpected keyword argument `entity_category` in function `TailscaleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/sensor.py:41:9-12: Unexpected keyword argument `key` in function `TailscaleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `TailscaleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/sensor.py:43:9-24: Unexpected keyword argument `entity_category` in function `TailscaleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/sensor.py:47:9-12: Unexpected keyword argument `key` in function `TailscaleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `TailscaleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailscale/sensor.py:76:5-23: Class member `TailscaleSensorEntity.entity_description` overrides parent class `TailscaleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tailscale/sensor.py:76:5-23: Class member `TailscaleSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tailwind/binary_sensor.py:32:9-12: Unexpected keyword argument `key` in function `TailwindDoorBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailwind/binary_sensor.py:33:9-24: Unexpected keyword argument `translation_key` in function `TailwindDoorBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailwind/binary_sensor.py:34:9-24: Unexpected keyword argument `entity_category` in function `TailwindDoorBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailwind/binary_sensor.py:57:5-23: Class member `TailwindDoorBinarySensorEntity.entity_description` overrides parent class `TailwindDoorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tailwind/binary_sensor.py:57:5-23: Class member `TailwindDoorBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tailwind/button.py:35:9-12: Unexpected keyword argument `key` in function `TailwindButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailwind/button.py:37:9-24: Unexpected keyword argument `entity_category` in function `TailwindButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailwind/button.py:61:5-23: Class member `TailwindButtonEntity.entity_description` overrides parent class `TailwindEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tailwind/button.py:61:5-23: Class member `TailwindButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tailwind/cover.py:42:7-30: Field `entity_description` is declared `EntityDescription` in ancestor `class TailwindDoorEntity: ... +`, which is not assignable to the type `CoverEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/tailwind/cover.py:45:5-23: Class member `TailwindDoorCoverEntity._attr_device_class` overrides parent class `TailwindDoorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tailwind/cover.py:49:5-29: Class member `TailwindDoorCoverEntity._attr_supported_features` overrides parent class `TailwindDoorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tailwind/number.py:32:9-12: Unexpected keyword argument `key` in function `TailwindNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailwind/number.py:33:9-24: Unexpected keyword argument `translation_key` in function `TailwindNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailwind/number.py:34:9-24: Unexpected keyword argument `entity_category` in function `TailwindNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tailwind/number.py:65:5-23: Class member `TailwindNumberEntity.entity_description` overrides parent class `TailwindEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tailwind/number.py:65:5-23: Class member `TailwindNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tami4/__init__.py:23:48-77: Unpacked argument `tuple[Any | None]` is not assignable to parameter `*args` with type `tuple[str]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tami4/__init__.py:47:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/tami4/button.py:37:5-8: Unexpected keyword argument `key` in function `Tami4EdgeButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tami4/button.py:38:5-20: Unexpected keyword argument `translation_key` in function `Tami4EdgeButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tami4/button.py:53:48-62: Argument `BoundMethod[Tami4EdgeAPI, (self: Tami4EdgeAPI) -> Device]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tami4/button.py:60:17-20: Unexpected keyword argument `key` in function `Tami4EdgeDrinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tami4/button.py:61:17-32: Unexpected keyword argument `translation_key` in function `Tami4EdgeDrinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tami4/button.py:62:17-41: Unexpected keyword argument `translation_placeholders` in function `Tami4EdgeDrinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tami4/button.py:76:5-23: Class member `Tami4EdgeButton.entity_description` overrides parent class `Tami4EdgeBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tami4/button.py:76:5-23: Class member `Tami4EdgeButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tami4/button.py:86:5-23: Class member `Tami4EdgeDrinkButton.entity_description` overrides parent class `Tami4EdgeBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tami4/button.py:86:5-23: Class member `Tami4EdgeDrinkButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tami4/coordinator.py:40:5-17: Class member `Tami4EdgeCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tami4/coordinator.py:58:61-81: Argument `BoundMethod[Tami4EdgeAPI, (self: Tami4EdgeAPI) -> Device]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tami4/sensor.py:27:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tami4/sensor.py:28:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tami4/sensor.py:32:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tami4/sensor.py:33:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tami4/sensor.py:36:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tami4/sensor.py:37:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tami4/sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tami4/sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tami4/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tami4/sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tami4/sensor.py:74:7-28: Field `entity_description` is declared `EntityDescription` in ancestor `class Tami4EdgeBaseEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/tank_utility/sensor.py:9:1-54: Could not find import of `tank_utility` [missing-import] +ERROR homeassistant/components/tank_utility/sensor.py:69:53-58: `token` may be uninitialized [unbound-name] +ERROR homeassistant/components/tankerkoenig/binary_sensor.py:46:5-23: Class member `StationOpenBinarySensorEntity._attr_device_class` overrides parent class `TankerkoenigCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tankerkoenig/config_flow.py:73:9-31: Class member `FlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tankerkoenig/coordinator.py:37:5-17: Class member `TankerkoenigDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tapsaff/binary_sensor.py:8:1-28: Could not find import of `tapsaff` [missing-import] +ERROR homeassistant/components/tasmota/binary_sensor.py:64:5-20: Class member `TasmotaBinarySensor._tasmota_entity` overrides parent class `TasmotaAvailability` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/binary_sensor.py:64:5-20: Class member `TasmotaBinarySensor._tasmota_entity` overrides parent class `TasmotaDiscoveryUpdate` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/camera.py:72:5-20: Class member `TasmotaCamera._tasmota_entity` overrides parent class `TasmotaAvailability` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/camera.py:72:5-20: Class member `TasmotaCamera._tasmota_entity` overrides parent class `TasmotaDiscoveryUpdate` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/camera.py:72:5-20: Class member `TasmotaCamera._tasmota_entity` overrides parent class `TasmotaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/camera.py:103:24-35: Module `aiohttp.web` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/tasmota/camera.py:104:10-21: Module `aiohttp.web` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/tasmota/cover.py:60:5-20: Class member `TasmotaCover._tasmota_entity` overrides parent class `TasmotaAvailability` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/cover.py:60:5-20: Class member `TasmotaCover._tasmota_entity` overrides parent class `TasmotaDiscoveryUpdate` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/cover.py:72:14-38: Class member `TasmotaCover._attr_supported_features` overrides parent class `TasmotaAvailability` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/cover.py:72:14-38: Class member `TasmotaCover._attr_supported_features` overrides parent class `TasmotaDiscoveryUpdate` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/device_trigger.py:269:40-54: Argument `tuple[str, str, str, int | str] | None` is not assignable to parameter `discovery_hash` with type `tuple[str, str, str, int | str]` in function `homeassistant.components.tasmota.discovery.clear_discovery_hash` [bad-argument-type] +ERROR homeassistant/components/tasmota/entity.py:112:5-20: Class member `TasmotaAvailability._tasmota_entity` overrides parent class `TasmotaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/fan.py:68:5-29: Class member `TasmotaFan._attr_supported_features` overrides parent class `TasmotaAvailability` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/fan.py:68:5-29: Class member `TasmotaFan._attr_supported_features` overrides parent class `TasmotaDiscoveryUpdate` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/fan.py:74:5-20: Class member `TasmotaFan._tasmota_entity` overrides parent class `TasmotaAvailability` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/fan.py:74:5-20: Class member `TasmotaFan._tasmota_entity` overrides parent class `TasmotaDiscoveryUpdate` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/light.py:94:5-20: Class member `TasmotaLight._tasmota_entity` overrides parent class `TasmotaAvailability` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/light.py:94:5-20: Class member `TasmotaLight._tasmota_entity` overrides parent class `TasmotaDiscoveryUpdate` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/light.py:94:5-20: Class member `TasmotaLight._tasmota_entity` overrides parent class `TasmotaOnOffEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/light.py:156:14-38: Class member `TasmotaLight._attr_supported_features` overrides parent class `TasmotaAvailability` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/light.py:156:14-38: Class member `TasmotaLight._attr_supported_features` overrides parent class `TasmotaDiscoveryUpdate` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/light.py:156:14-38: Class member `TasmotaLight._attr_supported_features` overrides parent class `TasmotaOnOffEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/sensor.py:275:5-20: Class member `TasmotaSensor._tasmota_entity` overrides parent class `TasmotaAvailability` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/sensor.py:275:5-20: Class member `TasmotaSensor._tasmota_entity` overrides parent class `TasmotaDiscoveryUpdate` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/sensor.py:289:14-32: Class member `TasmotaSensor._attr_device_class` overrides parent class `TasmotaAvailability` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/sensor.py:289:14-32: Class member `TasmotaSensor._attr_device_class` overrides parent class `TasmotaDiscoveryUpdate` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/sensor.py:302:68-304:10: No matching overload found for function `dict.get` called with arguments: (str | None, str | None) [no-matching-overload] +ERROR homeassistant/components/tasmota/switch.py:58:5-20: Class member `TasmotaSwitch._tasmota_entity` overrides parent class `TasmotaAvailability` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/switch.py:58:5-20: Class member `TasmotaSwitch._tasmota_entity` overrides parent class `TasmotaDiscoveryUpdate` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tasmota/switch.py:58:5-20: Class member `TasmotaSwitch._tasmota_entity` overrides parent class `TasmotaOnOffEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tautulli/coordinator.py:33:5-17: Class member `TautulliDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tautulli/entity.py:35:25-71: Argument `set[tuple[str, int | str | None]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/tautulli/sensor.py:42:17-27: Type `PyTautulliApiHomeStats` is not iterable [not-iterable] +ERROR homeassistant/components/tautulli/sensor.py:59:9-12: Unexpected keyword argument `key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:65:9-12: Unexpected keyword argument `key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:67:9-24: Unexpected keyword argument `entity_category` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:69:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:75:9-12: Unexpected keyword argument `key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:77:9-24: Unexpected keyword argument `entity_category` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:79:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:85:9-12: Unexpected keyword argument `key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:87:9-24: Unexpected keyword argument `entity_category` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:89:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:95:9-12: Unexpected keyword argument `key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:97:9-24: Unexpected keyword argument `entity_category` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:104:9-12: Unexpected keyword argument `key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:106:9-24: Unexpected keyword argument `entity_category` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:109:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:114:9-12: Unexpected keyword argument `key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:115:9-24: Unexpected keyword argument `translation_key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:116:9-24: Unexpected keyword argument `entity_category` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:119:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:124:9-12: Unexpected keyword argument `key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:126:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:130:9-12: Unexpected keyword argument `key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:131:9-24: Unexpected keyword argument `translation_key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:132:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:136:9-12: Unexpected keyword argument `key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:137:9-24: Unexpected keyword argument `translation_key` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:138:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TautulliSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:153:9-12: Unexpected keyword argument `key` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:154:9-24: Unexpected keyword argument `translation_key` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:158:9-12: Unexpected keyword argument `key` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:159:9-24: Unexpected keyword argument `translation_key` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:160:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:164:9-12: Unexpected keyword argument `key` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:165:9-24: Unexpected keyword argument `translation_key` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:167:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:171:9-12: Unexpected keyword argument `key` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:172:9-24: Unexpected keyword argument `translation_key` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:173:9-24: Unexpected keyword argument `entity_category` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:174:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:178:9-12: Unexpected keyword argument `key` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:179:9-24: Unexpected keyword argument `translation_key` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:180:9-24: Unexpected keyword argument `entity_category` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:181:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:185:9-12: Unexpected keyword argument `key` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:186:9-24: Unexpected keyword argument `translation_key` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:187:9-24: Unexpected keyword argument `entity_category` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:188:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:192:9-12: Unexpected keyword argument `key` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:193:9-24: Unexpected keyword argument `translation_key` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:194:9-24: Unexpected keyword argument `entity_category` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:195:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TautulliSessionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tautulli/sensor.py:246:5-23: Class member `TautulliSensor.entity_description` overrides parent class `TautulliEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tautulli/sensor.py:246:5-23: Class member `TautulliSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tautulli/sensor.py:252:13-40: Argument `list[PyTautulliApiHomeStats] | None` is not assignable to parameter with type `PyTautulliApiHomeStats` [bad-argument-type] +ERROR homeassistant/components/tautulli/sensor.py:253:13-38: Argument `PyTautulliApiActivity | None` is not assignable to parameter with type `PyTautulliApiActivity` [bad-argument-type] +ERROR homeassistant/components/tautulli/sensor.py:261:5-23: Class member `TautulliSessionSensor.entity_description` overrides parent class `TautulliEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tautulli/sensor.py:261:5-23: Class member `TautulliSessionSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tautulli/sensor.py:278:28-62: Type `None` is not iterable [not-iterable] +ERROR homeassistant/components/technove/binary_sensor.py:32:9-12: Unexpected keyword argument `key` in function `TechnoVEBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/binary_sensor.py:33:9-24: Unexpected keyword argument `translation_key` in function `TechnoVEBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/binary_sensor.py:34:9-24: Unexpected keyword argument `entity_category` in function `TechnoVEBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/binary_sensor.py:38:9-12: Unexpected keyword argument `key` in function `TechnoVEBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/binary_sensor.py:39:9-24: Unexpected keyword argument `translation_key` in function `TechnoVEBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/binary_sensor.py:40:9-24: Unexpected keyword argument `entity_category` in function `TechnoVEBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/binary_sensor.py:44:9-12: Unexpected keyword argument `key` in function `TechnoVEBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/binary_sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `TechnoVEBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/binary_sensor.py:46:9-24: Unexpected keyword argument `entity_category` in function `TechnoVEBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/binary_sensor.py:50:9-12: Unexpected keyword argument `key` in function `TechnoVEBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/binary_sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `TechnoVEBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/binary_sensor.py:52:9-24: Unexpected keyword argument `entity_category` in function `TechnoVEBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/binary_sensor.py:53:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TechnoVEBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/binary_sensor.py:57:9-12: Unexpected keyword argument `key` in function `TechnoVEBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/binary_sensor.py:58:9-24: Unexpected keyword argument `entity_category` in function `TechnoVEBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/binary_sensor.py:80:5-23: Class member `TechnoVEBinarySensorEntity.entity_description` overrides parent class `TechnoVEEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/technove/binary_sensor.py:80:5-23: Class member `TechnoVEBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/technove/coordinator.py:21:5-17: Class member `TechnoVEDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/technove/number.py:46:48-53: Argument `float` is not assignable to parameter `max_current` with type `int` in function `technove.technove.TechnoVE.set_max_current` [bad-argument-type] +ERROR homeassistant/components/technove/number.py:51:9-12: Unexpected keyword argument `key` in function `TechnoVENumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/number.py:52:9-24: Unexpected keyword argument `translation_key` in function `TechnoVENumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/number.py:53:9-24: Unexpected keyword argument `entity_category` in function `TechnoVENumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/number.py:58:45-57: Object of class `TechnoVE` has no attribute `info` [missing-attribute] +ERROR homeassistant/components/technove/number.py:59:41-53: Object of class `TechnoVE` has no attribute `info` [missing-attribute] +ERROR homeassistant/components/technove/number.py:79:5-23: Class member `TechnoVENumberEntity.entity_description` overrides parent class `TechnoVEEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/technove/number.py:79:5-23: Class member `TechnoVENumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/technove/number.py:93:60-81: Argument `Station` is not assignable to parameter with type `TechnoVE` [bad-argument-type] +ERROR homeassistant/components/technove/number.py:98:56-77: Argument `Station` is not assignable to parameter with type `TechnoVE` [bad-argument-type] +ERROR homeassistant/components/technove/sensor.py:42:9-12: Unexpected keyword argument `key` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:47:9-24: Unexpected keyword argument `entity_category` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:51:9-12: Unexpected keyword argument `key` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:56:9-24: Unexpected keyword argument `entity_category` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:60:9-12: Unexpected keyword argument `key` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:65:9-24: Unexpected keyword argument `entity_category` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:69:9-12: Unexpected keyword argument `key` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:73:9-24: Unexpected keyword argument `entity_category` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:77:9-12: Unexpected keyword argument `key` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:82:9-24: Unexpected keyword argument `entity_category` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:86:9-12: Unexpected keyword argument `key` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:91:9-24: Unexpected keyword argument `entity_category` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:95:9-12: Unexpected keyword argument `key` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:99:9-24: Unexpected keyword argument `entity_category` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:100:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:104:9-12: Unexpected keyword argument `key` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:106:9-24: Unexpected keyword argument `entity_category` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:107:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:111:9-12: Unexpected keyword argument `key` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:115:9-24: Unexpected keyword argument `entity_category` in function `TechnoVESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/sensor.py:135:5-23: Class member `TechnoVESensorEntity.entity_description` overrides parent class `TechnoVEEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/technove/sensor.py:135:5-23: Class member `TechnoVESensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/technove/switch.py:61:9-12: Unexpected keyword argument `key` in function `TechnoVESwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/switch.py:62:9-24: Unexpected keyword argument `translation_key` in function `TechnoVESwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/switch.py:63:9-24: Unexpected keyword argument `entity_category` in function `TechnoVESwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/switch.py:69:9-12: Unexpected keyword argument `key` in function `TechnoVESwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/switch.py:70:9-24: Unexpected keyword argument `translation_key` in function `TechnoVESwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/switch.py:71:9-24: Unexpected keyword argument `entity_category` in function `TechnoVESwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/technove/switch.py:95:5-23: Class member `TechnoVESwitchEntity.entity_description` overrides parent class `TechnoVEEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/technove/switch.py:95:5-23: Class member `TechnoVESwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ted5000/sensor.py:50:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ted5000/sensor.py:56:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/binary_sensor.py:38:9-12: Unexpected keyword argument `key` in function `TedeeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/binary_sensor.py:41:9-24: Unexpected keyword argument `entity_category` in function `TedeeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/binary_sensor.py:44:9-12: Unexpected keyword argument `key` in function `TedeeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/binary_sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `TedeeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/binary_sensor.py:47:9-24: Unexpected keyword argument `entity_category` in function `TedeeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/binary_sensor.py:50:9-12: Unexpected keyword argument `key` in function `TedeeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/binary_sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `TedeeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/binary_sensor.py:53:9-24: Unexpected keyword argument `entity_category` in function `TedeeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/binary_sensor.py:56:9-12: Unexpected keyword argument `key` in function `TedeeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/binary_sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `TedeeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/binary_sensor.py:63:9-24: Unexpected keyword argument `entity_category` in function `TedeeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/binary_sensor.py:64:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TedeeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/binary_sensor.py:67:9-12: Unexpected keyword argument `key` in function `TedeeBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/binary_sensor.py:100:5-23: Class member `TedeeBinarySensorEntity.entity_description` overrides parent class `TedeeDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tedee/binary_sensor.py:100:5-23: Class member `TedeeBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tedee/coordinator.py:42:5-17: Class member `TedeeApiCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tedee/sensor.py:34:9-12: Unexpected keyword argument `key` in function `TedeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/sensor.py:39:9-24: Unexpected keyword argument `entity_category` in function `TedeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/sensor.py:42:9-12: Unexpected keyword argument `key` in function `TedeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `TedeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/sensor.py:48:9-24: Unexpected keyword argument `entity_category` in function `TedeeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tedee/sensor.py:75:5-23: Class member `TedeeSensorEntity.entity_description` overrides parent class `TedeeDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tedee/sensor.py:75:5-23: Class member `TedeeSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/telegram_bot/bot.py:455:50-59: Object of class `NoneType` has no attribute `split` [missing-attribute] +ERROR homeassistant/components/telegram_bot/bot.py:1109:40-43: `req` may be uninitialized [unbound-name] +ERROR homeassistant/components/telegram_bot/bot.py:1112:56-59: `req` may be uninitialized [unbound-name] +ERROR homeassistant/components/telegram_bot/config_flow.py:180:9-31: Class member `TelgramBotConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/telegram_bot/event.py:31:7-29: Field `entity_description` is declared `EntityDescription` in ancestor `class TelegramBotEntity: ... +`, which is not assignable to the type `EventEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/telegram_bot/event.py:50:36-39: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/telegram_bot/event.py:50:56-71: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/telegram_bot/notify.py:33:7-30: Field `entity_description` is declared `EntityDescription` in ancestor `class TelegramBotEntity: ... +`, which is not assignable to the type `NotifyEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/telegram_bot/notify.py:36:5-29: Class member `TelegramBotNotifyEntity._attr_supported_features` overrides parent class `TelegramBotEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/telegram_bot/notify.py:45:51-54: Unexpected keyword argument `key` in function `homeassistant.components.notify.NotifyEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tellduslive/config_flow.py:80:55-78: Argument `BoundMethod[Session, (self: Session) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tellduslive/config_flow.py:101:67-85: Argument `BoundMethod[Self@FlowHandler, (self: Self@FlowHandler) -> str | None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tellduslive/config_flow.py:120:15-35: Class member `FlowHandler.async_step_discovery` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tellduslive/config_flow.py:148:54-150:10: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[PathLike[str] | str, dict[str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None]]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tellduslive/sensor.py:46:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tellduslive/sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tellduslive/sensor.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tellduslive/sensor.py:64:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tellduslive/sensor.py:70:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tellduslive/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tellduslive/sensor.py:74:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tellduslive/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tellduslive/sensor.py:81:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tellduslive/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tellduslive/sensor.py:88:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tellduslive/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tellduslive/sensor.py:94:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tellduslive/sensor.py:100:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tellduslive/sensor.py:106:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tellduslive/sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tellduslive/sensor.py:113:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tellduslive/sensor.py:147:18-36: Class member `TelldusLiveSensor.entity_description` overrides parent class `TelldusLiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tellstick/__init__.py:5:1-59: Could not find import of `tellcore.constants` [missing-import] +ERROR homeassistant/components/tellstick/__init__.py:6:1-68: Could not find import of `tellcore.telldus` [missing-import] +ERROR homeassistant/components/tellstick/__init__.py:7:1-39: Could not find import of `tellcorenet` [missing-import] +ERROR homeassistant/components/tellstick/entity.py:6:1-82: Could not find import of `tellcore.constants` [missing-import] +ERROR homeassistant/components/tellstick/entity.py:7:1-42: Could not find import of `tellcore.library` [missing-import] +ERROR homeassistant/components/tellstick/light.py:77:31-51: `bool` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/tellstick/light.py:79:31-35: `Literal[True]` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/tellstick/light.py:81:27-32: `Literal[False]` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/tellstick/sensor.py:8:1-29: Could not find import of `tellcore` [missing-import] +ERROR homeassistant/components/tellstick/sensor.py:9:8-48: Could not find import of `tellcore.constants` [missing-import] +ERROR homeassistant/components/tellstick/sensor.py:136:38-51: `named_sensors` may be uninitialized [unbound-name] +ERROR homeassistant/components/tellstick/sensor.py:137:31-44: `named_sensors` may be uninitialized [unbound-name] +ERROR homeassistant/components/tellstick/sensor.py:138:30-43: `named_sensors` may be uninitialized [unbound-name] +ERROR homeassistant/components/tellstick/sensor.py:139:31-44: `named_sensors` may be uninitialized [unbound-name] +ERROR homeassistant/components/tellstick/sensor.py:140:36-49: `named_sensors` may be uninitialized [unbound-name] +ERROR homeassistant/components/tellstick/sensor.py:141:31-44: `named_sensors` may be uninitialized [unbound-name] +ERROR homeassistant/components/template/alarm_control_panel.py:222:14-38: Class member `AbstractTemplateAlarmControlPanel._attr_supported_features` overrides parent class `AbstractTemplateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/alarm_control_panel.py:222:14-38: Class member `AbstractTemplateAlarmControlPanel._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/binary_sensor.py:186:14-32: Class member `StateBinarySensorEntity._attr_device_class` overrides parent class `TemplateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/binary_sensor.py:186:14-32: Class member `StateBinarySensorEntity._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/binary_sensor.py:187:14-23: Class member `StateBinarySensorEntity._template` overrides parent class `TemplateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/binary_sensor.py:257:17-77: Object of class `NoneType` has no attribute `total_seconds` [missing-attribute] +ERROR homeassistant/components/template/binary_sensor.py:259:30-76: `() -> None` is not assignable to attribute `_delay_cancel` with type `None` [bad-assignment] +ERROR homeassistant/components/template/binary_sensor.py:313:37-50: `auto_off_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/template/binary_sensor.py:314:36-49: `auto_off_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/template/button.py:108:14-32: Class member `StateButtonEntity._attr_device_class` overrides parent class `TemplateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/button.py:109:14-25: Class member `StateButtonEntity._attr_state` overrides parent class `TemplateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/config_flow.py:759:60-82: Argument `_HandlerT` is not assignable to parameter `entry_id` with type `str` in function `homeassistant.config_entries.ConfigEntries.async_get_entry` [bad-argument-type] +ERROR homeassistant/components/template/config_flow.py:767:30-52: Argument `_HandlerT` is not assignable to parameter `config_entry_id` with type `str` in function `homeassistant.helpers.entity_registry.async_entries_for_config_entry` [bad-argument-type] +ERROR homeassistant/components/template/cover.py:230:14-32: Class member `AbstractTemplateCover._attr_device_class` overrides parent class `AbstractTemplateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/cover.py:241:14-38: Class member `AbstractTemplateCover._attr_supported_features` overrides parent class `AbstractTemplateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/cover.py:241:14-38: Class member `AbstractTemplateCover._attr_supported_features` overrides parent class `CoverEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/cover.py:314:30-35: `float` is not assignable to attribute `_position` with type `int | None` [bad-assignment] +ERROR homeassistant/components/template/cover.py:336:32-37: `float` is not assignable to attribute `_tilt_value` with type `int | None` [bad-assignment] +ERROR homeassistant/components/template/event.py:130:14-32: Class member `AbstractTemplateEvent._attr_device_class` overrides parent class `AbstractTemplateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/image.py:100:5-20: Class member `StateImageEntity._attr_image_url` overrides parent class `ImageEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/image.py:141:5-20: Class member `TriggerImageEntity._attr_image_url` overrides parent class `ImageEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/light.py:620:36-51: `int` is not assignable to attribute `_brightness` with type `None` [bad-assignment] +ERROR homeassistant/components/template/light.py:657:29-40: `list[Unknown]` is not assignable to attribute `_effect_list` with type `None` [bad-assignment] +ERROR homeassistant/components/template/light.py:666:12-43: `not in` is not supported between `Unknown` and `None` [not-iterable] +ERROR homeassistant/components/template/light.py:736:30-44: `tuple[float | int, float | int]` is not assignable to attribute `_hs_color` with type `None` [bad-assignment] +ERROR homeassistant/components/template/light.py:778:31-52: `tuple[int | Unknown | None, int | Unknown | None, int | Unknown | None]` is not assignable to attribute `_rgb_color` with type `None` [bad-assignment] +ERROR homeassistant/components/template/light.py:823:32-60: `tuple[int | Unknown | None, int | Unknown | None, int | Unknown | None, int | Unknown | None]` is not assignable to attribute `_rgbw_color` with type `None` [bad-assignment] +ERROR homeassistant/components/template/light.py:869:33-70: `tuple[int | Unknown | None, int | Unknown | None, int | Unknown | None, int | Unknown | None, int | Unknown | None]` is not assignable to attribute `_rgbww_color` with type `None` [bad-assignment] +ERROR homeassistant/components/template/light.py:901:32-43: `int` is not assignable to attribute `_max_mireds` with type `None` [bad-assignment] +ERROR homeassistant/components/template/light.py:916:32-43: `int` is not assignable to attribute `_min_mireds` with type `None` [bad-assignment] +ERROR homeassistant/components/template/light.py:966:14-38: Class member `StateLightEntity._attr_supported_features` overrides parent class `TemplateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/light.py:1180:14-38: Class member `TriggerLightEntity._attr_supported_features` overrides parent class `TriggerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/lock.py:311:45-80: Object of class `NoneType` has no attribute `template` [missing-attribute] +ERROR homeassistant/components/template/sensor.py:231:14-32: Class member `StateSensorEntity._attr_device_class` overrides parent class `TemplateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/sensor.py:233:14-23: Class member `StateSensorEntity._template` overrides parent class `TemplateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/update.py:154:14-32: Class member `AbstractTemplateUpdate._attr_device_class` overrides parent class `AbstractTemplateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/update.py:162:14-38: Class member `AbstractTemplateUpdate._attr_supported_features` overrides parent class `AbstractTemplateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/template/vacuum.py:239:14-38: Class member `AbstractTemplateVacuum._attr_supported_features` overrides parent class `AbstractTemplateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/__init__.py:102:16-22: Argument `str` is not assignable to parameter `region` with type `Literal['cn', 'eu', 'na'] | None` in function `tesla_fleet_api.tesla.fleet.TeslaFleetApi.__init__` [bad-argument-type] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:41:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:46:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:48:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:49:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:52:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:54:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:57:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:58:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:59:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:62:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:63:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:64:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:67:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:68:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:69:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:72:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:73:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:74:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:77:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:79:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:83:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:85:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:86:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:89:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:92:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:93:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:96:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:100:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:102:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:103:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:106:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:108:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:109:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:112:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:114:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:115:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:118:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:120:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:121:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:124:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:126:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:129:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:131:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:134:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:136:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:139:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:141:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:144:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:146:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:149:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:151:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:154:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:156:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:159:9-12: Unexpected keyword argument `key` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:161:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:166:35-38: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:167:35-38: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:168:35-38: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:174:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:212:5-23: Class member `TeslaFleetVehicleBinarySensorEntity.entity_description` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:212:5-23: Class member `TeslaFleetVehicleBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:242:5-23: Class member `TeslaFleetEnergyLiveBinarySensorEntity.entity_description` overrides parent class `TeslaFleetEnergyLiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/binary_sensor.py:263:5-23: Class member `TeslaFleetEnergyInfoBinarySensorEntity.entity_description` overrides parent class `TeslaFleetEnergyInfoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/button.py:37:9-12: Unexpected keyword argument `key` in function `TeslaFleetButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/button.py:40:9-12: Unexpected keyword argument `key` in function `TeslaFleetButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/button.py:40:47-68: Object of class `EnergySite` has no attribute `flash_lights` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/button.py:43:9-12: Unexpected keyword argument `key` in function `TeslaFleetButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/button.py:43:39-57: Object of class `EnergySite` has no attribute `honk_horn` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/button.py:46:9-12: Unexpected keyword argument `key` in function `TeslaFleetButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/button.py:46:57-84: Object of class `EnergySite` has no attribute `remote_start_drive` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/button.py:49:9-12: Unexpected keyword argument `key` in function `TeslaFleetButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/button.py:49:42-65: Object of class `EnergySite` has no attribute `remote_boombox` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/button.py:52:9-12: Unexpected keyword argument `key` in function `TeslaFleetButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/button.py:53:27-52: Object of class `EnergySite` has no attribute `trigger_homelink` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/button.py:79:5-23: Class member `TeslaFleetButtonEntity.entity_description` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/button.py:79:5-23: Class member `TeslaFleetButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/climate.py:49:60-85: Argument `list[Scope]` is not assignable to parameter `scopes` with type `Scope` in function `TeslaFleetClimateEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/tesla_fleet/climate.py:55:30-55: Argument `list[Scope]` is not assignable to parameter `scopes` with type `Scope` in function `TeslaFleetCabinOverheatProtectionEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/tesla_fleet/climate.py:70:5-29: Class member `TeslaFleetClimateEntity._attr_supported_features` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/climate.py:125:38-70: Object of class `EnergySite` has no attribute `auto_conditioning_start` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/climate.py:134:38-69: Object of class `EnergySite` has no attribute `auto_conditioning_stop` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/climate.py:137:34-60: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/tesla_fleet/climate.py:152:13-31: Object of class `EnergySite` has no attribute `set_temps` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/climate.py:176:13-45: Object of class `EnergySite` has no attribute `set_climate_keeper_mode` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/climate.py:177:37-66: Object of class `NoneType` has no attribute `index` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/climate.py:181:27-53: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/tesla_fleet/climate.py:231:18-42: Class member `TeslaFleetCabinOverheatProtectionEntity._attr_supported_features` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/climate.py:295:38-59: Object of class `EnergySite` has no attribute `set_cop_temp` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/climate.py:312:17-55: Object of class `EnergySite` has no attribute `set_cabin_overheat_protection` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/climate.py:316:17-55: Object of class `EnergySite` has no attribute `set_cabin_overheat_protection` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/climate.py:320:17-55: Object of class `EnergySite` has no attribute `set_cabin_overheat_protection` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/coordinator.py:64:5-17: Class member `TeslaFleetVehicleDataCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/coordinator.py:124:14-29: Class member `TeslaFleetVehicleDataCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/coordinator.py:124:32-48: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@TeslaFleetVehicleDataCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/tesla_fleet/coordinator.py:144:44-56: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@TeslaFleetVehicleDataCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/tesla_fleet/coordinator.py:152:5-17: Class member `TeslaFleetEnergySiteLiveCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/coordinator.py:176:14-29: Class member `TeslaFleetEnergySiteLiveCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/coordinator.py:176:32-47: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@TeslaFleetEnergySiteLiveCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/tesla_fleet/coordinator.py:184:17-27: Object of class `NoneType` has no attribute `get` +Object of class `str` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/coordinator.py:186:16-33: `in` is not supported between `Literal['after']` and `None` [not-iterable] +ERROR homeassistant/components/tesla_fleet/coordinator.py:187:40-79: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@TeslaFleetEnergySiteLiveCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/tesla_fleet/coordinator.py:187:62-77: Cannot index into `str` [bad-index] +ERROR homeassistant/components/tesla_fleet/coordinator.py:187:62-77: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/tesla_fleet/coordinator.py:206:5-17: Class member `TeslaFleetEnergySiteHistoryCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/coordinator.py:233:14-29: Class member `TeslaFleetEnergySiteHistoryCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/coordinator.py:233:32-56: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@TeslaFleetEnergySiteHistoryCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/tesla_fleet/coordinator.py:235:32-55: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@TeslaFleetEnergySiteHistoryCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/tesla_fleet/coordinator.py:246:17-27: Object of class `NoneType` has no attribute `get` +Object of class `str` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/coordinator.py:248:16-33: `in` is not supported between `Literal['after']` and `None` [not-iterable] +ERROR homeassistant/components/tesla_fleet/coordinator.py:249:40-79: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@TeslaFleetEnergySiteHistoryCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/tesla_fleet/coordinator.py:249:62-77: Cannot index into `str` [bad-index] +ERROR homeassistant/components/tesla_fleet/coordinator.py:249:62-77: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/tesla_fleet/coordinator.py:276:5-17: Class member `TeslaFleetEnergySiteInfoCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/coordinator.py:301:14-29: Class member `TeslaFleetEnergySiteInfoCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/coordinator.py:301:32-47: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@TeslaFleetEnergySiteInfoCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/tesla_fleet/coordinator.py:309:17-27: Object of class `NoneType` has no attribute `get` +Object of class `str` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/coordinator.py:311:16-33: `in` is not supported between `Literal['after']` and `None` [not-iterable] +ERROR homeassistant/components/tesla_fleet/coordinator.py:312:40-79: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@TeslaFleetEnergySiteInfoCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/tesla_fleet/coordinator.py:312:62-77: Cannot index into `str` [bad-index] +ERROR homeassistant/components/tesla_fleet/coordinator.py:312:62-77: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/tesla_fleet/cover.py:51:5-23: Class member `TeslaFleetWindowEntity._attr_device_class` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/cover.py:57:14-38: Class member `TeslaFleetWindowEntity._attr_supported_features` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/cover.py:84:13-36: Object of class `EnergySite` has no attribute `window_control` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/cover.py:93:13-36: Object of class `EnergySite` has no attribute `window_control` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/cover.py:102:5-23: Class member `TeslaFleetChargePortEntity._attr_device_class` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/cover.py:111:14-38: Class member `TeslaFleetChargePortEntity._attr_supported_features` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/cover.py:124:38-68: Object of class `EnergySite` has no attribute `charge_port_door_open` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/cover.py:131:38-69: Object of class `EnergySite` has no attribute `charge_port_door_close` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/cover.py:139:5-23: Class member `TeslaFleetFrontTrunkEntity._attr_device_class` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/cover.py:146:14-38: Class member `TeslaFleetFrontTrunkEntity._attr_supported_features` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/cover.py:157:38-60: Object of class `EnergySite` has no attribute `actuate_trunk` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/cover.py:165:5-23: Class member `TeslaFleetRearTrunkEntity._attr_device_class` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/cover.py:172:14-38: Class member `TeslaFleetRearTrunkEntity._attr_supported_features` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/cover.py:186:42-64: Object of class `EnergySite` has no attribute `actuate_trunk` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/cover.py:194:42-64: Object of class `EnergySite` has no attribute `actuate_trunk` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/cover.py:202:5-23: Class member `TeslaFleetSunroofEntity._attr_device_class` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/cover.py:203:5-29: Class member `TeslaFleetSunroofEntity._attr_supported_features` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/cover.py:231:38-63: Object of class `EnergySite` has no attribute `sun_roof_control` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/cover.py:238:38-63: Object of class `EnergySite` has no attribute `sun_roof_control` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/cover.py:245:38-63: Object of class `EnergySite` has no attribute `sun_roof_control` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/lock.py:58:38-56: Object of class `EnergySite` has no attribute `door_lock` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/lock.py:66:38-58: Object of class `EnergySite` has no attribute `door_unlock` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/lock.py:101:38-68: Object of class `EnergySite` has no attribute `charge_port_door_open` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/media_player.py:49:5-23: Class member `TeslaFleetMediaEntity._attr_device_class` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/media_player.py:50:5-29: Class member `TeslaFleetMediaEntity._attr_supported_features` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/media_player.py:75:14-25: Class member `TeslaFleetMediaEntity._attr_state` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/media_player.py:97:12-20: `duration` may be uninitialized [unbound-name] +ERROR homeassistant/components/tesla_fleet/media_player.py:120:13-35: Object of class `EnergySite` has no attribute `adjust_volume` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/media_player.py:129:42-72: Object of class `EnergySite` has no attribute `media_toggle_playback` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/media_player.py:137:42-72: Object of class `EnergySite` has no attribute `media_toggle_playback` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/media_player.py:144:38-63: Object of class `EnergySite` has no attribute `media_next_track` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/media_player.py:149:38-63: Object of class `EnergySite` has no attribute `media_prev_track` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/number.py:46:9-12: Unexpected keyword argument `key` in function `TeslaFleetNumberVehicleEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/number.py:54:55-60: Argument `float` is not assignable to parameter `charging_amps` with type `int` in function `tesla_fleet_api.tesla.vehicle.fleet.VehicleFleet.set_charging_amps` [bad-argument-type] +ERROR homeassistant/components/tesla_fleet/number.py:58:9-12: Unexpected keyword argument `key` in function `TeslaFleetNumberVehicleEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/number.py:67:54-59: Argument `float` is not assignable to parameter `percent` with type `int` in function `tesla_fleet_api.tesla.vehicle.fleet.VehicleFleet.set_charge_limit` [bad-argument-type] +ERROR homeassistant/components/tesla_fleet/number.py:83:9-12: Unexpected keyword argument `key` in function `TeslaFleetNumberBatteryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/number.py:88:9-12: Unexpected keyword argument `key` in function `TeslaFleetNumberBatteryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/number.py:131:5-23: Class member `TeslaFleetVehicleNumberEntity.entity_description` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/number.py:131:5-23: Class member `TeslaFleetVehicleNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/number.py:169:67-75: Argument `EnergySite | VehicleFleet` is not assignable to parameter with type `VehicleFleet` [bad-argument-type] +ERROR homeassistant/components/tesla_fleet/number.py:177:5-23: Class member `TeslaFleetEnergyInfoNumberSensorEntity.entity_description` overrides parent class `TeslaFleetEnergyInfoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/number.py:177:5-23: Class member `TeslaFleetEnergyInfoNumberSensorEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/number.py:181:5-23: Class member `TeslaFleetEnergyInfoNumberSensorEntity._attr_device_class` overrides parent class `TeslaFleetEnergyInfoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/number.py:204:59-67: Argument `EnergySite | VehicleFleet` is not assignable to parameter with type `EnergySite` [bad-argument-type] +ERROR homeassistant/components/tesla_fleet/select.py:38:9-12: Unexpected keyword argument `key` in function `SeatHeaterDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/select.py:42:9-12: Unexpected keyword argument `key` in function `SeatHeaterDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/select.py:46:9-12: Unexpected keyword argument `key` in function `SeatHeaterDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/select.py:49:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SeatHeaterDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/select.py:52:9-12: Unexpected keyword argument `key` in function `SeatHeaterDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/select.py:55:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SeatHeaterDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/select.py:58:9-12: Unexpected keyword argument `key` in function `SeatHeaterDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/select.py:61:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SeatHeaterDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/select.py:64:9-12: Unexpected keyword argument `key` in function `SeatHeaterDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/select.py:67:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SeatHeaterDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/select.py:70:9-12: Unexpected keyword argument `key` in function `SeatHeaterDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/select.py:73:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `SeatHeaterDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/select.py:116:5-23: Class member `TeslaFleetSeatHeaterSelectEntity.entity_description` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/select.py:116:5-23: Class member `TeslaFleetSeatHeaterSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/select.py:152:42-74: Object of class `EnergySite` has no attribute `auto_conditioning_start` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/select.py:154:13-48: Object of class `EnergySite` has no attribute `remote_seat_heater_request` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/select.py:197:42-74: Object of class `EnergySite` has no attribute `auto_conditioning_start` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/select.py:199:13-62: Object of class `EnergySite` has no attribute `remote_steering_wheel_heat_level_request` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/select.py:230:30-48: Object of class `VehicleFleet` has no attribute `operation` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/select.py:261:13-40: Object of class `VehicleFleet` has no attribute `grid_import_export` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/sensor.py:71:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:77:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:83:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:87:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:90:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:97:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:103:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:107:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:110:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:114:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:117:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:121:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:124:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:125:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:126:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:129:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:130:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:131:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:134:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:141:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:146:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:149:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:154:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:157:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:161:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:165:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:169:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:170:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:174:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:178:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:181:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:186:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:187:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:190:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:196:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:197:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:200:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:206:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:207:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:210:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:216:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:217:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:220:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:226:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:227:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:230:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:237:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:244:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:249:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:250:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:253:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:258:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:259:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:262:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:266:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:269:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:273:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:274:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:277:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:294:9-12: Unexpected keyword argument `key` in function `TeslaFleetTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:296:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:300:9-12: Unexpected keyword argument `key` in function `TeslaFleetTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:308:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:316:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:322:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:325:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:331:9-24: Unexpected keyword argument `entity_category` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:332:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:335:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:343:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:351:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:359:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:367:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:375:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:381:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:384:9-12: Unexpected keyword argument `key` in function `TeslaFleetSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:398:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:399:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:400:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:403:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:404:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:405:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:408:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:416:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:422:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:428:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:437:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:438:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:442:29-32: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/sensor.py:500:5-23: Class member `TeslaFleetVehicleSensorEntity.entity_description` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/sensor.py:500:5-23: Class member `TeslaFleetVehicleSensorEntity.entity_description` overrides parent class `RestoreSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/sensor.py:529:5-23: Class member `TeslaFleetVehicleTimeSensorEntity.entity_description` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/sensor.py:529:5-23: Class member `TeslaFleetVehicleTimeSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/sensor.py:555:5-23: Class member `TeslaFleetEnergyLiveSensorEntity.entity_description` overrides parent class `TeslaFleetEnergyLiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/sensor.py:555:5-23: Class member `TeslaFleetEnergyLiveSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/sensor.py:574:5-23: Class member `TeslaFleetEnergyHistorySensorEntity.entity_description` overrides parent class `TeslaFleetEnergyHistoryEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/sensor.py:593:5-23: Class member `TeslaFleetWallConnectorSensorEntity.entity_description` overrides parent class `TeslaFleetWallConnectorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/sensor.py:618:5-23: Class member `TeslaFleetEnergyInfoSensorEntity.entity_description` overrides parent class `TeslaFleetEnergyInfoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/switch.py:42:9-12: Unexpected keyword argument `key` in function `TeslaFleetSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/switch.py:48:9-12: Unexpected keyword argument `key` in function `TeslaFleetSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/switch.py:58:9-12: Unexpected keyword argument `key` in function `TeslaFleetSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/switch.py:68:9-12: Unexpected keyword argument `key` in function `TeslaFleetSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/switch.py:78:9-12: Unexpected keyword argument `key` in function `TeslaFleetSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/switch.py:86:9-12: Unexpected keyword argument `key` in function `TeslaFleetSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_fleet/switch.py:134:5-23: Class member `TeslaFleetSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/switch.py:147:14-32: Class member `TeslaFleetVehicleSwitchEntity.entity_description` overrides parent class `TeslaFleetVehicleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_fleet/switch.py:203:13-40: Object of class `VehicleFleet` has no attribute `grid_import_export` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/switch.py:214:13-40: Object of class `VehicleFleet` has no attribute `grid_import_export` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/switch.py:244:30-49: Object of class `VehicleFleet` has no attribute `storm_mode` [missing-attribute] +ERROR homeassistant/components/tesla_fleet/switch.py:251:30-49: Object of class `VehicleFleet` has no attribute `storm_mode` [missing-attribute] +ERROR homeassistant/components/tesla_wall_connector/__init__.py:85:21-45: Object of class `dict` has no attribute `part_number` [missing-attribute] +ERROR homeassistant/components/tesla_wall_connector/__init__.py:86:26-55: Object of class `dict` has no attribute `firmware_version` [missing-attribute] +ERROR homeassistant/components/tesla_wall_connector/__init__.py:87:23-49: Object of class `dict` has no attribute `serial_number` [missing-attribute] +ERROR homeassistant/components/tesla_wall_connector/__init__.py:116:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/tesla_wall_connector/binary_sensor.py:32:9-12: Unexpected keyword argument `key` in function `WallConnectorBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/binary_sensor.py:33:9-24: Unexpected keyword argument `translation_key` in function `WallConnectorBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/binary_sensor.py:34:9-24: Unexpected keyword argument `entity_category` in function `WallConnectorBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/binary_sensor.py:39:9-12: Unexpected keyword argument `key` in function `WallConnectorBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/binary_sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `WallConnectorBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/binary_sensor.py:41:9-24: Unexpected keyword argument `entity_category` in function `WallConnectorBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/binary_sensor.py:73:14-32: Class member `WallConnectorBinarySensorEntity.entity_description` overrides parent class `WallConnectorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_wall_connector/binary_sensor.py:80:16-48: Object of class `BinarySensorEntityDescription` has no attribute `value_fn` [missing-attribute] +ERROR homeassistant/components/tesla_wall_connector/config_flow.py:36:38-59: Object of class `dict` has no attribute `serial_number` [missing-attribute] +ERROR homeassistant/components/tesla_wall_connector/config_flow.py:72:30-51: Object of class `dict` has no attribute `serial_number` [missing-attribute] +ERROR homeassistant/components/tesla_wall_connector/config_flow.py:110:27-31: `info` may be uninitialized [unbound-name] +ERROR homeassistant/components/tesla_wall_connector/config_flow.py:116:50-54: `info` may be uninitialized [unbound-name] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:53:9-12: Unexpected keyword argument `key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:55:9-24: Unexpected keyword argument `entity_category` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:57:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:60:9-12: Unexpected keyword argument `key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:69:9-12: Unexpected keyword argument `key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:74:9-24: Unexpected keyword argument `entity_category` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:78:9-12: Unexpected keyword argument `key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:83:9-24: Unexpected keyword argument `entity_category` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:87:9-12: Unexpected keyword argument `key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:92:9-24: Unexpected keyword argument `entity_category` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:96:9-12: Unexpected keyword argument `key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:102:9-24: Unexpected keyword argument `entity_category` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:105:9-12: Unexpected keyword argument `key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:111:9-24: Unexpected keyword argument `entity_category` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:114:9-12: Unexpected keyword argument `key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:115:9-24: Unexpected keyword argument `translation_key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:120:9-24: Unexpected keyword argument `entity_category` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:123:9-12: Unexpected keyword argument `key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:124:9-24: Unexpected keyword argument `translation_key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:129:9-24: Unexpected keyword argument `entity_category` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:132:9-12: Unexpected keyword argument `key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:133:9-24: Unexpected keyword argument `translation_key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:138:9-24: Unexpected keyword argument `entity_category` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:141:9-12: Unexpected keyword argument `key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:142:9-24: Unexpected keyword argument `translation_key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:147:9-24: Unexpected keyword argument `entity_category` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:150:9-12: Unexpected keyword argument `key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:151:9-24: Unexpected keyword argument `translation_key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:156:9-24: Unexpected keyword argument `entity_category` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:159:9-12: Unexpected keyword argument `key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:165:9-24: Unexpected keyword argument `entity_category` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:168:9-12: Unexpected keyword argument `key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:169:9-24: Unexpected keyword argument `translation_key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:177:9-12: Unexpected keyword argument `key` in function `WallConnectorSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:206:5-23: Class member `WallConnectorSensorEntity.entity_description` overrides parent class `WallConnectorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tesla_wall_connector/sensor.py:206:5-23: Class member `WallConnectorSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/__init__.py:112:19-45: Object of class `Vehicles` has no attribute `create` [missing-attribute] +ERROR homeassistant/components/teslemetry/binary_sensor.py:59:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:66:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:69:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:72:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:75:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:78:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:84:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:85:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:88:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:94:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:97:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:101:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:102:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:105:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:107:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:108:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:111:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:115:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:116:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:119:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:121:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:122:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:125:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:131:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:135:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:138:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:139:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:142:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:146:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:147:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:150:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:155:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:158:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:159:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:162:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:165:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:166:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:169:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:172:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:173:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:176:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:179:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:180:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:183:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:189:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:192:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:199:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:202:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:208:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:211:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:217:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:220:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:226:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:229:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:235:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:238:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:244:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:247:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:253:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:256:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:259:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:262:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:265:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:268:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:271:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:274:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:277:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:280:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:284:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:287:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:290:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:293:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:297:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:300:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:304:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:307:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:309:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:312:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:316:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:319:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:323:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:326:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:330:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:333:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:337:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:340:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:342:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:343:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:347:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:351:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:354:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:358:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:361:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:364:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:367:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:370:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:373:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:378:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:381:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:385:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:388:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:392:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:395:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:400:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:403:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:408:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:411:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:416:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:419:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:426:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:433:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:438:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:441:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:445:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:448:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:451:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:455:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:457:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:461:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:465:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:469:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:473:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:477:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:481:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:484:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:488:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:491:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:496:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:497:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:500:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:504:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:511:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:514:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:517:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:517:31-46: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:520:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:520:37-52: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:522:45-48: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:528:9-12: Unexpected keyword argument `key` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:529:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/binary_sensor.py:579:5-23: Class member `TeslemetryVehiclePollingBinarySensorEntity.entity_description` overrides parent class `TeslemetryVehiclePollingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/binary_sensor.py:579:5-23: Class member `TeslemetryVehiclePollingBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/binary_sensor.py:604:5-23: Class member `TeslemetryVehicleStreamingBinarySensorEntity.entity_description` overrides parent class `TeslemetryVehicleStreamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/binary_sensor.py:604:5-23: Class member `TeslemetryVehicleStreamingBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/binary_sensor.py:604:5-23: Class member `TeslemetryVehicleStreamingBinarySensorEntity.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/binary_sensor.py:640:5-23: Class member `TeslemetryEnergyLiveBinarySensorEntity.entity_description` overrides parent class `TeslemetryEnergyLiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/binary_sensor.py:640:5-23: Class member `TeslemetryEnergyLiveBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/binary_sensor.py:661:5-23: Class member `TeslemetryEnergyInfoBinarySensorEntity.entity_description` overrides parent class `TeslemetryEnergyInfoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/binary_sensor.py:661:5-23: Class member `TeslemetryEnergyInfoBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/button.py:33:9-12: Unexpected keyword argument `key` in function `TeslemetryButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/button.py:36:9-12: Unexpected keyword argument `key` in function `TeslemetryButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/button.py:40:9-12: Unexpected keyword argument `key` in function `TeslemetryButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/button.py:43:9-12: Unexpected keyword argument `key` in function `TeslemetryButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/button.py:47:9-12: Unexpected keyword argument `key` in function `TeslemetryButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/button.py:51:9-12: Unexpected keyword argument `key` in function `TeslemetryButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/button.py:81:5-23: Class member `TeslemetryButtonEntity.entity_description` overrides parent class `TeslemetryVehicleStreamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/button.py:81:5-23: Class member `TeslemetryButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/climate.py:117:34-60: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/teslemetry/climate.py:118:31-54: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/teslemetry/climate.py:154:37-66: Object of class `NoneType` has no attribute `index` [missing-attribute] +ERROR homeassistant/components/teslemetry/climate.py:158:27-53: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/teslemetry/climate.py:175:24-47: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/teslemetry/climate.py:185:5-29: Class member `TeslemetryVehiclePollingClimateEntity._attr_supported_features` overrides parent class `TeslemetryVehiclePollingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/climate.py:236:5-29: Class member `TeslemetryStreamingClimateEntity._attr_supported_features` overrides parent class `TeslemetryVehicleStreamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/climate.py:236:5-29: Class member `TeslemetryStreamingClimateEntity._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/climate.py:451:14-38: Class member `TeslemetryVehiclePollingCabinOverheatProtectionEntity._attr_supported_features` overrides parent class `TeslemetryVehiclePollingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/climate.py:502:14-38: Class member `TeslemetryStreamingCabinOverheatProtectionEntity._attr_supported_features` overrides parent class `TeslemetryVehicleStreamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/climate.py:502:14-38: Class member `TeslemetryStreamingCabinOverheatProtectionEntity._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/coordinator.py:45:5-17: Class member `TeslemetryVehicleDataCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/coordinator.py:64:18-33: Class member `TeslemetryVehicleDataCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/coordinator.py:64:36-52: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@TeslemetryVehicleDataCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/teslemetry/coordinator.py:86:5-17: Class member `TeslemetryEnergySiteLiveCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/coordinator.py:133:5-17: Class member `TeslemetryEnergySiteInfoCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/coordinator.py:169:5-17: Class member `TeslemetryEnergyHistoryCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/cover.py:109:5-23: Class member `TeslemetryWindowEntity._attr_device_class` overrides parent class `TeslemetryRootEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/cover.py:110:5-29: Class member `TeslemetryWindowEntity._attr_supported_features` overrides parent class `TeslemetryRootEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/cover.py:143:18-42: Class member `TeslemetryVehiclePollingWindowEntity._attr_supported_features` overrides parent class `TeslemetryVehiclePollingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/cover.py:178:18-42: Class member `TeslemetryStreamingWindowEntity._attr_supported_features` overrides parent class `TeslemetryVehicleStreamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/cover.py:239:5-23: Class member `TeslemetryChargePortEntity._attr_device_class` overrides parent class `TeslemetryRootEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/cover.py:240:5-29: Class member `TeslemetryChargePortEntity._attr_supported_features` overrides parent class `TeslemetryRootEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/cover.py:271:14-38: Class member `TeslemetryVehiclePollingChargePortEntity._attr_supported_features` overrides parent class `TeslemetryVehiclePollingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/cover.py:298:18-42: Class member `TeslemetryStreamingChargePortEntity._attr_supported_features` overrides parent class `TeslemetryVehicleStreamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/cover.py:320:5-23: Class member `TeslemetryFrontTrunkEntity._attr_device_class` overrides parent class `TeslemetryRootEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/cover.py:321:5-29: Class member `TeslemetryFrontTrunkEntity._attr_supported_features` overrides parent class `TeslemetryRootEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/cover.py:343:18-42: Class member `TeslemetryVehiclePollingFrontTrunkEntity._attr_supported_features` overrides parent class `TeslemetryVehiclePollingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/cover.py:361:18-42: Class member `TeslemetryStreamingFrontTrunkEntity._attr_supported_features` overrides parent class `TeslemetryVehicleStreamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/cover.py:382:5-23: Class member `TeslemetryRearTrunkEntity._attr_device_class` overrides parent class `TeslemetryRootEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/cover.py:383:5-29: Class member `TeslemetryRearTrunkEntity._attr_supported_features` overrides parent class `TeslemetryRootEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/cover.py:413:18-42: Class member `TeslemetryVehiclePollingRearTrunkEntity._attr_supported_features` overrides parent class `TeslemetryVehiclePollingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/cover.py:431:18-42: Class member `TeslemetryStreamingRearTrunkEntity._attr_supported_features` overrides parent class `TeslemetryVehicleStreamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/cover.py:452:5-23: Class member `TeslemetrySunroofEntity._attr_device_class` overrides parent class `TeslemetryVehiclePollingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/cover.py:453:5-29: Class member `TeslemetrySunroofEntity._attr_supported_features` overrides parent class `TeslemetryVehiclePollingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/device_tracker.py:48:9-12: Unexpected keyword argument `key` in function `TeslemetryDeviceTrackerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/device_tracker.py:54:9-12: Unexpected keyword argument `key` in function `TeslemetryDeviceTrackerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/device_tracker.py:65:9-12: Unexpected keyword argument `key` in function `TeslemetryDeviceTrackerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/device_tracker.py:70:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryDeviceTrackerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/device_tracker.py:112:5-23: Class member `TeslemetryVehiclePollingDeviceTrackerEntity.entity_description` overrides parent class `TeslemetryVehiclePollingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/device_tracker.py:112:5-23: Class member `TeslemetryVehiclePollingDeviceTrackerEntity.entity_description` overrides parent class `TrackerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/device_tracker.py:146:5-23: Class member `TeslemetryStreamingDeviceTrackerEntity.entity_description` overrides parent class `TeslemetryVehicleStreamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/device_tracker.py:146:5-23: Class member `TeslemetryStreamingDeviceTrackerEntity.entity_description` overrides parent class `TrackerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/device_tracker.py:146:5-23: Class member `TeslemetryStreamingDeviceTrackerEntity.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/media_player.py:66:5-23: Class member `TeslemetryMediaEntity._attr_device_class` overrides parent class `TeslemetryRootEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/media_player.py:83:18-29: Class member `TeslemetryMediaEntity._attr_state` overrides parent class `TeslemetryRootEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/media_player.py:122:14-38: Class member `TeslemetryVehiclePollingMediaEntity._attr_supported_features` overrides parent class `TeslemetryVehiclePollingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/media_player.py:136:14-25: Class member `TeslemetryVehiclePollingMediaEntity._attr_state` overrides parent class `TeslemetryVehiclePollingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/media_player.py:176:14-38: Class member `TeslemetryStreamingMediaEntity._attr_supported_features` overrides parent class `TeslemetryVehicleStreamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/media_player.py:176:14-38: Class member `TeslemetryStreamingMediaEntity._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/media_player.py:193:22-33: Class member `TeslemetryStreamingMediaEntity._attr_state` overrides parent class `TeslemetryVehicleStreamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/media_player.py:193:22-33: Class member `TeslemetryStreamingMediaEntity._attr_state` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/number.py:69:9-12: Unexpected keyword argument `key` in function `TeslemetryNumberVehicleEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/number.py:83:9-12: Unexpected keyword argument `key` in function `TeslemetryNumberVehicleEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/number.py:109:9-12: Unexpected keyword argument `key` in function `TeslemetryNumberBatteryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/number.py:120:9-12: Unexpected keyword argument `key` in function `TeslemetryNumberBatteryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/number.py:176:5-23: Class member `TeslemetryVehicleNumberEntity.entity_description` overrides parent class `TeslemetryRootEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/number.py:176:5-23: Class member `TeslemetryVehicleNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/number.py:200:14-32: Class member `TeslemetryVehiclePollingNumberEntity.entity_description` overrides parent class `TeslemetryVehiclePollingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/number.py:221:5-23: Class member `TeslemetryStreamingNumberEntity.entity_description` overrides parent class `TeslemetryVehicleStreamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/number.py:221:5-23: Class member `TeslemetryStreamingNumberEntity.entity_description` overrides parent class `RestoreNumber` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/number.py:278:5-23: Class member `TeslemetryEnergyInfoNumberSensorEntity.entity_description` overrides parent class `TeslemetryEnergyInfoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/number.py:278:5-23: Class member `TeslemetryEnergyInfoNumberSensorEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/number.py:282:5-23: Class member `TeslemetryEnergyInfoNumberSensorEntity._attr_device_class` overrides parent class `TeslemetryEnergyInfoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/select.py:57:9-12: Unexpected keyword argument `key` in function `TeslemetrySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/select.py:70:9-12: Unexpected keyword argument `key` in function `TeslemetrySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/select.py:83:9-12: Unexpected keyword argument `key` in function `TeslemetrySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/select.py:89:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetrySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/select.py:98:9-12: Unexpected keyword argument `key` in function `TeslemetrySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/select.py:104:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetrySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/select.py:113:9-12: Unexpected keyword argument `key` in function `TeslemetrySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/select.py:119:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetrySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/select.py:128:9-12: Unexpected keyword argument `key` in function `TeslemetrySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/select.py:133:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetrySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/select.py:142:9-12: Unexpected keyword argument `key` in function `TeslemetrySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/select.py:147:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetrySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/select.py:156:9-12: Unexpected keyword argument `key` in function `TeslemetrySelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/select.py:212:5-23: Class member `TeslemetrySelectEntity.entity_description` overrides parent class `TeslemetryRootEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/select.py:212:5-23: Class member `TeslemetrySelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/select.py:239:14-32: Class member `TeslemetryVehiclePollingSelectEntity.entity_description` overrides parent class `TeslemetryVehiclePollingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/select.py:264:14-32: Class member `TeslemetryStreamingSelectEntity.entity_description` overrides parent class `TeslemetryVehicleStreamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/select.py:264:14-32: Class member `TeslemetryStreamingSelectEntity.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/sensor.py:205:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:215:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:226:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:232:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:236:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:247:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:257:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:266:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:269:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:277:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:280:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:285:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:288:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:293:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:294:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:297:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:302:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:303:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:306:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:312:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:315:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:326:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:337:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:346:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:349:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:355:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:356:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:359:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:368:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:371:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:378:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:379:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:382:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:392:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:393:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:396:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:406:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:407:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:410:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:420:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:421:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:424:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:434:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:435:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:438:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:449:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:460:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:466:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:467:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:470:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:476:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:477:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:480:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:487:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:488:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:491:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:498:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:499:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:502:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:509:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:512:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:519:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:520:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:523:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:533:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:539:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:540:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:543:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:549:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:550:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:553:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:560:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:561:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:564:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:571:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:572:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:575:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:580:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:581:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:584:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:591:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:592:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:595:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:602:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:603:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:606:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:613:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:614:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:617:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:624:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:625:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:628:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:634:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:635:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:638:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:644:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:645:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:648:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:654:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:655:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:658:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:664:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:665:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:668:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:675:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:676:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:679:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:686:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:687:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:690:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:697:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:698:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:701:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:708:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:709:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:712:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:719:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:720:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:723:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:730:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:731:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:734:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:741:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:742:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:745:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:752:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:753:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:756:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:763:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:764:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:767:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:774:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:775:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:778:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:785:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:786:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:789:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:796:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:797:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:800:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:806:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:807:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:810:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:818:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:819:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:822:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:830:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:831:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:834:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:842:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:843:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:846:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:854:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:855:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:858:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:865:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:866:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:869:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:876:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:877:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:880:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:887:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:888:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:891:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:898:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:899:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:902:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:908:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:909:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:912:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:918:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:919:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:922:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:928:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:929:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:932:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:938:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:939:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:942:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:948:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:949:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:952:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:957:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:958:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:961:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:966:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:967:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:970:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:975:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:976:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:979:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:984:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:985:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:988:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:998:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1005:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1006:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1009:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1015:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1016:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1019:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1028:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1029:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1032:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1037:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1038:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1041:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1050:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1051:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1054:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1059:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1060:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1063:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1068:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1069:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1072:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1077:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1078:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1081:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1086:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1088:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1091:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1100:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1101:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1104:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1110:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1111:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1114:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1121:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1122:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1125:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1130:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1131:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1134:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1140:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1141:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1144:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1150:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1151:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1154:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1161:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1162:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1165:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1172:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1173:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1176:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1180:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1181:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1184:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1190:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1191:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1194:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1201:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1202:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1205:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1211:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1212:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1215:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1223:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1224:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1227:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1236:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1237:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1240:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1248:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1249:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1252:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1259:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1260:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1263:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1272:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1273:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1276:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1282:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1283:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1286:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1294:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1295:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1298:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1306:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1307:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1310:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1314:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1315:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1318:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1322:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1323:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1326:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1334:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1335:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1338:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1344:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1345:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1348:9-12: Unexpected keyword argument `key` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1356:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1357:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryVehicleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1377:9-12: Unexpected keyword argument `key` in function `TeslemetryTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1383:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1387:9-12: Unexpected keyword argument `key` in function `TeslemetryTimeEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1407:9-12: Unexpected keyword argument `key` in function `TeslemetryEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1415:9-12: Unexpected keyword argument `key` in function `TeslemetryEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1421:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1424:9-12: Unexpected keyword argument `key` in function `TeslemetryEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1430:9-24: Unexpected keyword argument `entity_category` in function `TeslemetryEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1431:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1434:9-12: Unexpected keyword argument `key` in function `TeslemetryEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1442:9-12: Unexpected keyword argument `key` in function `TeslemetryEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1450:9-12: Unexpected keyword argument `key` in function `TeslemetryEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1458:9-12: Unexpected keyword argument `key` in function `TeslemetryEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1466:9-12: Unexpected keyword argument `key` in function `TeslemetryEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1474:9-12: Unexpected keyword argument `key` in function `TeslemetryEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1480:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetryEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1483:9-12: Unexpected keyword argument `key` in function `TeslemetryEnergySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1505:9-12: Unexpected keyword argument `key` in function `TeslemetrySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1506:9-24: Unexpected keyword argument `entity_category` in function `TeslemetrySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1507:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetrySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1510:9-12: Unexpected keyword argument `key` in function `TeslemetrySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1511:9-24: Unexpected keyword argument `entity_category` in function `TeslemetrySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1512:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TeslemetrySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1515:9-12: Unexpected keyword argument `key` in function `TeslemetrySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1523:9-12: Unexpected keyword argument `key` in function `TeslemetrySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1530:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1531:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1536:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1537:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1543:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1549:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/sensor.py:1633:5-23: Class member `TeslemetryStreamSensorEntity.entity_description` overrides parent class `TeslemetryVehicleStreamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/sensor.py:1633:5-23: Class member `TeslemetryStreamSensorEntity.entity_description` overrides parent class `RestoreSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/sensor.py:1667:5-23: Class member `TeslemetryVehicleSensorEntity.entity_description` overrides parent class `TeslemetryVehiclePollingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/sensor.py:1667:5-23: Class member `TeslemetryVehicleSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/sensor.py:1693:5-23: Class member `TeslemetryStreamTimeSensorEntity.entity_description` overrides parent class `TeslemetryVehicleStreamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/sensor.py:1693:5-23: Class member `TeslemetryStreamTimeSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/sensor.py:1730:5-23: Class member `TeslemetryVehicleTimeSensorEntity.entity_description` overrides parent class `TeslemetryVehiclePollingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/sensor.py:1730:5-23: Class member `TeslemetryVehicleTimeSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/sensor.py:1756:5-23: Class member `TeslemetryEnergyLiveSensorEntity.entity_description` overrides parent class `TeslemetryEnergyLiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/sensor.py:1756:5-23: Class member `TeslemetryEnergyLiveSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/sensor.py:1776:5-23: Class member `TeslemetryWallConnectorSensorEntity.entity_description` overrides parent class `TeslemetryWallConnectorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/sensor.py:1776:5-23: Class member `TeslemetryWallConnectorSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/sensor.py:1800:5-23: Class member `TeslemetryEnergyInfoSensorEntity.entity_description` overrides parent class `TeslemetryEnergyInfoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/sensor.py:1820:5-23: Class member `TeslemetryEnergyHistorySensorEntity.entity_description` overrides parent class `TeslemetryEnergyHistoryEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/services.py:85:12-24: `config_entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/teslemetry/services.py:97:12-24: `vehicle_data` may be uninitialized [unbound-name] +ERROR homeassistant/components/teslemetry/services.py:109:12-23: `energy_data` may be uninitialized [unbound-name] +ERROR homeassistant/components/teslemetry/services.py:163:81-85: Argument `int | None` is not assignable to parameter `time` with type `int` in function `tesla_fleet_api.tesla.vehicle.fleet.VehicleFleet.set_scheduled_charging` [bad-argument-type] +ERROR homeassistant/components/teslemetry/services.py:223:17-31: Argument `int | None` is not assignable to parameter `departure_time` with type `int` in function `tesla_fleet_api.tesla.vehicle.fleet.VehicleFleet.set_scheduled_departure` [bad-argument-type] +ERROR homeassistant/components/teslemetry/services.py:226:17-34: Argument `int | None` is not assignable to parameter `end_off_peak_time` with type `int` in function `tesla_fleet_api.tesla.vehicle.fleet.VehicleFleet.set_scheduled_departure` [bad-argument-type] +ERROR homeassistant/components/teslemetry/services.py:256:17-40: Argument `Any | None` is not assignable to parameter `on` with type `bool` in function `tesla_fleet_api.tesla.vehicle.fleet.VehicleFleet.set_valet_mode` [bad-argument-type] +ERROR homeassistant/components/teslemetry/services.py:282:50-70: Argument `Any | None` is not assignable to parameter `pin` with type `int | str` in function `tesla_fleet_api.tesla.vehicle.fleet.VehicleFleet.speed_limit_activate` [bad-argument-type] +ERROR homeassistant/components/teslemetry/services.py:286:52-72: Argument `Any | None` is not assignable to parameter `pin` with type `int | str` in function `tesla_fleet_api.tesla.vehicle.fleet.VehicleFleet.speed_limit_deactivate` [bad-argument-type] +ERROR homeassistant/components/teslemetry/services.py:309:43-75: Argument `Any | None` is not assignable to parameter `settings` with type `dict[str, Any]` in function `tesla_fleet_api.tesla.energysite.EnergySite.time_of_use_settings` [bad-argument-type] +ERROR homeassistant/components/teslemetry/switch.py:55:9-12: Unexpected keyword argument `key` in function `TeslemetrySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/switch.py:65:9-12: Unexpected keyword argument `key` in function `TeslemetrySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/switch.py:76:9-12: Unexpected keyword argument `key` in function `TeslemetrySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/switch.py:90:9-12: Unexpected keyword argument `key` in function `TeslemetrySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/switch.py:103:9-12: Unexpected keyword argument `key` in function `TeslemetrySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/switch.py:116:9-12: Unexpected keyword argument `key` in function `TeslemetrySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/switch.py:128:9-12: Unexpected keyword argument `key` in function `TeslemetrySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/switch.py:142:9-12: Unexpected keyword argument `key` in function `TeslemetrySwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/teslemetry/switch.py:202:5-23: Class member `TeslemetryVehicleSwitchEntity._attr_device_class` overrides parent class `TeslemetryRootEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/switch.py:203:5-23: Class member `TeslemetryVehicleSwitchEntity.entity_description` overrides parent class `TeslemetryRootEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/switch.py:203:5-23: Class member `TeslemetryVehicleSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/switch.py:232:14-32: Class member `TeslemetryVehiclePollingVehicleSwitchEntity.entity_description` overrides parent class `TeslemetryVehiclePollingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/switch.py:260:14-32: Class member `TeslemetryStreamingVehicleSwitchEntity.entity_description` overrides parent class `TeslemetryVehicleStreamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/switch.py:260:14-32: Class member `TeslemetryStreamingVehicleSwitchEntity.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/switch.py:293:5-23: Class member `TeslemetryChargeFromGridSwitchEntity._attr_device_class` overrides parent class `TeslemetryEnergyInfoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/switch.py:338:5-23: Class member `TeslemetryStormModeSwitchEntity._attr_device_class` overrides parent class `TeslemetryEnergyInfoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/update.py:52:5-29: Class member `TeslemetryUpdateEntity._attr_supported_features` overrides parent class `TeslemetryRootEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/update.py:91:18-42: Class member `TeslemetryVehiclePollingUpdateEntity._attr_supported_features` overrides parent class `TeslemetryVehiclePollingEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/update.py:158:18-42: Class member `TeslemetryStreamingUpdateEntity._attr_supported_features` overrides parent class `TeslemetryVehicleStreamEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/teslemetry/update.py:158:18-42: Class member `TeslemetryStreamingUpdateEntity._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/binary_sensor.py:35:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:40:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:42:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:45:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:48:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:51:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:52:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:55:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:56:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:59:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:60:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:63:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:65:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:69:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:73:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:74:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:77:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:78:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:81:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:84:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:87:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:89:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:92:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:95:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:98:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:102:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:104:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:107:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:109:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:112:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:114:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:117:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:119:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:122:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:124:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:127:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:129:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:132:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:134:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:137:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:139:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:142:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:144:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:147:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:149:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:152:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:154:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:157:9-12: Unexpected keyword argument `key` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:159:9-24: Unexpected keyword argument `entity_category` in function `TessieBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:164:35-38: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:165:35-38: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:166:35-38: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:172:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/binary_sensor.py:208:5-23: Class member `TessieBinarySensorEntity.entity_description` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/binary_sensor.py:208:5-23: Class member `TessieBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/binary_sensor.py:228:5-23: Class member `TessieEnergyLiveBinarySensorEntity.entity_description` overrides parent class `TessieEnergyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/binary_sensor.py:248:5-23: Class member `TessieEnergyInfoBinarySensorEntity.entity_description` overrides parent class `TessieEnergyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/button.py:36:35-38: Unexpected keyword argument `key` in function `TessieButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/button.py:37:35-38: Unexpected keyword argument `key` in function `TessieButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/button.py:38:35-38: Unexpected keyword argument `key` in function `TessieButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/button.py:40:9-12: Unexpected keyword argument `key` in function `TessieButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/button.py:43:9-12: Unexpected keyword argument `key` in function `TessieButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/button.py:46:35-38: Unexpected keyword argument `key` in function `TessieButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/button.py:68:5-23: Class member `TessieButtonEntity.entity_description` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/button.py:68:5-23: Class member `TessieButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/climate.py:51:5-29: Class member `TessieClimateEntity._attr_supported_features` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/climate.py:57:5-23: Class member `TessieClimateEntity._attr_preset_modes` overrides parent class `ClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/coordinator.py:48:5-17: Class member `TessieStateUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/coordinator.py:102:5-17: Class member `TessieEnergySiteLiveCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/coordinator.py:148:5-17: Class member `TessieEnergySiteInfoCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/cover.py:69:5-23: Class member `TessieWindowEntity._attr_device_class` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/cover.py:70:5-29: Class member `TessieWindowEntity._attr_supported_features` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/cover.py:110:5-23: Class member `TessieChargePortEntity._attr_device_class` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/cover.py:111:5-29: Class member `TessieChargePortEntity._attr_supported_features` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/cover.py:136:5-23: Class member `TessieFrontTrunkEntity._attr_device_class` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/cover.py:137:5-29: Class member `TessieFrontTrunkEntity._attr_supported_features` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/cover.py:157:5-23: Class member `TessieRearTrunkEntity._attr_device_class` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/cover.py:158:5-29: Class member `TessieRearTrunkEntity._attr_supported_features` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/cover.py:185:5-23: Class member `TessieSunroofEntity._attr_device_class` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/cover.py:186:5-29: Class member `TessieSunroofEntity._attr_supported_features` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/media_player.py:44:5-23: Class member `TessieMediaEntity._attr_device_class` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/number.py:51:9-12: Unexpected keyword argument `key` in function `TessieNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/number.py:62:9-12: Unexpected keyword argument `key` in function `TessieNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/number.py:74:9-12: Unexpected keyword argument `key` in function `TessieNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/number.py:99:9-12: Unexpected keyword argument `key` in function `TessieNumberBatteryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/number.py:104:9-12: Unexpected keyword argument `key` in function `TessieNumberBatteryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/number.py:139:5-23: Class member `TessieNumberEntity.entity_description` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/number.py:139:5-23: Class member `TessieNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/number.py:183:5-23: Class member `TessieEnergyInfoNumberSensorEntity.entity_description` overrides parent class `TessieEnergyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/number.py:183:5-23: Class member `TessieEnergyInfoNumberSensorEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/number.py:187:5-23: Class member `TessieEnergyInfoNumberSensorEntity._attr_device_class` overrides parent class `TessieEnergyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/sensor.py:60:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:66:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:72:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:79:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:85:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:89:9-24: Unexpected keyword argument `entity_category` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:92:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:96:9-24: Unexpected keyword argument `entity_category` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:99:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:103:9-24: Unexpected keyword argument `entity_category` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:106:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:108:9-24: Unexpected keyword argument `entity_category` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:112:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:119:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:124:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:127:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:132:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:135:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:141:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:145:9-24: Unexpected keyword argument `entity_category` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:148:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:154:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:159:9-24: Unexpected keyword argument `entity_category` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:162:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:168:9-24: Unexpected keyword argument `entity_category` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:171:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:177:9-24: Unexpected keyword argument `entity_category` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:180:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:186:9-24: Unexpected keyword argument `entity_category` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:189:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:195:9-24: Unexpected keyword argument `entity_category` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:198:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:205:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:212:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:217:9-24: Unexpected keyword argument `entity_category` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:220:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:225:9-24: Unexpected keyword argument `entity_category` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:228:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:234:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:238:9-24: Unexpected keyword argument `entity_category` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:241:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:247:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:256:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:257:9-24: Unexpected keyword argument `entity_category` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:264:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:272:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:278:9-24: Unexpected keyword argument `entity_category` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:281:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:287:9-24: Unexpected keyword argument `entity_category` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:288:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:291:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:299:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:307:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:315:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:323:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:331:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:337:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:343:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:344:9-24: Unexpected keyword argument `entity_category` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:345:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:351:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:359:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:365:9-12: Unexpected keyword argument `key` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:366:9-24: Unexpected keyword argument `entity_category` in function `TessieSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/sensor.py:419:5-23: Class member `TessieVehicleSensorEntity.entity_description` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/sensor.py:419:5-23: Class member `TessieVehicleSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/sensor.py:444:5-23: Class member `TessieEnergyLiveSensorEntity.entity_description` overrides parent class `TessieEnergyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/sensor.py:444:5-23: Class member `TessieEnergyLiveSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/sensor.py:464:5-23: Class member `TessieEnergyInfoSensorEntity.entity_description` overrides parent class `TessieEnergyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/sensor.py:464:5-23: Class member `TessieEnergyInfoSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/sensor.py:484:5-23: Class member `TessieWallConnectorSensorEntity.entity_description` overrides parent class `TessieWallConnectorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/sensor.py:484:5-23: Class member `TessieWallConnectorSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/switch.py:50:9-12: Unexpected keyword argument `key` in function `TessieSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/switch.py:55:9-12: Unexpected keyword argument `key` in function `TessieSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/switch.py:60:9-12: Unexpected keyword argument `key` in function `TessieSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/switch.py:65:9-12: Unexpected keyword argument `key` in function `TessieSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/switch.py:70:9-12: Unexpected keyword argument `key` in function `TessieSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tessie/switch.py:114:5-23: Class member `TessieSwitchEntity._attr_device_class` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/switch.py:115:5-23: Class member `TessieSwitchEntity.entity_description` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/switch.py:115:5-23: Class member `TessieSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tessie/update.py:35:5-29: Class member `TessieUpdateEntity._attr_supported_features` overrides parent class `TessieEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/text/__init__.py:126:5-23: Class member `TextEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/text/__init__.py:132:5-16: Class member `TextEntity._attr_state` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tfiac/climate.py:10:1-26: Could not find import of `pytfiac` [missing-import] +ERROR homeassistant/components/thermobeacon/__init__.py:50:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/thermobeacon/sensor.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermobeacon/sensor.py:44:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermobeacon/sensor.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermobeacon/sensor.py:56:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermobeacon/sensor.py:60:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermobeacon/sensor.py:61:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermobeacon/sensor.py:67:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermobeacon/sensor.py:76:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermobeacon/sensor.py:80:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermobeacon/sensor.py:81:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermobeacon/sensor.py:131:7-40: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/thermopro/__init__.py:71:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/thermopro/button.py:49:9-12: Unexpected keyword argument `key` in function `ThermoProButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermopro/button.py:50:9-24: Unexpected keyword argument `translation_key` in function `ThermoProButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermopro/button.py:51:9-13: Unexpected keyword argument `icon` in function `ThermoProButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermopro/button.py:52:9-24: Unexpected keyword argument `entity_category` in function `ThermoProButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermopro/button.py:91:29-36: Argument `str | None` is not assignable to parameter `address` with type `str` in function `ThermoProButtonEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/thermopro/button.py:110:5-23: Class member `ThermoProButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/thermopro/sensor.py:43:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermopro/sensor.py:49:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermopro/sensor.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermopro/sensor.py:62:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermopro/sensor.py:68:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermopro/sensor.py:72:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thermopro/sensor.py:129:7-37: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/thermoworks_smoke/sensor.py:13:8-25: Could not find import of `thermoworks_smoke` [missing-import] +ERROR homeassistant/components/thethingsnetwork/coordinator.py:22:5-17: Class member `TTNCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/thethingsnetwork/sensor.py:54:5-15: Class member `TtnDataSensor._ttn_value` overrides parent class `TTNEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/thingspeak/__init__.py:6:8-18: Could not find import of `thingspeak` [missing-import] +ERROR homeassistant/components/thinkingcleaner/sensor.py:7:1-57: Could not find import of `pythinkingcleaner` [missing-import] +ERROR homeassistant/components/thinkingcleaner/sensor.py:27:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thinkingcleaner/sensor.py:28:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thinkingcleaner/sensor.py:30:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thinkingcleaner/sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thinkingcleaner/sensor.py:34:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thinkingcleaner/sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thinkingcleaner/sensor.py:38:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thinkingcleaner/switch.py:9:1-57: Could not find import of `pythinkingcleaner` [missing-import] +ERROR homeassistant/components/thinkingcleaner/switch.py:32:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thinkingcleaner/switch.py:33:9-13: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thinkingcleaner/switch.py:36:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thinkingcleaner/switch.py:37:9-13: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thinkingcleaner/switch.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thinkingcleaner/switch.py:41:9-13: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/thinkingcleaner/switch.py:101:31-42: `float` is not assignable to attribute `last_lock_time` with type `None` [bad-assignment] +ERROR homeassistant/components/thinkingcleaner/switch.py:120:35-39: `None` is not assignable to attribute `last_lock_time` with type `Never` [bad-assignment] +ERROR homeassistant/components/thomson/device_tracker.py:93:29-43: `list[Unknown]` is not assignable to attribute `last_results` with type `dict[Unknown, Unknown]` [bad-assignment] +ERROR homeassistant/components/thread/dataset_store.py:177:32-48: Type `None` is not iterable [not-iterable] +ERROR homeassistant/components/thread/dataset_store.py:181:16-20: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/thread/diagnostics.py:73:10-13: Expected a type form, got instance of `Module[pyroute2.NDB]` [not-a-type] +ERROR homeassistant/components/thread/diagnostics.py:104:26-29: Expected a type form, got instance of `Module[pyroute2.NDB]` [not-a-type] +ERROR homeassistant/components/thread/diagnostics.py:122:10-13: Expected a callable, got `Module[pyroute2.NDB]` [not-callable] +ERROR homeassistant/components/thread/diagnostics.py:158:9-34: Argument `() -> Unknown` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/thread/diagnostics.py:179:18-49: Cannot set item in `dict[str, TypedDict[Router]]` [unsupported-operation] +ERROR homeassistant/components/thread/diagnostics.py:195:21-44: Object of class `NoneType` has no attribute `update` +Object of class `list` has no attribute `update` +Object of class `str` has no attribute `update` [missing-attribute] +ERROR homeassistant/components/thread/diagnostics.py:198:21-50: Cannot set item in `list[str]` [unsupported-operation] +ERROR homeassistant/components/thread/diagnostics.py:198:21-50: Cannot set item in `str` [unsupported-operation] +ERROR homeassistant/components/thread/diagnostics.py:198:21-50: Cannot set item in `None` [unsupported-operation] +ERROR homeassistant/components/thread/diagnostics.py:200:36-57: Object of class `NoneType` has no attribute `keys` +Object of class `list` has no attribute `keys` +Object of class `str` has no attribute `keys` [missing-attribute] +ERROR homeassistant/components/threshold/config_flow.py:121:60-82: Argument `_HandlerT` is not assignable to parameter `entry_id` with type `str` in function `homeassistant.config_entries.ConfigEntries.async_get_entry` [bad-argument-type] +ERROR homeassistant/components/tibber/coordinator.py:39:5-17: Class member `TibberDataCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tibber/sensor.py:86:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:92:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:99:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:106:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:107:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:112:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:113:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:118:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:119:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:125:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:132:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:133:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:138:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:139:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:145:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:146:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:152:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:153:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:159:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:166:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:167:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:173:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:174:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:180:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:181:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:187:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:188:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:194:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:195:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:201:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:202:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:208:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:209:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:213:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:216:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:217:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:222:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:223:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:228:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:229:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:238:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:239:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:243:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:244:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:249:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:250:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:254:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:255:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tibber/sensor.py:416:14-32: Class member `TibberSensorElPrice._attr_native_value` overrides parent class `TibberSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tibber/sensor.py:452:14-32: Class member `TibberDataSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tibber/sensor.py:480:14-32: Class member `TibberSensorRT.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tibber/sensor.py:555:33-56: Object of class `NoneType` has no attribute `replace` [missing-attribute] +ERROR homeassistant/components/tibber/sensor.py:561:64-79: Cannot index into `dict[str, str]` [bad-index] +ERROR homeassistant/components/tikteck/light.py:8:8-15: Could not find import of `tikteck` [missing-import] +ERROR homeassistant/components/tikteck/light.py:73:31-37: `list[int]` is not assignable to attribute `_attr_hs_color` with type `tuple[float, float] | None` [bad-assignment] +ERROR homeassistant/components/tile/binary_sensor.py:30:9-12: Unexpected keyword argument `key` in function `TileBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tile/binary_sensor.py:31:9-24: Unexpected keyword argument `translation_key` in function `TileBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tile/binary_sensor.py:54:5-23: Class member `TileBinarySensor.entity_description` overrides parent class `TileEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tile/binary_sensor.py:54:5-23: Class member `TileBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tile/coordinator.py:23:5-17: Class member `TileCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tilt_ble/__init__.py:50:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/tilt_ble/sensor.py:30:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tilt_ble/sensor.py:36:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tilt_ble/sensor.py:43:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tilt_ble/sensor.py:47:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tilt_ble/sensor.py:104:7-32: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/tilt_pi/coordinator.py:24:5-17: Class member `TiltPiDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tilt_pi/sensor.py:39:9-12: Unexpected keyword argument `key` in function `TiltEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tilt_pi/sensor.py:46:9-12: Unexpected keyword argument `key` in function `TiltEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tilt_pi/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `TiltEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tilt_pi/sensor.py:77:5-23: Class member `TiltSensor.entity_description` overrides parent class `TiltEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tilt_pi/sensor.py:77:5-23: Class member `TiltSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/time/__init__.py:74:5-23: Class member `TimeEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/time/__init__.py:76:5-23: Class member `TimeEntity._attr_device_class` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/time/__init__.py:77:5-16: Class member `TimeEntity._attr_state` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/timer/reproduce_state.py:65:17-24: `service` may be uninitialized [unbound-name] +ERROR homeassistant/components/tmb/sensor.py:9:1-21: Could not find import of `tmb` [missing-import] +ERROR homeassistant/components/todoist/__init__.py:44:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/todoist/calendar.py:520:59-74: Argument `datetime | None` is not assignable to parameter `end` with type `date | datetime` in function `homeassistant.components.calendar.CalendarEvent.__init__` [bad-argument-type] +ERROR homeassistant/components/todoist/calendar.py:570:21-68: `>` is not supported between `None` and `datetime` [unsupported-operation] +ERROR homeassistant/components/todoist/calendar.py:576:35-49: Object of class `NoneType` has no attribute `date` [missing-attribute] +ERROR homeassistant/components/todoist/calendar.py:579:20-44: `<=` is not supported between `None` and `datetime` [unsupported-operation] +ERROR homeassistant/components/todoist/calendar.py:647:16-40: Object of class `NoneType` has no attribute `date` [missing-attribute] +ERROR homeassistant/components/todoist/calendar.py:647:45-60: Object of class `NoneType` has no attribute `date` [missing-attribute] +ERROR homeassistant/components/todoist/calendar.py:651:16-40: Object of class `NoneType` has no attribute `date` [missing-attribute] +ERROR homeassistant/components/todoist/calendar.py:651:45-60: Object of class `NoneType` has no attribute `date` [missing-attribute] +ERROR homeassistant/components/todoist/calendar.py:662:44-76: `<` is not supported between `datetime` and `None` [unsupported-operation] +ERROR homeassistant/components/todoist/calendar.py:662:44-76: `<` is not supported between `None` and `datetime` [unsupported-operation] +ERROR homeassistant/components/todoist/calendar.py:662:44-76: `<` is not supported between `None` and `None` [unsupported-operation] +ERROR homeassistant/components/togrill/coordinator.py:59:5-17: Class member `ToGrillCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/togrill/number.py:57:13-16: Unexpected keyword argument `key` in function `ToGrillNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/togrill/number.py:58:13-28: Unexpected keyword argument `translation_key` in function `ToGrillNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/togrill/number.py:59:13-37: Unexpected keyword argument `translation_placeholders` in function `ToGrillNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/togrill/number.py:65:13-17: Unexpected keyword argument `icon` in function `ToGrillNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/togrill/number.py:133:9-12: Unexpected keyword argument `key` in function `ToGrillNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/togrill/number.py:134:9-24: Unexpected keyword argument `translation_key` in function `ToGrillNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/togrill/number.py:170:5-23: Class member `ToGrillNumber.entity_description` overrides parent class `ToGrillEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/togrill/number.py:170:5-23: Class member `ToGrillNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/togrill/select.py:105:9-12: Unexpected keyword argument `key` in function `ToGrillSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/togrill/select.py:106:9-24: Unexpected keyword argument `translation_key` in function `ToGrillSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/togrill/select.py:115:9-12: Unexpected keyword argument `key` in function `ToGrillSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/togrill/select.py:116:9-24: Unexpected keyword argument `translation_key` in function `ToGrillSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/togrill/select.py:153:5-23: Class member `ToGrillSelect.entity_description` overrides parent class `ToGrillEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/togrill/select.py:153:5-23: Class member `ToGrillSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/togrill/sensor.py:54:9-12: Unexpected keyword argument `key` in function `ToGrillSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/togrill/sensor.py:68:9-12: Unexpected keyword argument `key` in function `ToGrillSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/togrill/sensor.py:71:9-24: Unexpected keyword argument `entity_category` in function `ToGrillSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/togrill/sensor.py:103:5-23: Class member `ToGrillSensor.entity_description` overrides parent class `ToGrillEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/togrill/sensor.py:103:5-23: Class member `ToGrillSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tolo/binary_sensor.py:35:5-23: Class member `ToloFlowInBinarySensor._attr_device_class` overrides parent class `ToloSaunaCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tolo/binary_sensor.py:56:5-23: Class member `ToloFlowOutBinarySensor._attr_device_class` overrides parent class `ToloSaunaCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tolo/climate.py:52:5-29: Class member `SaunaClimate._attr_supported_features` overrides parent class `ToloSaunaCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tolo/coordinator.py:33:5-17: Class member `ToloSaunaUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tolo/coordinator.py:51:55-80: Argument `BoundMethod[Self@ToloSaunaUpdateCoordinator, (self: Self@ToloSaunaUpdateCoordinator) -> ToloSaunaData]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tolo/fan.py:29:5-29: Class member `ToloFan._attr_supported_features` overrides parent class `ToloSaunaCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tolo/number.py:40:9-12: Unexpected keyword argument `key` in function `ToloNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/number.py:41:9-24: Unexpected keyword argument `translation_key` in function `ToloNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/number.py:48:9-12: Unexpected keyword argument `key` in function `ToloNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/number.py:49:9-24: Unexpected keyword argument `translation_key` in function `ToloNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/number.py:56:9-12: Unexpected keyword argument `key` in function `ToloNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/number.py:57:9-24: Unexpected keyword argument `translation_key` in function `ToloNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/number.py:81:5-23: Class member `ToloNumberEntity.entity_description` overrides parent class `ToloSaunaCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tolo/number.py:81:5-23: Class member `ToloNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tolo/select.py:31:9-12: Unexpected keyword argument `key` in function `ToloSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/select.py:32:9-24: Unexpected keyword argument `translation_key` in function `ToloSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/select.py:40:9-12: Unexpected keyword argument `key` in function `ToloSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/select.py:41:9-24: Unexpected keyword argument `translation_key` in function `ToloSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/select.py:70:5-23: Class member `ToloSelectEntity.entity_description` overrides parent class `ToloSaunaCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tolo/select.py:70:5-23: Class member `ToloSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tolo/sensor.py:41:9-12: Unexpected keyword argument `key` in function `ToloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `ToloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/sensor.py:43:9-24: Unexpected keyword argument `entity_category` in function `ToloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/sensor.py:49:9-12: Unexpected keyword argument `key` in function `ToloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `ToloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/sensor.py:52:9-24: Unexpected keyword argument `entity_category` in function `ToloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/sensor.py:58:9-12: Unexpected keyword argument `key` in function `ToloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `ToloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/sensor.py:60:9-24: Unexpected keyword argument `entity_category` in function `ToloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/sensor.py:67:9-12: Unexpected keyword argument `key` in function `ToloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `ToloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/sensor.py:69:9-24: Unexpected keyword argument `entity_category` in function `ToloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/sensor.py:76:9-12: Unexpected keyword argument `key` in function `ToloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `ToloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/sensor.py:78:9-24: Unexpected keyword argument `entity_category` in function `ToloSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/sensor.py:102:5-23: Class member `ToloSensorEntity.entity_description` overrides parent class `ToloSaunaCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tolo/sensor.py:102:5-23: Class member `ToloSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tolo/switch.py:29:9-12: Unexpected keyword argument `key` in function `ToloSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/switch.py:30:9-24: Unexpected keyword argument `translation_key` in function `ToloSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/switch.py:35:9-12: Unexpected keyword argument `key` in function `ToloSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/switch.py:36:9-24: Unexpected keyword argument `translation_key` in function `ToloSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tolo/switch.py:58:5-23: Class member `ToloSwitchEntity.entity_description` overrides parent class `ToloSaunaCoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tolo/switch.py:58:5-23: Class member `ToloSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tomato/device_tracker.py:69:18-31: Module `requests.auth` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/tomorrowio/__init__.py:35:11-22: `coordinator` may be uninitialized [unbound-name] +ERROR homeassistant/components/tomorrowio/config_flow.py:120:9-31: Class member `TomorrowioConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tomorrowio/coordinator.py:119:5-17: Class member `TomorrowioDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tomorrowio/coordinator.py:182:14-29: Class member `TomorrowioDataUpdateCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tomorrowio/coordinator.py:182:32-79: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@TomorrowioDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/tomorrowio/coordinator.py:194:32-86: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@TomorrowioDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/tomorrowio/sensor.py:111:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:119:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:120:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:128:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:137:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:147:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:148:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:162:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:163:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:176:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:177:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:183:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:184:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:195:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:196:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:203:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:211:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:218:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:227:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:236:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:246:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:254:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:255:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:261:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:262:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:267:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:268:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:273:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:274:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:279:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:280:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:285:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:286:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:291:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:292:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:297:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:298:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:303:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:304:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:309:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:310:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:314:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:315:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:320:9-12: Unexpected keyword argument `key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:321:9-24: Unexpected keyword argument `translation_key` in function `TomorrowioSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tomorrowio/sensor.py:355:5-23: Class member `BaseTomorrowioSensorEntity.entity_description` overrides parent class `TomorrowioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tomorrowio/sensor.py:355:5-23: Class member `BaseTomorrowioSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tomorrowio/weather.py:211:13-60: Argument `float | int | str | None` is not assignable to parameter `condition` with type `int | None` in function `TomorrowioWeatherEntity._translate_condition` [bad-argument-type] +ERROR homeassistant/components/toon/__init__.py:122:20-69: Argument `tuple[Literal['toon'], str | None]` is not assignable to parameter `via_device` with type `UndefinedType | tuple[str, str] | None` in function `homeassistant.helpers.device_registry.DeviceRegistry.async_get_or_create` [bad-argument-type] +ERROR homeassistant/components/toon/binary_sensor.py:53:5-23: Class member `ToonBinarySensor.entity_description` overrides parent class `ToonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/toon/binary_sensor.py:53:5-23: Class member `ToonBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/toon/binary_sensor.py:115:9-12: Unexpected keyword argument `key` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:116:9-13: Unexpected keyword argument `name` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:120:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:124:9-12: Unexpected keyword argument `key` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:125:9-13: Unexpected keyword argument `name` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:128:9-13: Unexpected keyword argument `icon` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:135:9-12: Unexpected keyword argument `key` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:136:9-13: Unexpected keyword argument `name` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:139:9-13: Unexpected keyword argument `icon` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:140:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:144:9-12: Unexpected keyword argument `key` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:145:9-13: Unexpected keyword argument `name` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:148:9-13: Unexpected keyword argument `icon` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:152:9-12: Unexpected keyword argument `key` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:153:9-13: Unexpected keyword argument `name` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:156:9-13: Unexpected keyword argument `icon` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:157:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:161:9-12: Unexpected keyword argument `key` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:162:9-13: Unexpected keyword argument `name` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:165:9-13: Unexpected keyword argument `icon` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:169:9-12: Unexpected keyword argument `key` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:170:9-13: Unexpected keyword argument `name` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:174:9-13: Unexpected keyword argument `icon` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:178:9-12: Unexpected keyword argument `key` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:179:9-13: Unexpected keyword argument `name` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:183:9-13: Unexpected keyword argument `icon` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/binary_sensor.py:184:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/climate.py:53:5-29: Class member `ToonThermostatDevice._attr_supported_features` overrides parent class `ToonDisplayDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/toon/climate.py:91:27-74: No matching overload found for function `dict.get` called with arguments: (int | None) [no-matching-overload] +ERROR homeassistant/components/toon/climate.py:112:58-69: Argument `Any | None` is not assignable to parameter `temperature` with type `float` in function `toonapi.toon.Toon.set_current_setpoint` [bad-argument-type] +ERROR homeassistant/components/toon/coordinator.py:31:5-17: Class member `ToonDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/toon/coordinator.py:153:20-44: Returned type `Status | None` is not assignable to declared return type `Status` [bad-return] +ERROR homeassistant/components/toon/entity.py:26:25-59: Argument `set[tuple[str, str | None]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/toon/entity.py:28:19-64: Object of class `NoneType` has no attribute `rpartition` [missing-attribute] +ERROR homeassistant/components/toon/entity.py:30:24-69: Object of class `NoneType` has no attribute `rpartition` [missing-attribute] +ERROR homeassistant/components/toon/entity.py:131:24-46: Argument `tuple[Literal['toon'], str | None]` is not assignable to parameter `via_device` with type `tuple[str, str]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/toon/sensor.py:72:5-23: Class member `ToonSensor.entity_description` overrides parent class `ToonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/toon/sensor.py:72:5-23: Class member `ToonSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/toon/sensor.py:134:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:135:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:140:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:145:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:146:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:151:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:156:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:157:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:161:9-13: Unexpected keyword argument `icon` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:165:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:166:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:171:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:175:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:176:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:184:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:185:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:191:9-13: Unexpected keyword argument `icon` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:195:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:196:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:205:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:206:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:210:9-13: Unexpected keyword argument `icon` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:214:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:215:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:220:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:224:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:225:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:230:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:234:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:235:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:241:9-13: Unexpected keyword argument `icon` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:245:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:246:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:254:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:255:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:264:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:265:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:274:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:275:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:284:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:285:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:294:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:295:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:304:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:305:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:309:9-13: Unexpected keyword argument `icon` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:310:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:314:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:315:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:319:9-13: Unexpected keyword argument `icon` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:320:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:325:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:326:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:330:9-13: Unexpected keyword argument `icon` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:331:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:336:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:337:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:341:9-13: Unexpected keyword argument `icon` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:342:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:348:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:349:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:353:9-13: Unexpected keyword argument `icon` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:354:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:359:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:360:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:366:9-13: Unexpected keyword argument `icon` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:367:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:374:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:375:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:384:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:385:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:393:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:394:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:403:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:404:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:413:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:414:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:419:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:423:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:424:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:429:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:433:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:434:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:439:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:443:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:444:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:448:9-13: Unexpected keyword argument `icon` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:456:9-12: Unexpected keyword argument `key` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:457:9-13: Unexpected keyword argument `name` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:461:9-13: Unexpected keyword argument `icon` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/sensor.py:462:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ToonSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/switch.py:42:5-23: Class member `ToonSwitch.entity_description` overrides parent class `ToonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/toon/switch.py:42:5-23: Class member `ToonSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/toon/switch.py:114:9-12: Unexpected keyword argument `key` in function `ToonSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/switch.py:115:9-13: Unexpected keyword argument `name` in function `ToonSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/switch.py:118:9-13: Unexpected keyword argument `icon` in function `ToonSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/switch.py:122:9-12: Unexpected keyword argument `key` in function `ToonSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/switch.py:123:9-13: Unexpected keyword argument `name` in function `ToonSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/toon/switch.py:126:9-13: Unexpected keyword argument `icon` in function `ToonSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/__init__.py:33:51-35:10: Unpacked argument `tuple[Any, Any, dict[int, Unknown], Any]` is not assignable to parameter `*args` with type `tuple[str, str, dict[str, str] | None, bool, int, bool]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/totalconnect/alarm_control_panel.py:62:5-29: Class member `TotalConnectAlarm._attr_supported_features` overrides parent class `TotalConnectLocationEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/totalconnect/alarm_control_panel.py:128:52-64: Argument `BoundMethod[Self@TotalConnectAlarm, (self: Self@TotalConnectAlarm) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/totalconnect/alarm_control_panel.py:139:42-70: Argument `dict[str, Any | None]` is not assignable to parameter `translation_placeholders` with type `dict[str, str] | None` in function `homeassistant.exceptions.HomeAssistantError.__init__` [bad-argument-type] +ERROR homeassistant/components/totalconnect/alarm_control_panel.py:151:52-66: Argument `BoundMethod[Self@TotalConnectAlarm, (self: Self@TotalConnectAlarm) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/totalconnect/alarm_control_panel.py:162:42-70: Argument `dict[str, Any | None]` is not assignable to parameter `translation_placeholders` with type `dict[str, str] | None` in function `homeassistant.exceptions.HomeAssistantError.__init__` [bad-argument-type] +ERROR homeassistant/components/totalconnect/alarm_control_panel.py:174:52-66: Argument `BoundMethod[Self@TotalConnectAlarm, (self: Self@TotalConnectAlarm) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/totalconnect/alarm_control_panel.py:185:42-70: Argument `dict[str, Any | None]` is not assignable to parameter `translation_placeholders` with type `dict[str, str] | None` in function `homeassistant.exceptions.HomeAssistantError.__init__` [bad-argument-type] +ERROR homeassistant/components/totalconnect/alarm_control_panel.py:197:52-67: Argument `BoundMethod[Self@TotalConnectAlarm, (self: Self@TotalConnectAlarm) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/totalconnect/alarm_control_panel.py:208:42-70: Argument `dict[str, Any | None]` is not assignable to parameter `translation_placeholders` with type `dict[str, str] | None` in function `homeassistant.exceptions.HomeAssistantError.__init__` [bad-argument-type] +ERROR homeassistant/components/totalconnect/alarm_control_panel.py:219:52-74: Argument `BoundMethod[Self@TotalConnectAlarm, (self: Self@TotalConnectAlarm) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/totalconnect/alarm_control_panel.py:230:42-70: Argument `dict[str, Any | None]` is not assignable to parameter `translation_placeholders` with type `dict[str, str] | None` in function `homeassistant.exceptions.HomeAssistantError.__init__` [bad-argument-type] +ERROR homeassistant/components/totalconnect/alarm_control_panel.py:241:52-74: Argument `BoundMethod[Self@TotalConnectAlarm, (self: Self@TotalConnectAlarm) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/totalconnect/alarm_control_panel.py:252:42-70: Argument `dict[str, Any | None]` is not assignable to parameter `translation_placeholders` with type `dict[str, str] | None` in function `homeassistant.exceptions.HomeAssistantError.__init__` [bad-argument-type] +ERROR homeassistant/components/totalconnect/alarm_control_panel.py:264:51-77: Cannot index into `dict[str, str]` [bad-index] +ERROR homeassistant/components/totalconnect/binary_sensor.py:54:5-8: Unexpected keyword argument `key` in function `TotalConnectZoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/binary_sensor.py:55:5-9: Unexpected keyword argument `name` in function `TotalConnectZoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/binary_sensor.py:62:9-12: Unexpected keyword argument `key` in function `TotalConnectZoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/binary_sensor.py:64:9-24: Unexpected keyword argument `entity_category` in function `TotalConnectZoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/binary_sensor.py:68:9-12: Unexpected keyword argument `key` in function `TotalConnectZoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/binary_sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `TotalConnectZoneBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/binary_sensor.py:85:9-12: Unexpected keyword argument `key` in function `TotalConnectAlarmBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/binary_sensor.py:87:9-24: Unexpected keyword argument `entity_category` in function `TotalConnectAlarmBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/binary_sensor.py:91:9-12: Unexpected keyword argument `key` in function `TotalConnectAlarmBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/binary_sensor.py:93:9-24: Unexpected keyword argument `entity_category` in function `TotalConnectAlarmBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/binary_sensor.py:97:9-12: Unexpected keyword argument `key` in function `TotalConnectAlarmBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/binary_sensor.py:99:9-24: Unexpected keyword argument `entity_category` in function `TotalConnectAlarmBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/binary_sensor.py:103:9-12: Unexpected keyword argument `key` in function `TotalConnectAlarmBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/binary_sensor.py:108:9-12: Unexpected keyword argument `key` in function `TotalConnectAlarmBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/binary_sensor.py:113:9-12: Unexpected keyword argument `key` in function `TotalConnectAlarmBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/binary_sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `TotalConnectAlarmBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/binary_sensor.py:141:64-75: Argument `int` is not assignable to parameter `location_id` with type `str` in function `TotalConnectZoneBinarySensor.__init__` [bad-argument-type] +ERROR homeassistant/components/totalconnect/binary_sensor.py:151:25-36: Argument `int` is not assignable to parameter `location_id` with type `str` in function `TotalConnectZoneBinarySensor.__init__` [bad-argument-type] +ERROR homeassistant/components/totalconnect/binary_sensor.py:162:5-23: Class member `TotalConnectZoneBinarySensor.entity_description` overrides parent class `TotalConnectZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/totalconnect/binary_sensor.py:162:5-23: Class member `TotalConnectZoneBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/totalconnect/binary_sensor.py:196:5-23: Class member `TotalConnectAlarmBinarySensor.entity_description` overrides parent class `TotalConnectLocationEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/totalconnect/binary_sensor.py:196:5-23: Class member `TotalConnectAlarmBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/totalconnect/button.py:27:9-12: Unexpected keyword argument `key` in function `TotalConnectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/button.py:28:9-24: Unexpected keyword argument `translation_key` in function `TotalConnectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/button.py:32:9-12: Unexpected keyword argument `key` in function `TotalConnectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/button.py:33:9-24: Unexpected keyword argument `translation_key` in function `TotalConnectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/totalconnect/button.py:55:61-72: Argument `int` is not assignable to parameter `location_id` with type `str` in function `TotalConnectZoneBypassButton.__init__` [bad-argument-type] +ERROR homeassistant/components/totalconnect/button.py:86:5-23: Class member `TotalConnectPanelButton.entity_description` overrides parent class `TotalConnectLocationEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/totalconnect/button.py:86:5-23: Class member `TotalConnectPanelButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/totalconnect/config_flow.py:55:64-57:18: Unpacked argument `tuple[str, str, None]` is not assignable to parameter `*args` with type `tuple[str, str, dict[str, str] | None, bool, int, bool]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/totalconnect/config_flow.py:156:51-161:14: Unpacked argument `tuple[str | None, str, dict[int, str | None]]` is not assignable to parameter `*args` with type `tuple[str, str, dict[str, str] | None, bool, int, bool]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/totalconnect/config_flow.py:188:9-31: Class member `TotalConnectConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/totalconnect/coordinator.py:29:5-17: Class member `TotalConnectDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/totalconnect/coordinator.py:49:48-69: Argument `BoundMethod[Self@TotalConnectDataUpdateCoordinator, (self: Self@TotalConnectDataUpdateCoordinator) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/totalconnect/diagnostics.py:40:19-44: Object of class `NoneType` has no attribute `_master_user` [missing-attribute] +ERROR homeassistant/components/totalconnect/diagnostics.py:41:23-47: Object of class `NoneType` has no attribute `_user_admin` [missing-attribute] +ERROR homeassistant/components/totalconnect/diagnostics.py:42:25-51: Object of class `NoneType` has no attribute `_config_admin` [missing-attribute] +ERROR homeassistant/components/totalconnect/diagnostics.py:43:29-58: Object of class `NoneType` has no attribute `security_problem` [missing-attribute] +ERROR homeassistant/components/totalconnect/diagnostics.py:44:21-43: Object of class `NoneType` has no attribute `_features` [missing-attribute] +ERROR homeassistant/components/totalconnect/diagnostics.py:61:35-37: Cannot set item in `dict[str, ArmingState | bool | dict[Unknown, Unknown] | int | str | None]` [unsupported-operation] +ERROR homeassistant/components/totalconnect/diagnostics.py:74:38-40: Cannot set item in `dict[str, ArmingState | bool | dict[Unknown, Unknown] | int | str | None]` [unsupported-operation] +ERROR homeassistant/components/totalconnect/diagnostics.py:90:33-35: Cannot set item in `dict[str, ArmingState | bool | dict[Unknown, Unknown] | int | str | None]` [unsupported-operation] +ERROR homeassistant/components/totalconnect/entity.py:32:25-57: Argument `set[tuple[str, Any | None]]` is not assignable to parameter `identifiers` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/touchline/climate.py:7:1-45: Could not find import of `pytouchline_extended` [missing-import] +ERROR homeassistant/components/touchline/climate.py:101:40-53: `Literal[HVACMode.HEAT]` is not assignable to attribute `_current_operation_mode` with type `None` [bad-assignment] +ERROR homeassistant/components/touchline_sl/climate.py:43:5-29: Class member `TouchlineSLZone._attr_supported_features` overrides parent class `TouchlineSLZoneEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/touchline_sl/climate.py:102:38-51: Object of class `LocalScheduleModel` has no attribute `name` +Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR homeassistant/components/touchline_sl/coordinator.py:36:5-17: Class member `TouchlineSLModuleCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/binary_sensor.py:35:9-12: Unexpected keyword argument `key` in function `TPLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/binary_sensor.py:39:9-12: Unexpected keyword argument `key` in function `TPLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/binary_sensor.py:43:9-12: Unexpected keyword argument `key` in function `TPLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/binary_sensor.py:47:9-12: Unexpected keyword argument `key` in function `TPLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/binary_sensor.py:51:9-12: Unexpected keyword argument `key` in function `TPLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/binary_sensor.py:54:9-12: Unexpected keyword argument `key` in function `TPLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/binary_sensor.py:57:9-12: Unexpected keyword argument `key` in function `TPLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/binary_sensor.py:61:9-12: Unexpected keyword argument `key` in function `TPLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/binary_sensor.py:65:9-12: Unexpected keyword argument `key` in function `TPLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/binary_sensor.py:108:5-23: Class member `TPLinkBinarySensorEntity.entity_description` overrides parent class `CoordinatedTPLinkFeatureEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/binary_sensor.py:108:5-23: Class member `TPLinkBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/button.py:38:9-12: Unexpected keyword argument `key` in function `TPLinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/button.py:46:9-12: Unexpected keyword argument `key` in function `TPLinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/button.py:54:9-12: Unexpected keyword argument `key` in function `TPLinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/button.py:58:9-12: Unexpected keyword argument `key` in function `TPLinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/button.py:62:9-12: Unexpected keyword argument `key` in function `TPLinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/button.py:66:9-12: Unexpected keyword argument `key` in function `TPLinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/button.py:70:9-12: Unexpected keyword argument `key` in function `TPLinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/button.py:73:35-38: Unexpected keyword argument `key` in function `TPLinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/button.py:74:35-38: Unexpected keyword argument `key` in function `TPLinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/button.py:76:9-12: Unexpected keyword argument `key` in function `TPLinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/button.py:79:9-12: Unexpected keyword argument `key` in function `TPLinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/button.py:82:9-12: Unexpected keyword argument `key` in function `TPLinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/button.py:85:9-12: Unexpected keyword argument `key` in function `TPLinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/button.py:88:9-12: Unexpected keyword argument `key` in function `TPLinkButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/button.py:129:5-23: Class member `TPLinkButtonEntity.entity_description` overrides parent class `CoordinatedTPLinkFeatureEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/button.py:129:5-23: Class member `TPLinkButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/camera.py:45:9-12: Unexpected keyword argument `key` in function `TPLinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/camera.py:46:9-24: Unexpected keyword argument `translation_key` in function `TPLinkCameraEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/camera.py:95:5-29: Class member `TPLinkCameraEntity._attr_supported_features` overrides parent class `CoordinatedTPLinkModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/camera.py:97:5-23: Class member `TPLinkCameraEntity.entity_description` overrides parent class `CoordinatedTPLinkModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/camera.py:97:5-23: Class member `TPLinkCameraEntity.entity_description` overrides parent class `Camera` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/camera.py:228:17-30: Argument `asyncio.streams.StreamReader` is not assignable to parameter `stream` with type `aiohttp.streams.StreamReader` in function `homeassistant.helpers.aiohttp_client.async_aiohttp_proxy_stream` [bad-argument-type] +ERROR homeassistant/components/tplink/climate.py:64:9-12: Unexpected keyword argument `key` in function `TPLinkClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/climate.py:105:5-29: Class member `TPLinkClimateEntity._attr_supported_features` overrides parent class `CoordinatedTPLinkModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/climate.py:113:5-23: Class member `TPLinkClimateEntity.entity_description` overrides parent class `CoordinatedTPLinkModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/climate.py:113:5-23: Class member `TPLinkClimateEntity.entity_description` overrides parent class `ClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/config_flow.py:140:17-39: `entry_conn_params_dict` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/config_flow.py:141:17-40: `device_conn_params_dict` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/config_flow.py:459:27-29: `un` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/config_flow.py:459:34-36: `pw` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/config_flow.py:460:40-42: `un` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/config_flow.py:460:54-56: `pw` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/config_flow.py:479:66-68: `un` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/config_flow.py:479:70-72: `pw` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/config_flow.py:486:62-64: `un` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/config_flow.py:486:66-68: `pw` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/config_flow.py:491:58-60: `un` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/config_flow.py:491:62-64: `pw` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/config_flow.py:580:16-27: Object of class `object` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/tplink/config_flow.py:582:24-43: `_FlowContextT` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/tplink/coordinator.py:42:5-17: Class member `TPLinkDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/coordinator.py:122:41-57: `stale_device_ids` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/coordinator.py:142:20-37: `child_coordinator` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/entity.py:165:5-23: Class member `CoordinatedTPLinkEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/entity.py:300:5-23: Class member `CoordinatedTPLinkFeatureEntity.entity_description` overrides parent class `CoordinatedTPLinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/entity.py:301:5-13: Class member `CoordinatedTPLinkFeatureEntity._feature` overrides parent class `CoordinatedTPLinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/entity.py:358:16-31: `entity_category` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/entity.py:540:5-23: Class member `CoordinatedTPLinkModuleEntity.entity_description` overrides parent class `CoordinatedTPLinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/entity.py:678:45-64: `has_parent_entities` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/fan.py:53:9-12: Unexpected keyword argument `key` in function `TPLinkFanEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/fan.py:97:5-29: Class member `TPLinkFanEntity._attr_supported_features` overrides parent class `CoordinatedTPLinkModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/fan.py:103:5-23: Class member `TPLinkFanEntity.entity_description` overrides parent class `CoordinatedTPLinkModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/fan.py:103:5-23: Class member `TPLinkFanEntity.entity_description` overrides parent class `FanEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/light.py:181:9-12: Unexpected keyword argument `key` in function `TPLinkLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/light.py:189:9-12: Unexpected keyword argument `key` in function `TPLinkLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/light.py:243:5-29: Class member `TPLinkLightEntity._attr_supported_features` overrides parent class `CoordinatedTPLinkModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/light.py:246:5-23: Class member `TPLinkLightEntity.entity_description` overrides parent class `CoordinatedTPLinkModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/light.py:246:5-23: Class member `TPLinkLightEntity.entity_description` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/light.py:285:62-72: `transition` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/light.py:293:16-26: `brightness` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/light.py:293:28-38: `transition` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/light.py:354:51-61: `transition` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/number.py:46:9-12: Unexpected keyword argument `key` in function `TPLinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/number.py:50:9-12: Unexpected keyword argument `key` in function `TPLinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/number.py:54:9-12: Unexpected keyword argument `key` in function `TPLinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/number.py:58:9-12: Unexpected keyword argument `key` in function `TPLinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/number.py:63:9-12: Unexpected keyword argument `key` in function `TPLinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/number.py:67:9-12: Unexpected keyword argument `key` in function `TPLinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/number.py:71:9-12: Unexpected keyword argument `key` in function `TPLinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/number.py:75:9-12: Unexpected keyword argument `key` in function `TPLinkNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/number.py:117:5-23: Class member `TPLinkNumberEntity.entity_description` overrides parent class `CoordinatedTPLinkFeatureEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/number.py:117:5-23: Class member `TPLinkNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/select.py:40:9-12: Unexpected keyword argument `key` in function `TPLinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/select.py:43:9-12: Unexpected keyword argument `key` in function `TPLinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/select.py:46:9-12: Unexpected keyword argument `key` in function `TPLinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/select.py:87:5-23: Class member `TPLinkSelectEntity.entity_description` overrides parent class `CoordinatedTPLinkFeatureEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/select.py:87:5-23: Class member `TPLinkSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/sensor.py:46:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:51:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:56:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:61:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:66:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:71:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:76:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:82:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:83:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:87:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:92:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:96:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:99:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:104:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:108:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:112:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:116:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:121:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:125:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:129:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:136:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:141:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:142:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:146:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:154:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:158:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:162:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:163:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:171:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:172:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:177:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:181:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:182:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:189:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:190:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:197:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:198:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:205:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:206:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:213:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:214:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:221:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:222:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:229:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:230:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:237:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:238:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:245:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:246:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:253:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:254:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:261:9-12: Unexpected keyword argument `key` in function `TPLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/sensor.py:305:5-23: Class member `TPLinkSensorEntity.entity_description` overrides parent class `CoordinatedTPLinkFeatureEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/sensor.py:305:5-23: Class member `TPLinkSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/siren.py:55:9-12: Unexpected keyword argument `key` in function `TPLinkSirenEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/siren.py:96:5-29: Class member `TPLinkSirenEntity._attr_supported_features` overrides parent class `CoordinatedTPLinkModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/siren.py:104:5-23: Class member `TPLinkSirenEntity.entity_description` overrides parent class `CoordinatedTPLinkModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/siren.py:104:5-23: Class member `TPLinkSirenEntity.entity_description` overrides parent class `SirenEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/siren.py:147:20-26: `volume` may be uninitialized [unbound-name] +ERROR homeassistant/components/tplink/switch.py:42:9-12: Unexpected keyword argument `key` in function `TPLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/switch.py:45:9-12: Unexpected keyword argument `key` in function `TPLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/switch.py:48:9-12: Unexpected keyword argument `key` in function `TPLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/switch.py:51:9-12: Unexpected keyword argument `key` in function `TPLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/switch.py:54:9-12: Unexpected keyword argument `key` in function `TPLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/switch.py:57:9-12: Unexpected keyword argument `key` in function `TPLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/switch.py:60:9-12: Unexpected keyword argument `key` in function `TPLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/switch.py:63:9-12: Unexpected keyword argument `key` in function `TPLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/switch.py:66:9-12: Unexpected keyword argument `key` in function `TPLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/switch.py:69:9-12: Unexpected keyword argument `key` in function `TPLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/switch.py:72:9-12: Unexpected keyword argument `key` in function `TPLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/switch.py:75:9-12: Unexpected keyword argument `key` in function `TPLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/switch.py:78:9-12: Unexpected keyword argument `key` in function `TPLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/switch.py:119:5-23: Class member `TPLinkSwitch.entity_description` overrides parent class `CoordinatedTPLinkFeatureEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/switch.py:119:5-23: Class member `TPLinkSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/vacuum.py:55:9-12: Unexpected keyword argument `key` in function `TPLinkVacuumEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/vacuum.py:56:9-24: Unexpected keyword argument `translation_key` in function `TPLinkVacuumEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink/vacuum.py:97:5-29: Class member `TPLinkVacuumEntity._attr_supported_features` overrides parent class `CoordinatedTPLinkModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/vacuum.py:105:5-23: Class member `TPLinkVacuumEntity.entity_description` overrides parent class `CoordinatedTPLinkModuleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink/vacuum.py:105:5-23: Class member `TPLinkVacuumEntity.entity_description` overrides parent class `StateVacuumEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink_lte/__init__.py:11:8-20: Could not find import of `tp_connected` [missing-import] +ERROR homeassistant/components/tplink_lte/notify.py:9:8-20: Could not find import of `tp_connected` [missing-import] +ERROR homeassistant/components/tplink_omada/binary_sensor.py:64:9-12: Unexpected keyword argument `key` in function `GatewayPortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/binary_sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `GatewayPortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/binary_sensor.py:71:9-12: Unexpected keyword argument `key` in function `GatewayPortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/binary_sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `GatewayPortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/binary_sensor.py:78:9-12: Unexpected keyword argument `key` in function `GatewayPortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/binary_sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `GatewayPortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/binary_sensor.py:85:9-12: Unexpected keyword argument `key` in function `GatewayPortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/binary_sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `GatewayPortBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/binary_sensor.py:101:5-23: Class member `OmadaGatewayPortBinarySensor.entity_description` overrides parent class `OmadaDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink_omada/binary_sensor.py:101:5-23: Class member `OmadaGatewayPortBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink_omada/coordinator.py:32:5-17: Class member `OmadaCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink_omada/sensor.py:85:9-12: Unexpected keyword argument `key` in function `OmadaDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `OmadaDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/sensor.py:88:9-24: Unexpected keyword argument `entity_category` in function `OmadaDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/sensor.py:93:9-12: Unexpected keyword argument `key` in function `OmadaDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/sensor.py:94:9-24: Unexpected keyword argument `translation_key` in function `OmadaDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/sensor.py:95:9-24: Unexpected keyword argument `entity_category` in function `OmadaDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/sensor.py:101:9-12: Unexpected keyword argument `key` in function `OmadaDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `OmadaDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/sensor.py:103:9-24: Unexpected keyword argument `entity_category` in function `OmadaDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/sensor.py:114:5-23: Class member `OmadaDeviceSensor.entity_description` overrides parent class `OmadaDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink_omada/sensor.py:114:5-23: Class member `OmadaDeviceSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink_omada/switch.py:184:9-12: Unexpected keyword argument `key` in function `OmadaSwitchPortSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/switch.py:185:9-24: Unexpected keyword argument `translation_key` in function `OmadaSwitchPortSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/switch.py:200:9-24: Unexpected keyword argument `entity_category` in function `OmadaSwitchPortSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/switch.py:206:9-12: Unexpected keyword argument `key` in function `OmadaGatewayPortStatusSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/switch.py:207:9-24: Unexpected keyword argument `translation_key` in function `OmadaGatewayPortStatusSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/switch.py:213:9-12: Unexpected keyword argument `key` in function `OmadaGatewayPortStatusSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/switch.py:214:9-24: Unexpected keyword argument `translation_key` in function `OmadaGatewayPortStatusSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/switch.py:223:9-12: Unexpected keyword argument `key` in function `OmadaGatewayPortConfigSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/switch.py:224:9-24: Unexpected keyword argument `translation_key` in function `OmadaGatewayPortConfigSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tplink_omada/switch.py:241:5-23: Class member `OmadaDevicePortSwitchEntity.entity_description` overrides parent class `OmadaDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink_omada/switch.py:241:5-23: Class member `OmadaDevicePortSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink_omada/update.py:119:5-29: Class member `OmadaDeviceUpdate._attr_supported_features` overrides parent class `OmadaDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tplink_omada/update.py:124:5-23: Class member `OmadaDeviceUpdate._attr_device_class` overrides parent class `OmadaDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/traccar/__init__.py:93:31-42: `requestdata` may be uninitialized [unbound-name] +ERROR homeassistant/components/traccar/__init__.py:95:39-50: `requestdata` may be uninitialized [unbound-name] +ERROR homeassistant/components/traccar/device_tracker.py:129:14-31: Class member `TraccarEntity._attr_device_info` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/traccar/device_tracker.py:129:34-132:10: `TypedDict[DeviceInfo]` is not assignable to attribute `_attr_device_info` with type `None` [bad-assignment] +ERROR homeassistant/components/traccar/device_tracker.py:142:34-144:10: `() -> None` is not assignable to attribute `_unsub_dispatcher` with type `None` [bad-assignment] +ERROR homeassistant/components/traccar/device_tracker.py:176:9-31: Expected a callable, got `None` [not-callable] +ERROR homeassistant/components/traccar_server/__init__.py:93:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/traccar_server/binary_sensor.py:40:9-12: Unexpected keyword argument `key` in function `TraccarServerBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/traccar_server/binary_sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `TraccarServerBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/traccar_server/binary_sensor.py:47:9-12: Unexpected keyword argument `key` in function `TraccarServerBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/traccar_server/binary_sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `TraccarServerBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/traccar_server/binary_sensor.py:77:5-23: Class member `TraccarServerBinarySensor.entity_description` overrides parent class `TraccarServerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/traccar_server/binary_sensor.py:77:5-23: Class member `TraccarServerBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/traccar_server/config_flow.py:219:9-31: Class member `TraccarServerConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/traccar_server/coordinator.py:54:5-17: Class member `TraccarServerCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/traccar_server/coordinator.py:180:31-40: `device_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/traccar_server/coordinator.py:186:21-30: `device_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/traccar_server/coordinator.py:190:23-32: `device_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/traccar_server/coordinator.py:191:23-32: `device_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/traccar_server/coordinator.py:191:50-54: `attr` may be uninitialized [unbound-name] +ERROR homeassistant/components/traccar_server/coordinator.py:192:23-32: `device_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/traccar_server/coordinator.py:194:44-53: `device_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/traccar_server/coordinator.py:196:32-41: `device_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/traccar_server/helpers.py:37:23-36: TypedDict `DeviceModel` does not have key `geofenceIds` [bad-typed-dict-key] +ERROR homeassistant/components/traccar_server/sensor.py:42:9-12: Unexpected keyword argument `key` in function `TraccarServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/traccar_server/sensor.py:51:9-12: Unexpected keyword argument `key` in function `TraccarServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/traccar_server/sensor.py:60:9-12: Unexpected keyword argument `key` in function `TraccarServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/traccar_server/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `TraccarServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/traccar_server/sensor.py:69:9-12: Unexpected keyword argument `key` in function `TraccarServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/traccar_server/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `TraccarServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/traccar_server/sensor.py:75:9-12: Unexpected keyword argument `key` in function `TraccarServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/traccar_server/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `TraccarServerSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/traccar_server/sensor.py:105:5-23: Class member `TraccarServerSensor.entity_description` overrides parent class `TraccarServerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/traccar_server/sensor.py:105:5-23: Class member `TraccarServerSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tractive/__init__.py:62:14-33: Module `aiotractive.tracker` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/tractive/__init__.py:92:12-34: Module `aiotractive.exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/tractive/__init__.py:95:12-34: Module `aiotractive.exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/tractive/__init__.py:106:12-34: Module `aiotractive.exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/tractive/__init__.py:130:16-44: Module `aiotractive.trackable_object` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/tractive/__init__.py:199:15-43: Module `aiotractive.trackable_object` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/tractive/__init__.py:202:18-46: Module `aiotractive.trackable_object` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/tractive/__init__.py:206:43-62: Module `aiotractive.tracker` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/tractive/__init__.py:248:20-42: Module `aiotractive.exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/tractive/__init__.py:259:20-42: Module `aiotractive.exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/tractive/binary_sensor.py:42:14-32: Class member `TractiveBinarySensor.entity_description` overrides parent class `TractiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tractive/binary_sensor.py:61:9-12: Unexpected keyword argument `key` in function `TractiveBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/binary_sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `TractiveBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/binary_sensor.py:64:9-24: Unexpected keyword argument `entity_category` in function `TractiveBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/binary_sensor.py:68:9-12: Unexpected keyword argument `key` in function `TractiveBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/binary_sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `TractiveBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/binary_sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `TractiveBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/config_flow.py:32:14-29: Module `aiotractive.api` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/tractive/config_flow.py:35:12-34: Module `aiotractive.exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/tractive/sensor.py:56:5-23: Class member `TractiveSensor.entity_description` overrides parent class `TractiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tractive/sensor.py:56:5-23: Class member `TractiveSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tractive/sensor.py:91:9-12: Unexpected keyword argument `key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:97:9-24: Unexpected keyword argument `entity_category` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:100:9-12: Unexpected keyword argument `key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:101:9-24: Unexpected keyword argument `translation_key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:104:9-24: Unexpected keyword argument `entity_category` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:115:9-12: Unexpected keyword argument `key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:122:9-12: Unexpected keyword argument `key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:129:9-12: Unexpected keyword argument `key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:130:9-24: Unexpected keyword argument `translation_key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:136:9-12: Unexpected keyword argument `key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:137:9-24: Unexpected keyword argument `translation_key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:142:9-12: Unexpected keyword argument `key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:143:9-24: Unexpected keyword argument `translation_key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:149:9-12: Unexpected keyword argument `key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:150:9-24: Unexpected keyword argument `translation_key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:156:9-12: Unexpected keyword argument `key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:157:9-24: Unexpected keyword argument `translation_key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:168:9-12: Unexpected keyword argument `key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/sensor.py:169:9-24: Unexpected keyword argument `translation_key` in function `TractiveSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/switch.py:38:9-12: Unexpected keyword argument `key` in function `TractiveSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/switch.py:39:9-24: Unexpected keyword argument `translation_key` in function `TractiveSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/switch.py:41:9-24: Unexpected keyword argument `entity_category` in function `TractiveSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/switch.py:44:9-12: Unexpected keyword argument `key` in function `TractiveSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/switch.py:45:9-24: Unexpected keyword argument `translation_key` in function `TractiveSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/switch.py:47:9-24: Unexpected keyword argument `entity_category` in function `TractiveSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/switch.py:50:9-12: Unexpected keyword argument `key` in function `TractiveSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/switch.py:51:9-24: Unexpected keyword argument `translation_key` in function `TractiveSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/switch.py:53:9-24: Unexpected keyword argument `entity_category` in function `TractiveSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tractive/switch.py:79:5-23: Class member `TractiveSwitch.entity_description` overrides parent class `TractiveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tractive/switch.py:79:5-23: Class member `TractiveSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tradfri/__init__.py:116:9-50: Object of class `Gateway` has no attribute `append` +Object of class `MethodType` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/tradfri/__init__.py:274:50-59: `device_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/tradfri/__init__.py:280:66-75: `device_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/tradfri/coordinator.py:25:5-17: Class member `TradfriDeviceDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tradfri/coordinator.py:73:14-29: Class member `TradfriDeviceDataUpdateCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tradfri/coordinator.py:73:32-52: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@TradfriDeviceDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/tradfri/coordinator.py:98:36-68: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@TradfriDeviceDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/tradfri/fan.py:25:21-69: No matching overload found for function `max` called with arguments: (Literal[2], float) [no-matching-overload] +ERROR homeassistant/components/tradfri/fan.py:58:5-29: Class member `TradfriAirPurifierFan._attr_supported_features` overrides parent class `TradfriBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tradfri/light.py:55:5-29: Class member `TradfriLight._attr_supported_features` overrides parent class `TradfriBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tradfri/light.py:240:29-51: `+` is not supported between `None` and `None` [unsupported-operation] +ERROR homeassistant/components/tradfri/sensor.py:72:9-12: Unexpected keyword argument `key` in function `TradfriSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tradfri/sensor.py:83:9-12: Unexpected keyword argument `key` in function `TradfriSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tradfri/sensor.py:84:9-24: Unexpected keyword argument `translation_key` in function `TradfriSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tradfri/sensor.py:90:9-12: Unexpected keyword argument `key` in function `TradfriSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tradfri/sensor.py:91:9-24: Unexpected keyword argument `translation_key` in function `TradfriSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tradfri/sensor.py:176:5-23: Class member `TradfriSensor.entity_description` overrides parent class `TradfriBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tradfri/sensor.py:176:5-23: Class member `TradfriSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/trafikverket_camera/binary_sensor.py:30:5-8: Unexpected keyword argument `key` in function `TVCameraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_camera/binary_sensor.py:31:5-20: Unexpected keyword argument `translation_key` in function `TVCameraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_camera/binary_sensor.py:58:5-23: Class member `TrafikverketCameraBinarySensor.entity_description` overrides parent class `TrafikverketCameraNonCameraEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/trafikverket_camera/binary_sensor.py:58:5-23: Class member `TrafikverketCameraBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/trafikverket_camera/sensor.py:35:9-12: Unexpected keyword argument `key` in function `TVCameraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_camera/sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `TVCameraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_camera/sensor.py:41:9-12: Unexpected keyword argument `key` in function `TVCameraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_camera/sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `TVCameraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_camera/sensor.py:45:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TVCameraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_camera/sensor.py:48:9-12: Unexpected keyword argument `key` in function `TVCameraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_camera/sensor.py:49:9-24: Unexpected keyword argument `translation_key` in function `TVCameraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_camera/sensor.py:54:9-12: Unexpected keyword argument `key` in function `TVCameraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_camera/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `TVCameraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_camera/sensor.py:57:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TVCameraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_camera/sensor.py:60:9-12: Unexpected keyword argument `key` in function `TVCameraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_camera/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `TVCameraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_camera/sensor.py:63:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TVCameraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_camera/sensor.py:66:9-12: Unexpected keyword argument `key` in function `TVCameraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_camera/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `TVCameraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_camera/sensor.py:69:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TVCameraSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_camera/sensor.py:91:5-23: Class member `TrafikverketCameraSensor.entity_description` overrides parent class `TrafikverketCameraNonCameraEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/trafikverket_camera/sensor.py:91:5-23: Class member `TrafikverketCameraSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/trafikverket_ferry/coordinator.py:53:5-17: Class member `TVDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/trafikverket_ferry/sensor.py:47:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_ferry/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_ferry/sensor.py:54:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_ferry/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_ferry/sensor.py:60:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_ferry/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_ferry/sensor.py:66:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_ferry/sensor.py:67:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_ferry/sensor.py:71:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_ferry/sensor.py:74:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_ferry/sensor.py:75:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_ferry/sensor.py:79:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_ferry/sensor.py:82:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_ferry/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_ferry/sensor.py:87:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_ferry/sensor.py:112:5-23: Class member `FerrySensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/trafikverket_ferry/sensor.py:112:5-23: Class member `FerrySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/trafikverket_train/config_flow.py:111:9-31: Class member `TVTrainConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/trafikverket_train/coordinator.py:74:5-17: Class member `TVDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/trafikverket_train/sensor.py:40:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:46:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:53:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:58:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:65:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:69:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:72:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:73:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:76:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:79:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:83:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:86:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:91:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:96:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:102:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:103:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_train/sensor.py:130:5-23: Class member `TrainSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/trafikverket_train/sensor.py:130:5-23: Class member `TrainSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/trafikverket_weatherstation/coordinator.py:35:5-17: Class member `TVDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:64:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:72:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:73:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:80:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:81:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:83:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:88:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:96:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:103:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:104:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:108:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:112:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:116:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:120:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:127:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:130:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:134:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:135:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:142:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:143:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:148:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:151:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:152:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:157:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:160:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:161:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:166:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:169:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:170:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:175:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:178:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:179:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:184:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:187:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:188:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:193:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:196:9-12: Unexpected keyword argument `key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:197:9-24: Unexpected keyword argument `translation_key` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:199:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `TrafikverketSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:227:5-23: Class member `TrafikverketWeatherStation.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/trafikverket_weatherstation/sensor.py:227:5-23: Class member `TrafikverketWeatherStation.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/transmission/__init__.py:97:39-68: Argument `BoundMethod[TransmissionDataUpdateCoordinator, (self: TransmissionDataUpdateCoordinator) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/transmission/__init__.py:133:32-35: `new` may be uninitialized [unbound-name] +ERROR homeassistant/components/transmission/config_flow.py:62:9-31: Class member `TransmissionFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/transmission/coordinator.py:36:5-17: Class member `TransmissionDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/transmission/coordinator.py:72:55-66: Argument `BoundMethod[Self@TransmissionDataUpdateCoordinator, (self: Self@TransmissionDataUpdateCoordinator) -> SessionStats]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/transmission/coordinator.py:118:36-62: `list[Never]` is not assignable to attribute `_completed_torrents` with type `list[Torrent]` [bad-assignment] +ERROR homeassistant/components/transmission/coordinator.py:139:34-58: `list[Never]` is not assignable to attribute `_started_torrents` with type `list[Torrent]` [bad-assignment] +ERROR homeassistant/components/transmission/sensor.py:54:9-12: Unexpected keyword argument `key` in function `TransmissionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/sensor.py:55:9-24: Unexpected keyword argument `translation_key` in function `TransmissionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/sensor.py:63:9-12: Unexpected keyword argument `key` in function `TransmissionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/sensor.py:64:9-24: Unexpected keyword argument `translation_key` in function `TransmissionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/sensor.py:72:9-12: Unexpected keyword argument `key` in function `TransmissionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/sensor.py:73:9-24: Unexpected keyword argument `translation_key` in function `TransmissionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/sensor.py:76:38-47: `get_state` is uninitialized [unbound-name] +ERROR homeassistant/components/transmission/sensor.py:81:9-12: Unexpected keyword argument `key` in function `TransmissionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `TransmissionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/sensor.py:84:51-70: `_torrents_info_attr` is uninitialized [unbound-name] +ERROR homeassistant/components/transmission/sensor.py:89:9-12: Unexpected keyword argument `key` in function `TransmissionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `TransmissionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/sensor.py:92:51-70: `_torrents_info_attr` is uninitialized [unbound-name] +ERROR homeassistant/components/transmission/sensor.py:97:9-12: Unexpected keyword argument `key` in function `TransmissionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `TransmissionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/sensor.py:100:51-70: `_torrents_info_attr` is uninitialized [unbound-name] +ERROR homeassistant/components/transmission/sensor.py:105:9-12: Unexpected keyword argument `key` in function `TransmissionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `TransmissionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/sensor.py:108:13-29: `_filter_torrents` is uninitialized [unbound-name] +ERROR homeassistant/components/transmission/sensor.py:110:51-70: `_torrents_info_attr` is uninitialized [unbound-name] +ERROR homeassistant/components/transmission/sensor.py:115:9-12: Unexpected keyword argument `key` in function `TransmissionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `TransmissionSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/sensor.py:118:13-29: `_filter_torrents` is uninitialized [unbound-name] +ERROR homeassistant/components/transmission/sensor.py:120:51-70: `_torrents_info_attr` is uninitialized [unbound-name] +ERROR homeassistant/components/transmission/sensor.py:144:5-23: Class member `TransmissionSensor.entity_description` overrides parent class `TransmissionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/transmission/sensor.py:144:5-23: Class member `TransmissionSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/transmission/services.py:110:50-88: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[BinaryIO | Path | bytes | str, float | int | tuple[float | int, float | int] | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/transmission/services.py:118:46-89: Unpacked argument `tuple[Any]` is not assignable to parameter `*args` with type `tuple[int | list[int | str] | str | None, bool, float | int | tuple[float | int, float | int] | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/transmission/services.py:126:46-88: Unpacked argument `tuple[Any]` is not assignable to parameter `*args` with type `tuple[int | list[int | str] | str | None, float | int | tuple[float | int, float | int] | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/transmission/switch.py:26:9-12: Unexpected keyword argument `key` in function `TransmissionSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/switch.py:27:9-24: Unexpected keyword argument `translation_key` in function `TransmissionSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/switch.py:33:9-12: Unexpected keyword argument `key` in function `TransmissionSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/switch.py:34:9-24: Unexpected keyword argument `translation_key` in function `TransmissionSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/transmission/switch.py:59:5-23: Class member `TransmissionSwitch.entity_description` overrides parent class `TransmissionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/transmission/switch.py:59:5-23: Class member `TransmissionSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/travisci/sensor.py:8:1-30: Could not find import of `travispy` [missing-import] +ERROR homeassistant/components/travisci/sensor.py:9:1-40: Could not find import of `travispy.errors` [missing-import] +ERROR homeassistant/components/travisci/sensor.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/travisci/sensor.py:41:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/travisci/sensor.py:42:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/travisci/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/travisci/sensor.py:46:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/travisci/sensor.py:48:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/travisci/sensor.py:51:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/travisci/sensor.py:52:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/travisci/sensor.py:53:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/travisci/sensor.py:56:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/travisci/sensor.py:57:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/travisci/sensor.py:58:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/travisci/sensor.py:61:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/travisci/sensor.py:62:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/travisci/sensor.py:63:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/travisci/sensor.py:66:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/travisci/sensor.py:67:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/travisci/sensor.py:68:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/trend/binary_sensor.py:197:14-32: Class member `SensorTrend._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/trend/binary_sensor.py:278:48-72: Argument `BoundMethod[Self@SensorTrend, (self: Self@SensorTrend) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tts/__init__.py:292:53-72: Unpacked keyword argument `object` is not assignable to parameter `engine` with type `str` in function `SpeechManager.async_create_result_stream` [bad-argument-type] +ERROR homeassistant/components/tts/__init__.py:292:53-72: Unpacked keyword argument `object` is not assignable to parameter `use_file_cache` with type `bool | None` in function `SpeechManager.async_create_result_stream` [bad-argument-type] +ERROR homeassistant/components/tts/__init__.py:292:53-72: Unpacked keyword argument `object` is not assignable to parameter `language` with type `str | None` in function `SpeechManager.async_create_result_stream` [bad-argument-type] +ERROR homeassistant/components/tts/__init__.py:292:53-72: Unpacked keyword argument `object` is not assignable to parameter `options` with type `dict[Unknown, Unknown] | None` in function `SpeechManager.async_create_result_stream` [bad-argument-type] +ERROR homeassistant/components/tts/__init__.py:292:62-71: TypedDict `ParsedMediaSourceStreamId` does not have key `options` [bad-typed-dict-key] +ERROR homeassistant/components/tts/__init__.py:293:41-50: TypedDict `ParsedMediaSourceStreamId` does not have key `message` [bad-typed-dict-key] +ERROR homeassistant/components/tts/__init__.py:370:36-47: Type `AsyncGenerator[bytes, None] | Path | str` is not an async iterable [not-iterable] +ERROR homeassistant/components/tts/__init__.py:414:22-65: `bool | str | Unknown` is not assignable to `str` [bad-assignment] +ERROR homeassistant/components/tts/__init__.py:594:17-53: Argument `BoundMethod[Path, (self: Path) -> bytes]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tts/__init__.py:659:13-29: Argument `HassJob[[_now: datetime], None]` is not assignable to parameter `action` with type `((datetime) -> Coroutine[Any, Any, None] | None) | HassJob[[datetime], Coroutine[Any, Any, None] | None]` in function `homeassistant.helpers.event.async_call_later` [bad-argument-type] +ERROR homeassistant/components/tts/__init__.py:726:71-87: Argument `BoundMethod[Self@SpeechManager, (self: Self@SpeechManager) -> dict[str, str]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tts/__init__.py:989:52-63: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tts/__init__.py:1074:27-44: Type of yielded value `AsyncGenerator[str, None] | str` is not assignable to declared return type `str` [invalid-yield] +ERROR homeassistant/components/tts/__init__.py:1124:59-70: Argument `() -> bytes` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tts/entity.py:184:19-23: Type of yielded value `bytes | None` is not assignable to declared return type `bytes` [invalid-yield] +ERROR homeassistant/components/tts/legacy.py:106:54-108:6: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[PathLike[str] | str, Secrets | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tts/media_source.py:128:5-9: Class member `TTSMediaSource.name` overrides parent class `MediaSource` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tts/media_source.py:145:61-80: Unpacked keyword argument `object` is not assignable to parameter `engine` with type `str` in function `homeassistant.components.tts.SpeechManager.async_create_result_stream` [bad-argument-type] +ERROR homeassistant/components/tts/media_source.py:145:61-80: Unpacked keyword argument `object` is not assignable to parameter `use_file_cache` with type `bool | None` in function `homeassistant.components.tts.SpeechManager.async_create_result_stream` [bad-argument-type] +ERROR homeassistant/components/tts/media_source.py:145:61-80: Unpacked keyword argument `object` is not assignable to parameter `language` with type `str | None` in function `homeassistant.components.tts.SpeechManager.async_create_result_stream` [bad-argument-type] +ERROR homeassistant/components/tts/media_source.py:145:61-80: Unpacked keyword argument `object` is not assignable to parameter `options` with type `dict[Unknown, Unknown] | None` in function `homeassistant.components.tts.SpeechManager.async_create_result_stream` [bad-argument-type] +ERROR homeassistant/components/tts/media_source.py:145:70-79: TypedDict `ParsedMediaSourceStreamId` does not have key `options` [bad-typed-dict-key] +ERROR homeassistant/components/tts/media_source.py:146:49-58: TypedDict `ParsedMediaSourceStreamId` does not have key `message` [bad-typed-dict-key] +ERROR homeassistant/components/tuya/__init__.py:68:43-70: Argument `BoundMethod[Manager, (self: Manager) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tuya/__init__.py:109:39-57: Argument `BoundMethod[Manager, (self: Manager) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tuya/__init__.py:130:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/tuya/__init__.py:145:39-53: Argument `BoundMethod[Manager, (self: Manager) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tuya/__init__.py:245:27-45: Argument `() -> None` is not assignable to parameter `target` with type `((**tuple[*@_]) -> Any) | Coroutine[Any, Any, Any]` in function `homeassistant.core.HomeAssistant.add_job` [bad-argument-type] +ERROR homeassistant/components/tuya/alarm_control_panel.py:28:13-16: Unexpected keyword argument `key` in function `homeassistant.components.alarm_control_panel.AlarmControlPanelEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/alarm_control_panel.py:29:13-17: Unexpected keyword argument `name` in function `homeassistant.components.alarm_control_panel.AlarmControlPanelEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/alarm_control_panel.py:120:41-58: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/tuya/alarm_control_panel.py:164:14-32: Class member `TuyaAlarmEntity.entity_description` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/binary_sensor.py:41:5-8: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:42:5-9: Unexpected keyword argument `name` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:44:5-20: Unexpected keyword argument `entity_category` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:54:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:62:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:67:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:75:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:78:13-28: Unexpected keyword argument `entity_category` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:80:13-28: Unexpected keyword argument `translation_key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:83:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:86:13-28: Unexpected keyword argument `entity_category` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:88:13-28: Unexpected keyword argument `translation_key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:91:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:94:13-28: Unexpected keyword argument `entity_category` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:96:13-28: Unexpected keyword argument `translation_key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:101:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:102:13-28: Unexpected keyword argument `translation_key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:108:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:113:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:114:13-28: Unexpected keyword argument `translation_key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:119:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:120:13-28: Unexpected keyword argument `translation_key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:125:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:126:13-28: Unexpected keyword argument `translation_key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:131:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:132:13-28: Unexpected keyword argument `translation_key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:137:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:138:13-28: Unexpected keyword argument `translation_key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:143:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:144:13-28: Unexpected keyword argument `translation_key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:149:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:153:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:158:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:159:13-28: Unexpected keyword argument `translation_key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:163:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:171:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:178:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:186:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:194:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:196:13-28: Unexpected keyword argument `entity_category` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:202:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:209:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:213:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:220:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:227:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:230:13-28: Unexpected keyword argument `entity_category` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:232:13-28: Unexpected keyword argument `translation_key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:235:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:238:13-28: Unexpected keyword argument `entity_category` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:240:13-28: Unexpected keyword argument `translation_key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:245:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:253:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:262:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:267:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:275:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:282:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:290:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:297:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:305:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:307:13-28: Unexpected keyword argument `entity_category` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:313:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:314:13-28: Unexpected keyword argument `translation_key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:320:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:328:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:335:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:340:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:348:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:354:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:356:13-28: Unexpected keyword argument `translation_key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:360:13-16: Unexpected keyword argument `key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:362:13-28: Unexpected keyword argument `translation_key` in function `TuyaBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/binary_sensor.py:427:50-67: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/tuya/binary_sensor.py:446:5-23: Class member `TuyaBinarySensorEntity.entity_description` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/binary_sensor.py:446:5-23: Class member `TuyaBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/button.py:21:13-16: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:22:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:27:13-16: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:28:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:29:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:30:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:33:13-16: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:34:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:35:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:40:13-16: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:41:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:42:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:45:13-16: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:46:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:47:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:50:13-16: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:51:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:52:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:55:13-16: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:56:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:57:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:60:13-16: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:61:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:62:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/button.py:82:43-60: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/tuya/button.py:114:14-32: Class member `TuyaButtonEntity.entity_description` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/camera.py:64:5-29: Class member `TuyaCameraEntity._attr_supported_features` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/climate.py:63:9-12: Unexpected keyword argument `key` in function `TuyaClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/climate.py:67:9-12: Unexpected keyword argument `key` in function `TuyaClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/climate.py:71:9-12: Unexpected keyword argument `key` in function `TuyaClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/climate.py:75:9-12: Unexpected keyword argument `key` in function `TuyaClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/climate.py:79:9-12: Unexpected keyword argument `key` in function `TuyaClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/climate.py:83:9-12: Unexpected keyword argument `key` in function `TuyaClimateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/climate.py:108:46-61: Cannot index into `dict[DeviceCategory, TuyaClimateEntityDescription]` [bad-index] +ERROR homeassistant/components/tuya/climate.py:133:5-23: Class member `TuyaClimateEntity.entity_description` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/climate.py:133:5-23: Class member `TuyaClimateEntity.entity_description` overrides parent class `ClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/climate.py:301:17-78: Argument `dict[str, DPCode | bool | str]` is not assignable to parameter `object` with type `dict[str, DPCode | bool]` in function `list.append` [bad-argument-type] +ERROR homeassistant/components/tuya/config_flow.py:144:19-39: Argument `Any | None` is not assignable to parameter `title` with type `str` in function `homeassistant.config_entries.ConfigFlow.async_create_entry` [bad-argument-type] +ERROR homeassistant/components/tuya/config_flow.py:205:16-23: `success` may be uninitialized [unbound-name] +ERROR homeassistant/components/tuya/cover.py:95:13-16: Unexpected keyword argument `key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:96:13-28: Unexpected keyword argument `translation_key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:97:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:103:13-16: Unexpected keyword argument `key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:104:13-28: Unexpected keyword argument `translation_key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:105:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:111:13-16: Unexpected keyword argument `key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:112:13-28: Unexpected keyword argument `translation_key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:113:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:121:13-16: Unexpected keyword argument `key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:122:13-28: Unexpected keyword argument `translation_key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:129:13-16: Unexpected keyword argument `key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:130:13-28: Unexpected keyword argument `translation_key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:131:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:137:13-16: Unexpected keyword argument `key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:138:13-28: Unexpected keyword argument `translation_key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:139:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:145:13-16: Unexpected keyword argument `key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:146:13-28: Unexpected keyword argument `translation_key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:157:13-16: Unexpected keyword argument `key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:158:13-28: Unexpected keyword argument `translation_key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:166:13-16: Unexpected keyword argument `key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:167:13-28: Unexpected keyword argument `translation_key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:174:13-16: Unexpected keyword argument `key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:175:13-28: Unexpected keyword argument `translation_key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:176:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:185:13-16: Unexpected keyword argument `key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:186:13-28: Unexpected keyword argument `translation_key` in function `TuyaCoverEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/cover.py:209:42-59: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/tuya/cover.py:247:5-23: Class member `TuyaCoverEntity.entity_description` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/cover.py:247:5-23: Class member `TuyaCoverEntity.entity_description` overrides parent class `CoverEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/cover.py:263:14-38: Class member `TuyaCoverEntity._attr_supported_features` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/diagnostics.py:50:8-25: Object of class `NoneType` has no attribute `client` [missing-attribute] +ERROR homeassistant/components/tuya/diagnostics.py:51:26-56: Object of class `object` has no attribute `is_connected` [missing-attribute] +ERROR homeassistant/components/tuya/diagnostics.py:106:13-35: Cannot set item in `bool` [unsupported-operation] +ERROR homeassistant/components/tuya/diagnostics.py:106:13-35: Cannot set item in `str` [unsupported-operation] +ERROR homeassistant/components/tuya/diagnostics.py:106:13-35: Cannot set item in `None` [unsupported-operation] +ERROR homeassistant/components/tuya/diagnostics.py:106:38-46: Cannot set item in `dict[str, dict[str, dict[str, Any] | str]]` [unsupported-operation] +ERROR homeassistant/components/tuya/diagnostics.py:109:9-31: Cannot set item in `bool` [unsupported-operation] +ERROR homeassistant/components/tuya/diagnostics.py:109:9-31: Cannot set item in `str` [unsupported-operation] +ERROR homeassistant/components/tuya/diagnostics.py:109:9-31: Cannot set item in `None` [unsupported-operation] +ERROR homeassistant/components/tuya/diagnostics.py:113:9-40: Cannot set item in `bool` [unsupported-operation] +ERROR homeassistant/components/tuya/diagnostics.py:113:9-40: Cannot set item in `str` [unsupported-operation] +ERROR homeassistant/components/tuya/diagnostics.py:113:9-40: Cannot set item in `None` [unsupported-operation] +ERROR homeassistant/components/tuya/diagnostics.py:120:9-48: Cannot set item in `bool` [unsupported-operation] +ERROR homeassistant/components/tuya/diagnostics.py:120:9-48: Cannot set item in `str` [unsupported-operation] +ERROR homeassistant/components/tuya/diagnostics.py:120:9-48: Cannot set item in `None` [unsupported-operation] +ERROR homeassistant/components/tuya/diagnostics.py:130:34-136:10: Cannot set item in `dict[str, bool | dict[str, dict[str, dict[str, Any] | str]] | str | None]` [unsupported-operation] +ERROR homeassistant/components/tuya/diagnostics.py:160:13-54: Object of class `DeviceEntryDisabler` has no attribute `append` +Object of class `NoneType` has no attribute `append` +Object of class `bool` has no attribute `append` +Object of class `str` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/tuya/event.py:27:13-16: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:29:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:30:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:33:13-16: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:35:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:36:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:39:13-16: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:41:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:42:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:45:13-16: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:47:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:48:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:51:13-16: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:53:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:54:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:57:13-16: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:59:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:60:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:63:13-16: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:65:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:66:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:69:13-16: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:71:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:72:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:75:13-16: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:77:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:78:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/event.py:98:42-59: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/tuya/event.py:123:5-23: Class member `TuyaEventEntity.entity_description` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/fan.py:213:25-43: Argument `list[str]` is not assignable to parameter `ordered_list` with type `list[bool | int | str]` in function `homeassistant.util.percentage.percentage_to_ordered_list_item` [bad-argument-type] +ERROR homeassistant/components/tuya/humidifier.py:64:9-12: Unexpected keyword argument `key` in function `TuyaHumidifierEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/humidifier.py:71:9-12: Unexpected keyword argument `key` in function `TuyaHumidifierEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/humidifier.py:95:47-64: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/tuya/humidifier.py:130:5-23: Class member `TuyaHumidifierEntity.entity_description` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/humidifier.py:130:5-23: Class member `TuyaHumidifierEntity.entity_description` overrides parent class `HumidifierEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/light.py:154:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:155:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:162:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:163:13-28: Unexpected keyword argument `translation_key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:164:13-28: Unexpected keyword argument `entity_category` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:169:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:170:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:179:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:180:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:190:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:191:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:200:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:201:13-28: Unexpected keyword argument `translation_key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:202:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:208:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:209:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:216:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:217:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:223:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:224:13-28: Unexpected keyword argument `translation_key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:225:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:231:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:232:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:240:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:241:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:246:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:247:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:256:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:257:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:266:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:267:13-28: Unexpected keyword argument `translation_key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:275:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:276:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:284:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:285:13-28: Unexpected keyword argument `translation_key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:286:13-28: Unexpected keyword argument `entity_category` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:291:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:292:13-28: Unexpected keyword argument `translation_key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:293:13-28: Unexpected keyword argument `entity_category` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:298:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:299:13-28: Unexpected keyword argument `translation_key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:300:13-28: Unexpected keyword argument `entity_category` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:305:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:306:13-28: Unexpected keyword argument `translation_key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:307:13-28: Unexpected keyword argument `entity_category` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:312:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:313:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:321:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:322:13-28: Unexpected keyword argument `translation_key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:323:13-28: Unexpected keyword argument `entity_category` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:328:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:329:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:337:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:338:13-28: Unexpected keyword argument `translation_key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:339:13-28: Unexpected keyword argument `entity_category` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:344:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:346:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:349:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:350:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:351:13-28: Unexpected keyword argument `entity_category` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:356:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:358:13-28: Unexpected keyword argument `translation_key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:363:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:364:13-28: Unexpected keyword argument `translation_key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:365:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:371:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:372:13-28: Unexpected keyword argument `translation_key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:373:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:379:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:380:13-28: Unexpected keyword argument `translation_key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:381:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:389:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:390:13-28: Unexpected keyword argument `translation_key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:396:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:397:13-28: Unexpected keyword argument `translation_key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:398:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:402:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:403:13-28: Unexpected keyword argument `translation_key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:404:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:410:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:411:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:420:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:421:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:430:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:431:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:438:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:439:13-28: Unexpected keyword argument `translation_key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:444:13-16: Unexpected keyword argument `key` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:445:13-17: Unexpected keyword argument `name` in function `TuyaLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/light.py:522:42-59: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/tuya/light.py:554:5-23: Class member `TuyaLightEntity.entity_description` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/light.py:554:5-23: Class member `TuyaLightEntity.entity_description` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/light.py:703:37-42: `color` may be uninitialized [unbound-name] +ERROR homeassistant/components/tuya/light.py:708:37-42: `color` may be uninitialized [unbound-name] +ERROR homeassistant/components/tuya/light.py:713:37-47: `brightness` may be uninitialized [unbound-name] +ERROR homeassistant/components/tuya/models.py:431:33-58: Argument `dict[str, Any] | str` is not assignable to parameter `data` with type `str` in function `TypeInformation.from_json` [bad-argument-type] +ERROR homeassistant/components/tuya/number.py:33:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:34:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:36:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:39:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:40:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:42:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:45:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:46:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:48:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:51:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:52:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:54:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:57:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:58:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:59:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:64:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:65:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:66:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:71:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:72:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:75:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:80:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:81:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:84:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:85:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:90:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:91:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:92:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:97:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:98:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:104:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:105:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:106:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:109:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:110:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:112:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:115:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:116:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:118:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:121:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:122:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:128:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:129:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:133:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:134:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:140:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:141:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:142:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:145:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:146:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:148:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:151:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:152:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:153:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:156:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:157:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:158:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:163:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:165:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:167:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:170:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:171:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:173:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:176:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:178:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:180:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:185:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:186:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:188:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:193:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:194:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:195:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:198:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:199:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:201:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:204:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:205:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:206:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:211:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:212:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:213:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:216:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:217:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:218:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:219:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:224:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:225:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:226:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:232:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:233:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:234:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:236:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:239:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:240:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:241:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:243:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:246:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:247:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:248:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:250:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:253:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:254:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:255:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:257:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:260:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:261:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:262:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:264:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:267:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:268:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:269:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:271:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:274:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:275:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:276:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:278:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:281:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:282:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:283:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:285:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:290:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:291:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:292:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:297:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:298:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:299:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:304:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:305:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:307:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:310:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:311:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:313:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:316:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:317:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:318:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:323:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:324:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:325:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:326:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:329:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:330:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:331:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:332:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:335:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:336:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:337:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:338:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:341:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:342:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:343:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:344:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:347:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:348:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:349:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:350:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:353:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:354:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:355:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:356:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:361:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:362:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:363:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:364:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:367:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:368:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:369:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:370:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:373:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:374:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:375:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:376:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:379:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:380:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:381:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:382:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:387:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:388:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:389:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:394:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:395:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:396:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:399:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:400:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:402:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:407:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:408:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:409:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:412:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:413:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:414:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:417:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:418:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:420:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:423:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:424:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:426:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:431:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:432:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:433:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:438:13-16: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:439:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/number.py:463:43-60: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/tuya/number.py:497:14-32: Class member `TuyaNumberEntity.entity_description` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/number.py:534:22-40: Class member `TuyaNumberEntity._attr_device_class` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/scene.py:25:48-68: Argument `BoundMethod[Manager, (self: Manager) -> list[Unknown]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/tuya/scene.py:61:41-59: Argument `int` is not assignable to parameter `home_id` with type `str` in function `tuya_sharing.manager.Manager.trigger_scene` [bad-argument-type] +ERROR homeassistant/components/tuya/select.py:23:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:24:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:25:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:28:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:29:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:30:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:35:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:36:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:37:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:42:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:43:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:44:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:47:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:48:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:49:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:54:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:55:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:56:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:61:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:62:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:63:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:68:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:69:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:70:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:73:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:74:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:75:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:76:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:79:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:80:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:81:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:82:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:87:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:88:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:89:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:92:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:93:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:94:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:97:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:98:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:99:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:102:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:103:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:104:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:109:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:110:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:111:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:114:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:115:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:116:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:119:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:120:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:121:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:124:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:125:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:126:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:129:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:130:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:131:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:136:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:137:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:140:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:141:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:142:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:145:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:146:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:147:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:150:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:151:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:156:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:157:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:158:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:161:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:162:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:163:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:168:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:169:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:170:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:173:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:174:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:175:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:180:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:181:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:186:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:187:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:188:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:191:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:192:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:193:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:196:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:197:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:198:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:204:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:205:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:206:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:211:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:212:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:213:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:216:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:217:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:218:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:221:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:222:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:223:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:228:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:229:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:230:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:233:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:234:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:235:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:240:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:241:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:242:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:245:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:246:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:247:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:250:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:251:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:252:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:255:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:256:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:257:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:260:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:261:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:262:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:265:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:266:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:267:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:272:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:273:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:274:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:279:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:280:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:281:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:284:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:285:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:286:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:291:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:292:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:293:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:296:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:297:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:298:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:301:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:302:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:303:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:304:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:307:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:308:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:309:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:310:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:313:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:314:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:315:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:316:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:321:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:322:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:323:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:324:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:327:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:328:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:329:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:330:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:335:13-16: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:336:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:337:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/select.py:366:43-60: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/tuya/select.py:400:14-32: Class member `TuyaSelectEntity.entity_description` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/sensor.py:83:45-56: No matching overload found for function `dict.get` called with arguments: (Any | None) [no-matching-overload] +ERROR homeassistant/components/tuya/sensor.py:177:9-12: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:178:9-24: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:182:9-24: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:185:9-12: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:186:9-24: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:190:9-24: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:193:9-12: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:194:9-24: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:195:9-24: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:198:9-12: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:199:9-24: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:201:9-24: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:205:9-12: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:206:9-24: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:208:9-24: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:219:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:220:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:224:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:227:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:228:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:231:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:234:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:235:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:239:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:244:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:245:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:250:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:251:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:256:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:257:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:262:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:263:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:264:13-28: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:269:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:270:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:275:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:276:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:281:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:282:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:288:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:289:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:293:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:294:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:299:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:300:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:306:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:307:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:315:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:316:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:325:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:326:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:331:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:332:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:339:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:340:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:346:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:347:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:353:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:354:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:357:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:360:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:361:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:366:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:367:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:372:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:373:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:376:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:379:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:379:37-52: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:384:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:385:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:389:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:390:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:391:13-17: Unexpected keyword argument `name` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:395:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:396:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:401:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:402:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:408:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:409:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:415:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:416:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:422:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:423:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:427:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:428:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:431:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:432:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:437:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:438:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:443:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:444:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:449:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:450:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:451:13-28: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:458:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:459:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:464:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:465:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:470:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:471:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:476:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:477:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:482:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:483:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:485:13-28: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:489:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:491:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:497:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:499:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:505:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:507:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:513:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:515:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:521:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:523:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:529:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:531:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:537:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:539:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:545:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:547:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:553:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:555:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:561:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:562:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:566:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:569:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:570:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:573:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:576:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:577:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:581:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:586:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:587:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:595:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:596:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:599:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:600:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:605:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:606:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:611:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:612:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:618:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:619:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:623:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:624:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:629:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:630:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:636:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:637:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:646:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:647:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:653:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:654:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:659:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:660:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:666:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:667:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:672:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:673:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:678:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:679:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:686:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:687:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:692:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:693:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:698:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:699:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:704:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:705:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:706:13-28: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:711:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:712:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:719:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:720:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:724:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:727:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:728:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:731:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:734:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:735:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:739:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:742:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:743:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:748:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:749:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:756:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:757:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:758:13-28: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:761:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:762:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:768:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:769:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:774:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:775:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:780:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:781:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:786:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:787:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:793:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:794:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:796:13-28: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:799:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:800:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:802:13-28: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:805:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:806:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:811:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:812:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:815:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:816:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:821:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:822:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:827:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:828:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:833:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:834:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:845:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:846:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:851:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:852:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:856:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:857:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:862:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:863:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:868:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:869:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:872:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:873:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:880:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:881:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:887:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:888:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:892:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:893:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:898:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:899:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:904:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:905:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:911:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:912:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:917:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:918:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:924:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:925:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:934:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:935:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:942:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:943:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:948:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:949:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:954:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:955:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:960:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:961:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:962:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:967:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:968:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:969:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:974:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:975:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:976:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:981:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:982:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:987:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:988:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:993:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:994:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:999:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1000:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1001:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1006:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1007:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1008:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1013:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1014:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1015:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1020:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1021:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1026:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1027:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1032:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1037:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1038:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1043:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1044:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1049:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1050:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1054:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1055:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1061:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1062:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1067:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1068:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1073:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1074:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1079:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1080:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1088:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1089:13-17: Unexpected keyword argument `name` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1090:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1097:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1098:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1102:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1103:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1107:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1108:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1112:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1113:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1117:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1118:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1122:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1123:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1127:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1128:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1132:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1133:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1137:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1138:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1142:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1143:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1145:13-28: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1152:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1153:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1155:13-28: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1164:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1165:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1170:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1171:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1176:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1177:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1179:13-28: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1185:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1186:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1191:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1192:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1193:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1201:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1202:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1207:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1208:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1215:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1216:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1220:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1221:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1230:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1231:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1235:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1238:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1239:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1242:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1245:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1246:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1250:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1253:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1254:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1259:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1260:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1265:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1266:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1271:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1272:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1277:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1278:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1283:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1284:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1293:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1294:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1300:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1301:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1307:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1308:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1312:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1313:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1318:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1319:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1324:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1325:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1334:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1335:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1340:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1341:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1346:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1347:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1351:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1354:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1355:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1358:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1361:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1362:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1366:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1372:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1373:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1378:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1379:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1384:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1385:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1389:13-28: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1390:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1393:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1394:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1397:13-28: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1398:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1401:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1402:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1406:13-28: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1407:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1412:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1413:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1418:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1419:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1424:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1425:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1430:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1431:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1436:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1437:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1446:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1447:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1450:13-28: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1453:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1454:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1459:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1460:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1461:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1466:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1467:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1468:13-37: Unexpected keyword argument `translation_placeholders` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1473:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1474:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1479:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1480:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1485:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1486:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1491:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1492:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1497:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1498:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1503:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1504:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1509:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1510:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1517:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1518:13-17: Unexpected keyword argument `name` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1526:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1527:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1528:13-28: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1535:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1536:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1539:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1540:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1545:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1546:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1553:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1554:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1559:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1560:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1565:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1566:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1571:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1573:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1578:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1579:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1581:13-28: Unexpected keyword argument `entity_category` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1585:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1587:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1593:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1595:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1601:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1603:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1609:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1611:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1617:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1619:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1625:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1627:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1633:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1635:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1641:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1643:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1649:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1651:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1659:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1660:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1665:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1666:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1674:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1675:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1682:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1683:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1690:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1691:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1696:13-16: Unexpected keyword argument `key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1697:13-28: Unexpected keyword argument `translation_key` in function `TuyaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/sensor.py:1750:43-60: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/tuya/sensor.py:1769:5-23: Class member `TuyaSensorEntity.entity_description` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/sensor.py:1769:5-23: Class member `TuyaSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/sensor.py:1817:22-40: Class member `TuyaSensorEntity._attr_device_class` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/siren.py:27:13-16: Unexpected keyword argument `key` in function `homeassistant.components.siren.SirenEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/siren.py:28:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.siren.SirenEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/siren.py:33:13-16: Unexpected keyword argument `key` in function `homeassistant.components.siren.SirenEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/siren.py:38:13-16: Unexpected keyword argument `key` in function `homeassistant.components.siren.SirenEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/siren.py:43:13-16: Unexpected keyword argument `key` in function `homeassistant.components.siren.SirenEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/siren.py:66:42-59: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/tuya/siren.py:89:5-29: Class member `TuyaSirenEntity._attr_supported_features` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/siren.py:101:14-32: Class member `TuyaSirenEntity.entity_description` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/switch.py:47:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:48:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:51:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:52:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:53:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:58:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:59:13-17: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:62:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:63:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:64:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:65:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:68:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:69:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:70:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:71:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:74:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:75:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:76:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:77:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:82:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:83:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:84:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:87:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:88:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:89:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:92:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:93:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:94:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:97:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:98:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:99:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:104:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:105:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:106:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:109:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:110:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:111:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:116:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:117:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:120:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:121:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:126:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:127:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:128:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:129:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:132:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:133:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:134:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:135:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:138:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:139:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:140:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:141:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:146:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:147:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:152:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:153:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:154:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:159:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:160:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:161:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:164:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:165:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:166:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:169:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:170:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:173:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:174:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:175:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:178:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:179:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:180:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:188:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:189:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:194:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:195:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:196:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:199:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:200:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:205:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:206:13-17: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:207:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:211:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:212:13-17: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:213:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:217:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:218:13-17: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:219:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:223:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:224:13-17: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:225:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:229:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:230:13-17: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:231:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:235:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:236:13-17: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:237:13-17: Unexpected keyword argument `icon` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:243:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:244:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:245:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:248:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:249:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:250:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:253:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:254:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:255:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:258:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:259:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:260:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:263:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:264:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:265:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:268:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:269:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:270:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:275:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:276:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:277:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:282:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:283:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:284:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:287:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:288:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:289:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:292:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:293:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:294:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:297:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:298:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:299:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:302:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:303:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:304:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:307:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:308:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:309:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:312:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:313:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:314:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:317:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:318:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:319:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:324:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:325:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:328:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:329:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:330:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:331:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:334:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:335:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:336:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:337:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:340:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:341:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:342:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:343:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:346:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:347:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:348:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:349:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:352:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:353:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:358:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:359:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:360:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:363:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:364:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:365:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:368:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:369:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:370:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:375:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:376:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:377:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:380:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:381:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:382:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:386:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:387:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:388:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:392:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:393:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:394:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:398:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:399:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:400:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:404:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:405:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:406:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:410:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:411:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:412:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:416:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:417:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:418:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:422:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:423:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:424:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:428:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:429:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:430:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:433:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:434:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:435:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:438:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:439:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:440:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:443:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:444:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:445:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:448:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:449:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:450:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:453:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:454:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:455:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:458:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:459:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:465:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:466:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:467:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:470:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:471:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:472:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:475:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:476:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:477:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:480:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:481:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:484:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:485:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:486:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:489:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:490:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:491:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:496:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:497:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:498:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:501:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:502:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:503:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:508:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:509:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:514:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:516:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:517:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:520:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:522:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:523:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:528:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:529:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:530:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:535:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:536:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:537:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:540:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:541:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:542:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:547:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:548:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:549:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:552:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:553:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:554:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:558:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:559:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:560:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:564:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:565:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:566:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:570:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:571:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:572:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:576:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:577:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:578:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:582:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:583:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:584:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:588:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:589:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:590:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:593:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:594:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:595:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:598:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:599:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:600:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:603:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:604:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:605:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:608:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:609:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:610:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:613:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:614:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:615:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:618:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:619:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:625:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:626:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:631:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:632:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:637:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:638:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:639:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:642:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:643:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:644:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:649:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:650:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:656:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:657:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:658:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:661:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:662:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:663:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:668:13-16: Unexpected keyword argument `key` in function `TuyaDeprecatedSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:669:13-28: Unexpected keyword argument `translation_key` in function `TuyaDeprecatedSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:676:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:677:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:678:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:683:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:684:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:685:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:690:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:691:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:692:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:695:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:696:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:697:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:700:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:701:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:702:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:705:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:706:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:707:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:710:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:711:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:712:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:715:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:716:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:717:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:720:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:721:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:722:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:725:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:726:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:727:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:730:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:731:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:732:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:735:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:736:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:737:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:740:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:741:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:742:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:747:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:748:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:751:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:752:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:757:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:758:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:763:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:764:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:765:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:769:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:770:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:771:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:775:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:776:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:777:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:781:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:782:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:783:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:787:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:788:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:789:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:793:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:794:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:795:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:799:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:800:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:801:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:806:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:807:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:808:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:813:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:814:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:815:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:820:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:821:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:822:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:825:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:826:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:827:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:832:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:833:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:834:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:838:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:839:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:840:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:846:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:847:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:848:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:851:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:852:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:853:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:858:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:859:13-17: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:864:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:865:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:871:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:872:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:873:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:878:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:879:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:880:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:885:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:886:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:889:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:890:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:893:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:894:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:895:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:900:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:901:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:902:13-28: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:907:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:908:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:913:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:914:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:919:13-16: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:920:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/switch.py:947:44-61: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/tuya/switch.py:1034:14-32: Class member `TuyaSwitchEntity.entity_description` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/vacuum.py:122:14-38: Class member `TuyaVacuumEntity._attr_supported_features` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/valve.py:25:13-16: Unexpected keyword argument `key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:26:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:30:13-16: Unexpected keyword argument `key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:31:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:32:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:36:13-16: Unexpected keyword argument `key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:37:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:38:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:42:13-16: Unexpected keyword argument `key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:43:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:44:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:48:13-16: Unexpected keyword argument `key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:49:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:50:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:54:13-16: Unexpected keyword argument `key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:55:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:56:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:60:13-16: Unexpected keyword argument `key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:61:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:62:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:66:13-16: Unexpected keyword argument `key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:67:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:68:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:72:13-16: Unexpected keyword argument `key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:73:13-28: Unexpected keyword argument `translation_key` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:74:13-37: Unexpected keyword argument `translation_placeholders` in function `homeassistant.components.valve.ValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/tuya/valve.py:95:42-59: No matching overload found for function `dict.get` called with arguments: (str) [no-matching-overload] +ERROR homeassistant/components/tuya/valve.py:118:5-29: Class member `TuyaValveEntity._attr_supported_features` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/tuya/valve.py:129:14-32: Class member `TuyaValveEntity.entity_description` overrides parent class `TuyaEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/twentemilieu/calendar.py:68:9-78:52: `date | None` is not assignable to `None` (caused by inconsistent types when breaking cycles) [bad-assignment] +ERROR homeassistant/components/twentemilieu/sensor.py:33:9-12: Unexpected keyword argument `key` in function `TwenteMilieuSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/twentemilieu/sensor.py:34:9-24: Unexpected keyword argument `translation_key` in function `TwenteMilieuSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/twentemilieu/sensor.py:39:9-12: Unexpected keyword argument `key` in function `TwenteMilieuSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/twentemilieu/sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `TwenteMilieuSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/twentemilieu/sensor.py:45:9-12: Unexpected keyword argument `key` in function `TwenteMilieuSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/twentemilieu/sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `TwenteMilieuSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/twentemilieu/sensor.py:51:9-12: Unexpected keyword argument `key` in function `TwenteMilieuSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/twentemilieu/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `TwenteMilieuSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/twentemilieu/sensor.py:57:9-12: Unexpected keyword argument `key` in function `TwenteMilieuSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/twentemilieu/sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `TwenteMilieuSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/twentemilieu/sensor.py:79:5-23: Class member `TwenteMilieuSensor.entity_description` overrides parent class `TwenteMilieuEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/twentemilieu/sensor.py:79:5-23: Class member `TwenteMilieuSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/twilio_call/notify.py:63:28-40: Module `urllib.parse` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/twinkly/coordinator.py:39:5-17: Class member `TwinklyCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/twinkly/coordinator.py:97:13-18: Argument `bool | None` is not assignable to parameter `is_on` with type `bool` in function `TwinklyData.__init__` [bad-argument-type] +ERROR homeassistant/components/twinkly/light.py:63:18-42: Class member `TwinklyLight._attr_supported_features` overrides parent class `TwinklyEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/twitch/coordinator.py:49:5-17: Class member `TwitchCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/twitch/sensor.py:49:5-23: Class member `TwitchSensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/twitter/notify.py:13:1-34: Could not find import of `TwitterAPI` [missing-import] +ERROR homeassistant/components/ubus/device_tracker.py:8:1-30: Could not find import of `openwrt.ubus` [missing-import] +ERROR homeassistant/components/ubus/device_tracker.py:101:25-27: `dict[@_, @_]` is not assignable to attribute `mac2name` with type `None` [bad-assignment] +ERROR homeassistant/components/ubus/device_tracker.py:132:29-31: `list[@_]` is not assignable to attribute `last_results` with type `dict[Unknown, Unknown]` [bad-assignment] +ERROR homeassistant/components/ubus/device_tracker.py:142:25-49: Object of class `dict` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/ubus/device_tracker.py:165:29-31: `dict[@_, @_]` is not assignable to attribute `mac2name` with type `None` [bad-assignment] +ERROR homeassistant/components/ubus/device_tracker.py:168:17-48: Cannot set item in `None` [unsupported-operation] +ERROR homeassistant/components/ubus/device_tracker.py:179:29-31: `dict[@_, @_]` is not assignable to attribute `mac2name` with type `None` [bad-assignment] +ERROR homeassistant/components/ubus/device_tracker.py:185:21-47: Cannot set item in `None` [unsupported-operation] +ERROR homeassistant/components/uk_transport/sensor.py:146:31-54: `Literal['Usage limits exceeded']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/uk_transport/sensor.py:148:31-52: `Literal['Credentials invalid']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/uk_transport/sensor.py:212:30-49: Cannot set item in `dict[str, list[Unknown]]` [unsupported-operation] +ERROR homeassistant/components/uk_transport/sensor.py:249:31-46: `Literal['No departures']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/ukraine_alarm/__init__.py:42:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/ukraine_alarm/binary_sensor.py:32:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ukraine_alarm/binary_sensor.py:33:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ukraine_alarm/binary_sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ukraine_alarm/binary_sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ukraine_alarm/binary_sensor.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ukraine_alarm/binary_sensor.py:43:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ukraine_alarm/binary_sensor.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ukraine_alarm/binary_sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ukraine_alarm/binary_sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ukraine_alarm/binary_sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ukraine_alarm/binary_sensor.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ukraine_alarm/binary_sensor.py:58:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/ukraine_alarm/binary_sensor.py:102:14-32: Class member `UkraineAlarmSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ukraine_alarm/config_flow.py:59:35-42: `regions` may be uninitialized [unbound-name] +ERROR homeassistant/components/ukraine_alarm/config_flow.py:68:27-34: `regions` may be uninitialized [unbound-name] +ERROR homeassistant/components/ukraine_alarm/config_flow.py:68:27-44: Cannot index into `ClientResponse` [bad-index] +ERROR homeassistant/components/ukraine_alarm/config_flow.py:103:46-52: Argument `list[dict[str, Any]] | Any | None` is not assignable to parameter `regions` with type `list[dict[str, Any]]` in function `_find` [bad-argument-type] +ERROR homeassistant/components/ukraine_alarm/config_flow.py:120:45-51: Argument `list[dict[str, Any]] | Any | None` is not assignable to parameter `regions` with type `list[dict[str, Any]]` in function `_make_regions_object` [bad-argument-type] +ERROR homeassistant/components/ukraine_alarm/coordinator.py:28:5-17: Class member `UkraineAlarmDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ukraine_alarm/coordinator.py:56:22-28: Cannot index into `ClientResponse` [bad-index] +ERROR homeassistant/components/unifi/button.py:93:9-12: Unexpected keyword argument `key` in function `UnifiButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/button.py:94:9-24: Unexpected keyword argument `entity_category` in function `UnifiButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/button.py:105:9-12: Unexpected keyword argument `key` in function `UnifiButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/button.py:106:9-24: Unexpected keyword argument `entity_category` in function `UnifiButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/button.py:118:9-12: Unexpected keyword argument `key` in function `UnifiButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/button.py:119:9-24: Unexpected keyword argument `translation_key` in function `UnifiButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/button.py:121:9-24: Unexpected keyword argument `entity_category` in function `UnifiButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/button.py:122:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `UnifiButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/button.py:150:5-23: Class member `UnifiButtonEntity.entity_description` overrides parent class `UnifiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi/button.py:150:5-23: Class member `UnifiButtonEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi/config_flow.py:84:9-31: Class member `UnifiFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi/config_flow.py:141:45-49: `host` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifi/device_tracker.py:153:9-12: Unexpected keyword argument `key` in function `UnifiTrackerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/device_tracker.py:173:9-12: Unexpected keyword argument `key` in function `UnifiTrackerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/device_tracker.py:232:5-23: Class member `UnifiScannerEntity.entity_description` overrides parent class `UnifiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi/device_tracker.py:232:5-23: Class member `UnifiScannerEntity.entity_description` overrides parent class `ScannerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi/entity.py:135:5-23: Class member `UnifiEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi/entity.py:136:5-20: Class member `UnifiEntity._attr_unique_id` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi/image.py:50:9-12: Unexpected keyword argument `key` in function `UnifiImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/image.py:51:9-24: Unexpected keyword argument `translation_key` in function `UnifiImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/image.py:52:9-24: Unexpected keyword argument `entity_category` in function `UnifiImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/image.py:53:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `UnifiImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/image.py:82:5-23: Class member `UnifiImageEntity.entity_description` overrides parent class `UnifiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi/image.py:82:5-23: Class member `UnifiImageEntity.entity_description` overrides parent class `ImageEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi/light.py:93:9-12: Unexpected keyword argument `key` in function `UnifiLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/light.py:94:9-24: Unexpected keyword argument `translation_key` in function `UnifiLightEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/light.py:128:5-23: Class member `UnifiLightEntity.entity_description` overrides parent class `UnifiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi/light.py:128:5-23: Class member `UnifiLightEntity.entity_description` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi/light.py:129:5-29: Class member `UnifiLightEntity._attr_supported_features` overrides parent class `UnifiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi/sensor.py:247:24-52: Cannot index into `object` [bad-index] +ERROR homeassistant/components/unifi/sensor.py:261:13-16: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:262:13-28: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:266:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:331:13-16: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:333:13-28: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:336:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:377:9-12: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:378:9-24: Unexpected keyword argument `translation_key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:380:9-24: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:394:9-12: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:395:9-24: Unexpected keyword argument `translation_key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:397:9-24: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:411:9-12: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:413:9-24: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:416:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:427:9-12: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:428:9-24: Unexpected keyword argument `translation_key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:430:9-24: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:431:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:445:9-12: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:446:9-24: Unexpected keyword argument `translation_key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:448:9-24: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:449:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:463:9-12: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:465:9-24: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:466:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:478:9-12: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:479:9-24: Unexpected keyword argument `translation_key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:480:9-24: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:491:9-12: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:492:9-24: Unexpected keyword argument `translation_key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:493:9-24: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:495:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:506:9-12: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:508:9-24: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:522:9-12: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:524:9-24: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:538:9-12: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:540:9-24: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:554:9-12: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:556:9-24: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:567:9-12: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:569:9-24: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:581:9-12: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:582:9-24: Unexpected keyword argument `translation_key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:583:9-24: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:595:9-12: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:596:9-24: Unexpected keyword argument `translation_key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:598:9-24: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:609:9-12: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:610:9-24: Unexpected keyword argument `translation_key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:611:9-24: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:624:9-12: Unexpected keyword argument `key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:625:9-24: Unexpected keyword argument `translation_key` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:626:9-24: Unexpected keyword argument `entity_category` in function `UnifiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/sensor.py:659:5-23: Class member `UnifiSensorEntity.entity_description` overrides parent class `UnifiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi/sensor.py:659:5-23: Class member `UnifiSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi/services.py:77:15-18: `hub` is uninitialized [unbound-name] +ERROR homeassistant/components/unifi/services.py:93:23-26: `hub` is uninitialized [unbound-name] +ERROR homeassistant/components/unifi/services.py:107:19-22: `hub` is uninitialized [unbound-name] +ERROR homeassistant/components/unifi/switch.py:248:9-12: Unexpected keyword argument `key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:249:9-24: Unexpected keyword argument `translation_key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:251:9-24: Unexpected keyword argument `entity_category` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:264:9-12: Unexpected keyword argument `key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:265:9-24: Unexpected keyword argument `translation_key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:266:9-24: Unexpected keyword argument `has_entity_name` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:267:9-24: Unexpected keyword argument `entity_category` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:280:9-12: Unexpected keyword argument `key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:281:9-24: Unexpected keyword argument `translation_key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:283:9-24: Unexpected keyword argument `entity_category` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:294:9-12: Unexpected keyword argument `key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:307:9-12: Unexpected keyword argument `key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:308:9-24: Unexpected keyword argument `translation_key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:310:9-24: Unexpected keyword argument `entity_category` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:320:9-12: Unexpected keyword argument `key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:321:9-24: Unexpected keyword argument `translation_key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:323:9-24: Unexpected keyword argument `entity_category` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:333:9-12: Unexpected keyword argument `key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:334:9-24: Unexpected keyword argument `translation_key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:336:9-24: Unexpected keyword argument `entity_category` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:346:9-12: Unexpected keyword argument `key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:347:9-24: Unexpected keyword argument `translation_key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:349:9-24: Unexpected keyword argument `entity_category` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:350:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:362:9-12: Unexpected keyword argument `key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:363:9-24: Unexpected keyword argument `translation_key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:365:9-24: Unexpected keyword argument `entity_category` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:366:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:378:9-12: Unexpected keyword argument `key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:379:9-24: Unexpected keyword argument `translation_key` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:381:9-24: Unexpected keyword argument `entity_category` in function `UnifiSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/switch.py:440:5-23: Class member `UnifiSwitchEntity.entity_description` overrides parent class `UnifiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi/switch.py:440:5-23: Class member `UnifiSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi/update.py:52:9-12: Unexpected keyword argument `key` in function `UnifiUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifi/update.py:83:5-23: Class member `UnifiDeviceUpdateEntity.entity_description` overrides parent class `UnifiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi/update.py:83:5-23: Class member `UnifiDeviceUpdateEntity.entity_description` overrides parent class `UpdateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi/update.py:88:14-38: Class member `UnifiDeviceUpdateEntity._attr_supported_features` overrides parent class `UnifiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifi_direct/device_tracker.py:8:1-79: Could not find import of `unifi_ap` [missing-import] +ERROR homeassistant/components/unifiled/light.py:8:1-30: Could not find import of `unifiled` [missing-import] +ERROR homeassistant/components/unifiprotect/__init__.py:172:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:67:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:69:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:73:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:75:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:76:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:77:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:82:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:84:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:85:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:91:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:93:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:94:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:100:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:101:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:102:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:103:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:109:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:110:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:111:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:112:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:119:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:120:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:121:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:122:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:127:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:129:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:130:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:135:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:136:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:137:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:138:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:143:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:144:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:145:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:146:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:151:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:152:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:153:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:158:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:159:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:160:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:161:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:167:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:168:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:169:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:170:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:176:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:177:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:178:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:179:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:185:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:186:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:187:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:188:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:194:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:195:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:196:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:197:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:203:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:204:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:205:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:206:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:212:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:213:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:214:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:215:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:221:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:222:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:223:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:224:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:230:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:231:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:232:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:233:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:239:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:240:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:241:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:242:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:248:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:249:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:250:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:251:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:257:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:258:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:259:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:260:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:266:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:267:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:268:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:269:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:275:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:276:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:277:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:278:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:284:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:285:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:286:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:287:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:296:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:297:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:298:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:302:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:307:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:308:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:309:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:310:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:315:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:316:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:317:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:318:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:319:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:324:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:325:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:326:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:327:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:337:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:338:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:347:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:353:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:355:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:359:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:365:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:370:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:371:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:372:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:373:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:378:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:379:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:380:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:381:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:386:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:387:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:388:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:389:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:394:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:395:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:396:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:397:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:402:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:403:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:404:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:405:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:410:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:411:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:412:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:420:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:421:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:423:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:428:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:434:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:435:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:436:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:439:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:442:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:443:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:444:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:451:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:452:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:453:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:460:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:461:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:462:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:469:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:470:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:471:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:472:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:479:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:480:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:481:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:484:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:487:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:488:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:489:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:496:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:497:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:498:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:505:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:506:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:507:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:514:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:515:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:516:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:523:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:524:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:525:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:532:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:533:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:534:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:541:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:542:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:543:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:550:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:551:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:552:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:559:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:560:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:561:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:571:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:573:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:577:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:578:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:579:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:580:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:588:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:589:9-24: Unexpected keyword argument `translation_key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:590:9-13: Unexpected keyword argument `icon` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:591:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:592:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:601:9-12: Unexpected keyword argument `key` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:603:9-24: Unexpected keyword argument `entity_category` in function `ProtectBinaryEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:625:5-23: Class member `ProtectDeviceBinarySensor.entity_description` overrides parent class `ProtectIsOnEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:625:5-23: Class member `ProtectDeviceBinarySensor.entity_description` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:625:5-23: Class member `ProtectDeviceBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:631:5-11: Class member `MountableProtectDeviceBinarySensor.device` overrides parent class `ProtectDeviceBinarySensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:647:5-23: Class member `ProtectDiskBinarySensor.entity_description` overrides parent class `ProtectNVREntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:647:5-23: Class member `ProtectDiskBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:690:5-23: Class member `ProtectEventBinarySensor.entity_description` overrides parent class `EventEntityMixin` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:690:5-23: Class member `ProtectEventBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:710:13-18: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:713:51-56: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:721:31-36: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/binary_sensor.py:722:12-17: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/button.py:52:9-12: Unexpected keyword argument `key` in function `ProtectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/button.py:53:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/button.py:59:9-12: Unexpected keyword argument `key` in function `ProtectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/button.py:60:9-24: Unexpected keyword argument `translation_key` in function `ProtectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/button.py:61:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/button.py:62:9-13: Unexpected keyword argument `icon` in function `ProtectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/button.py:69:5-8: Unexpected keyword argument `key` in function `ProtectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/button.py:70:5-20: Unexpected keyword argument `translation_key` in function `ProtectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/button.py:71:5-9: Unexpected keyword argument `icon` in function `ProtectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/button.py:77:9-12: Unexpected keyword argument `key` in function `ProtectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/button.py:78:9-24: Unexpected keyword argument `translation_key` in function `ProtectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/button.py:79:9-13: Unexpected keyword argument `icon` in function `ProtectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/button.py:87:9-12: Unexpected keyword argument `key` in function `ProtectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/button.py:88:9-24: Unexpected keyword argument `translation_key` in function `ProtectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/button.py:89:22-47: Argument `Literal['unifiprotect__chime_button']` is not assignable to parameter `device_class` with type `ButtonDeviceClass | None` in function `ProtectButtonEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/unifiprotect/button.py:90:9-13: Unexpected keyword argument `icon` in function `ProtectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/button.py:94:9-12: Unexpected keyword argument `key` in function `ProtectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/button.py:95:9-24: Unexpected keyword argument `translation_key` in function `ProtectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/button.py:96:9-13: Unexpected keyword argument `icon` in function `ProtectButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/button.py:168:5-23: Class member `ProtectButton.entity_description` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/button.py:168:5-23: Class member `ProtectButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/camera.py:166:5-11: Class member `ProtectCamera.device` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/camera.py:213:14-38: Class member `ProtectCamera._attr_supported_features` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/config_flow.py:226:9-31: Class member `ProtectFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/entity.py:228:25-45: `last_updated_success` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/entity.py:237:25-45: `last_updated_success` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/entity.py:282:5-23: Class member `ProtectIsOnEntity.entity_description` overrides parent class `BaseProtectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/entity.py:313:5-11: Class member `ProtectNVREntity.device` overrides parent class `BaseProtectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/entity.py:331:5-23: Class member `EventEntityMixin.entity_description` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/event.py:62:5-23: Class member `ProtectDeviceRingEventEntity.entity_description` overrides parent class `EventEntityMixin` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/event.py:62:5-23: Class member `ProtectDeviceRingEventEntity.entity_description` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/event.py:62:5-23: Class member `ProtectDeviceRingEventEntity.entity_description` overrides parent class `EventEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/event.py:76:13-18: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/event.py:78:17-22: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/event.py:80:75-80: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/event.py:87:5-23: Class member `ProtectDeviceNFCEventEntity.entity_description` overrides parent class `EventEntityMixin` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/event.py:87:5-23: Class member `ProtectDeviceNFCEventEntity.entity_description` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/event.py:87:5-23: Class member `ProtectDeviceNFCEventEntity.entity_description` overrides parent class `EventEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/event.py:101:13-18: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/event.py:103:17-22: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/event.py:106:32-37: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/event.py:113:16-21: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/event.py:113:35-40: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/event.py:113:58-63: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/event.py:114:26-31: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/event.py:131:5-23: Class member `ProtectDeviceFingerprintEventEntity.entity_description` overrides parent class `EventEntityMixin` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/event.py:131:5-23: Class member `ProtectDeviceFingerprintEventEntity.entity_description` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/event.py:131:5-23: Class member `ProtectDeviceFingerprintEventEntity.entity_description` overrides parent class `EventEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/event.py:145:13-18: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/event.py:147:17-22: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/event.py:150:32-37: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/event.py:156:17-22: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/event.py:157:21-26: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/event.py:158:21-26: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/event.py:161:26-31: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/event.py:172:9-12: Unexpected keyword argument `key` in function `ProtectEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/event.py:173:9-24: Unexpected keyword argument `translation_key` in function `ProtectEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/event.py:175:9-13: Unexpected keyword argument `icon` in function `ProtectEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/event.py:182:9-12: Unexpected keyword argument `key` in function `ProtectEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/event.py:183:9-24: Unexpected keyword argument `translation_key` in function `ProtectEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/event.py:184:9-13: Unexpected keyword argument `icon` in function `ProtectEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/event.py:191:9-12: Unexpected keyword argument `key` in function `ProtectEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/event.py:192:9-24: Unexpected keyword argument `translation_key` in function `ProtectEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/event.py:193:9-13: Unexpected keyword argument `icon` in function `ProtectEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/light.py:56:5-11: Class member `ProtectLight.device` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/lock.py:42:65-68: Unexpected keyword argument `key` in function `homeassistant.components.lock.LockEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/lock.py:42:77-81: Unexpected keyword argument `name` in function `homeassistant.components.lock.LockEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/lock.py:51:5-11: Class member `ProtectLock.device` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/lock.py:52:5-23: Class member `ProtectLock.entity_description` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/media_player.py:32:5-8: Unexpected keyword argument `key` in function `homeassistant.components.media_player.MediaPlayerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/media_player.py:33:5-20: Unexpected keyword argument `translation_key` in function `homeassistant.components.media_player.MediaPlayerEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/media_player.py:64:5-11: Class member `ProtectMediaPlayer.device` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/media_player.py:65:5-23: Class member `ProtectMediaPlayer.entity_description` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/media_player.py:66:5-29: Class member `ProtectMediaPlayer._attr_supported_features` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/media_player.py:86:18-29: Class member `ProtectMediaPlayer._attr_state` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/media_source.py:180:5-9: Class member `ProtectMediaSource.name` overrides parent class `MediaSource` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/media_source.py:212:17-21: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:215:31-35: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:220:17-21: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:222:15-19: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:225:46-54: Object of class `NoneType` has no attribute `id` [missing-attribute] +ERROR homeassistant/components/unifiprotect/media_source.py:227:57-62: Argument `Event | None` is not assignable to parameter `event` with type `Event` in function `homeassistant.components.unifiprotect.views.async_generate_event_video_url` [bad-argument-type] +ERROR homeassistant/components/unifiprotect/media_source.py:291:12-27: `identifier_type` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:292:30-45: `identifier_type` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:293:46-50: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:300:46-50: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:305:45-49: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:315:17-21: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:315:34-44: `event_type` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:327:12-21: `time_type` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:334:17-21: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:334:34-44: `event_type` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:334:46-50: `days` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:344:12-20: `is_month` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:346:17-21: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:346:34-44: `event_type` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:346:46-51: `start` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:349:13-17: `data` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:349:30-40: `event_type` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:349:42-47: `start` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:349:77-83: `is_all` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:378:12-17: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:378:35-40: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:381:46-51: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:444:22-32: `event_text` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:593:21-36: `recording_start` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/media_source.py:771:23-49: Object of class `NoneType` has no attribute `format` [missing-attribute] +ERROR homeassistant/components/unifiprotect/number.py:66:9-12: Unexpected keyword argument `key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:67:9-24: Unexpected keyword argument `translation_key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:68:9-13: Unexpected keyword argument `icon` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:69:9-24: Unexpected keyword argument `entity_category` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:79:9-12: Unexpected keyword argument `key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:80:9-24: Unexpected keyword argument `translation_key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:81:9-13: Unexpected keyword argument `icon` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:82:9-24: Unexpected keyword argument `entity_category` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:94:9-12: Unexpected keyword argument `key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:95:9-24: Unexpected keyword argument `translation_key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:96:9-13: Unexpected keyword argument `icon` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:97:9-24: Unexpected keyword argument `entity_category` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:108:9-12: Unexpected keyword argument `key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:109:9-24: Unexpected keyword argument `translation_key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:110:9-13: Unexpected keyword argument `icon` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:111:9-24: Unexpected keyword argument `entity_category` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:123:9-12: Unexpected keyword argument `key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:124:9-24: Unexpected keyword argument `translation_key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:125:9-13: Unexpected keyword argument `icon` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:126:9-24: Unexpected keyword argument `entity_category` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:140:9-12: Unexpected keyword argument `key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:141:9-24: Unexpected keyword argument `translation_key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:142:9-13: Unexpected keyword argument `icon` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:143:9-24: Unexpected keyword argument `entity_category` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:154:9-12: Unexpected keyword argument `key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:155:9-24: Unexpected keyword argument `translation_key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:156:9-13: Unexpected keyword argument `icon` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:157:9-24: Unexpected keyword argument `entity_category` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:171:9-12: Unexpected keyword argument `key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:172:9-24: Unexpected keyword argument `translation_key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:173:9-13: Unexpected keyword argument `icon` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:174:9-24: Unexpected keyword argument `entity_category` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:188:9-12: Unexpected keyword argument `key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:189:9-24: Unexpected keyword argument `translation_key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:190:9-13: Unexpected keyword argument `icon` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:191:9-24: Unexpected keyword argument `entity_category` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:205:9-12: Unexpected keyword argument `key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:206:9-24: Unexpected keyword argument `translation_key` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:207:9-13: Unexpected keyword argument `icon` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:208:9-24: Unexpected keyword argument `entity_category` in function `ProtectNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/number.py:259:5-11: Class member `ProtectNumbers.device` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/number.py:260:5-23: Class member `ProtectNumbers.entity_description` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/number.py:260:5-23: Class member `ProtectNumbers.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/select.py:195:9-12: Unexpected keyword argument `key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:196:9-24: Unexpected keyword argument `translation_key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:197:9-13: Unexpected keyword argument `icon` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:198:9-24: Unexpected keyword argument `entity_category` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:206:9-12: Unexpected keyword argument `key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:207:9-24: Unexpected keyword argument `translation_key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:208:9-13: Unexpected keyword argument `icon` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:209:9-24: Unexpected keyword argument `entity_category` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:218:9-12: Unexpected keyword argument `key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:219:9-24: Unexpected keyword argument `translation_key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:220:9-13: Unexpected keyword argument `icon` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:221:9-24: Unexpected keyword argument `entity_category` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:222:9-21: Unexpected keyword argument `device_class` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:230:9-12: Unexpected keyword argument `key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:231:9-24: Unexpected keyword argument `translation_key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:232:9-13: Unexpected keyword argument `icon` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:233:9-24: Unexpected keyword argument `entity_category` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:242:9-12: Unexpected keyword argument `key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:243:9-24: Unexpected keyword argument `translation_key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:244:9-13: Unexpected keyword argument `icon` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:245:9-24: Unexpected keyword argument `entity_category` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:256:9-12: Unexpected keyword argument `key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:257:9-24: Unexpected keyword argument `translation_key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:258:9-13: Unexpected keyword argument `icon` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:259:9-24: Unexpected keyword argument `entity_category` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:266:9-12: Unexpected keyword argument `key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:267:9-24: Unexpected keyword argument `translation_key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:268:9-13: Unexpected keyword argument `icon` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:269:9-24: Unexpected keyword argument `entity_category` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:279:9-12: Unexpected keyword argument `key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:280:9-24: Unexpected keyword argument `translation_key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:281:9-13: Unexpected keyword argument `icon` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:282:9-24: Unexpected keyword argument `entity_category` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:290:9-12: Unexpected keyword argument `key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:291:9-24: Unexpected keyword argument `translation_key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:292:9-13: Unexpected keyword argument `icon` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:293:9-24: Unexpected keyword argument `entity_category` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:303:9-12: Unexpected keyword argument `key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:304:9-24: Unexpected keyword argument `translation_key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:305:9-13: Unexpected keyword argument `icon` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:306:9-24: Unexpected keyword argument `entity_category` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:316:9-12: Unexpected keyword argument `key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:317:9-24: Unexpected keyword argument `translation_key` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:318:9-13: Unexpected keyword argument `icon` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:319:9-24: Unexpected keyword argument `entity_category` in function `ProtectSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/select.py:366:5-11: Class member `ProtectSelects.device` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/select.py:367:5-23: Class member `ProtectSelects.entity_description` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/select.py:367:5-23: Class member `ProtectSelects.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/select.py:397:13-24: `unifi_value` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/select.py:397:26-37: `unifi_value` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/sensor.py:127:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:129:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:131:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:132:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:136:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:137:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:140:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:141:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:147:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:148:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:151:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:152:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:158:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:159:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:162:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:163:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:172:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:173:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:175:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:176:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:180:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:181:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:184:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:191:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:192:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:195:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:203:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:206:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:215:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:216:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:218:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:221:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:224:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:225:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:226:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:227:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:232:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:233:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:234:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:236:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:243:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:244:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:245:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:246:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:251:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:252:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:253:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:254:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:260:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:261:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:262:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:263:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:269:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:270:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:271:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:272:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:273:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:281:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:282:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:285:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:286:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:293:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:294:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:297:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:298:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:308:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:311:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:316:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:324:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:332:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:340:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:341:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:346:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:347:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:350:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:353:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:354:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:357:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:360:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:361:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:364:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:367:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:368:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:369:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:371:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:376:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:377:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:378:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:379:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:384:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:385:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:386:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:387:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:395:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:398:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:403:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:404:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:405:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:406:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:414:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:415:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:416:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:418:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:422:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:423:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:425:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:426:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:432:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:433:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:435:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:436:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:442:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:443:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:445:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:446:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:452:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:453:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:455:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:456:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:462:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:463:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:465:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:466:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:472:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:473:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:475:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:476:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:482:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:483:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:485:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:486:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:492:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:493:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:495:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:496:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:504:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:505:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:507:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:508:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:509:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:514:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:515:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:518:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:519:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:524:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:525:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:527:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:528:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:529:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:538:9-12: Unexpected keyword argument `key` in function `ProtectSensorEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:539:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:540:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:550:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:551:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:554:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:557:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:558:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:559:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:561:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:566:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:567:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:568:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:569:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:574:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:575:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:576:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:577:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:585:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:586:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:589:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:595:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:596:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:598:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:602:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:603:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:604:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:606:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:614:9-12: Unexpected keyword argument `key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:615:9-24: Unexpected keyword argument `translation_key` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:616:9-13: Unexpected keyword argument `icon` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:617:9-24: Unexpected keyword argument `entity_category` in function `ProtectSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/sensor.py:716:5-23: Class member `BaseProtectSensor.entity_description` overrides parent class `BaseProtectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/sensor.py:716:5-23: Class member `BaseProtectSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/sensor.py:735:5-23: Class member `ProtectEventSensor.entity_description` overrides parent class `EventEntityMixin` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/sensor.py:735:5-23: Class member `ProtectEventSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/sensor.py:746:5-11: Class member `ProtectLicensePlateEventSensor.device` overrides parent class `ProtectEventSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/sensor.py:765:13-18: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/sensor.py:766:30-35: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/sensor.py:768:48-53: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/sensor.py:775:31-36: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/sensor.py:776:12-17: `event` may be uninitialized [unbound-name] +ERROR homeassistant/components/unifiprotect/services.py:177:34-46: Argument `int | None` is not assignable to parameter `index` with type `SupportsIndex` in function `list.pop` [bad-argument-type] +ERROR homeassistant/components/unifiprotect/switch.py:54:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:55:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:56:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:57:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:58:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:64:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:65:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:66:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:67:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:74:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:75:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:76:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:77:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:78:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:85:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:86:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:87:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:88:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:95:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:96:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:97:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:98:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:106:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:107:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:108:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:109:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:115:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:116:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:117:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:118:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:124:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:125:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:126:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:127:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:133:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:134:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:135:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:136:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:142:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:143:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:144:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:145:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:152:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:153:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:154:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:155:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:162:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:163:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:164:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:165:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:173:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:174:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:175:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:176:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:184:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:185:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:186:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:187:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:195:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:196:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:197:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:198:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:206:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:207:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:208:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:209:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:217:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:218:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:219:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:220:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:228:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:229:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:230:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:231:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:239:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:240:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:241:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:242:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:250:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:251:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:252:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:253:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:261:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:262:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:263:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:264:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:272:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:273:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:274:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:275:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:283:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:284:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:285:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:286:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:294:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:295:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:296:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:297:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:305:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:306:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:307:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:308:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:316:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:317:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:318:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:319:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:328:5-8: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:329:5-20: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:330:5-9: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:331:5-20: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:339:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:340:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:341:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:342:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:348:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:349:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:350:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:351:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:357:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:358:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:359:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:360:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:366:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:367:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:368:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:369:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:375:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:376:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:377:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:378:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:384:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:385:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:386:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:396:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:397:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:398:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:399:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:400:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:406:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:407:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:408:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:409:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:418:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:419:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:420:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:421:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:430:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:431:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:432:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:433:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:434:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:443:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:444:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:445:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:446:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:451:9-12: Unexpected keyword argument `key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:452:9-24: Unexpected keyword argument `translation_key` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:453:9-13: Unexpected keyword argument `icon` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:454:9-24: Unexpected keyword argument `entity_category` in function `ProtectSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/switch.py:476:5-23: Class member `ProtectBaseSwitch.entity_description` overrides parent class `ProtectIsOnEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/switch.py:490:5-23: Class member `ProtectSwitch.entity_description` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/switch.py:490:5-23: Class member `ProtectSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/switch.py:496:5-23: Class member `ProtectNVRSwitch.entity_description` overrides parent class `ProtectNVREntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/switch.py:496:5-23: Class member `ProtectNVRSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/switch.py:502:5-11: Class member `ProtectPrivacyModeSwitch.device` overrides parent class `ProtectSwitch` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/switch.py:503:5-23: Class member `ProtectPrivacyModeSwitch.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/text.py:48:9-12: Unexpected keyword argument `key` in function `ProtectTextEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/text.py:49:9-24: Unexpected keyword argument `translation_key` in function `ProtectTextEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/text.py:50:9-24: Unexpected keyword argument `entity_category` in function `ProtectTextEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/unifiprotect/text.py:93:5-23: Class member `ProtectDeviceText.entity_description` overrides parent class `ProtectDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/text.py:93:5-23: Class member `ProtectDeviceText.entity_description` overrides parent class `TextEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/unifiprotect/views.py:174:16-22: `camera` may be uninitialized [unbound-name] +ERROR homeassistant/components/universal/media_player.py:174:29-33: Argument `None` is not assignable to parameter `object` with type `str` in function `list.append` [bad-argument-type] +ERROR homeassistant/components/universal/media_player.py:669:33-89: `State | None` is not assignable to attribute `_child_state` with type `None` [bad-assignment] +ERROR homeassistant/components/universal/media_player.py:680:45-56: `State` is not assignable to attribute `_child_state` with type `None` [bad-assignment] +ERROR homeassistant/components/universal/media_player.py:682:41-52: `State` is not assignable to attribute `_child_state` with type `None` [bad-assignment] +ERROR homeassistant/components/upb/__init__.py:55:9-29: Object of class `NoneType` has no attribute `add_callback` [missing-attribute] +ERROR homeassistant/components/upb/config_flow.py:103:52-62: `network_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/upb/config_flow.py:107:27-31: `info` may be uninitialized [unbound-name] +ERROR homeassistant/components/upb/config_flow.py:109:36-40: `info` may be uninitialized [unbound-name] +ERROR homeassistant/components/upb/light.py:61:14-30: Class member `UpbLight._attr_brightness` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/upc_connect/device_tracker.py:7:1-35: Could not find import of `connect_box` [missing-import] +ERROR homeassistant/components/upc_connect/device_tracker.py:8:1-73: Could not find import of `connect_box.exceptions` [missing-import] +ERROR homeassistant/components/upcloud/__init__.py:54:43-63: Argument `BoundMethod[CloudManager, (self: CloudManager) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/upcloud/binary_sensor.py:28:5-23: Class member `UpCloudBinarySensor._attr_device_class` overrides parent class `UpCloudServerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/upcloud/config_flow.py:45:52-72: Argument `BoundMethod[CloudManager, (self: CloudManager) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/upcloud/config_flow.py:90:9-31: Class member `UpCloudConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/upcloud/coordinator.py:47:14-29: Class member `UpCloudDataUpdateCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/upcloud/coordinator.py:47:32-49:10: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@UpCloudDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/upcloud/entity.py:75:13-31: Object of class `Server` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/upcloud/entity.py:75:33-51: Object of class `Server` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/update/__init__.py:181:5-17: Class member `UpdateEntityDescription.device_class` overrides parent class `EntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/update/__init__.py:183:5-20: Class member `UpdateEntityDescription.entity_category` overrides parent class `EntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/update/__init__.py:224:5-23: Class member `UpdateEntity.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/update/__init__.py:227:5-23: Class member `UpdateEntity._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/update/__init__.py:233:5-16: Class member `UpdateEntity._attr_state` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/update/__init__.py:234:5-29: Class member `UpdateEntity._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/update/__init__.py:396:55-73: Argument `BoundMethod[Self@UpdateEntity, (self: Self@UpdateEntity) -> str | None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/update/__init__.py:468:35-50: `release_summary` may be uninitialized [unbound-name] +ERROR homeassistant/components/upnp/binary_sensor.py:30:9-12: Unexpected keyword argument `key` in function `UpnpBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/binary_sensor.py:31:9-24: Unexpected keyword argument `translation_key` in function `UpnpBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/binary_sensor.py:33:9-24: Unexpected keyword argument `entity_category` in function `UpnpBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/binary_sensor.py:61:5-23: Class member `UpnpStatusBinarySensor.entity_description` overrides parent class `UpnpEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/upnp/binary_sensor.py:61:5-23: Class member `UpnpStatusBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/upnp/config_flow.py:101:9-31: Class member `UpnpFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/upnp/coordinator.py:25:5-17: Class member `UpnpDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/upnp/entity.py:29:5-23: Class member `UpnpEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/upnp/sensor.py:51:9-12: Unexpected keyword argument `key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:55:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:60:9-12: Unexpected keyword argument `key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:64:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:69:9-12: Unexpected keyword argument `key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:72:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:77:9-12: Unexpected keyword argument `key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:80:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:85:9-12: Unexpected keyword argument `key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:87:9-24: Unexpected keyword argument `entity_category` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:90:9-12: Unexpected keyword argument `key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:91:9-24: Unexpected keyword argument `translation_key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:94:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:95:9-24: Unexpected keyword argument `entity_category` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:99:9-12: Unexpected keyword argument `key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:101:9-24: Unexpected keyword argument `entity_category` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:102:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:105:9-12: Unexpected keyword argument `key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:107:9-24: Unexpected keyword argument `entity_category` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:108:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:111:9-12: Unexpected keyword argument `key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:121:9-12: Unexpected keyword argument `key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:122:9-24: Unexpected keyword argument `translation_key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:131:9-12: Unexpected keyword argument `key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:132:9-24: Unexpected keyword argument `translation_key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:136:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:141:9-12: Unexpected keyword argument `key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:142:9-24: Unexpected keyword argument `translation_key` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:146:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `UpnpSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/upnp/sensor.py:177:5-23: Class member `UpnpSensor.entity_description` overrides parent class `UpnpEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/upnp/sensor.py:177:5-23: Class member `UpnpSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/uptime_kuma/coordinator.py:41:5-17: Class member `UptimeKumaDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/uptime_kuma/sensor.py:52:9-12: Unexpected keyword argument `key` in function `UptimeKumaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `UptimeKumaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/sensor.py:60:9-12: Unexpected keyword argument `key` in function `UptimeKumaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `UptimeKumaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/sensor.py:70:9-12: Unexpected keyword argument `key` in function `UptimeKumaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `UptimeKumaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/sensor.py:78:9-12: Unexpected keyword argument `key` in function `UptimeKumaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `UptimeKumaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/sensor.py:83:9-24: Unexpected keyword argument `entity_category` in function `UptimeKumaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/sensor.py:87:9-12: Unexpected keyword argument `key` in function `UptimeKumaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `UptimeKumaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/sensor.py:89:9-24: Unexpected keyword argument `entity_category` in function `UptimeKumaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/sensor.py:94:9-12: Unexpected keyword argument `key` in function `UptimeKumaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/sensor.py:95:9-24: Unexpected keyword argument `translation_key` in function `UptimeKumaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/sensor.py:96:9-24: Unexpected keyword argument `entity_category` in function `UptimeKumaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/sensor.py:101:9-12: Unexpected keyword argument `key` in function `UptimeKumaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `UptimeKumaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/sensor.py:103:9-24: Unexpected keyword argument `entity_category` in function `UptimeKumaSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/sensor.py:142:5-23: Class member `UptimeKumaSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/uptime_kuma/sensor.py:142:5-23: Class member `UptimeKumaSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/uptime_kuma/sensor.py:168:22-25: `url` is uninitialized [unbound-name] +ERROR homeassistant/components/uptime_kuma/update.py:53:5-23: Class member `UptimeKumaUpdateEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/uptime_kuma/update.py:54:9-12: Unexpected keyword argument `key` in function `homeassistant.components.update.UpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/update.py:55:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.update.UpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptime_kuma/update.py:57:5-29: Class member `UptimeKumaUpdateEntity._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/uptimerobot/binary_sensor.py:37:21-24: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptimerobot/binary_sensor.py:50:7-30: Field `entity_description` is declared `EntityDescription` in ancestor `class UptimeRobotEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/uptimerobot/config_flow.py:60:13-62:22: `UptimeRobotAccount | list[UptimeRobotMonitor] | object | Unknown | None` is not assignable to `UptimeRobotAccount | None` [bad-assignment] +ERROR homeassistant/components/uptimerobot/config_flow.py:61:29-42: Object of class `UptimeRobotApiError` has no attribute `data` [missing-attribute] +ERROR homeassistant/components/uptimerobot/config_flow.py:61:47-66: Object of class `list` has no attribute `email` +Object of class `object` has no attribute `email` [missing-attribute] +ERROR homeassistant/components/uptimerobot/coordinator.py:28:5-17: Class member `UptimeRobotDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/uptimerobot/sensor.py:46:21-24: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptimerobot/sensor.py:47:21-36: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptimerobot/sensor.py:56:21-36: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptimerobot/sensor.py:68:7-24: Field `entity_description` is declared `EntityDescription` in ancestor `class UptimeRobotEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/uptimerobot/switch.py:45:21-24: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/uptimerobot/switch.py:58:7-24: Field `entity_description` is declared `EntityDescription` in ancestor `class UptimeRobotEntity: ... +`, which is not assignable to the type `SwitchEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/usb/__init__.py:489:56-73: Argument `() -> Sequence[USBDevice]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/usgs_earthquakes_feed/geo_location.py:264:31-56: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/usgs_earthquakes_feed/geo_location.py:265:32-57: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/usgs_earthquakes_feed/geo_location.py:267:23-39: `str` is not assignable to attribute `_place` with type `None` [bad-assignment] +ERROR homeassistant/components/usgs_earthquakes_feed/geo_location.py:268:27-47: `float` is not assignable to attribute `_magnitude` with type `None` [bad-assignment] +ERROR homeassistant/components/usgs_earthquakes_feed/geo_location.py:271:24-41: `str` is not assignable to attribute `_status` with type `None` [bad-assignment] +ERROR homeassistant/components/usgs_earthquakes_feed/geo_location.py:272:22-37: `str` is not assignable to attribute `_type` with type `None` [bad-assignment] +ERROR homeassistant/components/usgs_earthquakes_feed/geo_location.py:273:23-39: `str` is not assignable to attribute `_alert` with type `None` [bad-assignment] +ERROR homeassistant/components/utility_meter/__init__.py:277:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/utility_meter/sensor.py:383:26-45: `Unknown | None` is not assignable to attribute `entity_id` with type `str` [bad-assignment] +ERROR homeassistant/components/utility_meter/sensor.py:528:34-47: `Decimal` is not assignable to attribute `_last_valid_state` with type `None` [bad-assignment] +ERROR homeassistant/components/utility_meter/sensor.py:541:32-543:14: `() -> None` is not assignable to attribute `_collecting` with type `None` [bad-assignment] +ERROR homeassistant/components/utility_meter/sensor.py:566:32-52: `datetime` is not assignable to attribute `_next_reset` with type `None` [bad-assignment] +ERROR homeassistant/components/utility_meter/sensor.py:573:21-37: Argument `None` is not assignable to parameter `point_in_time` with type `datetime` in function `homeassistant.helpers.event.async_track_point_in_time` [bad-argument-type] +ERROR homeassistant/components/utility_meter/sensor.py:598:21-38: Argument `Decimal | date | datetime | float | int | str` is not assignable to parameter `value` with type `Decimal | float | str | tuple[int, Sequence[int], int]` in function `decimal.Decimal.__new__` [bad-argument-type] +ERROR homeassistant/components/utility_meter/sensor.py:615:28-54: `str` is not assignable to attribute `_current_tz` with type `None` [bad-assignment] +ERROR homeassistant/components/utility_meter/sensor.py:627:40-75: `SensorDeviceClass | None` is not assignable to attribute `_input_device_class` with type `None` [bad-assignment] +ERROR homeassistant/components/utility_meter/sensor.py:632:32-59: `datetime | None` is not assignable to attribute `_last_reset` with type `datetime` [bad-assignment] +ERROR homeassistant/components/utility_meter/sensor.py:633:38-71: `Decimal | None` is not assignable to attribute `_last_valid_state` with type `None` [bad-assignment] +ERROR homeassistant/components/utility_meter/sensor.py:636:36-48: `() -> None` is not assignable to attribute `_collecting` with type `None` [bad-assignment] +ERROR homeassistant/components/utility_meter/sensor.py:665:32-667:14: `() -> None` is not assignable to attribute `_collecting` with type `None` [bad-assignment] +ERROR homeassistant/components/utility_meter/sensor.py:675:36-62: `str` is not assignable to attribute `_current_tz` with type `None` [bad-assignment] +ERROR homeassistant/components/uvc/camera.py:102:27-42: Class member `UnifiVideoCamera._attr_unique_id` overrides parent class `Camera` in an inconsistent manner [bad-override] +ERROR homeassistant/components/v2c/binary_sensor.py:31:9-12: Unexpected keyword argument `key` in function `V2CBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/binary_sensor.py:32:9-24: Unexpected keyword argument `translation_key` in function `V2CBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/binary_sensor.py:37:9-12: Unexpected keyword argument `key` in function `V2CBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/binary_sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `V2CBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/binary_sensor.py:43:9-12: Unexpected keyword argument `key` in function `V2CBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/binary_sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `V2CBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/binary_sensor.py:67:5-23: Class member `V2CBinarySensorBaseEntity.entity_description` overrides parent class `V2CBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/v2c/binary_sensor.py:67:5-23: Class member `V2CBinarySensorBaseEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/v2c/coordinator.py:26:5-17: Class member `V2CUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/v2c/number.py:37:9-12: Unexpected keyword argument `key` in function `V2CSettingsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/number.py:38:9-24: Unexpected keyword argument `translation_key` in function `V2CSettingsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/number.py:47:9-12: Unexpected keyword argument `key` in function `V2CSettingsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/number.py:48:9-24: Unexpected keyword argument `translation_key` in function `V2CSettingsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/number.py:50:9-24: Unexpected keyword argument `entity_category` in function `V2CSettingsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/number.py:58:9-12: Unexpected keyword argument `key` in function `V2CSettingsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/number.py:59:9-24: Unexpected keyword argument `translation_key` in function `V2CSettingsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/number.py:61:9-24: Unexpected keyword argument `entity_category` in function `V2CSettingsNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/number.py:88:5-23: Class member `V2CSettingsNumberEntity.entity_description` overrides parent class `V2CBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/v2c/number.py:88:5-23: Class member `V2CSettingsNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/v2c/sensor.py:51:9-12: Unexpected keyword argument `key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:59:9-12: Unexpected keyword argument `key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:65:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:68:9-12: Unexpected keyword argument `key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:76:9-12: Unexpected keyword argument `key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:84:9-12: Unexpected keyword argument `key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:85:9-24: Unexpected keyword argument `translation_key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:92:9-12: Unexpected keyword argument `key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:93:9-24: Unexpected keyword argument `translation_key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:100:9-12: Unexpected keyword argument `key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:101:9-24: Unexpected keyword argument `translation_key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:102:9-24: Unexpected keyword argument `entity_category` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:104:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:109:9-12: Unexpected keyword argument `key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:110:9-24: Unexpected keyword argument `translation_key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:115:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:118:9-12: Unexpected keyword argument `key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:119:9-24: Unexpected keyword argument `translation_key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:120:9-24: Unexpected keyword argument `entity_category` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:122:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:125:9-12: Unexpected keyword argument `key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:127:9-24: Unexpected keyword argument `entity_category` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:129:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:132:9-12: Unexpected keyword argument `key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:133:9-24: Unexpected keyword argument `translation_key` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:134:9-24: Unexpected keyword argument `entity_category` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:137:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `V2CSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/sensor.py:159:5-23: Class member `V2CSensorBaseEntity.entity_description` overrides parent class `V2CBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/v2c/sensor.py:159:5-23: Class member `V2CSensorBaseEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/v2c/switch.py:40:9-12: Unexpected keyword argument `key` in function `V2CSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/switch.py:41:9-24: Unexpected keyword argument `translation_key` in function `V2CSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/switch.py:47:9-12: Unexpected keyword argument `key` in function `V2CSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/switch.py:48:9-24: Unexpected keyword argument `translation_key` in function `V2CSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/switch.py:54:9-12: Unexpected keyword argument `key` in function `V2CSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/switch.py:55:9-24: Unexpected keyword argument `translation_key` in function `V2CSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/switch.py:61:9-12: Unexpected keyword argument `key` in function `V2CSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/switch.py:62:9-24: Unexpected keyword argument `translation_key` in function `V2CSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/switch.py:68:9-12: Unexpected keyword argument `key` in function `V2CSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/switch.py:69:9-24: Unexpected keyword argument `translation_key` in function `V2CSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/switch.py:70:9-13: Unexpected keyword argument `icon` in function `V2CSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/v2c/switch.py:96:5-23: Class member `V2CSwitchEntity.entity_description` overrides parent class `V2CBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/v2c/switch.py:96:5-23: Class member `V2CSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vacuum/__init__.py:208:5-23: Class member `StateVacuumEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vacuum/__init__.py:217:5-29: Class member `StateVacuumEntity._attr_supported_features` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vacuum/__init__.py:502:48-58: Argument `BoundMethod[Self@StateVacuumEntity, (self: Self@StateVacuumEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/vacuum/__init__.py:513:48-58: Argument `BoundMethod[Self@StateVacuumEntity, (self: Self@StateVacuumEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/vacuum/device_action.py:77:17-24: `service` may be uninitialized [unbound-name] +ERROR homeassistant/components/vacuum/reproduce_state.py:84:21-28: `service` may be uninitialized [unbound-name] +ERROR homeassistant/components/vallox/__init__.py:149:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/vallox/binary_sensor.py:24:5-23: Class member `ValloxBinarySensorEntity.entity_description` overrides parent class `ValloxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vallox/binary_sensor.py:24:5-23: Class member `ValloxBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vallox/binary_sensor.py:55:9-12: Unexpected keyword argument `key` in function `ValloxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/binary_sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `ValloxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/coordinator.py:22:5-17: Class member `ValloxDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vallox/fan.py:82:5-29: Class member `ValloxFanEntity._attr_supported_features` overrides parent class `ValloxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vallox/number.py:27:5-23: Class member `ValloxNumberEntity.entity_description` overrides parent class `ValloxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vallox/number.py:27:5-23: Class member `ValloxNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vallox/number.py:72:9-12: Unexpected keyword argument `key` in function `ValloxNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/number.py:73:9-24: Unexpected keyword argument `translation_key` in function `ValloxNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/number.py:82:9-12: Unexpected keyword argument `key` in function `ValloxNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/number.py:83:9-24: Unexpected keyword argument `translation_key` in function `ValloxNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/number.py:92:9-12: Unexpected keyword argument `key` in function `ValloxNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/number.py:93:9-24: Unexpected keyword argument `translation_key` in function `ValloxNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:42:5-23: Class member `ValloxSensorEntity.entity_description` overrides parent class `ValloxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vallox/sensor.py:42:5-23: Class member `ValloxSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vallox/sensor.py:154:9-12: Unexpected keyword argument `key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:155:9-24: Unexpected keyword argument `translation_key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:159:9-12: Unexpected keyword argument `key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:167:9-12: Unexpected keyword argument `key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:168:9-24: Unexpected keyword argument `translation_key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:173:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:176:9-12: Unexpected keyword argument `key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:177:9-24: Unexpected keyword argument `translation_key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:182:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:185:9-12: Unexpected keyword argument `key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:186:9-24: Unexpected keyword argument `translation_key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:191:9-12: Unexpected keyword argument `key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:192:9-24: Unexpected keyword argument `translation_key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:197:9-12: Unexpected keyword argument `key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:198:9-24: Unexpected keyword argument `translation_key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:205:9-12: Unexpected keyword argument `key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:206:9-24: Unexpected keyword argument `translation_key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:213:9-12: Unexpected keyword argument `key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:214:9-24: Unexpected keyword argument `translation_key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:221:9-12: Unexpected keyword argument `key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:222:9-24: Unexpected keyword argument `translation_key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:229:9-12: Unexpected keyword argument `key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:230:9-24: Unexpected keyword argument `translation_key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:237:9-12: Unexpected keyword argument `key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:238:9-24: Unexpected keyword argument `translation_key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:243:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:246:9-12: Unexpected keyword argument `key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:253:9-12: Unexpected keyword argument `key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:254:9-24: Unexpected keyword argument `translation_key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:258:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:262:9-12: Unexpected keyword argument `key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:267:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:270:9-12: Unexpected keyword argument `key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/sensor.py:271:9-24: Unexpected keyword argument `translation_key` in function `ValloxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/switch.py:24:5-23: Class member `ValloxSwitchEntity.entity_description` overrides parent class `ValloxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vallox/switch.py:24:5-23: Class member `ValloxSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vallox/switch.py:75:9-12: Unexpected keyword argument `key` in function `ValloxSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vallox/switch.py:76:9-24: Unexpected keyword argument `translation_key` in function `ValloxSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/valve/__init__.py:126:5-17: Class member `ValveEntityDescription.device_class` overrides parent class `EntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/valve/__init__.py:133:5-23: Class member `ValveEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/valve/__init__.py:135:5-23: Class member `ValveEntity._attr_device_class` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/valve/__init__.py:140:5-29: Class member `ValveEntity._attr_supported_features` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/valve/__init__.py:224:48-63: Argument `BoundMethod[Self@ValveEntity, (self: Self@ValveEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/valve/__init__.py:240:48-64: Argument `BoundMethod[Self@ValveEntity, (self: Self@ValveEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/valve/__init__.py:276:48-63: Argument `BoundMethod[Self@ValveEntity, (self: Self@ValveEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/vasttrafik/sensor.py:8:8-18: Could not find import of `vasttrafik` [missing-import] +ERROR homeassistant/components/vasttrafik/sensor.py:149:32-34: `dict[@_, @_]` is not assignable to attribute `_attributes` with type `None` [bad-assignment] +ERROR homeassistant/components/vasttrafik/sensor.py:160:43-162:48: `str` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/vasttrafik/sensor.py:184:40-78: `dict[str, int | str | Unknown]` is not assignable to attribute `_attributes` with type `None` [bad-assignment] +ERROR homeassistant/components/vegehub/__init__.py:44:26-46:6: `VegeHubCoordinator` is not assignable to attribute `runtime_data` with type `VegeHub` [bad-assignment] +ERROR homeassistant/components/vegehub/__init__.py:59:61-79: Argument `VegeHub` is not assignable to parameter `coordinator` with type `VegeHubCoordinator` in function `get_webhook_handler` [bad-argument-type] +ERROR homeassistant/components/vegehub/coordinator.py:22:5-17: Class member `VegeHubCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vegehub/sensor.py:19:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vegehub/sensor.py:20:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vegehub/sensor.py:26:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vegehub/sensor.py:27:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vegehub/sensor.py:47:21-40: Object of class `VegeHub` has no attribute `vegehub` [missing-attribute] +ERROR homeassistant/components/vegehub/sensor.py:50:25-36: Argument `VegeHub` is not assignable to parameter `coordinator` with type `VegeHubCoordinator` in function `VegeHubSensor.__init__` [bad-argument-type] +ERROR homeassistant/components/vegehub/sensor.py:56:12-31: Object of class `VegeHub` has no attribute `vegehub` [missing-attribute] +ERROR homeassistant/components/vegehub/sensor.py:60:29-40: Argument `VegeHub` is not assignable to parameter `coordinator` with type `VegeHubCoordinator` in function `VegeHubSensor.__init__` [bad-argument-type] +ERROR homeassistant/components/vegehub/sensor.py:79:14-32: Class member `VegeHubSensor.entity_description` overrides parent class `VegeHubEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vegehub/switch.py:18:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vegehub/switch.py:19:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vegehub/switch.py:37:25-36: Argument `VegeHub` is not assignable to parameter `coordinator` with type `VegeHubCoordinator` in function `VegeHubSwitch.__init__` [bad-argument-type] +ERROR homeassistant/components/vegehub/switch.py:40:24-43: Object of class `VegeHub` has no attribute `vegehub` [missing-attribute] +ERROR homeassistant/components/vegehub/switch.py:47:5-23: Class member `VegeHubSwitch._attr_device_class` overrides parent class `VegeHubEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vegehub/switch.py:58:14-32: Class member `VegeHubSwitch.entity_description` overrides parent class `VegeHubEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velbus/__init__.py:128:38-131:6: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[PathLike[bytes] | PathLike[str] | bytes | str, bool, (((...) -> Any, str, tuple[type[BaseException], BaseException, TracebackType]) -> object) | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/velbus/__init__.py:150:46-73: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[PathLike[bytes] | PathLike[str] | bytes | str, bool, (((...) -> Any, str, tuple[type[BaseException], BaseException, TracebackType]) -> object) | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/velbus/binary_sensor.py:31:5-13: Class member `VelbusBinarySensor._channel` overrides parent class `VelbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velbus/button.py:37:5-13: Class member `VelbusButton._channel` overrides parent class `VelbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velbus/climate.py:42:5-13: Class member `VelbusClimate._channel` overrides parent class `VelbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velbus/climate.py:43:5-29: Class member `VelbusClimate._attr_supported_features` overrides parent class `VelbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velbus/cover.py:39:5-13: Class member `VelbusCover._channel` overrides parent class `VelbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velbus/cover.py:46:18-42: Class member `VelbusCover._attr_supported_features` overrides parent class `VelbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velbus/cover.py:74:16-23: `opening` may be uninitialized [unbound-name] +ERROR homeassistant/components/velbus/cover.py:81:16-23: `closing` may be uninitialized [unbound-name] +ERROR homeassistant/components/velbus/light.py:55:5-13: Class member `VelbusLight._channel` overrides parent class `VelbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velbus/light.py:58:5-29: Class member `VelbusLight._attr_supported_features` overrides parent class `VelbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velbus/light.py:105:5-13: Class member `VelbusButtonLight._channel` overrides parent class `VelbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velbus/light.py:110:5-29: Class member `VelbusButtonLight._attr_supported_features` overrides parent class `VelbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velbus/select.py:32:5-13: Class member `VelbusSelect._channel` overrides parent class `VelbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velbus/sensor.py:39:5-13: Class member `VelbusSensor._channel` overrides parent class `VelbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velbus/sensor.py:50:18-36: Class member `VelbusSensor._attr_device_class` overrides parent class `VelbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velbus/services.py:41:62-70: `entry_id` may be uninitialized [unbound-name] +ERROR homeassistant/components/velbus/services.py:87:50-90:18: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[PathLike[bytes] | PathLike[str] | bytes | str, bool, (((...) -> Any, str, tuple[type[BaseException], BaseException, TracebackType]) -> object) | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/velbus/switch.py:33:5-13: Class member `VelbusSwitch._channel` overrides parent class `VelbusEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velux/binary_sensor.py:43:5-9: Class member `VeluxRainSensor.node` overrides parent class `VeluxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velux/binary_sensor.py:46:5-23: Class member `VeluxRainSensor._attr_device_class` overrides parent class `VeluxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velux/cover.py:51:5-9: Class member `VeluxCover.node` overrides parent class `VeluxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velux/cover.py:60:14-38: Class member `VeluxCover._attr_supported_features` overrides parent class `VeluxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velux/cover.py:67:14-32: Class member `VeluxCover._attr_device_class` overrides parent class `VeluxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/velux/light.py:40:5-9: Class member `VeluxLight.node` overrides parent class `VeluxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/venstar/binary_sensor.py:34:5-23: Class member `VenstarBinarySensor._attr_device_class` overrides parent class `VenstarEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/venstar/binary_sensor.py:46:22-41: Type `None` is not iterable [not-iterable] +ERROR homeassistant/components/venstar/config_flow.py:42:54-72: Argument `BoundMethod[VenstarColorTouch, (self: VenstarColorTouch) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/venstar/config_flow.py:46:12-23: Returned type `None` is not assignable to declared return type `str` [bad-return] +ERROR homeassistant/components/venstar/coordinator.py:21:5-17: Class member `VenstarDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/venstar/coordinator.py:43:52-75: Argument `BoundMethod[VenstarColorTouch, (self: VenstarColorTouch) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/venstar/coordinator.py:53:52-78: Argument `BoundMethod[VenstarColorTouch, (self: VenstarColorTouch) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/venstar/coordinator.py:63:52-77: Argument `BoundMethod[VenstarColorTouch, (self: VenstarColorTouch) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/venstar/coordinator.py:74:17-41: Argument `BoundMethod[VenstarColorTouch, (self: VenstarColorTouch) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/venstar/sensor.py:140:5-23: Class member `VenstarSensor.entity_description` overrides parent class `VenstarEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/venstar/sensor.py:140:5-23: Class member `VenstarSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/venstar/sensor.py:175:9-12: Unexpected keyword argument `key` in function `VenstarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/venstar/sensor.py:185:9-12: Unexpected keyword argument `key` in function `VenstarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/venstar/sensor.py:195:9-12: Unexpected keyword argument `key` in function `VenstarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/venstar/sensor.py:205:9-12: Unexpected keyword argument `key` in function `VenstarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/venstar/sensor.py:215:9-12: Unexpected keyword argument `key` in function `VenstarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/venstar/sensor.py:227:5-8: Unexpected keyword argument `key` in function `VenstarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/venstar/sensor.py:236:9-12: Unexpected keyword argument `key` in function `VenstarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/venstar/sensor.py:243:9-24: Unexpected keyword argument `translation_key` in function `VenstarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/venstar/sensor.py:246:9-12: Unexpected keyword argument `key` in function `VenstarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/venstar/sensor.py:251:9-24: Unexpected keyword argument `translation_key` in function `VenstarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/venstar/sensor.py:257:9-12: Unexpected keyword argument `key` in function `VenstarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/venstar/sensor.py:260:9-24: Unexpected keyword argument `translation_key` in function `VenstarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/venstar/sensor.py:268:9-12: Unexpected keyword argument `key` in function `VenstarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/venstar/sensor.py:271:9-24: Unexpected keyword argument `translation_key` in function `VenstarSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vera/__init__.py:108:56-77: Argument `BoundMethod[VeraController, (self: VeraController) -> list[VeraScene]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/vera/__init__.py:141:39-55: Argument `BoundMethod[VeraController, (self: VeraController) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/vera/__init__.py:157:41-72: Argument `BoundMethod[VeraController, (self: VeraController) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/vera/binary_sensor.py:26:30-36: Argument `VeraDevice` is not assignable to parameter `vera_device` with type `VeraBinarySensor` in function `VeraBinarySensor.__init__` [bad-argument-type] +ERROR homeassistant/components/vera/climate.py:39:28-34: Argument `VeraDevice` is not assignable to parameter `vera_device` with type `VeraThermostat` in function `VeraThermostat.__init__` [bad-argument-type] +ERROR homeassistant/components/vera/climate.py:51:5-29: Class member `VeraThermostat._attr_supported_features` overrides parent class `VeraEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vera/climate.py:114:16-48: Returned type `str | None` is not assignable to declared return type `str` [bad-return] +ERROR homeassistant/components/vera/climate.py:124:46-74: Argument `Any | None` is not assignable to parameter `temp` with type `float` in function `pyvera.VeraThermostat.set_temperature` [bad-argument-type] +ERROR homeassistant/components/vera/config_flow.py:105:9-31: Class member `VeraFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vera/config_flow.py:166:52-75: Argument `BoundMethod[VeraController, (self: VeraController) -> dict[int, VeraDevice]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/vera/cover.py:28:23-29: Argument `VeraDevice` is not assignable to parameter `vera_device` with type `VeraCurtain` in function `VeraCover.__init__` [bad-argument-type] +ERROR homeassistant/components/vera/cover.py:60:36-61: Argument `Any | None` is not assignable to parameter `level` with type `int` in function `pyvera.VeraCurtain.set_level` [bad-argument-type] +ERROR homeassistant/components/vera/entity.py:49:52-73: Argument `BoundMethod[Self@VeraEntity, (self: Self@VeraEntity, _device: _DeviceTypeT) -> None]` is not assignable to parameter `callback` with type `(VeraDevice) -> None` in function `pyvera.VeraController.register` [bad-argument-type] +ERROR homeassistant/components/vera/entity.py:53:54-75: Argument `BoundMethod[Self@VeraEntity, (self: Self@VeraEntity, _device: _DeviceTypeT) -> None]` is not assignable to parameter `callback` with type `(VeraDevice) -> None` in function `pyvera.VeraController.unregister` [bad-argument-type] +ERROR homeassistant/components/vera/entity.py:81:32-60: Cannot set item in `dict[str, int]` [unsupported-operation] +ERROR homeassistant/components/vera/entity.py:86:45-65: Cannot set item in `dict[str, int]` [unsupported-operation] +ERROR homeassistant/components/vera/entity.py:88:45-49: Cannot set item in `dict[str, int]` [unsupported-operation] +ERROR homeassistant/components/vera/entity.py:90:34-64: Cannot set item in `dict[str, int]` [unsupported-operation] +ERROR homeassistant/components/vera/light.py:35:23-29: Argument `VeraDevice` is not assignable to parameter `vera_device` with type `VeraDimmer` in function `VeraLight.__init__` [bad-argument-type] +ERROR homeassistant/components/vera/light.py:74:40-43: Argument `tuple[int, int, int]` is not assignable to parameter `rgb` with type `list[int]` in function `pyvera.VeraDimmer.set_color` [bad-argument-type] +ERROR homeassistant/components/vera/lock.py:31:22-28: Argument `VeraDevice` is not assignable to parameter `vera_device` with type `VeraLock` in function `VeraLock.__init__` [bad-argument-type] +ERROR homeassistant/components/vera/sensor.py:41:24-30: Argument `VeraDevice` is not assignable to parameter `vera_device` with type `VeraSensor` in function `VeraSensor.__init__` [bad-argument-type] +ERROR homeassistant/components/vera/sensor.py:60:18-36: Class member `VeraSensor._attr_device_class` overrides parent class `VeraEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vera/sensor.py:104:38-42: `str` is not assignable to attribute `last_changed_time` with type `None` [bad-assignment] +ERROR homeassistant/components/vera/switch.py:28:24-30: Argument `VeraDevice` is not assignable to parameter `vera_device` with type `VeraSwitch` in function `VeraSwitch.__init__` [bad-argument-type] +ERROR homeassistant/components/verisure/alarm_control_panel.py:40:5-29: Class member `VerisureAlarm._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/verisure/binary_sensor.py:45:5-23: Class member `VerisureDoorWindowSensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/verisure/binary_sensor.py:99:5-23: Class member `VerisureEthernetStatus._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/verisure/config_flow.py:46:9-31: Class member `VerisureConfigFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/verisure/config_flow.py:70:56-75: Argument `BoundMethod[Session, (self: Session) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/verisure/config_flow.py:75:29-54: Argument `BoundMethod[Session, (self: Session) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/verisure/config_flow.py:146:13-44: Argument `BoundMethod[Session, (self: Session) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/verisure/config_flow.py:204:56-75: Argument `BoundMethod[Session, (self: Session) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/verisure/config_flow.py:209:29-54: Argument `BoundMethod[Session, (self: Session) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/verisure/config_flow.py:262:56-75: Argument `BoundMethod[Session, (self: Session) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/verisure/coordinator.py:28:5-17: Class member `VerisureDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/verisure/coordinator.py:54:52-78: Argument `BoundMethod[Session, (self: Session) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/verisure/coordinator.py:71:52-79: Argument `BoundMethod[Session, (self: Session) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/verisure/coordinator.py:75:56-82: Argument `BoundMethod[Session, (self: Session) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/verisure/sensor.py:50:5-23: Class member `VerisureThermometer._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/verisure/sensor.py:100:5-23: Class member `VerisureHygrometer._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/versasense/__init__.py:5:8-27: Could not find import of `pyversasense` [missing-import] +ERROR homeassistant/components/versasense/switch.py:125:27-31: `None` is not assignable to attribute `_is_on` with type `bool` [bad-assignment] +ERROR homeassistant/components/version/binary_sensor.py:40:17-20: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/version/binary_sensor.py:41:17-21: Unexpected keyword argument `name` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/version/binary_sensor.py:41:25-36: `entity_name` may be uninitialized [unbound-name] +ERROR homeassistant/components/version/binary_sensor.py:43:17-32: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/version/binary_sensor.py:54:5-23: Class member `VersionBinarySensor.entity_description` overrides parent class `VersionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/version/coordinator.py:23:5-17: Class member `VersionDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/version/sensor.py:32:17-20: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/version/sensor.py:33:17-21: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/version/sensor.py:33:22-33: `entity_name` may be uninitialized [unbound-name] +ERROR homeassistant/components/version/sensor.py:34:17-32: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/version/sensor.py:42:7-26: Field `entity_description` is declared `EntityDescription` in ancestor `class VersionEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/vesync/binary_sensor.py:39:9-12: Unexpected keyword argument `key` in function `VeSyncBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/binary_sensor.py:40:9-24: Unexpected keyword argument `translation_key` in function `VeSyncBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/binary_sensor.py:46:9-12: Unexpected keyword argument `key` in function `VeSyncBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/binary_sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `VeSyncBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/binary_sensor.py:69:24-53: Missing argument `coordinator` in function `_setup_entities` [missing-argument] +ERROR homeassistant/components/vesync/binary_sensor.py:96:5-23: Class member `VeSyncBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vesync/binary_sensor.py:96:5-23: Class member `VeSyncBinarySensor.entity_description` overrides parent class `VeSyncBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vesync/coordinator.py:22:5-17: Class member `VeSyncDataCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vesync/fan.py:84:5-29: Class member `VeSyncFanHA._attr_supported_features` overrides parent class `VeSyncBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vesync/fan.py:125:17-39: Object of class `VeSyncBaseDevice` has no attribute `fan_levels` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:132:20-42: Object of class `VeSyncBaseDevice` has no attribute `fan_levels` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:196:26-46: Object of class `VeSyncBaseDevice` has no attribute `turn_off` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:199:23-56: Object of class `NoneType` has no attribute `message` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:206:26-45: Object of class `VeSyncBaseDevice` has no attribute `turn_on` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:209:23-56: Object of class `NoneType` has no attribute `message` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:214:26-53: Object of class `VeSyncBaseDevice` has no attribute `set_manual_mode` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:217:23-56: Object of class `NoneType` has no attribute `message` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:221:22-47: Object of class `VeSyncBaseDevice` has no attribute `set_fan_speed` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:222:45-67: Object of class `VeSyncBaseDevice` has no attribute `fan_levels` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:226:19-52: Object of class `NoneType` has no attribute `message` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:240:19-38: Object of class `VeSyncBaseDevice` has no attribute `turn_on` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:243:29-54: Object of class `VeSyncBaseDevice` has no attribute `set_auto_mode` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:245:29-55: Object of class `VeSyncBaseDevice` has no attribute `set_sleep_mode` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:247:29-64: Object of class `VeSyncBaseDevice` has no attribute `set_advanced_sleep_mode` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:249:29-53: Object of class `VeSyncBaseDevice` has no attribute `set_pet_mode` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:251:29-55: Object of class `VeSyncBaseDevice` has no attribute `set_turbo_mode` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:253:29-56: Object of class `VeSyncBaseDevice` has no attribute `set_normal_mode` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:254:16-23: `success` may be uninitialized [unbound-name] +ERROR homeassistant/components/vesync/fan.py:255:38-71: Object of class `NoneType` has no attribute `message` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:270:29-48: Object of class `VeSyncBaseDevice` has no attribute `turn_on` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:272:42-75: Object of class `NoneType` has no attribute `message` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:279:25-45: Object of class `VeSyncBaseDevice` has no attribute `turn_off` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:281:38-71: Object of class `NoneType` has no attribute `message` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:286:25-55: Object of class `VeSyncBaseDevice` has no attribute `toggle_oscillation` [missing-attribute] +ERROR homeassistant/components/vesync/fan.py:288:38-71: Object of class `NoneType` has no attribute `message` [missing-attribute] +ERROR homeassistant/components/vesync/humidifier.py:94:5-29: Class member `VeSyncHumidifierHA._attr_supported_features` overrides parent class `VeSyncBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vesync/humidifier.py:112:39-59: Object of class `VeSyncBaseDevice` has no attribute `target_minmax` [missing-attribute] +ERROR homeassistant/components/vesync/humidifier.py:113:39-59: Object of class `VeSyncBaseDevice` has no attribute `target_minmax` [missing-attribute] +ERROR homeassistant/components/vesync/humidifier.py:116:24-46: Object of class `VeSyncBaseDevice` has no attribute `mist_modes` [missing-attribute] +ERROR homeassistant/components/vesync/humidifier.py:153:22-46: Object of class `VeSyncBaseDevice` has no attribute `set_humidity` [missing-attribute] +ERROR homeassistant/components/vesync/humidifier.py:154:38-71: Object of class `NoneType` has no attribute `message` [missing-attribute] +ERROR homeassistant/components/vesync/humidifier.py:162:22-42: Object of class `VeSyncBaseDevice` has no attribute `set_mode` [missing-attribute] +ERROR homeassistant/components/vesync/humidifier.py:163:38-71: Object of class `NoneType` has no attribute `message` [missing-attribute] +ERROR homeassistant/components/vesync/humidifier.py:167:19-45: Object of class `VeSyncBaseDevice` has no attribute `toggle_display` [missing-attribute] +ERROR homeassistant/components/vesync/humidifier.py:177:25-44: Object of class `VeSyncBaseDevice` has no attribute `turn_on` [missing-attribute] +ERROR homeassistant/components/vesync/humidifier.py:179:38-71: Object of class `NoneType` has no attribute `message` [missing-attribute] +ERROR homeassistant/components/vesync/humidifier.py:185:25-45: Object of class `VeSyncBaseDevice` has no attribute `turn_off` [missing-attribute] +ERROR homeassistant/components/vesync/humidifier.py:187:38-71: Object of class `NoneType` has no attribute `message` [missing-attribute] +ERROR homeassistant/components/vesync/light.py:122:19-45: Object of class `VeSyncBaseDevice` has no attribute `set_color_temp` [missing-attribute] +ERROR homeassistant/components/vesync/light.py:139:19-45: Object of class `VeSyncBaseDevice` has no attribute `set_brightness` [missing-attribute] +ERROR homeassistant/components/vesync/light.py:147:15-34: Object of class `VeSyncBaseDevice` has no attribute `turn_on` [missing-attribute] +ERROR homeassistant/components/vesync/light.py:151:15-35: Object of class `VeSyncBaseDevice` has no attribute `turn_off` [missing-attribute] +ERROR homeassistant/components/vesync/number.py:41:9-12: Unexpected keyword argument `key` in function `VeSyncNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/number.py:42:9-24: Unexpected keyword argument `translation_key` in function `VeSyncNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/number.py:43:48-66: Object of class `VeSyncBaseDevice` has no attribute `mist_levels` [missing-attribute] +ERROR homeassistant/components/vesync/number.py:44:48-66: Object of class `VeSyncBaseDevice` has no attribute `mist_levels` [missing-attribute] +ERROR homeassistant/components/vesync/number.py:48:44-65: Object of class `VeSyncBaseDevice` has no attribute `set_mist_level` [missing-attribute] +ERROR homeassistant/components/vesync/number.py:96:5-23: Class member `VeSyncNumberEntity.entity_description` overrides parent class `VeSyncBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vesync/number.py:96:5-23: Class member `VeSyncNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vesync/number.py:127:38-71: Object of class `NoneType` has no attribute `message` [missing-attribute] +ERROR homeassistant/components/vesync/select.py:61:9-12: Unexpected keyword argument `key` in function `VeSyncSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/select.py:62:9-24: Unexpected keyword argument `translation_key` in function `VeSyncSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/select.py:64:9-13: Unexpected keyword argument `icon` in function `VeSyncSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/select.py:65:60-86: Object of class `VeSyncBaseDevice` has no attribute `supports_nightlight` [missing-attribute] +ERROR homeassistant/components/vesync/select.py:68:48-80: Object of class `VeSyncBaseDevice` has no attribute `set_nightlight_brightness` [missing-attribute] +ERROR homeassistant/components/vesync/select.py:79:9-12: Unexpected keyword argument `key` in function `VeSyncSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/select.py:80:9-24: Unexpected keyword argument `translation_key` in function `VeSyncSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/select.py:86:9-13: Unexpected keyword argument `icon` in function `VeSyncSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/select.py:87:58-84: Object of class `VeSyncBaseDevice` has no attribute `supports_nightlight` [missing-attribute] +ERROR homeassistant/components/vesync/select.py:88:48-74: Object of class `VeSyncBaseDevice` has no attribute `set_nightlight_mode` [missing-attribute] +ERROR homeassistant/components/vesync/select.py:93:9-12: Unexpected keyword argument `key` in function `VeSyncSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/select.py:94:9-24: Unexpected keyword argument `translation_key` in function `VeSyncSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/select.py:100:9-13: Unexpected keyword argument `icon` in function `VeSyncSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/select.py:101:56-82: Object of class `VeSyncBaseDevice` has no attribute `supports_nightlight` [missing-attribute] +ERROR homeassistant/components/vesync/select.py:102:48-75: Object of class `VeSyncBaseDevice` has no attribute `set_nightlight_state` [missing-attribute] +ERROR homeassistant/components/vesync/select.py:150:5-23: Class member `VeSyncSelectEntity.entity_description` overrides parent class `VeSyncBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vesync/select.py:150:5-23: Class member `VeSyncSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vesync/select.py:171:38-71: Object of class `NoneType` has no attribute `message` [missing-attribute] +ERROR homeassistant/components/vesync/sensor.py:51:9-12: Unexpected keyword argument `key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:52:9-24: Unexpected keyword argument `translation_key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:55:9-24: Unexpected keyword argument `entity_category` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:60:9-12: Unexpected keyword argument `key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:68:9-12: Unexpected keyword argument `key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:76:9-12: Unexpected keyword argument `key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:85:9-12: Unexpected keyword argument `key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:86:9-24: Unexpected keyword argument `translation_key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:94:9-12: Unexpected keyword argument `key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:95:9-24: Unexpected keyword argument `translation_key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:105:9-12: Unexpected keyword argument `key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:116:9-12: Unexpected keyword argument `key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:117:9-24: Unexpected keyword argument `translation_key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:127:9-12: Unexpected keyword argument `key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:136:9-12: Unexpected keyword argument `key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:144:9-12: Unexpected keyword argument `key` in function `VeSyncSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/sensor.py:200:5-23: Class member `VeSyncSensorEntity.entity_description` overrides parent class `VeSyncBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vesync/sensor.py:200:5-23: Class member `VeSyncSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vesync/switch.py:41:9-12: Unexpected keyword argument `key` in function `VeSyncSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/switch.py:45:9-13: Unexpected keyword argument `name` in function `VeSyncSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/switch.py:46:30-44: Object of class `VeSyncBaseDevice` has no attribute `turn_on` [missing-attribute] +ERROR homeassistant/components/vesync/switch.py:47:31-46: Object of class `VeSyncBaseDevice` has no attribute `turn_off` [missing-attribute] +ERROR homeassistant/components/vesync/switch.py:50:9-12: Unexpected keyword argument `key` in function `VeSyncSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/switch.py:55:9-24: Unexpected keyword argument `translation_key` in function `VeSyncSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/switch.py:56:30-51: Object of class `VeSyncBaseDevice` has no attribute `toggle_display` [missing-attribute] +ERROR homeassistant/components/vesync/switch.py:57:31-52: Object of class `VeSyncBaseDevice` has no attribute `toggle_display` [missing-attribute] +ERROR homeassistant/components/vesync/switch.py:60:9-12: Unexpected keyword argument `key` in function `VeSyncSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/switch.py:63:9-24: Unexpected keyword argument `translation_key` in function `VeSyncSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vesync/switch.py:64:30-54: Object of class `VeSyncBaseDevice` has no attribute `toggle_child_lock` [missing-attribute] +ERROR homeassistant/components/vesync/switch.py:65:31-55: Object of class `VeSyncBaseDevice` has no attribute `toggle_child_lock` [missing-attribute] +ERROR homeassistant/components/vesync/switch.py:111:5-23: Class member `VeSyncSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vesync/switch.py:111:5-23: Class member `VeSyncSwitchEntity.entity_description` overrides parent class `VeSyncBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vesync/switch.py:124:18-36: Class member `VeSyncSwitchEntity._attr_device_class` overrides parent class `VeSyncBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vesync/switch.py:136:38-71: Object of class `NoneType` has no attribute `message` [missing-attribute] +ERROR homeassistant/components/vesync/switch.py:143:38-71: Object of class `NoneType` has no attribute `message` [missing-attribute] +ERROR homeassistant/components/vesync/update.py:58:5-23: Class member `VeSyncDeviceUpdate._attr_device_class` overrides parent class `VeSyncBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/viaggiatreno/sensor.py:78:66-70: `name` may be uninitialized [unbound-name] +ERROR homeassistant/components/viaggiatreno/sensor.py:174:31-52: `Literal['No information for this train now']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/viaggiatreno/sensor.py:177:31-55: `str` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/viaggiatreno/sensor.py:184:31-47: `Literal['Cancelled']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/viaggiatreno/sensor.py:188:31-50: `Literal['Not departed yet']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/viaggiatreno/sensor.py:191:31-45: `Literal['Arrived']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/vicare/__init__.py:39:30-41:10: `PyViCare` is not assignable to attribute `runtime_data` with type `ViCareData` [bad-assignment] +ERROR homeassistant/components/vicare/__init__.py:80:12-54: Returned type `ViCareData` is not assignable to declared return type `PyViCare` [bad-return] +ERROR homeassistant/components/vicare/binary_sensor.py:55:9-12: Unexpected keyword argument `key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:58:34-62: Object of class `Device` has no attribute `getCirculationPumpActive` [missing-attribute] +ERROR homeassistant/components/vicare/binary_sensor.py:61:9-12: Unexpected keyword argument `key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:63:34-62: Object of class `Device` has no attribute `getFrostProtectionActive` [missing-attribute] +ERROR homeassistant/components/vicare/binary_sensor.py:69:9-12: Unexpected keyword argument `key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:72:34-47: Object of class `Device` has no attribute `getActive` [missing-attribute] +ERROR homeassistant/components/vicare/binary_sensor.py:78:9-12: Unexpected keyword argument `key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:81:34-47: Object of class `Device` has no attribute `getActive` [missing-attribute] +ERROR homeassistant/components/vicare/binary_sensor.py:87:9-12: Unexpected keyword argument `key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:88:9-24: Unexpected keyword argument `translation_key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:90:34-56: Object of class `Device` has no attribute `getSolarPumpActive` [missing-attribute] +ERROR homeassistant/components/vicare/binary_sensor.py:93:9-12: Unexpected keyword argument `key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:94:9-24: Unexpected keyword argument `translation_key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:96:34-71: Object of class `Device` has no attribute `getDomesticHotWaterChargingActive` [missing-attribute] +ERROR homeassistant/components/vicare/binary_sensor.py:99:9-12: Unexpected keyword argument `key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:102:34-78: Object of class `Device` has no attribute `getDomesticHotWaterCirculationPumpActive` [missing-attribute] +ERROR homeassistant/components/vicare/binary_sensor.py:105:9-12: Unexpected keyword argument `key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:108:34-67: Object of class `Device` has no attribute `getDomesticHotWaterPumpActive` [missing-attribute] +ERROR homeassistant/components/vicare/binary_sensor.py:111:9-12: Unexpected keyword argument `key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:114:34-54: Object of class `Device` has no attribute `getOneTimeCharge` [missing-attribute] +ERROR homeassistant/components/vicare/binary_sensor.py:117:9-12: Unexpected keyword argument `key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:122:9-12: Unexpected keyword argument `key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:124:9-24: Unexpected keyword argument `entity_category` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:125:34-55: Object of class `Device` has no attribute `getIdentification` [missing-attribute] +ERROR homeassistant/components/vicare/binary_sensor.py:126:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:129:9-12: Unexpected keyword argument `key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:130:9-24: Unexpected keyword argument `translation_key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:131:9-24: Unexpected keyword argument `entity_category` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:132:34-53: Object of class `Device` has no attribute `getMountingMode` [missing-attribute] +ERROR homeassistant/components/vicare/binary_sensor.py:133:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:136:9-12: Unexpected keyword argument `key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:137:9-24: Unexpected keyword argument `translation_key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:138:34-50: Object of class `Device` has no attribute `getChildLock` [missing-attribute] +ERROR homeassistant/components/vicare/binary_sensor.py:139:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:142:9-12: Unexpected keyword argument `key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:143:9-24: Unexpected keyword argument `translation_key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:145:34-49: Object of class `Device` has no attribute `isValveOpen` [missing-attribute] +ERROR homeassistant/components/vicare/binary_sensor.py:148:9-12: Unexpected keyword argument `key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:149:9-24: Unexpected keyword argument `translation_key` in function `ViCareBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/binary_sensor.py:150:34-75: Object of class `Device` has no attribute `getHeatExchangerFrostProtectionActive` [missing-attribute] +ERROR homeassistant/components/vicare/binary_sensor.py:211:5-23: Class member `ViCareBinarySensor.entity_description` overrides parent class `ViCareEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vicare/binary_sensor.py:211:5-23: Class member `ViCareBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vicare/binary_sensor.py:236:73-82: Argument `Device | HeatingDeviceWithComponent` is not assignable to parameter with type `Device` [bad-argument-type] +ERROR homeassistant/components/vicare/button.py:39:9-12: Unexpected keyword argument `key` in function `ViCareButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/button.py:40:9-24: Unexpected keyword argument `translation_key` in function `ViCareButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/button.py:41:9-24: Unexpected keyword argument `entity_category` in function `ViCareButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/button.py:42:34-54: Object of class `Device` has no attribute `getOneTimeCharge` [missing-attribute] +ERROR homeassistant/components/vicare/button.py:43:34-59: Object of class `Device` has no attribute `activateOneTimeCharge` [missing-attribute] +ERROR homeassistant/components/vicare/button.py:46:9-12: Unexpected keyword argument `key` in function `ViCareButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/button.py:47:9-24: Unexpected keyword argument `translation_key` in function `ViCareButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/button.py:48:9-24: Unexpected keyword argument `entity_category` in function `ViCareButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/button.py:49:34-54: Object of class `Device` has no attribute `getOneTimeCharge` [missing-attribute] +ERROR homeassistant/components/vicare/button.py:50:34-61: Object of class `Device` has no attribute `deactivateOneTimeCharge` [missing-attribute] +ERROR homeassistant/components/vicare/button.py:90:5-23: Class member `ViCareButton.entity_description` overrides parent class `ViCareEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vicare/button.py:90:5-23: Class member `ViCareButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vicare/button.py:107:54-63: Argument `Device | HeatingDeviceWithComponent` is not assignable to parameter with type `Device` [bad-argument-type] +ERROR homeassistant/components/vicare/climate.py:91:13-20: Argument `HeatingDeviceWithComponent` is not assignable to parameter `circuit` with type `HeatingCircuit` in function `ViCareClimate.__init__` [bad-argument-type] +ERROR homeassistant/components/vicare/climate.py:124:5-29: Class member `ViCareClimate._attr_supported_features` overrides parent class `ViCareEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vicare/climate.py:148:13-39: Argument `str | None` is not assignable to parameter `unique_id_suffix` with type `str` in function `homeassistant.components.vicare.entity.ViCareEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/vicare/climate.py:152:47-68: Object of class `Device` has no attribute `getPrograms` +Object of class `HeatingDeviceWithComponent` has no attribute `getPrograms` [missing-attribute] +ERROR homeassistant/components/vicare/climate.py:165:21-49: Object of class `Device` has no attribute `getRoomTemperature` +Object of class `HeatingDeviceWithComponent` has no attribute `getRoomTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/climate.py:170:39-69: Object of class `Device` has no attribute `getSupplyTemperature` +Object of class `HeatingDeviceWithComponent` has no attribute `getSupplyTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/climate.py:181:21-47: Object of class `Device` has no attribute `getActiveProgram` +Object of class `HeatingDeviceWithComponent` has no attribute `getActiveProgram` [missing-attribute] +ERROR homeassistant/components/vicare/climate.py:185:49-87: Object of class `Device` has no attribute `getCurrentDesiredTemperature` +Object of class `HeatingDeviceWithComponent` has no attribute `getCurrentDesiredTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/climate.py:189:21-44: Object of class `Device` has no attribute `getActiveMode` +Object of class `HeatingDeviceWithComponent` has no attribute `getActiveMode` [missing-attribute] +ERROR homeassistant/components/vicare/climate.py:194:21-51: Object of class `Device` has no attribute `getHeatingCurveSlope` +Object of class `HeatingDeviceWithComponent` has no attribute `getHeatingCurveSlope` [missing-attribute] +ERROR homeassistant/components/vicare/climate.py:199:21-51: Object of class `Device` has no attribute `getHeatingCurveShift` +Object of class `HeatingDeviceWithComponent` has no attribute `getHeatingCurveShift` [missing-attribute] +ERROR homeassistant/components/vicare/climate.py:203:52-70: Object of class `Device` has no attribute `getModes` +Object of class `HeatingDeviceWithComponent` has no attribute `getModes` [missing-attribute] +ERROR homeassistant/components/vicare/climate.py:209:68-84: Object of class `HeatingDeviceWithComponent` has no attribute `getActive` [missing-attribute] +ERROR homeassistant/components/vicare/climate.py:214:49-69: Object of class `HeatingDeviceWithComponent` has no attribute `getActive` [missing-attribute] +ERROR homeassistant/components/vicare/climate.py:243:9-26: Object of class `Device` has no attribute `setMode` +Object of class `HeatingDeviceWithComponent` has no attribute `setMode` [missing-attribute] +ERROR homeassistant/components/vicare/climate.py:281:13-44: Object of class `Device` has no attribute `setProgramTemperature` +Object of class `HeatingDeviceWithComponent` has no attribute `setProgramTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/climate.py:287:44-65: Argument `str | None` is not assignable to parameter `program` with type `str` in function `homeassistant.components.vicare.types.HeatingProgram.to_ha_preset` [bad-argument-type] +ERROR homeassistant/components/vicare/climate.py:310:17-44: Object of class `Device` has no attribute `deactivateProgram` +Object of class `HeatingDeviceWithComponent` has no attribute `deactivateProgram` [missing-attribute] +ERROR homeassistant/components/vicare/climate.py:324:17-42: Object of class `Device` has no attribute `activateProgram` +Object of class `HeatingDeviceWithComponent` has no attribute `activateProgram` [missing-attribute] +ERROR homeassistant/components/vicare/climate.py:344:9-26: Object of class `Device` has no attribute `setMode` +Object of class `HeatingDeviceWithComponent` has no attribute `setMode` [missing-attribute] +ERROR homeassistant/components/vicare/config_flow.py:66:55-85: Unpacked argument `tuple[HomeAssistant, dict[str, Any]]` is not assignable to parameter `*args` with type `tuple[HomeAssistant, Mapping[str, Any], int | Unknown]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/vicare/config_flow.py:101:55-79: Unpacked argument `tuple[HomeAssistant, dict[str, Any]]` is not assignable to parameter `*args` with type `tuple[HomeAssistant, Mapping[str, Any], int | Unknown]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/vicare/diagnostics.py:31:51-63: Argument `() -> list[dict[str, Any]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/vicare/fan.py:140:13-39: Argument `str | None` is not assignable to parameter `unique_id_suffix` with type `str` in function `homeassistant.components.vicare.entity.ViCareEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/vicare/fan.py:143:37-66: Object of class `Device` has no attribute `getVentilationModes` +Object of class `HeatingDeviceWithComponent` has no attribute `getVentilationModes` [missing-attribute] +ERROR homeassistant/components/vicare/fan.py:154:32-62: Object of class `Device` has no attribute `getVentilationLevels` +Object of class `HeatingDeviceWithComponent` has no attribute `getVentilationLevels` [missing-attribute] +ERROR homeassistant/components/vicare/fan.py:160:13-44: Object of class `Device` has no attribute `getVentilationQuickmodes` [missing-attribute] +ERROR homeassistant/components/vicare/fan.py:163:29-57: Object of class `Device` has no attribute `getVentilationQuickmodes` [missing-attribute] +ERROR homeassistant/components/vicare/fan.py:177:21-55: Object of class `Device` has no attribute `getActiveVentilationMode` +Object of class `HeatingDeviceWithComponent` has no attribute `getActiveVentilationMode` [missing-attribute] +ERROR homeassistant/components/vicare/fan.py:181:38-67: Object of class `Device` has no attribute `getVentilationLevel` +Object of class `HeatingDeviceWithComponent` has no attribute `getVentilationLevel` [missing-attribute] +ERROR homeassistant/components/vicare/fan.py:202:15-48: Object of class `Device` has no attribute `getVentilationQuickmode` +Object of class `HeatingDeviceWithComponent` has no attribute `getVentilationQuickmode` [missing-attribute] +ERROR homeassistant/components/vicare/fan.py:209:9-47: Object of class `Device` has no attribute `activateVentilationQuickmode` +Object of class `HeatingDeviceWithComponent` has no attribute `activateVentilationQuickmode` [missing-attribute] +ERROR homeassistant/components/vicare/fan.py:216:15-48: Object of class `Device` has no attribute `getVentilationQuickmode` +Object of class `HeatingDeviceWithComponent` has no attribute `getVentilationQuickmode` [missing-attribute] +ERROR homeassistant/components/vicare/fan.py:245:15-48: Object of class `Device` has no attribute `getVentilationQuickmode` +Object of class `HeatingDeviceWithComponent` has no attribute `getVentilationQuickmode` [missing-attribute] +ERROR homeassistant/components/vicare/fan.py:246:13-53: Object of class `Device` has no attribute `deactivateVentilationQuickmode` +Object of class `HeatingDeviceWithComponent` has no attribute `deactivateVentilationQuickmode` [missing-attribute] +ERROR homeassistant/components/vicare/fan.py:250:9-38: Object of class `Device` has no attribute `setVentilationLevel` +Object of class `HeatingDeviceWithComponent` has no attribute `setVentilationLevel` [missing-attribute] +ERROR homeassistant/components/vicare/fan.py:256:9-42: Object of class `Device` has no attribute `activateVentilationMode` +Object of class `HeatingDeviceWithComponent` has no attribute `activateVentilationMode` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:58:9-12: Unexpected keyword argument `key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:59:9-24: Unexpected keyword argument `translation_key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:60:9-24: Unexpected keyword argument `entity_category` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:64:34-78: Object of class `Device` has no attribute `getDomesticHotWaterConfiguredTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:65:41-75: Object of class `Device` has no attribute `setDomesticHotWaterTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:66:38-75: Object of class `Device` has no attribute `getDomesticHotWaterMinTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:67:38-75: Object of class `Device` has no attribute `getDomesticHotWaterMaxTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:71:9-12: Unexpected keyword argument `key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:72:9-24: Unexpected keyword argument `translation_key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:73:9-24: Unexpected keyword argument `entity_category` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:77:34-79: Object of class `Device` has no attribute `getDomesticHotWaterConfiguredTemperature2` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:78:41-76: Object of class `Device` has no attribute `setDomesticHotWaterTemperature2` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:85:9-12: Unexpected keyword argument `key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:86:9-24: Unexpected keyword argument `translation_key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:87:9-24: Unexpected keyword argument `entity_category` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:91:34-75: Object of class `Device` has no attribute `getDomesticHotWaterHysteresisSwitchOn` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:92:41-82: Object of class `Device` has no attribute `setDomesticHotWaterHysteresisSwitchOn` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:95:38-82: Object of class `Device` has no attribute `getDomesticHotWaterHysteresisSwitchOnMin` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:96:38-82: Object of class `Device` has no attribute `getDomesticHotWaterHysteresisSwitchOnMax` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:97:37-86: Object of class `Device` has no attribute `getDomesticHotWaterHysteresisSwitchOnStepping` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:100:9-12: Unexpected keyword argument `key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:101:9-24: Unexpected keyword argument `translation_key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:102:9-24: Unexpected keyword argument `entity_category` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:106:34-76: Object of class `Device` has no attribute `getDomesticHotWaterHysteresisSwitchOff` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:107:41-83: Object of class `Device` has no attribute `setDomesticHotWaterHysteresisSwitchOff` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:110:38-83: Object of class `Device` has no attribute `getDomesticHotWaterHysteresisSwitchOffMin` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:111:38-83: Object of class `Device` has no attribute `getDomesticHotWaterHysteresisSwitchOffMax` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:112:37-87: Object of class `Device` has no attribute `getDomesticHotWaterHysteresisSwitchOffStepping` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:119:9-12: Unexpected keyword argument `key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:120:9-24: Unexpected keyword argument `translation_key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:121:9-24: Unexpected keyword argument `entity_category` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:125:34-58: Object of class `Device` has no attribute `getHeatingCurveShift` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:127:13-32: Object of class `Device` has no attribute `setHeatingCurve` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:127:40-64: Object of class `Device` has no attribute `getHeatingCurveSlope` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:129:38-65: Object of class `Device` has no attribute `getHeatingCurveShiftMin` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:130:38-65: Object of class `Device` has no attribute `getHeatingCurveShiftMax` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:131:37-69: Object of class `Device` has no attribute `getHeatingCurveShiftStepping` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:137:9-12: Unexpected keyword argument `key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:138:9-24: Unexpected keyword argument `translation_key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:139:9-24: Unexpected keyword argument `entity_category` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:141:34-58: Object of class `Device` has no attribute `getHeatingCurveSlope` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:143:13-32: Object of class `Device` has no attribute `setHeatingCurve` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:143:33-57: Object of class `Device` has no attribute `getHeatingCurveShift` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:145:38-65: Object of class `Device` has no attribute `getHeatingCurveSlopeMin` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:146:38-65: Object of class `Device` has no attribute `getHeatingCurveSlopeMax` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:147:37-69: Object of class `Device` has no attribute `getHeatingCurveSlopeStepping` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:153:9-12: Unexpected keyword argument `key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:154:9-24: Unexpected keyword argument `translation_key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:155:9-24: Unexpected keyword argument `entity_category` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:159:34-69: Object of class `Device` has no attribute `getDesiredTemperatureForProgram` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:162:41-66: Object of class `Device` has no attribute `setProgramTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:165:38-66: Object of class `Device` has no attribute `getProgramMinTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:168:38-66: Object of class `Device` has no attribute `getProgramMaxTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:171:37-59: Object of class `Device` has no attribute `getProgramStepping` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:174:9-12: Unexpected keyword argument `key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:175:9-24: Unexpected keyword argument `translation_key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:176:9-24: Unexpected keyword argument `entity_category` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:180:34-69: Object of class `Device` has no attribute `getDesiredTemperatureForProgram` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:183:41-66: Object of class `Device` has no attribute `setProgramTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:186:38-66: Object of class `Device` has no attribute `getProgramMinTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:189:38-66: Object of class `Device` has no attribute `getProgramMaxTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:192:37-59: Object of class `Device` has no attribute `getProgramStepping` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:195:9-12: Unexpected keyword argument `key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:196:9-24: Unexpected keyword argument `translation_key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:197:9-24: Unexpected keyword argument `entity_category` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:201:34-69: Object of class `Device` has no attribute `getDesiredTemperatureForProgram` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:204:41-66: Object of class `Device` has no attribute `setProgramTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:207:38-66: Object of class `Device` has no attribute `getProgramMinTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:210:38-66: Object of class `Device` has no attribute `getProgramMaxTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:213:37-59: Object of class `Device` has no attribute `getProgramStepping` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:216:9-12: Unexpected keyword argument `key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:217:9-24: Unexpected keyword argument `translation_key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:218:9-24: Unexpected keyword argument `entity_category` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:222:34-69: Object of class `Device` has no attribute `getDesiredTemperatureForProgram` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:225:41-66: Object of class `Device` has no attribute `setProgramTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:228:38-66: Object of class `Device` has no attribute `getProgramMinTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:231:38-66: Object of class `Device` has no attribute `getProgramMaxTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:234:37-59: Object of class `Device` has no attribute `getProgramStepping` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:239:9-12: Unexpected keyword argument `key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:240:9-24: Unexpected keyword argument `translation_key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:241:9-24: Unexpected keyword argument `entity_category` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:245:34-69: Object of class `Device` has no attribute `getDesiredTemperatureForProgram` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:248:41-66: Object of class `Device` has no attribute `setProgramTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:251:38-66: Object of class `Device` has no attribute `getProgramMinTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:254:38-66: Object of class `Device` has no attribute `getProgramMaxTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:257:37-59: Object of class `Device` has no attribute `getProgramStepping` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:262:9-12: Unexpected keyword argument `key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:263:9-24: Unexpected keyword argument `translation_key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:264:9-24: Unexpected keyword argument `entity_category` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:268:34-69: Object of class `Device` has no attribute `getDesiredTemperatureForProgram` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:271:41-66: Object of class `Device` has no attribute `setProgramTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:274:38-66: Object of class `Device` has no attribute `getProgramMinTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:277:38-66: Object of class `Device` has no attribute `getProgramMaxTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:280:37-59: Object of class `Device` has no attribute `getProgramStepping` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:285:9-12: Unexpected keyword argument `key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:286:9-24: Unexpected keyword argument `translation_key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:287:9-24: Unexpected keyword argument `entity_category` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:291:34-69: Object of class `Device` has no attribute `getDesiredTemperatureForProgram` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:294:41-66: Object of class `Device` has no attribute `setProgramTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:297:38-66: Object of class `Device` has no attribute `getProgramMinTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:300:38-66: Object of class `Device` has no attribute `getProgramMaxTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:303:37-59: Object of class `Device` has no attribute `getProgramStepping` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:308:9-12: Unexpected keyword argument `key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:309:9-24: Unexpected keyword argument `translation_key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:310:9-24: Unexpected keyword argument `entity_category` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:314:34-69: Object of class `Device` has no attribute `getDesiredTemperatureForProgram` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:317:41-66: Object of class `Device` has no attribute `setProgramTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:320:38-66: Object of class `Device` has no attribute `getProgramMinTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:323:38-66: Object of class `Device` has no attribute `getProgramMaxTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:326:37-59: Object of class `Device` has no attribute `getProgramStepping` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:331:9-12: Unexpected keyword argument `key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:332:9-24: Unexpected keyword argument `translation_key` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:333:9-24: Unexpected keyword argument `entity_category` in function `ViCareNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/number.py:337:34-69: Object of class `Device` has no attribute `getDesiredTemperatureForProgram` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:340:41-66: Object of class `Device` has no attribute `setProgramTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:343:38-66: Object of class `Device` has no attribute `getProgramMinTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:346:38-66: Object of class `Device` has no attribute `getProgramMaxTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:349:37-59: Object of class `Device` has no attribute `getProgramStepping` [missing-attribute] +ERROR homeassistant/components/vicare/number.py:407:5-23: Class member `ViCareNumber.entity_description` overrides parent class `ViCareEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vicare/number.py:407:5-23: Class member `ViCareNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vicare/number.py:431:50-59: Argument `Device | HeatingDeviceWithComponent` is not assignable to parameter with type `Device` [bad-argument-type] +ERROR homeassistant/components/vicare/number.py:439:21-30: Argument `Device | HeatingDeviceWithComponent` is not assignable to parameter with type `Device` [bad-argument-type] +ERROR homeassistant/components/vicare/number.py:443:63-72: Argument `Device | HeatingDeviceWithComponent` is not assignable to parameter `api` with type `HeatingDeviceWithComponent` in function `_get_value` [bad-argument-type] +ERROR homeassistant/components/vicare/number.py:448:63-72: Argument `Device | HeatingDeviceWithComponent` is not assignable to parameter `api` with type `HeatingDeviceWithComponent` in function `_get_value` [bad-argument-type] +ERROR homeassistant/components/vicare/number.py:453:62-71: Argument `Device | HeatingDeviceWithComponent` is not assignable to parameter `api` with type `HeatingDeviceWithComponent` in function `_get_value` [bad-argument-type] +ERROR homeassistant/components/vicare/number.py:470:39-42: Argument `HeatingDeviceWithComponent` is not assignable to parameter with type `Device` [bad-argument-type] +ERROR homeassistant/components/vicare/sensor.py:101:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:104:34-58: Object of class `Device` has no attribute `getSupplyTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:113:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:116:34-59: Object of class `Device` has no attribute `getOutsideTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:121:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:122:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:124:34-56: Object of class `Device` has no attribute `getOutsideHumidity` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:129:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:130:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:132:34-58: Object of class `Device` has no attribute `getReturnTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:137:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:138:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:140:34-58: Object of class `Device` has no attribute `getBoilerTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:145:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:146:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:148:34-70: Object of class `Device` has no attribute `getBoilerCommonSupplyTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:153:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:154:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:156:34-72: Object of class `Device` has no attribute `getSupplyTemperaturePrimaryCircuit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:161:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:162:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:164:34-72: Object of class `Device` has no attribute `getReturnTemperaturePrimaryCircuit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:169:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:170:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:172:34-74: Object of class `Device` has no attribute `getSupplyTemperatureSecondaryCircuit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:177:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:178:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:180:34-74: Object of class `Device` has no attribute `getReturnTemperatureSecondaryCircuit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:185:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:186:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:188:34-74: Object of class `Device` has no attribute `getDomesticHotWaterOutletTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:193:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:194:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:196:34-71: Object of class `Device` has no attribute `getDomesticHotWaterMaxTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:199:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:202:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:203:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:205:34-71: Object of class `Device` has no attribute `getDomesticHotWaterMinTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:208:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:211:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:212:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:214:34-75: Object of class `Device` has no attribute `getDomesticHotWaterStorageTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:219:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:220:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:222:34-70: Object of class `Device` has no attribute `getHotWaterStorageTemperatureTop` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:227:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:228:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:230:34-81: Object of class `Device` has no attribute `getDomesticHotWaterStorageTemperatureMiddle` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:233:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:236:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:237:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:239:34-73: Object of class `Device` has no attribute `getHotWaterStorageTemperatureBottom` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:244:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:245:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:246:34-76: Object of class `Device` has no attribute `getGasConsumptionDomesticHotWaterToday` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:247:33-74: Object of class `Device` has no attribute `getGasConsumptionDomesticHotWaterUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:251:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:252:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:253:34-79: Object of class `Device` has no attribute `getGasConsumptionDomesticHotWaterThisWeek` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:254:33-74: Object of class `Device` has no attribute `getGasConsumptionDomesticHotWaterUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:256:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:259:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:260:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:261:34-80: Object of class `Device` has no attribute `getGasConsumptionDomesticHotWaterThisMonth` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:262:33-74: Object of class `Device` has no attribute `getGasConsumptionDomesticHotWaterUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:264:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:267:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:268:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:269:34-79: Object of class `Device` has no attribute `getGasConsumptionDomesticHotWaterThisYear` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:270:33-74: Object of class `Device` has no attribute `getGasConsumptionDomesticHotWaterUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:272:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:275:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:276:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:277:34-67: Object of class `Device` has no attribute `getGasConsumptionHeatingToday` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:278:33-65: Object of class `Device` has no attribute `getGasConsumptionHeatingUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:282:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:283:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:284:34-70: Object of class `Device` has no attribute `getGasConsumptionHeatingThisWeek` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:285:33-65: Object of class `Device` has no attribute `getGasConsumptionHeatingUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:287:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:290:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:291:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:292:34-71: Object of class `Device` has no attribute `getGasConsumptionHeatingThisMonth` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:293:33-65: Object of class `Device` has no attribute `getGasConsumptionHeatingUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:295:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:298:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:299:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:300:34-70: Object of class `Device` has no attribute `getGasConsumptionHeatingThisYear` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:301:33-65: Object of class `Device` has no attribute `getGasConsumptionHeatingUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:303:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:306:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:307:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:308:34-68: Object of class `Device` has no attribute `getFuelCellGasConsumptionToday` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:309:33-66: Object of class `Device` has no attribute `getFuelCellGasConsumptionUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:313:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:314:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:315:34-71: Object of class `Device` has no attribute `getFuelCellGasConsumptionThisWeek` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:316:33-66: Object of class `Device` has no attribute `getFuelCellGasConsumptionUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:318:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:321:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:322:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:323:34-72: Object of class `Device` has no attribute `getFuelCellGasConsumptionThisMonth` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:324:33-66: Object of class `Device` has no attribute `getFuelCellGasConsumptionUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:326:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:329:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:330:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:331:34-71: Object of class `Device` has no attribute `getFuelCellGasConsumptionThisYear` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:332:33-66: Object of class `Device` has no attribute `getFuelCellGasConsumptionUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:334:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:337:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:338:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:339:34-65: Object of class `Device` has no attribute `getGasConsumptionTotalToday` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:340:33-58: Object of class `Device` has no attribute `getGasConsumptionUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:344:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:345:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:346:34-68: Object of class `Device` has no attribute `getGasConsumptionTotalThisWeek` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:347:33-58: Object of class `Device` has no attribute `getGasConsumptionUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:349:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:352:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:353:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:354:34-69: Object of class `Device` has no attribute `getGasConsumptionTotalThisMonth` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:355:33-58: Object of class `Device` has no attribute `getGasConsumptionUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:357:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:360:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:361:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:362:34-68: Object of class `Device` has no attribute `getGasConsumptionTotalThisYear` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:363:33-58: Object of class `Device` has no attribute `getGasConsumptionUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:365:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:368:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:369:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:371:34-79: Object of class `Device` has no attribute `getGasSummaryConsumptionHeatingCurrentDay` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:372:33-72: Object of class `Device` has no attribute `getGasSummaryConsumptionHeatingUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:376:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:377:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:379:34-81: Object of class `Device` has no attribute `getGasSummaryConsumptionHeatingCurrentMonth` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:380:33-72: Object of class `Device` has no attribute `getGasSummaryConsumptionHeatingUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:382:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:385:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:386:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:388:34-80: Object of class `Device` has no attribute `getGasSummaryConsumptionHeatingCurrentYear` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:389:33-72: Object of class `Device` has no attribute `getGasSummaryConsumptionHeatingUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:391:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:394:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:395:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:397:34-82: Object of class `Device` has no attribute `getGasSummaryConsumptionHeatingLastSevenDays` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:398:33-72: Object of class `Device` has no attribute `getGasSummaryConsumptionHeatingUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:400:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:403:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:404:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:406:34-88: Object of class `Device` has no attribute `getGasSummaryConsumptionDomesticHotWaterCurrentDay` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:407:33-81: Object of class `Device` has no attribute `getGasSummaryConsumptionDomesticHotWaterUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:411:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:412:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:414:34-90: Object of class `Device` has no attribute `getGasSummaryConsumptionDomesticHotWaterCurrentMonth` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:415:33-81: Object of class `Device` has no attribute `getGasSummaryConsumptionDomesticHotWaterUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:417:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:420:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:421:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:423:34-89: Object of class `Device` has no attribute `getGasSummaryConsumptionDomesticHotWaterCurrentYear` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:424:33-81: Object of class `Device` has no attribute `getGasSummaryConsumptionDomesticHotWaterUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:426:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:429:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:430:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:432:34-91: Object of class `Device` has no attribute `getGasSummaryConsumptionDomesticHotWaterLastSevenDays` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:433:33-81: Object of class `Device` has no attribute `getGasSummaryConsumptionDomesticHotWaterUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:435:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:438:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:439:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:441:34-81: Object of class `Device` has no attribute `getPowerSummaryConsumptionHeatingCurrentDay` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:442:33-74: Object of class `Device` has no attribute `getPowerSummaryConsumptionHeatingUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:446:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:447:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:449:34-83: Object of class `Device` has no attribute `getPowerSummaryConsumptionHeatingCurrentMonth` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:450:33-74: Object of class `Device` has no attribute `getPowerSummaryConsumptionHeatingUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:452:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:455:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:456:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:458:34-82: Object of class `Device` has no attribute `getPowerSummaryConsumptionHeatingCurrentYear` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:459:33-74: Object of class `Device` has no attribute `getPowerSummaryConsumptionHeatingUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:461:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:464:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:465:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:467:34-84: Object of class `Device` has no attribute `getPowerSummaryConsumptionHeatingLastSevenDays` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:468:33-74: Object of class `Device` has no attribute `getPowerSummaryConsumptionHeatingUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:470:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:473:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:474:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:476:34-69: Object of class `Device` has no attribute `getPowerConsumptionCoolingToday` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:477:33-67: Object of class `Device` has no attribute `getPowerConsumptionCoolingUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:481:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:482:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:484:34-73: Object of class `Device` has no attribute `getPowerConsumptionCoolingThisMonth` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:485:33-67: Object of class `Device` has no attribute `getPowerConsumptionCoolingUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:487:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:490:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:491:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:493:34-72: Object of class `Device` has no attribute `getPowerConsumptionCoolingThisYear` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:494:33-67: Object of class `Device` has no attribute `getPowerConsumptionCoolingUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:496:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:499:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:500:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:502:34-90: Object of class `Device` has no attribute `getPowerSummaryConsumptionDomesticHotWaterCurrentDay` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:503:33-83: Object of class `Device` has no attribute `getPowerSummaryConsumptionDomesticHotWaterUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:507:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:508:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:510:34-92: Object of class `Device` has no attribute `getPowerSummaryConsumptionDomesticHotWaterCurrentMonth` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:511:33-83: Object of class `Device` has no attribute `getPowerSummaryConsumptionDomesticHotWaterUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:513:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:516:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:517:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:519:34-91: Object of class `Device` has no attribute `getPowerSummaryConsumptionDomesticHotWaterCurrentYear` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:520:33-83: Object of class `Device` has no attribute `getPowerSummaryConsumptionDomesticHotWaterUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:522:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:525:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:526:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:528:34-93: Object of class `Device` has no attribute `getPowerSummaryConsumptionDomesticHotWaterLastSevenDays` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:529:33-83: Object of class `Device` has no attribute `getPowerSummaryConsumptionDomesticHotWaterUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:531:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:534:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:535:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:537:34-63: Object of class `Device` has no attribute `getPowerProductionCurrent` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:542:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:543:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:545:34-61: Object of class `Device` has no attribute `getPowerProductionToday` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:550:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:551:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:553:34-64: Object of class `Device` has no attribute `getPowerProductionThisWeek` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:556:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:559:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:560:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:562:34-65: Object of class `Device` has no attribute `getPowerProductionThisMonth` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:565:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:568:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:569:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:571:34-64: Object of class `Device` has no attribute `getPowerProductionThisYear` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:574:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:577:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:578:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:580:34-64: Object of class `Device` has no attribute `getSolarStorageTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:585:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:586:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:588:34-66: Object of class `Device` has no attribute `getSolarCollectorTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:593:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:594:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:596:34-66: Object of class `Device` has no attribute `getSolarPowerProductionToday` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:597:33-64: Object of class `Device` has no attribute `getSolarPowerProductionUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:602:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:603:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:605:34-69: Object of class `Device` has no attribute `getSolarPowerProductionThisWeek` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:606:33-64: Object of class `Device` has no attribute `getSolarPowerProductionUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:609:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:612:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:613:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:615:34-70: Object of class `Device` has no attribute `getSolarPowerProductionThisMonth` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:616:33-64: Object of class `Device` has no attribute `getSolarPowerProductionUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:619:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:622:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:623:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:625:34-69: Object of class `Device` has no attribute `getSolarPowerProductionThisYear` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:626:33-64: Object of class `Device` has no attribute `getSolarPowerProductionUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:629:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:632:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:633:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:635:34-62: Object of class `Device` has no attribute `getPowerConsumptionToday` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:636:33-60: Object of class `Device` has no attribute `getPowerConsumptionUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:641:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:642:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:644:34-65: Object of class `Device` has no attribute `getPowerConsumptionThisWeek` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:645:33-60: Object of class `Device` has no attribute `getPowerConsumptionUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:648:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:651:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:652:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:654:34-66: Object of class `Device` has no attribute `getPowerConsumptionThisMonth` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:655:33-60: Object of class `Device` has no attribute `getPowerConsumptionUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:658:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:661:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:662:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:664:34-65: Object of class `Device` has no attribute `getPowerConsumptionThisYear` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:665:33-60: Object of class `Device` has no attribute `getPowerConsumptionUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:668:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:671:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:672:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:674:34-61: Object of class `Device` has no attribute `getBufferTopTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:679:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:680:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:684:34-64: Object of class `Device` has no attribute `getBufferMidTopTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:687:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:688:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:692:34-64: Object of class `Device` has no attribute `getBufferMiddleTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:695:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:696:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:700:34-67: Object of class `Device` has no attribute `getBufferMidBottomTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:703:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:704:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:708:34-64: Object of class `Device` has no attribute `getBufferBottomTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:711:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:712:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:714:34-62: Object of class `Device` has no attribute `getBufferMainTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:719:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:720:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:722:34-61: Object of class `Device` has no attribute `getVolumetricFlowReturn` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:723:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:727:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:728:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:732:34-66: Object of class `Device` has no attribute `getElectricalEnergySystemSOC` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:733:33-69: Object of class `Device` has no attribute `getElectricalEnergySystemSOCUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:736:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:737:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:740:34-68: Object of class `Device` has no attribute `getElectricalEnergySystemPower` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:741:33-71: Object of class `Device` has no attribute `getElectricalEnergySystemPowerUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:744:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:745:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:748:34-77: Object of class `Device` has no attribute `getElectricalEnergySystemOperationState` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:751:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:752:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:754:34-95: Object of class `Device` has no attribute `getElectricalEnergySystemTransferChargeCumulatedLifeCycle` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:755:33-89: Object of class `Device` has no attribute `getElectricalEnergySystemTransferChargeCumulatedUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:758:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:759:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:761:34-99: Object of class `Device` has no attribute `getElectricalEnergySystemTransferDischargeCumulatedCurrentDay` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:762:33-92: Object of class `Device` has no attribute `getElectricalEnergySystemTransferDischargeCumulatedUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:765:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:766:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:768:34-100: Object of class `Device` has no attribute `getElectricalEnergySystemTransferDischargeCumulatedCurrentWeek` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:769:33-92: Object of class `Device` has no attribute `getElectricalEnergySystemTransferDischargeCumulatedUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:770:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:773:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:774:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:776:34-101: Object of class `Device` has no attribute `getElectricalEnergySystemTransferDischargeCumulatedCurrentMonth` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:777:33-92: Object of class `Device` has no attribute `getElectricalEnergySystemTransferDischargeCumulatedUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:778:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:781:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:782:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:784:34-100: Object of class `Device` has no attribute `getElectricalEnergySystemTransferDischargeCumulatedCurrentYear` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:785:33-92: Object of class `Device` has no attribute `getElectricalEnergySystemTransferDischargeCumulatedUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:786:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:789:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:790:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:792:34-98: Object of class `Device` has no attribute `getElectricalEnergySystemTransferDischargeCumulatedLifeCycle` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:793:33-92: Object of class `Device` has no attribute `getElectricalEnergySystemTransferDischargeCumulatedUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:794:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:797:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:798:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:801:34-83: Object of class `Device` has no attribute `getPointOfCommonCouplingTransferPowerExchange` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:804:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:805:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:808:34-86: Object of class `Device` has no attribute `getPointOfCommonCouplingTransferConsumptionTotal` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:809:33-89: Object of class `Device` has no attribute `getPointOfCommonCouplingTransferConsumptionTotalUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:812:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:813:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:816:34-81: Object of class `Device` has no attribute `getPointOfCommonCouplingTransferFeedInTotal` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:817:33-84: Object of class `Device` has no attribute `getPointOfCommonCouplingTransferFeedInTotalUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:820:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:821:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:824:34-70: Object of class `Device` has no attribute `getPhotovoltaicProductionCurrent` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:825:33-73: Object of class `Device` has no attribute `getPhotovoltaicProductionCurrentUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:828:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:829:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:833:34-82: Object of class `Device` has no attribute `getPhotovoltaicProductionCumulatedCurrentDay` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:834:33-75: Object of class `Device` has no attribute `getPhotovoltaicProductionCumulatedUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:837:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:838:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:842:34-83: Object of class `Device` has no attribute `getPhotovoltaicProductionCumulatedCurrentWeek` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:843:33-75: Object of class `Device` has no attribute `getPhotovoltaicProductionCumulatedUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:844:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:847:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:848:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:852:34-84: Object of class `Device` has no attribute `getPhotovoltaicProductionCumulatedCurrentMonth` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:853:33-75: Object of class `Device` has no attribute `getPhotovoltaicProductionCumulatedUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:854:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:857:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:858:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:862:34-83: Object of class `Device` has no attribute `getPhotovoltaicProductionCumulatedCurrentYear` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:863:33-75: Object of class `Device` has no attribute `getPhotovoltaicProductionCumulatedUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:864:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:867:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:868:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:872:34-81: Object of class `Device` has no attribute `getPhotovoltaicProductionCumulatedLifeCycle` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:873:33-75: Object of class `Device` has no attribute `getPhotovoltaicProductionCumulatedUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:876:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:877:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:880:47-72: Object of class `Device` has no attribute `getPhotovoltaicStatus` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:883:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:887:34-52: Object of class `Device` has no attribute `getTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:890:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:894:34-49: Object of class `Device` has no attribute `getHumidity` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:897:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:898:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:899:47-70: Object of class `Device` has no attribute `getVentilationLevel` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:904:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:905:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:906:34-58: Object of class `Device` has no attribute `getVentilationReason` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:907:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:908:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:920:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:921:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:925:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:926:34-55: Object of class `Device` has no attribute `getSupplyPressure` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:927:33-58: Object of class `Device` has no attribute `getSupplyPressureUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:930:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:931:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:932:34-57: Object of class `Device` has no attribute `getHeatingRodStarts` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:933:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:937:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:938:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:940:34-56: Object of class `Device` has no attribute `getHeatingRodHours` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:941:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:945:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:946:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:948:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:949:34-71: Object of class `Device` has no attribute `getSeasonalPerformanceFactorTotal` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:952:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:953:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:955:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:956:34-69: Object of class `Device` has no attribute `getSeasonalPerformanceFactorDHW` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:959:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:960:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:962:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:963:34-73: Object of class `Device` has no attribute `getSeasonalPerformanceFactorHeating` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:966:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:970:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:971:34-53: Object of class `Device` has no attribute `getBatteryLevel` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:974:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:975:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:977:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:979:34-61: Object of class `Device` has no attribute `getZigbeeSignalStrength` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:980:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:983:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:984:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:987:34-54: Object of class `Device` has no attribute `getValvePosition` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:988:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:991:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:992:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:994:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:996:34-49: Object of class `Device` has no attribute `getFuelNeed` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:997:33-48: Object of class `Device` has no attribute `getFuelUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1000:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1001:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1004:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1006:34-70: Object of class `Device` has no attribute `getHydraulicSeparatorTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1010:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1011:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1015:34-55: Object of class `Device` has no attribute `getSupplyHumidity` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1018:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1019:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1021:34-55: Object of class `Device` has no attribute `getSupplyFanHours` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1022:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1024:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1027:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1028:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1030:34-55: Object of class `Device` has no attribute `getSupplyFanSpeed` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1031:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1033:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1036:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1037:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1039:34-52: Object of class `Device` has no attribute `getFilterHours` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1040:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1042:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1045:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1046:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1048:34-61: Object of class `Device` has no attribute `getFilterRemainingHours` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1049:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1051:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1054:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1055:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1057:34-59: Object of class `Device` has no attribute `getFilterOverdueHours` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1058:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1060:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1063:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1067:34-56: Object of class `Device` has no attribute `getAirborneDustPM1` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1070:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1074:34-58: Object of class `Device` has no attribute `getAirborneDustPM2d5` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1077:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1081:34-56: Object of class `Device` has no attribute `getAirborneDustPM4` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1084:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1088:34-57: Object of class `Device` has no attribute `getAirborneDustPM10` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1091:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1092:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1094:34-57: Object of class `Device` has no attribute `getSupplyVolumeFlow` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1098:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1099:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1101:34-58: Object of class `Device` has no attribute `getExhaustVolumeFlow` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1112:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1113:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1114:34-47: Object of class `Device` has no attribute `getStarts` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1115:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1119:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1120:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1122:34-46: Object of class `Device` has no attribute `getHours` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1123:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1127:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1128:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1130:34-51: Object of class `Device` has no attribute `getModulation` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1137:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1138:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1139:34-47: Object of class `Device` has no attribute `getStarts` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1140:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1144:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1145:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1147:34-46: Object of class `Device` has no attribute `getHours` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1148:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1152:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1153:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1155:34-56: Object of class `Device` has no attribute `getHoursLoadClass1` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1156:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1158:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1161:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1162:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1164:34-56: Object of class `Device` has no attribute `getHoursLoadClass2` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1165:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1167:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1170:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1171:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1173:34-56: Object of class `Device` has no attribute `getHoursLoadClass3` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1174:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1176:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1179:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1180:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1182:34-56: Object of class `Device` has no attribute `getHoursLoadClass4` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1183:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1185:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1188:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1189:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1191:34-56: Object of class `Device` has no attribute `getHoursLoadClass5` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1192:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1194:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1197:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1198:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1199:50-62: Object of class `Device` has no attribute `getPhase` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1200:9-24: Unexpected keyword argument `entity_category` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1203:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1204:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1207:34-67: Object of class `Device` has no attribute `getCompressorInletTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1208:33-70: Object of class `Device` has no attribute `getCompressorInletTemperatureUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1209:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1212:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1213:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1216:34-68: Object of class `Device` has no attribute `getCompressorOutletTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1217:33-71: Object of class `Device` has no attribute `getCompressorOutletTemperatureUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1218:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1221:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1222:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1225:34-64: Object of class `Device` has no attribute `getCompressorInletPressure` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1226:33-67: Object of class `Device` has no attribute `getCompressorInletPressureUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1227:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1230:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1231:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1234:34-65: Object of class `Device` has no attribute `getCompressorOutletPressure` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1235:33-68: Object of class `Device` has no attribute `getCompressorOutletPressureUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1236:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1242:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1243:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1246:34-67: Object of class `Device` has no attribute `getCondensorLiquidTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1247:33-70: Object of class `Device` has no attribute `getCondensorLiquidTemperatureUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1248:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1251:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1252:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1255:34-71: Object of class `Device` has no attribute `getCondensorSubcoolingTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1256:33-74: Object of class `Device` has no attribute `getCondensorSubcoolingTemperatureUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1257:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1263:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1264:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1267:34-70: Object of class `Device` has no attribute `getEvaporatorOverheatTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1268:33-73: Object of class `Device` has no attribute `getEvaporatorOverheatTemperatureUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1269:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1272:9-12: Unexpected keyword argument `key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1273:9-24: Unexpected keyword argument `translation_key` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1276:34-68: Object of class `Device` has no attribute `getEvaporatorLiquidTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1277:33-71: Object of class `Device` has no attribute `getEvaporatorLiquidTemperatureUnit` [missing-attribute] +ERROR homeassistant/components/vicare/sensor.py:1278:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `ViCareSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vicare/sensor.py:1343:5-23: Class member `ViCareSensor.entity_description` overrides parent class `ViCareEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vicare/sensor.py:1343:5-23: Class member `ViCareSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vicare/sensor.py:1370:21-30: Argument `Device | HeatingDeviceWithComponent` is not assignable to parameter with type `Device` [bad-argument-type] +ERROR homeassistant/components/vicare/sensor.py:1374:71-80: Argument `Device | HeatingDeviceWithComponent` is not assignable to parameter with type `Device` [bad-argument-type] +ERROR homeassistant/components/vicare/sensor.py:1388:22-40: Class member `ViCareSensor._attr_device_class` overrides parent class `ViCareEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vicare/utils.py:103:16-30: Object of class `Device` has no attribute `burners` [missing-attribute] +ERROR homeassistant/components/vicare/utils.py:114:16-31: Object of class `Device` has no attribute `circuits` [missing-attribute] +ERROR homeassistant/components/vicare/utils.py:125:16-34: Object of class `Device` has no attribute `compressors` [missing-attribute] +ERROR homeassistant/components/vicare/utils.py:136:16-33: Object of class `Device` has no attribute `condensors` [missing-attribute] +ERROR homeassistant/components/vicare/utils.py:147:16-34: Object of class `Device` has no attribute `evaporators` [missing-attribute] +ERROR homeassistant/components/vicare/water_heater.py:73:13-20: Argument `HeatingDeviceWithComponent` is not assignable to parameter `circuit` with type `HeatingCircuit` in function `ViCareWater.__init__` [bad-argument-type] +ERROR homeassistant/components/vicare/water_heater.py:98:5-29: Class member `ViCareWater._attr_supported_features` overrides parent class `ViCareEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vicare/water_heater.py:123:21-68: Object of class `Device` has no attribute `getDomesticHotWaterStorageTemperature` +Object of class `HeatingDeviceWithComponent` has no attribute `getDomesticHotWaterStorageTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/water_heater.py:128:21-68: Object of class `Device` has no attribute `getDomesticHotWaterDesiredTemperature` +Object of class `HeatingDeviceWithComponent` has no attribute `getDomesticHotWaterDesiredTemperature` [missing-attribute] +ERROR homeassistant/components/vicare/water_heater.py:146:13-53: Object of class `Device` has no attribute `setDomesticHotWaterTemperature` +Object of class `HeatingDeviceWithComponent` has no attribute `setDomesticHotWaterTemperature` [missing-attribute] +ERROR homeassistant/components/victron_remote_monitoring/coordinator.py:57:15-35: Argument `ForecastAggregations | dict[Unknown, Unknown] | None` is not assignable to parameter `solar` with type `ForecastAggregations | None` in function `VRMForecastStore.__init__` [bad-argument-type] +ERROR homeassistant/components/victron_remote_monitoring/coordinator.py:57:21-34: Cannot index into `dict[Literal['records', 'totals'], dict[Unknown, Unknown]]` [bad-index] +ERROR homeassistant/components/victron_remote_monitoring/coordinator.py:58:21-41: Argument `ForecastAggregations | dict[Unknown, Unknown] | None` is not assignable to parameter `consumption` with type `ForecastAggregations | None` in function `VRMForecastStore.__init__` [bad-argument-type] +ERROR homeassistant/components/victron_remote_monitoring/coordinator.py:58:27-40: Cannot index into `dict[Literal['records', 'totals'], dict[Unknown, Unknown]]` [bad-index] +ERROR homeassistant/components/victron_remote_monitoring/coordinator.py:68:5-17: Class member `VictronRemoteMonitoringDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:40:9-12: Unexpected keyword argument `key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:52:9-12: Unexpected keyword argument `key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:64:9-12: Unexpected keyword argument `key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:76:9-12: Unexpected keyword argument `key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:77:9-24: Unexpected keyword argument `translation_key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:88:9-12: Unexpected keyword argument `key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:96:9-12: Unexpected keyword argument `key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:104:9-12: Unexpected keyword argument `key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:112:9-12: Unexpected keyword argument `key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:113:9-24: Unexpected keyword argument `translation_key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:124:9-12: Unexpected keyword argument `key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:137:9-12: Unexpected keyword argument `key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:138:9-24: Unexpected keyword argument `translation_key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:149:9-12: Unexpected keyword argument `key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:150:9-24: Unexpected keyword argument `translation_key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:161:9-12: Unexpected keyword argument `key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:162:9-24: Unexpected keyword argument `translation_key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:175:9-12: Unexpected keyword argument `key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:176:9-24: Unexpected keyword argument `translation_key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:187:9-12: Unexpected keyword argument `key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:188:9-24: Unexpected keyword argument `translation_key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:197:9-12: Unexpected keyword argument `key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:198:9-24: Unexpected keyword argument `translation_key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:205:9-12: Unexpected keyword argument `key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:206:9-24: Unexpected keyword argument `translation_key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:215:9-12: Unexpected keyword argument `key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:216:9-24: Unexpected keyword argument `translation_key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:229:9-12: Unexpected keyword argument `key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:230:9-24: Unexpected keyword argument `translation_key` in function `VRMForecastsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:266:5-23: Class member `VRMForecastsSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/victron_remote_monitoring/sensor.py:266:5-23: Class member `VRMForecastsSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vilfo/config_flow.py:45:26-47: Cannot set item in `dict[str, dict[@_, @_] | None]` [unsupported-operation] +ERROR homeassistant/components/vilfo/config_flow.py:46:26-39: Cannot set item in `dict[str, dict[Unknown, Unknown] | None]` [unsupported-operation] +ERROR homeassistant/components/vilfo/config_flow.py:53:26-45: Cannot set item in `dict[str, dict[Unknown, Unknown] | None]` [unsupported-operation] +ERROR homeassistant/components/vilfo/config_flow.py:54:26-37: Cannot set item in `dict[str, dict[Unknown, Unknown] | None]` [unsupported-operation] +ERROR homeassistant/components/vilfo/config_flow.py:58:9-32: Cannot set item in `None` [unsupported-operation] +ERROR homeassistant/components/vilfo/config_flow.py:59:9-33: Cannot set item in `None` [unsupported-operation] +ERROR homeassistant/components/vilfo/config_flow.py:61:9-32: Cannot set item in `None` [unsupported-operation] +ERROR homeassistant/components/vilfo/config_flow.py:62:9-33: Cannot set item in `None` [unsupported-operation] +ERROR homeassistant/components/vilfo/config_flow.py:64:22-36: Cannot set item in `dict[str, dict[Unknown, Unknown] | None]` [unsupported-operation] +ERROR homeassistant/components/vilfo/sensor.py:37:9-12: Unexpected keyword argument `key` in function `VilfoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vilfo/sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `VilfoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vilfo/sensor.py:43:9-12: Unexpected keyword argument `key` in function `VilfoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vilfo/sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `VilfoSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vilfo/sensor.py:67:5-23: Class member `VilfoRouterSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vivotek/camera.py:5:1-39: Could not find import of `libpyvivotek` [missing-import] +ERROR homeassistant/components/vizio/config_flow.py:179:9-31: Class member `VizioConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vizio/config_flow.py:244:25-58: Argument `Any | None` is not assignable to parameter `auth_token` with type `str` in function `pyvizio.VizioAsync.validate_ha_config` [bad-argument-type] +ERROR homeassistant/components/vizio/config_flow.py:343:17-30: Argument `str | None` is not assignable to parameter `ch_type` with type `int | str` in function `pyvizio.VizioAsync.pair` [bad-argument-type] +ERROR homeassistant/components/vizio/config_flow.py:343:32-51: Argument `str | None` is not assignable to parameter `token` with type `int | str` in function `pyvizio.VizioAsync.pair` [bad-argument-type] +ERROR homeassistant/components/vizio/coordinator.py:26:5-17: Class member `VizioAppsDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vizio/media_player.py:242:21-53: Object of class `int` has no attribute `lower` [missing-attribute] +ERROR homeassistant/components/vizio/media_player.py:251:41-73: `int | str` is not assignable to attribute `_attr_sound_mode` with type `str | None` [bad-assignment] +ERROR homeassistant/components/vizio/media_player.py:253:50-257:22: `dict[str, int | str] | list[str] | None` is not assignable to attribute `_attr_sound_mode_list` with type `list[str] | None` [bad-assignment] +ERROR homeassistant/components/vizio/media_player.py:454:25-39: Argument `list[dict[str, Any]] | None` is not assignable to parameter `apps_list` with type `list[dict[str, list[dict[str, Any] | str] | str]]` in function `pyvizio.VizioAsync.launch_app` [bad-argument-type] +ERROR homeassistant/components/vlc/media_player.py:8:8-11: Could not find import of `vlc` [missing-import] +ERROR homeassistant/components/vlc/media_player.py:146:48-52: Argument `() -> Unknown` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/vodafone_station/__init__.py:80:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/vodafone_station/button.py:45:9-12: Unexpected keyword argument `key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/button.py:47:9-24: Unexpected keyword argument `entity_category` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/button.py:52:9-12: Unexpected keyword argument `key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/button.py:53:9-24: Unexpected keyword argument `translation_key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/button.py:55:9-24: Unexpected keyword argument `entity_category` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/button.py:60:9-12: Unexpected keyword argument `key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/button.py:61:9-24: Unexpected keyword argument `translation_key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/button.py:63:9-24: Unexpected keyword argument `entity_category` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/button.py:68:9-12: Unexpected keyword argument `key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/button.py:69:9-24: Unexpected keyword argument `translation_key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/button.py:71:9-24: Unexpected keyword argument `entity_category` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/button.py:105:5-23: Class member `VodafoneStationSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vodafone_station/button.py:105:5-23: Class member `VodafoneStationSensorEntity.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vodafone_station/config_flow.py:86:9-31: Class member `VodafoneStationConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vodafone_station/coordinator.py:62:5-17: Class member `VodafoneStationRouter.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vodafone_station/device_tracker.py:84:14-28: Class member `VodafoneStationTracker._attr_hostname` overrides parent class `ScannerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vodafone_station/device_tracker.py:84:36-46: Class member `VodafoneStationTracker._attr_name` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vodafone_station/device_tracker.py:84:36-46: Class member `VodafoneStationTracker._attr_name` overrides parent class `ScannerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vodafone_station/sensor.py:86:9-12: Unexpected keyword argument `key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:91:9-12: Unexpected keyword argument `key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:96:9-12: Unexpected keyword argument `key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:101:9-12: Unexpected keyword argument `key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:102:9-24: Unexpected keyword argument `translation_key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:108:9-12: Unexpected keyword argument `key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:109:9-24: Unexpected keyword argument `translation_key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:112:9-24: Unexpected keyword argument `entity_category` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:115:9-12: Unexpected keyword argument `key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:119:9-24: Unexpected keyword argument `entity_category` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:122:9-12: Unexpected keyword argument `key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:124:9-24: Unexpected keyword argument `entity_category` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:127:9-12: Unexpected keyword argument `key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:128:9-24: Unexpected keyword argument `translation_key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:132:9-12: Unexpected keyword argument `key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:133:9-24: Unexpected keyword argument `translation_key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:137:9-12: Unexpected keyword argument `key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:138:9-24: Unexpected keyword argument `translation_key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:140:9-24: Unexpected keyword argument `entity_category` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:144:9-12: Unexpected keyword argument `key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:145:9-24: Unexpected keyword argument `translation_key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:147:9-24: Unexpected keyword argument `entity_category` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:153:9-12: Unexpected keyword argument `key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:154:9-24: Unexpected keyword argument `translation_key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:156:9-24: Unexpected keyword argument `entity_category` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:162:9-12: Unexpected keyword argument `key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:163:9-24: Unexpected keyword argument `translation_key` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:164:9-24: Unexpected keyword argument `entity_category` in function `VodafoneStationEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/vodafone_station/sensor.py:194:5-23: Class member `VodafoneStationSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/vodafone_station/sensor.py:194:5-23: Class member `VodafoneStationSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/voicerss/tts.py:196:46-55: Argument `HomeAssistant | None` is not assignable to parameter `hass` with type `HomeAssistant` in function `homeassistant.helpers.aiohttp_client.async_get_clientsession` [bad-argument-type] +ERROR homeassistant/components/voip/__init__.py:118:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/voip/assist_satellite.py:101:5-23: Class member `VoipAssistSatellite.entity_description` overrides parent class `VoIPEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/voip/assist_satellite.py:101:59-62: Unexpected keyword argument `key` in function `homeassistant.components.assist_satellite.entity.AssistSatelliteEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/voip/assist_satellite.py:126:14-26: Class member `VoipAssistSatellite._audio_queue` overrides parent class `RtpDatagramProtocol` in an inconsistent manner [bad-override] +ERROR homeassistant/components/voip/assist_satellite.py:168:37-41: `Self@VoipAssistSatellite` is not assignable to attribute `protocol` with type `VoipDatagramProtocol | None` [bad-assignment] +ERROR homeassistant/components/voip/binary_sensor.py:45:5-23: Class member `VoIPCallInProgress.entity_description` overrides parent class `VoIPEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/voip/binary_sensor.py:46:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/voip/binary_sensor.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/voip/binary_sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/voip/switch.py:45:5-23: Class member `VoIPCallAllowedSwitch.entity_description` overrides parent class `VoIPEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/voip/switch.py:45:5-23: Class member `VoIPCallAllowedSwitch.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/voip/switch.py:46:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/voip/switch.py:47:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/voip/switch.py:48:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/voip/voip.py:58:16-63:10: Returned type `PreRecordMessageProtocol` is not assignable to declared return type `VoipDatagramProtocol` [bad-return] +ERROR homeassistant/components/voip/voip.py:68:5-24: Object of class `VoipDatagramProtocol` has no attribute `_rtp_input` [missing-attribute] +ERROR homeassistant/components/voip/voip.py:69:5-25: Object of class `VoipDatagramProtocol` has no attribute `_rtp_output` [missing-attribute] +ERROR homeassistant/components/voip/voip.py:71:5-24: Object of class `VoipDatagramProtocol` has no attribute `rtcp_state` [missing-attribute] +ERROR homeassistant/components/voip/voip.py:72:8-27: Object of class `VoipDatagramProtocol` has no attribute `rtcp_state` [missing-attribute] +ERROR homeassistant/components/voip/voip.py:74:9-41: Object of class `object` has no attribute `bye_callback` [missing-attribute] +ERROR homeassistant/components/voip/voip.py:91:36-93:14: Argument `(call_info: CallInfo, rtcp_state: RtcpState) -> VoipDatagramProtocol` is not assignable to parameter `valid_protocol_factory` with type `(CallInfo, RtcpState) -> Protocol` in function `voip_utils.voip.VoipDatagramProtocol.__init__` [bad-argument-type] +ERROR homeassistant/components/voip/voip.py:95:17-100:18: Argument `(call_info: CallInfo, rtcp_state: RtcpState) -> PreRecordMessageProtocol` is not assignable to parameter `invalid_protocol_factory` with type `((CallInfo, RtcpState) -> Protocol) | None` in function `voip_utils.voip.VoipDatagramProtocol.__init__` [bad-argument-type] +ERROR homeassistant/components/voip/voip.py:114:45-67: Argument `BoundMethod[Event, (self: Event) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/components/volkszaehler/sensor.py:8:1-38: Could not find import of `volkszaehler` [missing-import] +ERROR homeassistant/components/volkszaehler/sensor.py:9:1-67: Could not find import of `volkszaehler.exceptions` [missing-import] +ERROR homeassistant/components/volkszaehler/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volkszaehler/sensor.py:46:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volkszaehler/sensor.py:49:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volkszaehler/sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volkszaehler/sensor.py:53:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volkszaehler/sensor.py:56:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volkszaehler/sensor.py:59:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volkszaehler/sensor.py:60:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volkszaehler/sensor.py:63:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volkszaehler/sensor.py:66:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volkszaehler/sensor.py:67:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volkszaehler/sensor.py:70:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volumio/browse_media.py:117:22-31: `thumbnail` may be uninitialized [unbound-name] +ERROR homeassistant/components/volumio/browse_media.py:160:58-63: `title` may be uninitialized [unbound-name] +ERROR homeassistant/components/volumio/config_flow.py:88:30-58: `Any | None` is not assignable to attribute `_name` with type `str` [bad-assignment] +ERROR homeassistant/components/volvo/binary_sensor.py:63:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:70:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:74:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:78:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:82:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:86:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:90:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:94:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:101:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:105:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:109:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:113:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:117:9-12: Unexpected keyword argument `key` in function `VolvoCarsDoorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:122:9-12: Unexpected keyword argument `key` in function `VolvoCarsDoorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:127:9-12: Unexpected keyword argument `key` in function `VolvoCarsDoorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:132:9-12: Unexpected keyword argument `key` in function `VolvoCarsDoorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:137:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:144:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:148:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:152:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:156:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:160:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:164:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:168:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:172:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:176:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:180:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:184:9-12: Unexpected keyword argument `key` in function `VolvoCarsDoorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:189:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:193:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:197:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:201:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:205:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:212:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:216:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:220:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:224:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:228:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:232:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:236:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:240:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:244:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:248:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:252:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:256:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:260:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:264:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:268:9-12: Unexpected keyword argument `key` in function `VolvoCarsWindowDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:273:9-12: Unexpected keyword argument `key` in function `VolvoCarsTireDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:278:9-12: Unexpected keyword argument `key` in function `VolvoCarsTireDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:283:9-12: Unexpected keyword argument `key` in function `VolvoCarsTireDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:288:9-12: Unexpected keyword argument `key` in function `VolvoCarsTireDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:293:9-12: Unexpected keyword argument `key` in function `VolvoCarsDoorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:298:9-12: Unexpected keyword argument `key` in function `VolvoCarsDoorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:303:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:307:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:311:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:315:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:319:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:323:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:327:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:331:9-24: Unexpected keyword argument `entity_category` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:335:9-12: Unexpected keyword argument `key` in function `VolvoBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:342:9-12: Unexpected keyword argument `key` in function `VolvoCarsWindowDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:347:9-12: Unexpected keyword argument `key` in function `VolvoCarsWindowDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:352:9-12: Unexpected keyword argument `key` in function `VolvoCarsWindowDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:357:9-12: Unexpected keyword argument `key` in function `VolvoCarsWindowDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/binary_sensor.py:381:5-23: Class member `VolvoBinarySensor.entity_description` overrides parent class `VolvoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/volvo/binary_sensor.py:381:5-23: Class member `VolvoBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/volvo/button.py:32:9-12: Unexpected keyword argument `key` in function `VolvoButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/button.py:37:9-12: Unexpected keyword argument `key` in function `VolvoButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/button.py:42:9-12: Unexpected keyword argument `key` in function `VolvoButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/button.py:48:9-12: Unexpected keyword argument `key` in function `VolvoButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/button.py:53:9-12: Unexpected keyword argument `key` in function `VolvoButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/button.py:58:9-12: Unexpected keyword argument `key` in function `VolvoButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/button.py:63:9-12: Unexpected keyword argument `key` in function `VolvoButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/button.py:89:5-23: Class member `VolvoButton.entity_description` overrides parent class `VolvoBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/volvo/button.py:89:5-23: Class member `VolvoButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/volvo/button.py:105:18-24: `result` may be uninitialized [unbound-name] +ERROR homeassistant/components/volvo/button.py:105:42-48: `result` may be uninitialized [unbound-name] +ERROR homeassistant/components/volvo/button.py:109:49-55: `result` may be uninitialized [unbound-name] +ERROR homeassistant/components/volvo/button.py:109:67-73: `result` may be uninitialized [unbound-name] +ERROR homeassistant/components/volvo/coordinator.py:72:5-17: Class member `VolvoBaseCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/volvo/coordinator.py:108:18-33: Class member `VolvoBaseCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/volvo/coordinator.py:108:36-40: `None` is not assignable to attribute `update_interval` with type `(self: Self@VolvoBaseCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/volvo/device_tracker.py:27:9-12: Unexpected keyword argument `key` in function `VolvoTrackerDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/device_tracker.py:52:5-23: Class member `VolvoDeviceTracker.entity_description` overrides parent class `VolvoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/volvo/device_tracker.py:52:5-23: Class member `VolvoDeviceTracker.entity_description` overrides parent class `TrackerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/volvo/entity.py:46:14-32: Class member `VolvoBaseEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/volvo/lock.py:35:9-12: Unexpected keyword argument `key` in function `VolvoLockDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/lock.py:66:5-23: Class member `VolvoLock.entity_description` overrides parent class `VolvoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/volvo/lock.py:66:5-23: Class member `VolvoLock.entity_description` overrides parent class `LockEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/volvo/sensor.py:112:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:123:9-24: Unexpected keyword argument `entity_category` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:127:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:135:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:143:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:151:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:159:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:167:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:176:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:185:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:189:9-24: Unexpected keyword argument `entity_category` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:193:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:202:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:213:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:221:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:230:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:238:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:252:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:263:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:276:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:285:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:294:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:303:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:311:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:319:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:328:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:337:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:356:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:363:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:372:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:381:9-12: Unexpected keyword argument `key` in function `VolvoSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/volvo/sensor.py:415:5-23: Class member `VolvoSensor.entity_description` overrides parent class `VolvoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/volvo/sensor.py:415:5-23: Class member `VolvoSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/w800rf32/__init__.py:6:8-24: Could not find import of `W800rf32` [missing-import] +ERROR homeassistant/components/w800rf32/binary_sensor.py:8:8-24: Could not find import of `W800rf32` [missing-import] +ERROR homeassistant/components/w800rf32/binary_sensor.py:130:36-132:14: `() -> None` is not assignable to attribute `_delay_listener` with type `None` [bad-assignment] +ERROR homeassistant/components/wallbox/coordinator.py:128:5-17: Class member `WallboxCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wallbox/coordinator.py:214:14-29: Class member `WallboxCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wallbox/coordinator.py:214:32-217:10: `timedelta` is not assignable to attribute `update_interval` with type `(self: Self@WallboxCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/wallbox/coordinator.py:218:55-69: Argument `BoundMethod[Self@WallboxCoordinator, (Self@WallboxCoordinator) -> Any]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/wallbox/lock.py:21:9-12: Unexpected keyword argument `key` in function `homeassistant.components.lock.LockEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/lock.py:22:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.lock.LockEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/lock.py:56:14-32: Class member `WallboxLock.entity_description` overrides parent class `WallboxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wallbox/number.py:51:9-12: Unexpected keyword argument `key` in function `WallboxNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/number.py:52:9-24: Unexpected keyword argument `translation_key` in function `WallboxNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/number.py:61:9-12: Unexpected keyword argument `key` in function `WallboxNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/number.py:62:9-24: Unexpected keyword argument `translation_key` in function `WallboxNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/number.py:69:9-12: Unexpected keyword argument `key` in function `WallboxNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/number.py:70:9-24: Unexpected keyword argument `translation_key` in function `WallboxNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/number.py:100:5-23: Class member `WallboxNumber.entity_description` overrides parent class `WallboxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wallbox/number.py:100:5-23: Class member `WallboxNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wallbox/select.py:40:9-12: Unexpected keyword argument `key` in function `WallboxSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/select.py:41:9-24: Unexpected keyword argument `translation_key` in function `WallboxSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/select.py:83:5-23: Class member `WallboxSelect.entity_description` overrides parent class `WallboxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wallbox/select.py:83:5-23: Class member `WallboxSelect.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wallbox/sensor.py:59:9-12: Unexpected keyword argument `key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:67:9-12: Unexpected keyword argument `key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:75:9-12: Unexpected keyword argument `key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:81:9-12: Unexpected keyword argument `key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:82:9-24: Unexpected keyword argument `translation_key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:89:9-12: Unexpected keyword argument `key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:97:9-12: Unexpected keyword argument `key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:105:9-12: Unexpected keyword argument `key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:106:9-24: Unexpected keyword argument `translation_key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:113:9-12: Unexpected keyword argument `key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:121:9-12: Unexpected keyword argument `key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:122:9-24: Unexpected keyword argument `translation_key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:126:9-12: Unexpected keyword argument `key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:127:9-24: Unexpected keyword argument `translation_key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:133:9-12: Unexpected keyword argument `key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:134:9-24: Unexpected keyword argument `translation_key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:137:9-12: Unexpected keyword argument `key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:138:9-24: Unexpected keyword argument `translation_key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:143:9-12: Unexpected keyword argument `key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:144:9-24: Unexpected keyword argument `translation_key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:149:9-12: Unexpected keyword argument `key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:150:9-24: Unexpected keyword argument `translation_key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:153:9-12: Unexpected keyword argument `key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:154:9-24: Unexpected keyword argument `translation_key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:160:9-12: Unexpected keyword argument `key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:161:9-24: Unexpected keyword argument `translation_key` in function `WallboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/sensor.py:191:5-23: Class member `WallboxSensor.entity_description` overrides parent class `WallboxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wallbox/sensor.py:191:5-23: Class member `WallboxSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wallbox/switch.py:23:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/switch.py:24:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wallbox/switch.py:55:14-32: Class member `WallboxSwitch.entity_description` overrides parent class `WallboxEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/waqi/coordinator.py:21:5-17: Class member `WAQIDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/waqi/sensor.py:38:9-12: Unexpected keyword argument `key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:44:9-12: Unexpected keyword argument `key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:52:9-12: Unexpected keyword argument `key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:60:9-12: Unexpected keyword argument `key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:68:9-12: Unexpected keyword argument `key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:75:9-12: Unexpected keyword argument `key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:82:9-12: Unexpected keyword argument `key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:89:9-12: Unexpected keyword argument `key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:96:9-12: Unexpected keyword argument `key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:97:9-24: Unexpected keyword argument `translation_key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:103:9-12: Unexpected keyword argument `key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:104:9-24: Unexpected keyword argument `translation_key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:110:9-12: Unexpected keyword argument `key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:111:9-24: Unexpected keyword argument `translation_key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:115:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:118:9-12: Unexpected keyword argument `key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:119:9-24: Unexpected keyword argument `translation_key` in function `WAQISensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waqi/sensor.py:148:5-23: Class member `WaqiSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/waqi/sensor.py:148:5-23: Class member `WaqiSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/water_heater/__init__.py:182:5-23: Class member `WaterHeaterEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/water_heater/__init__.py:190:5-16: Class member `WaterHeaterEntity._attr_state` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/water_heater/__init__.py:191:5-29: Class member `WaterHeaterEntity._attr_supported_features` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/water_heater/__init__.py:384:48-70: Argument `BoundMethod[Self@WaterHeaterEntity, (self: Self@WaterHeaterEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/water_heater/__init__.py:392:48-71: Argument `BoundMethod[Self@WaterHeaterEntity, (self: Self@WaterHeaterEntity) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/water_heater/device_action.py:78:17-24: `service` may be uninitialized [unbound-name] +ERROR homeassistant/components/waterfurnace/__init__.py:9:1-83: Could not find import of `waterfurnace.waterfurnace` [missing-import] +ERROR homeassistant/components/waterfurnace/sensor.py:21:29-33: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:21:50-53: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:21:62-66: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:23:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:24:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:29:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:30:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:35:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:36:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:41:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:47:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:48:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:53:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:54:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:55:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:59:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:60:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:61:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:65:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:66:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:71:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:72:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:77:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:78:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:83:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:84:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:89:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:89:34-37: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:89:63-67: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:92:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:92:27-30: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/waterfurnace/sensor.py:92:54-58: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/__init__.py:107:50-60: Object of class `AutoShutOffReportData` has no attribute `state` +Object of class `OnlineEvent` has no attribute `state` +Object of class `PowerSupplyChangedEventData` has no attribute `state` +Object of class `TelemetryEventData` has no attribute `state` +Object of class `WifiChangedEventData` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/watergate/__init__.py:109:22-33: Object of class `AutoShutOffReportData` has no attribute `errors` +Object of class `OnlineEvent` has no attribute `errors` +Object of class `PowerSupplyChangedEventData` has no attribute `errors` +Object of class `ValveEventData` has no attribute `errors` +Object of class `WifiChangedEventData` has no attribute `errors` [missing-attribute] +ERROR homeassistant/components/watergate/__init__.py:111:17-26: Object of class `AutoShutOffReportData` has no attribute `flow` +Object of class `OnlineEvent` has no attribute `flow` +Object of class `PowerSupplyChangedEventData` has no attribute `flow` +Object of class `ValveEventData` has no attribute `flow` +Object of class `WifiChangedEventData` has no attribute `flow` [missing-attribute] +ERROR homeassistant/components/watergate/__init__.py:111:17-60: `Unknown | None` is not assignable to attribute `flow` with type `float` [bad-assignment] +ERROR homeassistant/components/watergate/__init__.py:114:17-30: Object of class `AutoShutOffReportData` has no attribute `pressure` +Object of class `OnlineEvent` has no attribute `pressure` +Object of class `PowerSupplyChangedEventData` has no attribute `pressure` +Object of class `ValveEventData` has no attribute `pressure` +Object of class `WifiChangedEventData` has no attribute `pressure` [missing-attribute] +ERROR homeassistant/components/watergate/__init__.py:114:17-68: `Unknown | None` is not assignable to attribute `pressure` with type `float` [bad-assignment] +ERROR homeassistant/components/watergate/__init__.py:117:17-33: Object of class `AutoShutOffReportData` has no attribute `temperature` +Object of class `OnlineEvent` has no attribute `temperature` +Object of class `PowerSupplyChangedEventData` has no attribute `temperature` +Object of class `ValveEventData` has no attribute `temperature` +Object of class `WifiChangedEventData` has no attribute `temperature` [missing-attribute] +ERROR homeassistant/components/watergate/__init__.py:117:17-74: `Unknown | None` is not assignable to attribute `water_temperature` with type `float` [bad-assignment] +ERROR homeassistant/components/watergate/__init__.py:120:46-53: Object of class `AutoShutOffReportData` has no attribute `ip` +Object of class `OnlineEvent` has no attribute `ip` +Object of class `PowerSupplyChangedEventData` has no attribute `ip` +Object of class `TelemetryEventData` has no attribute `ip` +Object of class `ValveEventData` has no attribute `ip` [missing-attribute] +ERROR homeassistant/components/watergate/__init__.py:121:51-63: Object of class `AutoShutOffReportData` has no attribute `gateway` +Object of class `OnlineEvent` has no attribute `gateway` +Object of class `PowerSupplyChangedEventData` has no attribute `gateway` +Object of class `TelemetryEventData` has no attribute `gateway` +Object of class `ValveEventData` has no attribute `gateway` [missing-attribute] +ERROR homeassistant/components/watergate/__init__.py:122:50-61: Object of class `AutoShutOffReportData` has no attribute `subnet` +Object of class `OnlineEvent` has no attribute `subnet` +Object of class `PowerSupplyChangedEventData` has no attribute `subnet` +Object of class `TelemetryEventData` has no attribute `subnet` +Object of class `ValveEventData` has no attribute `subnet` [missing-attribute] +ERROR homeassistant/components/watergate/__init__.py:123:48-57: Object of class `AutoShutOffReportData` has no attribute `ssid` +Object of class `OnlineEvent` has no attribute `ssid` +Object of class `PowerSupplyChangedEventData` has no attribute `ssid` +Object of class `TelemetryEventData` has no attribute `ssid` +Object of class `ValveEventData` has no attribute `ssid` [missing-attribute] +ERROR homeassistant/components/watergate/__init__.py:124:48-57: Object of class `AutoShutOffReportData` has no attribute `rssi` +Object of class `OnlineEvent` has no attribute `rssi` +Object of class `PowerSupplyChangedEventData` has no attribute `rssi` +Object of class `TelemetryEventData` has no attribute `rssi` +Object of class `ValveEventData` has no attribute `rssi` [missing-attribute] +ERROR homeassistant/components/watergate/__init__.py:126:51-62: Object of class `AutoShutOffReportData` has no attribute `supply` +Object of class `OnlineEvent` has no attribute `supply` +Object of class `TelemetryEventData` has no attribute `supply` +Object of class `ValveEventData` has no attribute `supply` +Object of class `WifiChangedEventData` has no attribute `supply` [missing-attribute] +ERROR homeassistant/components/watergate/__init__.py:129:55-64: Object of class `PowerSupplyChangedEventData` has no attribute `type` +Object of class `TelemetryEventData` has no attribute `type` +Object of class `ValveEventData` has no attribute `type` +Object of class `WifiChangedEventData` has no attribute `type` [missing-attribute] +ERROR homeassistant/components/watergate/__init__.py:132:44-60: `coordinator_data` may be uninitialized [unbound-name] +ERROR homeassistant/components/watergate/coordinator.py:34:5-17: Class member `WatergateDataCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/watergate/coordinator.py:59:43-48: Argument `DeviceState | None` is not assignable to parameter `state` with type `DeviceState` in function `WatergateAgregatedRequests.__init__` [bad-argument-type] +ERROR homeassistant/components/watergate/coordinator.py:59:50-59: Argument `TelemetryData | None` is not assignable to parameter `telemetry` with type `TelemetryData` in function `WatergateAgregatedRequests.__init__` [bad-argument-type] +ERROR homeassistant/components/watergate/coordinator.py:59:61-71: Argument `NetworkingData | None` is not assignable to parameter `networking` with type `NetworkingData` in function `WatergateAgregatedRequests.__init__` [bad-argument-type] +ERROR homeassistant/components/watergate/event.py:21:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/event.py:22:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/event.py:26:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/event.py:27:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/event.py:59:14-32: Class member `AutoShutOffEvent.entity_description` overrides parent class `WatergateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/watergate/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:67:9-12: Unexpected keyword argument `key` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:79:9-12: Unexpected keyword argument `key` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:86:9-12: Unexpected keyword argument `key` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:87:9-24: Unexpected keyword argument `entity_category` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:88:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:96:56-83: Argument `str` is not assignable to parameter `milliseconds` with type `float` in function `datetime.timedelta.__new__` [bad-argument-type] +ERROR homeassistant/components/watergate/sensor.py:101:9-24: Unexpected keyword argument `translation_key` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:102:9-12: Unexpected keyword argument `key` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:103:9-24: Unexpected keyword argument `entity_category` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:104:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:110:56-83: Argument `str` is not assignable to parameter `milliseconds` with type `float` in function `datetime.timedelta.__new__` [bad-argument-type] +ERROR homeassistant/components/watergate/sensor.py:115:9-24: Unexpected keyword argument `translation_key` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:116:9-12: Unexpected keyword argument `key` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:117:9-24: Unexpected keyword argument `entity_category` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:118:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:125:9-24: Unexpected keyword argument `translation_key` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:126:9-12: Unexpected keyword argument `key` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:133:9-24: Unexpected keyword argument `translation_key` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:134:9-12: Unexpected keyword argument `key` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:145:9-12: Unexpected keyword argument `key` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:156:9-24: Unexpected keyword argument `translation_key` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:157:9-12: Unexpected keyword argument `key` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:158:9-24: Unexpected keyword argument `entity_category` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:159:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:172:9-24: Unexpected keyword argument `translation_key` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:173:9-12: Unexpected keyword argument `key` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:174:9-24: Unexpected keyword argument `entity_category` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:175:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WatergateSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watergate/sensor.py:199:5-23: Class member `SonicSensor.entity_description` overrides parent class `WatergateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/watergate/sensor.py:199:5-23: Class member `SonicSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/watergate/valve.py:33:5-29: Class member `SonicValve._attr_supported_features` overrides parent class `WatergateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/watergate/valve.py:36:5-23: Class member `SonicValve._attr_device_class` overrides parent class `WatergateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/watson_tts/tts.py:5:1-63: Could not find import of `ibm_cloud_sdk_core.authenticators` [missing-import] +ERROR homeassistant/components/watson_tts/tts.py:6:1-38: Could not find import of `ibm_watson` [missing-import] +ERROR homeassistant/components/watttime/config_flow.py:129:9-31: Class member `WattTimeConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/watttime/sensor.py:40:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watttime/sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watttime/sensor.py:46:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watttime/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/watttime/sensor.py:85:14-32: Class member `RealtimeEmissionsSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/waze_travel_time/config_flow.py:143:9-31: Class member `WazeConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/waze_travel_time/coordinator.py:71:26-38: Argument `str` is not assignable to parameter `vehicle_type` with type `Literal['MOTORCYCLE', 'TAXI'] | None` in function `pywaze.route_calculator.WazeRouteCalculator.calc_routes` [bad-argument-type] +ERROR homeassistant/components/waze_travel_time/coordinator.py:161:5-17: Class member `WazeTravelTimeCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/waze_travel_time/helpers.py:23:34-49: Argument `str | None` is not assignable to parameter `start` with type `str` in function `pywaze.route_calculator.WazeRouteCalculator.calc_routes` [bad-argument-type] +ERROR homeassistant/components/waze_travel_time/helpers.py:23:51-71: Argument `str | None` is not assignable to parameter `end` with type `str` in function `pywaze.route_calculator.WazeRouteCalculator.calc_routes` [bad-argument-type] +ERROR homeassistant/components/waze_travel_time/sensor.py:43:5-23: Class member `WazeTravelTimeSensor._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/weather/__init__.py:150:13-45: Expected default `TypeVar[_DailyForecastUpdateCoordinatorT]` of `_HourlyForecastUpdateCoordinatorT` to be assignable to the upper bound of `TimestampDataUpdateCoordinator[Any]` [invalid-type-var] +ERROR homeassistant/components/weather/__init__.py:155:13-45: Expected default `TypeVar[_DailyForecastUpdateCoordinatorT]` of `_TwiceDailyForecastUpdateCoordinatorT` to be assignable to the upper bound of `TimestampDataUpdateCoordinator[Any]` [invalid-type-var] +ERROR homeassistant/components/weather/__init__.py:286:5-23: Class member `WeatherEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/weather/__init__.py:293:5-16: Class member `WeatherEntity._attr_state` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/weather/significant_change.py:140:18-22: `unit` may be uninitialized [unbound-name] +ERROR homeassistant/components/weather/significant_change.py:162:18-22: `unit` may be uninitialized [unbound-name] +ERROR homeassistant/components/weatherflow/__init__.py:80:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/weatherflow/event.py:29:9-12: Unexpected keyword argument `key` in function `WeatherFlowEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/event.py:30:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/event.py:35:9-12: Unexpected keyword argument `key` in function `WeatherFlowEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/event.py:36:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/event.py:71:5-23: Class member `WeatherFlowEventEntity.entity_description` overrides parent class `EventEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/weatherflow/sensor.py:75:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:76:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:80:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:83:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:88:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:91:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:97:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:100:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:101:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:106:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:109:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:110:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:115:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:118:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:119:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:122:9-24: Unexpected keyword argument `entity_category` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:124:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:127:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:131:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:134:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:138:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:140:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:143:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:144:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:146:26-51: Argument `(raw_data: WeatherFlowDevice) -> WeatherFlowDevice` is not assignable to parameter `raw_data_conv_fn` with type `(WeatherFlowDevice) -> datetime | float | int | str | None` in function `WeatherFlowSensorEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/weatherflow/sensor.py:149:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:150:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:153:26-57: Argument `(raw_data: Enum) -> Unknown` is not assignable to parameter `raw_data_conv_fn` with type `(WeatherFlowDevice) -> datetime | float | int | str | None` in function `WeatherFlowSensorEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/weatherflow/sensor.py:156:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:161:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:164:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:168:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:171:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:175:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:178:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:181:9-24: Unexpected keyword argument `entity_category` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:183:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:185:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:188:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:189:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:195:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:198:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:202:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:205:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:206:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:208:9-24: Unexpected keyword argument `entity_category` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:209:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:211:26-51: Argument `(raw_data: WeatherFlowDevice) -> WeatherFlowDevice` is not assignable to parameter `raw_data_conv_fn` with type `(WeatherFlowDevice) -> datetime | float | int | str | None` in function `WeatherFlowSensorEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/weatherflow/sensor.py:214:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:215:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:218:26-51: Argument `(raw_data: WeatherFlowDevice) -> WeatherFlowDevice` is not assignable to parameter `raw_data_conv_fn` with type `(WeatherFlowDevice) -> datetime | float | int | str | None` in function `WeatherFlowSensorEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/weatherflow/sensor.py:221:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:222:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:228:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:232:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:233:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:238:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:241:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:242:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:247:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:250:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:256:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:259:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:260:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:265:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:268:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:269:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:274:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:277:9-12: Unexpected keyword argument `key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:278:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow/sensor.py:281:43-61: Object of class `WeatherFlowDevice` has no attribute `magnitude` [missing-attribute] +ERROR homeassistant/components/weatherflow/sensor.py:322:5-23: Class member `WeatherFlowSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/weatherflow/sensor.py:356:20-43: Object of class `WeatherFlowDevice` has no attribute `last_report` [missing-attribute] +ERROR homeassistant/components/weatherflow_cloud/__init__.py:109:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/weatherflow_cloud/coordinator.py:137:22-52: Argument `BoundMethod[Self@BaseWebsocketCoordinator, (self: Self@BaseWebsocketCoordinator, data: Unknown) -> Coroutine[Unknown, Unknown, None]]` is not assignable to parameter `callback` with type `(str) -> None` in function `weatherflow4py.ws.WeatherFlowWebsocketAPI.register_callback` [bad-argument-type] +ERROR homeassistant/components/weatherflow_cloud/coordinator.py:177:48-55: Cannot set item in `dict[int, EventDataRapidWind | None]` [unsupported-operation] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:82:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescriptionWebsocketWind.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:90:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescriptionWebsocketWind.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescriptionWebsocketWind.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:102:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescriptionWebsocketObservation.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:103:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescriptionWebsocketObservation.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:111:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescriptionWebsocketObservation.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:112:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescriptionWebsocketObservation.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:120:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescriptionWebsocketObservation.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:121:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescriptionWebsocketObservation.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:129:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescriptionWebsocketObservation.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:130:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescriptionWebsocketObservation.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:134:9-24: Unexpected keyword argument `entity_category` in function `WeatherFlowCloudSensorEntityDescriptionWebsocketObservation.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:135:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WeatherFlowCloudSensorEntityDescriptionWebsocketObservation.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:144:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:145:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:153:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:154:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:162:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:163:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:171:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:172:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:180:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:181:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:189:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:190:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:198:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:199:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:207:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:208:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:217:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:218:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:226:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:227:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:236:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:237:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:244:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:245:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:252:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:253:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:260:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:261:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:268:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:269:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:276:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:277:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:286:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:287:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:294:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:295:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:302:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:303:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:311:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:312:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:317:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:318:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:323:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:324:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:329:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:330:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:337:9-12: Unexpected keyword argument `key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:338:9-24: Unexpected keyword argument `translation_key` in function `WeatherFlowCloudSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:421:14-32: Class member `WeatherFlowSensorBase.entity_description` overrides parent class `WeatherFlowCloudEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:450:5-23: Class member `WeatherFlowWebsocketSensorObservation.entity_description` overrides parent class `WeatherFlowSensorBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:462:5-23: Class member `WeatherFlowWebsocketSensorWind.entity_description` overrides parent class `WeatherFlowSensorBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:478:5-23: Class member `WeatherFlowCloudSensorREST.entity_description` overrides parent class `WeatherFlowSensorBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/weatherflow_cloud/sensor.py:480:5-16: Class member `WeatherFlowCloudSensorREST.coordinator` overrides parent class `WeatherFlowSensorBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/weatherflow_cloud/weather.py:120:16-79: Returned type `list[dict[Unknown, Unknown]]` is not assignable to declared return type `list[TypedDict[Forecast]] | None` [bad-return] +ERROR homeassistant/components/weatherflow_cloud/weather.py:125:16-80: Returned type `list[dict[Unknown, Unknown]]` is not assignable to declared return type `list[TypedDict[Forecast]] | None` [bad-return] +ERROR homeassistant/components/weatherkit/__init__.py:64:12-20: `unloaded` may be uninitialized [unbound-name] +ERROR homeassistant/components/weatherkit/coordinator.py:29:5-17: Class member `WeatherKitDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/weatherkit/coordinator.py:73:17-41: Argument `list[DataSetType] | None` is not assignable to parameter `data_sets` with type `list[DataSetType]` in function `apple_weatherkit.client.WeatherKitApiClient.get_weather_data` [bad-argument-type] +ERROR homeassistant/components/weatherkit/sensor.py:22:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherkit/sensor.py:28:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherkit/sensor.py:31:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weatherkit/sensor.py:66:14-32: Class member `WeatherKitSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/weatherkit/sensor.py:66:14-32: Class member `WeatherKitSensor.entity_description` overrides parent class `WeatherKitEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/webdav/backup.py:120:15-36: Class member `WebDavBackupAgent.async_download_backup` overrides parent class `BackupAgent` in an inconsistent manner [bad-override] +ERROR homeassistant/components/webmin/coordinator.py:25:5-17: Class member `WebminUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/webmin/sensor.py:31:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:32:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:34:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:38:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:40:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:43:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:44:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:46:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:49:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:50:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:56:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:59:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:66:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:69:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:70:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:76:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:79:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:86:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:89:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:96:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:99:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:100:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:106:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:109:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:110:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:116:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:129:13-16: Unexpected keyword argument `key` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:130:13-28: Unexpected keyword argument `translation_key` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:136:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:140:13-16: Unexpected keyword argument `key` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:141:13-28: Unexpected keyword argument `translation_key` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:147:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:151:13-16: Unexpected keyword argument `key` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:152:13-28: Unexpected keyword argument `translation_key` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:158:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:162:13-16: Unexpected keyword argument `key` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:163:13-28: Unexpected keyword argument `translation_key` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:165:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:169:13-16: Unexpected keyword argument `key` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:170:13-28: Unexpected keyword argument `translation_key` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:172:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:176:13-16: Unexpected keyword argument `key` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:177:13-28: Unexpected keyword argument `translation_key` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:179:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:183:13-16: Unexpected keyword argument `key` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:184:13-28: Unexpected keyword argument `translation_key` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:187:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:191:13-16: Unexpected keyword argument `key` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:192:13-28: Unexpected keyword argument `translation_key` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:195:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `WebminFSSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/webmin/sensor.py:227:5-23: Class member `WebminSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/webmin/sensor.py:249:5-23: Class member `WebminFSSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/webmin/sensor.py:249:5-23: Class member `WebminFSSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/webostv/__init__.py:92:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/webostv/config_flow.py:67:9-31: Class member `FlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/webostv/media_player.py:156:5-23: Class member `LgWebOSMediaPlayerEntity._attr_device_class` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/webostv/media_player.py:219:14-25: Class member `LgWebOSMediaPlayerEntity._attr_state` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/webostv/media_player.py:245:39-62: Cannot index into `dict[str, Any]` [bad-index] +ERROR homeassistant/components/webostv/media_player.py:247:38-61: Cannot index into `dict[str, Any]` [bad-index] +ERROR homeassistant/components/webostv/media_player.py:342:40-52: `str` is not assignable to attribute `_current_source` with type `None` [bad-assignment] +ERROR homeassistant/components/websocket_api/__init__.py:67:5-13: `handlers` may be uninitialized [unbound-name] +ERROR homeassistant/components/websocket_api/commands.py:813:36-54: Argument `BoundMethod[TrackTemplateResultInfo, (self: TrackTemplateResultInfo) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/components/websocket_api/connection.py:31:33-58: Expected a type form, got instance of `Literal['ActiveConnection | None']` [not-a-type] +ERROR homeassistant/components/websocket_api/connection.py:282:27-39: Module `voluptuous.humanize` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/websocket_api/http.py:53:5-8: Class member `WebsocketAPIView.url` overrides parent class `HomeAssistantView` in an inconsistent manner [bad-override] +ERROR homeassistant/components/websocket_api/http.py:231:46-66: `queue_size_after_add` is uninitialized [unbound-name] +ERROR homeassistant/components/websocket_api/http.py:232:34-74: Argument `BoundMethod[Self@WebSocketHandler, (self: Self@WebSocketHandler) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon` [bad-argument-type] +ERROR homeassistant/components/websocket_api/http.py:236:12-32: `queue_size_after_add` is uninitialized [unbound-name] +ERROR homeassistant/components/websocket_api/http.py:266:34-74: Argument `BoundMethod[Self@WebSocketHandler, (self: Self@WebSocketHandler) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon` [bad-argument-type] +ERROR homeassistant/components/weheat/binary_sensor.py:33:9-24: Unexpected keyword argument `translation_key` in function `WeHeatBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/binary_sensor.py:34:9-12: Unexpected keyword argument `key` in function `WeHeatBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/binary_sensor.py:39:9-24: Unexpected keyword argument `translation_key` in function `WeHeatBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/binary_sensor.py:40:9-12: Unexpected keyword argument `key` in function `WeHeatBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/binary_sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `WeHeatBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/binary_sensor.py:46:9-12: Unexpected keyword argument `key` in function `WeHeatBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/binary_sensor.py:51:9-24: Unexpected keyword argument `translation_key` in function `WeHeatBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/binary_sensor.py:52:9-12: Unexpected keyword argument `key` in function `WeHeatBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/binary_sensor.py:56:9-24: Unexpected keyword argument `translation_key` in function `WeHeatBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/binary_sensor.py:57:9-12: Unexpected keyword argument `key` in function `WeHeatBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/binary_sensor.py:89:5-23: Class member `WeheatHeatPumpBinarySensor.entity_description` overrides parent class `WeheatEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/weheat/binary_sensor.py:89:5-23: Class member `WeheatHeatPumpBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/weheat/coordinator.py:78:5-17: Class member `WeheatDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/weheat/coordinator.py:121:5-17: Class member `WeheatEnergyUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/weheat/sensor.py:53:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:54:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:62:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:63:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:71:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:72:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:79:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:88:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:97:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:106:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:115:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:124:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:132:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:133:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:141:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:142:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:143:9-13: Unexpected keyword argument `name` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:153:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:154:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:161:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:167:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:168:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:179:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:180:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:188:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:189:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:197:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:198:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:209:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:210:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:217:9-24: Unexpected keyword argument `translation_key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:218:9-12: Unexpected keyword argument `key` in function `WeHeatSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/weheat/sensor.py:275:5-23: Class member `WeheatHeatPumpSensor.entity_description` overrides parent class `WeheatEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/weheat/sensor.py:275:5-23: Class member `WeheatHeatPumpSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wemo/__init__.py:89:39-53: Argument `BoundMethod[SubscriptionRegistry, (self: SubscriptionRegistry) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/wemo/__init__.py:92:27-38: Module `pywemo.ssdp` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/wemo/__init__.py:93:39-64: Argument `BoundMethod[DiscoveryResponder, (self: DiscoveryResponder) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/wemo/__init__.py:153:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/wemo/__init__.py:273:17-40: Argument `(*, debug: bool = False, **kwargs: Any) -> list[Device]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/wemo/binary_sensor.py:42:5-9: Class member `MakerBinarySensor.wemo` overrides parent class `WemoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wemo/binary_sensor.py:54:5-9: Class member `InsightBinarySensor.wemo` overrides parent class `WemoBinarySensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wemo/config_flow.py:21:51-74: Argument `(*, debug: bool = False, **kwargs: Any) -> list[Device]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/wemo/coordinator.py:91:5-17: Class member `DeviceCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wemo/coordinator.py:176:21-63: Argument `BoundMethod[LongPressMixin, (self: LongPressMixin) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/wemo/coordinator.py:180:21-63: Argument `BoundMethod[LongPressMixin, (self: LongPressMixin) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/wemo/entity.py:83:31-70: Argument `BoundMethod[DeviceCoordinator, (self: DeviceCoordinator) -> None]` is not assignable to parameter `target` with type `((**tuple[*@_]) -> Any) | Coroutine[Any, Any, Any]` in function `homeassistant.core.HomeAssistant.add_job` [bad-argument-type] +ERROR homeassistant/components/wemo/fan.py:77:5-29: Class member `WemoHumidifier._attr_supported_features` overrides parent class `WemoBinaryStateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wemo/fan.py:82:5-9: Class member `WemoHumidifier.wemo` overrides parent class `WemoBinaryStateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wemo/fan.py:113:43-54: Argument `tuple[Literal[FanMode.Minimum], Literal[FanMode.Maximum]]` is not assignable to parameter `low_high_range` with type `tuple[float, float]` in function `homeassistant.util.percentage.ranged_value_to_percentage` [bad-argument-type] +ERROR homeassistant/components/wemo/fan.py:113:56-74: Argument `FanMode` is not assignable to parameter `value` with type `float` in function `homeassistant.util.percentage.ranged_value_to_percentage` [bad-argument-type] +ERROR homeassistant/components/wemo/fan.py:118:36-47: Argument `tuple[Literal[FanMode.Minimum], Literal[FanMode.Maximum]]` is not assignable to parameter `low_high_range` with type `tuple[float, float]` in function `homeassistant.util.scaling.int_states_in_range` [bad-argument-type] +ERROR homeassistant/components/wemo/fan.py:152:54-65: Argument `tuple[Literal[FanMode.Minimum], Literal[FanMode.Maximum]]` is not assignable to parameter `low_high_range` with type `tuple[float, float]` in function `homeassistant.util.percentage.percentage_to_ranged_value` [bad-argument-type] +ERROR homeassistant/components/wemo/fan.py:172:36-51: `pywemo_humidity` may be uninitialized [unbound-name] +ERROR homeassistant/components/wemo/light.py:84:5-29: Class member `WemoLight._attr_supported_features` overrides parent class `WemoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wemo/light.py:196:32-48: Unpacked keyword argument `bool | int | Any` is not assignable to parameter `force_update` with type `bool` in function `pywemo.ouimeaux_device.bridge.Light.turn_on` [bad-argument-type] +ERROR homeassistant/components/wemo/light.py:211:5-9: Class member `WemoDimmer.wemo` overrides parent class `WemoBinaryStateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wemo/sensor.py:32:5-9: Class member `AttributeSensorDescription.name` overrides parent class `SensorEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wemo/sensor.py:43:9-12: Unexpected keyword argument `key` in function `AttributeSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wemo/sensor.py:52:9-12: Unexpected keyword argument `key` in function `AttributeSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wemo/sensor.py:80:5-23: Class member `AttributeSensor.entity_description` overrides parent class `WemoEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wemo/sensor.py:80:5-23: Class member `AttributeSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wemo/switch.py:54:5-9: Class member `WemoSwitch.wemo` overrides parent class `WemoBinaryStateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/whirlpool/binary_sensor.py:33:9-12: Unexpected keyword argument `key` in function `WhirlpoolBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/binary_sensor.py:35:36-59: Object of class `Appliance` has no attribute `get_door_open` [missing-attribute] +ERROR homeassistant/components/whirlpool/binary_sensor.py:71:14-32: Class member `WhirlpoolBinarySensor.entity_description` overrides parent class `WhirlpoolEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/whirlpool/binary_sensor.py:71:14-32: Class member `WhirlpoolBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/whirlpool/climate.py:67:5-15: Class member `AirConEntity._appliance` overrides parent class `WhirlpoolEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/whirlpool/climate.py:74:5-29: Class member `AirConEntity._attr_supported_features` overrides parent class `WhirlpoolEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/whirlpool/climate.py:88:16-50: Returned type `float | None` is not assignable to declared return type `float` [bad-return] +ERROR homeassistant/components/whirlpool/climate.py:93:16-42: Returned type `float | None` is not assignable to declared return type `float` [bad-return] +ERROR homeassistant/components/whirlpool/climate.py:98:44-72: Argument `Any | None` is not assignable to parameter `temp` with type `float` in function `whirlpool.aircon.Aircon.set_temp` [bad-argument-type] +ERROR homeassistant/components/whirlpool/climate.py:104:16-54: Returned type `int | None` is not assignable to declared return type `int` [bad-return] +ERROR homeassistant/components/whirlpool/climate.py:112:28-54: `Mode | None` is not assignable to `Mode` [bad-assignment] +ERROR homeassistant/components/whirlpool/climate.py:134:39-58: No matching overload found for function `dict.get` called with arguments: (FanSpeed | None, Literal['off']) [no-matching-overload] +ERROR homeassistant/components/whirlpool/entity.py:48:32-60: `bool | None` is not assignable to attribute `_attr_available` with type `bool` [bad-assignment] +ERROR homeassistant/components/whirlpool/entity.py:73:5-15: Class member `WhirlpoolOvenEntity._appliance` overrides parent class `WhirlpoolEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/whirlpool/sensor.py:136:36-51: No matching overload found for function `dict.get` called with arguments: (MachineState | None) [no-matching-overload] +ERROR homeassistant/components/whirlpool/sensor.py:148:35-50: No matching overload found for function `dict.get` called with arguments: (MachineState | None) [no-matching-overload] +ERROR homeassistant/components/whirlpool/sensor.py:175:9-12: Unexpected keyword argument `key` in function `WhirlpoolSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/sensor.py:176:9-24: Unexpected keyword argument `translation_key` in function `WhirlpoolSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/sensor.py:179:18-30: Argument `(washer: Washer) -> str | None` is not assignable to parameter `value_fn` with type `(Appliance) -> str | None` in function `WhirlpoolSensorEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/whirlpool/sensor.py:182:9-12: Unexpected keyword argument `key` in function `WhirlpoolSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/sensor.py:183:9-24: Unexpected keyword argument `translation_key` in function `WhirlpoolSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/sensor.py:184:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WhirlpoolSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/sensor.py:187:54-81: Object of class `Appliance` has no attribute `get_dispense_1_level` [missing-attribute] +ERROR homeassistant/components/whirlpool/sensor.py:193:9-12: Unexpected keyword argument `key` in function `WhirlpoolSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/sensor.py:194:9-24: Unexpected keyword argument `translation_key` in function `WhirlpoolSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/sensor.py:197:18-29: Argument `(dryer: Dryer) -> str | None` is not assignable to parameter `value_fn` with type `(Appliance) -> str | None` in function `WhirlpoolSensorEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/whirlpool/sensor.py:203:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/sensor.py:204:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/sensor.py:206:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/sensor.py:220:9-12: Unexpected keyword argument `key` in function `WhirlpoolOvenCavitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/sensor.py:221:9-24: Unexpected keyword argument `translation_key` in function `WhirlpoolOvenCavitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/sensor.py:231:9-12: Unexpected keyword argument `key` in function `WhirlpoolOvenCavitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/sensor.py:232:9-24: Unexpected keyword argument `translation_key` in function `WhirlpoolOvenCavitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/sensor.py:242:9-12: Unexpected keyword argument `key` in function `WhirlpoolOvenCavitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/sensor.py:243:9-24: Unexpected keyword argument `translation_key` in function `WhirlpoolOvenCavitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/sensor.py:252:9-12: Unexpected keyword argument `key` in function `WhirlpoolOvenCavitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/sensor.py:253:9-24: Unexpected keyword argument `translation_key` in function `WhirlpoolOvenCavitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whirlpool/sensor.py:330:14-32: Class member `WhirlpoolSensor.entity_description` overrides parent class `WhirlpoolEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/whirlpool/sensor.py:330:14-32: Class member `WhirlpoolSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/whirlpool/sensor.py:342:5-15: Class member `WasherDryerTimeSensorBase._appliance` overrides parent class `WhirlpoolEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/whirlpool/sensor.py:349:14-32: Class member `WasherDryerTimeSensorBase.entity_description` overrides parent class `WhirlpoolEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/whirlpool/sensor.py:386:25-61: Argument `int | None` is not assignable to parameter `seconds` with type `float` in function `datetime.timedelta.__new__` [bad-argument-type] +ERROR homeassistant/components/whirlpool/sensor.py:399:5-15: Class member `WasherTimeSensor._appliance` overrides parent class `WasherDryerTimeSensorBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/whirlpool/sensor.py:418:5-15: Class member `DryerTimeSensor._appliance` overrides parent class `WasherDryerTimeSensorBase` in an inconsistent manner [bad-override] +ERROR homeassistant/components/whirlpool/sensor.py:445:14-32: Class member `WhirlpoolOvenCavitySensor.entity_description` overrides parent class `WhirlpoolOvenEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/whirlpool/sensor.py:445:14-32: Class member `WhirlpoolOvenCavitySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/whois/__init__.py:27:53-29:14: Unpacked argument `tuple[Any]` is not assignable to parameter `*args` with type `tuple[str, bool, str | None, int, int, bool, str | None, bool, bool | Unknown, bool, bool, bool]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/whois/config_flow.py:44:55-76: Unpacked argument `tuple[Unknown]` is not assignable to parameter `*args` with type `tuple[str, bool, str | None, int, int, bool, str | None, bool, bool | Unknown, bool, bool, bool]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/whois/sensor.py:88:9-12: Unexpected keyword argument `key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:89:9-24: Unexpected keyword argument `translation_key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:90:9-24: Unexpected keyword argument `entity_category` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:91:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:95:9-12: Unexpected keyword argument `key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:98:9-24: Unexpected keyword argument `entity_category` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:102:9-12: Unexpected keyword argument `key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:103:9-24: Unexpected keyword argument `translation_key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:108:9-12: Unexpected keyword argument `key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:109:9-24: Unexpected keyword argument `translation_key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:111:9-24: Unexpected keyword argument `entity_category` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:115:9-12: Unexpected keyword argument `key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:118:9-24: Unexpected keyword argument `entity_category` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:122:9-12: Unexpected keyword argument `key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:124:9-24: Unexpected keyword argument `entity_category` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:125:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:129:9-12: Unexpected keyword argument `key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:130:9-24: Unexpected keyword argument `translation_key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:131:9-24: Unexpected keyword argument `entity_category` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:132:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:136:9-12: Unexpected keyword argument `key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:137:9-24: Unexpected keyword argument `translation_key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:138:9-24: Unexpected keyword argument `entity_category` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:139:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:143:9-12: Unexpected keyword argument `key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:144:9-24: Unexpected keyword argument `translation_key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:145:9-24: Unexpected keyword argument `entity_category` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:146:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:150:9-12: Unexpected keyword argument `key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:151:9-24: Unexpected keyword argument `translation_key` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:152:9-24: Unexpected keyword argument `entity_category` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:155:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WhoisSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/whois/sensor.py:187:5-23: Class member `WhoisSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/whois/sensor.py:187:5-23: Class member `WhoisSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/whois/sensor.py:241:16-21: Returned type `dict[str, Never]` is not assignable to declared return type `dict[str, float | int | None] | None` [bad-return] +ERROR homeassistant/components/wiffi/__init__.py:79:24-74: `WiffiTcpServer` is not assignable to attribute `_server` with type `None` [bad-assignment] +ERROR homeassistant/components/wiffi/__init__.py:80:35-82:10: `() -> None` is not assignable to attribute `_periodic_callback` with type `None` [bad-assignment] +ERROR homeassistant/components/wiffi/config_flow.py:33:9-31: Class member `WiffiFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wiffi/entity.py:64:33-76: `datetime` is not assignable to attribute `_expiration_date` with type `None` [bad-assignment] +ERROR homeassistant/components/wiffi/entity.py:82:27-31: `None` is not assignable to attribute `_value` with type `Never` [bad-assignment] +ERROR homeassistant/components/wiffi/entity.py:88:17-41: Object of class `NoneType` has no attribute `endswith` [missing-attribute] +ERROR homeassistant/components/wiffi/entity.py:93:16-40: Object of class `NoneType` has no attribute `endswith` [missing-attribute] +ERROR homeassistant/components/wiffi/entity.py:93:54-78: Object of class `NoneType` has no attribute `endswith` [missing-attribute] +ERROR homeassistant/components/wiffi/sensor.py:60:29-79: Argument `StringEntity` is not assignable to parameter `object` with type `NumberEntity` in function `list.append` [bad-argument-type] +ERROR homeassistant/components/wiffi/sensor.py:73:14-32: Class member `NumberEntity._attr_device_class` overrides parent class `WiffiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wilight/fan.py:63:5-29: Class member `WiLightFan._attr_supported_features` overrides parent class `WiLightDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wilight/parent_device.py:106:16-20: Returned type `None` is not assignable to declared return type `PyWiLightDevice` [bad-return] +ERROR homeassistant/components/wirelesstag/__init__.py:7:1-39: Could not find import of `wirelesstagpy` [missing-import] +ERROR homeassistant/components/wirelesstag/__init__.py:8:1-59: Could not find import of `wirelesstagpy.exceptions` [missing-import] +ERROR homeassistant/components/wirelesstag/sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wirelesstag/sensor.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wirelesstag/sensor.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wirelesstag/sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wirelesstag/sensor.py:57:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wirelesstag/sensor.py:98:5-23: Class member `WirelessTagSensor.entity_description` overrides parent class `WirelessTagBaseSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wirelesstag/switch.py:26:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wirelesstag/switch.py:27:9-13: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wirelesstag/switch.py:30:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wirelesstag/switch.py:31:9-13: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wirelesstag/switch.py:34:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wirelesstag/switch.py:35:9-13: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wirelesstag/switch.py:38:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wirelesstag/switch.py:39:9-13: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wirelesstag/switch.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wirelesstag/switch.py:43:9-13: Unexpected keyword argument `name` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wirelesstag/switch.py:88:14-32: Class member `WirelessTagSwitch.entity_description` overrides parent class `WirelessTagBaseSensor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wirelesstag/switch.py:103:16-27: Returned type `None` is not assignable to declared return type `bool` [bad-return] +ERROR homeassistant/components/wirelesstag/util.py:5:1-46: Could not find import of `wirelesstagpy.sensortag` [missing-import] +ERROR homeassistant/components/withings/binary_sensor.py:52:5-23: Class member `WithingsBinarySensor._attr_device_class` overrides parent class `WithingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/withings/coordinator.py:41:5-17: Class member `WithingsDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/withings/coordinator.py:69:18-33: Class member `WithingsDataUpdateCoordinator.update_interval` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/withings/coordinator.py:69:36-40: `None` is not assignable to attribute `update_interval` with type `(self: Self@WithingsDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/withings/coordinator.py:71:36-65: `timedelta | None` is not assignable to attribute `update_interval` with type `(self: Self@WithingsDataUpdateCoordinator, value: timedelta | None) -> None` [bad-assignment] +ERROR homeassistant/components/withings/sensor.py:77:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:85:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:87:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:94:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:96:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:103:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:105:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:112:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:114:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:121:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:128:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:131:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:138:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:140:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:146:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:148:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:154:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:156:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:162:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:164:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:170:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:172:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:178:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:180:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:185:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:187:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:192:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:194:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:198:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:201:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:203:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:209:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:211:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:214:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:217:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:219:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:223:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:226:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:228:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:232:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:235:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:237:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:238:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:241:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:243:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:244:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:247:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:249:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:251:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:254:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:256:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:258:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:261:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:263:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:265:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:287:9-12: Unexpected keyword argument `key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:290:9-24: Unexpected keyword argument `translation_key` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:295:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsMeasurementSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:320:9-12: Unexpected keyword argument `key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:322:9-24: Unexpected keyword argument `translation_key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:324:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:327:9-12: Unexpected keyword argument `key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:329:9-24: Unexpected keyword argument `translation_key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:336:9-12: Unexpected keyword argument `key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:338:9-24: Unexpected keyword argument `translation_key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:343:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:346:9-12: Unexpected keyword argument `key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:348:9-24: Unexpected keyword argument `translation_key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:353:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:356:9-12: Unexpected keyword argument `key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:358:9-24: Unexpected keyword argument `translation_key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:361:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:364:9-12: Unexpected keyword argument `key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:366:9-24: Unexpected keyword argument `translation_key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:369:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:372:9-12: Unexpected keyword argument `key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:374:9-24: Unexpected keyword argument `translation_key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:377:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:380:9-12: Unexpected keyword argument `key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:382:9-24: Unexpected keyword argument `translation_key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:387:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:390:9-12: Unexpected keyword argument `key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:392:9-24: Unexpected keyword argument `translation_key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:397:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:400:9-12: Unexpected keyword argument `key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:402:9-24: Unexpected keyword argument `translation_key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:405:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:408:9-12: Unexpected keyword argument `key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:410:9-24: Unexpected keyword argument `translation_key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:413:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:416:9-12: Unexpected keyword argument `key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:418:9-24: Unexpected keyword argument `translation_key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:421:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:424:9-12: Unexpected keyword argument `key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:426:9-24: Unexpected keyword argument `translation_key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:429:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:432:9-12: Unexpected keyword argument `key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:434:9-24: Unexpected keyword argument `translation_key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:439:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:442:9-12: Unexpected keyword argument `key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:444:9-24: Unexpected keyword argument `translation_key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:446:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:449:9-12: Unexpected keyword argument `key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:451:9-24: Unexpected keyword argument `translation_key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:454:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:457:9-12: Unexpected keyword argument `key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:459:9-24: Unexpected keyword argument `translation_key` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:464:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsSleepSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:478:9-12: Unexpected keyword argument `key` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:480:9-24: Unexpected keyword argument `translation_key` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:485:9-12: Unexpected keyword argument `key` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:487:9-24: Unexpected keyword argument `translation_key` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:494:9-12: Unexpected keyword argument `key` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:496:9-24: Unexpected keyword argument `translation_key` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:502:9-12: Unexpected keyword argument `key` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:504:9-24: Unexpected keyword argument `translation_key` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:509:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:512:9-12: Unexpected keyword argument `key` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:514:9-24: Unexpected keyword argument `translation_key` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:519:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:522:9-12: Unexpected keyword argument `key` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:524:9-24: Unexpected keyword argument `translation_key` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:529:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:532:9-12: Unexpected keyword argument `key` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:534:9-24: Unexpected keyword argument `translation_key` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:541:9-12: Unexpected keyword argument `key` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:544:9-24: Unexpected keyword argument `translation_key` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:549:9-12: Unexpected keyword argument `key` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:552:9-24: Unexpected keyword argument `translation_key` in function `WithingsActivitySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:573:9-12: Unexpected keyword argument `key` in function `WithingsGoalsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:575:9-24: Unexpected keyword argument `translation_key` in function `WithingsGoalsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:580:9-12: Unexpected keyword argument `key` in function `WithingsGoalsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:582:9-24: Unexpected keyword argument `translation_key` in function `WithingsGoalsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:589:9-12: Unexpected keyword argument `key` in function `WithingsGoalsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:591:9-24: Unexpected keyword argument `translation_key` in function `WithingsGoalsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:613:9-12: Unexpected keyword argument `key` in function `WithingsWorkoutSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:616:9-24: Unexpected keyword argument `translation_key` in function `WithingsWorkoutSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:620:9-12: Unexpected keyword argument `key` in function `WithingsWorkoutSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:622:9-24: Unexpected keyword argument `translation_key` in function `WithingsWorkoutSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:627:9-12: Unexpected keyword argument `key` in function `WithingsWorkoutSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:629:9-24: Unexpected keyword argument `translation_key` in function `WithingsWorkoutSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:635:9-12: Unexpected keyword argument `key` in function `WithingsWorkoutSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:637:9-24: Unexpected keyword argument `translation_key` in function `WithingsWorkoutSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:642:9-12: Unexpected keyword argument `key` in function `WithingsWorkoutSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:644:9-24: Unexpected keyword argument `translation_key` in function `WithingsWorkoutSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:647:9-12: Unexpected keyword argument `key` in function `WithingsWorkoutSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:649:9-24: Unexpected keyword argument `translation_key` in function `WithingsWorkoutSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:655:9-12: Unexpected keyword argument `key` in function `WithingsWorkoutSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:659:9-24: Unexpected keyword argument `translation_key` in function `WithingsWorkoutSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:676:9-12: Unexpected keyword argument `key` in function `WithingsDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:677:9-24: Unexpected keyword argument `translation_key` in function `WithingsDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/withings/sensor.py:892:5-23: Class member `WithingsSensor.entity_description` overrides parent class `WithingsEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/withings/sensor.py:892:5-23: Class member `WithingsSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/withings/sensor.py:1006:5-23: Class member `WithingsDeviceSensor.entity_description` overrides parent class `WithingsDeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/withings/sensor.py:1006:5-23: Class member `WithingsDeviceSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wiz/__init__.py:153:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/wiz/binary_sensor.py:68:5-23: Class member `WizOccupancyEntity._attr_device_class` overrides parent class `WizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wiz/binary_sensor.py:79:12-41: Object of class `NoneType` has no attribute `get_source` [missing-attribute] +ERROR homeassistant/components/wiz/config_flow.py:180:66-69: Argument `str | None` is not assignable to parameter `mac` with type `str` in function `homeassistant.components.wiz.utils.name_from_bulb_type_and_mac` [bad-argument-type] +ERROR homeassistant/components/wiz/entity.py:31:31-52: `BulbType | None` is not assignable to `BulbType` [bad-assignment] +ERROR homeassistant/components/wiz/entity.py:34:25-69: Argument `set[tuple[str, str | None]]` is not assignable to parameter `connections` with type `set[tuple[str, str]]` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/wiz/fan.py:37:8-49: Object of class `NoneType` has no attribute `features` [missing-attribute] +ERROR homeassistant/components/wiz/fan.py:53:31-52: `BulbType | None` is not assignable to `BulbType` [bad-assignment] +ERROR homeassistant/components/wiz/fan.py:67:14-38: Class member `WizFanEntity._attr_supported_features` overrides parent class `WizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wiz/fan.py:68:34-59: `int | None` is not assignable to attribute `_attr_speed_count` with type `int` [bad-assignment] +ERROR homeassistant/components/wiz/fan.py:77:28-47: Object of class `NoneType` has no attribute `get_fan_state` [missing-attribute] +ERROR homeassistant/components/wiz/fan.py:79:36-55: Object of class `NoneType` has no attribute `get_fan_speed` [missing-attribute] +ERROR homeassistant/components/wiz/fan.py:82:24-42: Object of class `NoneType` has no attribute `get_fan_mode` [missing-attribute] +ERROR homeassistant/components/wiz/fan.py:85:27-48: Object of class `NoneType` has no attribute `get_fan_reverse` [missing-attribute] +ERROR homeassistant/components/wiz/light.py:63:8-50: Object of class `NoneType` has no attribute `bulb_type` [missing-attribute] +ERROR homeassistant/components/wiz/light.py:76:31-52: `BulbType | None` is not assignable to `BulbType` [bad-assignment] +ERROR homeassistant/components/wiz/light.py:80:59-83: Cannot index into `dict[int, ColorMode]` [bad-index] +ERROR homeassistant/components/wiz/light.py:92:48-58: Object of class `NoneType` has no attribute `max` [missing-attribute] +ERROR homeassistant/components/wiz/light.py:93:48-58: Object of class `NoneType` has no attribute `min` [missing-attribute] +ERROR homeassistant/components/wiz/light.py:95:18-42: Class member `WizBulbEntity._attr_supported_features` overrides parent class `WizToggleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wiz/light.py:104:27-47: Object of class `NoneType` has no attribute `get_brightness` [missing-attribute] +ERROR homeassistant/components/wiz/light.py:107:27-46: Object of class `NoneType` has no attribute `get_colortemp` [missing-attribute] +ERROR homeassistant/components/wiz/light.py:112:58-73: Object of class `NoneType` has no attribute `get_rgbww` [missing-attribute] +ERROR homeassistant/components/wiz/light.py:116:57-71: Object of class `NoneType` has no attribute `get_rgbw` [missing-attribute] +ERROR homeassistant/components/wiz/light.py:119:29-44: Object of class `NoneType` has no attribute `get_scene` [missing-attribute] +ERROR homeassistant/components/wiz/number.py:44:9-12: Unexpected keyword argument `key` in function `WizNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wiz/number.py:45:9-24: Unexpected keyword argument `translation_key` in function `WizNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wiz/number.py:49:50-72: Object of class `NoneType` has no attribute `get_speed` [missing-attribute] +ERROR homeassistant/components/wiz/number.py:52:9-24: Unexpected keyword argument `entity_category` in function `WizNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wiz/number.py:55:9-12: Unexpected keyword argument `key` in function `WizNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wiz/number.py:56:9-24: Unexpected keyword argument `translation_key` in function `WizNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wiz/number.py:60:50-72: Object of class `NoneType` has no attribute `get_ratio` [missing-attribute] +ERROR homeassistant/components/wiz/number.py:63:9-24: Unexpected keyword argument `entity_category` in function `WizNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wiz/number.py:78:13-54: Object of class `NoneType` has no attribute `features` [missing-attribute] +ERROR homeassistant/components/wiz/number.py:86:5-23: Class member `WizSpeedNumber.entity_description` overrides parent class `WizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wiz/number.py:86:5-23: Class member `WizSpeedNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wiz/sensor.py:25:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wiz/sensor.py:26:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wiz/sensor.py:29:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wiz/sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wiz/sensor.py:68:5-23: Class member `WizSensor.entity_description` overrides parent class `WizEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wiz/sensor.py:82:35-65: Object of class `NoneType` has no attribute `pilotResult` [missing-attribute] +ERROR homeassistant/components/wiz/sensor.py:94:22-50: Object of class `NoneType` has no attribute `get_power` [missing-attribute] +ERROR homeassistant/components/wiz/switch.py:25:8-50: Object of class `NoneType` has no attribute `bulb_type` [missing-attribute] +ERROR homeassistant/components/wled/__init__.py:65:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/wled/button.py:29:5-23: Class member `WLEDRestartButton._attr_device_class` overrides parent class `WLEDEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wled/config_flow.py:34:9-31: Class member `WLEDFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wled/coordinator.py:36:5-17: Class member `WLEDDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wled/light.py:64:5-29: Class member `WLEDMainLight._attr_supported_features` overrides parent class `WLEDEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wled/light.py:113:5-29: Class member `WLEDSegmentLight._attr_supported_features` overrides parent class `WLEDEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wled/number.py:51:9-12: Unexpected keyword argument `key` in function `WLEDNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/number.py:52:9-24: Unexpected keyword argument `translation_key` in function `WLEDNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/number.py:53:9-24: Unexpected keyword argument `entity_category` in function `WLEDNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/number.py:60:9-12: Unexpected keyword argument `key` in function `WLEDNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/number.py:61:9-24: Unexpected keyword argument `translation_key` in function `WLEDNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/number.py:62:9-24: Unexpected keyword argument `entity_category` in function `WLEDNumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/number.py:74:5-23: Class member `WLEDNumber.entity_description` overrides parent class `WLEDEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wled/number.py:74:5-23: Class member `WLEDNumber.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wled/sensor.py:46:9-12: Unexpected keyword argument `key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:47:9-24: Unexpected keyword argument `translation_key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:51:9-24: Unexpected keyword argument `entity_category` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:56:9-12: Unexpected keyword argument `key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:58:9-24: Unexpected keyword argument `entity_category` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:62:9-12: Unexpected keyword argument `key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:63:9-24: Unexpected keyword argument `translation_key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:65:9-24: Unexpected keyword argument `entity_category` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:71:9-12: Unexpected keyword argument `key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:72:9-24: Unexpected keyword argument `translation_key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:74:9-24: Unexpected keyword argument `entity_category` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:75:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:79:9-12: Unexpected keyword argument `key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:84:9-24: Unexpected keyword argument `entity_category` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:85:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:89:9-12: Unexpected keyword argument `key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:90:9-24: Unexpected keyword argument `translation_key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:93:9-24: Unexpected keyword argument `entity_category` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:94:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:98:9-12: Unexpected keyword argument `key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:103:9-24: Unexpected keyword argument `entity_category` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:104:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:108:9-12: Unexpected keyword argument `key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:109:9-24: Unexpected keyword argument `translation_key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:110:9-24: Unexpected keyword argument `entity_category` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:111:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:115:9-12: Unexpected keyword argument `key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:117:9-24: Unexpected keyword argument `entity_category` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:118:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:122:9-12: Unexpected keyword argument `key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:124:9-24: Unexpected keyword argument `entity_category` in function `WLEDSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wled/sensor.py:147:5-23: Class member `WLEDSensorEntity.entity_description` overrides parent class `WLEDEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wled/sensor.py:147:5-23: Class member `WLEDSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wled/update.py:39:5-23: Class member `WLEDUpdateEntity._attr_device_class` overrides parent class `WLEDEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wled/update.py:40:5-29: Class member `WLEDUpdateEntity._attr_supported_features` overrides parent class `WLEDEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wmspro/button.py:35:5-23: Class member `WebControlProIdentifyButton._attr_device_class` overrides parent class `WebControlProGenericEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wolflink/sensor.py:68:9-12: Unexpected keyword argument `key` in function `WolflinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wolflink/sensor.py:74:9-12: Unexpected keyword argument `key` in function `WolflinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wolflink/sensor.py:80:9-12: Unexpected keyword argument `key` in function `WolflinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wolflink/sensor.py:86:9-12: Unexpected keyword argument `key` in function `WolflinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wolflink/sensor.py:92:9-12: Unexpected keyword argument `key` in function `WolflinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wolflink/sensor.py:97:9-12: Unexpected keyword argument `key` in function `WolflinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wolflink/sensor.py:98:9-24: Unexpected keyword argument `translation_key` in function `WolflinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wolflink/sensor.py:103:9-12: Unexpected keyword argument `key` in function `WolflinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wolflink/sensor.py:104:9-13: Unexpected keyword argument `icon` in function `WolflinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wolflink/sensor.py:109:9-12: Unexpected keyword argument `key` in function `WolflinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wolflink/sensor.py:115:9-12: Unexpected keyword argument `key` in function `WolflinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wolflink/sensor.py:121:9-12: Unexpected keyword argument `key` in function `WolflinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wolflink/sensor.py:127:9-12: Unexpected keyword argument `key` in function `WolflinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wolflink/sensor.py:156:5-23: Class member `WolfLinkSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wolflink/sensor.py:156:5-23: Class member `WolfLinkSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/workday/config_flow.py:223:9-31: Class member `WorkdayConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/workday/util.py:38:53-80: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[str, str | None, Iterable[int] | int | None, bool, bool, str | None, str | None, str | None, Iterable[str] | str | None]` in function `homeassistant.core.HomeAssistant.async_add_import_executor_job` [bad-argument-type] +ERROR homeassistant/components/worldclock/config_flow.py:53:13-41: Argument `() -> set[str]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/worldtidesinfo/sensor.py:58:8-22: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/worldtidesinfo/sensor.py:88:26-47: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/worldtidesinfo/sensor.py:89:42-63: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/worldtidesinfo/sensor.py:90:40-61: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/worldtidesinfo/sensor.py:91:41-62: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/worldtidesinfo/sensor.py:92:39-60: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/worldtidesinfo/sensor.py:93:27-48: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/worldtidesinfo/sensor.py:94:42-63: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/worldtidesinfo/sensor.py:95:40-61: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/worldtidesinfo/sensor.py:96:41-62: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/worldtidesinfo/sensor.py:97:39-60: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/worxlandroid/sensor.py:113:31-36: `Literal['yes']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/worxlandroid/sensor.py:115:31-49: `Literal['connection-error']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/worxlandroid/sensor.py:121:26-40: `mower_response` may be uninitialized [unbound-name] +ERROR homeassistant/components/worxlandroid/sensor.py:129:31-78: `Literal['no', 'yes']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/worxlandroid/sensor.py:136:27-31: `Literal['no']` is not assignable to attribute `_state` with type `None` [bad-assignment] +ERROR homeassistant/components/ws66i/config_flow.py:129:9-31: Class member `WS66iConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ws66i/coordinator.py:21:5-17: Class member `Ws66iDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ws66i/coordinator.py:56:55-77: Argument `BoundMethod[Self@Ws66iDataUpdateCoordinator, (self: Self@Ws66iDataUpdateCoordinator) -> list[ZoneStatus]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/ws66i/media_player.py:50:5-29: Class member `Ws66iZone._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ws66i/media_player.py:102:14-25: Class member `Ws66iZone._attr_state` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ws66i/media_player.py:105:14-26: Class member `Ws66iZone._attr_source` overrides parent class `MediaPlayerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/ws66i/media_player.py:105:34-51: Class member `Ws66iZone._attr_media_title` overrides parent class `MediaPlayerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wyoming/assist_satellite.py:90:5-23: Class member `WyomingAssistSatellite.entity_description` overrides parent class `WyomingSatelliteEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wyoming/assist_satellite.py:90:59-62: Unexpected keyword argument `key` in function `homeassistant.components.assist_satellite.entity.AssistSatelliteEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wyoming/assist_satellite.py:806:34-89: No matching overload found for function `max` called with arguments: (Literal[0], float) [no-matching-overload] +ERROR homeassistant/components/wyoming/binary_sensor.py:39:5-23: Class member `WyomingSatelliteAssistInProgress.entity_description` overrides parent class `WyomingSatelliteEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wyoming/binary_sensor.py:40:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wyoming/binary_sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wyoming/binary_sensor.py:42:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wyoming/number.py:46:5-23: Class member `WyomingSatelliteAutoGainNumber.entity_description` overrides parent class `WyomingSatelliteEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wyoming/number.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wyoming/number.py:48:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wyoming/number.py:49:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wyoming/number.py:66:35-58: No matching overload found for function `min` called with arguments: (Literal[31], float) [no-matching-overload] +ERROR homeassistant/components/wyoming/number.py:75:5-23: Class member `WyomingSatelliteVolumeMultiplierNumber.entity_description` overrides parent class `WyomingSatelliteEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wyoming/number.py:76:9-12: Unexpected keyword argument `key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wyoming/number.py:77:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wyoming/number.py:78:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.number.NumberEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wyoming/select.py:77:5-23: Class member `WyomingSatelliteNoiseSuppressionLevelSelect.entity_description` overrides parent class `WyomingSatelliteEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wyoming/select.py:77:5-23: Class member `WyomingSatelliteNoiseSuppressionLevelSelect.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wyoming/select.py:78:9-12: Unexpected keyword argument `key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wyoming/select.py:79:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wyoming/select.py:80:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.select.SelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wyoming/switch.py:40:5-23: Class member `WyomingSatelliteMuteSwitch.entity_description` overrides parent class `WyomingSatelliteEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wyoming/switch.py:40:5-23: Class member `WyomingSatelliteMuteSwitch.entity_description` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/wyoming/switch.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wyoming/switch.py:42:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/wyoming/switch.py:43:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/binary_sensor.py:77:9-12: Unexpected keyword argument `key` in function `XboxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/binary_sensor.py:78:9-24: Unexpected keyword argument `translation_key` in function `XboxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/binary_sensor.py:80:9-13: Unexpected keyword argument `name` in function `XboxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/binary_sensor.py:85:9-12: Unexpected keyword argument `key` in function `XboxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/binary_sensor.py:90:9-12: Unexpected keyword argument `key` in function `XboxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/binary_sensor.py:91:9-24: Unexpected keyword argument `translation_key` in function `XboxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/binary_sensor.py:95:9-12: Unexpected keyword argument `key` in function `XboxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/binary_sensor.py:100:9-12: Unexpected keyword argument `key` in function `XboxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/binary_sensor.py:101:9-24: Unexpected keyword argument `translation_key` in function `XboxBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/binary_sensor.py:142:5-23: Class member `XboxBinarySensorEntity.entity_description` overrides parent class `XboxBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xbox/binary_sensor.py:142:5-23: Class member `XboxBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xbox/browse_media.py:33:9-27: Multiple values for argument `cls` in function `MediaTypeDetails.__new__` [bad-keyword-argument] +ERROR homeassistant/components/xbox/browse_media.py:33:13-27: Argument `Literal[MediaClass.APP]` is not assignable to parameter `cls` with type `type[MediaTypeDetails]` in function `MediaTypeDetails.__new__` [bad-argument-type] +ERROR homeassistant/components/xbox/browse_media.py:37:9-28: Multiple values for argument `cls` in function `MediaTypeDetails.__new__` [bad-keyword-argument] +ERROR homeassistant/components/xbox/browse_media.py:37:13-28: Argument `Literal[MediaClass.GAME]` is not assignable to parameter `cls` with type `type[MediaTypeDetails]` in function `MediaTypeDetails.__new__` [bad-argument-type] +ERROR homeassistant/components/xbox/coordinator.py:69:5-17: Class member `XboxUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xbox/coordinator.py:260:32-43: `new_friends` may be uninitialized [unbound-name] +ERROR homeassistant/components/xbox/coordinator.py:312:5-17: Class member `XboxConsolesCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xbox/entity.py:48:5-23: Class member `XboxBaseEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xbox/image.py:40:9-12: Unexpected keyword argument `key` in function `XboxImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/image.py:41:9-24: Unexpected keyword argument `translation_key` in function `XboxImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/image.py:45:9-12: Unexpected keyword argument `key` in function `XboxImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/image.py:46:9-24: Unexpected keyword argument `translation_key` in function `XboxImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/image.py:50:9-12: Unexpected keyword argument `key` in function `XboxImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/image.py:51:9-24: Unexpected keyword argument `translation_key` in function `XboxImageEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/image.py:95:5-23: Class member `XboxImageEntity.entity_description` overrides parent class `XboxBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xbox/image.py:95:5-23: Class member `XboxImageEntity.entity_description` overrides parent class `ImageEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xbox/media_source.py:89:5-9: Class member `XboxSource.name` overrides parent class `MediaSource` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xbox/sensor.py:152:9-12: Unexpected keyword argument `key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:153:9-24: Unexpected keyword argument `translation_key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:157:9-12: Unexpected keyword argument `key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:158:9-24: Unexpected keyword argument `translation_key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:162:9-12: Unexpected keyword argument `key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:167:9-12: Unexpected keyword argument `key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:172:9-12: Unexpected keyword argument `key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:173:9-24: Unexpected keyword argument `translation_key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:182:9-12: Unexpected keyword argument `key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:183:9-24: Unexpected keyword argument `translation_key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:187:9-12: Unexpected keyword argument `key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:188:9-24: Unexpected keyword argument `translation_key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:192:9-12: Unexpected keyword argument `key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:193:9-24: Unexpected keyword argument `translation_key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:199:9-12: Unexpected keyword argument `key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:200:9-24: Unexpected keyword argument `translation_key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:204:9-12: Unexpected keyword argument `key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:205:9-24: Unexpected keyword argument `translation_key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:213:9-12: Unexpected keyword argument `key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:214:9-24: Unexpected keyword argument `translation_key` in function `XboxSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:223:9-12: Unexpected keyword argument `key` in function `XboxStorageDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:224:9-24: Unexpected keyword argument `translation_key` in function `XboxStorageDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:230:9-24: Unexpected keyword argument `entity_category` in function `XboxStorageDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:234:9-12: Unexpected keyword argument `key` in function `XboxStorageDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:235:9-24: Unexpected keyword argument `translation_key` in function `XboxStorageDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:241:9-24: Unexpected keyword argument `entity_category` in function `XboxStorageDeviceSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xbox/sensor.py:294:5-23: Class member `XboxSensorEntity.entity_description` overrides parent class `XboxBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xbox/sensor.py:294:5-23: Class member `XboxSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xbox/sensor.py:308:5-23: Class member `XboxStorageDeviceSensorEntity.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xbox/sensor.py:308:5-23: Class member `XboxStorageDeviceSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xeoma/camera.py:7:1-44: Could not find import of `pyxeoma.xeoma` [missing-import] +ERROR homeassistant/components/xiaomi/camera.py:166:32-172:14: `bytes | None` is not assignable to attribute `_last_image` with type `None` [bad-assignment] +ERROR homeassistant/components/xiaomi/camera.py:181:34-48: Argument `None` is not assignable to parameter `input_source` with type `str` in function `haffmpeg.camera.CameraMjpeg.open_camera` [bad-argument-type] +ERROR homeassistant/components/xiaomi/camera.py:188:17-30: Argument `asyncio.streams.StreamReader` is not assignable to parameter `stream` with type `aiohttp.streams.StreamReader` in function `homeassistant.helpers.aiohttp_client.async_aiohttp_proxy_stream` [bad-argument-type] +ERROR homeassistant/components/xiaomi/device_tracker.py:69:33-52: `dict[Unknown, Unknown]` is not assignable to attribute `mac2name` with type `None` [bad-assignment] +ERROR homeassistant/components/xiaomi/device_tracker.py:73:16-33: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/xiaomi/device_tracker.py:105:29-31: `list[@_]` is not assignable to attribute `last_results` with type `dict[Unknown, Unknown]` [bad-assignment] +ERROR homeassistant/components/xiaomi/device_tracker.py:109:17-41: Object of class `dict` has no attribute `append` [missing-attribute] +ERROR homeassistant/components/xiaomi_aqara/binary_sensor.py:154:14-32: Class member `XiaomiBinarySensor._attr_device_class` overrides parent class `XiaomiDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_aqara/binary_sensor.py:187:21-53: No matching overload found for function `typing.MutableMapping.update` called with arguments: (Mapping[str, Any] | None) [no-matching-overload] +ERROR homeassistant/components/xiaomi_aqara/binary_sensor.py:198:29-51: `int` is not assignable to attribute `_density` with type `None` [bad-assignment] +ERROR homeassistant/components/xiaomi_aqara/binary_sensor.py:249:21-53: No matching overload found for function `typing.MutableMapping.update` called with arguments: (Mapping[str, Any] | None) [no-matching-overload] +ERROR homeassistant/components/xiaomi_aqara/binary_sensor.py:309:45-311:18: `() -> None` is not assignable to attribute `_unsub_set_no_motion` with type `None` [bad-assignment] +ERROR homeassistant/components/xiaomi_aqara/binary_sensor.py:355:21-53: No matching overload found for function `typing.MutableMapping.update` called with arguments: (Mapping[str, Any] | None) [no-matching-overload] +ERROR homeassistant/components/xiaomi_aqara/binary_sensor.py:468:21-53: No matching overload found for function `typing.MutableMapping.update` called with arguments: (Mapping[str, Any] | None) [no-matching-overload] +ERROR homeassistant/components/xiaomi_aqara/binary_sensor.py:517:21-53: No matching overload found for function `typing.MutableMapping.update` called with arguments: (Mapping[str, Any] | None) [no-matching-overload] +ERROR homeassistant/components/xiaomi_aqara/binary_sensor.py:539:29-34: `Literal['actively', 'free_fall', 'tilt', 'vibrate']` is not assignable to attribute `_last_action` with type `None` [bad-assignment] +ERROR homeassistant/components/xiaomi_aqara/binary_sensor.py:565:21-53: No matching overload found for function `typing.MutableMapping.update` called with arguments: (Mapping[str, Any] | None) [no-matching-overload] +ERROR homeassistant/components/xiaomi_aqara/binary_sensor.py:607:29-39: `Literal['both', 'double', 'double_both', 'hold', 'long', 'long_both', 'long_click_press', 'shake', 'single']` is not assignable to attribute `_last_action` with type `None` [bad-assignment] +ERROR homeassistant/components/xiaomi_aqara/binary_sensor.py:635:21-53: No matching overload found for function `typing.MutableMapping.update` called with arguments: (Mapping[str, Any] | None) [no-matching-overload] +ERROR homeassistant/components/xiaomi_aqara/binary_sensor.py:666:33-41: `Literal['rotate']` is not assignable to attribute `_last_action` with type `None` [bad-assignment] +ERROR homeassistant/components/xiaomi_aqara/binary_sensor.py:682:33-41: `Literal['rotate']` is not assignable to attribute `_last_action` with type `None` [bad-assignment] +ERROR homeassistant/components/xiaomi_aqara/config_flow.py:115:52-76: Argument `BoundMethod[XiaomiGatewayDiscovery, (self: XiaomiGatewayDiscovery) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/xiaomi_aqara/config_flow.py:120:25-40: `defaultdict[Unknown, list[Unknown]]` is not assignable to attribute `gateways` with type `dict[str, XiaomiGateway]` [bad-assignment] +ERROR homeassistant/components/xiaomi_aqara/entity.py:130:47-132:10: `() -> None` is not assignable to attribute `_remove_unavailability_tracker` with type `None` [bad-assignment] +ERROR homeassistant/components/xiaomi_aqara/light.py:89:20-52: `tuple[float, float]` is not assignable to attribute `_hs` with type `tuple[Literal[0], Literal[0]]` [bad-assignment] +ERROR homeassistant/components/xiaomi_aqara/sensor.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_aqara/sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_aqara/sensor.py:47:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_aqara/sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_aqara/sensor.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_aqara/sensor.py:64:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_aqara/sensor.py:70:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_aqara/sensor.py:76:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_aqara/sensor.py:79:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_aqara/sensor.py:82:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_aqara/sensor.py:180:14-32: Class member `XiaomiSensor.entity_description` overrides parent class `XiaomiDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_aqara/sensor.py:212:5-23: Class member `XiaomiBatterySensor._attr_device_class` overrides parent class `XiaomiDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_aqara/switch.py:178:21-53: No matching overload found for function `typing.MutableMapping.update` called with arguments: (Mapping[str, Any] | None) [no-matching-overload] +ERROR homeassistant/components/xiaomi_aqara/switch.py:178:21-53: No matching overload found for function `typing.MutableMapping.update` called with arguments: (Mapping[str, Any] | None) [no-matching-overload] +ERROR homeassistant/components/xiaomi_aqara/switch.py:196:28-45: `int` is not assignable to attribute `_in_use` with type `None` [bad-assignment] +ERROR homeassistant/components/xiaomi_aqara/switch.py:198:36-37: `Literal[0]` is not assignable to attribute `_load_power` with type `None` [bad-assignment] +ERROR homeassistant/components/xiaomi_aqara/switch.py:202:40-66: `float` is not assignable to attribute `_power_consumed` with type `None` [bad-assignment] +ERROR homeassistant/components/xiaomi_aqara/switch.py:206:32-65: `float` is not assignable to attribute `_load_power` with type `None` [bad-assignment] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:30:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:34:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:38:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:42:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:46:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:50:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:54:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:58:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:62:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:66:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:70:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:73:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:74:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:77:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:80:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:84:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:88:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:92:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:93:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:96:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:99:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:103:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/binary_sensor.py:155:7-34: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/xiaomi_ble/coordinator.py:78:5-16: Class member `XiaomiPassiveBluetoothDataProcessor.coordinator` overrides parent class `PassiveBluetoothDataProcessor` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_ble/event.py:35:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/event.py:36:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/event.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/event.py:46:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/event.py:53:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/event.py:54:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/event.py:65:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/event.py:66:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/event.py:94:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/event.py:95:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/event.py:106:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/event.py:107:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/event.py:122:9-12: Unexpected keyword argument `key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/event.py:123:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.event.EventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:49:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:52:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:61:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:66:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:72:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:79:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:80:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:83:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:87:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:94:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:98:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:99:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:102:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:108:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:117:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:121:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:122:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:125:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:131:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:135:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:139:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:145:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:150:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:156:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:156:52-56: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:160:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:160:57-61: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:167:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:176:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:182:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:185:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:189:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:192:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:196:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:197:9-13: Unexpected keyword argument `icon` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_ble/sensor.py:208:13-79: Cannot index into `dict[tuple[ExtendedSensorDeviceClass, Units] | tuple[ExtendedSensorDeviceClass, str] | tuple[ExtendedSensorDeviceClass, None] | tuple[SensorDeviceClass, Units], SensorEntityDescription]` [bad-index] +ERROR homeassistant/components/xiaomi_ble/sensor.py:264:7-34: Field `entity_description` is declared `EntityDescription` in ancestor `class PassiveBluetoothProcessorEntity: ... +`, which is not assignable to the type `SensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/xiaomi_miio/__init__.py:268:59-65: Argument `() -> VacuumCoordinatorData` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/xiaomi_miio/__init__.py:270:24-29: Returned type `object` is not assignable to declared return type `VacuumCoordinatorData` [bad-return] +ERROR homeassistant/components/xiaomi_miio/__init__.py:390:43-49: Argument `AirFresh | AirFreshA1 | AirFreshT2017 | AirHumidifier | AirHumidifierMiot | AirHumidifierMjjsq | AirPurifier | AirPurifierMiot | Fan | Fan1C | FanMiot | FanP5 | FanZA5 | RoborockVacuum` is not assignable to parameter `device` with type `RoborockVacuum` in function `_async_update_data_vacuum` [bad-argument-type] +ERROR homeassistant/components/xiaomi_miio/air_quality.py:71:60-79: Object of class `Device` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/air_quality.py:73:47-57: Object of class `object` has no attribute `co2e` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/air_quality.py:74:50-60: Object of class `object` has no attribute `pm25` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/air_quality.py:75:60-70: Object of class `object` has no attribute `tvoc` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/air_quality.py:76:39-56: Object of class `object` has no attribute `temperature` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/air_quality.py:77:36-50: Object of class `object` has no attribute `humidity` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/air_quality.py:136:60-79: Object of class `Device` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/air_quality.py:138:36-45: Object of class `object` has no attribute `co2` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/air_quality.py:139:44-54: Object of class `object` has no attribute `pm25` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/air_quality.py:140:54-64: Object of class `object` has no attribute `tvoc` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/air_quality.py:141:33-50: Object of class `object` has no attribute `temperature` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/air_quality.py:142:30-44: Object of class `object` has no attribute `humidity` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/air_quality.py:156:60-79: Object of class `Device` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/air_quality.py:158:39-48: Object of class `object` has no attribute `aqi` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/air_quality.py:193:60-79: Object of class `Device` has no attribute `status` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/air_quality.py:195:36-45: Object of class `object` has no attribute `co2` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/air_quality.py:196:50-60: Object of class `object` has no attribute `pm25` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/air_quality.py:197:49-59: Object of class `object` has no attribute `pm10` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:59:9-12: Unexpected keyword argument `key` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:61:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:62:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:65:9-12: Unexpected keyword argument `key` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:67:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:73:9-12: Unexpected keyword argument `key` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:74:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:76:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:79:9-12: Unexpected keyword argument `key` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:80:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:82:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:91:9-12: Unexpected keyword argument `key` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:92:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:93:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:95:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:97:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:100:9-12: Unexpected keyword argument `key` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:101:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:102:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:104:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:106:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:109:9-12: Unexpected keyword argument `key` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:110:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:111:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:113:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:115:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:122:9-12: Unexpected keyword argument `key` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:123:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:124:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:126:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:128:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioBinarySensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:224:5-23: Class member `XiaomiGenericBinarySensor.entity_description` overrides parent class `XiaomiCoordinatedMiioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/binary_sensor.py:224:5-23: Class member `XiaomiGenericBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/button.py:49:9-12: Unexpected keyword argument `key` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:50:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:51:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:54:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:57:9-12: Unexpected keyword argument `key` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:58:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:59:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:62:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:66:9-12: Unexpected keyword argument `key` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:67:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:68:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:72:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:75:9-12: Unexpected keyword argument `key` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:76:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:77:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:81:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:84:9-12: Unexpected keyword argument `key` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:85:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:86:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:90:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:93:9-12: Unexpected keyword argument `key` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:94:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:95:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:99:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioButtonDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/button.py:159:5-23: Class member `XiaomiGenericCoordinatedButton.entity_description` overrides parent class `XiaomiCoordinatedMiioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/button.py:159:5-23: Class member `XiaomiGenericCoordinatedButton.entity_description` overrides parent class `ButtonEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/button.py:161:5-23: Class member `XiaomiGenericCoordinatedButton._attr_device_class` overrides parent class `XiaomiCoordinatedMiioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/config_flow.py:123:9-31: Class member `XiaomiMiioFlowHandler.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/config_flow.py:241:63-79: Argument `BoundMethod[MiCloud, (self: MiCloud) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/xiaomi_miio/config_flow.py:258:69-260:18: Unpacked argument `tuple[Any]` is not assignable to parameter `*args` with type `tuple[Unknown | None, bool | Unknown, bool | Unknown, str | Unknown]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/xiaomi_miio/config_flow.py:389:24-59: `str` is not assignable to attribute `mac` with type `Never` [bad-assignment] +ERROR homeassistant/components/xiaomi_miio/device.py:37:28-47: `Device` is not assignable to attribute `_device` with type `None` [bad-assignment] +ERROR homeassistant/components/xiaomi_miio/device.py:40:17-34: Object of class `NoneType` has no attribute `info` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/device_tracker.py:68:34-66: Object of class `NoneType` has no attribute `async_add_executor_job` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/fan.py:306:5-23: Class member `XiaomiGenericDevice._attr_preset_modes` overrides parent class `FanEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/fan.py:566:13-38: Object of class `Device` has no attribute `reset_filter` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/fan.py:818:13-38: Object of class `Device` has no attribute `reset_filter` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/fan.py:916:29-38: `tuple[Literal[60], Literal[300]]` is not assignable to attribute `_speed_range` with type `tuple[Literal[60], Literal[150]]` [bad-assignment] +ERROR homeassistant/components/xiaomi_miio/gateway.py:64:13-37: Object of class `NoneType` has no attribute `model` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/gateway.py:65:13-48: Object of class `NoneType` has no attribute `firmware_version` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/gateway.py:66:13-48: Object of class `NoneType` has no attribute `hardware_version` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/gateway.py:72:36-76: `Gateway` is not assignable to attribute `_gateway_device` with type `None` [bad-assignment] +ERROR homeassistant/components/xiaomi_miio/gateway.py:72:52-62: Argument `None` is not assignable to parameter `ip` with type `str` in function `miio.gateway.gateway.Gateway.__init__` [bad-argument-type] +ERROR homeassistant/components/xiaomi_miio/gateway.py:72:64-75: Argument `None` is not assignable to parameter `token` with type `str` in function `miio.gateway.gateway.Gateway.__init__` [bad-argument-type] +ERROR homeassistant/components/xiaomi_miio/gateway.py:74:34-59: Object of class `NoneType` has no attribute `info` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/gateway.py:88:17-54: Object of class `NoneType` has no attribute `discover_devices` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/gateway.py:121:17-59: Object of class `NoneType` has no attribute `get_devices_from_dict` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/humidifier.py:118:5-23: Class member `XiaomiGenericHumidifier._attr_device_class` overrides parent class `XiaomiCoordinatedMiioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/humidifier.py:119:5-29: Class member `XiaomiGenericHumidifier._attr_supported_features` overrides parent class `XiaomiCoordinatedMiioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/light.py:262:5-12: Class member `XiaomiPhilipsAbstractLight._device` overrides parent class `XiaomiMiioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/light.py:328:28-39: Object of class `object` has no attribute `is_on` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:329:54-70: Object of class `object` has no attribute `brightness` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:364:28-39: Object of class `object` has no attribute `is_on` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:365:54-70: Object of class `object` has no attribute `brightness` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:368:13-38: Object of class `object` has no attribute `delay_off_countdown` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:374:26-37: Object of class `object` has no attribute `scene` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:418:5-12: Class member `XiaomiPhilipsBulb._device` overrides parent class `XiaomiPhilipsGenericLight` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/light.py:483:17-27: `brightness` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:484:17-35: `percent_brightness` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:485:17-27: `color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:486:17-35: `percent_color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:492:17-35: `percent_brightness` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:493:17-35: `percent_color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:497:36-46: `color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:498:41-51: `brightness` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:503:17-27: `color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:504:17-35: `percent_color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:510:17-35: `percent_color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:514:36-46: `color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:547:28-39: Object of class `object` has no attribute `is_on` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:548:54-70: Object of class `object` has no attribute `brightness` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:550:13-36: Object of class `object` has no attribute `color_temperature` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:558:13-38: Object of class `object` has no attribute `delay_off_countdown` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:564:26-37: Object of class `object` has no attribute `scene` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:579:5-12: Class member `XiaomiPhilipsCeilingLamp._device` overrides parent class `XiaomiPhilipsBulb` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/light.py:618:28-39: Object of class `object` has no attribute `is_on` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:619:54-70: Object of class `object` has no attribute `brightness` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:621:13-36: Object of class `object` has no attribute `color_temperature` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:629:13-38: Object of class `object` has no attribute `delay_off_countdown` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:636:29-40: Object of class `object` has no attribute `scene` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:638:40-63: Object of class `object` has no attribute `smart_night_light` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:639:51-84: Object of class `object` has no attribute `automatic_color_temperature` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:647:5-12: Class member `XiaomiPhilipsEyecareLamp._device` overrides parent class `XiaomiPhilipsGenericLight` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/light.py:676:28-39: Object of class `object` has no attribute `is_on` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:677:54-70: Object of class `object` has no attribute `brightness` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:680:13-38: Object of class `object` has no attribute `delay_off_countdown` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:687:29-40: Object of class `object` has no attribute `scene` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:689:32-46: Object of class `object` has no attribute `reminder` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:690:40-63: Object of class `object` has no attribute `smart_night_light` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:691:36-49: Object of class `object` has no attribute `eyecare` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:768:5-12: Class member `XiaomiPhilipsEyecareLampAmbientLight._device` overrides parent class `XiaomiPhilipsAbstractLight` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/light.py:827:28-41: Object of class `object` has no attribute `ambient` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:828:54-78: Object of class `object` has no attribute `ambient_brightness` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:835:5-12: Class member `XiaomiPhilipsMoonlightLamp._device` overrides parent class `XiaomiPhilipsBulb` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/light.py:896:17-27: `brightness` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:897:17-35: `percent_brightness` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:898:17-20: `rgb` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:904:17-35: `percent_brightness` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:905:17-20: `rgb` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:909:39-47: `hs_color` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:910:41-51: `brightness` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:918:17-27: `brightness` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:919:17-35: `percent_brightness` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:920:17-27: `color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:921:17-35: `percent_color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:927:17-35: `percent_brightness` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:928:17-35: `percent_color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:932:36-46: `color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:933:41-51: `brightness` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:936:48-51: `rgb` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:939:67-70: `rgb` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:943:39-47: `hs_color` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:948:17-27: `color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:949:17-35: `percent_color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:955:17-35: `percent_color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:959:36-46: `color_temp` may be uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/light.py:992:28-39: Object of class `object` has no attribute `is_on` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:993:54-70: Object of class `object` has no attribute `brightness` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:995:13-36: Object of class `object` has no attribute `color_temperature` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:1001:59-68: Object of class `object` has no attribute `rgb` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:1005:29-40: Object of class `object` has no attribute `scene` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:1006:39-60: Object of class `object` has no attribute `sleep_assistant` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:1007:38-58: Object of class `object` has no attribute `sleep_off_time` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:1008:50-82: Object of class `object` has no attribute `total_assistant_sleep_time` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:1009:34-51: Object of class `object` has no attribute `brand_sleep` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:1010:28-39: Object of class `object` has no attribute `brand` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/light.py:1094:24-62: `tuple[float, float]` is not assignable to attribute `_hs` with type `tuple[Literal[0], Literal[0]]` [bad-assignment] +ERROR homeassistant/components/xiaomi_miio/light.py:1102:5-16: Class member `XiaomiGatewayBulb._sub_device` overrides parent class `XiaomiGatewayDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/number.py:142:9-12: Unexpected keyword argument `key` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:143:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:144:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:151:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:154:9-12: Unexpected keyword argument `key` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:155:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:156:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:161:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:164:9-12: Unexpected keyword argument `key` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:165:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:166:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:171:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:174:9-12: Unexpected keyword argument `key` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:175:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:176:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:181:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:184:9-12: Unexpected keyword argument `key` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:185:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:186:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:192:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:195:9-12: Unexpected keyword argument `key` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:196:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:197:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:203:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:206:9-12: Unexpected keyword argument `key` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:207:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:208:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:213:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:216:9-12: Unexpected keyword argument `key` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:217:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:218:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:223:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:226:9-12: Unexpected keyword argument `key` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:227:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:228:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:234:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioNumberDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/number.py:359:5-23: Class member `XiaomiNumberEntity.entity_description` overrides parent class `XiaomiCoordinatedMiioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/number.py:359:5-23: Class member `XiaomiNumberEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/remote.py:141:24-35: Object of class `object` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/remote.py:149:16-34: `in` is not supported between `Literal['error']` and `object` [not-iterable] +ERROR homeassistant/components/xiaomi_miio/remote.py:149:39-55: Cannot index into `object` [bad-index] +ERROR homeassistant/components/xiaomi_miio/remote.py:252:23-36: No matching overload found for function `range.__new__` called with arguments: (type[range], Unknown | None) [no-matching-overload] +ERROR homeassistant/components/xiaomi_miio/select.py:153:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:155:9-13: Unexpected keyword argument `name` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:163:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:164:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:166:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:169:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:171:9-13: Unexpected keyword argument `name` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:174:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:175:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:177:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:180:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:182:9-13: Unexpected keyword argument `name` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:185:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:186:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:188:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:191:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:193:9-13: Unexpected keyword argument `name` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:196:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:197:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:199:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSelectDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/select.py:242:5-23: Class member `XiaomiSelector.entity_description` overrides parent class `XiaomiCoordinatedMiioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/select.py:242:5-23: Class member `XiaomiSelector.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/select.py:296:57-62: `value` is uninitialized [unbound-name] +ERROR homeassistant/components/xiaomi_miio/sensor.py:165:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:171:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:177:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:183:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:184:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:189:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:190:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:192:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:194:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:197:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:198:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:200:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:202:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:205:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:206:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:208:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:210:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:213:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:214:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:216:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:218:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:221:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:222:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:224:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:226:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:229:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:230:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:232:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:234:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:237:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:238:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:240:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:243:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:244:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:247:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:248:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:253:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:259:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:260:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:262:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:266:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:267:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:273:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:279:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:280:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:286:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:292:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:293:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:295:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:298:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:301:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:302:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:304:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:307:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:310:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:311:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:313:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:316:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:319:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:320:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:322:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:325:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:328:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:329:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:331:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:334:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:337:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:338:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:340:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:343:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:346:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:347:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:349:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:352:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:355:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:361:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:362:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:366:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:367:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:370:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:374:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:583:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:584:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:585:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:588:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:589:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:592:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:593:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:594:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:597:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:598:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:601:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:602:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:603:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:606:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:609:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:610:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:613:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:614:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:618:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:620:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:622:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:623:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:627:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:628:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:630:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:631:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:635:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:637:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:639:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:640:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:644:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:645:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:647:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:648:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:653:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:654:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:656:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:657:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:658:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:662:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:663:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:665:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:666:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:667:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:671:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:673:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:675:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:676:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:677:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:681:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:683:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:685:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:686:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:687:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:691:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:693:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:695:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:696:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:700:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:702:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:704:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:705:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:709:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:711:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:713:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:714:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:718:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:720:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:722:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:723:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSensorDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/sensor.py:862:5-23: Class member `XiaomiGenericSensor.entity_description` overrides parent class `XiaomiCoordinatedMiioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/sensor.py:862:5-23: Class member `XiaomiGenericSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/sensor.py:928:5-12: Class member `XiaomiAirQualityMonitor._device` overrides parent class `XiaomiMiioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/sensor.py:951:14-32: Class member `XiaomiAirQualityMonitor.entity_description` overrides parent class `XiaomiMiioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/sensor.py:960:39-48: Object of class `object` has no attribute `aqi` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/sensor.py:963:33-44: Object of class `object` has no attribute `power` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/sensor.py:964:36-51: Object of class `object` has no attribute `usb_power` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/sensor.py:965:41-54: Object of class `object` has no attribute `battery` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/sensor.py:966:41-60: Object of class `object` has no attribute `display_clock` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/sensor.py:967:38-54: Object of class `object` has no attribute `night_mode` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/sensor.py:968:44-66: Object of class `object` has no attribute `night_time_begin` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/sensor.py:969:42-62: Object of class `object` has no attribute `night_time_end` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/sensor.py:970:40-58: Object of class `object` has no attribute `sensor_state` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/sensor.py:994:14-32: Class member `XiaomiGatewaySensor.entity_description` overrides parent class `XiaomiGatewayDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/switch.py:246:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:248:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:249:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:252:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:255:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:257:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:258:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:261:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:264:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:266:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:267:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:270:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:273:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:275:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:276:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:279:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:282:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:284:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:285:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:289:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:292:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:294:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:295:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:298:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:301:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:303:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:304:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:307:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:310:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:312:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:315:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:318:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:320:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:321:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:324:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:327:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:329:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:330:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:333:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:336:9-12: Unexpected keyword argument `key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:338:9-24: Unexpected keyword argument `translation_key` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:339:9-13: Unexpected keyword argument `icon` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:342:9-24: Unexpected keyword argument `entity_category` in function `XiaomiMiioSwitchDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/xiaomi_miio/switch.py:354:19-36: Expected a type form, got instance of `list[str]` [not-a-type] +ERROR homeassistant/components/xiaomi_miio/switch.py:534:5-23: Class member `XiaomiGenericCoordinatedSwitch.entity_description` overrides parent class `XiaomiCoordinatedMiioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/switch.py:534:5-23: Class member `XiaomiGenericCoordinatedSwitch.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/switch.py:768:5-23: Class member `XiaomiGatewaySwitch._attr_device_class` overrides parent class `XiaomiGatewayDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/switch.py:769:5-16: Class member `XiaomiGatewaySwitch._sub_device` overrides parent class `XiaomiGatewayDevice` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/switch.py:807:5-12: Class member `XiaomiPlugGenericSwitch._device` overrides parent class `XiaomiMiioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/switch.py:877:32-43: Object of class `object` has no attribute `is_on` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/switch.py:878:67-84: Object of class `object` has no attribute `temperature` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/switch.py:891:47-72: Object of class `AirConditioningCompanionV3` has no attribute `set_wifi_led` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/switch.py:900:48-73: Object of class `AirConditioningCompanionV3` has no attribute `set_wifi_led` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/switch.py:918:5-12: Class member `XiaomiPowerStripSwitch._device` overrides parent class `XiaomiPlugGenericSwitch` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/switch.py:958:32-43: Object of class `object` has no attribute `is_on` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/switch.py:960:36-53: Object of class `object` has no attribute `temperature` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/switch.py:960:72-88: Object of class `object` has no attribute `load_power` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/switch.py:963:72-82: Object of class `object` has no attribute `mode` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/switch.py:964:70-86: Object of class `object` has no attribute `value` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/switch.py:966:70-84: Object of class `object` has no attribute `wifi_led` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/switch.py:971:21-38: Object of class `object` has no attribute `power_price` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/switch.py:995:5-12: Class member `ChuangMiPlugSwitch._device` overrides parent class `XiaomiPlugGenericSwitch` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/switch.py:1066:36-51: Object of class `object` has no attribute `usb_power` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/switch.py:1068:36-47: Object of class `object` has no attribute `is_on` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/switch.py:1070:67-84: Object of class `object` has no attribute `temperature` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/switch.py:1072:16-30: Object of class `object` has no attribute `wifi_led` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/switch.py:1075:47-63: Object of class `object` has no attribute `load_power` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/switch.py:1087:5-12: Class member `XiaomiAirConditioningCompanionSwitch._device` overrides parent class `XiaomiPlugGenericSwitch` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_miio/switch.py:1137:32-50: Object of class `object` has no attribute `power_socket` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/switch.py:1138:66-82: Object of class `object` has no attribute `load_power` [missing-attribute] +ERROR homeassistant/components/xiaomi_miio/vacuum.py:184:5-29: Class member `MiroboVacuum._attr_supported_features` overrides parent class `XiaomiCoordinatedMiioEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xiaomi_tv/media_player.py:7:8-14: Could not find import of `pymitv` [missing-import] +ERROR homeassistant/components/xmpp/notify.py:147:18-22: Class member `SendNotificationBot.loop` overrides parent class `ClientXMPP` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xmpp/notify.py:243:16-24: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/xmpp/notify.py:244:55-78: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/xmpp/notify.py:245:50-73: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/xmpp/notify.py:248:18-26: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/xmpp/notify.py:249:55-69: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/xmpp/notify.py:250:18-26: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/xmpp/notify.py:251:56-80: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/xmpp/notify.py:252:50-74: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/xmpp/notify.py:255:18-26: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/xmpp/notify.py:256:56-71: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/components/xmpp/notify.py:276:33-41: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/xmpp/notify.py:291:16-24: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/xmpp/notify.py:293:53-61: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/xmpp/notify.py:331:49-61: `content_type` may be uninitialized [unbound-name] +ERROR homeassistant/components/xmpp/notify.py:334:49-57: Object of class `NoneType` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/xmpp/notify.py:341:30-42: `content_type` may be uninitialized [unbound-name] +ERROR homeassistant/components/xs1/__init__.py:6:8-22: Could not find import of `xs1_api_client` [missing-import] +ERROR homeassistant/components/xs1/climate.py:7:1-54: Could not find import of `xs1_api_client.api_constants` [missing-import] +ERROR homeassistant/components/xs1/climate.py:8:1-55: Could not find import of `xs1_api_client.device.actuator` [missing-import] +ERROR homeassistant/components/xs1/climate.py:9:1-51: Could not find import of `xs1_api_client.device.sensor` [missing-import] +ERROR homeassistant/components/xs1/climate.py:57:5-29: Class member `XS1ThermostatEntity._attr_supported_features` overrides parent class `XS1DeviceEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/xs1/entity.py:5:1-44: Could not find import of `xs1_api_client.device` [missing-import] +ERROR homeassistant/components/xs1/sensor.py:5:1-54: Could not find import of `xs1_api_client.api_constants` [missing-import] +ERROR homeassistant/components/xs1/sensor.py:6:1-55: Could not find import of `xs1_api_client.device.actuator` [missing-import] +ERROR homeassistant/components/xs1/sensor.py:7:1-51: Could not find import of `xs1_api_client.device.sensor` [missing-import] +ERROR homeassistant/components/xs1/switch.py:7:1-54: Could not find import of `xs1_api_client.api_constants` [missing-import] +ERROR homeassistant/components/xs1/switch.py:8:1-55: Could not find import of `xs1_api_client.device.actuator` [missing-import] +ERROR homeassistant/components/yale/binary_sensor.py:52:5-8: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale/binary_sensor.py:58:9-12: Unexpected keyword argument `key` in function `YaleDoorbellBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale/binary_sensor.py:64:9-12: Unexpected keyword argument `key` in function `YaleDoorbellBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale/binary_sensor.py:65:9-24: Unexpected keyword argument `translation_key` in function `YaleDoorbellBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale/binary_sensor.py:72:9-12: Unexpected keyword argument `key` in function `YaleDoorbellBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale/binary_sensor.py:74:9-24: Unexpected keyword argument `entity_category` in function `YaleDoorbellBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale/binary_sensor.py:75:18-39: Argument `(data: YaleData, detail: DoorbellDetail | LockDetail) -> bool` is not assignable to parameter `value_fn` with type `(YaleData, DoorbellDetail | LockDetail) -> Activity | None` in function `YaleDoorbellBinarySensorEntityDescription.__init__` [bad-argument-type] +ERROR homeassistant/components/yale/binary_sensor.py:83:9-12: Unexpected keyword argument `key` in function `YaleDoorbellBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale/binary_sensor.py:84:9-24: Unexpected keyword argument `translation_key` in function `YaleDoorbellBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale/binary_sensor.py:103:12-28: Object of class `DoorbellDetail` has no attribute `doorsense` [missing-attribute] +ERROR homeassistant/components/yale/binary_sensor.py:106:12-27: Object of class `DoorbellDetail` has no attribute `doorbell` [missing-attribute] +ERROR homeassistant/components/yale/binary_sensor.py:120:7-27: Field `entity_description` is declared `EntityDescription` in ancestor `class YaleDescriptionEntity: ... +`, which is not assignable to the type `BinarySensorEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/yale/binary_sensor.py:123:5-23: Class member `YaleDoorBinarySensor._attr_device_class` overrides parent class `YaleDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale/binary_sensor.py:130:46-58: Argument `DoorbellDetail | LockDetail` is not assignable to parameter `lock_detail` with type `LockDetail` in function `yalexs.util.update_lock_detail_from_activity` [bad-argument-type] +ERROR homeassistant/components/yale/binary_sensor.py:130:60-73: Argument `Activity` is not assignable to parameter `activity` with type `BridgeOperationActivity | DoorOperationActivity | LockOperationActivity` in function `yalexs.util.update_lock_detail_from_activity` [bad-argument-type] +ERROR homeassistant/components/yale/binary_sensor.py:132:17-40: Object of class `DoorbellDetail` has no attribute `set_online` [missing-attribute] +ERROR homeassistant/components/yale/binary_sensor.py:135:46-58: Argument `DoorbellDetail | LockDetail` is not assignable to parameter `lock_detail` with type `LockDetail` in function `yalexs.util.update_lock_detail_from_activity` [bad-argument-type] +ERROR homeassistant/components/yale/binary_sensor.py:135:60-75: Argument `Activity` is not assignable to parameter `activity` with type `BridgeOperationActivity | DoorOperationActivity | LockOperationActivity` in function `yalexs.util.update_lock_detail_from_activity` [bad-argument-type] +ERROR homeassistant/components/yale/binary_sensor.py:136:32-61: Object of class `DoorbellDetail` has no attribute `bridge_is_online` [missing-attribute] +ERROR homeassistant/components/yale/binary_sensor.py:137:28-51: Object of class `DoorbellDetail` has no attribute `door_state` [missing-attribute] +ERROR homeassistant/components/yale/binary_sensor.py:143:5-23: Class member `YaleDoorbellBinarySensor.entity_description` overrides parent class `YaleDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale/binary_sensor.py:143:5-23: Class member `YaleDoorbellBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale/camera.py:57:28-46: `int | str | Unknown | None` is not assignable to attribute `_attr_model` with type `str | None` [bad-assignment] +ERROR homeassistant/components/yale/camera.py:62:16-45: Object of class `KeypadDetail` has no attribute `has_subscription` +Object of class `Lock` has no attribute `has_subscription` [missing-attribute] +ERROR homeassistant/components/yale/camera.py:76:49-61: Argument `DoorbellDetail | LockDetail` is not assignable to parameter `doorbell_detail` with type `DoorbellDetail` in function `yalexs.util.update_doorbell_image_from_activity` [bad-argument-type] +ERROR homeassistant/components/yale/camera.py:76:63-80: Argument `Activity` is not assignable to parameter `activity` with type `BridgeOperationActivity | DoorbellImageCaptureActivity | DoorbellMotionActivity` in function `yalexs.util.update_doorbell_image_from_activity` [bad-argument-type] +ERROR homeassistant/components/yale/camera.py:84:35-57: Object of class `LockDetail` has no attribute `image_url` [missing-attribute] +ERROR homeassistant/components/yale/camera.py:88:31-53: Object of class `LockDetail` has no attribute `image_url` [missing-attribute] +ERROR homeassistant/components/yale/data.py:29:36-37:14: Missing argument `address` in function `yalexs_ble.const.YaleXSBLEDiscovery.__init__` [missing-argument] +ERROR homeassistant/components/yale/data.py:29:36-37:14: Missing argument `serial` in function `yalexs_ble.const.YaleXSBLEDiscovery.__init__` [missing-argument] +ERROR homeassistant/components/yale/data.py:29:36-37:14: Missing argument `key` in function `yalexs_ble.const.YaleXSBLEDiscovery.__init__` [missing-argument] +ERROR homeassistant/components/yale/data.py:29:36-37:14: Missing argument `slot` in function `yalexs_ble.const.YaleXSBLEDiscovery.__init__` [missing-argument] +ERROR homeassistant/components/yale/data.py:30:17-36:18: Expected argument `name` to be passed by name in function `yalexs_ble.const.YaleXSBLEDiscovery.__init__` [unexpected-positional-argument] +ERROR homeassistant/components/yale/data.py:47:40-58: Argument `type[HomeAssistantError]` is not assignable to parameter `error_exception_class` with type `Exception` in function `yalexs.manager.data.YaleXSData.__init__` [bad-argument-type] +ERROR homeassistant/components/yale/entity.py:43:19-31: Argument `int | str | Unknown | None` is not assignable to parameter `model` with type `str | None` in function `homeassistant.helpers.device_registry.DeviceInfo.__init__` [bad-argument-type] +ERROR homeassistant/components/yale/entity.py:59:21-40: Object of class `DoorbellDetail` has no attribute `bridge` [missing-attribute] +ERROR homeassistant/components/yale/entity.py:59:45-77: Object of class `object` has no attribute `hyper_bridge` [missing-attribute] +ERROR homeassistant/components/yale/event.py:39:9-12: Unexpected keyword argument `key` in function `YaleEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale/event.py:40:9-24: Unexpected keyword argument `translation_key` in function `YaleEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale/event.py:50:9-12: Unexpected keyword argument `key` in function `YaleEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale/event.py:51:9-24: Unexpected keyword argument `translation_key` in function `YaleEventEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale/event.py:83:5-23: Class member `YaleEventEntity.entity_description` overrides parent class `YaleDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale/event.py:83:5-23: Class member `YaleEventEntity.entity_description` overrides parent class `EventEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale/lock.py:47:12-42: Object of class `DoorbellDetail` has no attribute `unlatch_supported` [missing-attribute] +ERROR homeassistant/components/yale/lock.py:48:18-42: Class member `YaleLock._attr_supported_features` overrides parent class `YaleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale/lock.py:48:18-42: Class member `YaleLock._attr_supported_features` overrides parent class `RestoreEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale/lock.py:73:17-41: Object of class `DoorbellDetail` has no attribute `lock_status` [missing-attribute] +ERROR homeassistant/components/yale/lock.py:74:17-50: Object of class `DoorbellDetail` has no attribute `lock_status_datetime` [missing-attribute] +ERROR homeassistant/components/yale/lock.py:79:50-62: Argument `DoorbellDetail | LockDetail` is not assignable to parameter `lock_detail` with type `LockDetail` in function `yalexs.util.update_lock_detail_from_activity` [bad-argument-type] +ERROR homeassistant/components/yale/lock.py:79:64-77: Argument `BridgeOperationActivity | DoorOperationActivity | DoorbellDingActivity | DoorbellImageCaptureActivity | DoorbellMotionActivity | DoorbellViewActivity | LockOperationActivity` is not assignable to parameter `activity` with type `BridgeOperationActivity | DoorOperationActivity | LockOperationActivity` in function `yalexs.util.update_lock_detail_from_activity` [bad-argument-type] +ERROR homeassistant/components/yale/lock.py:89:32-61: Object of class `DoorbellDetail` has no attribute `bridge_is_online` [missing-attribute] +ERROR homeassistant/components/yale/lock.py:91:33-57: Object of class `DoorbellDetail` has no attribute `lock_status` [missing-attribute] +ERROR homeassistant/components/yale/lock.py:92:33-57: Object of class `DoorbellDetail` has no attribute `lock_status` [missing-attribute] +ERROR homeassistant/components/yale/lock.py:101:37-62: Object of class `Activity` has no attribute `operated_by` [missing-attribute] +ERROR homeassistant/components/yale/lock.py:106:13-43: Argument `Activity | None` is not assignable to parameter `activity1` with type `BridgeOperationActivity | DoorOperationActivity | LockOperationActivity | None` in function `yalexs.util.get_latest_activity` [bad-argument-type] +ERROR homeassistant/components/yale/lock.py:106:45-58: `lock_activity` may be uninitialized [unbound-name] +ERROR homeassistant/components/yale/lock.py:106:45-58: Argument `Activity | None` is not assignable to parameter `activity2` with type `BridgeOperationActivity | DoorOperationActivity | LockOperationActivity | None` in function `yalexs.util.get_latest_activity` [bad-argument-type] +ERROR homeassistant/components/yale/lock.py:109:17-40: Object of class `DoorbellDetail` has no attribute `set_online` [missing-attribute] +ERROR homeassistant/components/yale/lock.py:110:46-52: Argument `DoorbellDetail | LockDetail` is not assignable to parameter `lock_detail` with type `LockDetail` in function `yalexs.util.update_lock_detail_from_activity` [bad-argument-type] +ERROR homeassistant/components/yale/lock.py:113:46-52: Argument `DoorbellDetail | LockDetail` is not assignable to parameter `lock_detail` with type `LockDetail` in function `yalexs.util.update_lock_detail_from_activity` [bad-argument-type] +ERROR homeassistant/components/yale/lock.py:113:54-69: Argument `Activity` is not assignable to parameter `activity` with type `BridgeOperationActivity | DoorOperationActivity | LockOperationActivity` in function `yalexs.util.update_lock_detail_from_activity` [bad-argument-type] +ERROR homeassistant/components/yale/lock.py:128:22-35: Object of class `DoorbellDetail` has no attribute `keypad` [missing-attribute] +ERROR homeassistant/components/yale/sensor.py:68:5-8: Unexpected keyword argument `key` in function `YaleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale/sensor.py:69:5-20: Unexpected keyword argument `entity_category` in function `YaleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale/sensor.py:75:5-8: Unexpected keyword argument `key` in function `YaleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale/sensor.py:76:5-20: Unexpected keyword argument `entity_category` in function `YaleSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale/sensor.py:94:48-54: Argument `DoorbellDetail | LockDetail` is not assignable to parameter with type `LockDetail` [bad-argument-type] +ERROR homeassistant/components/yale/sensor.py:98:22-35: Object of class `DoorbellDetail` has no attribute `keypad` [missing-attribute] +ERROR homeassistant/components/yale/sensor.py:106:9-36: `Doorbell` is not assignable to upper bound `KeypadDetail | LockDetail` of type variable `T` [bad-specialization] +ERROR homeassistant/components/yale/sensor.py:108:48-88: Argument `DoorbellDetail | LockDetail` is not assignable to parameter with type `LockDetail` [bad-argument-type] +ERROR homeassistant/components/yale/sensor.py:203:5-23: Class member `YaleBatterySensor.entity_description` overrides parent class `YaleDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale/sensor.py:203:5-23: Class member `YaleBatterySensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale/sensor.py:204:5-23: Class member `YaleBatterySensor._attr_device_class` overrides parent class `YaleDescriptionEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale/sensor.py:210:68-80: Argument `DoorbellDetail | LockDetail` is not assignable to parameter with type `T` [bad-argument-type] +ERROR homeassistant/components/yale/util.py:38:12-17: Returned type `Literal[False]` is not assignable to declared return type `Activity | None` [bad-return] +ERROR homeassistant/components/yale_smart_alarm/alarm_control_panel.py:42:5-29: Class member `YaleAlarmDevice._attr_supported_features` overrides parent class `YaleAlarmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale_smart_alarm/alarm_control_panel.py:73:21-51: Argument `BoundMethod[YaleSmartAlarmClient, (self: YaleSmartAlarmClient) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/yale_smart_alarm/alarm_control_panel.py:77:21-54: Argument `BoundMethod[YaleSmartAlarmClient, (self: YaleSmartAlarmClient) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/yale_smart_alarm/alarm_control_panel.py:81:21-49: Argument `BoundMethod[YaleSmartAlarmClient, (self: YaleSmartAlarmClient) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/yale_smart_alarm/alarm_control_panel.py:93:12-23: `alarm_state` may be uninitialized [unbound-name] +ERROR homeassistant/components/yale_smart_alarm/binary_sensor.py:20:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale_smart_alarm/binary_sensor.py:22:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale_smart_alarm/binary_sensor.py:23:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale_smart_alarm/binary_sensor.py:26:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale_smart_alarm/binary_sensor.py:28:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale_smart_alarm/binary_sensor.py:29:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale_smart_alarm/binary_sensor.py:32:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale_smart_alarm/binary_sensor.py:34:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale_smart_alarm/binary_sensor.py:35:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale_smart_alarm/binary_sensor.py:38:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale_smart_alarm/binary_sensor.py:40:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale_smart_alarm/binary_sensor.py:41:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale_smart_alarm/binary_sensor.py:71:5-23: Class member `YaleDoorSensor._attr_device_class` overrides parent class `YaleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale_smart_alarm/binary_sensor.py:82:5-23: Class member `YaleDoorBatterySensor._attr_device_class` overrides parent class `YaleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale_smart_alarm/binary_sensor.py:91:14-29: Class member `YaleDoorBatterySensor._attr_unique_id` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale_smart_alarm/binary_sensor.py:103:5-23: Class member `YaleProblemSensor.entity_description` overrides parent class `YaleAlarmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale_smart_alarm/button.py:19:9-12: Unexpected keyword argument `key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale_smart_alarm/button.py:20:9-24: Unexpected keyword argument `translation_key` in function `homeassistant.components.button.ButtonEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yale_smart_alarm/button.py:42:5-23: Class member `YalePanicButton.entity_description` overrides parent class `YaleAlarmEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale_smart_alarm/button.py:61:17-59: Argument `BoundMethod[YaleSmartAlarmClient, (self: YaleSmartAlarmClient) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/yale_smart_alarm/config_flow.py:73:9-31: Class member `YaleConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale_smart_alarm/coordinator.py:27:5-17: Class member `YaleDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale_smart_alarm/coordinator.py:44:63-48:14: Unpacked argument `tuple[Any, Any]` is not assignable to parameter `*args` with type `tuple[str, str, int]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/yale_smart_alarm/coordinator.py:49:65-84: Argument `BoundMethod[YaleSmartAlarmClient, (self: YaleSmartAlarmClient) -> list[YaleLock]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/yale_smart_alarm/coordinator.py:58:58-74: Argument `BoundMethod[Self@YaleDataUpdateCoordinator, (self: Self@YaleDataUpdateCoordinator) -> dict[str, Any]]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/yale_smart_alarm/entity.py:22:14-29: Class member `YaleEntity._attr_unique_id` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale_smart_alarm/entity.py:23:14-31: Class member `YaleEntity._attr_device_info` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale_smart_alarm/entity.py:40:14-29: Class member `YaleLockEntity._attr_unique_id` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale_smart_alarm/lock.py:74:21-41: Argument `BoundMethod[YaleLock, (self: YaleLock) -> bool]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/yale_smart_alarm/select.py:42:14-29: Class member `YaleLockVolumeSelect._attr_unique_id` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale_smart_alarm/sensor.py:35:5-23: Class member `YaleTemperatureSensor._attr_device_class` overrides parent class `YaleEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yale_smart_alarm/switch.py:42:14-29: Class member `YaleAutolockSwitch._attr_unique_id` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yalexs_ble/binary_sensor.py:33:5-23: Class member `YaleXSBLEDoorSensor._attr_device_class` overrides parent class `YALEXSBLEEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yalexs_ble/config_flow.py:356:9-31: Class member `YalexsConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yalexs_ble/sensor.py:39:9-12: Unexpected keyword argument `key` in function `YaleXSBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yalexs_ble/sensor.py:41:9-24: Unexpected keyword argument `entity_category` in function `YaleXSBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yalexs_ble/sensor.py:43:9-24: Unexpected keyword argument `has_entity_name` in function `YaleXSBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yalexs_ble/sensor.py:45:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `YaleXSBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yalexs_ble/sensor.py:49:9-12: Unexpected keyword argument `key` in function `YaleXSBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yalexs_ble/sensor.py:51:9-24: Unexpected keyword argument `entity_category` in function `YaleXSBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yalexs_ble/sensor.py:53:9-24: Unexpected keyword argument `has_entity_name` in function `YaleXSBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yalexs_ble/sensor.py:60:9-12: Unexpected keyword argument `key` in function `YaleXSBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yalexs_ble/sensor.py:61:9-24: Unexpected keyword argument `translation_key` in function `YaleXSBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yalexs_ble/sensor.py:63:9-24: Unexpected keyword argument `entity_category` in function `YaleXSBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yalexs_ble/sensor.py:65:9-24: Unexpected keyword argument `has_entity_name` in function `YaleXSBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yalexs_ble/sensor.py:67:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `YaleXSBLESensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yalexs_ble/sensor.py:88:5-23: Class member `YaleXSBLESensor.entity_description` overrides parent class `YALEXSBLEEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yalexs_ble/sensor.py:88:5-23: Class member `YaleXSBLESensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yalexs_ble/util.py:29:41-65: Expected 0 positional arguments, got 1 in function `homeassistant.components.bluetooth.match.BluetoothCallbackMatcher.__init__` [bad-argument-count] +ERROR homeassistant/components/yalexs_ble/util.py:33:37-55: Expected 0 positional arguments, got 1 in function `homeassistant.components.bluetooth.match.BluetoothCallbackMatcher.__init__` [bad-argument-count] +ERROR homeassistant/components/yamaha/media_player.py:254:36-60: `Literal[MediaPlayerState.PLAYING]` is not assignable to attribute `_attr_state` with type `Never` [bad-assignment] +ERROR homeassistant/components/yamaha/media_player.py:256:36-57: `Literal[MediaPlayerState.IDLE]` is not assignable to attribute `_attr_state` with type `Never` [bad-assignment] +ERROR homeassistant/components/yamaha/media_player.py:369:16-30: Module `rxv.exceptions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/yamaha_musiccast/config_flow.py:92:13-41: Argument `str | None` is not assignable to parameter `location` with type `str` in function `aiomusiccast.musiccast_device.MusicCastDevice.check_yamaha_ssdp` [bad-argument-type] +ERROR homeassistant/components/yamaha_musiccast/coordinator.py:29:5-17: Class member `MusicCastDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yamaha_musiccast/entity.py:74:28-70: Object of class `NoneType` has no attribute `values` [missing-attribute] +ERROR homeassistant/components/yamaha_musiccast/entity.py:77:44-85: `tuple[Literal['yamaha_musiccast'], str | None]` is not assignable to TypedDict key `via_device` with type `tuple[str, str]` [bad-typed-dict-key] +ERROR homeassistant/components/yamaha_musiccast/media_player.py:306:66-71: `index` may be uninitialized [unbound-name] +ERROR homeassistant/components/yamaha_musiccast/media_player.py:364:23-34: Argument `str | None` is not assignable to parameter `title` with type `str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/yamaha_musiccast/media_player.py:365:52-72: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/yamaha_musiccast/media_player.py:366:34-50: Argument `str | None` is not assignable to parameter `media_content_id` with type `str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/yamaha_musiccast/media_player.py:386:37-50: Argument `Sequence[BrowseMedia] | None` is not assignable to parameter `iterable` with type `Iterable[BrowseMedia]` in function `list.extend` [bad-argument-type] +ERROR homeassistant/components/yamaha_musiccast/media_player.py:391:19-47: Argument `str | None` is not assignable to parameter `title` with type `str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/yamaha_musiccast/media_player.py:392:48-85: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/yamaha_musiccast/media_player.py:393:30-63: Argument `str | None` is not assignable to parameter `media_content_id` with type `str` in function `homeassistant.components.media_player.browse_media.BrowseMedia.__init__` [bad-argument-type] +ERROR homeassistant/components/yamaha_musiccast/media_player.py:440:45-82: No matching overload found for function `dict.get` called with arguments: (str | None) [no-matching-overload] +ERROR homeassistant/components/yamaha_musiccast/number.py:44:5-15: Class member `NumberCapability.capability` overrides parent class `MusicCastCapabilityEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yamaha_musiccast/number.py:65:35-40: Argument `float` is not assignable to parameter `value` with type `int` in function `aiomusiccast.capabilities.NumberSetter.set` [bad-argument-type] +ERROR homeassistant/components/yamaha_musiccast/select.py:44:5-15: Class member `SelectableCapability.capability` overrides parent class `MusicCastCapabilityEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yamaha_musiccast/switch.py:44:5-15: Class member `SwitchCapability.capability` overrides parent class `MusicCastCapabilityEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yandextts/tts.py:123:46-55: Argument `HomeAssistant | None` is not assignable to parameter `hass` with type `HomeAssistant` in function `homeassistant.helpers.aiohttp_client.async_get_clientsession` [bad-argument-type] +ERROR homeassistant/components/yardian/__init__.py:44:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/yardian/binary_sensor.py:53:9-12: Unexpected keyword argument `key` in function `YardianBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yardian/binary_sensor.py:54:9-24: Unexpected keyword argument `translation_key` in function `YardianBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yardian/binary_sensor.py:59:9-12: Unexpected keyword argument `key` in function `YardianBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yardian/binary_sensor.py:60:9-24: Unexpected keyword argument `translation_key` in function `YardianBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yardian/binary_sensor.py:61:9-24: Unexpected keyword argument `entity_category` in function `YardianBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yardian/binary_sensor.py:67:9-12: Unexpected keyword argument `key` in function `YardianBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yardian/binary_sensor.py:68:9-24: Unexpected keyword argument `translation_key` in function `YardianBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yardian/binary_sensor.py:70:9-24: Unexpected keyword argument `entity_category` in function `YardianBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yardian/binary_sensor.py:93:13-16: Unexpected keyword argument `key` in function `YardianBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yardian/binary_sensor.py:94:13-28: Unexpected keyword argument `translation_key` in function `YardianBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yardian/binary_sensor.py:95:13-28: Unexpected keyword argument `entity_category` in function `YardianBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yardian/binary_sensor.py:96:13-44: Unexpected keyword argument `entity_registry_enabled_default` in function `YardianBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yardian/binary_sensor.py:98:13-37: Unexpected keyword argument `translation_placeholders` in function `YardianBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yardian/binary_sensor.py:116:5-23: Class member `YardianBinarySensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yardian/binary_sensor.py:116:5-23: Class member `YardianBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yardian/coordinator.py:43:5-17: Class member `YardianUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yeelight/config_flow.py:64:9-31: Class member `YeelightConfigFlow.async_get_options_flow` overrides parent class `ConfigFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yeelight/config_flow.py:323:12-28: `is_unknown_model` may be uninitialized [unbound-name] +ERROR homeassistant/components/yeelight/device.py:200:29-83: `CaseInsensitiveDict | dict[str, Any]` is not assignable to attribute `capabilities` with type `dict[str, Any]` [bad-assignment] +ERROR homeassistant/components/yeelight/light.py:416:5-29: Class member `YeelightBaseLight._attr_supported_features` overrides parent class `YeelightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yeelight/light.py:725:77-85: `duration` may be uninitialized [unbound-name] +ERROR homeassistant/components/yeelight/light.py:726:28-64: Argument `SleepTransition` is not assignable to parameter `object` with type `RGBTransition` in function `list.append` [bad-argument-type] +ERROR homeassistant/components/yeelight/light.py:729:72-80: `duration` may be uninitialized [unbound-name] +ERROR homeassistant/components/yeelight/light.py:733:27-32: `count` may be uninitialized [unbound-name] +ERROR homeassistant/components/yeelight/light.py:826:40-828:10: `() -> None` is not assignable to attribute `_unexpected_state_check` with type `None` [bad-assignment] +ERROR homeassistant/components/yeelight/light.py:1097:38-45: `bg_prop` may be uninitialized [unbound-name] +ERROR homeassistant/components/yeelightsunflower/light.py:9:8-25: Could not find import of `yeelightsunflower` [missing-import] +ERROR homeassistant/components/yi/camera.py:7:1-43: Could not find import of `aioftp` [missing-import] +ERROR homeassistant/components/yi/camera.py:144:34-48: Argument `None` is not assignable to parameter `input_source` with type `str` in function `haffmpeg.camera.CameraMjpeg.open_camera` [bad-argument-type] +ERROR homeassistant/components/yi/camera.py:151:17-30: Argument `asyncio.streams.StreamReader` is not assignable to parameter `stream` with type `aiohttp.streams.StreamReader` in function `homeassistant.helpers.aiohttp_client.async_aiohttp_proxy_stream` [bad-argument-type] +ERROR homeassistant/components/yolink/__init__.py:212:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/yolink/binary_sensor.py:63:9-12: Unexpected keyword argument `key` in function `YoLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/binary_sensor.py:69:9-12: Unexpected keyword argument `key` in function `YoLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/binary_sensor.py:75:9-12: Unexpected keyword argument `key` in function `YoLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/binary_sensor.py:81:9-12: Unexpected keyword argument `key` in function `YoLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/binary_sensor.py:87:9-12: Unexpected keyword argument `key` in function `YoLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/binary_sensor.py:93:9-12: Unexpected keyword argument `key` in function `YoLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/binary_sensor.py:101:9-12: Unexpected keyword argument `key` in function `YoLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/binary_sensor.py:116:9-12: Unexpected keyword argument `key` in function `YoLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/binary_sensor.py:117:9-24: Unexpected keyword argument `translation_key` in function `YoLinkBinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/binary_sensor.py:154:5-23: Class member `YoLinkBinarySensorEntity.entity_description` overrides parent class `YoLinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/binary_sensor.py:154:5-23: Class member `YoLinkBinarySensorEntity.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/climate.py:87:14-38: Class member `YoLinkClimateEntity._attr_supported_features` overrides parent class `YoLinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/coordinator.py:28:5-17: Class member `YoLinkCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/cover.py:53:14-32: Class member `YoLinkCoverEntity._attr_device_class` overrides parent class `YoLinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/cover.py:54:14-38: Class member `YoLinkCoverEntity._attr_supported_features` overrides parent class `YoLinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/device_trigger.py:92:41-65: Cannot index into `dict[str, set[str]]` [bad-index] +ERROR homeassistant/components/yolink/light.py:40:5-32: Class member `YoLinkDimmerEntity._attr_supported_color_modes` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/number.py:52:9-12: Unexpected keyword argument `key` in function `YoLinkNumberTypeConfigEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/number.py:53:9-24: Unexpected keyword argument `translation_key` in function `YoLinkNumberTypeConfigEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/number.py:93:5-23: Class member `YoLinkNumberTypeConfigEntity.entity_description` overrides parent class `YoLinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/number.py:93:5-23: Class member `YoLinkNumberTypeConfigEntity.entity_description` overrides parent class `NumberEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/select.py:54:9-12: Unexpected keyword argument `key` in function `YoLinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/select.py:56:9-24: Unexpected keyword argument `translation_key` in function `YoLinkSelectEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/select.py:86:5-23: Class member `YoLinkSelectEntity.entity_description` overrides parent class `YoLinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/select.py:86:5-23: Class member `YoLinkSelectEntity.entity_description` overrides parent class `SelectEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/sensor.py:188:9-12: Unexpected keyword argument `key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:197:9-12: Unexpected keyword argument `key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:207:9-12: Unexpected keyword argument `key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:216:9-12: Unexpected keyword argument `key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:224:9-12: Unexpected keyword argument `key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:229:9-24: Unexpected keyword argument `entity_category` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:230:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:234:9-12: Unexpected keyword argument `key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:235:9-24: Unexpected keyword argument `translation_key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:241:9-12: Unexpected keyword argument `key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:242:9-24: Unexpected keyword argument `translation_key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:249:9-12: Unexpected keyword argument `key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:250:9-24: Unexpected keyword argument `translation_key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:257:9-12: Unexpected keyword argument `key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:258:9-24: Unexpected keyword argument `translation_key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:265:9-12: Unexpected keyword argument `key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:271:9-12: Unexpected keyword argument `key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:272:9-24: Unexpected keyword argument `translation_key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:282:9-12: Unexpected keyword argument `key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:283:9-24: Unexpected keyword argument `translation_key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:293:9-12: Unexpected keyword argument `key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:294:9-24: Unexpected keyword argument `translation_key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:304:9-12: Unexpected keyword argument `key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:305:9-24: Unexpected keyword argument `translation_key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:314:9-12: Unexpected keyword argument `key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:315:9-24: Unexpected keyword argument `translation_key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:324:9-12: Unexpected keyword argument `key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:332:9-12: Unexpected keyword argument `key` in function `YoLinkSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/sensor.py:370:5-23: Class member `YoLinkSensorEntity.entity_description` overrides parent class `YoLinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/sensor.py:370:5-23: Class member `YoLinkSensorEntity.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/services.py:43:16-21: `entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/yolink/services.py:43:33-38: `entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/yolink/services.py:48:44-49: `entry` may be uninitialized [unbound-name] +ERROR homeassistant/components/yolink/siren.py:37:9-12: Unexpected keyword argument `key` in function `YoLinkSirenEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/siren.py:71:5-23: Class member `YoLinkSirenEntity.entity_description` overrides parent class `YoLinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/siren.py:71:5-23: Class member `YoLinkSirenEntity.entity_description` overrides parent class `SirenEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/siren.py:85:14-38: Class member `YoLinkSirenEntity._attr_supported_features` overrides parent class `YoLinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/switch.py:43:9-12: Unexpected keyword argument `key` in function `YoLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/switch.py:45:9-13: Unexpected keyword argument `name` in function `YoLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/switch.py:49:9-12: Unexpected keyword argument `key` in function `YoLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/switch.py:50:9-24: Unexpected keyword argument `translation_key` in function `YoLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/switch.py:51:9-13: Unexpected keyword argument `name` in function `YoLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/switch.py:55:9-12: Unexpected keyword argument `key` in function `YoLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/switch.py:56:9-13: Unexpected keyword argument `name` in function `YoLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/switch.py:61:9-12: Unexpected keyword argument `key` in function `YoLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/switch.py:62:9-24: Unexpected keyword argument `translation_key` in function `YoLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/switch.py:69:9-12: Unexpected keyword argument `key` in function `YoLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/switch.py:70:9-24: Unexpected keyword argument `translation_key` in function `YoLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/switch.py:80:9-12: Unexpected keyword argument `key` in function `YoLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/switch.py:81:9-24: Unexpected keyword argument `translation_key` in function `YoLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/switch.py:91:9-12: Unexpected keyword argument `key` in function `YoLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/switch.py:92:9-24: Unexpected keyword argument `translation_key` in function `YoLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/switch.py:99:9-12: Unexpected keyword argument `key` in function `YoLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/switch.py:100:9-24: Unexpected keyword argument `translation_key` in function `YoLinkSwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/switch.py:139:5-23: Class member `YoLinkSwitchEntity.entity_description` overrides parent class `YoLinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/switch.py:139:5-23: Class member `YoLinkSwitchEntity.entity_description` overrides parent class `SwitchEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/switch.py:174:41-45: `None` is not assignable to `ClientRequest` [bad-assignment] +ERROR homeassistant/components/yolink/valve.py:60:9-12: Unexpected keyword argument `key` in function `YoLinkValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/valve.py:61:9-24: Unexpected keyword argument `translation_key` in function `YoLinkValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/valve.py:69:9-12: Unexpected keyword argument `key` in function `YoLinkValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/valve.py:70:9-24: Unexpected keyword argument `translation_key` in function `YoLinkValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/valve.py:79:9-12: Unexpected keyword argument `key` in function `YoLinkValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/valve.py:80:9-24: Unexpected keyword argument `translation_key` in function `YoLinkValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/valve.py:89:9-12: Unexpected keyword argument `key` in function `YoLinkValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/valve.py:90:9-24: Unexpected keyword argument `translation_key` in function `YoLinkValveEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/yolink/valve.py:132:5-23: Class member `YoLinkValveEntity.entity_description` overrides parent class `YoLinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/valve.py:132:5-23: Class member `YoLinkValveEntity.entity_description` overrides parent class `ValveEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/yolink/valve.py:142:14-38: Class member `YoLinkValveEntity._attr_supported_features` overrides parent class `YoLinkEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/youless/__init__.py:26:43-57: Argument `BoundMethod[YoulessAPI, (self: YoulessAPI) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/youless/config_flow.py:35:56-70: Argument `BoundMethod[YoulessAPI, (self: YoulessAPI) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/youless/coordinator.py:18:5-17: Class member `YouLessCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/youless/coordinator.py:34:48-66: Argument `BoundMethod[YoulessAPI, (self: YoulessAPI) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/youless/sensor.py:44:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:46:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:55:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:57:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:64:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:66:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:77:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:79:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:80:9-33: Unexpected keyword argument `translation_placeholders` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:89:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:91:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:92:9-33: Unexpected keyword argument `translation_placeholders` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:101:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:103:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:114:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:116:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:117:9-33: Unexpected keyword argument `translation_placeholders` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:124:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:126:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:127:9-33: Unexpected keyword argument `translation_placeholders` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:136:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:138:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:139:9-33: Unexpected keyword argument `translation_placeholders` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:148:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:150:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:151:9-33: Unexpected keyword argument `translation_placeholders` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:158:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:160:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:161:9-33: Unexpected keyword argument `translation_placeholders` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:170:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:172:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:173:9-33: Unexpected keyword argument `translation_placeholders` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:178:28-49: Object of class `NoneType` has no attribute `current` [missing-attribute] +ERROR homeassistant/components/youless/sensor.py:182:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:184:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:185:9-33: Unexpected keyword argument `translation_placeholders` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:192:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:194:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:195:9-33: Unexpected keyword argument `translation_placeholders` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:204:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:206:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:207:9-33: Unexpected keyword argument `translation_placeholders` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:212:28-49: Object of class `NoneType` has no attribute `current` [missing-attribute] +ERROR homeassistant/components/youless/sensor.py:216:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:218:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:226:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:228:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:237:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:239:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:248:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:250:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:251:9-33: Unexpected keyword argument `translation_placeholders` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:262:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:264:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:265:9-33: Unexpected keyword argument `translation_placeholders` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:276:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:278:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:289:9-12: Unexpected keyword argument `key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:291:9-24: Unexpected keyword argument `translation_key` in function `YouLessSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youless/sensor.py:326:5-23: Class member `YouLessSensor.entity_description` overrides parent class `YouLessEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/youless/sensor.py:326:5-23: Class member `YouLessSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/youtube/__init__.py:66:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/youtube/config_flow.py:52:9-31: Class member `OAuth2FlowHandler.async_get_options_flow` overrides parent class `AbstractOAuth2FlowHandler` in an inconsistent manner [bad-override] +ERROR homeassistant/components/youtube/coordinator.py:36:5-17: Class member `YouTubeDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/youtube/sensor.py:47:9-12: Unexpected keyword argument `key` in function `YouTubeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youtube/sensor.py:48:9-24: Unexpected keyword argument `translation_key` in function `YouTubeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youtube/sensor.py:58:9-12: Unexpected keyword argument `key` in function `YouTubeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youtube/sensor.py:59:9-24: Unexpected keyword argument `translation_key` in function `YouTubeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youtube/sensor.py:68:9-12: Unexpected keyword argument `key` in function `YouTubeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youtube/sensor.py:69:9-24: Unexpected keyword argument `translation_key` in function `YouTubeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/youtube/sensor.py:99:5-23: Class member `YouTubeSensor.entity_description` overrides parent class `YouTubeChannelEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/youtube/sensor.py:99:5-23: Class member `YouTubeSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zabbix/__init__.py:15:1-54: Could not find import of `zabbix_utils` [missing-import] +ERROR homeassistant/components/zabbix/__init__.py:16:1-69: Could not find import of `zabbix_utils.exceptions` [missing-import] +ERROR homeassistant/components/zabbix/sensor.py:10:1-35: Could not find import of `zabbix_utils` [missing-import] +ERROR homeassistant/components/zamg/__init__.py:37:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/zamg/coordinator.py:19:5-17: Class member `ZamgDataUpdateCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zamg/coordinator.py:20:5-9: Class member `ZamgDataUpdateCoordinator.data` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zamg/coordinator.py:51:21-27: `dict[Unknown, Unknown] | None` is not assignable to attribute `data` with type `dict[Unknown, Unknown]` [bad-assignment] +ERROR homeassistant/components/zamg/coordinator.py:54:16-22: Returned type `dict[Unknown, Unknown] | None` is not assignable to declared return type `ZamgData` [bad-return] +ERROR homeassistant/components/zamg/sensor.py:51:9-12: Unexpected keyword argument `key` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:52:9-13: Unexpected keyword argument `name` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:59:9-12: Unexpected keyword argument `key` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:60:9-13: Unexpected keyword argument `name` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:67:9-12: Unexpected keyword argument `key` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:68:9-13: Unexpected keyword argument `name` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:75:9-12: Unexpected keyword argument `key` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:76:9-13: Unexpected keyword argument `name` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:83:9-12: Unexpected keyword argument `key` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:84:9-13: Unexpected keyword argument `name` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:91:9-12: Unexpected keyword argument `key` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:92:9-13: Unexpected keyword argument `name` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:99:9-12: Unexpected keyword argument `key` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:100:9-13: Unexpected keyword argument `name` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:106:9-12: Unexpected keyword argument `key` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:107:9-13: Unexpected keyword argument `name` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:113:9-12: Unexpected keyword argument `key` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:114:9-13: Unexpected keyword argument `name` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:121:9-12: Unexpected keyword argument `key` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:122:9-13: Unexpected keyword argument `name` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:129:9-12: Unexpected keyword argument `key` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:130:9-13: Unexpected keyword argument `name` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:137:9-12: Unexpected keyword argument `key` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:138:9-13: Unexpected keyword argument `name` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:145:9-12: Unexpected keyword argument `key` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:146:9-13: Unexpected keyword argument `name` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:153:9-12: Unexpected keyword argument `key` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:154:9-13: Unexpected keyword argument `name` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:161:9-12: Unexpected keyword argument `key` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:162:9-13: Unexpected keyword argument `name` in function `ZamgSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zamg/sensor.py:193:5-23: Class member `ZamgSensor.entity_description` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zamg/sensor.py:193:5-23: Class member `ZamgSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zamg/sensor.py:203:26-37: Argument `ZamgDataUpdateCoordinator` is not assignable to parameter `coordinator` with type `DataUpdateCoordinator[dict[str, Any]]` in function `homeassistant.helpers.update_coordinator.CoordinatorEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/zamg/sensor.py:232:16-235:10: Returned type `dict[str, str | Unknown | None]` is not assignable to declared return type `Mapping[str, str]` [bad-return] +ERROR homeassistant/components/zamg/sensor.py:234:27-38: `update_time` may be uninitialized [unbound-name] +ERROR homeassistant/components/zamg/weather.py:47:26-37: Argument `ZamgDataUpdateCoordinator` is not assignable to parameter `coordinator` with type `DataUpdateCoordinator[dict[str, Any]]` in function `homeassistant.helpers.update_coordinator.CoordinatorEntity.__init__` [bad-argument-type] +ERROR homeassistant/components/zeroconf/discovery.py:164:8-21: `TYPE_CHECKING` may be uninitialized [unbound-name] +ERROR homeassistant/components/zeroconf/discovery.py:487:38-491:14: Argument `dict[str, str | Any | None]` is not assignable to parameter `translation_placeholders` with type `dict[str, str] | None` in function `homeassistant.helpers.issue_registry.async_create_issue` [bad-argument-type] +ERROR homeassistant/components/zestimate/sensor.py:97:32-43: Argument `None` is not assignable to parameter `x` with type `Buffer | SupportsFloat | SupportsIndex | str` in function `float.__new__` [bad-argument-type] +ERROR homeassistant/components/zestimate/sensor.py:137:21-28: `dict[str, Unknown]` is not assignable to attribute `data` with type `None` [bad-assignment] +ERROR homeassistant/components/zeversolar/__init__.py:26:12-21: `unload_ok` may be uninitialized [unbound-name] +ERROR homeassistant/components/zeversolar/coordinator.py:23:5-17: Class member `ZeversolarCoordinator.config_entry` overrides parent class `DataUpdateCoordinator` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zeversolar/sensor.py:35:9-12: Unexpected keyword argument `key` in function `ZeversolarEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zeversolar/sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `ZeversolarEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zeversolar/sensor.py:39:9-24: Unexpected keyword argument `entity_category` in function `ZeversolarEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zeversolar/sensor.py:44:9-12: Unexpected keyword argument `key` in function `ZeversolarEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zeversolar/sensor.py:45:9-24: Unexpected keyword argument `translation_key` in function `ZeversolarEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zeversolar/sensor.py:73:5-23: Class member `ZeversolarSensor.entity_description` overrides parent class `ZeversolarEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zeversolar/sensor.py:73:5-23: Class member `ZeversolarSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/__init__.py:120:57-79: Argument `Module[homeassistant.components.zha.homeassistant_hardware]` is not assignable to parameter `platform` with type `AsyncHardwareFirmwareInfoModule | SyncHardwareFirmwareInfoModule` in function `homeassistant.components.homeassistant_hardware.helpers.async_register_firmware_info_provider` [bad-argument-type] +ERROR homeassistant/components/zha/alarm_control_panel.py:71:5-26: Class member `ZHAAlarmControlPanel._attr_translation_key` overrides parent class `ZHAEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/alarm_control_panel.py:71:5-26: Class member `ZHAAlarmControlPanel._attr_translation_key` overrides parent class `AlarmControlPanelEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/alarm_control_panel.py:73:5-29: Class member `ZHAAlarmControlPanel._attr_supported_features` overrides parent class `ZHAEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/alarm_control_panel.py:83:16-57: Object of class `GroupEntity` has no attribute `code_arm_required` +Object of class `PlatformEntity` has no attribute `code_arm_required` [missing-attribute] +ERROR homeassistant/components/zha/alarm_control_panel.py:88:15-57: Object of class `GroupEntity` has no attribute `async_alarm_disarm` +Object of class `PlatformEntity` has no attribute `async_alarm_disarm` [missing-attribute] +ERROR homeassistant/components/zha/alarm_control_panel.py:94:15-59: Object of class `GroupEntity` has no attribute `async_alarm_arm_home` +Object of class `PlatformEntity` has no attribute `async_alarm_arm_home` [missing-attribute] +ERROR homeassistant/components/zha/alarm_control_panel.py:100:15-59: Object of class `GroupEntity` has no attribute `async_alarm_arm_away` +Object of class `PlatformEntity` has no attribute `async_alarm_arm_away` [missing-attribute] +ERROR homeassistant/components/zha/alarm_control_panel.py:106:15-60: Object of class `GroupEntity` has no attribute `async_alarm_arm_night` +Object of class `PlatformEntity` has no attribute `async_alarm_arm_night` [missing-attribute] +ERROR homeassistant/components/zha/alarm_control_panel.py:112:15-58: Object of class `GroupEntity` has no attribute `async_alarm_trigger` +Object of class `PlatformEntity` has no attribute `async_alarm_trigger` [missing-attribute] +ERROR homeassistant/components/zha/api.py:61:27-69: No matching overload found for function `max` called with arguments: (BackupManager, key=(b: Unknown) -> Unknown) [no-matching-overload] +ERROR homeassistant/components/zha/binary_sensor.py:52:18-36: Class member `BinarySensor._attr_device_class` overrides parent class `ZHAEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/binary_sensor.py:59:16-45: Object of class `GroupEntity` has no attribute `is_on` +Object of class `PlatformEntity` has no attribute `is_on` [missing-attribute] +ERROR homeassistant/components/zha/button.py:53:18-36: Class member `ZHAButton._attr_device_class` overrides parent class `ZHAEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/button.py:60:15-50: Object of class `GroupEntity` has no attribute `async_press` +Object of class `PlatformEntity` has no attribute `async_press` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:90:5-26: Class member `Thermostat._attr_translation_key` overrides parent class `ZHAEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/climate.py:90:5-26: Class member `Thermostat._attr_translation_key` overrides parent class `ClimateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/climate.py:96:51-85: Object of class `GroupEntity` has no attribute `hvac_modes` +Object of class `PlatformEntity` has no attribute `hvac_modes` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:99:13-46: Object of class `GroupEntity` has no attribute `hvac_mode` +Object of class `PlatformEntity` has no attribute `hvac_mode` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:102:13-48: Object of class `GroupEntity` has no attribute `hvac_action` +Object of class `PlatformEntity` has no attribute `hvac_action` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:107:13-55: Object of class `GroupEntity` has no attribute `supported_features` +Object of class `PlatformEntity` has no attribute `supported_features` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:127:14-38: Class member `Thermostat._attr_supported_features` overrides parent class `ZHAEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/climate.py:150:16-59: Object of class `GroupEntity` has no attribute `current_temperature` +Object of class `PlatformEntity` has no attribute `current_temperature` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:155:16-48: Object of class `GroupEntity` has no attribute `fan_mode` +Object of class `PlatformEntity` has no attribute `fan_mode` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:160:16-49: Object of class `GroupEntity` has no attribute `fan_modes` +Object of class `PlatformEntity` has no attribute `fan_modes` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:165:16-51: Object of class `GroupEntity` has no attribute `preset_mode` +Object of class `PlatformEntity` has no attribute `preset_mode` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:170:16-52: Object of class `GroupEntity` has no attribute `preset_modes` +Object of class `PlatformEntity` has no attribute `preset_modes` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:175:16-58: Object of class `GroupEntity` has no attribute `target_temperature` +Object of class `PlatformEntity` has no attribute `target_temperature` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:180:16-63: Object of class `GroupEntity` has no attribute `target_temperature_high` +Object of class `PlatformEntity` has no attribute `target_temperature_high` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:185:16-62: Object of class `GroupEntity` has no attribute `target_temperature_low` +Object of class `PlatformEntity` has no attribute `target_temperature_low` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:190:16-48: Object of class `GroupEntity` has no attribute `max_temp` +Object of class `PlatformEntity` has no attribute `max_temp` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:195:16-48: Object of class `GroupEntity` has no attribute `min_temp` +Object of class `PlatformEntity` has no attribute `min_temp` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:201:13-46: Object of class `GroupEntity` has no attribute `hvac_mode` +Object of class `PlatformEntity` has no attribute `hvac_mode` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:204:13-48: Object of class `GroupEntity` has no attribute `hvac_action` +Object of class `PlatformEntity` has no attribute `hvac_action` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:211:15-57: Object of class `GroupEntity` has no attribute `async_set_fan_mode` +Object of class `PlatformEntity` has no attribute `async_set_fan_mode` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:217:15-58: Object of class `GroupEntity` has no attribute `async_set_hvac_mode` +Object of class `PlatformEntity` has no attribute `async_set_hvac_mode` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:223:15-60: Object of class `GroupEntity` has no attribute `async_set_preset_mode` +Object of class `PlatformEntity` has no attribute `async_set_preset_mode` [missing-attribute] +ERROR homeassistant/components/zha/climate.py:229:15-60: Object of class `GroupEntity` has no attribute `async_set_temperature` +Object of class `PlatformEntity` has no attribute `async_set_temperature` [missing-attribute] +ERROR homeassistant/components/zha/config_flow.py:134:52-69: Argument `() -> Sequence[USBDevice]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/zha/config_flow.py:206:9-13: Class member `BaseZhaFlow.hass` overrides parent class `ConfigEntryBaseFlow` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/config_flow.py:251:61-89: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[PathLike[@_]]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/zha/cover.py:66:18-36: Class member `ZhaCover._attr_device_class` overrides parent class `ZHAEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/cover.py:71:47-89: Object of class `GroupEntity` has no attribute `supported_features` +Object of class `PlatformEntity` has no attribute `supported_features` [missing-attribute] +ERROR homeassistant/components/zha/cover.py:90:14-38: Class member `ZhaCover._attr_supported_features` overrides parent class `ZHAEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/cover.py:95:16-49: Object of class `GroupEntity` has no attribute `is_closed` +Object of class `PlatformEntity` has no attribute `is_closed` [missing-attribute] +ERROR homeassistant/components/zha/cover.py:100:16-50: Object of class `GroupEntity` has no attribute `is_opening` +Object of class `PlatformEntity` has no attribute `is_opening` [missing-attribute] +ERROR homeassistant/components/zha/cover.py:105:16-50: Object of class `GroupEntity` has no attribute `is_closing` +Object of class `PlatformEntity` has no attribute `is_closing` [missing-attribute] +ERROR homeassistant/components/zha/cover.py:110:16-62: Object of class `GroupEntity` has no attribute `current_cover_position` +Object of class `PlatformEntity` has no attribute `current_cover_position` [missing-attribute] +ERROR homeassistant/components/zha/cover.py:115:16-67: Object of class `GroupEntity` has no attribute `current_cover_tilt_position` +Object of class `PlatformEntity` has no attribute `current_cover_tilt_position` [missing-attribute] +ERROR homeassistant/components/zha/cover.py:120:15-55: Object of class `GroupEntity` has no attribute `async_open_cover` +Object of class `PlatformEntity` has no attribute `async_open_cover` [missing-attribute] +ERROR homeassistant/components/zha/cover.py:126:15-60: Object of class `GroupEntity` has no attribute `async_open_cover_tilt` +Object of class `PlatformEntity` has no attribute `async_open_cover_tilt` [missing-attribute] +ERROR homeassistant/components/zha/cover.py:132:15-56: Object of class `GroupEntity` has no attribute `async_close_cover` +Object of class `PlatformEntity` has no attribute `async_close_cover` [missing-attribute] +ERROR homeassistant/components/zha/cover.py:138:15-61: Object of class `GroupEntity` has no attribute `async_close_cover_tilt` +Object of class `PlatformEntity` has no attribute `async_close_cover_tilt` [missing-attribute] +ERROR homeassistant/components/zha/cover.py:144:15-63: Object of class `GroupEntity` has no attribute `async_set_cover_position` +Object of class `PlatformEntity` has no attribute `async_set_cover_position` [missing-attribute] +ERROR homeassistant/components/zha/cover.py:152:15-68: Object of class `GroupEntity` has no attribute `async_set_cover_tilt_position` +Object of class `PlatformEntity` has no attribute `async_set_cover_tilt_position` [missing-attribute] +ERROR homeassistant/components/zha/cover.py:160:15-55: Object of class `GroupEntity` has no attribute `async_stop_cover` +Object of class `PlatformEntity` has no attribute `async_stop_cover` [missing-attribute] +ERROR homeassistant/components/zha/cover.py:166:15-60: Object of class `GroupEntity` has no attribute `async_stop_cover_tilt` +Object of class `PlatformEntity` has no attribute `async_stop_cover_tilt` [missing-attribute] +ERROR homeassistant/components/zha/cover.py:178:9-66: Object of class `GroupEntity` has no attribute `restore_external_state_attributes` +Object of class `PlatformEntity` has no attribute `restore_external_state_attributes` [missing-attribute] +ERROR homeassistant/components/zha/device_tracker.py:49:5-15: Class member `ZHADeviceScannerEntity._attr_name` overrides parent class `ScannerEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/device_tracker.py:49:5-15: Class member `ZHADeviceScannerEntity._attr_name` overrides parent class `ZHAEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/device_tracker.py:54:16-52: Object of class `GroupEntity` has no attribute `is_connected` +Object of class `PlatformEntity` has no attribute `is_connected` [missing-attribute] +ERROR homeassistant/components/zha/device_tracker.py:62:16-53: Object of class `GroupEntity` has no attribute `battery_level` +Object of class `PlatformEntity` has no attribute `battery_level` [missing-attribute] +ERROR homeassistant/components/zha/device_tracker.py:65:9-20: `device_info` is declared as final in parent class `ScannerEntity` [bad-override] +ERROR homeassistant/components/zha/fan.py:49:5-26: Class member `ZhaFan._attr_translation_key` overrides parent class `FanEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/fan.py:49:5-26: Class member `ZhaFan._attr_translation_key` overrides parent class `ZHAEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/fan.py:55:45-87: Object of class `GroupEntity` has no attribute `supported_features` +Object of class `PlatformEntity` has no attribute `supported_features` [missing-attribute] +ERROR homeassistant/components/zha/fan.py:70:14-38: Class member `ZhaFan._attr_supported_features` overrides parent class `ZHAEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/fan.py:75:16-51: Object of class `GroupEntity` has no attribute `preset_mode` +Object of class `PlatformEntity` has no attribute `preset_mode` [missing-attribute] +ERROR homeassistant/components/zha/fan.py:80:16-52: Object of class `GroupEntity` has no attribute `preset_modes` +Object of class `PlatformEntity` has no attribute `preset_modes` [missing-attribute] +ERROR homeassistant/components/zha/fan.py:85:16-61: Object of class `GroupEntity` has no attribute `default_on_percentage` +Object of class `PlatformEntity` has no attribute `default_on_percentage` [missing-attribute] +ERROR homeassistant/components/zha/fan.py:90:16-51: Object of class `GroupEntity` has no attribute `speed_range` +Object of class `PlatformEntity` has no attribute `speed_range` [missing-attribute] +ERROR homeassistant/components/zha/fan.py:95:16-51: Object of class `GroupEntity` has no attribute `speed_count` +Object of class `PlatformEntity` has no attribute `speed_count` [missing-attribute] +ERROR homeassistant/components/zha/fan.py:105:15-52: Object of class `GroupEntity` has no attribute `async_turn_on` +Object of class `PlatformEntity` has no attribute `async_turn_on` [missing-attribute] +ERROR homeassistant/components/zha/fan.py:113:15-53: Object of class `GroupEntity` has no attribute `async_turn_off` +Object of class `PlatformEntity` has no attribute `async_turn_off` [missing-attribute] +ERROR homeassistant/components/zha/fan.py:119:15-59: Object of class `GroupEntity` has no attribute `async_set_percentage` +Object of class `PlatformEntity` has no attribute `async_set_percentage` [missing-attribute] +ERROR homeassistant/components/zha/fan.py:125:15-60: Object of class `GroupEntity` has no attribute `async_set_preset_mode` +Object of class `PlatformEntity` has no attribute `async_set_preset_mode` [missing-attribute] +ERROR homeassistant/components/zha/fan.py:131:16-50: Object of class `GroupEntity` has no attribute `percentage` +Object of class `PlatformEntity` has no attribute `percentage` [missing-attribute] +ERROR homeassistant/components/zha/helpers.py:402:35-56: No matching overload found for function `dict.get` called with arguments: (int | Unknown | None) [no-matching-overload] +ERROR homeassistant/components/zha/helpers.py:533:44-60: Module `logging.handlers` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/components/zha/helpers.py:603:69-79: Cannot index into `dict[tuple[Platform, str], PlatformEntity]` [bad-index] +ERROR homeassistant/components/zha/helpers.py:615:65-70: Argument `Group` is not assignable to parameter `group_info` with type `GroupInfo` in function `ZHAGatewayProxy._async_get_or_create_group_proxy` [bad-argument-type] +ERROR homeassistant/components/zha/helpers.py:701:67-77: Argument `Device | None` is not assignable to parameter `zha_device` with type `Device` in function `ZHAGatewayProxy._async_get_or_create_device_proxy` [bad-argument-type] +ERROR homeassistant/components/zha/helpers.py:821:12-29: Object of class `ZHAEntity` has no attribute `zha_device` [missing-attribute] +ERROR homeassistant/components/zha/helpers.py:822:51-68: Object of class `ZHAEntity` has no attribute `zha_device` [missing-attribute] +ERROR homeassistant/components/zha/helpers.py:823:33-50: Object of class `ZHAEntity` has no attribute `zha_device` [missing-attribute] +ERROR homeassistant/components/zha/helpers.py:860:16-32: `zha_device_proxy` may be uninitialized [unbound-name] +ERROR homeassistant/components/zha/helpers.py:878:13-53: Object of class `NoneType` has no attribute `ieee` [missing-attribute] +ERROR homeassistant/components/zha/helpers.py:1145:40-60: Class `Enum` has no class attribute `min_value` +Class `Flag` has no class attribute `min_value` [missing-attribute] +ERROR homeassistant/components/zha/helpers.py:1145:62-82: Class `Enum` has no class attribute `max_value` +Class `Flag` has no class attribute `max_value` [missing-attribute] +ERROR homeassistant/components/zha/helpers.py:1164:21-68: `|=` is not supported between `int` and `Flag` [unsupported-operation] +ERROR homeassistant/components/zha/helpers.py:1304:16-27: Cannot set item in `dict[Literal['database_path'], Any]` [unsupported-operation] +ERROR homeassistant/components/zha/helpers.py:1311:41-52: Cannot index into `dict[Literal['database_path'], Any]` [bad-index] +ERROR homeassistant/components/zha/helpers.py:1312:27-41: No matching overload found for function `dict.get` called with arguments: (Literal['network'], dict[@_, @_]) [no-matching-overload] +ERROR homeassistant/components/zha/helpers.py:1314:30-44: No matching overload found for function `typing.MutableMapping.setdefault` called with arguments: (Literal['network'], dict[@_, @_]) [no-matching-overload] +ERROR homeassistant/components/zha/helpers.py:1343:25-36: Cannot index into `dict[Literal['database_path'], Any]` [bad-index] +ERROR homeassistant/components/zha/helpers.py:1344:29-40: Cannot index into `dict[Literal['database_path'], Any]` [bad-index] +ERROR homeassistant/components/zha/helpers.py:1345:33-44: Cannot index into `dict[Literal['database_path'], Any]` [bad-index] +ERROR homeassistant/components/zha/helpers.py:1363:22-32: Argument `dict[Literal['database_path'], Any] | Any` is not assignable to parameter `zigpy_config` with type `dict[str, Any]` in function `zha.application.helpers.ZHAData.__init__` [bad-argument-type] +ERROR homeassistant/components/zha/light.py:86:27-72: Object of class `GroupEntity` has no attribute `supported_color_modes` +Object of class `PlatformEntity` has no attribute `supported_color_modes` [missing-attribute] +ERROR homeassistant/components/zha/light.py:101:47-89: Object of class `GroupEntity` has no attribute `supported_features` +Object of class `PlatformEntity` has no attribute `supported_features` [missing-attribute] +ERROR homeassistant/components/zha/light.py:110:14-38: Class member `Light._attr_supported_features` overrides parent class `ZHAEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/light.py:124:16-45: Object of class `GroupEntity` has no attribute `is_on` +Object of class `PlatformEntity` has no attribute `is_on` [missing-attribute] +ERROR homeassistant/components/zha/light.py:129:16-50: Object of class `GroupEntity` has no attribute `brightness` +Object of class `PlatformEntity` has no attribute `brightness` [missing-attribute] +ERROR homeassistant/components/zha/light.py:135:13-47: Object of class `GroupEntity` has no attribute `min_mireds` +Object of class `PlatformEntity` has no attribute `min_mireds` [missing-attribute] +ERROR homeassistant/components/zha/light.py:142:13-47: Object of class `GroupEntity` has no attribute `max_mireds` +Object of class `PlatformEntity` has no attribute `max_mireds` [missing-attribute] +ERROR homeassistant/components/zha/light.py:148:16-48: Object of class `GroupEntity` has no attribute `xy_color` +Object of class `PlatformEntity` has no attribute `xy_color` [missing-attribute] +ERROR homeassistant/components/zha/light.py:155:27-61: Object of class `GroupEntity` has no attribute `color_temp` +Object of class `PlatformEntity` has no attribute `color_temp` [missing-attribute] +ERROR homeassistant/components/zha/light.py:162:12-46: Object of class `GroupEntity` has no attribute `color_mode` +Object of class `PlatformEntity` has no attribute `color_mode` [missing-attribute] +ERROR homeassistant/components/zha/light.py:164:37-71: Cannot index into `dict[zha.application.platforms.light.const.ColorMode, homeassistant.components.light.const.ColorMode]` [bad-index] +ERROR homeassistant/components/zha/light.py:169:16-51: Object of class `GroupEntity` has no attribute `effect_list` +Object of class `PlatformEntity` has no attribute `effect_list` [missing-attribute] +ERROR homeassistant/components/zha/light.py:174:16-46: Object of class `GroupEntity` has no attribute `effect` +Object of class `PlatformEntity` has no attribute `effect` [missing-attribute] +ERROR homeassistant/components/zha/light.py:184:15-52: Object of class `GroupEntity` has no attribute `async_turn_on` +Object of class `PlatformEntity` has no attribute `async_turn_on` [missing-attribute] +ERROR homeassistant/components/zha/light.py:197:15-53: Object of class `GroupEntity` has no attribute `async_turn_off` +Object of class `PlatformEntity` has no attribute `async_turn_off` [missing-attribute] +ERROR homeassistant/components/zha/light.py:210:9-66: Object of class `GroupEntity` has no attribute `restore_external_state_attributes` +Object of class `PlatformEntity` has no attribute `restore_external_state_attributes` [missing-attribute] +ERROR homeassistant/components/zha/lock.py:90:5-26: Class member `ZhaDoorLock._attr_translation_key` overrides parent class `ZHAEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/lock.py:90:5-26: Class member `ZhaDoorLock._attr_translation_key` overrides parent class `LockEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/lock.py:95:16-49: Object of class `GroupEntity` has no attribute `is_locked` +Object of class `PlatformEntity` has no attribute `is_locked` [missing-attribute] +ERROR homeassistant/components/zha/lock.py:100:15-49: Object of class `GroupEntity` has no attribute `async_lock` +Object of class `PlatformEntity` has no attribute `async_lock` [missing-attribute] +ERROR homeassistant/components/zha/lock.py:106:15-51: Object of class `GroupEntity` has no attribute `async_unlock` +Object of class `PlatformEntity` has no attribute `async_unlock` [missing-attribute] +ERROR homeassistant/components/zha/lock.py:112:15-63: Object of class `GroupEntity` has no attribute `async_set_lock_user_code` +Object of class `PlatformEntity` has no attribute `async_set_lock_user_code` [missing-attribute] +ERROR homeassistant/components/zha/lock.py:120:15-66: Object of class `GroupEntity` has no attribute `async_enable_lock_user_code` +Object of class `PlatformEntity` has no attribute `async_enable_lock_user_code` [missing-attribute] +ERROR homeassistant/components/zha/lock.py:126:15-67: Object of class `GroupEntity` has no attribute `async_disable_lock_user_code` +Object of class `PlatformEntity` has no attribute `async_disable_lock_user_code` [missing-attribute] +ERROR homeassistant/components/zha/lock.py:132:15-65: Object of class `GroupEntity` has no attribute `async_clear_lock_user_code` +Object of class `PlatformEntity` has no attribute `async_clear_lock_user_code` [missing-attribute] +ERROR homeassistant/components/zha/lock.py:138:9-66: Object of class `GroupEntity` has no attribute `restore_external_state_attributes` +Object of class `PlatformEntity` has no attribute `restore_external_state_attributes` [missing-attribute] +ERROR homeassistant/components/zha/logbook.py:67:41-53: `ATTR_COMMAND` may be uninitialized [unbound-name] +ERROR homeassistant/components/zha/logbook.py:80:26-33: `message` may be uninitialized [unbound-name] +ERROR homeassistant/components/zha/logbook.py:84:36-43: `message` may be uninitialized [unbound-name] +ERROR homeassistant/components/zha/number.py:51:16-52: Object of class `GroupEntity` has no attribute `native_value` +Object of class `PlatformEntity` has no attribute `native_value` [missing-attribute] +ERROR homeassistant/components/zha/number.py:56:16-56: Object of class `GroupEntity` has no attribute `native_min_value` +Object of class `PlatformEntity` has no attribute `native_min_value` [missing-attribute] +ERROR homeassistant/components/zha/number.py:61:16-56: Object of class `GroupEntity` has no attribute `native_max_value` +Object of class `PlatformEntity` has no attribute `native_max_value` [missing-attribute] +ERROR homeassistant/components/zha/number.py:66:16-51: Object of class `GroupEntity` has no attribute `native_step` +Object of class `PlatformEntity` has no attribute `native_step` [missing-attribute] +ERROR homeassistant/components/zha/number.py:71:16-66: Object of class `GroupEntity` has no attribute `native_unit_of_measurement` +Object of class `PlatformEntity` has no attribute `native_unit_of_measurement` [missing-attribute] +ERROR homeassistant/components/zha/number.py:76:15-61: Object of class `GroupEntity` has no attribute `async_set_native_value` +Object of class `PlatformEntity` has no attribute `async_set_native_value` [missing-attribute] +ERROR homeassistant/components/zha/radio_manager.py:425:41-47: `backup` may be uninitialized [unbound-name] +ERROR homeassistant/components/zha/repairs/network_settings_inconsistent.py:100:14-104:10: Argument `dict[str, dict[str, Any] | float | int | str | None]` is not assignable to parameter `data` with type `dict[str, float | int | str | None] | None` in function `homeassistant.helpers.issue_registry.async_create_issue` [bad-argument-type] +ERROR homeassistant/components/zha/select.py:56:30-73: Object of class `BaseEntityInfo` has no attribute `options` [missing-attribute] +ERROR homeassistant/components/zha/select.py:61:16-54: Object of class `GroupEntity` has no attribute `current_option` +Object of class `PlatformEntity` has no attribute `current_option` [missing-attribute] +ERROR homeassistant/components/zha/select.py:66:15-58: Object of class `GroupEntity` has no attribute `async_select_option` +Object of class `PlatformEntity` has no attribute `async_select_option` [missing-attribute] +ERROR homeassistant/components/zha/select.py:73:13-70: Object of class `GroupEntity` has no attribute `restore_external_state_attributes` +Object of class `PlatformEntity` has no attribute `restore_external_state_attributes` [missing-attribute] +ERROR homeassistant/components/zha/sensor.py:109:18-36: Class member `Sensor._attr_device_class` overrides parent class `ZHAEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/sensor.py:141:12-58: Object of class `BaseEntityInfo` has no attribute `suggested_display_precision` [missing-attribute] +ERROR homeassistant/components/zha/sensor.py:143:17-63: `object` is not assignable to attribute `_attr_suggested_display_precision` with type `int | None` [bad-assignment] +ERROR homeassistant/components/zha/sensor.py:149:16-52: Object of class `GroupEntity` has no attribute `native_value` +Object of class `PlatformEntity` has no attribute `native_value` [missing-attribute] +ERROR homeassistant/components/zha/silabs_multiprotocol.py:52:32-70: No matching overload found for function `max` called with arguments: (Literal[0], float) [no-matching-overload] +ERROR homeassistant/components/zha/siren.py:77:47-89: Object of class `GroupEntity` has no attribute `supported_features` +Object of class `PlatformEntity` has no attribute `supported_features` [missing-attribute] +ERROR homeassistant/components/zha/siren.py:90:14-38: Class member `ZHASiren._attr_supported_features` overrides parent class `ZHAEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/siren.py:95:16-45: Object of class `GroupEntity` has no attribute `is_on` +Object of class `PlatformEntity` has no attribute `is_on` [missing-attribute] +ERROR homeassistant/components/zha/siren.py:100:15-52: Object of class `GroupEntity` has no attribute `async_turn_on` +Object of class `PlatformEntity` has no attribute `async_turn_on` [missing-attribute] +ERROR homeassistant/components/zha/siren.py:110:15-53: Object of class `GroupEntity` has no attribute `async_turn_off` +Object of class `PlatformEntity` has no attribute `async_turn_off` [missing-attribute] +ERROR homeassistant/components/zha/switch.py:52:16-45: Object of class `GroupEntity` has no attribute `is_on` +Object of class `PlatformEntity` has no attribute `is_on` [missing-attribute] +ERROR homeassistant/components/zha/switch.py:57:15-52: Object of class `GroupEntity` has no attribute `async_turn_on` +Object of class `PlatformEntity` has no attribute `async_turn_on` [missing-attribute] +ERROR homeassistant/components/zha/switch.py:63:15-53: Object of class `GroupEntity` has no attribute `async_turn_off` +Object of class `PlatformEntity` has no attribute `async_turn_off` [missing-attribute] +ERROR homeassistant/components/zha/update.py:108:5-23: Class member `ZHAFirmwareUpdateEntity._attr_device_class` overrides parent class `ZHAEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/update.py:108:5-23: Class member `ZHAFirmwareUpdateEntity._attr_device_class` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/update.py:109:5-29: Class member `ZHAFirmwareUpdateEntity._attr_supported_features` overrides parent class `ZHAEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/update.py:109:5-29: Class member `ZHAFirmwareUpdateEntity._attr_supported_features` overrides parent class `CoordinatorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zha/update.py:128:16-57: Object of class `GroupEntity` has no attribute `installed_version` +Object of class `PlatformEntity` has no attribute `installed_version` [missing-attribute] +ERROR homeassistant/components/zha/update.py:136:16-51: Object of class `GroupEntity` has no attribute `in_progress` +Object of class `PlatformEntity` has no attribute `in_progress` [missing-attribute] +ERROR homeassistant/components/zha/update.py:146:16-57: Object of class `GroupEntity` has no attribute `update_percentage` +Object of class `PlatformEntity` has no attribute `update_percentage` [missing-attribute] +ERROR homeassistant/components/zha/update.py:151:16-54: Object of class `GroupEntity` has no attribute `latest_version` +Object of class `PlatformEntity` has no attribute `latest_version` [missing-attribute] +ERROR homeassistant/components/zha/update.py:160:16-55: Object of class `GroupEntity` has no attribute `release_summary` +Object of class `PlatformEntity` has no attribute `release_summary` [missing-attribute] +ERROR homeassistant/components/zha/update.py:178:31-68: Object of class `GroupEntity` has no attribute `release_notes` +Object of class `PlatformEntity` has no attribute `release_notes` [missing-attribute] +ERROR homeassistant/components/zha/update.py:183:16-51: Object of class `GroupEntity` has no attribute `release_url` +Object of class `PlatformEntity` has no attribute `release_url` [missing-attribute] +ERROR homeassistant/components/zha/update.py:192:19-56: Object of class `GroupEntity` has no attribute `async_install` +Object of class `PlatformEntity` has no attribute `async_install` [missing-attribute] +ERROR homeassistant/components/zha/websocket_api.py:383:36-52: Object of class `Gateway` has no attribute `hass` [missing-attribute] +ERROR homeassistant/components/zha/websocket_api.py:392:36-52: Object of class `Gateway` has no attribute `hass` [missing-attribute] +ERROR homeassistant/components/zha/websocket_api.py:420:50-67: Argument `ZHAGatewayProxy` is not assignable to parameter `zha_gateway` with type `Gateway` in function `_get_entity_name` [bad-argument-type] +ERROR homeassistant/components/zha/websocket_api.py:422:29-46: Argument `ZHAGatewayProxy` is not assignable to parameter `zha_gateway` with type `Gateway` in function `_get_entity_original_name` [bad-argument-type] +ERROR homeassistant/components/zha/websocket_api.py:426:29-75: Object of class `GroupEntity` has no attribute `cluster_handlers` [missing-attribute] +ERROR homeassistant/components/zha/websocket_api.py:999:55-63: Argument `list[homeassistant.components.zha.websocket_api.ClusterBinding]` is not assignable to parameter `cluster_bindings` with type `list[zha.zigbee.device.ClusterBinding]` in function `zha.zigbee.device.Device.async_bind_to_group` [bad-argument-type] +ERROR homeassistant/components/zha/websocket_api.py:1023:59-67: Argument `list[homeassistant.components.zha.websocket_api.ClusterBinding]` is not assignable to parameter `cluster_bindings` with type `list[zha.zigbee.device.ClusterBinding]` in function `zha.zigbee.device.Device.async_unbind_from_group` [bad-argument-type] +ERROR homeassistant/components/zha/websocket_api.py:1444:23-49: Cannot index into `Endpoint` [bad-index] +ERROR homeassistant/components/zhong_hong/climate.py:9:1-49: Could not find import of `zhong_hong_hvac.hub` [missing-import] +ERROR homeassistant/components/zhong_hong/climate.py:10:1-55: Could not find import of `zhong_hong_hvac.hvac` [missing-import] +ERROR homeassistant/components/zhong_hong/climate.py:120:43-53: Argument `() -> Unknown` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/zhong_hong/climate.py:175:39-177:14: `HVACMode` is not assignable to attribute `_current_operation` with type `None` [bad-assignment] +ERROR homeassistant/components/zhong_hong/climate.py:200:20-43: Returned type `None` is not assignable to declared return type `HVACMode` [bad-return] +ERROR homeassistant/components/ziggo_mediabox_xl/media_player.py:9:1-46: Could not find import of `ziggo_mediabox_xl` [missing-import] +ERROR homeassistant/components/zimi/config_flow.py:47:25-29: `None` is not assignable to `ControlPoint` [bad-assignment] +ERROR homeassistant/components/zimi/cover.py:41:5-23: Class member `ZimiCover._attr_device_class` overrides parent class `ZimiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zimi/cover.py:42:5-29: Class member `ZimiCover._attr_supported_features` overrides parent class `ZimiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zimi/fan.py:41:5-29: Class member `ZimiFan._attr_supported_features` overrides parent class `ZimiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zimi/light.py:101:22-51: `*` is not supported between `None` and `Literal[255]` [unsupported-operation] +ERROR homeassistant/components/zimi/sensor.py:35:9-12: Unexpected keyword argument `key` in function `ZimiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zimi/sensor.py:36:9-24: Unexpected keyword argument `translation_key` in function `ZimiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zimi/sensor.py:42:9-12: Unexpected keyword argument `key` in function `ZimiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zimi/sensor.py:44:9-24: Unexpected keyword argument `entity_category` in function `ZimiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zimi/sensor.py:49:9-12: Unexpected keyword argument `key` in function `ZimiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zimi/sensor.py:55:9-12: Unexpected keyword argument `key` in function `ZimiSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zimi/sensor.py:84:5-23: Class member `ZimiSensor.entity_description` overrides parent class `ZimiEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zimi/sensor.py:84:5-23: Class member `ZimiSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zone/__init__.py:159:43-54: `zone_radius` is uninitialized [unbound-name] +ERROR homeassistant/components/zone/condition.py:69:8-20: Object of class `str` has no attribute `state` [missing-attribute] +ERROR homeassistant/components/zone/condition.py:75:16-33: Object of class `str` has no attribute `attributes` [missing-attribute] +ERROR homeassistant/components/zone/condition.py:76:17-34: Object of class `str` has no attribute `attributes` [missing-attribute] +ERROR homeassistant/components/zone/condition.py:89:9-17: Argument `State | str` is not assignable to parameter `zone` with type `State` in function `homeassistant.components.zone.in_zone` [bad-argument-type] +ERROR homeassistant/components/zone/condition.py:89:40-57: Object of class `str` has no attribute `attributes` [missing-attribute] +ERROR homeassistant/components/zoneminder/__init__.py:7:1-37: Could not find import of `zoneminder.zm` [missing-import] +ERROR homeassistant/components/zoneminder/binary_sensor.py:5:1-37: Could not find import of `zoneminder.zm` [missing-import] +ERROR homeassistant/components/zoneminder/camera.py:7:1-39: Could not find import of `zoneminder.monitor` [missing-import] +ERROR homeassistant/components/zoneminder/camera.py:8:1-37: Could not find import of `zoneminder.zm` [missing-import] +ERROR homeassistant/components/zoneminder/sensor.py:8:1-51: Could not find import of `zoneminder.monitor` [missing-import] +ERROR homeassistant/components/zoneminder/sensor.py:9:1-37: Could not find import of `zoneminder.zm` [missing-import] +ERROR homeassistant/components/zoneminder/sensor.py:33:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zoneminder/sensor.py:34:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zoneminder/sensor.py:37:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zoneminder/sensor.py:38:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zoneminder/sensor.py:41:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zoneminder/sensor.py:42:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zoneminder/sensor.py:45:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zoneminder/sensor.py:46:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zoneminder/sensor.py:49:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zoneminder/sensor.py:50:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zoneminder/switch.py:9:1-53: Could not find import of `zoneminder.monitor` [missing-import] +ERROR homeassistant/components/zoneminder/switch.py:10:1-37: Could not find import of `zoneminder.zm` [missing-import] +ERROR homeassistant/components/zwave_js/__init__.py:200:12-21: `use_addon` may be uninitialized [unbound-name] +ERROR homeassistant/components/zwave_js/__init__.py:295:29-46: Object of class `NoneType` has no attribute `controller` [missing-attribute] +ERROR homeassistant/components/zwave_js/__init__.py:311:12-24: `listen_error` may be uninitialized [unbound-name] +ERROR homeassistant/components/zwave_js/__init__.py:994:30-1003:14: No matching overload found for function `typing.MutableMapping.update` called with arguments: (dict[str, dict[str, Any] | int | str | None]) [no-matching-overload] +ERROR homeassistant/components/zwave_js/__init__.py:1005:30-1014:14: No matching overload found for function `typing.MutableMapping.update` called with arguments: (dict[str, dict[str, Any] | int | str]) [no-matching-overload] +ERROR homeassistant/components/zwave_js/binary_sensor.py:135:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:141:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:144:9-24: Unexpected keyword argument `entity_category` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:148:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:149:9-24: Unexpected keyword argument `entity_category` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:153:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:159:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:162:9-24: Unexpected keyword argument `entity_category` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:166:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:167:9-24: Unexpected keyword argument `entity_category` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:171:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:177:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:180:9-24: Unexpected keyword argument `entity_category` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:184:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:185:9-24: Unexpected keyword argument `entity_category` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:189:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:195:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:198:9-24: Unexpected keyword argument `entity_category` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:202:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:203:9-24: Unexpected keyword argument `entity_category` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:207:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:213:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:216:9-24: Unexpected keyword argument `entity_category` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:220:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:227:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:233:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:236:9-24: Unexpected keyword argument `entity_category` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:240:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:246:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:253:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:257:9-24: Unexpected keyword argument `entity_category` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:262:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:265:9-24: Unexpected keyword argument `entity_category` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:270:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:273:9-24: Unexpected keyword argument `entity_category` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:277:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:280:9-24: Unexpected keyword argument `entity_category` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:284:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:290:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:296:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:302:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:305:9-24: Unexpected keyword argument `entity_category` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:309:9-12: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:310:9-24: Unexpected keyword argument `entity_category` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:318:9-12: Unexpected keyword argument `key` in function `PropertyZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:328:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:329:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:330:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:333:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:334:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:335:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:338:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:340:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:343:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:344:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:345:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:348:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:349:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:350:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:353:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:354:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:355:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:495:18-36: Class member `ZWaveBooleanBinarySensor.entity_description` overrides parent class `ZWaveBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_js/binary_sensor.py:520:18-36: Class member `ZWaveNotificationBinarySensor.entity_description` overrides parent class `ZWaveBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_js/binary_sensor.py:539:5-23: Class member `ZWavePropertyBinarySensor.entity_description` overrides parent class `ZWaveBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_js/binary_sensor.py:539:5-23: Class member `ZWavePropertyBinarySensor.entity_description` overrides parent class `BinarySensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_js/binary_sensor.py:599:13-16: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:628:13-16: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:636:13-28: Unexpected keyword argument `entity_category` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:654:13-16: Unexpected keyword argument `key` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/binary_sensor.py:655:13-28: Unexpected keyword argument `entity_category` in function `NotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/button.py:68:7-29: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `ButtonEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/button.py:137:7-34: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `ButtonEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/climate.py:126:7-19: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `ClimateEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/config_flow.py:199:46-59: Argument `() -> dict[str, str]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/zwave_js/config_flow.py:496:16-35: Object of class `object` has no attribute `get` [missing-attribute] +ERROR homeassistant/components/zwave_js/config_flow.py:568:12-34: `current_config_entries` may be uninitialized [unbound-name] +ERROR homeassistant/components/zwave_js/cover.py:82:7-25: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `CoverEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/cover.py:96:14-38: Class member `CoverPositionMixin._attr_supported_features` overrides parent class `ZWaveBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_js/cover.py:97:13-100:46: `CoverEntityFeature | int` is not assignable to attribute `_attr_supported_features` with type `CoverEntityFeature | None` [bad-assignment] +ERROR homeassistant/components/zwave_js/cover.py:109:13-69: `|=` is not supported between `None` and `Literal[CoverEntityFeature.STOP]` [unsupported-operation] +ERROR homeassistant/components/zwave_js/cover.py:114:26-44: No matching overload found for function `min` called with arguments: (Literal[1], float) [no-matching-overload] +ERROR homeassistant/components/zwave_js/cover.py:188:7-21: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `CoverEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/cover.py:202:14-38: Class member `CoverTiltMixin._attr_supported_features` overrides parent class `ZWaveBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_js/cover.py:203:13-206:51: `CoverEntityFeature | int` is not assignable to attribute `_attr_supported_features` with type `CoverEntityFeature | None` [bad-assignment] +ERROR homeassistant/components/zwave_js/cover.py:215:13-74: `|=` is not supported between `None` and `Literal[CoverEntityFeature.STOP_TILT]` [unsupported-operation] +ERROR homeassistant/components/zwave_js/cover.py:220:26-44: No matching overload found for function `min` called with arguments: (Literal[1], float) [no-matching-overload] +ERROR homeassistant/components/zwave_js/cover.py:439:7-28: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `CoverEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/cover.py:442:5-29: Class member `ZwaveMotorizedBarrier._attr_supported_features` overrides parent class `ZWaveBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_js/cover.py:443:5-23: Class member `ZwaveMotorizedBarrier._attr_device_class` overrides parent class `ZWaveBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_js/discovery.py:1274:34-61: Argument `str | None` is not assignable to parameter `version` with type `str` in function `awesomeversion.awesomeversion.AwesomeVersion.__new__` [bad-argument-type] +ERROR homeassistant/components/zwave_js/discovery.py:1279:34-61: Argument `str | None` is not assignable to parameter `version` with type `str` in function `awesomeversion.awesomeversion.AwesomeVersion.__new__` [bad-argument-type] +ERROR homeassistant/components/zwave_js/entity.py:207:38-55: No matching overload found for function `str.join` called with arguments: (list[str | None]) [no-matching-overload] +ERROR homeassistant/components/zwave_js/event.py:71:7-23: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `EventEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/event.py:128:13-16: Unexpected keyword argument `key` in function `ValueNotificationZWaveJSEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/fan.py:77:7-15: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `FanEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/fan.py:80:5-29: Class member `ZwaveFan._attr_supported_features` overrides parent class `ZWaveBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_js/fan.py:310:7-25: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `FanEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/humidifier.py:52:5-8: Unexpected keyword argument `key` in function `ZwaveHumidifierEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/humidifier.py:61:5-8: Unexpected keyword argument `key` in function `ZwaveHumidifierEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/humidifier.py:118:5-23: Class member `ZWaveHumidifier.entity_description` overrides parent class `ZWaveBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_js/humidifier.py:118:5-23: Class member `ZWaveHumidifier.entity_description` overrides parent class `HumidifierEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_js/light.py:108:7-17: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `LightEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/light.py:517:21-24: `red` may be uninitialized [unbound-name] +ERROR homeassistant/components/zwave_js/light.py:518:25-30: `green` may be uninitialized [unbound-name] +ERROR homeassistant/components/zwave_js/light.py:519:25-29: `blue` may be uninitialized [unbound-name] +ERROR homeassistant/components/zwave_js/light.py:522:33-36: `red` may be uninitialized [unbound-name] +ERROR homeassistant/components/zwave_js/light.py:522:38-43: `green` may be uninitialized [unbound-name] +ERROR homeassistant/components/zwave_js/light.py:522:45-49: `blue` may be uninitialized [unbound-name] +ERROR homeassistant/components/zwave_js/light.py:531:21-24: `red` may be uninitialized [unbound-name] +ERROR homeassistant/components/zwave_js/light.py:532:25-30: `green` may be uninitialized [unbound-name] +ERROR homeassistant/components/zwave_js/light.py:533:25-29: `blue` may be uninitialized [unbound-name] +ERROR homeassistant/components/zwave_js/light.py:536:33-36: `red` may be uninitialized [unbound-name] +ERROR homeassistant/components/zwave_js/light.py:536:38-43: `green` may be uninitialized [unbound-name] +ERROR homeassistant/components/zwave_js/light.py:536:45-49: `blue` may be uninitialized [unbound-name] +ERROR homeassistant/components/zwave_js/lock.py:122:7-16: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `LockEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/number.py:60:7-24: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `NumberEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/number.py:140:7-30: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `NumberEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/select.py:65:7-24: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `SelectEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/select.py:141:7-35: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `SelectEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/select.py:192:7-40: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `SelectEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/sensor.py:102:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:104:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:109:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:110:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:113:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:119:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:121:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:124:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:127:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:133:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:142:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:151:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:157:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:163:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:169:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:175:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:181:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:187:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:193:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:199:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:205:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:211:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:220:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:222:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:223:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:228:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:237:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:246:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:254:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:262:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:263:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:268:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:276:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:277:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:286:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:287:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:296:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:297:9-13: Unexpected keyword argument `name` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:307:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:309:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:310:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:313:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:317:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:321:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:325:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:329:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:333:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:334:9-24: Unexpected keyword argument `entity_category` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:335:9-40: Unexpected keyword argument `entity_registry_enabled_default` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:339:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:343:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:347:9-12: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:371:5-36: Class member `ZWaveJSStatisticsSensorEntityDescription.entity_registry_enabled_default` overrides parent class `SensorEntityDescription` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_js/sensor.py:377:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:378:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:379:9-33: Unexpected keyword argument `translation_placeholders` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:383:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:384:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:385:9-33: Unexpected keyword argument `translation_placeholders` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:389:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:390:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:391:9-33: Unexpected keyword argument `translation_placeholders` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:395:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:396:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:397:9-33: Unexpected keyword argument `translation_placeholders` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:401:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:401:20-35: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:404:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:404:20-35: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:407:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:408:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:412:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:413:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:417:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:418:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:422:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:423:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:424:9-33: Unexpected keyword argument `translation_placeholders` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:430:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:431:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:432:9-33: Unexpected keyword argument `translation_placeholders` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:439:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:440:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:441:9-33: Unexpected keyword argument `translation_placeholders` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:447:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:448:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:449:9-33: Unexpected keyword argument `translation_placeholders` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:456:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:457:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:458:9-33: Unexpected keyword argument `translation_placeholders` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:464:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:465:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:466:9-33: Unexpected keyword argument `translation_placeholders` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:473:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:474:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:475:9-33: Unexpected keyword argument `translation_placeholders` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:481:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:482:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:483:9-33: Unexpected keyword argument `translation_placeholders` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:514:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:515:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:516:9-33: Unexpected keyword argument `translation_placeholders` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:520:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:521:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:522:9-33: Unexpected keyword argument `translation_placeholders` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:526:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:527:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:528:9-33: Unexpected keyword argument `translation_placeholders` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:532:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:533:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:534:9-33: Unexpected keyword argument `translation_placeholders` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:538:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:539:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:543:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:544:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:550:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:551:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:557:9-12: Unexpected keyword argument `key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:558:9-24: Unexpected keyword argument `translation_key` in function `ZWaveJSStatisticsSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:587:17-20: Unexpected keyword argument `key` in function `homeassistant.components.sensor.SensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/sensor.py:619:21-27: Argument `Driver | None` is not assignable to parameter `driver` with type `Driver` in function `ZWaveNumericSensor.__init__` [bad-argument-type] +ERROR homeassistant/components/zwave_js/sensor.py:630:47-53: Argument `Driver | None` is not assignable to parameter `driver` with type `Driver` in function `ZWaveListSensor.__init__` [bad-argument-type] +ERROR homeassistant/components/zwave_js/sensor.py:634:47-53: Argument `Driver | None` is not assignable to parameter `driver` with type `Driver` in function `ZWaveListSensor.__init__` [bad-argument-type] +ERROR homeassistant/components/zwave_js/sensor.py:639:35-41: Argument `Driver | None` is not assignable to parameter `driver` with type `Driver` in function `ZWaveConfigParameterSensor.__init__` [bad-argument-type] +ERROR homeassistant/components/zwave_js/sensor.py:644:48-54: Argument `Driver | None` is not assignable to parameter `driver` with type `Driver` in function `ZWaveNumericSensor.__init__` [bad-argument-type] +ERROR homeassistant/components/zwave_js/sensor.py:647:55-61: Argument `Driver | None` is not assignable to parameter `driver` with type `Driver` in function `ZwaveSensor.__init__` [bad-argument-type] +ERROR homeassistant/components/zwave_js/sensor.py:654:71-77: Argument `Driver | None` is not assignable to parameter `driver` with type `Driver` in function `ZWaveControllerStatusSensor.__init__` [bad-argument-type] +ERROR homeassistant/components/zwave_js/sensor.py:659:65-71: Argument `Driver | None` is not assignable to parameter `driver` with type `Driver` in function `ZWaveNodeStatusSensor.__init__` [bad-argument-type] +ERROR homeassistant/components/zwave_js/sensor.py:666:13-19: Argument `Driver | None` is not assignable to parameter `driver` with type `Driver` in function `homeassistant.components.zwave_js.migrate.async_migrate_statistics_sensors` [bad-argument-type] +ERROR homeassistant/components/zwave_js/sensor.py:669:16-33: Object of class `NoneType` has no attribute `controller` [missing-attribute] +ERROR homeassistant/components/zwave_js/sensor.py:676:21-27: Argument `Driver | None` is not assignable to parameter `driver` with type `Driver` in function `ZWaveStatisticsSensor.__init__` [bad-argument-type] +ERROR homeassistant/components/zwave_js/sensor.py:677:21-38: Object of class `NoneType` has no attribute `controller` [missing-attribute] +ERROR homeassistant/components/zwave_js/sensor.py:677:42-59: Object of class `NoneType` has no attribute `controller` [missing-attribute] +ERROR homeassistant/components/zwave_js/sensor.py:682:24-41: Object of class `NoneType` has no attribute `controller` [missing-attribute] +ERROR homeassistant/components/zwave_js/sensor.py:743:14-32: Class member `ZwaveSensor.entity_description` overrides parent class `ZWaveBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_js/sensor.py:1042:5-23: Class member `ZWaveStatisticsSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_js/services.py:510:39-530:10: No matching overload found for function `asyncio.tasks.gather` called with arguments: (*Generator[Coroutine[Unknown, Unknown, SetConfigParameterResult] | Coroutine[Unknown, Unknown, tuple[ConfigurationValue, SetConfigParameterResult]], None, None], return_exceptions=Literal[True]) [no-matching-overload] +ERROR homeassistant/components/zwave_js/siren.py:55:7-23: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `SirenEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/siren.py:68:14-38: Class member `ZwaveSirenEntity._attr_supported_features` overrides parent class `ZWaveBaseEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_js/switch.py:63:7-18: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `SwitchEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/switch.py:105:7-39: Field `entity_description` is declared `EntityDescription` in ancestor `class ZWaveBaseEntity: ... +`, which is not assignable to the type `SwitchEntityDescription` implied by multiple inheritance [inconsistent-inheritance] +ERROR homeassistant/components/zwave_js/trigger.py:18:12-20: Returned type `dict[str, type[EventTrigger] | type[ValueUpdatedTrigger]]` is not assignable to declared return type `dict[str, type[Trigger]]` [bad-return] +ERROR homeassistant/components/zwave_js/triggers/event.py:137:30-50: Argument `dict[Optional | Required, ((value: list[Unknown] | str) -> list[str]) | ((value: Any) -> str) | type[bool] | type[dict] | type[str] | All | In]` is not assignable to parameter `options_schema_dict` with type `dict[Marker, Any]` in function `homeassistant.helpers.automation.move_top_level_schema_fields_to_options` [bad-argument-type] +ERROR homeassistant/components/zwave_js/triggers/event.py:270:21-26: `nodes` may be uninitialized [unbound-name] +ERROR homeassistant/components/zwave_js/triggers/value_updated.py:162:9-32: `() -> None` is not assignable to `(**tuple[*Unknown]) -> Any` (caused by inconsistent types when breaking cycles) [bad-assignment] +ERROR homeassistant/components/zwave_js/triggers/value_updated.py:212:30-50: Argument `dict[Optional | Required, ((value: list[Unknown] | str) -> list[str]) | All | Any | Coerce | In]` is not assignable to parameter `options_schema_dict` with type `dict[Marker, Any]` in function `homeassistant.helpers.automation.move_top_level_schema_fields_to_options` [bad-argument-type] +ERROR homeassistant/components/zwave_js/update.py:62:5-8: Unexpected keyword argument `key` in function `ZWaveUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/update.py:76:5-8: Unexpected keyword argument `key` in function `ZWaveUpdateEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_js/update.py:170:5-23: Class member `ZWaveFirmwareUpdateEntity.entity_description` overrides parent class `UpdateEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_js/update.py:294:34-60: Argument `str | None` is not assignable to parameter `version` with type `str` in function `awesomeversion.awesomeversion.AwesomeVersion.__new__` [bad-argument-type] +ERROR homeassistant/components/zwave_me/__init__.py:108:39-71: Argument `BoundMethod[ZWaveMe, (self: ZWaveMe) -> Unknown]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/components/zwave_me/binary_sensor.py:23:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_me/binary_sensor.py:26:9-12: Unexpected keyword argument `key` in function `homeassistant.components.binary_sensor.BinarySensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_me/binary_sensor.py:72:14-32: Class member `ZWaveMeBinarySensor.entity_description` overrides parent class `ZWaveMeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_me/climate.py:59:5-29: Class member `ZWaveMeClimate._attr_supported_features` overrides parent class `ZWaveMeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_me/cover.py:51:5-29: Class member `ZWaveMeCover._attr_supported_features` overrides parent class `ZWaveMeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_me/entity.py:21:14-29: Class member `ZWaveMeEntity._attr_unique_id` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_me/fan.py:47:5-29: Class member `ZWaveMeFan._attr_supported_features` overrides parent class `ZWaveMeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_me/light.py:69:14-41: Class member `ZWaveMeRGB._attr_supported_color_modes` overrides parent class `LightEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_me/sensor.py:45:9-12: Unexpected keyword argument `key` in function `ZWaveMeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_me/sensor.py:51:9-12: Unexpected keyword argument `key` in function `ZWaveMeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_me/sensor.py:57:9-12: Unexpected keyword argument `key` in function `ZWaveMeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_me/sensor.py:63:9-12: Unexpected keyword argument `key` in function `ZWaveMeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_me/sensor.py:69:9-12: Unexpected keyword argument `key` in function `ZWaveMeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_me/sensor.py:75:9-12: Unexpected keyword argument `key` in function `ZWaveMeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_me/sensor.py:81:9-12: Unexpected keyword argument `key` in function `ZWaveMeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_me/sensor.py:87:9-12: Unexpected keyword argument `key` in function `ZWaveMeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_me/sensor.py:94:9-12: Unexpected keyword argument `key` in function `ZWaveMeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_me/sensor.py:100:9-12: Unexpected keyword argument `key` in function `ZWaveMeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_me/sensor.py:106:9-12: Unexpected keyword argument `key` in function `ZWaveMeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_me/sensor.py:112:9-12: Unexpected keyword argument `key` in function `ZWaveMeSensorEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_me/sensor.py:147:5-23: Class member `ZWaveMeSensor.entity_description` overrides parent class `ZWaveMeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_me/sensor.py:147:5-23: Class member `ZWaveMeSensor.entity_description` overrides parent class `SensorEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_me/siren.py:48:14-38: Class member `ZWaveMeSiren._attr_supported_features` overrides parent class `ZWaveMeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/components/zwave_me/switch.py:24:9-12: Unexpected keyword argument `key` in function `homeassistant.components.switch.SwitchEntityDescription.__init__` [unexpected-keyword] +ERROR homeassistant/components/zwave_me/switch.py:61:14-32: Class member `ZWaveMeSwitch.entity_description` overrides parent class `ZWaveMeEntity` in an inconsistent manner [bad-override] +ERROR homeassistant/config.py:959:9-27: Unexpected keyword argument `translation_domain` in function `ExceptionGroup.__new__` [unexpected-keyword] +ERROR homeassistant/config.py:960:9-33: Unexpected keyword argument `translation_placeholders` in function `ExceptionGroup.__new__` [unexpected-keyword] +ERROR homeassistant/config.py:960:34-46: `placeholders` may be uninitialized [unbound-name] +ERROR homeassistant/config.py:981:21-36: `platform_config` may be uninitialized [unbound-name] +ERROR homeassistant/config.py:1015:69-77: Argument `Hashable` is not assignable to parameter `element` with type `str` in function `set.add` [bad-argument-type] +ERROR homeassistant/config.py:1348:39-56: Argument `() -> None` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/config_entries.py:166:9-20: Object of class `object` has no attribute `_value_` [missing-attribute] +ERROR homeassistant/config_entries.py:167:9-25: Object of class `object` has no attribute `_recoverable` [missing-attribute] +ERROR homeassistant/config_entries.py:168:16-19: Returned type `object` is not assignable to declared return type `Self@ConfigEntryState` [bad-return] +ERROR homeassistant/config_entries.py:199:42-61: Expected a type form, got instance of `Literal['ConfigEntryChange']` [not-a-type] +ERROR homeassistant/config_entries.py:199:63-76: Expected a type form, got instance of `Literal['ConfigEntry']` [not-a-type] +ERROR homeassistant/config_entries.py:720:16-37: `domain_is_integration` may be uninitialized [unbound-name] +ERROR homeassistant/config_entries.py:726:12-33: `domain_is_integration` may be uninitialized [unbound-name] +ERROR homeassistant/config_entries.py:857:16-37: `domain_is_integration` may be uninitialized [unbound-name] +ERROR homeassistant/config_entries.py:966:16-37: `domain_is_integration` may be uninitialized [unbound-name] +ERROR homeassistant/config_entries.py:972:12-33: `domain_is_integration` may be uninitialized [unbound-name] +ERROR homeassistant/config_entries.py:980:16-37: `domain_is_integration` may be uninitialized [unbound-name] +ERROR homeassistant/config_entries.py:996:16-37: `domain_is_integration` may be uninitialized [unbound-name] +ERROR homeassistant/config_entries.py:1030:27-38: `integration` may be uninitialized [unbound-name] +ERROR homeassistant/config_entries.py:1039:17-28: `integration` may be uninitialized [unbound-name] +ERROR homeassistant/config_entries.py:1091:46-53: `handler` may be uninitialized [unbound-name] +ERROR homeassistant/config_entries.py:1091:46-61: Object of class `FunctionType` has no attribute `VERSION` [missing-attribute] +ERROR homeassistant/config_entries.py:1092:57-64: `handler` may be uninitialized [unbound-name] +ERROR homeassistant/config_entries.py:1092:57-78: Object of class `FunctionType` has no attribute `MINOR_VERSION` [missing-attribute] +ERROR homeassistant/config_entries.py:1097:27-38: `integration` may be uninitialized [unbound-name] +ERROR homeassistant/config_entries.py:1289:16-35: Object of class `object` has no attribute `get` [missing-attribute] +ERROR homeassistant/config_entries.py:1443:25-32: Argument `str` is not assignable to parameter `handler` with type `_HandlerT` in function `ConfigFlowResult.__init__` [bad-argument-type] +ERROR homeassistant/config_entries.py:1567:25-42: Argument `_HandlerT` is not assignable to parameter `domain` with type `str` in function `ConfigEntries.async_entry_for_domain_unique_id` [bad-argument-type] +ERROR homeassistant/config_entries.py:1613:25-37: Argument `str` is not assignable to parameter `handler` with type `_HandlerT` in function `ConfigFlowResult.__init__` [bad-argument-type] +ERROR homeassistant/config_entries.py:1624:34-62: Object of class `object` has no attribute `get` [missing-attribute] +ERROR homeassistant/config_entries.py:1649:17-34: Argument `_HandlerT` is not assignable to parameter `domain` with type `str` in function `ConfigEntries.async_entry_for_domain_unique_id` [bad-argument-type] +ERROR homeassistant/config_entries.py:1687:20-37: Argument `_HandlerT` is not assignable to parameter `domain` with type `str` in function `ConfigEntry.__init__` [bad-argument-type] +ERROR homeassistant/config_entries.py:1811:9-20: Class member `ConfigEntryItems.__setitem__` overrides parent class `UserDict` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/config_entries.py:1882:9-20: Class member `ConfigEntryItems.__delitem__` overrides parent class `UserDict` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/config_entries.py:2987:17-42: `_FlowContextT` is not subscriptable [unsupported-operation] +ERROR homeassistant/core.py:582:9-22: Implementation signature `(self: Self@HomeAssistant, target: ((**tuple[*_Ts]) -> Coroutine[Any, Any, _R] | _R) | Coroutine[Any, Any, _R], *args: *_Ts, *, eager_start: bool = False) -> Future[_R] | None` does not accept all arguments that overload signature `(self: Self@HomeAssistant, target: (**tuple[*_Ts]) -> Coroutine[Any, Any, _R], *args: *_Ts, *, eager_start: bool = False) -> Future[_R] | None` accepts [inconsistent-overload] +ERROR homeassistant/core.py:591:9-22: Implementation signature `(self: Self@HomeAssistant, target: ((**tuple[*_Ts]) -> Coroutine[Any, Any, _R] | _R) | Coroutine[Any, Any, _R], *args: *_Ts, *, eager_start: bool = False) -> Future[_R] | None` does not accept all arguments that overload signature `(self: Self@HomeAssistant, target: (**tuple[*_Ts]) -> Coroutine[Any, Any, _R] | _R, *args: *_Ts, *, eager_start: bool = False) -> Future[_R] | None` accepts [inconsistent-overload] +ERROR homeassistant/core.py:858:48-54: Argument `(**tuple[*_Ts]) -> _T` is not assignable to parameter `func` with type `(**tuple[*@_]) -> @_` in function `asyncio.events.AbstractEventLoop.run_in_executor` [bad-argument-type] +ERROR homeassistant/core.py:875:64-70: Argument `(**tuple[*_Ts]) -> _T` is not assignable to parameter `func` with type `(**tuple[*@_]) -> _T` in function `asyncio.events.AbstractEventLoop.run_in_executor` [bad-argument-type] +ERROR homeassistant/core.py:925:9-22: Implementation signature `(self: Self@HomeAssistant, target: ((**tuple[*_Ts]) -> Coroutine[Any, Any, _R] | _R) | Coroutine[Any, Any, _R], *args: *_Ts) -> Future[_R] | None` does not accept all arguments that overload signature `(self: Self@HomeAssistant, target: (**tuple[*_Ts]) -> Coroutine[Any, Any, _R], *args: *_Ts) -> Future[_R] | None` accepts [inconsistent-overload] +ERROR homeassistant/core.py:931:9-22: Implementation signature `(self: Self@HomeAssistant, target: ((**tuple[*_Ts]) -> Coroutine[Any, Any, _R] | _R) | Coroutine[Any, Any, _R], *args: *_Ts) -> Future[_R] | None` does not accept all arguments that overload signature `(self: Self@HomeAssistant, target: (**tuple[*_Ts]) -> Coroutine[Any, Any, _R] | _R, *args: *_Ts) -> Future[_R] | None` accepts [inconsistent-overload] +ERROR homeassistant/core.py:1470:57-77: Argument `BoundMethod[Self@EventBus, (self: Self@EventBus) -> dict[EventType[Any] | str, int]]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> @_` in function `homeassistant.util.async_.run_callback_threadsafe` [bad-argument-type] +ERROR homeassistant/core.py:1481:45-1483:10: Unpacked argument `tuple[EventType[_DataT] | str, _DataT | None, EventOrigin, Context | None]` is not assignable to parameter `*args` with type `tuple[EventType[Mapping[str, Any]] | str, Mapping[str, Any] | None, EventOrigin, Context | None, float | None]` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/core.py:1570:56-1572:10: Unpacked argument `tuple[EventType[_DataT] | str, (Event[_DataT]) -> Coroutine[Any, Any, None] | None]` is not assignable to parameter `*args` with type `tuple[EventType[Mapping[str, Any]] | str, (Event[Mapping[str, Any]]) -> Coroutine[Any, Any, None] | None, ((Mapping[str, Any]) -> bool) | None, bool | object]` in function `homeassistant.util.async_.run_callback_threadsafe` [bad-argument-type] +ERROR homeassistant/core.py:1576:54-75: Argument `() -> None` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> @_` in function `homeassistant.util.async_.run_callback_threadsafe` [bad-argument-type] +ERROR homeassistant/core.py:1647:56-1649:10: Unpacked argument `tuple[EventType[_DataT] | str, (Event[_DataT]) -> Coroutine[Any, Any, None] | None]` is not assignable to parameter `*args` with type `tuple[EventType[Mapping[str, Any]] | str, (Event[Mapping[str, Any]]) -> Coroutine[Any, Any, None] | None, bool | object]` in function `homeassistant.util.async_.run_callback_threadsafe` [bad-argument-type] +ERROR homeassistant/core.py:1653:54-75: Argument `() -> None` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> @_` in function `homeassistant.util.async_.run_callback_threadsafe` [bad-argument-type] +ERROR homeassistant/core.py:2001:21-28: `context` may be uninitialized [unbound-name] +ERROR homeassistant/core.py:2048:9-20: Class member `States.__setitem__` overrides parent class `UserDict` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/core.py:2180:39-2182:10: Unpacked argument `tuple[str]` is not assignable to parameter `*args` with type `tuple[str, Context | None]` in function `homeassistant.util.async_.run_callback_threadsafe` [bad-argument-type] +ERROR homeassistant/core.py:2227:32-2235:10: Unpacked argument `tuple[str, str, Mapping[str, Any] | None, bool, Context | None]` is not assignable to parameter `*args` with type `tuple[str, str, Mapping[str, Any] | None, bool, Context | None, TypedDict[StateInfo] | None, float | None]` in function `homeassistant.util.async_.run_callback_threadsafe` [bad-argument-type] +ERROR homeassistant/core.py:2357:17-2362:18: Argument `dict[str, State | datetime | str | None]` is not assignable to parameter `event_data` with type `TypedDict[EventStateReportedData] | None` in function `EventBus.async_fire_internal` [bad-argument-type] +ERROR homeassistant/core.py:2499:57-76: Argument `BoundMethod[Self@ServiceRegistry, (self: Self@ServiceRegistry) -> dict[str, dict[str, Service]]]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> @_` in function `homeassistant.util.async_.run_callback_threadsafe` [bad-argument-type] +ERROR homeassistant/core.py:2568:32-2576:10: Unpacked argument `tuple[str, str, (ServiceCall) -> Coroutine[Any, Any, dict[str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None] | None] | dict[str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None] | None, Schema | None, SupportsResponse]` is not assignable to parameter `*args` with type `tuple[str, str, (ServiceCall) -> Coroutine[Any, Any, dict[str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None] | dict[str, dict[str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None] | None] | None] | dict[str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None] | dict[str, dict[str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None] | None] | None, All | Any | Schema | None, SupportsResponse, HassJobType | None]` in function `homeassistant.util.async_.run_callback_threadsafe` [bad-argument-type] +ERROR homeassistant/core_config.py:143:25-28: Argument `Any | None` is not assignable to parameter `element` with type `str` in function `set.add` [bad-argument-type] +ERROR homeassistant/core_config.py:373:69-78: `auth_conf` may be uninitialized [unbound-name] +ERROR homeassistant/data_entry_flow.py:303:39-61: Object of class `object` has no attribute `items` [missing-attribute] +ERROR homeassistant/data_entry_flow.py:339:48-341:14: `_FlowResultT` is not subscriptable [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:345:29-43: `_FlowResultT` is not subscriptable [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:363:28-40: Object of class `object` has no attribute `get` [missing-attribute] +ERROR homeassistant/data_entry_flow.py:388:12-28: `_FlowResultT` is not subscriptable [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:394:23-42: `_FlowResultT` is not subscriptable [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:397:12-28: `_FlowResultT` is not subscriptable [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:401:69-403:14: `_FlowResultT` is not subscriptable [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:411:69-413:14: `_FlowResultT` is not subscriptable [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:427:16-35: `_FlowResultT` is not subscriptable [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:427:39-49: Object of class `object` has no attribute `get` [missing-attribute] +ERROR homeassistant/data_entry_flow.py:428:17-31: `_FlowResultT` is not subscriptable [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:430:21-48: `_FlowResultT` is not subscriptable [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:430:52-62: Object of class `object` has no attribute `get` [missing-attribute] +ERROR homeassistant/data_entry_flow.py:431:24-60: `_FlowResultT` is not subscriptable [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:432:24-34: Object of class `object` has no attribute `get` [missing-attribute] +ERROR homeassistant/data_entry_flow.py:506:16-30: `_FlowResultT` is not subscriptable [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:511:12-22: Object of class `object` has no attribute `get` [missing-attribute] +ERROR homeassistant/data_entry_flow.py:514:27-41: `_FlowResultT` is not subscriptable [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:545:17-34: Cannot set item in `_FlowResultT` [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:548:54-71: `_FlowResultT` is not subscriptable [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:554:57-68: Object of class `object` has no attribute `copy` [missing-attribute] +ERROR homeassistant/data_entry_flow.py:565:12-26: `_FlowResultT` is not subscriptable [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:746:13-35: Cannot set item in `_FlowResultT` [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:769:13-33: Cannot set item in `_FlowResultT` [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:838:13-35: Cannot set item in `_FlowResultT` [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:888:13-35: Cannot set item in `_FlowResultT` [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:942:13-32: Cannot set item in `_FlowResultT` [unsupported-operation] +ERROR homeassistant/data_entry_flow.py:944:13-35: Cannot set item in `_FlowResultT` [unsupported-operation] +ERROR homeassistant/helpers/aiohttp_client.py:50:25-54:2: `<` is not supported between `tuple[Literal[3], Literal[13], Literal[0]]` and `tuple[Literal[3], Literal[13], Literal[1]]` [unsupported-operation] +ERROR homeassistant/helpers/chat_session.py:85:13-29: Argument `HassJob[[now: datetime], None]` is not assignable to parameter `action` with type `((datetime) -> Coroutine[Any, Any, None] | None) | HassJob[[datetime], Coroutine[Any, Any, None] | None]` in function `homeassistant.helpers.event.async_call_later` [bad-argument-type] +ERROR homeassistant/helpers/chat_session.py:155:8-15: `session` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/chat_session.py:159:25-32: `session` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/chat_session.py:160:11-18: `session` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/chat_session.py:163:5-12: `session` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/chat_session.py:164:37-44: `session` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/collection.py:271:21-41: `_StoreT` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/collection.py:279:29-49: `_StoreT` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/collection.py:651:32-36: `data` is uninitialized [unbound-name] +ERROR homeassistant/helpers/condition.py:263:10-36: Function declared to return `dict[str, type[Condition]]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/helpers/condition.py:359:16-75: Returned type `tuple[str, ModuleType]` is not assignable to declared return type `tuple[str, ConditionProtocol | None]` [bad-return] +ERROR homeassistant/helpers/condition.py:532:35-541:6: Unpacked argument `tuple[HomeAssistant, State | str | None, float | str | None, float | str | None, Template | None, Mapping[str, Any] | None]` is not assignable to parameter `*args` with type `tuple[HomeAssistant, State | str | None, float | str | None, float | str | None, Template | None, Mapping[str, Any] | None, str | None]` in function `homeassistant.util.async_.run_callback_threadsafe` [bad-argument-type] +ERROR homeassistant/helpers/condition.py:565:51-68: Object of class `str` has no attribute `attributes` [missing-attribute] +ERROR homeassistant/helpers/condition.py:575:21-33: Object of class `str` has no attribute `state` [missing-attribute] +ERROR homeassistant/helpers/condition.py:577:21-38: Object of class `str` has no attribute `attributes` [missing-attribute] +ERROR homeassistant/helpers/condition.py:736:51-68: Object of class `str` has no attribute `attributes` [missing-attribute] +ERROR homeassistant/helpers/condition.py:831:35-833:6: Unpacked argument `tuple[HomeAssistant, Template, Mapping[str, Any] | None]` is not assignable to parameter `*args` with type `tuple[HomeAssistant, Template, Mapping[str, Any] | None, bool]` in function `homeassistant.util.async_.run_callback_threadsafe` [bad-argument-type] +ERROR homeassistant/helpers/condition.py:1248:30-48: `missing_conditions` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/config_entry_flow.py:76:20-31: `has_devices` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/config_entry_oauth2_flow.py:722:17-725:10: Argument `dict[str | tuple[istr | str, str], str | Any]` is not assignable to parameter `headers` with type `CIMultiDict[str] | CIMultiDictProxy[str] | Iterable[tuple[istr | str, str]] | Mapping[istr, str] | Mapping[str, str] | None` in function `aiohttp.client.ClientSession.request` [bad-argument-type] +ERROR homeassistant/helpers/config_entry_oauth2_flow.py:735:29-35: `secret` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/config_validation.py:21:5-28: Could not import `_GLOBAL_DEFAULT_TIMEOUT` from `socket` [missing-module-attribute] +ERROR homeassistant/helpers/config_validation.py:351:5-16: Implementation signature `(value: _T | None) -> list[_T] | list[Any]` does not accept all arguments that overload signature `(value: list[_T] | _T) -> list[_T]` accepts [inconsistent-overload] +ERROR homeassistant/helpers/config_validation.py:772:59-63: `hass` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/config_validation.py:1629:28-44: `CONDITION_SCHEMA` is uninitialized [unbound-name] +ERROR homeassistant/helpers/config_validation.py:1640:28-44: `CONDITION_SCHEMA` is uninitialized [unbound-name] +ERROR homeassistant/helpers/config_validation.py:1652:28-44: `CONDITION_SCHEMA` is uninitialized [unbound-name] +ERROR homeassistant/helpers/config_validation.py:1663:28-44: `CONDITION_SCHEMA` is uninitialized [unbound-name] +ERROR homeassistant/helpers/config_validation.py:1675:28-44: `CONDITION_SCHEMA` is uninitialized [unbound-name] +ERROR homeassistant/helpers/config_validation.py:1686:28-44: `CONDITION_SCHEMA` is uninitialized [unbound-name] +ERROR homeassistant/helpers/config_validation.py:1754:28-44: `CONDITION_SCHEMA` is uninitialized [unbound-name] +ERROR homeassistant/helpers/debounce.py:201:32-49: Argument `BoundMethod[Self@Debouncer, (self: Self@Debouncer) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_later` [bad-argument-type] +ERROR homeassistant/helpers/deprecation.py:151:51-58: `Args[_P]` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/deprecation.py:152:56-70: `Kwargs[_P]` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/deprecation.py:169:24-41: Expected *-unpacked _P.args and **-unpacked _P.kwargs [invalid-param-spec] +ERROR homeassistant/helpers/deprecation.py:373:9-29: `breaks_in_ha_version` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/device_registry.py:404:52-61: `dict_repr` is uninitialized [unbound-name] +ERROR homeassistant/helpers/device_registry.py:978:50-53: `via` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/device_registry.py:978:60-63: `via` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/discovery_flow.py:37:52-55: `key` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/discovery_flow.py:59:19-61: `dict[str, object]` is not assignable to variable `context` with type `TypedDict[ConfigFlowContext]` [bad-assignment] +ERROR homeassistant/helpers/dispatcher.py:40:5-23: Implementation signature `(hass: HomeAssistant, signal: SignalType[*_Ts], target: (**tuple[*_Ts]) -> None) -> () -> None` does not accept all arguments that overload signature `(hass: HomeAssistant, signal: SignalType[*_Ts], target: (**tuple[*_Ts]) -> None) -> () -> None` accepts [inconsistent-overload] +ERROR homeassistant/helpers/dispatcher.py:47:5-23: Implementation signature `(hass: HomeAssistant, signal: SignalType[*_Ts], target: (**tuple[*_Ts]) -> None) -> () -> None` does not accept all arguments that overload signature `(hass: HomeAssistant, signal: str, target: (...) -> None) -> () -> None` accepts [inconsistent-overload] +ERROR homeassistant/helpers/dispatcher.py:59:42-61:6: Unpacked argument `tuple[HomeAssistant, SignalType[*_Ts], (**tuple[*_Ts]) -> None]` is not assignable to parameter `*args` with type `tuple[HomeAssistant, SignalType[*_Ts], (**tuple[*_Ts]) -> Any]` in function `homeassistant.util.async_.run_callback_threadsafe` [bad-argument-type] +ERROR homeassistant/helpers/dispatcher.py:65:44-55: Argument `() -> None` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> @_` in function `homeassistant.util.async_.run_callback_threadsafe` [bad-argument-type] +ERROR homeassistant/helpers/dispatcher.py:93:5-29: Implementation signature `(hass: HomeAssistant, signal: SignalType[*_Ts] | str, target: ((**tuple[*_Ts]) -> Any) | ((...) -> Any)) -> () -> None` does not accept all arguments that overload signature `(hass: HomeAssistant, signal: SignalType[*_Ts], target: (**tuple[*_Ts]) -> Any) -> () -> None` accepts [inconsistent-overload] +ERROR homeassistant/helpers/dispatcher.py:130:5-20: Implementation signature `(hass: HomeAssistant, signal: SignalType[*_Ts], *args: *_Ts) -> None` does not accept all arguments that overload signature `(hass: HomeAssistant, signal: SignalType[*_Ts], *args: *_Ts) -> None` accepts [inconsistent-overload] +ERROR homeassistant/helpers/dispatcher.py:137:5-20: Implementation signature `(hass: HomeAssistant, signal: SignalType[*_Ts], *args: *_Ts) -> None` does not accept all arguments that overload signature `(hass: HomeAssistant, signal: str, *args: Any) -> None` accepts [inconsistent-overload] +ERROR homeassistant/helpers/dispatcher.py:145:35-88: Unpacked argument `tuple[HomeAssistant, SignalType[*_Ts], *tuple[object, ...]]` is not assignable to parameter `*args` with type `tuple[HomeAssistant, SignalType[*Unknown] | str, *Unknown]` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/helpers/dispatcher.py:174:28-176:10: No matching overload found for function `homeassistant.util.logging.catch_log_exception` called with arguments: (((**tuple[*_Ts]) -> Any) | ((...) -> Any), partial[str], job_type=Literal[HassJobType.Coroutinefunction, HassJobType.Executor]) [no-matching-overload] +ERROR homeassistant/helpers/dispatcher.py:185:5-26: Implementation signature `(hass: HomeAssistant, signal: SignalType[*_Ts] | str, *args: *_Ts) -> None` does not accept all arguments that overload signature `(hass: HomeAssistant, signal: SignalType[*_Ts], *args: *_Ts) -> None` accepts [inconsistent-overload] +ERROR homeassistant/helpers/dispatcher.py:215:35-56: Unpacked argument `tuple[object, ...]` is not assignable to parameter `*args` with type `tuple[*_Ts]` in function `async_dispatcher_send_internal` [bad-argument-type] +ERROR homeassistant/helpers/dispatcher.py:215:42-48: Argument `SignalType[*_Ts] | str` is not assignable to parameter `signal` with type `SignalType[*_Ts] | str` in function `async_dispatcher_send_internal` [bad-argument-type] +ERROR homeassistant/helpers/dispatcher.py:240:33-39: Argument `SignalType[*_Ts] | str` is not assignable to parameter `signal` with type `SignalType[*_Ts] | str` in function `_generate_job` [bad-argument-type] +ERROR homeassistant/helpers/entity.py:1001:42-46: `Literal[True]` is not assignable to attribute `_no_platform_reported` with type `Never` [bad-assignment] +ERROR homeassistant/helpers/entity.py:1122:70-88: `supported_features` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/entity.py:1173:21-44: `capabilities_updated_at` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/entity.py:1174:38-61: `capabilities_updated_at` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/entity.py:1175:25-48: `capabilities_updated_at` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/entity.py:1176:28-51: `capabilities_updated_at` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/entity.py:1255:17-69: Argument `BoundMethod[Self@Entity, (self: Self@Entity) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/helpers/entity.py:1307:57-88: Argument `BoundMethod[Self@Entity, (self: Self@Entity) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_at` [bad-argument-type] +ERROR homeassistant/helpers/entity.py:1320:17-28: `update_warn` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/entity.py:1649:5-23: Class member `ToggleEntity.entity_description` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/helpers/entity.py:1651:5-16: Class member `ToggleEntity._attr_state` overrides parent class `Entity` in an inconsistent manner [bad-override] +ERROR homeassistant/helpers/entity_component.py:375:22-30: Argument `ModuleType | None` is not assignable to parameter `platform` with type `EntityPlatformModule | None` in function `homeassistant.helpers.entity_platform.EntityPlatform.__init__` [bad-argument-type] +ERROR homeassistant/helpers/entity_platform.py:439:13-27: Argument `BoundMethod[Logger, (self: Logger, msg: object, *args: object, *, exc_info: BaseException | bool | tuple[type[BaseException], BaseException, TracebackType | None] | tuple[None, None, None] | None = None, stack_info: bool = False, stacklevel: int = 1, extra: Mapping[str, object] | None = None) -> None]` is not assignable to parameter `callback` with type `(**tuple[object, ...]) -> object` in function `asyncio.events.AbstractEventLoop.call_at` [bad-argument-type] +ERROR homeassistant/helpers/entity_platform.py:974:17-22: `entry` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/entity_registry.py:218:6-20: Object of class `str` has no attribute `default` [missing-attribute] +ERROR homeassistant/helpers/entity_registry.py:277:52-61: `dict_repr` is uninitialized [unbound-name] +ERROR homeassistant/helpers/entity_registry.py:339:52-61: `dict_repr` is uninitialized [unbound-name] +ERROR homeassistant/helpers/entity_registry.py:443:6-20: Object of class `str` has no attribute `default` [missing-attribute] +ERROR homeassistant/helpers/entity_registry.py:1048:44-56: Argument `Mapping[str, Any] | UndefinedType | None` is not assignable to parameter `value` with type `Mapping[str, Any] | UndefinedType` in function `none_if_undefined` [bad-argument-type] +ERROR homeassistant/helpers/entity_registry.py:1049:47-62: Argument `UndefinedType | str | None` is not assignable to parameter `value` with type `UndefinedType | str` in function `none_if_undefined` [bad-argument-type] +ERROR homeassistant/helpers/entity_registry.py:1050:50-68: Argument `UndefinedType | str | None` is not assignable to parameter `value` with type `UndefinedType | str` in function `none_if_undefined` [bad-argument-type] +ERROR homeassistant/helpers/entity_registry.py:1053:41-50: Argument `UndefinedType | str | None` is not assignable to parameter `value` with type `UndefinedType | str` in function `none_if_undefined` [bad-argument-type] +ERROR homeassistant/helpers/entity_registry.py:1055:47-62: Argument `EntityCategory | UndefinedType | None` is not assignable to parameter `value` with type `EntityCategory | UndefinedType` in function `none_if_undefined` [bad-argument-type] +ERROR homeassistant/helpers/entity_registry.py:1064:53-74: Argument `UndefinedType | str | None` is not assignable to parameter `value` with type `UndefinedType | str` in function `none_if_undefined` [bad-argument-type] +ERROR homeassistant/helpers/entity_registry.py:1065:45-58: Argument `UndefinedType | str | None` is not assignable to parameter `value` with type `UndefinedType | str` in function `none_if_undefined` [bad-argument-type] +ERROR homeassistant/helpers/entity_registry.py:1066:45-58: Argument `UndefinedType | str | None` is not assignable to parameter `value` with type `UndefinedType | str` in function `none_if_undefined` [bad-argument-type] +ERROR homeassistant/helpers/entity_registry.py:1070:47-62: Argument `UndefinedType | str | None` is not assignable to parameter `value` with type `UndefinedType | str` in function `none_if_undefined` [bad-argument-type] +ERROR homeassistant/helpers/entity_registry.py:1072:51-70: Argument `UndefinedType | str | None` is not assignable to parameter `value` with type `UndefinedType | str` in function `none_if_undefined` [bad-argument-type] +ERROR homeassistant/helpers/entity_registry.py:1208:61-76: Cannot index into `dict[str, set[str | None]]` [bad-index] +ERROR homeassistant/helpers/event.py:356:45-68: `_StateEventDataT` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/event.py:364:17-40: `_StateEventDataT` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/event.py:376:12-35: `_StateEventDataT` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/event.py:1491:48-57: Argument `HassJob[[utc_now: datetime], None]` is not assignable to parameter `action` with type `((datetime) -> Coroutine[Any, Any, None] | None) | HassJob[[datetime], Coroutine[Any, Any, None] | None]` in function `async_track_point_in_utc_time` [bad-argument-type] +ERROR homeassistant/helpers/event.py:1509:71-75: Argument `Self@_TrackPointUTCTime` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_at` [bad-argument-type] +ERROR homeassistant/helpers/event.py:1529:71-75: Argument `Self@_TrackPointUTCTime` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_at` [bad-argument-type] +ERROR homeassistant/helpers/frame.py:142:21-32: `integration` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/frame.py:144:58-63: `index` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/httpx_client.py:55:12-18: `client` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/integration_platform.py:51:54-68: `component_name` is uninitialized [unbound-name] +ERROR homeassistant/helpers/integration_platform.py:55:12-26: `component_name` is uninitialized [unbound-name] +ERROR homeassistant/helpers/integration_platform.py:141:46-146:14: No matching overload found for function `homeassistant.core.HomeAssistant.async_run_hass_job` called with arguments: (HassJob[[HomeAssistant, str, Any], Awaitable[None] | None], HomeAssistant, str, ModuleType) [no-matching-overload] +ERROR homeassistant/helpers/integration_platform.py:184:9-187:10: Argument `((**tuple[HomeAssistant, str, Any]) -> Coroutine[Any, Any, None]) | ((**tuple[HomeAssistant, str, Any]) -> None)` is not assignable to parameter `target` with type `(**tuple[HomeAssistant, str, Any]) -> Coroutine[Any, Any, None]` in function `homeassistant.core.HassJob.__init__` [bad-argument-type] +ERROR homeassistant/helpers/intent.py:83:31-38: `intents` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/intent.py:88:5-12: `intents` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/intent.py:987:31-994:14: No matching overload found for function `typing.MutableMapping.update` called with arguments: (dict[Required, ((Any) -> Any) | All | Any | Schema]) [no-matching-overload] +ERROR homeassistant/helpers/intent.py:997:31-1004:14: No matching overload found for function `typing.MutableMapping.update` called with arguments: (dict[Optional, ((Any) -> Any) | All | Any | Schema]) [no-matching-overload] +ERROR homeassistant/helpers/intent.py:1161:35-42: `service` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/issue_registry.py:201:16-21: `issue` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/json.py:60:33-38: Function declared to return `bytes` but is missing an explicit `return` [bad-return] +ERROR homeassistant/helpers/json.py:189:55-59: `dump` is uninitialized [unbound-name] +ERROR homeassistant/helpers/llm.py:280:32-43: `set[Unknown]` is not assignable to attribute `extra_slots` with type `None` [bad-assignment] +ERROR homeassistant/helpers/llm.py:398:17-77: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR homeassistant/helpers/llm.py:400:33-56: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR homeassistant/helpers/llm.py:519:79-84: `extra` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/llm.py:521:58-63: `extra` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/llm.py:877:17-60: `in` is not supported between `Any` and `None` [not-iterable] +ERROR homeassistant/helpers/llm.py:879:20-61: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/llm.py:881:17-58: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/llm.py:1077:32-37: `start` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/llm.py:1078:30-33: `end` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/ratelimit.py:95:17-23: Argument `(**tuple[*_Ts]) -> None` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_later` [bad-argument-type] +ERROR homeassistant/helpers/registry.py:38:9-20: Class member `BaseRegistryItems.__setitem__` overrides parent class `UserDict` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/helpers/schema_config_entry_flow.py:215:44-55: `data_schema` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/schema_config_entry_flow.py:316:25-36: `data_schema` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/script.py:234:54-89: No matching overload found for function `homeassistant.helpers.dispatcher.async_dispatcher_connect` called with arguments: (HomeAssistant, SignalType[Literal['continue', 'stop']], (command: Literal['continue', 'stop'] | None = None) -> None) [no-matching-overload] +ERROR homeassistant/helpers/script.py:451:9-21: `script_stack` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/script.py:484:13-25: `script_stack` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/script.py:704:21-24: `idx` is uninitialized [unbound-name] +ERROR homeassistant/helpers/script.py:1032:24-78: Argument `Any | None` is not assignable to parameter `default_message` with type `str` in function `_ScriptRun._step_log` [bad-argument-type] +ERROR homeassistant/helpers/script.py:1459:13-24: `all_scripts` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/script.py:1865:16-20: `cond` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/script.py:1888:16-26: `sub_script` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/script.py:1941:16-27: `choose_data` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/script.py:1993:16-23: `if_data` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/script.py:2024:16-32: `parallel_scripts` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/script.py:2053:16-31: `sequence_script` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/script.py:2119:42-48: Argument `SignalType[Literal['continue', 'stop']]` is not assignable to parameter `signal` with type `SignalType[str] | str` in function `homeassistant.helpers.dispatcher.async_dispatcher_send_internal` [bad-argument-type] +ERROR homeassistant/helpers/script.py:2129:42-48: Argument `SignalType[Literal['continue', 'stop']]` is not assignable to parameter `signal` with type `SignalType[str] | str` in function `homeassistant.helpers.dispatcher.async_dispatcher_send_internal` [bad-argument-type] +ERROR homeassistant/helpers/script.py:2136:42-48: Argument `SignalType[Literal['continue', 'stop']]` is not assignable to parameter `signal` with type `SignalType[str] | str` in function `homeassistant.helpers.dispatcher.async_dispatcher_send_internal` [bad-argument-type] +ERROR homeassistant/helpers/script_variables.py:196:9-20: Class member `ScriptRunVariables.__setitem__` overrides parent class `UserDict` in an inconsistent manner [bad-param-name-override] +ERROR homeassistant/helpers/singleton.py:20:5-14: Overload return type `((HomeAssistant) -> Coroutine[Any, Any, object]) -> (HomeAssistant) -> Coroutine[Any, Any, object]` is not assignable to implementation return type `[_S]((HomeAssistant) -> _S) -> [_T, _U](HomeAssistant) -> _S` [inconsistent-overload] +ERROR homeassistant/helpers/singleton.py:26:5-14: Overload return type `((HomeAssistant) -> object) -> (HomeAssistant) -> object` is not assignable to implementation return type `[_S]((HomeAssistant) -> _S) -> [_T, _U](HomeAssistant) -> _S` [inconsistent-overload] +ERROR homeassistant/helpers/singleton.py:68:26-42: Type `_U` is not awaitable [not-async] +ERROR homeassistant/helpers/singleton.py:83:12-19: Returned type `Overload[(func: (HomeAssistant) -> Coroutine[Any, Any, _T]) -> (HomeAssistant) -> Coroutine[Any, Any, _T], (func: (HomeAssistant) -> _U) -> (HomeAssistant) -> _U]` is not assignable to declared return type `((HomeAssistant) -> _S) -> (HomeAssistant) -> _S` [bad-return] +ERROR homeassistant/helpers/storage.py:79:48-63: Argument `() -> Unknown` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/helpers/storage.py:123:43-65: Argument `BoundMethod[Self@_StoreManager, (self: Self@_StoreManager) -> None]` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/helpers/storage.py:180:36-55: Argument `BoundMethod[Self@_StoreManager, (self: Self@_StoreManager) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_later` [bad-argument-type] +ERROR homeassistant/helpers/storage.py:330:62-332:18: Unpacked argument `tuple[Unknown]` is not assignable to parameter `*args` with type `tuple[PathLike[str] | str, bool | dict[str, Unknown] | float | int | list[Unknown] | str | None]` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/helpers/storage.py:391:12-39: `not in` is not supported between `Literal['minor_version']` and `bool` [not-iterable] +ERROR homeassistant/helpers/storage.py:391:12-39: `not in` is not supported between `Literal['minor_version']` and `float` [not-iterable] +ERROR homeassistant/helpers/storage.py:391:12-39: `not in` is not supported between `Literal['minor_version']` and `int` [not-iterable] +ERROR homeassistant/helpers/storage.py:391:12-39: `not in` is not supported between `Literal['minor_version']` and `None` [not-iterable] +ERROR homeassistant/helpers/storage.py:392:13-34: Cannot set item in `bool` [unsupported-operation] +ERROR homeassistant/helpers/storage.py:392:13-34: Cannot set item in `float` [unsupported-operation] +ERROR homeassistant/helpers/storage.py:392:13-34: Cannot set item in `int` [unsupported-operation] +ERROR homeassistant/helpers/storage.py:392:13-34: Cannot set item in `list[Unknown]` [unsupported-operation] +ERROR homeassistant/helpers/storage.py:392:13-34: Cannot set item in `str` [unsupported-operation] +ERROR homeassistant/helpers/storage.py:392:13-34: Cannot set item in `None` [unsupported-operation] +ERROR homeassistant/helpers/storage.py:395:13-28: Cannot index into `bool` [bad-index] +ERROR homeassistant/helpers/storage.py:395:13-28: Cannot index into `float` [bad-index] +ERROR homeassistant/helpers/storage.py:395:13-28: Cannot index into `int` [bad-index] +ERROR homeassistant/helpers/storage.py:395:13-28: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/helpers/storage.py:395:13-28: Cannot index into `str` [bad-index] +ERROR homeassistant/helpers/storage.py:395:13-28: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/storage.py:396:17-38: Cannot index into `bool` [bad-index] +ERROR homeassistant/helpers/storage.py:396:17-38: Cannot index into `float` [bad-index] +ERROR homeassistant/helpers/storage.py:396:17-38: Cannot index into `int` [bad-index] +ERROR homeassistant/helpers/storage.py:396:17-38: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/helpers/storage.py:396:17-38: Cannot index into `str` [bad-index] +ERROR homeassistant/helpers/storage.py:396:17-38: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/storage.py:398:22-34: Cannot index into `bool` [bad-index] +ERROR homeassistant/helpers/storage.py:398:22-34: Cannot index into `float` [bad-index] +ERROR homeassistant/helpers/storage.py:398:22-34: Cannot index into `int` [bad-index] +ERROR homeassistant/helpers/storage.py:398:22-34: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/helpers/storage.py:398:22-34: Cannot index into `str` [bad-index] +ERROR homeassistant/helpers/storage.py:398:22-34: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/storage.py:403:17-32: Cannot index into `bool` [bad-index] +ERROR homeassistant/helpers/storage.py:403:17-32: Cannot index into `float` [bad-index] +ERROR homeassistant/helpers/storage.py:403:17-32: Cannot index into `int` [bad-index] +ERROR homeassistant/helpers/storage.py:403:17-32: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/helpers/storage.py:403:17-32: Cannot index into `str` [bad-index] +ERROR homeassistant/helpers/storage.py:403:17-32: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/storage.py:404:17-38: Cannot index into `bool` [bad-index] +ERROR homeassistant/helpers/storage.py:404:17-38: Cannot index into `float` [bad-index] +ERROR homeassistant/helpers/storage.py:404:17-38: Cannot index into `int` [bad-index] +ERROR homeassistant/helpers/storage.py:404:17-38: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/helpers/storage.py:404:17-38: Cannot index into `str` [bad-index] +ERROR homeassistant/helpers/storage.py:404:17-38: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/storage.py:409:56-87: Missing argument `old_data` in function `Store._async_migrate_func` [missing-argument] +ERROR homeassistant/helpers/storage.py:409:57-72: Cannot index into `bool` [bad-index] +ERROR homeassistant/helpers/storage.py:409:57-72: Cannot index into `float` [bad-index] +ERROR homeassistant/helpers/storage.py:409:57-72: Cannot index into `int` [bad-index] +ERROR homeassistant/helpers/storage.py:409:57-72: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/helpers/storage.py:409:57-72: Cannot index into `str` [bad-index] +ERROR homeassistant/helpers/storage.py:409:57-72: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/storage.py:409:74-86: Cannot index into `bool` [bad-index] +ERROR homeassistant/helpers/storage.py:409:74-86: Cannot index into `float` [bad-index] +ERROR homeassistant/helpers/storage.py:409:74-86: Cannot index into `int` [bad-index] +ERROR homeassistant/helpers/storage.py:409:74-86: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/helpers/storage.py:409:74-86: Cannot index into `str` [bad-index] +ERROR homeassistant/helpers/storage.py:409:74-86: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/storage.py:413:25-40: Cannot index into `bool` [bad-index] +ERROR homeassistant/helpers/storage.py:413:25-40: Cannot index into `float` [bad-index] +ERROR homeassistant/helpers/storage.py:413:25-40: Cannot index into `int` [bad-index] +ERROR homeassistant/helpers/storage.py:413:25-40: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/helpers/storage.py:413:25-40: Cannot index into `str` [bad-index] +ERROR homeassistant/helpers/storage.py:413:25-40: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/storage.py:413:42-63: Cannot index into `bool` [bad-index] +ERROR homeassistant/helpers/storage.py:413:42-63: Cannot index into `float` [bad-index] +ERROR homeassistant/helpers/storage.py:413:42-63: Cannot index into `int` [bad-index] +ERROR homeassistant/helpers/storage.py:413:42-63: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/helpers/storage.py:413:42-63: Cannot index into `str` [bad-index] +ERROR homeassistant/helpers/storage.py:413:42-63: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/storage.py:413:65-77: Cannot index into `bool` [bad-index] +ERROR homeassistant/helpers/storage.py:413:65-77: Cannot index into `float` [bad-index] +ERROR homeassistant/helpers/storage.py:413:65-77: Cannot index into `int` [bad-index] +ERROR homeassistant/helpers/storage.py:413:65-77: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/helpers/storage.py:413:65-77: Cannot index into `str` [bad-index] +ERROR homeassistant/helpers/storage.py:413:65-77: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/storage.py:416:24-39: Cannot index into `bool` [bad-index] +ERROR homeassistant/helpers/storage.py:416:24-39: Cannot index into `float` [bad-index] +ERROR homeassistant/helpers/storage.py:416:24-39: Cannot index into `int` [bad-index] +ERROR homeassistant/helpers/storage.py:416:24-39: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/helpers/storage.py:416:24-39: Cannot index into `str` [bad-index] +ERROR homeassistant/helpers/storage.py:416:24-39: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/storage.py:418:30-42: Cannot index into `bool` [bad-index] +ERROR homeassistant/helpers/storage.py:418:30-42: Cannot index into `float` [bad-index] +ERROR homeassistant/helpers/storage.py:418:30-42: Cannot index into `int` [bad-index] +ERROR homeassistant/helpers/storage.py:418:30-42: Cannot index into `list[Unknown]` [bad-index] +ERROR homeassistant/helpers/storage.py:418:30-42: Cannot index into `str` [bad-index] +ERROR homeassistant/helpers/storage.py:418:30-42: `None` is not subscriptable [unsupported-operation] +ERROR homeassistant/helpers/storage.py:470:19-62: Argument `BoundMethod[Self@Store, (self: Self@Store) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_at` [bad-argument-type] +ERROR homeassistant/helpers/sun.py:90:5-105:17: `ValueError | None` is not assignable to `None` (caused by inconsistent types when breaking cycles) [bad-assignment] +ERROR homeassistant/helpers/system_info.py:43:54-69: Argument `() -> str` is not assignable to parameter `target` with type `(**tuple[*@_]) -> @_` in function `homeassistant.core.HomeAssistant.async_add_executor_job` [bad-argument-type] +ERROR homeassistant/helpers/system_info.py:88:31-35: Cannot set item in `dict[str, bool | str]` [unsupported-operation] +ERROR homeassistant/helpers/system_info.py:113:37-41: `info` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/system_info.py:113:37-59: Cannot set item in `dict[str, bool | str]` [unsupported-operation] +ERROR homeassistant/helpers/system_info.py:114:34-62: Cannot set item in `dict[str, bool | str]` [unsupported-operation] +ERROR homeassistant/helpers/system_info.py:115:41-45: `info` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/system_info.py:115:41-59: Cannot set item in `dict[str, bool | str]` [unsupported-operation] +ERROR homeassistant/helpers/system_info.py:116:34-53: Cannot set item in `dict[str, bool | str]` [unsupported-operation] +ERROR homeassistant/helpers/system_info.py:118:12-16: `info` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/template/__init__.py:261:35-41: No matching overload found for function `set.__init__` called with arguments: (Self@gen_result_wrapper.Wrapper) [no-matching-overload] +ERROR homeassistant/helpers/template/__init__.py:397:16-19: `ret` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/template/__init__.py:535:53-69: Argument `BoundMethod[Event, (self: Event) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/helpers/template/__init__.py:604:39-609:10: Unpacked argument `tuple[Unknown, object | Unknown]` is not assignable to parameter `*args` with type `tuple[Any, Any, dict[str, Any] | None, bool]` in function `homeassistant.util.async_.run_callback_threadsafe` [bad-argument-type] +ERROR homeassistant/helpers/template/__init__.py:605:13-27: Object of class `NoneType` has no attribute `loop` [missing-attribute] +ERROR homeassistant/helpers/template/__init__.py:899:9-18: Class member `TemplateStateBase.entity_id` overrides parent class `State` in an inconsistent manner [bad-override] +ERROR homeassistant/helpers/template/__init__.py:955:9-13: Class member `TemplateStateBase.name` overrides parent class `State` in an inconsistent manner [bad-override] +ERROR homeassistant/helpers/template/__init__.py:1787:14-28: Module `jinja2.filters` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/helpers/template/__init__.py:1787:51-58: Argument `object | Unknown` is not assignable to parameter `default` with type `int` in function `jinja2.filters.do_int` [bad-argument-type] +ERROR homeassistant/helpers/template/__init__.py:1795:14-28: Module `jinja2.filters` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/helpers/template/__init__.py:1795:51-58: Argument `object | Unknown` is not assignable to parameter `default` with type `int` in function `jinja2.filters.do_int` [bad-argument-type] +ERROR homeassistant/helpers/template/__init__.py:2181:19-31: Module `jinja2.nodes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/helpers/template/__init__.py:2197:33-38: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2198:39-50: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2199:39-50: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2200:36-52: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2201:40-52: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2202:40-62: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2203:32-49: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2204:35-42: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2205:33-48: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2206:31-34: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2207:31-44: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2208:37-46: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2209:42-56: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2210:32-43: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2211:36-44: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2212:37-46: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2213:34-40: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2214:34-47: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2215:35-42: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2216:31-34: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2275:29-33: Argument `HomeAssistant | None` is not assignable to parameter with type `HomeAssistant` [bad-argument-type] +ERROR homeassistant/helpers/template/__init__.py:2281:33-52: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2283:35-56: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2286:37-60: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2289:41-68: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2292:40-66: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2297:48-82: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2302:45-76: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2305:43-72: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2310:34-54: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2311:33-52: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2359:38-55: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2366:35-56: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2367:36-58: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2368:34-54: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2369:37-60: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2370:31-48: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2371:41-68: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2372:38-62: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2373:38-62: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2374:36-58: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2375:34-54: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2377:48-62: Argument `(hass: HomeAssistant, *args: Any) -> State | None` is not assignable to parameter `func` with type `(HomeAssistant) -> int` in function `hassfunction` [bad-argument-type] +ERROR homeassistant/helpers/template/__init__.py:2385:48-57: Argument `(hass: HomeAssistant, entity_id: str) -> bool` is not assignable to parameter `func` with type `(HomeAssistant, b: _SupportsDunderGE | _SupportsDunderGT | _SupportsDunderLE | _SupportsDunderLT, /) -> Any` in function `hassfunction` [bad-argument-type] +ERROR homeassistant/helpers/template/__init__.py:2389:44-74: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2391:13-29: Argument `(hass: HomeAssistant, entity_id: str) -> bool` is not assignable to parameter `func` with type `(HomeAssistant, b: _SupportsDunderGE | _SupportsDunderGT | _SupportsDunderLE | _SupportsDunderLT, /) -> Any` in function `hassfunction` [bad-argument-type] +ERROR homeassistant/helpers/template/__init__.py:2396:41-68: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2397:36-58: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2398:38-62: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2399:44-65: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2400:34-49: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/__init__.py:2404:52-65: Argument `(hass: HomeAssistant, entity_id: str, name: str, value: Any) -> bool` is not assignable to parameter `func` with type `(HomeAssistant, b: _SupportsDunderGE | _SupportsDunderGT | _SupportsDunderLE | _SupportsDunderLT, /) -> Any` in function `hassfunction` [bad-argument-type] +ERROR homeassistant/helpers/template/__init__.py:2405:47-55: Argument `(hass: HomeAssistant, entity_id: str, state: list[str] | str) -> bool` is not assignable to parameter `func` with type `(HomeAssistant, b: _SupportsDunderGE | _SupportsDunderGT | _SupportsDunderLE | _SupportsDunderLT, /) -> Any` in function `hassfunction` [bad-argument-type] +ERROR homeassistant/helpers/template/__init__.py:2428:23-35: Module `jinja2.nodes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/helpers/template/__init__.py:2438:23-35: Module `jinja2.nodes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/helpers/template/__init__.py:2447:23-35: Module `jinja2.nodes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR homeassistant/helpers/template/extensions/base.py:54:20-37: Expected 1 more positional argument [bad-argument-count] +ERROR homeassistant/helpers/template/extensions/base.py:62:5-16: Class member `BaseTemplateExtension.environment` overrides parent class `Extension` in an inconsistent manner [bad-override] +ERROR homeassistant/helpers/template/extensions/base.py:85:67-83: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/template/extensions/base.py:89:65-81: Cannot set item in `dict[str, ((a: _SupportsDunderGE | _SupportsDunderGT | _SupportsDunderLE | _SupportsDunderLT, b: _SupportsDunderGE | _SupportsDunderGT | _SupportsDunderLE | _SupportsDunderLT, /) -> Any) | ((a: object, b: object, /) -> Any) | ((obj: object, /) -> TypeIs[(...) -> object]) | ((env: Environment, value: str) -> bool) | ((value: int) -> bool) | ((value: int, num: int) -> bool) | ((value: str) -> bool) | ((value: Any) -> bool) | ((value: Any, other: Any) -> bool) | ((value: Any, seq: Container[Any]) -> bool)]` [unsupported-operation] +ERROR homeassistant/helpers/template/extensions/base.py:101:63-67: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR homeassistant/helpers/trace.py:143:5-16: `trace_stack` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/trace.py:189:44-49: `trace` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/trace.py:190:9-14: `trace` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/trace.py:191:5-10: `trace` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/trace.py:191:11-15: `path` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/trace.py:283:27-34: Unpacked argument `tuple[object, ...]` is not assignable to varargs type `tuple[*_Ts]` [bad-argument-type] +ERROR homeassistant/helpers/trace.py:285:16-29: Returned type `(*args: *_Ts) -> Coroutine[Unknown, Unknown, None]` is not assignable to declared return type `(**tuple[*_Ts]) -> Coroutine[Any, Any, None]` [bad-return] +ERROR homeassistant/helpers/translation.py:453:20-27: `message` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/translation.py:455:23-30: `message` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/trigger.py:254:64-88: Function declared to return `dict[str, type[Trigger]]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/helpers/trigger.py:261:10-20: Function declared to return `dict[str, Any]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/helpers/trigger.py:270:10-23: Function declared to return `() -> None` but is missing an explicit `return` [bad-return] +ERROR homeassistant/helpers/trigger.py:292:10-27: Function declared to return `Task[Any]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/helpers/trigger.py:305:10-24: Function declared to return `dict[str, Any]` but is missing an explicit `return` [bad-return] +ERROR homeassistant/helpers/trigger.py:424:34-50: Cannot set item in `dict[object, tuple[HassJob[[dict[str, Any], Context | None], Coroutine[Any, Any, None] | Any], dict[str, Any]]]` [unsupported-operation] +ERROR homeassistant/helpers/trigger.py:476:16-73: Returned type `tuple[str, ModuleType]` is not assignable to declared return type `tuple[str, TriggerProtocol]` [bad-return] +ERROR homeassistant/helpers/trigger.py:792:28-44: `missing_triggers` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/trigger_template_entity.py:290:49-58: `available` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/update_coordinator.py:62:10-28: Function declared to return `() -> None` but is missing an explicit `return` [bad-return] +ERROR homeassistant/helpers/update_coordinator.py:271:27-62: Argument `BoundMethod[Self@DataUpdateCoordinator, (self: Self@DataUpdateCoordinator) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_at` [bad-argument-type] +ERROR homeassistant/helpers/update_coordinator.py:508:16-26: `log_timing` may be uninitialized [unbound-name] +ERROR homeassistant/helpers/update_coordinator.py:512:35-40: `start` may be uninitialized [unbound-name] +ERROR homeassistant/loader.py:297:16-33: Could not find import of `custom_components` [missing-import] +ERROR homeassistant/loader.py:373:10-14: Function declared to return `bool` but is missing an explicit `return` [bad-return] +ERROR homeassistant/loader.py:378:10-14: Function declared to return `bool` but is missing an explicit `return` [bad-return] +ERROR homeassistant/loader.py:383:10-14: Function declared to return `bool` but is missing an explicit `return` [bad-return] +ERROR homeassistant/loader.py:396:10-14: Function declared to return `bool` but is missing an explicit `return` [bad-return] +ERROR homeassistant/loader.py:404:77-81: Function declared to return `bool` but is missing an explicit `return` [bad-return] +ERROR homeassistant/loader.py:407:65-69: Function declared to return `bool` but is missing an explicit `return` [bad-return] +ERROR homeassistant/loader.py:979:20-33: Returned type `ComponentProtocol | ModuleType` is not assignable to declared return type `ComponentProtocol` [bad-return] +ERROR homeassistant/loader.py:995:16-21: `debug` may be uninitialized [unbound-name] +ERROR homeassistant/loader.py:999:43-48: `start` may be uninitialized [unbound-name] +ERROR homeassistant/loader.py:1031:12-17: `debug` may be uninitialized [unbound-name] +ERROR homeassistant/loader.py:1035:39-44: `start` may be uninitialized [unbound-name] +ERROR homeassistant/loader.py:1057:20-33: Returned type `ComponentProtocol | ModuleType` is not assignable to declared return type `ComponentProtocol` [bad-return] +ERROR homeassistant/loader.py:1084:16-29: Returned type `ComponentProtocol | ModuleType` is not assignable to declared return type `ComponentProtocol` [bad-return] +ERROR homeassistant/loader.py:1183:20-25: `debug` may be uninitialized [unbound-name] +ERROR homeassistant/loader.py:1189:47-52: `start` may be uninitialized [unbound-name] +ERROR homeassistant/loader.py:1487:15-17: Argument `dict[@_, @_]` is not assignable to parameter `cache` with type `_ResolveDependenciesCacheProtocol` in function `_resolve_integrations_dependencies` [bad-argument-type] +ERROR homeassistant/loader.py:1673:16-33: Could not find import of `custom_components` [missing-import] +ERROR homeassistant/scripts/__init__.py:31:28-31: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR homeassistant/scripts/__init__.py:33:28-36: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR homeassistant/scripts/benchmark/__init__.py:39:32-73: Object of class `_AbstractEventLoopPolicy` has no attribute `loop_name` [missing-attribute] +ERROR homeassistant/setup.py:109:5-11: `errors` may be uninitialized [unbound-name] +ERROR homeassistant/setup.py:109:25-31: `errors` may be uninitialized [unbound-name] +ERROR homeassistant/setup.py:113:23-29: `errors` may be uninitialized [unbound-name] +ERROR homeassistant/setup.py:402:17-32: Argument `BoundMethod[Logger, (self: Logger, msg: object, *args: object, *, exc_info: BaseException | bool | tuple[type[BaseException], BaseException, TracebackType | None] | tuple[None, None, None] | None = None, stack_info: bool = False, stacklevel: int = 1, extra: Mapping[str, object] | None = None) -> None]` is not assignable to parameter `callback` with type `(**tuple[object, ...]) -> object` in function `asyncio.events.AbstractEventLoop.call_later` [bad-argument-type] +ERROR homeassistant/setup.py:558:8-32: `load_top_level_component` may be uninitialized [unbound-name] +ERROR homeassistant/setup.py:560:21-30: `component` may be uninitialized [unbound-name] +ERROR homeassistant/setup.py:560:52-61: `component` may be uninitialized [unbound-name] +ERROR homeassistant/setup.py:588:5-14: `processed` may be uninitialized [unbound-name] +ERROR homeassistant/util/__init__.py:170:17-31: Object of class `FunctionType` has no attribute `_throttle` [missing-attribute] +ERROR homeassistant/util/__init__.py:172:32-46: Object of class `FunctionType` has no attribute `_throttle` [missing-attribute] +ERROR homeassistant/util/__init__.py:173:17-31: Object of class `FunctionType` has no attribute `_throttle` [missing-attribute] +ERROR homeassistant/util/__init__.py:174:24-38: Object of class `FunctionType` has no attribute `_throttle` [missing-attribute] +ERROR homeassistant/util/__init__.py:177:24-41: Returned type `Coroutine[Unknown, Unknown, None] | None` is not assignable to declared return type `((...) -> Unknown) | Coroutine[Unknown, Unknown, Unknown]` [bad-return] +ERROR homeassistant/util/__init__.py:188:24-41: Returned type `Coroutine[Unknown, Unknown, None] | None` is not assignable to declared return type `((...) -> Unknown) | Coroutine[Unknown, Unknown, Unknown]` [bad-return] +ERROR homeassistant/util/aiohttp.py:128:36-63: Argument `Literal['utf-8'] | ((self: Response, value: str | None) -> None)` is not assignable to parameter `encoding` with type `str` in function `bytes.decode` [bad-argument-type] +ERROR homeassistant/util/async_.py:67:39-46: Unpacked argument `tuple[object, ...]` is not assignable to varargs type `tuple[*_Ts]` [bad-argument-type] +ERROR homeassistant/util/async_.py:74:31-43: Argument `() -> None` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/util/color.py:303:19-25: No matching overload found for function `max` called with arguments: (Literal[0], float | Unknown) [no-matching-overload] +ERROR homeassistant/util/dt.py:237:27-32: `match` may be uninitialized [unbound-name] +ERROR homeassistant/util/dt.py:237:27-42: Object of class `NoneType` has no attribute `groupdict` [missing-attribute] +ERROR homeassistant/util/dt.py:461:29-40: `next_second` may be uninitialized [unbound-name] +ERROR homeassistant/util/dt.py:462:44-55: `next_second` may be uninitialized [unbound-name] +ERROR homeassistant/util/enum.py:11:56-58: Function declared to return `_T` but is missing an explicit `return` [bad-return] +ERROR homeassistant/util/hass_dict.pyi:33:9-20: Class member `HassDict.__getitem__` overrides parent class `dict` in an inconsistent manner [bad-override] +ERROR homeassistant/util/hass_dict.pyi:41:9-20: Class member `HassDict.__setitem__` overrides parent class `dict` in an inconsistent manner [bad-override] +ERROR homeassistant/util/hass_dict.pyi:51:9-19: Class member `HassDict.setdefault` overrides parent class `dict` in an inconsistent manner [bad-override] +ERROR homeassistant/util/hass_dict.pyi:63:9-12: Class member `HassDict.get` overrides parent class `dict` in an inconsistent manner [bad-override] +ERROR homeassistant/util/hass_dict.pyi:79:9-12: Class member `HassDict.pop` overrides parent class `dict` in an inconsistent manner [bad-override] +ERROR homeassistant/util/hass_dict.pyi:138:16-50: assert_type(dict[int, bool] | dict[Any, Any], dict[int, bool]) failed [assert-type] +ERROR homeassistant/util/hass_dict.pyi:140:16-46: assert_type(set[str] | set[Any], set[str]) failed [assert-type] +ERROR homeassistant/util/language.py:153:46-56: `region_idx` may be uninitialized [unbound-name] +ERROR homeassistant/util/logging.py:166:30-37: Unpacked argument `tuple[object, ...]` is not assignable to varargs type `tuple[*_Ts]` [bad-argument-type] +ERROR homeassistant/util/logging.py:177:25-32: Unpacked argument `tuple[object, ...]` is not assignable to varargs type `tuple[*_Ts]` [bad-argument-type] +ERROR homeassistant/util/logging.py:179:23-33: Argument `(**tuple[*_Ts]) -> Any` is not assignable to parameter `format_err` with type `(**tuple[*@_]) -> Any` in function `log_exception` [bad-argument-type] +ERROR homeassistant/util/logging.py:187:13-20: Unpacked argument `tuple[object, ...]` is not assignable to varargs type `tuple[*_Ts]` [bad-argument-type] +ERROR homeassistant/util/logging.py:189:23-33: Argument `(**tuple[*_Ts]) -> Any` is not assignable to parameter `format_err` with type `(**tuple[*@_]) -> Any` in function `log_exception` [bad-argument-type] +ERROR homeassistant/util/logging.py:198:13-20: Unpacked argument `tuple[object, ...]` is not assignable to varargs type `tuple[*_Ts]` [bad-argument-type] +ERROR homeassistant/util/logging.py:200:23-33: Argument `(**tuple[*_Ts]) -> Any` is not assignable to parameter `format_err` with type `(**tuple[*@_]) -> Any` in function `log_exception` [bad-argument-type] +ERROR homeassistant/util/logging.py:252:27-37: Argument `(**tuple[*_Ts]) -> Any` is not assignable to parameter `format_err` with type `(**tuple[*@_]) -> Any` in function `log_exception` [bad-argument-type] +ERROR homeassistant/util/logging.py:255:24-31: Unpacked argument `tuple[object, ...]` is not assignable to parameter `*args` with type `_Ts` in function `coro_wrapper` [bad-argument-type] +ERROR homeassistant/util/logging.py:271:9-274:10: Argument `() -> str` is not assignable to parameter `format_err` with type `(**tuple[*@_]) -> Any` in function `catch_log_coro_exception` [bad-argument-type] +ERROR homeassistant/util/loop.py:107:19-36: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/loop.py:113:28-45: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/loop.py:114:16-33: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/loop.py:125:26-43: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/loop.py:126:13-30: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/loop.py:127:13-30: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/loop.py:128:13-30: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/loop.py:129:13-30: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/loop.py:145:26-43: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/loop.py:146:13-30: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/loop.py:147:13-30: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/loop.py:148:13-30: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/loop.py:149:13-30: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/loop.py:155:46-63: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/loop.py:162:29-46: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/loop.py:163:29-46: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/loop.py:164:16-33: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/loop.py:164:60-77: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/loop.py:165:17-34: `integration_frame` may be uninitialized [unbound-name] +ERROR homeassistant/util/read_only_dict.py:16:5-16: Class member `ReadOnlyDict.__setitem__` overrides parent class `dict` in an inconsistent manner [bad-override] +ERROR homeassistant/util/read_only_dict.py:17:5-16: Class member `ReadOnlyDict.__delitem__` overrides parent class `dict` in an inconsistent manner [bad-override] +ERROR homeassistant/util/read_only_dict.py:18:5-8: Class member `ReadOnlyDict.pop` overrides parent class `dict` in an inconsistent manner [bad-override] +ERROR homeassistant/util/read_only_dict.py:21:5-11: Class member `ReadOnlyDict.update` overrides parent class `dict` in an inconsistent manner [bad-override] +ERROR homeassistant/util/read_only_dict.py:22:5-15: Class member `ReadOnlyDict.setdefault` overrides parent class `dict` in an inconsistent manner [bad-override] +ERROR homeassistant/util/timeout.py:50:41-52: Argument `BoundMethod[Self@_GlobalFreezeContext, (self: Self@_GlobalFreezeContext) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/util/timeout.py:59:41-51: Argument `BoundMethod[Self@_GlobalFreezeContext, (self: Self@_GlobalFreezeContext) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/util/timeout.py:116:41-52: Argument `BoundMethod[Self@_ZoneFreezeContext, (self: Self@_ZoneFreezeContext) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/util/timeout.py:125:41-51: Argument `BoundMethod[Self@_ZoneFreezeContext, (self: Self@_ZoneFreezeContext) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_soon_threadsafe` [bad-argument-type] +ERROR homeassistant/util/timeout.py:218:36-52: Argument `BoundMethod[Self@_GlobalTaskContext, (self: Self@_GlobalTaskContext) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_at` [bad-argument-type] +ERROR homeassistant/util/timeout.py:341:36-52: Argument `BoundMethod[Self@_ZoneTaskContext, (self: Self@_ZoneTaskContext) -> None]` is not assignable to parameter `callback` with type `(**tuple[*@_]) -> object` in function `asyncio.events.AbstractEventLoop.call_at` [bad-argument-type] +ERROR homeassistant/util/unit_conversion.py:174:25-42: No matching overload found for function `max` called with arguments: (Literal[0], float) [no-matching-overload] +ERROR homeassistant/util/variance.py:41:43-61: `-` is not supported between `_R` and `_R` [unsupported-operation] +ERROR homeassistant/util/variance.py:41:43-61: `-` is not supported between `_R` and `_R` [unsupported-operation] +ERROR homeassistant/util/variance.py:41:43-61: Argument `float | int | timedelta` is not assignable to parameter `x` with type `SupportsAbs[float]` in function `abs` [bad-argument-type] + INFO Checking project configured at `/pyrefly.toml` + INFO 37,601 errors (560 suppressed) diff --git a/scripts/ty_benchmark/snapshots/homeassistant_Pyright.txt b/scripts/ty_benchmark/snapshots/homeassistant_Pyright.txt new file mode 100644 index 0000000000..0b07ba7057 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/homeassistant_Pyright.txt @@ -0,0 +1,41502 @@ +/homeassistant/auth/__init__.py + /homeassistant/auth/__init__.py:137:12 - error: Could not access item in TypedDict +   "type" is not a required key in "AuthFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/auth/__init__.py:141:23 - error: Could not access item in TypedDict +   "data" is not a required key in "AuthFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/auth/__init__.py:142:32 - error: Could not access item in TypedDict +   "data" is not a required key in "AuthFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/auth/__init__.py:150:37 - error: Could not access item in TypedDict +   "data" is not a required key in "AuthFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/auth/__init__.py:411:28 - error: Cannot access attribute "async_will_remove_credentials" for class "AuthProvider" +   Attribute "async_will_remove_credentials" is unknown (reportAttributeAccessIssue) + /homeassistant/auth/__init__.py:566:13 - error: Argument of type "HassJob[(_: datetime | None = None), None]" cannot be assigned to parameter "action" of type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" in function "async_track_point_in_utc_time" +   Type "HassJob[(_: datetime | None = None), None]" is not assignable to type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" +     "HassJob[(_: datetime | None = None), None]" is not assignable to "HassJob[(datetime), Coroutine[Any, Any, None] | None]" +       Type parameter "_P@HassJob" is invariant, but "(_: datetime | None = None)" is not the same as "(datetime)" +       Type parameter "_R_co@HassJob" is invariant, but "None" is not the same as "Coroutine[Any, Any, None] | None" +     Type "HassJob[(_: datetime | None = None), None]" is not assignable to type "(datetime) -> (Coroutine[Any, Any, None] | None)" (reportArgumentType) +/homeassistant/auth/jwt_wrapper.py + /homeassistant/auth/jwt_wrapper.py:36:9 - error: "_load" overrides method of same name in class "PyJWS" with incompatible type "_lru_cache_wrapper[tuple[bytes, bytes, dict[Unknown, Unknown], bytes]]" (reportIncompatibleMethodOverride) +/homeassistant/auth/mfa_modules/notify.py + /homeassistant/auth/mfa_modules/notify.py:343:37 - error: Cannot access attribute "async_notify" for class "MultiFactorAuthModule" +   Attribute "async_notify" is unknown (reportAttributeAccessIssue) +/homeassistant/auth/permissions/merge.py + /homeassistant/auth/permissions/merge.py:63:13 - error: Argument of type "CategoryType" cannot be assigned to parameter "value" of type "SubCategoryType" in function "__setitem__" +   Type "CategoryType" is not assignable to type "SubCategoryType" +     Type "Mapping[str, SubCategoryType]" is not assignable to type "SubCategoryType" +       "Mapping[str, SubCategoryType]" is not assignable to "Mapping[str, ValueType]" +         Type parameter "_VT_co@Mapping" is covariant, but "SubCategoryType" is not a subtype of "ValueType" +           Type "SubCategoryType" is not assignable to type "ValueType" +       "Mapping[str, SubCategoryType]" is not assignable to "bool" +       "Mapping[str, SubCategoryType]" is not assignable to "None" (reportArgumentType) + /homeassistant/auth/permissions/merge.py:63:13 - error: Argument of type "CategoryType" cannot be assigned to parameter "value" of type "ValueType" in function "__setitem__" +   Type "CategoryType" is not assignable to type "ValueType" +     Type "Mapping[str, SubCategoryType]" is not assignable to type "ValueType" +       "Mapping[str, SubCategoryType]" is not assignable to "Mapping[str, bool]" +         Type parameter "_VT_co@Mapping" is covariant, but "SubCategoryType" is not a subtype of "bool" +           Type "SubCategoryType" is not assignable to type "bool" +       "Mapping[str, SubCategoryType]" is not assignable to "bool" +       "Mapping[str, SubCategoryType]" is not assignable to "None" (reportArgumentType) +/homeassistant/auth/providers/__init__.py + /homeassistant/auth/providers/__init__.py:268:35 - error: Cannot access attribute "async_initialize_login_mfa_step" for class "MultiFactorAuthModule" +   Attribute "async_initialize_login_mfa_step" is unknown (reportAttributeAccessIssue) +/homeassistant/auth/providers/command_line.py + /homeassistant/auth/providers/command_line.py:150:43 - error: Cannot access attribute "async_validate_login" for class "AuthProvider" +   Attribute "async_validate_login" is unknown (reportAttributeAccessIssue) +/homeassistant/auth/providers/homeassistant.py + /homeassistant/auth/providers/homeassistant.py:420:43 - error: Cannot access attribute "async_validate_login" for class "AuthProvider" +   Attribute "async_validate_login" is unknown (reportAttributeAccessIssue) +/homeassistant/auth/providers/insecure_example.py + /homeassistant/auth/providers/insecure_example.py:108:37 - error: Cannot access attribute "async_validate_login" for class "AuthProvider" +   Attribute "async_validate_login" is unknown (reportAttributeAccessIssue) +/homeassistant/auth/providers/trusted_networks.py + /homeassistant/auth/providers/trusted_networks.py:240:33 - error: Cannot access attribute "async_validate_access" for class "AuthProvider" +   Attribute "async_validate_access" is unknown (reportAttributeAccessIssue) +/homeassistant/backup_restore.py + /homeassistant/backup_restore.py:142:33 - error: Argument of type "tuple[Literal['home-assistant_v2.db'], Literal['home-assistant_v2.db-wal']]" cannot be assigned to parameter "iterable" of type "Iterable[Literal['backups']]" in function "extend" +   "tuple[Literal['home-assistant_v2.db'], Literal['home-assistant_v2.db-wal']]" is not assignable to "Iterable[Literal['backups']]" +     Type parameter "_T_co@Iterable" is covariant, but "Literal['home-assistant_v2.db', 'home-assistant_v2.db-wal']" is not a subtype of "Literal['backups']" +       Type "Literal['home-assistant_v2.db', 'home-assistant_v2.db-wal']" is not assignable to type "Literal['backups']" +         "Literal['home-assistant_v2.db']" is not assignable to type "Literal['backups']" (reportArgumentType) +/homeassistant/bootstrap.py + /homeassistant/bootstrap.py:456:9 - error: Argument of type "Task[dict[str, Any]]" cannot be assigned to parameter "coros_or_futures" of type "_FutureLike[_T@gather]" in function "gather" +   Type "Task[dict[str, Any]]" is not assignable to type "_FutureLike[None]" +     "Task[dict[str, Any]]" is not assignable to "Future[None]" +       Type parameter "_T@Future" is invariant, but "dict[str, Any]" is not the same as "None" +     "Task[dict[str, Any]]" is not assignable to "Awaitable[None]" +       Type parameter "_T_co@Awaitable" is covariant, but "dict[str, Any]" is not a subtype of "None" +         "dict[str, Any]" is not assignable to "None" (reportArgumentType) +/homeassistant/components/abode/__init__.py + /homeassistant/components/abode/__init__.py:83:50 - error: Argument of type "Path" cannot be assigned to parameter "user_data" of type "Mapping[str, Path]" in function "override" +   "Path" is not assignable to "Mapping[str, Path]" (reportArgumentType) +/homeassistant/components/abode/alarm_control_panel.py + /homeassistant/components/abode/alarm_control_panel.py:33:7 - error: Base classes for class "AbodeAlarm" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/abode/alarm_control_panel.py:45:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/abode/alarm_control_panel.py:68:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/abode/binary_sensor.py + /homeassistant/components/abode/binary_sensor.py:45:7 - error: Base classes for class "AbodeBinarySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/abode/binary_sensor.py:45:7 - error: Base classes for class "AbodeBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/abode/binary_sensor.py:52:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/abode/binary_sensor.py:57:9 - error: "device_class" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/abode/binary_sensor.py:57:9 - error: "device_class" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[BinarySensorDeviceClass | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/abode/camera.py + /homeassistant/components/abode/camera.py:37:44 - error: "CAPTURE_IMAGE" is not a known attribute of module "jaraco.abode.helpers.timeline" (reportAttributeAccessIssue) + /homeassistant/components/abode/camera.py:42:7 - error: Base classes for class "AbodeCamera" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/abode/camera.py:42:7 - error: Base classes for class "AbodeCamera" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/abode/camera.py:119:9 - error: "is_on" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/abode/cover.py + /homeassistant/components/abode/cover.py:31:7 - error: Base classes for class "AbodeCover" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/abode/cover.py:31:7 - error: Base classes for class "AbodeCover" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/abode/cover.py:38:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/abode/entity.py + /homeassistant/components/abode/entity.py:76:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/abode/entity.py:86:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/abode/light.py + /homeassistant/components/abode/light.py:42:7 - error: Base classes for class "AbodeLight" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/abode/light.py:42:7 - error: Base classes for class "AbodeLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/abode/light.py:73:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/abode/light.py:78:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/abode/light.py:95:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/abode/light.py:103:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/abode/light.py:114:9 - error: "supported_color_modes" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[set[ColorMode] | set[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/abode/lock.py + /homeassistant/components/abode/lock.py:31:7 - error: Base classes for class "AbodeLock" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/abode/lock.py:31:7 - error: Base classes for class "AbodeLock" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/abode/lock.py:46:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/abode/sensor.py + /homeassistant/components/abode/sensor.py:79:7 - error: Base classes for class "AbodeSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/abode/sensor.py:79:7 - error: Base classes for class "AbodeSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/abode/sensor.py:93:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AbodeSensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/abode/sensor.py:93:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AbodeSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/abode/sensor.py:97:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/abode/sensor.py:102:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/abode/switch.py + /homeassistant/components/abode/switch.py:44:7 - error: Base classes for class "AbodeSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/abode/switch.py:44:7 - error: Base classes for class "AbodeSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/abode/switch.py:59:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/abode/switch.py:91:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/acaia/binary_sensor.py + /homeassistant/components/acaia/binary_sensor.py:53:7 - error: Base classes for class "AcaiaBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/acaia/binary_sensor.py:56:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "AcaiaBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/acaia/binary_sensor.py:59:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/acaia/button.py + /homeassistant/components/acaia/button.py:56:7 - error: Base classes for class "AcaiaButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/acaia/button.py:59:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "AcaiaButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/acaia/config_flow.py + /homeassistant/components/acaia/config_flow.py:64:50 - error: "is_new_style_scale" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/acaia/sensor.py + /homeassistant/components/acaia/sensor.py:95:7 - error: Base classes for class "AcaiaSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/acaia/sensor.py:98:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AcaiaDynamicUnitSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/acaia/sensor.py:101:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/acaia/sensor.py:111:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/acaia/sensor.py:119:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AcaiaSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/acaia/sensor.py:144:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/accuweather/config_flow.py + /homeassistant/components/accuweather/config_flow.py:9:38 - error: "ApiError" is not exported from module "accuweather" +   Import from "accuweather.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/accuweather/config_flow.py:9:48 - error: "InvalidApiKeyError" is not exported from module "accuweather" +   Import from "accuweather.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/accuweather/config_flow.py:9:68 - error: "RequestsExceededError" is not exported from module "accuweather" +   Import from "accuweather.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/accuweather/coordinator.py + /homeassistant/components/accuweather/coordinator.py:12:38 - error: "ApiError" is not exported from module "accuweather" +   Import from "accuweather.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/accuweather/coordinator.py:12:48 - error: "InvalidApiKeyError" is not exported from module "accuweather" +   Import from "accuweather.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/accuweather/coordinator.py:12:68 - error: "RequestsExceededError" is not exported from module "accuweather" +   Import from "accuweather.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/accuweather/sensor.py + /homeassistant/components/accuweather/sensor.py:417:7 - error: Base classes for class "AccuWeatherSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/sensor.py:434:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AccuWeatherSensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/sensor.py:434:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AccuWeatherSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/sensor.py:440:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/sensor.py:445:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/sensor.py:469:7 - error: Base classes for class "AccuWeatherForecastSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/sensor.py:487:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AccuWeatherSensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/sensor.py:487:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AccuWeatherSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/sensor.py:499:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/sensor.py:504:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/accuweather/weather.py + /homeassistant/components/accuweather/weather.py:101:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/weather.py:106:9 - error: "cloud_coverage" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/weather.py:111:9 - error: "native_apparent_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/weather.py:121:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/weather.py:129:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/weather.py:136:9 - error: "native_dew_point" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/weather.py:143:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/weather.py:148:9 - error: "native_wind_gust_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/weather.py:158:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/weather.py:168:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/weather.py:175:9 - error: "native_visibility" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/accuweather/weather.py:183:9 - error: "uv_index" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/acmeda/config_flow.py + /homeassistant/components/acmeda/config_flow.py:58:32 - error: Cannot assign to attribute "discovered_hubs" for class "AcmedaFlowHandler*" +   Type "dict[Any | None, Hub]" is not assignable to type "dict[str, Hub] | None" +     "dict[Any | None, Hub]" is not assignable to "dict[str, Hub]" +       Type parameter "_KT@dict" is invariant, but "Any | None" is not the same as "str" +     "dict[Any | None, Hub]" is not assignable to "None" (reportAttributeAccessIssue) + /homeassistant/components/acmeda/config_flow.py:74:46 - error: Argument of type "Any | None" cannot be assigned to parameter "title" of type "str" in function "async_create_entry" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/acmeda/cover.py + /homeassistant/components/acmeda/cover.py:47:7 - error: Base classes for class "AcmedaCover" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/acmeda/cover.py:47:7 - error: Base classes for class "AcmedaCover" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/acmeda/cover.py:53:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/acmeda/cover.py:60:24 - error: Operator "-" not supported for types "Literal[100]" and "None" (reportOperatorIssue) + /homeassistant/components/acmeda/cover.py:64:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/acmeda/cover.py:71:24 - error: Operator "-" not supported for types "Literal[100]" and "None" (reportOperatorIssue) + /homeassistant/components/acmeda/cover.py:75:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/acmeda/cover.py:96:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/acmeda/entity.py + /homeassistant/components/acmeda/entity.py:68:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/acmeda/entity.py:78:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/acmeda/hub.py + /homeassistant/components/acmeda/hub.py:64:20 - error: Cannot assign to attribute "api" for class "PulseHub*" +   "None" is not assignable to "Hub" (reportAttributeAccessIssue) +/homeassistant/components/acmeda/sensor.py + /homeassistant/components/acmeda/sensor.py:42:7 - error: Base classes for class "AcmedaBattery" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/acmeda/sensor.py:42:7 - error: Base classes for class "AcmedaBattery" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/acmeda/sensor.py:49:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/actron_air/__init__.py + /homeassistant/components/actron_air/__init__.py:30:19 - error: Type "List[Dict[str, Any]]" is not assignable to declared type "list[ActronAirNeoACSystem]" +   "List[Dict[str, Any]]" is not assignable to "list[ActronAirNeoACSystem]" +     Type parameter "_T@list" is invariant, but "Dict[str, Any]" is not the same as "ActronAirNeoACSystem" +     Consider switching from "list" to "Sequence" which is covariant (reportAssignmentType) + /homeassistant/components/actron_air/__init__.py:42:64 - error: "__getitem__" method not defined on type "ActronAirNeoACSystem" (reportIndexIssue) + /homeassistant/components/actron_air/__init__.py:44:29 - error: "__getitem__" method not defined on type "ActronAirNeoACSystem" (reportIndexIssue) +/homeassistant/components/actron_air/climate.py + /homeassistant/components/actron_air/climate.py:59:23 - error: Cannot access attribute "ac_system" for class "ActronAirNeoACSystem" +   Attribute "ac_system" is unknown (reportAttributeAccessIssue) + /homeassistant/components/actron_air/climate.py:64:32 - error: Cannot access attribute "remote_zone_info" for class "ActronAirNeoACSystem" +   Attribute "remote_zone_info" is unknown (reportAttributeAccessIssue) + /homeassistant/components/actron_air/climate.py:71:7 - error: Base classes for class "BaseClimateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/actron_air/climate.py:117:41 - error: "system_name" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/actron_air/climate.py:119:45 - error: "master_wc_model" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/actron_air/climate.py:120:47 - error: "master_wc_firmware_version" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/actron_air/climate.py:125:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/actron_air/climate.py:130:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/actron_air/climate.py:137:16 - error: Type "ActronAirNeoACSystem" is not assignable to return type "ActronAirNeoStatus" +   "ActronAirNeoACSystem" is not assignable to "ActronAirNeoStatus" (reportReturnType) + /homeassistant/components/actron_air/climate.py:140:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/actron_air/climate.py:142:50 - error: "is_on" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/actron_air/climate.py:145:50 - error: "mode" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/actron_air/climate.py:149:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/actron_air/climate.py:151:54 - error: "fan_mode" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/actron_air/climate.py:155:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/actron_air/climate.py:157:41 - error: "live_humidity_pc" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/actron_air/climate.py:160:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/actron_air/climate.py:162:41 - error: "live_temp_c" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/actron_air/climate.py:165:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/actron_air/climate.py:167:50 - error: "temperature_setpoint_cool_c" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/actron_air/climate.py:172:49 - error: "set_fan_mode" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/actron_air/climate.py:172:62 - error: Argument of type "str | None" cannot be assigned to parameter "fan_mode" of type "str" in function "set_fan_mode" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/actron_air/climate.py:177:38 - error: "set_system_mode" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/actron_air/climate.py:177:54 - error: Argument of type "str | None" cannot be assigned to parameter "mode" of type "str" in function "set_system_mode" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/actron_air/climate.py:182:49 - error: "set_temperature" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/actron_air/climate.py:182:77 - error: Argument of type "Any | None" cannot be assigned to parameter "temperature" of type "float" in function "set_temperature" +   Type "Any | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportArgumentType) + /homeassistant/components/actron_air/climate.py:202:30 - error: Cannot assign to attribute "_zone_id" for class "ActronZoneClimate*" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportAttributeAccessIssue) + /homeassistant/components/actron_air/climate.py:203:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/actron_air/climate.py:204:14 - error: "_attr_device_info" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DeviceInfo" is not the same as base type "DeviceInfo | None" (reportIncompatibleVariableOverride) + /homeassistant/components/actron_air/climate.py:214:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/actron_air/climate.py:219:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/actron_air/climate.py:227:23 - error: Cannot access attribute "zones" for class "ActronAirNeoACSystem" +   Attribute "zones" is unknown (reportAttributeAccessIssue) + /homeassistant/components/actron_air/climate.py:230:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/actron_air/climate.py:238:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/actron_air/climate.py:243:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/actron_air/climate.py:248:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/actron_air/coordinator.py + /homeassistant/components/actron_air/coordinator.py:55:30 - error: "__getitem__" method not defined on type "ActronAirNeoACSystem" (reportIndexIssue) + /homeassistant/components/actron_air/coordinator.py:60:15 - error: Method "_async_update_data" overrides class "DataUpdateCoordinator" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, ActronAirNeoACSystem]", override returns type "CoroutineType[Any, Any, ActronAirNeoStatus]" +     "CoroutineType[Any, Any, ActronAirNeoStatus]" is not assignable to "CoroutineType[Any, Any, ActronAirNeoACSystem]" +       Type parameter "_ReturnT_nd_co@CoroutineType" is covariant, but "ActronAirNeoStatus" is not a subtype of "ActronAirNeoACSystem" +         "ActronAirNeoStatus" is not assignable to "ActronAirNeoACSystem" (reportIncompatibleMethodOverride) + /homeassistant/components/actron_air/coordinator.py:65:16 - error: Type "ActronAirNeoStatus | None" is not assignable to return type "ActronAirNeoStatus" +   Type "ActronAirNeoStatus | None" is not assignable to type "ActronAirNeoStatus" +     "None" is not assignable to "ActronAirNeoStatus" (reportReturnType) +/homeassistant/components/adax/climate.py + /homeassistant/components/adax/climate.py:87:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/adax/climate.py:140:7 - error: Base classes for class "LocalAdaxDevice" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/adax/sensor.py + /homeassistant/components/adax/sensor.py:86:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AdaxSensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/adax/sensor.py:86:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AdaxSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/adax/sensor.py:100:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/adax/sensor.py:109:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/adguard/entity.py + /homeassistant/components/adguard/entity.py:52:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/adguard/sensor.py + /homeassistant/components/adguard/sensor.py:99:7 - error: Base classes for class "AdGuardHomeSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/adguard/sensor.py:112:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AdGuardHomeEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/adguard/sensor.py:112:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AdGuardHomeEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/adguard/switch.py + /homeassistant/components/adguard/switch.py:93:7 - error: Base classes for class "AdGuardHomeSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/adguard/switch.py:106:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AdGuardHomeSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/adguard/switch.py:106:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "AdGuardHomeSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/adguard/update.py + /homeassistant/components/adguard/update.py:37:7 - error: Base classes for class "AdGuardHomeUpdate" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ads/__init__.py + /homeassistant/components/ads/__init__.py:5:8 - error: Import "pyads" could not be resolved (reportMissingImports) +/homeassistant/components/ads/binary_sensor.py + /homeassistant/components/ads/binary_sensor.py:5:8 - error: Import "pyads" could not be resolved (reportMissingImports) + /homeassistant/components/ads/binary_sensor.py:51:7 - error: Base classes for class "AdsBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ads/binary_sensor.py:70:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ads/cover.py + /homeassistant/components/ads/cover.py:7:8 - error: Import "pyads" could not be resolved (reportMissingImports) + /homeassistant/components/ads/cover.py:138:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ads/cover.py:147:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ads/cover.py:179:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/ads/entity.py + /homeassistant/components/ads/entity.py:68:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/ads/hub.py + /homeassistant/components/ads/hub.py:9:8 - error: Import "pyads" could not be resolved (reportMissingImports) +/homeassistant/components/ads/light.py + /homeassistant/components/ads/light.py:7:8 - error: Import "pyads" could not be resolved (reportMissingImports) + /homeassistant/components/ads/light.py:55:7 - error: Base classes for class "AdsLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ads/light.py:88:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ads/light.py:93:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ads/select.py + /homeassistant/components/ads/select.py:5:8 - error: Import "pyads" could not be resolved (reportMissingImports) + /homeassistant/components/ads/select.py:53:7 - error: Base classes for class "AdsSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ads/sensor.py + /homeassistant/components/ads/sensor.py:91:7 - error: Base classes for class "AdsSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ads/sensor.py:123:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/ads/switch.py + /homeassistant/components/ads/switch.py:7:8 - error: Import "pyads" could not be resolved (reportMissingImports) + /homeassistant/components/ads/switch.py:48:7 - error: Base classes for class "AdsSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ads/switch.py:56:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ads/valve.py + /homeassistant/components/ads/valve.py:5:8 - error: Import "pyads" could not be resolved (reportMissingImports) + /homeassistant/components/ads/valve.py:54:7 - error: Base classes for class "AdsValve" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/advantage_air/binary_sensor.py + /homeassistant/components/advantage_air/binary_sensor.py:43:7 - error: Base classes for class "AdvantageAirFilter" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/binary_sensor.py:56:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/binary_sensor.py:61:7 - error: Base classes for class "AdvantageAirZoneMotion" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/binary_sensor.py:73:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/binary_sensor.py:78:7 - error: Base classes for class "AdvantageAirZoneMyZone" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/binary_sensor.py:91:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/advantage_air/climate.py + /homeassistant/components/advantage_air/climate.py:106:7 - error: Base classes for class "AdvantageAirAC" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/climate.py:106:7 - error: Base classes for class "AdvantageAirAC" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/climate.py:167:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/climate.py:174:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/climate.py:182:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/climate.py:189:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/climate.py:200:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/climate.py:205:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/climate.py:210:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/climate.py:271:7 - error: Base classes for class "AdvantageAirZone" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/climate.py:271:7 - error: Base classes for class "AdvantageAirZone" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/climate.py:291:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/climate.py:298:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/climate.py:314:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/climate.py:319:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/advantage_air/cover.py + /homeassistant/components/advantage_air/cover.py:51:7 - error: Base classes for class "AdvantageAirZoneVent" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/cover.py:51:7 - error: Base classes for class "AdvantageAirZoneVent" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/cover.py:67:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/cover.py:72:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/cover.py:102:7 - error: Base classes for class "AdvantageAirThingCover" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/cover.py:102:7 - error: Base classes for class "AdvantageAirThingCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/cover.py:118:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/advantage_air/entity.py + /homeassistant/components/advantage_air/entity.py:23:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/advantage_air/light.py + /homeassistant/components/advantage_air/light.py:41:7 - error: Base classes for class "AdvantageAirLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/light.py:71:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/light.py:98:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/light.py:109:7 - error: Base classes for class "AdvantageAirThingLight" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/light.py:109:7 - error: Base classes for class "AdvantageAirThingLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/light.py:109:7 - error: Base classes for class "AdvantageAirThingLight" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/light.py:116:7 - error: Base classes for class "AdvantageAirThingLightDimmable" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/light.py:116:7 - error: Base classes for class "AdvantageAirThingLightDimmable" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/light.py:116:7 - error: Base classes for class "AdvantageAirThingLightDimmable" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/light.py:123:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/advantage_air/select.py + /homeassistant/components/advantage_air/select.py:27:7 - error: Base classes for class "AdvantageAirMyZone" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/select.py:49:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/advantage_air/sensor.py + /homeassistant/components/advantage_air/sensor.py:64:7 - error: Base classes for class "AdvantageAirTimeTo" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/sensor.py:79:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/sensor.py:84:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/sensor.py:96:7 - error: Base classes for class "AdvantageAirZoneVent" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/sensor.py:110:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/sensor.py:117:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/sensor.py:124:7 - error: Base classes for class "AdvantageAirZoneSignal" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/sensor.py:138:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/sensor.py:143:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/sensor.py:156:7 - error: Base classes for class "AdvantageAirZoneTemp" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/sensor.py:172:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/advantage_air/switch.py + /homeassistant/components/advantage_air/switch.py:47:7 - error: Base classes for class "AdvantageAirFreshAir" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/switch.py:60:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/switch.py:73:7 - error: Base classes for class "AdvantageAirMyFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/switch.py:86:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/switch.py:99:7 - error: Base classes for class "AdvantageAirNightMode" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/switch.py:112:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/switch.py:125:7 - error: Base classes for class "AdvantageAirRelay" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/switch.py:125:7 - error: Base classes for class "AdvantageAirRelay" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/switch.py:125:7 - error: Base classes for class "AdvantageAirRelay" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/advantage_air/update.py + /homeassistant/components/advantage_air/update.py:26:7 - error: Base classes for class "AdvantageAirApp" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/update.py:26:7 - error: Base classes for class "AdvantageAirApp" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/update.py:43:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/advantage_air/update.py:48:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/aemet/image.py + /homeassistant/components/aemet/image.py:51:7 - error: Base classes for class "AemetImage" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/aemet/image.py:67:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ImageEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/aemet/sensor.py + /homeassistant/components/aemet/sensor.py:386:7 - error: Base classes for class "AemetSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/aemet/sensor.py:400:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AemetSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/aemet/sensor.py:400:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AemetSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/aemet/sensor.py:404:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/aemet/weather.py + /homeassistant/components/aemet/weather.py:77:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aemet/weather.py:93:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aemet/weather.py:98:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aemet/weather.py:103:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aemet/weather.py:108:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aemet/weather.py:113:9 - error: "native_wind_gust_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aemet/weather.py:118:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/aftership/sensor.py + /homeassistant/components/aftership/sensor.py:56:19 - error: Argument of type "Any | None" cannot be assigned to parameter "title" of type "str" in function "add" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/aftership/sensor.py:57:18 - error: Argument of type "Any | None" cannot be assigned to parameter "slug" of type "str" in function "add" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/aftership/sensor.py:88:5 - error: "_attr_native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/aftership/sensor.py:99:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/aftership/sensor.py:104:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/agent_dvr/camera.py + /homeassistant/components/agent_dvr/camera.py:119:9 - error: "is_recording" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/agent_dvr/camera.py:139:9 - error: "is_on" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/agent_dvr/camera.py:144:9 - error: "motion_detection_enabled" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/ai_task/entity.py + /homeassistant/components/ai_task/entity.py:33:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/ai_task/entity.py:42:16 - error: Type "int | None" is not assignable to return type "AITaskEntityFeature" +   Type "int | None" is not assignable to type "AITaskEntityFeature" +     "int" is not assignable to "AITaskEntityFeature" (reportReturnType) +/homeassistant/components/air_quality/__init__.py + /homeassistant/components/air_quality/__init__.py:136:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/air_quality/__init__.py:147:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/air_quality/__init__.py:152:9 - error: "unit_of_measurement" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/airgradient/button.py + /homeassistant/components/airgradient/button.py:90:7 - error: Base classes for class "AirGradientButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airgradient/button.py:102:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AirGradientButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airgradient/button.py:102:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "AirGradientButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airgradient/button.py:106:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/airgradient/number.py + /homeassistant/components/airgradient/number.py:106:7 - error: Base classes for class "AirGradientNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airgradient/number.py:118:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AirGradientNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airgradient/number.py:118:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "AirGradientNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airgradient/number.py:122:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/airgradient/number.py:127:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/airgradient/select.py + /homeassistant/components/airgradient/select.py:201:7 - error: Base classes for class "AirGradientSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airgradient/select.py:213:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AirGradientSelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airgradient/select.py:213:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "AirGradientSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airgradient/select.py:217:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/airgradient/select.py:222:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/airgradient/sensor.py + /homeassistant/components/airgradient/sensor.py:278:7 - error: Base classes for class "AirGradientSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airgradient/sensor.py:298:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/airgradient/sensor.py:321:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/airgradient/switch.py + /homeassistant/components/airgradient/switch.py:84:7 - error: Base classes for class "AirGradientSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airgradient/switch.py:96:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AirGradientSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airgradient/switch.py:96:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "AirGradientSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airgradient/switch.py:100:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/airgradient/switch.py:105:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/airgradient/switch.py:111:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/airgradient/update.py + /homeassistant/components/airgradient/update.py:50:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/airgradient/update.py:55:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/airly/config_flow.py + /homeassistant/components/airly/config_flow.py:67:28 - error: "location_nearest_valid" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/airly/sensor.py + /homeassistant/components/airly/sensor.py:196:7 - error: Base classes for class "AirlySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airly/sensor.py:225:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AirlySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airly/sensor.py:225:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AirlySensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/airnow/config_flow.py + /homeassistant/components/airnow/config_flow.py:8:22 - error: "WebServiceAPI" is not exported from module "pyairnow" +   Import from "pyairnow.api" instead (reportPrivateImportUsage) +/homeassistant/components/airnow/coordinator.py + /homeassistant/components/airnow/coordinator.py:9:22 - error: "WebServiceAPI" is not exported from module "pyairnow" +   Import from "pyairnow.api" instead (reportPrivateImportUsage) +/homeassistant/components/airnow/sensor.py + /homeassistant/components/airnow/sensor.py:143:7 - error: Base classes for class "AirNowSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airnow/sensor.py:161:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AirNowEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airnow/sensor.py:161:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AirNowEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airnow/sensor.py:171:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/airnow/sensor.py:176:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/airos/binary_sensor.py + /homeassistant/components/airos/binary_sensor.py:18:26 - error: "AirOS8Data" is not exported from module "airos.airos8" +   Import from "airos.data" instead (reportPrivateImportUsage) + /homeassistant/components/airos/binary_sensor.py:87:7 - error: Base classes for class "AirOSBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airos/binary_sensor.py:100:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AirOSBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airos/binary_sensor.py:100:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "AirOSBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airos/binary_sensor.py:104:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/airos/coordinator.py + /homeassistant/components/airos/coordinator.py:7:34 - error: "AirOS8Data" is not exported from module "airos.airos8" +   Import from "airos.data" instead (reportPrivateImportUsage) +/homeassistant/components/airos/sensor.py + /homeassistant/components/airos/sensor.py:29:26 - error: "AirOS8Data" is not exported from module "airos.airos8" +   Import from "airos.data" instead (reportPrivateImportUsage) + /homeassistant/components/airos/sensor.py:175:7 - error: Base classes for class "AirOSSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airos/sensor.py:188:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AirOSSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airos/sensor.py:188:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AirOSSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airos/sensor.py:192:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/airq/config_flow.py + /homeassistant/components/airq/config_flow.py:87:50 - error: Argument of type "str | None" cannot be assigned to parameter "title" of type "str" in function "async_create_entry" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/airq/number.py + /homeassistant/components/airq/number.py:55:7 - error: Base classes for class "AirQLEDBrightness" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airq/number.py:67:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AirQBrightnessDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airq/number.py:67:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "AirQBrightnessDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airq/number.py:73:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/airq/sensor.py + /homeassistant/components/airq/sensor.py:427:7 - error: Base classes for class "AirQSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airq/sensor.py:439:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AirQEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airq/sensor.py:439:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AirQEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/airthings/sensor.py + /homeassistant/components/airthings/sensor.py:197:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/airthings/sensor.py:202:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/airthings_ble/config_flow.py + /homeassistant/components/airthings_ble/config_flow.py:14:19 - error: "BleakError" is not exported from module "bleak" +   Import from "bleak.exc" instead (reportPrivateImportUsage) + /homeassistant/components/airthings_ble/config_flow.py:138:23 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/airthings_ble/config_flow.py:145:38 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/airthings_ble/sensor.py + /homeassistant/components/airthings_ble/sensor.py:249:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/airthings_ble/sensor.py:257:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/airtouch4/climate.py + /homeassistant/components/airtouch4/climate.py:85:7 - error: Base classes for class "AirtouchAC" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch4/climate.py:120:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch4/climate.py:125:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch4/climate.py:130:9 - error: "fan_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch4/climate.py:136:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch4/climate.py:145:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch4/climate.py:195:7 - error: Base classes for class "AirtouchGroup" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch4/climate.py:229:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch4/climate.py:234:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch4/climate.py:239:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch4/climate.py:244:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch4/climate.py:249:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch4/climate.py:275:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch4/climate.py:280:9 - error: "fan_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/airtouch5/climate.py + /homeassistant/components/airtouch5/climate.py:120:7 - error: Base classes for class "Airtouch5ClimateEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch5/climate.py:120:7 - error: Base classes for class "Airtouch5ClimateEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch5/climate.py:120:7 - error: Base classes for class "Airtouch5ClimateEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch5/climate.py:120:7 - error: Base classes for class "Airtouch5ClimateEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch5/climate.py:120:7 - error: Base classes for class "Airtouch5ClimateEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/airtouch5/cover.py + /homeassistant/components/airtouch5/cover.py:49:7 - error: Base classes for class "Airtouch5ZoneOpenPercentage" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch5/cover.py:49:7 - error: Base classes for class "Airtouch5ZoneOpenPercentage" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch5/cover.py:49:7 - error: Base classes for class "Airtouch5ZoneOpenPercentage" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch5/cover.py:49:7 - error: Base classes for class "Airtouch5ZoneOpenPercentage" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch5/cover.py:49:7 - error: Base classes for class "Airtouch5ZoneOpenPercentage" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch5/cover.py:49:7 - error: Base classes for class "Airtouch5ZoneOpenPercentage" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airtouch5/cover.py:49:7 - error: Base classes for class "Airtouch5ZoneOpenPercentage" define variable "supported_features" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/airvisual/sensor.py + /homeassistant/components/airvisual/sensor.py:147:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/airvisual_pro/entity.py + /homeassistant/components/airvisual_pro/entity.py:28:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/airvisual_pro/sensor.py + /homeassistant/components/airvisual_pro/sensor.py:142:7 - error: Base classes for class "AirVisualProSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airvisual_pro/sensor.py:142:7 - error: Base classes for class "AirVisualProSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airvisual_pro/sensor.py:147:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AirVisualProMeasurementDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airvisual_pro/sensor.py:150:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/airzone/binary_sensor.py + /homeassistant/components/airzone/binary_sensor.py:134:7 - error: Base classes for class "AirzoneBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airzone/binary_sensor.py:137:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AirzoneBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airzone/binary_sensor.py:137:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "AirzoneBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/airzone/climate.py + /homeassistant/components/airzone/climate.py:132:7 - error: Base classes for class "AirzoneClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/airzone/select.py + /homeassistant/components/airzone/select.py:184:7 - error: Base classes for class "AirzoneBaseSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airzone/select.py:187:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AirzoneSelectDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airzone/select.py:187:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "AirzoneSelectDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/airzone/sensor.py + /homeassistant/components/airzone/sensor.py:160:7 - error: Base classes for class "AirzoneSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/airzone/switch.py + /homeassistant/components/airzone/switch.py:74:7 - error: Base classes for class "AirzoneBaseSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airzone/switch.py:77:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AirzoneSwitchDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airzone/switch.py:77:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "AirzoneSwitchDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/airzone/water_heater.py + /homeassistant/components/airzone/water_heater.py:69:7 - error: Base classes for class "AirzoneWaterHeater" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/airzone_cloud/binary_sensor.py + /homeassistant/components/airzone_cloud/binary_sensor.py:161:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AirzoneBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airzone_cloud/binary_sensor.py:161:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "AirzoneBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airzone_cloud/binary_sensor.py:164:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/airzone_cloud/climate.py + /homeassistant/components/airzone_cloud/climate.py:174:7 - error: Base classes for class "AirzoneClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/airzone_cloud/select.py + /homeassistant/components/airzone_cloud/select.py:125:7 - error: Base classes for class "AirzoneBaseSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airzone_cloud/select.py:128:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AirzoneSelectDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airzone_cloud/select.py:128:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "AirzoneSelectDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/airzone_cloud/sensor.py + /homeassistant/components/airzone_cloud/sensor.py:275:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/airzone_cloud/switch.py + /homeassistant/components/airzone_cloud/switch.py:60:7 - error: Base classes for class "AirzoneBaseSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/airzone_cloud/switch.py:63:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AirzoneSwitchDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/airzone_cloud/switch.py:63:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "AirzoneSwitchDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/airzone_cloud/water_heater.py + /homeassistant/components/airzone_cloud/water_heater.py:86:7 - error: Base classes for class "AirzoneWaterHeater" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/aladdin_connect/cover.py + /homeassistant/components/aladdin_connect/cover.py:29:7 - error: Base classes for class "AladdinCoverEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/aladdin_connect/cover.py:50:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aladdin_connect/cover.py:57:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aladdin_connect/cover.py:62:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/aladdin_connect/sensor.py + /homeassistant/components/aladdin_connect/sensor.py:59:7 - error: Base classes for class "AladdinConnectSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/aladdin_connect/sensor.py:71:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AladdinConnectSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/aladdin_connect/sensor.py:71:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AladdinConnectSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/aladdin_connect/sensor.py:75:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/alarm_control_panel/__init__.py + /homeassistant/components/alarm_control_panel/__init__.py:139:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AlarmControlPanelEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/alarm_control_panel/__init__.py:144:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AlarmControlPanelEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/alarm_control_panel/__init__.py:151:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/alarm_control_panel/__init__.py:302:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/alarm_control_panel/device_action.py + /homeassistant/components/alarm_control_panel/device_action.py:119:17 - error: "service" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/alarm_control_panel/device_condition.py + /homeassistant/components/alarm_control_panel/device_condition.py:124:49 - error: "state" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/alarm_control_panel/device_trigger.py + /homeassistant/components/alarm_control_panel/device_trigger.py:142:32 - error: "to_state" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/alarm_control_panel/reproduce_state.py + /homeassistant/components/alarm_control_panel/reproduce_state.py:77:17 - error: "service" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/alarmdecoder/__init__.py + /homeassistant/components/alarmdecoder/__init__.py:122:5 - error: "controller" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/alarmdecoder/__init__.py:123:5 - error: "controller" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/alarmdecoder/__init__.py:124:5 - error: "controller" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/alarmdecoder/__init__.py:125:5 - error: "controller" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/alarmdecoder/__init__.py:126:5 - error: "controller" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/alarmdecoder/__init__.py:127:5 - error: "controller" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/alarmdecoder/__init__.py:134:9 - error: "controller" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/alarmdecoder/__init__.py:139:11 - error: "controller" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/alarmdecoder/config_flow.py + /homeassistant/components/alarmdecoder/config_flow.py:118:32 - error: "device" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/alarmdecoder/config_flow.py:127:27 - error: "title" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/alarmdecoder/config_flow.py:152:25 - error: "schema" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/alert/__init__.py + /homeassistant/components/alert/__init__.py:107:17 - error: Argument of type "Unknown | Any | None" cannot be assigned to parameter "data" of type "dict[Any, Any]" in function "__init__" +   Type "Unknown | Any | None" is not assignable to type "dict[Any, Any]" +     "None" is not assignable to "dict[Any, Any]" (reportArgumentType) +/homeassistant/components/alert/entity.py + /homeassistant/components/alert/entity.py:84:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/alert/reproduce_state.py + /homeassistant/components/alert/reproduce_state.py:57:17 - error: "service" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/alexa_devices/binary_sensor.py + /homeassistant/components/alexa_devices/binary_sensor.py:151:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "AmazonBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/alexa_devices/binary_sensor.py:154:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/alexa_devices/binary_sensor.py:161:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/alexa_devices/notify.py + /homeassistant/components/alexa_devices/notify.py:80:7 - error: Base classes for class "AmazonNotifyEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/alexa_devices/notify.py:83:5 - error: "entity_description" overrides symbol of same name in class "NotifyEntity" +   Variable is mutable so its type is invariant +     Override type "AmazonNotifyEntityDescription" is not the same as base type "NotifyEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/alexa_devices/notify.py:86:15 - error: Method "async_send_message" overrides class "NotifyEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/alexa_devices/sensor.py + /homeassistant/components/alexa_devices/sensor.py:135:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AmazonSensorEntityDescription | AmazonNotificationEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/alexa_devices/sensor.py:140:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/alexa_devices/sensor.py:150:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/alexa_devices/sensor.py:159:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/alexa_devices/switch.py + /homeassistant/components/alexa_devices/switch.py:91:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "AmazonSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/alexa_devices/switch.py:113:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/alexa_devices/switch.py:118:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/alpha_vantage/sensor.py + /homeassistant/components/alpha_vantage/sensor.py:8:6 - error: Import "alpha_vantage.foreignexchange" could not be resolved (reportMissingImports) + /homeassistant/components/alpha_vantage/sensor.py:9:6 - error: Import "alpha_vantage.timeseries" could not be resolved (reportMissingImports) +/homeassistant/components/altruist/sensor.py + /homeassistant/components/altruist/sensor.py:252:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AltruistSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/altruist/sensor.py:252:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AltruistSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/altruist/sensor.py:264:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/altruist/sensor.py:271:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/amazon_polly/tts.py + /homeassistant/components/amazon_polly/tts.py:101:28 - error: "config" is not a known attribute of module "botocore" (reportAttributeAccessIssue) + /homeassistant/components/amazon_polly/tts.py:143:23 - error: Expected class but received "(...) -> Unknown" (reportGeneralTypeIssues) +/homeassistant/components/amberelectric/__init__.py + /homeassistant/components/amberelectric/__init__.py:25:35 - error: "Configuration" is not exported from module "amberelectric" (reportPrivateImportUsage) + /homeassistant/components/amberelectric/__init__.py:26:32 - error: "ApiClient" is not exported from module "amberelectric" (reportPrivateImportUsage) + /homeassistant/components/amberelectric/__init__.py:27:34 - error: "AmberApi" is not exported from module "amberelectric" (reportPrivateImportUsage) +/homeassistant/components/amberelectric/binary_sensor.py + /homeassistant/components/amberelectric/binary_sensor.py:25:7 - error: Base classes for class "AmberPriceGridSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/amberelectric/binary_sensor.py:44:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/amberelectric/binary_sensor.py:53:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/amberelectric/binary_sensor.py:64:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/amberelectric/config_flow.py + /homeassistant/components/amberelectric/config_flow.py:62:39 - error: "Configuration" is not exported from module "amberelectric" (reportPrivateImportUsage) + /homeassistant/components/amberelectric/config_flow.py:63:36 - error: "ApiClient" is not exported from module "amberelectric" (reportPrivateImportUsage) + /homeassistant/components/amberelectric/config_flow.py:64:29 - error: "AmberApi" is not exported from module "amberelectric" (reportPrivateImportUsage) + /homeassistant/components/amberelectric/config_flow.py:70:30 - error: "ApiException" is not exported from module "amberelectric" (reportPrivateImportUsage) +/homeassistant/components/amberelectric/coordinator.py + /homeassistant/components/amberelectric/coordinator.py:10:42 - error: "ChannelType" is not exported from module "amberelectric.models.channel" +   Import from "amberelectric.models.channel_type" instead (reportPrivateImportUsage) + /homeassistant/components/amberelectric/coordinator.py:13:32 - error: "ApiException" is not exported from module "amberelectric.rest" +   Import from "amberelectric.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/amberelectric/coordinator.py:61:28 - error: "AmberApi" is not exported from module "amberelectric" (reportPrivateImportUsage) +/homeassistant/components/amberelectric/sensor.py + /homeassistant/components/amberelectric/sensor.py:11:42 - error: "ChannelType" is not exported from module "amberelectric.models.channel" +   Import from "amberelectric.models.channel_type" instead (reportPrivateImportUsage) + /homeassistant/components/amberelectric/sensor.py:41:7 - error: Base classes for class "AmberSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/amberelectric/sensor.py:67:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/amberelectric/sensor.py:76:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/amberelectric/sensor.py:96:54 - error: Cannot access attribute "value" for class "Literal['feedIn']" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /homeassistant/components/amberelectric/sensor.py:109:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/amberelectric/sensor.py:123:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/amberelectric/sensor.py:165:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/amberelectric/sensor.py:170:7 - error: Base classes for class "AmberGridSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/amberelectric/sensor.py:187:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/amberelectric/services.py + /homeassistant/components/amberelectric/services.py:3:42 - error: "ChannelType" is not exported from module "amberelectric.models.channel" +   Import from "amberelectric.models.channel_type" instead (reportPrivateImportUsage) +/homeassistant/components/ambient_network/sensor.py + /homeassistant/components/ambient_network/sensor.py:292:7 - error: Base classes for class "AmbientNetworkSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ambient_station/binary_sensor.py + /homeassistant/components/ambient_station/binary_sensor.py:402:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "AmbientBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/amcrest/__init__.py + /homeassistant/components/amcrest/__init__.py:125:22 - error: Argument to class must be a base class (reportGeneralTypeIssues) + /homeassistant/components/amcrest/__init__.py:315:23 - error: Argument of type "Module("amcrest")" cannot be assigned to parameter "exceptions" of type "type[BaseException]" in function "__init__" +   Type "Module("amcrest")" is not assignable to type "type[BaseException]" (reportArgumentType) +/homeassistant/components/amcrest/binary_sensor.py + /homeassistant/components/amcrest/binary_sensor.py:172:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "AmcrestSensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/amcrest/binary_sensor.py:178:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/amcrest/binary_sensor.py:199:27 - error: Argument of type "Module("amcrest")" cannot be assigned to parameter "exceptions" of type "type[BaseException]" in function "__init__" +   Type "Module("amcrest")" is not assignable to type "type[BaseException]" (reportArgumentType) +/homeassistant/components/amcrest/camera.py + /homeassistant/components/amcrest/camera.py:259:59 - error: Argument of type "list[str]" cannot be assigned to parameter "extra_cmd" of type "str | None" in function "open_camera" +   Type "list[str]" is not assignable to type "str | None" +     "list[str]" is not assignable to "str" +     "list[str]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/amcrest/camera.py:266:17 - error: Argument of type "StreamReader" cannot be assigned to parameter "stream" of type "StreamReader" in function "async_aiohttp_proxy_stream" +   "asyncio.streams.StreamReader" is not assignable to "aiohttp.streams.StreamReader" (reportArgumentType) + /homeassistant/components/amcrest/camera.py:275:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/amcrest/camera.py:280:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/amcrest/camera.py:301:9 - error: "is_recording" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/amcrest/camera.py:306:9 - error: "brand" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/amcrest/camera.py:311:9 - error: "motion_detection_enabled" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/amcrest/camera.py:316:9 - error: "model" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/amcrest/camera.py:325:9 - error: "is_on" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/amcrest/camera.py:503:20 - error: "tuple[ModuleType, type[AmcrestCommandFailed]]" is not a valid exception class (reportGeneralTypeIssues) +/homeassistant/components/amcrest/sensor.py + /homeassistant/components/amcrest/sensor.py:87:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/amcrest/switch.py + /homeassistant/components/amcrest/switch.py:69:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/ampio/air_quality.py + /homeassistant/components/ampio/air_quality.py:8:6 - error: Import "asmog" could not be resolved (reportMissingImports) + /homeassistant/components/ampio/air_quality.py:69:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ampio/air_quality.py:74:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/analytics/analytics.py + /homeassistant/components/analytics/analytics.py:154:10 - error: Function with declared return type "AnalyticsModifications" must return value on all code paths +   "None" is not assignable to "AnalyticsModifications" (reportReturnType) + /homeassistant/components/analytics/analytics.py:167:16 - error: Type "ModuleType" is not assignable to return type "AnalyticsPlatformProtocol | None" +   Type "ModuleType" is not assignable to type "AnalyticsPlatformProtocol | None" +     "ModuleType" is incompatible with protocol "AnalyticsPlatformProtocol" +       "async_modify_analytics" is not present +     "ModuleType" is not assignable to "None" (reportReturnType) + /homeassistant/components/analytics/analytics.py:407:33 - error: "enabled_domains" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/analytics/analytics.py:412:35 - error: "enabled_domains" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/analytics_insights/sensor.py + /homeassistant/components/analytics_insights/sensor.py:138:7 - error: Base classes for class "HomeassistantAnalyticsSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/analytics_insights/sensor.py:155:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AnalyticsSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/analytics_insights/sensor.py:155:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AnalyticsSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/analytics_insights/sensor.py:163:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/android_ip_webcam/binary_sensor.py + /homeassistant/components/android_ip_webcam/binary_sensor.py:49:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/android_ip_webcam/binary_sensor.py:54:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/android_ip_webcam/sensor.py + /homeassistant/components/android_ip_webcam/sensor.py:142:7 - error: Base classes for class "IPWebcamSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/android_ip_webcam/sensor.py:154:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AndroidIPWebcamSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/android_ip_webcam/sensor.py:154:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AndroidIPWebcamSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/android_ip_webcam/sensor.py:158:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/android_ip_webcam/sensor.py:163:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/android_ip_webcam/switch.py + /homeassistant/components/android_ip_webcam/switch.py:133:7 - error: Base classes for class "IPWebcamSettingSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/android_ip_webcam/switch.py:144:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AndroidIPWebcamSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/android_ip_webcam/switch.py:144:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "AndroidIPWebcamSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/android_ip_webcam/switch.py:149:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/androidtv/__init__.py + /homeassistant/components/androidtv/__init__.py:147:23 - error: Argument of type "Any | None" cannot be assigned to parameter "adb_server_ip" of type "str" in function "setup" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/androidtv/media_player.py + /homeassistant/components/androidtv/media_player.py:186:15 - error: Method "async_media_play" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/androidtv/media_player.py:191:15 - error: Method "async_media_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/androidtv/media_player.py:196:15 - error: Method "async_media_play_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/androidtv/media_player.py:201:15 - error: Method "async_turn_on" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/androidtv/media_player.py:209:15 - error: Method "async_turn_off" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/androidtv/media_player.py:217:15 - error: Method "async_media_previous_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/androidtv/media_player.py:222:15 - error: Method "async_media_next_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/androidtv/media_player.py:227:15 - error: Method "async_select_source" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/androidtv/media_player.py:370:15 - error: Method "async_media_stop" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/androidtv/media_player.py:375:15 - error: Method "async_mute_volume" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/androidtv/media_player.py:384:15 - error: Method "async_set_volume_level" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/androidtv/media_player.py:389:15 - error: Method "async_volume_down" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/androidtv/media_player.py:394:15 - error: Method "async_volume_up" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/androidtv/media_player.py:460:15 - error: Method "async_media_stop" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/androidtv/remote.py + /homeassistant/components/androidtv/remote.py:39:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/androidtv/remote.py:48:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/androidtv/remote.py:57:15 - error: Method "async_send_command" overrides class "RemoteEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/androidtv_remote/media_player.py + /homeassistant/components/androidtv_remote/media_player.py:119:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/androidtv_remote/media_player.py:119:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/anel_pwrctrl/switch.py + /homeassistant/components/anel_pwrctrl/switch.py:9:26 - error: "Device" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/anel_pwrctrl/switch.py:9:34 - error: "DeviceMaster" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/anel_pwrctrl/switch.py:9:48 - error: "Switch" is unknown import symbol (reportAttributeAccessIssue) +/homeassistant/components/anova/entity.py + /homeassistant/components/anova/entity.py:23:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/anova/sensor.py + /homeassistant/components/anova/sensor.py:134:7 - error: Base classes for class "AnovaSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/anova/sensor.py:137:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AnovaSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/anova/sensor.py:140:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/anthropic/ai_task.py + /homeassistant/components/anthropic/ai_task.py:36:7 - error: Base classes for class "AnthropicTaskEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/anthropic/conversation.py + /homeassistant/components/anthropic/conversation.py:32:7 - error: Base classes for class "AnthropicConversationEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/anthropic/entity.py + /homeassistant/components/anthropic/entity.py:248:21 - error: Argument of type "ThinkingBlockParam" cannot be assigned to parameter "object" of type "TextBlockParam | WebSearchToolResultBlockParam | ToolResultBlockParam" in function "append" +   Type "ThinkingBlockParam" is not assignable to type "TextBlockParam | WebSearchToolResultBlockParam | ToolResultBlockParam" +     "text" is missing from "ThinkingBlockParam" +     "type" is an incompatible type +       "Literal['thinking']" is not assignable to type "Literal['text']" +     "cache_control" is missing from "ThinkingBlockParam" +     "citations" is missing from "ThinkingBlockParam" +     "content" is missing from "ThinkingBlockParam" +     "tool_use_id" is missing from "ThinkingBlockParam" + ... (reportArgumentType) + /homeassistant/components/anthropic/entity.py:248:21 - error: Argument of type "ThinkingBlockParam" cannot be assigned to parameter "object" of type "TextBlockParam | RedactedThinkingBlockParam" in function "append" +   Type "ThinkingBlockParam" is not assignable to type "TextBlockParam | RedactedThinkingBlockParam" +     "text" is missing from "ThinkingBlockParam" +     "type" is an incompatible type +       "Literal['thinking']" is not assignable to type "Literal['text']" +     "cache_control" is missing from "ThinkingBlockParam" +     "citations" is missing from "ThinkingBlockParam" +     "data" is missing from "ThinkingBlockParam" +     "type" is an incompatible type + ... (reportArgumentType) + /homeassistant/components/anthropic/entity.py:248:21 - error: Argument of type "ThinkingBlockParam" cannot be assigned to parameter "object" of type "TextBlockParam" in function "append" +   "text" is missing from "ThinkingBlockParam" +   "type" is an incompatible type +     "Literal['thinking']" is not assignable to type "Literal['text']" +   "cache_control" is missing from "ThinkingBlockParam" +   "citations" is missing from "ThinkingBlockParam" (reportArgumentType) + /homeassistant/components/anthropic/entity.py:266:25 - error: Argument of type "RedactedThinkingBlockParam" cannot be assigned to parameter "object" of type "TextBlockParam | WebSearchToolResultBlockParam | ToolResultBlockParam" in function "append" +   Type "RedactedThinkingBlockParam" is not assignable to type "TextBlockParam | WebSearchToolResultBlockParam | ToolResultBlockParam" +     "text" is missing from "RedactedThinkingBlockParam" +     "type" is an incompatible type +       "Literal['redacted_thinking']" is not assignable to type "Literal['text']" +     "cache_control" is missing from "RedactedThinkingBlockParam" +     "citations" is missing from "RedactedThinkingBlockParam" +     "content" is missing from "RedactedThinkingBlockParam" +     "tool_use_id" is missing from "RedactedThinkingBlockParam" + ... (reportArgumentType) + /homeassistant/components/anthropic/entity.py:266:25 - error: Argument of type "RedactedThinkingBlockParam" cannot be assigned to parameter "object" of type "TextBlockParam" in function "append" +   "text" is missing from "RedactedThinkingBlockParam" +   "type" is an incompatible type +     "Literal['redacted_thinking']" is not assignable to type "Literal['text']" +   "cache_control" is missing from "RedactedThinkingBlockParam" +   "citations" is missing from "RedactedThinkingBlockParam" (reportArgumentType) + /homeassistant/components/anthropic/entity.py:310:21 - error: Argument of type "list[ServerToolUseBlockParam | ToolUseBlockParam]" cannot be assigned to parameter "iterable" of type "Iterable[TextBlockParam | WebSearchToolResultBlockParam | ToolResultBlockParam]" in function "extend" (reportArgumentType) + /homeassistant/components/anthropic/entity.py:310:21 - error: Argument of type "list[ServerToolUseBlockParam | ToolUseBlockParam]" cannot be assigned to parameter "iterable" of type "Iterable[TextBlockParam | RedactedThinkingBlockParam]" in function "extend" (reportArgumentType) + /homeassistant/components/anthropic/entity.py:310:21 - error: Argument of type "list[ServerToolUseBlockParam | ToolUseBlockParam]" cannot be assigned to parameter "iterable" of type "Iterable[TextBlockParam]" in function "extend" (reportArgumentType) + /homeassistant/components/anthropic/entity.py:399:24 - error: "first_block" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/anthropic/entity.py:410:21 - error: "first_block" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/anthropic/entity.py:431:20 - error: "first_block" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/anthropic/entity.py:507:21 - error: Operator "+=" not supported for types "Unbound | str" and "str" +   Operator "+" not supported for types "Unbound" and "str" (reportOperatorIssue) + /homeassistant/components/anthropic/entity.py:507:21 - error: "current_tool_args" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/anthropic/entity.py:529:62 - error: "current_tool_args" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/anthropic/entity.py:667:17 - error: Argument of type "Iterable[ImageBlockParam | DocumentBlockParam]" cannot be assigned to parameter "iterable" of type "Iterable[TextBlockParam]" in function "extend" +   "Iterable[ImageBlockParam | DocumentBlockParam]" is not assignable to "Iterable[TextBlockParam]" +     Type parameter "_T_co@Iterable" is covariant, but "ImageBlockParam | DocumentBlockParam" is not a subtype of "TextBlockParam" +       Type "ImageBlockParam | DocumentBlockParam" is not assignable to type "TextBlockParam" +         "text" is missing from "DocumentBlockParam" +         "type" is an incompatible type +           "Literal['document']" is not assignable to type "Literal['text']" +         "citations" is an incompatible type +           Type "CitationsConfigParam | None" is not assignable to type "Iterable[TextCitationParam] | None" (reportArgumentType) + /homeassistant/components/anthropic/entity.py:698:31 - error: Could not access item in TypedDict +   "system" is not a required key in "MessageCreateParamsStreaming", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/anthropic/entity.py:700:58 - error: Could not access item in TypedDict +   "system" is not a required key in "MessageCreateParamsStreaming", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/aosmith/__init__.py + /homeassistant/components/aosmith/__init__.py:5:24 - error: "AOSmithAPIClient" is not exported from module "py_aosmith" +   Import from "py_aosmith.client" instead (reportPrivateImportUsage) +/homeassistant/components/aosmith/config_flow.py + /homeassistant/components/aosmith/config_flow.py:9:24 - error: "AOSmithAPIClient" is not exported from module "py_aosmith" +   Import from "py_aosmith.client" instead (reportPrivateImportUsage) + /homeassistant/components/aosmith/config_flow.py:9:42 - error: "AOSmithInvalidCredentialsException" is not exported from module "py_aosmith" +   Import from "py_aosmith.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/aosmith/coordinator.py + /homeassistant/components/aosmith/coordinator.py:9:5 - error: "AOSmithAPIClient" is not exported from module "py_aosmith" +   Import from "py_aosmith.client" instead (reportPrivateImportUsage) + /homeassistant/components/aosmith/coordinator.py:10:5 - error: "AOSmithInvalidCredentialsException" is not exported from module "py_aosmith" +   Import from "py_aosmith.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/aosmith/coordinator.py:11:5 - error: "AOSmithUnknownException" is not exported from module "py_aosmith" +   Import from "py_aosmith.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/aosmith/entity.py + /homeassistant/components/aosmith/entity.py:3:24 - error: "AOSmithAPIClient" is not exported from module "py_aosmith" +   Import from "py_aosmith.client" instead (reportPrivateImportUsage) +/homeassistant/components/aosmith/select.py + /homeassistant/components/aosmith/select.py:35:7 - error: Base classes for class "AOSmithHotWaterPlusSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/aosmith/select.py:52:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/aosmith/sensor.py + /homeassistant/components/aosmith/sensor.py:63:7 - error: Base classes for class "AOSmithStatusSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/aosmith/sensor.py:76:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AOSmithStatusSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/aosmith/sensor.py:76:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AOSmithStatusSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/aosmith/sensor.py:80:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/aosmith/sensor.py:85:7 - error: Base classes for class "AOSmithEnergySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/aosmith/sensor.py:104:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/aosmith/water_heater.py + /homeassistant/components/aosmith/water_heater.py:59:7 - error: Base classes for class "AOSmithWaterHeaterEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/aosmith/water_heater.py:76:9 - error: "operation_list" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aosmith/water_heater.py:89:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aosmith/water_heater.py:108:9 - error: "target_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aosmith/water_heater.py:118:9 - error: "current_operation" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aosmith/water_heater.py:123:9 - error: "is_away_mode_on" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/apcupsd/binary_sensor.py + /homeassistant/components/apcupsd/binary_sensor.py:43:7 - error: Base classes for class "OnlineStatus" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/apcupsd/binary_sensor.py:55:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/apcupsd/sensor.py + /homeassistant/components/apcupsd/sensor.py:497:7 - error: Base classes for class "APCUPSdSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/apple_tv/config_flow.py + /homeassistant/components/apple_tv/config_flow.py:292:9 - error: Method "is_matching" overrides class "ConfigFlow" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "ConfigFlow", override parameter is type "AppleTVConfigFlow" +     "ConfigFlow" is not assignable to "AppleTVConfigFlow" (reportIncompatibleMethodOverride) +/homeassistant/components/apple_tv/media_player.py + /homeassistant/components/apple_tv/media_player.py:184:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/apple_tv/media_player.py:184:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/apple_tv/media_player.py:252:9 - error: "app_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/apple_tv/media_player.py:263:9 - error: "app_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/apple_tv/media_player.py:274:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/apple_tv/media_player.py:279:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/apple_tv/media_player.py:290:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/apple_tv/media_player.py:297:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/apple_tv/media_player.py:304:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/apple_tv/media_player.py:311:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/apple_tv/media_player.py:318:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/apple_tv/media_player.py:382:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/apple_tv/media_player.py:389:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/apple_tv/media_player.py:396:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/apple_tv/media_player.py:403:9 - error: "media_series_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/apple_tv/media_player.py:410:9 - error: "media_season" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/apple_tv/media_player.py:417:9 - error: "media_episode" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/apple_tv/media_player.py:424:9 - error: "repeat" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[RepeatMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/apple_tv/media_player.py:438:9 - error: "shuffle" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/apple_tv/remote.py + /homeassistant/components/apple_tv/remote.py:55:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/application_credentials/__init__.py + /homeassistant/components/application_credentials/__init__.py:270:10 - error: Function with declared return type "AuthorizationServer" must return value on all code paths +   "None" is not assignable to "AuthorizationServer" (reportReturnType) + /homeassistant/components/application_credentials/__init__.py:275:10 - error: Function with declared return type "AbstractOAuth2Implementation" must return value on all code paths +   "None" is not assignable to "AbstractOAuth2Implementation" (reportReturnType) + /homeassistant/components/application_credentials/__init__.py:280:10 - error: Function with declared return type "dict[str, str]" must return value on all code paths +   "None" is not assignable to "dict[str, str]" (reportReturnType) + /homeassistant/components/application_credentials/__init__.py:309:12 - error: Type "ModuleType" is not assignable to return type "ApplicationCredentialsProtocol | None" +   Type "ModuleType" is not assignable to type "ApplicationCredentialsProtocol | None" +     "ModuleType" is incompatible with protocol "ApplicationCredentialsProtocol" +       "async_get_authorization_server" is not present +       "async_get_auth_implementation" is not present +       "async_get_description_placeholders" is not present +     "ModuleType" is not assignable to "None" (reportReturnType) +/homeassistant/components/aprilaire/climate.py + /homeassistant/components/aprilaire/climate.py:101:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/climate.py:101:9 - error: "supported_features" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[ClimateEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/climate.py:115:16 - error: Type "int" is not assignable to return type "ClimateEntityFeature" +   "int" is not assignable to "ClimateEntityFeature" (reportReturnType) + /homeassistant/components/aprilaire/climate.py:118:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/climate.py:125:9 - error: "target_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/climate.py:130:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/climate.py:140:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/climate.py:150:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/climate.py:162:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/climate.py:169:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/climate.py:182:9 - error: "target_temperature_step" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/climate.py:191:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/climate.py:196:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/climate.py:201:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/climate.py:210:9 - error: "preset_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/climate.py:227:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/aprilaire/coordinator.py + /homeassistant/components/aprilaire/coordinator.py:56:57 - error: Cannot access attribute "data" for class "AprilaireClient" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /homeassistant/components/aprilaire/coordinator.py:57:37 - error: Cannot access attribute "data" for class "AprilaireClient" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /homeassistant/components/aprilaire/coordinator.py:98:55 - error: Could not access item in TypedDict +   "identifiers" is not a required key in "DeviceInfo", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/aprilaire/humidifier.py + /homeassistant/components/aprilaire/humidifier.py:127:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AprilaireHumidifierDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/humidifier.py:127:14 - error: "entity_description" overrides symbol of same name in class "HumidifierEntity" +   Variable is mutable so its type is invariant +     Override type "AprilaireHumidifierDescription" is not the same as base type "HumidifierEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/humidifier.py:132:9 - error: "action" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[HumidifierAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/humidifier.py:140:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/humidifier.py:146:9 - error: "current_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/humidifier.py:155:9 - error: "target_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/humidifier.py:169:9 - error: "min_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/humidifier.py:178:9 - error: "max_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/aprilaire/select.py + /homeassistant/components/aprilaire/select.py:115:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AprilaireSelectDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/select.py:115:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "AprilaireSelectDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/select.py:123:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/aprilaire/sensor.py + /homeassistant/components/aprilaire/sensor.py:228:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AprilaireSensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/sensor.py:228:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AprilaireSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/sensor.py:245:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/sensor.py:263:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/sensor.py:286:9 - error: "suggested_display_precision" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/aprilaire/sensor.py:298:5 - error: "entity_description" overrides symbol of same name in class "BaseAprilaireSensor" +   Variable is mutable so its type is invariant +     Override type "AprilaireStatusSensorDescription" is not the same as base type "AprilaireSensorDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/apsystems/binary_sensor.py + /homeassistant/components/apsystems/binary_sensor.py:80:7 - error: Base classes for class "ApSystemsBinarySensorWithDescription" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/apsystems/binary_sensor.py:80:7 - error: Base classes for class "ApSystemsBinarySensorWithDescription" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/apsystems/binary_sensor.py:80:7 - error: Base classes for class "ApSystemsBinarySensorWithDescription" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/apsystems/binary_sensor.py:80:7 - error: Base classes for class "ApSystemsBinarySensorWithDescription" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/apsystems/binary_sensor.py:95:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ApsystemsLocalApiBinarySensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/apsystems/binary_sensor.py:95:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "ApsystemsLocalApiBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/apsystems/binary_sensor.py:99:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/apsystems/config_flow.py + /homeassistant/components/apsystems/config_flow.py:47:60 - error: "deviceId" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/apsystems/coordinator.py + /homeassistant/components/apsystems/coordinator.py:69:42 - error: "maxPower" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/apsystems/coordinator.py:70:42 - error: "minPower" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/apsystems/coordinator.py:71:43 - error: "devVer" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/apsystems/coordinator.py:72:43 - error: "isBatterySystem" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/apsystems/coordinator.py:82:48 - error: Argument of type "ReturnOutputData | None" cannot be assigned to parameter "output_data" of type "ReturnOutputData" in function "__init__" +   Type "ReturnOutputData | None" is not assignable to type "ReturnOutputData" +     "None" is not assignable to "ReturnOutputData" (reportArgumentType) + /homeassistant/components/apsystems/coordinator.py:82:72 - error: Argument of type "ReturnAlarmInfo | None" cannot be assigned to parameter "alarm_info" of type "ReturnAlarmInfo" in function "__init__" +   Type "ReturnAlarmInfo | None" is not assignable to type "ReturnAlarmInfo" +     "None" is not assignable to "ReturnAlarmInfo" (reportArgumentType) +/homeassistant/components/apsystems/sensor.py + /homeassistant/components/apsystems/sensor.py:127:7 - error: Base classes for class "ApSystemsSensorWithDescription" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/apsystems/sensor.py:127:7 - error: Base classes for class "ApSystemsSensorWithDescription" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/apsystems/sensor.py:127:7 - error: Base classes for class "ApSystemsSensorWithDescription" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/apsystems/sensor.py:127:7 - error: Base classes for class "ApSystemsSensorWithDescription" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/apsystems/sensor.py:127:7 - error: Base classes for class "ApSystemsSensorWithDescription" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/apsystems/sensor.py:127:7 - error: Base classes for class "ApSystemsSensorWithDescription" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/apsystems/sensor.py:127:7 - error: Base classes for class "ApSystemsSensorWithDescription" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/apsystems/sensor.py:127:7 - error: Base classes for class "ApSystemsSensorWithDescription" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/apsystems/sensor.py:143:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ApsystemsLocalApiSensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/apsystems/sensor.py:143:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ApsystemsLocalApiSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/apsystems/sensor.py:147:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/aquacell/__init__.py + /homeassistant/components/aquacell/__init__.py:5:25 - error: "AquacellApi" is not exported from module "aioaquacell" +   Import from "aioaquacell.aquacell_api" instead (reportPrivateImportUsage) +/homeassistant/components/aquacell/config_flow.py + /homeassistant/components/aquacell/config_flow.py:9:25 - error: "ApiException" is not exported from module "aioaquacell" +   Import from "aioaquacell.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/aquacell/config_flow.py:9:39 - error: "AquacellApi" is not exported from module "aioaquacell" +   Import from "aioaquacell.aquacell_api" instead (reportPrivateImportUsage) + /homeassistant/components/aquacell/config_flow.py:9:52 - error: "AuthenticationFailed" is not exported from module "aioaquacell" +   Import from "aioaquacell.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/aquacell/coordinator.py + /homeassistant/components/aquacell/coordinator.py:8:5 - error: "AquacellApi" is not exported from module "aioaquacell" +   Import from "aioaquacell.aquacell_api" instead (reportPrivateImportUsage) + /homeassistant/components/aquacell/coordinator.py:9:5 - error: "AquacellApiException" is not exported from module "aioaquacell" +   Import from "aioaquacell.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/aquacell/coordinator.py:10:5 - error: "AuthenticationFailed" is not exported from module "aioaquacell" +   Import from "aioaquacell.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/aquacell/coordinator.py:11:5 - error: "Softener" is not exported from module "aioaquacell" +   Import from "aioaquacell.softener" instead (reportPrivateImportUsage) +/homeassistant/components/aquacell/entity.py + /homeassistant/components/aquacell/entity.py:3:25 - error: "Softener" is not exported from module "aioaquacell" +   Import from "aioaquacell.softener" instead (reportPrivateImportUsage) +/homeassistant/components/aquacell/sensor.py + /homeassistant/components/aquacell/sensor.py:9:25 - error: "Softener" is not exported from module "aioaquacell" +   Import from "aioaquacell.softener" instead (reportPrivateImportUsage) + /homeassistant/components/aquacell/sensor.py:104:7 - error: Base classes for class "SoftenerSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/aquacell/sensor.py:118:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SoftenerSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/aquacell/sensor.py:118:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SoftenerSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/aquacell/sensor.py:121:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/aqualogic/__init__.py + /homeassistant/components/aqualogic/__init__.py:10:6 - error: Import "aqualogic.core" could not be resolved (reportMissingImports) +/homeassistant/components/aqualogic/sensor.py + /homeassistant/components/aqualogic/sensor.py:147:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AquaLogicSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/aqualogic/switch.py + /homeassistant/components/aqualogic/switch.py:7:6 - error: Import "aqualogic.core" could not be resolved (reportMissingImports) + /homeassistant/components/aqualogic/switch.py:83:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/aquostv/media_player.py + /homeassistant/components/aquostv/media_player.py:9:8 - error: Import "sharp_aquos_rc" could not be resolved (reportMissingImports) +/homeassistant/components/aranet/sensor.py + /homeassistant/components/aranet/sensor.py:210:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/aranet/sensor.py:223:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/arcam_fmj/media_player.py + /homeassistant/components/arcam_fmj/media_player.py:119:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/arcam_fmj/media_player.py:169:15 - error: Method "async_mute_volume" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/arcam_fmj/media_player.py:175:15 - error: Method "async_select_source" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/arcam_fmj/media_player.py:187:15 - error: Method "async_select_sound_mode" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/arcam_fmj/media_player.py:199:15 - error: Method "async_set_volume_level" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/arcam_fmj/media_player.py:205:15 - error: Method "async_volume_up" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/arcam_fmj/media_player.py:211:15 - error: Method "async_volume_down" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/arcam_fmj/media_player.py:217:15 - error: Method "async_turn_on" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/arcam_fmj/media_player.py:227:15 - error: Method "async_turn_off" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/arcam_fmj/media_player.py:267:15 - error: Method "async_play_media" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/arcam_fmj/media_player.py:280:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/arcam_fmj/media_player.py:287:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/arcam_fmj/media_player.py:292:9 - error: "sound_mode" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/arcam_fmj/media_player.py:299:9 - error: "sound_mode_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/arcam_fmj/media_player.py:306:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/arcam_fmj/media_player.py:313:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/arcam_fmj/media_player.py:320:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/arcam_fmj/media_player.py:330:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/arcam_fmj/media_player.py:344:9 - error: "media_channel" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/arcam_fmj/media_player.py:356:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/arcam_fmj/media_player.py:365:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/arris_tg2492lg/device_tracker.py + /homeassistant/components/arris_tg2492lg/device_tracker.py:6:28 - error: "ConnectBox" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/arris_tg2492lg/device_tracker.py:6:40 - error: "Device" is unknown import symbol (reportAttributeAccessIssue) +/homeassistant/components/aruba/device_tracker.py + /homeassistant/components/aruba/device_tracker.py:9:8 - warning: Import "pexpect" could not be resolved from source (reportMissingModuleSource) +/homeassistant/components/arve/config_flow.py + /homeassistant/components/arve/config_flow.py:38:48 - error: Argument of type "Unknown | int" cannot be assigned to parameter "unique_id" of type "str | None" in function "async_set_unique_id" +   Type "Unknown | int" is not assignable to type "str | None" +     Type "int" is not assignable to type "str | None" +       "int" is not assignable to "str" +       "int" is not assignable to "None" (reportArgumentType) +/homeassistant/components/arve/coordinator.py + /homeassistant/components/arve/coordinator.py:49:15 - error: Method "_async_update_data" overrides class "DataUpdateCoordinator" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, ArveSensProData]", override returns type "CoroutineType[Any, Any, dict[str, ArveDeviceInfo]]" +     "CoroutineType[Any, Any, dict[str, ArveDeviceInfo]]" is not assignable to "CoroutineType[Any, Any, ArveSensProData]" +       Type parameter "_ReturnT_nd_co@CoroutineType" is covariant, but "dict[str, ArveDeviceInfo]" is not a subtype of "ArveSensProData" +         "dict[str, ArveDeviceInfo]" is not assignable to "ArveSensProData" (reportIncompatibleMethodOverride) +/homeassistant/components/arve/entity.py + /homeassistant/components/arve/entity.py:46:44 - error: Operator "in" not supported for types "str" and "ArveSensProData" (reportOperatorIssue) + /homeassistant/components/arve/entity.py:53:16 - error: "__getitem__" method not defined on type "ArveSensProData" (reportIndexIssue) +/homeassistant/components/arve/sensor.py + /homeassistant/components/arve/sensor.py:39:18 - error: Argument of type "(arve_data: ArveSensProData) -> (float | None)" cannot be assigned to parameter "value_fn" of type "(ArveSensProData) -> (float | int)" in function "__init__" +   Type "(arve_data: ArveSensProData) -> (float | None)" is not assignable to type "(ArveSensProData) -> (float | int)" +     Function return type "float | None" is incompatible with type "float | int" +       Type "float | None" is not assignable to type "float | int" +         Type "None" is not assignable to type "float | int" +           "None" is not assignable to "float" +           "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/arve/sensor.py:45:18 - error: Argument of type "(arve_data: ArveSensProData) -> (int | None)" cannot be assigned to parameter "value_fn" of type "(ArveSensProData) -> (float | int)" in function "__init__" +   Type "(arve_data: ArveSensProData) -> (int | None)" is not assignable to type "(ArveSensProData) -> (float | int)" +     Function return type "int | None" is incompatible with type "float | int" +       Type "int | None" is not assignable to type "float | int" +         Type "None" is not assignable to type "float | int" +           "None" is not assignable to "float" +           "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/arve/sensor.py:52:18 - error: Argument of type "(arve_data: ArveSensProData) -> (float | None)" cannot be assigned to parameter "value_fn" of type "(ArveSensProData) -> (float | int)" in function "__init__" +   Type "(arve_data: ArveSensProData) -> (float | None)" is not assignable to type "(ArveSensProData) -> (float | int)" +     Function return type "float | None" is incompatible with type "float | int" +       Type "float | None" is not assignable to type "float | int" +         Type "None" is not assignable to type "float | int" +           "None" is not assignable to "float" +           "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/arve/sensor.py:59:18 - error: Argument of type "(arve_data: ArveSensProData) -> (float | None)" cannot be assigned to parameter "value_fn" of type "(ArveSensProData) -> (float | int)" in function "__init__" +   Type "(arve_data: ArveSensProData) -> (float | None)" is not assignable to type "(ArveSensProData) -> (float | int)" +     Function return type "float | None" is incompatible with type "float | int" +       Type "float | None" is not assignable to type "float | int" +         Type "None" is not assignable to type "float | int" +           "None" is not assignable to "float" +           "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/arve/sensor.py:66:18 - error: Argument of type "(arve_data: ArveSensProData) -> (float | None)" cannot be assigned to parameter "value_fn" of type "(ArveSensProData) -> (float | int)" in function "__init__" +   Type "(arve_data: ArveSensProData) -> (float | None)" is not assignable to type "(ArveSensProData) -> (float | int)" +     Function return type "float | None" is incompatible with type "float | int" +       Type "float | None" is not assignable to type "float | int" +         Type "None" is not assignable to type "float | int" +           "None" is not assignable to "float" +           "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/arve/sensor.py:73:18 - error: Argument of type "(arve_data: ArveSensProData) -> (float | None)" cannot be assigned to parameter "value_fn" of type "(ArveSensProData) -> (float | int)" in function "__init__" +   Type "(arve_data: ArveSensProData) -> (float | None)" is not assignable to type "(ArveSensProData) -> (float | int)" +     Function return type "float | None" is incompatible with type "float | int" +       Type "float | None" is not assignable to type "float | int" +         Type "None" is not assignable to type "float | int" +           "None" is not assignable to "float" +           "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/arve/sensor.py:79:18 - error: Argument of type "(arve_data: ArveSensProData) -> (int | None)" cannot be assigned to parameter "value_fn" of type "(ArveSensProData) -> (float | int)" in function "__init__" +   Type "(arve_data: ArveSensProData) -> (int | None)" is not assignable to type "(ArveSensProData) -> (float | int)" +     Function return type "int | None" is incompatible with type "float | int" +       Type "int | None" is not assignable to type "float | int" +         Type "None" is not assignable to type "float | int" +           "None" is not assignable to "float" +           "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/arve/sensor.py:100:7 - error: Base classes for class "ArveDevice" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/arve/sensor.py:103:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ArveDeviceEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/arve/sensor.py:106:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/arwn/sensor.py + /homeassistant/components/arwn/sensor.py:157:17 - error: Argument of type "str | UndefinedType | None" cannot be assigned to parameter "key" of type "str" in function "__setitem__" +   Type "str | UndefinedType | None" is not assignable to type "str" +     "UndefinedType" is not assignable to "str" (reportArgumentType) + /homeassistant/components/arwn/sensor.py:168:17 - error: Argument of type "str | UndefinedType | None" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   Type "str | UndefinedType | None" is not assignable to type "str" +     "UndefinedType" is not assignable to "str" (reportArgumentType) + /homeassistant/components/arwn/sensor.py:168:36 - error: Cannot access attribute "set_event" for class "object*" +   Attribute "set_event" is unknown (reportAttributeAccessIssue) +/homeassistant/components/aseko_pool_live/binary_sensor.py + /homeassistant/components/aseko_pool_live/binary_sensor.py:53:7 - error: Base classes for class "AsekoBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/aseko_pool_live/binary_sensor.py:56:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "AsekoBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/aseko_pool_live/binary_sensor.py:59:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/aseko_pool_live/sensor.py + /homeassistant/components/aseko_pool_live/sensor.py:102:7 - error: Base classes for class "AsekoSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/aseko_pool_live/sensor.py:105:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AsekoSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/aseko_pool_live/sensor.py:108:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/assist_pipeline/pipeline.py + /homeassistant/components/assist_pipeline/pipeline.py:1251:64 - error: "get" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/assist_pipeline/select.py + /homeassistant/components/assist_pipeline/select.py:60:7 - error: Base classes for class "AssistPipelineSelect" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/assist_pipeline/select.py:60:7 - error: Base classes for class "AssistPipelineSelect" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/assist_pipeline/select.py:60:7 - error: Base classes for class "AssistPipelineSelect" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/assist_pipeline/select.py:60:7 - error: Base classes for class "AssistPipelineSelect" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/assist_pipeline/select.py:150:7 - error: Base classes for class "VadSensitivitySelect" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/assist_pipeline/select.py:150:7 - error: Base classes for class "VadSensitivitySelect" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/assist_pipeline/select.py:150:7 - error: Base classes for class "VadSensitivitySelect" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/assist_pipeline/select.py:150:7 - error: Base classes for class "VadSensitivitySelect" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/assist_satellite/__init__.py + /homeassistant/components/assist_satellite/__init__.py:158:5 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/components/assist_satellite/__init__.py:158:5 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[str, _S@__setitem__]" is not assignable to type "dict[str, Event]" +     "dict[str, _S@__setitem__]" is not assignable to "dict[str, Event]" +       Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "Event" +       Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) +/homeassistant/components/assist_satellite/entity.py + /homeassistant/components/assist_satellite/entity.py:129:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AssistSatelliteEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/assist_satellite/entity.py:149:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/asuswrt/device_tracker.py + /homeassistant/components/asuswrt/device_tracker.py:73:9 - error: "hostname" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/asuswrt/device_tracker.py:78:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/asuswrt/device_tracker.py:83:9 - error: "ip_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/asuswrt/device_tracker.py:88:9 - error: "mac_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/asuswrt/diagnostics.py + /homeassistant/components/asuswrt/diagnostics.py:38:21 - error: Could not access item in TypedDict +   "identifiers" is not a required key in "DeviceInfo", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/asuswrt/helpers.py + /homeassistant/components/asuswrt/helpers.py:41:16 - error: Type "None" is not assignable to return type "T@translate_to_legacy" +   Type "None" is not assignable to type "T@translate_to_legacy" (reportReturnType) +/homeassistant/components/asuswrt/sensor.py + /homeassistant/components/asuswrt/sensor.py:269:7 - error: Base classes for class "AsusWrtSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/asuswrt/sensor.py:283:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AsusWrtSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/asuswrt/sensor.py:283:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AsusWrtSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/asuswrt/sensor.py:290:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/atag/climate.py + /homeassistant/components/atag/climate.py:43:7 - error: Base classes for class "AtagThermostat" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/atag/climate.py:43:7 - error: Base classes for class "AtagThermostat" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/atag/climate.py:55:64 - error: "temp_unit" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/atag/climate.py:58:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/atag/climate.py:60:71 - error: "hvac_mode" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/atag/climate.py:63:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/atag/climate.py:65:51 - error: "status" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/atag/climate.py:69:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/atag/climate.py:71:46 - error: "temperature" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/atag/climate.py:74:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/atag/climate.py:76:46 - error: "target_temperature" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/atag/climate.py:79:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/atag/climate.py:81:48 - error: "preset_mode" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/atag/climate.py:86:45 - error: "set_temp" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/atag/climate.py:91:45 - error: "set_hvac_mode" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/atag/climate.py:96:45 - error: "set_preset_mode" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/atag/config_flow.py + /homeassistant/components/atag/config_flow.py:16:44 - error: "const" is not a known attribute of module "pyatag" (reportAttributeAccessIssue) +/homeassistant/components/atag/entity.py + /homeassistant/components/atag/entity.py:22:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/atag/sensor.py + /homeassistant/components/atag/sensor.py:38:7 - error: Base classes for class "AtagSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/atag/sensor.py:38:7 - error: Base classes for class "AtagSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/atag/sensor.py:45:12 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/atag/sensor.py:49:39 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/atag/sensor.py:50:12 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/atag/sensor.py:57:53 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/atag/sensor.py:62:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/atag/sensor.py:67:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/atag/water_heater.py + /homeassistant/components/atag/water_heater.py:32:7 - error: Base classes for class "AtagWaterHeater" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/atag/water_heater.py:32:7 - error: Base classes for class "AtagWaterHeater" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/atag/water_heater.py:40:9 - error: "current_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/atag/water_heater.py:45:9 - error: "current_operation" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/atag/water_heater.py:52:44 - error: "set_temp" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/atag/water_heater.py:56:9 - error: "target_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/atag/water_heater.py:63:42 - error: "max_temp" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/atag/water_heater.py:68:42 - error: "min_temp" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/aten_pe/switch.py + /homeassistant/components/aten_pe/switch.py:8:6 - error: Import "atenpdu" could not be resolved (reportMissingImports) +/homeassistant/components/atome/sensor.py + /homeassistant/components/atome/sensor.py:8:6 - error: Import "pyatome.client" could not be resolved (reportMissingImports) +/homeassistant/components/august/binary_sensor.py + /homeassistant/components/august/binary_sensor.py:75:18 - error: Argument of type "(data: AugustData, detail: DoorbellDetail | LockDetail) -> bool" cannot be assigned to parameter "value_fn" of type "(AugustData, DoorbellDetail | LockDetail) -> (Activity | None)" in function "__init__" +   Type "(data: AugustData, detail: DoorbellDetail | LockDetail) -> bool" is not assignable to type "(AugustData, DoorbellDetail | LockDetail) -> (Activity | None)" +     Function return type "bool" is incompatible with type "Activity | None" +       Type "bool" is not assignable to type "Activity | None" +         "bool" is not assignable to "Activity" +         "bool" is not assignable to "None" (reportArgumentType) + /homeassistant/components/august/binary_sensor.py:103:19 - error: Cannot access attribute "doorsense" for class "DoorbellDetail" +   Attribute "doorsense" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/binary_sensor.py:106:19 - error: Cannot access attribute "doorbell" for class "DoorbellDetail" +   Attribute "doorbell" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/binary_sensor.py:130:46 - error: Argument of type "DoorbellDetail | LockDetail" cannot be assigned to parameter "lock_detail" of type "LockDetail" in function "update_lock_detail_from_activity" +   Type "DoorbellDetail | LockDetail" is not assignable to type "LockDetail" +     "DoorbellDetail" is not assignable to "LockDetail" (reportArgumentType) + /homeassistant/components/august/binary_sensor.py:130:60 - error: Argument of type "Activity" cannot be assigned to parameter "activity" of type "LockActivityTypes" in function "update_lock_detail_from_activity" +   Type "Activity" is not assignable to type "LockActivityTypes" +     "Activity" is not assignable to "LockOperationActivity" +     "Activity" is not assignable to "DoorOperationActivity" +     "Activity" is not assignable to "BridgeOperationActivity" (reportArgumentType) + /homeassistant/components/august/binary_sensor.py:132:30 - error: Cannot access attribute "set_online" for class "DoorbellDetail" +   Attribute "set_online" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/binary_sensor.py:135:46 - error: Argument of type "DoorbellDetail | LockDetail" cannot be assigned to parameter "lock_detail" of type "LockDetail" in function "update_lock_detail_from_activity" +   Type "DoorbellDetail | LockDetail" is not assignable to type "LockDetail" +     "DoorbellDetail" is not assignable to "LockDetail" (reportArgumentType) + /homeassistant/components/august/binary_sensor.py:135:60 - error: Argument of type "Activity" cannot be assigned to parameter "activity" of type "LockActivityTypes" in function "update_lock_detail_from_activity" +   Type "Activity" is not assignable to type "LockActivityTypes" +     "Activity" is not assignable to "LockOperationActivity" +     "Activity" is not assignable to "DoorOperationActivity" +     "Activity" is not assignable to "BridgeOperationActivity" (reportArgumentType) + /homeassistant/components/august/binary_sensor.py:136:45 - error: Cannot access attribute "bridge_is_online" for class "DoorbellDetail" +   Attribute "bridge_is_online" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/binary_sensor.py:137:41 - error: Cannot access attribute "door_state" for class "DoorbellDetail" +   Attribute "door_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/binary_sensor.py:143:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "AugustDoorbellBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/august/camera.py + /homeassistant/components/august/camera.py:57:28 - error: Cannot assign to attribute "_attr_model" for class "AugustCamera*" +   Type "str | int | Unknown | None" is not assignable to type "str | None" +     Type "int" is not assignable to type "str | None" +       "int" is not assignable to "str" +       "int" is not assignable to "None" (reportAttributeAccessIssue) + /homeassistant/components/august/camera.py:60:9 - error: "is_recording" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/august/camera.py:62:29 - error: Cannot access attribute "has_subscription" for class "Lock" +   Attribute "has_subscription" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/camera.py:62:29 - error: Cannot access attribute "has_subscription" for class "KeypadDetail" +   Attribute "has_subscription" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/camera.py:76:49 - error: Argument of type "DoorbellDetail | LockDetail" cannot be assigned to parameter "doorbell_detail" of type "DoorbellDetail" in function "update_doorbell_image_from_activity" +   Type "DoorbellDetail | LockDetail" is not assignable to type "DoorbellDetail" +     "LockDetail" is not assignable to "DoorbellDetail" (reportArgumentType) + /homeassistant/components/august/camera.py:76:63 - error: Argument of type "Activity" cannot be assigned to parameter "activity" of type "DoorbellActivityTypes" in function "update_doorbell_image_from_activity" +   Type "Activity" is not assignable to type "DoorbellActivityTypes" +     "Activity" is not assignable to "DoorbellImageCaptureActivity" +     "Activity" is not assignable to "DoorbellMotionActivity" +     "Activity" is not assignable to "BridgeOperationActivity" (reportArgumentType) + /homeassistant/components/august/camera.py:84:48 - error: Cannot access attribute "image_url" for class "LockDetail" +   Attribute "image_url" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/camera.py:88:44 - error: Cannot access attribute "image_url" for class "LockDetail" +   Attribute "image_url" is unknown (reportAttributeAccessIssue) +/homeassistant/components/august/data.py + /homeassistant/components/august/data.py:30:17 - error: Argument of type "dict[str, Unknown | str | int | None]" cannot be assigned to parameter "__map" of type "YaleXSBLEDiscovery" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/august/data.py:47:42 - error: Argument of type "type[HomeAssistantError]" cannot be assigned to parameter "error_exception_class" of type "Exception" in function "__init__" +   Type "type[HomeAssistantError]" is not assignable to type "Exception" (reportArgumentType) +/homeassistant/components/august/entity.py + /homeassistant/components/august/entity.py:43:19 - error: Argument of type "str | int | Unknown | None" cannot be assigned to parameter "model" of type "str | None" in function "__init__" +   Type "str | int | Unknown | None" is not assignable to type "str | None" +     Type "int" is not assignable to type "str | None" +       "int" is not assignable to "str" +       "int" is not assignable to "None" (reportArgumentType) + /homeassistant/components/august/entity.py:59:34 - error: Cannot access attribute "bridge" for class "DoorbellDetail" +   Attribute "bridge" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/entity.py:59:58 - error: Cannot access attribute "bridge" for class "DoorbellDetail" +   Attribute "bridge" is unknown (reportAttributeAccessIssue) +/homeassistant/components/august/event.py + /homeassistant/components/august/event.py:70:74 - error: Cannot access attribute "doorbell" for class "DoorbellDetail" +   Attribute "doorbell" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/event.py:83:5 - error: "entity_description" overrides symbol of same name in class "EventEntity" +   Variable is mutable so its type is invariant +     Override type "AugustEventEntityDescription" is not the same as base type "EventEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/august/lock.py + /homeassistant/components/august/lock.py:38:7 - error: Base classes for class "AugustLock" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/august/lock.py:38:7 - error: Base classes for class "AugustLock" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/august/lock.py:38:7 - error: Base classes for class "AugustLock" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/august/lock.py:38:7 - error: Base classes for class "AugustLock" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/august/lock.py:38:7 - error: Base classes for class "AugustLock" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/august/lock.py:47:25 - error: Cannot access attribute "unlatch_supported" for class "DoorbellDetail" +   Attribute "unlatch_supported" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/lock.py:73:30 - error: Cannot assign to attribute "lock_status" for class "DoorbellDetail" +   Attribute "lock_status" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/lock.py:74:30 - error: Cannot assign to attribute "lock_status_datetime" for class "DoorbellDetail" +   Attribute "lock_status_datetime" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/lock.py:79:50 - error: Argument of type "DoorbellDetail | LockDetail" cannot be assigned to parameter "lock_detail" of type "LockDetail" in function "update_lock_detail_from_activity" +   Type "DoorbellDetail | LockDetail" is not assignable to type "LockDetail" +     "DoorbellDetail" is not assignable to "LockDetail" (reportArgumentType) + /homeassistant/components/august/lock.py:79:64 - error: Argument of type "ActivityTypes" cannot be assigned to parameter "activity" of type "LockActivityTypes" in function "update_lock_detail_from_activity" +   Type "ActivityTypes" is not assignable to type "LockActivityTypes" +     Type "DoorbellDingActivity" is not assignable to type "LockActivityTypes" +       "DoorbellDingActivity" is not assignable to "LockOperationActivity" +       "DoorbellDingActivity" is not assignable to "DoorOperationActivity" +       "DoorbellDingActivity" is not assignable to "BridgeOperationActivity" (reportArgumentType) + /homeassistant/components/august/lock.py:89:45 - error: Cannot access attribute "bridge_is_online" for class "DoorbellDetail" +   Attribute "bridge_is_online" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/lock.py:91:46 - error: Cannot access attribute "lock_status" for class "DoorbellDetail" +   Attribute "lock_status" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/lock.py:92:46 - error: Cannot access attribute "lock_status" for class "DoorbellDetail" +   Attribute "lock_status" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/lock.py:101:51 - error: Cannot access attribute "operated_by" for class "Activity" +   Attribute "operated_by" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/lock.py:106:13 - error: Argument of type "Activity | None" cannot be assigned to parameter "activity1" of type "LockActivityTypes | None" in function "get_latest_activity" +   Type "Activity | None" is not assignable to type "LockActivityTypes | None" +     Type "Activity" is not assignable to type "LockActivityTypes | None" +       "Activity" is not assignable to "LockOperationActivity" +       "Activity" is not assignable to "DoorOperationActivity" +       "Activity" is not assignable to "BridgeOperationActivity" +       "Activity" is not assignable to "None" (reportArgumentType) + /homeassistant/components/august/lock.py:106:45 - error: Argument of type "Activity | None" cannot be assigned to parameter "activity2" of type "LockActivityTypes | None" in function "get_latest_activity" +   Type "Activity | None" is not assignable to type "LockActivityTypes | None" +     Type "Activity" is not assignable to type "LockActivityTypes | None" +       "Activity" is not assignable to "LockOperationActivity" +       "Activity" is not assignable to "DoorOperationActivity" +       "Activity" is not assignable to "BridgeOperationActivity" +       "Activity" is not assignable to "None" (reportArgumentType) + /homeassistant/components/august/lock.py:109:30 - error: Cannot access attribute "set_online" for class "DoorbellDetail" +   Attribute "set_online" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/lock.py:110:46 - error: Argument of type "DoorbellDetail | LockDetail" cannot be assigned to parameter "lock_detail" of type "LockDetail" in function "update_lock_detail_from_activity" +   Type "DoorbellDetail | LockDetail" is not assignable to type "LockDetail" +     "DoorbellDetail" is not assignable to "LockDetail" (reportArgumentType) + /homeassistant/components/august/lock.py:113:46 - error: Argument of type "DoorbellDetail | LockDetail" cannot be assigned to parameter "lock_detail" of type "LockDetail" in function "update_lock_detail_from_activity" +   Type "DoorbellDetail | LockDetail" is not assignable to type "LockDetail" +     "DoorbellDetail" is not assignable to "LockDetail" (reportArgumentType) + /homeassistant/components/august/lock.py:113:54 - error: Argument of type "Activity" cannot be assigned to parameter "activity" of type "LockActivityTypes" in function "update_lock_detail_from_activity" +   Type "Activity" is not assignable to type "LockActivityTypes" +     "Activity" is not assignable to "LockOperationActivity" +     "Activity" is not assignable to "DoorOperationActivity" +     "Activity" is not assignable to "BridgeOperationActivity" (reportArgumentType) + /homeassistant/components/august/lock.py:128:29 - error: Cannot access attribute "keypad" for class "DoorbellDetail" +   Attribute "keypad" is unknown (reportAttributeAccessIssue) +/homeassistant/components/august/sensor.py + /homeassistant/components/august/sensor.py:94:48 - error: Argument of type "DoorbellDetail | LockDetail" cannot be assigned to parameter of type "LockDetail" +   Type "DoorbellDetail | LockDetail" is not assignable to type "LockDetail" +     "DoorbellDetail" is not assignable to "LockDetail" (reportArgumentType) + /homeassistant/components/august/sensor.py:100:29 - error: Cannot access attribute "keypad" for class "DoorbellDetail" +   Attribute "keypad" is unknown (reportAttributeAccessIssue) + /homeassistant/components/august/sensor.py:108:29 - error: Type "Doorbell" cannot be assigned to type variable "T@AugustBatterySensor" +   Type "Doorbell" is not assignable to upper bound "LockDetail | KeypadDetail" for type variable "T@AugustBatterySensor" +     Type "Doorbell" is not assignable to type "LockDetail | KeypadDetail" +       "Doorbell" is not assignable to "LockDetail" +       "Doorbell" is not assignable to "KeypadDetail" (reportInvalidTypeArguments) + /homeassistant/components/august/sensor.py:110:48 - error: Argument of type "DoorbellDetail | LockDetail" cannot be assigned to parameter of type "LockDetail" +   Type "DoorbellDetail | LockDetail" is not assignable to type "LockDetail" +     "DoorbellDetail" is not assignable to "LockDetail" (reportArgumentType) + /homeassistant/components/august/sensor.py:141:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/august/sensor.py:205:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AugustSensorEntityDescription[T@AugustBatterySensor]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/august/sensor.py:212:68 - error: Argument of type "DoorbellDetail | LockDetail" cannot be assigned to parameter of type "T@AugustBatterySensor" +   Type "DoorbellDetail | LockDetail" is not assignable to type "T@AugustBatterySensor" (reportArgumentType) +/homeassistant/components/august/util.py + /homeassistant/components/august/util.py:38:12 - error: Type "Literal[False]" is not assignable to return type "Activity | None" +   Type "Literal[False]" is not assignable to type "Activity | None" +     "Literal[False]" is not assignable to "Activity" +     "Literal[False]" is not assignable to "None" (reportReturnType) +/homeassistant/components/aurora/binary_sensor.py + /homeassistant/components/aurora/binary_sensor.py:29:7 - error: Base classes for class "AuroraSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/aurora/binary_sensor.py:33:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/aurora/sensor.py + /homeassistant/components/aurora/sensor.py:31:7 - error: Base classes for class "AuroraSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/aurora/sensor.py:38:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/aurora_abb_powerone/config_flow.py + /homeassistant/components/aurora_abb_powerone/config_flow.py:53:12 - error: "client" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/aurora_abb_powerone/config_flow.py:54:13 - error: "client" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/aurora_abb_powerone/sensor.py + /homeassistant/components/aurora_abb_powerone/sensor.py:146:7 - error: Base classes for class "AuroraSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/aurora_abb_powerone/sensor.py:170:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/aussie_broadband/__init__.py + /homeassistant/components/aussie_broadband/__init__.py:53:26 - error: Cannot assign to attribute "runtime_data" for class "AussieBroadbandConfigEntry" +   "List[Dict[str, Any]]" is not assignable to "list[AussieBroadbandServiceData]" +     Type parameter "_T@list" is invariant, but "Dict[str, Any]" is not the same as "AussieBroadbandServiceData" +     Consider switching from "list" to "Sequence" which is covariant (reportAttributeAccessIssue) +/homeassistant/components/aussie_broadband/coordinator.py + /homeassistant/components/aussie_broadband/coordinator.py:60:49 - error: Argument of type "str" cannot be assigned to parameter "service_id" of type "int" in function "get_usage" +   "str" is not assignable to "int" (reportArgumentType) +/homeassistant/components/aussie_broadband/diagnostics.py + /homeassistant/components/aussie_broadband/diagnostics.py:23:44 - error: Could not access item in TypedDict +   "coordinator" is not a required key in "AussieBroadbandServiceData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/aussie_broadband/sensor.py + /homeassistant/components/aussie_broadband/sensor.py:135:35 - error: Could not access item in TypedDict +   "coordinator" is not a required key in "AussieBroadbandServiceData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/aussie_broadband/sensor.py:140:7 - error: Base classes for class "AussieBroadandSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/aussie_broadband/sensor.py:154:26 - error: Could not access item in TypedDict +   "coordinator" is not a required key in "AussieBroadbandServiceData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/aussie_broadband/sensor.py:155:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensorValueEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/aussie_broadband/sensor.py:155:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SensorValueEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/aussie_broadband/sensor.py:156:35 - error: Could not access item in TypedDict +   "service_id" is not a required key in "AussieBroadbandServiceData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/aussie_broadband/sensor.py:159:35 - error: Could not access item in TypedDict +   "service_id" is not a required key in "AussieBroadbandServiceData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/aussie_broadband/sensor.py:161:70 - error: Could not access item in TypedDict +   "name" is not a required key in "AussieBroadbandServiceData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/aussie_broadband/sensor.py:161:96 - error: Could not access item in TypedDict +   "service_id" is not a required key in "AussieBroadbandServiceData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/aussie_broadband/sensor.py:162:44 - error: Could not access item in TypedDict +   "description" is not a required key in "AussieBroadbandServiceData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/aussie_broadband/sensor.py:163:19 - error: Could not access item in TypedDict +   "name" is not a required key in "AussieBroadbandServiceData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/aussie_broadband/sensor.py:167:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/autarco/sensor.py + /homeassistant/components/autarco/sensor.py:207:7 - error: Base classes for class "AutarcoBatterySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/autarco/sensor.py:224:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AutarcoBatterySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/autarco/sensor.py:224:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AutarcoBatterySensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/autarco/sensor.py:236:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/autarco/sensor.py:242:7 - error: Base classes for class "AutarcoSolarSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/autarco/sensor.py:259:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AutarcoSolarSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/autarco/sensor.py:259:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AutarcoSolarSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/autarco/sensor.py:271:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/autarco/sensor.py:276:7 - error: Base classes for class "AutarcoInverterSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/autarco/sensor.py:294:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AutarcoInverterSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/autarco/sensor.py:294:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AutarcoInverterSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/autarco/sensor.py:306:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/auth/__init__.py + /homeassistant/components/auth/__init__.py:676:50 - error: "current_refresh_token" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/auth/__init__.py:679:34 - error: "current_refresh_token" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/auth/login_flow.py + /homeassistant/components/auth/login_flow.py:193:67 - error: Cannot access attribute "async_validate_access" for class "AuthProvider" +   Attribute "async_validate_access" is unknown (reportAttributeAccessIssue) + /homeassistant/components/auth/login_flow.py:220:8 - error: Could not access item in TypedDict +   "type" is not a required key in "AuthFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/auth/login_flow.py:225:8 - error: Could not access item in TypedDict +   "type" is not a required key in "AuthFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/auth/login_flow.py:229:19 - error: Could not access item in TypedDict +   "data_schema" is not a required key in "AuthFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/auth/login_flow.py:258:12 - error: Could not access item in TypedDict +   "type" is not a required key in "AuthFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/auth/login_flow.py:262:17 - error: Could not access item in TypedDict +   "type" is not a required key in "AuthFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/auth/login_flow.py:276:30 - error: Could not access item in TypedDict +   "context" is not a required key in "AuthFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/auth/login_flow.py:276:30 - error: Could not access item in TypedDict +   "redirect_uri" is not a required key in "AuthFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/auth/mfa_setup_flow.py + /homeassistant/components/auth/mfa_setup_flow.py:154:8 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[FlowContext, str]", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/auth/mfa_setup_flow.py:156:8 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[FlowContext, str]", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/auth/mfa_setup_flow.py:160:19 - error: Could not access item in TypedDict +   "data_schema" is not a required key in "FlowResult[FlowContext, str]", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/automation/__init__.py + /homeassistant/components/automation/__init__.py:123:71 - error: Function with declared return type "bool" must return value on all code paths +   "None" is not assignable to "bool" (reportReturnType) + /homeassistant/components/automation/__init__.py:334:9 - error: "capability_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/automation/__init__.py:468:7 - error: Base classes for class "AutomationEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/automation/__init__.py:468:7 - error: Base classes for class "AutomationEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/automation/__init__.py:468:7 - error: Base classes for class "AutomationEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/automation/__init__.py:468:7 - error: Base classes for class "AutomationEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/automation/__init__.py:505:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/automation/__init__.py:517:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/automation/__init__.py:522:9 - error: "referenced_labels" overrides symbol of same name in class "BaseAutomationEntity" +   "property" is not assignable to "cached_property[set[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/automation/__init__.py:527:9 - error: "referenced_floors" overrides symbol of same name in class "BaseAutomationEntity" +   "property" is not assignable to "cached_property[set[str]]" (reportIncompatibleVariableOverride) +/homeassistant/components/automation/reproduce_state.py + /homeassistant/components/automation/reproduce_state.py:56:17 - error: "service" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/avea/light.py + /homeassistant/components/avea/light.py:30:29 - error: "discover_avea_bulbs" is not a known attribute of module "avea" (reportAttributeAccessIssue) +/homeassistant/components/awair/config_flow.py + /homeassistant/components/awair/config_flow.py:40:14 - error: Cannot assign to attribute "_device" for class "AwairFlowHandler*" +   Expression of type "AwairLocalDevice | None" cannot be assigned to attribute "_device" of class "AwairFlowHandler" +     Type "AwairLocalDevice | None" is not assignable to type "AwairLocalDevice" +       "None" is not assignable to "AwairLocalDevice" (reportAttributeAccessIssue) + /homeassistant/components/awair/config_flow.py:48:13 - error: No overloads for "update" match the provided arguments (reportCallIssue) + /homeassistant/components/awair/config_flow.py:52:38 - error: Argument of type "dict[str, dict[str, str | int]]" cannot be assigned to parameter "__m" of type "Partial[ConfigFlowContext]" in function "update" +   "int" is not assignable to "str" (reportArgumentType) + /homeassistant/components/awair/config_flow.py:103:54 - error: Argument of type "str | None" cannot be assigned to parameter "title" of type "str" in function "async_create_entry" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/awair/config_flow.py:131:20 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/awair/config_flow.py:167:18 - error: Cannot assign to attribute "_device" for class "AwairFlowHandler*" +   Expression of type "AwairLocalDevice | None" cannot be assigned to attribute "_device" of class "AwairFlowHandler" +     Type "AwairLocalDevice | None" is not assignable to type "AwairLocalDevice" +       "None" is not assignable to "AwairLocalDevice" (reportAttributeAccessIssue) + /homeassistant/components/awair/config_flow.py:192:25 - error: "data_schema" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/awair/coordinator.py + /homeassistant/components/awair/coordinator.py:67:52 - error: Argument of type "AirData | None" cannot be assigned to parameter "air_data" of type "AirData" in function "__init__" +   Type "AirData | None" is not assignable to type "AirData" +     "None" is not assignable to "AirData" (reportArgumentType) +/homeassistant/components/awair/sensor.py + /homeassistant/components/awair/sensor.py:206:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AwairSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/awair/sensor.py:206:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AwairSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/awair/sensor.py:210:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/awair/sensor.py:228:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/awair/sensor.py:251:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/awair/sensor.py:276:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/awair/sensor.py:309:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/aws_s3/__init__.py + /homeassistant/components/aws_s3/__init__.py:67:26 - error: "client" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/aws_s3/backup.py + /homeassistant/components/aws_s3/backup.py:104:15 - error: Method "async_download_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, AsyncIterator[bytes]]", override returns type "Coroutine[Any, Any, AsyncIterator[bytes]]" +     "Coroutine[Any, Any, AsyncIterator[bytes]]" is not assignable to "CoroutineType[Any, Any, AsyncIterator[bytes]]" (reportIncompatibleMethodOverride) + /homeassistant/components/aws_s3/backup.py:252:15 - error: Method "async_delete_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/aws_s3/backup.py:272:15 - error: Method "async_list_backups" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, list[AgentBackup]]", override returns type "Coroutine[Any, Any, list[AgentBackup]]" +     "Coroutine[Any, Any, list[AgentBackup]]" is not assignable to "CoroutineType[Any, Any, list[AgentBackup]]" (reportIncompatibleMethodOverride) + /homeassistant/components/aws_s3/backup.py:278:15 - error: Method "async_get_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, AgentBackup]", override returns type "Coroutine[Any, Any, AgentBackup]" +     "Coroutine[Any, Any, AgentBackup]" is not assignable to "CoroutineType[Any, Any, AgentBackup]" (reportIncompatibleMethodOverride) +/homeassistant/components/axis/binary_sensor.py + /homeassistant/components/axis/binary_sensor.py:192:5 - error: "entity_description" overrides symbol of same name in class "AxisEventEntity" +   Variable is mutable so its type is invariant +     Override type "AxisBinarySensorDescription" is not the same as base type "AxisEventDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/axis/binary_sensor.py:192:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "AxisBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/axis/config_flow.py + /homeassistant/components/axis/config_flow.py:278:5 - error: "config_entry" incorrectly overrides property of same name in class "OptionsFlow" (reportIncompatibleMethodOverride) +/homeassistant/components/axis/entity.py + /homeassistant/components/axis/entity.py:98:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AxisEventDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/axis/hub/api.py + /homeassistant/components/axis/hub/api.py:27:11 - error: "AxisDevice" is not exported from module "axis" (reportPrivateImportUsage) + /homeassistant/components/axis/hub/api.py:31:16 - error: "AxisDevice" is not exported from module "axis" (reportPrivateImportUsage) +/homeassistant/components/axis/hub/event_source.py + /homeassistant/components/axis/hub/event_source.py:9:33 - error: "Signal" is not exported from module "axis.stream_manager" +   Import from "axis.rtsp" instead (reportPrivateImportUsage) + /homeassistant/components/axis/hub/event_source.py:9:41 - error: "State" is not exported from module "axis.stream_manager" +   Import from "axis.rtsp" instead (reportPrivateImportUsage) + /homeassistant/components/axis/hub/event_source.py:23:73 - error: "AxisDevice" is not exported from module "axis" (reportPrivateImportUsage) +/homeassistant/components/axis/hub/hub.py + /homeassistant/components/axis/hub/hub.py:27:77 - error: "AxisDevice" is not exported from module "axis" (reportPrivateImportUsage) +/homeassistant/components/axis/light.py + /homeassistant/components/axis/light.py:60:5 - error: "entity_description" overrides symbol of same name in class "AxisEventEntity" +   Variable is mutable so its type is invariant +     Override type "AxisLightDescription" is not the same as base type "AxisEventDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/axis/light.py:60:5 - error: "entity_description" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "AxisLightDescription" is not the same as base type "LightEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/axis/light.py:94:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/axis/switch.py + /homeassistant/components/axis/switch.py:53:5 - error: "entity_description" overrides symbol of same name in class "AxisEventEntity" +   Variable is mutable so its type is invariant +     Override type "AxisSwitchDescription" is not the same as base type "AxisEventDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/axis/switch.py:53:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "AxisSwitchDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/azure_devops/config_flow.py + /homeassistant/components/azure_devops/config_flow.py:54:51 - error: Argument of type "str | None" cannot be assigned to parameter "organization" of type "str" in function "authorize" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/azure_devops/config_flow.py:58:53 - error: Argument of type "str | None" cannot be assigned to parameter "organization" of type "str" in function "get_project" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/azure_devops/config_flow.py:58:73 - error: Argument of type "str | None" cannot be assigned to parameter "project" of type "str" in function "get_project" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/azure_devops/sensor.py + /homeassistant/components/azure_devops/sensor.py:180:7 - error: Base classes for class "AzureDevOpsBuildSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/azure_devops/sensor.py:193:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AzureDevOpsBuildSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/azure_devops/sensor.py:193:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AzureDevOpsBuildSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/azure_devops/sensor.py:198:38 - error: "build_id" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/azure_devops/sensor.py:202:54 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/azure_devops/sensor.py:211:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/azure_devops/sensor.py:216:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/azure_devops/sensor.py:221:7 - error: Base classes for class "AzureDevOpsWorkItemSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/azure_devops/sensor.py:235:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AzureDevOpsWorkItemSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/azure_devops/sensor.py:235:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AzureDevOpsWorkItemSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/azure_devops/sensor.py:261:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/azure_service_bus/notify.py + /homeassistant/components/azure_service_bus/notify.py:8:6 - error: Import "azure.servicebus" could not be resolved (reportMissingImports) + /homeassistant/components/azure_service_bus/notify.py:9:6 - error: Import "azure.servicebus.aio" could not be resolved (reportMissingImports) + /homeassistant/components/azure_service_bus/notify.py:10:6 - error: Import "azure.servicebus.exceptions" could not be resolved (reportMissingImports) +/homeassistant/components/azure_storage/backup.py + /homeassistant/components/azure_storage/backup.py:114:15 - error: Method "async_download_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, AsyncIterator[bytes]]", override returns type "Coroutine[Any, Any, AsyncIterator[bytes]]" +     "Coroutine[Any, Any, AsyncIterator[bytes]]" is not assignable to "CoroutineType[Any, Any, AsyncIterator[bytes]]" (reportIncompatibleMethodOverride) + /homeassistant/components/azure_storage/backup.py:127:15 - error: Method "async_upload_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/azure_storage/backup.py:150:15 - error: Method "async_delete_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/azure_storage/backup.py:162:15 - error: Method "async_list_backups" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, list[AgentBackup]]", override returns type "Coroutine[Any, Any, list[AgentBackup]]" +     "Coroutine[Any, Any, list[AgentBackup]]" is not assignable to "CoroutineType[Any, Any, list[AgentBackup]]" (reportIncompatibleMethodOverride) + /homeassistant/components/azure_storage/backup.py:176:15 - error: Method "async_get_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, AgentBackup]", override returns type "Coroutine[Any, Any, AgentBackup]" +     "Coroutine[Any, Any, AgentBackup]" is not assignable to "CoroutineType[Any, Any, AgentBackup]" (reportIncompatibleMethodOverride) +/homeassistant/components/backblaze_b2/__init__.py + /homeassistant/components/backblaze_b2/__init__.py:51:16 - error: Type "Bucket" is not assignable to return type "Bucket" +   "b2sdk._internal.bucket.Bucket" is not assignable to "b2sdk.v2.bucket.Bucket" (reportReturnType) +/homeassistant/components/backblaze_b2/backup.py + /homeassistant/components/backblaze_b2/backup.py:193:15 - error: Method "async_download_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, AsyncIterator[bytes]]", override returns type "Coroutine[Any, Any, AsyncIterator[bytes]]" +     "Coroutine[Any, Any, AsyncIterator[bytes]]" is not assignable to "CoroutineType[Any, Any, AsyncIterator[bytes]]" (reportIncompatibleMethodOverride) + /homeassistant/components/backblaze_b2/backup.py:220:15 - error: Method "async_upload_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/backblaze_b2/backup.py:345:15 - error: Method "async_delete_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/backblaze_b2/backup.py:373:15 - error: Method "async_list_backups" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, list[AgentBackup]]", override returns type "Coroutine[Any, Any, list[AgentBackup]]" +     "Coroutine[Any, Any, list[AgentBackup]]" is not assignable to "CoroutineType[Any, Any, list[AgentBackup]]" (reportIncompatibleMethodOverride) + /homeassistant/components/backblaze_b2/backup.py:411:15 - error: Method "async_get_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, AgentBackup]", override returns type "Coroutine[Any, Any, AgentBackup]" +     "Coroutine[Any, Any, AgentBackup]" is not assignable to "CoroutineType[Any, Any, AgentBackup]" (reportIncompatibleMethodOverride) +/homeassistant/components/backblaze_b2/config_flow.py + /homeassistant/components/backblaze_b2/config_flow.py:199:13 - error: Could not access item in TypedDict +   "entry_id" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/backblaze_b2/config_flow.py:257:58 - error: Could not access item in TypedDict +   "entry_id" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/backup/agent.py + /homeassistant/components/backup/agent.py:116:10 - error: Function with declared return type "list[BackupAgent]" must return value on all code paths +   "None" is not assignable to "list[BackupAgent]" (reportReturnType) + /homeassistant/components/backup/agent.py:126:10 - error: Function with declared return type "() -> None" must return value on all code paths +   Type "None" is not assignable to type "() -> None" (reportReturnType) +/homeassistant/components/backup/event.py + /homeassistant/components/backup/event.py:29:7 - error: Base classes for class "AutomaticBackupEvent" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/backup/manager.py + /homeassistant/components/backup/manager.py:586:29 - error: "open_stream_func" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/backup/manager.py:587:24 - error: "_backup" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/backup/manager.py:1823:22 - error: Argument of type "list[BaseException | Exception]" cannot be assigned to parameter "exceptions" of type "Sequence[Exception]" in function "__new__" +   "BaseException" is not assignable to "Exception" (reportArgumentType) + /homeassistant/components/backup/manager.py:1949:15 - error: Method "async_restore_backup" overrides class "BackupReaderWriter" in an incompatible manner +   Positional parameter count mismatch; base method has 10, but override has 10 +   Parameter "open_stream" is missing in override (reportIncompatibleMethodOverride) +/homeassistant/components/backup/sensor.py + /homeassistant/components/backup/sensor.py:73:7 - error: Base classes for class "BackupManagerSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/backup/sensor.py:76:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "BackupSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/backup/sensor.py:79:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/backup/util.py + /homeassistant/components/backup/util.py:186:42 - error: "plaintext_size" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/backup/util.py:289:57 - error: "plaintext_size" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/backup/util.py:381:44 - error: Cannot access attribute "encrypted_size" for class "BinaryIO" +   Attribute "encrypted_size" is unknown (reportAttributeAccessIssue) +/homeassistant/components/baf/binary_sensor.py + /homeassistant/components/baf/binary_sensor.py:57:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "BAFBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/baf/entity.py + /homeassistant/components/baf/entity.py:24:54 - error: Argument of type "set[tuple[Literal['mac'], str | None]]" cannot be assigned to parameter "connections" of type "set[tuple[str, str]]" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/baf/number.py + /homeassistant/components/baf/number.py:136:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "BAFNumberDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/baf/sensor.py + /homeassistant/components/baf/sensor.py:117:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "BAFSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/baf/switch.py + /homeassistant/components/baf/switch.py:124:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "BAFSwitchDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/baidu/tts.py + /homeassistant/components/baidu/tts.py:5:6 - error: Import "aip" could not be resolved (reportMissingImports) +/homeassistant/components/balboa/binary_sensor.py + /homeassistant/components/balboa/binary_sensor.py:67:7 - error: Base classes for class "BalboaBinarySensorEntity" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/balboa/binary_sensor.py:77:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BalboaBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/balboa/binary_sensor.py:77:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "BalboaBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/balboa/binary_sensor.py:80:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/balboa/climate.py + /homeassistant/components/balboa/climate.py:56:7 - error: Base classes for class "BalboaClimateEntity" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/balboa/climate.py:82:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/balboa/climate.py:87:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/balboa/climate.py:92:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/balboa/climate.py:106:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/balboa/climate.py:111:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/balboa/climate.py:116:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/balboa/climate.py:121:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/balboa/climate.py:126:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/balboa/climate.py:131:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/balboa/config_flow.py + /homeassistant/components/balboa/config_flow.py:86:27 - error: "info" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/balboa/entity.py + /homeassistant/components/balboa/entity.py:35:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/balboa/event.py + /homeassistant/components/balboa/event.py:54:7 - error: Base classes for class "BalboaEventEntity" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/balboa/fan.py + /homeassistant/components/balboa/fan.py:33:7 - error: Base classes for class "BalboaPumpFanEntity" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/balboa/fan.py:78:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/balboa/fan.py:94:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) +/homeassistant/components/balboa/light.py + /homeassistant/components/balboa/light.py:28:7 - error: Base classes for class "BalboaLightEntity" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/balboa/light.py:54:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/balboa/select.py + /homeassistant/components/balboa/select.py:24:7 - error: Base classes for class "BalboaTempRangeSelectEntity" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/balboa/select.py:39:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/balboa/switch.py + /homeassistant/components/balboa/switch.py:28:7 - error: Base classes for class "BalboaSwitchEntity" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/balboa/switch.py:38:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/balboa/time.py + /homeassistant/components/balboa/time.py:35:7 - error: Base classes for class "BalboaTimeEntity" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/balboa/time.py:38:23 - error: Type "Literal[EntityCategory.CONFIG]" is not assignable to declared type "cached_property" +   "Literal[EntityCategory.CONFIG]" is not assignable to "cached_property[EntityCategory | None]" (reportAssignmentType) + /homeassistant/components/balboa/time.py:49:9 - error: "native_value" overrides symbol of same name in class "TimeEntity" +   "property" is not assignable to "cached_property[time | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/bang_olufsen/media_player.py + /homeassistant/components/bang_olufsen/media_player.py:306:20 - error: "sw_version" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/bang_olufsen/media_player.py:587:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bang_olufsen/media_player.py:587:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/bang_olufsen/media_player.py:598:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/bang_olufsen/media_player.py:598:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bang_olufsen/media_player.py:603:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bang_olufsen/media_player.py:610:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bang_olufsen/media_player.py:617:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bang_olufsen/media_player.py:625:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bang_olufsen/media_player.py:630:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bang_olufsen/media_player.py:635:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bang_olufsen/media_player.py:640:9 - error: "media_image_remotely_accessible" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/bang_olufsen/media_player.py:645:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bang_olufsen/media_player.py:650:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bang_olufsen/media_player.py:655:9 - error: "media_album_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bang_olufsen/media_player.py:660:9 - error: "media_track" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bang_olufsen/media_player.py:665:9 - error: "media_channel" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bang_olufsen/media_player.py:670:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bang_olufsen/media_player.py:675:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bang_olufsen/media_player.py:932:53 - error: Argument of type "Unknown | None" cannot be assigned to parameter "s" of type "str | bytes | bytearray" in function "loads" +   Type "Unknown | None" is not assignable to type "str | bytes | bytearray" +     Type "None" is not assignable to type "str | bytes | bytearray" +       "None" is not assignable to "str" +       "None" is not assignable to "bytes" +       "None" is not assignable to "bytearray" (reportArgumentType) +/homeassistant/components/bayesian/binary_sensor.py + /homeassistant/components/bayesian/binary_sensor.py:634:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/bayesian/config_flow.py + /homeassistant/components/bayesian/config_flow.py:386:37 - error: Could not access item in TypedDict +   "step_id" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/bayesian/config_flow.py:557:25 - error: "sub_entry" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/bayesian/config_flow.py:558:57 - error: "sub_entry" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/bayesian/config_flow.py:572:70 - error: "sub_entry" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/bbox/device_tracker.py + /homeassistant/components/bbox/device_tracker.py:9:8 - error: Import "pybbox" could not be resolved (reportMissingImports) +/homeassistant/components/bbox/sensor.py + /homeassistant/components/bbox/sensor.py:8:8 - error: Import "pybbox" could not be resolved (reportMissingImports) +/homeassistant/components/beewi_smartclim/sensor.py + /homeassistant/components/beewi_smartclim/sensor.py:5:29 - error: "BeewiSmartClimPoller" is unknown import symbol (reportAttributeAccessIssue) +/homeassistant/components/binary_sensor/__init__.py + /homeassistant/components/binary_sensor/__init__.py:162:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/binary_sensor/__init__.py:163:5 - error: "_attr_device_class" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BinarySensorDeviceClass | None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/binary_sensor/__init__.py:165:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) + /homeassistant/components/binary_sensor/__init__.py:198:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/bitcoin/sensor.py + /homeassistant/components/bitcoin/sensor.py:8:24 - error: "exchangerates" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/bitcoin/sensor.py:8:39 - error: "statistics" is unknown import symbol (reportAttributeAccessIssue) +/homeassistant/components/bizkaibus/sensor.py + /homeassistant/components/bizkaibus/sensor.py:7:6 - error: Import "bizkaibus.bizkaibus" could not be resolved (reportMissingImports) +/homeassistant/components/blackbird/media_player.py + /homeassistant/components/blackbird/media_player.py:108:32 - error: "blackbird" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/blackbird/media_player.py:170:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/blebox/binary_sensor.py + /homeassistant/components/blebox/binary_sensor.py:50:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/binary_sensor.py:52:30 - error: Cannot access attribute "state" for class "BinarySensor" +   Attribute "state" is unknown (reportAttributeAccessIssue) +/homeassistant/components/blebox/climate.py + /homeassistant/components/blebox/climate.py:61:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/climate.py:68:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/climate.py:79:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/climate.py:92:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/climate.py:94:16 - error: Type "float | int | None" is not assignable to return type "float" +   Type "float | int | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportReturnType) + /homeassistant/components/blebox/climate.py:97:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/climate.py:99:16 - error: Type "float | int | None" is not assignable to return type "float" +   Type "float | int | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportReturnType) + /homeassistant/components/blebox/climate.py:102:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/climate.py:107:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/blebox/config_flow.py + /homeassistant/components/blebox/config_flow.py:97:20 - error: Argument of type "int | None" cannot be assigned to parameter "port" of type "int" in function "__init__" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) +/homeassistant/components/blebox/cover.py + /homeassistant/components/blebox/cover.py:82:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/cover.py:91:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/cover.py:97:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/cover.py:102:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/cover.py:107:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/blebox/light.py + /homeassistant/components/blebox/light.py:72:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/light.py:74:16 - error: Type "bool | None" is not assignable to return type "bool" +   Type "bool | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportReturnType) + /homeassistant/components/blebox/light.py:77:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/light.py:87:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/light.py:92:16 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/blebox/light.py:92:35 - error: Argument of type "int" cannot be assigned to parameter "key" of type "BleboxColorMode" in function "get" +   "int" is not assignable to "BleboxColorMode" (reportArgumentType) + /homeassistant/components/blebox/light.py:95:9 - error: "supported_color_modes" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[set[ColorMode] | set[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/light.py:100:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/light.py:105:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/light.py:110:9 - error: "rgb_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/light.py:121:9 - error: "rgbw_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/light.py:125:16 - error: Type "tuple[int, ...]" is not assignable to return type "tuple[int, int, int, int] | None" +   Type "tuple[int, ...]" is not assignable to type "tuple[int, int, int, int] | None" +     "tuple[int, ...]" is not assignable to "tuple[int, int, int, int]" +       Tuple size mismatch; expected 4 but received indeterminate +     "tuple[int, ...]" is not assignable to "None" (reportReturnType) + /homeassistant/components/blebox/light.py:128:9 - error: "rgbww_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/light.py:132:16 - error: Type "tuple[int, ...]" is not assignable to return type "tuple[int, int, int, int, int] | None" +   Type "tuple[int, ...]" is not assignable to type "tuple[int, int, int, int, int] | None" +     "tuple[int, ...]" is not assignable to "tuple[int, int, int, int, int]" +       Tuple size mismatch; expected 5 but received indeterminate +     "tuple[int, ...]" is not assignable to "None" (reportReturnType) + /homeassistant/components/blebox/light.py:171:50 - error: Argument of type "list[Any] | str | Any | None" cannot be assigned to parameter "value" of type "int" in function "apply_brightness" +   Type "list[Any] | str | Any | None" is not assignable to type "int" +     "str" is not assignable to "int" (reportArgumentType) +/homeassistant/components/blebox/sensor.py + /homeassistant/components/blebox/sensor.py:144:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/blebox/sensor.py:149:9 - error: "last_reset" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/blebox/switch.py + /homeassistant/components/blebox/switch.py:37:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/blink/alarm_control_panel.py + /homeassistant/components/blink/alarm_control_panel.py:42:7 - error: Base classes for class "BlinkSyncModuleHA" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/blink/alarm_control_panel.py:59:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/blink/alarm_control_panel.py:59:37 - error: Cannot assign to attribute "_attr_unique_id" for class "BlinkSyncModuleHA*" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportAttributeAccessIssue) + /homeassistant/components/blink/alarm_control_panel.py:61:35 - error: Argument of type "set[tuple[Literal['blink'], Any | None]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]]" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/blink/binary_sensor.py + /homeassistant/components/blink/binary_sensor.py:65:7 - error: Base classes for class "BlinkBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/blink/camera.py + /homeassistant/components/blink/camera.py:89:35 - error: Argument of type "set[tuple[Literal['blink'], Any | None]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]]" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/blink/camera.py:99:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/blink/camera.py:136:9 - error: "motion_detection_enabled" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/blink/camera.py:141:9 - error: "brand" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/blink/config_flow.py + /homeassistant/components/blink/config_flow.py:103:43 - error: Argument of type "Blink | None" cannot be assigned to parameter "blink" of type "Blink" in function "_send_blink_2fa_pin" +   Type "Blink | None" is not assignable to type "Blink" +     "None" is not assignable to "Blink" (reportArgumentType) +/homeassistant/components/blink/sensor.py + /homeassistant/components/blink/sensor.py:64:7 - error: Base classes for class "BlinkSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/blink/switch.py + /homeassistant/components/blink/switch.py:47:7 - error: Base classes for class "BlinkSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/blink/switch.py:105:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/blinksticklight/light.py + /homeassistant/components/blinksticklight/light.py:48:13 - error: "blinkstick" is not defined (reportUndefinedVariable) +/homeassistant/components/blockchain/sensor.py + /homeassistant/components/blockchain/sensor.py:8:6 - error: Import "pyblockchain" could not be resolved (reportMissingImports) +/homeassistant/components/blue_current/__init__.py + /homeassistant/components/blue_current/__init__.py:260:37 - error: "delay" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/blue_current/button.py + /homeassistant/components/blue_current/button.py:69:7 - error: Base classes for class "ChargePointButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/blue_current/button.py:84:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ChargePointButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/blue_current/button.py:84:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "ChargePointButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/blue_current/entity.py + /homeassistant/components/blue_current/entity.py:39:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/blue_current/sensor.py + /homeassistant/components/blue_current/sensor.py:238:7 - error: Base classes for class "ChargePointSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/blue_current/sensor.py:286:7 - error: Base classes for class "GridSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/blue_current/switch.py + /homeassistant/components/blue_current/switch.py:127:7 - error: Base classes for class "ChargePointSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/blue_current/switch.py:143:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BlueCurrentSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/blue_current/switch.py:143:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "BlueCurrentSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/bluemaestro/sensor.py + /homeassistant/components/bluemaestro/sensor.py:132:7 - error: Base classes for class "BlueMaestroBluetoothSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bluemaestro/sensor.py:141:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/blueprint/importer.py + /homeassistant/components/blueprint/importer.py:140:48 - error: "block_content" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/blueprint/importer.py:204:25 - error: "endswith" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/blueprint/importer.py:226:54 - error: "content" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/bluesound/button.py + /homeassistant/components/bluesound/button.py:84:7 - error: Base classes for class "BluesoundButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/button.py:101:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BluesoundButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/button.py:101:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "BluesoundButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/bluesound/media_player.py + /homeassistant/components/bluesound/media_player.py:93:7 - error: Base classes for class "BluesoundPlayer" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/media_player.py:187:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/media_player.py:187:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/media_player.py:204:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/media_player.py:212:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/media_player.py:223:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/media_player.py:231:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/media_player.py:246:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/media_player.py:265:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/media_player.py:277:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/media_player.py:282:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/media_player.py:292:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/media_player.py:319:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/media_player.py:336:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/media_player.py:358:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/media_player.py:358:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/media_player.py:416:9 - error: "shuffle" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bluesound/media_player.py:447:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/bluetooth/__init__.py + /homeassistant/components/bluetooth/__init__.py:199:13 - error: Argument of type "HassJob[(now: datetime), CoroutineType[Any, Any, None]]" cannot be assigned to parameter "action" of type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" in function "async_call_later" +   Type "HassJob[(now: datetime), CoroutineType[Any, Any, None]]" is not assignable to type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" +     "HassJob[(now: datetime), CoroutineType[Any, Any, None]]" is not assignable to "HassJob[(datetime), Coroutine[Any, Any, None] | None]" +       Type parameter "_R_co@HassJob" is invariant, but "CoroutineType[Any, Any, None]" is not the same as "Coroutine[Any, Any, None] | None" +     Type "HassJob[(now: datetime), CoroutineType[Any, Any, None]]" is not assignable to type "(datetime) -> (Coroutine[Any, Any, None] | None)" (reportArgumentType) + /homeassistant/components/bluetooth/__init__.py:271:23 - error: Could not access item in TypedDict +   "address" is not a required key in "AdapterDetails", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/bluetooth/__init__.py:290:34 - error: Could not access item in TypedDict +   "address" is not a required key in "AdapterDetails", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/bluetooth/__init__.py:317:15 - error: Could not access item in TypedDict +   "address" is not a required key in "AdapterDetails", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/bluetooth/__init__.py:335:22 - error: Could not access item in TypedDict +   "manufacturer" is not a required key in "AdapterDetails", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/bluetooth/active_update_coordinator.py + /homeassistant/components/bluetooth/active_update_coordinator.py:12:19 - error: "BleakError" is not exported from module "bleak" +   Import from "bleak.exc" instead (reportPrivateImportUsage) +/homeassistant/components/bluetooth/active_update_processor.py + /homeassistant/components/bluetooth/active_update_processor.py:12:19 - error: "BleakError" is not exported from module "bleak" +   Import from "bleak.exc" instead (reportPrivateImportUsage) +/homeassistant/components/bluetooth/config_flow.py + /homeassistant/components/bluetooth/config_flow.py:59:40 - error: Could not access item in TypedDict +   "address" is not a required key in "AdapterDetails", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/bluetooth/config_flow.py:61:20 - error: Could not access item in TypedDict +   "manufacturer" is not a required key in "AdapterDetails", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/bluetooth/config_flow.py:85:40 - error: Could not access item in TypedDict +   "address" is not a required key in "AdapterDetails", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/bluetooth/config_flow.py:94:44 - error: Could not access item in TypedDict +   "address" is not a required key in "AdapterDetails", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/bluetooth/config_flow.py:96:24 - error: Could not access item in TypedDict +   "manufacturer" is not a required key in "AdapterDetails", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/bluetooth/config_flow.py:114:19 - error: Could not access item in TypedDict +   "address" is not a required key in "AdapterDetails", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/bluetooth/config_flow.py:136:23 - error: Could not access item in TypedDict +   "address" is not a required key in "AdapterDetails", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/bluetooth/config_flow.py:151:16 - error: Could not access item in TypedDict +   "address" is not a required key in "AdapterDetails", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/bluetooth/config_flow.py:155:44 - error: Could not access item in TypedDict +   "address" is not a required key in "AdapterDetails", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/bluetooth/manager.py + /homeassistant/components/bluetooth/manager.py:215:13 - error: No overloads for "update" match the provided arguments (reportCallIssue) + /homeassistant/components/bluetooth/manager.py:215:37 - error: Argument of type "BluetoothCallbackMatcher" cannot be assigned to parameter "__m" of type "Partial[BluetoothCallbackMatcherWithCallback]" in function "update" +   "callback" is an incompatible type +     Type "object" is not assignable to type "BluetoothCallback" (reportArgumentType) + /homeassistant/components/bluetooth/manager.py:218:23 - error: Could not access item in TypedDict +   "connectable" is not a required key in "BluetoothCallbackMatcherWithCallback", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/bluetooth/passive_update_coordinator.py + /homeassistant/components/bluetooth/passive_update_coordinator.py:104:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/bluetooth/passive_update_processor.py + /homeassistant/components/bluetooth/passive_update_processor.py:674:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/bluetooth/util.py + /homeassistant/components/bluetooth/util.py:43:18 - error: Could not access item in TypedDict +   "address" is not a required key in "AdapterDetails", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/bluetooth/util.py:102:48 - error: Could not access item in TypedDict +   "address" is not a required key in "AdapterDetails", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/bluetooth/util.py:104:20 - error: Could not access item in TypedDict +   "manufacturer" is not a required key in "AdapterDetails", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/bluetooth_le_tracker/device_tracker.py + /homeassistant/components/bluetooth_le_tracker/device_tracker.py:9:32 - error: "BleakError" is not exported from module "bleak" +   Import from "bleak.exc" instead (reportPrivateImportUsage) +/homeassistant/components/bluetooth_tracker/device_tracker.py + /homeassistant/components/bluetooth_tracker/device_tracker.py:11:6 - error: Import "bt_proximity" could not be resolved (reportMissingImports) + /homeassistant/components/bluetooth_tracker/device_tracker.py:63:28 - error: "discover_devices" is not a known attribute of module "bluetooth" (reportAttributeAccessIssue) + /homeassistant/components/bluetooth_tracker/device_tracker.py:185:26 - error: "BluetoothError" is not a known attribute of module "bluetooth" (reportAttributeAccessIssue) +/homeassistant/components/bmw_connected_drive/binary_sensor.py + /homeassistant/components/bmw_connected_drive/binary_sensor.py:10:38 - error: "MyBMWVehicle" is not exported from module "bimmer_connected.vehicle" +   Import from "bimmer_connected.vehicle.vehicle" instead (reportPrivateImportUsage) + /homeassistant/components/bmw_connected_drive/binary_sensor.py:217:7 - error: Base classes for class "BMWBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bmw_connected_drive/binary_sensor.py:231:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BMWBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bmw_connected_drive/binary_sensor.py:231:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "BMWBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/bmw_connected_drive/button.py + /homeassistant/components/bmw_connected_drive/button.py:11:38 - error: "MyBMWVehicle" is not exported from module "bimmer_connected.vehicle" +   Import from "bimmer_connected.vehicle.vehicle" instead (reportPrivateImportUsage) + /homeassistant/components/bmw_connected_drive/button.py:92:7 - error: Base classes for class "BMWButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bmw_connected_drive/button.py:105:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BMWButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bmw_connected_drive/button.py:105:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "BMWButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/bmw_connected_drive/device_tracker.py + /homeassistant/components/bmw_connected_drive/device_tracker.py:8:38 - error: "MyBMWVehicle" is not exported from module "bimmer_connected.vehicle" +   Import from "bimmer_connected.vehicle.vehicle" instead (reportPrivateImportUsage) + /homeassistant/components/bmw_connected_drive/device_tracker.py:47:7 - error: Base classes for class "BMWDeviceTracker" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bmw_connected_drive/device_tracker.py:64:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bmw_connected_drive/device_tracker.py:69:9 - error: "latitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bmw_connected_drive/device_tracker.py:79:9 - error: "longitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/bmw_connected_drive/diagnostics.py + /homeassistant/components/bmw_connected_drive/diagnostics.py:22:42 - error: "MyBMWVehicle" is not exported from module "bimmer_connected.vehicle" +   Import from "bimmer_connected.vehicle.vehicle" instead (reportPrivateImportUsage) +/homeassistant/components/bmw_connected_drive/entity.py + /homeassistant/components/bmw_connected_drive/entity.py:5:38 - error: "MyBMWVehicle" is not exported from module "bimmer_connected.vehicle" +   Import from "bimmer_connected.vehicle.vehicle" instead (reportPrivateImportUsage) +/homeassistant/components/bmw_connected_drive/lock.py + /homeassistant/components/bmw_connected_drive/lock.py:9:38 - error: "MyBMWVehicle" is not exported from module "bimmer_connected.vehicle" +   Import from "bimmer_connected.vehicle.vehicle" instead (reportPrivateImportUsage) + /homeassistant/components/bmw_connected_drive/lock.py:42:7 - error: Base classes for class "BMWLock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/bmw_connected_drive/notify.py + /homeassistant/components/bmw_connected_drive/notify.py:9:38 - error: "MyBMWVehicle" is not exported from module "bimmer_connected.vehicle" +   Import from "bimmer_connected.vehicle.vehicle" instead (reportPrivateImportUsage) +/homeassistant/components/bmw_connected_drive/number.py + /homeassistant/components/bmw_connected_drive/number.py:9:38 - error: "MyBMWVehicle" is not exported from module "bimmer_connected.vehicle" +   Import from "bimmer_connected.vehicle.vehicle" instead (reportPrivateImportUsage) + /homeassistant/components/bmw_connected_drive/number.py:80:7 - error: Base classes for class "BMWNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bmw_connected_drive/number.py:93:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BMWNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bmw_connected_drive/number.py:93:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "BMWNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bmw_connected_drive/number.py:97:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/bmw_connected_drive/select.py + /homeassistant/components/bmw_connected_drive/select.py:9:38 - error: "MyBMWVehicle" is not exported from module "bimmer_connected.vehicle" +   Import from "bimmer_connected.vehicle.vehicle" instead (reportPrivateImportUsage) + /homeassistant/components/bmw_connected_drive/select.py:87:7 - error: Base classes for class "BMWSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bmw_connected_drive/select.py:100:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BMWSelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bmw_connected_drive/select.py:100:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "BMWSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/bmw_connected_drive/sensor.py + /homeassistant/components/bmw_connected_drive/sensor.py:11:38 - error: "MyBMWVehicle" is not exported from module "bimmer_connected.vehicle" +   Import from "bimmer_connected.vehicle.vehicle" instead (reportPrivateImportUsage) + /homeassistant/components/bmw_connected_drive/sensor.py:208:7 - error: Base classes for class "BMWSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bmw_connected_drive/sensor.py:221:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BMWSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bmw_connected_drive/sensor.py:221:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "BMWSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/bmw_connected_drive/switch.py + /homeassistant/components/bmw_connected_drive/switch.py:9:38 - error: "MyBMWVehicle" is not exported from module "bimmer_connected.vehicle" +   Import from "bimmer_connected.vehicle.vehicle" instead (reportPrivateImportUsage) + /homeassistant/components/bmw_connected_drive/switch.py:88:7 - error: Base classes for class "BMWSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bmw_connected_drive/switch.py:101:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BMWSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bmw_connected_drive/switch.py:101:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "BMWSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bmw_connected_drive/switch.py:105:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/bond/button.py + /homeassistant/components/bond/button.py:49:28 - error: Argument of type "Literal['TurnOn']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['TurnOn']" is not assignable to type "Action | None" +     "Literal['TurnOn']" is not assignable to "Action" +     "Literal['TurnOn']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:56:28 - error: Argument of type "Literal['TurnLightOn']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['TurnLightOn']" is not assignable to type "Action | None" +     "Literal['TurnLightOn']" is not assignable to "Action" +     "Literal['TurnLightOn']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:63:28 - error: Argument of type "Literal['SetBrightness']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetBrightness']" is not assignable to type "Action | None" +     "Literal['SetBrightness']" is not assignable to "Action" +     "Literal['SetBrightness']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:70:28 - error: Argument of type "Literal['SetBrightness']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetBrightness']" is not assignable to type "Action | None" +     "Literal['SetBrightness']" is not assignable to "Action" +     "Literal['SetBrightness']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:77:28 - error: Argument of type "Literal['TurnUpLightOn']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['TurnUpLightOn']" is not assignable to type "Action | None" +     "Literal['TurnUpLightOn']" is not assignable to "Action" +     "Literal['TurnUpLightOn']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:84:28 - error: Argument of type "Literal['TurnDownLightOn']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['TurnDownLightOn']" is not assignable to type "Action | None" +     "Literal['TurnDownLightOn']" is not assignable to "Action" +     "Literal['TurnDownLightOn']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:91:28 - error: Argument of type "Literal['SetBrightness']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetBrightness']" is not assignable to type "Action | None" +     "Literal['SetBrightness']" is not assignable to "Action" +     "Literal['SetBrightness']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:105:28 - error: Argument of type "Literal['SetUpLightBrightness']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetUpLightBrightness']" is not assignable to type "Action | None" +     "Literal['SetUpLightBrightness']" is not assignable to "Action" +     "Literal['SetUpLightBrightness']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:112:28 - error: Argument of type "Literal['SetDownLightBrightness']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetDownLightBrightness']" is not assignable to type "Action | None" +     "Literal['SetDownLightBrightness']" is not assignable to "Action" +     "Literal['SetDownLightBrightness']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:119:28 - error: Argument of type "Literal['SetBrightness']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetBrightness']" is not assignable to type "Action | None" +     "Literal['SetBrightness']" is not assignable to "Action" +     "Literal['SetBrightness']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:126:28 - error: Argument of type "Literal['SetBrightness']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetBrightness']" is not assignable to type "Action | None" +     "Literal['SetBrightness']" is not assignable to "Action" +     "Literal['SetBrightness']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:133:28 - error: Argument of type "Literal['SetUpLightBrightness']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetUpLightBrightness']" is not assignable to type "Action | None" +     "Literal['SetUpLightBrightness']" is not assignable to "Action" +     "Literal['SetUpLightBrightness']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:140:28 - error: Argument of type "Literal['SetUpLightBrightness']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetUpLightBrightness']" is not assignable to type "Action | None" +     "Literal['SetUpLightBrightness']" is not assignable to "Action" +     "Literal['SetUpLightBrightness']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:147:28 - error: Argument of type "Literal['SetDownLightBrightness']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetDownLightBrightness']" is not assignable to type "Action | None" +     "Literal['SetDownLightBrightness']" is not assignable to "Action" +     "Literal['SetDownLightBrightness']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:154:28 - error: Argument of type "Literal['SetDownLightBrightness']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetDownLightBrightness']" is not assignable to type "Action | None" +     "Literal['SetDownLightBrightness']" is not assignable to "Action" +     "Literal['SetDownLightBrightness']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:161:28 - error: Argument of type "Literal['SetUpLightBrightness']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetUpLightBrightness']" is not assignable to type "Action | None" +     "Literal['SetUpLightBrightness']" is not assignable to "Action" +     "Literal['SetUpLightBrightness']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:168:28 - error: Argument of type "Literal['SetDownLightBrightness']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetDownLightBrightness']" is not assignable to type "Action | None" +     "Literal['SetDownLightBrightness']" is not assignable to "Action" +     "Literal['SetDownLightBrightness']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:175:28 - error: Argument of type "Literal['SetBrightness']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetBrightness']" is not assignable to type "Action | None" +     "Literal['SetBrightness']" is not assignable to "Action" +     "Literal['SetBrightness']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:182:28 - error: Argument of type "Literal['SetSpeed']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetSpeed']" is not assignable to type "Action | None" +     "Literal['SetSpeed']" is not assignable to "Action" +     "Literal['SetSpeed']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:189:28 - error: Argument of type "Literal['SetSpeed']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetSpeed']" is not assignable to type "Action | None" +     "Literal['SetSpeed']" is not assignable to "Action" +     "Literal['SetSpeed']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:196:28 - error: Argument of type "Literal['SetDirection']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetDirection']" is not assignable to type "Action | None" +     "Literal['SetDirection']" is not assignable to "Action" +     "Literal['SetDirection']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:230:28 - error: Argument of type "Literal['Open']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['Open']" is not assignable to type "Action | None" +     "Literal['Open']" is not assignable to "Action" +     "Literal['Open']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:237:28 - error: Argument of type "Literal['SetPosition']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetPosition']" is not assignable to type "Action | None" +     "Literal['SetPosition']" is not assignable to "Action" +     "Literal['SetPosition']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:244:28 - error: Argument of type "Literal['SetPosition']" cannot be assigned to parameter "mutually_exclusive" of type "Action | None" in function "__init__" +   Type "Literal['SetPosition']" is not assignable to type "Action | None" +     "Literal['SetPosition']" is not assignable to "Action" +     "Literal['SetPosition']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bond/button.py:280:42 - error: Argument of type "Action" cannot be assigned to parameter "action" of type "str" in function "has_action" +   "Action" is not assignable to "str" (reportArgumentType) + /homeassistant/components/bond/button.py:293:7 - error: Base classes for class "BondButtonEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/button.py:305:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BondButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bond/button.py:305:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "BondButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/bond/cover.py + /homeassistant/components/bond/cover.py:48:7 - error: Base classes for class "BondCover" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/bond/entity.py + /homeassistant/components/bond/entity.py:78:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bond/entity.py:192:13 - error: Argument of type "HassJob[(now: datetime), None]" cannot be assigned to parameter "action" of type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" in function "async_call_later" +   Type "HassJob[(now: datetime), None]" is not assignable to type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" +     "HassJob[(now: datetime), None]" is not assignable to "HassJob[(datetime), Coroutine[Any, Any, None] | None]" +       Type parameter "_R_co@HassJob" is invariant, but "None" is not the same as "Coroutine[Any, Any, None] | None" +     Type "HassJob[(now: datetime), None]" is not assignable to type "(datetime) -> (Coroutine[Any, Any, None] | None)" (reportArgumentType) +/homeassistant/components/bond/fan.py + /homeassistant/components/bond/fan.py:61:7 - error: Base classes for class "BondFan" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/fan.py:95:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bond/fan.py:104:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) + /homeassistant/components/bond/fan.py:109:9 - error: "current_direction" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/bond/light.py + /homeassistant/components/bond/light.py:118:7 - error: Base classes for class "BondBaseLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:155:7 - error: Base classes for class "BondLight" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:155:7 - error: Base classes for class "BondLight" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:155:7 - error: Base classes for class "BondLight" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:155:7 - error: Base classes for class "BondLight" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:155:7 - error: Base classes for class "BondLight" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:155:7 - error: Base classes for class "BondLight" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:155:7 - error: Base classes for class "BondLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:228:7 - error: Base classes for class "BondDownLight" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:228:7 - error: Base classes for class "BondDownLight" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:228:7 - error: Base classes for class "BondDownLight" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:228:7 - error: Base classes for class "BondDownLight" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:228:7 - error: Base classes for class "BondDownLight" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:228:7 - error: Base classes for class "BondDownLight" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:228:7 - error: Base classes for class "BondDownLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:244:7 - error: Base classes for class "BondUpLight" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:244:7 - error: Base classes for class "BondUpLight" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:244:7 - error: Base classes for class "BondUpLight" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:244:7 - error: Base classes for class "BondUpLight" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:244:7 - error: Base classes for class "BondUpLight" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:244:7 - error: Base classes for class "BondUpLight" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:244:7 - error: Base classes for class "BondUpLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bond/light.py:260:7 - error: Base classes for class "BondFireplace" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/bond/switch.py + /homeassistant/components/bond/switch.py:43:7 - error: Base classes for class "BondSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/bosch_alarm/alarm_control_panel.py + /homeassistant/components/bosch_alarm/alarm_control_panel.py:40:7 - error: Base classes for class "AreaAlarmControlPanel" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_alarm/alarm_control_panel.py:57:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/bosch_alarm/binary_sensor.py + /homeassistant/components/bosch_alarm/binary_sensor.py:158:7 - error: Base classes for class "PanelFaultsSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_alarm/binary_sensor.py:172:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BoschAlarmFaultEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_alarm/binary_sensor.py:172:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "BoschAlarmFaultEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_alarm/binary_sensor.py:177:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_alarm/binary_sensor.py:182:7 - error: Base classes for class "AreaReadyToArmSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_alarm/binary_sensor.py:198:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_alarm/binary_sensor.py:207:7 - error: Base classes for class "PointSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_alarm/binary_sensor.py:218:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/bosch_alarm/config_flow.py + /homeassistant/components/bosch_alarm/config_flow.py:99:9 - error: Method "is_matching" overrides class "ConfigFlow" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "ConfigFlow", override parameter is type "BoschAlarmConfigFlow" +     "ConfigFlow" is not assignable to "BoschAlarmConfigFlow" (reportIncompatibleMethodOverride) +/homeassistant/components/bosch_alarm/entity.py + /homeassistant/components/bosch_alarm/entity.py:34:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/bosch_alarm/sensor.py + /homeassistant/components/bosch_alarm/sensor.py:95:7 - error: Base classes for class "BoschAreaSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_alarm/sensor.py:116:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BoschAlarmSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_alarm/sensor.py:116:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "BoschAlarmSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_alarm/sensor.py:120:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/bosch_alarm/switch.py + /homeassistant/components/bosch_alarm/switch.py:88:7 - error: Base classes for class "PanelDoorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_alarm/switch.py:102:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BoschAlarmSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_alarm/switch.py:102:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "BoschAlarmSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_alarm/switch.py:106:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_alarm/switch.py:129:7 - error: Base classes for class "PanelOutputEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_alarm/switch.py:140:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/bosch_shc/binary_sensor.py + /homeassistant/components/bosch_shc/binary_sensor.py:33:30 - error: Operator "+" not supported for types "Sequence[SHCShutterContact]" and "Sequence[SHCShutterContact2]" (reportOperatorIssue) + /homeassistant/components/bosch_shc/binary_sensor.py:46:13 - error: Operator "+" not supported for types "Sequence[SHCMotionDetector]" and "Sequence[SHCShutterContact]" (reportOperatorIssue) + /homeassistant/components/bosch_shc/binary_sensor.py:61:7 - error: Base classes for class "ShutterContactSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/binary_sensor.py:76:26 - error: Cannot access attribute "device_class" for class "SHCDevice" +   Attribute "device_class" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/binary_sensor.py:76:26 - error: Cannot access attribute "device_class" for class "SHCIntrusionSystem" +   Attribute "device_class" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/binary_sensor.py:80:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/binary_sensor.py:85:7 - error: Base classes for class "BatterySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/binary_sensor.py:96:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/bosch_shc/cover.py + /homeassistant/components/bosch_shc/cover.py:38:7 - error: Base classes for class "ShutterControlCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/cover.py:51:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/cover.py:53:35 - error: Cannot access attribute "level" for class "SHCDevice" +   Attribute "level" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/cover.py:53:35 - error: Cannot access attribute "level" for class "SHCIntrusionSystem" +   Attribute "level" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/cover.py:57:22 - error: Cannot access attribute "stop" for class "SHCDevice" +   Attribute "stop" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/cover.py:57:22 - error: Cannot access attribute "stop" for class "SHCIntrusionSystem" +   Attribute "stop" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/cover.py:60:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/cover.py:65:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/cover.py:68:26 - error: Cannot access attribute "operation_state" for class "SHCDevice" +   Attribute "operation_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/cover.py:68:26 - error: Cannot access attribute "operation_state" for class "SHCIntrusionSystem" +   Attribute "operation_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/cover.py:73:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/cover.py:76:26 - error: Cannot access attribute "operation_state" for class "SHCDevice" +   Attribute "operation_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/cover.py:76:26 - error: Cannot access attribute "operation_state" for class "SHCIntrusionSystem" +   Attribute "operation_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/cover.py:82:22 - error: Cannot assign to attribute "level" for class "SHCDevice" +   Attribute "level" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/cover.py:82:22 - error: Cannot assign to attribute "level" for class "SHCIntrusionSystem" +   Attribute "level" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/cover.py:86:22 - error: Cannot assign to attribute "level" for class "SHCDevice" +   Attribute "level" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/cover.py:86:22 - error: Cannot assign to attribute "level" for class "SHCIntrusionSystem" +   Attribute "level" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/cover.py:91:22 - error: Cannot assign to attribute "level" for class "SHCDevice" +   Attribute "level" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/cover.py:91:22 - error: Cannot assign to attribute "level" for class "SHCIntrusionSystem" +   Attribute "level" is unknown (reportAttributeAccessIssue) +/homeassistant/components/bosch_shc/entity.py + /homeassistant/components/bosch_shc/entity.py:83:37 - error: Cannot access attribute "device_services" for class "SHCIntrusionSystem" +   Attribute "device_services" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/entity.py:89:37 - error: Cannot access attribute "device_services" for class "SHCIntrusionSystem" +   Attribute "device_services" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/entity.py:93:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/entity.py:95:29 - error: Cannot access attribute "status" for class "SHCIntrusionSystem" +   Attribute "status" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/entity.py:119:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/entity.py:121:29 - error: Cannot access attribute "system_availability" for class "SHCDevice" +   Attribute "system_availability" is unknown (reportAttributeAccessIssue) +/homeassistant/components/bosch_shc/sensor.py + /homeassistant/components/bosch_shc/sensor.py:58:40 - error: Cannot access attribute "temperature" for class "SHCDevice" +   Attribute "temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/sensor.py:64:40 - error: Cannot access attribute "humidity" for class "SHCDevice" +   Attribute "humidity" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/sensor.py:70:40 - error: Cannot access attribute "purity" for class "SHCDevice" +   Attribute "purity" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/sensor.py:75:40 - error: Cannot access attribute "combined_rating" for class "SHCDevice" +   Attribute "combined_rating" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/sensor.py:77:42 - error: Cannot access attribute "description" for class "SHCDevice" +   Attribute "description" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/sensor.py:83:40 - error: Cannot access attribute "temperature_rating" for class "SHCDevice" +   Attribute "temperature_rating" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/sensor.py:88:40 - error: Cannot access attribute "communicationquality" for class "SHCDevice" +   Attribute "communicationquality" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/sensor.py:93:40 - error: Cannot access attribute "humidity_rating" for class "SHCDevice" +   Attribute "humidity_rating" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/sensor.py:98:40 - error: Cannot access attribute "purity_rating" for class "SHCDevice" +   Attribute "purity_rating" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/sensor.py:104:40 - error: Cannot access attribute "powerconsumption" for class "SHCDevice" +   Attribute "powerconsumption" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/sensor.py:111:40 - error: Cannot access attribute "energyconsumption" for class "SHCDevice" +   Attribute "energyconsumption" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/sensor.py:118:40 - error: Cannot access attribute "position" for class "SHCDevice" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/sensor.py:120:42 - error: Cannot access attribute "valvestate" for class "SHCDevice" +   Attribute "valvestate" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/sensor.py:182:23 - error: Operator "+" not supported for types "Sequence[SHCSmartPlug]" and "Sequence[SHCLightSwitchBSM]" (reportOperatorIssue) + /homeassistant/components/bosch_shc/sensor.py:202:7 - error: Base classes for class "SHCSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/sensor.py:216:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SHCSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/sensor.py:216:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SHCSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/sensor.py:220:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/sensor.py:222:49 - error: Argument of type "SHCDevice | SHCIntrusionSystem" cannot be assigned to parameter of type "SHCDevice" +   Type "SHCDevice | SHCIntrusionSystem" is not assignable to type "SHCDevice" +     "SHCIntrusionSystem" is not assignable to "SHCDevice" (reportArgumentType) + /homeassistant/components/bosch_shc/sensor.py:225:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/sensor.py:228:58 - error: Argument of type "SHCDevice | SHCIntrusionSystem" cannot be assigned to parameter of type "SHCDevice" +   Type "SHCDevice | SHCIntrusionSystem" is not assignable to type "SHCDevice" +     "SHCIntrusionSystem" is not assignable to "SHCDevice" (reportArgumentType) +/homeassistant/components/bosch_shc/switch.py + /homeassistant/components/bosch_shc/switch.py:45:18 - error: Argument of type "Literal[State.ON]" cannot be assigned to parameter "on_value" of type "StateType" in function "__init__" +   Type "Literal[State.ON]" is not assignable to type "StateType" +     "Literal[State.ON]" is not assignable to "str" +     "Literal[State.ON]" is not assignable to "int" +     "Literal[State.ON]" is not assignable to "float" +     "Literal[State.ON]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bosch_shc/switch.py:52:18 - error: Argument of type "Literal[State.ON]" cannot be assigned to parameter "on_value" of type "StateType" in function "__init__" +   Type "Literal[State.ON]" is not assignable to type "StateType" +     "Literal[State.ON]" is not assignable to "str" +     "Literal[State.ON]" is not assignable to "int" +     "Literal[State.ON]" is not assignable to "float" +     "Literal[State.ON]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bosch_shc/switch.py:59:18 - error: Argument of type "Literal[State.ON]" cannot be assigned to parameter "on_value" of type "StateType" in function "__init__" +   Type "Literal[State.ON]" is not assignable to type "StateType" +     "Literal[State.ON]" is not assignable to "str" +     "Literal[State.ON]" is not assignable to "int" +     "Literal[State.ON]" is not assignable to "float" +     "Literal[State.ON]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bosch_shc/switch.py:66:18 - error: Argument of type "Literal[State.ON]" cannot be assigned to parameter "on_value" of type "StateType" in function "__init__" +   Type "Literal[State.ON]" is not assignable to type "StateType" +     "Literal[State.ON]" is not assignable to "str" +     "Literal[State.ON]" is not assignable to "int" +     "Literal[State.ON]" is not assignable to "float" +     "Literal[State.ON]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bosch_shc/switch.py:73:18 - error: Argument of type "Literal[State.DISABLED]" cannot be assigned to parameter "on_value" of type "StateType" in function "__init__" +   Type "Literal[State.DISABLED]" is not assignable to type "StateType" +     "Literal[State.DISABLED]" is not assignable to "str" +     "Literal[State.DISABLED]" is not assignable to "int" +     "Literal[State.DISABLED]" is not assignable to "float" +     "Literal[State.DISABLED]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/bosch_shc/switch.py:149:7 - error: Base classes for class "SHCSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/switch.py:163:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SHCSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/switch.py:163:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "SHCSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/switch.py:166:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/switch.py:182:9 - error: "should_poll" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/switch.py:188:22 - error: Cannot access attribute "update" for class "SHCIntrusionSystem" +   Attribute "update" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/switch.py:191:7 - error: Base classes for class "SHCRoutingSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/switch.py:203:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bosch_shc/switch.py:205:29 - error: Cannot access attribute "routing" for class "SHCDevice" +   Attribute "routing" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/switch.py:205:29 - error: Cannot access attribute "routing" for class "SHCIntrusionSystem" +   Attribute "routing" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/switch.py:209:22 - error: Cannot assign to attribute "routing" for class "SHCDevice" +   Attribute "routing" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/switch.py:209:22 - error: Cannot assign to attribute "routing" for class "SHCIntrusionSystem" +   Attribute "routing" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/switch.py:213:22 - error: Cannot assign to attribute "routing" for class "SHCDevice" +   Attribute "routing" is unknown (reportAttributeAccessIssue) + /homeassistant/components/bosch_shc/switch.py:213:22 - error: Cannot assign to attribute "routing" for class "SHCIntrusionSystem" +   Attribute "routing" is unknown (reportAttributeAccessIssue) +/homeassistant/components/braviatv/__init__.py + /homeassistant/components/braviatv/__init__.py:8:22 - error: "BraviaClient" is not exported from module "pybravia" +   Import from "pybravia.client" instead (reportPrivateImportUsage) +/homeassistant/components/braviatv/button.py + /homeassistant/components/braviatv/button.py:60:7 - error: Base classes for class "BraviaTVButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/braviatv/button.py:74:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BraviaTVButtonDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/braviatv/button.py:74:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "BraviaTVButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/braviatv/config_flow.py + /homeassistant/components/braviatv/config_flow.py:10:22 - error: "BraviaAuthError" is not exported from module "pybravia" +   Import from "pybravia.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/braviatv/config_flow.py:10:39 - error: "BraviaClient" is not exported from module "pybravia" +   Import from "pybravia.client" instead (reportPrivateImportUsage) + /homeassistant/components/braviatv/config_flow.py:10:53 - error: "BraviaError" is not exported from module "pybravia" +   Import from "pybravia.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/braviatv/config_flow.py:10:66 - error: "BraviaNotSupported" is not exported from module "pybravia" +   Import from "pybravia.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/braviatv/coordinator.py + /homeassistant/components/braviatv/coordinator.py:12:5 - error: "BraviaAuthError" is not exported from module "pybravia" +   Import from "pybravia.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/braviatv/coordinator.py:13:5 - error: "BraviaClient" is not exported from module "pybravia" +   Import from "pybravia.client" instead (reportPrivateImportUsage) + /homeassistant/components/braviatv/coordinator.py:14:5 - error: "BraviaConnectionError" is not exported from module "pybravia" +   Import from "pybravia.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/braviatv/coordinator.py:15:5 - error: "BraviaConnectionTimeout" is not exported from module "pybravia" +   Import from "pybravia.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/braviatv/coordinator.py:16:5 - error: "BraviaError" is not exported from module "pybravia" +   Import from "pybravia.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/braviatv/coordinator.py:17:5 - error: "BraviaNotFound" is not exported from module "pybravia" +   Import from "pybravia.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/braviatv/coordinator.py:18:5 - error: "BraviaTurnedOff" is not exported from module "pybravia" +   Import from "pybravia.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/braviatv/media_player.py + /homeassistant/components/braviatv/media_player.py:40:7 - error: Base classes for class "BraviaTVMediaPlayer" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/braviatv/media_player.py:63:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/braviatv/media_player.py:63:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/braviatv/media_player.py:70:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/braviatv/media_player.py:75:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/braviatv/media_player.py:80:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/braviatv/media_player.py:85:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/braviatv/media_player.py:90:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/braviatv/media_player.py:95:9 - error: "media_channel" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/braviatv/media_player.py:100:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/braviatv/media_player.py:105:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/braviatv/media_player.py:110:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/braviatv/media_player.py:115:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/braviatv/media_player.py:120:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/braviatv/remote.py + /homeassistant/components/braviatv/remote.py:30:7 - error: Base classes for class "BraviaTVRemote" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/braviatv/remote.py:36:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/bring/event.py + /homeassistant/components/bring/event.py:50:7 - error: Base classes for class "BringEventEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bring/event.py:97:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/bring/sensor.py + /homeassistant/components/bring/sensor.py:116:7 - error: Base classes for class "BringSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bring/sensor.py:130:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BringSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bring/sensor.py:130:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "BringSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bring/sensor.py:134:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/bring/todo.py + /homeassistant/components/bring/todo.py:80:7 - error: Base classes for class "BringTodoListEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bring/todo.py:101:9 - error: "todo_items" overrides symbol of same name in class "TodoListEntity" +   "property" is not assignable to "cached_property[list[TodoItem] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/broadlink/climate.py + /homeassistant/components/broadlink/climate.py:43:7 - error: Base classes for class "BroadlinkThermostat" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/broadlink/climate.py:43:7 - error: Base classes for class "BroadlinkThermostat" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/broadlink/device.py + /homeassistant/components/broadlink/device.py:109:20 - error: Cannot assign to attribute "api" for class "BroadlinkDevice[_ApiT@BroadlinkDevice]*" +   Type "Device" is not assignable to type "_ApiT@BroadlinkDevice" (reportAttributeAccessIssue) +/homeassistant/components/broadlink/entity.py + /homeassistant/components/broadlink/entity.py:52:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/broadlink/entity.py:57:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/broadlink/light.py + /homeassistant/components/broadlink/light.py:44:7 - error: Base classes for class "BroadlinkLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/broadlink/light.py:44:7 - error: Base classes for class "BroadlinkLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/broadlink/remote.py + /homeassistant/components/broadlink/remote.py:107:7 - error: Base classes for class "BroadlinkRemote" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/broadlink/remote.py:107:7 - error: Base classes for class "BroadlinkRemote" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/broadlink/remote.py:107:7 - error: Base classes for class "BroadlinkRemote" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/broadlink/remote.py:107:7 - error: Base classes for class "BroadlinkRemote" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/broadlink/remote.py:107:7 - error: Base classes for class "BroadlinkRemote" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/broadlink/remote.py:107:7 - error: Base classes for class "BroadlinkRemote" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/broadlink/remote.py:245:20 - error: Argument of type "int" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   "int" is incompatible with protocol "Sized" +     "__len__" is not present (reportArgumentType) + /homeassistant/components/broadlink/remote.py:246:24 - error: "__getitem__" method not defined on type "int" (reportIndexIssue) + /homeassistant/components/broadlink/remote.py:248:24 - error: "__getitem__" method not defined on type "int" (reportIndexIssue) + /homeassistant/components/broadlink/remote.py:256:20 - error: Argument of type "int" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   "int" is incompatible with protocol "Sized" +     "__len__" is not present (reportArgumentType) +/homeassistant/components/broadlink/select.py + /homeassistant/components/broadlink/select.py:38:7 - error: Base classes for class "BroadlinkDayOfWeek" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/broadlink/select.py:38:7 - error: Base classes for class "BroadlinkDayOfWeek" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/broadlink/sensor.py + /homeassistant/components/broadlink/sensor.py:127:7 - error: Base classes for class "BroadlinkSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/broadlink/sensor.py:127:7 - error: Base classes for class "BroadlinkSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/broadlink/switch.py + /homeassistant/components/broadlink/switch.py:141:7 - error: Base classes for class "BroadlinkSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/broadlink/switch.py:141:7 - error: Base classes for class "BroadlinkSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/broadlink/switch.py:141:7 - error: Base classes for class "BroadlinkSwitch" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/broadlink/switch.py:141:7 - error: Base classes for class "BroadlinkSwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/broadlink/switch.py:141:7 - error: Base classes for class "BroadlinkSwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/broadlink/switch.py:141:7 - error: Base classes for class "BroadlinkSwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/broadlink/time.py + /homeassistant/components/broadlink/time.py:29:7 - error: Base classes for class "BroadlinkTime" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/broadlink/time.py:29:7 - error: Base classes for class "BroadlinkTime" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/broadlink/updater.py + /homeassistant/components/broadlink/updater.py:200:67 - error: Cannot access attribute "get_energy" for class "sp2" +   Attribute "get_energy" is unknown (reportAttributeAccessIssue) +/homeassistant/components/brother/__init__.py + /homeassistant/components/brother/__init__.py:7:30 - error: "SnmpError" is not exported from module "brother" +   Import from "brother.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/brother/config_flow.py + /homeassistant/components/brother/config_flow.py:7:30 - error: "SnmpError" is not exported from module "brother" +   Import from "brother.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/brother/config_flow.py:7:41 - error: "UnsupportedModelError" is not exported from module "brother" +   Import from "brother.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/brother/coordinator.py + /homeassistant/components/brother/coordinator.py:6:30 - error: "BrotherSensors" is not exported from module "brother" +   Import from "brother.model" instead (reportPrivateImportUsage) + /homeassistant/components/brother/coordinator.py:6:46 - error: "SnmpError" is not exported from module "brother" +   Import from "brother.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/brother/coordinator.py:6:57 - error: "UnsupportedModelError" is not exported from module "brother" +   Import from "brother.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/brother/sensor.py + /homeassistant/components/brother/sensor.py:10:21 - error: "BrotherSensors" is not exported from module "brother" +   Import from "brother.model" instead (reportPrivateImportUsage) + /homeassistant/components/brother/sensor.py:335:7 - error: Base classes for class "BrotherPrinterSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/brother/sensor.py:350:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BrotherSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/brother/sensor.py:350:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "BrotherSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/brottsplatskartan/sensor.py + /homeassistant/components/brottsplatskartan/sensor.py:68:59 - error: Type "list[Unknown] | bool" is not assignable to declared type "dict[str, list[Unknown]] | Literal[False]" +   Type "list[Unknown] | bool" is not assignable to type "dict[str, list[Unknown]] | Literal[False]" +     Type "bool" is not assignable to type "dict[str, list[Unknown]] | Literal[False]" +       "bool" is not assignable to "dict[str, list[Unknown]]" +       "bool" is not assignable to type "Literal[False]" (reportAssignmentType) +/homeassistant/components/browser/__init__.py + /homeassistant/components/browser/__init__.py:20:59 - error: Argument missing for parameter "v" (reportCallIssue) +/homeassistant/components/brunt/cover.py + /homeassistant/components/brunt/cover.py:48:7 - error: Base classes for class "BruntDevice" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/brunt/cover.py:96:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/brunt/cover.py:122:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/brunt/cover.py:127:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/brunt/cover.py:132:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/brunt/cover.py:139:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/brunt/cover.py:159:37 - error: Argument of type "str | None" cannot be assigned to parameter "thing_uri" of type "str" in function "async_change_request_position" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/brunt/cover.py:173:16 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/bryant_evolution/climate.py + /homeassistant/components/bryant_evolution/climate.py:48:13 - error: Argument of type "BryantEvolutionLocalClient | None" cannot be assigned to parameter "client" of type "BryantEvolutionLocalClient" in function "__init__" +   Type "BryantEvolutionLocalClient | None" is not assignable to type "BryantEvolutionLocalClient" +     "None" is not assignable to "BryantEvolutionLocalClient" (reportArgumentType) + /homeassistant/components/bryant_evolution/climate.py:193:38 - error: Argument of type "dict[str, Tuple[str, bool] | str]" cannot be assigned to parameter "translation_placeholders" of type "dict[str, str] | None" in function "__init__" +   Type "dict[str, Tuple[str, bool] | str]" is not assignable to type "dict[str, str] | None" +     "dict[str, Tuple[str, bool] | str]" is not assignable to "dict[str, str]" +       Type parameter "_VT@dict" is invariant, but "Tuple[str, bool] | str" is not the same as "str" +       Consider switching from "dict" to "Mapping" which is covariant in the value type +     "dict[str, Tuple[str, bool] | str]" is not assignable to "None" (reportArgumentType) +/homeassistant/components/bsblan/climate.py + /homeassistant/components/bsblan/climate.py:53:7 - error: Base classes for class "BSBLANClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bsblan/climate.py:85:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bsblan/climate.py:92:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bsblan/climate.py:99:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bsblan/climate.py:106:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/bsblan/sensor.py + /homeassistant/components/bsblan/sensor.py:83:7 - error: Base classes for class "BSBLanSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bsblan/sensor.py:95:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BSBLanSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bsblan/sensor.py:95:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "BSBLanSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/bsblan/sensor.py:100:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/bsblan/water_heater.py + /homeassistant/components/bsblan/water_heater.py:59:7 - error: Base classes for class "BSBLANWaterHeater" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/bsblan/water_heater.py:109:9 - error: "current_operation" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bsblan/water_heater.py:117:9 - error: "current_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bsblan/water_heater.py:124:9 - error: "target_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/bt_home_hub_5/device_tracker.py + /homeassistant/components/bt_home_hub_5/device_tracker.py:7:8 - error: Import "bthomehub5_devicelist" could not be resolved (reportMissingImports) +/homeassistant/components/bt_smarthub/device_tracker.py + /homeassistant/components/bt_smarthub/device_tracker.py:8:6 - error: Import "btsmarthub_devicelist" could not be resolved (reportMissingImports) +/homeassistant/components/bthome/__init__.py + /homeassistant/components/bthome/__init__.py:138:34 - error: Argument of type "set[Never]" cannot be assigned to parameter "discovered_event_classes" of type "set[str]" in function "__init__" +   "set[Never]" is not assignable to "set[str]" +     Type parameter "_T@set" is invariant, but "Never" is not the same as "str" +     Consider switching from "set" to "Container" which is covariant (reportArgumentType) +/homeassistant/components/bthome/binary_sensor.py + /homeassistant/components/bthome/binary_sensor.py:194:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/bthome/binary_sensor.py:199:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/bthome/config_flow.py + /homeassistant/components/bthome/config_flow.py:97:38 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/bthome/config_flow.py:112:38 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/bthome/config_flow.py:188:19 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/bthome/coordinator.py + /homeassistant/components/bthome/coordinator.py:56:5 - error: "coordinator" overrides symbol of same name in class "PassiveBluetoothDataProcessor" +   Variable is mutable so its type is invariant +     Override type "BTHomePassiveBluetoothProcessorCoordinator" is not the same as base type "PassiveBluetoothProcessorCoordinator[SensorUpdate]" (reportIncompatibleVariableOverride) +/homeassistant/components/bthome/sensor.py + /homeassistant/components/bthome/sensor.py:469:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/bthome/sensor.py:474:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/button/__init__.py + /homeassistant/components/button/__init__.py:90:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/button/__init__.py:92:5 - error: "_attr_device_class" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ButtonDeviceClass | None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/button/__init__.py:93:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) +/homeassistant/components/caldav/calendar.py + /homeassistant/components/caldav/calendar.py:61:33 - error: Argument missing for parameter "v" (reportCallIssue) + /homeassistant/components/caldav/calendar.py:181:7 - error: Base classes for class "WebDavCalendarEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/caldav/coordinator.py + /homeassistant/components/caldav/coordinator.py:74:37 - error: Cannot access attribute "vevent" for class "VBase" +   Attribute "vevent" is unknown (reportAttributeAccessIssue) + /homeassistant/components/caldav/coordinator.py:114:37 - error: Cannot access attribute "vevent" for class "VBase" +   Attribute "vevent" is unknown (reportAttributeAccessIssue) + /homeassistant/components/caldav/coordinator.py:136:28 - error: Cannot access attribute "vevent" for class "VBase" +   Attribute "vevent" is unknown (reportAttributeAccessIssue) +/homeassistant/components/caldav/todo.py + /homeassistant/components/caldav/todo.py:69:43 - error: Cannot access attribute "vtodo" for class "VBase" +   Attribute "vtodo" is unknown (reportAttributeAccessIssue) +/homeassistant/components/calendar/__init__.py + /homeassistant/components/calendar/__init__.py:513:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "CalendarEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/calendar/__init__.py:526:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/calendar/__init__.py:542:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/cambridge_audio/media_player.py + /homeassistant/components/cambridge_audio/media_player.py:89:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/media_player.py:89:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/media_player.py:106:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/media_player.py:106:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/media_player.py:124:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/media_player.py:129:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/media_player.py:141:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/media_player.py:146:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/media_player.py:157:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/media_player.py:162:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/media_player.py:167:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/media_player.py:172:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/media_player.py:177:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/media_player.py:182:9 - error: "media_channel" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/media_player.py:187:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/media_player.py:192:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/media_player.py:198:9 - error: "shuffle" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/media_player.py:203:9 - error: "repeat" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[RepeatMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/media_player.py:211:15 - error: Method "async_media_play_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/cambridge_audio/media_player.py:216:15 - error: Method "async_media_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/cambridge_audio/media_player.py:228:15 - error: Method "async_media_stop" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/cambridge_audio/media_player.py:233:15 - error: Method "async_media_play" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/cambridge_audio/media_player.py:245:15 - error: Method "async_media_next_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/cambridge_audio/media_player.py:250:15 - error: Method "async_media_previous_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/cambridge_audio/media_player.py:255:15 - error: Method "async_select_source" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/cambridge_audio/media_player.py:263:15 - error: Method "async_turn_on" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/cambridge_audio/media_player.py:268:15 - error: Method "async_turn_off" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/cambridge_audio/media_player.py:273:15 - error: Method "async_volume_up" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/cambridge_audio/media_player.py:278:15 - error: Method "async_volume_down" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/cambridge_audio/media_player.py:283:15 - error: Method "async_set_volume_level" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/cambridge_audio/media_player.py:288:15 - error: Method "async_mute_volume" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/cambridge_audio/media_player.py:293:15 - error: Method "async_media_seek" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/cambridge_audio/media_player.py:298:15 - error: Method "async_set_shuffle" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/cambridge_audio/media_player.py:306:15 - error: Method "async_set_repeat" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/cambridge_audio/media_player.py:314:15 - error: Method "async_play_media" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/cambridge_audio/select.py + /homeassistant/components/cambridge_audio/select.py:124:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "CambridgeAudioSelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/select.py:124:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "CambridgeAudioSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/select.py:131:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/select.py:136:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/cambridge_audio/switch.py + /homeassistant/components/cambridge_audio/switch.py:70:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "CambridgeAudioSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/switch.py:70:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "CambridgeAudioSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/switch.py:74:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cambridge_audio/switch.py:79:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/cambridge_audio/switch.py:84:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/camera/__init__.py + /homeassistant/components/camera/__init__.py:458:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) + /homeassistant/components/camera/__init__.py:459:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "CameraEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/camera/__init__.py:527:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/camera/__init__.py:618:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/camera/__init__.py:665:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/camera/media_source.py + /homeassistant/components/camera/media_source.py:52:5 - error: "name" overrides symbol of same name in class "MediaSource" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/canary/alarm_control_panel.py + /homeassistant/components/canary/alarm_control_panel.py:37:7 - error: Base classes for class "CanaryAlarm" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/canary/alarm_control_panel.py:64:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/canary/alarm_control_panel.py:80:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/canary/camera.py + /homeassistant/components/canary/camera.py:114:9 - error: "is_recording" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/canary/camera.py:119:9 - error: "motion_detection_enabled" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/canary/camera.py:173:17 - error: Argument of type "StreamReader" cannot be assigned to parameter "stream" of type "StreamReader" in function "async_aiohttp_proxy_stream" +   "asyncio.streams.StreamReader" is not assignable to "aiohttp.streams.StreamReader" (reportArgumentType) + /homeassistant/components/canary/camera.py:188:39 - error: "live_stream_url" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/canary/sensor.py + /homeassistant/components/canary/sensor.py:86:7 - error: Base classes for class "CanarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/canary/sensor.py:149:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/canary/sensor.py:154:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/cast/__init__.py + /homeassistant/components/cast/__init__.py:39:10 - error: Function with declared return type "list[BrowseMedia]" must return value on all code paths +   "None" is not assignable to "list[BrowseMedia]" (reportReturnType) + /homeassistant/components/cast/__init__.py:62:10 - error: Function with declared return type "bool" must return value on all code paths +   "None" is not assignable to "bool" (reportReturnType) +/homeassistant/components/cast/discovery.py + /homeassistant/components/cast/discovery.py:64:13 - error: Method "add_cast" overrides class "AbstractCastListener" in an incompatible manner +   Parameter 3 name mismatch: base parameter is named "service", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/cast/discovery.py:68:13 - error: Method "update_cast" overrides class "AbstractCastListener" in an incompatible manner +   Parameter 3 name mismatch: base parameter is named "service", override parameter is named "_" (reportIncompatibleMethodOverride) +/homeassistant/components/cast/helpers.py + /homeassistant/components/cast/helpers.py:44:24 - error: Dataclass field without type annotation will cause runtime exception (reportGeneralTypeIssues) + /homeassistant/components/cast/helpers.py:132:13 - error: No parameter named "is_dynamic_group" (reportCallIssue) +/homeassistant/components/cast/media_player.py + /homeassistant/components/cast/media_player.py:805:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cast/media_player.py:836:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cast/media_player.py:845:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cast/media_player.py:869:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cast/media_player.py:878:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cast/media_player.py:888:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cast/media_player.py:894:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cast/media_player.py:900:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cast/media_player.py:906:9 - error: "media_album_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cast/media_player.py:912:9 - error: "media_track" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cast/media_player.py:918:9 - error: "media_series_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cast/media_player.py:924:9 - error: "media_season" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cast/media_player.py:930:9 - error: "media_episode" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cast/media_player.py:936:9 - error: "app_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cast/media_player.py:941:9 - error: "app_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cast/media_player.py:946:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/cast/media_player.py:984:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cast/media_player.py:999:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ccm15/climate.py + /homeassistant/components/ccm15/climate.py:97:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ccm15/climate.py:104:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ccm15/climate.py:111:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ccm15/climate.py:119:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ccm15/climate.py:127:9 - error: "swing_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ccm15/climate.py:134:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/ccm15/climate.py:139:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ccm15/climate.py:149:33 - error: Argument of type "CCM15SlaveDevice | None" cannot be assigned to parameter "data" of type "CCM15SlaveDevice" in function "async_set_temperature" +   Type "CCM15SlaveDevice | None" is not assignable to type "CCM15SlaveDevice" +     "None" is not assignable to "CCM15SlaveDevice" (reportArgumentType) + /homeassistant/components/ccm15/climate.py:154:68 - error: Argument of type "CCM15SlaveDevice | None" cannot be assigned to parameter "data" of type "CCM15SlaveDevice" in function "async_set_hvac_mode" +   Type "CCM15SlaveDevice | None" is not assignable to type "CCM15SlaveDevice" +     "None" is not assignable to "CCM15SlaveDevice" (reportArgumentType) + /homeassistant/components/ccm15/climate.py:158:67 - error: Argument of type "CCM15SlaveDevice | None" cannot be assigned to parameter "data" of type "CCM15SlaveDevice" in function "async_set_fan_mode" +   Type "CCM15SlaveDevice | None" is not assignable to type "CCM15SlaveDevice" +     "None" is not assignable to "CCM15SlaveDevice" (reportArgumentType) +/homeassistant/components/cert_expiry/entity.py + /homeassistant/components/cert_expiry/entity.py:18:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/cert_expiry/sensor.py + /homeassistant/components/cert_expiry/sensor.py:30:7 - error: Base classes for class "SSLCertificateTimestamp" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/cert_expiry/sensor.py:30:7 - error: Base classes for class "SSLCertificateTimestamp" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/cert_expiry/sensor.py:50:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/chacon_dio/__init__.py + /homeassistant/components/chacon_dio/__init__.py:47:9 - error: Argument of type "str | None" cannot be assigned to parameter "service_name" of type "str" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/channels/media_player.py + /homeassistant/components/channels/media_player.py:7:6 - error: Import "pychannels" could not be resolved (reportMissingImports) + /homeassistant/components/channels/media_player.py:144:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/channels/media_player.py:149:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/channels/media_player.py:168:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/channels/media_player.py:173:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/channels/media_player.py:178:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/channels/media_player.py:183:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/channels/media_player.py:193:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/cisco_ios/device_tracker.py + /homeassistant/components/cisco_ios/device_tracker.py:7:6 - warning: Import "pexpect" could not be resolved from source (reportMissingModuleSource) + /homeassistant/components/cisco_ios/device_tracker.py:7:21 - warning: Import "pexpect.pxssh" could not be resolved from source (reportMissingModuleSource) +/homeassistant/components/cisco_mobility_express/device_tracker.py + /homeassistant/components/cisco_mobility_express/device_tracker.py:7:6 - error: Import "ciscomobilityexpress.ciscome" could not be resolved (reportMissingImports) +/homeassistant/components/cisco_webex_teams/notify.py + /homeassistant/components/cisco_webex_teams/notify.py:8:6 - error: Import "webexpythonsdk" could not be resolved (reportMissingImports) +/homeassistant/components/citybikes/sensor.py + /homeassistant/components/citybikes/sensor.py:11:23 - error: "__version__" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/citybikes/sensor.py:12:6 - error: Import "citybikes.asyncio" could not be resolved (reportMissingImports) + /homeassistant/components/citybikes/sensor.py:146:12 - error: Operator ">" not supported for types "float | Any" and "float | None" +   Operator ">" not supported for types "float" and "None" (reportOperatorIssue) +/homeassistant/components/clementine/media_player.py + /homeassistant/components/clementine/media_player.py:8:6 - error: Import "clementineremote" could not be resolved (reportMissingImports) +/homeassistant/components/climate/__init__.py + /homeassistant/components/climate/__init__.py:257:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ClimateEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/climate/__init__.py:272:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ClimateEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/climate/__init__.py:286:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/climate/__init__.py:306:9 - error: "capability_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/climate/__init__.py:342:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/climate/device_action.py + /homeassistant/components/climate/device_action.py:98:17 - error: "service" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/climate/intent.py + /homeassistant/components/climate/intent.py:30:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/climate/intent.py:30:19 - error: Type "dict[Required | Optional, Coerce | ((value: Any) -> str)]" is not assignable to declared type "property" (reportAssignmentType) +/homeassistant/components/cloud/__init__.py + /homeassistant/components/cloud/__init__.py:281:51 - error: Argument of type "str | Unknown | Any" cannot be assigned to parameter "alexa_user_config" of type "dict[str, Any]" in function "__init__" +   Type "str | Unknown | Any" is not assignable to type "dict[str, Any]" +     "str" is not assignable to "dict[str, Any]" (reportArgumentType) + /homeassistant/components/cloud/__init__.py:281:63 - error: Argument of type "str | Unknown | Any" cannot be assigned to parameter "google_user_config" of type "dict[str, Any]" in function "__init__" +   Type "str | Unknown | Any" is not assignable to type "dict[str, Any]" +     "str" is not assignable to "dict[str, Any]" (reportArgumentType) + /homeassistant/components/cloud/__init__.py:282:53 - error: Argument of type "str" cannot be assigned to parameter "mode" of type "Literal['development', 'production']" in function "__init__" +   Type "str" is not assignable to type "Literal['development', 'production']" +     "str" is not assignable to type "Literal['development']" +     "str" is not assignable to type "Literal['production']" (reportArgumentType) + /homeassistant/components/cloud/__init__.py:282:53 - error: Argument of type "str" cannot be assigned to parameter "discovery_service_actions" of type "dict[ServiceDiscoveryAction, str] | None" in function "__init__" +   Type "str" is not assignable to type "dict[ServiceDiscoveryAction, str] | None" +     "str" is not assignable to "dict[ServiceDiscoveryAction, str]" +     "str" is not assignable to "None" (reportArgumentType) +/homeassistant/components/cloud/binary_sensor.py + /homeassistant/components/cloud/binary_sensor.py:50:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cloud/binary_sensor.py:55:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/cloud/client.py + /homeassistant/components/cloud/client.py:96:45 - error: Cannot access attribute "AppRunner" for class "object" +   Attribute "AppRunner" is unknown (reportAttributeAccessIssue) + /homeassistant/components/cloud/client.py:183:50 - error: Argument of type "HassJob[(_: Any), CoroutineType[Any, Any, None]]" cannot be assigned to parameter "action" of type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" in function "async_call_later" +   Type "HassJob[(_: Any), CoroutineType[Any, Any, None]]" is not assignable to type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" +     "HassJob[(_: Any), CoroutineType[Any, Any, None]]" is not assignable to "HassJob[(datetime), Coroutine[Any, Any, None] | None]" +       Type parameter "_R_co@HassJob" is invariant, but "CoroutineType[Any, Any, None]" is not the same as "Coroutine[Any, Any, None] | None" +     Type "HassJob[(_: Any), CoroutineType[Any, Any, None]]" is not assignable to type "(datetime) -> (Coroutine[Any, Any, None] | None)" (reportArgumentType) +/homeassistant/components/cloud/http_api.py + /homeassistant/components/cloud/http_api.py:87:35 - error: "CloudError" is not exported from module ".auth" (reportPrivateImportUsage) +/homeassistant/components/cloud/tts.py + /homeassistant/components/cloud/tts.py:329:9 - error: "default_language" overrides symbol of same name in class "TextToSpeechEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/cloud/tts.py:334:9 - error: "default_options" overrides symbol of same name in class "TextToSpeechEntity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cloud/tts.py:341:9 - error: "supported_languages" overrides symbol of same name in class "TextToSpeechEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/cloud/tts.py:346:9 - error: "supported_options" overrides symbol of same name in class "TextToSpeechEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/cmus/media_player.py + /homeassistant/components/cmus/media_player.py:8:6 - error: Import "pycmus" could not be resolved (reportMissingImports) +/homeassistant/components/co2signal/sensor.py + /homeassistant/components/co2signal/sensor.py:66:7 - error: Base classes for class "CO2Sensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/co2signal/sensor.py:79:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "CO2SensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/co2signal/sensor.py:79:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "CO2SensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/co2signal/sensor.py:96:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/co2signal/sensor.py:101:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/coinbase/sensor.py + /homeassistant/components/coinbase/sensor.py:57:24 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) + /homeassistant/components/coinbase/sensor.py:66:35 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/coinbase/sensor.py:128:24 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) + /homeassistant/components/coinbase/sensor.py:144:25 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/coinbase/sensor.py:159:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/coinbase/sensor.py:172:24 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) + /homeassistant/components/coinbase/sensor.py:181:25 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/coinbase/sensor.py:209:23 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/coinbase/sensor.py:230:23 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) +/homeassistant/components/color_extractor/__init__.py + /homeassistant/components/color_extractor/__init__.py:85:17 - error: "image_type" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/color_extractor/__init__.py:86:17 - error: "image_reference" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/color_extractor/__init__.py:91:12 - error: "color" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/comelit/alarm_control_panel.py + /homeassistant/components/comelit/alarm_control_panel.py:101:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/alarm_control_panel.py:108:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/comelit/binary_sensor.py + /homeassistant/components/comelit/binary_sensor.py:49:7 - error: Base classes for class "ComelitVedoBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/binary_sensor.py:72:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/comelit/climate.py + /homeassistant/components/comelit/climate.py:112:7 - error: Base classes for class "ComelitClimateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/climate.py:172:15 - error: Method "async_set_temperature" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/comelit/climate.py:188:15 - error: Method "async_set_hvac_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/comelit/coordinator.py + /homeassistant/components/comelit/coordinator.py:164:14 - error: "api" overrides symbol of same name in class "ComelitBaseCoordinator" +   Variable is mutable so its type is invariant +     Override type "ComeliteSerialBridgeApi" is not the same as base type "ComelitCommonApi" (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/coordinator.py:198:14 - error: "api" overrides symbol of same name in class "ComelitBaseCoordinator" +   Variable is mutable so its type is invariant +     Override type "ComelitVedoApi" is not the same as base type "ComelitCommonApi" (reportIncompatibleVariableOverride) +/homeassistant/components/comelit/cover.py + /homeassistant/components/comelit/cover.py:48:7 - error: Base classes for class "ComelitCoverEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/cover.py:48:7 - error: Base classes for class "ComelitCoverEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/cover.py:48:7 - error: Base classes for class "ComelitCoverEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/cover.py:48:7 - error: Base classes for class "ComelitCoverEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/cover.py:48:7 - error: Base classes for class "ComelitCoverEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/cover.py:48:7 - error: Base classes for class "ComelitCoverEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/cover.py:48:7 - error: Base classes for class "ComelitCoverEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/cover.py:48:7 - error: Base classes for class "ComelitCoverEntity" define variable "supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/cover.py:78:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/cover.py:87:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/cover.py:92:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/comelit/humidifier.py + /homeassistant/components/comelit/humidifier.py:114:7 - error: Base classes for class "ComelitHumidifierEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/humidifier.py:169:15 - error: Method "async_set_humidity" overrides class "HumidifierEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/comelit/humidifier.py:187:15 - error: Method "async_set_mode" overrides class "HumidifierEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/comelit/humidifier.py:196:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/comelit/humidifier.py:205:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/comelit/light.py + /homeassistant/components/comelit/light.py:46:7 - error: Base classes for class "ComelitLightEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/light.py:69:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/comelit/sensor.py + /homeassistant/components/comelit/sensor.py:115:7 - error: Base classes for class "ComelitBridgeSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/sensor.py:133:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/sensor.py:172:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/sensor.py:177:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/comelit/switch.py + /homeassistant/components/comelit/switch.py:48:7 - error: Base classes for class "ComelitSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/comelit/switch.py:83:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/comfoconnect/__init__.py + /homeassistant/components/comfoconnect/__init__.py:104:38 - error: Cannot access attribute "hex" for class "str" +   Attribute "hex" is unknown (reportAttributeAccessIssue) + /homeassistant/components/comfoconnect/__init__.py:112:27 - error: Cannot assign to attribute "callback_sensor" for class "ComfoConnect" +   Expression of type "(var: str, value: str) -> None" cannot be assigned to attribute "callback_sensor" of class "ComfoConnect" +     "MethodType" is not assignable to "None" (reportAttributeAccessIssue) +/homeassistant/components/comfoconnect/fan.py + /homeassistant/components/comfoconnect/fan.py:125:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/comfoconnect/fan.py:132:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) +/homeassistant/components/comfoconnect/sensor.py + /homeassistant/components/comfoconnect/sensor.py:306:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ComfoconnectSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/command_line/binary_sensor.py + /homeassistant/components/command_line/binary_sensor.py:81:7 - error: Base classes for class "CommandBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/command_line/binary_sensor.py:81:7 - error: Base classes for class "CommandBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/command_line/binary_sensor.py:81:7 - error: Base classes for class "CommandBinarySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/command_line/binary_sensor.py:81:7 - error: Base classes for class "CommandBinarySensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/command_line/binary_sensor.py:81:7 - error: Base classes for class "CommandBinarySensor" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/command_line/binary_sensor.py:81:7 - error: Base classes for class "CommandBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/command_line/cover.py + /homeassistant/components/command_line/cover.py:73:7 - error: Base classes for class "CommandCover" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/command_line/cover.py:73:7 - error: Base classes for class "CommandCover" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/command_line/cover.py:73:7 - error: Base classes for class "CommandCover" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/command_line/cover.py:73:7 - error: Base classes for class "CommandCover" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/command_line/cover.py:73:7 - error: Base classes for class "CommandCover" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/command_line/cover.py:73:7 - error: Base classes for class "CommandCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/command_line/cover.py:130:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/command_line/cover.py:137:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/command_line/switch.py + /homeassistant/components/command_line/switch.py:72:7 - error: Base classes for class "CommandSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/command_line/switch.py:72:7 - error: Base classes for class "CommandSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/command_line/switch.py:72:7 - error: Base classes for class "CommandSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/command_line/switch.py:72:7 - error: Base classes for class "CommandSwitch" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/command_line/switch.py:72:7 - error: Base classes for class "CommandSwitch" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/command_line/switch.py:72:7 - error: Base classes for class "CommandSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/command_line/switch.py:141:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/compensation/sensor.py + /homeassistant/components/compensation/sensor.py:124:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/compit/climate.py + /homeassistant/components/compit/climate.py:140:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/compit/climate.py:148:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/compit/climate.py:156:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/compit/climate.py:194:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/compit/climate.py:204:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/compit/climate.py:213:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/concord232/alarm_control_panel.py + /homeassistant/components/concord232/alarm_control_panel.py:8:24 - error: "client" is unknown import symbol (reportAttributeAccessIssue) +/homeassistant/components/concord232/binary_sensor.py + /homeassistant/components/concord232/binary_sensor.py:8:24 - error: "client" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/concord232/binary_sensor.py:122:9 - error: "device_class" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[BinarySensorDeviceClass | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/concord232/binary_sensor.py:127:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/concord232/binary_sensor.py:132:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/concord232/binary_sensor.py:144:52 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) +/homeassistant/components/config/auth_provider_homeassistant.py + /homeassistant/components/config/auth_provider_homeassistant.py:56:20 - error: Cannot access attribute "async_add_auth" for class "AuthProvider" +   Attribute "async_add_auth" is unknown (reportAttributeAccessIssue) + /homeassistant/components/config/auth_provider_homeassistant.py:93:20 - error: Cannot access attribute "async_remove_auth" for class "AuthProvider" +   Attribute "async_remove_auth" is unknown (reportAttributeAccessIssue) + /homeassistant/components/config/auth_provider_homeassistant.py:130:24 - error: Cannot access attribute "async_validate_login" for class "AuthProvider" +   Attribute "async_validate_login" is unknown (reportAttributeAccessIssue) + /homeassistant/components/config/auth_provider_homeassistant.py:137:20 - error: Cannot access attribute "async_change_password" for class "AuthProvider" +   Attribute "async_change_password" is unknown (reportAttributeAccessIssue) + /homeassistant/components/config/auth_provider_homeassistant.py:180:20 - error: Cannot access attribute "async_change_password" for class "AuthProvider" +   Attribute "async_change_password" is unknown (reportAttributeAccessIssue) + /homeassistant/components/config/auth_provider_homeassistant.py:221:20 - error: Cannot access attribute "async_change_username" for class "AuthProvider" +   Attribute "async_change_username" is unknown (reportAttributeAccessIssue) +/homeassistant/components/config/config_entries.py + /homeassistant/components/config/config_entries.py:153:8 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[FlowContext, str]", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/config/config_entries.py:227:15 - error: Method "get" overrides class "FlowManagerResourceView" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, Response]", override returns type "Coroutine[Any, Any, Response]" +     "Coroutine[Any, Any, Response]" is not assignable to "CoroutineType[Any, Any, Response]" (reportIncompatibleMethodOverride) + /homeassistant/components/config/config_entries.py:284:15 - error: Method "get" overrides class "FlowManagerResourceView" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, Response]", override returns type "Coroutine[Any, Any, Response]" +     "Coroutine[Any, Any, Response]" is not assignable to "CoroutineType[Any, Any, Response]" (reportIncompatibleMethodOverride) + /homeassistant/components/config/config_entries.py:338:15 - error: Method "get" overrides class "FlowManagerResourceView" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, Response]", override returns type "Coroutine[Any, Any, Response]" +     "Coroutine[Any, Any, Response]" is not assignable to "CoroutineType[Any, Any, Response]" (reportIncompatibleMethodOverride) + /homeassistant/components/config/config_entries.py:365:16 - error: Could not access item in TypedDict +   "context" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/config/config_entries.py:365:16 - error: Could not access item in TypedDict +   "source" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/config/config_entries.py:418:16 - error: Could not access item in TypedDict +   "context" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/config/config_entries.py:418:16 - error: Could not access item in TypedDict +   "source" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/config/config_entries.py:428:16 - error: Could not access item in TypedDict +   "context" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/config/config_entries.py:428:16 - error: Could not access item in TypedDict +   "source" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/config/config_entries.py:603:27 - error: Could not access item in TypedDict +   "context" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/config/config_entries.py:610:27 - error: Could not access item in TypedDict +   "context" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/config/config_entries.py:611:36 - error: Could not access item in TypedDict +   "context" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/config/config_entries.py:615:28 - error: Could not access item in TypedDict +   "context" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/control4/climate.py + /homeassistant/components/control4/climate.py:150:7 - error: Base classes for class "Control4Climate" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/control4/climate.py:187:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/climate.py:204:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/climate.py:212:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/climate.py:221:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/climate.py:230:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/climate.py:242:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/climate.py:255:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/climate.py:265:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/control4/config_flow.py + /homeassistant/components/control4/config_flow.py:133:45 - error: "split" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/control4/config_flow.py:138:27 - error: Argument of type "Unknown | None" cannot be assigned to parameter "title" of type "str" in function "async_create_entry" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/control4/entity.py + /homeassistant/components/control4/entity.py:44:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/control4/light.py + /homeassistant/components/control4/light.py:146:7 - error: Base classes for class "Control4Light" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/control4/light.py:146:7 - error: Base classes for class "Control4Light" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/control4/light.py:190:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/light.py:200:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/light.py:209:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/light.py:209:9 - error: "supported_features" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[LightEntityFeature]" (reportIncompatibleVariableOverride) +/homeassistant/components/control4/media_player.py + /homeassistant/components/control4/media_player.py:183:7 - error: Base classes for class "Control4Room" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/control4/media_player.py:183:7 - error: Base classes for class "Control4Room" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/control4/media_player.py:271:9 - error: "device_class" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/media_player.py:271:9 - error: "device_class" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerDeviceClass | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/media_player.py:279:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/media_player.py:279:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/media_player.py:291:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/media_player.py:299:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/media_player.py:312:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/media_player.py:332:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/media_player.py:337:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/control4/media_player.py:342:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/conversation/chat_log.py + /homeassistant/components/conversation/chat_log.py:317:29 - error: Argument of type "Unknown | dict[str, str]" cannot be assigned to parameter "tool_result" of type "JsonObjectType" in function "__init__" +   Type "Unknown | dict[str, str]" is not assignable to type "JsonObjectType" +     "dict[str, str]" is not assignable to "dict[str, JsonValueType]" +       Type parameter "_VT@dict" is invariant, but "str" is not the same as "JsonValueType" +       Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /homeassistant/components/conversation/chat_log.py:424:34 - error: Could not access item in TypedDict +   "tool_call_id" is not a required key in "ToolResultContentDeltaDict", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/conversation/chat_log.py:425:31 - error: Could not access item in TypedDict +   "tool_name" is not a required key in "ToolResultContentDeltaDict", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/conversation/chat_log.py:426:33 - error: Could not access item in TypedDict +   "tool_result" is not a required key in "ToolResultContentDeltaDict", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/conversation/default_agent.py + /homeassistant/components/conversation/default_agent.py:34:35 - error: "UnmatchedRangeEntity" is not exported from module "hassil.string_matcher" +   Import from "hassil.models" instead (reportPrivateImportUsage) + /homeassistant/components/conversation/default_agent.py:34:57 - error: "UnmatchedTextEntity" is not exported from module "hassil.string_matcher" +   Import from "hassil.models" instead (reportPrivateImportUsage) + /homeassistant/components/conversation/default_agent.py:800:28 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/conversation/default_agent.py:800:48 - error: Argument of type "str | Any | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/conversation/entity.py + /homeassistant/components/conversation/entity.py:31:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/cookidoo/button.py + /homeassistant/components/cookidoo/button.py:46:7 - error: Base classes for class "CookidooButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/cookidoo/button.py:58:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "CookidooButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/cookidoo/button.py:58:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "CookidooButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/cookidoo/sensor.py + /homeassistant/components/cookidoo/sensor.py:90:7 - error: Base classes for class "CookidooSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/cookidoo/sensor.py:102:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "CookidooSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/cookidoo/sensor.py:102:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "CookidooSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/cookidoo/sensor.py:108:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/cookidoo/todo.py + /homeassistant/components/cookidoo/todo.py:46:7 - error: Base classes for class "CookidooIngredientsTodoListEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/cookidoo/todo.py:59:9 - error: "todo_items" overrides symbol of same name in class "TodoListEntity" +   "property" is not assignable to "cached_property[list[TodoItem] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cookidoo/todo.py:103:7 - error: Base classes for class "CookidooAdditionalItemTodoListEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/cookidoo/todo.py:120:9 - error: "todo_items" overrides symbol of same name in class "TodoListEntity" +   "property" is not assignable to "cached_property[list[TodoItem] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/coolmaster/binary_sensor.py + /homeassistant/components/coolmaster/binary_sensor.py:30:7 - error: Base classes for class "CoolmasterCleanFilter" define variable "_attr_device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/binary_sensor.py:30:7 - error: Base classes for class "CoolmasterCleanFilter" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/binary_sensor.py:30:7 - error: Base classes for class "CoolmasterCleanFilter" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/binary_sensor.py:41:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/coolmaster/button.py + /homeassistant/components/coolmaster/button.py:26:7 - error: Base classes for class "CoolmasterResetFilter" define variable "_attr_device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/button.py:26:7 - error: Base classes for class "CoolmasterResetFilter" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/button.py:26:7 - error: Base classes for class "CoolmasterResetFilter" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/coolmaster/climate.py + /homeassistant/components/coolmaster/climate.py:55:7 - error: Base classes for class "CoolmasterClimate" define variable "_attr_device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/climate.py:55:7 - error: Base classes for class "CoolmasterClimate" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/climate.py:55:7 - error: Base classes for class "CoolmasterClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/climate.py:72:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/climate.py:72:9 - error: "supported_features" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[ClimateEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/climate.py:85:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/climate.py:93:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/climate.py:98:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/climate.py:103:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/climate.py:112:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/climate.py:117:9 - error: "fan_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/climate.py:122:9 - error: "swing_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/climate.py:127:9 - error: "swing_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/coolmaster/entity.py + /homeassistant/components/coolmaster/entity.py:25:14 - error: "_attr_device_info" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DeviceInfo" is not the same as base type "DeviceInfo | None" (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/entity.py:33:18 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/coolmaster/sensor.py + /homeassistant/components/coolmaster/sensor.py:26:7 - error: Base classes for class "CoolmasterCleanFilter" define variable "_attr_device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/sensor.py:26:7 - error: Base classes for class "CoolmasterCleanFilter" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/sensor.py:26:7 - error: Base classes for class "CoolmasterCleanFilter" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/coolmaster/sensor.py:36:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/counter/__init__.py + /homeassistant/components/counter/__init__.py:183:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/counter/__init__.py:188:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/counter/__init__.py:193:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/counter/__init__.py:198:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/counter/__init__.py:212:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/cover/__init__.py + /homeassistant/components/cover/__init__.py:213:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "CoverEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/cover/__init__.py:216:5 - error: "_attr_device_class" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "CoverDeviceClass | None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/cover/__init__.py:220:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) + /homeassistant/components/cover/__init__.py:221:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "CoverEntityFeature | None" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/cover/__init__.py:252:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/cover/__init__.py:268:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cover/__init__.py:281:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/cover/device_action.py + /homeassistant/components/cover/device_action.py:144:17 - error: "service" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/cover/device_condition.py + /homeassistant/components/cover/device_condition.py:137:53 - error: "state" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/cover/device_condition.py:154:58 - error: "position_attr" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/cover/device_trigger.py + /homeassistant/components/cover/device_trigger.py:157:36 - error: "to_state" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/cover/device_trigger.py:174:47 - error: "position" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/cover/reproduce_state.py + /homeassistant/components/cover/reproduce_state.py:220:9 - error: Argument of type "partial[CoroutineType[Any, Any, ServiceResponse]]" cannot be assigned to parameter "service_call" of type "partial[Coroutine[Any, Any, ServiceResponse]]" in function "_async_set_position" +   "partial[CoroutineType[Any, Any, ServiceResponse]]" is not assignable to "partial[Coroutine[Any, Any, ServiceResponse]]" +     Type parameter "_T@partial" is invariant, but "CoroutineType[Any, Any, ServiceResponse]" is not the same as "Coroutine[Any, Any, ServiceResponse]" (reportArgumentType) + /homeassistant/components/cover/reproduce_state.py:223:9 - error: Argument of type "partial[CoroutineType[Any, Any, ServiceResponse]]" cannot be assigned to parameter "service_call" of type "partial[Coroutine[Any, Any, ServiceResponse]]" in function "_async_set_tilt_position" +   "partial[CoroutineType[Any, Any, ServiceResponse]]" is not assignable to "partial[Coroutine[Any, Any, ServiceResponse]]" +     Type parameter "_T@partial" is invariant, but "CoroutineType[Any, Any, ServiceResponse]" is not the same as "Coroutine[Any, Any, ServiceResponse]" (reportArgumentType) + /homeassistant/components/cover/reproduce_state.py:228:13 - error: Argument of type "partial[CoroutineType[Any, Any, ServiceResponse]]" cannot be assigned to parameter "service_call" of type "partial[Coroutine[Any, Any, ServiceResponse]]" in function "_async_close_cover" +   "partial[CoroutineType[Any, Any, ServiceResponse]]" is not assignable to "partial[Coroutine[Any, Any, ServiceResponse]]" +     Type parameter "_T@partial" is invariant, but "CoroutineType[Any, Any, ServiceResponse]" is not the same as "Coroutine[Any, Any, ServiceResponse]" (reportArgumentType) + /homeassistant/components/cover/reproduce_state.py:233:13 - error: Argument of type "partial[CoroutineType[Any, Any, ServiceResponse]]" cannot be assigned to parameter "service_call" of type "partial[Coroutine[Any, Any, ServiceResponse]]" in function "_async_open_cover" +   "partial[CoroutineType[Any, Any, ServiceResponse]]" is not assignable to "partial[Coroutine[Any, Any, ServiceResponse]]" +     Type parameter "_T@partial" is invariant, but "CoroutineType[Any, Any, ServiceResponse]" is not the same as "Coroutine[Any, Any, ServiceResponse]" (reportArgumentType) +/homeassistant/components/cppm_tracker/device_tracker.py + /homeassistant/components/cppm_tracker/device_tracker.py:8:6 - error: Import "clearpasspy" could not be resolved (reportMissingImports) +/homeassistant/components/crownstone/config_flow.py + /homeassistant/components/crownstone/config_flow.py:213:5 - error: "config_entry" incorrectly overrides property of same name in class "OptionsFlow" (reportIncompatibleMethodOverride) + /homeassistant/components/crownstone/config_flow.py:238:33 - error: Argument of type "Any | None" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/crownstone/entity.py + /homeassistant/components/crownstone/entity.py:32:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/crownstone/light.py + /homeassistant/components/crownstone/light.py:64:7 - error: Base classes for class "CrownstoneLightEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/crownstone/light.py:83:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/crownstone/light.py:88:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/crownstone/light.py:93:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/crownstone/light.py:95:55 - error: "is_enabled" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/crownstone/light.py:100:9 - error: "supported_color_modes" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[set[ColorMode] | set[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/crownstone/listeners.py + /homeassistant/components/crownstone/listeners.py:106:13 - error: Argument of type "None" cannot be assigned to parameter "crownstone_uid" of type "int" in function "get_crownstone_by_uid" +   "None" is not assignable to "int" (reportArgumentType) +/homeassistant/components/currencylayer/sensor.py + /homeassistant/components/currencylayer/sensor.py:76:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/currencylayer/sensor.py:81:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/currencylayer/sensor.py:86:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/cync/config_flow.py + /homeassistant/components/cync/config_flow.py:43:23 - error: Type "None" is not assignable to declared type "Auth" +   "None" is not assignable to "Auth" (reportAssignmentType) + /homeassistant/components/cync/config_flow.py:126:40 - error: Argument of type "Any | None" cannot be assigned to parameter "two_factor_code" of type "str" in function "login" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/cync/light.py + /homeassistant/components/cync/light.py:57:7 - error: Base classes for class "CyncLightEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/cync/light.py:89:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cync/light.py:94:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cync/light.py:108:9 - error: "rgb_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cync/light.py:113:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/cync/light.py:145:40 - error: Argument of type "Any | None" cannot be assigned to parameter "rgb" of type "tuple[int, int, int]" in function "set_rgb" +   Type "Any | None" is not assignable to type "tuple[int, int, int]" +     "None" is not assignable to "tuple[int, int, int]" (reportArgumentType) + /homeassistant/components/cync/light.py:180:16 - error: Type "CyncDevice" is not assignable to return type "CyncLight" +   "CyncDevice" is not assignable to "CyncLight" (reportReturnType) +/homeassistant/components/daikin/climate.py + /homeassistant/components/daikin/climate.py:98:7 - error: Base classes for class "DaikinClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/climate.py:111:14 - error: "_attr_fan_modes" overrides symbol of same name in class "ClimateEntity" +   Variable is mutable so its type is invariant +     Override type "list[str]" is not the same as base type "list[str] | None" (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/climate.py:112:14 - error: "_attr_swing_modes" overrides symbol of same name in class "ClimateEntity" +   Variable is mutable so its type is invariant +     Override type "list[str]" is not the same as base type "list[str] | None" (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/climate.py:164:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/climate.py:169:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/climate.py:174:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/climate.py:183:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/climate.py:195:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/climate.py:205:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/climate.py:214:9 - error: "swing_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/climate.py:223:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/climate.py:267:9 - error: "preset_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/daikin/coordinator.py + /homeassistant/components/daikin/coordinator.py:30:18 - error: Argument of type "Unknown | None" cannot be assigned to parameter "name" of type "str" in function "__init__" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/daikin/entity.py + /homeassistant/components/daikin/entity.py:24:44 - error: "replace" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/daikin/sensor.py + /homeassistant/components/daikin/sensor.py:164:7 - error: Base classes for class "DaikinSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/sensor.py:174:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DaikinSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/sensor.py:174:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "DaikinSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/sensor.py:178:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/daikin/switch.py + /homeassistant/components/daikin/switch.py:42:7 - error: Base classes for class "DaikinZoneSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/switch.py:54:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/switch.py:59:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/switch.py:74:7 - error: Base classes for class "DaikinStreamerSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/switch.py:86:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/switch.py:101:7 - error: Base classes for class "DaikinToggleSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/daikin/switch.py:112:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/danfoss_air/__init__.py + /homeassistant/components/danfoss_air/__init__.py:6:6 - error: Import "pydanfossair.commands" could not be resolved (reportMissingImports) + /homeassistant/components/danfoss_air/__init__.py:7:6 - error: Import "pydanfossair.danfossclient" could not be resolved (reportMissingImports) +/homeassistant/components/danfoss_air/binary_sensor.py + /homeassistant/components/danfoss_air/binary_sensor.py:5:6 - error: Import "pydanfossair.commands" could not be resolved (reportMissingImports) +/homeassistant/components/danfoss_air/sensor.py + /homeassistant/components/danfoss_air/sensor.py:7:6 - error: Import "pydanfossair.commands" could not be resolved (reportMissingImports) +/homeassistant/components/danfoss_air/switch.py + /homeassistant/components/danfoss_air/switch.py:8:6 - error: Import "pydanfossair.commands" could not be resolved (reportMissingImports) + /homeassistant/components/danfoss_air/switch.py:69:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/danfoss_air/switch.py:74:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/datadog/__init__.py + /homeassistant/components/datadog/__init__.py:5:21 - error: "DogStatsd" is not exported from module "datadog" +   Import from "datadog.dogstatsd.base" instead (reportPrivateImportUsage) +/homeassistant/components/datadog/config_flow.py + /homeassistant/components/datadog/config_flow.py:5:21 - error: "DogStatsd" is not exported from module "datadog" +   Import from "datadog.dogstatsd.base" instead (reportPrivateImportUsage) +/homeassistant/components/date/__init__.py + /homeassistant/components/date/__init__.py:74:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DateEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/date/__init__.py:75:5 - error: "_attr_device_class" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/date/__init__.py:77:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) + /homeassistant/components/date/__init__.py:93:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/datetime/__init__.py + /homeassistant/components/datetime/__init__.py:83:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DateTimeEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/datetime/__init__.py:84:5 - error: "_attr_device_class" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/datetime/__init__.py:85:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) + /homeassistant/components/datetime/__init__.py:102:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/deconz/alarm_control_panel.py + /homeassistant/components/deconz/alarm_control_panel.py:70:7 - error: Base classes for class "DeconzAlarmControlPanel" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/alarm_control_panel.py:70:7 - error: Base classes for class "DeconzAlarmControlPanel" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/alarm_control_panel.py:70:7 - error: Base classes for class "DeconzAlarmControlPanel" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/alarm_control_panel.py:100:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/alarm_control_panel.py:103:20 - error: Argument of type "AncillaryControlPanel | None" cannot be assigned to parameter "key" of type "AncillaryControlPanel" in function "__getitem__" +   Type "AncillaryControlPanel | None" is not assignable to type "AncillaryControlPanel" +     "None" is not assignable to "AncillaryControlPanel" (reportArgumentType) +/homeassistant/components/deconz/binary_sensor.py + /homeassistant/components/deconz/binary_sensor.py:189:7 - error: Base classes for class "DeconzBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/binary_sensor.py:189:7 - error: Base classes for class "DeconzBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/binary_sensor.py:189:7 - error: Base classes for class "DeconzBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/binary_sensor.py:202:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DeconzBinarySensorDescription[Unknown]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/binary_sensor.py:202:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "DeconzBinarySensorDescription[Unknown]" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/binary_sensor.py:216:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/binary_sensor.py:221:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/deconz/button.py + /homeassistant/components/deconz/button.py:83:7 - error: Base classes for class "DeconzSceneButton" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/button.py:83:7 - error: Base classes for class "DeconzSceneButton" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/button.py:83:7 - error: Base classes for class "DeconzSceneButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/button.py:95:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DeconzButtonDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/button.py:95:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "DeconzButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/button.py:113:7 - error: Base classes for class "DeconzPresenceResetButton" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/button.py:113:7 - error: Base classes for class "DeconzPresenceResetButton" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/button.py:113:7 - error: Base classes for class "DeconzPresenceResetButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/deconz/climate.py + /homeassistant/components/deconz/climate.py:98:7 - error: Base classes for class "DeconzThermostat" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/climate.py:98:7 - error: Base classes for class "DeconzThermostat" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/climate.py:98:7 - error: Base classes for class "DeconzThermostat" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/climate.py:140:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/climate.py:143:20 - error: Argument of type "ThermostatFanMode | None" cannot be assigned to parameter "key" of type "ThermostatFanMode" in function "__getitem__" +   Type "ThermostatFanMode | None" is not assignable to type "ThermostatFanMode" +     "None" is not assignable to "ThermostatFanMode" (reportArgumentType) + /homeassistant/components/deconz/climate.py:159:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/climate.py:162:20 - error: Argument of type "ThermostatMode | None" cannot be assigned to parameter "key" of type "ThermostatMode" in function "__getitem__" +   Type "ThermostatMode | None" is not assignable to type "ThermostatMode" +     "None" is not assignable to "ThermostatMode" (reportArgumentType) + /homeassistant/components/deconz/climate.py:180:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/climate.py:197:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/climate.py:200:20 - error: Argument of type "ThermostatPreset | None" cannot be assigned to parameter "key" of type "ThermostatPreset" in function "__getitem__" +   Type "ThermostatPreset | None" is not assignable to type "ThermostatPreset" +     "None" is not assignable to "ThermostatPreset" (reportArgumentType) + /homeassistant/components/deconz/climate.py:216:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/climate.py:221:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/climate.py:248:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/deconz/cover.py + /homeassistant/components/deconz/cover.py:7:40 - error: "CoverAction" is not exported from module "pydeconz.interfaces.lights" +   Import from "pydeconz.models.light.cover" instead (reportPrivateImportUsage) + /homeassistant/components/deconz/cover.py:54:7 - error: Base classes for class "DeconzCover" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/cover.py:54:7 - error: Base classes for class "DeconzCover" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/cover.py:54:7 - error: Base classes for class "DeconzCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/cover.py:83:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/cover.py:88:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/cover.py:126:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/deconz/deconz_event.py + /homeassistant/components/deconz/deconz_event.py:86:36 - error: "new_event" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/deconz/deconz_event.py:87:27 - error: "new_event" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/deconz/deconz_event.py:241:53 - error: "value" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/deconz/entity.py + /homeassistant/components/deconz/entity.py:71:7 - error: Base classes for class "DeconzDevice" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/entity.py:71:7 - error: Base classes for class "DeconzDevice" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/entity.py:137:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/deconz/fan.py + /homeassistant/components/deconz/fan.py:57:7 - error: Base classes for class "DeconzFan" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/fan.py:57:7 - error: Base classes for class "DeconzFan" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/fan.py:57:7 - error: Base classes for class "DeconzFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/fan.py:81:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/deconz/hub/api.py + /homeassistant/components/deconz/hub/api.py:8:22 - error: "DeconzSession" is not exported from module "pydeconz" +   Import from "pydeconz.gateway" instead (reportPrivateImportUsage) +/homeassistant/components/deconz/hub/hub.py + /homeassistant/components/deconz/hub/hub.py:8:22 - error: "DeconzSession" is not exported from module "pydeconz" +   Import from "pydeconz.gateway" instead (reportPrivateImportUsage) +/homeassistant/components/deconz/light.py + /homeassistant/components/deconz/light.py:189:7 - error: Base classes for class "DeconzBaseLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/light.py:189:7 - error: Base classes for class "DeconzBaseLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/light.py:189:7 - error: Base classes for class "DeconzBaseLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/light.py:209:14 - error: "_attr_supported_color_modes" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "set[ColorMode]" is not the same as base type "set[ColorMode] | set[str] | None" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/light.py:247:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/light.py:250:26 - error: Argument of type "LightColorMode | None" cannot be assigned to parameter "key" of type "LightColorMode" in function "__getitem__" +   Type "LightColorMode | None" is not assignable to type "LightColorMode" +     "None" is not assignable to "LightColorMode" (reportArgumentType) + /homeassistant/components/deconz/light.py:262:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/light.py:274:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/light.py:281:9 - error: "xy_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/light.py:286:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/light.py:344:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/deconz/lock.py + /homeassistant/components/deconz/lock.py:52:7 - error: Base classes for class "DeconzLock" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/lock.py:52:7 - error: Base classes for class "DeconzLock" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/lock.py:52:7 - error: Base classes for class "DeconzLock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/lock.py:58:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/deconz/number.py + /homeassistant/components/deconz/number.py:99:7 - error: Base classes for class "DeconzNumber" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/number.py:99:7 - error: Base classes for class "DeconzNumber" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/number.py:99:7 - error: Base classes for class "DeconzNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/number.py:112:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DeconzNumberDescription[Unknown]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/number.py:112:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "DeconzNumberDescription[Unknown]" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/number.py:119:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/deconz/scene.py + /homeassistant/components/deconz/scene.py:38:7 - error: Base classes for class "DeconzScene" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/scene.py:38:7 - error: Base classes for class "DeconzScene" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/scene.py:38:7 - error: Base classes for class "DeconzScene" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/deconz/select.py + /homeassistant/components/deconz/select.py:69:7 - error: Base classes for class "DeconzAirPurifierFanMode" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/select.py:69:7 - error: Base classes for class "DeconzAirPurifierFanMode" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/select.py:69:7 - error: Base classes for class "DeconzAirPurifierFanMode" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/select.py:90:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/select.py:102:7 - error: Base classes for class "DeconzPresenceDeviceModeSelect" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/select.py:102:7 - error: Base classes for class "DeconzPresenceDeviceModeSelect" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/select.py:102:7 - error: Base classes for class "DeconzPresenceDeviceModeSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/select.py:118:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/select.py:132:7 - error: Base classes for class "DeconzPresenceSensitivitySelect" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/select.py:132:7 - error: Base classes for class "DeconzPresenceSensitivitySelect" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/select.py:132:7 - error: Base classes for class "DeconzPresenceSensitivitySelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/select.py:145:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/select.py:159:7 - error: Base classes for class "DeconzPresenceTriggerDistanceSelect" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/select.py:159:7 - error: Base classes for class "DeconzPresenceTriggerDistanceSelect" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/select.py:159:7 - error: Base classes for class "DeconzPresenceTriggerDistanceSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/select.py:176:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/deconz/sensor.py + /homeassistant/components/deconz/sensor.py:393:7 - error: Base classes for class "DeconzSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/sensor.py:393:7 - error: Base classes for class "DeconzSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/sensor.py:393:7 - error: Base classes for class "DeconzSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/sensor.py:406:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DeconzSensorDescription[Unknown]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/sensor.py:406:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "DeconzSensorDescription[Unknown]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/sensor.py:420:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/sensor.py:425:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/deconz/services.py + /homeassistant/components/deconz/services.py:92:43 - error: "hub" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/deconz/services.py:95:49 - error: "hub" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/deconz/services.py:98:57 - error: "hub" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/deconz/siren.py + /homeassistant/components/deconz/siren.py:44:7 - error: Base classes for class "DeconzSiren" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/siren.py:44:7 - error: Base classes for class "DeconzSiren" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/siren.py:44:7 - error: Base classes for class "DeconzSiren" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/siren.py:55:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/deconz/switch.py + /homeassistant/components/deconz/switch.py:45:7 - error: Base classes for class "DeconzPowerPlug" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/switch.py:45:7 - error: Base classes for class "DeconzPowerPlug" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/switch.py:45:7 - error: Base classes for class "DeconzPowerPlug" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deconz/switch.py:51:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/decora_wifi/light.py + /homeassistant/components/decora_wifi/light.py:8:25 - error: "DecoraWiFiSession" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/decora_wifi/light.py:9:6 - error: Import "decora_wifi.models.person" could not be resolved (reportMissingImports) + /homeassistant/components/decora_wifi/light.py:10:6 - error: Import "decora_wifi.models.residence" could not be resolved (reportMissingImports) + /homeassistant/components/decora_wifi/light.py:11:6 - error: Import "decora_wifi.models.residential_account" could not be resolved (reportMissingImports) + /homeassistant/components/decora_wifi/light.py:104:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/decora_wifi/light.py:111:9 - error: "supported_color_modes" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[set[ColorMode] | set[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/decora_wifi/light.py:116:9 - error: "supported_features" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[LightEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/decora_wifi/light.py:123:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/decora_wifi/light.py:128:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/decora_wifi/light.py:133:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/decora_wifi/light.py:138:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/delijn/sensor.py + /homeassistant/components/delijn/sensor.py:8:6 - error: Import "pydelijn.api" could not be resolved (reportMissingImports) + /homeassistant/components/delijn/sensor.py:9:6 - error: Import "pydelijn.common" could not be resolved (reportMissingImports) +/homeassistant/components/deluge/__init__.py + /homeassistant/components/deluge/__init__.py:37:9 - error: Cannot assign to attribute "web_port" for class "DelugeRPCClient" +   Attribute "web_port" is unknown (reportAttributeAccessIssue) +/homeassistant/components/deluge/entity.py + /homeassistant/components/deluge/entity.py:29:24 - error: Argument of type "int | None" cannot be assigned to parameter "sw_version" of type "str | None" in function "__init__" +   Type "int | None" is not assignable to type "str | None" +     Type "int" is not assignable to type "str | None" +       "int" is not assignable to "str" +       "int" is not assignable to "None" (reportArgumentType) +/homeassistant/components/deluge/sensor.py + /homeassistant/components/deluge/sensor.py:139:7 - error: Base classes for class "DelugeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deluge/sensor.py:151:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DelugeSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/deluge/sensor.py:151:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "DelugeSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/deluge/sensor.py:155:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/deluge/switch.py + /homeassistant/components/deluge/switch.py:25:7 - error: Base classes for class "DelugeSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/deluge/switch.py:46:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/demo/binary_sensor.py + /homeassistant/components/demo/binary_sensor.py:65:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/binary_sensor.py:70:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/demo/climate.py + /homeassistant/components/demo/climate.py:168:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/climate.py:173:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/climate.py:178:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/climate.py:183:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/climate.py:188:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/climate.py:193:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/climate.py:198:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/climate.py:203:9 - error: "target_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/climate.py:208:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/climate.py:213:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/climate.py:218:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/climate.py:223:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/climate.py:228:9 - error: "preset_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/climate.py:233:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/climate.py:238:9 - error: "fan_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/climate.py:243:9 - error: "swing_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/climate.py:248:9 - error: "swing_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/climate.py:253:9 - error: "swing_horizontal_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/climate.py:258:9 - error: "swing_horizontal_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/demo/cover.py + /homeassistant/components/demo/cover.py:104:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/cover.py:109:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/cover.py:114:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/cover.py:119:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/cover.py:124:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/cover.py:129:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/demo/fan.py + /homeassistant/components/demo/fan.py:128:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/fan.py:133:9 - error: "current_direction" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/fan.py:138:9 - error: "oscillating" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/fan.py:143:7 - error: Base classes for class "DemoPercentageFan" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/demo/fan.py:143:7 - error: Base classes for class "DemoPercentageFan" define variable "current_direction" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/demo/fan.py:143:7 - error: Base classes for class "DemoPercentageFan" define variable "oscillating" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/demo/fan.py:147:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/fan.py:152:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/fan.py:163:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/fan.py:168:9 - error: "preset_modes" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/fan.py:209:7 - error: Base classes for class "AsyncDemoPercentageFan" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/demo/fan.py:209:7 - error: Base classes for class "AsyncDemoPercentageFan" define variable "current_direction" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/demo/fan.py:209:7 - error: Base classes for class "AsyncDemoPercentageFan" define variable "oscillating" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/demo/fan.py:213:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/fan.py:218:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/fan.py:229:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/fan.py:234:9 - error: "preset_modes" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/demo/geo_location.py + /homeassistant/components/demo/geo_location.py:137:9 - error: "source" overrides symbol of same name in class "GeolocationEvent" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/geo_location.py:142:9 - error: "distance" overrides symbol of same name in class "GeolocationEvent" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/geo_location.py:147:9 - error: "latitude" overrides symbol of same name in class "GeolocationEvent" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/geo_location.py:152:9 - error: "longitude" overrides symbol of same name in class "GeolocationEvent" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/geo_location.py:157:9 - error: "unit_of_measurement" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/demo/light.py + /homeassistant/components/demo/light.py:160:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/light.py:165:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/light.py:172:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/light.py:177:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/light.py:182:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/light.py:187:9 - error: "rgbw_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/light.py:192:9 - error: "rgbww_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/light.py:202:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/light.py:207:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/light.py:212:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/light.py:217:9 - error: "supported_color_modes" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[set[ColorMode] | set[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/demo/lock.py + /homeassistant/components/demo/lock.py:53:9 - error: "is_locking" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/lock.py:58:9 - error: "is_unlocking" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/lock.py:63:9 - error: "is_jammed" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/lock.py:68:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/lock.py:73:9 - error: "is_open" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/lock.py:78:9 - error: "is_opening" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/demo/media_player.py + /homeassistant/components/demo/media_player.py:206:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/media_player.py:211:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/media_player.py:226:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/media_player.py:294:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/media_player.py:299:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/media_player.py:304:9 - error: "media_track" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/media_player.py:339:14 - error: "_attr_group_members" overrides symbol of same name in class "MediaPlayerEntity" +   Variable is mutable so its type is invariant +     Override type "list[str]" is not the same as base type "list[str] | None" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/media_player.py:368:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/media_player.py:373:9 - error: "media_episode" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/demo/remote.py + /homeassistant/components/demo/remote.py:41:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/demo/sensor.py + /homeassistant/components/demo/sensor.py:223:18 - error: "_attr_native_value" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "float" is not the same as base type "StateType | date | datetime | Decimal" (reportIncompatibleVariableOverride) +/homeassistant/components/demo/vacuum.py + /homeassistant/components/demo/vacuum.py:90:9 - error: "fan_speed" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/vacuum.py:95:9 - error: "fan_speed_list" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/vacuum.py:100:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/demo/weather.py + /homeassistant/components/demo/weather.py:198:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/weather.py:203:9 - error: "native_temperature_unit" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/weather.py:208:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/weather.py:213:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/weather.py:218:9 - error: "native_wind_speed_unit" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/weather.py:223:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/weather.py:228:9 - error: "native_pressure_unit" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/demo/weather.py:233:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/denon/media_player.py + /homeassistant/components/denon/media_player.py:214:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/denon/media_player.py:219:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/denon/media_player.py:229:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/denon/media_player.py:234:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/denon/media_player.py:239:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/denon/media_player.py:244:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/denon/media_player.py:249:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/denon/media_player.py:256:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/denonavr/__init__.py + /homeassistant/components/denonavr/__init__.py:56:26 - error: Cannot assign to attribute "runtime_data" for class "DenonavrConfigEntry" +   Type "DenonAVR | None" is not assignable to type "DenonAVR" +     "None" is not assignable to "DenonAVR" (reportAttributeAccessIssue) +/homeassistant/components/denonavr/config_flow.py + /homeassistant/components/denonavr/config_flow.py:212:53 - error: "replace" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/denonavr/config_flow.py:229:19 - error: Argument of type "str | None" cannot be assigned to parameter "title" of type "str" in function "async_create_entry" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/denonavr/media_player.py + /homeassistant/components/denonavr/media_player.py:122:67 - error: Cannot access attribute "zone" for class "DenonAVRFoundation" +   Attribute "zone" is unknown (reportAttributeAccessIssue) + /homeassistant/components/denonavr/media_player.py:124:66 - error: Cannot access attribute "zone" for class "DenonAVRFoundation" +   Attribute "zone" is unknown (reportAttributeAccessIssue) + /homeassistant/components/denonavr/media_player.py:127:17 - error: Argument of type "DenonAVRFoundation" cannot be assigned to parameter "receiver" of type "DenonAVR" in function "__init__" +   "DenonAVRFoundation" is not assignable to "DenonAVR" (reportArgumentType) + /homeassistant/components/denonavr/media_player.py:272:9 - error: Operator "|=" not supported for types "MediaPlayerEntityFeature" and "Literal[MediaPlayerEntityFeature.SELECT_SOUND_MODE, False] | None" +   Operator "|" not supported for types "MediaPlayerEntityFeature" and "None" (reportOperatorIssue) + /homeassistant/components/denonavr/media_player.py:320:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/denonavr/media_player.py:322:40 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/denonavr/media_player.py:325:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/denonavr/media_player.py:330:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/denonavr/media_player.py:335:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/denonavr/media_player.py:344:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/denonavr/media_player.py:349:9 - error: "sound_mode" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/denonavr/media_player.py:354:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/denonavr/media_player.py:361:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/denonavr/media_player.py:368:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/denonavr/media_player.py:375:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/denonavr/media_player.py:384:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/denonavr/media_player.py:391:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/denonavr/media_player.py:398:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/denonavr/media_player.py:418:15 - error: Method "async_media_play_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/denonavr/media_player.py:423:15 - error: Method "async_media_play" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/denonavr/media_player.py:428:15 - error: Method "async_media_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/denonavr/media_player.py:433:15 - error: Method "async_media_previous_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/denonavr/media_player.py:438:15 - error: Method "async_media_next_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/denonavr/media_player.py:443:15 - error: Method "async_select_source" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/denonavr/media_player.py:448:15 - error: Method "async_select_sound_mode" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/denonavr/media_player.py:453:15 - error: Method "async_turn_on" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/denonavr/media_player.py:458:15 - error: Method "async_turn_off" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/denonavr/media_player.py:463:15 - error: Method "async_volume_up" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/denonavr/media_player.py:468:15 - error: Method "async_volume_down" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/denonavr/media_player.py:473:15 - error: Method "async_set_volume_level" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/denonavr/media_player.py:483:15 - error: Method "async_mute_volume" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/denonavr/receiver.py + /homeassistant/components/denonavr/receiver.py:87:20 - error: Argument missing for parameter "_host" (reportCallIssue) + /homeassistant/components/denonavr/receiver.py:88:13 - error: No parameter named "host" (reportCallIssue) + /homeassistant/components/denonavr/receiver.py:89:13 - error: No parameter named "show_all_inputs" (reportCallIssue) + /homeassistant/components/denonavr/receiver.py:90:13 - error: No parameter named "timeout" (reportCallIssue) + /homeassistant/components/denonavr/receiver.py:91:13 - error: No parameter named "add_zones" (reportCallIssue) + /homeassistant/components/denonavr/receiver.py:100:32 - error: Cannot access attribute "async_update" for class "DenonAVRFoundation" +   Attribute "async_update" is unknown (reportAttributeAccessIssue) + /homeassistant/components/denonavr/receiver.py:102:32 - error: Cannot access attribute "async_update_audyssey" for class "DenonAVRFoundation" +   Attribute "async_update_audyssey" is unknown (reportAttributeAccessIssue) +/homeassistant/components/derivative/sensor.py + /homeassistant/components/derivative/sensor.py:466:21 - error: "new_derivative" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/derivative/sensor.py:475:68 - error: "new_derivative" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/derivative/sensor.py:483:16 - error: "elapsed_time" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/derivative/sensor.py:484:30 - error: "new_derivative" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/devialet/config_flow.py + /homeassistant/components/devialet/config_flow.py:51:19 - error: Argument of type "str | None" cannot be assigned to parameter "title" of type "str" in function "async_create_entry" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/devialet/diagnostics.py + /homeassistant/components/devialet/diagnostics.py:16:12 - error: Type "Unknown | None" is not assignable to return type "dict[str, Any]" +   Type "Unknown | None" is not assignable to type "dict[str, Any]" +     "None" is not assignable to "dict[str, Any]" (reportReturnType) +/homeassistant/components/devialet/media_player.py + /homeassistant/components/devialet/media_player.py:97:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/devialet/media_player.py:97:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/devialet/media_player.py:110:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/devialet/media_player.py:112:16 - error: Type "bool | None" is not assignable to return type "bool" +   Type "bool | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportReturnType) + /homeassistant/components/devialet/media_player.py:115:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/devialet/media_player.py:115:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/devialet/media_player.py:130:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/devialet/media_player.py:140:9 - error: "sound_mode" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/device_automation/action.py + /homeassistant/components/device_automation/action.py:28:10 - error: Function with declared return type "ConfigType" must return value on all code paths +   "None" is not assignable to "dict[str, Any]" (reportReturnType) + /homeassistant/components/device_automation/action.py:42:10 - error: Function with declared return type "dict[str, Schema]" must return value on all code paths +   "None" is not assignable to "dict[str, Schema]" (reportReturnType) + /homeassistant/components/device_automation/action.py:47:10 - error: Function with declared return type "list[dict[str, Any]]" must return value on all code paths +   "None" is not assignable to "list[dict[str, Any]]" (reportReturnType) +/homeassistant/components/device_automation/condition.py + /homeassistant/components/device_automation/condition.py:37:10 - error: Function with declared return type "ConfigType" must return value on all code paths +   "None" is not assignable to "dict[str, Any]" (reportReturnType) + /homeassistant/components/device_automation/condition.py:42:10 - error: Function with declared return type "ConditionCheckerType" must return value on all code paths +   Type "None" is not assignable to type "ConditionCheckerType" (reportReturnType) + /homeassistant/components/device_automation/condition.py:47:10 - error: Function with declared return type "dict[str, Schema]" must return value on all code paths +   "None" is not assignable to "dict[str, Schema]" (reportReturnType) + /homeassistant/components/device_automation/condition.py:52:10 - error: Function with declared return type "list[dict[str, Any]]" must return value on all code paths +   "None" is not assignable to "list[dict[str, Any]]" (reportReturnType) +/homeassistant/components/device_automation/trigger.py + /homeassistant/components/device_automation/trigger.py:34:10 - error: Function with declared return type "ConfigType" must return value on all code paths +   "None" is not assignable to "dict[str, Any]" (reportReturnType) + /homeassistant/components/device_automation/trigger.py:43:10 - error: Function with declared return type "CALLBACK_TYPE" must return value on all code paths +   Type "None" is not assignable to type "CALLBACK_TYPE" (reportReturnType) + /homeassistant/components/device_automation/trigger.py:48:10 - error: Function with declared return type "dict[str, Schema]" must return value on all code paths +   "None" is not assignable to "dict[str, Schema]" (reportReturnType) + /homeassistant/components/device_automation/trigger.py:53:10 - error: Function with declared return type "list[dict[str, Any]]" must return value on all code paths +   "None" is not assignable to "list[dict[str, Any]]" (reportReturnType) +/homeassistant/components/device_tracker/config_entry.py + /homeassistant/components/device_tracker/config_entry.py:172:5 - error: "_attr_device_info" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "DeviceInfo | None" (reportIncompatibleVariableOverride) + /homeassistant/components/device_tracker/config_entry.py:192:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/device_tracker/config_entry.py:219:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TrackerEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/device_tracker/config_entry.py:232:9 - error: "force_update" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/device_tracker/config_entry.py:260:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/device_tracker/config_entry.py:310:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ScannerEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/device_tracker/config_entry.py:332:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/device_tracker/config_entry.py:344:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/device_tracker/config_entry.py:350:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/device_tracker/config_entry.py:355:9 - error: "entity_registry_enabled_default" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/device_tracker/legacy.py + /homeassistant/components/device_tracker/legacy.py:298:5 - error: Fields without default values cannot appear after fields with default values (reportGeneralTypeIssues) + /homeassistant/components/device_tracker/legacy.py:299:5 - error: Fields without default values cannot appear after fields with default values (reportGeneralTypeIssues) + /homeassistant/components/device_tracker/legacy.py:300:5 - error: Fields without default values cannot appear after fields with default values (reportGeneralTypeIssues) + /homeassistant/components/device_tracker/legacy.py:409:12 - error: Argument missing for parameter "config" (reportCallIssue) + /homeassistant/components/device_tracker/legacy.py:829:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/device_tracker/legacy.py:834:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/device_tracker/legacy.py:839:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/device_tracker/legacy.py:845:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/device_tracker/legacy.py:860:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/device_tracker/legacy.py:865:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/devolo_home_control/binary_sensor.py + /homeassistant/components/devolo_home_control/binary_sensor.py:98:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/devolo_home_control/climate.py + /homeassistant/components/devolo_home_control/climate.py:74:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_control/climate.py:89:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/devolo_home_control/cover.py + /homeassistant/components/devolo_home_control/cover.py:50:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_control/cover.py:55:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/devolo_home_control/entity.py + /homeassistant/components/devolo_home_control/entity.py:57:16 - error: Could not access item in TypedDict +   "name" is not a required key in "DeviceInfo", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/devolo_home_control/entity.py:59:13 - error: Could not access item in TypedDict +   "name" is not a required key in "DeviceInfo", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/devolo_home_control/light.py + /homeassistant/components/devolo_home_control/light.py:59:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_control/light.py:64:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/devolo_home_control/sensor.py + /homeassistant/components/devolo_home_control/sensor.py:87:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_control/sensor.py:180:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_control/sensor.py:192:17 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/devolo_home_control/siren.py + /homeassistant/components/devolo_home_control/siren.py:63:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/devolo_home_network/binary_sensor.py + /homeassistant/components/devolo_home_network/binary_sensor.py:72:7 - error: Base classes for class "DevoloBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_network/binary_sensor.py:84:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DevoloBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_network/binary_sensor.py:84:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "DevoloBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_network/binary_sensor.py:88:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/devolo_home_network/button.py + /homeassistant/components/devolo_home_network/button.py:109:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DevoloButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_network/button.py:109:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "DevoloButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/devolo_home_network/config_flow.py + /homeassistant/components/devolo_home_network/config_flow.py:118:17 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/devolo_home_network/config_flow.py:149:15 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/devolo_home_network/coordinator.py + /homeassistant/components/devolo_home_network/coordinator.py:13:5 - error: "UpdateFirmwareCheck" is not exported from module "devolo_plc_api.device_api" +   Import from "devolo_plc_api.device_api.updatefirmware_pb2" instead (reportPrivateImportUsage) +/homeassistant/components/devolo_home_network/device_tracker.py + /homeassistant/components/devolo_home_network/device_tracker.py:83:7 - error: Base classes for class "DevoloScannerEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_network/device_tracker.py:105:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_network/device_tracker.py:129:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/devolo_home_network/entity.py + /homeassistant/components/devolo_home_network/entity.py:64:7 - error: Base classes for class "DevoloCoordinatorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/devolo_home_network/image.py + /homeassistant/components/devolo_home_network/image.py:60:7 - error: Base classes for class "DevoloImageEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_network/image.py:72:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DevoloImageEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/devolo_home_network/sensor.py + /homeassistant/components/devolo_home_network/sensor.py:191:7 - error: Base classes for class "BaseDevoloSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_network/sensor.py:222:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_network/sensor.py:255:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/devolo_home_network/switch.py + /homeassistant/components/devolo_home_network/switch.py:83:7 - error: Base classes for class "DevoloSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_network/switch.py:97:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DevoloSwitchEntityDescription[_DataT@DevoloSwitchEntity]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_network/switch.py:97:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "DevoloSwitchEntityDescription[_DataT@DevoloSwitchEntity]" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_network/switch.py:101:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/devolo_home_network/update.py + /homeassistant/components/devolo_home_network/update.py:10:39 - error: "UpdateFirmwareCheck" is not exported from module "devolo_plc_api.device_api" +   Import from "devolo_plc_api.device_api.updatefirmware_pb2" instead (reportPrivateImportUsage) + /homeassistant/components/devolo_home_network/update.py:69:7 - error: Base classes for class "DevoloUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_network/update.py:85:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DevoloUpdateEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_network/update.py:85:14 - error: "entity_description" overrides symbol of same name in class "UpdateEntity" +   Variable is mutable so its type is invariant +     Override type "DevoloUpdateEntityDescription" is not the same as base type "UpdateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_network/update.py:90:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_network/update.py:95:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/devolo_home_network/update.py:104:9 - error: "in_progress" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/dexcom/sensor.py + /homeassistant/components/dexcom/sensor.py:42:7 - error: Base classes for class "DexcomSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/dexcom/sensor.py:82:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/dexcom/sensor.py:103:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/dhcp/__init__.py + /homeassistant/components/dhcp/__init__.py:513:1 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) +/homeassistant/components/diagnostics/__init__.py + /homeassistant/components/diagnostics/__init__.py:96:10 - error: Function with declared return type "Mapping[str, Any]" must return value on all code paths +   "None" is not assignable to "Mapping[str, Any]" (reportReturnType) + /homeassistant/components/diagnostics/__init__.py:101:10 - error: Function with declared return type "Mapping[str, Any]" must return value on all code paths +   "None" is not assignable to "Mapping[str, Any]" (reportReturnType) +/homeassistant/components/digital_ocean/__init__.py + /homeassistant/components/digital_ocean/__init__.py:6:8 - error: Import "digitalocean" could not be resolved (reportMissingImports) +/homeassistant/components/digital_ocean/binary_sensor.py + /homeassistant/components/digital_ocean/binary_sensor.py:77:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/digital_ocean/binary_sensor.py:82:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/digital_ocean/binary_sensor.py:87:9 - error: "device_class" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[BinarySensorDeviceClass | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/digital_ocean/binary_sensor.py:92:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/digital_ocean/switch.py + /homeassistant/components/digital_ocean/switch.py:78:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/digital_ocean/switch.py:83:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/digital_ocean/switch.py:88:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/digital_ocean/switch.py:104:22 - error: "status" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/digital_ocean/switch.py:105:23 - error: "power_on" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/digital_ocean/switch.py:109:22 - error: "status" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/digital_ocean/switch.py:110:23 - error: "power_off" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/directv/entity.py + /homeassistant/components/directv/entity.py:22:69 - error: "info" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/directv/entity.py:27:42 - error: "info" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/directv/entity.py:29:40 - error: "info" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/directv/entity.py:30:49 - error: "info" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/directv/media_player.py + /homeassistant/components/directv/media_player.py:70:40 - error: "locations" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/directv/media_player.py:120:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/directv/media_player.py:133:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/directv/media_player.py:133:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/directv/media_player.py:147:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/directv/media_player.py:155:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/directv/media_player.py:161:20 - error: Type "str" is not assignable to return type "MediaType | None" +   Type "str" is not assignable to type "MediaType | None" +     "str" is not assignable to "MediaType" +     "str" is not assignable to "None" (reportReturnType) + /homeassistant/components/directv/media_player.py:166:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/directv/media_player.py:174:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/directv/media_player.py:182:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/directv/media_player.py:190:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/directv/media_player.py:201:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/directv/media_player.py:209:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/directv/media_player.py:217:9 - error: "media_series_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/directv/media_player.py:225:9 - error: "media_channel" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/directv/media_player.py:233:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/directv/media_player.py:241:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/directv/media_player.py:241:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) +/homeassistant/components/directv/remote.py + /homeassistant/components/directv/remote.py:39:40 - error: "locations" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/discogs/sensor.py + /homeassistant/components/discogs/sensor.py:9:8 - error: Import "discogs_client" could not be resolved (reportMissingImports) + /homeassistant/components/discogs/sensor.py:121:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/discovergy/sensor.py + /homeassistant/components/discovergy/sensor.py:193:7 - error: Base classes for class "DiscovergySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/discovergy/sensor.py:210:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DiscovergySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/discovergy/sensor.py:210:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "DiscovergySensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/discovergy/sensor.py:223:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/dlink/data.py + /homeassistant/components/dlink/data.py:44:23 - error: "error" is not a known attribute of module "urllib" (reportAttributeAccessIssue) +/homeassistant/components/dlink/switch.py + /homeassistant/components/dlink/switch.py:39:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlink/switch.py:59:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlink/switch.py:76:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/dlna_dmr/config_flow.py + /homeassistant/components/dlna_dmr/config_flow.py:13:38 - error: "UpnpError" is not exported from module "async_upnp_client.client" +   Import from "async_upnp_client.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/dlna_dmr/media_player.py + /homeassistant/components/dlna_dmr/media_player.py:537:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:542:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:552:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:604:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:611:15 - error: Method "async_set_volume_level" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/dlna_dmr/media_player.py:617:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:624:15 - error: Method "async_mute_volume" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/dlna_dmr/media_player.py:631:15 - error: Method "async_media_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/dlna_dmr/media_player.py:637:15 - error: Method "async_media_play" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/dlna_dmr/media_player.py:643:15 - error: Method "async_media_stop" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/dlna_dmr/media_player.py:649:15 - error: Method "async_media_seek" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/dlna_dmr/media_player.py:656:15 - error: Method "async_play_media" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/dlna_dmr/media_player.py:724:15 - error: Method "async_media_previous_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/dlna_dmr/media_player.py:730:15 - error: Method "async_media_next_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/dlna_dmr/media_player.py:736:9 - error: "shuffle" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:750:15 - error: Method "async_set_shuffle" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/dlna_dmr/media_player.py:769:9 - error: "repeat" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[RepeatMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:789:15 - error: Method "async_set_repeat" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/dlna_dmr/media_player.py:808:9 - error: "sound_mode_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:815:15 - error: Method "async_select_sound_mode" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/dlna_dmr/media_player.py:883:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:891:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:898:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:905:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:912:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:919:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:926:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:936:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:943:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:950:9 - error: "media_album_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:957:9 - error: "media_track" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:964:9 - error: "media_series_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:971:9 - error: "media_season" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:988:9 - error: "media_episode" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:1004:9 - error: "media_channel" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dlna_dmr/media_player.py:1011:9 - error: "media_playlist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/dominos/__init__.py + /homeassistant/components/dominos/__init__.py:6:6 - error: Import "pizzapi" could not be resolved (reportMissingImports) + /homeassistant/components/dominos/__init__.py:196:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dominos/__init__.py:211:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/doods/image_processing.py + /homeassistant/components/doods/image_processing.py:12:6 - error: Import "pydoods" could not be resolved (reportMissingImports) + /homeassistant/components/doods/image_processing.py:222:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/doods/image_processing.py:227:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/doorbird/button.py + /homeassistant/components/doorbird/button.py:82:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DoorbirdButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/doorbird/button.py:82:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "DoorbirdButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/doorbird/event.py + /homeassistant/components/doorbird/event.py:64:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "EventEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/dormakaba_dkey/binary_sensor.py + /homeassistant/components/dormakaba_dkey/binary_sensor.py:58:7 - error: Base classes for class "DormakabaDkeyBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/dormakaba_dkey/binary_sensor.py:70:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DormakabaDkeyBinarySensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/dormakaba_dkey/binary_sensor.py:70:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "DormakabaDkeyBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/dormakaba_dkey/config_flow.py + /homeassistant/components/dormakaba_dkey/config_flow.py:9:19 - error: "BleakError" is not exported from module "bleak" +   Import from "bleak.exc" instead (reportPrivateImportUsage) +/homeassistant/components/dormakaba_dkey/lock.py + /homeassistant/components/dormakaba_dkey/lock.py:26:7 - error: Base classes for class "DormakabaDkeyLock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/dormakaba_dkey/sensor.py + /homeassistant/components/dormakaba_dkey/sensor.py:41:7 - error: Base classes for class "DormakabaDkeySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/dovado/__init__.py + /homeassistant/components/dovado/__init__.py:47:9 - error: "dovado" is not defined (reportUndefinedVariable) +/homeassistant/components/dovado/sensor.py + /homeassistant/components/dovado/sensor.py:111:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "DovadoSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/dovado/sensor.py:141:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/dremel_3d_printer/binary_sensor.py + /homeassistant/components/dremel_3d_printer/binary_sensor.py:55:7 - error: Base classes for class "Dremel3DPrinterBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/dremel_3d_printer/binary_sensor.py:55:7 - error: Base classes for class "Dremel3DPrinterBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/dremel_3d_printer/binary_sensor.py:58:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "Dremel3DPrinterBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/dremel_3d_printer/binary_sensor.py:61:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/dremel_3d_printer/button.py + /homeassistant/components/dremel_3d_printer/button.py:30:18 - error: Argument of type "(api: Dremel3DPrinter) -> Dict[str, Any]" cannot be assigned to parameter "press_fn" of type "(Dremel3DPrinter) -> None" in function "__init__" +   Type "(api: Dremel3DPrinter) -> Dict[str, Any]" is not assignable to type "(Dremel3DPrinter) -> None" +     Function return type "Dict[str, Any]" is incompatible with type "None" +       "Dict[str, Any]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/dremel_3d_printer/button.py:35:18 - error: Argument of type "(api: Dremel3DPrinter) -> Dict[str, Any]" cannot be assigned to parameter "press_fn" of type "(Dremel3DPrinter) -> None" in function "__init__" +   Type "(api: Dremel3DPrinter) -> Dict[str, Any]" is not assignable to type "(Dremel3DPrinter) -> None" +     Function return type "Dict[str, Any]" is incompatible with type "None" +       "Dict[str, Any]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/dremel_3d_printer/button.py:40:18 - error: Argument of type "(api: Dremel3DPrinter) -> Dict[str, Any]" cannot be assigned to parameter "press_fn" of type "(Dremel3DPrinter) -> None" in function "__init__" +   Type "(api: Dremel3DPrinter) -> Dict[str, Any]" is not assignable to type "(Dremel3DPrinter) -> None" +     Function return type "Dict[str, Any]" is incompatible with type "None" +       "Dict[str, Any]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/dremel_3d_printer/button.py:57:7 - error: Base classes for class "Dremel3DPrinterButtonEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/dremel_3d_printer/button.py:57:7 - error: Base classes for class "Dremel3DPrinterButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/dremel_3d_printer/button.py:60:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "Dremel3DPrinterButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/dremel_3d_printer/camera.py + /homeassistant/components/dremel_3d_printer/camera.py:28:7 - error: Base classes for class "Dremel3D45Camera" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/dremel_3d_printer/config_flow.py + /homeassistant/components/dremel_3d_printer/config_flow.py:56:40 - error: "api" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/dremel_3d_printer/config_flow.py:58:46 - error: "api" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/dremel_3d_printer/entity.py + /homeassistant/components/dremel_3d_printer/entity.py:29:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/dremel_3d_printer/sensor.py + /homeassistant/components/dremel_3d_printer/sensor.py:247:7 - error: Base classes for class "Dremel3DPrinterSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/dremel_3d_printer/sensor.py:250:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "Dremel3DPrinterSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/dremel_3d_printer/sensor.py:253:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/dremel_3d_printer/sensor.py:260:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/drop_connect/__init__.py + /homeassistant/components/drop_connect/__init__.py:42:24 - error: Argument of type "ReceivePayloadType" cannot be assigned to parameter "payload" of type "str | bytes" in function "parse_drop_message" +   Type "ReceivePayloadType" is not assignable to type "str | bytes" +     Type "bytearray" is not assignable to type "str | bytes" +       "bytearray" is not assignable to "str" +       "bytearray" is not assignable to "bytes" +       Set disableBytesTypePromotions to false to enable type promotion behavior for "bytearray" and "memoryview" (reportArgumentType) +/homeassistant/components/drop_connect/binary_sensor.py + /homeassistant/components/drop_connect/binary_sensor.py:126:7 - error: Base classes for class "DROPBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/drop_connect/binary_sensor.py:138:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DROPBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/drop_connect/binary_sensor.py:138:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "DROPBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/drop_connect/binary_sensor.py:141:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/drop_connect/config_flow.py + /homeassistant/components/drop_connect/config_flow.py:51:39 - error: Argument of type "ReceivePayloadType" cannot be assigned to parameter "payload" of type "str | bytes" in function "parse_discovery" +   Type "ReceivePayloadType" is not assignable to type "str | bytes" +     Type "bytearray" is not assignable to type "str | bytes" +       "bytearray" is not assignable to "str" +       "bytearray" is not assignable to "bytes" +       Set disableBytesTypePromotions to false to enable type promotion behavior for "bytearray" and "memoryview" (reportArgumentType) +/homeassistant/components/drop_connect/select.py + /homeassistant/components/drop_connect/select.py:71:7 - error: Base classes for class "DROPSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/drop_connect/select.py:83:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DROPSelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/drop_connect/select.py:83:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "DROPSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/drop_connect/select.py:86:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/drop_connect/sensor.py + /homeassistant/components/drop_connect/sensor.py:263:7 - error: Base classes for class "DROPSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/drop_connect/sensor.py:275:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DROPSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/drop_connect/sensor.py:275:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "DROPSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/drop_connect/sensor.py:278:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/drop_connect/switch.py + /homeassistant/components/drop_connect/switch.py:86:7 - error: Base classes for class "DROPSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/drop_connect/switch.py:98:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DROPSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/drop_connect/switch.py:98:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "DROPSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/drop_connect/switch.py:101:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/droplet/sensor.py + /homeassistant/components/droplet/sensor.py:106:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DropletSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/droplet/sensor.py:106:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "DropletSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/droplet/sensor.py:119:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/droplet/sensor.py:124:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/droplet/sensor.py:129:9 - error: "last_reset" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/dsmr/sensor.py + /homeassistant/components/dsmr/sensor.py:907:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "DSMRSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/dsmr/sensor.py:971:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/dsmr/sensor.py:976:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/dsmr_reader/sensor.py + /homeassistant/components/dsmr_reader/sensor.py:37:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "DSMRReaderSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/dublin_bus_transport/sensor.py + /homeassistant/components/dublin_bus_transport/sensor.py:96:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dublin_bus_transport/sensor.py:101:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/dublin_bus_transport/sensor.py:106:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dublin_bus_transport/sensor.py:124:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/duckdns/__init__.py + /homeassistant/components/duckdns/__init__.py:141:46 - error: Argument of type "HassJob[(now: datetime), CoroutineType[Any, Any, None]]" cannot be assigned to parameter "action" of type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" in function "async_call_later" +   Type "HassJob[(now: datetime), CoroutineType[Any, Any, None]]" is not assignable to type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" +     "HassJob[(now: datetime), CoroutineType[Any, Any, None]]" is not assignable to "HassJob[(datetime), Coroutine[Any, Any, None] | None]" +       Type parameter "_R_co@HassJob" is invariant, but "CoroutineType[Any, Any, None]" is not the same as "Coroutine[Any, Any, None] | None" +     Type "HassJob[(now: datetime), CoroutineType[Any, Any, None]]" is not assignable to type "(datetime) -> (Coroutine[Any, Any, None] | None)" (reportArgumentType) + /homeassistant/components/duckdns/__init__.py:145:5 - error: No overloads for "async_run_hass_job" match the provided arguments (reportCallIssue) + /homeassistant/components/duckdns/__init__.py:145:29 - error: Argument of type "HassJob[(now: datetime), CoroutineType[Any, Any, None]]" cannot be assigned to parameter "hassjob" of type "HassJob[..., Coroutine[Any, Any, _R@async_run_hass_job] | _R@async_run_hass_job]" in function "async_run_hass_job" +   "HassJob[(now: datetime), CoroutineType[Any, Any, None]]" is not assignable to "HassJob[..., Coroutine[Any, Any, _R@async_run_hass_job] | _R@async_run_hass_job]" +     Type parameter "_R_co@HassJob" is invariant, but "CoroutineType[Any, Any, None]" is not the same as "Coroutine[Any, Any, _R@async_run_hass_job] | _R@async_run_hass_job" (reportArgumentType) +/homeassistant/components/duke_energy/coordinator.py + /homeassistant/components/duke_energy/coordinator.py:110:21 - error: Could not access item in TypedDict +   "start" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/duke_energy/coordinator.py:125:47 - error: Could not access item in TypedDict +   "sum" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/duke_energy/coordinator.py:126:35 - error: Could not access item in TypedDict +   "start" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/dunehd/media_player.py + /homeassistant/components/dunehd/media_player.py:74:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dunehd/media_player.py:88:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/dunehd/media_player.py:93:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dunehd/media_player.py:98:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dunehd/media_player.py:103:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/dunehd/media_player.py:109:36 - error: Cannot access attribute "volume_up" for class "DuneHDPlayer" +   Attribute "volume_up" is unknown (reportAttributeAccessIssue) + /homeassistant/components/dunehd/media_player.py:113:36 - error: Cannot access attribute "volume_down" for class "DuneHDPlayer" +   Attribute "volume_down" is unknown (reportAttributeAccessIssue) + /homeassistant/components/dunehd/media_player.py:163:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/duotecno/binary_sensor.py + /homeassistant/components/duotecno/binary_sensor.py:27:7 - error: Base classes for class "DuotecnoBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/duotecno/binary_sensor.py:33:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/duotecno/climate.py + /homeassistant/components/duotecno/climate.py:44:7 - error: Base classes for class "DuotecnoClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/duotecno/climate.py:60:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/duotecno/climate.py:65:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/duotecno/climate.py:70:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/duotecno/climate.py:75:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/duotecno/climate.py:80:15 - error: Method "async_set_temperature" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/duotecno/climate.py:87:15 - error: Method "async_set_preset_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/duotecno/climate.py:92:15 - error: Method "async_set_hvac_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/duotecno/cover.py + /homeassistant/components/duotecno/cover.py:29:7 - error: Base classes for class "DuotecnoCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/duotecno/cover.py:38:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/duotecno/cover.py:43:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/duotecno/cover.py:48:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/duotecno/cover.py:53:15 - error: Method "async_open_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/duotecno/cover.py:58:15 - error: Method "async_close_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/duotecno/cover.py:63:15 - error: Method "async_stop_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/duotecno/entity.py + /homeassistant/components/duotecno/entity.py:45:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/duotecno/light.py + /homeassistant/components/duotecno/light.py:26:7 - error: Base classes for class "DuotecnoLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/duotecno/light.py:34:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/duotecno/light.py:39:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/duotecno/light.py:44:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/duotecno/light.py:55:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/duotecno/switch.py + /homeassistant/components/duotecno/switch.py:27:7 - error: Base classes for class "DuotecnoSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/duotecno/switch.py:33:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/duotecno/switch.py:38:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/duotecno/switch.py:43:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/dwd_weather_warnings/config_flow.py + /homeassistant/components/dwd_weather_warnings/config_flow.py:75:35 - error: "position" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/dwd_weather_warnings/coordinator.py + /homeassistant/components/dwd_weather_warnings/coordinator.py:70:21 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/dwd_weather_warnings/coordinator.py:71:21 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) +/homeassistant/components/dwd_weather_warnings/sensor.py + /homeassistant/components/dwd_weather_warnings/sensor.py:99:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/dwd_weather_warnings/sensor.py:107:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dwd_weather_warnings/sensor.py:120:40 - error: Argument of type "Any | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "Any | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /homeassistant/components/dwd_weather_warnings/sensor.py:122:37 - error: Argument of type "Any | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "Any | None" is not assignable to type "Iterable[_T@enumerate]" +     "None" is incompatible with protocol "Iterable[_T@enumerate]" +       "__iter__" is not present (reportArgumentType) + /homeassistant/components/dwd_weather_warnings/sensor.py:143:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/dynalite/bridge.py + /homeassistant/components/dynalite/bridge.py:60:60 - error: Cannot access attribute "unique_id" for class "DynaliteBaseDevice" +   Attribute "unique_id" is unknown (reportAttributeAccessIssue) + /homeassistant/components/dynalite/bridge.py:110:56 - error: Cannot access attribute "category" for class "DynaliteBaseDevice" +   Attribute "category" is unknown (reportAttributeAccessIssue) + /homeassistant/components/dynalite/bridge.py:117:55 - error: Argument of type "list[DynaliteBaseDevice]" cannot be assigned to parameter "iterable" of type "Iterable[str]" in function "extend" +   "list[DynaliteBaseDevice]" is not assignable to "Iterable[str]" +     Type parameter "_T_co@Iterable" is covariant, but "DynaliteBaseDevice" is not a subtype of "str" +       "DynaliteBaseDevice" is not assignable to "str" (reportArgumentType) +/homeassistant/components/dynalite/cover.py + /homeassistant/components/dynalite/cover.py:36:7 - error: Base classes for class "DynaliteCover" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/dynalite/cover.py:36:7 - error: Base classes for class "DynaliteCover" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/dynalite/cover.py:36:7 - error: Base classes for class "DynaliteCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/dynalite/cover.py:46:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dynalite/cover.py:51:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dynalite/cover.py:56:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dynalite/cover.py:61:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dynalite/cover.py:92:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/dynalite/entity.py + /homeassistant/components/dynalite/entity.py:52:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dynalite/entity.py:57:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/dynalite/entity.py:62:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/dynalite/light.py + /homeassistant/components/dynalite/light.py:24:7 - error: Base classes for class "DynaliteLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/dynalite/light.py:24:7 - error: Base classes for class "DynaliteLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/dynalite/light.py:24:7 - error: Base classes for class "DynaliteLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/dynalite/light.py:31:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/dynalite/light.py:36:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/dynalite/switch.py + /homeassistant/components/dynalite/switch.py:25:7 - error: Base classes for class "DynaliteSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/dynalite/switch.py:25:7 - error: Base classes for class "DynaliteSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/dynalite/switch.py:25:7 - error: Base classes for class "DynaliteSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/dynalite/switch.py:29:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/eafm/sensor.py + /homeassistant/components/eafm/sensor.py:97:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/eafm/sensor.py:108:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/eafm/sensor.py:127:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/eafm/sensor.py:135:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/easyenergy/sensor.py + /homeassistant/components/easyenergy/sensor.py:226:7 - error: Base classes for class "EasyEnergySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/easyenergy/sensor.py:243:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "EasyEnergySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/easyenergy/sensor.py:243:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "EasyEnergySensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/easyenergy/sensor.py:262:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/ebox/sensor.py + /homeassistant/components/ebox/sensor.py:11:6 - error: Import "pyebox" could not be resolved (reportMissingImports) + /homeassistant/components/ebox/sensor.py:12:6 - error: Import "pyebox.client" could not be resolved (reportMissingImports) +/homeassistant/components/ebusd/__init__.py + /homeassistant/components/ebusd/__init__.py:5:8 - error: Import "ebusdpy" could not be resolved (reportMissingImports) +/homeassistant/components/ebusd/sensor.py + /homeassistant/components/ebusd/sensor.py:66:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ebusd/sensor.py:71:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/ebusd/sensor.py:76:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ebusd/sensor.py:99:9 - error: "device_class" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[SensorDeviceClass | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ebusd/sensor.py:104:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ebusd/sensor.py:109:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ecoal_boiler/__init__.py + /homeassistant/components/ecoal_boiler/__init__.py:5:6 - error: Import "ecoaliface.simple" could not be resolved (reportMissingImports) +/homeassistant/components/ecobee/__init__.py + /homeassistant/components/ecobee/__init__.py:75:35 - error: Argument of type "Literal['API_KEY']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['API_KEY']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['API_KEY']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['API_KEY']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/__init__.py:75:35 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/ecobee/__init__.py:76:41 - error: Argument of type "Literal['REFRESH_TOKEN']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['REFRESH_TOKEN']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['REFRESH_TOKEN']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['REFRESH_TOKEN']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/__init__.py:76:41 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) +/homeassistant/components/ecobee/binary_sensor.py + /homeassistant/components/ecobee/binary_sensor.py:25:28 - error: Argument of type "str | Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "str | Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /homeassistant/components/ecobee/binary_sensor.py:27:25 - error: Argument of type "Literal['capability']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['capability']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['capability']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['capability']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/binary_sensor.py:28:20 - error: Argument of type "Literal['type']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['type']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['type']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['type']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/binary_sensor.py:31:53 - error: Argument of type "Literal['name']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['name']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['name']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['name']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/binary_sensor.py:49:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/binary_sensor.py:60:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/binary_sensor.py:92:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/ecobee/climate.py + /homeassistant/components/ecobee/climate.py:214:28 - error: Argument of type "str | Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "str | Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /homeassistant/components/ecobee/climate.py:216:12 - error: Argument of type "Literal['modelNumber']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['modelNumber']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['modelNumber']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['modelNumber']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:225:17 - error: Argument of type "Literal['name']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['name']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['name']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['name']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:226:17 - error: Argument of type "Literal['modelNumber']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['modelNumber']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['modelNumber']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['modelNumber']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:228:49 - error: Argument of type "str" cannot be assigned to parameter "thermostat" of type "dict[Unknown, Unknown]" in function "__init__" +   "str" is not assignable to "dict[Unknown, Unknown]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:404:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/climate.py:406:16 - error: Argument of type "Literal['runtime']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['runtime']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['runtime']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['runtime']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:406:16 - error: Argument of type "Literal['connected']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['connected']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['connected']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['connected']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:406:16 - error: Type "Unknown | str" is not assignable to return type "bool" +   Type "Unknown | str" is not assignable to type "bool" +     "str" is not assignable to "bool" (reportReturnType) + /homeassistant/components/ecobee/climate.py:409:9 - error: "supported_features" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[ClimateEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/climate.py:421:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/climate.py:425:45 - error: Argument of type "Literal['modelNumber']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['modelNumber']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['modelNumber']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['modelNumber']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:431:35 - error: Argument of type "Literal['identifier']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['identifier']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['identifier']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['identifier']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:434:18 - error: Argument of type "Literal['name']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['name']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['name']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['name']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:438:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/climate.py:440:16 - error: Argument of type "Literal['runtime']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['runtime']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['runtime']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['runtime']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:440:16 - error: Argument of type "Literal['actualTemperature']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['actualTemperature']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['actualTemperature']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['actualTemperature']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:440:16 - error: Operator "/" not supported for types "Unknown | str" and "float" +   Operator "/" not supported for types "str" and "float" when expected type is "float" (reportOperatorIssue) + /homeassistant/components/ecobee/climate.py:443:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/climate.py:446:20 - error: Argument of type "Literal['runtime']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['runtime']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['runtime']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['runtime']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:446:20 - error: Argument of type "Literal['desiredHeat']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['desiredHeat']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['desiredHeat']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['desiredHeat']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:446:20 - error: Operator "/" not supported for types "Unknown | str" and "float" +   Operator "/" not supported for types "str" and "float" when expected type is "float | None" (reportOperatorIssue) + /homeassistant/components/ecobee/climate.py:450:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/climate.py:453:20 - error: Argument of type "Literal['runtime']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['runtime']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['runtime']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['runtime']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:453:20 - error: Argument of type "Literal['desiredCool']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['desiredCool']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['desiredCool']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['desiredCool']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:453:20 - error: Operator "/" not supported for types "Unknown | str" and "float" +   Operator "/" not supported for types "str" and "float" when expected type is "float | None" (reportOperatorIssue) + /homeassistant/components/ecobee/climate.py:457:9 - error: "target_temperature_step" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/climate.py:464:16 - error: Argument of type "Literal['settings']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['settings']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['settings']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['settings']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:464:16 - error: Type "Unknown | str" is not assignable to return type "dict[str, Any]" +   Type "Unknown | str" is not assignable to type "dict[str, Any]" +     "str" is not assignable to "dict[str, Any]" (reportReturnType) + /homeassistant/components/ecobee/climate.py:475:9 - error: "target_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/climate.py:478:20 - error: Argument of type "Literal['runtime']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['runtime']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['runtime']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['runtime']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:478:20 - error: Argument of type "Literal['desiredHumidity']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['desiredHumidity']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['desiredHumidity']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['desiredHumidity']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:478:20 - error: Type "Unknown | str" is not assignable to return type "int | None" +   Type "Unknown | str" is not assignable to type "int | None" +     Type "str" is not assignable to type "int | None" +       "str" is not assignable to "int" +       "str" is not assignable to "None" (reportReturnType) + /homeassistant/components/ecobee/climate.py:482:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/climate.py:487:20 - error: Argument of type "Literal['runtime']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['runtime']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['runtime']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['runtime']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:487:20 - error: Argument of type "Literal['desiredHeat']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['desiredHeat']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['desiredHeat']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['desiredHeat']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:487:20 - error: Operator "/" not supported for types "Unknown | str" and "float" +   Operator "/" not supported for types "str" and "float" when expected type is "float | None" (reportOperatorIssue) + /homeassistant/components/ecobee/climate.py:489:20 - error: Argument of type "Literal['runtime']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['runtime']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['runtime']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['runtime']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:489:20 - error: Argument of type "Literal['desiredCool']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['desiredCool']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['desiredCool']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['desiredCool']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:489:20 - error: Operator "/" not supported for types "Unknown | str" and "float" +   Operator "/" not supported for types "str" and "float" when expected type is "float | None" (reportOperatorIssue) + /homeassistant/components/ecobee/climate.py:500:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/climate.py:505:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/climate.py:507:18 - error: Argument of type "Literal['events']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['events']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['events']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['events']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:509:20 - error: Argument of type "Literal['running']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['running']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['running']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['running']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:512:16 - error: Argument of type "Literal['type']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['type']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['type']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['type']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:513:20 - error: Argument of type "Literal['holdClimateRef']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['holdClimateRef']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['holdClimateRef']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['holdClimateRef']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:514:21 - error: Argument of type "Literal['startDate']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['startDate']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['startDate']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['startDate']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:514:41 - error: Argument of type "Literal['endDate']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['endDate']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['endDate']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['endDate']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:518:54 - error: Argument of type "Literal['holdClimateRef']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['holdClimateRef']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['holdClimateRef']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['holdClimateRef']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:523:16 - error: Argument of type "Literal['type']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['type']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['type']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['type']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:525:24 - error: Argument of type "Literal['type']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['type']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['type']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['type']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:526:16 - error: Argument of type "Literal['type']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['type']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['type']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['type']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:527:33 - error: Argument of type "Literal['name']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['name']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['name']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['name']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:531:13 - error: Argument of type "Literal['program']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['program']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['program']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['program']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:531:13 - error: Argument of type "Literal['currentClimateRef']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['currentClimateRef']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['currentClimateRef']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['currentClimateRef']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:538:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/climate.py:543:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/climate.py:546:24 - error: Argument of type "Literal['runtime']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['runtime']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['runtime']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['runtime']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:546:24 - error: Argument of type "Literal['actualHumidity']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['actualHumidity']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['actualHumidity']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['actualHumidity']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:551:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/climate.py:583:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/climate.py:585:18 - error: Argument of type "Literal['equipmentStatus']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['equipmentStatus']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['equipmentStatus']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['equipmentStatus']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:589:17 - error: Argument of type "Literal['program']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['program']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['program']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['program']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:589:17 - error: Argument of type "Literal['currentClimateRef']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['currentClimateRef']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['currentClimateRef']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['currentClimateRef']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:600:40 - error: Cannot access attribute "get" for class "str" +   Attribute "get" is unknown (reportAttributeAccessIssue) + /homeassistant/components/ecobee/climate.py:616:40 - error: Cannot access attribute "get" for class "str" +   Attribute "get" is unknown (reportAttributeAccessIssue) + /homeassistant/components/ecobee/climate.py:660:69 - error: Argument of type "Unknown | str | None" cannot be assigned to parameter "vacation" of type "str" in function "delete_vacation" +   Type "Unknown | str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:697:9 - error: "preset_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/climate.py:710:13 - error: Argument of type "Literal['climateRef']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['climateRef']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['climateRef']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['climateRef']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:710:36 - error: Argument of type "Literal['name']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['name']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['name']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['name']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:711:28 - error: Argument of type "Literal['program']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['program']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['program']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['program']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:711:28 - error: Argument of type "Literal['climates']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['climates']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['climates']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['climates']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:801:62 - error: Argument of type "int" cannot be assigned to parameter "humidity" of type "str" in function "set_humidity" +   "int" is not assignable to "str" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:850:45 - error: Cannot access attribute "get" for class "str" +   Attribute "get" is unknown (reportAttributeAccessIssue) + /homeassistant/components/ecobee/climate.py:908:36 - error: Argument of type "str | None" cannot be assigned to parameter "climate_name" of type "str" in function "update_climate_sensors" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:914:20 - error: Argument of type "Literal['program']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['program']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['program']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['program']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:914:20 - error: Argument of type "Literal['climates']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['climates']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['climates']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['climates']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:916:24 - error: Cannot access attribute "get" for class "str" +   Attribute "get" is unknown (reportAttributeAccessIssue) + /homeassistant/components/ecobee/climate.py:917:25 - error: Argument of type "Literal['name']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['name']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['name']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['name']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:917:54 - error: Argument of type "Literal['sensors']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['sensors']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['sensors']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['sensors']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/climate.py:926:13 - error: Argument of type "list[str | None]" cannot be assigned to parameter "iterable" of type "Iterable[SupportsRichComparisonT@sorted]" in function "sorted" (reportArgumentType) +/homeassistant/components/ecobee/config_flow.py + /homeassistant/components/ecobee/config_flow.py:64:38 - error: Argument of type "dict[str, str | Unknown | None]" cannot be assigned to parameter "description_placeholders" of type "Mapping[str, str] | None" in function "async_show_form" +   Type "dict[str, str | Unknown | None]" is not assignable to type "Mapping[str, str] | None" +     "dict[str, str | Unknown | None]" is not assignable to "Mapping[str, str]" +       Type parameter "_VT_co@Mapping" is covariant, but "str | Unknown | None" is not a subtype of "str" +         Type "str | Unknown | None" is not assignable to type "str" +           "None" is not assignable to "str" +     "dict[str, str | Unknown | None]" is not assignable to "None" (reportArgumentType) +/homeassistant/components/ecobee/entity.py + /homeassistant/components/ecobee/entity.py:36:16 - error: Type "str" is not assignable to return type "dict[str, Any]" +   "str" is not assignable to "dict[str, Any]" (reportReturnType) + /homeassistant/components/ecobee/entity.py:39:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/ecobee/humidifier.py + /homeassistant/components/ecobee/humidifier.py:38:28 - error: Argument of type "str | Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "str | Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /homeassistant/components/ecobee/humidifier.py:40:12 - error: Argument of type "Literal['settings']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['settings']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['settings']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['settings']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/humidifier.py:40:12 - error: Argument of type "Literal['hasHumidifier']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['hasHumidifier']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['hasHumidifier']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['hasHumidifier']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/humidifier.py:74:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/humidifier.py:91:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/humidifier.py:107:9 - error: "action" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[HumidifierAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/humidifier.py:115:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/humidifier.py:120:9 - error: "mode" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/humidifier.py:125:9 - error: "target_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/humidifier.py:130:9 - error: "current_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ecobee/notify.py + /homeassistant/components/ecobee/notify.py:21:64 - error: Argument of type "str | Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "str | Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /homeassistant/components/ecobee/notify.py:25:7 - error: Base classes for class "EcobeeNotifyEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ecobee/number.py + /homeassistant/components/ecobee/number.py:38:16 - error: Argument of type "(data: EcobeeData, id: int, min_time: int) -> None" cannot be assigned to parameter "set_fn" of type "(EcobeeData, int, int) -> Awaitable[Unknown]" in function "__init__" +   Type "(data: EcobeeData, id: int, min_time: int) -> None" is not assignable to type "(EcobeeData, int, int) -> Awaitable[Unknown]" +     Function return type "None" is incompatible with type "Awaitable[Unknown]" +       "None" is incompatible with protocol "Awaitable[Unknown]" +         "__await__" is not present (reportArgumentType) + /homeassistant/components/ecobee/number.py:46:16 - error: Argument of type "(data: EcobeeData, id: int, min_time: int) -> None" cannot be assigned to parameter "set_fn" of type "(EcobeeData, int, int) -> Awaitable[Unknown]" in function "__init__" +   Type "(data: EcobeeData, id: int, min_time: int) -> None" is not assignable to type "(EcobeeData, int, int) -> Awaitable[Unknown]" +     Function return type "None" is incompatible with type "Awaitable[Unknown]" +       "None" is incompatible with protocol "Awaitable[Unknown]" +         "__await__" is not present (reportArgumentType) + /homeassistant/components/ecobee/number.py:65:44 - error: Argument of type "str | Unknown | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "str | Unknown | None" is not assignable to type "Iterable[str]" +     "None" is incompatible with protocol "Iterable[str]" +       "__iter__" is not present (reportArgumentType) + /homeassistant/components/ecobee/number.py:65:44 - error: Argument of type "str | Unknown | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "str | Unknown | None" is not assignable to type "Iterable[_T@enumerate]" +     "None" is incompatible with protocol "Iterable[_T@enumerate]" +       "__iter__" is not present (reportArgumentType) + /homeassistant/components/ecobee/number.py:66:12 - error: Argument of type "Literal['settings']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['settings']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['settings']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['settings']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/number.py:66:12 - error: Argument of type "Literal['ventilatorType']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['ventilatorType']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['ventilatorType']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['ventilatorType']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/number.py:74:48 - error: Argument of type "str | Unknown | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "str | Unknown | None" is not assignable to type "Iterable[str]" +     "None" is incompatible with protocol "Iterable[str]" +       "__iter__" is not present (reportArgumentType) + /homeassistant/components/ecobee/number.py:74:48 - error: Argument of type "str | Unknown | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "str | Unknown | None" is not assignable to type "Iterable[_T@enumerate]" +     "None" is incompatible with protocol "Iterable[_T@enumerate]" +       "__iter__" is not present (reportArgumentType) + /homeassistant/components/ecobee/number.py:75:16 - error: Argument of type "Literal['settings']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['settings']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['settings']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['settings']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/number.py:75:16 - error: Argument of type "Literal['hasHeatPump']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['hasHeatPump']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['hasHeatPump']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['hasHeatPump']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/number.py:82:7 - error: Base classes for class "EcobeeVentilatorMinTime" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/number.py:101:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "EcobeeNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/number.py:101:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "EcobeeNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/number.py:122:7 - error: Base classes for class "EcobeeCompressorMinTemp" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/number.py:168:75 - error: Argument of type "float" cannot be assigned to parameter "threshold" of type "int" in function "set_aux_cutover_threshold" +   "float" is not assignable to "int" (reportArgumentType) +/homeassistant/components/ecobee/sensor.py + /homeassistant/components/ecobee/sensor.py:82:28 - error: Argument of type "Literal['name']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['name']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['name']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['name']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/sensor.py:83:32 - error: Argument of type "str | Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "str | Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /homeassistant/components/ecobee/sensor.py:85:21 - error: Argument of type "Literal['capability']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['capability']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['capability']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['capability']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/sensor.py:87:31 - error: Argument of type "Literal['type']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['type']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['type']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['type']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/sensor.py:108:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "EcobeeSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/sensor.py:115:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/sensor.py:126:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/sensor.py:158:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/sensor.py:164:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/ecobee/switch.py + /homeassistant/components/ecobee/switch.py:37:48 - error: Argument of type "Literal['location']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['location']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['location']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['location']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/switch.py:37:48 - error: Argument of type "Literal['timeZone']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['timeZone']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['timeZone']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['timeZone']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/switch.py:40:44 - error: Argument of type "str | Unknown | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "str | Unknown | None" is not assignable to type "Iterable[str]" +     "None" is incompatible with protocol "Iterable[str]" +       "__iter__" is not present (reportArgumentType) + /homeassistant/components/ecobee/switch.py:40:44 - error: Argument of type "str | Unknown | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "str | Unknown | None" is not assignable to type "Iterable[_T@enumerate]" +     "None" is incompatible with protocol "Iterable[_T@enumerate]" +       "__iter__" is not present (reportArgumentType) + /homeassistant/components/ecobee/switch.py:41:12 - error: Argument of type "Literal['settings']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['settings']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['settings']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['settings']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/switch.py:41:12 - error: Argument of type "Literal['ventilatorType']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['ventilatorType']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['ventilatorType']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['ventilatorType']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/switch.py:47:48 - error: Argument of type "str | Unknown | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "str | Unknown | None" is not assignable to type "Iterable[str]" +     "None" is incompatible with protocol "Iterable[str]" +       "__iter__" is not present (reportArgumentType) + /homeassistant/components/ecobee/switch.py:47:48 - error: Argument of type "str | Unknown | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "str | Unknown | None" is not assignable to type "Iterable[_T@enumerate]" +     "None" is incompatible with protocol "Iterable[_T@enumerate]" +       "__iter__" is not present (reportArgumentType) + /homeassistant/components/ecobee/switch.py:48:16 - error: Argument of type "Literal['settings']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['settings']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['settings']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['settings']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/switch.py:48:16 - error: Argument of type "Literal['hasHeatPump']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['hasHeatPump']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['hasHeatPump']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['hasHeatPump']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/switch.py:55:7 - error: Base classes for class "EcobeeVentilator20MinSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/switch.py:106:7 - error: Base classes for class "EcobeeSwitchAuxHeatOnly" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/switch.py:133:36 - error: Argument of type "str | Any | None" cannot be assigned to parameter "hvac_mode" of type "str" in function "set_hvac_mode" +   Type "str | Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/ecobee/switch.py:137:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ecobee/weather.py + /homeassistant/components/ecobee/weather.py:48:28 - error: Argument of type "str | Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "str | Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /homeassistant/components/ecobee/weather.py:51:44 - error: Argument of type "Literal['name']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['name']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['name']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['name']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/ecobee/weather.py:84:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/weather.py:102:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/weather.py:110:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/weather.py:118:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/weather.py:127:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/weather.py:135:9 - error: "native_visibility" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/weather.py:143:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/weather.py:151:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/weather.py:159:9 - error: "attribution" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecobee/weather.py:170:12 - error: Operator "not in" not supported for types "Literal['forecasts']" and "Any | None" +   Operator "not in" not supported for types "Literal['forecasts']" and "None" (reportOperatorIssue) + /homeassistant/components/ecobee/weather.py:176:42 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) +/homeassistant/components/ecoforest/number.py + /homeassistant/components/ecoforest/number.py:53:7 - error: Base classes for class "EcoforestNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecoforest/number.py:56:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "EcoforestNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ecoforest/number.py:59:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ecoforest/sensor.py + /homeassistant/components/ecoforest/sensor.py:158:7 - error: Base classes for class "EcoforestSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecoforest/sensor.py:158:7 - error: Base classes for class "EcoforestSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecoforest/sensor.py:158:7 - error: Base classes for class "EcoforestSensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecoforest/sensor.py:158:7 - error: Base classes for class "EcoforestSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecoforest/sensor.py:158:7 - error: Base classes for class "EcoforestSensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecoforest/sensor.py:158:7 - error: Base classes for class "EcoforestSensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecoforest/sensor.py:158:7 - error: Base classes for class "EcoforestSensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecoforest/sensor.py:161:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "EcoforestSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ecoforest/sensor.py:164:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/ecoforest/switch.py + /homeassistant/components/ecoforest/switch.py:53:7 - error: Base classes for class "EcoforestSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecoforest/switch.py:56:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "EcoforestSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ecoforest/switch.py:59:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/econet/binary_sensor.py + /homeassistant/components/econet/binary_sensor.py:62:7 - error: Base classes for class "EcoNetBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/econet/binary_sensor.py:62:7 - error: Base classes for class "EcoNetBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/econet/binary_sensor.py:77:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/econet/climate.py + /homeassistant/components/econet/climate.py:68:30 - error: Argument of type "Equipment" cannot be assigned to parameter "thermostat" of type "Thermostat" in function "__init__" +   "Equipment" is not assignable to "Thermostat" (reportArgumentType) + /homeassistant/components/econet/climate.py:74:7 - error: Base classes for class "EcoNetThermostat" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/econet/climate.py:74:7 - error: Base classes for class "EcoNetThermostat" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/econet/climate.py:101:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/econet/climate.py:106:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/econet/climate.py:111:9 - error: "target_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/econet/climate.py:118:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/econet/climate.py:127:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/econet/climate.py:134:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/econet/climate.py:151:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/econet/climate.py:175:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/econet/climate.py:189:9 - error: "fan_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/econet/climate.py:208:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/econet/climate.py:213:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/econet/climate.py:218:9 - error: "min_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/econet/climate.py:223:9 - error: "max_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/econet/entity.py + /homeassistant/components/econet/entity.py:37:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/econet/entity.py:42:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/econet/sensor.py + /homeassistant/components/econet/sensor.py:104:7 - error: Base classes for class "EcoNetSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/econet/sensor.py:104:7 - error: Base classes for class "EcoNetSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/econet/sensor.py:121:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/econet/switch.py + /homeassistant/components/econet/switch.py:29:33 - error: Argument of type "Equipment" cannot be assigned to parameter "thermostat" of type "Thermostat" in function "__init__" +   "Equipment" is not assignable to "Thermostat" (reportArgumentType) + /homeassistant/components/econet/switch.py:34:7 - error: Base classes for class "EcoNetSwitchAuxHeatOnly" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/econet/switch.py:34:7 - error: Base classes for class "EcoNetSwitchAuxHeatOnly" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/econet/switch.py:54:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/econet/water_heater.py + /homeassistant/components/econet/water_heater.py:57:31 - error: Argument of type "Equipment" cannot be assigned to parameter "water_heater" of type "WaterHeater" in function "__init__" +   "Equipment" is not assignable to "WaterHeater" (reportArgumentType) + /homeassistant/components/econet/water_heater.py:64:7 - error: Base classes for class "EcoNetWaterHeater" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/econet/water_heater.py:64:7 - error: Base classes for class "EcoNetWaterHeater" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/econet/water_heater.py:76:9 - error: "is_away_mode_on" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/econet/water_heater.py:81:9 - error: "current_operation" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/econet/water_heater.py:91:9 - error: "operation_list" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/econet/water_heater.py:105:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/econet/water_heater.py:134:9 - error: "target_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ecovacs/binary_sensor.py + /homeassistant/components/ecovacs/binary_sensor.py:74:7 - error: Base classes for class "EcovacsBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/binary_sensor.py:80:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "EcovacsBinarySensorEntityDescription[Unknown]" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/binary_sensor.py:93:7 - error: Base classes for class "EcovacsLegacyBatteryChargingSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/binary_sensor.py:116:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ecovacs/button.py + /homeassistant/components/ecovacs/button.py:111:7 - error: Base classes for class "EcovacsButtonEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/button.py:117:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "EcovacsLifespanButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/button.py:124:7 - error: Base classes for class "EcovacsResetLifespanButtonEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/button.py:130:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "EcovacsLifespanButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/button.py:139:7 - error: Base classes for class "EcovacsStationActionButtonEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/button.py:145:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "EcovacsStationActionButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/ecovacs/config_flow.py + /homeassistant/components/ecovacs/config_flow.py:47:20 - error: Argument missing for parameter "v" (reportCallIssue) +/homeassistant/components/ecovacs/controller.py + /homeassistant/components/ecovacs/controller.py:105:21 - error: Could not access item in TypedDict +   "deviceName" is not a required key in "ApiDeviceInfo", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/ecovacs/entity.py + /homeassistant/components/ecovacs/entity.py:46:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/entity.py:150:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/ecovacs/event.py + /homeassistant/components/ecovacs/event.py:29:7 - error: Base classes for class "EcovacsLastJobEventEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ecovacs/image.py + /homeassistant/components/ecovacs/image.py:36:7 - error: Base classes for class "EcovacsMap" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ecovacs/lawn_mower.py + /homeassistant/components/ecovacs/lawn_mower.py:53:7 - error: Base classes for class "EcovacsMower" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ecovacs/number.py + /homeassistant/components/ecovacs/number.py:110:7 - error: Base classes for class "EcovacsNumberEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/number.py:116:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "EcovacsNumberEntityDescription[Unknown]" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/ecovacs/select.py + /homeassistant/components/ecovacs/select.py:96:7 - error: Base classes for class "EcovacsSelectEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/select.py:103:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "EcovacsSelectEntityDescription[Unknown]" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/select.py:134:7 - error: Base classes for class "EcovacsActiveMapSelectEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ecovacs/sensor.py + /homeassistant/components/ecovacs/sensor.py:263:7 - error: Base classes for class "EcovacsSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/sensor.py:269:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "EcovacsSensorEntityDescription[Unknown]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/sensor.py:307:7 - error: Base classes for class "EcovacsLifespanSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/sensor.py:313:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "EcovacsLifespanSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/sensor.py:327:7 - error: Base classes for class "EcovacsErrorSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/sensor.py:335:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/sensor.py:355:7 - error: Base classes for class "EcovacsLegacyBatterySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/sensor.py:379:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/sensor.py:386:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/sensor.py:393:7 - error: Base classes for class "EcovacsLegacyLifespanSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/sensor.py:405:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "EcovacsLegacyLifespanSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/sensor.py:405:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "EcovacsLegacyLifespanSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/ecovacs/switch.py + /homeassistant/components/ecovacs/switch.py:126:7 - error: Base classes for class "EcovacsSwitchEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/switch.py:132:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "EcovacsSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/ecovacs/vacuum.py + /homeassistant/components/ecovacs/vacuum.py:68:7 - error: Base classes for class "EcovacsLegacyVacuum" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/vacuum.py:114:9 - error: "activity" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[VacuumActivity | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/vacuum.py:134:9 - error: "fan_speed" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/vacuum.py:139:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/vacuum.py:174:46 - error: Argument of type "Any | None" cannot be assigned to parameter "mode" of type "str" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/ecovacs/vacuum.py:207:7 - error: Base classes for class "EcovacsVacuum" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecovacs/vacuum.py:267:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ecowitt/binary_sensor.py + /homeassistant/components/ecowitt/binary_sensor.py:66:7 - error: Base classes for class "EcowittBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecowitt/binary_sensor.py:77:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ecowitt/entity.py + /homeassistant/components/ecowitt/entity.py:46:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/ecowitt/sensor.py + /homeassistant/components/ecowitt/sensor.py:310:7 - error: Base classes for class "EcowittSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ecowitt/sensor.py:321:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/edimax/switch.py + /homeassistant/components/edimax/switch.py:7:6 - error: Import "pyedimax.smartplug" could not be resolved (reportMissingImports) + /homeassistant/components/edimax/switch.py:62:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/edimax/switch.py:67:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/edimax/switch.py:72:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/edl21/sensor.py + /homeassistant/components/edl21/sensor.py:437:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/edl21/sensor.py:442:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/egardia/__init__.py + /homeassistant/components/egardia/__init__.py:5:6 - error: Import "pythonegardia" could not be resolved (reportMissingImports) +/homeassistant/components/egardia/alarm_control_panel.py + /homeassistant/components/egardia/alarm_control_panel.py:86:9 - error: "should_poll" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/egardia/binary_sensor.py + /homeassistant/components/egardia/binary_sensor.py:68:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/egardia/binary_sensor.py:73:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/egardia/binary_sensor.py:78:9 - error: "device_class" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[BinarySensorDeviceClass | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/eheimdigital/climate.py + /homeassistant/components/eheimdigital/climate.py:58:7 - error: Base classes for class "EheimDigitalHeaterClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/eheimdigital/climate.py:86:15 - error: Method "async_set_preset_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/eheimdigital/climate.py:94:15 - error: Method "async_set_temperature" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/eheimdigital/climate.py:100:15 - error: Method "async_set_hvac_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/eheimdigital/light.py + /homeassistant/components/eheimdigital/light.py:86:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/eheimdigital/light.py:91:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/eheimdigital/light.py:103:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/eheimdigital/number.py + /homeassistant/components/eheimdigital/number.py:166:7 - error: Base classes for class "EheimDigitalNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/eheimdigital/number.py:181:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "EheimDigitalNumberDescription[_DeviceT@EheimDigitalNumber]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/eheimdigital/number.py:181:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "EheimDigitalNumberDescription[_DeviceT@EheimDigitalNumber]" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/eheimdigital/number.py:186:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/eheimdigital/select.py + /homeassistant/components/eheimdigital/select.py:78:7 - error: Base classes for class "EheimDigitalSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/eheimdigital/select.py:93:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "EheimDigitalSelectDescription[_DeviceT@EheimDigitalSelect]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/eheimdigital/select.py:93:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "EheimDigitalSelectDescription[_DeviceT@EheimDigitalSelect]" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/eheimdigital/select.py:98:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/eheimdigital/sensor.py + /homeassistant/components/eheimdigital/sensor.py:97:7 - error: Base classes for class "EheimDigitalSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/eheimdigital/sensor.py:112:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "EheimDigitalSensorDescription[_DeviceT@EheimDigitalSensor]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/eheimdigital/sensor.py:112:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "EheimDigitalSensorDescription[_DeviceT@EheimDigitalSensor]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/eheimdigital/switch.py + /homeassistant/components/eheimdigital/switch.py:42:7 - error: Base classes for class "EheimDigitalClassicVarioSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/eheimdigital/switch.py:62:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/eheimdigital/switch.py:67:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/eheimdigital/time.py + /homeassistant/components/eheimdigital/time.py:104:7 - error: Base classes for class "EheimDigitalTime" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/eheimdigital/time.py:119:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "EheimDigitalTimeDescription[_DeviceT@EheimDigitalTime]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/eheimdigital/time.py:119:14 - error: "entity_description" overrides symbol of same name in class "TimeEntity" +   Variable is mutable so its type is invariant +     Override type "EheimDigitalTimeDescription[_DeviceT@EheimDigitalTime]" is not the same as base type "TimeEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/eheimdigital/time.py:124:15 - error: Method "async_set_value" overrides class "TimeEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/ekeybionyx/config_flow.py + /homeassistant/components/ekeybionyx/config_flow.py:112:26 - error: Could not access item in TypedDict +   "systems" is not a required key in "EkeyFlowData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/ekeybionyx/config_flow.py:121:24 - error: Could not access item in TypedDict +   "systems" is not a required key in "EkeyFlowData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/ekeybionyx/config_flow.py:129:18 - error: Could not access item in TypedDict +   "system" is not a required key in "EkeyFlowData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/ekeybionyx/config_flow.py:150:18 - error: Could not access item in TypedDict +   "system" is not a required key in "EkeyFlowData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/ekeybionyx/config_flow.py:196:27 - error: Could not access item in TypedDict +   "system" is not a required key in "EkeyFlowData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/ekeybionyx/config_flow.py:202:28 - error: Could not access item in TypedDict +   "system" is not a required key in "EkeyFlowData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/ekeybionyx/config_flow.py:221:21 - error: Could not access item in TypedDict +   "system" is not a required key in "EkeyFlowData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/ekeybionyx/config_flow.py:233:30 - error: Could not access item in TypedDict +   "system" is not a required key in "EkeyFlowData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/ekeybionyx/config_flow.py:254:33 - error: "progress_action" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/ekeybionyx/config_flow.py:263:43 - error: Could not access item in TypedDict +   "api" is not a required key in "EkeyFlowData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/ekeybionyx/config_flow.py:267:35 - error: Could not access item in TypedDict +   "system" is not a required key in "EkeyFlowData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/electrasmart/climate.py + /homeassistant/components/electrasmart/climate.py:10:30 - error: "STATUS_SUCCESS" is not exported from module "electrasmart.api" +   Import from "electrasmart.api.const" instead (reportPrivateImportUsage) + /homeassistant/components/electrasmart/climate.py:10:46 - error: "Attributes" is not exported from module "electrasmart.api" +   Import from "electrasmart.api.const" instead (reportPrivateImportUsage) + /homeassistant/components/electrasmart/climate.py:11:56 - error: "OperationMode" is not exported from module "electrasmart.device" +   Import from "electrasmart.device.const" instead (reportPrivateImportUsage) + /homeassistant/components/electrasmart/climate.py:167:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/electrasmart/config_flow.py + /homeassistant/components/electrasmart/config_flow.py:8:30 - error: "STATUS_SUCCESS" is not exported from module "electrasmart.api" +   Import from "electrasmart.api.const" instead (reportPrivateImportUsage) + /homeassistant/components/electrasmart/config_flow.py:8:46 - error: "Attributes" is not exported from module "electrasmart.api" +   Import from "electrasmart.api.const" instead (reportPrivateImportUsage) +/homeassistant/components/electric_kiwi/__init__.py + /homeassistant/components/electric_kiwi/__init__.py:6:30 - error: "ElectricKiwiApi" is not exported from module "electrickiwi_api" +   Import from "electrickiwi_api.api" instead (reportPrivateImportUsage) +/homeassistant/components/electric_kiwi/api.py + /homeassistant/components/electric_kiwi/api.py:6:30 - error: "AbstractAuth" is not exported from module "electrickiwi_api" +   Import from "electrickiwi_api.auth" instead (reportPrivateImportUsage) +/homeassistant/components/electric_kiwi/config_flow.py + /homeassistant/components/electric_kiwi/config_flow.py:9:30 - error: "ElectricKiwiApi" is not exported from module "electrickiwi_api" +   Import from "electrickiwi_api.api" instead (reportPrivateImportUsage) +/homeassistant/components/electric_kiwi/coordinator.py + /homeassistant/components/electric_kiwi/coordinator.py:11:30 - error: "ElectricKiwiApi" is not exported from module "electrickiwi_api" +   Import from "electrickiwi_api.api" instead (reportPrivateImportUsage) +/homeassistant/components/electric_kiwi/select.py + /homeassistant/components/electric_kiwi/select.py:40:7 - error: Base classes for class "ElectricKiwiSelectHOPEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/electric_kiwi/select.py:61:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/electric_kiwi/select.py:66:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/electric_kiwi/sensor.py + /homeassistant/components/electric_kiwi/sensor.py:158:7 - error: Base classes for class "ElectricKiwiAccountEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/electric_kiwi/sensor.py:179:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ElectricKiwiAccountSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/electric_kiwi/sensor.py:179:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ElectricKiwiAccountSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/electric_kiwi/sensor.py:182:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/electric_kiwi/sensor.py:187:7 - error: Base classes for class "ElectricKiwiHOPEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/electric_kiwi/sensor.py:208:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ElectricKiwiHOPSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/electric_kiwi/sensor.py:208:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ElectricKiwiHOPSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/electric_kiwi/sensor.py:211:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/elgato/button.py + /homeassistant/components/elgato/button.py:66:7 - error: Base classes for class "ElgatoButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elgato/button.py:78:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ElgatoButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/elgato/button.py:78:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "ElgatoButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/elgato/light.py + /homeassistant/components/elgato/light.py:48:7 - error: Base classes for class "ElgatoLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elgato/light.py:76:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elgato/light.py:88:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elgato/light.py:96:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elgato/light.py:104:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/elgato/sensor.py + /homeassistant/components/elgato/sensor.py:122:7 - error: Base classes for class "ElgatoSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elgato/sensor.py:135:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ElgatoSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/elgato/sensor.py:135:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ElgatoSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/elgato/sensor.py:141:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/elgato/switch.py + /homeassistant/components/elgato/switch.py:72:7 - error: Base classes for class "ElgatoSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elgato/switch.py:85:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ElgatoSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/elgato/switch.py:85:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "ElgatoSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/elgato/switch.py:91:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/eliqonline/sensor.py + /homeassistant/components/eliqonline/sensor.py:53:22 - error: "API" is not a known attribute of module "eliqonline" (reportAttributeAccessIssue) +/homeassistant/components/elkm1/alarm_control_panel.py + /homeassistant/components/elkm1/alarm_control_panel.py:101:7 - error: Base classes for class "ElkArea" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/alarm_control_panel.py:101:7 - error: Base classes for class "ElkArea" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/alarm_control_panel.py:101:7 - error: Base classes for class "ElkArea" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/alarm_control_panel.py:101:7 - error: Base classes for class "ElkArea" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/alarm_control_panel.py:101:7 - error: Base classes for class "ElkArea" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/alarm_control_panel.py:101:7 - error: Base classes for class "ElkArea" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/alarm_control_panel.py:101:7 - error: Base classes for class "ElkArea" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/alarm_control_panel.py:167:9 - error: "code_format" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[CodeFormat | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/alarm_control_panel.py:172:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/alarm_control_panel.py:177:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/alarm_control_panel.py:196:9 - error: "changed_by" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/elkm1/binary_sensor.py + /homeassistant/components/elkm1/binary_sensor.py:46:7 - error: Base classes for class "ElkBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/binary_sensor.py:46:7 - error: Base classes for class "ElkBinarySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/binary_sensor.py:46:7 - error: Base classes for class "ElkBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/binary_sensor.py:46:7 - error: Base classes for class "ElkBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/elkm1/climate.py + /homeassistant/components/elkm1/climate.py:73:7 - error: Base classes for class "ElkThermostat" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/climate.py:73:7 - error: Base classes for class "ElkThermostat" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/climate.py:73:7 - error: Base classes for class "ElkThermostat" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/climate.py:73:7 - error: Base classes for class "ElkThermostat" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/climate.py:92:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/climate.py:97:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/climate.py:102:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/climate.py:114:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/climate.py:119:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/climate.py:124:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/climate.py:129:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/elkm1/config_flow.py + /homeassistant/components/elkm1/config_flow.py:202:9 - error: Method "is_matching" overrides class "ConfigFlow" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "ConfigFlow", override parameter is type "Elkm1ConfigFlow" +     "ConfigFlow" is not assignable to "Elkm1ConfigFlow" (reportIncompatibleMethodOverride) +/homeassistant/components/elkm1/entity.py + /homeassistant/components/elkm1/entity.py:81:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/entity.py:86:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/entity.py:94:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/entity.py:121:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/elkm1/light.py + /homeassistant/components/elkm1/light.py:33:7 - error: Base classes for class "ElkLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/light.py:33:7 - error: Base classes for class "ElkLight" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/light.py:33:7 - error: Base classes for class "ElkLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/light.py:33:7 - error: Base classes for class "ElkLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/light.py:46:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/light.py:51:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/elkm1/scene.py + /homeassistant/components/elkm1/scene.py:30:7 - error: Base classes for class "ElkTask" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/scene.py:30:7 - error: Base classes for class "ElkTask" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/scene.py:30:7 - error: Base classes for class "ElkTask" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/scene.py:30:7 - error: Base classes for class "ElkTask" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/elkm1/sensor.py + /homeassistant/components/elkm1/sensor.py:99:7 - error: Base classes for class "ElkSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/sensor.py:99:7 - error: Base classes for class "ElkSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/sensor.py:99:7 - error: Base classes for class "ElkSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/sensor.py:99:7 - error: Base classes for class "ElkSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/sensor.py:102:5 - error: "_attr_native_value" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "str | None" is not the same as base type "StateType | date | datetime | Decimal" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/sensor.py:153:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/sensor.py:220:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/sensor.py:264:9 - error: "device_class" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[SensorDeviceClass | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/sensor.py:269:9 - error: "state_class" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[SensorStateClass | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/sensor.py:274:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/elkm1/services.py + /homeassistant/components/elkm1/services.py:5:32 - error: "Panel" is not exported from module "elkm1_lib.elk" +   Import from "elkm1_lib.panel" instead (reportPrivateImportUsage) +/homeassistant/components/elkm1/switch.py + /homeassistant/components/elkm1/switch.py:38:7 - error: Base classes for class "ElkOutput" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/switch.py:38:7 - error: Base classes for class "ElkOutput" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/switch.py:38:7 - error: Base classes for class "ElkOutput" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/switch.py:38:7 - error: Base classes for class "ElkOutput" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/switch.py:44:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/switch.py:57:7 - error: Base classes for class "ElkThermostatEMHeat" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/switch.py:57:7 - error: Base classes for class "ElkThermostatEMHeat" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/switch.py:57:7 - error: Base classes for class "ElkThermostatEMHeat" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/switch.py:57:7 - error: Base classes for class "ElkThermostatEMHeat" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elkm1/switch.py:69:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/elmax/__init__.py + /homeassistant/components/elmax/__init__.py:50:25 - error: Argument of type "SSLContext | None" cannot be assigned to parameter "ssl_context" of type "SSLContext" in function "__init__" +   Type "SSLContext | None" is not assignable to type "SSLContext" +     "None" is not assignable to "SSLContext" (reportArgumentType) +/homeassistant/components/elmax/alarm_control_panel.py + /homeassistant/components/elmax/alarm_control_panel.py:62:7 - error: Base classes for class "ElmaxArea" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elmax/alarm_control_panel.py:125:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/elmax/binary_sensor.py + /homeassistant/components/elmax/binary_sensor.py:58:7 - error: Base classes for class "ElmaxSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elmax/binary_sensor.py:64:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/elmax/config_flow.py + /homeassistant/components/elmax/config_flow.py:330:39 - error: Argument of type "str | None" cannot be assigned to parameter "username" of type "str" in function "_store_panel_by_name" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/elmax/config_flow.py:342:32 - error: Cannot assign to attribute "_cloud_username" for class "ElmaxConfigFlow*" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportAttributeAccessIssue) +/homeassistant/components/elmax/coordinator.py + /homeassistant/components/elmax/coordinator.py:70:20 - error: Type "Actuator | Area | Cover | DeviceEndpoint" is not assignable to return type "Actuator" +   Type "Actuator | Area | Cover | DeviceEndpoint" is not assignable to type "Actuator" +     "DeviceEndpoint" is not assignable to "Actuator" (reportReturnType) + /homeassistant/components/elmax/coordinator.py:76:20 - error: Type "Actuator | Area | Cover | DeviceEndpoint" is not assignable to return type "Actuator" +   Type "Actuator | Area | Cover | DeviceEndpoint" is not assignable to type "Actuator" +     "DeviceEndpoint" is not assignable to "Actuator" (reportReturnType) + /homeassistant/components/elmax/coordinator.py:82:20 - error: Type "Actuator | Area | Cover | DeviceEndpoint" is not assignable to return type "Area" +   Type "Actuator | Area | Cover | DeviceEndpoint" is not assignable to type "Area" +     "DeviceEndpoint" is not assignable to "Area" (reportReturnType) + /homeassistant/components/elmax/coordinator.py:88:20 - error: Type "Actuator | Area | Cover | DeviceEndpoint" is not assignable to return type "Cover" +   Type "Actuator | Area | Cover | DeviceEndpoint" is not assignable to type "Cover" +     "DeviceEndpoint" is not assignable to "Cover" (reportReturnType) +/homeassistant/components/elmax/cover.py + /homeassistant/components/elmax/cover.py:68:7 - error: Base classes for class "ElmaxCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elmax/cover.py:84:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elmax/cover.py:89:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elmax/cover.py:97:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elmax/cover.py:102:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/elmax/switch.py + /homeassistant/components/elmax/switch.py:60:7 - error: Base classes for class "ElmaxSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/elmax/switch.py:64:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/elv/switch.py + /homeassistant/components/elv/switch.py:8:8 - error: Import "pypca" could not be resolved (reportMissingImports) + /homeassistant/components/elv/switch.py:63:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/elv/switch.py:68:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/elv/switch.py:73:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/elvia/importer.py + /homeassistant/components/elvia/importer.py:101:25 - error: Could not access item in TypedDict +   "end" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/elvia/importer.py:129:32 - error: Could not access item in TypedDict +   "sum" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/elvia/importer.py:130:31 - error: Could not access item in TypedDict +   "start" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/emby/media_player.py + /homeassistant/components/emby/media_player.py:7:6 - error: Import "pyemby" could not be resolved (reportMissingImports) + /homeassistant/components/emby/media_player.py:179:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/emby/media_player.py:184:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/emby/media_player.py:198:9 - error: "app_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/emby/media_player.py:204:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/emby/media_player.py:209:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/emby/media_player.py:229:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/emby/media_player.py:234:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/emby/media_player.py:239:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/emby/media_player.py:247:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/emby/media_player.py:252:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/emby/media_player.py:257:9 - error: "media_season" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/emby/media_player.py:262:9 - error: "media_series_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/emby/media_player.py:267:9 - error: "media_episode" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/emby/media_player.py:272:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/emby/media_player.py:277:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/emby/media_player.py:282:9 - error: "media_album_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/emby/media_player.py:287:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) +/homeassistant/components/emoncms/sensor.py + /homeassistant/components/emoncms/sensor.py:227:7 - error: Base classes for class "EmonCmsSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/emoncms_history/__init__.py + /homeassistant/components/emoncms_history/__init__.py:67:75 - error: Argument of type "str | int" cannot be assigned to parameter "node" of type "str | None" in function "async_input_post" +   Type "str | int" is not assignable to type "str | None" +     Type "int" is not assignable to type "str | None" +       "int" is not assignable to "str" +       "int" is not assignable to "None" (reportArgumentType) +/homeassistant/components/emonitor/sensor.py + /homeassistant/components/emonitor/sensor.py:48:45 - error: Cannot access attribute "items" for class "list[Unknown]" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /homeassistant/components/emonitor/sensor.py:56:33 - error: Argument of type "DataUpdateCoordinator[EmonitorStatus]" cannot be assigned to parameter "coordinator" of type "DataUpdateCoordinator[dict[str, Any]]" in function "__init__" +   "DataUpdateCoordinator[EmonitorStatus]" is not assignable to "DataUpdateCoordinator[dict[str, Any]]" +     Type parameter "_DataT@DataUpdateCoordinator" is invariant, but "EmonitorStatus" is not the same as "dict[str, Any]" (reportArgumentType) + /homeassistant/components/emonitor/sensor.py:63:7 - error: Base classes for class "EmonitorPowerSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/emonitor/sensor.py:63:45 - error: Type "EmonitorStatus" cannot be assigned to type variable "_DataUpdateCoordinatorT@CoordinatorEntity" +   Type "EmonitorStatus" is not assignable to upper bound "DataUpdateCoordinator[Any]" for type variable "_DataUpdateCoordinatorT@CoordinatorEntity" +     "EmonitorStatus" is not assignable to "DataUpdateCoordinator[Any]" (reportInvalidTypeArguments) + /homeassistant/components/emonitor/sensor.py:80:26 - error: Argument of type "DataUpdateCoordinator[dict[str, Any]]" cannot be assigned to parameter "coordinator" of type "EmonitorStatus" in function "__init__" +   "DataUpdateCoordinator[dict[str, Any]]" is not assignable to "EmonitorStatus" (reportArgumentType) + /homeassistant/components/emonitor/sensor.py:81:44 - error: Cannot access attribute "data" for class "EmonitorStatus" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /homeassistant/components/emonitor/sensor.py:104:65 - error: Cannot access attribute "data" for class "EmonitorStatus" +   Attribute "data" is unknown (reportAttributeAccessIssue) +/homeassistant/components/emulated_hue/hue_api.py + /homeassistant/components/emulated_hue/hue_api.py:435:47 - error: "color_modes" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/emulated_hue/hue_api.py:474:48 - error: "color_modes" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/emulated_hue/hue_api.py:481:42 - error: "color_modes" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/emulated_hue/hue_api.py:503:48 - error: "color_modes" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/emulated_kasa/__init__.py + /homeassistant/components/emulated_kasa/__init__.py:5:26 - error: "PlugInstance" is not exported from module "sense_energy" +   Import from "sense_energy.plug_instance" instead (reportPrivateImportUsage) + /homeassistant/components/emulated_kasa/__init__.py:5:40 - error: "SenseLink" is not exported from module "sense_energy" +   Import from "sense_energy.sense_link" instead (reportPrivateImportUsage) +/homeassistant/components/emulated_roku/binding.py + /homeassistant/components/emulated_roku/binding.py:135:26 - error: Argument of type "str | None" cannot be assigned to parameter "advertise_ip" of type "str" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/emulated_roku/binding.py:136:28 - error: Argument of type "int | None" cannot be assigned to parameter "advertise_port" of type "int" in function "__init__" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/emulated_roku/binding.py:137:28 - error: Argument of type "bool | None" cannot be assigned to parameter "bind_multicast" of type "bool" in function "__init__" +   Type "bool | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) +/homeassistant/components/energenie_power_sockets/__init__.py + /homeassistant/components/energenie_power_sockets/__init__.py:21:44 - error: Type "Device | None" is not assignable to declared type "PowerStripUSB | None" +   Type "Device | None" is not assignable to type "PowerStripUSB | None" +     Type "Device" is not assignable to type "PowerStripUSB | None" +       "Device" is not assignable to "PowerStripUSB" +       "Device" is not assignable to "None" (reportAssignmentType) +/homeassistant/components/energy/data.py + /homeassistant/components/energy/data.py:367:17 - error: Could not assign item in TypedDict +   Type "list[SourceType] | list[DeviceConsumption]" is not assignable to type "list[SourceType]" +   Type "list[SourceType] | list[DeviceConsumption]" is not assignable to type "list[DeviceConsumption]" +     "list[DeviceConsumption]" is not assignable to "list[SourceType]" +       Type parameter "_T@list" is invariant, but "DeviceConsumption" is not the same as "SourceType" +       Consider switching from "list" to "Sequence" which is covariant +     "list[SourceType]" is not assignable to "list[DeviceConsumption]" +       Type parameter "_T@list" is invariant, but "SourceType" is not the same as "DeviceConsumption" +       Consider switching from "list" to "Sequence" which is covariant (reportGeneralTypeIssues) +/homeassistant/components/energy/sensor.py + /homeassistant/components/energy/sensor.py:321:17 - error: "valid_units" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/energy/sensor.py:321:30 - error: "default_price_unit" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/energy/sensor.py:340:54 - error: "valid_units" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/energy/sensor.py:374:27 - error: "energy_price_unit" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/energy/sensor.py:482:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/energy/sensor.py:487:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/energy/validate.py + /homeassistant/components/energy/validate.py:174:45 - error: "models" is not a known attribute of module "homeassistant.components.recorder" (reportAttributeAccessIssue) + /homeassistant/components/energy/validate.py:234:45 - error: "models" is not a known attribute of module "homeassistant.components.recorder" (reportAttributeAccessIssue) + /homeassistant/components/energy/validate.py:305:45 - error: "models" is not a known attribute of module "homeassistant.components.recorder" (reportAttributeAccessIssue) + /homeassistant/components/energy/validate.py:338:45 - error: "models" is not a known attribute of module "homeassistant.components.recorder" (reportAttributeAccessIssue) + /homeassistant/components/energy/validate.py:392:56 - error: "models" is not a known attribute of module "homeassistant.components.recorder" (reportAttributeAccessIssue) + /homeassistant/components/energy/validate.py:521:56 - error: "models" is not a known attribute of module "homeassistant.components.recorder" (reportAttributeAccessIssue) + /homeassistant/components/energy/validate.py:581:56 - error: "models" is not a known attribute of module "homeassistant.components.recorder" (reportAttributeAccessIssue) + /homeassistant/components/energy/validate.py:641:56 - error: "models" is not a known attribute of module "homeassistant.components.recorder" (reportAttributeAccessIssue) + /homeassistant/components/energy/validate.py:749:26 - error: "statistics" is not a known attribute of module "homeassistant.components.recorder" (reportAttributeAccessIssue) +/homeassistant/components/energy/websocket_api.py + /homeassistant/components/energy/websocket_api.py:276:18 - error: "statistics" is not a known attribute of module "homeassistant.components.recorder" (reportAttributeAccessIssue) + /homeassistant/components/energy/websocket_api.py:298:24 - error: Could not access item in TypedDict +   "start" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/energy/websocket_api.py:361:52 - error: "statistics" is not a known attribute of module "homeassistant.components.recorder" (reportAttributeAccessIssue) + /homeassistant/components/energy/websocket_api.py:372:22 - error: "statistics" is not a known attribute of module "homeassistant.components.recorder" (reportAttributeAccessIssue) +/homeassistant/components/energyzero/sensor.py + /homeassistant/components/energyzero/sensor.py:163:7 - error: Base classes for class "EnergyZeroSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/energyzero/sensor.py:180:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "EnergyZeroSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/energyzero/sensor.py:180:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "EnergyZeroSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/energyzero/sensor.py:198:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/enigma2/media_player.py + /homeassistant/components/enigma2/media_player.py:40:7 - error: Base classes for class "Enigma2Device" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/enocean/light.py + /homeassistant/components/enocean/light.py:72:27 - error: Operator "/" not supported for "None" (reportOptionalOperand) +/homeassistant/components/enphase_envoy/binary_sensor.py + /homeassistant/components/enphase_envoy/binary_sensor.py:149:7 - error: Base classes for class "EnvoyBaseBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/binary_sensor.py:181:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/binary_sensor.py:214:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/binary_sensor.py:247:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/binary_sensor.py:280:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/enphase_envoy/config_flow.py + /homeassistant/components/enphase_envoy/config_flow.py:10:23 - error: "AUTH_TOKEN_MIN_VERSION" is not exported from module "pyenphase" +   Import from "pyenphase.const" instead (reportPrivateImportUsage) +/homeassistant/components/enphase_envoy/number.py + /homeassistant/components/enphase_envoy/number.py:100:7 - error: Base classes for class "EnvoyRelayNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/number.py:103:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "EnvoyRelayNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/number.py:129:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/number.py:136:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/enphase_envoy/number.py:144:7 - error: Base classes for class "EnvoyStorageSettingsNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/number.py:147:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "EnvoyStorageSettingsNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/number.py:184:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/number.py:191:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/enphase_envoy/select.py + /homeassistant/components/enphase_envoy/select.py:157:7 - error: Base classes for class "EnvoyRelaySelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/select.py:160:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "EnvoyRelaySelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/select.py:191:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/select.py:196:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/enphase_envoy/select.py:202:7 - error: Base classes for class "EnvoyStorageSettingsSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/select.py:205:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "EnvoyStorageSettingsSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/select.py:242:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/select.py:249:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/enphase_envoy/sensor.py + /homeassistant/components/enphase_envoy/sensor.py:991:7 - error: Base classes for class "EnvoySensorBaseEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/sensor.py:1023:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/sensor.py:1036:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/sensor.py:1049:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/sensor.py:1062:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/sensor.py:1083:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/sensor.py:1104:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/sensor.py:1125:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/sensor.py:1140:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/sensor.py:1190:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/sensor.py:1240:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/sensor.py:1253:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/sensor.py:1266:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/sensor.py:1299:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/sensor.py:1330:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/sensor.py:1343:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/sensor.py:1356:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/sensor.py:1390:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/sensor.py:1423:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/enphase_envoy/switch.py + /homeassistant/components/enphase_envoy/switch.py:117:7 - error: Base classes for class "EnvoyEnpowerSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/switch.py:120:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "EnvoyEnpowerSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/switch.py:145:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/switch.py:152:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/enphase_envoy/switch.py:158:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/enphase_envoy/switch.py:164:7 - error: Base classes for class "EnvoyDryContactSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/switch.py:167:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "EnvoyDryContactSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/switch.py:195:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/switch.py:202:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/enphase_envoy/switch.py:208:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/enphase_envoy/switch.py:214:7 - error: Base classes for class "EnvoyStorageSettingsSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/switch.py:217:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "EnvoyStorageSettingsSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/switch.py:255:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/enphase_envoy/switch.py:262:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/enphase_envoy/switch.py:268:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/entur_public_transport/sensor.py + /homeassistant/components/entur_public_transport/sensor.py:8:6 - error: Import "enturclient" could not be resolved (reportMissingImports) + /homeassistant/components/entur_public_transport/sensor.py:179:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/entur_public_transport/sensor.py:184:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/entur_public_transport/sensor.py:189:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/entur_public_transport/sensor.py:195:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/entur_public_transport/sensor.py:200:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/environment_canada/config_flow.py + /homeassistant/components/environment_canada/config_flow.py:64:16 - error: Type "Unknown | list[dict[str, str]] | None" is not assignable to return type "list[dict[str, str]]" +   Type "Unknown | list[dict[str, str]] | None" is not assignable to type "list[dict[str, str]]" +     "None" is not assignable to "list[dict[str, str]]" (reportReturnType) + /homeassistant/components/environment_canada/config_flow.py:88:44 - error: "info" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/environment_canada/config_flow.py:89:45 - error: "info" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/environment_canada/config_flow.py:90:46 - error: "info" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/environment_canada/config_flow.py:97:54 - error: "info" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/environment_canada/sensor.py + /homeassistant/components/environment_canada/sensor.py:275:7 - error: Base classes for class "ECBaseSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/environment_canada/sensor.py:290:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ECSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/environment_canada/sensor.py:290:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ECSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/environment_canada/sensor.py:297:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/environment_canada/sensor.py:325:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/environment_canada/weather.py + /homeassistant/components/environment_canada/weather.py:126:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/environment_canada/weather.py:141:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/environment_canada/weather.py:148:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/environment_canada/weather.py:155:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/environment_canada/weather.py:162:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/environment_canada/weather.py:169:9 - error: "native_visibility" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/environment_canada/weather.py:176:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/envisalink/__init__.py + /homeassistant/components/envisalink/__init__.py:6:6 - error: Import "pyenvisalink" could not be resolved (reportMissingImports) +/homeassistant/components/envisalink/alarm_control_panel.py + /homeassistant/components/envisalink/alarm_control_panel.py:95:7 - error: Base classes for class "EnvisalinkAlarm" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/envisalink/alarm_control_panel.py:137:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/envisalink/binary_sensor.py + /homeassistant/components/envisalink/binary_sensor.py:49:7 - error: Base classes for class "EnvisalinkBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/envisalink/binary_sensor.py:69:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/envisalink/binary_sensor.py:100:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/envisalink/binary_sensor.py:105:9 - error: "device_class" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/envisalink/binary_sensor.py:105:9 - error: "device_class" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[BinarySensorDeviceClass | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/envisalink/entity.py + /homeassistant/components/envisalink/entity.py:18:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/envisalink/sensor.py + /homeassistant/components/envisalink/sensor.py:52:7 - error: Base classes for class "EnvisalinkSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/envisalink/sensor.py:77:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/envisalink/sensor.py:82:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/envisalink/sensor.py:87:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/envisalink/switch.py + /homeassistant/components/envisalink/switch.py:49:7 - error: Base classes for class "EnvisalinkSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/envisalink/switch.py:67:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ephember/climate.py + /homeassistant/components/ephember/climate.py:10:6 - error: Import "pyephember2.pyephember2" could not be resolved (reportMissingImports) + /homeassistant/components/ephember/climate.py:85:17 - error: "ember" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/ephember/climate.py:91:28 - error: "ember" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/ephember/climate.py:124:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ephember/climate.py:129:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ephember/climate.py:134:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ephember/climate.py:142:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ephember/climate.py:172:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/ephember/climate.py:181:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/epic_games_store/calendar.py + /homeassistant/components/epic_games_store/calendar.py:36:7 - error: Base classes for class "EGSCalendar" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/epion/sensor.py + /homeassistant/components/epion/sensor.py:101:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/epion/sensor.py:106:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/epson/media_player.py + /homeassistant/components/epson/media_player.py:211:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/eq3btsmart/binary_sensor.py + /homeassistant/components/eq3btsmart/binary_sensor.py:63:7 - error: Base classes for class "Eq3BinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/eq3btsmart/binary_sensor.py:76:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "Eq3BinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/eq3btsmart/binary_sensor.py:76:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "Eq3BinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/eq3btsmart/binary_sensor.py:79:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/eq3btsmart/climate.py + /homeassistant/components/eq3btsmart/climate.py:58:7 - error: Base classes for class "Eq3Climate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/eq3btsmart/entity.py + /homeassistant/components/eq3btsmart/entity.py:118:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/eq3btsmart/number.py + /homeassistant/components/eq3btsmart/number.py:128:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "Eq3NumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/eq3btsmart/number.py:128:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "Eq3NumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/eq3btsmart/number.py:131:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/eq3btsmart/number.py:145:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/eq3btsmart/sensor.py + /homeassistant/components/eq3btsmart/sensor.py:61:7 - error: Base classes for class "Eq3SensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/eq3btsmart/sensor.py:72:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "Eq3SensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/eq3btsmart/sensor.py:72:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "Eq3SensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/eq3btsmart/sensor.py:75:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/eq3btsmart/switch.py + /homeassistant/components/eq3btsmart/switch.py:81:7 - error: Base classes for class "Eq3SwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/eq3btsmart/switch.py:94:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "Eq3SwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/eq3btsmart/switch.py:94:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "Eq3SwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/eq3btsmart/switch.py:107:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/escea/climate.py + /homeassistant/components/escea/climate.py:177:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/escea/climate.py:182:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/escea/climate.py:187:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/escea/climate.py:192:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/esphome/__init__.py + /homeassistant/components/esphome/__init__.py:7:27 - error: "APIClient" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.client" instead (reportPrivateImportUsage) + /homeassistant/components/esphome/__init__.py:7:38 - error: "APIConnectionError" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.core" instead (reportPrivateImportUsage) +/homeassistant/components/esphome/alarm_control_panel.py + /homeassistant/components/esphome/alarm_control_panel.py:63:7 - error: Base classes for class "EsphomeAlarmControlPanel" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/alarm_control_panel.py:63:7 - error: Base classes for class "EsphomeAlarmControlPanel" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/alarm_control_panel.py:95:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/alarm_control_panel.py:100:15 - error: Method "async_alarm_disarm" overrides class "AlarmControlPanelEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/alarm_control_panel.py:110:15 - error: Method "async_alarm_arm_home" overrides class "AlarmControlPanelEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/alarm_control_panel.py:120:15 - error: Method "async_alarm_arm_away" overrides class "AlarmControlPanelEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/alarm_control_panel.py:130:15 - error: Method "async_alarm_arm_night" overrides class "AlarmControlPanelEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/alarm_control_panel.py:140:15 - error: Method "async_alarm_arm_custom_bypass" overrides class "AlarmControlPanelEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/alarm_control_panel.py:150:15 - error: Method "async_alarm_arm_vacation" overrides class "AlarmControlPanelEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/alarm_control_panel.py:160:15 - error: Method "async_alarm_trigger" overrides class "AlarmControlPanelEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/esphome/assist_satellite.py + /homeassistant/components/esphome/assist_satellite.py:123:7 - error: Base classes for class "EsphomeAssistSatellite" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/assist_satellite.py:396:15 - error: Method "async_announce" overrides class "AssistSatelliteEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/assist_satellite.py:406:15 - error: Method "async_start_conversation" overrides class "AssistSatelliteEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/esphome/binary_sensor.py + /homeassistant/components/esphome/binary_sensor.py:21:7 - error: Base classes for class "EsphomeBinarySensor" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/binary_sensor.py:21:7 - error: Base classes for class "EsphomeBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/binary_sensor.py:27:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/binary_sensor.py:46:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/esphome/bluetooth.py + /homeassistant/components/esphome/bluetooth.py:8:27 - error: "APIClient" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.client" instead (reportPrivateImportUsage) +/homeassistant/components/esphome/button.py + /homeassistant/components/esphome/button.py:22:7 - error: Base classes for class "EsphomeButton" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/button.py:22:7 - error: Base classes for class "EsphomeButton" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/button.py:49:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/esphome/camera.py + /homeassistant/components/esphome/camera.py:22:7 - error: Base classes for class "EsphomeCamera" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/camera.py:22:7 - error: Base classes for class "EsphomeCamera" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/camera.py:22:7 - error: Base classes for class "EsphomeCamera" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/camera.py:22:7 - error: Base classes for class "EsphomeCamera" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/camera.py:22:7 - error: Base classes for class "EsphomeCamera" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/esphome/climate.py + /homeassistant/components/esphome/climate.py:133:7 - error: Base classes for class "EsphomeClimateEntity" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/climate.py:133:7 - error: Base classes for class "EsphomeClimateEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/climate.py:209:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/climate.py:215:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/climate.py:224:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/climate.py:231:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/climate.py:240:9 - error: "swing_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/climate.py:246:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/climate.py:254:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/climate.py:266:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/climate.py:285:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/climate.py:293:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/climate.py:301:9 - error: "target_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/climate.py:306:15 - error: Method "async_set_temperature" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/climate.py:345:15 - error: Method "async_set_humidity" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/climate.py:354:15 - error: Method "async_set_hvac_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/climate.py:363:15 - error: Method "async_set_preset_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/climate.py:373:15 - error: Method "async_set_fan_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/climate.py:383:15 - error: Method "async_set_swing_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/esphome/config_flow.py + /homeassistant/components/esphome/config_flow.py:12:5 - error: "APIClient" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.client" instead (reportPrivateImportUsage) + /homeassistant/components/esphome/config_flow.py:13:5 - error: "APIConnectionError" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.core" instead (reportPrivateImportUsage) + /homeassistant/components/esphome/config_flow.py:15:5 - error: "InvalidAuthAPIError" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.core" instead (reportPrivateImportUsage) + /homeassistant/components/esphome/config_flow.py:16:5 - error: "InvalidEncryptionKeyAPIError" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.core" instead (reportPrivateImportUsage) + /homeassistant/components/esphome/config_flow.py:17:5 - error: "RequiresEncryptionAPIError" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.core" instead (reportPrivateImportUsage) + /homeassistant/components/esphome/config_flow.py:18:5 - error: "ResolveAPIError" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.core" instead (reportPrivateImportUsage) + /homeassistant/components/esphome/config_flow.py:19:5 - error: "wifi_mac_to_bluetooth_mac" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.core" instead (reportPrivateImportUsage) + /homeassistant/components/esphome/config_flow.py:577:16 - error: Could not access item in TypedDict +   "type" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/esphome/cover.py + /homeassistant/components/esphome/cover.py:30:7 - error: Base classes for class "EsphomeCover" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/cover.py:30:7 - error: Base classes for class "EsphomeCover" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/cover.py:57:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/cover.py:64:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/cover.py:70:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/cover.py:76:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/cover.py:84:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/cover.py:91:15 - error: Method "async_open_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/cover.py:98:15 - error: Method "async_close_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/cover.py:105:15 - error: Method "async_stop_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/cover.py:112:15 - error: Method "async_set_cover_position" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/cover.py:121:15 - error: Method "async_open_cover_tilt" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/cover.py:128:15 - error: Method "async_close_cover_tilt" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/cover.py:135:15 - error: Method "async_set_cover_tilt_position" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/esphome/dashboard.py + /homeassistant/components/esphome/dashboard.py:131:21 - error: Could not access item in TypedDict +   "context" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/esphome/dashboard.py:131:21 - error: Could not access item in TypedDict +   "source" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/esphome/date.py + /homeassistant/components/esphome/date.py:17:7 - error: Base classes for class "EsphomeDate" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/date.py:17:7 - error: Base classes for class "EsphomeDate" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/date.py:22:9 - error: "native_value" overrides symbol of same name in class "DateEntity" +   "property" is not assignable to "cached_property[date | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/esphome/datetime.py + /homeassistant/components/esphome/datetime.py:18:7 - error: Base classes for class "EsphomeDateTime" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/datetime.py:18:7 - error: Base classes for class "EsphomeDateTime" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/datetime.py:23:9 - error: "native_value" overrides symbol of same name in class "DateTimeEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/esphome/entity.py + /homeassistant/components/esphome/entity.py:12:5 - error: "APIConnectionError" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.core" instead (reportPrivateImportUsage) + /homeassistant/components/esphome/entity.py:318:5 - error: "device_entry" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DeviceEntry" is not the same as base type "DeviceEntry | None" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/entity.py:327:5 - error: "unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "cached_property" (reportIncompatibleVariableOverride) +/homeassistant/components/esphome/entry_data.py + /homeassistant/components/esphome/entry_data.py:17:5 - error: "APIClient" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.client" instead (reportPrivateImportUsage) +/homeassistant/components/esphome/event.py + /homeassistant/components/esphome/event.py:18:7 - error: Base classes for class "EsphomeEvent" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/event.py:18:7 - error: Base classes for class "EsphomeEvent" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/esphome/fan.py + /homeassistant/components/esphome/fan.py:46:7 - error: Base classes for class "EsphomeFan" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/fan.py:46:7 - error: Base classes for class "EsphomeFan" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/fan.py:86:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/fan.py:93:15 - error: Method "async_oscillate" overrides class "FanEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/fan.py:102:15 - error: Method "async_set_direction" overrides class "FanEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/fan.py:111:15 - error: Method "async_set_preset_mode" overrides class "FanEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/fan.py:127:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/fan.py:141:9 - error: "oscillating" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/fan.py:147:9 - error: "current_direction" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/fan.py:153:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/esphome/ffmpeg_proxy.py + /homeassistant/components/esphome/ffmpeg_proxy.py:12:47 - error: "BaseRequest" is not exported from module "aiohttp.abc" +   Import from "aiohttp.web_request" instead (reportPrivateImportUsage) +/homeassistant/components/esphome/light.py + /homeassistant/components/esphome/light.py:157:7 - error: Base classes for class "EsphomeLight" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/light.py:157:7 - error: Base classes for class "EsphomeLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/light.py:165:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/light.py:170:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/light.py:286:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/light.py:297:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/light.py:303:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/light.py:315:9 - error: "rgb_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/light.py:333:9 - error: "rgbw_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/light.py:341:9 - error: "rgbww_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/light.py:377:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/esphome/lock.py + /homeassistant/components/esphome/lock.py:24:7 - error: Base classes for class "EsphomeLock" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/lock.py:24:7 - error: Base classes for class "EsphomeLock" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/lock.py:43:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/lock.py:51:9 - error: "is_locking" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/lock.py:57:9 - error: "is_unlocking" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/lock.py:63:9 - error: "is_jammed" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/lock.py:68:15 - error: Method "async_lock" overrides class "LockEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/lock.py:75:15 - error: Method "async_unlock" overrides class "LockEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/lock.py:83:15 - error: Method "async_open" overrides class "LockEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/esphome/manager.py + /homeassistant/components/esphome/manager.py:13:5 - error: "APIClient" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.client" instead (reportPrivateImportUsage) + /homeassistant/components/esphome/manager.py:14:5 - error: "APIConnectionError" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.core" instead (reportPrivateImportUsage) + /homeassistant/components/esphome/manager.py:17:5 - error: "EncryptionPlaintextAPIError" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.core" instead (reportPrivateImportUsage) + /homeassistant/components/esphome/manager.py:19:5 - error: "InvalidAuthAPIError" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.core" instead (reportPrivateImportUsage) + /homeassistant/components/esphome/manager.py:20:5 - error: "InvalidEncryptionKeyAPIError" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.core" instead (reportPrivateImportUsage) + /homeassistant/components/esphome/manager.py:22:5 - error: "ReconnectLogic" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.reconnect_logic" instead (reportPrivateImportUsage) + /homeassistant/components/esphome/manager.py:23:5 - error: "RequiresEncryptionAPIError" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.core" instead (reportPrivateImportUsage) + /homeassistant/components/esphome/manager.py:28:5 - error: "parse_log_message" is not exported from module "aioesphomeapi" +   Import from "aioesphomeapi.log_parser" instead (reportPrivateImportUsage) + /homeassistant/components/esphome/manager.py:1198:20 - error: Argument of type "UserServiceArgType | None" cannot be assigned to parameter "key" of type "UserServiceArgType" in function "__getitem__" +   Type "UserServiceArgType | None" is not assignable to type "UserServiceArgType" +     "None" is not assignable to "UserServiceArgType" (reportArgumentType) +/homeassistant/components/esphome/media_player.py + /homeassistant/components/esphome/media_player.py:87:7 - error: Base classes for class "EsphomeMediaPlayer" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/media_player.py:87:7 - error: Base classes for class "EsphomeMediaPlayer" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/media_player.py:111:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/media_player.py:111:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/media_player.py:117:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/media_player.py:123:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/media_player.py:128:15 - error: Method "async_play_media" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/media_player.py:242:15 - error: Method "async_set_volume_level" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/media_player.py:249:15 - error: Method "async_media_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/media_player.py:258:15 - error: Method "async_media_play" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/media_player.py:267:15 - error: Method "async_media_stop" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/media_player.py:276:15 - error: Method "async_mute_volume" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/media_player.py:285:15 - error: Method "async_turn_on" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/media_player.py:294:15 - error: Method "async_turn_off" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/esphome/number.py + /homeassistant/components/esphome/number.py:37:7 - error: Base classes for class "EsphomeNumber" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/number.py:37:7 - error: Base classes for class "EsphomeNumber" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/number.py:62:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/number.py:68:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/esphome/select.py + /homeassistant/components/esphome/select.py:64:7 - error: Base classes for class "EsphomeSelect" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/select.py:64:7 - error: Base classes for class "EsphomeSelect" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/select.py:75:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/select.py:81:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/select.py:88:7 - error: Base classes for class "EsphomeAssistPipelineSelect" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/select.py:101:7 - error: Base classes for class "EsphomeVadSensitivitySelect" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/select.py:110:7 - error: Base classes for class "EsphomeAssistSatelliteWakeWordSelect" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/select.py:110:7 - error: Base classes for class "EsphomeAssistSatelliteWakeWordSelect" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/select.py:110:7 - error: Base classes for class "EsphomeAssistSatelliteWakeWordSelect" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/select.py:110:7 - error: Base classes for class "EsphomeAssistSatelliteWakeWordSelect" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/select.py:110:7 - error: Base classes for class "EsphomeAssistSatelliteWakeWordSelect" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/select.py:150:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/esphome/sensor.py + /homeassistant/components/esphome/sensor.py:71:7 - error: Base classes for class "EsphomeSensor" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/sensor.py:71:7 - error: Base classes for class "EsphomeSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/sensor.py:101:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/sensor.py:113:7 - error: Base classes for class "EsphomeTextSensor" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/sensor.py:113:7 - error: Base classes for class "EsphomeTextSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/sensor.py:126:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/esphome/switch.py + /homeassistant/components/esphome/switch.py:24:7 - error: Base classes for class "EsphomeSwitch" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/switch.py:24:7 - error: Base classes for class "EsphomeSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/switch.py:39:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/switch.py:44:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/switch.py:51:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/esphome/text.py + /homeassistant/components/esphome/text.py:30:7 - error: Base classes for class "EsphomeText" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/text.py:30:7 - error: Base classes for class "EsphomeText" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/text.py:45:9 - error: "native_value" overrides symbol of same name in class "TextEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/text.py:51:15 - error: Method "async_set_value" overrides class "TextEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/esphome/time.py + /homeassistant/components/esphome/time.py:17:7 - error: Base classes for class "EsphomeTime" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/time.py:17:7 - error: Base classes for class "EsphomeTime" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/time.py:22:9 - error: "native_value" overrides symbol of same name in class "TimeEntity" +   "property" is not assignable to "cached_property[time | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/esphome/update.py + /homeassistant/components/esphome/update.py:161:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/update.py:270:7 - error: Base classes for class "ESPHomeUpdateEntity" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/update.py:270:7 - error: Base classes for class "ESPHomeUpdateEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/update.py:290:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/update.py:296:9 - error: "in_progress" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/update.py:302:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/update.py:307:15 - error: Method "async_release_notes" overrides class "UpdateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, str | None]", override returns type "Coroutine[Any, Any, str | None]" +     "Coroutine[Any, Any, str | None]" is not assignable to "CoroutineType[Any, Any, str | None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/update.py:315:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/update.py:321:9 - error: "title" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/update.py:327:9 - error: "update_percentage" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[int | float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/update.py:344:15 - error: Method "async_install" overrides class "UpdateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/esphome/valve.py + /homeassistant/components/esphome/valve.py:28:7 - error: Base classes for class "EsphomeValve" define variable "device_entry" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/valve.py:28:7 - error: Base classes for class "EsphomeValve" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/esphome/valve.py:73:15 - error: Method "async_open_valve" overrides class "ValveEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/valve.py:80:15 - error: Method "async_close_valve" overrides class "ValveEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/valve.py:87:15 - error: Method "async_stop_valve" overrides class "ValveEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/esphome/valve.py:94:15 - error: Method "async_set_valve_position" overrides class "ValveEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/etherscan/sensor.py + /homeassistant/components/etherscan/sensor.py:7:6 - error: Import "pyetherscan" could not be resolved (reportMissingImports) + /homeassistant/components/etherscan/sensor.py:71:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/etherscan/sensor.py:76:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/etherscan/sensor.py:81:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/eufy/__init__.py + /homeassistant/components/eufy/__init__.py:3:8 - error: Import "lakeside" could not be resolved (reportMissingImports) +/homeassistant/components/eufy/light.py + /homeassistant/components/eufy/light.py:7:8 - error: Import "lakeside" could not be resolved (reportMissingImports) + /homeassistant/components/eufy/light.py:78:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/eufy/light.py:83:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/eufy/light.py:88:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/eufy/light.py:93:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/eufy/light.py:102:16 - error: Operator "*" not supported for "None" (reportOptionalOperand) + /homeassistant/components/eufy/light.py:106:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/eufy/light.py:111:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/eufy/light.py:149:17 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/eufy/light.py:149:30 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) +/homeassistant/components/eufy/switch.py + /homeassistant/components/eufy/switch.py:7:8 - error: Import "lakeside" could not be resolved (reportMissingImports) + /homeassistant/components/eufy/switch.py:47:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/eufy/switch.py:52:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/eufy/switch.py:57:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/eufylife_ble/sensor.py + /homeassistant/components/eufylife_ble/sensor.py:61:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/eufylife_ble/sensor.py:95:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/eufylife_ble/sensor.py:102:9 - error: "suggested_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/eufylife_ble/sensor.py:123:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/eufylife_ble/sensor.py:128:9 - error: "suggested_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/eufylife_ble/sensor.py:169:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/event/__init__.py + /homeassistant/components/event/__init__.py:115:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "EventEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/event/__init__.py:116:5 - error: "_attr_device_class" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "EventDeviceClass | None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/event/__init__.py:118:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) + /homeassistant/components/event/__init__.py:165:9 - error: "capability_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/event/__init__.py:173:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/event/__init__.py:181:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/everlights/light.py + /homeassistant/components/everlights/light.py:103:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/evil_genius_labs/entity.py + /homeassistant/components/evil_genius_labs/entity.py:19:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/evil_genius_labs/light.py + /homeassistant/components/evil_genius_labs/light.py:30:7 - error: Base classes for class "EvilGeniusLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/evil_genius_labs/light.py:30:7 - error: Base classes for class "EvilGeniusLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/evil_genius_labs/light.py:50:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/evil_genius_labs/light.py:55:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/evil_genius_labs/light.py:60:9 - error: "rgb_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/evil_genius_labs/light.py:71:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/evil_genius_labs/light.py:84:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/evil_genius_labs/light.py:110:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/evohome/__init__.py + /homeassistant/components/evohome/__init__.py:231:55 - error: Could not access item in TypedDict +   "timing_mode" is not a required key in "EvoAllowedSystemModesResponseT", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/evohome/__init__.py:245:55 - error: Could not access item in TypedDict +   "timing_mode" is not a required key in "EvoAllowedSystemModesResponseT", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/evohome/climate.py + /homeassistant/components/evohome/climate.py:136:7 - error: Base classes for class "EvoClimateEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/climate.py:136:7 - error: Base classes for class "EvoClimateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/climate.py:143:7 - error: Base classes for class "EvoZone" define variable "current_temperature" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/climate.py:148:5 - error: "_evo_device" overrides symbol of same name in class "EvoChild" +   Variable is mutable so its type is invariant +     Override type "Zone" is not the same as base type "HotWater | Zone" (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/climate.py:148:5 - error: "_evo_device" overrides symbol of same name in class "EvoEntity" +   Variable is mutable so its type is invariant +     Override type "Zone" is not the same as base type "ControlSystem | HotWater | Zone" (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/climate.py:205:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/climate.py:210:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/climate.py:221:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/climate.py:226:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/climate.py:233:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/climate.py:241:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/climate.py:325:5 - error: "_evo_device" overrides symbol of same name in class "EvoEntity" +   Variable is mutable so its type is invariant +     Override type "ControlSystem" is not the same as base type "ControlSystem | HotWater | Zone" (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/climate.py:382:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/climate.py:392:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/climate.py:403:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/evohome/entity.py + /homeassistant/components/evohome/entity.py:67:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/entity.py:95:5 - error: "_evo_device" overrides symbol of same name in class "EvoEntity" +   Variable is mutable so its type is invariant +     Override type "HotWater | Zone" is not the same as base type "ControlSystem | HotWater | Zone" (reportIncompatibleVariableOverride) +/homeassistant/components/evohome/water_heater.py + /homeassistant/components/evohome/water_heater.py:68:7 - error: Base classes for class "EvoDHW" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/water_heater.py:68:7 - error: Base classes for class "EvoDHW" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/water_heater.py:68:7 - error: Base classes for class "EvoDHW" define variable "current_temperature" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/water_heater.py:81:5 - error: "_evo_device" overrides symbol of same name in class "EvoChild" +   Variable is mutable so its type is invariant +     Override type "HotWater" is not the same as base type "HotWater | Zone" (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/water_heater.py:101:9 - error: "current_operation" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/evohome/water_heater.py:108:9 - error: "is_away_mode_on" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ezviz/alarm_control_panel.py + /homeassistant/components/ezviz/alarm_control_panel.py:92:14 - error: "entity_description" overrides symbol of same name in class "AlarmControlPanelEntity" +   Variable is mutable so its type is invariant +     Override type "EzvizAlarmControlPanelEntityDescription" is not the same as base type "AlarmControlPanelEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/alarm_control_panel.py:104:17 - error: Argument of type "Literal[1]" cannot be assigned to parameter "mode" of type "DefenseModeType" in function "api_set_defence_mode" +   "Literal[1]" is not assignable to "DefenseModeType" (reportArgumentType) + /homeassistant/components/ezviz/alarm_control_panel.py:115:17 - error: Argument of type "Literal[2]" cannot be assigned to parameter "mode" of type "DefenseModeType" in function "api_set_defence_mode" +   "Literal[2]" is not assignable to "DefenseModeType" (reportArgumentType) + /homeassistant/components/ezviz/alarm_control_panel.py:126:17 - error: Argument of type "Literal[3]" cannot be assigned to parameter "mode" of type "DefenseModeType" in function "api_set_defence_mode" +   "Literal[3]" is not assignable to "DefenseModeType" (reportArgumentType) +/homeassistant/components/ezviz/binary_sensor.py + /homeassistant/components/ezviz/binary_sensor.py:53:7 - error: Base classes for class "EzvizBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/binary_sensor.py:69:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ezviz/button.py + /homeassistant/components/ezviz/button.py:90:7 - error: Base classes for class "EzvizButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/button.py:104:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "EzvizButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/button.py:104:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "EzvizButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/ezviz/camera.py + /homeassistant/components/ezviz/camera.py:145:9 - error: "is_on" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/camera.py:150:9 - error: "is_recording" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/camera.py:155:9 - error: "motion_detection_enabled" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/ezviz/config_flow.py + /homeassistant/components/ezviz/config_flow.py:99:5 - error: "unique_id" incorrectly overrides property of same name in class "ConfigFlow" (reportIncompatibleMethodOverride) +/homeassistant/components/ezviz/entity.py + /homeassistant/components/ezviz/entity.py:49:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/entity.py:88:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/ezviz/image.py + /homeassistant/components/ezviz/image.py:67:9 - error: "available" incorrectly overrides property of same name in class "EzvizEntity" (reportIncompatibleMethodOverride) +/homeassistant/components/ezviz/light.py + /homeassistant/components/ezviz/light.py:43:7 - error: Base classes for class "EzvizLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ezviz/number.py + /homeassistant/components/ezviz/number.py:68:7 - error: Base classes for class "EzvizNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/number.py:92:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ezviz/select.py + /homeassistant/components/ezviz/select.py:142:7 - error: Base classes for class "EzvizSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/select.py:157:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ezviz/sensor.py + /homeassistant/components/ezviz/sensor.py:91:7 - error: Base classes for class "EzvizSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/sensor.py:104:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/ezviz/siren.py + /homeassistant/components/ezviz/siren.py:52:7 - error: Base classes for class "EzvizSirenEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/siren.py:52:7 - error: Base classes for class "EzvizSirenEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/siren.py:52:7 - error: Base classes for class "EzvizSirenEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/siren.py:52:7 - error: Base classes for class "EzvizSirenEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/siren.py:52:7 - error: Base classes for class "EzvizSirenEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/siren.py:52:7 - error: Base classes for class "EzvizSirenEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ezviz/switch.py + /homeassistant/components/ezviz/switch.py:126:7 - error: Base classes for class "EzvizSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ezviz/update.py + /homeassistant/components/ezviz/update.py:47:7 - error: Base classes for class "EzvizUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/update.py:69:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/update.py:74:9 - error: "in_progress" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/update.py:79:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ezviz/update.py:93:9 - error: "update_percentage" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[int | float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/faa_delays/binary_sensor.py + /homeassistant/components/faa_delays/binary_sensor.py:101:7 - error: Base classes for class "FAABinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/faa_delays/binary_sensor.py:116:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FaaDelaysBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/faa_delays/binary_sensor.py:116:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "FaaDelaysBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/faa_delays/binary_sensor.py:127:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/faa_delays/binary_sensor.py:132:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fail2ban/sensor.py + /homeassistant/components/fail2ban/sensor.py:74:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fail2ban/sensor.py:79:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fail2ban/sensor.py:84:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/familyhub/camera.py + /homeassistant/components/familyhub/camera.py:5:6 - error: Import "pyfamilyhublocal" could not be resolved (reportMissingImports) + /homeassistant/components/familyhub/camera.py:62:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fan/__init__.py + /homeassistant/components/fan/__init__.py:211:5 - error: "entity_description" overrides symbol of same name in class "ToggleEntity" +   Variable is mutable so its type is invariant +     Override type "FanEntityDescription" is not the same as base type "ToggleEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fan/__init__.py:218:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FanEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/fan/__init__.py:341:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fan/__init__.py:373:9 - error: "capability_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fan/__init__.py:388:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fastdotcom/sensor.py + /homeassistant/components/fastdotcom/sensor.py:29:7 - error: Base classes for class "SpeedtestSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fastdotcom/sensor.py:52:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/feedreader/coordinator.py + /homeassistant/components/feedreader/coordinator.py:161:24 - error: Cannot assign to attribute "entries" for class "FeedParserDict" +   Attribute "entries" is unknown (reportAttributeAccessIssue) +/homeassistant/components/feedreader/event.py + /homeassistant/components/feedreader/event.py:39:7 - error: Base classes for class "FeedReaderEvent" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/feedreader/event.py:83:37 - error: Argument of type "Unknown | Any | list[Unknown] | None" cannot be assigned to parameter "s" of type "AnyStr@unescape" in function "unescape" +   Type "Unknown | Any | list[Unknown] | None" is not assignable to constrained type variable "AnyStr" (reportArgumentType) +/homeassistant/components/ffmpeg/__init__.py + /homeassistant/components/ffmpeg/__init__.py:183:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/ffmpeg/camera.py + /homeassistant/components/ffmpeg/camera.py:96:17 - error: Argument of type "StreamReader" cannot be assigned to parameter "stream" of type "StreamReader" in function "async_aiohttp_proxy_stream" +   "asyncio.streams.StreamReader" is not assignable to "aiohttp.streams.StreamReader" (reportArgumentType) + /homeassistant/components/ffmpeg/camera.py:103:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ffmpeg_motion/binary_sensor.py + /homeassistant/components/ffmpeg_motion/binary_sensor.py:71:7 - error: Base classes for class "FFmpegBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ffmpeg_motion/binary_sensor.py:91:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ffmpeg_motion/binary_sensor.py:96:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ffmpeg_motion/binary_sensor.py:134:9 - error: "device_class" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[BinarySensorDeviceClass | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ffmpeg_noise/binary_sensor.py + /homeassistant/components/ffmpeg_noise/binary_sensor.py:100:9 - error: "device_class" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[BinarySensorDeviceClass | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fibaro/__init__.py + /homeassistant/components/fibaro/__init__.py:188:35 - error: Argument of type "set[tuple[Literal['fibaro'], int]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]]" in function "__init__" +   "int" is not assignable to "str" (reportArgumentType) + /homeassistant/components/fibaro/__init__.py:204:17 - error: Could not access item in TypedDict +   "identifiers" is not a required key in "DeviceInfo", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/fibaro/__init__.py:238:24 - error: Cannot assign to attribute "fibaro_controller" for class "DeviceModel" +   Attribute "fibaro_controller" is unknown (reportAttributeAccessIssue) + /homeassistant/components/fibaro/__init__.py:242:24 - error: Cannot assign to attribute "room_name" for class "DeviceModel" +   Attribute "room_name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/fibaro/__init__.py:243:24 - error: Cannot assign to attribute "friendly_name" for class "DeviceModel" +   Attribute "friendly_name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/fibaro/__init__.py:244:24 - error: Cannot assign to attribute "ha_id" for class "DeviceModel" +   Attribute "ha_id" is unknown (reportAttributeAccessIssue) + /homeassistant/components/fibaro/__init__.py:251:24 - error: Cannot assign to attribute "unique_id_str" for class "DeviceModel" +   Attribute "unique_id_str" is unknown (reportAttributeAccessIssue) + /homeassistant/components/fibaro/__init__.py:255:28 - error: Cannot access attribute "ha_id" for class "DeviceModel" +   Attribute "ha_id" is unknown (reportAttributeAccessIssue) + /homeassistant/components/fibaro/__init__.py:269:32 - error: Cannot access attribute "ha_id" for class "DeviceModel" +   Attribute "ha_id" is unknown (reportAttributeAccessIssue) + /homeassistant/components/fibaro/__init__.py:273:79 - error: Cannot access attribute "ha_id" for class "DeviceModel" +   Attribute "ha_id" is unknown (reportAttributeAccessIssue) +/homeassistant/components/fibaro/binary_sensor.py + /homeassistant/components/fibaro/binary_sensor.py:78:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fibaro/climate.py + /homeassistant/components/fibaro/climate.py:126:7 - error: Base classes for class "FibaroThermostat" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fibaro/climate.py:139:56 - error: Cannot access attribute "ha_id" for class "DeviceModel" +   Attribute "ha_id" is unknown (reportAttributeAccessIssue) + /homeassistant/components/fibaro/climate.py:239:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fibaro/climate.py:263:20 - error: Type "str | None" is not assignable to return type "str | int" +   Type "str | None" is not assignable to type "str | int" +     Type "None" is not assignable to type "str | int" +       "None" is not assignable to "str" +       "None" is not assignable to "int" (reportReturnType) + /homeassistant/components/fibaro/climate.py:267:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fibaro/climate.py:297:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fibaro/climate.py:305:69 - error: "lower" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/fibaro/climate.py:310:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fibaro/climate.py:349:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fibaro/climate.py:359:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fibaro/cover.py + /homeassistant/components/fibaro/cover.py:42:7 - error: Base classes for class "PositionableFibaroCover" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fibaro/cover.py:109:7 - error: Base classes for class "FibaroCover" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/fibaro/entity.py + /homeassistant/components/fibaro/entity.py:27:59 - error: Cannot access attribute "fibaro_controller" for class "DeviceModel" +   Attribute "fibaro_controller" is unknown (reportAttributeAccessIssue) + /homeassistant/components/fibaro/entity.py:28:36 - error: Cannot access attribute "ha_id" for class "DeviceModel" +   Attribute "ha_id" is unknown (reportAttributeAccessIssue) + /homeassistant/components/fibaro/entity.py:29:41 - error: Cannot access attribute "friendly_name" for class "DeviceModel" +   Attribute "friendly_name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/fibaro/entity.py:30:46 - error: Cannot access attribute "unique_id_str" for class "DeviceModel" +   Attribute "unique_id_str" is unknown (reportAttributeAccessIssue) + /homeassistant/components/fibaro/entity.py:97:48 - error: Argument of type "tuple[Any, ...]" cannot be assigned to parameter "arguments" of type "list[Any] | None" in function "execute_action" +   Type "tuple[Any, ...]" is not assignable to type "list[Any] | None" +     "tuple[Any, ...]" is not assignable to "list[Any]" +     "tuple[Any, ...]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/fibaro/entity.py:105:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fibaro/event.py + /homeassistant/components/fibaro/event.py:40:7 - error: Base classes for class "FibaroEventEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fibaro/event.py:53:44 - error: Cannot access attribute "friendly_name" for class "DeviceModel" +   Attribute "friendly_name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/fibaro/event.py:56:49 - error: Cannot access attribute "unique_id_str" for class "DeviceModel" +   Attribute "unique_id_str" is unknown (reportAttributeAccessIssue) +/homeassistant/components/fibaro/light.py + /homeassistant/components/fibaro/light.py:64:7 - error: Base classes for class "FibaroLight" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fibaro/light.py:72:16 - error: Operator "in" not supported for types "Literal['RGB']" and "str | None" +   Operator "in" not supported for types "Literal['RGB']" and "None" (reportOperatorIssue) + /homeassistant/components/fibaro/light.py:73:16 - error: Operator "in" not supported for types "Literal['rgb']" and "str | None" +   Operator "in" not supported for types "Literal['rgb']" and "None" (reportOperatorIssue) + /homeassistant/components/fibaro/light.py:74:16 - error: Operator "in" not supported for types "Literal['color']" and "str | None" +   Operator "in" not supported for types "Literal['color']" and "None" (reportOperatorIssue) + /homeassistant/components/fibaro/light.py:81:16 - error: Operator "in" not supported for types "Literal['RGBW']" and "str | None" +   Operator "in" not supported for types "Literal['RGBW']" and "None" (reportOperatorIssue) + /homeassistant/components/fibaro/light.py:82:16 - error: Operator "in" not supported for types "Literal['rgbw']" and "str | None" +   Operator "in" not supported for types "Literal['rgbw']" and "None" (reportOperatorIssue) +/homeassistant/components/fibaro/lock.py + /homeassistant/components/fibaro/lock.py:31:7 - error: Base classes for class "FibaroLock" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/fibaro/sensor.py + /homeassistant/components/fibaro/sensor.py:111:52 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/fibaro/sensor.py:139:7 - error: Base classes for class "FibaroSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fibaro/sensor.py:157:57 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/fibaro/sensor.py:158:21 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/fibaro/sensor.py:168:7 - error: Base classes for class "FibaroAdditionalSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fibaro/sensor.py:183:44 - error: Cannot access attribute "friendly_name" for class "DeviceModel" +   Attribute "friendly_name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/fibaro/sensor.py:184:49 - error: Cannot access attribute "unique_id_str" for class "DeviceModel" +   Attribute "unique_id_str" is unknown (reportAttributeAccessIssue) +/homeassistant/components/fibaro/switch.py + /homeassistant/components/fibaro/switch.py:31:7 - error: Base classes for class "FibaroSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/fido/sensor.py + /homeassistant/components/fido/sensor.py:229:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/file/sensor.py + /homeassistant/components/file/sensor.py:76:24 - error: "data" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/filesize/sensor.py + /homeassistant/components/filesize/sensor.py:71:7 - error: Base classes for class "FilesizeEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/filesize/sensor.py:94:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/filter/sensor.py + /homeassistant/components/filter/sensor.py:404:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/filter/sensor.py:523:7 - error: Base classes for class "RangeFilter" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/filter/sensor.py:582:7 - error: Base classes for class "OutlierFilter" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/filter/sensor.py:632:7 - error: Base classes for class "LowPassFilter" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/filter/sensor.py:666:7 - error: Base classes for class "TimeSMAFilter" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/filter/sensor.py:721:7 - error: Base classes for class "ThrottleFilter" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/filter/sensor.py:748:7 - error: Base classes for class "TimeThrottleFilter" define variable "name" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/fing/device_tracker.py + /homeassistant/components/fing/device_tracker.py:60:7 - error: Base classes for class "FingTrackedDevice" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fing/device_tracker.py:77:46 - error: Argument of type "str | None" cannot be assigned to parameter "type" of type "str" in function "get_icon_from_type" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/fing/device_tracker.py:85:9 - error: "ip_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fing/device_tracker.py:90:9 - error: "entity_registry_enabled_default" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/fing/device_tracker.py:95:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fing/device_tracker.py:109:54 - error: Argument of type "str | None" cannot be assigned to parameter "type" of type "str" in function "get_icon_from_type" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/fing/device_tracker.py:121:50 - error: Argument of type "str | None" cannot be assigned to parameter "type" of type "str" in function "get_icon_from_type" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/fints/sensor.py + /homeassistant/components/fints/sensor.py:277:26 - error: Cannot assign to attribute "_holdings" for class "FinTsHoldingsAccount*" +   Type "NeedTANResponse | list[Unknown]" is not assignable to type "list[Any]" +     "NeedTANResponse" is not assignable to "list[Any]" (reportAttributeAccessIssue) + /homeassistant/components/fints/sensor.py:281:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/firefly_iii/sensor.py + /homeassistant/components/firefly_iii/sensor.py:78:7 - error: Base classes for class "FireflyAccountBalanceSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/firefly_iii/sensor.py:99:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/firefly_iii/sensor.py:104:7 - error: Base classes for class "FireflyAccountRoleSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/firefly_iii/sensor.py:122:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/firefly_iii/sensor.py:133:7 - error: Base classes for class "FireflyAccountTypeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/firefly_iii/sensor.py:156:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/firefly_iii/sensor.py:161:7 - error: Base classes for class "FireflyCategorySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/firefly_iii/sensor.py:182:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/firefly_iii/sensor.py:193:7 - error: Base classes for class "FireflyBudgetSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/firefly_iii/sensor.py:214:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/fireservicerota/binary_sensor.py + /homeassistant/components/fireservicerota/binary_sensor.py:33:7 - error: Base classes for class "ResponseBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fireservicerota/binary_sensor.py:53:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fireservicerota/binary_sensor.py:58:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fireservicerota/sensor.py + /homeassistant/components/fireservicerota/sensor.py:44:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fireservicerota/sensor.py:55:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/fireservicerota/sensor.py:60:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fireservicerota/switch.py + /homeassistant/components/fireservicerota/switch.py:58:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fireservicerota/switch.py:68:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fireservicerota/switch.py:73:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/fireservicerota/switch.py:78:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/firmata/binary_sensor.py + /homeassistant/components/firmata/binary_sensor.py:47:7 - error: Base classes for class "FirmataBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/firmata/binary_sensor.py:47:7 - error: Base classes for class "FirmataBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/firmata/binary_sensor.py:47:7 - error: Base classes for class "FirmataBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/firmata/binary_sensor.py:59:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/firmata/board.py + /homeassistant/components/firmata/board.py:42:35 - error: Cannot assign to attribute "api" for class "FirmataBoard*" +   "None" is not assignable to "PymataExpress" (reportAttributeAccessIssue) + /homeassistant/components/firmata/board.py:113:20 - error: Cannot assign to attribute "api" for class "FirmataBoard*" +   "None" is not assignable to "PymataExpress" (reportAttributeAccessIssue) + /homeassistant/components/firmata/board.py:131:13 - error: Operator "+=" not supported for types "int" and "Any | None" +   Operator "+" not supported for types "int" and "None" (reportOperatorIssue) +/homeassistant/components/firmata/light.py + /homeassistant/components/firmata/light.py:54:7 - error: Base classes for class "FirmataLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/firmata/light.py:54:7 - error: Base classes for class "FirmataLight" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/firmata/light.py:54:7 - error: Base classes for class "FirmataLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/firmata/light.py:78:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/firmata/light.py:83:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/firmata/pin.py + /homeassistant/components/firmata/pin.py:94:14 - error: "_state" overrides symbol of same name in class "FirmataBoardPin" +   Variable is mutable so its type is invariant +     Override type "bool" is not the same as base type "bool | int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/firmata/pin.py:143:14 - error: "_state" overrides symbol of same name in class "FirmataBoardPin" +   Variable is mutable so its type is invariant +     Override type "int" is not the same as base type "bool | int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/firmata/pin.py:211:14 - error: "_state" overrides symbol of same name in class "FirmataBoardPin" +   Variable is mutable so its type is invariant +     Override type "bool" is not the same as base type "bool | int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/firmata/pin.py:218:5 - error: "_analog_pin" overrides symbol of same name in class "FirmataBoardPin" +   Variable is mutable so its type is invariant +     Override type "int" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/firmata/pin.py:276:14 - error: "_state" overrides symbol of same name in class "FirmataBoardPin" +   Variable is mutable so its type is invariant +     Override type "int" is not the same as base type "bool | int | None" (reportIncompatibleVariableOverride) +/homeassistant/components/firmata/sensor.py + /homeassistant/components/firmata/sensor.py:47:7 - error: Base classes for class "FirmataSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/firmata/sensor.py:47:7 - error: Base classes for class "FirmataSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/firmata/sensor.py:47:7 - error: Base classes for class "FirmataSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/firmata/sensor.py:59:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/firmata/switch.py + /homeassistant/components/firmata/switch.py:49:7 - error: Base classes for class "FirmataSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/firmata/switch.py:49:7 - error: Base classes for class "FirmataSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/firmata/switch.py:49:7 - error: Base classes for class "FirmataSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/firmata/switch.py:57:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fitbit/application_credentials.py + /homeassistant/components/fitbit/application_credentials.py:64:40 - error: "resp" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/fitbit/sensor.py + /homeassistant/components/fitbit/sensor.py:613:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "FitbitSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fitbit/sensor.py:649:7 - error: Base classes for class "FitbitBatterySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fitbit/sensor.py:665:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FitbitSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fitbit/sensor.py:665:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "FitbitSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fitbit/sensor.py:678:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fitbit/sensor.py:685:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fitbit/sensor.py:705:7 - error: Base classes for class "FitbitBatteryLevelSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fitbit/sensor.py:722:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FitbitSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fitbit/sensor.py:722:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "FitbitSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/fivem/binary_sensor.py + /homeassistant/components/fivem/binary_sensor.py:47:7 - error: Base classes for class "FiveMSensorEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fivem/binary_sensor.py:47:7 - error: Base classes for class "FiveMSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fivem/binary_sensor.py:50:5 - error: "entity_description" overrides symbol of same name in class "FiveMEntity" +   Variable is mutable so its type is invariant +     Override type "FiveMBinarySensorEntityDescription" is not the same as base type "FiveMEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fivem/binary_sensor.py:50:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "FiveMBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fivem/binary_sensor.py:53:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fivem/config_flow.py + /homeassistant/components/fivem/config_flow.py:35:17 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) +/homeassistant/components/fivem/entity.py + /homeassistant/components/fivem/entity.py:41:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FiveMEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fivem/entity.py:53:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fivem/sensor.py + /homeassistant/components/fivem/sensor.py:64:7 - error: Base classes for class "FiveMSensorEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fivem/sensor.py:64:7 - error: Base classes for class "FiveMSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fivem/sensor.py:67:5 - error: "entity_description" overrides symbol of same name in class "FiveMEntity" +   Variable is mutable so its type is invariant +     Override type "FiveMSensorEntityDescription" is not the same as base type "FiveMEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fivem/sensor.py:67:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "FiveMSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fivem/sensor.py:70:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/fixer/sensor.py + /homeassistant/components/fixer/sensor.py:9:6 - error: Import "fixerio" could not be resolved (reportMissingImports) + /homeassistant/components/fixer/sensor.py:10:6 - error: Import "fixerio.exceptions" could not be resolved (reportMissingImports) + /homeassistant/components/fixer/sensor.py:78:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fixer/sensor.py:83:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fixer/sensor.py:88:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/fixer/sensor.py:93:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fjaraskupan/binary_sensor.py + /homeassistant/components/fjaraskupan/binary_sensor.py:69:7 - error: Base classes for class "BinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fjaraskupan/binary_sensor.py:84:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "EntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fjaraskupan/binary_sensor.py:84:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "EntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fjaraskupan/binary_sensor.py:90:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fjaraskupan/fan.py + /homeassistant/components/fjaraskupan/fan.py:61:72 - error: Argument of type "(coordinator: FjaraskupanCoordinator) -> list[Fan]" cannot be assigned to parameter "constructor" of type "(FjaraskupanCoordinator) -> list[Entity]" in function "async_setup_entry_platform" +   Type "(coordinator: FjaraskupanCoordinator) -> list[Fan]" is not assignable to type "(FjaraskupanCoordinator) -> list[Entity]" +     Function return type "list[Fan]" is incompatible with type "list[Entity]" +       "list[Fan]" is not assignable to "list[Entity]" +         Type parameter "_T@list" is invariant, but "Fan" is not the same as "Entity" +         Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /homeassistant/components/fjaraskupan/fan.py:64:7 - error: Base classes for class "Fan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fjaraskupan/fan.py:150:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) + /homeassistant/components/fjaraskupan/fan.py:155:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fjaraskupan/fan.py:165:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fjaraskupan/fan.py:170:9 - error: "preset_modes" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fjaraskupan/light.py + /homeassistant/components/fjaraskupan/light.py:31:7 - error: Base classes for class "Light" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fjaraskupan/light.py:64:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fjaraskupan/light.py:71:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fjaraskupan/number.py + /homeassistant/components/fjaraskupan/number.py:32:7 - error: Base classes for class "PeriodicVentingTime" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fjaraskupan/number.py:55:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fjaraskupan/sensor.py + /homeassistant/components/fjaraskupan/sensor.py:37:7 - error: Base classes for class "RssiSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fjaraskupan/sensor.py:59:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/fleetgo/device_tracker.py + /homeassistant/components/fleetgo/device_tracker.py:8:6 - error: Import "ritassist" could not be resolved (reportMissingImports) +/homeassistant/components/flexit/climate.py + /homeassistant/components/flexit/climate.py:145:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/flexit_bacnet/binary_sensor.py + /homeassistant/components/flexit_bacnet/binary_sensor.py:6:27 - error: "FlexitBACnet" is not exported from module "flexit_bacnet" +   Import from "flexit_bacnet.device" instead (reportPrivateImportUsage) + /homeassistant/components/flexit_bacnet/binary_sensor.py:54:7 - error: Base classes for class "FlexitBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/binary_sensor.py:67:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FlexitBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/binary_sensor.py:67:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "FlexitBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/binary_sensor.py:73:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/flexit_bacnet/climate.py + /homeassistant/components/flexit_bacnet/climate.py:50:7 - error: Base classes for class "FlexitClimateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/climate.py:84:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/climate.py:91:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/climate.py:96:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/climate.py:125:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/climate.py:150:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/flexit_bacnet/config_flow.py + /homeassistant/components/flexit_bacnet/config_flow.py:9:27 - error: "FlexitBACnet" is not exported from module "flexit_bacnet" +   Import from "flexit_bacnet.device" instead (reportPrivateImportUsage) +/homeassistant/components/flexit_bacnet/coordinator.py + /homeassistant/components/flexit_bacnet/coordinator.py:9:27 - error: "FlexitBACnet" is not exported from module "flexit_bacnet" +   Import from "flexit_bacnet.device" instead (reportPrivateImportUsage) +/homeassistant/components/flexit_bacnet/entity.py + /homeassistant/components/flexit_bacnet/entity.py:5:27 - error: "FlexitBACnet" is not exported from module "flexit_bacnet" +   Import from "flexit_bacnet.device" instead (reportPrivateImportUsage) +/homeassistant/components/flexit_bacnet/number.py + /homeassistant/components/flexit_bacnet/number.py:7:27 - error: "FlexitBACnet" is not exported from module "flexit_bacnet" +   Import from "flexit_bacnet.device" instead (reportPrivateImportUsage) + /homeassistant/components/flexit_bacnet/number.py:212:7 - error: Base classes for class "FlexitNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/number.py:225:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FlexitNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/number.py:225:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "FlexitNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/number.py:231:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/number.py:236:9 - error: "native_max_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/number.py:241:9 - error: "native_min_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/flexit_bacnet/sensor.py + /homeassistant/components/flexit_bacnet/sensor.py:6:27 - error: "FlexitBACnet" is not exported from module "flexit_bacnet" +   Import from "flexit_bacnet.device" instead (reportPrivateImportUsage) + /homeassistant/components/flexit_bacnet/sensor.py:173:7 - error: Base classes for class "FlexitSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/sensor.py:186:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FlexitSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/sensor.py:186:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "FlexitSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/sensor.py:192:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/flexit_bacnet/switch.py + /homeassistant/components/flexit_bacnet/switch.py:8:27 - error: "FlexitBACnet" is not exported from module "flexit_bacnet" +   Import from "flexit_bacnet.device" instead (reportPrivateImportUsage) + /homeassistant/components/flexit_bacnet/switch.py:75:7 - error: Base classes for class "FlexitSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/switch.py:90:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FlexitSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/switch.py:90:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "FlexitSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/flexit_bacnet/switch.py:96:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/flic/binary_sensor.py + /homeassistant/components/flic/binary_sensor.py:76:42 - error: Argument of type "Any | None" cannot be assigned to parameter "port" of type "int" in function "__init__" +   Type "Any | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/flic/binary_sensor.py:85:12 - error: Cannot assign to attribute "on_new_verified_button" for class "FlicClient" +   Expression of type "(address: Unknown) -> Unknown" cannot be assigned to attribute "on_new_verified_button" of class "FlicClient" +     Type "(address: Unknown) -> Unknown" is not assignable to type "(bd_addr: Unknown) -> None" +       Parameter name mismatch: "bd_addr" versus "address" (reportAttributeAccessIssue) +/homeassistant/components/flipr/binary_sensor.py + /homeassistant/components/flipr/binary_sensor.py:46:7 - error: Base classes for class "FliprBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flipr/binary_sensor.py:50:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/flipr/select.py + /homeassistant/components/flipr/select.py:38:7 - error: Base classes for class "FliprHubSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flipr/select.py:42:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/flipr/sensor.py + /homeassistant/components/flipr/sensor.py:72:7 - error: Base classes for class "FliprSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flipr/sensor.py:76:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/flipr/switch.py + /homeassistant/components/flipr/switch.py:38:7 - error: Base classes for class "FliprHubSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flipr/switch.py:42:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/flo/__init__.py + /homeassistant/components/flo/__init__.py:31:35 - error: "get_info" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/flo/binary_sensor.py + /homeassistant/components/flo/binary_sensor.py:41:7 - error: Base classes for class "FloPendingAlertsBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/binary_sensor.py:41:7 - error: Base classes for class "FloPendingAlertsBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/binary_sensor.py:52:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flo/binary_sensor.py:57:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flo/binary_sensor.py:68:7 - error: Base classes for class "FloWaterDetectedBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/binary_sensor.py:68:7 - error: Base classes for class "FloWaterDetectedBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/binary_sensor.py:79:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/flo/entity.py + /homeassistant/components/flo/entity.py:31:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flo/entity.py:44:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/flo/sensor.py + /homeassistant/components/flo/sensor.py:54:7 - error: Base classes for class "FloDailyUsageSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:54:7 - error: Base classes for class "FloDailyUsageSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:58:5 - error: "_attr_state_class" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SensorStateClass" is not the same as base type "SensorStateClass | str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:67:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:74:7 - error: Base classes for class "FloSystemModeSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:74:7 - error: Base classes for class "FloSystemModeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:84:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:91:7 - error: Base classes for class "FloCurrentFlowRateSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:91:7 - error: Base classes for class "FloCurrentFlowRateSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:95:5 - error: "_attr_state_class" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SensorStateClass" is not the same as base type "SensorStateClass | str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:104:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:111:7 - error: Base classes for class "FloTemperatureSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:111:7 - error: Base classes for class "FloTemperatureSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:116:5 - error: "_attr_state_class" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SensorStateClass" is not the same as base type "SensorStateClass | str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:125:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:132:7 - error: Base classes for class "FloHumiditySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:132:7 - error: Base classes for class "FloHumiditySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:137:5 - error: "_attr_state_class" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SensorStateClass" is not the same as base type "SensorStateClass | str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:144:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:151:7 - error: Base classes for class "FloPressureSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:151:7 - error: Base classes for class "FloPressureSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:156:5 - error: "_attr_state_class" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SensorStateClass" is not the same as base type "SensorStateClass | str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:164:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:171:7 - error: Base classes for class "FloBatterySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:171:7 - error: Base classes for class "FloBatterySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:176:5 - error: "_attr_state_class" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SensorStateClass" is not the same as base type "SensorStateClass | str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/flo/sensor.py:183:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/flo/switch.py + /homeassistant/components/flo/switch.py:64:7 - error: Base classes for class "FloSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flo/switch.py:64:7 - error: Base classes for class "FloSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/flume/binary_sensor.py + /homeassistant/components/flume/binary_sensor.py:120:7 - error: Base classes for class "FlumeNotificationBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flume/binary_sensor.py:125:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "FlumeBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/flume/binary_sensor.py:128:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flume/binary_sensor.py:140:7 - error: Base classes for class "FlumeConnectionBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flume/binary_sensor.py:145:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "FlumeBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/flume/binary_sensor.py:150:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/flume/config_flow.py + /homeassistant/components/flume/config_flow.py:126:34 - error: Could not access item in TypedDict +   "unique_id" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/flume/coordinator.py + /homeassistant/components/flume/coordinator.py:138:29 - error: Argument of type "None" cannot be assigned to parameter "read" of type "str" in function "__init__" +   "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/flume/sensor.py + /homeassistant/components/flume/sensor.py:153:7 - error: Base classes for class "FlumeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flume/sensor.py:157:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/flux/switch.py + /homeassistant/components/flux/switch.py:183:7 - error: Base classes for class "FluxSwitch" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux/switch.py:183:7 - error: Base classes for class "FluxSwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux/switch.py:183:7 - error: Base classes for class "FluxSwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux/switch.py:183:7 - error: Base classes for class "FluxSwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux/switch.py:221:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux/switch.py:226:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux/switch.py:261:13 - error: Object of type "None" cannot be called (reportOptionalCall) +/homeassistant/components/flux_led/config_flow.py + /homeassistant/components/flux_led/config_flow.py:179:9 - error: Method "is_matching" overrides class "ConfigFlow" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "ConfigFlow", override parameter is type "FluxLedConfigFlow" +     "ConfigFlow" is not assignable to "FluxLedConfigFlow" (reportIncompatibleMethodOverride) +/homeassistant/components/flux_led/entity.py + /homeassistant/components/flux_led/entity.py:102:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/flux_led/light.py + /homeassistant/components/flux_led/light.py:182:7 - error: Base classes for class "FluxLight" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/light.py:182:7 - error: Base classes for class "FluxLight" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/light.py:182:7 - error: Base classes for class "FluxLight" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/light.py:182:7 - error: Base classes for class "FluxLight" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/light.py:182:7 - error: Base classes for class "FluxLight" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/light.py:182:7 - error: Base classes for class "FluxLight" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/light.py:182:7 - error: Base classes for class "FluxLight" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/light.py:182:7 - error: Base classes for class "FluxLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/light.py:182:7 - error: Base classes for class "FluxLight" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/light.py:213:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/light.py:223:9 - error: "rgb_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/light.py:228:9 - error: "rgbw_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/light.py:233:9 - error: "rgbww_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/light.py:238:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/light.py:245:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/flux_led/number.py + /homeassistant/components/flux_led/number.py:11:5 - error: "MUSIC_PIXELS_MAX" is not exported from module "flux_led.protocol" +   Import from "flux_led.const" instead (reportPrivateImportUsage) + /homeassistant/components/flux_led/number.py:12:5 - error: "MUSIC_PIXELS_PER_SEGMENT_MAX" is not exported from module "flux_led.protocol" +   Import from "flux_led.const" instead (reportPrivateImportUsage) + /homeassistant/components/flux_led/number.py:13:5 - error: "MUSIC_SEGMENTS_MAX" is not exported from module "flux_led.protocol" +   Import from "flux_led.const" instead (reportPrivateImportUsage) + /homeassistant/components/flux_led/number.py:14:5 - error: "PIXELS_MAX" is not exported from module "flux_led.protocol" +   Import from "flux_led.const" instead (reportPrivateImportUsage) + /homeassistant/components/flux_led/number.py:15:5 - error: "PIXELS_PER_SEGMENT_MAX" is not exported from module "flux_led.protocol" +   Import from "flux_led.const" instead (reportPrivateImportUsage) + /homeassistant/components/flux_led/number.py:16:5 - error: "SEGMENTS_MAX" is not exported from module "flux_led.protocol" +   Import from "flux_led.const" instead (reportPrivateImportUsage) + /homeassistant/components/flux_led/number.py:82:7 - error: Base classes for class "FluxSpeedNumber" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:82:7 - error: Base classes for class "FluxSpeedNumber" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:82:7 - error: Base classes for class "FluxSpeedNumber" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:82:7 - error: Base classes for class "FluxSpeedNumber" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:82:7 - error: Base classes for class "FluxSpeedNumber" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:82:7 - error: Base classes for class "FluxSpeedNumber" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:82:7 - error: Base classes for class "FluxSpeedNumber" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:82:7 - error: Base classes for class "FluxSpeedNumber" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:82:7 - error: Base classes for class "FluxSpeedNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:94:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:114:7 - error: Base classes for class "FluxConfigNumber" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:114:7 - error: Base classes for class "FluxConfigNumber" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:114:7 - error: Base classes for class "FluxConfigNumber" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:114:7 - error: Base classes for class "FluxConfigNumber" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:114:7 - error: Base classes for class "FluxConfigNumber" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:114:7 - error: Base classes for class "FluxConfigNumber" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:114:7 - error: Base classes for class "FluxConfigNumber" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:114:7 - error: Base classes for class "FluxConfigNumber" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:114:7 - error: Base classes for class "FluxConfigNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:178:9 - error: "native_max_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:185:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:204:9 - error: "native_max_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:212:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:238:9 - error: "native_max_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:247:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:266:9 - error: "native_max_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/number.py:275:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/flux_led/select.py + /homeassistant/components/flux_led/select.py:82:7 - error: Base classes for class "FluxConfigSelect" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/select.py:82:7 - error: Base classes for class "FluxConfigSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/select.py:128:9 - error: "options" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/select.py:134:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/select.py:150:9 - error: "options" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/select.py:156:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/select.py:171:9 - error: "options" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/select.py:177:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/select.py:207:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/select.py:236:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/flux_led/sensor.py + /homeassistant/components/flux_led/sensor.py:33:7 - error: Base classes for class "FluxPairedRemotes" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/sensor.py:33:7 - error: Base classes for class "FluxPairedRemotes" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/sensor.py:40:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/flux_led/switch.py + /homeassistant/components/flux_led/switch.py:49:7 - error: Base classes for class "FluxSwitch" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/switch.py:49:7 - error: Base classes for class "FluxSwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/switch.py:49:7 - error: Base classes for class "FluxSwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/switch.py:49:7 - error: Base classes for class "FluxSwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/switch.py:49:7 - error: Base classes for class "FluxSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/switch.py:49:7 - error: Base classes for class "FluxSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/switch.py:49:7 - error: Base classes for class "FluxSwitch" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/switch.py:101:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/switch.py:106:7 - error: Base classes for class "FluxMusicSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/switch.py:106:7 - error: Base classes for class "FluxMusicSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/flux_led/switch.py:125:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/foobot/sensor.py + /homeassistant/components/foobot/sensor.py:120:35 - error: Cannot access attribute "ClientConnectorError" for class "object" +   Attribute "ClientConnectorError" is unknown (reportAttributeAccessIssue) + /homeassistant/components/foobot/sensor.py:150:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/foobot/sensor.py:174:29 - error: Argument of type "float" cannot be assigned to parameter "period" of type "int" in function "get_last_data" +   "float" is not assignable to "int" (reportArgumentType) + /homeassistant/components/foobot/sensor.py:174:39 - error: Argument of type "float" cannot be assigned to parameter "average_by" of type "int" in function "get_last_data" +   "float" is not assignable to "int" (reportArgumentType) + /homeassistant/components/foobot/sensor.py:177:39 - error: Cannot access attribute "ClientConnectorError" for class "object" +   Attribute "ClientConnectorError" is unknown (reportAttributeAccessIssue) +/homeassistant/components/forecast_solar/sensor.py + /homeassistant/components/forecast_solar/sensor.py:153:7 - error: Base classes for class "ForecastSolarSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/forecast_solar/sensor.py:170:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ForecastSolarSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/forecast_solar/sensor.py:170:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ForecastSolarSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/forecast_solar/sensor.py:184:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/forked_daapd/browse_media.py + /homeassistant/components/forked_daapd/browse_media.py:182:21 - error: "__setitem__" method not defined on type "str" (reportIndexIssue) + /homeassistant/components/forked_daapd/browse_media.py:183:52 - error: Argument of type "Literal['name']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['name']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['name']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['name']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) +/homeassistant/components/forked_daapd/media_player.py + /homeassistant/components/forked_daapd/media_player.py:155:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:167:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:180:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:185:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:192:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:197:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:217:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:396:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:401:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:445:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:450:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:463:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:468:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:473:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:478:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:483:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:488:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:493:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:498:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:507:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:512:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:521:9 - error: "media_album_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:526:9 - error: "media_track" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:531:9 - error: "shuffle" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:536:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:541:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:546:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:615:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/forked_daapd/media_player.py:769:36 - error: "saved_queue_position" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/forked_daapd/media_player.py:842:17 - error: Operator "+=" not supported for types "list[BrowseMedia] | Unbound" and "Sequence[BrowseMedia]" +   Operator "+" not supported for types "Unbound" and "Sequence[BrowseMedia]" (reportOperatorIssue) + /homeassistant/components/forked_daapd/media_player.py:842:17 - error: "other_sources" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/forked_daapd/media_player.py:846:28 - error: "other_sources" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/forked_daapd/media_player.py:876:26 - error: "get" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/fortios/device_tracker.py + /homeassistant/components/fortios/device_tracker.py:12:6 - error: Import "fortiosapi" could not be resolved (reportMissingImports) +/homeassistant/components/foscam/number.py + /homeassistant/components/foscam/number.py:65:7 - error: Base classes for class "FoscamVolumeNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/foscam/number.py:79:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FoscamNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/foscam/number.py:79:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "FoscamNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/foscam/number.py:83:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/foscam/switch.py + /homeassistant/components/foscam/switch.py:167:7 - error: Base classes for class "FoscamGenericSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/foscam/switch.py:181:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FoscamSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/foscam/switch.py:181:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "FoscamSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/foscam/switch.py:185:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/free_mobile/notify.py + /homeassistant/components/free_mobile/notify.py:8:6 - error: Import "freesms" could not be resolved (reportMissingImports) +/homeassistant/components/freebox/binary_sensor.py + /homeassistant/components/freebox/binary_sensor.py:165:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/freebox/button.py + /homeassistant/components/freebox/button.py:66:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "FreeboxButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/freebox/device_tracker.py + /homeassistant/components/freebox/device_tracker.py:90:9 - error: "mac_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/freebox/device_tracker.py:95:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/freebox/sensor.py + /homeassistant/components/freebox/sensor.py:187:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/freebox/sensor.py:243:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/freebox/sensor.py:245:16 - error: Type "Any | None" is not assignable to return type "int" +   Type "Any | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportReturnType) +/homeassistant/components/freedompro/binary_sensor.py + /homeassistant/components/freedompro/binary_sensor.py:48:7 - error: Base classes for class "Device" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/freedompro/climate.py + /homeassistant/components/freedompro/climate.py:62:7 - error: Base classes for class "Device" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/freedompro/cover.py + /homeassistant/components/freedompro/cover.py:50:7 - error: Base classes for class "Device" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/freedompro/fan.py + /homeassistant/components/freedompro/fan.py:37:7 - error: Base classes for class "FreedomproFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/freedompro/light.py + /homeassistant/components/freedompro/light.py:42:7 - error: Base classes for class "Device" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/freedompro/lock.py + /homeassistant/components/freedompro/lock.py:35:7 - error: Base classes for class "Device" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/freedompro/sensor.py + /homeassistant/components/freedompro/sensor.py:56:7 - error: Base classes for class "Device" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/freedompro/switch.py + /homeassistant/components/freedompro/switch.py:35:7 - error: Base classes for class "Device" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/fritz/binary_sensor.py + /homeassistant/components/fritz/binary_sensor.py:75:7 - error: Base classes for class "FritzBoxBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/binary_sensor.py:75:7 - error: Base classes for class "FritzBoxBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/binary_sensor.py:78:5 - error: "entity_description" overrides symbol of same name in class "FritzBoxBaseCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "FritzBinarySensorEntityDescription" is not the same as base type "FritzEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/binary_sensor.py:78:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "FritzBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/binary_sensor.py:81:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fritz/button.py + /homeassistant/components/fritz/button.py:117:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "FritzButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/button.py:164:7 - error: Base classes for class "FritzBoxWOLButton" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/button.py:164:7 - error: Base classes for class "FritzBoxWOLButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/fritz/config_flow.py + /homeassistant/components/fritz/config_flow.py:199:9 - error: Method "is_matching" overrides class "ConfigFlow" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "ConfigFlow", override parameter is type "FritzBoxToolsFlowHandler" +     "ConfigFlow" is not assignable to "FritzBoxToolsFlowHandler" (reportIncompatibleMethodOverride) +/homeassistant/components/fritz/coordinator.py + /homeassistant/components/fritz/coordinator.py:121:44 - error: Cannot assign to attribute "connection" for class "FritzBoxTools*" +   "None" is not assignable to "FritzConnection" (reportAttributeAccessIssue) + /homeassistant/components/fritz/coordinator.py:122:49 - error: Cannot assign to attribute "fritz_guest_wifi" for class "FritzBoxTools*" +   "None" is not assignable to "FritzGuestWLAN" (reportAttributeAccessIssue) + /homeassistant/components/fritz/coordinator.py:123:40 - error: Cannot assign to attribute "fritz_hosts" for class "FritzBoxTools*" +   "None" is not assignable to "FritzHosts" (reportAttributeAccessIssue) + /homeassistant/components/fritz/coordinator.py:124:42 - error: Cannot assign to attribute "fritz_status" for class "FritzBoxTools*" +   "None" is not assignable to "FritzStatus" (reportAttributeAccessIssue) + /homeassistant/components/fritz/coordinator.py:125:38 - error: Cannot assign to attribute "fritz_call" for class "FritzBoxTools*" +   "None" is not assignable to "FritzCall" (reportAttributeAccessIssue) + /homeassistant/components/fritz/coordinator.py:377:36 - error: Type "list[dict[Unknown, Unknown]]" is not assignable to declared type "list[HostAttributes]" +   "list[dict[Unknown, Unknown]]" is not assignable to "list[HostAttributes]" +     Type parameter "_T@list" is invariant, but "dict[Unknown, Unknown]" is not the same as "HostAttributes" +     Consider switching from "list" to "Sequence" which is covariant (reportAssignmentType) + /homeassistant/components/fritz/coordinator.py:381:30 - error: Type "list[dict[Unknown, Unknown]]" is not assignable to declared type "list[HostInfo]" +   "list[dict[Unknown, Unknown]]" is not assignable to "list[HostInfo]" +     Type parameter "_T@list" is invariant, but "dict[Unknown, Unknown]" is not the same as "HostInfo" +     Consider switching from "list" to "Sequence" which is covariant (reportAssignmentType) + /homeassistant/components/fritz/coordinator.py:548:30 - error: Cannot access attribute "get" for class "str" +   Attribute "get" is unknown (reportAttributeAccessIssue) + /homeassistant/components/fritz/coordinator.py:571:30 - error: Cannot access attribute "get" for class "str" +   Attribute "get" is unknown (reportAttributeAccessIssue) + /homeassistant/components/fritz/coordinator.py:708:16 - error: Except clause is unreachable because exception is already handled +   "FritzConnectionException" is a subclass of "FritzConnectionException" (reportUnusedExcept) +/homeassistant/components/fritz/device_tracker.py + /homeassistant/components/fritz/device_tracker.py:68:7 - error: Base classes for class "FritzBoxTracker" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/device_tracker.py:68:7 - error: Base classes for class "FritzBoxTracker" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/device_tracker.py:68:7 - error: Base classes for class "FritzBoxTracker" define variable "ip_address" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/device_tracker.py:68:7 - error: Base classes for class "FritzBoxTracker" define variable "hostname" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/device_tracker.py:82:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/device_tracker.py:87:9 - error: "mac_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/device_tracker.py:92:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/device_tracker.py:99:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fritz/entity.py + /homeassistant/components/fritz/entity.py:35:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/entity.py:107:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FritzEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/entity.py:122:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fritz/image.py + /homeassistant/components/fritz/image.py:46:7 - error: Base classes for class "FritzGuestWifiQRImage" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/image.py:71:48 - error: Cannot access attribute "get_wifi_qr_code" for class "FritzGuestWLAN" +   Attribute "get_wifi_qr_code" is unknown (reportAttributeAccessIssue) +/homeassistant/components/fritz/sensor.py + /homeassistant/components/fritz/sensor.py:318:7 - error: Base classes for class "FritzBoxSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/sensor.py:318:7 - error: Base classes for class "FritzBoxSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/sensor.py:321:5 - error: "entity_description" overrides symbol of same name in class "FritzBoxBaseCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "FritzSensorEntityDescription" is not the same as base type "FritzEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/sensor.py:321:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "FritzSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/sensor.py:324:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/fritz/switch.py + /homeassistant/components/fritz/switch.py:268:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/switch.py:273:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/switch.py:291:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/switch.py:308:7 - error: Base classes for class "FritzBoxBaseSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/switch.py:335:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/switch.py:340:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/switch.py:345:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/switch.py:350:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/switch.py:355:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/switch.py:478:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/switch.py:490:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/switch.py:499:7 - error: Base classes for class "FritzBoxProfileSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/switch.py:507:14 - error: "_attr_is_on" overrides symbol of same name in class "ToggleEntity" +   Variable is mutable so its type is invariant +     Override type "bool" is not the same as base type "bool | None" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/switch.py:513:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/switch.py:518:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/fritz/update.py + /homeassistant/components/fritz/update.py:46:7 - error: Base classes for class "FritzBoxUpdateEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/update.py:46:7 - error: Base classes for class "FritzBoxUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/update.py:52:5 - error: "entity_description" overrides symbol of same name in class "FritzBoxBaseCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "FritzUpdateEntityDescription" is not the same as base type "FritzEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/update.py:52:5 - error: "entity_description" overrides symbol of same name in class "UpdateEntity" +   Variable is mutable so its type is invariant +     Override type "FritzUpdateEntityDescription" is not the same as base type "UpdateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/update.py:66:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/update.py:71:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritz/update.py:78:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fritzbox/binary_sensor.py + /homeassistant/components/fritzbox/binary_sensor.py:117:7 - error: Base classes for class "FritzboxBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/binary_sensor.py:117:7 - error: Base classes for class "FritzboxBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/binary_sensor.py:120:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "FritzBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/binary_sensor.py:123:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fritzbox/button.py + /homeassistant/components/fritzbox/button.py:40:7 - error: Base classes for class "FritzBoxTemplate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/button.py:49:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fritzbox/climate.py + /homeassistant/components/fritzbox/climate.py:79:7 - error: Base classes for class "FritzboxThermostat" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/climate.py:79:7 - error: Base classes for class "FritzboxThermostat" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/climate.py:115:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/climate.py:122:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/climate.py:147:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/climate.py:176:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fritzbox/config_flow.py + /homeassistant/components/fritzbox/config_flow.py:149:9 - error: Method "is_matching" overrides class "ConfigFlow" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "ConfigFlow", override parameter is type "FritzboxConfigFlow" +     "ConfigFlow" is not assignable to "FritzboxConfigFlow" (reportIncompatibleMethodOverride) +/homeassistant/components/fritzbox/cover.py + /homeassistant/components/fritzbox/cover.py:49:7 - error: Base classes for class "FritzboxCover" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/cover.py:49:7 - error: Base classes for class "FritzboxCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/cover.py:61:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/cover.py:69:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fritzbox/diagnostics.py + /homeassistant/components/fritzbox/diagnostics.py:27:33 - error: Type "dict[str, FritzhomeDevice | FritzhomeTemplate]" is not assignable to declared type "dict[str, dict[Unknown, Unknown]]" (reportAssignmentType) +/homeassistant/components/fritzbox/entity.py + /homeassistant/components/fritzbox/entity.py:51:16 - error: Type "Any | Literal[False] | None" is not assignable to return type "bool" +   Type "Any | Literal[False] | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportReturnType) + /homeassistant/components/fritzbox/entity.py:59:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fritzbox/light.py + /homeassistant/components/fritzbox/light.py:51:7 - error: Base classes for class "FritzboxLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/light.py:51:7 - error: Base classes for class "FritzboxLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/light.py:89:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/light.py:94:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/light.py:99:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/light.py:104:17 - error: Type "tuple[Any | None, float]" is not assignable to return type "tuple[float, float]" +   Type "Any | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportReturnType) + /homeassistant/components/fritzbox/light.py:104:28 - error: Argument of type "Any | None" cannot be assigned to parameter "x" of type "ConvertibleToFloat" in function "__new__" +   Type "Any | None" is not assignable to type "ConvertibleToFloat" +     Type "None" is not assignable to type "ConvertibleToFloat" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "None" is incompatible with protocol "SupportsFloat" +         "__float__" is not present +       "None" is incompatible with protocol "SupportsIndex" + ... (reportArgumentType) + /homeassistant/components/fritzbox/light.py:104:28 - error: Argument of type "Any | None" cannot be assigned to parameter "x" of type "ConvertibleToFloat" in function "__new__" +   Type "Any | None" is not assignable to type "ConvertibleToFloat" +     Type "None" is not assignable to type "ConvertibleToFloat" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "None" is incompatible with protocol "SupportsFloat" +         "__float__" is not present +       "None" is incompatible with protocol "SupportsIndex" (reportArgumentType) + /homeassistant/components/fritzbox/light.py:112:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fritzbox/sensor.py + /homeassistant/components/fritzbox/sensor.py:254:7 - error: Base classes for class "FritzBoxSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/sensor.py:254:7 - error: Base classes for class "FritzBoxSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/sensor.py:257:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "FritzSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/sensor.py:260:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/sensor.py:265:9 - error: "entity_category" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[EntityCategory | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fritzbox/switch.py + /homeassistant/components/fritzbox/switch.py:46:7 - error: Base classes for class "FritzboxSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/switch.py:46:7 - error: Base classes for class "FritzboxSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fritzbox/switch.py:50:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fritzbox_callmonitor/base.py + /homeassistant/components/fritzbox_callmonitor/base.py:84:41 - error: "contacts" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/fritzbox_callmonitor/sensor.py + /homeassistant/components/fritzbox_callmonitor/sensor.py:160:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fronius/coordinator.py + /homeassistant/components/fronius/coordinator.py:165:50 - error: "data" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/fronius/diagnostics.py + /homeassistant/components/fronius/diagnostics.py:28:5 - error: Argument of type "dict[SolarNetId, dict[str, Any]] | None" cannot be assigned to parameter "value" of type "dict[Unknown, Unknown]" in function "__setitem__" +   Type "dict[SolarNetId, dict[str, Any]] | None" is not assignable to type "dict[Unknown, Unknown]" +     "None" is not assignable to "dict[Unknown, Unknown]" (reportArgumentType) + /homeassistant/components/fronius/diagnostics.py:31:5 - error: Argument of type "dict[SolarNetId, dict[str, Any]] | None" cannot be assigned to parameter "value" of type "dict[Unknown, Unknown]" in function "__setitem__" +   Type "dict[SolarNetId, dict[str, Any]] | None" is not assignable to type "dict[Unknown, Unknown]" +     "None" is not assignable to "dict[Unknown, Unknown]" (reportArgumentType) + /homeassistant/components/fronius/diagnostics.py:34:5 - error: Argument of type "dict[SolarNetId, dict[str, Any]] | None" cannot be assigned to parameter "value" of type "dict[Unknown, Unknown]" in function "__setitem__" +   Type "dict[SolarNetId, dict[str, Any]] | None" is not assignable to type "dict[Unknown, Unknown]" +     "None" is not assignable to "dict[Unknown, Unknown]" (reportArgumentType) + /homeassistant/components/fronius/diagnostics.py:37:5 - error: Argument of type "dict[SolarNetId, dict[str, Any]] | None" cannot be assigned to parameter "value" of type "dict[Unknown, Unknown]" in function "__setitem__" +   Type "dict[SolarNetId, dict[str, Any]] | None" is not assignable to type "dict[Unknown, Unknown]" +     "None" is not assignable to "dict[Unknown, Unknown]" (reportArgumentType) + /homeassistant/components/fronius/diagnostics.py:42:5 - error: Argument of type "dict[SolarNetId, dict[str, Any]] | None" cannot be assigned to parameter "value" of type "dict[Unknown, Unknown]" in function "__setitem__" +   Type "dict[SolarNetId, dict[str, Any]] | None" is not assignable to type "dict[Unknown, Unknown]" +     "None" is not assignable to "dict[Unknown, Unknown]" (reportArgumentType) +/homeassistant/components/fronius/sensor.py + /homeassistant/components/fronius/sensor.py:751:7 - error: Base classes for class "_FroniusSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fronius/sensor.py:766:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FroniusSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fronius/sensor.py:766:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "FroniusSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/frontend/__init__.py + /homeassistant/components/frontend/__init__.py:657:9 - error: "canonical" incorrectly overrides property of same name in class "AbstractResource" (reportIncompatibleMethodOverride) +/homeassistant/components/frontier_silicon/browse_media.py + /homeassistant/components/frontier_silicon/browse_media.py:36:15 - error: Argument of type "str | None" cannot be assigned to parameter "title" of type "str" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/frontier_silicon/browse_media.py:138:36 - error: Argument of type "Dict[str, DataItem | None]" cannot be assigned to parameter "item" of type "dict[str, str]" in function "_item_payload" +   "Dict[str, DataItem | None]" is not assignable to "dict[str, str]" +     Type parameter "_VT@dict" is invariant, but "DataItem | None" is not the same as "str" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) +/homeassistant/components/frontier_silicon/config_flow.py + /homeassistant/components/frontier_silicon/config_flow.py:132:22 - error: Cannot assign to attribute "_name" for class "FrontierSiliconConfigFlow*" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportAttributeAccessIssue) + /homeassistant/components/frontier_silicon/config_flow.py:146:26 - error: Cannot assign to attribute "_name" for class "FrontierSiliconConfigFlow*" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportAttributeAccessIssue) + /homeassistant/components/frontier_silicon/config_flow.py:200:26 - error: Cannot assign to attribute "_name" for class "FrontierSiliconConfigFlow*" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportAttributeAccessIssue) +/homeassistant/components/frontier_silicon/media_player.py + /homeassistant/components/frontier_silicon/media_player.py:58:5 - error: "_attr_media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "MediaType | str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/frontier_silicon/media_player.py:276:48 - error: Argument of type "str" cannot be assigned to parameter "value" of type "Equaliser | int" in function "set_eq_preset" +   Type "str" is not assignable to type "Equaliser | int" +     "str" is not assignable to "Equaliser" +     "str" is not assignable to "int" (reportArgumentType) + /homeassistant/components/frontier_silicon/media_player.py:313:59 - error: Argument of type "list[str]" cannot be assigned to parameter "path" of type "list[int]" in function "nav_select_item_via_path" +   "list[str]" is not assignable to "list[int]" +     Type parameter "_T@list" is invariant, but "str" is not the same as "int" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) +/homeassistant/components/fujitsu_fglair/climate.py + /homeassistant/components/fujitsu_fglair/climate.py:103:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/fujitsu_fglair/config_flow.py + /homeassistant/components/fujitsu_fglair/config_flow.py:119:19 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/fujitsu_fglair/coordinator.py + /homeassistant/components/fujitsu_fglair/coordinator.py:68:75 - error: Cannot access attribute "is_online" for class "Device" +   Attribute "is_online" is unknown (reportAttributeAccessIssue) + /homeassistant/components/fujitsu_fglair/coordinator.py:77:16 - error: Type "dict[str | None, FujitsuHVAC | Device]" is not assignable to return type "dict[str, FujitsuHVAC]" (reportReturnType) +/homeassistant/components/fujitsu_fglair/entity.py + /homeassistant/components/fujitsu_fglair/entity.py:22:35 - error: Argument of type "set[tuple[Literal['fujitsu_fglair'], str | None]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]]" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/fujitsu_fglair/sensor.py + /homeassistant/components/fujitsu_fglair/sensor.py:31:7 - error: Base classes for class "FGLairOutsideTemperature" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fujitsu_fglair/sensor.py:45:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/fully_kiosk/binary_sensor.py + /homeassistant/components/fully_kiosk/binary_sensor.py:53:7 - error: Base classes for class "FullyBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fully_kiosk/binary_sensor.py:67:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fully_kiosk/button.py + /homeassistant/components/fully_kiosk/button.py:87:7 - error: Base classes for class "FullyButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fully_kiosk/button.py:99:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FullyButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fully_kiosk/button.py:99:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "FullyButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/fully_kiosk/entity.py + /homeassistant/components/fully_kiosk/entity.py:32:7 - error: Base classes for class "FullyKioskEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/fully_kiosk/image.py + /homeassistant/components/fully_kiosk/image.py:50:7 - error: Base classes for class "FullyImageEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fully_kiosk/image.py:64:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FullyImageEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/fully_kiosk/media_player.py + /homeassistant/components/fully_kiosk/media_player.py:35:7 - error: Base classes for class "FullyMediaPlayer" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/fully_kiosk/notify.py + /homeassistant/components/fully_kiosk/notify.py:52:7 - error: Base classes for class "FullyNotifyEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fully_kiosk/notify.py:65:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FullyNotifyEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fully_kiosk/notify.py:65:14 - error: "entity_description" overrides symbol of same name in class "NotifyEntity" +   Variable is mutable so its type is invariant +     Override type "FullyNotifyEntityDescription" is not the same as base type "NotifyEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/fully_kiosk/number.py + /homeassistant/components/fully_kiosk/number.py:69:7 - error: Base classes for class "FullyNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fully_kiosk/number.py:83:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fully_kiosk/sensor.py + /homeassistant/components/fully_kiosk/sensor.py:128:7 - error: Base classes for class "FullySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fully_kiosk/sensor.py:139:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FullySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fully_kiosk/sensor.py:139:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "FullySensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/fully_kiosk/switch.py + /homeassistant/components/fully_kiosk/switch.py:97:7 - error: Base classes for class "FullySwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fully_kiosk/switch.py:109:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FullySwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fully_kiosk/switch.py:109:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "FullySwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/futurenow/light.py + /homeassistant/components/futurenow/light.py:7:8 - error: Import "pyfnip" could not be resolved (reportMissingImports) + /homeassistant/components/futurenow/light.py:97:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/futurenow/light.py:102:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/futurenow/light.py:107:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/futurenow/light.py:112:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/futurenow/light.py:119:9 - error: "supported_color_modes" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[set[ColorMode] | set[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fyta/binary_sensor.py + /homeassistant/components/fyta/binary_sensor.py:110:7 - error: Base classes for class "FytaPlantBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fyta/binary_sensor.py:113:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "FytaBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fyta/binary_sensor.py:116:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fyta/image.py + /homeassistant/components/fyta/image.py:75:7 - error: Base classes for class "FytaPlantImageEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fyta/image.py:78:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FytaImageEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fyta/image.py:116:9 - error: "image_url" overrides symbol of same name in class "ImageEntity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/fyta/sensor.py + /homeassistant/components/fyta/sensor.py:237:7 - error: Base classes for class "FytaPlantSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/fyta/sensor.py:240:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "FytaSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fyta/sensor.py:243:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/fyta/sensor.py:252:5 - error: "entity_description" overrides symbol of same name in class "FytaPlantSensor" +   Variable is mutable so its type is invariant +     Override type "FytaMeasurementSensorEntityDescription" is not the same as base type "FytaSensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/fyta/sensor.py:255:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/garadget/cover.py + /homeassistant/components/garadget/cover.py:142:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/garadget/cover.py:147:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/garadget/cover.py:152:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/garadget/cover.py:171:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/garages_amsterdam/binary_sensor.py + /homeassistant/components/garages_amsterdam/binary_sensor.py:60:7 - error: Base classes for class "GaragesAmsterdamBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/garages_amsterdam/binary_sensor.py:74:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "GaragesAmsterdamBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/garages_amsterdam/binary_sensor.py:74:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "GaragesAmsterdamBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/garages_amsterdam/binary_sensor.py:78:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/garages_amsterdam/sensor.py + /homeassistant/components/garages_amsterdam/sensor.py:92:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "GaragesAmsterdamSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/garages_amsterdam/sensor.py:92:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "GaragesAmsterdamSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/garages_amsterdam/sensor.py:96:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/garages_amsterdam/sensor.py:103:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/gardena_bluetooth/binary_sensor.py + /homeassistant/components/gardena_bluetooth/binary_sensor.py:68:7 - error: Base classes for class "GardenaBluetoothBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/gardena_bluetooth/binary_sensor.py:73:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "GardenaBluetoothBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/gardena_bluetooth/button.py + /homeassistant/components/gardena_bluetooth/button.py:57:7 - error: Base classes for class "GardenaBluetoothButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/gardena_bluetooth/button.py:60:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "GardenaBluetoothButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/gardena_bluetooth/number.py + /homeassistant/components/gardena_bluetooth/number.py:127:7 - error: Base classes for class "GardenaBluetoothNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/gardena_bluetooth/number.py:130:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "GardenaBluetoothNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/gardena_bluetooth/number.py:152:7 - error: Base classes for class "GardenaBluetoothRemainingOpenSetNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/gardena_bluetooth/sensor.py + /homeassistant/components/gardena_bluetooth/sensor.py:112:7 - error: Base classes for class "GardenaBluetoothSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/gardena_bluetooth/sensor.py:115:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "GardenaBluetoothSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/gardena_bluetooth/sensor.py:161:18 - error: "_attr_native_value" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "datetime | None" is not the same as base type "StateType | date | datetime | Decimal" (reportIncompatibleVariableOverride) + /homeassistant/components/gardena_bluetooth/sensor.py:166:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/gardena_bluetooth/switch.py + /homeassistant/components/gardena_bluetooth/switch.py:34:7 - error: Base classes for class "GardenaBluetoothValveSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/gardena_bluetooth/valve.py + /homeassistant/components/gardena_bluetooth/valve.py:37:7 - error: Base classes for class "GardenaBluetoothValve" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/gc100/__init__.py + /homeassistant/components/gc100/__init__.py:40:23 - error: "GC100SocketClient" is not a known attribute of module "gc100" (reportAttributeAccessIssue) +/homeassistant/components/gc100/binary_sensor.py + /homeassistant/components/gc100/binary_sensor.py:57:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gc100/binary_sensor.py:62:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/gc100/switch.py + /homeassistant/components/gc100/switch.py:54:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gc100/switch.py:59:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/gdacs/diagnostics.py + /homeassistant/components/gdacs/diagnostics.py:26:33 - error: Type "StatusUpdate | None" is not assignable to declared type "StatusUpdate" +   Type "StatusUpdate | None" is not assignable to type "StatusUpdate" +     "None" is not assignable to "StatusUpdate" (reportAssignmentType) +/homeassistant/components/gdacs/geo_location.py + /homeassistant/components/gdacs/geo_location.py:148:36 - error: Argument of type "FeedEntry" cannot be assigned to parameter "feed_entry" of type "GdacsFeedEntry" in function "_update_from_feed" +   "FeedEntry" is not assignable to "GdacsFeedEntry" (reportArgumentType) + /homeassistant/components/gdacs/geo_location.py:163:31 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/gdacs/geo_location.py:164:32 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/gdacs/geo_location.py:183:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gdacs/geo_location.py:190:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/gdacs/sensor.py + /homeassistant/components/gdacs/sensor.py:129:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/gdacs/sensor.py:134:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/generic/camera.py + /homeassistant/components/generic/camera.py:123:9 - error: "use_stream_for_stills" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/generic/camera.py:140:24 - error: Argument missing for parameter "v" (reportCallIssue) + /homeassistant/components/generic/camera.py:183:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/generic_hygrostat/humidifier.py + /homeassistant/components/generic_hygrostat/humidifier.py:169:7 - error: Base classes for class "GenericHygrostat" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/generic_hygrostat/humidifier.py:169:7 - error: Base classes for class "GenericHygrostat" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/generic_hygrostat/humidifier.py:169:7 - error: Base classes for class "GenericHygrostat" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/generic_hygrostat/humidifier.py:169:7 - error: Base classes for class "GenericHygrostat" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/generic_hygrostat/humidifier.py:169:7 - error: Base classes for class "GenericHygrostat" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/generic_hygrostat/humidifier.py:169:7 - error: Base classes for class "GenericHygrostat" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/generic_hygrostat/humidifier.py:302:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/generic_hygrostat/humidifier.py:307:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/generic_hygrostat/humidifier.py:314:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/generic_hygrostat/humidifier.py:319:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/generic_hygrostat/humidifier.py:324:9 - error: "current_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/generic_hygrostat/humidifier.py:329:9 - error: "target_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/generic_hygrostat/humidifier.py:334:9 - error: "mode" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/generic_hygrostat/humidifier.py:343:9 - error: "available_modes" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/generic_hygrostat/humidifier.py:350:9 - error: "device_class" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[HumidifierDeviceClass | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/generic_hygrostat/humidifier.py:350:9 - error: "device_class" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/generic_hygrostat/humidifier.py:386:9 - error: "min_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/generic_hygrostat/humidifier.py:395:9 - error: "max_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/generic_thermostat/climate.py + /homeassistant/components/generic_thermostat/climate.py:207:7 - error: Base classes for class "GenericThermostat" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/generic_thermostat/climate.py:207:7 - error: Base classes for class "GenericThermostat" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/generic_thermostat/climate.py:207:7 - error: Base classes for class "GenericThermostat" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/generic_thermostat/climate.py:207:7 - error: Base classes for class "GenericThermostat" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/generic_thermostat/climate.py:207:7 - error: Base classes for class "GenericThermostat" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/generic_thermostat/climate.py:371:9 - error: "target_temperature_step" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/generic_thermostat/climate.py:379:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/generic_thermostat/climate.py:384:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/generic_thermostat/climate.py:389:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/generic_thermostat/climate.py:403:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/generic_thermostat/climate.py:435:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/generic_thermostat/climate.py:444:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/geniushub/__init__.py + /homeassistant/components/geniushub/__init__.py:176:39 - error: Cannot access attribute "ClientConnectorError" for class "object" +   Attribute "ClientConnectorError" is unknown (reportAttributeAccessIssue) +/homeassistant/components/geniushub/binary_sensor.py + /homeassistant/components/geniushub/binary_sensor.py:32:7 - error: Base classes for class "GeniusBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/binary_sensor.py:32:7 - error: Base classes for class "GeniusBinarySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/binary_sensor.py:47:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/geniushub/climate.py + /homeassistant/components/geniushub/climate.py:45:7 - error: Base classes for class "GeniusClimateZone" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/climate.py:45:7 - error: Base classes for class "GeniusClimateZone" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/climate.py:45:7 - error: Base classes for class "GeniusClimateZone" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/climate.py:45:7 - error: Base classes for class "GeniusClimateZone" define variable "temperature_unit" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/climate.py:45:7 - error: Base classes for class "GeniusClimateZone" define variable "current_temperature" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/climate.py:45:7 - error: Base classes for class "GeniusClimateZone" define variable "target_temperature" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/climate.py:45:7 - error: Base classes for class "GeniusClimateZone" define variable "min_temp" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/climate.py:45:7 - error: Base classes for class "GeniusClimateZone" define variable "max_temp" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/climate.py:63:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/climate.py:68:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/climate.py:73:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/climate.py:78:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/climate.py:89:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/climate.py:94:9 - error: "preset_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/geniushub/entity.py + /homeassistant/components/geniushub/entity.py:43:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/entity.py:61:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/entity.py:122:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/entity.py:127:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/geniushub/sensor.py + /homeassistant/components/geniushub/sensor.py:45:7 - error: Base classes for class "GeniusBattery" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/sensor.py:45:7 - error: Base classes for class "GeniusBattery" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/sensor.py:60:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/sensor.py:85:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/sensor.py:91:7 - error: Base classes for class "GeniusIssue" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/sensor.py:106:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/sensor.py:111:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/geniushub/switch.py + /homeassistant/components/geniushub/switch.py:56:7 - error: Base classes for class "GeniusSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/switch.py:56:7 - error: Base classes for class "GeniusSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/switch.py:56:7 - error: Base classes for class "GeniusSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/switch.py:60:9 - error: "device_class" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/switch.py:60:9 - error: "device_class" overrides symbol of same name in class "SwitchEntity" +   "property" is not assignable to "cached_property[SwitchDeviceClass | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/switch.py:65:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/geniushub/water_heater.py + /homeassistant/components/geniushub/water_heater.py:52:7 - error: Base classes for class "GeniusWaterHeater" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/water_heater.py:52:7 - error: Base classes for class "GeniusWaterHeater" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/water_heater.py:52:7 - error: Base classes for class "GeniusWaterHeater" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/water_heater.py:52:7 - error: Base classes for class "GeniusWaterHeater" define variable "temperature_unit" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/water_heater.py:52:7 - error: Base classes for class "GeniusWaterHeater" define variable "current_temperature" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/water_heater.py:52:7 - error: Base classes for class "GeniusWaterHeater" define variable "target_temperature" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/water_heater.py:68:9 - error: "operation_list" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geniushub/water_heater.py:73:9 - error: "current_operation" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/geo_json_events/geo_location.py + /homeassistant/components/geo_json_events/geo_location.py:109:31 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/geo_json_events/geo_location.py:110:32 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/geo_json_events/geo_location.py:113:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/geo_json_events/manager.py + /homeassistant/components/geo_json_events/manager.py:91:16 - error: Type "FeedEntry | None" is not assignable to return type "GenericFeedEntry | None" +   Type "FeedEntry | None" is not assignable to type "GenericFeedEntry | None" +     Type "FeedEntry" is not assignable to type "GenericFeedEntry | None" +       "FeedEntry" is not assignable to "GenericFeedEntry" +       "FeedEntry" is not assignable to "None" (reportReturnType) +/homeassistant/components/geo_location/__init__.py + /homeassistant/components/geo_location/__init__.py:74:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/geo_location/__init__.py:102:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/geo_rss_events/sensor.py + /homeassistant/components/geo_rss_events/sensor.py:132:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geo_rss_events/sensor.py:137:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/geo_rss_events/sensor.py:142:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geo_rss_events/sensor.py:147:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geo_rss_events/sensor.py:152:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/geocaching/sensor.py + /homeassistant/components/geocaching/sensor.py:121:7 - error: Base classes for class "GeoEntityBaseCache" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geocaching/sensor.py:139:7 - error: Base classes for class "GeoEntityCacheSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geocaching/sensor.py:152:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "GeocachingCacheSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/geocaching/sensor.py:155:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/geocaching/sensor.py:160:7 - error: Base classes for class "GeocachingProfileSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geocaching/sensor.py:173:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "GeocachingSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/geocaching/sensor.py:173:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "GeocachingSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/geocaching/sensor.py:186:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/geofency/device_tracker.py + /homeassistant/components/geofency/device_tracker.py:54:7 - error: Base classes for class "GeofencyEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geofency/device_tracker.py:54:7 - error: Base classes for class "GeofencyEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geofency/device_tracker.py:54:7 - error: Base classes for class "GeofencyEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geofency/device_tracker.py:54:7 - error: Base classes for class "GeofencyEntity" define variable "force_update" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/geofency/device_tracker.py:98:9 - error: Object of type "None" cannot be called (reportOptionalCall) +/homeassistant/components/geonetnz_quakes/geo_location.py + /homeassistant/components/geonetnz_quakes/geo_location.py:146:31 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/geonetnz_quakes/geo_location.py:147:32 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/geonetnz_quakes/geo_location.py:157:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/geonetnz_quakes/sensor.py + /homeassistant/components/geonetnz_quakes/sensor.py:114:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/geonetnz_quakes/sensor.py:119:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geonetnz_quakes/sensor.py:124:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geonetnz_quakes/sensor.py:129:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geonetnz_quakes/sensor.py:134:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geonetnz_quakes/sensor.py:139:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/geonetnz_volcano/sensor.py + /homeassistant/components/geonetnz_volcano/sensor.py:135:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/geonetnz_volcano/sensor.py:140:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geonetnz_volcano/sensor.py:145:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geonetnz_volcano/sensor.py:150:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/geonetnz_volcano/sensor.py:155:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/gios/config_flow.py + /homeassistant/components/gios/config_flow.py:9:18 - error: "ApiError" is not exported from module "gios" +   Import from "gios.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/gios/config_flow.py:9:34 - error: "InvalidSensorsDataError" is not exported from module "gios" +   Import from "gios.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/gios/config_flow.py:9:59 - error: "NoStationError" is not exported from module "gios" +   Import from "gios.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/gios/sensor.py + /homeassistant/components/gios/sensor.py:244:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "GiosSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/gios/sensor.py:244:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "GiosSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/gios/sensor.py:247:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/gios/sensor.py:252:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/github/__init__.py + /homeassistant/components/github/__init__.py:26:21 - error: Argument of type "str" cannot be assigned to parameter "client_name" of type "Dict[GitHubClientKwarg, Any]" in function "__init__" +   "str" is not assignable to "Dict[GitHubClientKwarg, Any]" (reportArgumentType) +/homeassistant/components/github/config_flow.py + /homeassistant/components/github/config_flow.py:41:54 - error: Argument of type "dict[str, int]" cannot be assigned to parameter "params" of type "Dict[GitHubRequestKwarg, Any]" in function "starred" +   "Literal['per_page']" is not assignable to "GitHubRequestKwarg" (reportArgumentType) + /homeassistant/components/github/config_flow.py:46:32 - error: Argument of type "dict[str, int]" cannot be assigned to parameter "params" of type "Dict[GitHubRequestKwarg, Any]" in function "starred" +   "Literal['per_page']" is not assignable to "GitHubRequestKwarg" +   "Literal['page']" is not assignable to "GitHubRequestKwarg" (reportArgumentType) + /homeassistant/components/github/config_flow.py:49:25 - error: Argument of type "int | None" cannot be assigned to parameter "start" of type "SupportsIndex" in function "__new__" +   Type "int | None" is not assignable to type "SupportsIndex" +     "None" is incompatible with protocol "SupportsIndex" +       "__index__" is not present (reportArgumentType) + /homeassistant/components/github/config_flow.py:49:52 - error: Operator "+" not supported for "None" (reportOptionalOperand) + /homeassistant/components/github/config_flow.py:54:31 - error: "extend" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/github/config_flow.py:54:38 - error: Argument of type "list[GitHubRepositoryModel] | None" cannot be assigned to parameter "iterable" of type "Iterable[GitHubRepositoryModel]" in function "extend" +   Type "list[GitHubRepositoryModel] | None" is not assignable to type "Iterable[GitHubRepositoryModel]" +     "None" is incompatible with protocol "Iterable[GitHubRepositoryModel]" +       "__iter__" is not present (reportArgumentType) + /homeassistant/components/github/config_flow.py:56:29 - error: Argument of type "list[GitHubRepositoryModel] | None" cannot be assigned to parameter "s" of type "Iterable[Unknown]" in function "update" +   Type "list[GitHubRepositoryModel] | None" is not assignable to type "Iterable[Unknown]" +     "None" is incompatible with protocol "Iterable[Unknown]" +       "__iter__" is not present (reportArgumentType) + /homeassistant/components/github/config_flow.py:59:52 - error: Argument of type "dict[str, int]" cannot be assigned to parameter "params" of type "Dict[GitHubRequestKwarg, Any]" in function "repos" +   "Literal['per_page']" is not assignable to "GitHubRequestKwarg" (reportArgumentType) + /homeassistant/components/github/config_flow.py:64:32 - error: Argument of type "dict[str, int]" cannot be assigned to parameter "params" of type "Dict[GitHubRequestKwarg, Any]" in function "repos" +   "Literal['per_page']" is not assignable to "GitHubRequestKwarg" +   "Literal['page']" is not assignable to "GitHubRequestKwarg" (reportArgumentType) + /homeassistant/components/github/config_flow.py:67:25 - error: Argument of type "int | None" cannot be assigned to parameter "start" of type "SupportsIndex" in function "__new__" +   Type "int | None" is not assignable to type "SupportsIndex" +     "None" is incompatible with protocol "SupportsIndex" +       "__index__" is not present (reportArgumentType) + /homeassistant/components/github/config_flow.py:67:52 - error: Operator "+" not supported for "None" (reportOptionalOperand) + /homeassistant/components/github/config_flow.py:72:31 - error: "extend" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/github/config_flow.py:72:38 - error: Argument of type "list[GitHubRepositoryModel] | None" cannot be assigned to parameter "iterable" of type "Iterable[GitHubRepositoryModel]" in function "extend" +   Type "list[GitHubRepositoryModel] | None" is not assignable to type "Iterable[GitHubRepositoryModel]" +     "None" is incompatible with protocol "Iterable[GitHubRepositoryModel]" +       "__iter__" is not present (reportArgumentType) + /homeassistant/components/github/config_flow.py:74:29 - error: Argument of type "list[GitHubRepositoryModel] | None" cannot be assigned to parameter "s" of type "Iterable[Unknown]" in function "update" +   Type "list[GitHubRepositoryModel] | None" is not assignable to type "Iterable[Unknown]" +     "None" is incompatible with protocol "Iterable[Unknown]" +       "__iter__" is not present (reportArgumentType) + /homeassistant/components/github/config_flow.py:132:29 - error: Argument of type "str | None" cannot be assigned to parameter "device_code" of type "str" in function "activation" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/github/config_flow.py:140:29 - error: Argument of type "str" cannot be assigned to parameter "client_name" of type "Dict[GitHubClientKwarg, Any]" in function "__init__" +   "str" is not assignable to "Dict[GitHubClientKwarg, Any]" (reportArgumentType) + /homeassistant/components/github/config_flow.py:165:38 - error: Argument of type "dict[str, str | None]" cannot be assigned to parameter "description_placeholders" of type "Mapping[str, str] | None" in function "async_show_progress" +   Type "dict[str, str | None]" is not assignable to type "Mapping[str, str] | None" +     "dict[str, str | None]" is not assignable to "Mapping[str, str]" +       Type parameter "_VT_co@Mapping" is covariant, but "str | None" is not a subtype of "str" +         Type "str | None" is not assignable to type "str" +           "None" is not assignable to "str" +     "dict[str, str | None]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/github/config_flow.py:183:62 - error: Argument of type "str | None" cannot be assigned to parameter "access_token" of type "str" in function "get_repositories" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/github/coordinator.py + /homeassistant/components/github/coordinator.py:132:15 - error: Method "_async_update_data" overrides class "DataUpdateCoordinator" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, dict[str, Any]]", override returns type "CoroutineType[Any, Any, GitHubResponseModel[dict[str, Any]]]" +     "CoroutineType[Any, Any, GitHubResponseModel[dict[str, Any]]]" is not assignable to "CoroutineType[Any, Any, dict[str, Any]]" +       Type parameter "_ReturnT_nd_co@CoroutineType" is covariant, but "GitHubResponseModel[dict[str, Any]]" is not a subtype of "dict[str, Any]" +         "GitHubResponseModel[dict[str, Any]]" is not assignable to "dict[str, Any]" (reportIncompatibleMethodOverride) + /homeassistant/components/github/coordinator.py:149:16 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/github/coordinator.py:166:28 - error: Argument of type "(error: GitHubException) -> CoroutineType[Any, Any, None]" cannot be assigned to parameter "error_callback" of type "(() -> Awaitable[None]) | None" in function "subscribe" +   Type "(error: GitHubException) -> CoroutineType[Any, Any, None]" is not assignable to type "(() -> Awaitable[None]) | None" +     Type "(error: GitHubException) -> CoroutineType[Any, Any, None]" is not assignable to type "() -> Awaitable[None]" +       Extra parameter "error" +     "FunctionType" is not assignable to "None" (reportArgumentType) +/homeassistant/components/github/diagnostics.py + /homeassistant/components/github/diagnostics.py:28:21 - error: Argument of type "str" cannot be assigned to parameter "client_name" of type "Dict[GitHubClientKwarg, Any]" in function "__init__" +   "str" is not assignable to "Dict[GitHubClientKwarg, Any]" (reportArgumentType) + /homeassistant/components/github/diagnostics.py:36:55 - error: "as_dict" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/github/sensor.py + /homeassistant/components/github/sensor.py:171:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "GitHubSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/github/sensor.py:171:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "GitHubSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/github/sensor.py:183:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/github/sensor.py:192:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/github/sensor.py:197:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/gitlab_ci/sensor.py + /homeassistant/components/gitlab_ci/sensor.py:8:6 - error: Import "gitlab" could not be resolved (reportMissingImports) + /homeassistant/components/gitlab_ci/sensor.py:88:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/gitter/sensor.py + /homeassistant/components/gitter/sensor.py:7:6 - error: Import "gitterpy.client" could not be resolved (reportMissingImports) + /homeassistant/components/gitter/sensor.py:8:6 - error: Import "gitterpy.errors" could not be resolved (reportMissingImports) + /homeassistant/components/gitter/sensor.py:78:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gitter/sensor.py:83:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/gitter/sensor.py:88:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gitter/sensor.py:93:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/glances/sensor.py + /homeassistant/components/glances/sensor.py:339:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "GlancesSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/glances/sensor.py:339:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "GlancesSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/glances/sensor.py:353:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/goalzero/binary_sensor.py + /homeassistant/components/goalzero/binary_sensor.py:56:7 - error: Base classes for class "GoalZeroBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/goalzero/binary_sensor.py:56:7 - error: Base classes for class "GoalZeroBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/goalzero/binary_sensor.py:60:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/goalzero/entity.py + /homeassistant/components/goalzero/entity.py:32:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/goalzero/sensor.py + /homeassistant/components/goalzero/sensor.py:143:7 - error: Base classes for class "GoalZeroSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/goalzero/sensor.py:143:7 - error: Base classes for class "GoalZeroSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/goalzero/sensor.py:147:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/goalzero/switch.py + /homeassistant/components/goalzero/switch.py:41:7 - error: Base classes for class "GoalZeroSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/goalzero/switch.py:41:7 - error: Base classes for class "GoalZeroSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/goalzero/switch.py:45:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/gogogate2/config_flow.py + /homeassistant/components/gogogate2/config_flow.py:76:9 - error: Method "is_matching" overrides class "ConfigFlow" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "ConfigFlow", override parameter is type "Gogogate2FlowHandler" +     "ConfigFlow" is not assignable to "Gogogate2FlowHandler" (reportIncompatibleMethodOverride) +/homeassistant/components/gogogate2/cover.py + /homeassistant/components/gogogate2/cover.py:43:7 - error: Base classes for class "DeviceCover" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/gogogate2/cover.py:43:7 - error: Base classes for class "DeviceCover" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/gogogate2/cover.py:43:7 - error: Base classes for class "DeviceCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/gogogate2/cover.py:62:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gogogate2/cover.py:67:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gogogate2/cover.py:77:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gogogate2/cover.py:82:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/gogogate2/entity.py + /homeassistant/components/gogogate2/entity.py:48:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gogogate2/entity.py:65:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/gogogate2/sensor.py + /homeassistant/components/gogogate2/sensor.py:48:7 - error: Base classes for class "DoorSensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/gogogate2/sensor.py:48:7 - error: Base classes for class "DoorSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/gogogate2/sensor.py:52:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gogogate2/sensor.py:80:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gogogate2/sensor.py:85:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/gogogate2/sensor.py:108:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gogogate2/sensor.py:113:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/goodwe/__init__.py + /homeassistant/components/goodwe/__init__.py:38:31 - error: Argument of type "set[tuple[Literal['goodwe'], str | None]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]]" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/goodwe/button.py + /homeassistant/components/goodwe/button.py:71:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "GoodweButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/goodwe/number.py + /homeassistant/components/goodwe/number.py:128:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "GoodweNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/goodwe/sensor.py + /homeassistant/components/goodwe/sensor.py:213:22 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "GoodweSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/goodwe/sensor.py:213:22 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "GoodweSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/goodwe/sensor.py:215:38 - error: Argument of type "SensorKind | None" cannot be assigned to parameter "key" of type "SensorKind" in function "get" +   Type "SensorKind | None" is not assignable to type "SensorKind" +     "None" is not assignable to "SensorKind" (reportArgumentType) + /homeassistant/components/goodwe/sensor.py:223:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/goodwe/sensor.py:228:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/google/api.py + /homeassistant/components/google/api.py:55:23 - error: Cannot access attribute "token_expiry" for class "Credentials" +   Attribute "token_expiry" is unknown (reportAttributeAccessIssue) + /homeassistant/components/google/api.py:57:50 - error: Cannot access attribute "token_expiry" for class "Credentials" +   Attribute "token_expiry" is unknown (reportAttributeAccessIssue) + /homeassistant/components/google/api.py:60:35 - error: Cannot access attribute "access_token" for class "Credentials" +   Attribute "access_token" is unknown (reportAttributeAccessIssue) + /homeassistant/components/google/api.py:61:36 - error: Cannot access attribute "refresh_token" for class "Credentials" +   Attribute "refresh_token" is unknown (reportAttributeAccessIssue) + /homeassistant/components/google/api.py:62:37 - error: Cannot access attribute "scopes" for class "Credentials" +   Attribute "scopes" is unknown (reportAttributeAccessIssue) +/homeassistant/components/google/calendar.py + /homeassistant/components/google/calendar.py:96:5 - error: "name" overrides a field of the same name but is missing a default value (reportGeneralTypeIssues) + /homeassistant/components/google/calendar.py:284:36 - error: Argument missing for parameter "calendarId" (reportCallIssue) + /homeassistant/components/google/calendar.py:285:21 - error: No parameter named "calendar_id" (reportCallIssue) + /homeassistant/components/google/calendar.py:286:21 - error: No parameter named "start_time" (reportCallIssue) + /homeassistant/components/google/calendar.py:334:7 - error: Base classes for class "GoogleCalendarEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/google/calendar.py:355:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "GoogleCalendarEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/google/calendar.py:355:14 - error: "entity_description" overrides symbol of same name in class "CalendarEntity" +   Variable is mutable so its type is invariant +     Override type "GoogleCalendarEntityDescription" is not the same as base type "CalendarEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/google/calendar.py:368:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/google/calendar.py:449:27 - error: "offset_value" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/google/calendar.py:460:17 - error: No parameter named "date_time" (reportCallIssue) + /homeassistant/components/google/calendar.py:461:17 - error: No parameter named "timezone" (reportCallIssue) + /homeassistant/components/google/calendar.py:464:17 - error: No parameter named "date_time" (reportCallIssue) + /homeassistant/components/google/calendar.py:465:17 - error: No parameter named "timezone" (reportCallIssue) + /homeassistant/components/google/calendar.py:565:32 - error: No parameter named "date_time" (reportCallIssue) + /homeassistant/components/google/calendar.py:565:52 - error: No parameter named "timezone" (reportCallIssue) + /homeassistant/components/google/calendar.py:566:30 - error: No parameter named "date_time" (reportCallIssue) + /homeassistant/components/google/calendar.py:566:48 - error: No parameter named "timezone" (reportCallIssue) +/homeassistant/components/google/coordinator.py + /homeassistant/components/google/coordinator.py:139:19 - error: Argument missing for parameter "calendarId" (reportCallIssue) + /homeassistant/components/google/coordinator.py:140:13 - error: No parameter named "calendar_id" (reportCallIssue) + /homeassistant/components/google/coordinator.py:141:13 - error: No parameter named "start_time" (reportCallIssue) + /homeassistant/components/google/coordinator.py:142:13 - error: No parameter named "end_time" (reportCallIssue) + /homeassistant/components/google/coordinator.py:143:13 - error: No parameter named "search" (reportCallIssue) + /homeassistant/components/google/coordinator.py:157:19 - error: Argument missing for parameter "calendarId" (reportCallIssue) + /homeassistant/components/google/coordinator.py:157:37 - error: No parameter named "calendar_id" (reportCallIssue) + /homeassistant/components/google/coordinator.py:157:67 - error: No parameter named "search" (reportCallIssue) +/homeassistant/components/google_assistant/report_state.py + /homeassistant/components/google_assistant/report_state.py:143:44 - error: Argument of type "HassJob[(now: Unknown | None = None), CoroutineType[Any, Any, Unknown]]" cannot be assigned to parameter "action" of type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" in function "async_call_later" +   Type "HassJob[(now: Unknown | None = None), CoroutineType[Any, Any, Unknown]]" is not assignable to type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" +     "HassJob[(now: Unknown | None = None), CoroutineType[Any, Any, Unknown]]" is not assignable to "HassJob[(datetime), Coroutine[Any, Any, None] | None]" +       Type parameter "_R_co@HassJob" is invariant, but "CoroutineType[Any, Any, Unknown]" is not the same as "Coroutine[Any, Any, None] | None" +     Type "HassJob[(now: Unknown | None = None), CoroutineType[Any, Any, Unknown]]" is not assignable to type "(datetime) -> (Coroutine[Any, Any, None] | None)" (reportArgumentType) +/homeassistant/components/google_assistant/trait.py + /homeassistant/components/google_assistant/trait.py:381:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:420:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:478:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:668:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:717:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:766:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:806:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:833:45 - error: "descriptive_capacity_remaining" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/google_assistant/trait.py:861:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:1027:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:1177:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:1447:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:1534:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:1600:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:1738:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:1889:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:2120:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:2192:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:2345:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:2526:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:2645:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:2672:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "_" (reportIncompatibleMethodOverride) + /homeassistant/components/google_assistant/trait.py:2771:9 - error: Method "supported" overrides class "_Trait" in an incompatible manner +   Base method is declared as a staticmethod but override is not +   Positional parameter count mismatch; base method has 4, but override has 5 +   Parameter 2 name mismatch: base parameter is named "features", override parameter is named "domain" +   Parameter 3 name mismatch: base parameter is named "device_class", override parameter is named "features" +   Parameter 4 name mismatch: base parameter is named "attributes", override parameter is named "device_class" (reportIncompatibleMethodOverride) +/homeassistant/components/google_assistant_sdk/helpers.py + /homeassistant/components/google_assistant_sdk/helpers.py:109:61 - error: "format" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/google_cloud/stt.py + /homeassistant/components/google_cloud/stt.py:74:9 - error: "supported_languages" incorrectly overrides property of same name in class "SpeechToTextEntity" (reportIncompatibleMethodOverride) +/homeassistant/components/google_cloud/tts.py + /homeassistant/components/google_cloud/tts.py:192:49 - error: Argument of type "str" cannot be assigned to parameter "ignore_unknown_fields" of type "bool" in function "__init__" +   "str" is not assignable to "bool" (reportArgumentType) + /homeassistant/components/google_cloud/tts.py:235:7 - error: Base classes for class "GoogleCloudTTSEntity" define variable "supported_languages" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/google_cloud/tts.py:235:7 - error: Base classes for class "GoogleCloudTTSEntity" define variable "default_language" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/google_cloud/tts.py:235:7 - error: Base classes for class "GoogleCloudTTSEntity" define variable "supported_options" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/google_cloud/tts.py:235:7 - error: Base classes for class "GoogleCloudTTSEntity" define variable "default_options" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/google_drive/api.py + /homeassistant/components/google_drive/api.py:12:34 - error: "AbstractAuth" is not exported from module "google_drive_api.api" +   Import from "google_drive_api.auth" instead (reportPrivateImportUsage) + /homeassistant/components/google_drive/api.py:56:45 - error: Cannot access attribute "status" for class "ClientError" +   Attribute "status" is unknown (reportAttributeAccessIssue) +/homeassistant/components/google_generative_ai_conversation/ai_task.py + /homeassistant/components/google_generative_ai_conversation/ai_task.py:53:7 - error: Base classes for class "GoogleGenerativeAITaskEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/google_generative_ai_conversation/ai_task.py:127:28 - error: Variable not allowed in type expression (reportInvalidTypeForm) +/homeassistant/components/google_generative_ai_conversation/config_flow.py + /homeassistant/components/google_generative_ai_conversation/config_flow.py:10:20 - error: "genai" is unknown import symbol (reportAttributeAccessIssue) +/homeassistant/components/google_generative_ai_conversation/conversation.py + /homeassistant/components/google_generative_ai_conversation/conversation.py:33:7 - error: Base classes for class "GoogleGenerativeAIConversationEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/google_generative_ai_conversation/entity.py + /homeassistant/components/google_generative_ai_conversation/entity.py:388:43 - error: "thinking_content_index" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/google_generative_ai_conversation/entity.py:395:25 - error: "thinking_content_index" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/google_generative_ai_conversation/entity.py:402:43 - error: "content_index" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/google_generative_ai_conversation/entity.py:409:25 - error: "content_index" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/google_generative_ai_conversation/entity.py:422:39 - error: "tool_call_index" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/google_generative_ai_conversation/entity.py:540:51 - error: Could not access item in TypedDict +   "role" is not a required key in "ContentDict", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/google_generative_ai_conversation/entity.py:581:28 - error: Variable not allowed in type expression (reportInvalidTypeForm) +/homeassistant/components/google_generative_ai_conversation/stt.py + /homeassistant/components/google_generative_ai_conversation/stt.py:42:7 - error: Base classes for class "GoogleGenerativeAISttEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/google_generative_ai_conversation/tts.py + /homeassistant/components/google_generative_ai_conversation/tts.py:44:7 - error: Base classes for class "GoogleGenerativeAITextToSpeechEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/google_mail/api.py + /homeassistant/components/google_mail/api.py:53:46 - error: Cannot access attribute "status" for class "ClientError" +   Attribute "status" is unknown (reportAttributeAccessIssue) +/homeassistant/components/google_mail/notify.py + /homeassistant/components/google_mail/notify.py:58:50 - error: Cannot access attribute "users" for class "Resource" +   Attribute "users" is unknown (reportAttributeAccessIssue) +/homeassistant/components/google_mail/sensor.py + /homeassistant/components/google_mail/sensor.py:44:41 - error: Cannot access attribute "users" for class "Resource" +   Attribute "users" is unknown (reportAttributeAccessIssue) +/homeassistant/components/google_mail/services.py + /homeassistant/components/google_mail/services.py:88:21 - error: Cannot access attribute "users" for class "Resource" +   Attribute "users" is unknown (reportAttributeAccessIssue) +/homeassistant/components/google_maps/device_tracker.py + /homeassistant/components/google_maps/device_tracker.py:8:6 - error: Import "locationsharinglib" could not be resolved (reportMissingImports) + /homeassistant/components/google_maps/device_tracker.py:9:6 - error: Import "locationsharinglib.locationsharinglibexceptions" could not be resolved (reportMissingImports) +/homeassistant/components/google_photos/api.py + /homeassistant/components/google_photos/api.py:12:32 - error: "AbstractAuth" is not exported from module "google_photos_library_api.api" (reportPrivateImportUsage) + /homeassistant/components/google_photos/api.py:30:31 - error: "AbstractAuth" is not exported from module "google_photos_library_api.api" (reportPrivateImportUsage) +/homeassistant/components/google_tasks/api.py + /homeassistant/components/google_tasks/api.py:63:36 - error: Cannot access attribute "tasklists" for class "Resource" +   Attribute "tasklists" is unknown (reportAttributeAccessIssue) + /homeassistant/components/google_tasks/api.py:70:36 - error: Cannot access attribute "tasks" for class "Resource" +   Attribute "tasks" is unknown (reportAttributeAccessIssue) + /homeassistant/components/google_tasks/api.py:86:36 - error: Cannot access attribute "tasks" for class "Resource" +   Attribute "tasks" is unknown (reportAttributeAccessIssue) + /homeassistant/components/google_tasks/api.py:100:36 - error: Cannot access attribute "tasks" for class "Resource" +   Attribute "tasks" is unknown (reportAttributeAccessIssue) + /homeassistant/components/google_tasks/api.py:114:43 - error: Cannot access attribute "new_batch_http_request" for class "Resource" +   Attribute "new_batch_http_request" is unknown (reportAttributeAccessIssue) + /homeassistant/components/google_tasks/api.py:127:25 - error: Cannot access attribute "tasks" for class "Resource" +   Attribute "tasks" is unknown (reportAttributeAccessIssue) + /homeassistant/components/google_tasks/api.py:144:36 - error: Cannot access attribute "tasks" for class "Resource" +   Attribute "tasks" is unknown (reportAttributeAccessIssue) + /homeassistant/components/google_tasks/api.py:156:57 - error: Cannot access attribute "reason" for class "ServerNotFoundError" +   Attribute "reason" is unknown (reportAttributeAccessIssue) + /homeassistant/components/google_tasks/api.py:156:71 - error: Cannot access attribute "status_code" for class "ServerNotFoundError" +   Attribute "status_code" is unknown (reportAttributeAccessIssue) +/homeassistant/components/google_tasks/todo.py + /homeassistant/components/google_tasks/todo.py:91:7 - error: Base classes for class "GoogleTaskTodoListEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/google_tasks/todo.py:120:9 - error: "todo_items" overrides symbol of same name in class "TodoListEntity" +   "property" is not assignable to "cached_property[list[TodoItem] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/google_translate/tts.py + /homeassistant/components/google_translate/tts.py:81:9 - error: "default_language" overrides symbol of same name in class "TextToSpeechEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/google_translate/tts.py:86:9 - error: "supported_languages" overrides symbol of same name in class "TextToSpeechEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/google_translate/tts.py:91:9 - error: "supported_options" overrides symbol of same name in class "TextToSpeechEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/google_travel_time/sensor.py + /homeassistant/components/google_travel_time/sensor.py:172:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/google_travel_time/sensor.py:180:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/google_weather/weather.py + /homeassistant/components/google_weather/weather.py:134:7 - error: Base classes for class "GoogleWeatherEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/google_weather/weather.py:134:7 - error: Base classes for class "GoogleWeatherEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/google_weather/weather.py:134:7 - error: Base classes for class "GoogleWeatherEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/google_weather/weather.py:134:7 - error: Base classes for class "GoogleWeatherEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/google_weather/weather.py:134:7 - error: Base classes for class "GoogleWeatherEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/google_weather/weather.py:179:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/google_weather/weather.py:187:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/google_weather/weather.py:192:9 - error: "native_apparent_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/google_weather/weather.py:197:9 - error: "native_dew_point" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/google_weather/weather.py:202:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/google_weather/weather.py:207:9 - error: "uv_index" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/google_weather/weather.py:212:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/google_weather/weather.py:217:9 - error: "native_wind_gust_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/google_weather/weather.py:222:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/google_weather/weather.py:227:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/google_weather/weather.py:232:9 - error: "native_visibility" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/google_weather/weather.py:237:9 - error: "cloud_coverage" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/google_wifi/sensor.py + /homeassistant/components/google_wifi/sensor.py:139:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "GoogleWifiSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/google_wifi/sensor.py:144:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/govee_ble/binary_sensor.py + /homeassistant/components/govee_ble/binary_sensor.py:105:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/govee_ble/binary_sensor.py:114:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/govee_ble/coordinator.py + /homeassistant/components/govee_ble/coordinator.py:90:5 - error: "coordinator" overrides symbol of same name in class "PassiveBluetoothDataProcessor" +   Variable is mutable so its type is invariant +     Override type "GoveeBLEBluetoothProcessorCoordinator" is not the same as base type "PassiveBluetoothProcessorCoordinator[SensorUpdate]" (reportIncompatibleVariableOverride) +/homeassistant/components/govee_ble/sensor.py + /homeassistant/components/govee_ble/sensor.py:134:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/govee_ble/sensor.py:143:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/govee_light_local/coordinator.py + /homeassistant/components/govee_light_local/coordinator.py:102:15 - error: Argument missing for parameter "scene" (reportCallIssue) +/homeassistant/components/govee_light_local/light.py + /homeassistant/components/govee_light_local/light.py:54:7 - error: Base classes for class "GoveeLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/govee_light_local/light.py:103:22 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LightEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/govee_light_local/light.py:106:14 - error: "_attr_supported_color_modes" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "set[ColorMode]" is not the same as base type "set[ColorMode] | set[str] | None" (reportIncompatibleVariableOverride) + /homeassistant/components/govee_light_local/light.py:123:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/govee_light_local/light.py:128:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/govee_light_local/light.py:138:9 - error: "rgb_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/govee_light_local/light.py:143:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/govee_light_local/light.py:185:54 - error: Argument of type "GoveeDevice" cannot be assigned to parameter "device" of type "GoveeController" in function "set_scene" +   "GoveeDevice" is not assignable to "GoveeController" (reportArgumentType) + /homeassistant/components/govee_light_local/light.py:216:73 - error: Argument of type "int | None" cannot be assigned to parameter "red" of type "int" in function "set_rgb_color" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/govee_light_local/light.py:216:73 - error: Argument of type "int | None" cannot be assigned to parameter "green" of type "int" in function "set_rgb_color" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/govee_light_local/light.py:216:73 - error: Argument of type "int | None" cannot be assigned to parameter "blue" of type "int" in function "set_rgb_color" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/govee_light_local/light.py:218:75 - error: Argument of type "int | None" cannot be assigned to parameter "temperature" of type "int" in function "set_temperature" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) +/homeassistant/components/gpsd/sensor.py + /homeassistant/components/gpsd/sensor.py:188:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "GpsdSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/gpsd/sensor.py:198:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/gpslogger/device_tracker.py + /homeassistant/components/gpslogger/device_tracker.py:66:7 - error: Base classes for class "GPSLoggerEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/gpslogger/device_tracker.py:66:7 - error: Base classes for class "GPSLoggerEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/gpslogger/device_tracker.py:66:7 - error: Base classes for class "GPSLoggerEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/gpslogger/device_tracker.py:66:7 - error: Base classes for class "GPSLoggerEntity" define variable "force_update" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/gpslogger/device_tracker.py:89:9 - error: "battery_level" overrides symbol of same name in class "BaseTrackerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gpslogger/device_tracker.py:134:9 - error: Object of type "None" cannot be called (reportOptionalCall) +/homeassistant/components/gree/climate.py + /homeassistant/components/gree/climate.py:105:7 - error: Base classes for class "GreeClimateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/gree/climate.py:133:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gree/climate.py:138:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gree/climate.py:162:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gree/climate.py:167:31 - error: Argument of type "int" cannot be assigned to parameter "key" of type "Mode" in function "get" +   "int" is not assignable to "Mode" (reportArgumentType) + /homeassistant/components/gree/climate.py:189:40 - error: Cannot assign to attribute "mode" for class "Device" +   Type "Mode | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportAttributeAccessIssue) + /homeassistant/components/gree/climate.py:210:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gree/climate.py:251:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gree/climate.py:254:30 - error: Argument of type "int" cannot be assigned to parameter "key" of type "FanSpeed" in function "get" +   "int" is not assignable to "FanSpeed" (reportArgumentType) + /homeassistant/components/gree/climate.py:261:45 - error: Cannot assign to attribute "fan_speed" for class "Device" +   Type "FanSpeed | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportAttributeAccessIssue) + /homeassistant/components/gree/climate.py:266:9 - error: "swing_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/gree/switch.py + /homeassistant/components/gree/switch.py:117:7 - error: Base classes for class "GreeSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/gree/switch.py:125:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "GreeSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/gree/switch.py:125:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "GreeSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/gree/switch.py:130:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/greeneye_monitor/__init__.py + /homeassistant/components/greeneye_monitor/__init__.py:121:25 - error: "Monitors" is not exported from module "greeneye" (reportPrivateImportUsage) +/homeassistant/components/greeneye_monitor/const.py + /homeassistant/components/greeneye_monitor/const.py:10:26 - error: "Monitors" is not exported from module "greeneye" +   Import from "greeneye.monitor" instead (reportPrivateImportUsage) +/homeassistant/components/greeneye_monitor/sensor.py + /homeassistant/components/greeneye_monitor/sensor.py:175:14 - error: "_sensor" overrides symbol of same name in class "GEMSensor" +   Variable is mutable so its type is invariant +     Override type "Channel" is not the same as base type "UnderlyingSensorType" (reportIncompatibleVariableOverride) + /homeassistant/components/greeneye_monitor/sensor.py:179:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/greeneye_monitor/sensor.py:184:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/greeneye_monitor/sensor.py:212:14 - error: "_sensor" overrides symbol of same name in class "GEMSensor" +   Variable is mutable so its type is invariant +     Override type "PulseCounter" is not the same as base type "UnderlyingSensorType" (reportIncompatibleVariableOverride) + /homeassistant/components/greeneye_monitor/sensor.py:218:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/greeneye_monitor/sensor.py:246:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/greeneye_monitor/sensor.py:263:14 - error: "_sensor" overrides symbol of same name in class "GEMSensor" +   Variable is mutable so its type is invariant +     Override type "TemperatureSensor" is not the same as base type "UnderlyingSensorType" (reportIncompatibleVariableOverride) + /homeassistant/components/greeneye_monitor/sensor.py:267:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/greeneye_monitor/sensor.py:283:14 - error: "_sensor" overrides symbol of same name in class "GEMSensor" +   Variable is mutable so its type is invariant +     Override type "VoltageSensor" is not the same as base type "UnderlyingSensorType" (reportIncompatibleVariableOverride) + /homeassistant/components/greeneye_monitor/sensor.py:286:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/greenwave/light.py + /homeassistant/components/greenwave/light.py:10:8 - error: Import "greenwavereality" could not be resolved (reportMissingImports) + /homeassistant/components/greenwave/light.py:85:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/group/binary_sensor.py + /homeassistant/components/group/binary_sensor.py:155:9 - error: "device_class" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/group/binary_sensor.py:155:9 - error: "device_class" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[BinarySensorDeviceClass | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/group/config_flow.py + /homeassistant/components/group/config_flow.py:421:22 - error: Could not access item in TypedDict +   "step_id" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/group/entity.py + /homeassistant/components/group/entity.py:254:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/group/entity.py:263:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/group/entity.py:272:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/group/fan.py + /homeassistant/components/group/fan.py:130:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) + /homeassistant/components/group/fan.py:140:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/group/fan.py:145:9 - error: "current_direction" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/group/fan.py:150:9 - error: "oscillating" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/group/media_player.py + /homeassistant/components/group/media_player.py:267:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/group/media_player.py:272:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/group/sensor.py + /homeassistant/components/group/sensor.py:457:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/group/sensor.py:462:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/growatt_server/__init__.py + /homeassistant/components/growatt_server/__init__.py:40:53 - error: "login_response" is unbound (reportUnboundVariable) +/homeassistant/components/growatt_server/coordinator.py + /homeassistant/components/growatt_server/coordinator.py:94:39 - error: Cannot access attribute "plant_energy_overview" for class "GrowattApi" +   Attribute "plant_energy_overview" is unknown (reportAttributeAccessIssue) + /homeassistant/components/growatt_server/coordinator.py:112:40 - error: Cannot access attribute "min_detail" for class "GrowattApi" +   Attribute "min_detail" is unknown (reportAttributeAccessIssue) + /homeassistant/components/growatt_server/coordinator.py:113:41 - error: Cannot access attribute "min_settings" for class "GrowattApi" +   Attribute "min_settings" is unknown (reportAttributeAccessIssue) + /homeassistant/components/growatt_server/coordinator.py:114:39 - error: Cannot access attribute "min_energy" for class "GrowattApi" +   Attribute "min_energy" is unknown (reportAttributeAccessIssue) +/homeassistant/components/growatt_server/number.py + /homeassistant/components/growatt_server/number.py:103:7 - error: Base classes for class "GrowattNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/growatt_server/number.py:117:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "GrowattNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/growatt_server/number.py:117:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "GrowattNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/growatt_server/number.py:126:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/growatt_server/number.py:144:38 - error: Cannot access attribute "min_write_parameter" for class "GrowattApi" +   Attribute "min_write_parameter" is unknown (reportAttributeAccessIssue) +/homeassistant/components/growatt_server/sensor/__init__.py + /homeassistant/components/growatt_server/sensor/__init__.py:80:7 - error: Base classes for class "GrowattSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/growatt_server/sensor/__init__.py:96:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "GrowattSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/growatt_server/sensor/__init__.py:96:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "GrowattSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/growatt_server/sensor/__init__.py:108:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/growatt_server/sensor/__init__.py:119:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/growatt_server/switch.py + /homeassistant/components/growatt_server/switch.py:70:7 - error: Base classes for class "GrowattSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/growatt_server/switch.py:84:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "GrowattSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/growatt_server/switch.py:84:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "GrowattSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/growatt_server/switch.py:93:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/growatt_server/switch.py:121:38 - error: Cannot access attribute "min_write_parameter" for class "GrowattApi" +   Attribute "min_write_parameter" is unknown (reportAttributeAccessIssue) +/homeassistant/components/gtfs/sensor.py + /homeassistant/components/gtfs/sensor.py:11:8 - error: Import "pygtfs" could not be resolved (reportMissingImports) + /homeassistant/components/gtfs/sensor.py:555:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gtfs/sensor.py:560:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/gtfs/sensor.py:565:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/gtfs/sensor.py:570:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gtfs/sensor.py:575:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/gtfs/sensor.py:647:63 - error: Cannot access attribute "agency_timezone" for class "Literal[True]" +   Attribute "agency_timezone" is unknown (reportAttributeAccessIssue) + /homeassistant/components/gtfs/sensor.py:658:55 - error: Cannot access attribute "agency_name" for class "Literal[True]" +   Attribute "agency_name" is unknown (reportAttributeAccessIssue) +/homeassistant/components/guardian/__init__.py + /homeassistant/components/guardian/__init__.py:8:25 - error: "Client" is not exported from module "aioguardian" +   Import from "aioguardian.client" instead (reportPrivateImportUsage) +/homeassistant/components/guardian/binary_sensor.py + /homeassistant/components/guardian/binary_sensor.py:145:7 - error: Base classes for class "PairedSensorBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/guardian/binary_sensor.py:148:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "PairedSensorBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/guardian/binary_sensor.py:162:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/guardian/binary_sensor.py:167:7 - error: Base classes for class "ValveControllerBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/guardian/binary_sensor.py:170:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "ValveControllerBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/guardian/binary_sensor.py:184:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/guardian/button.py + /homeassistant/components/guardian/button.py:8:25 - error: "Client" is not exported from module "aioguardian" +   Import from "aioguardian.client" instead (reportPrivateImportUsage) + /homeassistant/components/guardian/button.py:82:7 - error: Base classes for class "GuardianButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/guardian/button.py:88:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "ValveControllerButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/guardian/button.py:102:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/guardian/config_flow.py + /homeassistant/components/guardian/config_flow.py:7:25 - error: "Client" is not exported from module "aioguardian" +   Import from "aioguardian.client" instead (reportPrivateImportUsage) +/homeassistant/components/guardian/coordinator.py + /homeassistant/components/guardian/coordinator.py:10:25 - error: "Client" is not exported from module "aioguardian" +   Import from "aioguardian.client" instead (reportPrivateImportUsage) +/homeassistant/components/guardian/sensor.py + /homeassistant/components/guardian/sensor.py:182:7 - error: Base classes for class "PairedSensorSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/guardian/sensor.py:185:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PairedSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/guardian/sensor.py:188:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/guardian/sensor.py:193:7 - error: Base classes for class "ValveControllerSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/guardian/sensor.py:196:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ValveControllerSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/guardian/sensor.py:199:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/guardian/switch.py + /homeassistant/components/guardian/switch.py:9:25 - error: "Client" is not exported from module "aioguardian" +   Import from "aioguardian.client" instead (reportPrivateImportUsage) + /homeassistant/components/guardian/switch.py:125:7 - error: Base classes for class "ValveControllerSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/guardian/switch.py:128:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "ValveControllerSwitchDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/guardian/switch.py:142:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/guardian/switch.py:147:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/guardian/switch.py:152:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/guardian/switch.py:158:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/guardian/valve.py + /homeassistant/components/guardian/valve.py:10:25 - error: "Client" is not exported from module "aioguardian" +   Import from "aioguardian.client" instead (reportPrivateImportUsage) + /homeassistant/components/guardian/valve.py:124:7 - error: Base classes for class "ValveControllerValve" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/guardian/valve.py:130:5 - error: "entity_description" overrides symbol of same name in class "ValveEntity" +   Variable is mutable so its type is invariant +     Override type "ValveControllerValveDescription" is not the same as base type "ValveEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/guardian/valve.py:159:15 - error: Method "async_close_valve" overrides class "ValveEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/guardian/valve.py:165:15 - error: Method "async_open_valve" overrides class "ValveEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/guardian/valve.py:171:15 - error: Method "async_stop_valve" overrides class "ValveEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/habitica/binary_sensor.py + /homeassistant/components/habitica/binary_sensor.py:84:7 - error: Base classes for class "HabiticaBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/binary_sensor.py:87:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "HabiticaBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/binary_sensor.py:90:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/binary_sensor.py:95:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/binary_sensor.py:104:7 - error: Base classes for class "HabiticaPartyBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/binary_sensor.py:122:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/habitica/button.py + /homeassistant/components/habitica/button.py:296:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "HabiticaButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/button.py:305:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/button.py:313:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/habitica/calendar.py + /homeassistant/components/habitica/calendar.py:58:7 - error: Base classes for class "HabiticaCalendarEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/calendar.py:244:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/habitica/image.py + /homeassistant/components/habitica/image.py:73:7 - error: Base classes for class "HabiticaImage" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/image.py:115:7 - error: Base classes for class "HabiticaPartyMemberImage" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/image.py:115:7 - error: Base classes for class "HabiticaPartyMemberImage" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/image.py:115:7 - error: Base classes for class "HabiticaPartyMemberImage" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/image.py:115:7 - error: Base classes for class "HabiticaPartyMemberImage" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/image.py:133:7 - error: Base classes for class "HabiticaPartyImage" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/image.py:167:9 - error: "image_url" overrides symbol of same name in class "ImageEntity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/habitica/notify.py + /homeassistant/components/habitica/notify.py:95:7 - error: Base classes for class "HabiticaBaseNotifyEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/habitica/sensor.py + /homeassistant/components/habitica/sensor.py:430:7 - error: Base classes for class "HabiticaSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:433:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "HabiticaSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:436:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:446:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:453:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:479:7 - error: Base classes for class "HabiticaPartyMemberSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:479:7 - error: Base classes for class "HabiticaPartyMemberSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:479:7 - error: Base classes for class "HabiticaPartyMemberSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:479:7 - error: Base classes for class "HabiticaPartyMemberSensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:479:7 - error: Base classes for class "HabiticaPartyMemberSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:479:7 - error: Base classes for class "HabiticaPartyMemberSensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:479:7 - error: Base classes for class "HabiticaPartyMemberSensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:479:7 - error: Base classes for class "HabiticaPartyMemberSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:479:7 - error: Base classes for class "HabiticaPartyMemberSensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:479:7 - error: Base classes for class "HabiticaPartyMemberSensor" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:483:7 - error: Base classes for class "HabiticaPartySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:486:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "HabiticaPartySensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:489:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:497:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/sensor.py:516:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/habitica/switch.py + /homeassistant/components/habitica/switch.py:67:7 - error: Base classes for class "HabiticaSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/switch.py:70:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "HabiticaSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/switch.py:73:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/habitica/todo.py + /homeassistant/components/habitica/todo.py:68:7 - error: Base classes for class "BaseHabiticaListEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/todo.py:262:9 - error: "todo_items" overrides symbol of same name in class "TodoListEntity" +   "property" is not assignable to "cached_property[list[TodoItem] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/habitica/todo.py:338:9 - error: "todo_items" overrides symbol of same name in class "TodoListEntity" +   "property" is not assignable to "cached_property[list[TodoItem] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hardware/__init__.py + /homeassistant/components/hardware/__init__.py:30:23 - error: Argument of type "PsutilWrapper" cannot be assigned to parameter "ha_psutil" of type "Module("psutil_home_assistant")" in function "__init__" +   Type "PsutilWrapper" is not assignable to type "Module("psutil_home_assistant")" (reportArgumentType) +/homeassistant/components/hardware/models.py + /homeassistant/components/hardware/models.py:26:16 - error: Module cannot be used as a type (reportGeneralTypeIssues) + /homeassistant/components/hardware/models.py:67:50 - error: Function with declared return type "list[HardwareInfo]" must return value on all code paths +   "None" is not assignable to "list[HardwareInfo]" (reportReturnType) +/homeassistant/components/harman_kardon_avr/media_player.py + /homeassistant/components/harman_kardon_avr/media_player.py:5:8 - error: Import "hkavr" could not be resolved (reportMissingImports) + /homeassistant/components/harman_kardon_avr/media_player.py:86:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/harman_kardon_avr/media_player.py:91:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/harman_kardon_avr/media_player.py:96:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/harman_kardon_avr/media_player.py:101:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/harmony/config_flow.py + /homeassistant/components/harmony/config_flow.py:87:48 - error: "validated" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/harmony/config_flow.py:90:21 - error: "validated" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/harmony/config_flow.py:116:34 - error: Argument of type "str | bytes | None" cannot be assigned to parameter "ip_address" of type "str" in function "__init__" +   Type "str | bytes | None" is not assignable to type "str" +     "bytes" is not assignable to "str" (reportArgumentType) +/homeassistant/components/harmony/data.py + /homeassistant/components/harmony/data.py:234:28 - error: Argument of type "str" cannot be assigned to parameter "device" of type "int" in function "__new__" +   "str" is not assignable to "int" (reportArgumentType) +/homeassistant/components/harmony/entity.py + /homeassistant/components/harmony/entity.py:33:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/harmony/remote.py + /homeassistant/components/harmony/remote.py:85:7 - error: Base classes for class "HarmonyRemote" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/harmony/remote.py:85:7 - error: Base classes for class "HarmonyRemote" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/harmony/remote.py:85:7 - error: Base classes for class "HarmonyRemote" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/harmony/remote.py:85:7 - error: Base classes for class "HarmonyRemote" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/harmony/remote.py:85:7 - error: Base classes for class "HarmonyRemote" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/harmony/remote.py:85:7 - error: Base classes for class "HarmonyRemote" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/harmony/remote.py:168:9 - error: "current_activity" overrides symbol of same name in class "RemoteEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/harmony/remote.py:173:9 - error: "activity_list" overrides symbol of same name in class "RemoteEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/harmony/remote.py:178:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/harmony/remote.py:187:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/harmony/select.py + /homeassistant/components/harmony/select.py:30:7 - error: Base classes for class "HarmonyActivitySelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/harmony/select.py:43:9 - error: "options" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/harmony/select.py:48:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hassio/__init__.py + /homeassistant/components/hassio/__init__.py:500:12 - error: "user" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/hassio/__init__.py:501:33 - error: "user" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/hassio/__init__.py:530:17 - error: Argument of type "HassJob[(_: datetime | None = None), None]" cannot be assigned to parameter "action" of type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" in function "async_call_later" +   Type "HassJob[(_: datetime | None = None), None]" is not assignable to type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" +     "HassJob[(_: datetime | None = None), None]" is not assignable to "HassJob[(datetime), Coroutine[Any, Any, None] | None]" +       Type parameter "_P@HassJob" is invariant, but "(_: datetime | None = None)" is not the same as "(datetime)" +       Type parameter "_R_co@HassJob" is invariant, but "None" is not the same as "Coroutine[Any, Any, None] | None" +     Type "HassJob[(_: datetime | None = None), None]" is not assignable to type "(datetime) -> (Coroutine[Any, Any, None] | None)" (reportArgumentType) + /homeassistant/components/hassio/__init__.py:638:1 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) +/homeassistant/components/hassio/auth.py + /homeassistant/components/hassio/auth.py:81:28 - error: Cannot access attribute "async_validate_login" for class "AuthProvider" +   Attribute "async_validate_login" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hassio/auth.py:111:28 - error: Cannot access attribute "async_change_password" for class "AuthProvider" +   Attribute "async_change_password" is unknown (reportAttributeAccessIssue) +/homeassistant/components/hassio/backup.py + /homeassistant/components/hassio/backup.py:453:67 - error: Argument of type "str | None" cannot be assigned to parameter "backup" of type "str" in function "download_backup" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/hassio/backup.py:464:21 - error: Argument of type "str | None" cannot be assigned to parameter "backup" of type "str" in function "remove_backup" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/hassio/binary_sensor.py + /homeassistant/components/hassio/binary_sensor.py:89:7 - error: Base classes for class "HassioAddonBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/binary_sensor.py:92:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "HassioBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/binary_sensor.py:95:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/binary_sensor.py:105:7 - error: Base classes for class "HassioMountBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/binary_sensor.py:108:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "HassioBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/binary_sensor.py:111:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hassio/sensor.py + /homeassistant/components/hassio/sensor.py:167:7 - error: Base classes for class "HassioAddonSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/sensor.py:171:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/sensor.py:178:7 - error: Base classes for class "HassioOSSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/sensor.py:182:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/sensor.py:187:7 - error: Base classes for class "CoreSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/sensor.py:191:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/sensor.py:196:7 - error: Base classes for class "SupervisorSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/sensor.py:200:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/sensor.py:205:7 - error: Base classes for class "HostSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/sensor.py:209:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/hassio/switch.py + /homeassistant/components/hassio/switch.py:50:7 - error: Base classes for class "HassioAddonSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/switch.py:54:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/switch.py:61:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hassio/update.py + /homeassistant/components/hassio/update.py:87:7 - error: Base classes for class "SupervisorAddonUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:103:9 - error: "auto_update" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:108:9 - error: "title" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:113:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:118:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:123:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:185:7 - error: Base classes for class "SupervisorOSUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:196:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:201:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:206:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:211:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:227:7 - error: Base classes for class "SupervisorSupervisorUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:234:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:239:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:244:9 - error: "auto_update" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:249:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:257:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:273:7 - error: Base classes for class "SupervisorCoreUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:285:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:290:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:295:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hassio/update.py:300:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/haveibeenpwned/sensor.py + /homeassistant/components/haveibeenpwned/sensor.py:70:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/haveibeenpwned/sensor.py:75:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/haveibeenpwned/sensor.py:80:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/haveibeenpwned/sensor.py:85:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hddtemp/sensor.py + /homeassistant/components/hddtemp/sensor.py:68:23 - error: No overloads for "iter" match the provided arguments (reportCallIssue) + /homeassistant/components/hddtemp/sensor.py:68:28 - error: Argument of type "dict[Any, Any] | None" cannot be assigned to parameter "object" of type "_GetItemIterable[_T@iter]" in function "iter" +   Type "dict[Any, Any] | None" is not assignable to type "_GetItemIterable[Any]" +     "None" is incompatible with protocol "_GetItemIterable[Any]" +       "__getitem__" is not present (reportArgumentType) + /homeassistant/components/hddtemp/sensor.py:86:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hdmi_cec/__init__.py + /homeassistant/components/hdmi_cec/__init__.py:258:49 - error: Argument of type "Any | str" cannot be assigned to parameter "att" of type "List[int]" in function "__init__" +   Type "Any | str" is not assignable to type "List[int]" +     "str" is not assignable to "List[int]" (reportArgumentType) +/homeassistant/components/hdmi_cec/entity.py + /homeassistant/components/hdmi_cec/entity.py:98:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hdmi_cec/media_player.py + /homeassistant/components/hdmi_cec/media_player.py:64:7 - error: Base classes for class "CecPlayerEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hdmi_cec/media_player.py:171:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hdmi_cec/media_player.py:171:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) +/homeassistant/components/hdmi_cec/switch.py + /homeassistant/components/hdmi_cec/switch.py:39:7 - error: Base classes for class "CecSwitchEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/heatmiser/climate.py + /homeassistant/components/heatmiser/climate.py:8:6 - error: Import "heatmiserv3" could not be resolved (reportMissingImports) + /homeassistant/components/heatmiser/climate.py:98:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/heatmiser/climate.py:103:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/heatmiser/climate.py:108:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/heos/media_player.py + /homeassistant/components/heos/media_player.py:258:15 - error: Method "async_clear_playlist" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/heos/media_player.py:263:15 - error: Method "async_media_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/heos/media_player.py:268:15 - error: Method "async_media_play" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/heos/media_player.py:273:15 - error: Method "async_media_previous_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/heos/media_player.py:278:15 - error: Method "async_media_next_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/heos/media_player.py:283:15 - error: Method "async_media_stop" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/heos/media_player.py:288:15 - error: Method "async_mute_volume" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/heos/media_player.py:293:15 - error: Method "async_play_media" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/heos/media_player.py:369:15 - error: Method "async_select_source" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/heos/media_player.py:388:15 - error: Method "async_set_repeat" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/heos/media_player.py:395:15 - error: Method "async_set_shuffle" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/heos/media_player.py:400:15 - error: Method "async_set_volume_level" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/heos/media_player.py:440:15 - error: Method "async_join_players" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/heos/media_player.py:465:15 - error: Method "async_unjoin_player" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/heos/media_player.py:491:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/heos/media_player.py:496:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/heos/media_player.py:507:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/heos/media_player.py:512:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/heos/media_player.py:517:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/heos/media_player.py:522:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/heos/media_player.py:527:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/heos/media_player.py:535:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/heos/media_player.py:545:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/heos/media_player.py:553:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/heos/media_player.py:560:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/heos/media_player.py:565:9 - error: "shuffle" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/heos/media_player.py:570:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/heos/media_player.py:570:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/heos/media_player.py:575:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/here_travel_time/coordinator.py + /homeassistant/components/here_travel_time/coordinator.py:226:30 - error: Argument of type "str" cannot be assigned to parameter "latitude" of type "float" in function "__init__" +   "str" is not assignable to "float" (reportArgumentType) + /homeassistant/components/here_travel_time/coordinator.py:226:58 - error: Argument of type "str" cannot be assigned to parameter "longitude" of type "float" in function "__init__" +   "str" is not assignable to "float" (reportArgumentType) + /homeassistant/components/here_travel_time/coordinator.py:229:30 - error: Argument of type "str" cannot be assigned to parameter "latitude" of type "float" in function "__init__" +   "str" is not assignable to "float" (reportArgumentType) + /homeassistant/components/here_travel_time/coordinator.py:229:63 - error: Argument of type "str" cannot be assigned to parameter "longitude" of type "float" in function "__init__" +   "str" is not assignable to "float" (reportArgumentType) +/homeassistant/components/here_travel_time/sensor.py + /homeassistant/components/here_travel_time/sensor.py:107:7 - error: Base classes for class "HERETravelTimeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/here_travel_time/sensor.py:156:9 - error: "attribution" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/here_travel_time/sensor.py:183:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/here_travel_time/sensor.py:212:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hikvision/binary_sensor.py + /homeassistant/components/hikvision/binary_sensor.py:8:6 - error: Import "pyhik.hikvision" could not be resolved (reportMissingImports) + /homeassistant/components/hikvision/binary_sensor.py:237:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hikvision/binary_sensor.py:242:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hikvision/binary_sensor.py:247:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hikvision/binary_sensor.py:252:9 - error: "device_class" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[BinarySensorDeviceClass | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hikvision/binary_sensor.py:261:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hikvisioncam/switch.py + /homeassistant/components/hikvisioncam/switch.py:8:8 - error: Import "hikvision.api" could not be resolved (reportMissingImports) + /homeassistant/components/hikvisioncam/switch.py:9:6 - error: Import "hikvision.error" could not be resolved (reportMissingImports) + /homeassistant/components/hikvisioncam/switch.py:87:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hikvisioncam/switch.py:92:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/history_stats/sensor.py + /homeassistant/components/history_stats/sensor.py:153:7 - error: Base classes for class "HistoryStatsSensorBase" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/hive/__init__.py + /homeassistant/components/hive/__init__.py:52:31 - error: Argument of type "set[tuple[Literal['hive'], type[HTTPException] | Unknown]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]] | UndefinedType | None" in function "async_get_or_create" +   Type "type[HTTPException] | Unknown" is not assignable to type "str" +     Type "type[HTTPException]" is not assignable to type "str" (reportArgumentType) + /homeassistant/components/hive/__init__.py:52:39 - error: Expected no type arguments for class "HTTPException" (reportInvalidTypeArguments) + /homeassistant/components/hive/__init__.py:52:49 - error: Expected no type arguments for class "HTTPException" (reportInvalidTypeArguments) + /homeassistant/components/hive/__init__.py:52:52 - error: Expected no type arguments for class "HTTPException" (reportInvalidTypeArguments) + /homeassistant/components/hive/__init__.py:53:14 - error: Argument of type "type[HTTPException] | Unknown" cannot be assigned to parameter "name" of type "str | UndefinedType | None" in function "async_get_or_create" +   Type "type[HTTPException] | Unknown" is not assignable to type "str | UndefinedType | None" +     Type "type[HTTPException]" is not assignable to type "str | UndefinedType | None" +       Type "type[HTTPException]" is not assignable to type "str" +       Type is not assignable to "None" +       Type "type[HTTPException]" is not assignable to type "UndefinedType" (reportArgumentType) + /homeassistant/components/hive/__init__.py:53:22 - error: Expected no type arguments for class "HTTPException" (reportInvalidTypeArguments) + /homeassistant/components/hive/__init__.py:53:32 - error: Expected no type arguments for class "HTTPException" (reportInvalidTypeArguments) + /homeassistant/components/hive/__init__.py:53:35 - error: Expected no type arguments for class "HTTPException" (reportInvalidTypeArguments) + /homeassistant/components/hive/__init__.py:54:15 - error: Argument of type "type[HTTPException] | Unknown" cannot be assigned to parameter "model" of type "str | UndefinedType | None" in function "async_get_or_create" +   Type "type[HTTPException] | Unknown" is not assignable to type "str | UndefinedType | None" +     Type "type[HTTPException]" is not assignable to type "str | UndefinedType | None" +       Type "type[HTTPException]" is not assignable to type "str" +       Type is not assignable to "None" +       Type "type[HTTPException]" is not assignable to type "UndefinedType" (reportArgumentType) + /homeassistant/components/hive/__init__.py:54:23 - error: Expected no type arguments for class "HTTPException" (reportInvalidTypeArguments) + /homeassistant/components/hive/__init__.py:54:33 - error: Expected no type arguments for class "HTTPException" (reportInvalidTypeArguments) + /homeassistant/components/hive/__init__.py:54:36 - error: Expected no type arguments for class "HTTPException" (reportInvalidTypeArguments) + /homeassistant/components/hive/__init__.py:54:50 - error: Expected no type arguments for class "HTTPException" (reportInvalidTypeArguments) + /homeassistant/components/hive/__init__.py:55:20 - error: Argument of type "type[HTTPException] | Unknown" cannot be assigned to parameter "sw_version" of type "str | UndefinedType | None" in function "async_get_or_create" +   Type "type[HTTPException] | Unknown" is not assignable to type "str | UndefinedType | None" +     Type "type[HTTPException]" is not assignable to type "str | UndefinedType | None" +       Type "type[HTTPException]" is not assignable to type "str" +       Type is not assignable to "None" +       Type "type[HTTPException]" is not assignable to type "UndefinedType" (reportArgumentType) + /homeassistant/components/hive/__init__.py:55:28 - error: Expected no type arguments for class "HTTPException" (reportInvalidTypeArguments) + /homeassistant/components/hive/__init__.py:55:38 - error: Expected no type arguments for class "HTTPException" (reportInvalidTypeArguments) + /homeassistant/components/hive/__init__.py:55:41 - error: Expected no type arguments for class "HTTPException" (reportInvalidTypeArguments) + /homeassistant/components/hive/__init__.py:55:55 - error: Expected no type arguments for class "HTTPException" (reportInvalidTypeArguments) + /homeassistant/components/hive/__init__.py:56:22 - error: Argument of type "type[HTTPException] | Unknown" cannot be assigned to parameter "manufacturer" of type "str | UndefinedType | None" in function "async_get_or_create" +   Type "type[HTTPException] | Unknown" is not assignable to type "str | UndefinedType | None" +     Type "type[HTTPException]" is not assignable to type "str | UndefinedType | None" +       Type "type[HTTPException]" is not assignable to type "str" +       Type is not assignable to "None" +       Type "type[HTTPException]" is not assignable to type "UndefinedType" (reportArgumentType) + /homeassistant/components/hive/__init__.py:56:30 - error: Expected no type arguments for class "HTTPException" (reportInvalidTypeArguments) + /homeassistant/components/hive/__init__.py:56:40 - error: Expected no type arguments for class "HTTPException" (reportInvalidTypeArguments) + /homeassistant/components/hive/__init__.py:56:43 - error: Expected no type arguments for class "HTTPException" (reportInvalidTypeArguments) + /homeassistant/components/hive/__init__.py:56:57 - error: Expected no type arguments for class "HTTPException" (reportInvalidTypeArguments) + /homeassistant/components/hive/__init__.py:64:16 - error: No overloads for "get" match the provided arguments +   Argument types: (str) (reportCallIssue) +/homeassistant/components/hive/binary_sensor.py + /homeassistant/components/hive/binary_sensor.py:83:20 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) + /homeassistant/components/hive/binary_sensor.py:91:20 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) +/homeassistant/components/hive/climate.py + /homeassistant/components/hive/climate.py:107:15 - error: Method "async_set_hvac_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/hive/climate.py:113:15 - error: Method "async_set_temperature" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/hive/climate.py:120:15 - error: Method "async_set_preset_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/hive/climate.py:127:61 - error: Argument of type "Literal[30]" cannot be assigned to parameter "mins" of type "str" in function "setBoostOn" +   "Literal[30]" is not assignable to "str" (reportArgumentType) +/homeassistant/components/hive/config_flow.py + /homeassistant/components/hive/config_flow.py:57:16 - error: Could not access item in TypedDict +   "source" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/hive/config_flow.py:177:5 - error: "config_entry" incorrectly overrides property of same name in class "OptionsFlow" (reportIncompatibleMethodOverride) + /homeassistant/components/hive/config_flow.py:199:44 - error: Argument of type "Any | None" cannot be assigned to parameter "new_interval" of type "timedelta" in function "updateInterval" +   Type "Any | None" is not assignable to type "timedelta" +     "None" is not assignable to "timedelta" (reportArgumentType) +/homeassistant/components/hive/light.py + /homeassistant/components/hive/light.py:63:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/hive/light.py:83:26 - error: Argument of type "int | None" cannot be assigned to parameter "brightness" of type "int" in function "turnOn" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/hive/light.py:83:42 - error: Argument of type "Any | None" cannot be assigned to parameter "color_temp" of type "int" in function "turnOn" +   Type "Any | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/hive/light.py:83:58 - error: Argument of type "tuple[int, int, Literal[100]] | None" cannot be assigned to parameter "color" of type "list[Unknown]" in function "turnOn" +   Type "tuple[int, int, Literal[100]] | None" is not assignable to type "list[Unknown]" +     "tuple[int, int, Literal[100]]" is not assignable to "list[Unknown]" (reportArgumentType) + /homeassistant/components/hive/light.py:87:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/hive/sensor.py + /homeassistant/components/hive/sensor.py:124:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "HiveSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/hive/sensor.py:124:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "HiveSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/hive/switch.py + /homeassistant/components/hive/switch.py:70:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/hive/switch.py:75:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/hive/water_heater.py + /homeassistant/components/hive/water_heater.py:83:15 - error: Method "async_turn_on" overrides class "WaterHeaterEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/hive/water_heater.py:88:15 - error: Method "async_turn_off" overrides class "WaterHeaterEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/hive/water_heater.py:93:15 - error: Method "async_set_operation_mode" overrides class "WaterHeaterEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/hko/weather.py + /homeassistant/components/hko/weather.py:38:7 - error: Base classes for class "HKOEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hko/weather.py:58:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hko/weather.py:63:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hko/weather.py:68:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hlk_sw16/entity.py + /homeassistant/components/hlk_sw16/entity.py:40:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/hlk_sw16/switch.py + /homeassistant/components/hlk_sw16/switch.py:37:7 - error: Base classes for class "SW16Switch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hlk_sw16/switch.py:41:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/home_connect/binary_sensor.py + /homeassistant/components/home_connect/binary_sensor.py:173:7 - error: Base classes for class "HomeConnectBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/home_connect/binary_sensor.py:176:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "HomeConnectBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/home_connect/binary_sensor.py:199:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/home_connect/button.py + /homeassistant/components/home_connect/button.py:82:7 - error: Base classes for class "HomeConnectButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/home_connect/button.py:108:5 - error: "entity_description" overrides symbol of same name in class "HomeConnectButtonEntity" +   Variable is mutable so its type is invariant +     Override type "HomeConnectCommandButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/home_connect/light.py + /homeassistant/components/home_connect/light.py:105:7 - error: Base classes for class "HomeConnectLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/home_connect/number.py + /homeassistant/components/home_connect/number.py:162:7 - error: Base classes for class "HomeConnectNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/home_connect/number.py:240:7 - error: Base classes for class "HomeConnectOptionNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/home_connect/select.py + /homeassistant/components/home_connect/select.py:363:7 - error: Base classes for class "HomeConnectProgramSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/home_connect/select.py:366:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "HomeConnectProgramSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/home_connect/select.py:440:7 - error: Base classes for class "HomeConnectSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/home_connect/select.py:443:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "HomeConnectSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/home_connect/select.py:517:7 - error: Base classes for class "HomeConnectSelectOptionEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/home_connect/select.py:520:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "HomeConnectSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/home_connect/sensor.py + /homeassistant/components/home_connect/sensor.py:549:7 - error: Base classes for class "HomeConnectSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/home_connect/sensor.py:552:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "HomeConnectSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/home_connect/services.py + /homeassistant/components/home_connect/services.py:248:15 - error: "Unbound" is not awaitable (reportGeneralTypeIssues) + /homeassistant/components/home_connect/services.py:248:15 - error: "method_call" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/home_connect/services.py:252:29 - error: "exception_translation_key" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/home_connect/switch.py + /homeassistant/components/home_connect/switch.py:184:7 - error: Base classes for class "HomeConnectSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/home_connect/switch.py:232:7 - error: Base classes for class "HomeConnectPowerSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/home_connect/switch.py:338:7 - error: Base classes for class "HomeConnectSwitchOptionEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/homeassistant/scene.py + /homeassistant/components/homeassistant/scene.py:342:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homeassistant/scene.py:347:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homeassistant/scene.py:352:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homeassistant/scene.py:357:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homeassistant/triggers/time.py + /homeassistant/components/homeassistant/triggers/time.py:180:25 - error: "year" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/homeassistant/triggers/time.py:181:25 - error: "month" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/homeassistant/triggers/time.py:182:25 - error: "day" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/homeassistant/triggers/time.py:286:34 - error: Cannot access attribute "hour" for class "dict[Unknown, Unknown]" +   Attribute "hour" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homeassistant/triggers/time.py:287:36 - error: Cannot access attribute "minute" for class "dict[Unknown, Unknown]" +   Attribute "minute" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homeassistant/triggers/time.py:288:36 - error: Cannot access attribute "second" for class "dict[Unknown, Unknown]" +   Attribute "second" is unknown (reportAttributeAccessIssue) +/homeassistant/components/homeassistant_green/config_flow.py + /homeassistant/components/homeassistant_green/config_flow.py:63:5 - error: Declaration "_hw_settings" is obscured by a declaration of the same name (reportRedeclaration) + /homeassistant/components/homeassistant_green/config_flow.py:63:44 - error: Type "None" is not assignable to declared type "dict[str, bool]" +   "None" is not assignable to "dict[str, bool]" (reportAssignmentType) +/homeassistant/components/homeassistant_hardware/firmware_config_flow.py + /homeassistant/components/homeassistant_hardware/firmware_config_flow.py:271:41 - error: Argument of type "str | None" cannot be assigned to parameter "version" of type "str" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/homeassistant_hardware/firmware_config_flow.py:655:23 - error: Could not access item in TypedDict +   "title" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/homeassistant_hardware/firmware_config_flow.py:656:22 - error: Could not access item in TypedDict +   "data" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/homeassistant_hardware/firmware_config_flow.py:666:5 - error: "_probed_firmware_info" overrides symbol of same name in class "BaseFirmwareInstallFlow" +   Variable is mutable so its type is invariant +     Override type "FirmwareInfo" is not the same as base type "FirmwareInfo | None" (reportIncompatibleVariableOverride) +/homeassistant/components/homeassistant_hardware/helpers.py + /homeassistant/components/homeassistant_hardware/helpers.py:184:50 - error: Cannot access attribute "get_firmware_info" for class "AsyncHardwareFirmwareInfoModule" +   Attribute "get_firmware_info" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homeassistant_hardware/helpers.py:188:56 - error: Cannot access attribute "async_get_firmware_info" for class "SyncHardwareFirmwareInfoModule" +   Attribute "async_get_firmware_info" is unknown (reportAttributeAccessIssue) +/homeassistant/components/homeassistant_hardware/silabs_multiprotocol_addon.py + /homeassistant/components/homeassistant_hardware/silabs_multiprotocol_addon.py:263:66 - error: Function with declared return type "bool" must return value on all code paths +   "None" is not assignable to "bool" (reportReturnType) +/homeassistant/components/homeassistant_hardware/switch.py + /homeassistant/components/homeassistant_hardware/switch.py:18:7 - error: Base classes for class "BaseBetaFirmwareSwitch" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homeassistant_hardware/switch.py:18:7 - error: Base classes for class "BaseBetaFirmwareSwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homeassistant_hardware/switch.py:18:7 - error: Base classes for class "BaseBetaFirmwareSwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homeassistant_hardware/switch.py:18:7 - error: Base classes for class "BaseBetaFirmwareSwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/homeassistant_hardware/update.py + /homeassistant/components/homeassistant_hardware/update.py:82:7 - error: Base classes for class "BaseFirmwareUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homeassistant_hardware/update.py:107:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FirmwareUpdateEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homeassistant_hardware/update.py:107:14 - error: "entity_description" overrides symbol of same name in class "UpdateEntity" +   Variable is mutable so its type is invariant +     Override type "FirmwareUpdateEntityDescription" is not the same as base type "UpdateEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/homeassistant_yellow/config_flow.py + /homeassistant/components/homeassistant_yellow/config_flow.py:203:5 - error: Declaration "_hw_settings" is obscured by a declaration of the same name (reportRedeclaration) + /homeassistant/components/homeassistant_yellow/config_flow.py:203:44 - error: Type "None" is not assignable to declared type "dict[str, bool]" +   "None" is not assignable to "dict[str, bool]" (reportAssignmentType) +/homeassistant/components/homee/alarm_control_panel.py + /homeassistant/components/homee/alarm_control_panel.py:89:7 - error: Base classes for class "HomeeAlarmPanel" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homee/alarm_control_panel.py:102:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "HomeeAlarmControlPanelEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/alarm_control_panel.py:102:14 - error: "entity_description" overrides symbol of same name in class "AlarmControlPanelEntity" +   Variable is mutable so its type is invariant +     Override type "HomeeAlarmControlPanelEntityDescription" is not the same as base type "AlarmControlPanelEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/alarm_control_panel.py:108:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/alarm_control_panel.py:113:9 - error: "changed_by" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homee/binary_sensor.py + /homeassistant/components/homee/binary_sensor.py:184:7 - error: Base classes for class "HomeeBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homee/binary_sensor.py:200:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homee/button.py + /homeassistant/components/homee/button.py:67:7 - error: Base classes for class "HomeeButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/homee/climate.py + /homeassistant/components/homee/climate.py:58:7 - error: Base classes for class "HomeeClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homee/climate.py:91:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/climate.py:102:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/climate.py:121:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/climate.py:136:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/climate.py:143:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/climate.py:149:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/climate.py:155:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/homee/cover.py + /homeassistant/components/homee/cover.py:113:7 - error: Base classes for class "HomeeCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homee/cover.py:133:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/cover.py:149:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/cover.py:167:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/cover.py:179:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/cover.py:191:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homee/entity.py + /homeassistant/components/homee/entity.py:62:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/entity.py:128:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/homee/event.py + /homeassistant/components/homee/event.py:79:7 - error: Base classes for class "HomeeEvent" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/homee/fan.py + /homeassistant/components/homee/fan.py:50:7 - error: Base classes for class "HomeeFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homee/fan.py:70:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/fan.py:70:9 - error: "supported_features" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[FanEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/fan.py:89:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/fan.py:96:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/fan.py:98:16 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/homee/fan.py:110:59 - error: "index" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/homee/light.py + /homeassistant/components/homee/light.py:113:7 - error: Base classes for class "HomeeLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homee/light.py:155:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/light.py:164:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/light.py:177:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homee/lock.py + /homeassistant/components/homee/lock.py:43:7 - error: Base classes for class "HomeeLock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homee/lock.py:49:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/lock.py:54:9 - error: "is_locking" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/lock.py:59:9 - error: "is_unlocking" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/lock.py:64:9 - error: "changed_by" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homee/number.py + /homeassistant/components/homee/number.py:177:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "HomeeNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/number.py:177:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "HomeeNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/number.py:188:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/number.py:193:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homee/select.py + /homeassistant/components/homee/select.py:55:7 - error: Base classes for class "HomeeSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homee/select.py:72:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homee/sensor.py + /homeassistant/components/homee/sensor.py:385:7 - error: Base classes for class "HomeeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homee/sensor.py:398:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "HomeeSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/sensor.py:398:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "HomeeSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/sensor.py:408:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/sensor.py:413:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/sensor.py:420:7 - error: Base classes for class "HomeeNodeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homee/sensor.py:433:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "HomeeNodeSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/sensor.py:433:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "HomeeNodeSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/sensor.py:438:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/homee/siren.py + /homeassistant/components/homee/siren.py:43:7 - error: Base classes for class "HomeeSiren" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homee/siren.py:50:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homee/switch.py + /homeassistant/components/homee/switch.py:100:7 - error: Base classes for class "HomeeSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homee/switch.py:113:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "HomeeSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/switch.py:113:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "HomeeSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/switch.py:124:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/switch.py:129:9 - error: "device_class" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homee/switch.py:129:9 - error: "device_class" overrides symbol of same name in class "SwitchEntity" +   "property" is not assignable to "cached_property[SwitchDeviceClass | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homee/valve.py + /homeassistant/components/homee/valve.py:53:7 - error: Base classes for class "HomeeValve" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homee/valve.py:70:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homekit/__init__.py + /homeassistant/components/homekit/__init__.py:807:13 - error: Argument of type "HomeDriver | None" cannot be assigned to parameter "driver" of type "HomeDriver" in function "__init__" +   Type "HomeDriver | None" is not assignable to type "HomeDriver" +     "None" is not assignable to "HomeDriver" (reportArgumentType) + /homeassistant/components/homekit/__init__.py:808:13 - error: Argument of type "str | None" cannot be assigned to parameter "name" of type "str" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/homekit/__init__.py:809:13 - error: Argument of type "None" cannot be assigned to parameter "entity_id" of type "str" in function "__init__" +   "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/homekit/__init__.py:815:33 - error: Cannot access attribute "async_attach" for class "HomeAccessory" +   Attribute "async_attach" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homekit/__init__.py:1025:16 - error: Type "HomeBridge" is not assignable to return type "HomeAccessory" +   "HomeBridge" is not assignable to "HomeAccessory" (reportReturnType) +/homeassistant/components/homekit/accessories.py + /homeassistant/components/homekit/accessories.py:378:23 - error: "add_characteristic" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/homekit/accessories.py:379:23 - error: "configure_char" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/homekit/accessories.py:440:49 - error: Argument of type "Literal['BatteryService']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['BatteryService']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/accessories.py:460:9 - error: Method "run" overrides class "Accessory" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, Unknown]", override returns type "None" +     "None" is not assignable to "CoroutineType[Any, Any, Unknown]" (reportIncompatibleMethodOverride) + /homeassistant/components/homekit/accessories.py:729:9 - error: Method "pair" overrides class "AccessoryDriver" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "bytes", override parameter is type "str" +   Parameter 4 type mismatch: base parameter is type "bytes", override parameter is type "int" +     "bytes" is not assignable to "str" +     "bytes" is not assignable to "int" (reportIncompatibleMethodOverride) + /homeassistant/components/homekit/accessories.py:733:55 - error: Argument of type "str" cannot be assigned to parameter "client_public" of type "bytes" in function "pair" +   "str" is not assignable to "bytes" (reportArgumentType) + /homeassistant/components/homekit/accessories.py:733:70 - error: Argument of type "int" cannot be assigned to parameter "client_permissions" of type "bytes" in function "pair" +   "int" is not assignable to "bytes" (reportArgumentType) + /homeassistant/components/homekit/accessories.py:765:26 - error: "aid" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/homekit/accessories.py:767:32 - error: Type "Service | None" is not assignable to declared type "Service" +   Type "Service | None" is not assignable to type "Service" +     "None" is not assignable to "Service" (reportAssignmentType) + /homeassistant/components/homekit/accessories.py:769:17 - error: Argument of type "int | None" cannot be assigned to parameter "aid" of type "int" in function "get_or_allocate_iid" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/homekit/accessories.py:773:17 - error: Argument of type "int | None" cannot be assigned to parameter "aid" of type "int" in function "get_or_allocate_iid" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) +/homeassistant/components/homekit/config_flow.py + /homeassistant/components/homekit/config_flow.py:252:31 - error: Could not access item in TypedDict +   "include_domains" is not a required key in "EntityFilterDict", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/homekit/doorbell.py + /homeassistant/components/homekit/doorbell.py:55:50 - error: Argument of type "Literal['Doorbell']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['Doorbell']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/doorbell.py:62:13 - error: Argument of type "Literal['StatelessProgrammableSwitch']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['StatelessProgrammableSwitch']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/doorbell.py:69:49 - error: Argument of type "Literal['Speaker']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['Speaker']" is not assignable to "Service" (reportArgumentType) +/homeassistant/components/homekit/type_air_purifiers.py + /homeassistant/components/homekit/type_air_purifiers.py:85:17 - error: Cannot access attribute "preset_modes" for class "AirPurifier*" +   Attribute "preset_modes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homekit/type_air_purifiers.py:86:32 - error: Cannot access attribute "preset_modes" for class "AirPurifier*" +   Attribute "preset_modes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homekit/type_air_purifiers.py:93:14 - error: Cannot access attribute "chars" for class "AirPurifier*" +   Attribute "chars" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homekit/type_air_purifiers.py:94:14 - error: Cannot access attribute "chars" for class "AirPurifier*" +   Attribute "chars" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homekit/type_air_purifiers.py:95:14 - error: Cannot access attribute "chars" for class "AirPurifier*" +   Attribute "chars" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homekit/type_air_purifiers.py:96:54 - error: Argument of type "Literal['AirPurifier']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['AirPurifier']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_air_purifiers.py:96:78 - error: Cannot access attribute "chars" for class "AirPurifier*" +   Attribute "chars" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homekit/type_air_purifiers.py:126:54 - error: Argument of type "Literal['HumiditySensor']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['HumiditySensor']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_air_purifiers.py:126:76 - error: Argument of type "Literal['Name']" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   Type "Literal['Name']" is not assignable to type "Iterable[Characteristic] | None" +     "Literal['Name']" is not assignable to "Iterable[Characteristic]" +       Type parameter "_T_co@Iterable" is covariant, but "str" is not a subtype of "Characteristic" +         "str" is not assignable to "Characteristic" +     "Literal['Name']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/homekit/type_air_purifiers.py:139:17 - error: Argument of type "Literal['AirQualitySensor']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['AirQualitySensor']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_air_purifiers.py:140:17 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   "Literal['AirQuality']" is not assignable to "Characteristic" +   "Literal['Name']" is not assignable to "Characteristic" +   "Literal['PM2.5Density']" is not assignable to "Characteristic" (reportArgumentType) + /homeassistant/components/homekit/type_air_purifiers.py:156:17 - error: Argument of type "Literal['TemperatureSensor']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['TemperatureSensor']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_air_purifiers.py:156:42 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   "Literal['Name']" is not assignable to "Characteristic" +   "Literal['CurrentTemperature']" is not assignable to "Characteristic" (reportArgumentType) + /homeassistant/components/homekit/type_air_purifiers.py:181:17 - error: Argument of type "Literal['FilterMaintenance']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['FilterMaintenance']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_air_purifiers.py:181:42 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   Type "list[str]" is not assignable to type "Iterable[Characteristic] | None" +     "list[str]" is not assignable to "Iterable[Characteristic]" +       Type parameter "_T_co@Iterable" is covariant, but "str" is not a subtype of "Characteristic" +         "str" is not assignable to "Characteristic" +     "list[str]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/homekit/type_air_purifiers.py:477:17 - error: Cannot access attribute "set_chars" for class "object" +   Attribute "set_chars" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homekit/type_air_purifiers.py:483:25 - error: Cannot access attribute "set_preset_mode" for class "object" +   Attribute "set_preset_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homekit/type_air_purifiers.py:484:23 - error: Cannot access attribute "char_speed" for class "AirPurifier*" +   Attribute "char_speed" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homekit/type_air_purifiers.py:485:25 - error: Cannot access attribute "set_chars" for class "object" +   Attribute "set_chars" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homekit/type_air_purifiers.py:485:62 - error: Cannot access attribute "char_speed" for class "AirPurifier*" +   Attribute "char_speed" is unknown (reportAttributeAccessIssue) +/homeassistant/components/homekit/type_cameras.py + /homeassistant/components/homekit/type_cameras.py:226:56 - error: Argument of type "Literal['MotionSensor']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['MotionSensor']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_cameras.py:234:9 - error: Method "run" overrides class "Accessory" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, Unknown]", override returns type "None" +     "None" is not assignable to "CoroutineType[Any, Any, Unknown]" (reportIncompatibleMethodOverride) +/homeassistant/components/homekit/type_covers.py + /homeassistant/components/homekit/type_covers.py:110:53 - error: Argument of type "Literal['GarageDoorOpener']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['GarageDoorOpener']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_covers.py:353:65 - error: Argument of type "Literal['Door']" cannot be assigned to parameter "service" of type "Service" in function "__init__" +   "Literal['Door']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_covers.py:365:67 - error: Argument of type "Literal['Window']" cannot be assigned to parameter "service" of type "Service" in function "__init__" +   "Literal['Window']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_covers.py:378:63 - error: Argument of type "Literal['WindowCovering']" cannot be assigned to parameter "service" of type "Service" in function "__init__" +   "Literal['WindowCovering']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_covers.py:393:63 - error: Argument of type "Literal['WindowCovering']" cannot be assigned to parameter "service" of type "Service" in function "__init__" +   "Literal['WindowCovering']" is not assignable to "Service" (reportArgumentType) +/homeassistant/components/homekit/type_fans.py + /homeassistant/components/homekit/type_fans.py:68:13 - error: Argument of type "tuple[Literal['percentage_step'], Literal['preset_modes']]" cannot be assigned to parameter "iterable" of type "Iterable[Literal['supported_features', 'device_class', 'unit_of_measurement']]" in function "extend" +   Type "Literal['percentage_step']" is not assignable to type "Literal['supported_features', 'device_class', 'unit_of_measurement']" +     "Literal['percentage_step']" is not assignable to type "Literal['supported_features']" +     "Literal['percentage_step']" is not assignable to type "Literal['device_class']" +     "Literal['percentage_step']" is not assignable to type "Literal['unit_of_measurement']" +   Type "Literal['preset_modes']" is not assignable to type "Literal['supported_features', 'device_class', 'unit_of_measurement']" +     "Literal['preset_modes']" is not assignable to type "Literal['supported_features']" +     "Literal['preset_modes']" is not assignable to type "Literal['device_class']" +     "Literal['preset_modes']" is not assignable to type "Literal['unit_of_measurement']" (reportArgumentType) + /homeassistant/components/homekit/type_fans.py:124:21 - error: Argument of type "Literal['Switch']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['Switch']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_fans.py:125:21 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   "Literal['Name']" is not assignable to "Characteristic" +   "Literal['ConfiguredName']" is not assignable to "Characteristic" (reportArgumentType) + /homeassistant/components/homekit/type_fans.py:157:45 - error: Argument of type "Literal['Fanv2']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['Fanv2']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_fans.py:157:57 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   Type "list[str]" is not assignable to type "Iterable[Characteristic] | None" +     "list[str]" is not assignable to "Iterable[Characteristic]" +       Type parameter "_T_co@Iterable" is covariant, but "str" is not a subtype of "Characteristic" +         "str" is not assignable to "Characteristic" +     "list[str]" is not assignable to "None" (reportArgumentType) +/homeassistant/components/homekit/type_humidifiers.py + /homeassistant/components/homekit/type_humidifiers.py:103:13 - error: Argument of type "tuple[Literal['max_humidity'], Literal['min_humidity']]" cannot be assigned to parameter "iterable" of type "Iterable[Literal['supported_features', 'device_class', 'unit_of_measurement']]" in function "extend" +   Type "Literal['max_humidity']" is not assignable to type "Literal['supported_features', 'device_class', 'unit_of_measurement']" +     "Literal['max_humidity']" is not assignable to type "Literal['supported_features']" +     "Literal['max_humidity']" is not assignable to type "Literal['device_class']" +     "Literal['max_humidity']" is not assignable to type "Literal['unit_of_measurement']" +   Type "Literal['min_humidity']" is not assignable to type "Literal['supported_features', 'device_class', 'unit_of_measurement']" +     "Literal['min_humidity']" is not assignable to type "Literal['supported_features']" +     "Literal['min_humidity']" is not assignable to type "Literal['device_class']" +     "Literal['min_humidity']" is not assignable to type "Literal['unit_of_measurement']" (reportArgumentType) + /homeassistant/components/homekit/type_humidifiers.py:124:13 - error: Argument of type "Literal['HumidifierDehumidifier']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['HumidifierDehumidifier']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_humidifiers.py:124:43 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   Type "list[str]" is not assignable to type "Iterable[Characteristic] | None" +     "list[str]" is not assignable to "Iterable[Characteristic]" +       Type parameter "_T_co@Iterable" is covariant, but "str" is not a subtype of "Characteristic" +         "str" is not assignable to "Characteristic" +     "list[str]" is not assignable to "None" (reportArgumentType) +/homeassistant/components/homekit/type_lights.py + /homeassistant/components/homekit/type_lights.py:79:13 - error: Argument of type "tuple[Literal['supported_color_modes'], Literal['max_color_temp_kelvin'], Literal['min_color_temp_kelvin']]" cannot be assigned to parameter "iterable" of type "Iterable[Literal['supported_features', 'device_class', 'unit_of_measurement']]" in function "extend" +   Type "Literal['supported_color_modes']" is not assignable to type "Literal['supported_features', 'device_class', 'unit_of_measurement']" +     "Literal['supported_color_modes']" is not assignable to type "Literal['supported_features']" +     "Literal['supported_color_modes']" is not assignable to type "Literal['device_class']" +     "Literal['supported_color_modes']" is not assignable to type "Literal['unit_of_measurement']" +   Type "Literal['max_color_temp_kelvin']" is not assignable to type "Literal['supported_features', 'device_class', 'unit_of_measurement']" +     "Literal['max_color_temp_kelvin']" is not assignable to type "Literal['supported_features']" +     "Literal['max_color_temp_kelvin']" is not assignable to type "Literal['device_class']" +     "Literal['max_color_temp_kelvin']" is not assignable to type "Literal['unit_of_measurement']" (reportArgumentType) + /homeassistant/components/homekit/type_lights.py:114:47 - error: Argument of type "Literal['Lightbulb']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['Lightbulb']" is not assignable to "Service" (reportArgumentType) +/homeassistant/components/homekit/type_locks.py + /homeassistant/components/homekit/type_locks.py:70:56 - error: Argument of type "Literal['LockMechanism']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['LockMechanism']" is not assignable to "Service" (reportArgumentType) +/homeassistant/components/homekit/type_media_players.py + /homeassistant/components/homekit/type_media_players.py:105:17 - error: Argument of type "Literal['Switch']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['Switch']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_media_players.py:105:30 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   "Literal['ConfiguredName']" is not assignable to "Characteristic" +   "Literal['Name']" is not assignable to "Characteristic" (reportArgumentType) + /homeassistant/components/homekit/type_media_players.py:120:17 - error: Argument of type "Literal['Switch']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['Switch']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_media_players.py:121:17 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   "Literal['ConfiguredName']" is not assignable to "Characteristic" +   "Literal['Name']" is not assignable to "Characteristic" (reportArgumentType) + /homeassistant/components/homekit/type_media_players.py:137:17 - error: Argument of type "Literal['Switch']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['Switch']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_media_players.py:138:17 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   "Literal['ConfiguredName']" is not assignable to "Characteristic" +   "Literal['Name']" is not assignable to "Characteristic" (reportArgumentType) + /homeassistant/components/homekit/type_media_players.py:154:17 - error: Argument of type "Literal['Switch']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['Switch']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_media_players.py:155:17 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   "Literal['ConfiguredName']" is not assignable to "Characteristic" +   "Literal['Name']" is not assignable to "Characteristic" (reportArgumentType) + /homeassistant/components/homekit/type_media_players.py:287:17 - error: Argument of type "Literal['TelevisionSpeaker']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['TelevisionSpeaker']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_media_players.py:287:42 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   Type "list[str]" is not assignable to type "Iterable[Characteristic] | None" +     "list[str]" is not assignable to "Iterable[Characteristic]" +       Type parameter "_T_co@Iterable" is covariant, but "str" is not a subtype of "Characteristic" +         "str" is not assignable to "Characteristic" +     "list[str]" is not assignable to "None" (reportArgumentType) +/homeassistant/components/homekit/type_remotes.py + /homeassistant/components/homekit/type_remotes.py:97:46 - error: Argument of type "tuple[str]" cannot be assigned to parameter "iterable" of type "Iterable[Literal['supported_features', 'device_class', 'unit_of_measurement']]" in function "extend" +   Type "str" is not assignable to type "Literal['supported_features', 'device_class', 'unit_of_measurement']" +     "str" is not assignable to type "Literal['supported_features']" +     "str" is not assignable to type "Literal['device_class']" +     "str" is not assignable to type "Literal['unit_of_measurement']" (reportArgumentType) + /homeassistant/components/homekit/type_remotes.py:118:13 - error: Argument of type "Literal['Television']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['Television']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_remotes.py:118:30 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   Type "list[str]" is not assignable to type "Iterable[Characteristic] | None" +     "list[str]" is not assignable to "Iterable[Characteristic]" +       Type parameter "_T_co@Iterable" is covariant, but "str" is not a subtype of "Characteristic" +         "str" is not assignable to "Characteristic" +     "list[str]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/homekit/type_remotes.py:138:17 - error: Argument of type "Literal['InputSource']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['InputSource']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_remotes.py:138:36 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   "Literal['Identifier']" is not assignable to "Characteristic" +   "Literal['Name']" is not assignable to "Characteristic" (reportArgumentType) +/homeassistant/components/homekit/type_security_systems.py + /homeassistant/components/homekit/type_security_systems.py:97:47 - error: Argument of type "Literal['SecuritySystem']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['SecuritySystem']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_security_systems.py:126:56 - error: "items" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/homekit/type_security_systems.py:135:57 - error: "items" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/homekit/type_sensors.py + /homeassistant/components/homekit/type_sensors.py:123:46 - error: Argument of type "Literal['TemperatureSensor']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['TemperatureSensor']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_sensors.py:154:50 - error: Argument of type "Literal['HumiditySensor']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['HumiditySensor']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_sensors.py:188:13 - error: Argument of type "Literal['AirQualitySensor']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['AirQualitySensor']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_sensors.py:188:39 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   "Literal['AirParticulateDensity']" is not assignable to "Characteristic" (reportArgumentType) + /homeassistant/components/homekit/type_sensors.py:214:13 - error: Argument of type "Literal['AirQualitySensor']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['AirQualitySensor']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_sensors.py:214:39 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   "Literal['PM10Density']" is not assignable to "Characteristic" (reportArgumentType) + /homeassistant/components/homekit/type_sensors.py:241:13 - error: Argument of type "Literal['AirQualitySensor']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['AirQualitySensor']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_sensors.py:241:39 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   "Literal['PM2.5Density']" is not assignable to "Characteristic" (reportArgumentType) + /homeassistant/components/homekit/type_sensors.py:268:13 - error: Argument of type "Literal['AirQualitySensor']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['AirQualitySensor']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_sensors.py:268:39 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   "Literal['NitrogenDioxideDensity']" is not assignable to "Characteristic" (reportArgumentType) + /homeassistant/components/homekit/type_sensors.py:300:13 - error: Argument of type "Literal['AirQualitySensor']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['AirQualitySensor']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_sensors.py:300:39 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   "Literal['VOCDensity']" is not assignable to "Characteristic" (reportArgumentType) + /homeassistant/components/homekit/type_sensors.py:337:13 - error: Argument of type "Literal['CarbonMonoxideSensor']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['CarbonMonoxideSensor']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_sensors.py:338:13 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   "Literal['CarbonMonoxideLevel']" is not assignable to "Characteristic" +   "Literal['CarbonMonoxidePeakLevel']" is not assignable to "Characteristic" (reportArgumentType) + /homeassistant/components/homekit/type_sensors.py:377:13 - error: Argument of type "Literal['CarbonDioxideSensor']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['CarbonDioxideSensor']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_sensors.py:378:13 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   "Literal['CarbonDioxideLevel']" is not assignable to "Characteristic" +   "Literal['CarbonDioxidePeakLevel']" is not assignable to "Characteristic" (reportArgumentType) + /homeassistant/components/homekit/type_sensors.py:416:47 - error: Argument of type "Literal['LightSensor']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['LightSensor']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_sensors.py:449:44 - error: Argument of type "str" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "str" is not assignable to "Service" (reportArgumentType) +/homeassistant/components/homekit/type_switches.py + /homeassistant/components/homekit/type_switches.py:130:48 - error: Argument of type "Literal['Outlet']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['Outlet']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_switches.py:169:48 - error: Argument of type "Literal['Switch']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['Switch']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_switches.py:252:14 - error: Cannot access attribute "char_on" for class "Vacuum*" +   Attribute "char_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homekit/type_switches.py:275:14 - error: Cannot access attribute "char_on" for class "LawnMower*" +   Attribute "char_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homekit/type_switches.py:315:47 - error: Argument of type "Literal['Valve']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['Valve']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_switches.py:522:17 - error: Argument of type "Literal['Outlet']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['Outlet']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_switches.py:523:17 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   "Literal['Name']" is not assignable to "Characteristic" +   "Literal['ConfiguredName']" is not assignable to "Characteristic" +   "Literal['InUse']" is not assignable to "Characteristic" (reportArgumentType) + /homeassistant/components/homekit/type_switches.py:535:34 - error: Argument of type "Characteristic" cannot be assigned to parameter "primary_service" of type "Service" in function "set_primary_service" +   "Characteristic" is not assignable to "Service" (reportArgumentType) +/homeassistant/components/homekit/type_thermostats.py + /homeassistant/components/homekit/type_thermostats.py:201:13 - error: Argument of type "tuple[Literal['min_humidity'], Literal['max_temp'], Literal['min_temp'], Literal['fan_modes'], Literal['hvac_modes']]" cannot be assigned to parameter "iterable" of type "Iterable[Literal['supported_features', 'device_class', 'unit_of_measurement']]" in function "extend" +   Type "Literal['min_humidity']" is not assignable to type "Literal['supported_features', 'device_class', 'unit_of_measurement']" +     "Literal['min_humidity']" is not assignable to type "Literal['supported_features']" +     "Literal['min_humidity']" is not assignable to type "Literal['device_class']" +     "Literal['min_humidity']" is not assignable to type "Literal['unit_of_measurement']" +   Type "Literal['max_temp']" is not assignable to type "Literal['supported_features', 'device_class', 'unit_of_measurement']" +     "Literal['max_temp']" is not assignable to type "Literal['supported_features']" +     "Literal['max_temp']" is not assignable to type "Literal['device_class']" +     "Literal['max_temp']" is not assignable to type "Literal['unit_of_measurement']" (reportArgumentType) + /homeassistant/components/homekit/type_thermostats.py:235:52 - error: Argument of type "Literal['Thermostat']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['Thermostat']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_thermostats.py:235:69 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   Type "list[str]" is not assignable to type "Iterable[Characteristic] | None" +     "list[str]" is not assignable to "Iterable[Characteristic]" +       Type parameter "_T_co@Iterable" is covariant, but "str" is not a subtype of "Characteristic" +         "str" is not assignable to "Characteristic" +     "list[str]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/homekit/type_thermostats.py:252:26 - error: Argument of type "dict[HVACMode, int]" cannot be assigned to parameter "valid_values" of type "Dict[str, Any] | None" in function "override_properties" +   Type "dict[HVACMode, int]" is not assignable to type "Dict[str, Any] | None" +     "dict[HVACMode, int]" is not assignable to "Dict[str, Any]" +       Type parameter "_KT@dict" is invariant, but "HVACMode" is not the same as "str" +     "dict[HVACMode, int]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/homekit/type_thermostats.py:349:49 - error: Argument of type "Literal['Fanv2']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['Fanv2']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_thermostats.py:349:61 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   Type "list[str]" is not assignable to type "Iterable[Characteristic] | None" +     "list[str]" is not assignable to "Iterable[Characteristic]" +       Type parameter "_T_co@Iterable" is covariant, but "str" is not a subtype of "Characteristic" +         "str" is not assignable to "Characteristic" +     "list[str]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/homekit/type_thermostats.py:745:13 - error: Argument of type "tuple[Literal['max_temp'], Literal['min_temp']]" cannot be assigned to parameter "iterable" of type "Iterable[Literal['supported_features', 'device_class', 'unit_of_measurement']]" in function "extend" +   Type "Literal['max_temp']" is not assignable to type "Literal['supported_features', 'device_class', 'unit_of_measurement']" +     "Literal['max_temp']" is not assignable to type "Literal['supported_features']" +     "Literal['max_temp']" is not assignable to type "Literal['device_class']" +     "Literal['max_temp']" is not assignable to type "Literal['unit_of_measurement']" +   Type "Literal['min_temp']" is not assignable to type "Literal['supported_features', 'device_class', 'unit_of_measurement']" +     "Literal['min_temp']" is not assignable to type "Literal['supported_features']" +     "Literal['min_temp']" is not assignable to type "Literal['device_class']" +     "Literal['min_temp']" is not assignable to type "Literal['unit_of_measurement']" (reportArgumentType) + /homeassistant/components/homekit/type_thermostats.py:755:52 - error: Argument of type "Literal['Thermostat']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['Thermostat']" is not assignable to "Service" (reportArgumentType) +/homeassistant/components/homekit/type_triggers.py + /homeassistant/components/homekit/type_triggers.py:69:17 - error: Argument of type "Literal['StatelessProgrammableSwitch']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['StatelessProgrammableSwitch']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_triggers.py:70:17 - error: Argument of type "list[str]" cannot be assigned to parameter "chars" of type "Iterable[Characteristic] | None" in function "add_preload_service" +   "Literal['Name']" is not assignable to "Characteristic" +   "Literal['ConfiguredName']" is not assignable to "Characteristic" +   "Literal['ServiceLabelIndex']" is not assignable to "Characteristic" (reportArgumentType) + /homeassistant/components/homekit/type_triggers.py:88:17 - error: Argument of type "Literal['ServiceLabel']" cannot be assigned to parameter "service" of type "Service" in function "add_preload_service" +   "Literal['ServiceLabel']" is not assignable to "Service" (reportArgumentType) + /homeassistant/components/homekit/type_triggers.py:107:13 - error: Argument of type "str | None" cannot be assigned to parameter "name" of type "str" in function "async_initialize_triggers" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/homekit_controller/__init__.py + /homeassistant/components/homekit_controller/__init__.py:136:27 - error: Could not access item in TypedDict +   "identifiers" is not a required key in "DeviceInfo", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/homekit_controller/alarm_control_panel.py + /homeassistant/components/homekit_controller/alarm_control_panel.py:64:7 - error: Base classes for class "HomeKitAlarmControlPanelEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/alarm_control_panel.py:64:7 - error: Base classes for class "HomeKitAlarmControlPanelEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/alarm_control_panel.py:64:7 - error: Base classes for class "HomeKitAlarmControlPanelEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/alarm_control_panel.py:83:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/alarm_control_panel.py:114:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homekit_controller/binary_sensor.py + /homeassistant/components/homekit_controller/binary_sensor.py:22:7 - error: Base classes for class "HomeKitMotionSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:22:7 - error: Base classes for class "HomeKitMotionSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:22:7 - error: Base classes for class "HomeKitMotionSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:32:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:37:7 - error: Base classes for class "HomeKitContactSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:37:7 - error: Base classes for class "HomeKitContactSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:37:7 - error: Base classes for class "HomeKitContactSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:47:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:52:7 - error: Base classes for class "HomeKitSmokeSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:52:7 - error: Base classes for class "HomeKitSmokeSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:52:7 - error: Base classes for class "HomeKitSmokeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:62:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:67:7 - error: Base classes for class "HomeKitCarbonMonoxideSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:67:7 - error: Base classes for class "HomeKitCarbonMonoxideSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:67:7 - error: Base classes for class "HomeKitCarbonMonoxideSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:77:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:82:7 - error: Base classes for class "HomeKitOccupancySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:82:7 - error: Base classes for class "HomeKitOccupancySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:82:7 - error: Base classes for class "HomeKitOccupancySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:92:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:97:7 - error: Base classes for class "HomeKitLeakSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:97:7 - error: Base classes for class "HomeKitLeakSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:97:7 - error: Base classes for class "HomeKitLeakSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:107:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:112:7 - error: Base classes for class "HomeKitBatteryLowSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:112:7 - error: Base classes for class "HomeKitBatteryLowSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:123:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/binary_sensor.py:130:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homekit_controller/button.py + /homeassistant/components/homekit_controller/button.py:104:7 - error: Base classes for class "BaseHomeKitButton" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/button.py:104:7 - error: Base classes for class "BaseHomeKitButton" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/button.py:104:7 - error: Base classes for class "BaseHomeKitButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/button.py:121:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "HomeKitButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/homekit_controller/camera.py + /homeassistant/components/homekit_controller/camera.py:19:7 - error: Base classes for class "HomeKitCamera" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/camera.py:19:7 - error: Base classes for class "HomeKitCamera" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/homekit_controller/climate.py + /homeassistant/components/homekit_controller/climate.py:135:7 - error: Base classes for class "HomeKitBaseClimateEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:135:7 - error: Base classes for class "HomeKitBaseClimateEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:135:7 - error: Base classes for class "HomeKitBaseClimateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:154:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:166:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:297:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:311:9 - error: "target_temperature_step" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:331:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:355:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:379:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:393:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:421:9 - error: "swing_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:546:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:558:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:570:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:582:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:604:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:626:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:631:9 - error: "target_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:636:9 - error: "min_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:646:9 - error: "max_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:656:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/climate.py:685:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homekit_controller/config_flow.py + /homeassistant/components/homekit_controller/config_flow.py:338:9 - error: Method "is_matching" overrides class "ConfigFlow" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "ConfigFlow", override parameter is type "HomekitControllerFlowHandler" +     "ConfigFlow" is not assignable to "HomekitControllerFlowHandler" (reportIncompatibleMethodOverride) +/homeassistant/components/homekit_controller/cover.py + /homeassistant/components/homekit_controller/cover.py:75:7 - error: Base classes for class "HomeKitGarageDoorCover" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/cover.py:75:7 - error: Base classes for class "HomeKitGarageDoorCover" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/cover.py:75:7 - error: Base classes for class "HomeKitGarageDoorCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/cover.py:96:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/cover.py:101:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/cover.py:106:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/cover.py:125:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/cover.py:133:7 - error: Base classes for class "HomeKitWindowCover" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/cover.py:133:7 - error: Base classes for class "HomeKitWindowCover" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/cover.py:133:7 - error: Base classes for class "HomeKitWindowCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/cover.py:157:9 - error: "supported_features" incorrectly overrides property of same name in class "CoverEntity" (reportIncompatibleMethodOverride) + /homeassistant/components/homekit_controller/cover.py:180:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/cover.py:185:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/cover.py:190:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/cover.py:197:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/cover.py:218:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/cover.py:276:21 - error: "char" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/homekit_controller/cover.py:277:21 - error: "char" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/homekit_controller/cover.py:293:47 - error: "char" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/homekit_controller/cover.py:296:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homekit_controller/diagnostics.py + /homeassistant/components/homekit_controller/diagnostics.py:117:20 - error: Could not access item in TypedDict +   "type" is not a required key in "Characteristic", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/homekit_controller/entity.py + /homeassistant/components/homekit_controller/entity.py:210:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/entity.py:230:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/entity.py:239:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homekit_controller/event.py + /homeassistant/components/homekit_controller/event.py:30:7 - error: Base classes for class "HomeKitEventEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/event.py:30:7 - error: Base classes for class "HomeKitEventEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/event.py:30:7 - error: Base classes for class "HomeKitEventEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/homekit_controller/fan.py + /homeassistant/components/homekit_controller/fan.py:45:7 - error: Base classes for class "BaseHomeKitFan" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/fan.py:45:7 - error: Base classes for class "BaseHomeKitFan" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/fan.py:45:7 - error: Base classes for class "BaseHomeKitFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/fan.py:105:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/fan.py:115:9 - error: "current_direction" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/fan.py:121:9 - error: "oscillating" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/fan.py:159:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homekit_controller/humidifier.py + /homeassistant/components/homekit_controller/humidifier.py:44:7 - error: Base classes for class "HomeKitBaseHumidifier" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/humidifier.py:44:7 - error: Base classes for class "HomeKitBaseHumidifier" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/humidifier.py:44:7 - error: Base classes for class "HomeKitBaseHumidifier" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/humidifier.py:59:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/humidifier.py:64:9 - error: "mode" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/humidifier.py:75:9 - error: "current_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/humidifier.py:80:9 - error: "target_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homekit_controller/light.py + /homeassistant/components/homekit_controller/light.py:55:7 - error: Base classes for class "HomeKitLight" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/light.py:55:7 - error: Base classes for class "HomeKitLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/light.py:55:7 - error: Base classes for class "HomeKitLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/light.py:85:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/light.py:90:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/light.py:95:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/light.py:103:9 - error: "max_color_temp_kelvin" incorrectly overrides property of same name in class "LightEntity" (reportIncompatibleMethodOverride) + /homeassistant/components/homekit_controller/light.py:115:9 - error: "min_color_temp_kelvin" incorrectly overrides property of same name in class "LightEntity" (reportIncompatibleMethodOverride) + /homeassistant/components/homekit_controller/light.py:134:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homekit_controller/lock.py + /homeassistant/components/homekit_controller/lock.py:56:7 - error: Base classes for class "HomeKitLock" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/lock.py:56:7 - error: Base classes for class "HomeKitLock" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/lock.py:56:7 - error: Base classes for class "HomeKitLock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/lock.py:68:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/lock.py:76:9 - error: "is_locking" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/lock.py:90:9 - error: "is_unlocking" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/lock.py:104:9 - error: "is_jammed" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/lock.py:128:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homekit_controller/media_player.py + /homeassistant/components/homekit_controller/media_player.py:65:7 - error: Base classes for class "HomeKitTelevision" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/media_player.py:65:7 - error: Base classes for class "HomeKitTelevision" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/media_player.py:65:7 - error: Base classes for class "HomeKitTelevision" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/media_player.py:84:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/media_player.py:84:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/media_player.py:131:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/media_player.py:149:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/media_player.py:168:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/media_player.py:168:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homekit_controller/number.py + /homeassistant/components/homekit_controller/number.py:98:7 - error: Base classes for class "HomeKitNumber" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/number.py:98:7 - error: Base classes for class "HomeKitNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/number.py:113:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/number.py:124:9 - error: "native_min_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/number.py:129:9 - error: "native_max_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/number.py:134:9 - error: "native_step" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/number.py:139:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homekit_controller/select.py + /homeassistant/components/homekit_controller/select.py:65:7 - error: Base classes for class "BaseHomeKitSelect" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/select.py:65:7 - error: Base classes for class "BaseHomeKitSelect" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/select.py:65:7 - error: Base classes for class "BaseHomeKitSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/select.py:82:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "HomeKitSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/select.py:105:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/select.py:136:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homekit_controller/sensor.py + /homeassistant/components/homekit_controller/sensor.py:370:7 - error: Base classes for class "HomeKitSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/sensor.py:370:7 - error: Base classes for class "HomeKitSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/sensor.py:376:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/sensor.py:405:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/sensor.py:426:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/sensor.py:447:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/sensor.py:468:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/sensor.py:494:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/sensor.py:531:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/sensor.py:536:7 - error: Base classes for class "SimpleSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/sensor.py:536:7 - error: Base classes for class "SimpleSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/sensor.py:556:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "HomeKitSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/sensor.py:556:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "HomeKitSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/sensor.py:566:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/sensor.py:573:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/sensor.py:596:7 - error: Base classes for class "RSSISensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/sensor.py:616:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/sensor.py:622:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/sensor.py:633:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/homekit_controller/switch.py + /homeassistant/components/homekit_controller/switch.py:76:7 - error: Base classes for class "HomeKitSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:76:7 - error: Base classes for class "HomeKitSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:76:7 - error: Base classes for class "HomeKitSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:84:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:97:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:105:7 - error: Base classes for class "HomeKitFaucet" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:105:7 - error: Base classes for class "HomeKitFaucet" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:105:7 - error: Base classes for class "HomeKitFaucet" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:113:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:126:7 - error: Base classes for class "HomeKitValve" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:126:7 - error: Base classes for class "HomeKitValve" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:126:7 - error: Base classes for class "HomeKitValve" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:149:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:154:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:173:7 - error: Base classes for class "DeclarativeCharacteristicSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:173:7 - error: Base classes for class "DeclarativeCharacteristicSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:184:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DeclarativeSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:184:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "DeclarativeSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:188:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homekit_controller/switch.py:199:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homematic/__init__.py + /homeassistant/components/homematic/__init__.py:250:24 - error: Argument of type "partial[Unknown]" cannot be assigned to parameter "systemcallback" of type "bool" in function "__init__" +   "partial[Unknown]" is not assignable to "bool" (reportArgumentType) + /homeassistant/components/homematic/__init__.py:378:47 - error: Argument of type "Any | None" cannot be assigned to parameter "t" of type "int" in function "setInstallMode" +   Type "Any | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/homematic/__init__.py:378:58 - error: Argument of type "Any | None" cannot be assigned to parameter "mode" of type "int" in function "setInstallMode" +   Type "Any | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) +/homeassistant/components/homematic/binary_sensor.py + /homeassistant/components/homematic/binary_sensor.py:58:7 - error: Base classes for class "HMBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/binary_sensor.py:58:7 - error: Base classes for class "HMBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/binary_sensor.py:58:7 - error: Base classes for class "HMBinarySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/binary_sensor.py:58:7 - error: Base classes for class "HMBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/binary_sensor.py:62:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/binary_sensor.py:69:9 - error: "device_class" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/binary_sensor.py:69:9 - error: "device_class" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[BinarySensorDeviceClass | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/binary_sensor.py:83:7 - error: Base classes for class "HMBatterySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/binary_sensor.py:83:7 - error: Base classes for class "HMBatterySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/binary_sensor.py:83:7 - error: Base classes for class "HMBatterySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/binary_sensor.py:83:7 - error: Base classes for class "HMBatterySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/binary_sensor.py:89:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homematic/climate.py + /homeassistant/components/homematic/climate.py:56:7 - error: Base classes for class "HMThermostat" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/climate.py:56:7 - error: Base classes for class "HMThermostat" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/climate.py:56:7 - error: Base classes for class "HMThermostat" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/climate.py:56:7 - error: Base classes for class "HMThermostat" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/climate.py:73:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/climate.py:78:54 - error: Cannot access attribute "OFF_VALUE" for class "HMGeneric" +   Attribute "OFF_VALUE" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/climate.py:80:42 - error: Cannot access attribute "ACTIONNODE" for class "HMGeneric" +   Attribute "ACTIONNODE" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/climate.py:81:56 - error: Cannot access attribute "MANU_MODE" for class "HMGeneric" +   Attribute "MANU_MODE" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/climate.py:91:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/climate.py:96:42 - error: Cannot access attribute "ACTIONNODE" for class "HMGeneric" +   Attribute "ACTIONNODE" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/climate.py:101:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/climate.py:118:9 - error: "preset_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/climate.py:122:40 - error: Cannot access attribute "ACTIONNODE" for class "HMGeneric" +   Attribute "ACTIONNODE" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/climate.py:127:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/climate.py:135:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/climate.py:143:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/climate.py:152:24 - error: Cannot access attribute "writeNodeData" for class "HMGeneric" +   Attribute "writeNodeData" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/climate.py:157:28 - error: Cannot assign to attribute "MODE" for class "HMGeneric" +   Attribute "MODE" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/climate.py:157:50 - error: Cannot access attribute "AUTO_MODE" for class "HMGeneric" +   Attribute "AUTO_MODE" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/climate.py:159:28 - error: Cannot assign to attribute "MODE" for class "HMGeneric" +   Attribute "MODE" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/climate.py:159:50 - error: Cannot access attribute "MANU_MODE" for class "HMGeneric" +   Attribute "MANU_MODE" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/climate.py:161:28 - error: Cannot access attribute "turnoff" for class "HMGeneric" +   Attribute "turnoff" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/climate.py:166:28 - error: Cannot assign to attribute "MODE" for class "HMGeneric" +   Attribute "MODE" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/climate.py:166:50 - error: Cannot access attribute "BOOST_MODE" for class "HMGeneric" +   Attribute "BOOST_MODE" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/climate.py:168:28 - error: Cannot assign to attribute "MODE" for class "HMGeneric" +   Attribute "MODE" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/climate.py:168:50 - error: Cannot access attribute "COMFORT_MODE" for class "HMGeneric" +   Attribute "COMFORT_MODE" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/climate.py:170:28 - error: Cannot assign to attribute "MODE" for class "HMGeneric" +   Attribute "MODE" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/climate.py:170:50 - error: Cannot access attribute "LOWERING_MODE" for class "HMGeneric" +   Attribute "LOWERING_MODE" is unknown (reportAttributeAccessIssue) +/homeassistant/components/homematic/cover.py + /homeassistant/components/homematic/cover.py:43:7 - error: Base classes for class "HMCover" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/cover.py:43:7 - error: Base classes for class "HMCover" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/cover.py:43:7 - error: Base classes for class "HMCover" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/cover.py:43:7 - error: Base classes for class "HMCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/cover.py:47:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/cover.py:60:28 - error: Cannot access attribute "set_level" for class "HMGeneric" +   Attribute "set_level" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/cover.py:63:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/cover.py:71:24 - error: Cannot access attribute "move_up" for class "HMGeneric" +   Attribute "move_up" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/cover.py:75:24 - error: Cannot access attribute "move_down" for class "HMGeneric" +   Attribute "move_down" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/cover.py:79:24 - error: Cannot access attribute "stop" for class "HMGeneric" +   Attribute "stop" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/cover.py:89:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/cover.py:104:28 - error: Cannot access attribute "set_cover_tilt_position" for class "HMGeneric" +   Attribute "set_cover_tilt_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/cover.py:109:28 - error: Cannot access attribute "open_slats" for class "HMGeneric" +   Attribute "open_slats" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/cover.py:114:28 - error: Cannot access attribute "close_slats" for class "HMGeneric" +   Attribute "close_slats" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/cover.py:139:31 - error: Cannot access attribute "is_closed" for class "HMGeneric" +   Attribute "is_closed" is unknown (reportAttributeAccessIssue) +/homeassistant/components/homematic/entity.py + /homeassistant/components/homematic/entity.py:71:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/entity.py:76:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/entity.py:81:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/entity.py:86:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/entity.py:119:50 - error: Cannot access attribute "UNREACH" for class "HMGeneric" +   Attribute "UNREACH" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/entity.py:233:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/entity.py:238:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/entity.py:243:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/entity.py:248:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homematic/light.py + /homeassistant/components/homematic/light.py:47:7 - error: Base classes for class "HMLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/light.py:47:7 - error: Base classes for class "HMLight" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/light.py:47:7 - error: Base classes for class "HMLight" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/light.py:47:7 - error: Base classes for class "HMLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/light.py:54:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/light.py:62:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/light.py:70:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/light.py:72:38 - error: Cannot access attribute "WRITENODE" for class "HMGeneric" +   Attribute "WRITENODE" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/light.py:79:9 - error: "supported_color_modes" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[set[ColorMode] | set[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/light.py:83:38 - error: Cannot access attribute "WRITENODE" for class "HMGeneric" +   Attribute "WRITENODE" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/light.py:93:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/light.py:93:9 - error: "supported_features" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[LightEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/light.py:96:40 - error: Cannot access attribute "WRITENODE" for class "HMGeneric" +   Attribute "WRITENODE" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/light.py:101:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/light.py:113:40 - error: Cannot access attribute "get_color_temp" for class "HMGeneric" +   Attribute "get_color_temp" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/light.py:119:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/light.py:126:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/light.py:135:28 - error: Cannot access attribute "setValue" for class "HMGeneric" +   Attribute "setValue" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/light.py:139:28 - error: Cannot access attribute "set_level" for class "HMGeneric" +   Attribute "set_level" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/light.py:145:28 - error: Cannot access attribute "on" for class "HMGeneric" +   Attribute "on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/light.py:148:28 - error: Cannot access attribute "set_hs_color" for class "HMGeneric" +   Attribute "set_hs_color" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/light.py:158:28 - error: Cannot access attribute "set_color_temp" for class "HMGeneric" +   Attribute "set_color_temp" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/light.py:160:28 - error: Cannot access attribute "set_effect" for class "HMGeneric" +   Attribute "set_effect" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/light.py:165:28 - error: Cannot access attribute "setValue" for class "HMGeneric" +   Attribute "setValue" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/light.py:167:24 - error: Cannot access attribute "off" for class "HMGeneric" +   Attribute "off" is unknown (reportAttributeAccessIssue) +/homeassistant/components/homematic/lock.py + /homeassistant/components/homematic/lock.py:29:7 - error: Base classes for class "HMLock" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/lock.py:29:7 - error: Base classes for class "HMLock" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/lock.py:29:7 - error: Base classes for class "HMLock" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/lock.py:29:7 - error: Base classes for class "HMLock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/lock.py:35:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/lock.py:41:24 - error: Cannot access attribute "lock" for class "HMGeneric" +   Attribute "lock" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/lock.py:45:24 - error: Cannot access attribute "unlock" for class "HMGeneric" +   Attribute "unlock" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/lock.py:49:24 - error: Cannot access attribute "open" for class "HMGeneric" +   Attribute "open" is unknown (reportAttributeAccessIssue) +/homeassistant/components/homematic/sensor.py + /homeassistant/components/homematic/sensor.py:328:7 - error: Base classes for class "HMSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/sensor.py:328:7 - error: Base classes for class "HMSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/sensor.py:328:7 - error: Base classes for class "HMSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/sensor.py:328:7 - error: Base classes for class "HMSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/sensor.py:332:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/homematic/switch.py + /homeassistant/components/homematic/switch.py:34:7 - error: Base classes for class "HMSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/switch.py:34:7 - error: Base classes for class "HMSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/switch.py:34:7 - error: Base classes for class "HMSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/switch.py:34:7 - error: Base classes for class "HMSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/switch.py:38:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematic/switch.py:58:24 - error: Cannot access attribute "on" for class "HMGeneric" +   Attribute "on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematic/switch.py:62:24 - error: Cannot access attribute "off" for class "HMGeneric" +   Attribute "off" is unknown (reportAttributeAccessIssue) +/homeassistant/components/homematicip_cloud/__init__.py + /homeassistant/components/homematicip_cloud/__init__.py:99:20 - error: Cannot access attribute "label" for class "AsyncHome" +   Attribute "label" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/__init__.py:99:34 - error: Cannot access attribute "label" for class "AsyncHome" +   Attribute "label" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/__init__.py:99:77 - error: Cannot access attribute "label" for class "AsyncHome" +   Attribute "label" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/__init__.py:103:31 - error: Argument of type "set[tuple[Literal['homematicip_cloud'], Any | None]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]] | UndefinedType | None" in function "async_get_or_create" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/homematicip_cloud/__init__.py:128:8 - error: Operator "<" not supported for "None" (reportOptionalOperand) +/homeassistant/components/homematicip_cloud/alarm_control_panel.py + /homeassistant/components/homematicip_cloud/alarm_control_panel.py:51:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/alarm_control_panel.py:58:33 - error: Argument of type "tuple[Literal['homematicip_cloud'], Any | None]" cannot be assigned to parameter "via_device" of type "tuple[str, str]" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/homematicip_cloud/alarm_control_panel.py:62:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/alarm_control_panel.py:80:16 - error: Type "FunctionalHome | None" is not assignable to return type "SecurityAndAlarmHome" +   Type "FunctionalHome | None" is not assignable to type "SecurityAndAlarmHome" +     "FunctionalHome" is not assignable to "SecurityAndAlarmHome" (reportReturnType) + /homeassistant/components/homematicip_cloud/alarm_control_panel.py:115:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/alarm_control_panel.py:118:23 - error: Cannot access attribute "name" for class "AsyncHome" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/alarm_control_panel.py:119:34 - error: Cannot access attribute "name" for class "AsyncHome" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/alarm_control_panel.py:123:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/alarm_control_panel.py:125:16 - error: Type "Any | None" is not assignable to return type "bool" +   Type "Any | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportReturnType) + /homeassistant/components/homematicip_cloud/alarm_control_panel.py:128:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homematicip_cloud/binary_sensor.py + /homeassistant/components/homematicip_cloud/binary_sensor.py:143:7 - error: Base classes for class "HomematicipCloudConnectionSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:143:7 - error: Base classes for class "HomematicipCloudConnectionSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:151:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:156:39 - error: Cannot access attribute "name" for class "AsyncHome" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/binary_sensor.py:156:63 - error: Cannot access attribute "name" for class "AsyncHome" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/binary_sensor.py:159:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:165:26 - error: Argument of type "set[tuple[Literal['homematicip_cloud'], Any | None]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]]" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/homematicip_cloud/binary_sensor.py:170:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:179:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:181:16 - error: Type "Any | None" is not assignable to return type "bool" +   Type "Any | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportReturnType) + /homeassistant/components/homematicip_cloud/binary_sensor.py:184:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:189:7 - error: Base classes for class "HomematicipBaseActionSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:189:7 - error: Base classes for class "HomematicipBaseActionSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:189:7 - error: Base classes for class "HomematicipBaseActionSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:189:7 - error: Base classes for class "HomematicipBaseActionSensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:189:7 - error: Base classes for class "HomematicipBaseActionSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:195:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:200:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:219:7 - error: Base classes for class "HomematicipMultiContactInterface" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:219:7 - error: Base classes for class "HomematicipMultiContactInterface" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:219:7 - error: Base classes for class "HomematicipMultiContactInterface" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:219:7 - error: Base classes for class "HomematicipMultiContactInterface" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:219:7 - error: Base classes for class "HomematicipMultiContactInterface" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:219:7 - error: Base classes for class "HomematicipMultiContactInterface" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:237:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:247:7 - error: Base classes for class "HomematicipContactInterface" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:247:7 - error: Base classes for class "HomematicipContactInterface" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:247:7 - error: Base classes for class "HomematicipContactInterface" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:247:7 - error: Base classes for class "HomematicipContactInterface" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:247:7 - error: Base classes for class "HomematicipContactInterface" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:247:7 - error: Base classes for class "HomematicipContactInterface" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:247:7 - error: Base classes for class "HomematicipContactInterface" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:255:7 - error: Base classes for class "HomematicipShutterContact" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:255:7 - error: Base classes for class "HomematicipShutterContact" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:255:7 - error: Base classes for class "HomematicipShutterContact" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:255:7 - error: Base classes for class "HomematicipShutterContact" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:255:7 - error: Base classes for class "HomematicipShutterContact" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:255:7 - error: Base classes for class "HomematicipShutterContact" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:268:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:280:7 - error: Base classes for class "HomematicipMotionDetector" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:280:7 - error: Base classes for class "HomematicipMotionDetector" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:280:7 - error: Base classes for class "HomematicipMotionDetector" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:280:7 - error: Base classes for class "HomematicipMotionDetector" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:280:7 - error: Base classes for class "HomematicipMotionDetector" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:280:7 - error: Base classes for class "HomematicipMotionDetector" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:286:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:291:7 - error: Base classes for class "HomematicipPresenceDetector" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:291:7 - error: Base classes for class "HomematicipPresenceDetector" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:291:7 - error: Base classes for class "HomematicipPresenceDetector" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:291:7 - error: Base classes for class "HomematicipPresenceDetector" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:291:7 - error: Base classes for class "HomematicipPresenceDetector" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:291:7 - error: Base classes for class "HomematicipPresenceDetector" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:297:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:302:7 - error: Base classes for class "HomematicipSmokeDetector" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:302:7 - error: Base classes for class "HomematicipSmokeDetector" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:302:7 - error: Base classes for class "HomematicipSmokeDetector" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:302:7 - error: Base classes for class "HomematicipSmokeDetector" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:302:7 - error: Base classes for class "HomematicipSmokeDetector" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:302:7 - error: Base classes for class "HomematicipSmokeDetector" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:308:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:318:7 - error: Base classes for class "HomematicipWaterDetector" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:318:7 - error: Base classes for class "HomematicipWaterDetector" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:318:7 - error: Base classes for class "HomematicipWaterDetector" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:318:7 - error: Base classes for class "HomematicipWaterDetector" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:318:7 - error: Base classes for class "HomematicipWaterDetector" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:318:7 - error: Base classes for class "HomematicipWaterDetector" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:324:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:329:7 - error: Base classes for class "HomematicipStormSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:329:7 - error: Base classes for class "HomematicipStormSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:329:7 - error: Base classes for class "HomematicipStormSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:329:7 - error: Base classes for class "HomematicipStormSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:329:7 - error: Base classes for class "HomematicipStormSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:337:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:342:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:347:7 - error: Base classes for class "HomematicipRainSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:347:7 - error: Base classes for class "HomematicipRainSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:347:7 - error: Base classes for class "HomematicipRainSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:347:7 - error: Base classes for class "HomematicipRainSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:347:7 - error: Base classes for class "HomematicipRainSensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:347:7 - error: Base classes for class "HomematicipRainSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:357:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:362:7 - error: Base classes for class "HomematicipSunshineSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:362:7 - error: Base classes for class "HomematicipSunshineSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:362:7 - error: Base classes for class "HomematicipSunshineSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:362:7 - error: Base classes for class "HomematicipSunshineSensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:362:7 - error: Base classes for class "HomematicipSunshineSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:372:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:377:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:388:7 - error: Base classes for class "HomematicipBatterySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:388:7 - error: Base classes for class "HomematicipBatterySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:388:7 - error: Base classes for class "HomematicipBatterySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:388:7 - error: Base classes for class "HomematicipBatterySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:388:7 - error: Base classes for class "HomematicipBatterySensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:388:7 - error: Base classes for class "HomematicipBatterySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:398:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:403:7 - error: Base classes for class "HomematicipPluggableMainsFailureSurveillanceSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:403:7 - error: Base classes for class "HomematicipPluggableMainsFailureSurveillanceSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:403:7 - error: Base classes for class "HomematicipPluggableMainsFailureSurveillanceSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:403:7 - error: Base classes for class "HomematicipPluggableMainsFailureSurveillanceSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:403:7 - error: Base classes for class "HomematicipPluggableMainsFailureSurveillanceSensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:403:7 - error: Base classes for class "HomematicipPluggableMainsFailureSurveillanceSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:415:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:420:7 - error: Base classes for class "HomematicipSecurityZoneSensorGroup" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:420:7 - error: Base classes for class "HomematicipSecurityZoneSensorGroup" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:420:7 - error: Base classes for class "HomematicipSecurityZoneSensorGroup" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:420:7 - error: Base classes for class "HomematicipSecurityZoneSensorGroup" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:431:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:438:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:453:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:471:7 - error: Base classes for class "HomematicipSecuritySensorGroup" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:471:7 - error: Base classes for class "HomematicipSecuritySensorGroup" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:471:7 - error: Base classes for class "HomematicipSecuritySensorGroup" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:471:7 - error: Base classes for class "HomematicipSecuritySensorGroup" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:471:7 - error: Base classes for class "HomematicipSecuritySensorGroup" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:481:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/binary_sensor.py:494:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homematicip_cloud/button.py + /homeassistant/components/homematicip_cloud/button.py:30:7 - error: Base classes for class "HomematicipGarageDoorControllerButton" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/button.py:30:7 - error: Base classes for class "HomematicipGarageDoorControllerButton" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/button.py:30:7 - error: Base classes for class "HomematicipGarageDoorControllerButton" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/button.py:30:7 - error: Base classes for class "HomematicipGarageDoorControllerButton" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/button.py:30:7 - error: Base classes for class "HomematicipGarageDoorControllerButton" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/button.py:30:7 - error: Base classes for class "HomematicipGarageDoorControllerButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/homematicip_cloud/climate.py + /homeassistant/components/homematicip_cloud/climate.py:70:7 - error: Base classes for class "HomematicipHeatingGroup" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/climate.py:70:7 - error: Base classes for class "HomematicipHeatingGroup" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/climate.py:70:7 - error: Base classes for class "HomematicipHeatingGroup" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/climate.py:70:7 - error: Base classes for class "HomematicipHeatingGroup" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/climate.py:85:16 - error: Cannot assign to attribute "modelType" for class "HeatingGroup" +   Attribute "modelType" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/climate.py:92:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/climate.py:103:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/climate.py:108:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/climate.py:115:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/climate.py:120:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/climate.py:132:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/climate.py:142:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/climate.py:157:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/climate.py:181:9 - error: "preset_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/climate.py:200:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/climate.py:205:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/climate.py:240:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/climate.py:259:16 - error: Type "FunctionalHome | None" is not assignable to return type "IndoorClimateHome" +   Type "FunctionalHome | None" is not assignable to type "IndoorClimateHome" +     "FunctionalHome" is not assignable to "IndoorClimateHome" (reportReturnType) + /homeassistant/components/homematicip_cloud/climate.py:281:20 - error: Type "Any | None" is not assignable to return type "str" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportReturnType) + /homeassistant/components/homematicip_cloud/climate.py:285:16 - error: Type "Any | None" is not assignable to return type "str" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportReturnType) + /homeassistant/components/homematicip_cloud/climate.py:296:16 - error: Argument of type "Any | None" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/homematicip_cloud/cover.py + /homeassistant/components/homematicip_cloud/cover.py:67:7 - error: Base classes for class "HomematicipBlindModule" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:67:7 - error: Base classes for class "HomematicipBlindModule" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:67:7 - error: Base classes for class "HomematicipBlindModule" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:67:7 - error: Base classes for class "HomematicipBlindModule" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:67:7 - error: Base classes for class "HomematicipBlindModule" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:67:7 - error: Base classes for class "HomematicipBlindModule" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:73:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:80:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:104:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:145:7 - error: Base classes for class "HomematicipMultiCoverShutter" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:145:7 - error: Base classes for class "HomematicipMultiCoverShutter" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:145:7 - error: Base classes for class "HomematicipMultiCoverShutter" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:145:7 - error: Base classes for class "HomematicipMultiCoverShutter" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:145:7 - error: Base classes for class "HomematicipMultiCoverShutter" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:145:7 - error: Base classes for class "HomematicipMultiCoverShutter" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:163:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:179:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:201:7 - error: Base classes for class "HomematicipCoverShutter" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:201:7 - error: Base classes for class "HomematicipCoverShutter" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:201:7 - error: Base classes for class "HomematicipCoverShutter" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:201:7 - error: Base classes for class "HomematicipCoverShutter" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:201:7 - error: Base classes for class "HomematicipCoverShutter" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:201:7 - error: Base classes for class "HomematicipCoverShutter" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:201:7 - error: Base classes for class "HomematicipCoverShutter" define variable "current_cover_position" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:201:7 - error: Base classes for class "HomematicipCoverShutter" define variable "is_closed" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:209:7 - error: Base classes for class "HomematicipMultiCoverSlats" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:209:7 - error: Base classes for class "HomematicipMultiCoverSlats" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:209:7 - error: Base classes for class "HomematicipMultiCoverSlats" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:209:7 - error: Base classes for class "HomematicipMultiCoverSlats" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:209:7 - error: Base classes for class "HomematicipMultiCoverSlats" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:209:7 - error: Base classes for class "HomematicipMultiCoverSlats" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:209:7 - error: Base classes for class "HomematicipMultiCoverSlats" define variable "current_cover_position" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:209:7 - error: Base classes for class "HomematicipMultiCoverSlats" define variable "is_closed" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:225:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:259:7 - error: Base classes for class "HomematicipCoverSlats" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:259:7 - error: Base classes for class "HomematicipCoverSlats" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:259:7 - error: Base classes for class "HomematicipCoverSlats" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:259:7 - error: Base classes for class "HomematicipCoverSlats" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:259:7 - error: Base classes for class "HomematicipCoverSlats" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:259:7 - error: Base classes for class "HomematicipCoverSlats" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:259:7 - error: Base classes for class "HomematicipCoverSlats" define variable "current_cover_position" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:259:7 - error: Base classes for class "HomematicipCoverSlats" define variable "current_cover_tilt_position" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:259:7 - error: Base classes for class "HomematicipCoverSlats" define variable "is_closed" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:267:7 - error: Base classes for class "HomematicipGarageDoorModule" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:267:7 - error: Base classes for class "HomematicipGarageDoorModule" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:267:7 - error: Base classes for class "HomematicipGarageDoorModule" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:267:7 - error: Base classes for class "HomematicipGarageDoorModule" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:267:7 - error: Base classes for class "HomematicipGarageDoorModule" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:267:7 - error: Base classes for class "HomematicipGarageDoorModule" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:273:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:284:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:286:40 - error: Cannot access attribute "doorState" for class "FunctionalChannel" +   Attribute "doorState" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/cover.py:290:39 - error: Cannot access attribute "async_send_door_command" for class "FunctionalChannel" +   Attribute "async_send_door_command" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/cover.py:294:39 - error: Cannot access attribute "async_send_door_command" for class "FunctionalChannel" +   Attribute "async_send_door_command" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/cover.py:298:39 - error: Cannot access attribute "async_send_door_command" for class "FunctionalChannel" +   Attribute "async_send_door_command" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/cover.py:301:7 - error: Base classes for class "HomematicipCoverShutterGroup" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:301:7 - error: Base classes for class "HomematicipCoverShutterGroup" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:301:7 - error: Base classes for class "HomematicipCoverShutterGroup" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:301:7 - error: Base classes for class "HomematicipCoverShutterGroup" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:301:7 - error: Base classes for class "HomematicipCoverShutterGroup" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:301:7 - error: Base classes for class "HomematicipCoverShutterGroup" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:312:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:319:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/cover.py:326:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homematicip_cloud/entity.py + /homeassistant/components/homematicip_cloud/entity.py:100:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/entity.py:107:30 - error: Argument of type "set[tuple[Literal['homematicip_cloud'], Any | None]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]]" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/homematicip_cloud/entity.py:114:37 - error: Argument of type "tuple[Literal['homematicip_cloud'], Any | None]" cannot be assigned to parameter "via_device" of type "tuple[str, str]" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/homematicip_cloud/entity.py:185:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/entity.py:205:32 - error: Cannot access attribute "name" for class "AsyncHome" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/entity.py:206:34 - error: Cannot access attribute "name" for class "AsyncHome" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/entity.py:211:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/entity.py:216:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/entity.py:227:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/entity.py:236:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/entity.py:265:16 - error: Type "None" is not assignable to return type "FunctionalChannel" +   "None" is not assignable to "FunctionalChannel" (reportReturnType) +/homeassistant/components/homematicip_cloud/event.py + /homeassistant/components/homematicip_cloud/event.py:68:7 - error: Base classes for class "HomematicipDoorBellEvent" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/event.py:68:7 - error: Base classes for class "HomematicipDoorBellEvent" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/event.py:68:7 - error: Base classes for class "HomematicipDoorBellEvent" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/event.py:68:7 - error: Base classes for class "HomematicipDoorBellEvent" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/event.py:68:7 - error: Base classes for class "HomematicipDoorBellEvent" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/event.py:68:7 - error: Base classes for class "HomematicipDoorBellEvent" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/event.py:90:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "HmipEventEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/event.py:90:14 - error: "entity_description" overrides symbol of same name in class "EventEntity" +   Variable is mutable so its type is invariant +     Override type "HmipEventEntityDescription" is not the same as base type "EventEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/event.py:121:20 - error: Type "str | None" is not assignable to return type "str" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportReturnType) +/homeassistant/components/homematicip_cloud/hap.py + /homeassistant/components/homematicip_cloud/hap.py:35:29 - error: "util" is not a known attribute of module "homeassistant" (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/hap.py:39:24 - error: Argument of type "str | None" cannot be assigned to parameter "accesspoint_id" of type "str" in function "build_context_async" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/homematicip_cloud/hap.py:59:25 - error: Cannot assign to attribute "auth" for class "HomematicipAuth*" +   Type "Auth | None" is not assignable to type "Auth" +     "None" is not assignable to "Auth" (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/hap.py:91:33 - error: Argument of type "str | None" cannot be assigned to parameter "client_auth_token" of type "str" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/homematicip_cloud/hap.py:291:14 - error: Cannot assign to attribute "name" for class "AsyncHome" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/hap.py:293:14 - error: Cannot assign to attribute "label" for class "AsyncHome" +   Attribute "label" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/hap.py:294:14 - error: Cannot assign to attribute "modelType" for class "AsyncHome" +   Attribute "modelType" is unknown (reportAttributeAccessIssue) +/homeassistant/components/homematicip_cloud/light.py + /homeassistant/components/homematicip_cloud/light.py:70:38 - error: Argument of type "Any | None" cannot be assigned to parameter "version" of type "str" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/homematicip_cloud/light.py:100:7 - error: Base classes for class "HomematicipLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:100:7 - error: Base classes for class "HomematicipLight" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:100:7 - error: Base classes for class "HomematicipLight" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:100:7 - error: Base classes for class "HomematicipLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:100:7 - error: Base classes for class "HomematicipLight" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:100:7 - error: Base classes for class "HomematicipLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:111:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:124:7 - error: Base classes for class "HomematicipLightHS" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:124:7 - error: Base classes for class "HomematicipLightHS" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:124:7 - error: Base classes for class "HomematicipLightHS" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:124:7 - error: Base classes for class "HomematicipLightHS" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:124:7 - error: Base classes for class "HomematicipLightHS" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:124:7 - error: Base classes for class "HomematicipLightHS" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:135:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:137:40 - error: Cannot access attribute "on" for class "FunctionalChannel" +   Attribute "on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/light.py:140:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:142:44 - error: Cannot access attribute "dimLevel" for class "FunctionalChannel" +   Attribute "dimLevel" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/light.py:145:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:148:37 - error: Cannot access attribute "hue" for class "FunctionalChannel" +   Attribute "hue" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/light.py:149:40 - error: Cannot access attribute "saturationLevel" for class "FunctionalChannel" +   Attribute "saturationLevel" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/light.py:153:37 - error: Cannot access attribute "hue" for class "FunctionalChannel" +   Attribute "hue" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/light.py:154:37 - error: Cannot access attribute "saturationLevel" for class "FunctionalChannel" +   Attribute "saturationLevel" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/light.py:166:43 - error: Cannot access attribute "hue" for class "FunctionalChannel" +   Attribute "hue" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/light.py:167:50 - error: Cannot access attribute "saturationLevel" for class "FunctionalChannel" +   Attribute "saturationLevel" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/light.py:171:49 - error: Cannot access attribute "dimLevel" for class "FunctionalChannel" +   Attribute "dimLevel" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/light.py:173:39 - error: Cannot access attribute "set_hue_saturation_dim_level_async" for class "FunctionalChannel" +   Attribute "set_hue_saturation_dim_level_async" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/light.py:179:39 - error: Cannot access attribute "set_switch_state_async" for class "FunctionalChannel" +   Attribute "set_switch_state_async" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/light.py:186:7 - error: Base classes for class "HomematicipMultiDimmer" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:186:7 - error: Base classes for class "HomematicipMultiDimmer" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:186:7 - error: Base classes for class "HomematicipMultiDimmer" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:186:7 - error: Base classes for class "HomematicipMultiDimmer" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:186:7 - error: Base classes for class "HomematicipMultiDimmer" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:186:7 - error: Base classes for class "HomematicipMultiDimmer" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:205:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:211:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:231:7 - error: Base classes for class "HomematicipDimmer" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:231:7 - error: Base classes for class "HomematicipDimmer" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:231:7 - error: Base classes for class "HomematicipDimmer" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:231:7 - error: Base classes for class "HomematicipDimmer" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:231:7 - error: Base classes for class "HomematicipDimmer" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:231:7 - error: Base classes for class "HomematicipDimmer" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:231:7 - error: Base classes for class "HomematicipDimmer" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:231:7 - error: Base classes for class "HomematicipDimmer" define variable "brightness" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:239:7 - error: Base classes for class "HomematicipNotificationLight" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:239:7 - error: Base classes for class "HomematicipNotificationLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:239:7 - error: Base classes for class "HomematicipNotificationLight" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:239:7 - error: Base classes for class "HomematicipNotificationLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:265:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:273:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:278:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:281:16 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/homematicip_cloud/light.py:281:41 - error: Argument of type "Any | RGBColorState | Unknown | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "Any | RGBColorState | Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/homematicip_cloud/light.py:284:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:294:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:340:7 - error: Base classes for class "HomematicipNotificationLightV2" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:340:7 - error: Base classes for class "HomematicipNotificationLightV2" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:340:7 - error: Base classes for class "HomematicipNotificationLightV2" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:340:7 - error: Base classes for class "HomematicipNotificationLightV2" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:340:7 - error: Base classes for class "HomematicipNotificationLightV2" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:340:7 - error: Base classes for class "HomematicipNotificationLightV2" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:340:7 - error: Base classes for class "HomematicipNotificationLightV2" define variable "brightness" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:340:7 - error: Base classes for class "HomematicipNotificationLightV2" define variable "hs_color" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:357:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:359:16 - error: Type "list[OpticalSignalBehaviour]" is not assignable to return type "list[str] | None" +   Type "list[OpticalSignalBehaviour]" is not assignable to type "list[str] | None" +     "list[OpticalSignalBehaviour]" is not assignable to "list[str]" +       Type parameter "_T@list" is invariant, but "OpticalSignalBehaviour" is not the same as "str" +       Consider switching from "list" to "Sequence" which is covariant +     "list[OpticalSignalBehaviour]" is not assignable to "None" (reportReturnType) + /homeassistant/components/homematicip_cloud/light.py:362:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:367:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/light.py:392:36 - error: Argument of type "Any | str | None" cannot be assigned to parameter "opticalSignalBehaviour" of type "OpticalSignalBehaviour" in function "async_set_optical_signal" +   Type "Any | str | None" is not assignable to type "OpticalSignalBehaviour" +     "str" is not assignable to "OpticalSignalBehaviour" (reportArgumentType) +/homeassistant/components/homematicip_cloud/lock.py + /homeassistant/components/homematicip_cloud/lock.py:51:7 - error: Base classes for class "HomematicipDoorLockDrive" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/lock.py:51:7 - error: Base classes for class "HomematicipDoorLockDrive" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/lock.py:51:7 - error: Base classes for class "HomematicipDoorLockDrive" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/lock.py:51:7 - error: Base classes for class "HomematicipDoorLockDrive" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/lock.py:51:7 - error: Base classes for class "HomematicipDoorLockDrive" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/lock.py:57:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/lock.py:65:9 - error: "is_locking" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/lock.py:70:9 - error: "is_unlocking" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/lock.py:75:15 - error: Method "async_lock" overrides class "LockEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, Any]" +     "Coroutine[Any, Any, Any]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/homematicip_cloud/lock.py:80:15 - error: Method "async_unlock" overrides class "LockEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, Any]" +     "Coroutine[Any, Any, Any]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/homematicip_cloud/lock.py:85:15 - error: Method "async_open" overrides class "LockEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, Any]" +     "Coroutine[Any, Any, Any]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/homematicip_cloud/lock.py:90:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homematicip_cloud/sensor.py + /homeassistant/components/homematicip_cloud/sensor.py:295:7 - error: Base classes for class "HomematicipWaterFlowSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:295:7 - error: Base classes for class "HomematicipWaterFlowSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:295:7 - error: Base classes for class "HomematicipWaterFlowSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:295:7 - error: Base classes for class "HomematicipWaterFlowSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:295:7 - error: Base classes for class "HomematicipWaterFlowSensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:295:7 - error: Base classes for class "HomematicipWaterFlowSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:308:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:310:40 - error: Cannot access attribute "waterFlow" for class "FunctionalChannel" +   Attribute "waterFlow" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/sensor.py:313:7 - error: Base classes for class "HomematicipWaterVolumeSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:313:7 - error: Base classes for class "HomematicipWaterVolumeSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:313:7 - error: Base classes for class "HomematicipWaterVolumeSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:313:7 - error: Base classes for class "HomematicipWaterVolumeSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:313:7 - error: Base classes for class "HomematicipWaterVolumeSensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:313:7 - error: Base classes for class "HomematicipWaterVolumeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:332:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:354:7 - error: Base classes for class "HomematicipTiltAngleSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:354:7 - error: Base classes for class "HomematicipTiltAngleSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:354:7 - error: Base classes for class "HomematicipTiltAngleSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:354:7 - error: Base classes for class "HomematicipTiltAngleSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:354:7 - error: Base classes for class "HomematicipTiltAngleSensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:354:7 - error: Base classes for class "HomematicipTiltAngleSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:365:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:370:7 - error: Base classes for class "HomematicipTiltStateSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:370:7 - error: Base classes for class "HomematicipTiltStateSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:370:7 - error: Base classes for class "HomematicipTiltStateSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:370:7 - error: Base classes for class "HomematicipTiltStateSensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:370:7 - error: Base classes for class "HomematicipTiltStateSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:382:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:388:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:405:7 - error: Base classes for class "HomematicipFloorTerminalBlockMechanicChannelValve" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:405:7 - error: Base classes for class "HomematicipFloorTerminalBlockMechanicChannelValve" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:405:7 - error: Base classes for class "HomematicipFloorTerminalBlockMechanicChannelValve" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:405:7 - error: Base classes for class "HomematicipFloorTerminalBlockMechanicChannelValve" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:405:7 - error: Base classes for class "HomematicipFloorTerminalBlockMechanicChannelValve" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:426:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:440:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:452:7 - error: Base classes for class "HomematicipAccesspointDutyCycle" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:452:7 - error: Base classes for class "HomematicipAccesspointDutyCycle" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:452:7 - error: Base classes for class "HomematicipAccesspointDutyCycle" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:452:7 - error: Base classes for class "HomematicipAccesspointDutyCycle" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:452:7 - error: Base classes for class "HomematicipAccesspointDutyCycle" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:452:7 - error: Base classes for class "HomematicipAccesspointDutyCycle" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:464:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:469:7 - error: Base classes for class "HomematicipHeatingThermostat" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:469:7 - error: Base classes for class "HomematicipHeatingThermostat" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:469:7 - error: Base classes for class "HomematicipHeatingThermostat" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:469:7 - error: Base classes for class "HomematicipHeatingThermostat" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:469:7 - error: Base classes for class "HomematicipHeatingThermostat" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:479:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:488:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:495:7 - error: Base classes for class "HomematicipHumiditySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:495:7 - error: Base classes for class "HomematicipHumiditySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:495:7 - error: Base classes for class "HomematicipHumiditySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:495:7 - error: Base classes for class "HomematicipHumiditySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:495:7 - error: Base classes for class "HomematicipHumiditySensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:495:7 - error: Base classes for class "HomematicipHumiditySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:507:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:512:7 - error: Base classes for class "HomematicipTemperatureSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:512:7 - error: Base classes for class "HomematicipTemperatureSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:512:7 - error: Base classes for class "HomematicipTemperatureSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:512:7 - error: Base classes for class "HomematicipTemperatureSensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:512:7 - error: Base classes for class "HomematicipTemperatureSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:524:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:532:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:543:7 - error: Base classes for class "HomematicipAbsoluteHumiditySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:543:7 - error: Base classes for class "HomematicipAbsoluteHumiditySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:543:7 - error: Base classes for class "HomematicipAbsoluteHumiditySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:543:7 - error: Base classes for class "HomematicipAbsoluteHumiditySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:543:7 - error: Base classes for class "HomematicipAbsoluteHumiditySensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:543:7 - error: Base classes for class "HomematicipAbsoluteHumiditySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:556:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:561:41 - error: Cannot access attribute "vaporAmount" for class "FunctionalChannel" +   Attribute "vaporAmount" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/sensor.py:565:37 - error: Cannot access attribute "vaporAmount" for class "FunctionalChannel" +   Attribute "vaporAmount" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/sensor.py:566:40 - error: Cannot access attribute "vaporAmount" for class "FunctionalChannel" +   Attribute "vaporAmount" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/sensor.py:573:7 - error: Base classes for class "HomematicipIlluminanceSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:573:7 - error: Base classes for class "HomematicipIlluminanceSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:573:7 - error: Base classes for class "HomematicipIlluminanceSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:573:7 - error: Base classes for class "HomematicipIlluminanceSensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:573:7 - error: Base classes for class "HomematicipIlluminanceSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:585:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:593:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:604:7 - error: Base classes for class "HomematicipPowerSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:604:7 - error: Base classes for class "HomematicipPowerSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:604:7 - error: Base classes for class "HomematicipPowerSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:604:7 - error: Base classes for class "HomematicipPowerSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:604:7 - error: Base classes for class "HomematicipPowerSensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:604:7 - error: Base classes for class "HomematicipPowerSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:616:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:621:7 - error: Base classes for class "HomematicipEnergySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:621:7 - error: Base classes for class "HomematicipEnergySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:621:7 - error: Base classes for class "HomematicipEnergySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:621:7 - error: Base classes for class "HomematicipEnergySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:621:7 - error: Base classes for class "HomematicipEnergySensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:621:7 - error: Base classes for class "HomematicipEnergySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:633:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:638:7 - error: Base classes for class "HomematicipWindspeedSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:638:7 - error: Base classes for class "HomematicipWindspeedSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:638:7 - error: Base classes for class "HomematicipWindspeedSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:638:7 - error: Base classes for class "HomematicipWindspeedSensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:638:7 - error: Base classes for class "HomematicipWindspeedSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:650:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:655:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:670:7 - error: Base classes for class "HomematicipTodayRainSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:670:7 - error: Base classes for class "HomematicipTodayRainSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:670:7 - error: Base classes for class "HomematicipTodayRainSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:670:7 - error: Base classes for class "HomematicipTodayRainSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:670:7 - error: Base classes for class "HomematicipTodayRainSensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:670:7 - error: Base classes for class "HomematicipTodayRainSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:682:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:687:7 - error: Base classes for class "HomematicpTemperatureExternalSensorCh1" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:687:7 - error: Base classes for class "HomematicpTemperatureExternalSensorCh1" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:687:7 - error: Base classes for class "HomematicpTemperatureExternalSensorCh1" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:687:7 - error: Base classes for class "HomematicpTemperatureExternalSensorCh1" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:687:7 - error: Base classes for class "HomematicpTemperatureExternalSensorCh1" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:687:7 - error: Base classes for class "HomematicpTemperatureExternalSensorCh1" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:699:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:704:7 - error: Base classes for class "HomematicpTemperatureExternalSensorCh2" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:704:7 - error: Base classes for class "HomematicpTemperatureExternalSensorCh2" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:704:7 - error: Base classes for class "HomematicpTemperatureExternalSensorCh2" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:704:7 - error: Base classes for class "HomematicpTemperatureExternalSensorCh2" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:704:7 - error: Base classes for class "HomematicpTemperatureExternalSensorCh2" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:704:7 - error: Base classes for class "HomematicpTemperatureExternalSensorCh2" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:716:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:721:7 - error: Base classes for class "HomematicpTemperatureExternalSensorDelta" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:721:7 - error: Base classes for class "HomematicpTemperatureExternalSensorDelta" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:721:7 - error: Base classes for class "HomematicpTemperatureExternalSensorDelta" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:721:7 - error: Base classes for class "HomematicpTemperatureExternalSensorDelta" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:721:7 - error: Base classes for class "HomematicpTemperatureExternalSensorDelta" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:721:7 - error: Base classes for class "HomematicpTemperatureExternalSensorDelta" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:733:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:738:7 - error: Base classes for class "HmipEsiSensorEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:738:7 - error: Base classes for class "HmipEsiSensorEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:738:7 - error: Base classes for class "HmipEsiSensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:738:7 - error: Base classes for class "HmipEsiSensorEntity" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:738:7 - error: Base classes for class "HmipEsiSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:762:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:770:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:788:46 - error: Cannot access attribute "currentPowerConsumption" for class "FunctionalChannel" +   Attribute "currentPowerConsumption" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/sensor.py:806:46 - error: Cannot access attribute "energyCounterOne" for class "FunctionalChannel" +   Attribute "energyCounterOne" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/sensor.py:807:45 - error: Cannot access attribute "energyCounterOneType" for class "FunctionalChannel" +   Attribute "energyCounterOneType" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/sensor.py:824:46 - error: Cannot access attribute "energyCounterTwo" for class "FunctionalChannel" +   Attribute "energyCounterTwo" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/sensor.py:825:45 - error: Cannot access attribute "energyCounterTwoType" for class "FunctionalChannel" +   Attribute "energyCounterTwoType" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/sensor.py:842:46 - error: Cannot access attribute "energyCounterThree" for class "FunctionalChannel" +   Attribute "energyCounterThree" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/sensor.py:843:45 - error: Cannot access attribute "energyCounterThreeType" for class "FunctionalChannel" +   Attribute "energyCounterThreeType" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/sensor.py:860:46 - error: Cannot access attribute "currentGasFlow" for class "FunctionalChannel" +   Attribute "currentGasFlow" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/sensor.py:878:46 - error: Cannot access attribute "gasVolume" for class "FunctionalChannel" +   Attribute "gasVolume" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/sensor.py:896:46 - error: Cannot access attribute "currentPowerConsumption" for class "FunctionalChannel" +   Attribute "currentPowerConsumption" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/sensor.py:914:46 - error: Cannot access attribute "energyCounterOne" for class "FunctionalChannel" +   Attribute "energyCounterOne" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/sensor.py:919:7 - error: Base classes for class "HomematicipPassageDetectorDeltaCounter" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:919:7 - error: Base classes for class "HomematicipPassageDetectorDeltaCounter" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:919:7 - error: Base classes for class "HomematicipPassageDetectorDeltaCounter" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:919:7 - error: Base classes for class "HomematicipPassageDetectorDeltaCounter" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:919:7 - error: Base classes for class "HomematicipPassageDetectorDeltaCounter" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:923:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/sensor.py:928:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homematicip_cloud/services.py + /homeassistant/components/homematicip_cloud/services.py:319:36 - error: Argument of type "dict[Unknown, Unknown]" cannot be assigned to parameter "json_state" of type "str" in function "handle_config" +   "dict[Unknown, Unknown]" is not assignable to "str" (reportArgumentType) +/homeassistant/components/homematicip_cloud/switch.py + /homeassistant/components/homematicip_cloud/switch.py:98:7 - error: Base classes for class "HomematicipMultiSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:98:7 - error: Base classes for class "HomematicipMultiSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:98:7 - error: Base classes for class "HomematicipMultiSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:98:7 - error: Base classes for class "HomematicipMultiSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:98:7 - error: Base classes for class "HomematicipMultiSwitch" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:98:7 - error: Base classes for class "HomematicipMultiSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:114:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:116:40 - error: Cannot access attribute "on" for class "FunctionalChannel" +   Attribute "on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/switch.py:120:39 - error: Cannot access attribute "async_turn_on" for class "FunctionalChannel" +   Attribute "async_turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/switch.py:124:39 - error: Cannot access attribute "async_turn_off" for class "FunctionalChannel" +   Attribute "async_turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/switch.py:127:7 - error: Base classes for class "HomematicipSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:127:7 - error: Base classes for class "HomematicipSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:127:7 - error: Base classes for class "HomematicipSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:127:7 - error: Base classes for class "HomematicipSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:127:7 - error: Base classes for class "HomematicipSwitch" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:127:7 - error: Base classes for class "HomematicipSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:127:7 - error: Base classes for class "HomematicipSwitch" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:135:7 - error: Base classes for class "HomematicipGroupSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:135:7 - error: Base classes for class "HomematicipGroupSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:135:7 - error: Base classes for class "HomematicipGroupSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:135:7 - error: Base classes for class "HomematicipGroupSwitch" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:144:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:149:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/switch.py:158:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homematicip_cloud/valve.py + /homeassistant/components/homematicip_cloud/valve.py:35:7 - error: Base classes for class "HomematicipWateringValve" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/valve.py:35:7 - error: Base classes for class "HomematicipWateringValve" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/valve.py:35:7 - error: Base classes for class "HomematicipWateringValve" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/valve.py:35:7 - error: Base classes for class "HomematicipWateringValve" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/valve.py:35:7 - error: Base classes for class "HomematicipWateringValve" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/valve.py:35:7 - error: Base classes for class "HomematicipWateringValve" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/valve.py:50:39 - error: Cannot access attribute "set_watering_switch_state_async" for class "FunctionalChannel" +   Attribute "set_watering_switch_state_async" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/valve.py:54:39 - error: Cannot access attribute "set_watering_switch_state_async" for class "FunctionalChannel" +   Attribute "set_watering_switch_state_async" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/valve.py:59:40 - error: Cannot access attribute "wateringActive" for class "FunctionalChannel" +   Attribute "wateringActive" is unknown (reportAttributeAccessIssue) +/homeassistant/components/homematicip_cloud/weather.py + /homeassistant/components/homematicip_cloud/weather.py:66:7 - error: Base classes for class "HomematicipWeatherSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:66:7 - error: Base classes for class "HomematicipWeatherSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:66:7 - error: Base classes for class "HomematicipWeatherSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:66:7 - error: Base classes for class "HomematicipWeatherSensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:66:7 - error: Base classes for class "HomematicipWeatherSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:78:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:83:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:88:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:93:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:98:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:113:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:118:7 - error: Base classes for class "HomematicipHomeWeather" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:118:7 - error: Base classes for class "HomematicipHomeWeather" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:118:7 - error: Base classes for class "HomematicipHomeWeather" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:118:7 - error: Base classes for class "HomematicipHomeWeather" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:127:18 - error: Cannot assign to attribute "modelType" for class "AsyncHome" +   Attribute "modelType" is unknown (reportAttributeAccessIssue) + /homeassistant/components/homematicip_cloud/weather.py:131:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:133:16 - error: Type "Any | None" is not assignable to return type "bool" +   Type "Any | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportReturnType) + /homeassistant/components/homematicip_cloud/weather.py:136:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:138:47 - error: "city" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/homematicip_cloud/weather.py:141:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:146:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:151:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:156:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homematicip_cloud/weather.py:161:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homewizard/button.py + /homeassistant/components/homewizard/button.py:25:7 - error: Base classes for class "HomeWizardIdentifyButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homewizard/button.py:37:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/homewizard/number.py + /homeassistant/components/homewizard/number.py:45:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/homewizard/number.py:51:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/homewizard/number.py:56:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homewizard/select.py + /homeassistant/components/homewizard/select.py:65:7 - error: Base classes for class "HomeWizardSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/homewizard/select.py:77:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "HomeWizardSelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homewizard/select.py:77:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "HomeWizardSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homewizard/select.py:81:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homewizard/select.py:86:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/homewizard/sensor.py + /homeassistant/components/homewizard/sensor.py:736:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "HomeWizardSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homewizard/sensor.py:736:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "HomeWizardSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homewizard/sensor.py:742:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homewizard/sensor.py:747:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/homewizard/sensor.py:781:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/homewizard/sensor.py:795:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/homewizard/sensor.py:800:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homewizard/sensor.py:812:9 - error: "device_class" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homewizard/sensor.py:812:9 - error: "device_class" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[SensorDeviceClass | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/homewizard/switch.py + /homeassistant/components/homewizard/switch.py:94:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "HomeWizardSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homewizard/switch.py:94:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "HomeWizardSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/homewizard/switch.py:98:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/homewizard/switch.py:105:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homewizard/switch.py:110:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/homewizard/switch.py:116:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/homeworks/light.py + /homeassistant/components/homeworks/light.py:92:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/homeworks/light.py:103:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/honeywell/__init__.py + /homeassistant/components/honeywell/__init__.py:61:27 - error: "device" is not a known attribute of module "aiosomecomfort" (reportAttributeAccessIssue) + /homeassistant/components/honeywell/__init__.py:65:24 - error: "device" is not a known attribute of module "aiosomecomfort" (reportAttributeAccessIssue) + /homeassistant/components/honeywell/__init__.py:66:24 - error: "device" is not a known attribute of module "aiosomecomfort" (reportAttributeAccessIssue) + /homeassistant/components/honeywell/__init__.py:67:24 - error: "device" is not a known attribute of module "aiosomecomfort" (reportAttributeAccessIssue) + /homeassistant/components/honeywell/__init__.py:102:39 - error: "device" is not a known attribute of module "aiosomecomfort" (reportAttributeAccessIssue) +/homeassistant/components/honeywell/climate.py + /homeassistant/components/honeywell/climate.py:238:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/honeywell/climate.py:248:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/honeywell/climate.py:266:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/honeywell/climate.py:284:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/honeywell/climate.py:286:16 - error: Type "float | None" is not assignable to return type "int | None" +   Type "float | None" is not assignable to type "int | None" +     Type "float" is not assignable to type "int | None" +       "float" is not assignable to "int" +       "float" is not assignable to "None" (reportReturnType) + /homeassistant/components/honeywell/climate.py:289:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/honeywell/climate.py:294:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/honeywell/climate.py:301:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/honeywell/climate.py:306:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/honeywell/climate.py:315:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/honeywell/climate.py:322:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/honeywell/climate.py:329:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/honeywell/climate.py:343:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/honeywell/climate.py:345:38 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/honeywell/climate.py:421:63 - error: "temperature" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/honeywell/climate.py:425:66 - error: "temperature" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/honeywell/humidifier.py + /homeassistant/components/honeywell/humidifier.py:101:14 - error: "entity_description" overrides symbol of same name in class "HumidifierEntity" +   Variable is mutable so its type is invariant +     Override type "HoneywellHumidifierEntityDescription" is not the same as base type "HumidifierEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/honeywell/humidifier.py:112:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/honeywell/humidifier.py:117:9 - error: "target_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/honeywell/humidifier.py:122:9 - error: "current_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/honeywell/sensor.py + /homeassistant/components/honeywell/sensor.py:106:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "HoneywellSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/honeywell/sensor.py:117:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/honeywell/switch.py + /homeassistant/components/honeywell/switch.py:92:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/horizon/media_player.py + /homeassistant/components/horizon/media_player.py:9:6 - error: Import "horimote" could not be resolved (reportMissingImports) + /homeassistant/components/horizon/media_player.py:10:6 - error: Import "horimote.exceptions" could not be resolved (reportMissingImports) + /homeassistant/components/horizon/media_player.py:93:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hp_ilo/sensor.py + /homeassistant/components/hp_ilo/sensor.py:8:8 - error: Import "hpilo" could not be resolved (reportMissingImports) + /homeassistant/components/hp_ilo/sensor.py:142:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hp_ilo/sensor.py:147:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hp_ilo/sensor.py:152:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/hp_ilo/sensor.py:157:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/html5/notify.py + /homeassistant/components/html5/notify.py:109:42 - error: Argument missing for parameter "v" (reportCallIssue) +/homeassistant/components/http/__init__.py + /homeassistant/components/http/__init__.py:230:19 - error: Could not access item in TypedDict +   "server_port" is not a required key in "ConfData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/http/__init__.py:234:20 - error: Could not access item in TypedDict +   "cors_allowed_origins" is not a required key in "ConfData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/http/__init__.py:236:27 - error: Could not access item in TypedDict +   "use_x_frame_options" is not a required key in "ConfData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/http/__init__.py:238:22 - error: Could not access item in TypedDict +   "ip_ban_enabled" is not a required key in "ConfData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/http/__init__.py:239:23 - error: Could not access item in TypedDict +   "login_attempts_threshold" is not a required key in "ConfData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/http/__init__.py:240:19 - error: Could not access item in TypedDict +   "ssl_profile" is not a required key in "ConfData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/http/auth.py + /homeassistant/components/http/auth.py:238:17 - error: "auth_type" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/huawei_lte/binary_sensor.py + /homeassistant/components/huawei_lte/binary_sensor.py:52:7 - error: Base classes for class "HuaweiLteBaseBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/binary_sensor.py:52:7 - error: Base classes for class "HuaweiLteBaseBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/binary_sensor.py:52:7 - error: Base classes for class "HuaweiLteBaseBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/binary_sensor.py:114:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/binary_sensor.py:123:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/binary_sensor.py:132:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/binary_sensor.py:148:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/binary_sensor.py:153:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/binary_sensor.py:161:5 - error: "_attr_translation_key" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/binary_sensor.py:170:5 - error: "_attr_translation_key" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/binary_sensor.py:179:5 - error: "_attr_translation_key" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/binary_sensor.py:188:5 - error: "_attr_translation_key" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/binary_sensor.py:194:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/binary_sensor.py:199:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/huawei_lte/button.py + /homeassistant/components/huawei_lte/button.py:39:7 - error: Base classes for class "BaseButton" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/button.py:39:7 - error: Base classes for class "BaseButton" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/button.py:39:7 - error: Base classes for class "BaseButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/huawei_lte/device_tracker.py + /homeassistant/components/huawei_lte/device_tracker.py:175:7 - error: Base classes for class "HuaweiLteScannerEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/device_tracker.py:189:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/device_tracker.py:198:9 - error: "ip_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/device_tracker.py:203:9 - error: "mac_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/device_tracker.py:208:9 - error: "hostname" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/device_tracker.py:218:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/huawei_lte/entity.py + /homeassistant/components/huawei_lte/entity.py:34:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/entity.py:39:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/entity.py:63:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/huawei_lte/select.py + /homeassistant/components/huawei_lte/select.py:77:7 - error: Base classes for class "HuaweiLteSelectEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/select.py:77:7 - error: Base classes for class "HuaweiLteSelectEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/select.py:77:7 - error: Base classes for class "HuaweiLteSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/select.py:92:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "HuaweiSelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/select.py:92:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "HuaweiSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/select.py:101:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/huawei_lte/sensor.py + /homeassistant/components/huawei_lte/sensor.py:802:7 - error: Base classes for class "HuaweiLteSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/sensor.py:802:7 - error: Base classes for class "HuaweiLteSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/sensor.py:802:7 - error: Base classes for class "HuaweiLteSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/sensor.py:821:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "HuaweiSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/sensor.py:821:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "HuaweiSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/sensor.py:846:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/sensor.py:851:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/sensor.py:856:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/sensor.py:863:9 - error: "device_class" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/sensor.py:863:9 - error: "device_class" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[SensorDeviceClass | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/sensor.py:871:9 - error: "last_reset" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/sensor.py:903:69 - error: Argument of type "Any | None" cannot be assigned to parameter of type "str" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/huawei_lte/switch.py + /homeassistant/components/huawei_lte/switch.py:46:7 - error: Base classes for class "HuaweiLteBaseSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/switch.py:46:7 - error: Base classes for class "HuaweiLteBaseSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/switch.py:46:7 - error: Base classes for class "HuaweiLteBaseSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/switch.py:52:5 - error: "_attr_device_class" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SwitchDeviceClass" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/switch.py:52:5 - error: "_attr_device_class" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "SwitchDeviceClass" is not the same as base type "SwitchDeviceClass | None" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/switch.py:91:5 - error: "_attr_translation_key" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/switch.py:101:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/switch.py:115:5 - error: "_attr_translation_key" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/switch.py:125:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huawei_lte/switch.py:135:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hue/__init__.py + /homeassistant/components/hue/__init__.py:40:48 - error: "bridge_id" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/__init__.py:76:65 - error: "mac_address" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/__init__.py:77:46 - error: "bridge_id" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/__init__.py:79:29 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/__init__.py:80:33 - error: "model_id" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/__init__.py:81:35 - error: "software_version" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/__init__.py:85:24 - error: "model_id" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/__init__.py:86:28 - error: "software_version" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/__init__.py:101:65 - error: "mac_address" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/__init__.py:103:37 - error: "bridge_id" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/__init__.py:104:37 - error: Cannot access attribute "bridge_device" for class "Config" +   Attribute "bridge_device" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/__init__.py:104:37 - error: "bridge_device" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/__init__.py:106:37 - error: Cannot access attribute "bridge_device" for class "Config" +   Attribute "bridge_device" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/__init__.py:106:37 - error: "bridge_device" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/__init__.py:107:29 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/__init__.py:108:33 - error: "model_id" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/__init__.py:109:35 - error: "software_version" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/hue/config_flow.py + /homeassistant/components/hue/config_flow.py:98:20 - error: Type "None" is not assignable to return type "DiscoveredHueBridge" +   "None" is not assignable to "DiscoveredHueBridge" (reportReturnType) + /homeassistant/components/hue/config_flow.py:223:31 - error: "app_key" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/hue/diagnostics.py + /homeassistant/components/hue/diagnostics.py:21:29 - error: Cannot access attribute "get_diagnostics" for class "HueBridgeV1" +   Attribute "get_diagnostics" is unknown (reportAttributeAccessIssue) +/homeassistant/components/hue/event.py + /homeassistant/components/hue/event.py:33:24 - error: Type "HueBridgeV1 | HueBridgeV2" is not assignable to declared type "HueBridgeV2" +   Type "HueBridgeV1 | HueBridgeV2" is not assignable to type "HueBridgeV2" +     "HueBridgeV1" is not assignable to "HueBridgeV2" (reportAssignmentType) + /homeassistant/components/hue/event.py:48:76 - error: Argument of type "RelativeRotary" cannot be assigned to parameter "resource" of type "HueResource" in function "__init__" +   Type "RelativeRotary" is not assignable to type "HueResource" +     "RelativeRotary" is not assignable to "Light" +     "RelativeRotary" is not assignable to "DevicePower" +     "RelativeRotary" is not assignable to "GroupedLight" +     "RelativeRotary" is not assignable to "LightLevel" +     "RelativeRotary" is not assignable to "Motion" (reportArgumentType) + /homeassistant/components/hue/event.py:66:56 - error: Argument of type "type[Button] | type[BellButton]" cannot be assigned to parameter "resource" of type "Button | RelativeRotary | BellButton" in function "async_add_entity" +   Type "type[Button] | type[BellButton]" is not assignable to type "Button | RelativeRotary | BellButton" +     Type "type[BellButton]" is not assignable to type "Button | RelativeRotary | BellButton" +       Type "type[BellButton]" is not assignable to type "Button" +       Type "type[BellButton]" is not assignable to type "RelativeRotary" +       Type "type[BellButton]" is not assignable to type "BellButton" (reportArgumentType) + /homeassistant/components/hue/event.py:71:17 - error: Argument of type "(event_type: EventType, resource: Button | RelativeRotary | BellButton) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(event_type: EventType, resource: Button | RelativeRotary | BellButton) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "Button | RelativeRotary | BellButton" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "Button | RelativeRotary | BellButton" +         Type "dict[Unknown, Unknown]" is not assignable to type "Button | RelativeRotary | BellButton" +           "dict[Unknown, Unknown]" is not assignable to "Button" +           "dict[Unknown, Unknown]" is not assignable to "RelativeRotary" +           "dict[Unknown, Unknown]" is not assignable to "BellButton" (reportArgumentType) + /homeassistant/components/hue/event.py:76:7 - error: Base classes for class "HueButtonEventEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/event.py:92:67 - error: "id" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/event.py:93:36 - error: Cannot access attribute "devices" for class "HueBridgeV1" +   Attribute "devices" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/event.py:101:26 - error: Cannot assign to attribute "_attr_translation_placeholders" for class "HueButtonEventEntity*" +   "int" is not assignable to "str" (reportAttributeAccessIssue) + /homeassistant/components/hue/event.py:105:9 - error: Method "_handle_event" overrides class "HueBaseEntity" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "HueResource", override parameter is type "Button | BellButton" +     Type "HueResource" is not assignable to type "Button | BellButton" +       Type "DevicePower" is not assignable to type "Button | BellButton" +         "DevicePower" is not assignable to "Button" +         "DevicePower" is not assignable to "BellButton" (reportIncompatibleMethodOverride) + /homeassistant/components/hue/event.py:115:43 - error: Argument of type "Button | BellButton" cannot be assigned to parameter "resource" of type "HueResource" in function "_handle_event" +   Type "Button | BellButton" is not assignable to type "HueResource" +     Type "BellButton" is not assignable to type "HueResource" +       "BellButton" is not assignable to "Light" +       "BellButton" is not assignable to "DevicePower" +       "BellButton" is not assignable to "GroupedLight" +       "BellButton" is not assignable to "LightLevel" +       "BellButton" is not assignable to "Motion" (reportArgumentType) + /homeassistant/components/hue/event.py:130:7 - error: Base classes for class "HueRotaryEventEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/event.py:145:9 - error: Method "_handle_event" overrides class "HueBaseEntity" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "HueResource", override parameter is type "RelativeRotary" +     Type "HueResource" is not assignable to type "RelativeRotary" +       "DevicePower" is not assignable to "RelativeRotary" (reportIncompatibleMethodOverride) + /homeassistant/components/hue/event.py:162:43 - error: Argument of type "RelativeRotary" cannot be assigned to parameter "resource" of type "HueResource" in function "_handle_event" +   Type "RelativeRotary" is not assignable to type "HueResource" +     "RelativeRotary" is not assignable to "Light" +     "RelativeRotary" is not assignable to "DevicePower" +     "RelativeRotary" is not assignable to "GroupedLight" +     "RelativeRotary" is not assignable to "LightLevel" +     "RelativeRotary" is not assignable to "Motion" (reportArgumentType) +/homeassistant/components/hue/migration.py + /homeassistant/components/hue/migration.py:130:42 - error: No overloads for "iter" match the provided arguments (reportCallIssue) + /homeassistant/components/hue/migration.py:130:47 - error: Argument of type "property" cannot be assigned to parameter "object" of type "_GetItemIterable[_T@iter]" in function "iter" +   "property" is incompatible with protocol "_GetItemIterable[_T@iter]" +     "__getitem__" is not present (reportArgumentType) + /homeassistant/components/hue/migration.py:189:47 - error: Cannot access attribute "grouped_light" for class "GroupedLight" +   Attribute "grouped_light" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/migration.py:196:39 - error: Cannot access attribute "grouped_light" for class "GroupedLight" +   Attribute "grouped_light" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/migration.py:204:74 - error: Argument of type "str | Unknown | property" cannot be assigned to parameter "new_unique_id" of type "str | UndefinedType" in function "async_update_entity" +   Type "str | Unknown | property" is not assignable to type "str | UndefinedType" +     Type "property" is not assignable to type "str | UndefinedType" +       "property" is not assignable to "str" +       "property" is not assignable to "UndefinedType" (reportArgumentType) +/homeassistant/components/hue/scene.py + /homeassistant/components/hue/scene.py:40:24 - error: Type "HueBridgeV1 | HueBridgeV2" is not assignable to declared type "HueBridgeV2" +   Type "HueBridgeV1 | HueBridgeV2" is not assignable to type "HueBridgeV2" +     "HueBridgeV1" is not assignable to "HueBridgeV2" (reportAssignmentType) + /homeassistant/components/hue/scene.py:63:30 - error: Argument of type "(event_type: EventType, resource: Scene | SmartScene) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(event_type: EventType, resource: Scene | SmartScene) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "Scene | SmartScene" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "Scene | SmartScene" +         Type "dict[Unknown, Unknown]" is not assignable to type "Scene | SmartScene" +           "dict[Unknown, Unknown]" is not assignable to "Scene" +           "dict[Unknown, Unknown]" is not assignable to "SmartScene" (reportArgumentType) + /homeassistant/components/hue/scene.py:86:7 - error: Base classes for class "HueSceneEntityBase" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/scene.py:98:34 - error: Argument of type "ScenesController" cannot be assigned to parameter "controller" of type "BaseResourcesController[Unknown]" in function "__init__" +   "ScenesController" is not assignable to "BaseResourcesController[Unknown]" (reportArgumentType) + /homeassistant/components/hue/scene.py:98:46 - error: Argument of type "Scene | SmartScene" cannot be assigned to parameter "resource" of type "HueResource" in function "__init__" +   Type "Scene | SmartScene" is not assignable to type "HueResource" +     Type "Scene" is not assignable to type "HueResource" +       "Scene" is not assignable to "Light" +       "Scene" is not assignable to "DevicePower" +       "Scene" is not assignable to "GroupedLight" +       "Scene" is not assignable to "LightLevel" +       "Scene" is not assignable to "Motion" (reportArgumentType) + /homeassistant/components/hue/scene.py:113:36 - error: Cannot access attribute "subscribe" for class "Groups" +   Attribute "subscribe" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/scene.py:113:36 - error: "subscribe" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/scene.py:114:17 - error: Argument of type "(event_type: EventType, resource: HueResource) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(event_type: EventType, resource: HueResource) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "HueResource" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "HueResource" +         Type "dict[Unknown, Unknown]" is not assignable to type "HueResource" +           "dict[Unknown, Unknown]" is not assignable to "Light" +           "dict[Unknown, Unknown]" is not assignable to "DevicePower" +           "dict[Unknown, Unknown]" is not assignable to "GroupedLight" +           "dict[Unknown, Unknown]" is not assignable to "LightLevel" + ... (reportArgumentType) + /homeassistant/components/hue/scene.py:121:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/scene.py:133:27 - error: Cannot access attribute "palette" for class "SmartScene" +   Attribute "palette" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/scene.py:134:31 - error: Cannot access attribute "palette" for class "SmartScene" +   Attribute "palette" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/scene.py:135:35 - error: Cannot access attribute "palette" for class "SmartScene" +   Attribute "palette" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/scene.py:139:27 - error: Cannot access attribute "palette" for class "SmartScene" +   Attribute "palette" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/scene.py:140:31 - error: Cannot access attribute "palette" for class "SmartScene" +   Attribute "palette" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/scene.py:141:35 - error: Cannot access attribute "palette" for class "SmartScene" +   Attribute "palette" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/scene.py:172:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/scene.py:175:37 - error: Cannot access attribute "palette" for class "SmartScene" +   Attribute "palette" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/scene.py:180:41 - error: Cannot access attribute "actions" for class "SmartScene" +   Attribute "actions" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/scene.py:191:36 - error: Cannot access attribute "speed" for class "SmartScene" +   Attribute "speed" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/scene.py:203:30 - error: Cannot access attribute "state" for class "Scene" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/scene.py:214:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/scene.py:222:45 - error: Cannot access attribute "active_timeslot" for class "Scene" +   Attribute "active_timeslot" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/scene.py:223:55 - error: Cannot access attribute "active_timeslot" for class "Scene" +   Attribute "active_timeslot" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/scene.py:224:57 - error: Cannot access attribute "active_timeslot" for class "Scene" +   Attribute "active_timeslot" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/scene.py:228:47 - error: Cannot access attribute "week_timeslots" for class "Scene" +   Attribute "week_timeslots" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/scene.py:230:47 - error: Cannot access attribute "active_timeslot" for class "Scene" +   Attribute "active_timeslot" is unknown (reportAttributeAccessIssue) +/homeassistant/components/hue/services.py + /homeassistant/components/hue/services.py:87:24 - error: Type "HueBridgeV1 | HueBridgeV2" is not assignable to declared type "HueBridgeV1" +   Type "HueBridgeV1 | HueBridgeV2" is not assignable to type "HueBridgeV1" +     "HueBridgeV2" is not assignable to "HueBridgeV1" (reportAssignmentType) + /homeassistant/components/hue/services.py:93:40 - error: "values" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/services.py:109:52 - error: "update" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/services.py:145:24 - error: Type "HueBridgeV1 | HueBridgeV2" is not assignable to declared type "HueBridgeV2" +   Type "HueBridgeV1 | HueBridgeV2" is not assignable to type "HueBridgeV2" +     "HueBridgeV1" is not assignable to "HueBridgeV2" (reportAssignmentType) +/homeassistant/components/hue/switch.py + /homeassistant/components/hue/switch.py:37:24 - error: Type "HueBridgeV1 | HueBridgeV2" is not assignable to declared type "HueBridgeV2" +   Type "HueBridgeV1 | HueBridgeV2" is not assignable to type "HueBridgeV2" +     "HueBridgeV1" is not assignable to "HueBridgeV2" (reportAssignmentType) + /homeassistant/components/hue/switch.py:59:66 - error: Argument of type "BehaviorInstance | LightLevel | Motion" cannot be assigned to parameter "resource" of type "HueResource" in function "__init__" +   Type "BehaviorInstance | LightLevel | Motion" is not assignable to type "HueResource" +     Type "BehaviorInstance" is not assignable to type "HueResource" +       "BehaviorInstance" is not assignable to "Light" +       "BehaviorInstance" is not assignable to "DevicePower" +       "BehaviorInstance" is not assignable to "GroupedLight" +       "BehaviorInstance" is not assignable to "LightLevel" +       "BehaviorInstance" is not assignable to "Motion" (reportArgumentType) + /homeassistant/components/hue/switch.py:63:56 - error: Argument of type "type[BehaviorInstance] | type[LightLevel] | type[Motion]" cannot be assigned to parameter "resource" of type "BehaviorInstance | LightLevel | Motion" in function "async_add_entity" +   Type "type[BehaviorInstance] | type[LightLevel] | type[Motion]" is not assignable to type "BehaviorInstance | LightLevel | Motion" +     Type "type[BehaviorInstance]" is not assignable to type "BehaviorInstance | LightLevel | Motion" +       Type "type[BehaviorInstance]" is not assignable to type "BehaviorInstance" +       Type "type[BehaviorInstance]" is not assignable to type "LightLevel" +       Type "type[BehaviorInstance]" is not assignable to type "Motion" (reportArgumentType) + /homeassistant/components/hue/switch.py:68:17 - error: Argument of type "(event_type: EventType, resource: BehaviorInstance | LightLevel | Motion) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(event_type: EventType, resource: BehaviorInstance | LightLevel | Motion) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "BehaviorInstance | LightLevel | Motion" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "BehaviorInstance | LightLevel | Motion" +         Type "dict[Unknown, Unknown]" is not assignable to type "BehaviorInstance | LightLevel | Motion" +           "dict[Unknown, Unknown]" is not assignable to "BehaviorInstance" +           "dict[Unknown, Unknown]" is not assignable to "LightLevel" +           "dict[Unknown, Unknown]" is not assignable to "Motion" (reportArgumentType) + /homeassistant/components/hue/switch.py:78:7 - error: Base classes for class "HueResourceEnabledEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/switch.py:92:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/switch.py:112:5 - error: "resource" overrides symbol of same name in class "HueResourceEnabledEntity" +   Variable is mutable so its type is invariant +     Override type "BehaviorInstance" is not the same as base type "BehaviorInstance | LightLevel | Motion" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/switch.py:122:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hue/v1/binary_sensor.py + /homeassistant/components/hue/v1/binary_sensor.py:35:7 - error: Base classes for class "HuePresence" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/binary_sensor.py:35:7 - error: Base classes for class "HuePresence" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/binary_sensor.py:35:7 - error: Base classes for class "HuePresence" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/binary_sensor.py:35:7 - error: Base classes for class "HuePresence" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/binary_sensor.py:41:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/binary_sensor.py:46:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hue/v1/light.py + /homeassistant/components/hue/v1/light.py:150:59 - error: "apiversion" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v1/light.py:150:59 - error: Cannot access attribute "apiversion" for class "ConfigController" +   Attribute "apiversion" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v1/light.py:164:75 - error: "update" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v1/light.py:199:75 - error: "update" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v1/light.py:199:75 - error: Cannot access attribute "update" for class "GroupsController" +   Attribute "update" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v1/light.py:381:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/light.py:395:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/light.py:400:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/light.py:413:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/light.py:433:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/light.py:485:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/light.py:492:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/light.py:499:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/light.py:504:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/light.py:511:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/light.py:625:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hue/v1/sensor.py + /homeassistant/components/hue/v1/sensor.py:42:7 - error: Base classes for class "GenericHueGaugeSensorEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor.py:42:7 - error: Base classes for class "GenericHueGaugeSensorEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor.py:42:7 - error: Base classes for class "GenericHueGaugeSensorEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor.py:42:7 - error: Base classes for class "GenericHueGaugeSensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor.py:42:7 - error: Base classes for class "GenericHueGaugeSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor.py:42:7 - error: Base classes for class "GenericHueGaugeSensorEntity" define variable "state_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor.py:54:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor.py:91:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor.py:100:7 - error: Base classes for class "HueBattery" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor.py:100:7 - error: Base classes for class "HueBattery" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor.py:100:7 - error: Base classes for class "HueBattery" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor.py:100:7 - error: Base classes for class "HueBattery" define variable "state_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor.py:109:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor.py:114:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/hue/v1/sensor_base.py + /homeassistant/components/hue/v1/sensor_base.py:169:7 - error: Base classes for class "GenericHueSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor_base.py:169:7 - error: Base classes for class "GenericHueSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor_base.py:169:7 - error: Base classes for class "GenericHueSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor_base.py:172:19 - error: Type "Literal[False]" is not assignable to declared type "cached_property" +   "Literal[False]" is not assignable to "cached_property[bool]" (reportAssignmentType) + /homeassistant/components/hue/v1/sensor_base.py:175:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor_base.py:209:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hue/v1/sensor_device.py + /homeassistant/components/hue/v1/sensor_device.py:33:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor_device.py:38:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v1/sensor_device.py:48:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hue/v2/binary_sensor.py + /homeassistant/components/hue/v2/binary_sensor.py:75:38 - error: Cannot access attribute "get_parent" for class "CameraMotionController" +   Attribute "get_parent" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/binary_sensor.py:75:38 - error: Cannot access attribute "get_parent" for class "ContactController" +   Attribute "get_parent" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/binary_sensor.py:75:38 - error: Cannot access attribute "get_parent" for class "MotionController" +   Attribute "get_parent" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/binary_sensor.py:75:38 - error: Cannot access attribute "get_parent" for class "EntertainmentConfigurationController" +   Attribute "get_parent" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/binary_sensor.py:75:38 - error: Cannot access attribute "get_parent" for class "TamperController" +   Attribute "get_parent" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/binary_sensor.py:75:38 - error: Cannot access attribute "get_parent" for class "SecurityAreaMotionController" +   Attribute "get_parent" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/binary_sensor.py:92:24 - error: Type "HueBridgeV1 | HueBridgeV2" is not assignable to declared type "HueBridgeV2" +   Type "HueBridgeV1 | HueBridgeV2" is not assignable to type "HueBridgeV2" +     "HueBridgeV1" is not assignable to "HueBridgeV2" (reportAssignmentType) + /homeassistant/components/hue/v2/binary_sensor.py:96:45 - error: Argument of type "SensorType" cannot be assigned to parameter "func" of type "(...) -> _T@partial" in function "__new__" +   Type "SensorType" is not assignable to type "(...) -> _T@partial" +     Type "CameraMotion" is not assignable to type "(...) -> _T@partial" (reportArgumentType) + /homeassistant/components/hue/v2/binary_sensor.py:109:32 - error: Argument of type "type[CameraMotion] | type[Contact] | type[Motion] | type[EntertainmentConfiguration] | type[Tamper] | type[GroupedMotion] | type[SecurityAreaMotion]" cannot be assigned to parameter "resource" of type "SensorType" in function "_resource_valid" +   Type "type[CameraMotion] | type[Contact] | type[Motion] | type[EntertainmentConfiguration] | type[Tamper] | type[GroupedMotion] | type[SecurityAreaMotion]" is not assignable to type "SensorType" +     Type "type[CameraMotion]" is not assignable to type "SensorType" +       Type "type[CameraMotion]" is not assignable to type "CameraMotion" +       Type "type[CameraMotion]" is not assignable to type "Contact" +       Type "type[CameraMotion]" is not assignable to type "Motion" +       Type "type[CameraMotion]" is not assignable to type "EntertainmentConfiguration" +       Type "type[CameraMotion]" is not assignable to type "Tamper" +       Type "type[CameraMotion]" is not assignable to type "GroupedMotion" + ... (reportArgumentType) + /homeassistant/components/hue/v2/binary_sensor.py:115:17 - error: Argument of type "(event_type: EventType, resource: SensorType) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(event_type: EventType, resource: SensorType) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "SensorType" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "SensorType" +         Type "dict[Unknown, Unknown]" is not assignable to type "SensorType" +           "dict[Unknown, Unknown]" is not assignable to "CameraMotion" +           "dict[Unknown, Unknown]" is not assignable to "Contact" +           "dict[Unknown, Unknown]" is not assignable to "Motion" +           "dict[Unknown, Unknown]" is not assignable to "EntertainmentConfiguration" + ... (reportArgumentType) + /homeassistant/components/hue/v2/binary_sensor.py:120:47 - error: Argument of type "type[HueMotionSensor]" cannot be assigned to parameter "sensor_class" of type "SensorType" in function "register_items" +   Type "type[HueMotionSensor]" is not assignable to type "SensorType" +     Type "type[HueMotionSensor]" is not assignable to type "CameraMotion" +     Type "type[HueMotionSensor]" is not assignable to type "Contact" +     Type "type[HueMotionSensor]" is not assignable to type "Motion" +     Type "type[HueMotionSensor]" is not assignable to type "EntertainmentConfiguration" +     Type "type[HueMotionSensor]" is not assignable to type "Tamper" +     Type "type[HueMotionSensor]" is not assignable to type "GroupedMotion" +     Type "type[HueMotionSensor]" is not assignable to type "SecurityAreaMotion" (reportArgumentType) + /homeassistant/components/hue/v2/binary_sensor.py:121:40 - error: Argument of type "type[HueMotionSensor]" cannot be assigned to parameter "sensor_class" of type "SensorType" in function "register_items" +   Type "type[HueMotionSensor]" is not assignable to type "SensorType" +     Type "type[HueMotionSensor]" is not assignable to type "CameraMotion" +     Type "type[HueMotionSensor]" is not assignable to type "Contact" +     Type "type[HueMotionSensor]" is not assignable to type "Motion" +     Type "type[HueMotionSensor]" is not assignable to type "EntertainmentConfiguration" +     Type "type[HueMotionSensor]" is not assignable to type "Tamper" +     Type "type[HueMotionSensor]" is not assignable to type "GroupedMotion" +     Type "type[HueMotionSensor]" is not assignable to type "SecurityAreaMotion" (reportArgumentType) + /homeassistant/components/hue/v2/binary_sensor.py:122:60 - error: Argument of type "type[HueEntertainmentActiveSensor]" cannot be assigned to parameter "sensor_class" of type "SensorType" in function "register_items" +   Type "type[HueEntertainmentActiveSensor]" is not assignable to type "SensorType" +     Type "type[HueEntertainmentActiveSensor]" is not assignable to type "CameraMotion" +     Type "type[HueEntertainmentActiveSensor]" is not assignable to type "Contact" +     Type "type[HueEntertainmentActiveSensor]" is not assignable to type "Motion" +     Type "type[HueEntertainmentActiveSensor]" is not assignable to type "EntertainmentConfiguration" +     Type "type[HueEntertainmentActiveSensor]" is not assignable to type "Tamper" +     Type "type[HueEntertainmentActiveSensor]" is not assignable to type "GroupedMotion" +     Type "type[HueEntertainmentActiveSensor]" is not assignable to type "SecurityAreaMotion" (reportArgumentType) + /homeassistant/components/hue/v2/binary_sensor.py:123:41 - error: Argument of type "type[HueContactSensor]" cannot be assigned to parameter "sensor_class" of type "SensorType" in function "register_items" +   Type "type[HueContactSensor]" is not assignable to type "SensorType" +     Type "type[HueContactSensor]" is not assignable to type "CameraMotion" +     Type "type[HueContactSensor]" is not assignable to type "Contact" +     Type "type[HueContactSensor]" is not assignable to type "Motion" +     Type "type[HueContactSensor]" is not assignable to type "EntertainmentConfiguration" +     Type "type[HueContactSensor]" is not assignable to type "Tamper" +     Type "type[HueContactSensor]" is not assignable to type "GroupedMotion" +     Type "type[HueContactSensor]" is not assignable to type "SecurityAreaMotion" (reportArgumentType) + /homeassistant/components/hue/v2/binary_sensor.py:124:40 - error: Argument of type "type[HueTamperSensor]" cannot be assigned to parameter "sensor_class" of type "SensorType" in function "register_items" +   Type "type[HueTamperSensor]" is not assignable to type "SensorType" +     Type "type[HueTamperSensor]" is not assignable to type "CameraMotion" +     Type "type[HueTamperSensor]" is not assignable to type "Contact" +     Type "type[HueTamperSensor]" is not assignable to type "Motion" +     Type "type[HueTamperSensor]" is not assignable to type "EntertainmentConfiguration" +     Type "type[HueTamperSensor]" is not assignable to type "Tamper" +     Type "type[HueTamperSensor]" is not assignable to type "GroupedMotion" +     Type "type[HueTamperSensor]" is not assignable to type "SecurityAreaMotion" (reportArgumentType) + /homeassistant/components/hue/v2/binary_sensor.py:125:48 - error: Argument of type "type[HueGroupedMotionSensor]" cannot be assigned to parameter "sensor_class" of type "SensorType" in function "register_items" +   Type "type[HueGroupedMotionSensor]" is not assignable to type "SensorType" +     Type "type[HueGroupedMotionSensor]" is not assignable to type "CameraMotion" +     Type "type[HueGroupedMotionSensor]" is not assignable to type "Contact" +     Type "type[HueGroupedMotionSensor]" is not assignable to type "Motion" +     Type "type[HueGroupedMotionSensor]" is not assignable to type "EntertainmentConfiguration" +     Type "type[HueGroupedMotionSensor]" is not assignable to type "Tamper" +     Type "type[HueGroupedMotionSensor]" is not assignable to type "GroupedMotion" +     Type "type[HueGroupedMotionSensor]" is not assignable to type "SecurityAreaMotion" (reportArgumentType) + /homeassistant/components/hue/v2/binary_sensor.py:126:54 - error: Argument of type "type[HueMotionAwareSensor]" cannot be assigned to parameter "sensor_class" of type "SensorType" in function "register_items" +   Type "type[HueMotionAwareSensor]" is not assignable to type "SensorType" +     Type "type[HueMotionAwareSensor]" is not assignable to type "CameraMotion" +     Type "type[HueMotionAwareSensor]" is not assignable to type "Contact" +     Type "type[HueMotionAwareSensor]" is not assignable to type "Motion" +     Type "type[HueMotionAwareSensor]" is not assignable to type "EntertainmentConfiguration" +     Type "type[HueMotionAwareSensor]" is not assignable to type "Tamper" +     Type "type[HueMotionAwareSensor]" is not assignable to type "GroupedMotion" +     Type "type[HueMotionAwareSensor]" is not assignable to type "SecurityAreaMotion" (reportArgumentType) + /homeassistant/components/hue/v2/binary_sensor.py:130:7 - error: Base classes for class "HueMotionSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/binary_sensor.py:143:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/binary_sensor.py:159:5 - error: "controller" overrides symbol of same name in class "HueMotionSensor" +   Variable is mutable so its type is invariant +     Override type "GroupedMotionController" is not the same as base type "CameraMotionController | MotionController" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/binary_sensor.py:160:5 - error: "resource" overrides symbol of same name in class "HueMotionSensor" +   Variable is mutable so its type is invariant +     Override type "GroupedMotion" is not the same as base type "CameraMotion | Motion" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/binary_sensor.py:169:46 - error: Argument of type "GroupedMotion" cannot be assigned to parameter "resource" of type "HueResource" in function "__init__" +   Type "GroupedMotion" is not assignable to type "HueResource" +     "GroupedMotion" is not assignable to "Light" +     "GroupedMotion" is not assignable to "DevicePower" +     "GroupedMotion" is not assignable to "GroupedLight" +     "GroupedMotion" is not assignable to "LightLevel" +     "GroupedMotion" is not assignable to "Motion" (reportArgumentType) + /homeassistant/components/hue/v2/binary_sensor.py:174:42 - error: "id" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/binary_sensor.py:189:5 - error: "controller" overrides symbol of same name in class "HueMotionSensor" +   Variable is mutable so its type is invariant +     Override type "SecurityAreaMotionController" is not the same as base type "CameraMotionController | MotionController" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/binary_sensor.py:190:5 - error: "resource" overrides symbol of same name in class "HueMotionSensor" +   Variable is mutable so its type is invariant +     Override type "SecurityAreaMotion" is not the same as base type "CameraMotion | Motion" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/binary_sensor.py:199:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/binary_sensor.py:210:46 - error: Argument of type "SecurityAreaMotion" cannot be assigned to parameter "resource" of type "HueResource" in function "__init__" +   Type "SecurityAreaMotion" is not assignable to type "HueResource" +     "SecurityAreaMotion" is not assignable to "Light" +     "SecurityAreaMotion" is not assignable to "DevicePower" +     "SecurityAreaMotion" is not assignable to "GroupedLight" +     "SecurityAreaMotion" is not assignable to "LightLevel" +     "SecurityAreaMotion" is not assignable to "Motion" (reportArgumentType) + /homeassistant/components/hue/v2/binary_sensor.py:216:22 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/hue/v2/binary_sensor.py:226:36 - error: Cannot access attribute "subscribe" for class "Config" +   Attribute "subscribe" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/binary_sensor.py:226:36 - error: "subscribe" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/binary_sensor.py:227:17 - error: Argument of type "(event_type: EventType, resource: HueResource) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(event_type: EventType, resource: HueResource) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "HueResource" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "HueResource" +         Type "dict[Unknown, Unknown]" is not assignable to type "HueResource" +           "dict[Unknown, Unknown]" is not assignable to "Light" +           "dict[Unknown, Unknown]" is not assignable to "DevicePower" +           "dict[Unknown, Unknown]" is not assignable to "GroupedLight" +           "dict[Unknown, Unknown]" is not assignable to "LightLevel" + ... (reportArgumentType) + /homeassistant/components/hue/v2/binary_sensor.py:233:7 - error: Base classes for class "HueEntertainmentActiveSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/binary_sensor.py:246:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/binary_sensor.py:251:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/binary_sensor.py:257:7 - error: Base classes for class "HueContactSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/binary_sensor.py:270:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/binary_sensor.py:275:45 - error: "state" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/binary_sensor.py:279:7 - error: Base classes for class "HueTamperSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/binary_sensor.py:293:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hue/v2/device.py + /homeassistant/components/hue/v2/device.py:38:24 - error: Type "HueBridgeV1 | HueBridgeV2" is not assignable to declared type "HueBridgeV2" +   Type "HueBridgeV1 | HueBridgeV2" is not assignable to type "HueBridgeV2" +     "HueBridgeV1" is not assignable to "HueBridgeV2" (reportAssignmentType) + /homeassistant/components/hue/v2/device.py:102:33 - error: Argument of type "type[Device]" cannot be assigned to parameter "hue_resource" of type "Device | Room | Zone | ServiceGroup" in function "add_device" +   Type "type[Device]" is not assignable to type "Device | Room | Zone | ServiceGroup" +     Type "type[Device]" is not assignable to type "Device" +     Type "type[Device]" is not assignable to type "Room" +     Type "type[Device]" is not assignable to type "Zone" +     Type "type[Device]" is not assignable to type "ServiceGroup" (reportArgumentType) + /homeassistant/components/hue/v2/device.py:103:34 - error: Argument of type "type[Room]" cannot be assigned to parameter "hue_resource" of type "Device | Room | Zone | ServiceGroup" in function "add_device" +   Type "type[Room]" is not assignable to type "Device | Room | Zone | ServiceGroup" +     Type "type[Room]" is not assignable to type "Device" +     Type "type[Room]" is not assignable to type "Room" +     Type "type[Room]" is not assignable to type "Zone" +     Type "type[Room]" is not assignable to type "ServiceGroup" (reportArgumentType) + /homeassistant/components/hue/v2/device.py:104:34 - error: Argument of type "type[Zone]" cannot be assigned to parameter "hue_resource" of type "Device | Room | Zone | ServiceGroup" in function "add_device" +   Type "type[Zone]" is not assignable to type "Device | Room | Zone | ServiceGroup" +     Type "type[Zone]" is not assignable to type "Device" +     Type "type[Zone]" is not assignable to type "Room" +     Type "type[Zone]" is not assignable to type "Zone" +     Type "type[Zone]" is not assignable to type "ServiceGroup" (reportArgumentType) + /homeassistant/components/hue/v2/device.py:105:34 - error: Argument of type "type[ServiceGroup]" cannot be assigned to parameter "hue_resource" of type "Device | Room | Zone | ServiceGroup" in function "add_device" +   Type "type[ServiceGroup]" is not assignable to type "Device | Room | Zone | ServiceGroup" +     Type "type[ServiceGroup]" is not assignable to type "Device" +     Type "type[ServiceGroup]" is not assignable to type "Room" +     Type "type[ServiceGroup]" is not assignable to type "Zone" +     Type "type[ServiceGroup]" is not assignable to type "ServiceGroup" (reportArgumentType) + /homeassistant/components/hue/v2/device.py:113:52 - error: Argument of type "(evt_type: EventType, hue_resource: Device | Room | Zone | ServiceGroup) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(evt_type: EventType, hue_resource: Device | Room | Zone | ServiceGroup) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "Device | Room | Zone | ServiceGroup" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "Device | Room | Zone | ServiceGroup" +         Type "dict[Unknown, Unknown]" is not assignable to type "Device | Room | Zone | ServiceGroup" +           "dict[Unknown, Unknown]" is not assignable to "Device" +           "dict[Unknown, Unknown]" is not assignable to "Room" +           "dict[Unknown, Unknown]" is not assignable to "Zone" +           "dict[Unknown, Unknown]" is not assignable to "ServiceGroup" (reportArgumentType) + /homeassistant/components/hue/v2/device.py:114:53 - error: Argument of type "(evt_type: EventType, hue_resource: Device | Room | Zone | ServiceGroup) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(evt_type: EventType, hue_resource: Device | Room | Zone | ServiceGroup) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "Device | Room | Zone | ServiceGroup" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "Device | Room | Zone | ServiceGroup" +         Type "dict[Unknown, Unknown]" is not assignable to type "Device | Room | Zone | ServiceGroup" +           "dict[Unknown, Unknown]" is not assignable to "Device" +           "dict[Unknown, Unknown]" is not assignable to "Room" +           "dict[Unknown, Unknown]" is not assignable to "Zone" +           "dict[Unknown, Unknown]" is not assignable to "ServiceGroup" (reportArgumentType) + /homeassistant/components/hue/v2/device.py:115:53 - error: Argument of type "(evt_type: EventType, hue_resource: Device | Room | Zone | ServiceGroup) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(evt_type: EventType, hue_resource: Device | Room | Zone | ServiceGroup) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "Device | Room | Zone | ServiceGroup" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "Device | Room | Zone | ServiceGroup" +         Type "dict[Unknown, Unknown]" is not assignable to type "Device | Room | Zone | ServiceGroup" +           "dict[Unknown, Unknown]" is not assignable to "Device" +           "dict[Unknown, Unknown]" is not assignable to "Room" +           "dict[Unknown, Unknown]" is not assignable to "Zone" +           "dict[Unknown, Unknown]" is not assignable to "ServiceGroup" (reportArgumentType) + /homeassistant/components/hue/v2/device.py:116:62 - error: Argument of type "(evt_type: EventType, hue_resource: Device | Room | Zone | ServiceGroup) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(evt_type: EventType, hue_resource: Device | Room | Zone | ServiceGroup) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "Device | Room | Zone | ServiceGroup" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "Device | Room | Zone | ServiceGroup" +         Type "dict[Unknown, Unknown]" is not assignable to type "Device | Room | Zone | ServiceGroup" +           "dict[Unknown, Unknown]" is not assignable to "Device" +           "dict[Unknown, Unknown]" is not assignable to "Room" +           "dict[Unknown, Unknown]" is not assignable to "Zone" +           "dict[Unknown, Unknown]" is not assignable to "ServiceGroup" (reportArgumentType) +/homeassistant/components/hue/v2/device_trigger.py + /homeassistant/components/hue/v2/device_trigger.py:88:24 - error: Type "HueBridgeV1 | HueBridgeV2" is not assignable to declared type "HueBridgeV2" +   Type "HueBridgeV1 | HueBridgeV2" is not assignable to type "HueBridgeV2" +     "HueBridgeV1" is not assignable to "HueBridgeV2" (reportAssignmentType) + /homeassistant/components/hue/v2/device_trigger.py:94:16 - error: Argument of type "str | None" cannot be assigned to parameter "id" of type "str" in function "__getitem__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/hue/v2/device_trigger.py:96:45 - error: Argument of type "str | None" cannot be assigned to parameter "id" of type "str" in function "get_sensors" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/hue/v2/device_trigger.py:105:44 - error: Cannot access attribute "metadata" for class "DevicePower" +   Attribute "metadata" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/device_trigger.py:105:44 - error: Cannot access attribute "metadata" for class "CameraMotion" +   Attribute "metadata" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/device_trigger.py:105:44 - error: Cannot access attribute "metadata" for class "Contact" +   Attribute "metadata" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/device_trigger.py:105:44 - error: Cannot access attribute "metadata" for class "ConvenienceAreaMotion" +   Attribute "metadata" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/device_trigger.py:105:44 - error: Cannot access attribute "metadata" for class "GeofenceClient" +   Attribute "metadata" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/device_trigger.py:105:44 - error: Cannot access attribute "metadata" for class "GroupedLightLevel" +   Attribute "metadata" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/device_trigger.py:105:44 - error: Cannot access attribute "metadata" for class "GroupedMotion" +   Attribute "metadata" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/device_trigger.py:105:44 - error: Cannot access attribute "metadata" for class "LightLevel" +   Attribute "metadata" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/device_trigger.py:105:44 - error: Cannot access attribute "metadata" for class "Motion" +   Attribute "metadata" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/device_trigger.py:105:44 - error: Cannot access attribute "metadata" for class "RelativeRotary" +   Attribute "metadata" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/device_trigger.py:105:44 - error: Cannot access attribute "metadata" for class "SecurityAreaMotion" +   Attribute "metadata" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/device_trigger.py:105:44 - error: Cannot access attribute "metadata" for class "Tamper" +   Attribute "metadata" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/device_trigger.py:105:44 - error: Cannot access attribute "metadata" for class "Temperature" +   Attribute "metadata" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/device_trigger.py:105:44 - error: Cannot access attribute "metadata" for class "ZigbeeConnectivity" +   Attribute "metadata" is unknown (reportAttributeAccessIssue) +/homeassistant/components/hue/v2/entity.py + /homeassistant/components/hue/v2/entity.py:63:57 - error: Cannot access attribute "bridge" for class "Config" +   Attribute "bridge" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/entity.py:63:57 - error: "bridge" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/entity.py:79:17 - error: Argument of type "(event_type: EventType, resource: HueResource) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(event_type: EventType, resource: HueResource) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "HueResource" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "HueResource" +         Type "dict[Unknown, Unknown]" is not assignable to type "HueResource" +           "dict[Unknown, Unknown]" is not assignable to "Light" +           "dict[Unknown, Unknown]" is not assignable to "DevicePower" +           "dict[Unknown, Unknown]" is not assignable to "GroupedLight" +           "dict[Unknown, Unknown]" is not assignable to "LightLevel" + ... (reportArgumentType) + /homeassistant/components/hue/v2/entity.py:81:17 - error: Argument of type "tuple[Literal[EventType.RESOURCE_UPDATED], Literal[EventType.RESOURCE_DELETED]]" cannot be assigned to parameter "event_filter" of type "EventType | tuple[EventType] | None" in function "subscribe" +   Type "tuple[Literal[EventType.RESOURCE_UPDATED], Literal[EventType.RESOURCE_DELETED]]" is not assignable to type "EventType | tuple[EventType] | None" +     "tuple[Literal[EventType.RESOURCE_UPDATED], Literal[EventType.RESOURCE_DELETED]]" is not assignable to "EventType" +     "tuple[Literal[EventType.RESOURCE_UPDATED], Literal[EventType.RESOURCE_DELETED]]" is not assignable to "tuple[EventType]" +       Tuple size mismatch; expected 1 but received 2 +     "tuple[Literal[EventType.RESOURCE_UPDATED], Literal[EventType.RESOURCE_DELETED]]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/hue/v2/entity.py:88:29 - error: Cannot access attribute "devices" for class "HueBridgeV1" +   Attribute "devices" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/entity.py:89:17 - error: Argument of type "(event_type: EventType, resource: HueResource) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(event_type: EventType, resource: HueResource) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "HueResource" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "HueResource" +         Type "dict[Unknown, Unknown]" is not assignable to type "HueResource" +           "dict[Unknown, Unknown]" is not assignable to "Light" +           "dict[Unknown, Unknown]" is not assignable to "DevicePower" +           "dict[Unknown, Unknown]" is not assignable to "GroupedLight" +           "dict[Unknown, Unknown]" is not assignable to "LightLevel" + ... (reportArgumentType) + /homeassistant/components/hue/v2/entity.py:95:38 - error: Cannot access attribute "devices" for class "HueBridgeV1" +   Attribute "devices" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/entity.py:97:41 - error: Cannot access attribute "zigbee_connectivity" for class "Sensors" +   Attribute "zigbee_connectivity" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/entity.py:97:41 - error: "zigbee_connectivity" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/entity.py:98:21 - error: Argument of type "(event_type: EventType, resource: HueResource) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(event_type: EventType, resource: HueResource) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "HueResource" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "HueResource" +         Type "dict[Unknown, Unknown]" is not assignable to type "HueResource" +           "dict[Unknown, Unknown]" is not assignable to "Light" +           "dict[Unknown, Unknown]" is not assignable to "DevicePower" +           "dict[Unknown, Unknown]" is not assignable to "GroupedLight" +           "dict[Unknown, Unknown]" is not assignable to "LightLevel" + ... (reportArgumentType) + /homeassistant/components/hue/v2/entity.py:105:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/entity.py:116:38 - error: Cannot access attribute "devices" for class "HueBridgeV1" +   Attribute "devices" is unknown (reportAttributeAccessIssue) +/homeassistant/components/hue/v2/group.py + /homeassistant/components/hue/v2/group.py:49:24 - error: Type "HueBridgeV1 | HueBridgeV2" is not assignable to declared type "HueBridgeV2" +   Type "HueBridgeV1 | HueBridgeV2" is not assignable to type "HueBridgeV2" +     "HueBridgeV1" is not assignable to "HueBridgeV2" (reportAssignmentType) + /homeassistant/components/hue/v2/group.py:62:12 - error: "group" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/hue/v2/group.py:65:51 - error: "group" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/hue/v2/group.py:74:61 - error: Argument of type "type[GroupedLight]" cannot be assigned to parameter "resource" of type "GroupedLight" in function "async_add_light" +   Type "type[GroupedLight]" is not assignable to type "GroupedLight" (reportArgumentType) + /homeassistant/components/hue/v2/group.py:79:13 - error: Argument of type "(event_type: EventType, resource: GroupedLight) -> CoroutineType[Any, Any, None]" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(event_type: EventType, resource: GroupedLight) -> CoroutineType[Any, Any, None]" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "GroupedLight" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "GroupedLight" +         "dict[Unknown, Unknown]" is not assignable to "GroupedLight" +     Function return type "CoroutineType[Any, Any, None]" is incompatible with type "None" +       "CoroutineType[Any, Any, None]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/hue/v2/group.py:85:7 - error: Base classes for class "GroupedHueLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/group.py:99:40 - error: Cannot access attribute "grouped_light" for class "Groups" +   Attribute "grouped_light" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/group.py:99:40 - error: "grouped_light" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/group.py:104:33 - error: Cannot assign to attribute "api" for class "GroupedHueLight*" +   Type "HueBridgeV1 | HueBridgeV2" is not assignable to type "HueBridgeV2" +     "HueBridgeV1" is not assignable to "HueBridgeV2" (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/group.py:123:39 - error: Argument of type "(event_type: EventType, resource: HueResource) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(event_type: EventType, resource: HueResource) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "HueResource" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "HueResource" +         Type "dict[Unknown, Unknown]" is not assignable to type "HueResource" +           "dict[Unknown, Unknown]" is not assignable to "Light" +           "dict[Unknown, Unknown]" is not assignable to "DevicePower" +           "dict[Unknown, Unknown]" is not assignable to "GroupedLight" +           "dict[Unknown, Unknown]" is not assignable to "LightLevel" + ... (reportArgumentType) + /homeassistant/components/hue/v2/group.py:132:43 - error: Argument of type "(event_type: EventType, resource: HueResource) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(event_type: EventType, resource: HueResource) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "HueResource" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "HueResource" +         Type "dict[Unknown, Unknown]" is not assignable to type "HueResource" +           "dict[Unknown, Unknown]" is not assignable to "Light" +           "dict[Unknown, Unknown]" is not assignable to "DevicePower" +           "dict[Unknown, Unknown]" is not assignable to "GroupedLight" +           "dict[Unknown, Unknown]" is not assignable to "LightLevel" + ... (reportArgumentType) + /homeassistant/components/hue/v2/group.py:132:63 - error: Argument of type "tuple[str | Unknown, ...]" cannot be assigned to parameter "id_filter" of type "str | tuple[str] | None" in function "subscribe" +   Type "tuple[str | Unknown, ...]" is not assignable to type "str | tuple[str] | None" +     "tuple[str | Unknown, ...]" is not assignable to "str" +     "tuple[str | Unknown, ...]" is not assignable to "tuple[str]" +       Tuple size mismatch; expected 1 but received indeterminate +     "tuple[str | Unknown, ...]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/hue/v2/group.py:136:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/group.py:138:33 - error: "on" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/group.py:141:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/group.py:150:13 - error: Argument of type "tuple[str | Unknown, ...]" cannot be assigned to parameter "resource_ids" of type "tuple[str]" in function "_get_names_and_entity_ids_for_resource_ids" +   "tuple[str | Unknown, ...]" is not assignable to "tuple[str]" +     Tuple size mismatch; expected 1 but received indeterminate (reportArgumentType) + /homeassistant/components/hue/v2/group.py:372:69 - error: "metadata" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/hue/v2/hue_event.py + /homeassistant/components/hue/v2/hue_event.py:33:24 - error: Type "HueBridgeV1 | HueBridgeV2" is not assignable to declared type "HueBridgeV2" +   Type "HueBridgeV1 | HueBridgeV2" is not assignable to type "HueBridgeV2" +     "HueBridgeV1" is not assignable to "HueBridgeV2" (reportAssignmentType) + /homeassistant/components/hue/v2/hue_event.py:50:76 - error: "id" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/hue_event.py:55:44 - error: "metadata" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/hue_event.py:58:58 - error: "event" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/hue_event.py:66:13 - error: Argument of type "(evt_type: EventType, hue_resource: Button) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(evt_type: EventType, hue_resource: Button) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "Button" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "Button" +         "dict[Unknown, Unknown]" is not assignable to "Button" (reportArgumentType) + /homeassistant/components/hue/v2/hue_event.py:76:76 - error: "id" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/hue_event.py:82:53 - error: "rotary_report" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/hue_event.py:82:67 - error: "action" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/hue_event.py:83:56 - error: "rotary_report" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/hue_event.py:83:70 - error: "rotation" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/hue_event.py:84:57 - error: "rotary_report" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/hue_event.py:84:71 - error: "rotation" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/hue_event.py:85:54 - error: "rotary_report" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/hue_event.py:85:68 - error: "rotation" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/hue_event.py:92:13 - error: Argument of type "(evt_type: EventType, hue_resource: RelativeRotary) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(evt_type: EventType, hue_resource: RelativeRotary) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "RelativeRotary" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "RelativeRotary" +         "dict[Unknown, Unknown]" is not assignable to "RelativeRotary" (reportArgumentType) +/homeassistant/components/hue/v2/light.py + /homeassistant/components/hue/v2/light.py:58:24 - error: Type "HueBridgeV1 | HueBridgeV2" is not assignable to declared type "HueBridgeV2" +   Type "HueBridgeV1 | HueBridgeV2" is not assignable to type "HueBridgeV2" +     "HueBridgeV1" is not assignable to "HueBridgeV2" (reportAssignmentType) + /homeassistant/components/hue/v2/light.py:68:42 - error: Argument of type "type[Light]" cannot be assigned to parameter "resource" of type "Light" in function "__call__" +   Type "type[Light]" is not assignable to type "Light" (reportArgumentType) + /homeassistant/components/hue/v2/light.py:71:30 - error: Argument of type "(event_type: EventType, resource: Light) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(event_type: EventType, resource: Light) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "Light" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "Light" +         "dict[Unknown, Unknown]" is not assignable to "Light" (reportArgumentType) + /homeassistant/components/hue/v2/light.py:76:7 - error: Base classes for class "HueLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/light.py:128:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/light.py:136:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/light.py:141:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/light.py:161:24 - error: "product_data" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/light.py:162:52 - error: "mirek_valid" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/light.py:166:9 - error: "xy_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/light.py:176:65 - error: Argument of type "int | None" cannot be assigned to parameter "mired_temperature" of type "float" in function "color_temperature_mired_to_kelvin" +   Type "int | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportArgumentType) + /homeassistant/components/hue/v2/light.py:207:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/light.py:211:48 - error: "status" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/light.py:215:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hue/v2/sensor.py + /homeassistant/components/hue/v2/sensor.py:71:23 - error: Cannot access attribute "children" for class "Bridge" +   Attribute "children" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:71:23 - error: Cannot access attribute "children" for class "Entertainment" +   Attribute "children" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:71:23 - error: Cannot access attribute "children" for class "EntertainmentConfiguration" +   Attribute "children" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:71:23 - error: Cannot access attribute "children" for class "MotionAreaConfiguration" +   Attribute "children" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:71:23 - error: Cannot access attribute "children" for class "GroupedLight" +   Attribute "children" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:84:24 - error: Type "HueBridgeV1 | HueBridgeV2" is not assignable to declared type "HueBridgeV2" +   Type "HueBridgeV1 | HueBridgeV2" is not assignable to type "HueBridgeV2" +     "HueBridgeV1" is not assignable to "HueBridgeV2" (reportAssignmentType) + /homeassistant/components/hue/v2/sensor.py:89:38 - error: Argument of type "SensorType" cannot be assigned to parameter "func" of type "(...) -> _T@partial" in function "__new__" +   Type "SensorType" is not assignable to type "(...) -> _T@partial" +     Type "DevicePower" is not assignable to type "(...) -> _T@partial" (reportArgumentType) + /homeassistant/components/hue/v2/sensor.py:102:32 - error: Argument of type "type[DevicePower] | type[LightLevel] | type[Temperature] | type[ZigbeeConnectivity] | type[GroupedLightLevel]" cannot be assigned to parameter "resource" of type "SensorType" in function "_resource_valid" +   Type "type[DevicePower] | type[LightLevel] | type[Temperature] | type[ZigbeeConnectivity] | type[GroupedLightLevel]" is not assignable to type "SensorType" +     Type "type[DevicePower]" is not assignable to type "SensorType" +       Type "type[DevicePower]" is not assignable to type "DevicePower" +       Type "type[DevicePower]" is not assignable to type "LightLevel" +       Type "type[DevicePower]" is not assignable to type "Temperature" +       Type "type[DevicePower]" is not assignable to type "ZigbeeConnectivity" +       Type "type[DevicePower]" is not assignable to type "GroupedLightLevel" (reportArgumentType) + /homeassistant/components/hue/v2/sensor.py:108:17 - error: Argument of type "(event_type: EventType, resource: SensorType) -> None" cannot be assigned to parameter "callback" of type "EventCallBackType" in function "subscribe" +   Type "(event_type: EventType, resource: SensorType) -> None" is not assignable to type "EventCallBackType" +     Parameter 2: type "dict[Unknown, Unknown] | None" is incompatible with type "SensorType" +       Type "dict[Unknown, Unknown] | None" is not assignable to type "SensorType" +         Type "dict[Unknown, Unknown]" is not assignable to type "SensorType" +           "dict[Unknown, Unknown]" is not assignable to "DevicePower" +           "dict[Unknown, Unknown]" is not assignable to "LightLevel" +           "dict[Unknown, Unknown]" is not assignable to "Temperature" +           "dict[Unknown, Unknown]" is not assignable to "ZigbeeConnectivity" + ... (reportArgumentType) + /homeassistant/components/hue/v2/sensor.py:113:43 - error: Argument of type "type[HueTemperatureSensor]" cannot be assigned to parameter "sensor_class" of type "SensorType" in function "register_items" +   Type "type[HueTemperatureSensor]" is not assignable to type "SensorType" +     Type "type[HueTemperatureSensor]" is not assignable to type "DevicePower" +     Type "type[HueTemperatureSensor]" is not assignable to type "LightLevel" +     Type "type[HueTemperatureSensor]" is not assignable to type "Temperature" +     Type "type[HueTemperatureSensor]" is not assignable to type "ZigbeeConnectivity" +     Type "type[HueTemperatureSensor]" is not assignable to type "GroupedLightLevel" (reportArgumentType) + /homeassistant/components/hue/v2/sensor.py:114:43 - error: Argument of type "type[HueLightLevelSensor]" cannot be assigned to parameter "sensor_class" of type "SensorType" in function "register_items" +   Type "type[HueLightLevelSensor]" is not assignable to type "SensorType" +     Type "type[HueLightLevelSensor]" is not assignable to type "DevicePower" +     Type "type[HueLightLevelSensor]" is not assignable to type "LightLevel" +     Type "type[HueLightLevelSensor]" is not assignable to type "Temperature" +     Type "type[HueLightLevelSensor]" is not assignable to type "ZigbeeConnectivity" +     Type "type[HueLightLevelSensor]" is not assignable to type "GroupedLightLevel" (reportArgumentType) + /homeassistant/components/hue/v2/sensor.py:115:44 - error: Argument of type "type[HueBatterySensor]" cannot be assigned to parameter "sensor_class" of type "SensorType" in function "register_items" +   Type "type[HueBatterySensor]" is not assignable to type "SensorType" +     Type "type[HueBatterySensor]" is not assignable to type "DevicePower" +     Type "type[HueBatterySensor]" is not assignable to type "LightLevel" +     Type "type[HueBatterySensor]" is not assignable to type "Temperature" +     Type "type[HueBatterySensor]" is not assignable to type "ZigbeeConnectivity" +     Type "type[HueBatterySensor]" is not assignable to type "GroupedLightLevel" (reportArgumentType) + /homeassistant/components/hue/v2/sensor.py:116:51 - error: Argument of type "type[HueZigbeeConnectivitySensor]" cannot be assigned to parameter "sensor_class" of type "SensorType" in function "register_items" +   Type "type[HueZigbeeConnectivitySensor]" is not assignable to type "SensorType" +     Type "type[HueZigbeeConnectivitySensor]" is not assignable to type "DevicePower" +     Type "type[HueZigbeeConnectivitySensor]" is not assignable to type "LightLevel" +     Type "type[HueZigbeeConnectivitySensor]" is not assignable to type "Temperature" +     Type "type[HueZigbeeConnectivitySensor]" is not assignable to type "ZigbeeConnectivity" +     Type "type[HueZigbeeConnectivitySensor]" is not assignable to type "GroupedLightLevel" (reportArgumentType) + /homeassistant/components/hue/v2/sensor.py:117:53 - error: Argument of type "type[HueGroupedLightLevelSensor]" cannot be assigned to parameter "sensor_class" of type "SensorType" in function "register_items" +   Type "type[HueGroupedLightLevelSensor]" is not assignable to type "SensorType" +     Type "type[HueGroupedLightLevelSensor]" is not assignable to type "DevicePower" +     Type "type[HueGroupedLightLevelSensor]" is not assignable to type "LightLevel" +     Type "type[HueGroupedLightLevelSensor]" is not assignable to type "Temperature" +     Type "type[HueGroupedLightLevelSensor]" is not assignable to type "ZigbeeConnectivity" +     Type "type[HueGroupedLightLevelSensor]" is not assignable to type "GroupedLightLevel" (reportArgumentType) + /homeassistant/components/hue/v2/sensor.py:121:7 - error: Base classes for class "HueSensorBase" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/sensor.py:131:46 - error: Argument of type "SensorType" cannot be assigned to parameter "resource" of type "HueResource" in function "__init__" +   Type "SensorType" is not assignable to type "HueResource" +     Type "GroupedLightLevel" is not assignable to type "HueResource" +       "GroupedLightLevel" is not assignable to "Light" +       "GroupedLightLevel" is not assignable to "DevicePower" +       "GroupedLightLevel" is not assignable to "GroupedLight" +       "GroupedLightLevel" is not assignable to "LightLevel" +       "GroupedLightLevel" is not assignable to "Motion" (reportArgumentType) + /homeassistant/components/hue/v2/sensor.py:149:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/sensor.py:151:16 - error: No overloads for "round" match the provided arguments (reportCallIssue) + /homeassistant/components/hue/v2/sensor.py:151:22 - error: Argument of type "Unknown | float | None" cannot be assigned to parameter "number" of type "_SupportsRound2[_T@round]" in function "round" +   Type "Unknown | float | None" is not assignable to type "_SupportsRound2[float]" +     "None" is incompatible with protocol "_SupportsRound2[float]" +       "__round__" is not present (reportArgumentType) + /homeassistant/components/hue/v2/sensor.py:151:36 - error: Cannot access attribute "temperature" for class "DevicePower" +   Attribute "temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:151:36 - error: Cannot access attribute "temperature" for class "LightLevel" +   Attribute "temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:151:36 - error: Cannot access attribute "temperature" for class "ZigbeeConnectivity" +   Attribute "temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:151:36 - error: Cannot access attribute "temperature" for class "GroupedLightLevel" +   Attribute "temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:167:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/sensor.py:173:28 - error: Operator "-" not supported for "None" (reportOptionalOperand) + /homeassistant/components/hue/v2/sensor.py:173:42 - error: Cannot access attribute "light" for class "DevicePower" +   Attribute "light" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:173:42 - error: Cannot access attribute "light" for class "Temperature" +   Attribute "light" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:173:42 - error: Cannot access attribute "light" for class "ZigbeeConnectivity" +   Attribute "light" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:176:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/sensor.py:179:42 - error: Cannot access attribute "light" for class "DevicePower" +   Attribute "light" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:179:42 - error: Cannot access attribute "light" for class "Temperature" +   Attribute "light" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:179:42 - error: Cannot access attribute "light" for class "ZigbeeConnectivity" +   Attribute "light" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:202:29 - error: Cannot access attribute "get" for class "Groups" +   Attribute "get" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:202:29 - error: "get" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/sensor.py:202:58 - error: Cannot access attribute "get" for class "Config" +   Attribute "get" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:202:58 - error: "get" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/sensor.py:204:42 - error: "id" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hue/v2/sensor.py:222:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/sensor.py:224:16 - error: Type "int | Unknown | None" is not assignable to return type "int" +   Type "int | Unknown | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportReturnType) + /homeassistant/components/hue/v2/sensor.py:224:30 - error: Cannot access attribute "power_state" for class "LightLevel" +   Attribute "power_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:224:30 - error: Cannot access attribute "power_state" for class "Temperature" +   Attribute "power_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:224:30 - error: Cannot access attribute "power_state" for class "ZigbeeConnectivity" +   Attribute "power_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:224:30 - error: Cannot access attribute "power_state" for class "GroupedLightLevel" +   Attribute "power_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:227:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/sensor.py:229:26 - error: Cannot access attribute "power_state" for class "LightLevel" +   Attribute "power_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:229:26 - error: Cannot access attribute "power_state" for class "Temperature" +   Attribute "power_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:229:26 - error: Cannot access attribute "power_state" for class "ZigbeeConnectivity" +   Attribute "power_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:229:26 - error: Cannot access attribute "power_state" for class "GroupedLightLevel" +   Attribute "power_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:231:48 - error: Cannot access attribute "power_state" for class "LightLevel" +   Attribute "power_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:231:48 - error: Cannot access attribute "power_state" for class "Temperature" +   Attribute "power_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:231:48 - error: Cannot access attribute "power_state" for class "ZigbeeConnectivity" +   Attribute "power_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:231:48 - error: Cannot access attribute "power_state" for class "GroupedLightLevel" +   Attribute "power_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:254:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/sensor.py:256:30 - error: Cannot access attribute "status" for class "DevicePower" +   Attribute "status" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:256:30 - error: Cannot access attribute "status" for class "LightLevel" +   Attribute "status" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:256:30 - error: Cannot access attribute "status" for class "Temperature" +   Attribute "status" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:256:30 - error: Cannot access attribute "status" for class "GroupedLightLevel" +   Attribute "status" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:259:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hue/v2/sensor.py:261:46 - error: Cannot access attribute "mac_address" for class "DevicePower" +   Attribute "mac_address" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:261:46 - error: Cannot access attribute "mac_address" for class "LightLevel" +   Attribute "mac_address" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:261:46 - error: Cannot access attribute "mac_address" for class "Temperature" +   Attribute "mac_address" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hue/v2/sensor.py:261:46 - error: Cannot access attribute "mac_address" for class "GroupedLightLevel" +   Attribute "mac_address" is unknown (reportAttributeAccessIssue) +/homeassistant/components/huisbaasje/sensor.py + /homeassistant/components/huisbaasje/sensor.py:243:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "EnergyFlipSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/huisbaasje/sensor.py:243:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "EnergyFlipSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/huisbaasje/sensor.py:251:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/huisbaasje/sensor.py:262:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/humidifier/__init__.py + /homeassistant/components/humidifier/__init__.py:154:5 - error: "entity_description" overrides symbol of same name in class "ToggleEntity" +   Variable is mutable so its type is invariant +     Override type "HumidifierEntityDescription" is not the same as base type "ToggleEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/humidifier/__init__.py:158:5 - error: "_attr_device_class" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "HumidifierDeviceClass | None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/humidifier/__init__.py:162:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "HumidifierEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/humidifier/__init__.py:166:9 - error: "capability_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/humidifier/__init__.py:189:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/humidifier/intent.py + /homeassistant/components/humidifier/intent.py:36:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/humidifier/intent.py:36:19 - error: Type "dict[Required, ((value: Any) -> str) | All]" is not assignable to declared type "property" (reportAssignmentType) + /homeassistant/components/humidifier/intent.py:91:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/humidifier/intent.py:91:19 - error: Type "dict[Required, (value: Any) -> str]" is not assignable to declared type "property" (reportAssignmentType) +/homeassistant/components/hunterdouglas_powerview/__init__.py + /homeassistant/components/hunterdouglas_powerview/__init__.py:71:50 - error: Argument of type "set[tuple[Literal['mac'], Any | None]]" cannot be assigned to parameter "connections" of type "set[tuple[str, str]] | UndefinedType | None" in function "async_get_or_create" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/hunterdouglas_powerview/__init__.py:72:31 - error: Argument of type "set[tuple[Literal['hunterdouglas_powerview'], Any | None]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]] | UndefinedType | None" in function "async_get_or_create" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/hunterdouglas_powerview/__init__.py:77:47 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/hunterdouglas_powerview/__init__.py:114:19 - error: Argument of type "dict[str, BaseShade | Hub | Automation | Scene | Room]" cannot be assigned to parameter "room_data" of type "dict[str, Room]" in function "__init__" +   "dict[str, BaseShade | Hub | Automation | Scene | Room]" is not assignable to "dict[str, Room]" +     Type parameter "_VT@dict" is invariant, but "BaseShade | Hub | Automation | Scene | Room" is not the same as "Room" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /homeassistant/components/hunterdouglas_powerview/__init__.py:115:20 - error: Argument of type "dict[str, BaseShade | Hub | Automation | Scene | Room]" cannot be assigned to parameter "scene_data" of type "dict[str, Scene]" in function "__init__" +   "dict[str, BaseShade | Hub | Automation | Scene | Room]" is not assignable to "dict[str, Scene]" +     Type parameter "_VT@dict" is invariant, but "BaseShade | Hub | Automation | Scene | Room" is not the same as "Scene" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /homeassistant/components/hunterdouglas_powerview/__init__.py:116:20 - error: Argument of type "dict[str, BaseShade | Hub | Automation | Scene | Room]" cannot be assigned to parameter "shade_data" of type "dict[str, BaseShade]" in function "__init__" +   "dict[str, BaseShade | Hub | Automation | Scene | Room]" is not assignable to "dict[str, BaseShade]" +     Type parameter "_VT@dict" is invariant, but "BaseShade | Hub | Automation | Scene | Room" is not the same as "BaseShade" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) +/homeassistant/components/hunterdouglas_powerview/button.py + /homeassistant/components/hunterdouglas_powerview/button.py:54:42 - error: Cannot access attribute "calibrate" for class "Hub" +   Attribute "calibrate" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hunterdouglas_powerview/button.py:61:42 - error: Cannot access attribute "jog" for class "Hub" +   Attribute "jog" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hunterdouglas_powerview/button.py:69:42 - error: Cannot access attribute "favorite" for class "Hub" +   Attribute "favorite" is unknown (reportAttributeAccessIssue) + /homeassistant/components/hunterdouglas_powerview/button.py:83:52 - error: Argument of type "int" cannot be assigned to parameter "key" of type "str" in function "get" +   "int" is not assignable to "str" (reportArgumentType) + /homeassistant/components/hunterdouglas_powerview/button.py:99:7 - error: Base classes for class "PowerviewShadeButton" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/button.py:99:7 - error: Base classes for class "PowerviewShadeButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/button.py:113:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PowerviewButtonDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/button.py:113:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "PowerviewButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/hunterdouglas_powerview/config_flow.py + /homeassistant/components/hunterdouglas_powerview/config_flow.py:47:27 - error: Type "dict[str, str | int]" is not assignable to return type "dict[str, str]" +   "int" is not assignable to "str" (reportReturnType) + /homeassistant/components/hunterdouglas_powerview/config_flow.py:168:9 - error: Method "is_matching" overrides class "ConfigFlow" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "ConfigFlow", override parameter is type "PowerviewConfigFlow" +     "ConfigFlow" is not assignable to "PowerviewConfigFlow" (reportIncompatibleMethodOverride) +/homeassistant/components/hunterdouglas_powerview/cover.py + /homeassistant/components/hunterdouglas_powerview/cover.py:75:52 - error: Argument of type "int" cannot be assigned to parameter "key" of type "str" in function "get" +   "int" is not assignable to "str" (reportArgumentType) + /homeassistant/components/hunterdouglas_powerview/cover.py:92:7 - error: Base classes for class "PowerViewShadeBase" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/cover.py:92:7 - error: Base classes for class "PowerViewShadeBase" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/cover.py:115:13 - error: Operator "|=" not supported for types "CoverEntityFeature | None" and "Literal[CoverEntityFeature.STOP]" +   Operator "|" not supported for types "None" and "Literal[CoverEntityFeature.STOP]" (reportOperatorIssue) + /homeassistant/components/hunterdouglas_powerview/cover.py:119:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/cover.py:129:9 - error: "should_poll" overrides symbol of same name in class "BaseCoordinatorEntity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/cover.py:129:9 - error: "should_poll" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/cover.py:139:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/cover.py:144:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/cover.py:146:16 - error: Operator "<=" not supported for "None" (reportOptionalOperand) + /homeassistant/components/hunterdouglas_powerview/cover.py:149:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/cover.py:151:16 - error: Type "int | float | None" is not assignable to return type "int" +   Type "int | float | None" is not assignable to type "int" +     "float" is not assignable to "int" (reportReturnType) + /homeassistant/components/hunterdouglas_powerview/cover.py:156:16 - error: Type "int | float | None" is not assignable to return type "int" +   Type "int | float | None" is not assignable to type "int" +     "float" is not assignable to "int" (reportReturnType) + /homeassistant/components/hunterdouglas_powerview/cover.py:352:9 - error: Operator "|=" not supported for types "CoverEntityFeature | None" and "CoverEntityFeature" +   Operator "|" not supported for types "None" and "CoverEntityFeature" (reportOperatorIssue) + /homeassistant/components/hunterdouglas_powerview/cover.py:362:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/cover.py:364:16 - error: Type "int | float | None" is not assignable to return type "int" +   Type "int | float | None" is not assignable to type "int" +     "float" is not assignable to "int" (reportReturnType) + /homeassistant/components/hunterdouglas_powerview/cover.py:369:16 - error: Operator "+" not supported for types "int | float | None" and "int | float | None" +   Operator "+" not supported for types "int" and "None" when expected type is "int" +   Operator "+" not supported for types "float" and "None" when expected type is "int" +   Operator "+" not supported for types "None" and "int" when expected type is "int" +   Operator "+" not supported for types "None" and "float" when expected type is "int" +   Operator "+" not supported for types "None" and "None" when expected type is "int" (reportOperatorIssue) + /homeassistant/components/hunterdouglas_powerview/cover.py:369:16 - error: Type "int | float | Unknown" is not assignable to return type "int" +   Type "int | float | Unknown" is not assignable to type "int" +     "float" is not assignable to "int" (reportReturnType) + /homeassistant/components/hunterdouglas_powerview/cover.py:529:16 - error: Type "int | float | None" is not assignable to return type "int" +   Type "int | float | None" is not assignable to type "int" +     "float" is not assignable to "int" (reportReturnType) + /homeassistant/components/hunterdouglas_powerview/cover.py:534:16 - error: Operator "<=" not supported for "None" (reportOptionalOperand) + /homeassistant/components/hunterdouglas_powerview/cover.py:552:16 - error: Operator "-" not supported for types "Literal[100]" and "int | float | None" +   Operator "-" not supported for types "Literal[100]" and "None" when expected type is "int" (reportOperatorIssue) + /homeassistant/components/hunterdouglas_powerview/cover.py:552:16 - error: Type "int | float | Unknown" is not assignable to return type "int" +   Type "int | float | Unknown" is not assignable to type "int" +     "float" is not assignable to "int" (reportReturnType) + /homeassistant/components/hunterdouglas_powerview/cover.py:561:16 - error: Operator "-" not supported for types "Literal[100]" and "int | float | None" +   Operator "-" not supported for types "Literal[100]" and "None" (reportOperatorIssue) + /homeassistant/components/hunterdouglas_powerview/cover.py:575:16 - error: Operator "+" not supported for types "int | float | None" and "int | float | None" +   Operator "+" not supported for types "int" and "None" when expected type is "int" +   Operator "+" not supported for types "float" and "None" when expected type is "int" +   Operator "+" not supported for types "None" and "int" when expected type is "int" +   Operator "+" not supported for types "None" and "float" when expected type is "int" +   Operator "+" not supported for types "None" and "None" when expected type is "int" (reportOperatorIssue) + /homeassistant/components/hunterdouglas_powerview/cover.py:575:16 - error: Type "int | float | Unknown" is not assignable to return type "int" +   Type "int | float | Unknown" is not assignable to type "int" +     "float" is not assignable to "int" (reportReturnType) + /homeassistant/components/hunterdouglas_powerview/cover.py:603:16 - error: Type "int | float | Unknown" is not assignable to return type "int" +   Type "int | float | Unknown" is not assignable to type "int" +     "float" is not assignable to "int" (reportReturnType) + /homeassistant/components/hunterdouglas_powerview/cover.py:603:42 - error: Operator "-" not supported for types "Literal[100]" and "int | float | None" +   Operator "-" not supported for types "Literal[100]" and "None" when expected type is "int | float | Unknown" (reportOperatorIssue) + /homeassistant/components/hunterdouglas_powerview/cover.py:650:16 - error: Operator "<=" not supported for "None" (reportOptionalOperand) + /homeassistant/components/hunterdouglas_powerview/cover.py:656:16 - error: Type "int | float | None" is not assignable to return type "int" +   Type "int | float | None" is not assignable to type "int" +     "float" is not assignable to "int" (reportReturnType) + /homeassistant/components/hunterdouglas_powerview/cover.py:672:16 - error: Type "int | float | Unknown" is not assignable to return type "int" +   Type "int | float | Unknown" is not assignable to type "int" +     "float" is not assignable to "int" (reportReturnType) + /homeassistant/components/hunterdouglas_powerview/cover.py:672:42 - error: Operator "-" not supported for types "Literal[100]" and "int | float | None" +   Operator "-" not supported for types "Literal[100]" and "None" when expected type is "int | float | Unknown" (reportOperatorIssue) + /homeassistant/components/hunterdouglas_powerview/cover.py:696:20 - error: Operator "/" not supported for "None" (reportOptionalOperand) + /homeassistant/components/hunterdouglas_powerview/cover.py:700:21 - error: Operator "/" not supported for "None" (reportOptionalOperand) + /homeassistant/components/hunterdouglas_powerview/cover.py:749:16 - error: Operator "<=" not supported for "None" (reportOptionalOperand) + /homeassistant/components/hunterdouglas_powerview/cover.py:756:21 - error: Operator "/" not supported for "None" (reportOptionalOperand) + /homeassistant/components/hunterdouglas_powerview/cover.py:758:24 - error: Operator "/" not supported for "None" (reportOptionalOperand) + /homeassistant/components/hunterdouglas_powerview/cover.py:880:16 - error: Operator "<=" not supported for "None" (reportOptionalOperand) + /homeassistant/components/hunterdouglas_powerview/cover.py:885:16 - error: Type "int | float | None" is not assignable to return type "int" +   Type "int | float | None" is not assignable to type "int" +     "float" is not assignable to "int" (reportReturnType) + /homeassistant/components/hunterdouglas_powerview/cover.py:929:9 - error: Operator "|=" not supported for types "CoverEntityFeature | None" and "CoverEntityFeature" +   Operator "|" not supported for types "None" and "CoverEntityFeature" (reportOperatorIssue) + /homeassistant/components/hunterdouglas_powerview/cover.py:944:20 - error: Operator "/" not supported for "None" (reportOptionalOperand) + /homeassistant/components/hunterdouglas_powerview/cover.py:948:21 - error: Operator "/" not supported for "None" (reportOptionalOperand) + /homeassistant/components/hunterdouglas_powerview/cover.py:950:21 - error: Operator "+" not supported for types "float | Unknown" and "int | float | None" +   Operator "+" not supported for types "float" and "None" when expected type is "_SupportsCeil[int]" (reportOperatorIssue) + /homeassistant/components/hunterdouglas_powerview/cover.py:1016:36 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/hunterdouglas_powerview/cover.py:1017:9 - error: Argument of type "int | str" cannot be assigned to parameter "key" of type "int" in function "get" +   Type "int | str" is not assignable to type "int" +     "str" is not assignable to "int" (reportArgumentType) + /homeassistant/components/hunterdouglas_powerview/cover.py:1028:9 - error: Object of type "BaseShade" is not callable +   Attribute "__call__" is unknown (reportCallIssue) +/homeassistant/components/hunterdouglas_powerview/entity.py + /homeassistant/components/hunterdouglas_powerview/entity.py:44:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hunterdouglas_powerview/number.py + /homeassistant/components/hunterdouglas_powerview/number.py:63:52 - error: Argument of type "int" cannot be assigned to parameter "key" of type "str" in function "get" +   "int" is not assignable to "str" (reportArgumentType) + /homeassistant/components/hunterdouglas_powerview/number.py:79:7 - error: Base classes for class "PowerViewNumber" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/number.py:79:7 - error: Base classes for class "PowerViewNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/number.py:95:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PowerviewNumberDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/number.py:95:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "PowerviewNumberDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/hunterdouglas_powerview/scene.py + /homeassistant/components/hunterdouglas_powerview/scene.py:41:7 - error: Base classes for class "PowerViewScene" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/scene.py:41:7 - error: Base classes for class "PowerViewScene" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/hunterdouglas_powerview/select.py + /homeassistant/components/hunterdouglas_powerview/select.py:65:52 - error: Argument of type "int" cannot be assigned to parameter "key" of type "str" in function "get" +   "int" is not assignable to "str" (reportArgumentType) + /homeassistant/components/hunterdouglas_powerview/select.py:81:7 - error: Base classes for class "PowerViewSelect" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/select.py:81:7 - error: Base classes for class "PowerViewSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/select.py:95:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PowerviewSelectDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/select.py:95:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "PowerviewSelectDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/select.py:99:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/select.py:104:9 - error: "options" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) +/homeassistant/components/hunterdouglas_powerview/sensor.py + /homeassistant/components/hunterdouglas_powerview/sensor.py:71:25 - error: Argument of type "(shade: BaseShade) -> (int | str)" cannot be assigned to parameter "native_value_fn" of type "(BaseShade) -> int" in function "__init__" +   Type "(shade: BaseShade) -> (int | str)" is not assignable to type "(BaseShade) -> int" +     Function return type "int | str" is incompatible with type "int" +       Type "int | str" is not assignable to type "int" +         "str" is not assignable to "int" (reportArgumentType) + /homeassistant/components/hunterdouglas_powerview/sensor.py:88:52 - error: Argument of type "int" cannot be assigned to parameter "key" of type "str" in function "get" +   "int" is not assignable to "str" (reportArgumentType) + /homeassistant/components/hunterdouglas_powerview/sensor.py:104:7 - error: Base classes for class "PowerViewSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/sensor.py:104:7 - error: Base classes for class "PowerViewSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/sensor.py:121:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PowerviewSensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/sensor.py:121:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PowerviewSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/sensor.py:125:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/sensor.py:130:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/sensor.py:135:9 - error: "device_class" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hunterdouglas_powerview/sensor.py:135:9 - error: "device_class" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[SensorDeviceClass | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hunterdouglas_powerview/util.py + /homeassistant/components/hunterdouglas_powerview/util.py:25:14 - error: Argument of type "str | None" cannot be assigned to parameter "name" of type "str" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/hunterdouglas_powerview/util.py:26:21 - error: Argument of type "Any | None" cannot be assigned to parameter "mac_address" of type "str" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/hunterdouglas_powerview/util.py:27:23 - error: Argument of type "Any | None" cannot be assigned to parameter "serial_number" of type "str" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/hunterdouglas_powerview/util.py:29:15 - error: Argument of type "str | None" cannot be assigned to parameter "model" of type "str" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/hunterdouglas_powerview/util.py:30:21 - error: Argument of type "Any | None" cannot be assigned to parameter "hub_address" of type "str" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/husqvarna_automower/binary_sensor.py + /homeassistant/components/husqvarna_automower/binary_sensor.py:66:7 - error: Base classes for class "AutomowerBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/binary_sensor.py:79:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AutomowerBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/binary_sensor.py:79:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "AutomowerBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/binary_sensor.py:83:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/husqvarna_automower/button.py + /homeassistant/components/husqvarna_automower/button.py:105:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AutomowerButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/button.py:105:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "AutomowerButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/button.py:109:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/button.py:116:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/husqvarna_automower/calendar.py + /homeassistant/components/husqvarna_automower/calendar.py:42:7 - error: Base classes for class "AutomowerCalendarEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/husqvarna_automower/device_tracker.py + /homeassistant/components/husqvarna_automower/device_tracker.py:34:7 - error: Base classes for class "AutomowerDeviceTrackerEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/device_tracker.py:49:9 - error: "latitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/device_tracker.py:54:9 - error: "longitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/husqvarna_automower/diagnostics.py + /homeassistant/components/husqvarna_automower/diagnostics.py:46:47 - error: "mower_id" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/husqvarna_automower/event.py + /homeassistant/components/husqvarna_automower/event.py:79:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "EventEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/event.py:101:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/husqvarna_automower/lawn_mower.py + /homeassistant/components/husqvarna_automower/lawn_mower.py:108:9 - error: "activity" overrides symbol of same name in class "LawnMowerEntity" +   "property" is not assignable to "cached_property[LawnMowerActivity | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/lawn_mower.py:127:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/lawn_mower.py:139:15 - error: Method "async_start_mowing" overrides class "LawnMowerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/husqvarna_automower/lawn_mower.py:144:15 - error: Method "async_pause" overrides class "LawnMowerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/husqvarna_automower/lawn_mower.py:149:15 - error: Method "async_dock" overrides class "LawnMowerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/husqvarna_automower/number.py + /homeassistant/components/husqvarna_automower/number.py:157:7 - error: Base classes for class "AutomowerNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/number.py:170:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AutomowerNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/number.py:170:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "AutomowerNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/number.py:174:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/number.py:179:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/husqvarna_automower/number.py:186:7 - error: Base classes for class "WorkAreaNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/number.py:200:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WorkAreaNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/number.py:200:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "WorkAreaNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/number.py:207:9 - error: "translation_key" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/number.py:214:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/number.py:219:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/husqvarna_automower/select.py + /homeassistant/components/husqvarna_automower/select.py:49:7 - error: Base classes for class "AutomowerSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/select.py:66:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/select.py:71:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/husqvarna_automower/sensor.py + /homeassistant/components/husqvarna_automower/sensor.py:442:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AutomowerSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/sensor.py:442:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AutomowerSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/sensor.py:446:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/sensor.py:451:9 - error: "options" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/sensor.py:456:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/sensor.py:461:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/sensor.py:466:7 - error: Base classes for class "WorkAreaSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/sensor.py:480:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WorkAreaSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/sensor.py:480:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "WorkAreaSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/sensor.py:487:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/sensor.py:492:9 - error: "translation_key" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/husqvarna_automower/switch.py + /homeassistant/components/husqvarna_automower/switch.py:92:7 - error: Base classes for class "AutomowerScheduleSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/switch.py:107:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/switch.py:112:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/husqvarna_automower/switch.py:117:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/husqvarna_automower/switch.py:155:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/switch.py:160:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/switch.py:165:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/husqvarna_automower/switch.py:172:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/husqvarna_automower/switch.py:179:7 - error: Base classes for class "WorkAreaSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/switch.py:201:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower/switch.py:206:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/husqvarna_automower/switch.py:213:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/husqvarna_automower_ble/__init__.py + /homeassistant/components/husqvarna_automower_ble/__init__.py:7:19 - error: "BleakError" is not exported from module "bleak" +   Import from "bleak.exc" instead (reportPrivateImportUsage) + /homeassistant/components/husqvarna_automower_ble/__init__.py:68:81 - error: Argument of type "str | None" cannot be assigned to parameter "model" of type "str" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/husqvarna_automower_ble/config_flow.py + /homeassistant/components/husqvarna_automower_ble/config_flow.py:11:19 - error: "BleakError" is not exported from module "bleak" +   Import from "bleak.exc" instead (reportPrivateImportUsage) + /homeassistant/components/husqvarna_automower_ble/config_flow.py:285:9 - error: Could not assign item in TypedDict +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportGeneralTypeIssues) + /homeassistant/components/husqvarna_automower_ble/config_flow.py:310:74 - error: Argument of type "str | None" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "str | None" is not assignable to type "ConvertibleToInt" +     Type "None" is not assignable to type "ConvertibleToInt" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "None" is incompatible with protocol "SupportsInt" +         "__int__" is not present +       "None" is incompatible with protocol "SupportsIndex" + ... (reportArgumentType) + /homeassistant/components/husqvarna_automower_ble/config_flow.py:310:74 - error: Argument of type "str | None" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "str | None" is not assignable to type "ConvertibleToInt" +     Type "None" is not assignable to type "ConvertibleToInt" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "None" is incompatible with protocol "SupportsInt" +         "__int__" is not present +       "None" is incompatible with protocol "SupportsIndex" (reportArgumentType) +/homeassistant/components/husqvarna_automower_ble/coordinator.py + /homeassistant/components/husqvarna_automower_ble/coordinator.py:10:19 - error: "BleakError" is not exported from module "bleak" +   Import from "bleak.exc" instead (reportPrivateImportUsage) + /homeassistant/components/husqvarna_automower_ble/coordinator.py:84:13 - error: Argument of type "int | None" cannot be assigned to parameter "value" of type "str | int" in function "__setitem__" +   Type "int | None" is not assignable to type "str | int" +     Type "None" is not assignable to type "str | int" +       "None" is not assignable to "str" +       "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/husqvarna_automower_ble/coordinator.py:90:13 - error: Argument of type "MowerActivity | None" cannot be assigned to parameter "value" of type "str | int" in function "__setitem__" +   Type "MowerActivity | None" is not assignable to type "str | int" +     Type "None" is not assignable to type "str | int" +       "None" is not assignable to "str" +       "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/husqvarna_automower_ble/coordinator.py:96:13 - error: Argument of type "MowerState | None" cannot be assigned to parameter "value" of type "str | int" in function "__setitem__" +   Type "MowerState | None" is not assignable to type "str | int" +     Type "None" is not assignable to type "str | int" +       "None" is not assignable to "str" +       "None" is not assignable to "int" (reportArgumentType) +/homeassistant/components/husqvarna_automower_ble/lawn_mower.py + /homeassistant/components/husqvarna_automower_ble/lawn_mower.py:41:7 - error: Base classes for class "AutomowerLawnMower" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/husqvarna_automower_ble/sensor.py + /homeassistant/components/husqvarna_automower_ble/sensor.py:43:7 - error: Base classes for class "HusqvarnaAutomowerBleSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/husqvarna_automower_ble/sensor.py:49:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/huum/binary_sensor.py + /homeassistant/components/huum/binary_sensor.py:27:7 - error: Base classes for class "HuumDoorSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huum/binary_sensor.py:39:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/huum/climate.py + /homeassistant/components/huum/climate.py:37:7 - error: Base classes for class "HuumDevice" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huum/climate.py:57:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/huum/climate.py:59:51 - error: "min_temp" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/huum/climate.py:62:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/huum/climate.py:64:51 - error: "max_temp" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/huum/climate.py:67:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huum/climate.py:74:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huum/climate.py:81:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huum/climate.py:86:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/huum/light.py + /homeassistant/components/huum/light.py:32:7 - error: Base classes for class "HuumLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huum/light.py:46:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/huum/number.py + /homeassistant/components/huum/number.py:33:7 - error: Base classes for class "HuumSteamer" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/huum/number.py:48:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/huum/number.py:50:16 - error: Type "int | None" is not assignable to return type "float" +   Type "int | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportReturnType) +/homeassistant/components/hvv_departures/binary_sensor.py + /homeassistant/components/hvv_departures/binary_sensor.py:156:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hvv_departures/binary_sensor.py:161:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/hvv_departures/binary_sensor.py:169:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hvv_departures/config_flow.py + /homeassistant/components/hvv_departures/config_flow.py:144:5 - error: "config_entry" incorrectly overrides property of same name in class "OptionsFlow" (reportIncompatibleMethodOverride) +/homeassistant/components/hvv_departures/sensor.py + /homeassistant/components/hvv_departures/sensor.py:134:17 - error: "data" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/hvv_departures/sensor.py:134:48 - error: "data" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/hvv_departures/sensor.py:143:21 - error: "data" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/hvv_departures/sensor.py:169:26 - error: "data" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/hydrawise/binary_sensor.py + /homeassistant/components/hydrawise/binary_sensor.py:148:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "HydrawiseBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/hydrawise/binary_sensor.py:155:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/hydrawise/binary_sensor.py:169:5 - error: "zone" incorrectly overrides property of same name in class "HydrawiseEntity" (reportIncompatibleMethodOverride) +/homeassistant/components/hydrawise/sensor.py + /homeassistant/components/hydrawise/sensor.py:199:7 - error: Base classes for class "HydrawiseSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hydrawise/sensor.py:202:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "HydrawiseSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/hydrawise/sensor.py:205:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hydrawise/sensor.py:216:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hydrawise/switch.py + /homeassistant/components/hydrawise/switch.py:86:7 - error: Base classes for class "HydrawiseSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hydrawise/switch.py:89:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "HydrawiseSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/hydrawise/switch.py:90:5 - error: "zone" incorrectly overrides property of same name in class "HydrawiseEntity" (reportIncompatibleMethodOverride) +/homeassistant/components/hydrawise/valve.py + /homeassistant/components/hydrawise/valve.py:54:7 - error: Base classes for class "HydrawiseValve" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/hydrawise/valve.py:60:5 - error: "zone" incorrectly overrides property of same name in class "HydrawiseEntity" (reportIncompatibleMethodOverride) +/homeassistant/components/hyperion/camera.py + /homeassistant/components/hyperion/camera.py:146:9 - error: "is_on" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/hyperion/config_flow.py + /homeassistant/components/hyperion/config_flow.py:114:5 - error: "unique_id" incorrectly overrides property of same name in class "ConfigFlow" (reportIncompatibleMethodOverride) +/homeassistant/components/hyperion/light.py + /homeassistant/components/hyperion/light.py:166:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hyperion/light.py:171:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hyperion/light.py:176:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hyperion/light.py:184:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hyperion/light.py:189:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hyperion/light.py:194:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/hyperion/light.py:207:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/hyperion/sensor.py + /homeassistant/components/hyperion/sensor.py:133:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/hyperion/switch.py + /homeassistant/components/hyperion/switch.py:168:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/hyperion/switch.py:176:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/ialarm/alarm_control_panel.py + /homeassistant/components/ialarm/alarm_control_panel.py:28:7 - error: Base classes for class "IAlarmPanel" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ialarm/alarm_control_panel.py:52:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/iammeter/sensor.py + /homeassistant/components/iammeter/sensor.py:11:6 - error: Import "iammeter.client" could not be resolved (reportMissingImports) + /homeassistant/components/iammeter/sensor.py:161:7 - error: Base classes for class "IammeterSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iammeter/sensor.py:175:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "IammeterSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/iammeter/sensor.py:175:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "IammeterSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/iammeter/sensor.py:184:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/iaqualink/binary_sensor.py + /homeassistant/components/iaqualink/binary_sensor.py:35:7 - error: Base classes for class "HassAqualinkBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iaqualink/binary_sensor.py:35:7 - error: Base classes for class "HassAqualinkBinarySensor" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iaqualink/binary_sensor.py:48:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/iaqualink/climate.py + /homeassistant/components/iaqualink/climate.py:42:7 - error: Base classes for class "HassAqualinkThermostat" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iaqualink/climate.py:42:7 - error: Base classes for class "HassAqualinkThermostat" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iaqualink/climate.py:65:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iaqualink/climate.py:72:15 - error: Method "async_set_hvac_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/iaqualink/climate.py:82:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iaqualink/climate.py:84:40 - error: Cannot access attribute "_heater" for class "AqualinkThermostat" +   Attribute "_heater" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iaqualink/climate.py:92:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iaqualink/climate.py:97:15 - error: Method "async_set_temperature" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/iaqualink/climate.py:102:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/iaqualink/entity.py + /homeassistant/components/iaqualink/entity.py:45:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/iaqualink/entity.py:50:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/iaqualink/light.py + /homeassistant/components/iaqualink/light.py:38:7 - error: Base classes for class "HassAqualinkLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iaqualink/light.py:38:7 - error: Base classes for class "HassAqualinkLight" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iaqualink/light.py:46:47 - error: Cannot access attribute "supported_effects" for class "AqualinkLight" +   Attribute "supported_effects" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iaqualink/light.py:55:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iaqualink/light.py:60:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/iaqualink/light.py:77:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/iaqualink/light.py:82:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iaqualink/light.py:87:16 - error: Operator "*" not supported for "None" (reportOptionalOperand) + /homeassistant/components/iaqualink/light.py:87:16 - error: Type "float | Unknown" is not assignable to return type "int" +   Type "float | Unknown" is not assignable to type "int" +     "float" is not assignable to "int" (reportReturnType) + /homeassistant/components/iaqualink/light.py:90:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iaqualink/light.py:92:16 - error: Type "str | None" is not assignable to return type "str" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportReturnType) +/homeassistant/components/iaqualink/sensor.py + /homeassistant/components/iaqualink/sensor.py:30:7 - error: Base classes for class "HassAqualinkSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iaqualink/sensor.py:30:7 - error: Base classes for class "HassAqualinkSensor" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iaqualink/sensor.py:46:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/iaqualink/switch.py + /homeassistant/components/iaqualink/switch.py:32:7 - error: Base classes for class "HassAqualinkSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iaqualink/switch.py:32:7 - error: Base classes for class "HassAqualinkSwitch" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iaqualink/switch.py:49:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iaqualink/switch.py:54:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/iaqualink/switch.py:59:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/ibeacon/device_tracker.py + /homeassistant/components/ibeacon/device_tracker.py:51:7 - error: Base classes for class "IBeaconTrackerEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ibeacon/device_tracker.py:72:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/ibeacon/entity.py + /homeassistant/components/ibeacon/entity.py:41:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ibeacon/sensor.py + /homeassistant/components/ibeacon/sensor.py:100:7 - error: Base classes for class "IBeaconSensorEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ibeacon/sensor.py:118:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "IBeaconSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ibeacon/sensor.py:118:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "IBeaconSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ibeacon/sensor.py:137:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/icloud/account.py + /homeassistant/components/icloud/account.py:148:64 - error: "items" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/icloud/account.py:450:54 - error: Argument of type "None" cannot be assigned to parameter "newpasscode" of type "str" in function "lost_device" +   "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/icloud/config_flow.py + /homeassistant/components/icloud/config_flow.py:189:40 - error: Could not access item in TypedDict +   "unique_id" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/icloud/config_flow.py:283:28 - error: Argument of type "tuple[Any | None, Any]" cannot be assigned to parameter "args" of type "_Ts@async_add_executor_job" in function "async_add_executor_job" +   Type "*tuple[Any | None, Any]" is not assignable to type "*tuple[dict[str, Any], str]" +     "*tuple[Any | None, Any]" is not assignable to "*tuple[dict[str, Any], str]" +       Tuple entry 1 is incorrect type +         Type "Any | None" is not assignable to type "dict[str, Any]" +           "None" is not assignable to "dict[str, Any]" (reportArgumentType) + /homeassistant/components/icloud/config_flow.py:298:38 - error: Argument of type "tuple[Any | None, Any | None, Unknown, Literal[True], None, Any | None]" cannot be assigned to parameter "args" of type "_Ts@async_add_executor_job" in function "async_add_executor_job" +   Type "*tuple[Any | None, Any | None, Unknown, Literal[True], None, Any | None]" is not assignable to type "*tuple[str, str | None, str | None, bool, str | None, bool, bool, bool]" +     "*tuple[Any | None, Any | None, Unknown, Literal[True], None, Any | None]" is not assignable to "*tuple[str, str | None, str | None, bool, str | None, bool, bool, bool]" +       Tuple entry 1 is incorrect type +         Type "Any | None" is not assignable to type "str" +           "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/icloud/device_tracker.py + /homeassistant/components/icloud/device_tracker.py:72:9 - error: "location_accuracy" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/icloud/device_tracker.py:79:9 - error: "latitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/icloud/device_tracker.py:86:9 - error: "longitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/icloud/device_tracker.py:93:9 - error: "battery_level" overrides symbol of same name in class "BaseTrackerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/icloud/device_tracker.py:98:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/icloud/device_tracker.py:103:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/icloud/device_tracker.py:108:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/icloud/sensor.py + /homeassistant/components/icloud/sensor.py:78:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/icloud/sensor.py:83:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/icloud/sensor.py:91:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/idasen_desk/button.py + /homeassistant/components/idasen_desk/button.py:66:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "IdasenDeskButtonDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/idasen_desk/button.py:66:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "IdasenDeskButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/idasen_desk/button.py:78:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/idasen_desk/cover.py + /homeassistant/components/idasen_desk/cover.py:33:7 - error: Base classes for class "IdasenDeskCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/idasen_desk/cover.py:51:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/idasen_desk/cover.py:86:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/idasen_desk/sensor.py + /homeassistant/components/idasen_desk/sensor.py:56:7 - error: Base classes for class "IdasenDeskSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/idasen_desk/sensor.py:68:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "IdasenDeskSensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/idasen_desk/sensor.py:68:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "IdasenDeskSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/idasen_desk/sensor.py:71:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/idteck_prox/__init__.py + /homeassistant/components/idteck_prox/__init__.py:7:6 - error: Import "rfk101py.rfk101py" could not be resolved (reportMissingImports) +/homeassistant/components/ifttt/alarm_control_panel.py + /homeassistant/components/ifttt/alarm_control_panel.py:156:9 - error: "code_format" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[CodeFormat | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/iglo/light.py + /homeassistant/components/iglo/light.py:7:18 - error: "Lamp" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/iglo/light.py:8:6 - error: Import "iglo.lamp" could not be resolved (reportMissingImports) + /homeassistant/components/iglo/light.py:66:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iglo/light.py:71:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iglo/light.py:76:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iglo/light.py:100:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iglo/light.py:105:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iglo/light.py:110:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iglo/light.py:115:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ign_sismologia/geo_location.py + /homeassistant/components/ign_sismologia/geo_location.py:214:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ign_sismologia/geo_location.py:221:20 - error: Type "float" is not assignable to return type "str | None" +   Type "float" is not assignable to type "str | None" +     "float" is not assignable to "str" +     "float" is not assignable to "None" (reportReturnType) + /homeassistant/components/ign_sismologia/geo_location.py:225:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ihc/__init__.py + /homeassistant/components/ihc/__init__.py:5:6 - error: Import "ihcsdk.ihccontroller" could not be resolved (reportMissingImports) +/homeassistant/components/ihc/binary_sensor.py + /homeassistant/components/ihc/binary_sensor.py:5:6 - error: Import "ihcsdk.ihccontroller" could not be resolved (reportMissingImports) + /homeassistant/components/ihc/binary_sensor.py:51:7 - error: Base classes for class "IHCBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ihc/binary_sensor.py:51:7 - error: Base classes for class "IHCBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ihc/binary_sensor.py:51:7 - error: Base classes for class "IHCBinarySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ihc/entity.py + /homeassistant/components/ihc/entity.py:5:6 - error: Import "ihcsdk.ihccontroller" could not be resolved (reportMissingImports) + /homeassistant/components/ihc/entity.py:63:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ihc/entity.py:68:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ihc/entity.py:73:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ihc/light.py + /homeassistant/components/ihc/light.py:7:6 - error: Import "ihcsdk.ihccontroller" could not be resolved (reportMissingImports) + /homeassistant/components/ihc/light.py:53:7 - error: Base classes for class "IhcLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ihc/light.py:53:7 - error: Base classes for class "IhcLight" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ihc/light.py:53:7 - error: Base classes for class "IhcLight" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ihc/light.py:87:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ihc/light.py:92:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ihc/sensor.py + /homeassistant/components/ihc/sensor.py:5:6 - error: Import "ihcsdk.ihccontroller" could not be resolved (reportMissingImports) + /homeassistant/components/ihc/sensor.py:41:7 - error: Base classes for class "IHCSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ihc/sensor.py:41:7 - error: Base classes for class "IHCSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ihc/sensor.py:41:7 - error: Base classes for class "IHCSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ihc/switch.py + /homeassistant/components/ihc/switch.py:7:6 - error: Import "ihcsdk.ihccontroller" could not be resolved (reportMissingImports) + /homeassistant/components/ihc/switch.py:46:7 - error: Base classes for class "IHCSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ihc/switch.py:46:7 - error: Base classes for class "IHCSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ihc/switch.py:46:7 - error: Base classes for class "IHCSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ihc/util.py + /homeassistant/components/ihc/util.py:5:6 - error: Import "ihcsdk.ihccontroller" could not be resolved (reportMissingImports) +/homeassistant/components/image/__init__.py + /homeassistant/components/image/__init__.py:187:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) + /homeassistant/components/image/__init__.py:202:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/image/__init__.py:276:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/image/__init__.py:284:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/image/media_source.py + /homeassistant/components/image/media_source.py:29:5 - error: "name" overrides symbol of same name in class "MediaSource" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/image_processing/__init__.py + /homeassistant/components/image_processing/__init__.py:133:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ImageProcessingEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/image_processing/__init__.py:134:5 - error: "_attr_device_class" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ImageProcessingDeviceClass | None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/image_processing/__init__.py:158:9 - error: "device_class" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/image_processing/__init__.py:208:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/image_processing/__init__.py:226:33 - error: Could not access item in TypedDict +   "name" is not a required key in "FaceInformation", so access may result in runtime exception +   "motion" is not a required key in "FaceInformation", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/image_processing/__init__.py:233:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/image_upload/media_source.py + /homeassistant/components/image_upload/media_source.py:30:5 - error: "name" overrides symbol of same name in class "MediaSource" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/imap/__init__.py + /homeassistant/components/imap/__init__.py:169:33 - error: "expunge" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/imap/__init__.py:196:33 - error: "expunge" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/imap/coordinator.py + /homeassistant/components/imap/coordinator.py:84:24 - error: "state" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/imap/coordinator.py:91:24 - error: "state" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/imap/coordinator.py:93:24 - error: "state" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/imap/coordinator.py:100:24 - error: "state" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/imap/coordinator.py:281:43 - error: "fetch" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/imap/coordinator.py:352:32 - error: "noop" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/imap/coordinator.py:353:48 - error: "search" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/imap/coordinator.py:531:63 - error: "idle_start" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/imap/coordinator.py:532:40 - error: "wait_server_push" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/imap/coordinator.py:533:34 - error: "idle_done" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/imap/sensor.py + /homeassistant/components/imap/sensor.py:43:7 - error: Base classes for class "ImapSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/imap/sensor.py:64:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/imeon_inverter/config_flow.py + /homeassistant/components/imeon_inverter/config_flow.py:69:52 - error: "serial" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/imeon_inverter/config_flow.py:74:40 - error: "serial" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/imeon_inverter/select.py + /homeassistant/components/imeon_inverter/select.py:36:22 - error: Argument of type "(api: Inverter, mode: str) -> CoroutineType[Any, Any, bool | None]" cannot be assigned to parameter "set_value_fn" of type "(Inverter, str) -> Awaitable[bool]" in function "__init__" +   Type "(api: Inverter, mode: str) -> CoroutineType[Any, Any, bool | None]" is not assignable to type "(Inverter, str) -> Awaitable[bool]" +     Function return type "CoroutineType[Any, Any, bool | None]" is incompatible with type "Awaitable[bool]" +       "CoroutineType[Any, Any, bool | None]" is not assignable to "Awaitable[bool]" +         Type parameter "_T_co@Awaitable" is covariant, but "bool | None" is not a subtype of "bool" +           Type "bool | None" is not assignable to type "bool" (reportArgumentType) + /homeassistant/components/imeon_inverter/select.py:37:13 - error: Argument of type "str" cannot be assigned to parameter "mode" of type "Literal['smg', 'bup', 'ong', 'ofg']" in function "set_inverter_mode" +   Type "str" is not assignable to type "Literal['smg', 'bup', 'ong', 'ofg']" +     "str" is not assignable to type "Literal['smg']" +     "str" is not assignable to type "Literal['bup']" +     "str" is not assignable to type "Literal['ong']" +     "str" is not assignable to type "Literal['ofg']" (reportArgumentType) + /homeassistant/components/imeon_inverter/select.py:56:7 - error: Base classes for class "InverterSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/imeon_inverter/select.py:59:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "ImeonSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/imeon_inverter/select.py:63:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/imeon_inverter/sensor.py + /homeassistant/components/imeon_inverter/sensor.py:452:7 - error: Base classes for class "InverterSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/imeon_inverter/sensor.py:458:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/imgw_pib/coordinator.py + /homeassistant/components/imgw_pib/coordinator.py:8:22 - error: "ApiError" is not exported from module "imgw_pib" +   Import from "imgw_pib.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/imgw_pib/coordinator.py:8:32 - error: "HydrologicalData" is not exported from module "imgw_pib" +   Import from "imgw_pib.model" instead (reportPrivateImportUsage) +/homeassistant/components/imgw_pib/sensor.py + /homeassistant/components/imgw_pib/sensor.py:116:7 - error: Base classes for class "ImgwPibSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/imgw_pib/sensor.py:130:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ImgwPibSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/imgw_pib/sensor.py:130:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ImgwPibSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/imgw_pib/sensor.py:133:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/imgw_pib/sensor.py:138:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/immich/sensor.py + /homeassistant/components/immich/sensor.py:129:7 - error: Base classes for class "ImmichSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/immich/sensor.py:142:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ImmichSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/immich/sensor.py:142:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ImmichSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/immich/sensor.py:145:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/immich/update.py + /homeassistant/components/immich/update.py:28:7 - error: Base classes for class "ImmichUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/immich/update.py:42:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/immich/update.py:47:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/immich/update.py:53:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/improv_ble/config_flow.py + /homeassistant/components/improv_ble/config_flow.py:12:19 - error: "BleakError" is not exported from module "bleak" +   Import from "bleak.exc" instead (reportPrivateImportUsage) + /homeassistant/components/improv_ble/config_flow.py:384:42 - error: Could not access item in TypedDict +   "context" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/improv_ble/config_flow.py:451:12 - error: Could not access item in TypedDict +   "type" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/improv_ble/config_flow.py:451:42 - error: Could not access item in TypedDict +   "reason" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/improv_ble/config_flow.py:456:23 - error: Could not access item in TypedDict +   "unique_id" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/incomfort/binary_sensor.py + /homeassistant/components/incomfort/binary_sensor.py:85:7 - error: Base classes for class "IncomfortBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/incomfort/binary_sensor.py:98:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "IncomfortBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/incomfort/binary_sensor.py:98:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "IncomfortBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/incomfort/binary_sensor.py:102:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/incomfort/binary_sensor.py:107:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/incomfort/climate.py + /homeassistant/components/incomfort/climate.py:43:7 - error: Base classes for class "InComfortClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/incomfort/climate.py:81:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/incomfort/climate.py:86:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/incomfort/climate.py:91:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/incomfort/climate.py:98:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/incomfort/config_flow.py + /homeassistant/components/incomfort/config_flow.py:189:22 - error: "reconfigure_entry" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/incomfort/config_flow.py:196:25 - error: "reconfigure_entry" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/incomfort/sensor.py + /homeassistant/components/incomfort/sensor.py:92:7 - error: Base classes for class "IncomfortSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/incomfort/sensor.py:105:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "IncomfortSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/incomfort/sensor.py:105:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "IncomfortSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/incomfort/sensor.py:109:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/incomfort/sensor.py:114:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/incomfort/water_heater.py + /homeassistant/components/incomfort/water_heater.py:36:7 - error: Base classes for class "IncomfortWaterHeater" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/incomfort/water_heater.py:54:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/incomfort/water_heater.py:59:9 - error: "current_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/incomfort/water_heater.py:72:9 - error: "current_operation" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/inels/entity.py + /homeassistant/components/inels/entity.py:59:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/inels/switch.py + /homeassistant/components/inels/switch.py:84:7 - error: Base classes for class "InelsSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/inels/switch.py:98:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "InelsSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/inels/switch.py:98:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "InelsSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/inels/switch.py:120:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/influxdb/__init__.py + /homeassistant/components/influxdb/__init__.py:16:29 - error: "InfluxDBClient" is not exported from module "influxdb_client" +   Import from "influxdb_client.client.influxdb_client" instead (reportPrivateImportUsage) + /homeassistant/components/influxdb/__init__.py:283:12 - error: "_include_value" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/influxdb/__init__.py:284:59 - error: "_state_as_value" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/influxdb/sensor.py + /homeassistant/components/influxdb/sensor.py:224:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/influxdb/sensor.py:229:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/influxdb/sensor.py:234:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/inkbird/sensor.py + /homeassistant/components/inkbird/sensor.py:125:7 - error: Base classes for class "INKBIRDBluetoothSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/inkbird/sensor.py:134:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/input_boolean/__init__.py + /homeassistant/components/input_boolean/__init__.py:149:7 - error: Base classes for class "InputBoolean" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/input_boolean/__init__.py:149:7 - error: Base classes for class "InputBoolean" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/input_boolean/__init__.py:149:7 - error: Base classes for class "InputBoolean" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/input_boolean/__init__.py:179:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_boolean/__init__.py:184:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_boolean/__init__.py:189:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/input_button/__init__.py + /homeassistant/components/input_button/__init__.py:131:7 - error: Base classes for class "InputButton" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/input_button/__init__.py:131:7 - error: Base classes for class "InputButton" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/input_button/__init__.py:131:7 - error: Base classes for class "InputButton" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/input_button/__init__.py:160:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_button/__init__.py:165:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_button/__init__.py:170:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/input_datetime/__init__.py + /homeassistant/components/input_datetime/__init__.py:300:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_datetime/__init__.py:315:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_datetime/__init__.py:320:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_datetime/__init__.py:334:9 - error: "capability_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_datetime/__init__.py:342:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_datetime/__init__.py:380:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/input_number/__init__.py + /homeassistant/components/input_number/__init__.py:243:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_number/__init__.py:248:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_number/__init__.py:253:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_number/__init__.py:263:9 - error: "unit_of_measurement" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_number/__init__.py:268:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_number/__init__.py:273:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/input_select/__init__.py + /homeassistant/components/input_select/__init__.py:249:7 - error: Base classes for class "InputSelect" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/input_select/__init__.py:249:7 - error: Base classes for class "InputSelect" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/input_select/__init__.py:249:7 - error: Base classes for class "InputSelect" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/input_select/__init__.py:249:7 - error: Base classes for class "InputSelect" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/input_select/__init__.py:296:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/input_text/__init__.py + /homeassistant/components/input_text/__init__.py:223:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_text/__init__.py:228:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_text/__init__.py:243:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_text/__init__.py:248:9 - error: "unit_of_measurement" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_text/__init__.py:253:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/input_text/__init__.py:258:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/insteon/api/config.py + /homeassistant/components/insteon/api/config.py:314:45 - error: Argument of type "DeviceManager" cannot be assigned to parameter "devices" of type "dict[Address, Device]" in function "get_broken_links" +   "DeviceManager" is not assignable to "dict[Address, Device]" (reportArgumentType) + /homeassistant/components/insteon/api/config.py:335:45 - error: Argument of type "DeviceManager" cannot be assigned to parameter "devices" of type "dict[Address, Device]" in function "get_broken_links" +   "DeviceManager" is not assignable to "dict[Address, Device]" (reportArgumentType) +/homeassistant/components/insteon/api/device.py + /homeassistant/components/insteon/api/device.py:120:17 - error: Argument of type "Any | None" cannot be assigned to parameter "address" of type "Address" in function "async_add_device" +   Type "Any | None" is not assignable to type "Address" +     "None" is not assignable to "Address" (reportArgumentType) +/homeassistant/components/insteon/api/scenes.py + /homeassistant/components/insteon/api/scenes.py:91:24 - error: "int" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) +/homeassistant/components/insteon/binary_sensor.py + /homeassistant/components/insteon/binary_sensor.py:74:7 - error: Base classes for class "InsteonBinarySensorEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/binary_sensor.py:74:7 - error: Base classes for class "InsteonBinarySensorEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/binary_sensor.py:74:7 - error: Base classes for class "InsteonBinarySensorEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/binary_sensor.py:74:7 - error: Base classes for class "InsteonBinarySensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/binary_sensor.py:83:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/insteon/climate.py + /homeassistant/components/insteon/climate.py:83:7 - error: Base classes for class "InsteonClimateEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/climate.py:83:7 - error: Base classes for class "InsteonClimateEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/climate.py:83:7 - error: Base classes for class "InsteonClimateEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/climate.py:99:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/climate.py:106:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/climate.py:111:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/climate.py:116:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/climate.py:121:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/climate.py:130:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/climate.py:137:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/climate.py:144:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/climate.py:149:9 - error: "target_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/climate.py:157:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/climate.py:171:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/insteon/cover.py + /homeassistant/components/insteon/cover.py:46:7 - error: Base classes for class "InsteonCoverEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/cover.py:46:7 - error: Base classes for class "InsteonCoverEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/cover.py:46:7 - error: Base classes for class "InsteonCoverEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/cover.py:46:7 - error: Base classes for class "InsteonCoverEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/cover.py:56:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/cover.py:65:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/insteon/entity.py + /homeassistant/components/insteon/entity.py:55:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/entity.py:64:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/entity.py:75:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/entity.py:83:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/insteon/fan.py + /homeassistant/components/insteon/fan.py:50:7 - error: Base classes for class "InsteonFanEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/fan.py:50:7 - error: Base classes for class "InsteonFanEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/fan.py:50:7 - error: Base classes for class "InsteonFanEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/fan.py:50:7 - error: Base classes for class "InsteonFanEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/fan.py:61:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/insteon/ipdb.py + /homeassistant/components/insteon/ipdb.py:52:64 - error: Type "dict[type[AccessControl_Morningstar] | type[DimmableLightingControl] | type[DimmableLightingControl_Dial] | type[DimmableLightingControl_DinRail] | type[DimmableLightingControl_FanLinc] | type[DimmableLightingControl_InLineLinc01] | type[DimmableLightingControl_InLineLinc02] | type[DimmableLightingControl_I3_KeypadLinc_4] | type[DimmableLightingControl_KeypadLinc_6] | type[DimmableLightingControl_KeypadLinc_8] | type[DimmableLightingControl_LampLinc] | type[DimmableLightingControl_OutletLinc] | type[DimmableLightingControl_SwitchLinc01] | type[DimmableLightingControl_SwitchLinc02] | type[DimmableLightingControl_ToggleLinc] | type[EnergyManagement_LoadController] | type[SecurityHealthSafety_DoorSensor] | type[SecurityHealthSafety_LeakSensor] | type[SecurityHealthSafety_MotionSensor] | type[SecurityHealthSafety_OpenCloseSensor] | type[SecurityHealthSafety_Smokebridge] | type[SensorsActuators_IOLink] | type[SwitchedLightingControl] | type[SwitchedLightingControl_ApplianceLinc] | type[SwitchedLightingControl_DinRail] | type[SwitchedLightingControl_I3Outlet] | type[SwitchedLightingControl_InLineLinc01] | type[SwitchedLightingControl_InLineLinc02] | type[SwitchedLightingControl_KeypadLinc_6] | type[SwitchedLightingControl_KeypadLinc_8] | type[SwitchedLightingControl_OnOffOutlet] | type[SwitchedLightingControl_OutletLinc] | type[SwitchedLightingControl_SwitchLinc01] | type[SwitchedLightingControl_SwitchLinc02] | type[SwitchedLightingControl_ToggleLinc] | type[ClimateControl_Thermostat] | type[ClimateControl_WirelessThermostat] | type[WindowCovering] | type[X10Dimmable] | type[X10OnOff] | type[X10OnOffSensor], dict[Platform, Iterable[int]]]" is not assignable to declared type "dict[Device, dict[Platform, Iterable[int]]]" +   Type "type[AccessControl_Morningstar]" is not assignable to type "Device" +   Type "type[DimmableLightingControl]" is not assignable to type "Device" +   Type "type[DimmableLightingControl_Dial]" is not assignable to type "Device" +   Type "type[DimmableLightingControl_DinRail]" is not assignable to type "Device" +   Type "type[DimmableLightingControl_FanLinc]" is not assignable to type "Device" +   Type "type[DimmableLightingControl_InLineLinc01]" is not assignable to type "Device" +   Type "type[DimmableLightingControl_InLineLinc02]" is not assignable to type "Device" +   Type "type[DimmableLightingControl_I3_KeypadLinc_4]" is not assignable to type "Device" (reportAssignmentType) + /homeassistant/components/insteon/ipdb.py:114:12 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/insteon/ipdb.py:114:32 - error: Argument of type "type[Unknown]" cannot be assigned to parameter "key" of type "Device" in function "get" +   "type[Unknown]" is not assignable to "Device" (reportArgumentType) +/homeassistant/components/insteon/light.py + /homeassistant/components/insteon/light.py:50:7 - error: Base classes for class "InsteonDimmerEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/light.py:50:7 - error: Base classes for class "InsteonDimmerEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/light.py:50:7 - error: Base classes for class "InsteonDimmerEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/light.py:50:7 - error: Base classes for class "InsteonDimmerEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/light.py:64:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/light.py:69:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/insteon/lock.py + /homeassistant/components/insteon/lock.py:41:7 - error: Base classes for class "InsteonLockEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/lock.py:41:7 - error: Base classes for class "InsteonLockEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/lock.py:41:7 - error: Base classes for class "InsteonLockEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/lock.py:41:7 - error: Base classes for class "InsteonLockEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/lock.py:45:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/insteon/services.py + /homeassistant/components/insteon/services.py:104:42 - error: Argument of type "Any | None" cannot be assigned to parameter "group" of type "int" in function "async_enter_unlinking_mode" +   Type "Any | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/insteon/services.py:148:39 - error: Argument of type "Any | None" cannot be assigned to parameter "housecode" of type "str" in function "async_x10_all_units_off" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/insteon/services.py:153:40 - error: Argument of type "Any | None" cannot be assigned to parameter "housecode" of type "str" in function "async_x10_all_lights_off" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/insteon/services.py:158:39 - error: Argument of type "Any | None" cannot be assigned to parameter "housecode" of type "str" in function "async_x10_all_lights_on" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/insteon/switch.py + /homeassistant/components/insteon/switch.py:45:7 - error: Base classes for class "InsteonSwitchEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/switch.py:45:7 - error: Base classes for class "InsteonSwitchEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/switch.py:45:7 - error: Base classes for class "InsteonSwitchEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/switch.py:45:7 - error: Base classes for class "InsteonSwitchEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/insteon/switch.py:49:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/integration/sensor.py + /homeassistant/components/integration/sensor.py:625:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/integration/sensor.py:632:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/integration/sensor.py:637:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/intellifire/binary_sensor.py + /homeassistant/components/intellifire/binary_sensor.py:164:7 - error: Base classes for class "IntellifireBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/intellifire/binary_sensor.py:167:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "IntellifireBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/intellifire/binary_sensor.py:170:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/intellifire/climate.py + /homeassistant/components/intellifire/climate.py:44:7 - error: Base classes for class "IntellifireClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/intellifire/climate.py:73:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/intellifire/climate.py:93:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/intellifire/climate.py:98:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/intellifire/config_flow.py + /homeassistant/components/intellifire/config_flow.py:159:44 - error: "serial" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/intellifire/config_flow.py:160:71 - error: "serial" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/intellifire/config_flow.py:163:80 - error: "serial" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/intellifire/fan.py + /homeassistant/components/intellifire/fan.py:74:7 - error: Base classes for class "IntellifireFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/intellifire/fan.py:77:5 - error: "entity_description" overrides symbol of same name in class "FanEntity" +   Variable is mutable so its type is invariant +     Override type "IntellifireFanEntityDescription" is not the same as base type "FanEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/intellifire/fan.py:90:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/intellifire/fan.py:98:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) +/homeassistant/components/intellifire/light.py + /homeassistant/components/intellifire/light.py:51:7 - error: Base classes for class "IntellifireLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/intellifire/light.py:54:5 - error: "entity_description" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "IntellifireLightEntityDescription" is not the same as base type "LightEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/intellifire/light.py:59:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/intellifire/light.py:64:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/intellifire/number.py + /homeassistant/components/intellifire/number.py:43:7 - error: Base classes for class "IntellifireFlameControlEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/intellifire/number.py:60:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/intellifire/sensor.py + /homeassistant/components/intellifire/sensor.py:155:7 - error: Base classes for class "IntelliFireSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/intellifire/sensor.py:158:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "IntellifireSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/intellifire/sensor.py:161:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/intellifire/switch.py + /homeassistant/components/intellifire/switch.py:65:7 - error: Base classes for class "IntellifireSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/intellifire/switch.py:68:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "IntellifireSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/intellifire/switch.py:81:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/intent/__init__.py + /homeassistant/components/intent/__init__.py:274:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/intent/__init__.py:274:19 - error: Type "dict[Any | Optional, ((value: Any) -> str) | All]" is not assignable to declared type "property" (reportAssignmentType) + /homeassistant/components/intent/__init__.py:466:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/intent/__init__.py:466:19 - error: Type "dict[Optional, (value: Any) -> str]" is not assignable to declared type "property" (reportAssignmentType) + /homeassistant/components/intent/__init__.py:486:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/intent/__init__.py:486:19 - error: Type "dict[Optional, (value: Any) -> str]" is not assignable to declared type "property" (reportAssignmentType) +/homeassistant/components/intent/timers.py + /homeassistant/components/intent/timers.py:814:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/intent/timers.py:814:19 - error: Type "dict[Required | Optional, All | ((value: Any) -> str)]" is not assignable to declared type "property" (reportAssignmentType) + /homeassistant/components/intent/timers.py:874:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/intent/timers.py:874:19 - error: Type "dict[Any | Optional, All | ((value: Any) -> str)]" is not assignable to declared type "property" (reportAssignmentType) + /homeassistant/components/intent/timers.py:896:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/intent/timers.py:896:19 - error: Type "dict[Optional, (value: Any) -> str]" is not assignable to declared type "property" (reportAssignmentType) + /homeassistant/components/intent/timers.py:926:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/intent/timers.py:926:19 - error: Type "dict[Any | Optional, All | ((value: Any) -> str)]" is not assignable to declared type "property" (reportAssignmentType) + /homeassistant/components/intent/timers.py:950:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/intent/timers.py:950:19 - error: Type "dict[Required | Any | Optional, All | ((value: Any) -> str)]" is not assignable to declared type "property" (reportAssignmentType) + /homeassistant/components/intent/timers.py:974:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/intent/timers.py:974:19 - error: Type "dict[Any | Optional, All | ((value: Any) -> str)]" is not assignable to declared type "property" (reportAssignmentType) + /homeassistant/components/intent/timers.py:998:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/intent/timers.py:998:19 - error: Type "dict[Any | Optional, All | ((value: Any) -> str)]" is not assignable to declared type "property" (reportAssignmentType) + /homeassistant/components/intent/timers.py:1022:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/intent/timers.py:1022:19 - error: Type "dict[Any | Optional, All | ((value: Any) -> str)]" is not assignable to declared type "property" (reportAssignmentType) +/homeassistant/components/intent_script/__init__.py + /homeassistant/components/intent_script/__init__.py:147:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/intent_script/__init__.py:147:19 - error: Type "dict[Any | Optional, ((value: Any) -> str) | All]" is not assignable to declared type "property" (reportAssignmentType) +/homeassistant/components/intesishome/climate.py + /homeassistant/components/intesishome/climate.py:9:6 - error: Import "pyintesishome" could not be resolved (reportMissingImports) + /homeassistant/components/intesishome/climate.py:221:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/intesishome/climate.py:238:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/intesishome/climate.py:348:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/intesishome/climate.py:351:40 - error: Argument of type "HVACMode | None" cannot be assigned to parameter "key" of type "HVACMode" in function "get" +   Type "HVACMode | None" is not assignable to type "HVACMode" +     "None" is not assignable to "HVACMode" (reportArgumentType) + /homeassistant/components/intesishome/climate.py:388:9 - error: "swing_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/intesishome/climate.py:401:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/intesishome/climate.py:406:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/intesishome/climate.py:409:20 - error: Type "HVACMode | None" is not assignable to return type "HVACMode" +   Type "HVACMode | None" is not assignable to type "HVACMode" +     "None" is not assignable to "HVACMode" (reportReturnType) +/homeassistant/components/iometer/binary_sensor.py + /homeassistant/components/iometer/binary_sensor.py:69:7 - error: Base classes for class "IOmeterBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iometer/binary_sensor.py:81:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "IOmeterBinarySensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/iometer/binary_sensor.py:81:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "IOmeterBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/iometer/binary_sensor.py:85:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/iometer/config_flow.py + /homeassistant/components/iometer/config_flow.py:50:30 - error: Cannot assign to attribute "_meter_number" for class "IOMeterConfigFlow*" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportAttributeAccessIssue) + /homeassistant/components/iometer/config_flow.py:91:38 - error: Cannot assign to attribute "_meter_number" for class "IOMeterConfigFlow*" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportAttributeAccessIssue) +/homeassistant/components/iometer/sensor.py + /homeassistant/components/iometer/sensor.py:41:18 - error: Argument of type "(data: IOmeterData) -> (str | None)" cannot be assigned to parameter "value_fn" of type "(IOmeterData) -> (str | int | float)" in function "__init__" +   Type "(data: IOmeterData) -> (str | None)" is not assignable to type "(IOmeterData) -> (str | int | float)" +     Function return type "str | None" is incompatible with type "str | int | float" +       Type "str | None" is not assignable to type "str | int | float" +         Type "None" is not assignable to type "str | int | float" +           "None" is not assignable to "str" +           "None" is not assignable to "int" +           "None" is not assignable to "float" (reportArgumentType) + /homeassistant/components/iometer/sensor.py:61:18 - error: Argument of type "(data: IOmeterData) -> (int | None)" cannot be assigned to parameter "value_fn" of type "(IOmeterData) -> (str | int | float)" in function "__init__" +   Type "(data: IOmeterData) -> (int | None)" is not assignable to type "(IOmeterData) -> (str | int | float)" +     Function return type "int | None" is incompatible with type "str | int | float" +       Type "int | None" is not assignable to type "str | int | float" +         Type "None" is not assignable to type "str | int | float" +           "None" is not assignable to "str" +           "None" is not assignable to "int" +           "None" is not assignable to "float" (reportArgumentType) + /homeassistant/components/iometer/sensor.py:76:18 - error: Argument of type "(data: IOmeterData) -> (int | None)" cannot be assigned to parameter "value_fn" of type "(IOmeterData) -> (str | int | float)" in function "__init__" +   Type "(data: IOmeterData) -> (int | None)" is not assignable to type "(IOmeterData) -> (str | int | float)" +     Function return type "int | None" is incompatible with type "str | int | float" +       Type "int | None" is not assignable to type "str | int | float" +         Type "None" is not assignable to type "str | int | float" +           "None" is not assignable to "str" +           "None" is not assignable to "int" +           "None" is not assignable to "float" (reportArgumentType) + /homeassistant/components/iometer/sensor.py:91:18 - error: Argument of type "(data: IOmeterData) -> (float | None)" cannot be assigned to parameter "value_fn" of type "(IOmeterData) -> (str | int | float)" in function "__init__" +   Type "(data: IOmeterData) -> (float | None)" is not assignable to type "(IOmeterData) -> (str | int | float)" +     Function return type "float | None" is incompatible with type "str | int | float" +       Type "float | None" is not assignable to type "str | int | float" +         Type "None" is not assignable to type "str | int | float" +           "None" is not assignable to "str" +           "None" is not assignable to "int" +           "None" is not assignable to "float" (reportArgumentType) + /homeassistant/components/iometer/sensor.py:99:18 - error: Argument of type "(data: IOmeterData) -> (float | None)" cannot be assigned to parameter "value_fn" of type "(IOmeterData) -> (str | int | float)" in function "__init__" +   Type "(data: IOmeterData) -> (float | None)" is not assignable to type "(IOmeterData) -> (str | int | float)" +     Function return type "float | None" is incompatible with type "str | int | float" +       Type "float | None" is not assignable to type "str | int | float" +         Type "None" is not assignable to type "str | int | float" +           "None" is not assignable to "str" +           "None" is not assignable to "int" +           "None" is not assignable to "float" (reportArgumentType) + /homeassistant/components/iometer/sensor.py:106:18 - error: Argument of type "(data: IOmeterData) -> (float | None)" cannot be assigned to parameter "value_fn" of type "(IOmeterData) -> (str | int | float)" in function "__init__" +   Type "(data: IOmeterData) -> (float | None)" is not assignable to type "(IOmeterData) -> (str | int | float)" +     Function return type "float | None" is incompatible with type "str | int | float" +       Type "float | None" is not assignable to type "str | int | float" +         Type "None" is not assignable to type "str | int | float" +           "None" is not assignable to "str" +           "None" is not assignable to "int" +           "None" is not assignable to "float" (reportArgumentType) + /homeassistant/components/iometer/sensor.py:128:7 - error: Base classes for class "IOmeterSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iometer/sensor.py:140:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "IOmeterEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/iometer/sensor.py:140:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "IOmeterEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/iometer/sensor.py:144:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/ios/sensor.py + /homeassistant/components/ios/sensor.py:100:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ios/sensor.py:116:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ios/sensor.py:129:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/iotawatt/sensor.py + /homeassistant/components/iotawatt/sensor.py:152:7 - error: Base classes for class "IotaWattSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iotawatt/sensor.py:172:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "IotaWattSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/iotawatt/sensor.py:172:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "IotaWattSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/iotawatt/sensor.py:180:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iotawatt/sensor.py:185:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iotawatt/sensor.py:213:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iotawatt/sensor.py:223:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/iotty/cover.py + /homeassistant/components/iotty/cover.py:92:7 - error: Base classes for class "IottyShutter" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iotty/cover.py:97:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "CoverEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/iotty/cover.py:97:5 - error: "_attr_supported_features" overrides symbol of same name in class "CoverEntity" +   Variable is mutable so its type is invariant +     Override type "CoverEntityFeature" is not the same as base type "CoverEntityFeature | None" (reportIncompatibleVariableOverride) + /homeassistant/components/iotty/cover.py:114:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iotty/cover.py:122:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iotty/cover.py:136:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iotty/cover.py:141:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iotty/cover.py:146:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iotty/cover.py:191:18 - error: "_iotty_device" overrides symbol of same name in class "IottyEntity" +   Variable is mutable so its type is invariant +     Override type "Shutter" is not the same as base type "Device" (reportIncompatibleVariableOverride) +/homeassistant/components/iotty/entity.py + /homeassistant/components/iotty/entity.py:5:36 - error: "Device" is not exported from module "iottycloud.lightswitch" +   Import from "iottycloud.device" instead (reportPrivateImportUsage) +/homeassistant/components/iotty/switch.py + /homeassistant/components/iotty/switch.py:143:7 - error: Base classes for class "IottySwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iotty/switch.py:147:5 - error: "_iotty_device" overrides symbol of same name in class "IottyEntity" +   Variable is mutable so its type is invariant +     Override type "LightSwitch | Outlet" is not the same as base type "Device" (reportIncompatibleVariableOverride) + /homeassistant/components/iotty/switch.py:159:14 - error: "_attr_device_class" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SwitchDeviceClass | None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/iotty/switch.py:162:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/iperf3/sensor.py + /homeassistant/components/iperf3/sensor.py:53:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ipma/sensor.py + /homeassistant/components/ipma/sensor.py:102:7 - error: Base classes for class "IPMASensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ipma/sensor.py:102:7 - error: Base classes for class "IPMASensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ipma/sensor.py:102:7 - error: Base classes for class "IPMASensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ipma/sensor.py:102:7 - error: Base classes for class "IPMASensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ipma/sensor.py:102:7 - error: Base classes for class "IPMASensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ipma/sensor.py:102:7 - error: Base classes for class "IPMASensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ipma/sensor.py:102:7 - error: Base classes for class "IPMASensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ipma/sensor.py:116:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "IPMASensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ipma/sensor.py:116:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "IPMASensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/ipma/weather.py + /homeassistant/components/ipma/weather.py:55:7 - error: Base classes for class "IPMAWeather" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ipma/weather.py:55:7 - error: Base classes for class "IPMAWeather" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ipma/weather.py:55:7 - error: Base classes for class "IPMAWeather" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ipma/weather.py:55:7 - error: Base classes for class "IPMAWeather" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ipma/weather.py:132:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ipma/weather.py:142:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ipma/weather.py:150:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ipma/weather.py:158:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ipma/weather.py:166:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ipma/weather.py:174:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ipp/sensor.py + /homeassistant/components/ipp/sensor.py:131:7 - error: Base classes for class "IPPSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ipp/sensor.py:134:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "IPPSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ipp/sensor.py:137:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ipp/sensor.py:142:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/iqvia/__init__.py + /homeassistant/components/iqvia/__init__.py:7:21 - error: "Client" is not exported from module "pyiqvia" +   Import from "pyiqvia.client" instead (reportPrivateImportUsage) +/homeassistant/components/iqvia/config_flow.py + /homeassistant/components/iqvia/config_flow.py:7:21 - error: "Client" is not exported from module "pyiqvia" +   Import from "pyiqvia.client" instead (reportPrivateImportUsage) +/homeassistant/components/iqvia/sensor.py + /homeassistant/components/iqvia/sensor.py:177:7 - error: Base classes for class "ForecastSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iqvia/sensor.py:222:7 - error: Base classes for class "IndexSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iqvia/sensor.py:250:37 - error: "data" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/irish_rail_transport/sensor.py + /homeassistant/components/irish_rail_transport/sensor.py:8:6 - error: Import "pyirishrail.pyirishrail" could not be resolved (reportMissingImports) + /homeassistant/components/irish_rail_transport/sensor.py:98:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/irish_rail_transport/sensor.py:103:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/irish_rail_transport/sensor.py:108:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/irish_rail_transport/sensor.py:134:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/irm_kmi/config_flow.py + /homeassistant/components/irm_kmi/config_flow.py:48:9 - error: Method "async_get_options_flow" overrides class "ConfigFlow" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "config_entry", override parameter is named "_config_entry" (reportIncompatibleMethodOverride) +/homeassistant/components/irm_kmi/coordinator.py + /homeassistant/components/irm_kmi/coordinator.py:91:59 - error: Argument of type "ZoneInfo | None" cannot be assigned to parameter "tz" of type "ZoneInfo" in function "get_current_weather" +   Type "ZoneInfo | None" is not assignable to type "ZoneInfo" +     "None" is not assignable to "ZoneInfo" (reportArgumentType) + /homeassistant/components/irm_kmi/coordinator.py:92:57 - error: Argument of type "ZoneInfo | None" cannot be assigned to parameter "tz" of type "ZoneInfo" in function "get_daily_forecast" +   Type "ZoneInfo | None" is not assignable to type "ZoneInfo" +     "None" is not assignable to "ZoneInfo" (reportArgumentType) + /homeassistant/components/irm_kmi/coordinator.py:93:59 - error: Argument of type "ZoneInfo | None" cannot be assigned to parameter "tz" of type "ZoneInfo" in function "get_hourly_forecast" +   Type "ZoneInfo | None" is not assignable to type "ZoneInfo" +     "None" is not assignable to "ZoneInfo" (reportArgumentType) + /homeassistant/components/irm_kmi/coordinator.py:94:21 - error: Argument of type "str | None" cannot be assigned to parameter "country" of type "str" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/irm_kmi/weather.py + /homeassistant/components/irm_kmi/weather.py:57:49 - error: Argument of type "Self@IrmKmiWeather" cannot be assigned to parameter "self" of type "SingleCoordinatorWeatherEntity[DataUpdateCoordinator[dict[str, Any]]]" in function "__init__" +   "IrmKmiWeather*" is not assignable to "SingleCoordinatorWeatherEntity[DataUpdateCoordinator[dict[str, Any]]]" +     Type parameter "_ObservationUpdateCoordinatorT@SingleCoordinatorWeatherEntity" is invariant, but "IrmKmiCoordinator" is not the same as "DataUpdateCoordinator[dict[str, Any]]" (reportArgumentType) + /homeassistant/components/irm_kmi/weather.py:57:55 - error: Argument of type "IrmKmiCoordinator" cannot be assigned to parameter "coordinator" of type "DataUpdateCoordinator[dict[str, Any]]" in function "__init__" +   "IrmKmiCoordinator" is not assignable to "DataUpdateCoordinator[dict[str, Any]]" +     Type parameter "_DataT@DataUpdateCoordinator" is invariant, but "ProcessedCoordinatorData" is not the same as "dict[str, Any]" (reportArgumentType) + /homeassistant/components/irm_kmi/weather.py:71:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/irm_kmi/weather.py:76:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/irm_kmi/weather.py:81:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/irm_kmi/weather.py:86:9 - error: "native_wind_gust_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/irm_kmi/weather.py:91:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/irm_kmi/weather.py:96:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/irm_kmi/weather.py:101:9 - error: "uv_index" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/irm_kmi/weather.py:107:16 - error: Type "list[ExtendedForecast]" is not assignable to return type "list[Forecast] | None" +   Type "list[ExtendedForecast]" is not assignable to type "list[Forecast] | None" +     "list[ExtendedForecast]" is not assignable to "list[Forecast]" +       Type parameter "_T@list" is invariant, but "ExtendedForecast" is not the same as "Forecast" +       Consider switching from "list" to "Sequence" which is covariant +     "list[ExtendedForecast]" is not assignable to "None" (reportReturnType) + /homeassistant/components/irm_kmi/weather.py:119:32 - error: Type "list[ExtendedForecast]" is not assignable to declared type "list[Forecast]" +   "list[ExtendedForecast]" is not assignable to "list[Forecast]" +     Type parameter "_T@list" is invariant, but "ExtendedForecast" is not the same as "Forecast" +     Consider switching from "list" to "Sequence" which is covariant (reportAssignmentType) + /homeassistant/components/irm_kmi/weather.py:131:21 - error: Could not access item in TypedDict +   "native_temperature" is not a required key in "Forecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/irm_kmi/weather.py:132:49 - error: Could not access item in TypedDict +   "native_temperature" is not a required key in "Forecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/irm_kmi/weather.py:135:21 - error: Could not access item in TypedDict +   "native_temperature" is not a required key in "Forecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/irm_kmi/weather.py:150:21 - error: Could not access item in TypedDict +   "native_temperature" is not a required key in "Forecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/irm_kmi/weather.py:151:49 - error: Could not access item in TypedDict +   "native_temperature" is not a required key in "Forecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/irm_kmi/weather.py:154:21 - error: Could not access item in TypedDict +   "native_temperature" is not a required key in "Forecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/iron_os/binary_sensor.py + /homeassistant/components/iron_os/binary_sensor.py:46:7 - error: Base classes for class "IronOSBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/binary_sensor.py:52:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/iron_os/button.py + /homeassistant/components/iron_os/button.py:67:7 - error: Base classes for class "IronOSButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/button.py:70:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "IronOSButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/iron_os/number.py + /homeassistant/components/iron_os/number.py:391:7 - error: Base classes for class "IronOSNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/number.py:394:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "IronOSNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/number.py:414:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/number.py:436:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/number.py:446:9 - error: "native_min_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/number.py:457:9 - error: "native_max_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/iron_os/select.py + /homeassistant/components/iron_os/select.py:199:7 - error: Base classes for class "IronOSSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/select.py:202:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "IronOSSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/select.py:215:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/iron_os/sensor.py + /homeassistant/components/iron_os/sensor.py:198:7 - error: Base classes for class "IronOSSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/sensor.py:201:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "IronOSSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/sensor.py:205:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/iron_os/switch.py + /homeassistant/components/iron_os/switch.py:124:7 - error: Base classes for class "IronOSSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/switch.py:127:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "IronOSSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/switch.py:140:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/iron_os/update.py + /homeassistant/components/iron_os/update.py:42:7 - error: Base classes for class "IronOSUpdate" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/update.py:42:7 - error: Base classes for class "IronOSUpdate" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/update.py:42:7 - error: Base classes for class "IronOSUpdate" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/update.py:42:7 - error: Base classes for class "IronOSUpdate" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/update.py:42:7 - error: Base classes for class "IronOSUpdate" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/update.py:42:7 - error: Base classes for class "IronOSUpdate" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/update.py:42:7 - error: Base classes for class "IronOSUpdate" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/update.py:42:7 - error: Base classes for class "IronOSUpdate" define variable "entity_category" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/update.py:58:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/update.py:64:9 - error: "title" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/update.py:70:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/update.py:76:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/iron_os/update.py:100:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/iskra/config_flow.py + /homeassistant/components/iskra/config_flow.py:147:37 - error: "device_info" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/iskra/config_flow.py:183:33 - error: "device_info" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/iskra/config_flow.py:219:33 - error: "device_info" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/iskra/sensor.py + /homeassistant/components/iskra/sensor.py:65:55 - error: Cannot access attribute "total" for class "None" +   Attribute "total" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iskra/sensor.py:73:55 - error: Cannot access attribute "total" for class "None" +   Attribute "total" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iskra/sensor.py:81:55 - error: Cannot access attribute "total" for class "None" +   Attribute "total" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iskra/sensor.py:89:55 - error: Cannot access attribute "phases" for class "None" +   Attribute "phases" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iskra/sensor.py:97:55 - error: Cannot access attribute "phases" for class "None" +   Attribute "phases" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iskra/sensor.py:105:55 - error: Cannot access attribute "phases" for class "None" +   Attribute "phases" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iskra/sensor.py:114:55 - error: Cannot access attribute "phases" for class "None" +   Attribute "phases" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iskra/sensor.py:122:55 - error: Cannot access attribute "phases" for class "None" +   Attribute "phases" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iskra/sensor.py:130:55 - error: Cannot access attribute "phases" for class "None" +   Attribute "phases" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iskra/sensor.py:139:55 - error: Cannot access attribute "phases" for class "None" +   Attribute "phases" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iskra/sensor.py:147:55 - error: Cannot access attribute "phases" for class "None" +   Attribute "phases" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iskra/sensor.py:155:55 - error: Cannot access attribute "phases" for class "None" +   Attribute "phases" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iskra/sensor.py:164:55 - error: Cannot access attribute "frequency" for class "None" +   Attribute "frequency" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iskra/sensor.py:183:55 - error: Cannot access attribute "non_resettable" for class "None" +   Attribute "non_resettable" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iskra/sensor.py:191:55 - error: Cannot access attribute "resettable" for class "None" +   Attribute "resettable" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iskra/sensor.py:250:61 - error: Cannot access attribute "non_resettable" for class "None" +   Attribute "non_resettable" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iskra/sensor.py:256:61 - error: Cannot access attribute "resettable" for class "None" +   Attribute "resettable" is unknown (reportAttributeAccessIssue) + /homeassistant/components/iskra/sensor.py:265:7 - error: Base classes for class "IskraSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iskra/sensor.py:277:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "IskraSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/iskra/sensor.py:277:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "IskraSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/iskra/sensor.py:281:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/islamic_prayer_times/__init__.py + /homeassistant/components/islamic_prayer_times/__init__.py:71:47 - error: "unique_id" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/islamic_prayer_times/sensor.py + /homeassistant/components/islamic_prayer_times/sensor.py:65:7 - error: Base classes for class "IslamicPrayerTimeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/islamic_prayer_times/sensor.py:89:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/israel_rail/sensor.py + /homeassistant/components/israel_rail/sensor.py:92:7 - error: Base classes for class "IsraelRailEntitySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/israel_rail/sensor.py:109:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "IsraelRailSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/israel_rail/sensor.py:109:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "IsraelRailSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/israel_rail/sensor.py:117:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/iss/sensor.py + /homeassistant/components/iss/sensor.py:38:7 - error: Base classes for class "IssSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/iss/sensor.py:61:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/iss/sensor.py:66:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ista_ecotrend/__init__.py + /homeassistant/components/ista_ecotrend/__init__.py:26:9 - error: Argument of type "Logger" cannot be assigned to parameter "totp" of type "str | None" in function "__init__" +   Type "Logger" is not assignable to type "str | None" +     "Logger" is not assignable to "str" +     "Logger" is not assignable to "None" (reportArgumentType) +/homeassistant/components/ista_ecotrend/config_flow.py + /homeassistant/components/ista_ecotrend/config_flow.py:54:17 - error: Argument of type "Logger" cannot be assigned to parameter "totp" of type "str | None" in function "__init__" +   Type "Logger" is not assignable to type "str | None" +     "Logger" is not assignable to "str" +     "Logger" is not assignable to "None" (reportArgumentType) + /homeassistant/components/ista_ecotrend/config_flow.py:105:17 - error: Argument of type "Logger" cannot be assigned to parameter "totp" of type "str | None" in function "__init__" +   Type "Logger" is not assignable to type "str | None" +     "Logger" is not assignable to "str" +     "Logger" is not assignable to "None" (reportArgumentType) +/homeassistant/components/ista_ecotrend/sensor.py + /homeassistant/components/ista_ecotrend/sensor.py:175:7 - error: Base classes for class "IstaSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ista_ecotrend/sensor.py:180:5 - error: "device_entry" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DeviceEntry" is not the same as base type "DeviceEntry | None" (reportIncompatibleVariableOverride) + /homeassistant/components/ista_ecotrend/sensor.py:191:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "IstaSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ista_ecotrend/sensor.py:191:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "IstaSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ista_ecotrend/sensor.py:204:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/isy994/__init__.py + /homeassistant/components/isy994/__init__.py:103:17 - error: Argument of type "Any | None" cannot be assigned to parameter "tls_ver" of type "float" in function "__init__" +   Type "Any | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportArgumentType) + /homeassistant/components/isy994/__init__.py:134:33 - error: Argument of type "Nodes | None" cannot be assigned to parameter "nodes" of type "Nodes" in function "_categorize_nodes" +   Type "Nodes | None" is not assignable to type "Nodes" +     "None" is not assignable to "Nodes" (reportArgumentType) + /homeassistant/components/isy994/__init__.py:135:36 - error: Argument of type "Programs | None" cannot be assigned to parameter "programs" of type "Programs" in function "_categorize_programs" +   Type "Programs | None" is not assignable to type "Programs" +     "None" is not assignable to "Programs" (reportArgumentType) + /homeassistant/components/isy994/__init__.py:137:22 - error: "children" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/__init__.py:142:44 - error: "children" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/__init__.py:143:28 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/isy994/__init__.py:143:28 - error: "__getitem__" method not defined on type "Variable" (reportIndexIssue) + /homeassistant/components/isy994/__init__.py:146:26 - error: "nobjs" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/__init__.py:150:40 - error: "nobjs" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/__init__.py:169:23 - error: "stop" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/__init__.py:172:19 - error: "start" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/__init__.py:222:39 - error: "stop" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/isy994/binary_sensor.py + /homeassistant/components/isy994/binary_sensor.py:87:35 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/binary_sensor.py:127:70 - error: "address" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/binary_sensor.py:146:35 - error: "parent_entity" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/isy994/binary_sensor.py:149:35 - error: "parent_entity" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/isy994/binary_sensor.py:168:31 - error: "parent_entity" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/isy994/binary_sensor.py:221:28 - error: Cannot access attribute "type" for class "Group" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/binary_sensor.py:228:32 - error: Cannot access attribute "zwave_props" for class "Group" +   Attribute "zwave_props" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/binary_sensor.py:228:44 - error: "category" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/binary_sensor.py:230:21 - error: Cannot access attribute "zwave_props" for class "Group" +   Attribute "zwave_props" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/binary_sensor.py:230:33 - error: "category" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/binary_sensor.py:236:28 - error: "startswith" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/binary_sensor.py:241:7 - error: Base classes for class "ISYBinarySensorEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/binary_sensor.py:241:7 - error: Base classes for class "ISYBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/binary_sensor.py:257:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/binary_sensor.py:295:20 - error: Cannot access attribute "control_events" for class "Program" +   Attribute "control_events" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/binary_sensor.py:295:20 - error: Cannot access attribute "control_events" for class "Variable" +   Attribute "control_events" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/binary_sensor.py:414:7 - error: Base classes for class "ISYBinarySensorHeartbeat" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/binary_sensor.py:414:7 - error: Base classes for class "ISYBinarySensorHeartbeat" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/binary_sensor.py:414:7 - error: Base classes for class "ISYBinarySensorHeartbeat" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/binary_sensor.py:414:7 - error: Base classes for class "ISYBinarySensorHeartbeat" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/binary_sensor.py:414:7 - error: Base classes for class "ISYBinarySensorHeartbeat" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/binary_sensor.py:448:20 - error: Cannot access attribute "control_events" for class "Program" +   Attribute "control_events" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/binary_sensor.py:448:20 - error: Cannot access attribute "control_events" for class "Variable" +   Attribute "control_events" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/binary_sensor.py:504:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/binary_sensor.py:514:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/binary_sensor.py:521:7 - error: Base classes for class "ISYBinarySensorProgramEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/binary_sensor.py:529:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/isy994/button.py + /homeassistant/components/isy994/button.py:111:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/button.py:120:49 - error: Cannot access attribute "isy" for class "ISY" +   Attribute "isy" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/button.py:120:59 - error: "status_events" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/button.py:123:41 - error: Cannot access attribute "address" for class "ISY" +   Attribute "address" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/button.py:142:26 - error: Cannot access attribute "query" for class "NetworkCommand" +   Attribute "query" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/button.py:150:26 - error: Cannot access attribute "beep" for class "ISY" +   Attribute "beep" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/button.py:150:26 - error: Cannot access attribute "beep" for class "NetworkCommand" +   Attribute "beep" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/button.py:160:26 - error: Cannot access attribute "run" for class "Node" +   Attribute "run" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/button.py:160:26 - error: Cannot access attribute "run" for class "ISY" +   Attribute "run" is unknown (reportAttributeAccessIssue) +/homeassistant/components/isy994/climate.py + /homeassistant/components/isy994/climate.py:72:29 - error: Argument of type "Node | Group" cannot be assigned to parameter "node" of type "Node" in function "__init__" +   Type "Node | Group" is not assignable to type "Node" +     "Group" is not assignable to "Node" (reportArgumentType) + /homeassistant/components/isy994/climate.py:72:47 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/climate.py:77:7 - error: Base classes for class "ISYThermostatEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/climate.py:77:7 - error: Base classes for class "ISYThermostatEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/climate.py:95:32 - error: Cannot access attribute "uom" for class "Program" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:95:32 - error: Cannot access attribute "uom" for class "Variable" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:97:25 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/isy994/climate.py:97:36 - error: Cannot access attribute "uom" for class "Program" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:97:36 - error: Cannot access attribute "uom" for class "Variable" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:100:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/climate.py:102:35 - error: Cannot access attribute "aux_properties" for class "Program" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:102:35 - error: Cannot access attribute "aux_properties" for class "Variable" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:111:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/climate.py:113:40 - error: Cannot access attribute "aux_properties" for class "Program" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:113:40 - error: Cannot access attribute "aux_properties" for class "Variable" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:120:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/climate.py:122:41 - error: Cannot access attribute "aux_properties" for class "Program" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:122:41 - error: Cannot access attribute "aux_properties" for class "Variable" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:140:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/climate.py:142:34 - error: Cannot access attribute "aux_properties" for class "Program" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:142:34 - error: Cannot access attribute "aux_properties" for class "Variable" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:150:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/climate.py:153:13 - error: Argument of type "float | int | object | None" cannot be assigned to parameter "value" of type "float | None" in function "convert_isy_value_to_hass" +   Type "float | int | object | None" is not assignable to type "float | None" +     Type "object" is not assignable to type "float | None" +       "object" is not assignable to "float" +       "object" is not assignable to "None" (reportArgumentType) + /homeassistant/components/isy994/climate.py:153:54 - error: Cannot access attribute "prec" for class "Program" +   Attribute "prec" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:157:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/climate.py:166:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/climate.py:168:29 - error: Cannot access attribute "aux_properties" for class "Program" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:168:29 - error: Cannot access attribute "aux_properties" for class "Variable" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:174:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/climate.py:176:29 - error: Cannot access attribute "aux_properties" for class "Program" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:176:29 - error: Cannot access attribute "aux_properties" for class "Variable" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:182:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/climate.py:184:31 - error: Cannot access attribute "aux_properties" for class "Program" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:184:31 - error: Cannot access attribute "aux_properties" for class "Variable" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:200:30 - error: Cannot access attribute "set_climate_setpoint_heat" for class "Program" +   Attribute "set_climate_setpoint_heat" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:200:30 - error: Cannot access attribute "set_climate_setpoint_heat" for class "Variable" +   Attribute "set_climate_setpoint_heat" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:202:30 - error: Cannot access attribute "set_climate_setpoint_cool" for class "Program" +   Attribute "set_climate_setpoint_cool" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:202:30 - error: Cannot access attribute "set_climate_setpoint_cool" for class "Variable" +   Attribute "set_climate_setpoint_cool" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:208:26 - error: Cannot access attribute "set_fan_mode" for class "Program" +   Attribute "set_fan_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:208:26 - error: Cannot access attribute "set_fan_mode" for class "Variable" +   Attribute "set_fan_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:208:39 - error: Argument of type "str | None" cannot be assigned to parameter "cmd" of type "str" in function "set_fan_mode" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/climate.py:214:26 - error: Cannot access attribute "set_climate_mode" for class "Program" +   Attribute "set_climate_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:214:26 - error: Cannot access attribute "set_climate_mode" for class "Variable" +   Attribute "set_climate_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/climate.py:214:43 - error: Argument of type "str | None" cannot be assigned to parameter "cmd" of type "str" in function "set_climate_mode" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/isy994/config_flow.py + /homeassistant/components/isy994/config_flow.py:105:17 - error: Argument of type "Any | None" cannot be assigned to parameter "tls_ver" of type "float" in function "__init__" +   Type "Any | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportArgumentType) + /homeassistant/components/isy994/config_flow.py:275:63 - error: Could not access item in TypedDict +   "unique_id" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/isy994/cover.py + /homeassistant/components/isy994/cover.py:32:42 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/cover.py:44:7 - error: Base classes for class "ISYCoverEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/cover.py:44:7 - error: Base classes for class "ISYCoverEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/cover.py:54:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/cover.py:58:23 - error: Cannot access attribute "uom" for class "Program" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/cover.py:58:23 - error: Cannot access attribute "uom" for class "Variable" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/cover.py:60:31 - error: Argument of type "tuple[Literal[0], float | int | object | None, Literal[100]]" cannot be assigned to parameter "iterable" of type "Iterable[SupportsRichComparisonT@sorted]" in function "sorted" +   Type "float | int | object | None" is not assignable to type "SupportsRichComparison" +     Type "float | int | object | None" is not assignable to type "SupportsRichComparison" +       Type "object" is not assignable to type "SupportsRichComparison" +         "object" is incompatible with protocol "SupportsDunderLT[Any]" +           "__lt__" is not present +         "object" is incompatible with protocol "SupportsDunderGT[Any]" +           "__gt__" is not present (reportArgumentType) + /homeassistant/components/isy994/cover.py:63:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/cover.py:71:33 - error: Cannot access attribute "turn_on" for class "Program" +   Attribute "turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/cover.py:71:33 - error: Cannot access attribute "turn_on" for class "Variable" +   Attribute "turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/cover.py:76:33 - error: Cannot access attribute "turn_off" for class "Program" +   Attribute "turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/cover.py:76:33 - error: Cannot access attribute "turn_off" for class "Variable" +   Attribute "turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/cover.py:82:23 - error: Cannot access attribute "uom" for class "Program" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/cover.py:82:23 - error: Cannot access attribute "uom" for class "Variable" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/cover.py:84:33 - error: Cannot access attribute "turn_on" for class "Program" +   Attribute "turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/cover.py:84:33 - error: Cannot access attribute "turn_on" for class "Variable" +   Attribute "turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/cover.py:88:7 - error: Base classes for class "ISYCoverProgramEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/cover.py:92:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/isy994/entity.py + /homeassistant/components/isy994/entity.py:46:22 - error: Cannot assign to attribute "_node" for class "ISYEntity*" +   Type "Node | Group | Variable | Program" is not assignable to type "Node | Program | Variable" +     Type "Group" is not assignable to type "Node | Program | Variable" +       "Group" is not assignable to "Node" +       "Group" is not assignable to "Program" +       "Group" is not assignable to "Variable" (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:61:48 - error: Cannot access attribute "control_events" for class "Program" +   Attribute "control_events" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:61:48 - error: Cannot access attribute "control_events" for class "Variable" +   Attribute "control_events" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:99:50 - error: Cannot access attribute "parent_node" for class "Group" +   Attribute "parent_node" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:99:50 - error: Cannot access attribute "parent_node" for class "Variable" +   Attribute "parent_node" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:99:50 - error: Cannot access attribute "parent_node" for class "Program" +   Attribute "parent_node" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:104:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/entity.py:109:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/entity.py:121:43 - error: Cannot access attribute "aux_properties" for class "Program" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:121:43 - error: Cannot access attribute "aux_properties" for class "Variable" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:127:54 - error: Cannot access attribute "group_all_on" for class "Node" +   Attribute "group_all_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:127:54 - error: Cannot access attribute "group_all_on" for class "Program" +   Attribute "group_all_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:127:54 - error: Cannot access attribute "group_all_on" for class "Variable" +   Attribute "group_all_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:151:26 - error: Cannot access attribute "send_cmd" for class "Variable" +   Attribute "send_cmd" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:151:44 - error: Expected 1 positional argument (reportCallIssue) + /homeassistant/components/isy994/entity.py:160:26 - error: Cannot access attribute "get_zwave_parameter" for class "Program" +   Attribute "get_zwave_parameter" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:160:26 - error: Cannot access attribute "get_zwave_parameter" for class "Variable" +   Attribute "get_zwave_parameter" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:171:26 - error: Cannot access attribute "set_zwave_parameter" for class "Program" +   Attribute "set_zwave_parameter" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:171:26 - error: Cannot access attribute "set_zwave_parameter" for class "Variable" +   Attribute "set_zwave_parameter" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:171:57 - error: Argument of type "Any | None" cannot be assigned to parameter "value" of type "int | str" in function "set_zwave_parameter" +   Type "Any | None" is not assignable to type "int | str" +     Type "None" is not assignable to type "int | str" +       "None" is not assignable to "int" +       "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/entity.py:171:64 - error: Argument of type "int | None" cannot be assigned to parameter "size" of type "int" in function "set_zwave_parameter" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/isy994/entity.py:172:26 - error: Cannot access attribute "get_zwave_parameter" for class "Program" +   Attribute "get_zwave_parameter" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:172:26 - error: Cannot access attribute "get_zwave_parameter" for class "Variable" +   Attribute "get_zwave_parameter" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:176:26 - error: Cannot access attribute "rename" for class "Program" +   Attribute "rename" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:176:26 - error: Cannot access attribute "rename" for class "Variable" +   Attribute "rename" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:184:5 - error: "_node" overrides symbol of same name in class "ISYEntity" +   Variable is mutable so its type is invariant +     Override type "Program" is not the same as base type "Node | Program | Variable" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/entity.py:186:71 - error: Expression of type "None" cannot be assigned to parameter of type "Program" +   "None" is not assignable to "Program" (reportArgumentType) + /homeassistant/components/isy994/entity.py:193:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/entity.py:242:47 - error: Cannot assign to attribute "_change_handler" for class "ISYAuxControlEntity*" +   "None" is not assignable to "EventListener" (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:243:53 - error: Cannot assign to attribute "_availability_handler" for class "ISYAuxControlEntity*" +   "None" is not assignable to "EventListener" (reportAttributeAccessIssue) + /homeassistant/components/isy994/entity.py:252:59 - error: "status_events" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/entity.py:267:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/isy994/fan.py + /homeassistant/components/isy994/fan.py:36:40 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/fan.py:48:7 - error: Base classes for class "ISYFanEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/fan.py:48:7 - error: Base classes for class "ISYFanEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/fan.py:58:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/fan.py:62:56 - error: Argument of type "float | int | object | None" cannot be assigned to parameter "value" of type "float" in function "ranged_value_to_percentage" +   Type "float | int | object | None" is not assignable to type "float" +     "object" is not assignable to "float" (reportArgumentType) + /homeassistant/components/isy994/fan.py:65:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/fan.py:81:30 - error: Cannot access attribute "turn_off" for class "Program" +   Attribute "turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/fan.py:81:30 - error: Cannot access attribute "turn_off" for class "Variable" +   Attribute "turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/fan.py:86:26 - error: Cannot access attribute "turn_on" for class "Program" +   Attribute "turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/fan.py:86:26 - error: Cannot access attribute "turn_on" for class "Variable" +   Attribute "turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/fan.py:99:26 - error: Cannot access attribute "turn_off" for class "Program" +   Attribute "turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/fan.py:99:26 - error: Cannot access attribute "turn_off" for class "Variable" +   Attribute "turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/fan.py:102:7 - error: Base classes for class "ISYFanProgramEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/fan.py:106:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/fan.py:113:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) +/homeassistant/components/isy994/helpers.py + /homeassistant/components/isy994/helpers.py:75:49 - error: Cannot access attribute "node_def_id" for class "Group" +   Attribute "node_def_id" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/helpers.py:79:24 - error: Cannot access attribute "node_def_id" for class "Group" +   Attribute "node_def_id" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/helpers.py:101:42 - error: Cannot access attribute "type" for class "Group" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/helpers.py:105:24 - error: Cannot access attribute "type" for class "Group" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/helpers.py:165:49 - error: Cannot access attribute "zwave_props" for class "Group" +   Attribute "zwave_props" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/helpers.py:169:24 - error: Cannot access attribute "zwave_props" for class "Group" +   Attribute "zwave_props" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/helpers.py:193:41 - error: Cannot access attribute "uom" for class "Group" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/helpers.py:198:21 - error: Cannot access attribute "uom" for class "Group" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/helpers.py:199:24 - error: Cannot access attribute "uom" for class "Group" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/helpers.py:200:25 - error: Cannot access attribute "uom" for class "Group" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/helpers.py:229:41 - error: Cannot access attribute "uom" for class "Group" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/helpers.py:234:28 - error: Cannot access attribute "uom" for class "Group" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/helpers.py:237:40 - error: Cannot access attribute "uom" for class "Group" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/helpers.py:287:8 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/helpers.py:298:36 - error: "title" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/helpers.py:401:41 - error: Cannot access attribute "children" for class "Program" +   Attribute "children" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/helpers.py:401:41 - error: Cannot access attribute "children" for class "Folder" +   Attribute "children" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/helpers.py:404:39 - error: "__getitem__" method not defined on type "Program" (reportIndexIssue) + /homeassistant/components/isy994/helpers.py:404:39 - error: "__getitem__" method not defined on type "Folder" (reportIndexIssue) + /homeassistant/components/isy994/helpers.py:404:39 - error: Type "Unknown | Program | Folder | None" is not assignable to declared type "Programs" +   Type "Unknown | Program | Folder | None" is not assignable to type "Programs" +     "Folder" is not assignable to "Programs" (reportAssignmentType) + /homeassistant/components/isy994/helpers.py:407:37 - error: Cannot access attribute "protocol" for class "Programs" +   Attribute "protocol" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/helpers.py:417:43 - error: Cannot access attribute "protocol" for class "Programs" +   Attribute "protocol" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/helpers.py:429:48 - error: Argument of type "tuple[str, Program | Folder | Programs, Program | Folder | Programs | None]" cannot be assigned to parameter "object" of type "tuple[str, Program, Program]" in function "append" +   "tuple[str, Program | Folder | Programs, Program | Folder | Programs | None]" is not assignable to "tuple[str, Program, Program]" +     Tuple entry 2 is incorrect type +       Type "Program | Folder | Programs" is not assignable to type "Program" +         "Folder" is not assignable to "Program" (reportArgumentType) +/homeassistant/components/isy994/light.py + /homeassistant/components/isy994/light.py:37:24 - error: Argument of type "Node | Group" cannot be assigned to parameter "node" of type "Node" in function "__init__" +   Type "Node | Group" is not assignable to type "Node" +     "Group" is not assignable to "Node" (reportArgumentType) + /homeassistant/components/isy994/light.py:37:63 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/light.py:42:7 - error: Base classes for class "ISYLightEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/light.py:42:7 - error: Base classes for class "ISYLightEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/light.py:42:7 - error: Base classes for class "ISYLightEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/light.py:42:7 - error: Base classes for class "ISYLightEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/light.py:42:7 - error: Base classes for class "ISYLightEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/light.py:42:7 - error: Base classes for class "ISYLightEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/light.py:42:7 - error: Base classes for class "ISYLightEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/light.py:60:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/light.py:64:20 - error: Argument of type "float | int | object | None" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "float | int | object | None" is not assignable to type "ConvertibleToInt" +     Type "object" is not assignable to type "ConvertibleToInt" +       "object" is not assignable to "str" +       "object" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "object" is incompatible with protocol "SupportsInt" +         "__int__" is not present +       "object" is incompatible with protocol "SupportsIndex" + ... (reportArgumentType) + /homeassistant/components/isy994/light.py:64:20 - error: Argument of type "float | int | object | None" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "float | int | object | None" is not assignable to type "ConvertibleToInt" +     Type "object" is not assignable to type "ConvertibleToInt" +       "object" is not assignable to "str" +       "object" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "object" is incompatible with protocol "SupportsInt" +         "__int__" is not present +       "object" is incompatible with protocol "SupportsIndex" (reportArgumentType) + /homeassistant/components/isy994/light.py:67:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/light.py:72:23 - error: Cannot access attribute "uom" for class "Program" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/light.py:72:23 - error: Cannot access attribute "uom" for class "Variable" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/light.py:74:20 - error: Argument of type "float | int | object | None" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "float | int | object | None" is not assignable to type "ConvertibleToInt" +     Type "object" is not assignable to type "ConvertibleToInt" +       "object" is not assignable to "str" +       "object" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "object" is incompatible with protocol "SupportsInt" +         "__int__" is not present +       "object" is incompatible with protocol "SupportsIndex" + ... (reportArgumentType) + /homeassistant/components/isy994/light.py:74:20 - error: Argument of type "float | int | object | None" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "float | int | object | None" is not assignable to type "ConvertibleToInt" +     Type "object" is not assignable to type "ConvertibleToInt" +       "object" is not assignable to "str" +       "object" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "object" is incompatible with protocol "SupportsInt" +         "__int__" is not present +       "object" is incompatible with protocol "SupportsIndex" (reportArgumentType) + /homeassistant/components/isy994/light.py:79:33 - error: Cannot access attribute "turn_off" for class "Program" +   Attribute "turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/light.py:79:33 - error: Cannot access attribute "turn_off" for class "Variable" +   Attribute "turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/light.py:86:37 - error: Cannot assign to attribute "_last_brightness" for class "ISYLightEntity*" +   Type "float | int | object | None" is not assignable to type "int | None" +     Type "object" is not assignable to type "int | None" +       "object" is not assignable to "int" +       "object" is not assignable to "None" (reportAttributeAccessIssue) + /homeassistant/components/isy994/light.py:87:27 - error: Cannot access attribute "uom" for class "Program" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/light.py:87:27 - error: Cannot access attribute "uom" for class "Variable" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/light.py:88:47 - error: Operator "*" not supported for types "float | int | object | None" and "float" +   Operator "*" not supported for types "object" and "float" +   Operator "*" not supported for types "None" and "float" (reportOperatorIssue) + /homeassistant/components/isy994/light.py:90:41 - error: Cannot assign to attribute "_last_brightness" for class "ISYLightEntity*" +   Type "float | int | object | None" is not assignable to type "int | None" +     Type "object" is not assignable to type "int | None" +       "object" is not assignable to "int" +       "object" is not assignable to "None" (reportAttributeAccessIssue) + /homeassistant/components/isy994/light.py:98:50 - error: Cannot access attribute "uom" for class "Program" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/light.py:98:50 - error: Cannot access attribute "uom" for class "Variable" +   Attribute "uom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/light.py:100:33 - error: Cannot access attribute "turn_on" for class "Program" +   Attribute "turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/light.py:100:33 - error: Cannot access attribute "turn_on" for class "Variable" +   Attribute "turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/light.py:104:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/isy994/lock.py + /homeassistant/components/isy994/lock.py:56:41 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/lock.py:69:7 - error: Base classes for class "ISYLockEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/lock.py:69:7 - error: Base classes for class "ISYLockEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/lock.py:73:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/lock.py:77:35 - error: Argument of type "float | int | object | None" cannot be assigned to parameter "key" of type "int" in function "get" +   Type "float | int | object | None" is not assignable to type "int" +     "object" is not assignable to "int" (reportArgumentType) + /homeassistant/components/isy994/lock.py:81:33 - error: Cannot access attribute "secure_lock" for class "Program" +   Attribute "secure_lock" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/lock.py:81:33 - error: Cannot access attribute "secure_lock" for class "Variable" +   Attribute "secure_lock" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/lock.py:86:33 - error: Cannot access attribute "secure_unlock" for class "Program" +   Attribute "secure_unlock" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/lock.py:86:33 - error: Cannot access attribute "secure_unlock" for class "Variable" +   Attribute "secure_unlock" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/lock.py:91:33 - error: Cannot access attribute "set_zwave_lock_code" for class "Program" +   Attribute "set_zwave_lock_code" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/lock.py:91:33 - error: Cannot access attribute "set_zwave_lock_code" for class "Variable" +   Attribute "set_zwave_lock_code" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/lock.py:98:33 - error: Cannot access attribute "delete_zwave_lock_code" for class "Program" +   Attribute "delete_zwave_lock_code" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/lock.py:98:33 - error: Cannot access attribute "delete_zwave_lock_code" for class "Variable" +   Attribute "delete_zwave_lock_code" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/lock.py:104:7 - error: Base classes for class "ISYLockProgramEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/lock.py:108:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/isy994/number.py + /homeassistant/components/isy994/number.py:130:44 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/number.py:139:7 - error: Base classes for class "ISYAuxControlNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/number.py:145:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/number.py:169:43 - error: Argument of type "float" cannot be assigned to parameter "val" of type "int" in function "set_on_level" +   "float" is not assignable to "int" (reportArgumentType) + /homeassistant/components/isy994/number.py:216:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/number.py:219:13 - error: Argument of type "object | None" cannot be assigned to parameter "value" of type "float | None" in function "convert_isy_value_to_hass" +   Type "object | None" is not assignable to type "float | None" +     Type "object" is not assignable to type "float | None" +       "object" is not assignable to "float" +       "object" is not assignable to "None" (reportArgumentType) + /homeassistant/components/isy994/number.py:225:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/number.py:239:7 - error: Base classes for class "ISYBacklightNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/number.py:267:60 - error: "status_events" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/isy994/select.py + /homeassistant/components/isy994/select.py:80:50 - error: Argument of type "Literal[True]" cannot be assigned to parameter "key" of type "str" in function "get" +   "Literal[True]" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/select.py:94:44 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/select.py:113:7 - error: Base classes for class "ISYRampRateSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/select.py:117:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/select.py:131:7 - error: Base classes for class "ISYAuxControlIndexSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/select.py:135:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/select.py:142:30 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/isy994/select.py:142:47 - error: Argument of type "int | float" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "int | float" is not assignable to type "str" +     "float" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/select.py:154:7 - error: Base classes for class "ISYBacklightSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/select.py:154:7 - error: Base classes for class "ISYBacklightSelectEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/select.py:154:7 - error: Base classes for class "ISYBacklightSelectEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/select.py:154:7 - error: Base classes for class "ISYBacklightSelectEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/select.py:154:7 - error: Base classes for class "ISYBacklightSelectEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/select.py:181:60 - error: "status_events" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/isy994/sensor.py + /homeassistant/components/isy994/sensor.py:120:59 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/sensor.py:134:41 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/sensor.py:141:7 - error: Base classes for class "ISYSensorEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/sensor.py:141:7 - error: Base classes for class "ISYSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/sensor.py:147:16 - error: Type "Node | Program | Variable" is not assignable to return type "Node | NodeProperty | None" +   Type "Node | Program | Variable" is not assignable to type "Node | NodeProperty | None" +     Type "Program" is not assignable to type "Node | NodeProperty | None" +       "Program" is not assignable to "Node" +       "Program" is not assignable to "NodeProperty" +       "Program" is not assignable to "None" (reportReturnType) + /homeassistant/components/isy994/sensor.py:167:44 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/sensor.py:174:38 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/sensor.py:177:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/sensor.py:206:63 - error: Argument of type "Literal[UnitOfTemperature.CELSIUS, UnitOfTemperature.FAHRENHEIT] | None" cannot be assigned to parameter "from_unit" of type "str" in function "temperature" +   Type "Literal[UnitOfTemperature.CELSIUS, UnitOfTemperature.FAHRENHEIT] | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/sensor.py:212:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/sensor.py:246:47 - error: Cannot assign to attribute "_change_handler" for class "ISYAuxSensorEntity*" +   "None" is not assignable to "EventListener" (reportAttributeAccessIssue) + /homeassistant/components/isy994/sensor.py:247:53 - error: Cannot assign to attribute "_availability_handler" for class "ISYAuxSensorEntity*" +   "None" is not assignable to "EventListener" (reportAttributeAccessIssue) + /homeassistant/components/isy994/sensor.py:255:44 - error: Cannot access attribute "aux_properties" for class "Program" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/sensor.py:255:44 - error: Cannot access attribute "aux_properties" for class "Variable" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/sensor.py:258:46 - error: Cannot access attribute "aux_properties" for class "Program" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/sensor.py:258:46 - error: Cannot access attribute "aux_properties" for class "Variable" +   Attribute "aux_properties" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/sensor.py:263:61 - error: Cannot access attribute "value" for class "Node" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/sensor.py:273:14 - error: "_change_handler" overrides symbol of same name in class "ISYEntity" +   Variable is mutable so its type is invariant +     Override type "EventListener" is not the same as base type "EventListener | None" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/sensor.py:273:43 - error: Cannot access attribute "control_events" for class "Program" +   Attribute "control_events" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/sensor.py:273:43 - error: Cannot access attribute "control_events" for class "Variable" +   Attribute "control_events" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/sensor.py:276:59 - error: "status_events" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/sensor.py:292:38 - error: Cannot access attribute "enabled" for class "Variable" +   Attribute "enabled" is unknown (reportAttributeAccessIssue) +/homeassistant/components/isy994/services.py + /homeassistant/components/isy994/services.py:155:40 - error: "get_by_id" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/services.py:157:40 - error: "get_by_name" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/isy994/switch.py + /homeassistant/components/isy994/switch.py:55:54 - error: Cannot access attribute "controllers" for class "Node" +   Attribute "controllers" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/switch.py:57:38 - error: "get_by_id" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/switch.py:57:53 - error: Cannot access attribute "controllers" for class "Node" +   Attribute "controllers" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/switch.py:57:69 - error: Cannot access attribute "primary_node" for class "Nodes" +   Attribute "primary_node" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/switch.py:57:69 - error: "primary_node" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/switch.py:59:63 - error: Argument of type "str | Unknown | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/switch.py:79:45 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/isy994/switch.py:85:7 - error: Base classes for class "ISYSwitchEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/switch.py:85:7 - error: Base classes for class "ISYSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/switch.py:89:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/switch.py:97:33 - error: Cannot access attribute "turn_off" for class "Program" +   Attribute "turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/switch.py:97:33 - error: Cannot access attribute "turn_off" for class "Variable" +   Attribute "turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/switch.py:102:33 - error: Cannot access attribute "turn_on" for class "Program" +   Attribute "turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/switch.py:102:33 - error: Cannot access attribute "turn_on" for class "Variable" +   Attribute "turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/isy994/switch.py:106:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/switch.py:113:7 - error: Base classes for class "ISYSwitchProgramEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/switch.py:119:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/switch.py:163:14 - error: "_change_handler" overrides symbol of same name in class "ISYAuxControlEntity" +   Variable is mutable so its type is invariant +     Override type "EventListener | None" is not the same as base type "EventListener" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/switch.py:163:53 - error: "status_events" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/switch.py:173:9 - error: Method "async_on_update" overrides class "ISYAuxControlEntity" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "NodeProperty | NodeChangedEvent", override parameter is type "NodeChangedEvent" +     Type "NodeProperty | NodeChangedEvent" is not assignable to type "NodeChangedEvent" +       "NodeProperty" is not assignable to "NodeChangedEvent" (reportIncompatibleMethodOverride) + /homeassistant/components/isy994/switch.py:178:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/isy994/switch.py:183:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/isy994/system_health.py + /homeassistant/components/isy994/system_health.py:34:51 - error: "last_heartbeat" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/isy994/system_health.py:35:53 - error: "status" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/itach/remote.py + /homeassistant/components/itach/remote.py:9:8 - error: Import "pyitachip2ir" could not be resolved (reportMissingImports) + /homeassistant/components/itach/remote.py:120:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/itach/remote.py:125:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/itunes/media_player.py + /homeassistant/components/itunes/media_player.py:242:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/itunes/media_player.py:247:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/itunes/media_player.py:279:32 - error: "update_state" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/itunes/media_player.py:291:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/itunes/media_player.py:296:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/itunes/media_player.py:301:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/itunes/media_player.py:306:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/itunes/media_player.py:325:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/itunes/media_player.py:330:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/itunes/media_player.py:335:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/itunes/media_player.py:340:9 - error: "media_playlist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/itunes/media_player.py:345:9 - error: "shuffle" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/itunes/media_player.py:449:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/itunes/media_player.py:454:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/itunes/media_player.py:462:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/itunes/media_player.py:473:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ituran/binary_sensor.py + /homeassistant/components/ituran/binary_sensor.py:56:7 - error: Base classes for class "IturanBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ituran/binary_sensor.py:69:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "IturanBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ituran/binary_sensor.py:69:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "IturanBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ituran/binary_sensor.py:72:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ituran/device_tracker.py + /homeassistant/components/ituran/device_tracker.py:27:7 - error: Base classes for class "IturanDeviceTracker" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ituran/device_tracker.py:42:9 - error: "latitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ituran/device_tracker.py:47:9 - error: "longitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ituran/sensor.py + /homeassistant/components/ituran/sensor.py:120:7 - error: Base classes for class "IturanSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ituran/sensor.py:133:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "IturanSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ituran/sensor.py:133:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "IturanSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ituran/sensor.py:136:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/izone/climate.py + /homeassistant/components/izone/climate.py:264:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:293:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:306:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:314:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:320:9 - error: "preset_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:328:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:358:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:367:16 - error: Type "float | None" is not assignable to return type "float" +   Type "float | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportReturnType) + /homeassistant/components/izone/climate.py:370:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:375:9 - error: "fan_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:381:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:387:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:510:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:516:9 - error: "supported_features" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[ClimateEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:523:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:532:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:537:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:539:16 - error: Type "float | None" is not assignable to return type "float" +   Type "float | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportReturnType) + /homeassistant/components/izone/climate.py:542:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:549:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:554:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/izone/climate.py:619:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/izone/config_flow.py + /homeassistant/components/izone/config_flow.py:32:27 - error: "controllers" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/izone/config_flow.py:37:52 - error: "controllers" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/jellyfin/media_player.py + /homeassistant/components/jellyfin/media_player.py:55:7 - error: Base classes for class "JellyfinMediaPlayer" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/jellyfin/media_player.py:170:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/jellyfin/media_player.py:182:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/jellyfin/media_player.py:182:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) +/homeassistant/components/jellyfin/media_source.py + /homeassistant/components/jellyfin/media_source.py:67:5 - error: "name" overrides symbol of same name in class "MediaSource" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/jellyfin/remote.py + /homeassistant/components/jellyfin/remote.py:52:7 - error: Base classes for class "JellyfinRemote" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/jellyfin/remote.py:65:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/jellyfin/sensor.py + /homeassistant/components/jellyfin/sensor.py:56:7 - error: Base classes for class "JellyfinServerSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/jellyfin/sensor.py:68:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "JellyfinSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/jellyfin/sensor.py:68:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "JellyfinSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/jellyfin/sensor.py:72:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/jewish_calendar/binary_sensor.py + /homeassistant/components/jewish_calendar/binary_sensor.py:70:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "JewishCalendarBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/jewish_calendar/binary_sensor.py:73:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/jewish_calendar/sensor.py + /homeassistant/components/jewish_calendar/sensor.py:233:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "JewishCalendarBaseSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/jewish_calendar/sensor.py:265:5 - error: "entity_description" overrides symbol of same name in class "JewishCalendarBaseSensor" +   Variable is mutable so its type is invariant +     Override type "JewishCalendarSensorDescription" is not the same as base type "JewishCalendarBaseSensorDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/jewish_calendar/sensor.py:279:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/jewish_calendar/sensor.py:284:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/jewish_calendar/sensor.py:295:5 - error: "entity_description" overrides symbol of same name in class "JewishCalendarBaseSensor" +   Variable is mutable so its type is invariant +     Override type "JewishCalendarTimestampSensorDescription" is not the same as base type "JewishCalendarBaseSensorDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/jewish_calendar/sensor.py:298:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/joaoapps_join/__init__.py + /homeassistant/components/joaoapps_join/__init__.py:5:6 - error: Import "pyjoin" could not be resolved (reportMissingImports) +/homeassistant/components/joaoapps_join/notify.py + /homeassistant/components/joaoapps_join/notify.py:7:6 - error: Import "pyjoin" could not be resolved (reportMissingImports) +/homeassistant/components/justnimbus/sensor.py + /homeassistant/components/justnimbus/sensor.py:117:7 - error: Base classes for class "JustNimbusSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/justnimbus/sensor.py:128:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "JustNimbusEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/justnimbus/sensor.py:128:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "JustNimbusEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/justnimbus/sensor.py:136:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/jvc_projector/__init__.py + /homeassistant/components/jvc_projector/__init__.py:5:26 - error: "JvcProjector" is not exported from module "jvcprojector" +   Import from "jvcprojector.projector" instead (reportPrivateImportUsage) + /homeassistant/components/jvc_projector/__init__.py:5:40 - error: "JvcProjectorAuthError" is not exported from module "jvcprojector" +   Import from "jvcprojector.error" instead (reportPrivateImportUsage) + /homeassistant/components/jvc_projector/__init__.py:5:63 - error: "JvcProjectorConnectError" is not exported from module "jvcprojector" +   Import from "jvcprojector.error" instead (reportPrivateImportUsage) +/homeassistant/components/jvc_projector/binary_sensor.py + /homeassistant/components/jvc_projector/binary_sensor.py:28:7 - error: Base classes for class "JvcBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/jvc_projector/binary_sensor.py:42:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/jvc_projector/config_flow.py + /homeassistant/components/jvc_projector/config_flow.py:8:26 - error: "JvcProjector" is not exported from module "jvcprojector" +   Import from "jvcprojector.projector" instead (reportPrivateImportUsage) + /homeassistant/components/jvc_projector/config_flow.py:8:40 - error: "JvcProjectorAuthError" is not exported from module "jvcprojector" +   Import from "jvcprojector.error" instead (reportPrivateImportUsage) + /homeassistant/components/jvc_projector/config_flow.py:8:63 - error: "JvcProjectorConnectError" is not exported from module "jvcprojector" +   Import from "jvcprojector.error" instead (reportPrivateImportUsage) +/homeassistant/components/jvc_projector/coordinator.py + /homeassistant/components/jvc_projector/coordinator.py:10:5 - error: "JvcProjector" is not exported from module "jvcprojector" +   Import from "jvcprojector.projector" instead (reportPrivateImportUsage) + /homeassistant/components/jvc_projector/coordinator.py:11:5 - error: "JvcProjectorAuthError" is not exported from module "jvcprojector" +   Import from "jvcprojector.error" instead (reportPrivateImportUsage) + /homeassistant/components/jvc_projector/coordinator.py:12:5 - error: "JvcProjectorConnectError" is not exported from module "jvcprojector" +   Import from "jvcprojector.error" instead (reportPrivateImportUsage) +/homeassistant/components/jvc_projector/entity.py + /homeassistant/components/jvc_projector/entity.py:7:26 - error: "JvcProjector" is not exported from module "jvcprojector" +   Import from "jvcprojector.projector" instead (reportPrivateImportUsage) +/homeassistant/components/jvc_projector/remote.py + /homeassistant/components/jvc_projector/remote.py:66:7 - error: Base classes for class "JvcProjectorRemote" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/jvc_projector/remote.py:72:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/jvc_projector/select.py + /homeassistant/components/jvc_projector/select.py:9:26 - error: "JvcProjector" is not exported from module "jvcprojector" +   Import from "jvcprojector.projector" instead (reportPrivateImportUsage) + /homeassistant/components/jvc_projector/select.py:53:7 - error: Base classes for class "JvcProjectorSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/jvc_projector/select.py:65:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "JvcProjectorSelectDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/jvc_projector/select.py:65:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "JvcProjectorSelectDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/jvc_projector/select.py:69:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/jvc_projector/sensor.py + /homeassistant/components/jvc_projector/sensor.py:49:7 - error: Base classes for class "JvcSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/jvc_projector/sensor.py:63:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/kaiterra/air_quality.py + /homeassistant/components/kaiterra/air_quality.py:57:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/kaiterra/air_quality.py:62:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kaiterra/air_quality.py:102:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kaiterra/air_quality.py:107:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/kaiterra/api_data.py + /homeassistant/components/kaiterra/api_data.py:7:6 - error: Import "kaiterra_async_client" could not be resolved (reportMissingImports) +/homeassistant/components/kaiterra/sensor.py + /homeassistant/components/kaiterra/sensor.py:84:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/kaiterra/sensor.py:89:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/kaiterra/sensor.py:94:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/kaleidescape/__init__.py + /homeassistant/components/kaleidescape/__init__.py:7:26 - error: "Device" is not exported from module "kaleidescape" +   Import from "kaleidescape.device" instead (reportPrivateImportUsage) + /homeassistant/components/kaleidescape/__init__.py:7:56 - error: "KaleidescapeError" is not exported from module "kaleidescape" +   Import from "kaleidescape.error" instead (reportPrivateImportUsage) +/homeassistant/components/kaleidescape/entity.py + /homeassistant/components/kaleidescape/entity.py:15:30 - error: "Device" is not exported from module "kaleidescape" +   Import from "kaleidescape.device" instead (reportPrivateImportUsage) +/homeassistant/components/kaleidescape/media_player.py + /homeassistant/components/kaleidescape/media_player.py:87:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/kaleidescape/media_player.py:87:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kaleidescape/media_player.py:98:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/kaleidescape/media_player.py:103:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kaleidescape/media_player.py:110:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kaleidescape/media_player.py:115:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kaleidescape/media_player.py:122:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kaleidescape/media_player.py:129:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kaleidescape/media_player.py:136:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kaleidescape/media_player.py:141:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/kaleidescape/remote.py + /homeassistant/components/kaleidescape/remote.py:50:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/kaleidescape/sensor.py + /homeassistant/components/kaleidescape/sensor.py:8:26 - error: "Device" is not exported from module "kaleidescape" +   Import from "kaleidescape.device" instead (reportPrivateImportUsage) + /homeassistant/components/kaleidescape/sensor.py:152:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "KaleidescapeSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/kaleidescape/sensor.py:152:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "KaleidescapeSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/kaleidescape/sensor.py:156:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/kankun/switch.py + /homeassistant/components/kankun/switch.py:113:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kankun/switch.py:118:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/keba/__init__.py + /homeassistant/components/keba/__init__.py:6:6 - error: Import "keba_kecontact.connection" could not be resolved (reportMissingImports) +/homeassistant/components/keba/binary_sensor.py + /homeassistant/components/keba/binary_sensor.py:86:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/keba/sensor.py + /homeassistant/components/keba/sensor.py:109:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/keenetic_ndms2/binary_sensor.py + /homeassistant/components/keenetic_ndms2/binary_sensor.py:37:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/keenetic_ndms2/config_flow.py + /homeassistant/components/keenetic_ndms2/config_flow.py:75:21 - error: Argument of type "str | Any | bytes" cannot be assigned to parameter "host" of type "str" in function "__init__" +   Type "str | Any | bytes" is not assignable to type "str" +     "bytes" is not assignable to "str" (reportArgumentType) + /homeassistant/components/keenetic_ndms2/config_flow.py:159:5 - error: "config_entry" incorrectly overrides property of same name in class "OptionsFlow" (reportIncompatibleMethodOverride) + /homeassistant/components/keenetic_ndms2/config_flow.py:187:31 - error: "lower" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/keenetic_ndms2/device_tracker.py + /homeassistant/components/keenetic_ndms2/device_tracker.py:56:34 - error: Argument of type "str | None" cannot be assigned to parameter "name" of type "str" in function "__new__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/keenetic_ndms2/device_tracker.py:57:32 - error: Argument of type "None" cannot be assigned to parameter "ip" of type "str" in function "__new__" +   "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/keenetic_ndms2/device_tracker.py:58:39 - error: Argument of type "None" cannot be assigned to parameter "interface" of type "str" in function "__new__" +   "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/keenetic_ndms2/device_tracker.py:104:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/keenetic_ndms2/device_tracker.py:114:9 - error: "ip_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/keenetic_ndms2/device_tracker.py:119:9 - error: "mac_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/keenetic_ndms2/device_tracker.py:124:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/keenetic_ndms2/device_tracker.py:129:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/kef/media_player.py + /homeassistant/components/kef/media_player.py:10:6 - error: Import "aiokef" could not be resolved (reportMissingImports) + /homeassistant/components/kef/media_player.py:11:6 - error: Import "aiokef.aiokef" could not be resolved (reportMissingImports) + /homeassistant/components/kef/media_player.py:345:9 - error: Object of type "None" cannot be called (reportOptionalCall) + /homeassistant/components/kef/media_player.py:349:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/kegtron/sensor.py + /homeassistant/components/kegtron/sensor.py:124:7 - error: Base classes for class "KegtronBluetoothSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/kegtron/sensor.py:133:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/keyboard_remote/__init__.py + /homeassistant/components/keyboard_remote/__init__.py:12:6 - error: Import "evdev" could not be resolved (reportMissingImports) +/homeassistant/components/keymitt_ble/config_flow.py + /homeassistant/components/keymitt_ble/config_flow.py:68:41 - error: Argument of type "MicroBotAdvertisement | None" cannot be assigned to parameter "discovery" of type "MicroBotAdvertisement" in function "name_from_discovery" +   Type "MicroBotAdvertisement | None" is not assignable to type "MicroBotAdvertisement" +     "None" is not assignable to "MicroBotAdvertisement" (reportArgumentType) + /homeassistant/components/keymitt_ble/config_flow.py:105:46 - error: Argument of type "MicroBotAdvertisement | None" cannot be assigned to parameter "discovery" of type "MicroBotAdvertisement" in function "name_from_discovery" +   Type "MicroBotAdvertisement | None" is not assignable to type "MicroBotAdvertisement" +     "None" is not assignable to "MicroBotAdvertisement" (reportArgumentType) + /homeassistant/components/keymitt_ble/config_flow.py:133:20 - error: Argument of type "BLEDevice | None" cannot be assigned to parameter "device" of type "BLEDevice" in function "__init__" +   Type "BLEDevice | None" is not assignable to type "BLEDevice" +     "None" is not assignable to "BLEDevice" (reportArgumentType) +/homeassistant/components/keymitt_ble/switch.py + /homeassistant/components/keymitt_ble/switch.py:44:7 - error: Base classes for class "MicroBotBinarySwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/keymitt_ble/switch.py:60:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/kitchen_sink/__init__.py + /homeassistant/components/kitchen_sink/__init__.py:236:16 - error: Could not access item in TypedDict +   "sum" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/kitchen_sink/lock.py + /homeassistant/components/kitchen_sink/lock.py:80:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kitchen_sink/lock.py:85:9 - error: "is_open" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/kitchen_sink/weather.py + /homeassistant/components/kitchen_sink/weather.py:286:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kitchen_sink/weather.py:291:9 - error: "native_temperature_unit" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kitchen_sink/weather.py:296:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kitchen_sink/weather.py:301:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kitchen_sink/weather.py:306:9 - error: "native_wind_speed_unit" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kitchen_sink/weather.py:311:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kitchen_sink/weather.py:316:9 - error: "native_pressure_unit" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kitchen_sink/weather.py:321:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/kiwi/lock.py + /homeassistant/components/kiwi/lock.py:8:6 - error: Import "kiwiki" could not be resolved (reportMissingImports) + /homeassistant/components/kiwi/lock.py:89:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kiwi/lock.py:96:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kiwi/lock.py:101:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/kmtronic/config_flow.py + /homeassistant/components/kmtronic/config_flow.py:50:38 - error: Cannot access attribute "ClientResponseError" for class "object" +   Attribute "ClientResponseError" is unknown (reportAttributeAccessIssue) + /homeassistant/components/kmtronic/config_flow.py:52:38 - error: Cannot access attribute "ClientConnectorError" for class "object" +   Attribute "ClientConnectorError" is unknown (reportAttributeAccessIssue) +/homeassistant/components/kmtronic/switch.py + /homeassistant/components/kmtronic/switch.py:35:7 - error: Base classes for class "KMtronicSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/kmtronic/switch.py:59:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/knx/__init__.py + /homeassistant/components/knx/__init__.py:203:9 - error: Could not access item in TypedDict +   "identifiers" is not a required key in "DeviceInfo", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/knx/binary_sensor.py + /homeassistant/components/knx/binary_sensor.py:80:7 - error: Base classes for class "_KnxBinarySensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/binary_sensor.py:80:7 - error: Base classes for class "_KnxBinarySensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/binary_sensor.py:80:7 - error: Base classes for class "_KnxBinarySensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/binary_sensor.py:80:7 - error: Base classes for class "_KnxBinarySensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/binary_sensor.py:94:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/binary_sensor.py:99:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/binary_sensor.py:110:7 - error: Base classes for class "KnxYamlBinarySensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/binary_sensor.py:110:7 - error: Base classes for class "KnxYamlBinarySensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/binary_sensor.py:110:7 - error: Base classes for class "KnxYamlBinarySensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/binary_sensor.py:110:7 - error: Base classes for class "KnxYamlBinarySensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/binary_sensor.py:110:7 - error: Base classes for class "KnxYamlBinarySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/binary_sensor.py:137:7 - error: Base classes for class "KnxUiBinarySensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/binary_sensor.py:137:7 - error: Base classes for class "KnxUiBinarySensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/binary_sensor.py:137:7 - error: Base classes for class "KnxUiBinarySensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/binary_sensor.py:137:7 - error: Base classes for class "KnxUiBinarySensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/binary_sensor.py:137:7 - error: Base classes for class "KnxUiBinarySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/binary_sensor.py:152:14 - error: "_device" overrides symbol of same name in class "_KnxEntityBase" +   Variable is mutable so its type is invariant +     Override type "BinarySensor" is not the same as base type "Device" (reportIncompatibleVariableOverride) +/homeassistant/components/knx/button.py + /homeassistant/components/knx/button.py:31:7 - error: Base classes for class "KNXButton" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/button.py:31:7 - error: Base classes for class "KNXButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/knx/climate.py + /homeassistant/components/knx/climate.py:320:7 - error: Base classes for class "_KnxClimate" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:320:7 - error: Base classes for class "_KnxClimate" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:320:7 - error: Base classes for class "_KnxClimate" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:320:7 - error: Base classes for class "_KnxClimate" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:320:7 - error: Base classes for class "_KnxClimate" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:323:5 - error: "_device" overrides symbol of same name in class "_KnxEntityBase" +   Variable is mutable so its type is invariant +     Override type "Climate" is not the same as base type "Device" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:405:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:410:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:415:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:421:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:464:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:475:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:497:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:527:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:548:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:591:9 - error: "swing_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:598:9 - error: "swing_horizontal_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:605:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:610:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:643:7 - error: Base classes for class "KnxYamlClimate" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:643:7 - error: Base classes for class "KnxYamlClimate" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:643:7 - error: Base classes for class "KnxYamlClimate" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:643:7 - error: Base classes for class "KnxYamlClimate" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:643:7 - error: Base classes for class "KnxYamlClimate" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:643:7 - error: Base classes for class "KnxYamlClimate" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:673:7 - error: Base classes for class "KnxUiClimate" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:673:7 - error: Base classes for class "KnxUiClimate" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:673:7 - error: Base classes for class "KnxUiClimate" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:673:7 - error: Base classes for class "KnxUiClimate" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:673:7 - error: Base classes for class "KnxUiClimate" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:673:7 - error: Base classes for class "KnxUiClimate" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/climate.py:688:14 - error: "_device" overrides symbol of same name in class "_KnxEntityBase" +   Variable is mutable so its type is invariant +     Override type "Climate" is not the same as base type "Device" (reportIncompatibleVariableOverride) +/homeassistant/components/knx/config_flow.py + /homeassistant/components/knx/config_flow.py:145:20 - error: Could not access item in TypedDict +   "connection_type" is not a required key in "KNXConfigEntryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/knx/config_flow.py:167:28 - error: Could not access item in TypedDict +   "connection_type" is not a required key in "KNXConfigEntryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/knx/config_flow.py:185:42 - error: Could not access item in TypedDict +   "connection_type" is not a required key in "KNXConfigEntryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/knx/config_flow.py:458:36 - error: "_host_ip" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/knx/config_flow.py:477:26 - error: "_host" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/knx/config_flow.py:492:26 - error: "_host" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/knx/config_flow.py:528:22 - error: Could not access item in TypedDict +   "connection_type" is not a required key in "KNXConfigEntryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/knx/config_flow.py:568:52 - error: Could not access item in TypedDict +   "host" is not a required key in "KNXConfigEntryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/knx/config_flow.py:623:55 - error: Could not access item in TypedDict +   "individual_address" is not a required key in "KNXConfigEntryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/knx/config_flow.py:806:18 - error: Could not access item in TypedDict +   "individual_address" is not a required key in "KNXConfigEntryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/knx/config_flow.py:811:18 - error: Could not access item in TypedDict +   "multicast_group" is not a required key in "KNXConfigEntryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/knx/config_flow.py:816:18 - error: Could not access item in TypedDict +   "multicast_port" is not a required key in "KNXConfigEntryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/knx/cover.py + /homeassistant/components/knx/cover.py:111:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:122:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:130:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:135:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:157:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:187:7 - error: Base classes for class "KnxYamlCover" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:187:7 - error: Base classes for class "KnxYamlCover" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:187:7 - error: Base classes for class "KnxYamlCover" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:187:7 - error: Base classes for class "KnxYamlCover" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:187:7 - error: Base classes for class "KnxYamlCover" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:187:7 - error: Base classes for class "KnxYamlCover" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:187:7 - error: Base classes for class "KnxYamlCover" define variable "supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:252:7 - error: Base classes for class "KnxUiCover" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:252:7 - error: Base classes for class "KnxUiCover" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:252:7 - error: Base classes for class "KnxUiCover" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:252:7 - error: Base classes for class "KnxUiCover" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:252:7 - error: Base classes for class "KnxUiCover" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:252:7 - error: Base classes for class "KnxUiCover" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:252:7 - error: Base classes for class "KnxUiCover" define variable "supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/cover.py:266:14 - error: "_device" overrides symbol of same name in class "_KnxEntityBase" +   Variable is mutable so its type is invariant +     Override type "Cover" is not the same as base type "Device" (reportIncompatibleVariableOverride) +/homeassistant/components/knx/date.py + /homeassistant/components/knx/date.py:63:7 - error: Base classes for class "KNXDateEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/date.py:63:7 - error: Base classes for class "KNXDateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/date.py:63:7 - error: Base classes for class "KNXDateEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/date.py:63:7 - error: Base classes for class "KNXDateEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/date.py:63:7 - error: Base classes for class "KNXDateEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/date.py:63:7 - error: Base classes for class "KNXDateEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/date.py:90:9 - error: "native_value" overrides symbol of same name in class "DateEntity" +   "property" is not assignable to "cached_property[date | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/knx/datetime.py + /homeassistant/components/knx/datetime.py:64:7 - error: Base classes for class "KNXDateTimeEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/datetime.py:64:7 - error: Base classes for class "KNXDateTimeEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/datetime.py:64:7 - error: Base classes for class "KNXDateTimeEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/datetime.py:64:7 - error: Base classes for class "KNXDateTimeEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/datetime.py:64:7 - error: Base classes for class "KNXDateTimeEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/datetime.py:64:7 - error: Base classes for class "KNXDateTimeEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/datetime.py:93:9 - error: "native_value" overrides symbol of same name in class "DateTimeEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/knx/device.py + /homeassistant/components/knx/device.py:6:23 - error: "XknxConnectionState" is not exported from module "xknx.core" +   Import from "xknx.core.connection_state" instead (reportPrivateImportUsage) +/homeassistant/components/knx/entity.py + /homeassistant/components/knx/entity.py:59:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/entity.py:64:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/entity.py:110:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/knx/expose.py + /homeassistant/components/knx/expose.py:10:22 - error: "DPTNumeric" is not exported from module "xknx.dpt" +   Import from "xknx.dpt.dpt" instead (reportPrivateImportUsage) + /homeassistant/components/knx/expose.py:10:34 - error: "DPTString" is not exported from module "xknx.dpt" +   Import from "xknx.dpt.dpt_16" instead (reportPrivateImportUsage) + /homeassistant/components/knx/expose.py:114:46 - error: Cannot assign to attribute "value" for class "RemoteValueSwitch" +   Type "bool | int | float | str | None" is not assignable to type "bool | None" +     Type "float" is not assignable to type "bool | None" +       "float" is not assignable to "bool" +       "float" is not assignable to "None" (reportAttributeAccessIssue) + /homeassistant/components/knx/expose.py:218:23 - error: "xknx_device_cls" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/knx/fan.py + /homeassistant/components/knx/fan.py:42:7 - error: Base classes for class "KNXFan" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/fan.py:42:7 - error: Base classes for class "KNXFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/fan.py:81:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/fan.py:81:9 - error: "supported_features" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[FanEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/fan.py:95:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/fan.py:107:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/fan.py:134:9 - error: "oscillating" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/knx/knx_module.py + /homeassistant/components/knx/knx_module.py:8:23 - error: "XknxConnectionState" is not exported from module "xknx.core" +   Import from "xknx.core.connection_state" instead (reportPrivateImportUsage) + /homeassistant/components/knx/knx_module.py:11:22 - error: "DPTBase" is not exported from module "xknx.dpt" +   Import from "xknx.dpt.dpt" instead (reportPrivateImportUsage) +/homeassistant/components/knx/light.py + /homeassistant/components/knx/light.py:9:74 - error: "XYYColor" is not exported from module "xknx.devices.light" +   Import from "xknx.dpt.dpt_242" instead (reportPrivateImportUsage) + /homeassistant/components/knx/light.py:324:5 - error: "_attr_max_color_temp_kelvin" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "int" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:325:5 - error: "_attr_min_color_temp_kelvin" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "int" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:329:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:334:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:350:9 - error: "rgb_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:364:9 - error: "rgbw_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:379:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:386:9 - error: "xy_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:554:7 - error: Base classes for class "KnxYamlLight" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:554:7 - error: Base classes for class "KnxYamlLight" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:554:7 - error: Base classes for class "KnxYamlLight" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:554:7 - error: Base classes for class "KnxYamlLight" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:554:7 - error: Base classes for class "KnxYamlLight" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:554:7 - error: Base classes for class "KnxYamlLight" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:582:7 - error: Base classes for class "KnxUiLight" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:582:7 - error: Base classes for class "KnxUiLight" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:582:7 - error: Base classes for class "KnxUiLight" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:582:7 - error: Base classes for class "KnxUiLight" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:582:7 - error: Base classes for class "KnxUiLight" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:582:7 - error: Base classes for class "KnxUiLight" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/light.py:596:14 - error: "_device" overrides symbol of same name in class "_KnxEntityBase" +   Variable is mutable so its type is invariant +     Override type "Light" is not the same as base type "Device" (reportIncompatibleVariableOverride) +/homeassistant/components/knx/notify.py + /homeassistant/components/knx/notify.py:42:7 - error: Base classes for class "KNXNotify" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/notify.py:42:7 - error: Base classes for class "KNXNotify" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/knx/number.py + /homeassistant/components/knx/number.py:55:7 - error: Base classes for class "KNXNumber" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/number.py:55:7 - error: Base classes for class "KNXNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/number.py:96:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/knx/project.py + /homeassistant/components/knx/project.py:10:22 - error: "DPTBase" is not exported from module "xknx.dpt" +   Import from "xknx.dpt.dpt" instead (reportPrivateImportUsage) + /homeassistant/components/knx/project.py:12:25 - error: "XKNXProj" is not exported from module "xknxproject" +   Import from "xknxproject.xknxproj" instead (reportPrivateImportUsage) + /homeassistant/components/knx/project.py:14:5 - error: "Device" is not exported from module "xknxproject.models" +   Import from "xknxproject.models.knxproject" instead (reportPrivateImportUsage) + /homeassistant/components/knx/project.py:15:5 - error: "DPTType" is not exported from module "xknxproject.models" +   Import from "xknxproject.models.knxproject" instead (reportPrivateImportUsage) + /homeassistant/components/knx/project.py:16:5 - error: "GroupAddress" is not exported from module "xknxproject.models" +   Import from "xknxproject.models.knxproject" instead (reportPrivateImportUsage) + /homeassistant/components/knx/project.py:17:5 - error: "GroupAddressStyle" is not exported from module "xknxproject.models" +   Import from "xknxproject.models.static" instead (reportPrivateImportUsage) + /homeassistant/components/knx/project.py:18:5 - error: "KNXProject" is not exported from module "xknxproject.models" +   Import from "xknxproject.models.knxproject" instead (reportPrivateImportUsage) + /homeassistant/components/knx/project.py:19:5 - error: "ProjectInfo" is not exported from module "xknxproject.models" +   Import from "xknxproject.models.knxproject" instead (reportPrivateImportUsage) +/homeassistant/components/knx/scene.py + /homeassistant/components/knx/scene.py:34:7 - error: Base classes for class "KNXScene" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/scene.py:34:7 - error: Base classes for class "KNXScene" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/knx/schema.py + /homeassistant/components/knx/schema.py:11:34 - error: "FanSpeedMode" is not exported from module "xknx.devices.climate" +   Import from "xknx.devices.fan" instead (reportPrivateImportUsage) + /homeassistant/components/knx/schema.py:11:48 - error: "SetpointShiftMode" is not exported from module "xknx.devices.climate" +   Import from "xknx.remote_value.remote_value_setpoint_shift" instead (reportPrivateImportUsage) + /homeassistant/components/knx/schema.py:12:22 - error: "DPTBase" is not exported from module "xknx.dpt" +   Import from "xknx.dpt.dpt" instead (reportPrivateImportUsage) + /homeassistant/components/knx/schema.py:12:31 - error: "DPTNumeric" is not exported from module "xknx.dpt" +   Import from "xknx.dpt.dpt" instead (reportPrivateImportUsage) +/homeassistant/components/knx/select.py + /homeassistant/components/knx/select.py:61:7 - error: Base classes for class "KNXSelect" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/select.py:61:7 - error: Base classes for class "KNXSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/select.py:61:7 - error: Base classes for class "KNXSelect" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/select.py:61:7 - error: Base classes for class "KNXSelect" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/select.py:61:7 - error: Base classes for class "KNXSelect" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/select.py:61:7 - error: Base classes for class "KNXSelect" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/knx/sensor.py + /homeassistant/components/knx/sensor.py:75:17 - error: Argument of type "list[str | None]" cannot be assigned to parameter "options" of type "list[str] | None" in function "__init__" (reportArgumentType) + /homeassistant/components/knx/sensor.py:146:7 - error: Base classes for class "KNXSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/sensor.py:146:7 - error: Base classes for class "KNXSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/sensor.py:206:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "KNXSystemEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/sensor.py:215:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/sensor.py:220:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/knx/services.py + /homeassistant/components/knx/services.py:9:22 - error: "DPTArray" is not exported from module "xknx.dpt" +   Import from "xknx.dpt.payload" instead (reportPrivateImportUsage) + /homeassistant/components/knx/services.py:9:32 - error: "DPTBase" is not exported from module "xknx.dpt" +   Import from "xknx.dpt.dpt" instead (reportPrivateImportUsage) + /homeassistant/components/knx/services.py:9:41 - error: "DPTBinary" is not exported from module "xknx.dpt" +   Import from "xknx.dpt.payload" instead (reportPrivateImportUsage) +/homeassistant/components/knx/storage/knx_selector.py + /homeassistant/components/knx/storage/knx_selector.py:248:21 - error: Argument missing for parameter "v" (reportCallIssue) +/homeassistant/components/knx/switch.py + /homeassistant/components/knx/switch.py:75:7 - error: Base classes for class "_KnxSwitch" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/switch.py:75:7 - error: Base classes for class "_KnxSwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/switch.py:75:7 - error: Base classes for class "_KnxSwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/switch.py:75:7 - error: Base classes for class "_KnxSwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/switch.py:90:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/switch.py:103:7 - error: Base classes for class "KnxYamlSwitch" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/switch.py:103:7 - error: Base classes for class "KnxYamlSwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/switch.py:103:7 - error: Base classes for class "KnxYamlSwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/switch.py:103:7 - error: Base classes for class "KnxYamlSwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/switch.py:126:7 - error: Base classes for class "KnxUiSwitch" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/switch.py:126:7 - error: Base classes for class "KnxUiSwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/switch.py:126:7 - error: Base classes for class "KnxUiSwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/switch.py:126:7 - error: Base classes for class "KnxUiSwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/switch.py:141:14 - error: "_device" overrides symbol of same name in class "_KnxEntityBase" +   Variable is mutable so its type is invariant +     Override type "Switch" is not the same as base type "Device" (reportIncompatibleVariableOverride) +/homeassistant/components/knx/telegrams.py + /homeassistant/components/knx/telegrams.py:9:22 - error: "DPTArray" is not exported from module "xknx.dpt" +   Import from "xknx.dpt.payload" instead (reportPrivateImportUsage) + /homeassistant/components/knx/telegrams.py:9:32 - error: "DPTBase" is not exported from module "xknx.dpt" +   Import from "xknx.dpt.dpt" instead (reportPrivateImportUsage) + /homeassistant/components/knx/telegrams.py:9:41 - error: "DPTBinary" is not exported from module "xknx.dpt" +   Import from "xknx.dpt.payload" instead (reportPrivateImportUsage) +/homeassistant/components/knx/text.py + /homeassistant/components/knx/text.py:7:22 - error: "DPTLatin1" is not exported from module "xknx.dpt" +   Import from "xknx.dpt.dpt_16" instead (reportPrivateImportUsage) + /homeassistant/components/knx/text.py:54:7 - error: Base classes for class "KNXText" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/text.py:54:7 - error: Base classes for class "KNXText" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/text.py:54:7 - error: Base classes for class "KNXText" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/text.py:54:7 - error: Base classes for class "KNXText" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/text.py:54:7 - error: Base classes for class "KNXText" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/text.py:54:7 - error: Base classes for class "KNXText" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/text.py:85:9 - error: "native_value" overrides symbol of same name in class "TextEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/knx/time.py + /homeassistant/components/knx/time.py:63:7 - error: Base classes for class "KNXTimeEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/time.py:63:7 - error: Base classes for class "KNXTimeEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/time.py:63:7 - error: Base classes for class "KNXTimeEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/time.py:63:7 - error: Base classes for class "KNXTimeEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/time.py:63:7 - error: Base classes for class "KNXTimeEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/time.py:63:7 - error: Base classes for class "KNXTimeEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/time.py:90:9 - error: "native_value" overrides symbol of same name in class "TimeEntity" +   "property" is not assignable to "cached_property[time | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/knx/trigger.py + /homeassistant/components/knx/trigger.py:6:22 - error: "DPTBase" is not exported from module "xknx.dpt" +   Import from "xknx.dpt.dpt" instead (reportPrivateImportUsage) +/homeassistant/components/knx/validation.py + /homeassistant/components/knx/validation.py:9:22 - error: "DPTBase" is not exported from module "xknx.dpt" +   Import from "xknx.dpt.dpt" instead (reportPrivateImportUsage) + /homeassistant/components/knx/validation.py:9:31 - error: "DPTNumeric" is not exported from module "xknx.dpt" +   Import from "xknx.dpt.dpt" instead (reportPrivateImportUsage) + /homeassistant/components/knx/validation.py:9:43 - error: "DPTString" is not exported from module "xknx.dpt" +   Import from "xknx.dpt.dpt_16" instead (reportPrivateImportUsage) +/homeassistant/components/knx/weather.py + /homeassistant/components/knx/weather.py:78:7 - error: Base classes for class "KNXWeather" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/weather.py:78:7 - error: Base classes for class "KNXWeather" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/knx/weather.py:96:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/weather.py:101:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/weather.py:106:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/weather.py:111:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/weather.py:116:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/knx/weather.py:121:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/knx/websocket.py + /homeassistant/components/knx/websocket.py:124:19 - error: Function declaration "with_knx" is obscured by a declaration of the same name (reportRedeclaration) +/homeassistant/components/kodi/media_player.py + /homeassistant/components/kodi/media_player.py:274:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kodi/media_player.py:429:9 - error: "should_poll" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/kodi/media_player.py:434:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kodi/media_player.py:441:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kodi/media_player.py:446:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kodi/media_player.py:451:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kodi/media_player.py:462:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kodi/media_player.py:477:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kodi/media_player.py:485:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kodi/media_player.py:490:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kodi/media_player.py:498:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kodi/media_player.py:505:9 - error: "media_series_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kodi/media_player.py:510:9 - error: "media_season" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kodi/media_player.py:515:9 - error: "media_episode" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kodi/media_player.py:520:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kodi/media_player.py:525:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kodi/media_player.py:533:9 - error: "media_album_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kodi/media_player.py:541:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kodi/media_player.py:566:15 - error: Method "async_volume_up" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/kodi/media_player.py:571:15 - error: Method "async_volume_down" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/kodi/media_player.py:576:15 - error: Method "async_set_volume_level" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/kodi/media_player.py:581:15 - error: Method "async_mute_volume" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/kodi/media_player.py:586:15 - error: Method "async_media_play_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/kodi/media_player.py:591:15 - error: Method "async_media_play" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/kodi/media_player.py:596:15 - error: Method "async_media_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/kodi/media_player.py:601:15 - error: Method "async_media_stop" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/kodi/media_player.py:606:15 - error: Method "async_media_next_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/kodi/media_player.py:611:15 - error: Method "async_media_previous_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/kodi/media_player.py:616:15 - error: Method "async_media_seek" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/kodi/media_player.py:621:15 - error: Method "async_play_media" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/kodi/media_player.py:665:15 - error: Method "async_set_shuffle" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/konnected/__init__.py + /homeassistant/components/konnected/__init__.py:207:50 - error: Argument missing for parameter "v" (reportCallIssue) + /homeassistant/components/konnected/__init__.py:355:28 - error: "payload" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/konnected/__init__.py:355:66 - error: "payload" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/konnected/__init__.py:356:13 - error: "payload" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/konnected/__init__.py:377:21 - error: "payload" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/konnected/__init__.py:380:65 - error: "payload" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/konnected/__init__.py:427:31 - error: "zone_num" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/konnected/__init__.py:428:14 - error: "zone_num" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/konnected/config_flow.py + /homeassistant/components/konnected/config_flow.py:186:5 - error: "unique_id" incorrectly overrides property of same name in class "ConfigFlow" (reportIncompatibleMethodOverride) +/homeassistant/components/konnected/switch.py + /homeassistant/components/konnected/switch.py:75:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/kostal_plenticore/coordinator.py + /homeassistant/components/kostal_plenticore/coordinator.py:57:16 - error: Type "ExtendedApiClient | None" is not assignable to return type "ApiClient" +   Type "ExtendedApiClient | None" is not assignable to type "ApiClient" +     "None" is not assignable to "ApiClient" (reportReturnType) + /homeassistant/components/kostal_plenticore/coordinator.py:128:28 - error: "logout" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/kostal_plenticore/number.py + /homeassistant/components/kostal_plenticore/number.py:114:17 - error: Argument of type "DeviceInfo | dict[Unknown, Unknown]" cannot be assigned to parameter "device_info" of type "DeviceInfo" in function "__init__" +   Type "DeviceInfo | dict[Unknown, Unknown]" is not assignable to type "DeviceInfo" +     "dict[Unknown, Unknown]" is not assignable to "DeviceInfo" (reportArgumentType) + /homeassistant/components/kostal_plenticore/number.py:142:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PlenticoreNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/kostal_plenticore/number.py:142:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "PlenticoreNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/kostal_plenticore/number.py:170:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/kostal_plenticore/number.py:192:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/kostal_plenticore/select.py + /homeassistant/components/kostal_plenticore/select.py:74:29 - error: Argument of type "DeviceInfo | dict[Unknown, Unknown]" cannot be assigned to parameter "device_info" of type "DeviceInfo" in function "__init__" +   Type "DeviceInfo | dict[Unknown, Unknown]" is not assignable to type "DeviceInfo" +     "dict[Unknown, Unknown]" is not assignable to "DeviceInfo" (reportArgumentType) + /homeassistant/components/kostal_plenticore/select.py:99:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PlenticoreSelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/kostal_plenticore/select.py:99:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "PlenticoreSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/kostal_plenticore/select.py:108:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/kostal_plenticore/select.py:143:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/kostal_plenticore/sensor.py + /homeassistant/components/kostal_plenticore/sensor.py:839:17 - error: Argument of type "DeviceInfo | dict[Unknown, Unknown]" cannot be assigned to parameter "device_info" of type "DeviceInfo" in function "__init__" +   Type "DeviceInfo | dict[Unknown, Unknown]" is not assignable to type "DeviceInfo" +     "dict[Unknown, Unknown]" is not assignable to "DeviceInfo" (reportArgumentType) + /homeassistant/components/kostal_plenticore/sensor.py:863:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PlenticoreSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/kostal_plenticore/sensor.py:863:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PlenticoreSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/kostal_plenticore/sensor.py:877:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/kostal_plenticore/sensor.py:899:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/kostal_plenticore/switch.py + /homeassistant/components/kostal_plenticore/switch.py:103:17 - error: Argument of type "DeviceInfo | dict[Unknown, Unknown]" cannot be assigned to parameter "device_info" of type "DeviceInfo" in function "__init__" +   Type "DeviceInfo | dict[Unknown, Unknown]" is not assignable to type "DeviceInfo" +     "dict[Unknown, Unknown]" is not assignable to "DeviceInfo" (reportArgumentType) + /homeassistant/components/kostal_plenticore/switch.py:148:21 - error: Argument of type "DeviceInfo | dict[Unknown, Unknown]" cannot be assigned to parameter "device_info" of type "DeviceInfo" in function "__init__" +   Type "DeviceInfo | dict[Unknown, Unknown]" is not assignable to type "DeviceInfo" +     "dict[Unknown, Unknown]" is not assignable to "DeviceInfo" (reportArgumentType) + /homeassistant/components/kostal_plenticore/switch.py:179:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PlenticoreSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/kostal_plenticore/switch.py:179:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "PlenticoreSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/kostal_plenticore/switch.py:194:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/kostal_plenticore/switch.py:234:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kostal_plenticore/switch.py:284:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/kostal_plenticore/switch.py:298:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/kostal_plenticore/switch.py:335:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/kraken/__init__.py + /homeassistant/components/kraken/__init__.py:78:28 - error: "pykrakenapi" is not a known attribute of module "pykrakenapi" (reportAttributeAccessIssue) + /homeassistant/components/kraken/__init__.py:89:28 - error: "pykrakenapi" is not a known attribute of module "pykrakenapi" (reportAttributeAccessIssue) +/homeassistant/components/kraken/sensor.py + /homeassistant/components/kraken/sensor.py:218:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "KrakenSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/kraken/sensor.py:218:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "KrakenSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/kraken/sensor.py:272:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kraken/sensor.py:287:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/kulersky/light.py + /homeassistant/components/kulersky/light.py:75:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/kwb/sensor.py + /homeassistant/components/kwb/sensor.py:5:6 - error: Import "pykwb" could not be resolved (reportMissingImports) + /homeassistant/components/kwb/sensor.py:99:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/kwb/sensor.py:104:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/kwb/sensor.py:109:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/kwb/sensor.py:116:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lacrosse/sensor.py + /homeassistant/components/lacrosse/sensor.py:9:8 - error: Import "pylacrosse" could not be resolved (reportMissingImports) + /homeassistant/components/lacrosse/sensor.py:159:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lacrosse/sensor.py:203:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/lacrosse/sensor.py:216:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/lacrosse/sensor.py:225:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/lacrosse/sensor.py:234:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lacrosse_view/sensor.py + /homeassistant/components/lacrosse_view/sensor.py:230:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LaCrosseSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lacrosse_view/sensor.py:230:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "LaCrosseSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lacrosse_view/sensor.py:241:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/lacrosse_view/sensor.py:248:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/lamarzocco/binary_sensor.py + /homeassistant/components/lamarzocco/binary_sensor.py:102:7 - error: Base classes for class "LaMarzoccoBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/binary_sensor.py:105:5 - error: "entity_description" overrides symbol of same name in class "LaMarzoccoEntity" +   Variable is mutable so its type is invariant +     Override type "LaMarzoccoBinarySensorEntityDescription" is not the same as base type "LaMarzoccoEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/binary_sensor.py:105:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "LaMarzoccoBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/binary_sensor.py:108:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lamarzocco/button.py + /homeassistant/components/lamarzocco/button.py:68:7 - error: Base classes for class "LaMarzoccoButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/button.py:71:5 - error: "entity_description" overrides symbol of same name in class "LaMarzoccoEntity" +   Variable is mutable so its type is invariant +     Override type "LaMarzoccoButtonEntityDescription" is not the same as base type "LaMarzoccoEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/button.py:71:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "LaMarzoccoButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/lamarzocco/calendar.py + /homeassistant/components/lamarzocco/calendar.py:48:7 - error: Base classes for class "LaMarzoccoCalendarEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/lamarzocco/entity.py + /homeassistant/components/lamarzocco/entity.py:104:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LaMarzoccoEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/lamarzocco/number.py + /homeassistant/components/lamarzocco/number.py:218:7 - error: Base classes for class "LaMarzoccoNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/number.py:221:5 - error: "entity_description" overrides symbol of same name in class "LaMarzoccoEntity" +   Variable is mutable so its type is invariant +     Override type "LaMarzoccoNumberEntityDescription" is not the same as base type "LaMarzoccoEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/number.py:221:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "LaMarzoccoNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/number.py:224:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lamarzocco/select.py + /homeassistant/components/lamarzocco/select.py:137:7 - error: Base classes for class "LaMarzoccoSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/select.py:140:5 - error: "entity_description" overrides symbol of same name in class "LaMarzoccoEntity" +   Variable is mutable so its type is invariant +     Override type "LaMarzoccoSelectEntityDescription" is not the same as base type "LaMarzoccoEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/select.py:140:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "LaMarzoccoSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/select.py:143:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lamarzocco/sensor.py + /homeassistant/components/lamarzocco/sensor.py:192:7 - error: Base classes for class "LaMarzoccoSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/sensor.py:195:5 - error: "entity_description" overrides symbol of same name in class "LaMarzoccoEntity" +   Variable is mutable so its type is invariant +     Override type "LaMarzoccoSensorEntityDescription" is not the same as base type "LaMarzoccoEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/sensor.py:195:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "LaMarzoccoSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/sensor.py:198:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/lamarzocco/switch.py + /homeassistant/components/lamarzocco/switch.py:122:7 - error: Base classes for class "LaMarzoccoSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/switch.py:125:5 - error: "entity_description" overrides symbol of same name in class "LaMarzoccoEntity" +   Variable is mutable so its type is invariant +     Override type "LaMarzoccoSwitchEntityDescription" is not the same as base type "LaMarzoccoEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/switch.py:125:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "LaMarzoccoSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/switch.py:152:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/switch.py:157:7 - error: Base classes for class "LaMarzoccoAutoOnOffSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/switch.py:198:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lamarzocco/update.py + /homeassistant/components/lamarzocco/update.py:72:7 - error: Base classes for class "LaMarzoccoUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/update.py:75:5 - error: "entity_description" overrides symbol of same name in class "LaMarzoccoEntity" +   Variable is mutable so its type is invariant +     Override type "LaMarzoccoUpdateEntityDescription" is not the same as base type "LaMarzoccoEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/update.py:75:5 - error: "entity_description" overrides symbol of same name in class "UpdateEntity" +   Variable is mutable so its type is invariant +     Override type "LaMarzoccoUpdateEntityDescription" is not the same as base type "UpdateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/update.py:83:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/update.py:90:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lamarzocco/update.py:99:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lametric/button.py + /homeassistant/components/lametric/button.py:72:7 - error: Base classes for class "LaMetricButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/button.py:84:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LaMetricButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/button.py:84:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "LaMetricButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/button.py:88:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/lametric/number.py + /homeassistant/components/lametric/number.py:72:7 - error: Base classes for class "LaMetricNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/number.py:84:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LaMetricNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/number.py:84:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "LaMetricNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/number.py:88:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/number.py:93:9 - error: "native_min_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/number.py:100:9 - error: "native_max_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/number.py:107:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/lametric/select.py + /homeassistant/components/lametric/select.py:57:7 - error: Base classes for class "LaMetricSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/select.py:69:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LaMetricSelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/select.py:69:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "LaMetricSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/select.py:73:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/select.py:78:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/lametric/sensor.py + /homeassistant/components/lametric/sensor.py:59:7 - error: Base classes for class "LaMetricSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/sensor.py:71:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LaMetricSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/sensor.py:71:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "LaMetricSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/sensor.py:75:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/lametric/switch.py + /homeassistant/components/lametric/switch.py:75:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LaMetricSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/switch.py:75:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "LaMetricSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/switch.py:79:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/switch.py:86:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/switch.py:91:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/lametric/switch.py:97:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/lametric/update.py + /homeassistant/components/lametric/update.py:26:7 - error: Base classes for class "LaMetricUpdate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/update.py:37:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lametric/update.py:42:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/landisgyr_heat_meter/sensor.py + /homeassistant/components/landisgyr_heat_meter/sensor.py:292:7 - error: Base classes for class "HeatMeterSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/landisgyr_heat_meter/sensor.py:313:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "HeatMeterSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/landisgyr_heat_meter/sensor.py:313:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "HeatMeterSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/landisgyr_heat_meter/sensor.py:325:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/lastfm/config_flow.py + /homeassistant/components/lastfm/config_flow.py:165:5 - error: "config_entry" incorrectly overrides property of same name in class "OptionsFlow" (reportIncompatibleMethodOverride) +/homeassistant/components/lastfm/sensor.py + /homeassistant/components/lastfm/sensor.py:74:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/lastfm/sensor.py:79:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lastfm/sensor.py:86:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/lastfm/sensor.py:93:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/launch_library/__init__.py + /homeassistant/components/launch_library/__init__.py:44:29 - error: Argument of type "dict[str, int | str]" cannot be assigned to parameter "filters" of type "Mapping[str, str] | None" in function "launch_upcoming" +   Type "dict[str, int | str]" is not assignable to type "Mapping[str, str] | None" +     "dict[str, int | str]" is not assignable to "Mapping[str, str]" +       Type parameter "_VT_co@Mapping" is covariant, but "int | str" is not a subtype of "str" +         Type "int | str" is not assignable to type "str" +           "int" is not assignable to "str" +     "dict[str, int | str]" is not assignable to "None" (reportArgumentType) +/homeassistant/components/launch_library/diagnostics.py + /homeassistant/components/launch_library/diagnostics.py:30:16 - error: Type "Launch | Event" is not assignable to return type "dict[str, Any] | None" +   Type "Launch | Event" is not assignable to type "dict[str, Any] | None" +     Type "Event" is not assignable to type "dict[str, Any] | None" +       "Event" is not assignable to "dict[str, Any]" +       "Event" is not assignable to "None" (reportReturnType) + /homeassistant/components/launch_library/diagnostics.py:33:39 - error: Argument of type "list[Launch]" cannot be assigned to parameter "data" of type "list[Launch | Event]" in function "_first_element" +   "list[Launch]" is not assignable to "list[Launch | Event]" +     Type parameter "_T@list" is invariant, but "Launch" is not the same as "Launch | Event" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /homeassistant/components/launch_library/diagnostics.py:35:49 - error: Cannot access attribute "upcoming" for class "StarshipResponse" +   Attribute "upcoming" is unknown +   Use ["upcoming"] to reference item in TypedDict (reportAttributeAccessIssue) + /homeassistant/components/launch_library/diagnostics.py:38:49 - error: Cannot access attribute "upcoming" for class "StarshipResponse" +   Attribute "upcoming" is unknown +   Use ["upcoming"] to reference item in TypedDict (reportAttributeAccessIssue) +/homeassistant/components/launch_library/sensor.py + /homeassistant/components/launch_library/sensor.py:49:25 - error: Could not access item in TypedDict +   "launch_service_provider" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:50:20 - error: Could not access item in TypedDict +   "pad" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:51:25 - error: Could not access item in TypedDict +   "pad" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:52:38 - error: Could not access item in TypedDict +   "pad" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:60:44 - error: Could not access item in TypedDict +   "net" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:62:29 - error: Could not access item in TypedDict +   "window_start" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:63:27 - error: Could not access item in TypedDict +   "window_end" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:64:28 - error: Could not access item in TypedDict +   "window_start" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:72:37 - error: Could not access item in TypedDict +   "probability" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:72:66 - error: Could not access item in TypedDict +   "probability" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:79:29 - error: Could not access item in TypedDict +   "status" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:86:29 - error: Could not access item in TypedDict +   "mission" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:88:29 - error: Could not access item in TypedDict +   "mission" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:89:29 - error: Could not access item in TypedDict +   "mission" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:90:28 - error: Could not access item in TypedDict +   "mission" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:98:44 - error: Could not access item in TypedDict +   "net" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:100:22 - error: Could not access item in TypedDict +   "mission" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:101:23 - error: Could not access item in TypedDict +   "status" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:102:29 - error: Could not access item in TypedDict +   "mission" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:103:28 - error: Could not access item in TypedDict +   "mission" is not a defined key in "Event" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:111:44 - error: Could not access item in TypedDict +   "date" is not a defined key in "Launch" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:114:25 - error: Could not access item in TypedDict +   "location" is not a defined key in "Launch" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:115:23 - error: Could not access item in TypedDict +   "video_url" is not a defined key in "Launch" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:116:28 - error: Could not access item in TypedDict +   "description" is not a defined key in "Launch" (reportGeneralTypeIssues) + /homeassistant/components/launch_library/sensor.py:162:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LaunchLibrarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/launch_library/sensor.py:162:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "LaunchLibrarySensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/launch_library/sensor.py:170:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/launch_library/sensor.py:177:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/launch_library/sensor.py:184:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/laundrify/binary_sensor.py + /homeassistant/components/laundrify/binary_sensor.py:54:28 - error: Cannot access attribute "id" for class "LaundrifyDevice" +   Attribute "id" is unknown (reportAttributeAccessIssue) + /homeassistant/components/laundrify/binary_sensor.py:55:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/laundrify/binary_sensor.py:58:25 - error: Cannot access attribute "name" for class "LaundrifyDevice" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/laundrify/binary_sensor.py:60:33 - error: Cannot access attribute "model" for class "LaundrifyDevice" +   Attribute "model" is unknown (reportAttributeAccessIssue) + /homeassistant/components/laundrify/binary_sensor.py:61:31 - error: Cannot access attribute "firmwareVersion" for class "LaundrifyDevice" +   Attribute "firmwareVersion" is unknown (reportAttributeAccessIssue) + /homeassistant/components/laundrify/binary_sensor.py:62:48 - error: Cannot access attribute "internalIP" for class "LaundrifyDevice" +   Attribute "internalIP" is unknown (reportAttributeAccessIssue) + /homeassistant/components/laundrify/binary_sensor.py:66:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/laundrify/binary_sensor.py:74:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/laundrify/binary_sensor.py:76:34 - error: Cannot access attribute "status" for class "LaundrifyDevice" +   Attribute "status" is unknown (reportAttributeAccessIssue) +/homeassistant/components/laundrify/sensor.py + /homeassistant/components/laundrify/sensor.py:50:74 - error: Cannot access attribute "id" for class "LaundrifyDevice" +   Attribute "id" is unknown (reportAttributeAccessIssue) + /homeassistant/components/laundrify/sensor.py:51:42 - error: Cannot access attribute "id" for class "LaundrifyDevice" +   Attribute "id" is unknown (reportAttributeAccessIssue) + /homeassistant/components/laundrify/sensor.py:76:7 - error: Base classes for class "LaundrifyEnergySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/laundrify/sensor.py:91:36 - error: Argument of type "Self@LaundrifyEnergySensor" cannot be assigned to parameter "self" of type "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" in function "__init__" +   "LaundrifyEnergySensor*" is not assignable to "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" +     Type parameter "_DataUpdateCoordinatorT@CoordinatorEntity" is invariant, but "LaundrifyUpdateCoordinator" is not the same as "DataUpdateCoordinator[dict[str, Any]]" (reportArgumentType) + /homeassistant/components/laundrify/sensor.py:95:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/laundrify/sensor.py:97:53 - error: Cannot access attribute "id" for class "LaundrifyDevice" +   Attribute "id" is unknown (reportAttributeAccessIssue) + /homeassistant/components/laundrify/sensor.py:98:29 - error: Cannot access attribute "totalEnergy" for class "LaundrifyDevice" +   Attribute "totalEnergy" is unknown (reportAttributeAccessIssue) +/homeassistant/components/lawn_mower/__init__.py + /homeassistant/components/lawn_mower/__init__.py:83:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LawnMowerEntityEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lawn_mower/__init__.py:85:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LawnMowerEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/lawn_mower/__init__.py:89:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/lcn/__init__.py + /homeassistant/components/lcn/__init__.py:279:65 - error: Argument of type "ModStatusAccessControl" cannot be assigned to parameter "inp" of type "InputType" in function "_async_fire_access_control_event" +   Type "ModStatusAccessControl" is not assignable to type "InputType" (reportArgumentType) + /homeassistant/components/lcn/__init__.py:281:60 - error: Argument of type "ModSendKeysHost" cannot be assigned to parameter "inp" of type "InputType" in function "_async_fire_send_keys_event" +   Type "ModSendKeysHost" is not assignable to type "InputType" (reportArgumentType) + /homeassistant/components/lcn/__init__.py:294:21 - error: Cannot access attribute "code" for class "InputType" +   Attribute "code" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/__init__.py:300:12 - error: Cannot access attribute "periphery" for class "InputType" +   Attribute "periphery" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/__init__.py:302:27 - error: Cannot access attribute "level" for class "InputType" +   Attribute "level" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/__init__.py:302:45 - error: Cannot access attribute "key" for class "InputType" +   Attribute "key" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/__init__.py:302:64 - error: Cannot access attribute "action" for class "InputType" +   Attribute "action" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/__init__.py:305:29 - error: Cannot access attribute "periphery" for class "InputType" +   Attribute "periphery" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/__init__.py:316:40 - error: Cannot access attribute "actions" for class "InputType" +   Attribute "actions" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/__init__.py:320:44 - error: Cannot access attribute "keys" for class "InputType" +   Attribute "keys" is unknown (reportAttributeAccessIssue) +/homeassistant/components/lcn/binary_sensor.py + /homeassistant/components/lcn/binary_sensor.py:63:7 - error: Base classes for class "LcnBinarySensor" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/binary_sensor.py:63:7 - error: Base classes for class "LcnBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/binary_sensor.py:63:7 - error: Base classes for class "LcnBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/binary_sensor.py:76:38 - error: Cannot access attribute "request_status_binary_sensors" for class "GroupConnection" +   Attribute "request_status_binary_sensors" is unknown (reportAttributeAccessIssue) +/homeassistant/components/lcn/climate.py + /homeassistant/components/lcn/climate.py:82:7 - error: Base classes for class "LcnClimate" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/climate.py:82:7 - error: Base classes for class "LcnClimate" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/climate.py:82:7 - error: Base classes for class "LcnClimate" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/climate.py:117:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/climate.py:125:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/climate.py:130:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/climate.py:135:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/climate.py:145:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/climate.py:150:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/climate.py:187:36 - error: Cannot access attribute "request_status_variable" for class "GroupConnection" +   Attribute "request_status_variable" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/climate.py:190:36 - error: Cannot access attribute "request_status_variable" for class "GroupConnection" +   Attribute "request_status_variable" is unknown (reportAttributeAccessIssue) +/homeassistant/components/lcn/cover.py + /homeassistant/components/lcn/cover.py:76:7 - error: Base classes for class "LcnOutputsCover" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/cover.py:76:7 - error: Base classes for class "LcnOutputsCover" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/cover.py:76:7 - error: Base classes for class "LcnOutputsCover" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/cover.py:135:40 - error: Cannot access attribute "request_status_output" for class "GroupConnection" +   Attribute "request_status_output" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/cover.py:138:40 - error: Cannot access attribute "request_status_output" for class "GroupConnection" +   Attribute "request_status_output" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/cover.py:168:7 - error: Base classes for class "LcnRelayCover" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/cover.py:168:7 - error: Base classes for class "LcnRelayCover" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/cover.py:168:7 - error: Base classes for class "LcnRelayCover" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/cover.py:192:13 - error: Operator "|=" not supported for types "CoverEntityFeature | None" and "Literal[CoverEntityFeature.SET_POSITION]" +   Operator "|" not supported for types "None" and "Literal[CoverEntityFeature.SET_POSITION]" (reportOperatorIssue) + /homeassistant/components/lcn/cover.py:258:41 - error: Cannot access attribute "request_status_relays" for class "GroupConnection" +   Attribute "request_status_relays" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/cover.py:261:40 - error: Cannot access attribute "request_status_motor_position" for class "GroupConnection" +   Attribute "request_status_motor_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/cover.py:286:49 - error: Cannot assign to attribute "_attr_current_cover_position" for class "LcnRelayCover*" +   Type "float" is not assignable to type "int | None" +     "float" is not assignable to "int" +     "float" is not assignable to "None" (reportAttributeAccessIssue) +/homeassistant/components/lcn/entity.py + /homeassistant/components/lcn/entity.py:49:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/entity.py:60:9 - error: "should_poll" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/entity.py:72:62 - error: Cannot access attribute "register_for_inputs" for class "GroupConnection" +   Attribute "register_for_inputs" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/entity.py:73:13 - error: Argument of type "(input_obj: InputType) -> None" cannot be assigned to parameter "callback" of type "(Input) -> None" in function "register_for_inputs" +   Type "(input_obj: InputType) -> None" is not assignable to type "(Input) -> None" +     Parameter 1: type "Input" is incompatible with type "InputType" +       Type "Input" is not assignable to type "InputType" (reportArgumentType) + /homeassistant/components/lcn/entity.py:84:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lcn/helpers.py + /homeassistant/components/lcn/helpers.py:254:33 - error: Cannot access attribute "serials_known" for class "GroupConnection" +   Attribute "serials_known" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/helpers.py:274:47 - error: Cannot access attribute "request_name" for class "GroupConnection" +   Attribute "request_name" is unknown (reportAttributeAccessIssue) +/homeassistant/components/lcn/light.py + /homeassistant/components/lcn/light.py:81:7 - error: Base classes for class "LcnOutputLight" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/light.py:81:7 - error: Base classes for class "LcnOutputLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/light.py:81:7 - error: Base classes for class "LcnOutputLight" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/light.py:152:38 - error: Cannot access attribute "request_status_output" for class "GroupConnection" +   Attribute "request_status_output" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/light.py:170:7 - error: Base classes for class "LcnRelayLight" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/light.py:170:7 - error: Base classes for class "LcnRelayLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/light.py:170:7 - error: Base classes for class "LcnRelayLight" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/light.py:203:38 - error: Cannot access attribute "request_status_relays" for class "GroupConnection" +   Attribute "request_status_relays" is unknown (reportAttributeAccessIssue) +/homeassistant/components/lcn/scene.py + /homeassistant/components/lcn/scene.py:66:7 - error: Base classes for class "LcnScene" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/scene.py:66:7 - error: Base classes for class "LcnScene" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/scene.py:66:7 - error: Base classes for class "LcnScene" define variable "name" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/lcn/sensor.py + /homeassistant/components/lcn/sensor.py:117:7 - error: Base classes for class "LcnVariableSensor" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/sensor.py:117:7 - error: Base classes for class "LcnVariableSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/sensor.py:117:7 - error: Base classes for class "LcnVariableSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/sensor.py:136:38 - error: Cannot access attribute "request_status_variable" for class "GroupConnection" +   Attribute "request_status_variable" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/sensor.py:156:7 - error: Base classes for class "LcnLedLogicSensor" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/sensor.py:156:7 - error: Base classes for class "LcnLedLogicSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/sensor.py:156:7 - error: Base classes for class "LcnLedLogicSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/sensor.py:172:38 - error: Cannot access attribute "request_status_led_and_logic_ops" for class "GroupConnection" +   Attribute "request_status_led_and_logic_ops" is unknown (reportAttributeAccessIssue) +/homeassistant/components/lcn/switch.py + /homeassistant/components/lcn/switch.py:71:7 - error: Base classes for class "LcnOutputSwitch" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/switch.py:71:7 - error: Base classes for class "LcnOutputSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/switch.py:71:7 - error: Base classes for class "LcnOutputSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/switch.py:98:38 - error: Cannot access attribute "request_status_output" for class "GroupConnection" +   Attribute "request_status_output" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/switch.py:114:7 - error: Base classes for class "LcnRelaySwitch" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/switch.py:114:7 - error: Base classes for class "LcnRelaySwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/switch.py:114:7 - error: Base classes for class "LcnRelaySwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/switch.py:145:38 - error: Cannot access attribute "request_status_relays" for class "GroupConnection" +   Attribute "request_status_relays" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/switch.py:156:7 - error: Base classes for class "LcnRegulatorLockSwitch" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/switch.py:156:7 - error: Base classes for class "LcnRegulatorLockSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/switch.py:156:7 - error: Base classes for class "LcnRegulatorLockSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/switch.py:186:38 - error: Cannot access attribute "request_status_variable" for class "GroupConnection" +   Attribute "request_status_variable" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lcn/switch.py:202:7 - error: Base classes for class "LcnKeyLockSwitch" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/switch.py:202:7 - error: Base classes for class "LcnKeyLockSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/switch.py:202:7 - error: Base classes for class "LcnKeyLockSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lcn/switch.py:239:38 - error: Cannot access attribute "request_status_locked_keys" for class "GroupConnection" +   Attribute "request_status_locked_keys" is unknown (reportAttributeAccessIssue) +/homeassistant/components/ld2410_ble/__init__.py + /homeassistant/components/ld2410_ble/__init__.py:6:5 - error: "BleakError" is not exported from module "bleak_retry_connector" +   Import from "bleak.exc" instead (reportPrivateImportUsage) +/homeassistant/components/ld2410_ble/binary_sensor.py + /homeassistant/components/ld2410_ble/binary_sensor.py:76:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/ld2410_ble/coordinator.py + /homeassistant/components/ld2410_ble/coordinator.py:74:46 - error: Argument of type "HassJob[(_now: datetime), None]" cannot be assigned to parameter "action" of type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" in function "async_call_later" +   Type "HassJob[(_now: datetime), None]" is not assignable to type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" +     "HassJob[(_now: datetime), None]" is not assignable to "HassJob[(datetime), Coroutine[Any, Any, None] | None]" +       Type parameter "_R_co@HassJob" is invariant, but "None" is not the same as "Coroutine[Any, Any, None] | None" +     Type "HassJob[(_now: datetime), None]" is not assignable to type "(datetime) -> (Coroutine[Any, Any, None] | None)" (reportArgumentType) +/homeassistant/components/ld2410_ble/sensor.py + /homeassistant/components/ld2410_ble/sensor.py:172:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/leaone/sensor.py + /homeassistant/components/leaone/sensor.py:132:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/leaone/sensor.py:137:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/leaone/sensor.py:149:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/led_ble/light.py + /homeassistant/components/led_ble/light.py:41:7 - error: Base classes for class "LEDBLEEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/lektrico/binary_sensor.py + /homeassistant/components/lektrico/binary_sensor.py:119:7 - error: Base classes for class "LektricoBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lektrico/binary_sensor.py:132:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LektricoBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lektrico/binary_sensor.py:132:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "LektricoBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lektrico/binary_sensor.py:137:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lektrico/button.py + /homeassistant/components/lektrico/button.py:90:7 - error: Base classes for class "LektricoButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lektrico/button.py:103:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LektricoButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lektrico/button.py:103:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "LektricoButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/lektrico/number.py + /homeassistant/components/lektrico/number.py:76:7 - error: Base classes for class "LektricoNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lektrico/number.py:89:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LektricoNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lektrico/number.py:89:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "LektricoNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lektrico/number.py:93:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lektrico/select.py + /homeassistant/components/lektrico/select.py:65:7 - error: Base classes for class "LektricoSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lektrico/select.py:78:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LektricoSelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lektrico/select.py:78:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "LektricoSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lektrico/select.py:82:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lektrico/sensor.py + /homeassistant/components/lektrico/sensor.py:317:7 - error: Base classes for class "LektricoSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lektrico/sensor.py:330:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LektricoSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lektrico/sensor.py:330:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "LektricoSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lektrico/sensor.py:334:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/lektrico/switch.py + /homeassistant/components/lektrico/switch.py:83:7 - error: Base classes for class "LektricoSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lektrico/switch.py:96:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LektricoSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lektrico/switch.py:96:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "LektricoSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lektrico/switch.py:100:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/letpot/binary_sensor.py + /homeassistant/components/letpot/binary_sensor.py:106:7 - error: Base classes for class "LetPotBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/binary_sensor.py:118:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LetPotBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/binary_sensor.py:118:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "LetPotBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/binary_sensor.py:122:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/letpot/number.py + /homeassistant/components/letpot/number.py:105:7 - error: Base classes for class "LetPotNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/number.py:117:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LetPotNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/number.py:117:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "LetPotNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/number.py:121:9 - error: "native_max_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/number.py:126:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/number.py:131:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/letpot/select.py + /homeassistant/components/letpot/select.py:136:7 - error: Base classes for class "LetPotSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/select.py:148:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LetPotSelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/select.py:148:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "LetPotSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/select.py:152:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/select.py:157:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/letpot/sensor.py + /homeassistant/components/letpot/sensor.py:89:7 - error: Base classes for class "LetPotSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/sensor.py:101:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LetPotSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/sensor.py:101:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "LetPotSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/sensor.py:105:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/sensor.py:112:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/letpot/switch.py + /homeassistant/components/letpot/switch.py:96:7 - error: Base classes for class "LetPotSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/switch.py:108:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LetPotSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/switch.py:108:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "LetPotSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/switch.py:112:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/switch.py:117:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/letpot/switch.py:124:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/letpot/time.py + /homeassistant/components/letpot/time.py:72:7 - error: Base classes for class "LetPotTimeEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/time.py:84:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LetPotTimeEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/time.py:84:14 - error: "entity_description" overrides symbol of same name in class "TimeEntity" +   Variable is mutable so its type is invariant +     Override type "LetPotTimeEntityDescription" is not the same as base type "TimeEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/time.py:88:9 - error: "native_value" overrides symbol of same name in class "TimeEntity" +   "property" is not assignable to "cached_property[time | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/letpot/time.py:93:15 - error: Method "async_set_value" overrides class "TimeEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/lg_netcast/media_player.py + /homeassistant/components/lg_netcast/media_player.py:164:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lg_netcast/media_player.py:169:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lg_netcast/media_player.py:174:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lg_netcast/media_player.py:179:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lg_netcast/media_player.py:184:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lg_netcast/media_player.py:189:9 - error: "media_channel" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lg_netcast/media_player.py:194:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lg_netcast/media_player.py:199:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/lg_netcast/media_player.py:206:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lg_soundbar/media_player.py + /homeassistant/components/lg_soundbar/media_player.py:155:22 - error: "get_eq" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/lg_soundbar/media_player.py:156:22 - error: "get_info" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/lg_soundbar/media_player.py:157:22 - error: "get_func" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/lg_soundbar/media_player.py:158:22 - error: "get_settings" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/lg_soundbar/media_player.py:161:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lg_soundbar/media_player.py:168:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lg_soundbar/media_player.py:173:9 - error: "sound_mode" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lg_soundbar/media_player.py:180:9 - error: "sound_mode_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lg_soundbar/media_player.py:189:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lg_soundbar/media_player.py:196:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lg_soundbar/media_player.py:207:22 - error: "set_volume" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/lg_soundbar/media_player.py:211:22 - error: "set_mute" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/lg_soundbar/media_player.py:215:22 - error: "set_func" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/lg_soundbar/media_player.py:219:22 - error: "set_eq" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/lg_soundbar/media_player.py:231:22 - error: "send_packet" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/lg_thinq/binary_sensor.py + /homeassistant/components/lg_thinq/binary_sensor.py:92:5 - error: Type "dict[str, tuple[ThinQBinarySensorEntityDescription] | tuple[ThinQBinarySensorEntityDescription, ThinQBinarySensorEntityDescription, ThinQBinarySensorEntityDescription, ThinQBinarySensorEntityDescription, ThinQBinarySensorEntityDescription, ThinQBinarySensorEntityDescription] | tuple[ThinQBinarySensorEntityDescription, ThinQBinarySensorEntityDescription, ThinQBinarySensorEntityDescription, ThinQBinarySensorEntityDescription]]" is not assignable to declared type "dict[DeviceType, tuple[ThinQBinarySensorEntityDescription, ...]]" +   "Literal['DEVICE_COOKTOP']" is not assignable to "DeviceType" +   "Literal['DEVICE_DISH_WASHER']" is not assignable to "DeviceType" +   "Literal['DEVICE_DRYER']" is not assignable to "DeviceType" +   "Literal['DEVICE_HOOD']" is not assignable to "DeviceType" +   "Literal['DEVICE_OVEN']" is not assignable to "DeviceType" +   "Literal['DEVICE_REFRIGERATOR']" is not assignable to "DeviceType" +   "Literal['DEVICE_KIMCHI_REFRIGERATOR']" is not assignable to "DeviceType" +   "Literal['DEVICE_STYLER']" is not assignable to "DeviceType" (reportAssignmentType) + /homeassistant/components/lg_thinq/binary_sensor.py:147:17 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceType" in function "get" +   "str" is not assignable to "DeviceType" (reportArgumentType) + /homeassistant/components/lg_thinq/binary_sensor.py:162:7 - error: Base classes for class "ThinQBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lg_thinq/binary_sensor.py:165:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "ThinQBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/lg_thinq/climate.py + /homeassistant/components/lg_thinq/climate.py:32:83 - error: Type "dict[str, tuple[ClimateEntityDescription]]" is not assignable to declared type "dict[DeviceType, tuple[ClimateEntityDescription, ...]]" +   "Literal['DEVICE_AIR_CONDITIONER']" is not assignable to "DeviceType" +   "Literal['DEVICE_SYSTEM_BOILER']" is not assignable to "DeviceType" (reportAssignmentType) + /homeassistant/components/lg_thinq/climate.py:87:17 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceType" in function "get" +   "str" is not assignable to "DeviceType" (reportArgumentType) + /homeassistant/components/lg_thinq/climate.py:100:7 - error: Base classes for class "ThinQClimateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lg_thinq/climate.py:141:22 - error: Cannot access attribute "support_temperature_range" for class "PropertyState" +   Attribute "support_temperature_range" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lg_thinq/climate.py:160:35 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/lg_thinq/climate.py:161:17 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/lg_thinq/climate.py:164:54 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/lg_thinq/climate.py:167:17 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/lg_thinq/climate.py:253:35 - error: Argument of type "str | None" cannot be assigned to parameter "value" of type "str" in function "async_set_hvac_mode" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/lg_thinq/climate.py:296:35 - error: Argument of type "str | None" cannot be assigned to parameter "value" of type "str" in function "async_set_swing_mode" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/lg_thinq/climate.py:310:35 - error: Argument of type "str | None" cannot be assigned to parameter "value" of type "str" in function "async_set_swing_horizontal_mode" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/lg_thinq/climate.py:338:16 - error: Operator ">=" not supported for "None" (reportOptionalOperand) + /homeassistant/components/lg_thinq/climate.py:351:16 - error: Operator ">=" not supported for "None" (reportOptionalOperand) +/homeassistant/components/lg_thinq/coordinator.py + /homeassistant/components/lg_thinq/coordinator.py:41:21 - error: Cannot assign to attribute "data" for class "DeviceDataUpdateCoordinator*" +   Type "dict[str, PropertyState] | None" is not assignable to type "dict[str, Any]" +     "None" is not assignable to "dict[str, Any]" (reportAttributeAccessIssue) +/homeassistant/components/lg_thinq/event.py + /homeassistant/components/lg_thinq/event.py:30:79 - error: Type "dict[str, tuple[EventEntityDescription] | tuple[EventEntityDescription, EventEntityDescription]]" is not assignable to declared type "dict[DeviceType, tuple[EventEntityDescription, ...]]" +   "Literal['DEVICE_AIR_CONDITIONER']" is not assignable to "DeviceType" +   "Literal['DEVICE_AIR_PURIFIER_FAN']" is not assignable to "DeviceType" +   "Literal['DEVICE_AIR_PURIFIER']" is not assignable to "DeviceType" +   "Literal['DEVICE_DEHUMIDIFIER']" is not assignable to "DeviceType" +   "Literal['DEVICE_DISH_WASHER']" is not assignable to "DeviceType" +   "Literal['DEVICE_DRYER']" is not assignable to "DeviceType" +   "Literal['DEVICE_HUMIDIFIER']" is not assignable to "DeviceType" +   "Literal['DEVICE_KIMCHI_REFRIGERATOR']" is not assignable to "DeviceType" (reportAssignmentType) + /homeassistant/components/lg_thinq/event.py:67:17 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceType" in function "get" +   "str" is not assignable to "DeviceType" (reportArgumentType) + /homeassistant/components/lg_thinq/event.py:82:7 - error: Base classes for class "ThinQEventEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lg_thinq/event.py:95:34 - error: Cannot assign to attribute "_attr_event_types" for class "ThinQEventEntity*" +   Type "list[str] | None" is not assignable to type "list[str]" +     "None" is not assignable to "list[str]" (reportAttributeAccessIssue) +/homeassistant/components/lg_thinq/fan.py + /homeassistant/components/lg_thinq/fan.py:38:80 - error: Type "dict[str, tuple[ThinQFanEntityDescription]]" is not assignable to declared type "dict[DeviceType, tuple[ThinQFanEntityDescription, ...]]" +   "Literal['DEVICE_CEILING_FAN']" is not assignable to "DeviceType" +   "Literal['DEVICE_VENTILATOR']" is not assignable to "DeviceType" (reportAssignmentType) + /homeassistant/components/lg_thinq/fan.py:71:53 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceType" in function "get" +   "str" is not assignable to "DeviceType" (reportArgumentType) + /homeassistant/components/lg_thinq/fan.py:85:7 - error: Base classes for class "ThinQFanEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lg_thinq/fan.py:104:23 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) + /homeassistant/components/lg_thinq/fan.py:115:29 - error: Operator "not in" not supported for types "str" and "list[str] | None" +   Operator "not in" not supported for types "str" and "None" (reportOperatorIssue) +/homeassistant/components/lg_thinq/number.py + /homeassistant/components/lg_thinq/number.py:55:67 - error: Type "dict[Property | TimerProperty, NumberEntityDescription]" is not assignable to declared type "dict[Property, NumberEntityDescription]" +   "Literal[TimerProperty.RELATIVE_HOUR_TO_START_WM]" is not assignable to "Property" +   "Literal[TimerProperty.RELATIVE_HOUR_TO_STOP_WM]" is not assignable to "Property" (reportAssignmentType) + /homeassistant/components/lg_thinq/number.py:85:5 - error: Argument of type "Literal[TimerProperty.RELATIVE_HOUR_TO_START_WM]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.RELATIVE_HOUR_TO_START_WM]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/number.py:86:5 - error: Argument of type "Literal[TimerProperty.RELATIVE_HOUR_TO_STOP_WM]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.RELATIVE_HOUR_TO_STOP_WM]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/number.py:89:81 - error: Type "dict[str, tuple[NumberEntityDescription, NumberEntityDescription, NumberEntityDescription] | tuple[NumberEntityDescription, NumberEntityDescription] | tuple[NumberEntityDescription]]" is not assignable to declared type "dict[DeviceType, tuple[NumberEntityDescription, ...]]" +   "Literal['DEVICE_AIR_CONDITIONER']" is not assignable to "DeviceType" +   "Literal['DEVICE_AIR_PURIFIER_FAN']" is not assignable to "DeviceType" +   "Literal['DEVICE_DRYER']" is not assignable to "DeviceType" +   "Literal['DEVICE_HOOD']" is not assignable to "DeviceType" +   "Literal['DEVICE_HUMIDIFIER']" is not assignable to "DeviceType" +   "Literal['DEVICE_MICROWAVE_OVEN']" is not assignable to "DeviceType" +   "Literal['DEVICE_OVEN']" is not assignable to "DeviceType" +   "Literal['DEVICE_REFRIGERATOR']" is not assignable to "DeviceType" (reportAssignmentType) + /homeassistant/components/lg_thinq/number.py:114:25 - error: Argument of type "Literal[TimerProperty.RELATIVE_HOUR_TO_STOP_WM]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.RELATIVE_HOUR_TO_STOP_WM]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/number.py:144:17 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceType" in function "get" +   "str" is not assignable to "DeviceType" (reportArgumentType) + /homeassistant/components/lg_thinq/number.py:159:7 - error: Base classes for class "ThinQNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/lg_thinq/select.py + /homeassistant/components/lg_thinq/select.py:86:81 - error: Type "dict[str, tuple[SelectEntityDescription, SelectEntityDescription] | tuple[SelectEntityDescription, SelectEntityDescription, SelectEntityDescription, SelectEntityDescription] | tuple[SelectEntityDescription]]" is not assignable to declared type "dict[DeviceType, tuple[SelectEntityDescription, ...]]" +   "Literal['DEVICE_AIR_CONDITIONER']" is not assignable to "DeviceType" +   "Literal['DEVICE_AIR_PURIFIER_FAN']" is not assignable to "DeviceType" +   "Literal['DEVICE_AIR_PURIFIER']" is not assignable to "DeviceType" +   "Literal['DEVICE_DEHUMIDIFIER']" is not assignable to "DeviceType" +   "Literal['DEVICE_DISH_WASHER']" is not assignable to "DeviceType" +   "Literal['DEVICE_DRYER']" is not assignable to "DeviceType" +   "Literal['DEVICE_HUMIDIFIER']" is not assignable to "DeviceType" +   "Literal['DEVICE_OVEN']" is not assignable to "DeviceType" (reportAssignmentType) + /homeassistant/components/lg_thinq/select.py:164:17 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceType" in function "get" +   "str" is not assignable to "DeviceType" (reportArgumentType) + /homeassistant/components/lg_thinq/select.py:179:7 - error: Base classes for class "ThinQSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/lg_thinq/sensor.py + /homeassistant/components/lg_thinq/sensor.py:133:5 - error: Type "dict[Property | ThinQPropertyEx, SensorEntityDescription]" is not assignable to declared type "dict[Property, SensorEntityDescription]" +   "Literal[ThinQPropertyEx.CURRENT_JOB_MODE_STICK_CLEANER]" is not assignable to "Property" (reportAssignmentType) + /homeassistant/components/lg_thinq/sensor.py:262:73 - error: Type "dict[Property | ThinQPropertyEx, SensorEntityDescription]" is not assignable to declared type "dict[Property, SensorEntityDescription]" +   "Literal[ThinQPropertyEx.ROOM_AIR_CURRENT_TEMPERATURE]" is not assignable to "Property" +   "Literal[ThinQPropertyEx.ROOM_IN_WATER_CURRENT_TEMPERATURE]" is not assignable to "Property" +   "Literal[ThinQPropertyEx.ROOM_OUT_WATER_CURRENT_TEMPERATURE]" is not assignable to "Property" (reportAssignmentType) + /homeassistant/components/lg_thinq/sensor.py:356:66 - error: Type "dict[TimerProperty, SensorEntityDescription]" is not assignable to declared type "dict[Property, SensorEntityDescription]" +   "Literal[TimerProperty.LIGHT_START]" is not assignable to "Property" +   "Literal[TimerProperty.ABSOLUTE_TO_START]" is not assignable to "Property" +   "Literal[TimerProperty.ABSOLUTE_TO_STOP]" is not assignable to "Property" (reportAssignmentType) + /homeassistant/components/lg_thinq/sensor.py:373:67 - error: Type "dict[TimerProperty, SensorEntityDescription]" is not assignable to declared type "dict[Property, SensorEntityDescription]" +   "Literal[TimerProperty.TOTAL]" is not assignable to "Property" +   "Literal[TimerProperty.RELATIVE_TO_START]" is not assignable to "Property" +   "Literal[TimerProperty.RELATIVE_TO_STOP]" is not assignable to "Property" +   "Literal[TimerProperty.SLEEP_TIMER_RELATIVE_TO_STOP]" is not assignable to "Property" +   "Literal[TimerProperty.RELATIVE_TO_START_WM]" is not assignable to "Property" +   "Literal[TimerProperty.RELATIVE_TO_STOP_WM]" is not assignable to "Property" +   "Literal[TimerProperty.REMAIN]" is not assignable to "Property" +   "Literal[TimerProperty.RUNNING]" is not assignable to "Property" (reportAssignmentType) + /homeassistant/components/lg_thinq/sensor.py:426:5 - error: Argument of type "Literal[TimerProperty.TOTAL]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.TOTAL]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:427:5 - error: Argument of type "Literal[TimerProperty.RELATIVE_TO_START_WM]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.RELATIVE_TO_START_WM]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:428:5 - error: Argument of type "Literal[TimerProperty.RELATIVE_TO_STOP_WM]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.RELATIVE_TO_STOP_WM]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:429:5 - error: Argument of type "Literal[TimerProperty.REMAIN]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.REMAIN]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:431:81 - error: Type "dict[str, tuple[SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription] | tuple[SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription] | tuple[SensorEntityDescription, SensorEntityDescription, SensorEntityDescription] | tuple[SensorEntityDescription, SensorEntityDescription] | tuple[SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription] | tuple[SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription] | tuple[SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription] | tuple[SensorEntityDescription] | tuple[SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription] | tuple[SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription] | tuple[SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription]]" is not assignable to declared type "dict[DeviceType, tuple[SensorEntityDescription, ...]]" +   "Literal['DEVICE_AIR_CONDITIONER']" is not assignable to "DeviceType" +   "Literal['DEVICE_AIR_PURIFIER_FAN']" is not assignable to "DeviceType" +   "Literal['DEVICE_AIR_PURIFIER']" is not assignable to "DeviceType" +   "Literal['DEVICE_COOKTOP']" is not assignable to "DeviceType" +   "Literal['DEVICE_DEHUMIDIFIER']" is not assignable to "DeviceType" +   "Literal['DEVICE_DISH_WASHER']" is not assignable to "DeviceType" +   "Literal['DEVICE_DRYER']" is not assignable to "DeviceType" +   "Literal['DEVICE_HOME_BREW']" is not assignable to "DeviceType" (reportAssignmentType) + /homeassistant/components/lg_thinq/sensor.py:441:9 - error: Argument of type "Literal[TimerProperty.RELATIVE_TO_START]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.RELATIVE_TO_START]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:442:9 - error: Argument of type "Literal[TimerProperty.RELATIVE_TO_STOP]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.RELATIVE_TO_STOP]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:443:9 - error: Argument of type "Literal[TimerProperty.SLEEP_TIMER_RELATIVE_TO_STOP]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.SLEEP_TIMER_RELATIVE_TO_STOP]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:444:9 - error: Argument of type "Literal[TimerProperty.ABSOLUTE_TO_START]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.ABSOLUTE_TO_START]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:445:9 - error: Argument of type "Literal[TimerProperty.ABSOLUTE_TO_STOP]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.ABSOLUTE_TO_STOP]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:456:9 - error: Argument of type "Literal[TimerProperty.SLEEP_TIMER_RELATIVE_TO_STOP]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.SLEEP_TIMER_RELATIVE_TO_STOP]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:457:9 - error: Argument of type "Literal[TimerProperty.ABSOLUTE_TO_START]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.ABSOLUTE_TO_START]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:458:9 - error: Argument of type "Literal[TimerProperty.ABSOLUTE_TO_STOP]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.ABSOLUTE_TO_STOP]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:472:9 - error: Argument of type "Literal[TimerProperty.ABSOLUTE_TO_START]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.ABSOLUTE_TO_START]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:473:9 - error: Argument of type "Literal[TimerProperty.ABSOLUTE_TO_STOP]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.ABSOLUTE_TO_STOP]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:478:9 - error: Argument of type "Literal[TimerProperty.REMAIN]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.REMAIN]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:489:9 - error: Argument of type "Literal[TimerProperty.TOTAL]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.TOTAL]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:490:9 - error: Argument of type "Literal[TimerProperty.RELATIVE_TO_START_WM]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.RELATIVE_TO_START_WM]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:491:9 - error: Argument of type "Literal[TimerProperty.REMAIN]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.REMAIN]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:517:9 - error: Argument of type "Literal[TimerProperty.SLEEP_TIMER_RELATIVE_TO_STOP]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.SLEEP_TIMER_RELATIVE_TO_STOP]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:518:9 - error: Argument of type "Literal[TimerProperty.ABSOLUTE_TO_START]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.ABSOLUTE_TO_START]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:519:9 - error: Argument of type "Literal[TimerProperty.ABSOLUTE_TO_STOP]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.ABSOLUTE_TO_STOP]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:542:9 - error: Argument of type "Literal[TimerProperty.LIGHT_START]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.LIGHT_START]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:556:9 - error: Argument of type "Literal[TimerProperty.RUNNING]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.RUNNING]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:557:9 - error: Argument of type "Literal[TimerProperty.ABSOLUTE_TO_START]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.ABSOLUTE_TO_START]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:561:9 - error: Argument of type "Literal[ThinQPropertyEx.CURRENT_JOB_MODE_STICK_CLEANER]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[ThinQPropertyEx.CURRENT_JOB_MODE_STICK_CLEANER]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:566:9 - error: Argument of type "Literal[ThinQPropertyEx.ROOM_AIR_CURRENT_TEMPERATURE]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[ThinQPropertyEx.ROOM_AIR_CURRENT_TEMPERATURE]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:567:9 - error: Argument of type "Literal[ThinQPropertyEx.ROOM_IN_WATER_CURRENT_TEMPERATURE]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[ThinQPropertyEx.ROOM_IN_WATER_CURRENT_TEMPERATURE]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:568:9 - error: Argument of type "Literal[ThinQPropertyEx.ROOM_OUT_WATER_CURRENT_TEMPERATURE]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[ThinQPropertyEx.ROOM_OUT_WATER_CURRENT_TEMPERATURE]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:576:9 - error: Argument of type "Literal[TimerProperty.ABSOLUTE_TO_START]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.ABSOLUTE_TO_START]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:577:9 - error: Argument of type "Literal[TimerProperty.ABSOLUTE_TO_STOP]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.ABSOLUTE_TO_STOP]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:578:9 - error: Argument of type "Literal[TimerProperty.SLEEP_TIMER_RELATIVE_TO_STOP]" cannot be assigned to parameter "key" of type "Property" in function "__getitem__" +   "Literal[TimerProperty.SLEEP_TIMER_RELATIVE_TO_STOP]" is not assignable to "Property" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:648:17 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceType" in function "get" +   "str" is not assignable to "DeviceType" (reportArgumentType) + /homeassistant/components/lg_thinq/sensor.py:687:7 - error: Base classes for class "ThinQSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lg_thinq/sensor.py:762:35 - error: Cannot assign to attribute "_attr_native_value" for class "ThinQSensorEntity*" +   Type "StateType | datetime | date | Decimal | time | Any" is not assignable to type "StateType | date | datetime | Decimal" +     Type "time" is not assignable to type "StateType | date | datetime | Decimal" +       "time" is not assignable to "str" +       "time" is not assignable to "int" +       "time" is not assignable to "float" +       "time" is not assignable to "None" +       "time" is not assignable to "date" +       "time" is not assignable to "datetime" + ... (reportAttributeAccessIssue) + /homeassistant/components/lg_thinq/sensor.py:789:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ThinQEnergySensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lg_thinq/sensor.py:815:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/lg_thinq/sensor.py:838:39 - error: Cannot assign to attribute "_attr_native_value" for class "ThinQEnergySensorEntity*" +   Type "dict[Unknown, Unknown] | None" is not assignable to type "StateType | date | datetime | Decimal" +     Type "dict[Unknown, Unknown]" is not assignable to type "StateType | date | datetime | Decimal" +       "dict[Unknown, Unknown]" is not assignable to "str" +       "dict[Unknown, Unknown]" is not assignable to "int" +       "dict[Unknown, Unknown]" is not assignable to "float" +       "dict[Unknown, Unknown]" is not assignable to "None" +       "dict[Unknown, Unknown]" is not assignable to "date" +       "dict[Unknown, Unknown]" is not assignable to "datetime" + ... (reportAttributeAccessIssue) +/homeassistant/components/lg_thinq/switch.py + /homeassistant/components/lg_thinq/switch.py:43:86 - error: Type "dict[str, tuple[ThinQSwitchEntityDescription, ThinQSwitchEntityDescription, ThinQSwitchEntityDescription, ThinQSwitchEntityDescription] | tuple[ThinQSwitchEntityDescription, ThinQSwitchEntityDescription, ThinQSwitchEntityDescription] | tuple[ThinQSwitchEntityDescription] | tuple[ThinQSwitchEntityDescription, ThinQSwitchEntityDescription, ThinQSwitchEntityDescription, ThinQSwitchEntityDescription, ThinQSwitchEntityDescription] | tuple[ThinQSwitchEntityDescription, ThinQSwitchEntityDescription]]" is not assignable to declared type "dict[DeviceType, tuple[ThinQSwitchEntityDescription, ...]]" +   "Literal['DEVICE_AIR_CONDITIONER']" is not assignable to "DeviceType" +   "Literal['DEVICE_AIR_PURIFIER_FAN']" is not assignable to "DeviceType" +   "Literal['DEVICE_AIR_PURIFIER']" is not assignable to "DeviceType" +   "Literal['DEVICE_DEHUMIDIFIER']" is not assignable to "DeviceType" +   "Literal['DEVICE_DISH_WASHER']" is not assignable to "DeviceType" +   "Literal['DEVICE_DRYER']" is not assignable to "DeviceType" +   "Literal['DEVICE_HUMIDIFIER']" is not assignable to "DeviceType" +   "Literal['DEVICE_REFRIGERATOR']" is not assignable to "DeviceType" (reportAssignmentType) + /homeassistant/components/lg_thinq/switch.py:226:17 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceType" in function "get" +   "str" is not assignable to "DeviceType" (reportArgumentType) + /homeassistant/components/lg_thinq/switch.py:242:7 - error: Base classes for class "ThinQSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lg_thinq/switch.py:245:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "ThinQSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/lg_thinq/vacuum.py + /homeassistant/components/lg_thinq/vacuum.py:25:5 - error: Type "dict[str, tuple[StateVacuumEntityDescription]]" is not assignable to declared type "dict[DeviceType, tuple[StateVacuumEntityDescription, ...]]" +   "Literal['DEVICE_ROBOT_CLEANER']" is not assignable to "DeviceType" (reportAssignmentType) + /homeassistant/components/lg_thinq/vacuum.py:84:17 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceType" in function "get" +   "str" is not assignable to "DeviceType" (reportArgumentType) + /homeassistant/components/lg_thinq/vacuum.py:97:7 - error: Base classes for class "ThinQStateVacuumEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lg_thinq/vacuum.py:114:31 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/lg_thinq/water_heater.py + /homeassistant/components/lg_thinq/water_heater.py:29:70 - error: Type "dict[str, WaterHeaterEntityDescription]" is not assignable to declared type "dict[DeviceType, WaterHeaterEntityDescription]" +   "Literal['DEVICE_WATER_HEATER']" is not assignable to "DeviceType" +   "Literal['DEVICE_SYSTEM_BOILER']" is not assignable to "DeviceType" (reportAssignmentType) + /homeassistant/components/lg_thinq/water_heater.py:61:51 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceType" in function "get" +   "str" is not assignable to "DeviceType" (reportArgumentType) + /homeassistant/components/lg_thinq/water_heater.py:79:7 - error: Base classes for class "ThinQWaterHeaterEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/libre_hardware_monitor/config_flow.py + /homeassistant/components/libre_hardware_monitor/config_flow.py:9:5 - error: "LibreHardwareMonitorClient" is not exported from module "librehardwaremonitor_api" +   Import from "librehardwaremonitor_api.client" instead (reportPrivateImportUsage) + /homeassistant/components/libre_hardware_monitor/config_flow.py:10:5 - error: "LibreHardwareMonitorConnectionError" is not exported from module "librehardwaremonitor_api" +   Import from "librehardwaremonitor_api.errors" instead (reportPrivateImportUsage) + /homeassistant/components/libre_hardware_monitor/config_flow.py:11:5 - error: "LibreHardwareMonitorNoDevicesError" is not exported from module "librehardwaremonitor_api" +   Import from "librehardwaremonitor_api.errors" instead (reportPrivateImportUsage) +/homeassistant/components/libre_hardware_monitor/coordinator.py + /homeassistant/components/libre_hardware_monitor/coordinator.py:10:5 - error: "LibreHardwareMonitorClient" is not exported from module "librehardwaremonitor_api" +   Import from "librehardwaremonitor_api.client" instead (reportPrivateImportUsage) + /homeassistant/components/libre_hardware_monitor/coordinator.py:11:5 - error: "LibreHardwareMonitorConnectionError" is not exported from module "librehardwaremonitor_api" +   Import from "librehardwaremonitor_api.errors" instead (reportPrivateImportUsage) + /homeassistant/components/libre_hardware_monitor/coordinator.py:12:5 - error: "LibreHardwareMonitorNoDevicesError" is not exported from module "librehardwaremonitor_api" +   Import from "librehardwaremonitor_api.errors" instead (reportPrivateImportUsage) +/homeassistant/components/libre_hardware_monitor/sensor.py + /homeassistant/components/libre_hardware_monitor/sensor.py:38:7 - error: Base classes for class "LibreHardwareMonitorSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/libre_hardware_monitor/sensor.py:55:14 - error: "_attr_name" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/libre_hardware_monitor/sensor.py:62:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/libre_hardware_monitor/sensor.py:83:18 - error: "_attr_native_value" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "str | None" is not the same as base type "StateType | date | datetime | Decimal" (reportIncompatibleVariableOverride) +/homeassistant/components/lidarr/sensor.py + /homeassistant/components/lidarr/sensor.py:134:7 - error: Base classes for class "LidarrSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lidarr/sensor.py:137:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "LidarrSensorEntityDescription[T@LidarrSensor]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lidarr/sensor.py:150:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lidarr/sensor.py:155:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/lifx/binary_sensor.py + /homeassistant/components/lifx/binary_sensor.py:41:7 - error: Base classes for class "LIFXHevCycleBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/lifx/button.py + /homeassistant/components/lifx/button.py:43:7 - error: Base classes for class "LIFXButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/lifx/config_flow.py + /homeassistant/components/lifx/config_flow.py:107:9 - error: Method "is_matching" overrides class "ConfigFlow" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "ConfigFlow", override parameter is type "LifXConfigFlow" +     "ConfigFlow" is not assignable to "LifXConfigFlow" (reportIncompatibleMethodOverride) + /homeassistant/components/lifx/config_flow.py:233:25 - error: Type "Any | None" is not assignable to declared type "Light" +   Type "Any | None" is not assignable to type "Light" +     "None" is not assignable to "Light" (reportAssignmentType) +/homeassistant/components/lifx/coordinator.py + /homeassistant/components/lifx/coordinator.py:139:27 - error: Argument of type "Any | None" cannot be assigned to parameter "version" of type "str" in function "__new__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/lifx/coordinator.py:147:52 - error: Argument of type "Any | None" cannot be assigned to parameter "value" of type "int" in function "infrared_brightness_value_to_option" +   Type "Any | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/lifx/coordinator.py:162:13 - error: Argument of type "Any | None" cannot be assigned to parameter "firmware" of type "str" in function "get_real_mac_addr" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/lifx/coordinator.py:200:20 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/lifx/coordinator.py:201:27 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/lifx/coordinator.py:202:27 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/lifx/coordinator.py:203:23 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/lifx/coordinator.py:209:48 - error: Argument of type "Any | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "Any | None" is not assignable to type "Iterable[_T@enumerate]" +     "None" is incompatible with protocol "Iterable[_T@enumerate]" +       "__iter__" is not present (reportArgumentType) + /homeassistant/components/lifx/coordinator.py:294:27 - error: Argument of type "Light" cannot be assigned to parameter of type "Message" +   "Light" is not assignable to "Message" (reportArgumentType) + /homeassistant/components/lifx/coordinator.py:294:33 - error: Argument of type "Message" cannot be assigned to parameter of type "dict[str, Any] | None" +   Type "Message" is not assignable to type "dict[str, Any] | None" +     "Message" is not assignable to "dict[str, Any]" +     "Message" is not assignable to "None" (reportArgumentType) + /homeassistant/components/lifx/coordinator.py:385:60 - error: Cannot access attribute "signal" for class "Message" +   Attribute "signal" is unknown (reportAttributeAccessIssue) + /homeassistant/components/lifx/coordinator.py:388:34 - error: Argument of type "str | Any | None" cannot be assigned to parameter "name" of type "str" in function "__getitem__" +   Type "str | Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/lifx/coordinator.py:427:60 - error: Argument of type "int | None" cannot be assigned to parameter "duration" of type "int" in function "set_power" (reportArgumentType) + /homeassistant/components/lifx/coordinator.py:435:59 - error: Argument of type "int | None" cannot be assigned to parameter "duration" of type "int" in function "set_color" (reportArgumentType) + /homeassistant/components/lifx/coordinator.py:453:26 - error: Argument of type "int | None" cannot be assigned to parameter "duration" of type "int" in function "set_color_zones" (reportArgumentType) + /homeassistant/components/lifx/coordinator.py:507:27 - error: Argument of type "float" cannot be assigned to parameter "speed" of type "int" in function "set_multizone_effect" (reportArgumentType) + /homeassistant/components/lifx/coordinator.py:532:28 - error: Type "Literal[0, 1, 2]" is not assignable to declared type "str | None" +   Type "Literal[0, 1, 2]" is not assignable to type "str | None" +     Type "Literal[0]" is not assignable to type "str | None" +       "Literal[0]" is not assignable to "str" +       "Literal[0]" is not assignable to "None" (reportAssignmentType) +/homeassistant/components/lifx/entity.py + /homeassistant/components/lifx/entity.py:29:19 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/lifx/entity.py:29:44 - error: Argument of type "Any | None" cannot be assigned to parameter "key" of type "int" in function "get" +   Type "Any | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) +/homeassistant/components/lifx/light.py + /homeassistant/components/lifx/light.py:117:7 - error: Base classes for class "LIFXLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lifx/light.py:153:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lifx/light.py:156:43 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/lifx/light.py:161:20 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/lifx/light.py:164:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lifx/light.py:169:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lifx/light.py:315:34 - error: Argument of type "Any | None" cannot be assigned to parameter "base" of type "list[float | int | None]" in function "merge_hsbk" +   Type "Any | None" is not assignable to type "list[float | int | None]" +     "None" is not assignable to "list[float | int | None]" (reportArgumentType) + /homeassistant/components/lifx/light.py:376:9 - error: "supported_color_modes" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[set[ColorMode] | set[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lifx/light.py:381:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lifx/light.py:383:19 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/lifx/light.py:387:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lifx/light.py:389:26 - error: "None" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /homeassistant/components/lifx/light.py:426:26 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/lifx/light.py:429:17 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/lifx/light.py:433:17 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/lifx/light.py:447:36 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/lifx/light.py:488:42 - error: Argument of type "Any | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "Any | None" is not assignable to type "Iterable[_T@enumerate]" +     "None" is incompatible with protocol "Iterable[_T@enumerate]" +       "__iter__" is not present (reportArgumentType) + /homeassistant/components/lifx/light.py:489:17 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/lifx/light.py:492:42 - error: Argument of type "Any | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "Any | None" is not assignable to type "Iterable[_T@enumerate]" +     "None" is incompatible with protocol "Iterable[_T@enumerate]" +       "__iter__" is not present (reportArgumentType) + /homeassistant/components/lifx/light.py:494:21 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/lifx/light.py:499:17 - error: Argument of type "Any | None" cannot be assigned to parameter "colors" of type "list[tuple[int | float, int | float, int | float, int | float]]" in function "async_set_extended_color_zones" +   Type "Any | None" is not assignable to type "list[tuple[int | float, int | float, int | float, int | float]]" +     "None" is not assignable to "list[tuple[int | float, int | float, int | float, int | float]]" (reportArgumentType) +/homeassistant/components/lifx/select.py + /homeassistant/components/lifx/select.py:58:7 - error: Base classes for class "LIFXInfraredBrightnessSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lifx/select.py:88:7 - error: Base classes for class "LIFXThemeSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/lifx/sensor.py + /homeassistant/components/lifx/sensor.py:43:7 - error: Base classes for class "LIFXRssiSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/lifx/util.py + /homeassistant/components/lifx/util.py:82:35 - error: Argument of type "Any | None" cannot be assigned to parameter "key" of type "int" in function "get" +   Type "Any | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) +/homeassistant/components/lifx_cloud/scene.py + /homeassistant/components/lifx_cloud/scene.py:83:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/light/__init__.py + /homeassistant/components/light/__init__.py:806:25 - error: "rec" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/light/__init__.py:903:5 - error: "entity_description" overrides symbol of same name in class "ToggleEntity" +   Variable is mutable so its type is invariant +     Override type "LightEntityDescription" is not the same as base type "ToggleEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/light/__init__.py:919:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LightEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/light/__init__.py:1100:9 - error: "capability_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/light/__init__.py:1262:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/light/__init__.py:1435:1 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) +/homeassistant/components/light/reproduce_state.py + /homeassistant/components/light/reproduce_state.py:166:17 - error: "service" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/lightwave/__init__.py + /homeassistant/components/lightwave/__init__.py:5:6 - error: Import "lightwave.lightwave" could not be resolved (reportMissingImports) +/homeassistant/components/lightwave/climate.py + /homeassistant/components/lightwave/climate.py:93:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/limitlessled/light.py + /homeassistant/components/limitlessled/light.py:9:26 - error: "Color" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/limitlessled/light.py:10:6 - error: Import "limitlessled.bridge" could not be resolved (reportMissingImports) + /homeassistant/components/limitlessled/light.py:11:6 - error: Import "limitlessled.group" could not be resolved (reportMissingImports) + /homeassistant/components/limitlessled/light.py:12:6 - error: Import "limitlessled.group.dimmer" could not be resolved (reportMissingImports) + /homeassistant/components/limitlessled/light.py:13:6 - error: Import "limitlessled.group.rgbw" could not be resolved (reportMissingImports) + /homeassistant/components/limitlessled/light.py:14:6 - error: Import "limitlessled.group.rgbww" could not be resolved (reportMissingImports) + /homeassistant/components/limitlessled/light.py:15:6 - error: Import "limitlessled.group.white" could not be resolved (reportMissingImports) + /homeassistant/components/limitlessled/light.py:16:6 - error: Import "limitlessled.pipeline" could not be resolved (reportMissingImports) + /homeassistant/components/limitlessled/light.py:17:6 - error: Import "limitlessled.presets" could not be resolved (reportMissingImports) + /homeassistant/components/limitlessled/light.py:216:7 - error: Base classes for class "LimitlessLEDGroup" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/limitlessled/light.py:216:7 - error: Base classes for class "LimitlessLEDGroup" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/limitlessled/light.py:216:7 - error: Base classes for class "LimitlessLEDGroup" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/limitlessled/light.py:216:7 - error: Base classes for class "LimitlessLEDGroup" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/limitlessled/light.py:216:7 - error: Base classes for class "LimitlessLEDGroup" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/limitlessled/light.py:216:7 - error: Base classes for class "LimitlessLEDGroup" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/limitlessled/light.py:270:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/limitlessled/light.py:278:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/linkplay/__init__.py + /homeassistant/components/linkplay/__init__.py:53:22 - error: "add_bridge" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/linkplay/__init__.py:54:22 - error: "discover_multirooms" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/linkplay/button.py + /homeassistant/components/linkplay/button.py:76:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LinkPlayButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/linkplay/button.py:76:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "LinkPlayButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/linkplay/button.py:80:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/linkplay/entity.py + /homeassistant/components/linkplay/entity.py:42:53 - error: Argument of type "Literal['project']" cannot be assigned to parameter "key" of type "DeviceAttribute" in function "__getitem__" +   "Literal['project']" is not assignable to "DeviceAttribute" (reportArgumentType) + /homeassistant/components/linkplay/entity.py:45:24 - error: Argument of type "Literal['project']" cannot be assigned to parameter "key" of type "DeviceAttribute" in function "__getitem__" +   "Literal['project']" is not assignable to "DeviceAttribute" (reportArgumentType) + /homeassistant/components/linkplay/entity.py:50:45 - error: Argument of type "Literal['MAC']" cannot be assigned to parameter "key" of type "DeviceAttribute" in function "__getitem__" +   "Literal['MAC']" is not assignable to "DeviceAttribute" (reportArgumentType) + /homeassistant/components/linkplay/entity.py:54:31 - error: Argument of type "LinkPlayEndpoint" cannot be assigned to parameter "configuration_url" of type "str | URL | None" in function "__init__" +   Type "LinkPlayEndpoint" is not assignable to type "str | URL | None" +     "LinkPlayEndpoint" is not assignable to "str" +     "LinkPlayEndpoint" is not assignable to "URL" +     "LinkPlayEndpoint" is not assignable to "None" (reportArgumentType) + /homeassistant/components/linkplay/entity.py:56:24 - error: Argument of type "Literal['hardware']" cannot be assigned to parameter "key" of type "DeviceAttribute" in function "__getitem__" +   "Literal['hardware']" is not assignable to "DeviceAttribute" (reportArgumentType) + /homeassistant/components/linkplay/entity.py:62:24 - error: Argument of type "Literal['firmware']" cannot be assigned to parameter "key" of type "DeviceAttribute" in function "__getitem__" +   "Literal['firmware']" is not assignable to "DeviceAttribute" (reportArgumentType) +/homeassistant/components/linkplay/media_player.py + /homeassistant/components/linkplay/media_player.py:181:15 - error: Method "async_select_source" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/linkplay/media_player.py:186:15 - error: Method "async_select_sound_mode" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/linkplay/media_player.py:191:15 - error: Method "async_mute_volume" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/linkplay/media_player.py:199:15 - error: Method "async_set_volume_level" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/linkplay/media_player.py:204:15 - error: Method "async_media_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/linkplay/media_player.py:209:15 - error: Method "async_media_play" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/linkplay/media_player.py:214:15 - error: Method "async_media_stop" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/linkplay/media_player.py:219:15 - error: Method "async_media_next_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/linkplay/media_player.py:224:15 - error: Method "async_media_previous_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/linkplay/media_player.py:229:15 - error: Method "async_set_repeat" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/linkplay/media_player.py:251:15 - error: Method "async_play_media" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/linkplay/media_player.py:273:15 - error: Method "async_media_seek" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/linkplay/media_player.py:278:15 - error: Method "async_join_players" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/linkplay/media_player.py:311:9 - error: "group_members" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/linkplay/media_player.py:333:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/linkplay/media_player.py:340:15 - error: Method "async_unjoin_player" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/linkplay/select.py + /homeassistant/components/linkplay/select.py:53:27 - error: Argument of type "(bridge: LinkPlayBridge) -> CoroutineType[Any, Any, str]" cannot be assigned to parameter "current_option_fn" of type "(LinkPlayPlayer) -> Awaitable[str]" in function "__init__" +   Type "(bridge: LinkPlayBridge) -> CoroutineType[Any, Any, str]" is not assignable to type "(LinkPlayPlayer) -> Awaitable[str]" +     Parameter 1: type "LinkPlayPlayer" is incompatible with type "LinkPlayBridge" +       "LinkPlayPlayer" is not assignable to "LinkPlayBridge" (reportArgumentType) + /homeassistant/components/linkplay/select.py:56:37 - error: Cannot access attribute "player" for class "LinkPlayPlayer" +   Attribute "player" is unknown (reportAttributeAccessIssue) + /homeassistant/components/linkplay/select.py:75:28 - error: Argument of type "LinkPlayBridge" cannot be assigned to parameter "bridge" of type "LinkPlayPlayer" in function "__init__" +   "LinkPlayBridge" is not assignable to "LinkPlayPlayer" (reportArgumentType) + /homeassistant/components/linkplay/select.py:91:26 - error: Argument of type "LinkPlayPlayer" cannot be assigned to parameter "bridge" of type "LinkPlayBridge" in function "__init__" +   "LinkPlayPlayer" is not assignable to "LinkPlayBridge" (reportArgumentType) + /homeassistant/components/linkplay/select.py:92:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LinkPlaySelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/linkplay/select.py:92:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "LinkPlaySelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/linkplay/select.py:93:42 - error: Cannot access attribute "device" for class "LinkPlayPlayer" +   Attribute "device" is unknown (reportAttributeAccessIssue) + /homeassistant/components/linkplay/select.py:100:17 - error: Argument of type "LinkPlayBridge" cannot be assigned to parameter of type "LinkPlayPlayer" +   "LinkPlayBridge" is not assignable to "LinkPlayPlayer" (reportArgumentType) + /homeassistant/components/linkplay/select.py:110:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/linkplay/select.py:112:53 - error: Argument of type "LinkPlayBridge" cannot be assigned to parameter of type "LinkPlayPlayer" +   "LinkPlayBridge" is not assignable to "LinkPlayPlayer" (reportArgumentType) +/homeassistant/components/linode/__init__.py + /homeassistant/components/linode/__init__.py:49:19 - error: "errors" is not a known attribute of module "linode" (reportAttributeAccessIssue) +/homeassistant/components/linode/switch.py + /homeassistant/components/linode/switch.py:73:22 - error: "status" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/linode/switch.py:74:23 - error: "boot" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/linode/switch.py:78:22 - error: "status" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/linode/switch.py:79:23 - error: "shutdown" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/linux_battery/sensor.py + /homeassistant/components/linux_battery/sensor.py:8:6 - error: Import "batinfo" could not be resolved (reportMissingImports) + /homeassistant/components/linux_battery/sensor.py:100:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/litejet/scene.py + /homeassistant/components/litejet/scene.py:71:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/litejet/switch.py + /homeassistant/components/litejet/switch.py:86:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/litterrobot/binary_sensor.py + /homeassistant/components/litterrobot/binary_sensor.py:90:7 - error: Base classes for class "LitterRobotBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/litterrobot/binary_sensor.py:95:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "RobotBinarySensorEntityDescription[_WhiskerEntityT@LitterRobotBinarySensorEntity]" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/litterrobot/binary_sensor.py:98:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/litterrobot/button.py + /homeassistant/components/litterrobot/button.py:65:7 - error: Base classes for class "LitterRobotButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/litterrobot/button.py:68:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "RobotButtonEntityDescription[_WhiskerEntityT@LitterRobotButtonEntity]" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/litterrobot/entity.py + /homeassistant/components/litterrobot/entity.py:8:31 - error: "EVENT_UPDATE" is not exported from module "pylitterbot.robot" +   Import from "pylitterbot.event" instead (reportPrivateImportUsage) +/homeassistant/components/litterrobot/select.py + /homeassistant/components/litterrobot/select.py:124:7 - error: Base classes for class "LitterRobotSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/litterrobot/select.py:131:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "RobotSelectEntityDescription[_WhiskerEntityT@LitterRobotSelectEntity, _CastTypeT@LitterRobotSelectEntity]" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/litterrobot/select.py:145:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/litterrobot/sensor.py + /homeassistant/components/litterrobot/sensor.py:248:7 - error: Base classes for class "LitterRobotSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/litterrobot/sensor.py:251:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RobotSensorEntityDescription[_WhiskerEntityT@LitterRobotSensorEntity]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/litterrobot/sensor.py:254:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/litterrobot/sensor.py:259:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/litterrobot/sensor.py:266:9 - error: "last_reset" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/litterrobot/switch.py + /homeassistant/components/litterrobot/switch.py:128:7 - error: Base classes for class "RobotSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/litterrobot/switch.py:131:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "RobotSwitchEntityDescription[_WhiskerEntityT@RobotSwitchEntity]" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/litterrobot/switch.py:134:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/litterrobot/time.py + /homeassistant/components/litterrobot/time.py:67:7 - error: Base classes for class "LitterRobotTimeEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/litterrobot/time.py:70:5 - error: "entity_description" overrides symbol of same name in class "TimeEntity" +   Variable is mutable so its type is invariant +     Override type "RobotTimeEntityDescription[_WhiskerEntityT@LitterRobotTimeEntity]" is not the same as base type "TimeEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/litterrobot/time.py:73:9 - error: "native_value" overrides symbol of same name in class "TimeEntity" +   "property" is not assignable to "cached_property[time | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/litterrobot/update.py + /homeassistant/components/litterrobot/update.py:49:7 - error: Base classes for class "RobotUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/litterrobot/update.py:58:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/litterrobot/update.py:63:9 - error: "in_progress" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/litterrobot/update.py:68:9 - error: "should_poll" overrides symbol of same name in class "BaseCoordinatorEntity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/litterrobot/update.py:68:9 - error: "should_poll" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/litterrobot/vacuum.py + /homeassistant/components/litterrobot/vacuum.py:71:7 - error: Base classes for class "LitterRobotCleaner" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/litterrobot/vacuum.py:79:9 - error: "activity" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[VacuumActivity | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/livisi/binary_sensor.py + /homeassistant/components/livisi/binary_sensor.py:50:7 - error: Base classes for class "LivisiBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/livisi/climate.py + /homeassistant/components/livisi/climate.py:62:7 - error: Base classes for class "LivisiClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/livisi/climate.py:93:13 - error: Argument of type "Any | None" cannot be assigned to parameter "target_temperature" of type "float" in function "async_vrcc_set_temperature" +   Type "Any | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportArgumentType) +/homeassistant/components/livisi/config_flow.py + /homeassistant/components/livisi/config_flow.py:25:38 - error: Cannot assign to attribute "aio_livisi" for class "LivisiFlowHandler*" +   "None" is not assignable to "AioLivisi" (reportAttributeAccessIssue) +/homeassistant/components/livisi/coordinator.py + /homeassistant/components/livisi/coordinator.py:98:36 - error: Type "dict[str, Any] | None" is not assignable to declared type "dict[str, Any]" +   Type "dict[str, Any] | None" is not assignable to type "dict[str, Any]" +     "None" is not assignable to "dict[str, Any]" (reportAssignmentType) + /homeassistant/components/livisi/coordinator.py:107:42 - error: Type "dict[str, Any]" is not assignable to declared type "list[dict[str, Any]]" +   "dict[str, Any]" is not assignable to "list[dict[str, Any]]" (reportAssignmentType) +/homeassistant/components/livisi/switch.py + /homeassistant/components/livisi/switch.py:49:7 - error: Base classes for class "LivisiSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/local_calendar/calendar.py + /homeassistant/components/local_calendar/calendar.py:220:12 - error: Operator "-" not supported for types "datetime | date" and "date | datetime" +   Operator "-" not supported for types "datetime" and "date" (reportOperatorIssue) +/homeassistant/components/local_file/camera.py + /homeassistant/components/local_file/camera.py:90:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/locative/device_tracker.py + /homeassistant/components/locative/device_tracker.py:46:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/locative/device_tracker.py:58:9 - error: Object of type "None" cannot be called (reportOptionalCall) +/homeassistant/components/lock/__init__.py + /homeassistant/components/lock/__init__.py:116:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LockEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lock/__init__.py:125:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) + /homeassistant/components/lock/__init__.py:126:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LockEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/lock/__init__.py:247:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lock/__init__.py:257:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/lock/device_action.py + /homeassistant/components/lock/device_action.py:89:17 - error: "service" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/lock/reproduce_state.py + /homeassistant/components/lock/reproduce_state.py:64:17 - error: "service" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/logbook/processor.py + /homeassistant/components/logbook/processor.py:257:38 - error: Argument of type "EventType[Any] | str | Any | None" cannot be assigned to parameter "key" of type "EventType[Any] | str" in function "__getitem__" +   Type "EventType[Any] | str | Any | None" is not assignable to type "EventType[Any] | str" +     Type "None" is not assignable to type "EventType[Any] | str" +       "None" is not assignable to "EventType[Any]" +       "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/logbook/processor.py:365:34 - error: Argument of type "Any | EventType[Any] | str | None" cannot be assigned to parameter "key" of type "EventType[Any] | str" in function "__getitem__" +   Type "Any | EventType[Any] | str | None" is not assignable to type "EventType[Any] | str" +     Type "None" is not assignable to type "EventType[Any] | str" +       "None" is not assignable to "EventType[Any]" +       "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/london_air/sensor.py + /homeassistant/components/london_air/sensor.py:117:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/london_air/sensor.py:122:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/london_air/sensor.py:132:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/london_air/sensor.py:137:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/london_underground/config_flow.py + /homeassistant/components/london_underground/config_flow.py:36:9 - error: Method "async_get_options_flow" overrides class "ConfigFlow" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "config_entry", override parameter is named "_" (reportIncompatibleMethodOverride) +/homeassistant/components/london_underground/sensor.py + /homeassistant/components/london_underground/sensor.py:95:7 - error: Base classes for class "LondonTubeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/london_underground/sensor.py:117:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/london_underground/sensor.py:122:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/london_underground/sensor.py:127:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lookin/__init__.py + /homeassistant/components/lookin/__init__.py:81:78 - error: Argument of type "None" cannot be assigned to parameter "device_id" of type "str" in function "start_lookin_udp" +   "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/lookin/__init__.py:82:20 - error: Type "LookinUDPSubscriptions | None" is not assignable to return type "LookinUDPSubscriptions" +   Type "LookinUDPSubscriptions | None" is not assignable to type "LookinUDPSubscriptions" +     "None" is not assignable to "LookinUDPSubscriptions" (reportReturnType) + /homeassistant/components/lookin/__init__.py:156:30 - error: "meteo_coordinator" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/lookin/__init__.py:157:33 - error: Argument of type "str | None" cannot be assigned to parameter "value" of type "str" in function "update_from_value" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/lookin/__init__.py:158:9 - error: "meteo_coordinator" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/lookin/__init__.py:178:27 - error: "meteo_coordinator" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/lookin/climate.py + /homeassistant/components/lookin/climate.py:91:7 - error: Base classes for class "ConditionerEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lookin/climate.py:103:5 - error: "_attr_fan_modes" overrides symbol of same name in class "ClimateEntity" +   Variable is mutable so its type is invariant +     Override type "list[str]" is not the same as base type "list[str] | None" (reportIncompatibleVariableOverride) + /homeassistant/components/lookin/climate.py:104:5 - error: "_attr_swing_modes" overrides symbol of same name in class "ClimateEntity" +   Variable is mutable so its type is invariant +     Override type "list[str]" is not the same as base type "list[str] | None" (reportIncompatibleVariableOverride) + /homeassistant/components/lookin/climate.py:183:18 - error: Argument of type "str | None" cannot be assigned to parameter "uuid" of type "str" in function "update_conditioner" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/lookin/climate.py:204:52 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/lookin/climate.py:205:49 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/lookin/climate.py:217:42 - error: Argument of type "str | None" cannot be assigned to parameter "status" of type "str" in function "update_from_status" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/lookin/entity.py + /homeassistant/components/lookin/entity.py:161:34 - error: Argument of type "str | None" cannot be assigned to parameter "status" of type "str" in function "_update_from_status" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/lookin/entity.py:175:34 - error: Argument of type "str | None" cannot be assigned to parameter "status" of type "str" in function "_update_from_status" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/lookin/light.py + /homeassistant/components/lookin/light.py:47:7 - error: Base classes for class "LookinLightEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/lookin/media_player.py + /homeassistant/components/lookin/media_player.py:71:7 - error: Base classes for class "LookinMedia" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lookin/media_player.py:93:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lookin/sensor.py + /homeassistant/components/lookin/sensor.py:58:7 - error: Base classes for class "LookinSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/loqed/lock.py + /homeassistant/components/loqed/lock.py:29:7 - error: Base classes for class "LoqedLock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/loqed/lock.py:42:9 - error: "changed_by" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/loqed/lock.py:47:9 - error: "is_locking" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/loqed/lock.py:52:9 - error: "is_unlocking" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/loqed/lock.py:57:9 - error: "is_jammed" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/loqed/lock.py:62:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/loqed/sensor.py + /homeassistant/components/loqed/sensor.py:53:7 - error: Base classes for class "LoqedSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/loqed/sensor.py:67:16 - error: Type "Lock" is not assignable to return type "StatusMessage" +   "Lock" is not assignable to "StatusMessage" (reportReturnType) + /homeassistant/components/loqed/sensor.py:70:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/lovelace/resources.py + /homeassistant/components/lovelace/resources.py:153:15 - error: Method "ws_list_item" overrides class "StorageCollectionWebsocket" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 mismatch: base parameter "self" is keyword parameter, override parameter is position-only +   Parameter 2 mismatch: base parameter "hass" is keyword parameter, override parameter is position-only +   Parameter 3 mismatch: base parameter "connection" is keyword parameter, override parameter is position-only +   Parameter 4 mismatch: base parameter "msg" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) +/homeassistant/components/lovelace/websocket.py + /homeassistant/components/lovelace/websocket.py:61:43 - error: "result" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/luci/device_tracker.py + /homeassistant/components/luci/device_tracker.py:7:6 - error: Import "openwrt_luci_rpc" could not be resolved (reportMissingImports) +/homeassistant/components/luftdaten/sensor.py + /homeassistant/components/luftdaten/sensor.py:91:7 - error: Base classes for class "SensorCommunitySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/luftdaten/sensor.py:131:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/lunatone/__init__.py + /homeassistant/components/lunatone/__init__.py:45:34 - error: "device" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/lunatone/__init__.py:50:30 - error: "device" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/lunatone/__init__.py:50:67 - error: "device" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/lunatone/light.py + /homeassistant/components/lunatone/light.py:73:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lunatone/light.py:84:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/lunatone/light.py:89:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lunatone/light.py:94:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lunatone/light.py:101:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lunatone/light.py:108:9 - error: "supported_color_modes" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[set[ColorMode] | set[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lupusec/alarm_control_panel.py + /homeassistant/components/lupusec/alarm_control_panel.py:49:52 - error: "devices" is not a known attribute of module "lupupy" (reportAttributeAccessIssue) + /homeassistant/components/lupusec/alarm_control_panel.py:62:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lupusec/binary_sensor.py + /homeassistant/components/lupusec/binary_sensor.py:51:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lupusec/binary_sensor.py:56:9 - error: "device_class" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lupusec/binary_sensor.py:56:9 - error: "device_class" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[BinarySensorDeviceClass | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lupusec/entity.py + /homeassistant/components/lupusec/entity.py:16:39 - error: "devices" is not a known attribute of module "lupupy" (reportAttributeAccessIssue) + /homeassistant/components/lupusec/entity.py:29:39 - error: "devices" is not a known attribute of module "lupupy" (reportAttributeAccessIssue) + /homeassistant/components/lupusec/entity.py:44:16 - error: Type "str | None" is not assignable to return type "str" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportReturnType) +/homeassistant/components/lupusec/switch.py + /homeassistant/components/lupusec/switch.py:54:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lutron/__init__.py + /homeassistant/components/lutron/__init__.py:127:74 - error: Argument of type "tuple[Unknown, Unknown, Unknown, Unknown | None]" cannot be assigned to parameter "object" of type "tuple[str, Keypad, Button, Led]" in function "append" +   Type "Unknown | None" is not assignable to type "Led" +     "None" is not assignable to "Led" (reportArgumentType) +/homeassistant/components/lutron/binary_sensor.py + /homeassistant/components/lutron/binary_sensor.py:41:7 - error: Base classes for class "LutronOccupancySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lutron/binary_sensor.py:53:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lutron/config_flow.py + /homeassistant/components/lutron/config_flow.py:62:48 - error: "guid" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/lutron/cover.py + /homeassistant/components/lutron/cover.py:45:7 - error: Base classes for class "LutronCover" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lutron/cover.py:82:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lutron/entity.py + /homeassistant/components/lutron/entity.py:44:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lutron/entity.py:92:13 - error: Could not access item in TypedDict +   "identifiers" is not a required key in "DeviceInfo", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/lutron/event.py + /homeassistant/components/lutron/event.py:46:7 - error: Base classes for class "LutronEventEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lutron/event.py:77:60 - error: Argument of type "(button: Button, _context: None, event: LutronEvent, _params: dict[Unknown, Unknown]) -> None" cannot be assigned to parameter "handler" of type "LutronEventHandler" in function "subscribe" +   Type "(button: Button, _context: None, event: LutronEvent, _params: dict[Unknown, Unknown]) -> None" is not assignable to type "LutronEventHandler" +     Parameter 1: type "LutronEntity" is incompatible with type "Button" +       "LutronEntity" is not assignable to "Button" (reportArgumentType) +/homeassistant/components/lutron/fan.py + /homeassistant/components/lutron/fan.py:37:7 - error: Base classes for class "LutronFan" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/lutron/light.py + /homeassistant/components/lutron/light.py:58:7 - error: Base classes for class "LutronLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lutron/light.py:106:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lutron/scene.py + /homeassistant/components/lutron/scene.py:35:7 - error: Base classes for class "LutronScene" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/lutron/switch.py + /homeassistant/components/lutron/switch.py:42:7 - error: Base classes for class "LutronSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lutron/switch.py:57:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lutron/switch.py:70:7 - error: Base classes for class "LutronLed" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lutron/switch.py:90:37 - error: Cannot assign to attribute "state" for class "Led" +   "Literal[1]" is not assignable to "bool" (reportAttributeAccessIssue) + /homeassistant/components/lutron/switch.py:94:37 - error: Cannot assign to attribute "state" for class "Led" +   "Literal[0]" is not assignable to "bool" (reportAttributeAccessIssue) + /homeassistant/components/lutron/switch.py:97:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lutron_caseta/binary_sensor.py + /homeassistant/components/lutron_caseta/binary_sensor.py:64:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/binary_sensor.py:81:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/binary_sensor.py:86:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lutron_caseta/button.py + /homeassistant/components/lutron_caseta/button.py:68:7 - error: Base classes for class "LutronCasetaButton" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/button.py:68:7 - error: Base classes for class "LutronCasetaButton" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/lutron_caseta/cover.py + /homeassistant/components/lutron_caseta/cover.py:29:7 - error: Base classes for class "LutronCasetaShade" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/cover.py:29:7 - error: Base classes for class "LutronCasetaShade" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/cover.py:43:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/cover.py:48:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/cover.py:104:7 - error: Base classes for class "LutronCasetaTiltOnlyBlind" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/cover.py:104:7 - error: Base classes for class "LutronCasetaTiltOnlyBlind" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/cover.py:116:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/cover.py:121:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lutron_caseta/entity.py + /homeassistant/components/lutron_caseta/entity.py:91:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/entity.py:96:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lutron_caseta/fan.py + /homeassistant/components/lutron_caseta/fan.py:44:7 - error: Base classes for class "LutronCasetaFan" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/fan.py:44:7 - error: Base classes for class "LutronCasetaFan" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/fan.py:55:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lutron_caseta/light.py + /homeassistant/components/lutron_caseta/light.py:84:7 - error: Base classes for class "LutronCasetaLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/light.py:84:7 - error: Base classes for class "LutronCasetaLight" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/light.py:140:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/light.py:169:29 - error: Argument of type "int | None" cannot be assigned to parameter "enabled" of type "bool" in function "set_warm_dim" +   Type "int | None" is not assignable to type "bool" +     "int" is not assignable to "bool" (reportArgumentType) + /homeassistant/components/lutron_caseta/light.py:185:36 - error: Argument of type "float" cannot be assigned to parameter "hue" of type "int" in function "__init__" +   "float" is not assignable to "int" (reportArgumentType) + /homeassistant/components/lutron_caseta/light.py:185:49 - error: Argument of type "float" cannot be assigned to parameter "saturation" of type "int" in function "__init__" +   "float" is not assignable to "int" (reportArgumentType) + /homeassistant/components/lutron_caseta/light.py:200:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/light.py:217:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/light.py:222:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lutron_caseta/logbook.py + /homeassistant/components/lutron_caseta/logbook.py:49:25 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) +/homeassistant/components/lutron_caseta/switch.py + /homeassistant/components/lutron_caseta/switch.py:31:7 - error: Base classes for class "LutronCasetaLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/switch.py:31:7 - error: Base classes for class "LutronCasetaLight" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lutron_caseta/switch.py:61:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lw12wifi/light.py + /homeassistant/components/lw12wifi/light.py:8:8 - error: Import "lw12" could not be resolved (reportMissingImports) + /homeassistant/components/lw12wifi/light.py:81:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lw12wifi/light.py:86:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lw12wifi/light.py:91:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lw12wifi/light.py:96:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lw12wifi/light.py:103:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lw12wifi/light.py:108:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lw12wifi/light.py:116:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/lyric/climate.py + /homeassistant/components/lyric/climate.py:161:7 - error: Base classes for class "LyricClimate" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/climate.py:161:7 - error: Base classes for class "LyricClimate" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/climate.py:161:7 - error: Base classes for class "LyricClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/climate.py:247:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ClimateEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/climate.py:250:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/climate.py:255:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/climate.py:263:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/climate.py:268:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/climate.py:281:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/climate.py:292:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/climate.py:303:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/climate.py:308:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/climate.py:316:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/climate.py:324:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lyric/entity.py + /homeassistant/components/lyric/entity.py:37:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/entity.py:56:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/lyric/sensor.py + /homeassistant/components/lyric/sensor.py:192:7 - error: Base classes for class "LyricSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/sensor.py:192:7 - error: Base classes for class "LyricSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/sensor.py:192:7 - error: Base classes for class "LyricSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/sensor.py:211:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LyricSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/sensor.py:211:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "LyricSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/sensor.py:219:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/sensor.py:224:7 - error: Base classes for class "LyricAccessorySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/sensor.py:224:7 - error: Base classes for class "LyricAccessorySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/sensor.py:224:7 - error: Base classes for class "LyricAccessorySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/sensor.py:247:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "LyricSensorAccessoryEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/sensor.py:247:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "LyricSensorAccessoryEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/lyric/sensor.py:255:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/madvr/binary_sensor.py + /homeassistant/components/madvr/binary_sensor.py:67:7 - error: Base classes for class "MadvrBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/madvr/binary_sensor.py:79:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "MadvrBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/madvr/binary_sensor.py:79:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "MadvrBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/madvr/binary_sensor.py:83:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/madvr/config_flow.py + /homeassistant/components/madvr/config_flow.py:8:25 - error: "HeartBeatError" is not exported from module "madvr.madvr" +   Import from "madvr.errors" instead (reportPrivateImportUsage) +/homeassistant/components/madvr/remote.py + /homeassistant/components/madvr/remote.py:33:7 - error: Base classes for class "MadvrRemote" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/madvr/remote.py:48:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/madvr/sensor.py + /homeassistant/components/madvr/sensor.py:263:7 - error: Base classes for class "MadvrSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/madvr/sensor.py:273:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "MadvrSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/madvr/sensor.py:273:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "MadvrSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/madvr/sensor.py:277:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/mailgun/notify.py + /homeassistant/components/mailgun/notify.py:36:36 - error: Argument missing for parameter "v" (reportCallIssue) + /homeassistant/components/mailgun/notify.py:36:76 - error: Argument missing for parameter "v" (reportCallIssue) +/homeassistant/components/manual/alarm_control_panel.py + /homeassistant/components/manual/alarm_control_panel.py:205:7 - error: Base classes for class "ManualAlarm" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/manual/alarm_control_panel.py:205:7 - error: Base classes for class "ManualAlarm" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/manual/alarm_control_panel.py:205:7 - error: Base classes for class "ManualAlarm" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/manual/alarm_control_panel.py:205:7 - error: Base classes for class "ManualAlarm" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/manual/alarm_control_panel.py:258:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/manual/alarm_control_panel.py:310:9 - error: "code_format" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[CodeFormat | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/manual/alarm_control_panel.py:432:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/manual_mqtt/alarm_control_panel.py + /homeassistant/components/manual_mqtt/alarm_control_panel.py:309:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/manual_mqtt/alarm_control_panel.py:321:24 - error: Type "Any | AlarmControlPanelState | str" is not assignable to return type "AlarmControlPanelState" +   Type "Any | AlarmControlPanelState | str" is not assignable to type "AlarmControlPanelState" +     "str" is not assignable to "AlarmControlPanelState" (reportReturnType) + /homeassistant/components/manual_mqtt/alarm_control_panel.py:328:16 - error: Type "str | Any | Literal[AlarmControlPanelState.TRIGGERED, AlarmControlPanelState.DISARMED, AlarmControlPanelState.ARMED_HOME, AlarmControlPanelState.ARMED_AWAY, AlarmControlPanelState.ARMED_NIGHT, AlarmControlPanelState.ARMED_VACATION, AlarmControlPanelState.ARMED_CUSTOM_BYPASS, AlarmControlPanelState.PENDING, AlarmControlPanelState.ARMING, AlarmControlPanelState.DISARMING]" is not assignable to return type "AlarmControlPanelState" +   Type "str | Any | Literal[AlarmControlPanelState.TRIGGERED, AlarmControlPanelState.DISARMED, AlarmControlPanelState.ARMED_HOME, AlarmControlPanelState.ARMED_AWAY, AlarmControlPanelState.ARMED_NIGHT, AlarmControlPanelState.ARMED_VACATION, AlarmControlPanelState.ARMED_CUSTOM_BYPASS, AlarmControlPanelState.PENDING, AlarmControlPanelState.ARMING, AlarmControlPanelState.DISARMING]" is not assignable to type "AlarmControlPanelState" +     "str" is not assignable to "AlarmControlPanelState" (reportReturnType) + /homeassistant/components/manual_mqtt/alarm_control_panel.py:349:9 - error: "code_format" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[CodeFormat | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/manual_mqtt/alarm_control_panel.py:446:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/mastodon/sensor.py + /homeassistant/components/mastodon/sensor.py:73:7 - error: Base classes for class "MastodonSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mastodon/sensor.py:76:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "MastodonSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/mastodon/sensor.py:79:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/mastodon/services.py + /homeassistant/components/mastodon/services.py:146:42 - error: Argument of type "MaybeSnowflakeIdType | None" cannot be assigned to parameter "media_ids" of type "List[IdType | MediaAttachment] | None" in function "status_post" +   Type "MaybeSnowflakeIdType | None" is not assignable to type "List[IdType | MediaAttachment] | None" +     Type "MaybeSnowflakeIdType" is not assignable to type "List[IdType | MediaAttachment] | None" +       "MaybeSnowflakeIdType" is not assignable to "List[IdType | MediaAttachment]" +       "MaybeSnowflakeIdType" is not assignable to "None" (reportArgumentType) +/homeassistant/components/matrix/__init__.py + /homeassistant/components/matrix/__init__.py:208:44 - error: Argument of type "tuple[type[ReactionEvent], type[RoomMessageText]]" cannot be assigned to parameter "filter" of type "type[Event] | Tuple[type[Event], None]" in function "add_event_callback" +   Type "tuple[type[ReactionEvent], type[RoomMessageText]]" is not assignable to type "type[Event] | Tuple[type[Event], None]" +     Type "tuple[type[ReactionEvent], type[RoomMessageText]]" is not assignable to type "type[Event]" +     "tuple[type[ReactionEvent], type[RoomMessageText]]" is not assignable to "Tuple[type[Event], None]" +       Tuple entry 2 is incorrect type +         Type is not assignable to "None" (reportArgumentType) + /homeassistant/components/matrix/__init__.py:232:32 - error: Could not access item in TypedDict +   "rooms" is not a required key in "ConfigCommand", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/matrix/__init__.py:236:32 - error: Could not access item in TypedDict +   "rooms" is not a required key in "ConfigCommand", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/matrix/__init__.py:240:32 - error: Could not access item in TypedDict +   "rooms" is not a required key in "ConfigCommand", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/matrix/__init__.py:259:72 - error: Argument of type "str" cannot be assigned to parameter "key" of type "ReactionCommand" in function "get" +   "str" is not assignable to "ReactionCommand" (reportArgumentType) + /homeassistant/components/matrix/__init__.py:294:21 - error: Could not access item in TypedDict +   "expression" is not a required key in "ConfigCommand", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/matrix/__init__.py:348:35 - error: "room_id" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/matrix/__init__.py:422:27 - error: Argument of type "str | None" cannot be assigned to parameter "device_id" of type "str" in function "restore_login" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/matrix/__init__.py:423:30 - error: Argument of type "dict[str, JsonValueType] | list[JsonValueType] | str | int | float | bool" cannot be assigned to parameter "access_token" of type "str" in function "restore_login" +   Type "dict[str, JsonValueType] | list[JsonValueType] | str | int | float | bool" is not assignable to type "str" +     "float" is not assignable to "str" (reportArgumentType) + /homeassistant/components/matrix/__init__.py:516:30 - error: Argument of type "str | None" cannot be assigned to parameter "content_type" of type "str" in function "upload" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/matter/binary_sensor.py + /homeassistant/components/matter/binary_sensor.py:48:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "MatterBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/matter/button.py + /homeassistant/components/matter/button.py:46:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "MatterButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/matter/climate.py + /homeassistant/components/matter/climate.py:311:26 - error: "_attr_hvac_mode" overrides symbol of same name in class "ClimateEntity" +   Variable is mutable so its type is invariant +     Override type "HVACMode" is not the same as base type "HVACMode | None" (reportIncompatibleVariableOverride) +/homeassistant/components/matter/cover.py + /homeassistant/components/matter/cover.py:73:5 - error: "entity_description" overrides symbol of same name in class "CoverEntity" +   Variable is mutable so its type is invariant +     Override type "MatterCoverEntityDescription" is not the same as base type "CoverEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/matter/cover.py:76:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/matter/discovery.py + /homeassistant/components/matter/discovery.py:140:25 - error: Argument of type "classproperty" cannot be assigned to parameter "cluster" of type "type[_CLUSTER_T@get_attribute_value] | int | None" in function "get_attribute_value" +   Type "classproperty" is not assignable to type "type[_CLUSTER_T@get_attribute_value] | int | None" +     Type "classproperty" is not assignable to type "type[_CLUSTER_T@get_attribute_value]" +     "classproperty" is not assignable to "int" +     "classproperty" is not assignable to "None" (reportArgumentType) +/homeassistant/components/matter/entity.py + /homeassistant/components/matter/entity.py:142:25 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/matter/entity.py:142:50 - error: Argument of type "uint | None" cannot be assigned to parameter "key" of type "int" in function "get" +   Type "uint | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/matter/entity.py:208:32 - error: Argument of type "classproperty" cannot be assigned to parameter "cluster_id" of type "int | None" in function "create_attribute_path" +   Type "classproperty" is not assignable to type "int | None" +     "classproperty" is not assignable to "int" +     "classproperty" is not assignable to "None" (reportArgumentType) + /homeassistant/components/matter/entity.py:275:41 - error: Argument of type "classproperty" cannot be assigned to parameter "cluster_id" of type "int | None" in function "create_attribute_path" +   Type "classproperty" is not assignable to type "int | None" +     "classproperty" is not assignable to "int" +     "classproperty" is not assignable to "None" (reportArgumentType) + /homeassistant/components/matter/entity.py:275:63 - error: Argument of type "classproperty" cannot be assigned to parameter "attribute_id" of type "int | None" in function "create_attribute_path" +   Type "classproperty" is not assignable to type "int | None" +     "classproperty" is not assignable to "int" +     "classproperty" is not assignable to "None" (reportArgumentType) +/homeassistant/components/matter/light.py + /homeassistant/components/matter/light.py:97:5 - error: "entity_description" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "MatterLightEntityDescription" is not the same as base type "LightEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/matter/light.py:271:17 - error: Argument of type "Nullable | uint" cannot be assigned to parameter "number" of type "float" in function "renormalize" +   Type "Nullable | uint" is not assignable to type "float" +     "Nullable" is not assignable to "float" (reportArgumentType) +/homeassistant/components/matter/lock.py + /homeassistant/components/matter/lock.py:115:9 - error: "code_format" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/matter/number.py + /homeassistant/components/matter/number.py:76:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "MatterNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/matter/number.py:97:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "MatterRangeNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/matter/number.py:138:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "MatterNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/matter/select.py + /homeassistant/components/matter/select.py:74:5 - error: "device_to_ha" overrides a field of the same name but is missing a default value (reportGeneralTypeIssues) + /homeassistant/components/matter/select.py:75:5 - error: "ha_to_device" overrides a field of the same name but is missing a default value (reportGeneralTypeIssues) + /homeassistant/components/matter/select.py:96:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "MatterSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/matter/select.py:121:5 - error: "entity_description" overrides symbol of same name in class "MatterAttributeSelectEntity" +   Variable is mutable so its type is invariant +     Override type "MatterMapSelectEntityDescription" is not the same as base type "MatterSelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/matter/select.py:146:34 - error: Type "None" is not assignable to declared type "SelectCluster" +   Type "None" is not assignable to type "SelectCluster" +     "None" is not assignable to "ModeSelect" +     "None" is not assignable to "OvenMode" +     "None" is not assignable to "LaundryWasherMode" +     "None" is not assignable to "RefrigeratorAndTemperatureControlledCabinetMode" +     "None" is not assignable to "RvcRunMode" +     "None" is not assignable to "RvcCleanMode" +     "None" is not assignable to "DishwasherMode" + ... (reportAssignmentType) + /homeassistant/components/matter/select.py:147:13 - error: Argument of type "classproperty" cannot be assigned to parameter "cluster" of type "type[_CLUSTER_T@get_cluster] | int" in function "get_cluster" +   Type "classproperty" is not assignable to type "type[_CLUSTER_T@get_cluster] | int" +     Type "classproperty" is not assignable to type "type[_CLUSTER_T@get_cluster]" +     "classproperty" is not assignable to "int" (reportArgumentType) + /homeassistant/components/matter/select.py:163:34 - error: Type "None" is not assignable to declared type "SelectCluster" +   Type "None" is not assignable to type "SelectCluster" +     "None" is not assignable to "ModeSelect" +     "None" is not assignable to "OvenMode" +     "None" is not assignable to "LaundryWasherMode" +     "None" is not assignable to "RefrigeratorAndTemperatureControlledCabinetMode" +     "None" is not assignable to "RvcRunMode" +     "None" is not assignable to "RvcCleanMode" +     "None" is not assignable to "DishwasherMode" + ... (reportAssignmentType) + /homeassistant/components/matter/select.py:164:13 - error: Argument of type "classproperty" cannot be assigned to parameter "cluster" of type "type[_CLUSTER_T@get_cluster] | int" in function "get_cluster" +   Type "classproperty" is not assignable to type "type[_CLUSTER_T@get_cluster] | int" +     Type "classproperty" is not assignable to type "type[_CLUSTER_T@get_cluster]" +     "classproperty" is not assignable to "int" (reportArgumentType) + /homeassistant/components/matter/select.py:177:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "MatterListSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/matter/sensor.py + /homeassistant/components/matter/sensor.py:232:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "MatterSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/matter/sensor.py:243:35 - error: Cannot assign to attribute "_attr_native_value" for class "MatterSensor*" +   Type "Nullable | float | None" is not assignable to type "StateType | date | datetime | Decimal" +     Type "Nullable" is not assignable to type "StateType | date | datetime | Decimal" +       "Nullable" is not assignable to "str" +       "Nullable" is not assignable to "int" +       "Nullable" is not assignable to "float" +       "Nullable" is not assignable to "None" +       "Nullable" is not assignable to "date" +       "Nullable" is not assignable to "datetime" + ... (reportAttributeAccessIssue) + /homeassistant/components/matter/sensor.py:249:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "MatterSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/matter/sensor.py:272:45 - error: Operator "/" not supported for types "Nullable | float" and "Nullable | float | None" +   Operator "/" not supported for types "Nullable" and "Nullable" +   Operator "/" not supported for types "Nullable" and "float" +   Operator "/" not supported for types "Nullable" and "None" +   Operator "/" not supported for types "float" and "Nullable" +   Operator "/" not supported for types "float" and "None" (reportOperatorIssue) + /homeassistant/components/matter/sensor.py:272:45 - error: Operator "*" not supported for types "Unknown | float" and "Nullable | float | None" +   Operator "*" not supported for types "float" and "Nullable" when expected type is "_SupportsRound2[float]" +   Operator "*" not supported for types "float" and "None" when expected type is "_SupportsRound2[float]" (reportOperatorIssue) + /homeassistant/components/matter/sensor.py:278:5 - error: "entity_description" overrides symbol of same name in class "MatterSensor" +   Variable is mutable so its type is invariant +     Override type "MatterOperationalStateSensorEntityDescription" is not the same as base type "MatterSensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/matter/sensor.py:316:5 - error: "entity_description" overrides symbol of same name in class "MatterSensor" +   Variable is mutable so its type is invariant +     Override type "MatterListSensorEntityDescription" is not the same as base type "MatterSensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/matter/switch.py + /homeassistant/components/matter/switch.py:152:19 - error: "send_value" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/matter/update.py + /homeassistant/components/matter/update.py:195:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/matter/vacuum.py + /homeassistant/components/matter/vacuum.py:76:5 - error: "entity_description" overrides symbol of same name in class "StateVacuumEntity" +   Variable is mutable so its type is invariant +     Override type "MatterStateVacuumEntityDescription" is not the same as base type "StateVacuumEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/matter/valve.py + /homeassistant/components/matter/valve.py:48:5 - error: "entity_description" overrides symbol of same name in class "ValveEntity" +   Variable is mutable so its type is invariant +     Override type "MatterValveEntityDescription" is not the same as base type "ValveEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/matter/water_heater.py + /homeassistant/components/matter/water_heater.py:129:13 - error: Type "WaterHeaterBoostInfoStruct" is not assignable to declared type "type[WaterHeaterBoostInfoStruct]" +   Type "WaterHeaterBoostInfoStruct" is not assignable to type "type[WaterHeaterBoostInfoStruct]" (reportAssignmentType) + /homeassistant/components/matter/water_heater.py:177:18 - error: "_attr_current_operation" overrides symbol of same name in class "WaterHeaterEntity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/maxcube/binary_sensor.py + /homeassistant/components/maxcube/binary_sensor.py:64:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/maxcube/binary_sensor.py:82:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/maxcube/climate.py + /homeassistant/components/maxcube/climate.py:96:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/maxcube/climate.py:104:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/maxcube/climate.py:109:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/maxcube/climate.py:114:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/maxcube/climate.py:156:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/maxcube/climate.py:179:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/maxcube/climate.py:195:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/maxcube/climate.py:228:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/mcp/config_flow.py + /homeassistant/components/mcp/config_flow.py:152:5 - error: "logger" incorrectly overrides property of same name in class "AbstractOAuth2FlowHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/mcp/config_flow.py:152:14 - error: Type "Logger" is not assignable to declared type "property" +   "Logger" is not assignable to "property" (reportAssignmentType) +/homeassistant/components/mcp_server/http.py + /homeassistant/components/mcp_server/http.py:278:47 - error: "session_message" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/mcp_server/http.py:280:18 - error: "session_message" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/mealie/calendar.py + /homeassistant/components/mealie/calendar.py:48:7 - error: Base classes for class "MealieMealplanCalendarEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mealie/sensor.py + /homeassistant/components/mealie/sensor.py:72:7 - error: Base classes for class "MealieStatisticSensors" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mealie/sensor.py:85:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "MealieStatisticsSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/mealie/sensor.py:85:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "MealieStatisticsSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/mealie/sensor.py:89:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/mealie/todo.py + /homeassistant/components/mealie/todo.py:119:9 - error: "todo_items" overrides symbol of same name in class "TodoListEntity" +   "property" is not assignable to "cached_property[list[TodoItem] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mealie/todo.py:265:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/meater/sensor.py + /homeassistant/components/meater/sensor.py:190:7 - error: Base classes for class "MeaterProbeTemperature" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/meater/sensor.py:190:7 - error: Base classes for class "MeaterProbeTemperature" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/meater/sensor.py:190:7 - error: Base classes for class "MeaterProbeTemperature" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/meater/sensor.py:190:7 - error: Base classes for class "MeaterProbeTemperature" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/meater/sensor.py:190:7 - error: Base classes for class "MeaterProbeTemperature" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/meater/sensor.py:190:7 - error: Base classes for class "MeaterProbeTemperature" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/meater/sensor.py:190:7 - error: Base classes for class "MeaterProbeTemperature" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/meater/sensor.py:216:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "MeaterSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/meater/sensor.py:216:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "MeaterSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/meater/sensor.py:224:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/meater/sensor.py:229:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/medcom_ble/config_flow.py + /homeassistant/components/medcom_ble/config_flow.py:8:19 - error: "BleakError" is not exported from module "bleak" +   Import from "bleak.exc" instead (reportPrivateImportUsage) +/homeassistant/components/medcom_ble/coordinator.py + /homeassistant/components/medcom_ble/coordinator.py:8:19 - error: "BleakError" is not exported from module "bleak" +   Import from "bleak.exc" instead (reportPrivateImportUsage) + /homeassistant/components/medcom_ble/coordinator.py:46:50 - error: Argument of type "BLEDevice | None" cannot be assigned to parameter "ble_device" of type "BLEDevice" in function "update_device" +   Type "BLEDevice | None" is not assignable to type "BLEDevice" +     "None" is not assignable to "BLEDevice" (reportArgumentType) +/homeassistant/components/medcom_ble/sensor.py + /homeassistant/components/medcom_ble/sensor.py:59:7 - error: Base classes for class "MedcomSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/medcom_ble/sensor.py:94:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/medcom_ble/sensor.py:96:16 - error: Type "str | float | None" is not assignable to return type "float" +   Type "str | float | None" is not assignable to type "float" +     "str" is not assignable to "float" (reportReturnType) +/homeassistant/components/media_extractor/__init__.py + /homeassistant/components/media_extractor/__init__.py:61:17 - error: Argument of type "dict[str, bool | Logger | Any]" cannot be assigned to parameter "params" of type "_Params | None" in function "__init__" +   Type "dict[str, bool | Logger | Any]" is not assignable to type "_Params | None" +     "dict[str, bool | Logger | Any]" is not assignable to "_Params" +     "dict[str, bool | Logger | Any]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/media_extractor/__init__.py:186:25 - error: Argument of type "dict[str, Unknown]" cannot be assigned to parameter "params" of type "_Params | None" in function "__init__" +   Type "dict[str, Unknown]" is not assignable to type "_Params | None" +     "dict[str, Unknown]" is not assignable to "_Params" +     "dict[str, Unknown]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/media_extractor/__init__.py:215:20 - error: Could not access item in TypedDict +   "extractor" is not a defined key in "_InfoDict" (reportGeneralTypeIssues) + /homeassistant/components/media_extractor/__init__.py:216:52 - error: Argument of type "list[dict[str, Any]] | None" cannot be assigned to parameter "formats" of type "list[dict[str, Any]]" in function "get_best_stream_youtube" +   Type "list[dict[str, Any]] | None" is not assignable to type "list[dict[str, Any]]" +     "None" is not assignable to "list[dict[str, Any]]" (reportArgumentType) + /homeassistant/components/media_extractor/__init__.py:217:40 - error: Argument of type "list[dict[str, Any]] | None" cannot be assigned to parameter "formats" of type "list[dict[str, Any]]" in function "get_best_stream" +   Type "list[dict[str, Any]] | None" is not assignable to type "list[dict[str, Any]]" +     "None" is not assignable to "list[dict[str, Any]]" (reportArgumentType) + /homeassistant/components/media_extractor/__init__.py:218:30 - error: Could not access item in TypedDict +   "url" is not a required key in "_InfoDict", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/media_player/__init__.py + /homeassistant/components/media_player/__init__.py:553:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "MediaPlayerEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/media_player/__init__.py:558:5 - error: "_attr_device_class" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "MediaPlayerDeviceClass | None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/media_player/__init__.py:585:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "MediaPlayerState | None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) + /homeassistant/components/media_player/__init__.py:586:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "MediaPlayerEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/media_player/__init__.py:1024:57 - error: Cannot access attribute "toggle" for class "MediaPlayerEntity*" +   Attribute "toggle" is unknown (reportAttributeAccessIssue) + /homeassistant/components/media_player/__init__.py:1042:57 - error: Cannot access attribute "volume_up" for class "MediaPlayerEntity*" +   Attribute "volume_up" is unknown (reportAttributeAccessIssue) + /homeassistant/components/media_player/__init__.py:1060:57 - error: Cannot access attribute "volume_down" for class "MediaPlayerEntity*" +   Attribute "volume_down" is unknown (reportAttributeAccessIssue) + /homeassistant/components/media_player/__init__.py:1075:57 - error: Cannot access attribute "media_play_pause" for class "MediaPlayerEntity*" +   Attribute "media_play_pause" is unknown (reportAttributeAccessIssue) + /homeassistant/components/media_player/__init__.py:1084:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/media_player/__init__.py:1106:9 - error: "capability_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/media_player/__init__.py:1125:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/media_player/__init__.py:1214:24 - error: Could not access item in TypedDict +   "content" is not a required key in "_CacheImage", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/media_player/intent.py + /homeassistant/components/media_player/intent.py:254:34 - error: Argument missing for parameter "v" (reportCallIssue) + /homeassistant/components/media_player/intent.py:281:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/media_player/intent.py:281:19 - error: Type "dict[Required | Optional, ((value: Any) -> str) | In]" is not assignable to declared type "property" (reportAssignmentType) + /homeassistant/components/media_player/intent.py:408:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/media_player/intent.py:408:19 - error: Type "dict[Required | Optional, Any | ((value: Any) -> str)]" is not assignable to declared type "property" (reportAssignmentType) +/homeassistant/components/media_source/__init__.py + /homeassistant/components/media_source/__init__.py:51:68 - error: Function with declared return type "MediaSource" must return value on all code paths +   "None" is not assignable to "MediaSource" (reportReturnType) + /homeassistant/components/media_source/__init__.py:70:5 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/components/media_source/__init__.py:70:5 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[str, _S@__setitem__]" is not assignable to type "dict[str, MediaSource]" +     "dict[str, _S@__setitem__]" is not assignable to "dict[str, MediaSource]" +       Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "MediaSource" +       Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) +/homeassistant/components/mediaroom/media_player.py + /homeassistant/components/mediaroom/media_player.py:8:6 - error: Import "pymediaroom" could not be resolved (reportMissingImports) + /homeassistant/components/mediaroom/media_player.py:168:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/mediaroom/media_player.py:225:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mediaroom/media_player.py:230:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mediaroom/media_player.py:235:9 - error: "media_channel" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/melcloud/__init__.py + /homeassistant/components/melcloud/__init__.py:105:51 - error: Argument of type "set[tuple[Literal['mac'], Any | None]]" cannot be assigned to parameter "connections" of type "set[tuple[str, str]]" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/melcloud/climate.py + /homeassistant/components/melcloud/climate.py:83:63 - error: Type "list[AtaDeviceClimate]" is not assignable to declared type "list[AtaDeviceClimate | AtwDeviceZoneClimate]" (reportAssignmentType) + /homeassistant/components/melcloud/climate.py:84:38 - error: Argument of type "Device" cannot be assigned to parameter "ata_device" of type "AtaDevice" in function "__init__" +   "Device" is not assignable to "AtaDevice" (reportArgumentType) + /homeassistant/components/melcloud/climate.py:89:46 - error: Argument of type "Device" cannot be assigned to parameter "atw_device" of type "AtwDevice" in function "__init__" +   "Device" is not assignable to "AtwDevice" (reportArgumentType) + /homeassistant/components/melcloud/climate.py:91:43 - error: Cannot access attribute "zones" for class "Device" +   Attribute "zones" is unknown (reportAttributeAccessIssue) + /homeassistant/components/melcloud/climate.py:129:9 - error: "target_temperature_step" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:162:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:184:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:214:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:223:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:228:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:247:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:256:9 - error: "fan_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:262:12 - error: Operator "not in" not supported for types "str" and "List[str] | None" +   Operator "not in" not supported for types "str" and "None" (reportOperatorIssue) + /homeassistant/components/melcloud/climate.py:271:12 - error: Operator "not in" not supported for types "str" and "List[str] | None" +   Operator "not in" not supported for types "str" and "None" (reportOperatorIssue) + /homeassistant/components/melcloud/climate.py:279:9 - error: "swing_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:284:9 - error: "swing_horizontal_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:297:9 - error: "swing_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:302:9 - error: "swing_horizontal_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:315:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:324:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:352:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:361:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:383:13 - error: Argument of type "Literal[True]" cannot be assigned to parameter "value" of type "str" in function "__setitem__" +   "Literal[True]" is not assignable to "str" (reportArgumentType) + /homeassistant/components/melcloud/climate.py:387:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:392:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:396:48 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/melcloud/climate.py:399:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/climate.py:404:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/melcloud/config_flow.py + /homeassistant/components/melcloud/config_flow.py:50:25 - error: Argument of type "str | None" cannot be assigned to parameter "password" of type "str" in function "login" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/melcloud/sensor.py + /homeassistant/components/melcloud/sensor.py:136:43 - error: Cannot access attribute "zones" for class "Device" +   Attribute "zones" is unknown (reportAttributeAccessIssue) + /homeassistant/components/melcloud/sensor.py:157:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "MelcloudSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/sensor.py:163:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/melcloud/water_heater.py + /homeassistant/components/melcloud/water_heater.py:37:40 - error: Argument of type "Device" cannot be assigned to parameter "device" of type "AtwDevice" in function "__init__" +   "Device" is not assignable to "AtwDevice" (reportArgumentType) + /homeassistant/components/melcloud/water_heater.py:75:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/water_heater.py:80:9 - error: "temperature_unit" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/water_heater.py:85:9 - error: "current_operation" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/water_heater.py:90:9 - error: "operation_list" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/water_heater.py:95:9 - error: "current_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melcloud/water_heater.py:100:9 - error: "target_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/melissa/climate.py + /homeassistant/components/melissa/climate.py:83:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melissa/climate.py:90:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melissa/climate.py:97:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melissa/climate.py:104:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/melissa/climate.py:120:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/melnor/number.py + /homeassistant/components/melnor/number.py:86:7 - error: Base classes for class "MelnorZoneNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/melnor/number.py:89:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "MelnorZoneNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/melnor/number.py:102:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/melnor/sensor.py + /homeassistant/components/melnor/sensor.py:133:7 - error: Base classes for class "MelnorSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/melnor/sensor.py:148:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "MelnorSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/melnor/sensor.py:148:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "MelnorSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/melnor/sensor.py:151:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/melnor/sensor.py:156:7 - error: Base classes for class "MelnorZoneSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/melnor/sensor.py:159:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "MelnorZoneSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/melnor/sensor.py:171:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/melnor/switch.py + /homeassistant/components/melnor/switch.py:70:7 - error: Base classes for class "MelnorZoneSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/melnor/switch.py:73:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "MelnorSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/melnor/switch.py:85:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/melnor/time.py + /homeassistant/components/melnor/time.py:58:7 - error: Base classes for class "MelnorZoneTime" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/melnor/time.py:61:5 - error: "entity_description" overrides symbol of same name in class "TimeEntity" +   Variable is mutable so its type is invariant +     Override type "MelnorZoneTimeEntityDescription" is not the same as base type "TimeEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/melnor/time.py:73:9 - error: "native_value" overrides symbol of same name in class "TimeEntity" +   "property" is not assignable to "cached_property[time | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/message_bird/notify.py + /homeassistant/components/message_bird/notify.py:7:8 - error: Import "messagebird" could not be resolved (reportMissingImports) + /homeassistant/components/message_bird/notify.py:8:6 - error: Import "messagebird.client" could not be resolved (reportMissingImports) +/homeassistant/components/met/weather.py + /homeassistant/components/met/weather.py:144:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/met/weather.py:156:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/met/weather.py:163:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/met/weather.py:170:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/met/weather.py:177:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/met/weather.py:184:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/met/weather.py:191:9 - error: "native_wind_gust_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/met/weather.py:198:9 - error: "cloud_coverage" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/met/weather.py:205:9 - error: "native_dew_point" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/met/weather.py:212:9 - error: "uv_index" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/met_eireann/weather.py + /homeassistant/components/met_eireann/weather.py:110:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/met_eireann/weather.py:117:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/met_eireann/weather.py:122:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/met_eireann/weather.py:127:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/met_eireann/weather.py:132:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/met_eireann/weather.py:137:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/met_eireann/weather.py:142:9 - error: "native_wind_gust_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/met_eireann/weather.py:147:9 - error: "cloud_coverage" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/meteo_france/sensor.py + /homeassistant/components/meteo_france/sensor.py:229:7 - error: Base classes for class "MeteoFranceSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_france/sensor.py:244:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "MeteoFranceSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_france/sensor.py:244:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "MeteoFranceSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_france/sensor.py:246:42 - error: Cannot access attribute "position" for class "CurrentPhenomenons*" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/meteo_france/sensor.py:248:56 - error: Cannot access attribute "position" for class "CurrentPhenomenons*" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/meteo_france/sensor.py:248:91 - error: Cannot access attribute "position" for class "CurrentPhenomenons*" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/meteo_france/sensor.py:251:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_france/sensor.py:263:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_france/sensor.py:302:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_france/sensor.py:336:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/meteo_france/weather.py + /homeassistant/components/meteo_france/weather.py:89:7 - error: Base classes for class "MeteoFranceWeather" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_france/weather.py:122:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_france/weather.py:127:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_france/weather.py:132:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_france/weather.py:144:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_france/weather.py:151:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_france/weather.py:156:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_france/weather.py:161:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_france/weather.py:166:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_france/weather.py:171:9 - error: "native_wind_gust_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_france/weather.py:176:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/meteo_lt/weather.py + /homeassistant/components/meteo_lt/weather.py:40:7 - error: Base classes for class "MeteoLtWeatherEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_lt/weather.py:69:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_lt/weather.py:74:9 - error: "native_apparent_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_lt/weather.py:79:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_lt/weather.py:81:16 - error: Type "float" is not assignable to return type "int | None" +   Type "float" is not assignable to type "int | None" +     "float" is not assignable to "int" +     "float" is not assignable to "None" (reportReturnType) + /homeassistant/components/meteo_lt/weather.py:84:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_lt/weather.py:89:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_lt/weather.py:94:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_lt/weather.py:96:16 - error: Type "float" is not assignable to return type "int | None" +   Type "float" is not assignable to type "int | None" +     "float" is not assignable to "int" +     "float" is not assignable to "None" (reportReturnType) + /homeassistant/components/meteo_lt/weather.py:99:9 - error: "native_wind_gust_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_lt/weather.py:104:9 - error: "cloud_coverage" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteo_lt/weather.py:106:16 - error: Type "float" is not assignable to return type "int | None" +   Type "float" is not assignable to type "int | None" +     "float" is not assignable to "int" +     "float" is not assignable to "None" (reportReturnType) + /homeassistant/components/meteo_lt/weather.py:109:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/meteoalarm/binary_sensor.py + /homeassistant/components/meteoalarm/binary_sensor.py:8:6 - error: Import "meteoalertapi" could not be resolved (reportMissingImports) +/homeassistant/components/meteoclimatic/sensor.py + /homeassistant/components/meteoclimatic/sensor.py:128:7 - error: Base classes for class "MeteoclimaticSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/meteoclimatic/sensor.py:148:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteoclimatic/sensor.py:159:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/meteoclimatic/weather.py + /homeassistant/components/meteoclimatic/weather.py:37:7 - error: Base classes for class "MeteoclimaticWeather" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/meteoclimatic/weather.py:54:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteoclimatic/weather.py:59:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteoclimatic/weather.py:64:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteoclimatic/weather.py:75:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteoclimatic/weather.py:80:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteoclimatic/weather.py:85:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteoclimatic/weather.py:90:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteoclimatic/weather.py:95:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/meteoclimatic/weather.py:100:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/metoffice/sensor.py + /homeassistant/components/metoffice/sensor.py:222:7 - error: Base classes for class "MetOfficeCurrentSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/metoffice/sensor.py:241:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "MetOfficeSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/metoffice/sensor.py:241:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "MetOfficeSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/metoffice/sensor.py:249:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/metoffice/sensor.py:263:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/metoffice/sensor.py:277:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/metoffice/weather.py + /homeassistant/components/metoffice/weather.py:200:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/metoffice/weather.py:210:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/metoffice/weather.py:217:9 - error: "native_dew_point" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/metoffice/weather.py:224:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/metoffice/weather.py:231:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/metoffice/weather.py:238:9 - error: "uv_index" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/metoffice/weather.py:245:9 - error: "native_visibility" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/metoffice/weather.py:252:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/metoffice/weather.py:259:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/mfi/sensor.py + /homeassistant/components/mfi/sensor.py:77:58 - error: Argument of type "Any | None" cannot be assigned to parameter "use_tls" of type "bool" in function "__init__" +   Type "Any | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /homeassistant/components/mfi/sensor.py:77:74 - error: Argument of type "Any | None" cannot be assigned to parameter "verify" of type "bool" in function "__init__" +   Type "Any | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /homeassistant/components/mfi/sensor.py:100:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mfi/sensor.py:105:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/mfi/sensor.py:119:9 - error: "device_class" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[SensorDeviceClass | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mfi/sensor.py:132:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/mfi/switch.py + /homeassistant/components/mfi/switch.py:65:74 - error: Argument of type "Any | None" cannot be assigned to parameter "verify" of type "bool" in function "__init__" +   Type "Any | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /homeassistant/components/mfi/switch.py:88:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mfi/switch.py:93:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mfi/switch.py:98:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/microbees/binary_sensor.py + /homeassistant/components/microbees/binary_sensor.py:56:7 - error: Base classes for class "MBBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/microbees/binary_sensor.py:73:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/microbees/binary_sensor.py:78:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/microbees/binary_sensor.py:80:16 - error: Type "float" is not assignable to return type "bool" +   "float" is not assignable to "bool" (reportReturnType) +/homeassistant/components/microbees/button.py + /homeassistant/components/microbees/button.py:34:7 - error: Base classes for class "MBButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/microbees/button.py:48:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/microbees/climate.py + /homeassistant/components/microbees/climate.py:58:7 - error: Base classes for class "MBClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/microbees/climate.py:86:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/microbees/climate.py:91:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/microbees/climate.py:98:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/microbees/climate.py:112:44 - error: Cannot assign to attribute "targetTemp" for class "InstanceData" +   Type "Any | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportAttributeAccessIssue) +/homeassistant/components/microbees/cover.py + /homeassistant/components/microbees/cover.py:53:7 - error: Base classes for class "MBCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/microbees/cover.py:69:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/microbees/light.py + /homeassistant/components/microbees/light.py:33:7 - error: Base classes for class "MBLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/microbees/light.py:46:33 - error: Cannot assign to attribute "_attr_rgbw_color" for class "MBLight*" +   Type "List[int]" is not assignable to type "tuple[int, int, int, int] | None" +     "List[int]" is not assignable to "tuple[int, int, int, int]" +     "List[int]" is not assignable to "None" (reportAttributeAccessIssue) + /homeassistant/components/microbees/light.py:49:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/microbees/light.py:54:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/microbees/light.py:56:16 - error: Type "int" is not assignable to return type "bool" +   "int" is not assignable to "bool" (reportReturnType) +/homeassistant/components/microbees/sensor.py + /homeassistant/components/microbees/sensor.py:81:7 - error: Base classes for class "MBSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/microbees/sensor.py:98:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/microbees/sensor.py:103:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/microbees/switch.py + /homeassistant/components/microbees/switch.py:35:7 - error: Base classes for class "MBSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/microbees/switch.py:49:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/microbees/switch.py:54:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/microbees/switch.py:56:16 - error: Type "int" is not assignable to return type "bool" +   "int" is not assignable to "bool" (reportReturnType) +/homeassistant/components/microsoft_face/__init__.py + /homeassistant/components/microsoft_face/__init__.py:235:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/microsoft_face/__init__.py:240:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/miele/binary_sensor.py + /homeassistant/components/miele/binary_sensor.py:287:7 - error: Base classes for class "MieleBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/miele/binary_sensor.py:290:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "MieleBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/binary_sensor.py:293:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/miele/button.py + /homeassistant/components/miele/button.py:137:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "MieleButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/button.py:140:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/miele/climate.py + /homeassistant/components/miele/climate.py:168:7 - error: Base classes for class "MieleClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/miele/climate.py:171:5 - error: "entity_description" overrides symbol of same name in class "ClimateEntity" +   Variable is mutable so its type is invariant +     Override type "MieleClimateDescription" is not the same as base type "ClimateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/climate.py:180:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/climate.py:220:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/climate.py:226:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/climate.py:236:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/miele/const.py + /homeassistant/components/miele/const.py:174:19 - error: Argument of type "Literal[256]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[256]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:174:19 - error: Argument of type "Literal[65535]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[65535]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:175:16 - error: Argument of type "Literal[259]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[259]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:189:23 - error: Argument of type "Literal[295]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[295]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:198:19 - error: Argument of type "Literal[512]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[512]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:198:19 - error: Argument of type "Literal[535]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[535]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:198:19 - error: Argument of type "Literal[536]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[536]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:198:19 - error: Argument of type "Literal[537]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[537]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:198:19 - error: Argument of type "Literal[65535]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[65535]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:227:19 - error: Argument of type "Literal[256]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[256]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:227:19 - error: Argument of type "Literal[512]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[512]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:227:19 - error: Argument of type "Literal[535]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[535]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:227:19 - error: Argument of type "Literal[536]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[536]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:227:19 - error: Argument of type "Literal[537]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[537]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:227:19 - error: Argument of type "Literal[65535]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[65535]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:228:16 - error: Argument of type "Literal[259]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[259]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:234:20 - error: Argument of type "Literal[519]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[519]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:237:19 - error: Argument of type "Literal[521]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[521]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:238:16 - error: Argument of type "Literal[522]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[522]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:242:23 - error: Argument of type "Literal[295]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[295]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:242:23 - error: Argument of type "Literal[530]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[530]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:244:14 - error: Argument of type "Literal[514]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[514]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:270:19 - error: Argument of type "Literal[1792]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[1792]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:270:19 - error: Argument of type "Literal[65535]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[65535]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:272:20 - error: Argument of type "Literal[1801]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[1801]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:284:19 - error: Argument of type "Literal[65535]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[65535]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:295:19 - error: Argument of type "Literal[65535]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[65535]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:305:19 - error: Argument of type "Literal[65535]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[65535]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:315:19 - error: Argument of type "Literal[4352]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[4352]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:315:19 - error: Argument of type "Literal[65535]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[65535]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:320:18 - error: Argument of type "Literal[4404]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[4404]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:332:19 - error: Argument of type "Literal[65535]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[65535]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:345:14 - error: Argument of type "Literal[5904]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[5904]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:352:19 - error: Argument of type "Literal[65535]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[65535]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:363:19 - error: Argument of type "Literal[65535]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[65535]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:374:19 - error: Argument of type "Literal[65535]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[65535]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:376:23 - error: Argument of type "Literal[7938]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[7938]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:377:24 - error: Argument of type "Literal[7942]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[7942]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:389:19 - error: Argument of type "Literal[65535]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[65535]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:392:23 - error: Argument of type "Literal[7938]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[7938]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:392:23 - error: Argument of type "Literal[7942]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[7942]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:1404:26 - error: Argument of type "Literal[220]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[220]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:1423:24 - error: Argument of type "Literal[118]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[118]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/const.py:1423:24 - error: Argument of type "Literal[218]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[218]" is not assignable to "list[int]" (reportArgumentType) +/homeassistant/components/miele/fan.py + /homeassistant/components/miele/fan.py:88:7 - error: Base classes for class "MieleFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/miele/fan.py:101:14 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "FanEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/fan.py:119:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/fan.py:124:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/miele/light.py + /homeassistant/components/miele/light.py:108:7 - error: Base classes for class "MieleLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/miele/light.py:111:5 - error: "entity_description" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "MieleLightDescription" is not the same as base type "LightEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/light.py:116:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/miele/sensor.py + /homeassistant/components/miele/sensor.py:122:31 - error: "duration" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/miele/sensor.py:822:7 - error: Base classes for class "MieleSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/miele/sensor.py:825:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "MieleSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/sensor.py:839:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/sensor.py:844:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/sensor.py:854:7 - error: Base classes for class "MieleRestorableSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/miele/sensor.py:854:7 - error: Base classes for class "MieleRestorableSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/miele/sensor.py:854:7 - error: Base classes for class "MieleRestorableSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/miele/sensor.py:869:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/sensor.py:880:14 - error: "_attr_native_value" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "StateType | datetime" is not the same as base type "StateType | date | datetime | Decimal" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/sensor.py:968:9 - error: "options" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/sensor.py:994:9 - error: "options" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/miele/switch.py + /homeassistant/components/miele/switch.py:151:7 - error: Base classes for class "MieleSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/miele/switch.py:154:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "MieleSwitchDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/switch.py:185:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/switch.py:221:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/miele/vacuum.py + /homeassistant/components/miele/vacuum.py:83:14 - error: Argument of type "Literal[5904]" cannot be assigned to parameter "values" of type "list[int]" in function "__new__" +   "Literal[5904]" is not assignable to "list[int]" (reportArgumentType) + /homeassistant/components/miele/vacuum.py:163:5 - error: "entity_description" overrides symbol of same name in class "StateVacuumEntity" +   Variable is mutable so its type is invariant +     Override type "MieleVacuumDescription" is not the same as base type "StateVacuumEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/vacuum.py:169:9 - error: "activity" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[VacuumActivity | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/vacuum.py:176:9 - error: "fan_speed" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/miele/vacuum.py:181:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/mikrotik/coordinator.py + /homeassistant/components/mikrotik/coordinator.py:230:25 - error: "exceptions" is not a known attribute of module "librouteros" (reportAttributeAccessIssue) + /homeassistant/components/mikrotik/coordinator.py:239:28 - error: "exceptions" is not a known attribute of module "librouteros" (reportAttributeAccessIssue) + /homeassistant/components/mikrotik/coordinator.py:335:21 - error: "exceptions" is not a known attribute of module "librouteros" (reportAttributeAccessIssue) + /homeassistant/components/mikrotik/coordinator.py:345:12 - error: Type "type[Api]" is not assignable to return type "Api" +   Type "type[Api]" is not assignable to type "Api" (reportReturnType) +/homeassistant/components/mikrotik/device_tracker.py + /homeassistant/components/mikrotik/device_tracker.py:70:7 - error: Base classes for class "MikrotikDataUpdateCoordinatorTracker" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mikrotik/device_tracker.py:96:9 - error: "hostname" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mikrotik/device_tracker.py:101:9 - error: "mac_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mikrotik/device_tracker.py:106:9 - error: "ip_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mikrotik/device_tracker.py:111:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/mill/climate.py + /homeassistant/components/mill/climate.py:91:7 - error: Base classes for class "MillHeater" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mill/climate.py:117:53 - error: Cannot access attribute "set_heater_temp" for class "Mill" +   Attribute "set_heater_temp" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mill/climate.py:118:13 - error: Argument of type "str | None" cannot be assigned to parameter "device_id" of type "str" in function "set_heater_temp" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/mill/climate.py:125:57 - error: Cannot access attribute "heater_control" for class "Mill" +   Attribute "heater_control" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mill/climate.py:126:17 - error: Argument of type "str | None" cannot be assigned to parameter "device_id" of type "str" in function "heater_control" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/mill/climate.py:130:57 - error: Cannot access attribute "heater_control" for class "Mill" +   Attribute "heater_control" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mill/climate.py:131:17 - error: Argument of type "str | None" cannot be assigned to parameter "device_id" of type "str" in function "heater_control" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/mill/climate.py:136:9 - error: Method "_update_attr" overrides class "MillBaseEntity" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "MillDevice", override parameter is type "Heater" +     "MillDevice" is not assignable to "Heater" (reportIncompatibleMethodOverride) + /homeassistant/components/mill/climate.py:159:7 - error: Base classes for class "LocalMillHeater" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mill/climate.py:178:52 - error: Cannot access attribute "mac_address" for class "Mill" +   Attribute "mac_address" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mill/climate.py:182:73 - error: Cannot access attribute "url" for class "Mill" +   Attribute "url" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mill/climate.py:185:55 - error: Cannot access attribute "name" for class "Mill" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mill/climate.py:186:61 - error: Cannot access attribute "version" for class "Mill" +   Attribute "version" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mill/climate.py:195:53 - error: Cannot access attribute "set_target_temperature" for class "Mill" +   Attribute "set_target_temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mill/climate.py:203:57 - error: Cannot access attribute "set_operation_mode_control_individually" for class "Mill" +   Attribute "set_operation_mode_control_individually" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mill/climate.py:206:57 - error: Cannot access attribute "set_operation_mode_off" for class "Mill" +   Attribute "set_operation_mode_off" is unknown (reportAttributeAccessIssue) +/homeassistant/components/mill/entity.py + /homeassistant/components/mill/entity.py:33:35 - error: Argument of type "set[tuple[Literal['mill'], str | None]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]]" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/mill/entity.py:43:27 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/mill/number.py + /homeassistant/components/mill/number.py:36:7 - error: Base classes for class "MillNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mill/number.py:56:35 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/mill/number.py:63:53 - error: Cannot access attribute "max_heating_power" for class "Mill" +   Attribute "max_heating_power" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mill/number.py:63:71 - error: Argument of type "str | None" cannot be assigned to parameter "device_id" of type "str" in function "max_heating_power" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/mill/sensor.py + /homeassistant/components/mill/sensor.py:187:7 - error: Base classes for class "MillSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mill/sensor.py:207:7 - error: Base classes for class "LocalMillSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mill/sensor.py:221:52 - error: Cannot access attribute "mac_address" for class "Mill" +   Attribute "mac_address" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mill/sensor.py:225:73 - error: Cannot access attribute "url" for class "Mill" +   Attribute "url" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mill/sensor.py:228:55 - error: Cannot access attribute "name" for class "Mill" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mill/sensor.py:229:61 - error: Cannot access attribute "version" for class "Mill" +   Attribute "version" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mill/sensor.py:233:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/min_max/sensor.py + /homeassistant/components/min_max/sensor.py:265:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/min_max/sensor.py:273:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/min_max/sensor.py:280:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/minecraft_server/api.py + /homeassistant/components/minecraft_server/api.py:88:22 - error: "timeout" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/minecraft_server/binary_sensor.py + /homeassistant/components/minecraft_server/binary_sensor.py:62:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/minecraft_server/binary_sensor.py:67:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/minecraft_server/sensor.py + /homeassistant/components/minecraft_server/sensor.py:180:7 - error: Base classes for class "MinecraftServerSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/minecraft_server/sensor.py:193:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "MinecraftServerSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/minecraft_server/sensor.py:193:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "MinecraftServerSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/moat/sensor.py + /homeassistant/components/moat/sensor.py:123:7 - error: Base classes for class "MoatBluetoothSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/moat/sensor.py:132:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/mobile_app/binary_sensor.py + /homeassistant/components/mobile_app/binary_sensor.py:73:7 - error: Base classes for class "MobileAppBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mobile_app/device_tracker.py + /homeassistant/components/mobile_app/device_tracker.py:53:7 - error: Base classes for class "MobileAppEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mobile_app/device_tracker.py:53:7 - error: Base classes for class "MobileAppEntity" define variable "_attr_device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mobile_app/device_tracker.py:53:7 - error: Base classes for class "MobileAppEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mobile_app/device_tracker.py:53:7 - error: Base classes for class "MobileAppEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mobile_app/device_tracker.py:53:7 - error: Base classes for class "MobileAppEntity" define variable "force_update" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mobile_app/device_tracker.py:63:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mobile_app/device_tracker.py:68:9 - error: "battery_level" overrides symbol of same name in class "BaseTrackerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mobile_app/device_tracker.py:73:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mobile_app/device_tracker.py:83:9 - error: "location_accuracy" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/mobile_app/device_tracker.py:88:9 - error: "latitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mobile_app/device_tracker.py:96:9 - error: "longitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mobile_app/device_tracker.py:104:9 - error: "location_name" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mobile_app/device_tracker.py:117:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mobile_app/device_tracker.py:122:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/mobile_app/entity.py + /homeassistant/components/mobile_app/entity.py:81:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/mobile_app/sensor.py + /homeassistant/components/mobile_app/sensor.py:84:7 - error: Base classes for class "MobileAppSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mobile_app/webhook.py + /homeassistant/components/mobile_app/webhook.py:212:19 - error: "humanize" is not a known attribute of module "voluptuous" (reportAttributeAccessIssue) + /homeassistant/components/mobile_app/webhook.py:674:27 - error: "humanize" is not a known attribute of module "voluptuous" (reportAttributeAccessIssue) +/homeassistant/components/mochad/light.py + /homeassistant/components/mochad/light.py:72:14 - error: "_attr_name" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/mochad/switch.py + /homeassistant/components/mochad/switch.py:60:14 - error: "_attr_name" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/modbus/binary_sensor.py + /homeassistant/components/modbus/binary_sensor.py:62:7 - error: Base classes for class "ModbusBinarySensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/binary_sensor.py:62:7 - error: Base classes for class "ModbusBinarySensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/binary_sensor.py:62:7 - error: Base classes for class "ModbusBinarySensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/binary_sensor.py:62:7 - error: Base classes for class "ModbusBinarySensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/binary_sensor.py:126:7 - error: Base classes for class "SlaveSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/binary_sensor.py:126:7 - error: Base classes for class "SlaveSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/binary_sensor.py:126:7 - error: Base classes for class "SlaveSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/binary_sensor.py:126:7 - error: Base classes for class "SlaveSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/binary_sensor.py:126:7 - error: Base classes for class "SlaveSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/modbus/climate.py + /homeassistant/components/modbus/climate.py:140:7 - error: Base classes for class "ModbusThermostat" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/climate.py:140:7 - error: Base classes for class "ModbusThermostat" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/climate.py:140:7 - error: Base classes for class "ModbusThermostat" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/climate.py:140:7 - error: Base classes for class "ModbusThermostat" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/climate.py:140:7 - error: Base classes for class "ModbusThermostat" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/modbus/cover.py + /homeassistant/components/modbus/cover.py:45:7 - error: Base classes for class "ModbusCover" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/cover.py:45:7 - error: Base classes for class "ModbusCover" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/cover.py:45:7 - error: Base classes for class "ModbusCover" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/cover.py:45:7 - error: Base classes for class "ModbusCover" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/cover.py:45:7 - error: Base classes for class "ModbusCover" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/cover.py:45:7 - error: Base classes for class "ModbusCover" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/cover.py:45:7 - error: Base classes for class "ModbusCover" define variable "supported_features" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/modbus/entity.py + /homeassistant/components/modbus/entity.py:267:41 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /homeassistant/components/modbus/entity.py:270:7 - error: Base classes for class "ModbusToggleEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/entity.py:270:7 - error: Base classes for class "ModbusToggleEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/entity.py:270:7 - error: Base classes for class "ModbusToggleEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/modbus/fan.py + /homeassistant/components/modbus/fan.py:57:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/modbus/light.py + /homeassistant/components/modbus/light.py:70:18 - error: "_attr_min_color_temp_kelvin" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "int" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/modbus/light.py:73:18 - error: "_attr_max_color_temp_kelvin" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "int" is not the same as base type "int | None" (reportIncompatibleVariableOverride) +/homeassistant/components/modbus/sensor.py + /homeassistant/components/modbus/sensor.py:167:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/modern_forms/binary_sensor.py + /homeassistant/components/modern_forms/binary_sensor.py:37:7 - error: Base classes for class "ModernFormsBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/binary_sensor.py:37:7 - error: Base classes for class "ModernFormsBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/binary_sensor.py:70:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/binary_sensor.py:101:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/modern_forms/coordinator.py + /homeassistant/components/modern_forms/coordinator.py:46:15 - error: Method "_async_update_data" overrides class "DataUpdateCoordinator" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, Device]", override returns type "CoroutineType[Any, Any, ModernFormsDevice]" +     "CoroutineType[Any, Any, ModernFormsDevice]" is not assignable to "CoroutineType[Any, Any, Device]" +       Type parameter "_ReturnT_nd_co@CoroutineType" is covariant, but "ModernFormsDevice" is not a subtype of "Device" +         "ModernFormsDevice" is not assignable to "Device" (reportIncompatibleMethodOverride) + /homeassistant/components/modern_forms/coordinator.py:49:20 - error: Type "Device" is not assignable to return type "ModernFormsDevice" +   "Device" is not assignable to "ModernFormsDevice" (reportReturnType) +/homeassistant/components/modern_forms/entity.py + /homeassistant/components/modern_forms/entity.py:30:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/modern_forms/fan.py + /homeassistant/components/modern_forms/fan.py:69:7 - error: Base classes for class "ModernFormsFanEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/fan.py:69:7 - error: Base classes for class "ModernFormsFanEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/fan.py:69:7 - error: Base classes for class "ModernFormsFanEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/fan.py:69:7 - error: Base classes for class "ModernFormsFanEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/fan.py:69:7 - error: Base classes for class "ModernFormsFanEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/fan.py:69:7 - error: Base classes for class "ModernFormsFanEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/fan.py:93:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/fan.py:103:9 - error: "current_direction" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/fan.py:108:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/fan.py:118:15 - error: Method "async_set_direction" overrides class "FanEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/modern_forms/fan.py:123:15 - error: Method "async_set_percentage" overrides class "FanEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/modern_forms/fan.py:131:15 - error: Method "async_turn_on" overrides class "FanEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/modern_forms/fan.py:141:13 - error: Argument of type "int" cannot be assigned to parameter "value" of type "bool" in function "__setitem__" +   "int" is not assignable to "bool" (reportArgumentType) + /homeassistant/components/modern_forms/fan.py:144:51 - error: Argument of type "bool" cannot be assigned to parameter "direction" of type "str | None" in function "fan" +   Type "bool" is not assignable to type "str | None" +     "bool" is not assignable to "str" +     "bool" is not assignable to "None" (reportArgumentType) + /homeassistant/components/modern_forms/fan.py:147:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/modern_forms/light.py + /homeassistant/components/modern_forms/light.py:78:7 - error: Base classes for class "ModernFormsLightEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/light.py:78:7 - error: Base classes for class "ModernFormsLightEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/light.py:96:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/light.py:105:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/light.py:110:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/modern_forms/light.py:115:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/modern_forms/light.py:120:13 - error: Argument of type "int" cannot be assigned to parameter "value" of type "bool" in function "__setitem__" +   "int" is not assignable to "bool" (reportArgumentType) +/homeassistant/components/modern_forms/sensor.py + /homeassistant/components/modern_forms/sensor.py:40:7 - error: Base classes for class "ModernFormsSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/sensor.py:40:7 - error: Base classes for class "ModernFormsSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/sensor.py:73:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/sensor.py:103:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/modern_forms/switch.py + /homeassistant/components/modern_forms/switch.py:33:7 - error: Base classes for class "ModernFormsSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/switch.py:33:7 - error: Base classes for class "ModernFormsSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/switch.py:65:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/switch.py:70:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/modern_forms/switch.py:75:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/modern_forms/switch.py:96:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/modern_forms/switch.py:101:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/modern_forms/switch.py:106:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/moehlenhoff_alpha2/binary_sensor.py + /homeassistant/components/moehlenhoff_alpha2/binary_sensor.py:34:7 - error: Base classes for class "Alpha2IODeviceBatterySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/moehlenhoff_alpha2/binary_sensor.py:54:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/moehlenhoff_alpha2/button.py + /homeassistant/components/moehlenhoff_alpha2/button.py:27:7 - error: Base classes for class "Alpha2TimeSyncButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/moehlenhoff_alpha2/climate.py + /homeassistant/components/moehlenhoff_alpha2/climate.py:39:7 - error: Base classes for class "Alpha2Climate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/moehlenhoff_alpha2/climate.py:42:31 - error: Type "float" is not assignable to declared type "cached_property" +   "float" is not assignable to "cached_property[float | None]" (reportAssignmentType) + /homeassistant/components/moehlenhoff_alpha2/climate.py:64:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/moehlenhoff_alpha2/climate.py:69:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/moehlenhoff_alpha2/climate.py:74:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/moehlenhoff_alpha2/climate.py:79:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/moehlenhoff_alpha2/climate.py:90:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/moehlenhoff_alpha2/climate.py:99:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/moehlenhoff_alpha2/climate.py:113:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/moehlenhoff_alpha2/config_flow.py + /homeassistant/components/moehlenhoff_alpha2/config_flow.py:29:39 - error: Cannot access attribute "ClientConnectorError" for class "object" +   Attribute "ClientConnectorError" is unknown (reportAttributeAccessIssue) +/homeassistant/components/moehlenhoff_alpha2/sensor.py + /homeassistant/components/moehlenhoff_alpha2/sensor.py:33:7 - error: Base classes for class "Alpha2HeatControlValveOpeningSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/moehlenhoff_alpha2/sensor.py:55:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/mold_indicator/sensor.py + /homeassistant/components/mold_indicator/sensor.py:478:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/monarch_money/config_flow.py + /homeassistant/components/monarch_money/config_flow.py:71:60 - error: Argument of type "str | None" cannot be assigned to parameter "email" of type "str" in function "multi_factor_authenticate" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/monarch_money/config_flow.py:71:67 - error: Argument of type "str | None" cannot be assigned to parameter "password" of type "str" in function "multi_factor_authenticate" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/monarch_money/sensor.py + /homeassistant/components/monarch_money/sensor.py:156:7 - error: Base classes for class "MonarchMoneyCashFlowSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/monarch_money/sensor.py:159:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "MonarchMoneyCashflowSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/monarch_money/sensor.py:162:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/monarch_money/sensor.py:167:7 - error: Base classes for class "MonarchMoneySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/monarch_money/sensor.py:170:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "MonarchMoneyAccountSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/monarch_money/sensor.py:173:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/monarch_money/sensor.py:178:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/monoprice/media_player.py + /homeassistant/components/monoprice/media_player.py:173:9 - error: "entity_registry_enabled_default" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/monoprice/media_player.py:178:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/monzo/api.py + /homeassistant/components/monzo/api.py:4:21 - error: "AbstractMonzoApi" is not exported from module "monzopy" +   Import from "monzopy.monzopy" instead (reportPrivateImportUsage) +/homeassistant/components/monzo/coordinator.py + /homeassistant/components/monzo/coordinator.py:9:21 - error: "AuthorisationExpiredError" is not exported from module "monzopy" +   Import from "monzopy.monzopy" instead (reportPrivateImportUsage) + /homeassistant/components/monzo/coordinator.py:9:48 - error: "InvalidMonzoAPIResponseError" is not exported from module "monzopy" +   Import from "monzopy.monzopy" instead (reportPrivateImportUsage) +/homeassistant/components/monzo/sensor.py + /homeassistant/components/monzo/sensor.py:94:7 - error: Base classes for class "MonzoSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/monzo/sensor.py:109:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "MonzoSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/monzo/sensor.py:109:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "MonzoSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/monzo/sensor.py:113:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/mopeka/sensor.py + /homeassistant/components/mopeka/sensor.py:131:7 - error: Base classes for class "MopekaBluetoothSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mopeka/sensor.py:140:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/motion_blinds/button.py + /homeassistant/components/motion_blinds/button.py:42:7 - error: Base classes for class "MotionGoFavoriteButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/motion_blinds/button.py:57:64 - error: Cannot access attribute "Go_favorite_position" for class "MotionGateway" +   Attribute "Go_favorite_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/button.py:61:7 - error: Base classes for class "MotionSetFavoriteButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/motion_blinds/button.py:77:64 - error: Cannot access attribute "Set_favorite_position" for class "MotionGateway" +   Attribute "Set_favorite_position" is unknown (reportAttributeAccessIssue) +/homeassistant/components/motion_blinds/cover.py + /homeassistant/components/motion_blinds/cover.py:185:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/motion_blinds/cover.py:196:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/motion_blinds/cover.py:201:24 - error: Cannot access attribute "position" for class "MotionGateway" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:203:34 - error: Cannot access attribute "position" for class "MotionGateway" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:206:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/motion_blinds/cover.py:208:24 - error: Cannot access attribute "position" for class "MotionGateway" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:210:28 - error: Cannot access attribute "position" for class "MotionGateway" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:215:64 - error: Cannot access attribute "Open" for class "MotionGateway" +   Attribute "Open" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:221:64 - error: Cannot access attribute "Close" for class "MotionGateway" +   Attribute "Close" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:229:29 - error: Cannot access attribute "Set_position" for class "MotionGateway" +   Attribute "Set_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:255:64 - error: Cannot access attribute "Stop" for class "MotionGateway" +   Attribute "Stop" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:272:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/motion_blinds/cover.py:277:24 - error: Cannot access attribute "angle" for class "MotionGateway" +   Attribute "angle" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:279:35 - error: Cannot access attribute "angle" for class "MotionGateway" +   Attribute "angle" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:284:24 - error: Cannot access attribute "position" for class "MotionGateway" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:286:28 - error: Cannot access attribute "position" for class "MotionGateway" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:291:64 - error: Cannot access attribute "Set_angle" for class "MotionGateway" +   Attribute "Set_angle" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:298:64 - error: Cannot access attribute "Set_angle" for class "MotionGateway" +   Attribute "Set_angle" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:306:64 - error: Cannot access attribute "Set_angle" for class "MotionGateway" +   Attribute "Set_angle" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:313:64 - error: Cannot access attribute "Stop" for class "MotionGateway" +   Attribute "Stop" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:348:24 - error: Cannot access attribute "position" for class "MotionGateway" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:349:28 - error: Cannot access attribute "angle" for class "MotionGateway" +   Attribute "angle" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:351:39 - error: Cannot access attribute "angle" for class "MotionGateway" +   Attribute "angle" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:353:34 - error: Cannot access attribute "position" for class "MotionGateway" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:358:24 - error: Cannot access attribute "position" for class "MotionGateway" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:359:28 - error: Cannot access attribute "angle" for class "MotionGateway" +   Attribute "angle" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:361:32 - error: Cannot access attribute "angle" for class "MotionGateway" +   Attribute "angle" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:363:28 - error: Cannot access attribute "position" for class "MotionGateway" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:368:64 - error: Cannot access attribute "Open" for class "MotionGateway" +   Attribute "Open" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:375:64 - error: Cannot access attribute "Close" for class "MotionGateway" +   Attribute "Close" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:382:24 - error: Cannot access attribute "position" for class "MotionGateway" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:386:33 - error: Cannot access attribute "Set_angle" for class "MotionGateway" +   Attribute "Set_angle" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:391:33 - error: Cannot access attribute "Set_position" for class "MotionGateway" +   Attribute "Set_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:437:24 - error: Cannot access attribute "scaled_position" for class "MotionGateway" +   Attribute "scaled_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:437:24 - error: Cannot access attribute "scaled_position" for class "MotionBlind" +   Attribute "scaled_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:440:34 - error: Cannot access attribute "scaled_position" for class "MotionGateway" +   Attribute "scaled_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:440:34 - error: Cannot access attribute "scaled_position" for class "MotionBlind" +   Attribute "scaled_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:445:24 - error: Cannot access attribute "position" for class "MotionGateway" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:449:32 - error: Cannot access attribute "width" for class "MotionGateway" +   Attribute "width" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:449:32 - error: Cannot access attribute "width" for class "MotionBlind" +   Attribute "width" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:451:28 - error: Cannot access attribute "position" for class "MotionGateway" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:454:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/motion_blinds/cover.py:457:24 - error: Cannot access attribute "position" for class "MotionGateway" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:459:35 - error: Cannot access attribute "position" for class "MotionGateway" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:461:24 - error: Cannot access attribute "width" for class "MotionGateway" +   Attribute "width" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:461:24 - error: Cannot access attribute "width" for class "MotionBlind" +   Attribute "width" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:462:50 - error: Cannot access attribute "width" for class "MotionGateway" +   Attribute "width" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:462:50 - error: Cannot access attribute "width" for class "MotionBlind" +   Attribute "width" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:468:19 - error: Argument of type "tuple[Unknown]" cannot be assigned to parameter "args" of type "_Ts@async_add_executor_job" in function "async_add_executor_job" +   Type "*tuple[Unknown]" is not assignable to type "*tuple[()]" +     "*tuple[Unknown]" is not assignable to "*tuple[()]" +       Tuple size mismatch; expected 0 but received 1 (reportArgumentType) + /homeassistant/components/motion_blinds/cover.py:468:64 - error: Cannot access attribute "Open" for class "MotionGateway" +   Attribute "Open" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:474:19 - error: Argument of type "tuple[Unknown]" cannot be assigned to parameter "args" of type "_Ts@async_add_executor_job" in function "async_add_executor_job" +   Type "*tuple[Unknown]" is not assignable to type "*tuple[()]" +     "*tuple[Unknown]" is not assignable to "*tuple[()]" +       Tuple size mismatch; expected 0 but received 1 (reportArgumentType) + /homeassistant/components/motion_blinds/cover.py:474:64 - error: Cannot access attribute "Close" for class "MotionGateway" +   Attribute "Close" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:482:29 - error: Cannot access attribute "Set_scaled_position" for class "MotionGateway" +   Attribute "Set_scaled_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:482:29 - error: Cannot access attribute "Set_scaled_position" for class "MotionBlind" +   Attribute "Set_scaled_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/cover.py:501:19 - error: Argument of type "tuple[Unknown]" cannot be assigned to parameter "args" of type "_Ts@async_add_executor_job" in function "async_add_executor_job" +   Type "*tuple[Unknown]" is not assignable to type "*tuple[()]" +     "*tuple[Unknown]" is not assignable to "*tuple[()]" +       Tuple size mismatch; expected 0 but received 1 (reportArgumentType) + /homeassistant/components/motion_blinds/cover.py:501:64 - error: Cannot access attribute "Stop" for class "MotionGateway" +   Attribute "Stop" is unknown (reportAttributeAccessIssue) +/homeassistant/components/motion_blinds/entity.py + /homeassistant/components/motion_blinds/entity.py:55:29 - error: Cannot access attribute "_gateway" for class "MotionGateway" +   Attribute "_gateway" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/entity.py:56:20 - error: Cannot access attribute "firmware" for class "MotionBlind" +   Attribute "firmware" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/entity.py:57:37 - error: Cannot access attribute "firmware" for class "MotionBlind" +   Attribute "firmware" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/entity.py:57:67 - error: Cannot access attribute "protocol" for class "MotionBlind" +   Attribute "protocol" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/entity.py:59:47 - error: Cannot access attribute "protocol" for class "MotionBlind" +   Attribute "protocol" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/entity.py:75:29 - error: Cannot access attribute "blind_type" for class "MotionGateway" +   Attribute "blind_type" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/entity.py:78:34 - error: Cannot access attribute "wireless_name" for class "MotionGateway" +   Attribute "wireless_name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/entity.py:84:29 - error: Cannot access attribute "blind_type" for class "MotionGateway" +   Attribute "blind_type" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/entity.py:86:43 - error: Cannot access attribute "_gateway" for class "MotionGateway" +   Attribute "_gateway" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/entity.py:87:34 - error: Cannot access attribute "wireless_name" for class "MotionGateway" +   Attribute "wireless_name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/entity.py:115:53 - error: Cannot access attribute "position" for class "MotionGateway" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/entity.py:116:50 - error: Cannot access attribute "angle" for class "MotionGateway" +   Attribute "angle" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/entity.py:123:64 - error: Cannot access attribute "Update_trigger" for class "MotionGateway" +   Attribute "Update_trigger" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/entity.py:130:29 - error: Cannot access attribute "position" for class "MotionGateway" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/entity.py:135:29 - error: Cannot access attribute "angle" for class "MotionGateway" +   Attribute "angle" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/entity.py:156:24 - error: Cannot access attribute "position" for class "MotionGateway" +   Attribute "position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/motion_blinds/entity.py:156:57 - error: Cannot access attribute "angle" for class "MotionGateway" +   Attribute "angle" is unknown (reportAttributeAccessIssue) +/homeassistant/components/motion_blinds/sensor.py + /homeassistant/components/motion_blinds/sensor.py:52:7 - error: Base classes for class "MotionBatterySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/motion_blinds/sensor.py:66:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/motion_blinds/sensor.py:71:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/motion_blinds/sensor.py:105:7 - error: Base classes for class "MotionSignalStrengthSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/motion_blinds/sensor.py:119:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/motionblinds_ble/__init__.py + /homeassistant/components/motionblinds_ble/__init__.py:72:9 - error: Argument of type "partial[Task[Any]]" cannot be assigned to parameter "_create_task" of type "CreateTask" in function "set_create_task_factory" +   "partial[Task[Any]]" is incompatible with protocol "CreateTask" +     "__call__" is an incompatible type +       Type "(target: Coroutine[Any, Any, _R@async_create_background_task], eager_start: bool = ..., hass: HomeAssistant = ..., name: str = ...) -> Task[_R@async_create_background_task]" is not assignable to type "(target: Coroutine[Unknown, Unknown, Unknown]) -> None" +         Function return type "Task[Unknown]" is incompatible with type "None" +           "Task[Unknown]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/motionblinds_ble/__init__.py:78:35 - error: Argument of type "partial[CALLBACK_TYPE]" cannot be assigned to parameter "_call_later" of type "CallLater" in function "set_call_later_factory" +   "partial[CALLBACK_TYPE]" is incompatible with protocol "CallLater" +     "__call__" is an incompatible type +       Type "(delay: float | timedelta, action: HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None)), hass: HomeAssistant = ...) -> CALLBACK_TYPE" is not assignable to type "(target: Coroutine[Unknown, Unknown, Unknown]) -> ((...) -> Unknown)" +         Parameter name mismatch: "target" versus "delay" +         Parameter 1: type "Coroutine[Unknown, Unknown, Unknown]" is incompatible with type "float | timedelta" +           Type "Coroutine[Unknown, Unknown, Unknown]" is not assignable to type "float | timedelta" +         Extra parameter "action" (reportArgumentType) +/homeassistant/components/motionblinds_ble/button.py + /homeassistant/components/motionblinds_ble/button.py:38:17 - error: Argument of type "(device: MotionDevice) -> CoroutineType[Any, Any, bool]" cannot be assigned to parameter "command" of type "(MotionDevice) -> Coroutine[Any, Any, None]" in function "__init__" +   Type "(device: MotionDevice) -> CoroutineType[Any, Any, bool]" is not assignable to type "(MotionDevice) -> Coroutine[Any, Any, None]" +     Function return type "CoroutineType[Any, Any, bool]" is incompatible with type "Coroutine[Any, Any, None]" +       "CoroutineType[Any, Any, bool]" is not assignable to "Coroutine[Any, Any, None]" +         Type parameter "_ReturnT_nd_co@Coroutine" is covariant, but "bool" is not a subtype of "None" +           "bool" is not assignable to "None" (reportArgumentType) + /homeassistant/components/motionblinds_ble/button.py:78:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "MotionblindsBLEButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/motionblinds_ble/cover.py + /homeassistant/components/motionblinds_ble/cover.py:205:32 - error: Expected 0 positional arguments (reportCallIssue) +/homeassistant/components/motionblinds_ble/sensor.py + /homeassistant/components/motionblinds_ble/sensor.py:115:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "MotionblindsBLESensorEntityDescription[_T@MotionblindsBLESensorEntity]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/motioneye/camera.py + /homeassistant/components/motioneye/camera.py:142:7 - error: Base classes for class "MotionEyeMjpegCamera" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/motioneye/camera.py:142:7 - error: Base classes for class "MotionEyeMjpegCamera" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/motioneye/camera.py:253:9 - error: "motion_detection_enabled" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/motioneye/entity.py + /homeassistant/components/motioneye/entity.py:61:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/motioneye/entity.py:66:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/motioneye/media_source.py + /homeassistant/components/motioneye/media_source.py:56:5 - error: "name" overrides symbol of same name in class "MediaSource" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/motioneye/sensor.py + /homeassistant/components/motioneye/sensor.py:52:7 - error: Base classes for class "MotionEyeActionSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/motioneye/sensor.py:52:7 - error: Base classes for class "MotionEyeActionSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/motioneye/sensor.py:52:7 - error: Base classes for class "MotionEyeActionSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/motioneye/sensor.py:79:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/motioneye/sensor.py:84:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/motioneye/switch.py + /homeassistant/components/motioneye/switch.py:97:7 - error: Base classes for class "MotionEyeSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/motioneye/switch.py:97:7 - error: Base classes for class "MotionEyeSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/motioneye/switch.py:97:7 - error: Base classes for class "MotionEyeSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/motioneye/switch.py:121:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/motionmount/binary_sensor.py + /homeassistant/components/motionmount/binary_sensor.py:30:7 - error: Base classes for class "MotionMountMovingSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/motionmount/binary_sensor.py:46:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/motionmount/entity.py + /homeassistant/components/motionmount/entity.py:59:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/motionmount/number.py + /homeassistant/components/motionmount/number.py:36:7 - error: Base classes for class "MotionMountExtension" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/motionmount/number.py:52:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/motionmount/number.py:67:7 - error: Base classes for class "MotionMountTurn" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/motionmount/number.py:83:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/motionmount/select.py + /homeassistant/components/motionmount/select.py:34:7 - error: Base classes for class "MotionMountPresets" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/motionmount/select.py:108:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/motionmount/sensor.py + /homeassistant/components/motionmount/sensor.py:38:7 - error: Base classes for class "MotionMountErrorStatusSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/motionmount/sensor.py:62:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/mpd/config_flow.py + /homeassistant/components/mpd/config_flow.py:39:20 - error: Cannot assign to attribute "timeout" for class "MPDClient" +   Attribute "timeout" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/config_flow.py:40:20 - error: Cannot assign to attribute "idletimeout" for class "MPDClient" +   Attribute "idletimeout" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/config_flow.py:45:38 - error: Cannot access attribute "password" for class "MPDClient" +   Attribute "password" is unknown (reportAttributeAccessIssue) +/homeassistant/components/mpd/media_player.py + /homeassistant/components/mpd/media_player.py:120:22 - error: Cannot assign to attribute "timeout" for class "MPDClient" +   Attribute "timeout" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:121:22 - error: Cannot assign to attribute "idletimeout" for class "MPDClient" +   Attribute "idletimeout" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:128:6 - error: Argument of type "(self: Self@MpdDevice) -> CoroutineType[Any, Any, Unknown]" cannot be assigned to parameter "func" of type "(**_P@asynccontextmanager) -> AsyncIterator[_T_co@asynccontextmanager]" in function "asynccontextmanager" +   Type "(self: Self@MpdDevice) -> CoroutineType[Any, Any, Unknown]" is not assignable to type "(**_P@asynccontextmanager) -> AsyncIterator[_T_co@asynccontextmanager]" +     Function return type "CoroutineType[Any, Any, Unknown]" is incompatible with type "AsyncIterator[_T_co@asynccontextmanager]" +       "CoroutineType[Any, Any, Unknown]" is incompatible with protocol "AsyncIterator[_T_co@asynccontextmanager]" +         "__anext__" is not present +         "__aiter__" is not present (reportArgumentType) + /homeassistant/components/mpd/media_player.py:175:51 - error: Cannot access attribute "status" for class "MPDClient" +   Attribute "status" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:176:56 - error: Cannot access attribute "currentsong" for class "MPDClient" +   Attribute "currentsong" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:194:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mpd/media_player.py:208:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mpd/media_player.py:213:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mpd/media_player.py:225:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mpd/media_player.py:243:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mpd/media_player.py:251:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mpd/media_player.py:268:16 - error: "response" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/mpd/media_player.py:271:27 - error: "response" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/mpd/media_player.py:272:20 - error: "response" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/mpd/media_player.py:345:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mpd/media_player.py:352:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/mpd/media_player.py:370:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mpd/media_player.py:384:57 - error: Cannot access attribute "listplaylists" for class "MPDClient" +   Attribute "listplaylists" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:394:36 - error: Cannot access attribute "setvol" for class "MPDClient" +   Attribute "setvol" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:403:34 - error: Cannot access attribute "setvol" for class "MPDClient" +   Attribute "setvol" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:412:40 - error: Cannot access attribute "setvol" for class "MPDClient" +   Attribute "setvol" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:418:36 - error: Cannot access attribute "pause" for class "MPDClient" +   Attribute "pause" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:420:36 - error: Cannot access attribute "play" for class "MPDClient" +   Attribute "play" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:425:32 - error: Cannot access attribute "pause" for class "MPDClient" +   Attribute "pause" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:430:32 - error: Cannot access attribute "stop" for class "MPDClient" +   Attribute "stop" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:435:32 - error: Cannot access attribute "next" for class "MPDClient" +   Attribute "next" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:440:32 - error: Cannot access attribute "previous" for class "MPDClient" +   Attribute "previous" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:471:36 - error: Cannot access attribute "clear" for class "MPDClient" +   Attribute "clear" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:472:36 - error: Cannot access attribute "load" for class "MPDClient" +   Attribute "load" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:473:36 - error: Cannot access attribute "play" for class "MPDClient" +   Attribute "play" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:475:36 - error: Cannot access attribute "clear" for class "MPDClient" +   Attribute "clear" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:477:36 - error: Cannot access attribute "add" for class "MPDClient" +   Attribute "add" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:478:36 - error: Cannot access attribute "play" for class "MPDClient" +   Attribute "play" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:481:9 - error: "repeat" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[RepeatMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mpd/media_player.py:493:36 - error: Cannot access attribute "repeat" for class "MPDClient" +   Attribute "repeat" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:494:36 - error: Cannot access attribute "single" for class "MPDClient" +   Attribute "single" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:496:36 - error: Cannot access attribute "repeat" for class "MPDClient" +   Attribute "repeat" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:498:40 - error: Cannot access attribute "single" for class "MPDClient" +   Attribute "single" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:500:40 - error: Cannot access attribute "single" for class "MPDClient" +   Attribute "single" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:503:9 - error: "shuffle" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mpd/media_player.py:510:32 - error: Cannot access attribute "random" for class "MPDClient" +   Attribute "random" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:515:32 - error: Cannot access attribute "stop" for class "MPDClient" +   Attribute "stop" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:520:32 - error: Cannot access attribute "play" for class "MPDClient" +   Attribute "play" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:526:32 - error: Cannot access attribute "clear" for class "MPDClient" +   Attribute "clear" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mpd/media_player.py:531:32 - error: Cannot access attribute "seekcur" for class "MPDClient" +   Attribute "seekcur" is unknown (reportAttributeAccessIssue) +/homeassistant/components/mqtt/alarm_control_panel.py + /homeassistant/components/mqtt/alarm_control_panel.py:126:7 - error: Base classes for class "MqttAlarm" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/alarm_control_panel.py:126:7 - error: Base classes for class "MqttAlarm" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/async_client.py + /homeassistant/components/mqtt/async_client.py:54:5 - error: "on_connect" incorrectly overrides property of same name in class "Client" (reportIncompatibleMethodOverride) + /homeassistant/components/mqtt/async_client.py:55:5 - error: "on_disconnect" incorrectly overrides property of same name in class "Client" (reportIncompatibleMethodOverride) + /homeassistant/components/mqtt/async_client.py:56:5 - error: "on_publish" incorrectly overrides property of same name in class "Client" (reportIncompatibleMethodOverride) + /homeassistant/components/mqtt/async_client.py:57:5 - error: "on_subscribe" incorrectly overrides property of same name in class "Client" (reportIncompatibleMethodOverride) + /homeassistant/components/mqtt/async_client.py:58:5 - error: "on_unsubscribe" incorrectly overrides property of same name in class "Client" (reportIncompatibleMethodOverride) +/homeassistant/components/mqtt/binary_sensor.py + /homeassistant/components/mqtt/binary_sensor.py:85:7 - error: Base classes for class "MqttBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/binary_sensor.py:85:7 - error: Base classes for class "MqttBinarySensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/binary_sensor.py:85:7 - error: Base classes for class "MqttBinarySensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/binary_sensor.py:85:7 - error: Base classes for class "MqttBinarySensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/binary_sensor.py:85:7 - error: Base classes for class "MqttBinarySensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/binary_sensor.py:253:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/button.py + /homeassistant/components/mqtt/button.py:64:7 - error: Base classes for class "MqttButton" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/button.py:64:7 - error: Base classes for class "MqttButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/camera.py + /homeassistant/components/mqtt/camera.py:77:7 - error: Base classes for class "MqttCamera" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/client.py + /homeassistant/components/mqtt/client.py:315:38 - error: Argument of type "property" cannot be assigned to parameter "num" of type "int" in function "_base62" +   "property" is not assignable to "int" (reportArgumentType) + /homeassistant/components/mqtt/client.py:318:39 - error: "CallbackAPIVersion" is not exported from module "paho.mqtt.client" (reportPrivateImportUsage) + /homeassistant/components/mqtt/client.py:546:25 - error: Cannot access attribute "_socket" for class "socket" +   Attribute "_socket" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mqtt/client.py:546:25 - error: Cannot access attribute "_socket" for class "SSLSocket" +   Attribute "_socket" is unknown (reportAttributeAccessIssue) + /homeassistant/components/mqtt/client.py:1013:27 - error: "ReasonCode" is not exported from module "paho.mqtt.client" (reportPrivateImportUsage) + /homeassistant/components/mqtt/client.py:1014:27 - error: "Properties" is not exported from module "paho.mqtt.client" (reportPrivateImportUsage) + /homeassistant/components/mqtt/client.py:1186:28 - error: "ReasonCode" is not exported from module "paho.mqtt.client" (reportPrivateImportUsage) + /homeassistant/components/mqtt/client.py:1187:27 - error: "Properties" is not exported from module "paho.mqtt.client" (reportPrivateImportUsage) + /homeassistant/components/mqtt/client.py:1198:33 - error: "ReasonCode" is not exported from module "paho.mqtt.client" (reportPrivateImportUsage) + /homeassistant/components/mqtt/client.py:1199:27 - error: "Properties" is not exported from module "paho.mqtt.client" (reportPrivateImportUsage) + /homeassistant/components/mqtt/client.py:1223:61 - error: "MQTTErrorCode" is not exported from module "paho.mqtt.client" (reportPrivateImportUsage) + /homeassistant/components/mqtt/client.py:1240:27 - error: "ReasonCode" is not exported from module "paho.mqtt.client" (reportPrivateImportUsage) + /homeassistant/components/mqtt/client.py:1241:26 - error: "Properties" is not exported from module "paho.mqtt.client" (reportPrivateImportUsage) +/homeassistant/components/mqtt/climate.py + /homeassistant/components/mqtt/climate.py:528:7 - error: Base classes for class "MqttClimate" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/climate.py:528:7 - error: Base classes for class "MqttClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/config_flow.py + /homeassistant/components/mqtt/config_flow.py:924:46 - error: Argument of type "Any | None" cannot be assigned to parameter "key" of type "SensorStateClass | str" in function "__getitem__" +   Type "Any | None" is not assignable to type "SensorStateClass | str" +     Type "None" is not assignable to type "SensorStateClass | str" +       "None" is not assignable to "SensorStateClass" +       "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/mqtt/config_flow.py:1140:13 - error: "unit_of_measurement" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/mqtt/config_flow.py:3847:13 - error: "reconfigure_entry" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/mqtt/config_flow.py:3854:21 - error: "reconfigure_entry" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/mqtt/config_flow.py:3865:25 - error: "reconfigure_entry" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/mqtt/config_flow.py:4093:26 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4114:23 - error: Could not access item in TypedDict +   "device" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4114:23 - error: Could not access item in TypedDict +   "name" is not a required key in "MqttDeviceData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4115:27 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4130:26 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4143:23 - error: Could not access item in TypedDict +   "device" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4173:23 - error: Could not access item in TypedDict +   "device" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4215:30 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4217:33 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4227:17 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4236:23 - error: Could not access item in TypedDict +   "device" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4236:23 - error: Could not access item in TypedDict +   "name" is not a required key in "MqttDeviceData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4252:23 - error: Could not access item in TypedDict +   "device" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4252:23 - error: Could not access item in TypedDict +   "name" is not a required key in "MqttDeviceData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4259:40 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4282:16 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4284:44 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4293:17 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4303:26 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4360:26 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4409:31 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4436:23 - error: Could not access item in TypedDict +   "device" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4436:23 - error: Could not access item in TypedDict +   "name" is not a required key in "MqttDeviceData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4438:18 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4450:19 - error: Could not access item in TypedDict +   "device" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4450:19 - error: Could not access item in TypedDict +   "name" is not a required key in "MqttDeviceData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4500:23 - error: Could not access item in TypedDict +   "device" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4500:23 - error: Could not access item in TypedDict +   "name" is not a required key in "MqttDeviceData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4504:35 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4510:16 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4546:36 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4557:19 - error: Could not access item in TypedDict +   "device" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4557:19 - error: Could not access item in TypedDict +   "name" is not a required key in "MqttDeviceData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4580:45 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4585:35 - error: Could not access item in TypedDict +   "device" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4591:17 - error: Could not access item in TypedDict +   "device" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4629:31 - error: Could not access item in TypedDict +   "device" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4635:45 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:4640:17 - error: Could not access item in TypedDict +   "device" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/config_flow.py:5092:27 - error: "ReasonCode" is not exported from module "paho.mqtt.client" (reportPrivateImportUsage) + /homeassistant/components/mqtt/config_flow.py:5093:27 - error: "Properties" is not exported from module "paho.mqtt.client" (reportPrivateImportUsage) +/homeassistant/components/mqtt/cover.py + /homeassistant/components/mqtt/cover.py:234:7 - error: Base classes for class "MqttCover" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/cover.py:234:7 - error: Base classes for class "MqttCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/device_tracker.py + /homeassistant/components/mqtt/device_tracker.py:101:7 - error: Base classes for class "MqttDeviceTracker" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/device_tracker.py:101:7 - error: Base classes for class "MqttDeviceTracker" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/device_tracker.py:155:9 - error: Method "_process_update_extra_state_attributes" overrides class "MqttAttributesMixin" in an incompatible manner +   Positional parameter count mismatch; base method has 1, but override has 2 (reportIncompatibleMethodOverride) +/homeassistant/components/mqtt/discovery.py + /homeassistant/components/mqtt/discovery.py:142:12 - error: Could not access item in TypedDict +   "name" is not a required key in "MqttOriginInfo", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/mqtt/entity.py + /homeassistant/components/mqtt/entity.py:370:29 - error: Could not access item in TypedDict +   "device" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/entity.py:373:49 - error: Could not access item in TypedDict +   "components" is not a required key in "MqttSubentryData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/mqtt/entity.py:687:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/entity.py:1360:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/entity.py:1365:7 - error: Base classes for class "MqttEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/entity.py:1365:7 - error: Base classes for class "MqttEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/entity.py:1642:9 - error: Method "_message_callback" overrides class "MqttAttributesMixin" in an incompatible manner +   Positional parameter count mismatch; base method has 3, but override has 4 +   Parameter 2 type mismatch: base parameter is type "set[str] | None", override parameter is type "MessageCallbackType" +   Parameter 3 type mismatch: base parameter is type "ReceiveMessage", override parameter is type "set[str] | None" +     Type "set[str] | None" is not assignable to type "MessageCallbackType" +       Type "set[str]" is not assignable to type "MessageCallbackType" +     Type "ReceiveMessage" is not assignable to type "set[str] | None" +       "ReceiveMessage" is not assignable to "set[str]" +       "ReceiveMessage" is not assignable to "None" (reportIncompatibleMethodOverride) + /homeassistant/components/mqtt/entity.py:1642:9 - error: Method "_message_callback" overrides class "MqttAvailabilityMixin" in an incompatible manner +   Positional parameter count mismatch; base method has 3, but override has 4 +   Parameter 2 type mismatch: base parameter is type "set[str] | None", override parameter is type "MessageCallbackType" +   Parameter 3 type mismatch: base parameter is type "ReceiveMessage", override parameter is type "set[str] | None" +     Type "set[str] | None" is not assignable to type "MessageCallbackType" +       Type "set[str]" is not assignable to type "MessageCallbackType" +     Type "ReceiveMessage" is not assignable to type "set[str] | None" +       "ReceiveMessage" is not assignable to "set[str]" +       "ReceiveMessage" is not assignable to "None" (reportIncompatibleMethodOverride) + /homeassistant/components/mqtt/entity.py:1667:64 - error: "attrs_snapshot" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/mqtt/event.py + /homeassistant/components/mqtt/event.py:90:7 - error: Base classes for class "MqttEvent" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/event.py:90:7 - error: Base classes for class "MqttEvent" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/fan.py + /homeassistant/components/mqtt/fan.py:205:7 - error: Base classes for class "MqttFan" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/fan.py:205:7 - error: Base classes for class "MqttFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/humidifier.py + /homeassistant/components/mqtt/humidifier.py:200:7 - error: Base classes for class "MqttHumidifier" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/humidifier.py:200:7 - error: Base classes for class "MqttHumidifier" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/image.py + /homeassistant/components/mqtt/image.py:100:7 - error: Base classes for class "MqttImage" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/image.py:100:7 - error: Base classes for class "MqttImage" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/lawn_mower.py + /homeassistant/components/mqtt/lawn_mower.py:97:7 - error: Base classes for class "MqttLawnMower" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/lawn_mower.py:97:7 - error: Base classes for class "MqttLawnMower" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/lawn_mower.py:97:7 - error: Base classes for class "MqttLawnMower" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/lawn_mower.py:97:7 - error: Base classes for class "MqttLawnMower" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/lawn_mower.py:97:7 - error: Base classes for class "MqttLawnMower" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/light/schema_basic.py + /homeassistant/components/mqtt/light/schema_basic.py:238:7 - error: Base classes for class "MqttLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_basic.py:238:7 - error: Base classes for class "MqttLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_basic.py:238:7 - error: Base classes for class "MqttLight" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_basic.py:238:7 - error: Base classes for class "MqttLight" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_basic.py:238:7 - error: Base classes for class "MqttLight" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_basic.py:238:7 - error: Base classes for class "MqttLight" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_basic.py:238:7 - error: Base classes for class "MqttLight" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_basic.py:238:7 - error: Base classes for class "MqttLight" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_basic.py:684:30 - error: Operator "*" not supported for types "int" and "int | None" +   Operator "*" not supported for types "int" and "None" (reportOperatorIssue) +/homeassistant/components/mqtt/light/schema_json.py + /homeassistant/components/mqtt/light/schema_json.py:163:7 - error: Base classes for class "MqttLightJson" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_json.py:163:7 - error: Base classes for class "MqttLightJson" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_json.py:163:7 - error: Base classes for class "MqttLightJson" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_json.py:163:7 - error: Base classes for class "MqttLightJson" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_json.py:163:7 - error: Base classes for class "MqttLightJson" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_json.py:163:7 - error: Base classes for class "MqttLightJson" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_json.py:163:7 - error: Base classes for class "MqttLightJson" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/light/schema_template.py + /homeassistant/components/mqtt/light/schema_template.py:120:7 - error: Base classes for class "MqttLightTemplate" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_template.py:120:7 - error: Base classes for class "MqttLightTemplate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_template.py:120:7 - error: Base classes for class "MqttLightTemplate" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_template.py:120:7 - error: Base classes for class "MqttLightTemplate" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_template.py:120:7 - error: Base classes for class "MqttLightTemplate" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_template.py:120:7 - error: Base classes for class "MqttLightTemplate" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_template.py:120:7 - error: Base classes for class "MqttLightTemplate" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/light/schema_template.py:120:7 - error: Base classes for class "MqttLightTemplate" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/lock.py + /homeassistant/components/mqtt/lock.py:128:7 - error: Base classes for class "MqttLock" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/lock.py:128:7 - error: Base classes for class "MqttLock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/models.py + /homeassistant/components/mqtt/models.py:161:14 - error: "_message" overrides symbol of same name in class "HomeAssistantError" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/models.py:247:14 - error: "_message" overrides symbol of same name in class "HomeAssistantError" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/notify.py + /homeassistant/components/mqtt/notify.py:56:7 - error: Base classes for class "MqttNotify" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/notify.py:56:7 - error: Base classes for class "MqttNotify" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/number.py + /homeassistant/components/mqtt/number.py:132:7 - error: Base classes for class "MqttNumber" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/number.py:132:7 - error: Base classes for class "MqttNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/scene.py + /homeassistant/components/mqtt/scene.py:60:7 - error: Base classes for class "MqttScene" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/scene.py:60:7 - error: Base classes for class "MqttScene" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/select.py + /homeassistant/components/mqtt/select.py:80:7 - error: Base classes for class "MqttSelect" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/select.py:80:7 - error: Base classes for class "MqttSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/select.py:80:7 - error: Base classes for class "MqttSelect" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/select.py:80:7 - error: Base classes for class "MqttSelect" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/select.py:80:7 - error: Base classes for class "MqttSelect" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/select.py:80:7 - error: Base classes for class "MqttSelect" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/sensor.py + /homeassistant/components/mqtt/sensor.py:187:7 - error: Base classes for class "MqttSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/sensor.py:395:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/siren.py + /homeassistant/components/mqtt/siren.py:129:7 - error: Base classes for class "MqttSiren" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/siren.py:129:7 - error: Base classes for class "MqttSiren" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/siren.py:276:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/subscription.py + /homeassistant/components/mqtt/subscription.py:165:10 - error: Function with declared return type "dict[str, EntitySubscription]" must return value on all code paths +   "None" is not assignable to "dict[str, EntitySubscription]" (reportReturnType) +/homeassistant/components/mqtt/switch.py + /homeassistant/components/mqtt/switch.py:87:7 - error: Base classes for class "MqttSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/switch.py:87:7 - error: Base classes for class "MqttSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/switch.py:87:7 - error: Base classes for class "MqttSwitch" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/switch.py:87:7 - error: Base classes for class "MqttSwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/switch.py:87:7 - error: Base classes for class "MqttSwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/switch.py:87:7 - error: Base classes for class "MqttSwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/tag.py + /homeassistant/components/mqtt/tag.py:90:9 - error: "tags" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/mqtt/text.py + /homeassistant/components/mqtt/text.py:112:7 - error: Base classes for class "MqttTextEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/text.py:112:7 - error: Base classes for class "MqttTextEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/update.py + /homeassistant/components/mqtt/update.py:99:7 - error: Base classes for class "MqttUpdate" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/update.py:99:7 - error: Base classes for class "MqttUpdate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/update.py:99:7 - error: Base classes for class "MqttUpdate" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/update.py:99:7 - error: Base classes for class "MqttUpdate" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/update.py:99:7 - error: Base classes for class "MqttUpdate" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/update.py:99:7 - error: Base classes for class "MqttUpdate" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/update.py:99:7 - error: Base classes for class "MqttUpdate" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/update.py:99:7 - error: Base classes for class "MqttUpdate" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/update.py:99:7 - error: Base classes for class "MqttUpdate" define variable "entity_category" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/update.py:106:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/update.py:269:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/update.py:269:9 - error: "supported_features" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[UpdateEntityFeature]" (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/vacuum.py + /homeassistant/components/mqtt/vacuum.py:193:7 - error: Base classes for class "MqttStateVacuum" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/vacuum.py:193:7 - error: Base classes for class "MqttStateVacuum" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/valve.py + /homeassistant/components/mqtt/valve.py:153:7 - error: Base classes for class "MqttValve" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/valve.py:153:7 - error: Base classes for class "MqttValve" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt/water_heater.py + /homeassistant/components/mqtt/water_heater.py:183:7 - error: Base classes for class "MqttWaterHeater" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt/water_heater.py:183:7 - error: Base classes for class "MqttWaterHeater" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mqtt_room/sensor.py + /homeassistant/components/mqtt_room/sensor.py:171:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt_room/sensor.py:176:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mqtt_room/sensor.py:181:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/msteams/notify.py + /homeassistant/components/msteams/notify.py:7:8 - error: Import "pymsteams" could not be resolved (reportMissingImports) +/homeassistant/components/mullvad/binary_sensor.py + /homeassistant/components/mullvad/binary_sensor.py:42:7 - error: Base classes for class "MullvadBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mullvad/binary_sensor.py:64:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/music_assistant/__init__.py + /homeassistant/components/music_assistant/__init__.py:10:36 - error: "MusicAssistantClient" is not exported from module "music_assistant_client" +   Import from "music_assistant_client.client" instead (reportPrivateImportUsage) +/homeassistant/components/music_assistant/button.py + /homeassistant/components/music_assistant/button.py:36:7 - error: Base classes for class "MusicAssistantFavoriteButton" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/music_assistant/button.py:36:7 - error: Base classes for class "MusicAssistantFavoriteButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/music_assistant/button.py:45:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/music_assistant/config_flow.py + /homeassistant/components/music_assistant/config_flow.py:7:36 - error: "MusicAssistantClient" is not exported from module "music_assistant_client" +   Import from "music_assistant_client.client" instead (reportPrivateImportUsage) +/homeassistant/components/music_assistant/entity.py + /homeassistant/components/music_assistant/entity.py:17:40 - error: "MusicAssistantClient" is not exported from module "music_assistant_client" +   Import from "music_assistant_client.client" instead (reportPrivateImportUsage) + /homeassistant/components/music_assistant/entity.py:62:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/music_assistant/entity.py:70:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/music_assistant/media_browser.py + /homeassistant/components/music_assistant/media_browser.py:26:40 - error: "MusicAssistantClient" is not exported from module "music_assistant_client" +   Import from "music_assistant_client.client" instead (reportPrivateImportUsage) +/homeassistant/components/music_assistant/media_player.py + /homeassistant/components/music_assistant/media_player.py:185:7 - error: Base classes for class "MusicAssistantPlayer" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/music_assistant/media_player.py:185:7 - error: Base classes for class "MusicAssistantPlayer" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/music_assistant/media_player.py:243:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/music_assistant/media_player.py:307:15 - error: Method "async_media_play" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/music_assistant/media_player.py:312:15 - error: Method "async_media_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/music_assistant/media_player.py:317:15 - error: Method "async_media_stop" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/music_assistant/media_player.py:322:15 - error: Method "async_media_next_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/music_assistant/media_player.py:327:15 - error: Method "async_media_previous_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/music_assistant/media_player.py:332:15 - error: Method "async_media_seek" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/music_assistant/media_player.py:338:15 - error: Method "async_mute_volume" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/music_assistant/media_player.py:343:15 - error: Method "async_set_volume_level" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/music_assistant/media_player.py:349:15 - error: Method "async_volume_up" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/music_assistant/media_player.py:354:15 - error: Method "async_volume_down" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/music_assistant/media_player.py:359:15 - error: Method "async_turn_on" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/music_assistant/media_player.py:364:15 - error: Method "async_turn_off" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/music_assistant/media_player.py:369:15 - error: Method "async_set_shuffle" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/music_assistant/media_player.py:378:15 - error: Method "async_set_repeat" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/music_assistant/media_player.py:387:15 - error: Method "async_clear_playlist" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/music_assistant/media_player.py:395:15 - error: Method "async_play_media" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/music_assistant/media_player.py:429:15 - error: Method "async_join_players" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/music_assistant/media_player.py:442:15 - error: Method "async_unjoin_player" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/music_assistant/media_player.py:447:15 - error: Method "async_select_source" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/music_assistant/schemas.py + /homeassistant/components/music_assistant/schemas.py:57:40 - error: "MusicAssistantClient" is not exported from module "music_assistant_client" +   Import from "music_assistant_client.client" instead (reportPrivateImportUsage) +/homeassistant/components/music_assistant/services.py + /homeassistant/components/music_assistant/services.py:52:40 - error: "MusicAssistantClient" is not exported from module "music_assistant_client" +   Import from "music_assistant_client.client" instead (reportPrivateImportUsage) +/homeassistant/components/mutesync/binary_sensor.py + /homeassistant/components/mutesync/binary_sensor.py:30:7 - error: Base classes for class "MuteStatus" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mutesync/binary_sensor.py:51:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/mutesync/config_flow.py + /homeassistant/components/mutesync/config_flow.py:41:12 - error: Type "str" is not assignable to return type "dict[str, Any]" +   "str" is not assignable to "dict[str, Any]" (reportReturnType) +/homeassistant/components/mvglive/sensor.py + /homeassistant/components/mvglive/sensor.py:11:6 - error: Import "mvg" could not be resolved (reportMissingImports) + /homeassistant/components/mvglive/sensor.py:126:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mvglive/sensor.py:133:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/mvglive/sensor.py:138:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mvglive/sensor.py:147:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mvglive/sensor.py:152:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/mycroft/notify.py + /homeassistant/components/mycroft/notify.py:7:6 - error: Import "mycroftapi" could not be resolved (reportMissingImports) +/homeassistant/components/mysensors/__init__.py + /homeassistant/components/mysensors/__init__.py:140:27 - error: Object of type "Mapping[SensorType, type[MySensorsChildEntity]]" is not callable +   Attribute "__call__" is unknown (reportCallIssue) + /homeassistant/components/mysensors/__init__.py:140:27 - error: Expected 5 positional arguments (reportCallIssue) +/homeassistant/components/mysensors/binary_sensor.py + /homeassistant/components/mysensors/binary_sensor.py:97:7 - error: Base classes for class "MySensorsBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/binary_sensor.py:97:7 - error: Base classes for class "MySensorsBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/binary_sensor.py:97:7 - error: Base classes for class "MySensorsBinarySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/binary_sensor.py:97:7 - error: Base classes for class "MySensorsBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/binary_sensor.py:97:7 - error: Base classes for class "MySensorsBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/binary_sensor.py:106:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "MySensorsBinarySensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/binary_sensor.py:106:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "MySensorsBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/binary_sensor.py:109:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/mysensors/climate.py + /homeassistant/components/mysensors/climate.py:68:7 - error: Base classes for class "MySensorsHVAC" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/climate.py:68:7 - error: Base classes for class "MySensorsHVAC" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/climate.py:68:7 - error: Base classes for class "MySensorsHVAC" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/climate.py:68:7 - error: Base classes for class "MySensorsHVAC" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/climate.py:68:7 - error: Base classes for class "MySensorsHVAC" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/climate.py:74:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/climate.py:74:9 - error: "supported_features" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[ClimateEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/climate.py:93:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/climate.py:102:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/climate.py:113:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/climate.py:125:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/climate.py:131:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/climate.py:137:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/climate.py:142:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/climate.py:147:9 - error: "fan_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/climate.py:168:29 - error: "value_type" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/mysensors/cover.py + /homeassistant/components/mysensors/cover.py:56:7 - error: Base classes for class "MySensorsCover" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/cover.py:56:7 - error: Base classes for class "MySensorsCover" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/cover.py:56:7 - error: Base classes for class "MySensorsCover" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/cover.py:56:7 - error: Base classes for class "MySensorsCover" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/cover.py:56:7 - error: Base classes for class "MySensorsCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/cover.py:84:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/cover.py:89:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/cover.py:94:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/cover.py:99:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/mysensors/device_tracker.py + /homeassistant/components/mysensors/device_tracker.py:44:7 - error: Base classes for class "MySensorsDeviceTracker" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/device_tracker.py:44:7 - error: Base classes for class "MySensorsDeviceTracker" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/device_tracker.py:44:7 - error: Base classes for class "MySensorsDeviceTracker" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/device_tracker.py:44:7 - error: Base classes for class "MySensorsDeviceTracker" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/device_tracker.py:44:7 - error: Base classes for class "MySensorsDeviceTracker" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/mysensors/entity.py + /homeassistant/components/mysensors/entity.py:88:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/entity.py:98:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/entity.py:183:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/entity.py:188:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/entity.py:207:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/mysensors/gateway.py + /homeassistant/components/mysensors/gateway.py:107:17 - error: Cannot assign to attribute "on_conn_made" for class "BaseAsyncGateway" +   Expression of type "(_: BaseAsyncGateway) -> None" cannot be assigned to attribute "on_conn_made" of class "BaseAsyncGateway" +     "FunctionType" is not assignable to "None" (reportAttributeAccessIssue) + /homeassistant/components/mysensors/gateway.py:201:23 - error: Argument of type "str | None" cannot be assigned to parameter "in_prefix" of type "str" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/mysensors/gateway.py:202:24 - error: Argument of type "str | None" cannot be assigned to parameter "out_prefix" of type "str" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/mysensors/gateway.py:285:13 - error: Cannot assign to attribute "on_conn_made" for class "BaseAsyncGateway" +   Expression of type "(_: BaseAsyncGateway) -> None" cannot be assigned to attribute "on_conn_made" of class "BaseAsyncGateway" +     "FunctionType" is not assignable to "None" (reportAttributeAccessIssue) +/homeassistant/components/mysensors/light.py + /homeassistant/components/mysensors/light.py:57:7 - error: Base classes for class "MySensorsLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/light.py:57:7 - error: Base classes for class "MySensorsLight" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/light.py:57:7 - error: Base classes for class "MySensorsLight" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/light.py:57:7 - error: Base classes for class "MySensorsLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/light.py:57:7 - error: Base classes for class "MySensorsLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/light.py:66:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/mysensors/remote.py + /homeassistant/components/mysensors/remote.py:51:7 - error: Base classes for class "MySensorsRemote" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/remote.py:51:7 - error: Base classes for class "MySensorsRemote" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/remote.py:51:7 - error: Base classes for class "MySensorsRemote" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/remote.py:51:7 - error: Base classes for class "MySensorsRemote" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/remote.py:51:7 - error: Base classes for class "MySensorsRemote" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/remote.py:57:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/remote.py:66:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/remote.py:66:9 - error: "supported_features" overrides symbol of same name in class "RemoteEntity" +   "property" is not assignable to "cached_property[RemoteEntityFeature]" (reportIncompatibleVariableOverride) +/homeassistant/components/mysensors/sensor.py + /homeassistant/components/mysensors/sensor.py:253:7 - error: Base classes for class "MyBatterySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/sensor.py:253:7 - error: Base classes for class "MyBatterySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/sensor.py:262:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/sensor.py:267:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/sensor.py:278:7 - error: Base classes for class "MySensorsSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/sensor.py:278:7 - error: Base classes for class "MySensorsSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/sensor.py:278:7 - error: Base classes for class "MySensorsSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/sensor.py:278:7 - error: Base classes for class "MySensorsSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/sensor.py:278:7 - error: Base classes for class "MySensorsSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/sensor.py:290:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/sensor.py:295:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/mysensors/switch.py + /homeassistant/components/mysensors/switch.py:59:7 - error: Base classes for class "MySensorsSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/switch.py:59:7 - error: Base classes for class "MySensorsSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/switch.py:59:7 - error: Base classes for class "MySensorsSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/switch.py:59:7 - error: Base classes for class "MySensorsSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/switch.py:59:7 - error: Base classes for class "MySensorsSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/switch.py:63:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/mysensors/text.py + /homeassistant/components/mysensors/text.py:44:7 - error: Base classes for class "MySensorsText" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/text.py:44:7 - error: Base classes for class "MySensorsText" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/text.py:44:7 - error: Base classes for class "MySensorsText" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/text.py:44:7 - error: Base classes for class "MySensorsText" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/text.py:44:7 - error: Base classes for class "MySensorsText" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/mysensors/text.py:50:9 - error: "native_value" overrides symbol of same name in class "TextEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/mystrom/binary_sensor.py + /homeassistant/components/mystrom/binary_sensor.py:87:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/mystrom/binary_sensor.py:92:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/mystrom/sensor.py + /homeassistant/components/mystrom/sensor.py:63:29 - error: Type "MyStromSwitch | MyStromBulb" is not assignable to declared type "MyStromSwitch" +   Type "MyStromSwitch | MyStromBulb" is not assignable to type "MyStromSwitch" +     "MyStromBulb" is not assignable to "MyStromSwitch" (reportAssignmentType) + /homeassistant/components/mystrom/sensor.py:87:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "MyStromSwitchSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/mystrom/sensor.py:91:35 - error: Argument of type "set[tuple[Literal['mystrom'], str | None]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]]" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/mystrom/sensor.py:98:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/myuplink/__init__.py + /homeassistant/components/myuplink/__init__.py:10:22 - error: "MyUplinkAPI" is not exported from module "myuplink" +   Import from "myuplink.api" instead (reportPrivateImportUsage) + /homeassistant/components/myuplink/__init__.py:10:35 - error: "get_manufacturer" is not exported from module "myuplink" +   Import from "myuplink.names" instead (reportPrivateImportUsage) + /homeassistant/components/myuplink/__init__.py:10:53 - error: "get_model" is not exported from module "myuplink" +   Import from "myuplink.names" instead (reportPrivateImportUsage) + /homeassistant/components/myuplink/__init__.py:10:64 - error: "get_system_name" is not exported from module "myuplink" +   Import from "myuplink.names" instead (reportPrivateImportUsage) +/homeassistant/components/myuplink/binary_sensor.py + /homeassistant/components/myuplink/binary_sensor.py:3:22 - error: "DeviceConnectionState" is not exported from module "myuplink" +   Import from "myuplink.models" instead (reportPrivateImportUsage) + /homeassistant/components/myuplink/binary_sensor.py:3:45 - error: "DevicePoint" is not exported from module "myuplink" +   Import from "myuplink.models" instead (reportPrivateImportUsage) + /homeassistant/components/myuplink/binary_sensor.py:137:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/myuplink/binary_sensor.py:143:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/myuplink/binary_sensor.py:151:7 - error: Base classes for class "MyUplinkDeviceBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/myuplink/binary_sensor.py:171:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/myuplink/binary_sensor.py:179:7 - error: Base classes for class "MyUplinkSystemBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/myuplink/binary_sensor.py:201:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/myuplink/coordinator.py + /homeassistant/components/myuplink/coordinator.py:8:22 - error: "Device" is not exported from module "myuplink" +   Import from "myuplink.models" instead (reportPrivateImportUsage) + /homeassistant/components/myuplink/coordinator.py:8:30 - error: "DevicePoint" is not exported from module "myuplink" +   Import from "myuplink.models" instead (reportPrivateImportUsage) + /homeassistant/components/myuplink/coordinator.py:8:43 - error: "MyUplinkAPI" is not exported from module "myuplink" +   Import from "myuplink.api" instead (reportPrivateImportUsage) + /homeassistant/components/myuplink/coordinator.py:8:56 - error: "System" is not exported from module "myuplink" +   Import from "myuplink.models" instead (reportPrivateImportUsage) +/homeassistant/components/myuplink/helpers.py + /homeassistant/components/myuplink/helpers.py:3:22 - error: "DevicePoint" is not exported from module "myuplink" +   Import from "myuplink.models" instead (reportPrivateImportUsage) +/homeassistant/components/myuplink/number.py + /homeassistant/components/myuplink/number.py:4:22 - error: "DevicePoint" is not exported from module "myuplink" +   Import from "myuplink.models" instead (reportPrivateImportUsage) + /homeassistant/components/myuplink/number.py:92:7 - error: Base classes for class "MyUplinkNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/myuplink/number.py:127:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/myuplink/select.py + /homeassistant/components/myuplink/select.py:6:22 - error: "DevicePoint" is not exported from module "myuplink" +   Import from "myuplink.models" instead (reportPrivateImportUsage) + /homeassistant/components/myuplink/select.py:47:7 - error: Base classes for class "MyUplinkSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/myuplink/select.py:76:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/myuplink/sensor.py + /homeassistant/components/myuplink/sensor.py:3:22 - error: "DevicePoint" is not exported from module "myuplink" +   Import from "myuplink.models" instead (reportPrivateImportUsage) + /homeassistant/components/myuplink/sensor.py:265:7 - error: Base classes for class "MyUplinkDevicePointSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/myuplink/sensor.py:294:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/myuplink/switch.py + /homeassistant/components/myuplink/switch.py:6:22 - error: "DevicePoint" is not exported from module "myuplink" +   Import from "myuplink.models" instead (reportPrivateImportUsage) + /homeassistant/components/myuplink/switch.py:85:7 - error: Base classes for class "MyUplinkDevicePointSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/myuplink/switch.py:111:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/myuplink/update.py + /homeassistant/components/myuplink/update.py:39:7 - error: Base classes for class "MyUplinkDeviceUpdate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/myuplink/update.py:59:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/myuplink/update.py:64:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nad/media_player.py + /homeassistant/components/nad/media_player.py:5:6 - error: Import "nad_receiver" could not be resolved (reportMissingImports) + /homeassistant/components/nad/media_player.py:138:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nad/media_player.py:143:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/nad/media_player.py:240:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nam/__init__.py + /homeassistant/components/nam/__init__.py:9:5 - error: "ApiError" is not exported from module "nettigo_air_monitor" +   Import from "nettigo_air_monitor.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/nam/__init__.py:10:5 - error: "AuthFailedError" is not exported from module "nettigo_air_monitor" +   Import from "nettigo_air_monitor.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/nam/__init__.py:11:5 - error: "ConnectionOptions" is not exported from module "nettigo_air_monitor" +   Import from "nettigo_air_monitor.model" instead (reportPrivateImportUsage) +/homeassistant/components/nam/button.py + /homeassistant/components/nam/button.py:8:33 - error: "ApiError" is not exported from module "nettigo_air_monitor" +   Import from "nettigo_air_monitor.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/nam/button.py:8:43 - error: "AuthFailedError" is not exported from module "nettigo_air_monitor" +   Import from "nettigo_air_monitor.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/nam/button.py:49:7 - error: Base classes for class "NAMButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/nam/config_flow.py + /homeassistant/components/nam/config_flow.py:11:5 - error: "ApiError" is not exported from module "nettigo_air_monitor" +   Import from "nettigo_air_monitor.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/nam/config_flow.py:12:5 - error: "AuthFailedError" is not exported from module "nettigo_air_monitor" +   Import from "nettigo_air_monitor.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/nam/config_flow.py:13:5 - error: "CannotGetMacError" is not exported from module "nettigo_air_monitor" +   Import from "nettigo_air_monitor.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/nam/config_flow.py:14:5 - error: "ConnectionOptions" is not exported from module "nettigo_air_monitor" +   Import from "nettigo_air_monitor.model" instead (reportPrivateImportUsage) +/homeassistant/components/nam/coordinator.py + /homeassistant/components/nam/coordinator.py:7:5 - error: "ApiError" is not exported from module "nettigo_air_monitor" +   Import from "nettigo_air_monitor.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/nam/coordinator.py:8:5 - error: "InvalidSensorDataError" is not exported from module "nettigo_air_monitor" +   Import from "nettigo_air_monitor.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/nam/coordinator.py:9:5 - error: "NAMSensors" is not exported from module "nettigo_air_monitor" +   Import from "nettigo_air_monitor.model" instead (reportPrivateImportUsage) +/homeassistant/components/nam/sensor.py + /homeassistant/components/nam/sensor.py:10:33 - error: "NAMSensors" is not exported from module "nettigo_air_monitor" +   Import from "nettigo_air_monitor.model" instead (reportPrivateImportUsage) + /homeassistant/components/nam/sensor.py:415:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NAMSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nam/sensor.py:415:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NAMSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nam/sensor.py:418:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/nam/sensor.py:431:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/nanoleaf/__init__.py + /homeassistant/components/nanoleaf/__init__.py:73:28 - error: "touch_event_callback" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/nanoleaf/button.py + /homeassistant/components/nanoleaf/button.py:21:7 - error: Base classes for class "NanoleafIdentifyButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/nanoleaf/event.py + /homeassistant/components/nanoleaf/event.py:24:7 - error: Base classes for class "NanoleafGestureEvent" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/nanoleaf/light.py + /homeassistant/components/nanoleaf/light.py:36:7 - error: Base classes for class "NanoleafLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nanoleaf/light.py:52:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nanoleaf/light.py:62:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nanoleaf/light.py:73:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nanoleaf/light.py:78:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nanoleaf/light.py:83:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nanoleaf/light.py:88:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nasweb/alarm_control_panel.py + /homeassistant/components/nasweb/alarm_control_panel.py:83:7 - error: Base classes for class "ZoneEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nasweb/alarm_control_panel.py:83:7 - error: Base classes for class "ZoneEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nasweb/alarm_control_panel.py:83:7 - error: Base classes for class "ZoneEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nasweb/alarm_control_panel.py:83:7 - error: Base classes for class "ZoneEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nasweb/alarm_control_panel.py:124:34 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/nasweb/alarm_control_panel.py:144:9 - error: "supported_features" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/nasweb/alarm_control_panel.py:144:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nasweb/coordinator.py + /homeassistant/components/nasweb/coordinator.py:176:13 - error: Argument of type "HassJob[(now: datetime), CoroutineType[Any, Any, None]]" cannot be assigned to parameter "action" of type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" in function "async_call_at" +   Type "HassJob[(now: datetime), CoroutineType[Any, Any, None]]" is not assignable to type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" +     "HassJob[(now: datetime), CoroutineType[Any, Any, None]]" is not assignable to "HassJob[(datetime), Coroutine[Any, Any, None] | None]" +       Type parameter "_R_co@HassJob" is invariant, but "CoroutineType[Any, Any, None]" is not the same as "Coroutine[Any, Any, None] | None" +     Type "HassJob[(now: datetime), CoroutineType[Any, Any, None]]" is not assignable to type "(datetime) -> (Coroutine[Any, Any, None] | None)" (reportArgumentType) +/homeassistant/components/nasweb/sensor.py + /homeassistant/components/nasweb/sensor.py:88:7 - error: Base classes for class "BaseSensorEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nasweb/sensor.py:88:7 - error: Base classes for class "BaseSensorEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nasweb/sensor.py:88:7 - error: Base classes for class "BaseSensorEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nasweb/sensor.py:88:7 - error: Base classes for class "BaseSensorEntity" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nasweb/sensor.py:88:7 - error: Base classes for class "BaseSensorEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nasweb/sensor.py:88:7 - error: Base classes for class "BaseSensorEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nasweb/sensor.py:88:7 - error: Base classes for class "BaseSensorEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nasweb/sensor.py:88:7 - error: Base classes for class "BaseSensorEntity" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nasweb/sensor.py:126:5 - error: "_attr_options" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "list[str]" is not the same as base type "list[str] | None" (reportIncompatibleVariableOverride) + /homeassistant/components/nasweb/sensor.py:159:18 - error: "_attr_native_value" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "str | None" is not the same as base type "StateType | date | datetime | Decimal" (reportIncompatibleVariableOverride) +/homeassistant/components/nasweb/switch.py + /homeassistant/components/nasweb/switch.py:85:7 - error: Base classes for class "RelaySwitch" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nasweb/switch.py:85:7 - error: Base classes for class "RelaySwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nasweb/switch.py:85:7 - error: Base classes for class "RelaySwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nasweb/switch.py:85:7 - error: Base classes for class "RelaySwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/neato/api.py + /homeassistant/components/neato/api.py:31:9 - error: Method "refresh_tokens" overrides class "OAuthSession" in an incompatible manner +   Return type mismatch: base method returns type "dict[Unknown, Unknown]", override returns type "str" +     "str" is not assignable to "dict[Unknown, Unknown]" (reportIncompatibleMethodOverride) +/homeassistant/components/neato/button.py + /homeassistant/components/neato/button.py:28:7 - error: Base classes for class "NeatoDismissAlertButton" define variable "_attr_device_info" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/neato/camera.py + /homeassistant/components/neato/camera.py:49:7 - error: Base classes for class "NeatoCleaningMap" define variable "_attr_device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/neato/camera.py:94:26 - error: "map_data" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/neato/camera.py:114:30 - error: "map_data" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/neato/camera.py:118:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/neato/camera.py:123:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/neato/entity.py + /homeassistant/components/neato/entity.py:21:14 - error: "_attr_device_info" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DeviceInfo" is not the same as base type "DeviceInfo | None" (reportIncompatibleVariableOverride) +/homeassistant/components/neato/sensor.py + /homeassistant/components/neato/sensor.py:45:7 - error: Base classes for class "NeatoSensor" define variable "_attr_device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/neato/sensor.py:77:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/neato/switch.py + /homeassistant/components/neato/switch.py:51:7 - error: Base classes for class "NeatoConnectedSwitch" define variable "_attr_device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/neato/switch.py:94:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/neato/vacuum.py + /homeassistant/components/neato/vacuum.py:95:7 - error: Base classes for class "NeatoConnectedVacuum" define variable "_attr_device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/neato/vacuum.py:125:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/neato/vacuum.py:264:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/neato/vacuum.py:294:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/neato/vacuum.py:384:39 - error: Argument of type "str" cannot be assigned to parameter "mode" of type "int" in function "start_cleaning" +   "str" is not assignable to "int" (reportArgumentType) + /homeassistant/components/neato/vacuum.py:384:45 - error: Argument of type "str" cannot be assigned to parameter "navigation_mode" of type "int" in function "start_cleaning" +   "str" is not assignable to "int" (reportArgumentType) +/homeassistant/components/nederlandse_spoorwegen/sensor.py + /homeassistant/components/nederlandse_spoorwegen/sensor.py:129:7 - error: Base classes for class "NSDepartureSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nederlandse_spoorwegen/sensor.py:154:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nederlandse_spoorwegen/sensor.py:159:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/nederlandse_spoorwegen/sensor.py:171:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ness_alarm/alarm_control_panel.py + /homeassistant/components/ness_alarm/alarm_control_panel.py:74:35 - error: Argument of type "str | None" cannot be assigned to parameter "code" of type "str" in function "disarm" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/ness_alarm/alarm_control_panel.py:86:34 - error: Argument of type "str | None" cannot be assigned to parameter "code" of type "str" in function "panic" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/ness_alarm/alarm_control_panel.py:101:38 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/ness_alarm/alarm_control_panel.py:102:17 - error: Argument of type "ArmingMode | None" cannot be assigned to parameter "key" of type "ArmingMode" in function "get" +   Type "ArmingMode | None" is not assignable to type "ArmingMode" +     "None" is not assignable to "ArmingMode" (reportArgumentType) +/homeassistant/components/ness_alarm/binary_sensor.py + /homeassistant/components/ness_alarm/binary_sensor.py:68:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ness_alarm/binary_sensor.py:73:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ness_alarm/binary_sensor.py:78:9 - error: "device_class" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[BinarySensorDeviceClass | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nest/camera.py + /homeassistant/components/nest/camera.py:175:9 - error: "use_stream_for_stills" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/nest/climate.py + /homeassistant/components/nest/climate.py:119:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/nest/climate.py:131:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nest/climate.py:139:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nest/climate.py:147:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nest/climate.py:158:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nest/climate.py:167:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nest/climate.py:195:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nest/climate.py:205:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nest/climate.py:213:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nest/climate.py:221:9 - error: "preset_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nest/climate.py:232:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nest/climate.py:243:9 - error: "fan_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nest/event.py + /homeassistant/components/nest/event.py:37:5 - error: "event_types" overrides a field of the same name but is missing a default value (reportGeneralTypeIssues) + /homeassistant/components/nest/event.py:92:14 - error: "entity_description" overrides symbol of same name in class "EventEntity" +   Variable is mutable so its type is invariant +     Override type "NestEventEntityDescription" is not the same as base type "EventEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/nest/media_source.py + /homeassistant/components/nest/media_source.py:384:5 - error: "name" overrides symbol of same name in class "MediaSource" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/nest/sensor.py + /homeassistant/components/nest/sensor.py:64:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/nest/sensor.py:82:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/nest/sensor.py:98:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/netatmo/button.py + /homeassistant/components/netatmo/button.py:46:5 - error: "device" overrides symbol of same name in class "NetatmoModuleEntity" +   Variable is mutable so its type is invariant +     Override type "Shutter" is not the same as base type "Module" (reportIncompatibleVariableOverride) +/homeassistant/components/netatmo/camera.py + /homeassistant/components/netatmo/camera.py:91:5 - error: "device" overrides symbol of same name in class "NetatmoModuleEntity" +   Variable is mutable so its type is invariant +     Override type "Camera" is not the same as base type "Module" (reportIncompatibleVariableOverride) + /homeassistant/components/netatmo/camera.py:184:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/netatmo/camera.py:184:9 - error: "supported_features" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[CameraEntityFeature]" (reportIncompatibleVariableOverride) +/homeassistant/components/netatmo/climate.py + /homeassistant/components/netatmo/climate.py:330:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/netatmo/climate.py:406:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/netatmo/cover.py + /homeassistant/components/netatmo/cover.py:58:5 - error: "device" overrides symbol of same name in class "NetatmoModuleEntity" +   Variable is mutable so its type is invariant +     Override type "Shutter" is not the same as base type "Module" (reportIncompatibleVariableOverride) +/homeassistant/components/netatmo/entity.py + /homeassistant/components/netatmo/entity.py:193:45 - error: Cannot access attribute "place" for class "Module" +   Attribute "place" is unknown (reportAttributeAccessIssue) +/homeassistant/components/netatmo/fan.py + /homeassistant/components/netatmo/fan.py:53:5 - error: "device" overrides symbol of same name in class "NetatmoModuleEntity" +   Variable is mutable so its type is invariant +     Override type "Fan" is not the same as base type "Module" (reportIncompatibleVariableOverride) +/homeassistant/components/netatmo/light.py + /homeassistant/components/netatmo/light.py:70:5 - error: "device" overrides symbol of same name in class "NetatmoModuleEntity" +   Variable is mutable so its type is invariant +     Override type "NOC" is not the same as base type "Module" (reportIncompatibleVariableOverride) + /homeassistant/components/netatmo/light.py:125:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/netatmo/light.py:151:5 - error: "device" overrides symbol of same name in class "NetatmoModuleEntity" +   Variable is mutable so its type is invariant +     Override type "NLFN" is not the same as base type "Module" (reportIncompatibleVariableOverride) +/homeassistant/components/netatmo/media_source.py + /homeassistant/components/netatmo/media_source.py:38:5 - error: "name" overrides symbol of same name in class "MediaSource" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/netatmo/sensor.py + /homeassistant/components/netatmo/sensor.py:528:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NetatmoSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/netatmo/sensor.py:528:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NetatmoSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/netatmo/sensor.py:533:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/netatmo/sensor.py:556:5 - error: "device" overrides symbol of same name in class "NetatmoModuleEntity" +   Variable is mutable so its type is invariant +     Override type "NRV" is not the same as base type "Module" (reportIncompatibleVariableOverride) + /homeassistant/components/netatmo/sensor.py:562:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NetatmoSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/netatmo/sensor.py:562:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NetatmoSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/netatmo/sensor.py:608:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NetatmoSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/netatmo/sensor.py:608:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NetatmoSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/netatmo/sensor.py:653:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NetatmoSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/netatmo/sensor.py:653:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NetatmoSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/netatmo/sensor.py:693:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NetatmoPublicWeatherSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/netatmo/sensor.py:693:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NetatmoPublicWeatherSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/netatmo/switch.py + /homeassistant/components/netatmo/switch.py:46:5 - error: "device" overrides symbol of same name in class "NetatmoModuleEntity" +   Variable is mutable so its type is invariant +     Override type "Switch" is not the same as base type "Module" (reportIncompatibleVariableOverride) +/homeassistant/components/netdata/sensor.py + /homeassistant/components/netdata/sensor.py:7:21 - error: "Netdata" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/netdata/sensor.py:8:6 - error: Import "netdata.exceptions" could not be resolved (reportMissingImports) + /homeassistant/components/netdata/sensor.py:126:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/netdata/sensor.py:131:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/netdata/sensor.py:136:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/netdata/sensor.py:141:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/netdata/sensor.py:146:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/netdata/sensor.py:171:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/netdata/sensor.py:176:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/netdata/sensor.py:181:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/netdata/sensor.py:192:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/netgear/button.py + /homeassistant/components/netgear/button.py:54:7 - error: Base classes for class "NetgearRouterButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/netgear/button.py:67:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NetgearButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/netgear/button.py:67:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "NetgearButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/netgear/device_tracker.py + /homeassistant/components/netgear/device_tracker.py:53:7 - error: Base classes for class "NetgearScannerEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/netgear/device_tracker.py:87:9 - error: "ip_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/netgear/device_tracker.py:92:9 - error: "mac_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/netgear/device_tracker.py:97:9 - error: "hostname" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/netgear/device_tracker.py:102:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/netgear/router.py + /homeassistant/components/netgear/router.py:84:29 - error: Cannot assign to attribute "api" for class "NetgearRouter*" +   "None" is not assignable to "Netgear" (reportAttributeAccessIssue) +/homeassistant/components/netgear/sensor.py + /homeassistant/components/netgear/sensor.py:350:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/netgear/sensor.py:355:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/netgear/sensor.py:368:7 - error: Base classes for class "NetgearRouterSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/netgear/sensor.py:382:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NetgearSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/netgear/sensor.py:382:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NetgearSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/netgear/sensor.py:389:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/netgear/sensor.py:401:23 - error: "Never" is not awaitable (reportGeneralTypeIssues) +/homeassistant/components/netgear/switch.py + /homeassistant/components/netgear/switch.py:145:7 - error: Base classes for class "NetgearAllowBlock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/netgear/switch.py:197:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NetgearSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/netgear/switch.py:197:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "NetgearSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/netgear/update.py + /homeassistant/components/netgear/update.py:38:7 - error: Base classes for class "NetgearUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/netgear/update.py:54:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/netgear/update.py:61:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/netgear/update.py:72:9 - error: "release_summary" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/netgear_lte/__init__.py + /homeassistant/components/netgear_lte/__init__.py:76:32 - error: No parameter named "hostname" (reportCallIssue) + /homeassistant/components/netgear_lte/__init__.py:76:47 - error: No parameter named "websession" (reportCallIssue) +/homeassistant/components/netgear_lte/binary_sensor.py + /homeassistant/components/netgear_lte/binary_sensor.py:50:7 - error: Base classes for class "NetgearLTEBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/netgear_lte/binary_sensor.py:54:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/netgear_lte/config_flow.py + /homeassistant/components/netgear_lte/config_flow.py:66:13 - error: No parameter named "hostname" (reportCallIssue) + /homeassistant/components/netgear_lte/config_flow.py:67:13 - error: No parameter named "password" (reportCallIssue) + /homeassistant/components/netgear_lte/config_flow.py:68:13 - error: No parameter named "websession" (reportCallIssue) +/homeassistant/components/netgear_lte/sensor.py + /homeassistant/components/netgear_lte/sensor.py:136:7 - error: Base classes for class "NetgearLTESensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/netgear_lte/sensor.py:139:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NetgearLTESensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/netgear_lte/sensor.py:142:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/netio/switch.py + /homeassistant/components/netio/switch.py:10:6 - error: Import "pynetio" could not be resolved (reportMissingImports) + /homeassistant/components/netio/switch.py:151:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/netio/switch.py:156:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/netio/switch.py:177:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/network/__init__.py + /homeassistant/components/network/__init__.py:90:12 - error: Type "str | Unknown | None" is not assignable to return type "str" +   Type "str | Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportReturnType) +/homeassistant/components/neurio_energy/sensor.py + /homeassistant/components/neurio_energy/sensor.py:8:8 - error: Import "neurio" could not be resolved (reportMissingImports) + /homeassistant/components/neurio_energy/sensor.py:161:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/neurio_energy/sensor.py:166:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/neurio_energy/sensor.py:171:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nexia/binary_sensor.py + /homeassistant/components/nexia/binary_sensor.py:41:7 - error: Base classes for class "NexiaBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/binary_sensor.py:56:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nexia/climate.py + /homeassistant/components/nexia/climate.py:161:7 - error: Base classes for class "NexiaZone" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/climate.py:170:45 - error: Argument of type "str | int" cannot be assigned to parameter "unique_id" of type "str" in function "__init__" +   Type "str | int" is not assignable to type "str" +     "int" is not assignable to "str" (reportArgumentType) + /homeassistant/components/nexia/climate.py:187:35 - error: Cannot assign to attribute "_attr_min_humidity" for class "NexiaZone*" +   Type "Any | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportAttributeAccessIssue) + /homeassistant/components/nexia/climate.py:188:35 - error: Cannot assign to attribute "_attr_max_humidity" for class "NexiaZone*" +   Type "Any | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportAttributeAccessIssue) + /homeassistant/components/nexia/climate.py:202:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/climate.py:207:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/climate.py:228:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/climate.py:254:9 - error: "target_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/climate.py:278:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/climate.py:285:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/climate.py:296:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/climate.py:305:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/climate.py:314:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/climate.py:332:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/climate.py:368:17 - error: Operator "-" not supported for "None" (reportOptionalOperand) + /homeassistant/components/nexia/climate.py:375:17 - error: Operator "-" not supported for types "int | Any" and "int | Any | None" +   Operator "-" not supported for types "int" and "None" (reportOperatorIssue) + /homeassistant/components/nexia/climate.py:387:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nexia/config_flow.py + /homeassistant/components/nexia/config_flow.py:103:52 - error: "info" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/nexia/config_flow.py:105:54 - error: "info" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/nexia/coordinator.py + /homeassistant/components/nexia/coordinator.py:44:16 - error: Type "dict[str, Any] | None" is not assignable to return type "dict[str, Any]" +   Type "dict[str, Any] | None" is not assignable to type "dict[str, Any]" +     "None" is not assignable to "dict[str, Any]" (reportReturnType) +/homeassistant/components/nexia/entity.py + /homeassistant/components/nexia/entity.py:59:35 - error: Argument of type "set[tuple[Literal['nexia'], int | str]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]]" in function "__init__" +   Type "int | str" is not assignable to type "str" +     "int" is not assignable to "str" (reportArgumentType) + /homeassistant/components/nexia/entity.py:110:14 - error: Cannot assign to attribute "_attr_device_info" for class "NexiaThermostatZoneEntity*" +   Expression of type "dict[str, object]" cannot be assigned to attribute "_attr_device_info" of class "NexiaThermostatZoneEntity" +     Type "dict[str, object]" is not assignable to type "DeviceInfo | None" +       "dict[str, object]" is not assignable to "DeviceInfo" +       "dict[str, object]" is not assignable to "None" (reportAttributeAccessIssue) +/homeassistant/components/nexia/number.py + /homeassistant/components/nexia/number.py:39:7 - error: Base classes for class "NexiaFanSpeedEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/number.py:58:39 - error: Cannot assign to attribute "_attr_native_min_value" for class "NexiaFanSpeedEntity*" +   Type "Any | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportAttributeAccessIssue) + /homeassistant/components/nexia/number.py:59:39 - error: Cannot assign to attribute "_attr_native_max_value" for class "NexiaFanSpeedEntity*" +   Type "Any | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportAttributeAccessIssue) + /homeassistant/components/nexia/number.py:62:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/number.py:65:16 - error: Type "Any | None" is not assignable to return type "float" +   Type "Any | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportReturnType) +/homeassistant/components/nexia/scene.py + /homeassistant/components/nexia/scene.py:36:7 - error: Base classes for class "NexiaAutomationScene" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/scene.py:45:39 - error: Argument of type "int" cannot be assigned to parameter "unique_id" of type "str" in function "__init__" +   "int" is not assignable to "str" (reportArgumentType) +/homeassistant/components/nexia/sensor.py + /homeassistant/components/nexia/sensor.py:189:7 - error: Base classes for class "NexiaThermostatSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/sensor.py:218:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/sensor.py:228:7 - error: Base classes for class "NexiaThermostatZoneSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/sensor.py:258:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/nexia/switch.py + /homeassistant/components/nexia/switch.py:64:7 - error: Base classes for class "NexiaHoldSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/switch.py:74:45 - error: Argument of type "str | int" cannot be assigned to parameter "unique_id" of type "str" in function "__init__" +   Type "str | int" is not assignable to type "str" +     "int" is not assignable to "str" (reportArgumentType) + /homeassistant/components/nexia/switch.py:77:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/switch.py:95:7 - error: Base classes for class "NexiaRoomIQSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/switch.py:117:13 - error: Argument of type "str | int" cannot be assigned to parameter "key" of type "int" in function "__setitem__" +   Type "str | int" is not assignable to type "int" +     "str" is not assignable to "int" (reportArgumentType) + /homeassistant/components/nexia/switch.py:120:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/switch.py:138:7 - error: Base classes for class "NexiaEmergencyHeatSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nexia/switch.py:154:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nextbus/coordinator.py + /homeassistant/components/nextbus/coordinator.py:118:29 - error: Argument of type "StopPrediction" cannot be assigned to parameter "value" of type "dict[str, Any]" in function "__setitem__" +   "StopPrediction" is not assignable to "dict[str, Any]" (reportArgumentType) +/homeassistant/components/nextbus/sensor.py + /homeassistant/components/nextbus/sensor.py:50:7 - error: Base classes for class "NextBusDepartureSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/nextcloud/binary_sensor.py + /homeassistant/components/nextcloud/binary_sensor.py:68:7 - error: Base classes for class "NextcloudBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nextcloud/binary_sensor.py:72:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nextcloud/sensor.py + /homeassistant/components/nextcloud/sensor.py:616:7 - error: Base classes for class "NextcloudSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nextcloud/sensor.py:619:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NextcloudSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nextcloud/sensor.py:622:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/nextcloud/update.py + /homeassistant/components/nextcloud/update.py:31:7 - error: Base classes for class "NextcloudUpdateSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nextcloud/update.py:35:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nextcloud/update.py:40:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nextcloud/update.py:47:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nextdns/__init__.py + /homeassistant/components/nextdns/__init__.py:10:5 - error: "AnalyticsDnssec" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/__init__.py:11:5 - error: "AnalyticsEncryption" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/__init__.py:12:5 - error: "AnalyticsIpVersions" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/__init__.py:13:5 - error: "AnalyticsProtocols" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/__init__.py:14:5 - error: "AnalyticsStatus" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/__init__.py:15:5 - error: "ApiError" is not exported from module "nextdns" +   Import from "nextdns.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/__init__.py:16:5 - error: "ConnectionStatus" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/__init__.py:17:5 - error: "InvalidApiKeyError" is not exported from module "nextdns" +   Import from "nextdns.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/__init__.py:19:5 - error: "Settings" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) +/homeassistant/components/nextdns/binary_sensor.py + /homeassistant/components/nextdns/binary_sensor.py:8:21 - error: "ConnectionStatus" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/binary_sensor.py:63:7 - error: Base classes for class "NextDnsBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nextdns/binary_sensor.py:66:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "NextDnsBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nextdns/binary_sensor.py:69:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nextdns/button.py + /homeassistant/components/nextdns/button.py:7:21 - error: "ApiError" is not exported from module "nextdns" +   Import from "nextdns.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/button.py:7:31 - error: "InvalidApiKeyError" is not exported from module "nextdns" +   Import from "nextdns.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/button.py:40:7 - error: Base classes for class "NextDnsButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/nextdns/config_flow.py + /homeassistant/components/nextdns/config_flow.py:10:21 - error: "ApiError" is not exported from module "nextdns" +   Import from "nextdns.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/config_flow.py:10:31 - error: "InvalidApiKeyError" is not exported from module "nextdns" +   Import from "nextdns.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/nextdns/coordinator.py + /homeassistant/components/nextdns/coordinator.py:11:5 - error: "AnalyticsDnssec" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/coordinator.py:12:5 - error: "AnalyticsEncryption" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/coordinator.py:13:5 - error: "AnalyticsIpVersions" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/coordinator.py:14:5 - error: "AnalyticsProtocols" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/coordinator.py:15:5 - error: "AnalyticsStatus" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/coordinator.py:16:5 - error: "ApiError" is not exported from module "nextdns" +   Import from "nextdns.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/coordinator.py:17:5 - error: "ConnectionStatus" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/coordinator.py:18:5 - error: "InvalidApiKeyError" is not exported from module "nextdns" +   Import from "nextdns.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/coordinator.py:20:5 - error: "Settings" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) +/homeassistant/components/nextdns/sensor.py + /homeassistant/components/nextdns/sensor.py:9:5 - error: "AnalyticsDnssec" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/sensor.py:10:5 - error: "AnalyticsEncryption" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/sensor.py:11:5 - error: "AnalyticsIpVersions" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/sensor.py:12:5 - error: "AnalyticsProtocols" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/sensor.py:13:5 - error: "AnalyticsStatus" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/sensor.py:299:7 - error: Base classes for class "NextDnsSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nextdns/sensor.py:304:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NextDnsSensorEntityDescription[CoordinatorDataT@NextDnsSensor]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nextdns/sensor.py:307:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/nextdns/switch.py + /homeassistant/components/nextdns/switch.py:11:21 - error: "ApiError" is not exported from module "nextdns" +   Import from "nextdns.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/switch.py:11:31 - error: "InvalidApiKeyError" is not exported from module "nextdns" +   Import from "nextdns.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/switch.py:11:51 - error: "Settings" is not exported from module "nextdns" +   Import from "nextdns.model" instead (reportPrivateImportUsage) + /homeassistant/components/nextdns/switch.py:545:7 - error: Base classes for class "NextDnsSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nextdns/switch.py:548:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "NextDnsSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/nibe_heatpump/__init__.py + /homeassistant/components/nibe_heatpump/__init__.py:7:44 - error: "ProductInfo" is not exported from module "nibe.connection.nibegw" +   Import from "nibe.heatpump" instead (reportPrivateImportUsage) + /homeassistant/components/nibe_heatpump/__init__.py:105:20 - error: Cannot access attribute "subscribe" for class "Modbus" +   Attribute "subscribe" is unknown (reportAttributeAccessIssue) + /homeassistant/components/nibe_heatpump/__init__.py:105:41 - error: Cannot access attribute "PRODUCT_INFO_EVENT" for class "Modbus" +   Attribute "PRODUCT_INFO_EVENT" is unknown (reportAttributeAccessIssue) +/homeassistant/components/nibe_heatpump/binary_sensor.py + /homeassistant/components/nibe_heatpump/binary_sensor.py:34:7 - error: Base classes for class "BinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/nibe_heatpump/button.py + /homeassistant/components/nibe_heatpump/button.py:60:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/nibe_heatpump/climate.py + /homeassistant/components/nibe_heatpump/climate.py:190:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/nibe_heatpump/number.py + /homeassistant/components/nibe_heatpump/number.py:43:7 - error: Base classes for class "Number" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/nibe_heatpump/select.py + /homeassistant/components/nibe_heatpump/select.py:34:7 - error: Base classes for class "Select" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/nibe_heatpump/sensor.py + /homeassistant/components/nibe_heatpump/sensor.py:202:7 - error: Base classes for class "Sensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/nibe_heatpump/switch.py + /homeassistant/components/nibe_heatpump/switch.py:36:7 - error: Base classes for class "Switch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/nibe_heatpump/water_heater.py + /homeassistant/components/nibe_heatpump/water_heater.py:169:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/nice_go/coordinator.py + /homeassistant/components/nice_go/coordinator.py:159:25 - error: Argument of type "Any | str | None" cannot be assigned to parameter "refresh_token" of type "str" in function "authenticate_refresh" +   Type "Any | str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/nice_go/cover.py + /homeassistant/components/nice_go/cover.py:39:7 - error: Base classes for class "NiceGOCoverEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nice_go/cover.py:46:9 - error: "device_class" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nice_go/cover.py:46:9 - error: "device_class" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[CoverDeviceClass | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nice_go/cover.py:51:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nice_go/cover.py:61:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nice_go/cover.py:66:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nice_go/cover.py:71:15 - error: Method "async_close_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/nice_go/cover.py:79:15 - error: Method "async_open_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/nice_go/event.py + /homeassistant/components/nice_go/event.py:34:7 - error: Base classes for class "NiceGOEventEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/nice_go/light.py + /homeassistant/components/nice_go/light.py:48:7 - error: Base classes for class "NiceGOLightEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nice_go/light.py:56:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nice_go/light.py:63:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/nice_go/light.py:69:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/nice_go/switch.py + /homeassistant/components/nice_go/switch.py:51:7 - error: Base classes for class "NiceGOSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nice_go/switch.py:58:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nice_go/switch.py:65:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/nice_go/switch.py:71:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/nightscout/__init__.py + /homeassistant/components/nightscout/__init__.py:39:21 - error: Cannot access attribute "name" for class "ServerStatus" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/nightscout/__init__.py:40:27 - error: Cannot access attribute "version" for class "ServerStatus" +   Attribute "version" is unknown (reportAttributeAccessIssue) +/homeassistant/components/nightscout/config_flow.py + /homeassistant/components/nightscout/config_flow.py:29:19 - error: Cannot access attribute "settings" for class "ServerStatus" +   Attribute "settings" is unknown (reportAttributeAccessIssue) + /homeassistant/components/nightscout/config_flow.py:37:29 - error: Cannot access attribute "name" for class "ServerStatus" +   Attribute "name" is unknown (reportAttributeAccessIssue) +/homeassistant/components/niko_home_control/climate.py + /homeassistant/components/niko_home_control/climate.py:44:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ClimateEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/niko_home_control/climate.py:97:38 - error: Argument of type "str | int" cannot be assigned to parameter "key" of type "int" in function "__getitem__" +   Type "str | int" is not assignable to type "int" +     "str" is not assignable to "int" (reportArgumentType) +/homeassistant/components/niko_home_control/cover.py + /homeassistant/components/niko_home_control/cover.py:35:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "CoverEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/niko_home_control/cover.py:35:5 - error: "_attr_supported_features" overrides symbol of same name in class "CoverEntity" +   Variable is mutable so its type is invariant +     Override type "CoverEntityFeature" is not the same as base type "CoverEntityFeature | None" (reportIncompatibleVariableOverride) +/homeassistant/components/niko_home_control/light.py + /homeassistant/components/niko_home_control/light.py:52:37 - error: Cannot assign to attribute "_attr_brightness" for class "NikoHomeControlLight*" +   Type "str | int" is not assignable to type "int | None" +     Type "str" is not assignable to type "int | None" +       "str" is not assignable to "int" +       "str" is not assignable to "None" (reportAttributeAccessIssue) + /homeassistant/components/niko_home_control/light.py:65:28 - error: Operator ">" not supported for types "str | int" and "Literal[0]" +   Operator ">" not supported for types "str" and "Literal[0]" when expected type is "bool | None" (reportOperatorIssue) + /homeassistant/components/niko_home_control/light.py:67:37 - error: Cannot assign to attribute "_attr_brightness" for class "NikoHomeControlLight*" +   Type "str | int" is not assignable to type "int | None" +     Type "str" is not assignable to type "int | None" +       "str" is not assignable to "int" +       "str" is not assignable to "None" (reportAttributeAccessIssue) +/homeassistant/components/niko_home_control/scene.py + /homeassistant/components/niko_home_control/scene.py:36:28 - error: Cannot access attribute "activate" for class "NHCAction" +   Attribute "activate" is unknown (reportAttributeAccessIssue) +/homeassistant/components/nilu/air_quality.py + /homeassistant/components/nilu/air_quality.py:8:6 - error: Import "niluclient" could not be resolved (reportMissingImports) + /homeassistant/components/nilu/air_quality.py:193:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nilu/air_quality.py:198:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nina/binary_sensor.py + /homeassistant/components/nina/binary_sensor.py:58:7 - error: Base classes for class "NINAMessage" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nina/binary_sensor.py:87:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nina/binary_sensor.py:97:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nintendo_parental_controls/__init__.py + /homeassistant/components/nintendo_parental_controls/__init__.py:5:32 - error: "Authenticator" is not exported from module "pynintendoparental" +   Import from "pynintendoparental.authenticator" instead (reportPrivateImportUsage) +/homeassistant/components/nintendo_parental_controls/config_flow.py + /homeassistant/components/nintendo_parental_controls/config_flow.py:9:32 - error: "Authenticator" is not exported from module "pynintendoparental" +   Import from "pynintendoparental.authenticator" instead (reportPrivateImportUsage) +/homeassistant/components/nintendo_parental_controls/coordinator.py + /homeassistant/components/nintendo_parental_controls/coordinator.py:8:32 - error: "Authenticator" is not exported from module "pynintendoparental" +   Import from "pynintendoparental.authenticator" instead (reportPrivateImportUsage) +/homeassistant/components/nintendo_parental_controls/number.py + /homeassistant/components/nintendo_parental_controls/number.py:69:7 - error: Base classes for class "NintendoParentalControlsNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nintendo_parental_controls/number.py:82:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NintendoParentalControlsNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nintendo_parental_controls/number.py:82:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "NintendoParentalControlsNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nintendo_parental_controls/number.py:85:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nintendo_parental_controls/sensor.py + /homeassistant/components/nintendo_parental_controls/sensor.py:73:7 - error: Base classes for class "NintendoParentalControlsSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nintendo_parental_controls/sensor.py:86:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NintendoParentalControlsSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nintendo_parental_controls/sensor.py:86:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NintendoParentalControlsSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nintendo_parental_controls/sensor.py:89:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/nintendo_parental_controls/services.py + /homeassistant/components/nintendo_parental_controls/services.py:68:8 - error: "config_entry" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/nintendo_parental_controls/switch.py + /homeassistant/components/nintendo_parental_controls/switch.py:68:7 - error: Base classes for class "NintendoParentalControlsSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nintendo_parental_controls/switch.py:81:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NintendoParentalControlsSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nintendo_parental_controls/switch.py:81:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "NintendoParentalControlsSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nintendo_parental_controls/switch.py:84:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nintendo_parental_controls/time.py + /homeassistant/components/nintendo_parental_controls/time.py:66:7 - error: Base classes for class "NintendoParentalControlsTimeEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nintendo_parental_controls/time.py:79:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NintendoParentalControlsTimeEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nintendo_parental_controls/time.py:79:14 - error: "entity_description" overrides symbol of same name in class "TimeEntity" +   Variable is mutable so its type is invariant +     Override type "NintendoParentalControlsTimeEntityDescription" is not the same as base type "TimeEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nintendo_parental_controls/time.py:82:9 - error: "native_value" overrides symbol of same name in class "TimeEntity" +   "property" is not assignable to "cached_property[time | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nissan_leaf/__init__.py + /homeassistant/components/nissan_leaf/__init__.py:12:6 - error: Import "pycarwings2" could not be resolved (reportMissingImports) + /homeassistant/components/nissan_leaf/__init__.py:13:6 - error: Import "pycarwings2.responses" could not be resolved (reportMissingImports) +/homeassistant/components/nissan_leaf/binary_sensor.py + /homeassistant/components/nissan_leaf/binary_sensor.py:41:7 - error: Base classes for class "LeafPluggedInSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nissan_leaf/binary_sensor.py:52:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nissan_leaf/binary_sensor.py:57:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/nissan_leaf/binary_sensor.py:62:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nissan_leaf/binary_sensor.py:67:7 - error: Base classes for class "LeafChargingSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nissan_leaf/binary_sensor.py:78:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nissan_leaf/binary_sensor.py:83:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/nissan_leaf/binary_sensor.py:88:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nissan_leaf/button.py + /homeassistant/components/nissan_leaf/button.py:36:7 - error: Base classes for class "LeafChargingButton" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nissan_leaf/button.py:42:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nissan_leaf/button.py:47:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/nissan_leaf/entity.py + /homeassistant/components/nissan_leaf/entity.py:34:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nissan_leaf/sensor.py + /homeassistant/components/nissan_leaf/sensor.py:49:7 - error: Base classes for class "LeafBatterySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nissan_leaf/sensor.py:61:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nissan_leaf/sensor.py:66:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/nissan_leaf/sensor.py:73:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nissan_leaf/sensor.py:79:7 - error: Base classes for class "LeafRangeSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nissan_leaf/sensor.py:94:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nissan_leaf/sensor.py:108:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/nissan_leaf/sensor.py:127:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nissan_leaf/switch.py + /homeassistant/components/nissan_leaf/switch.py:47:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nissan_leaf/switch.py:59:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nissan_leaf/switch.py:66:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nmap_tracker/__init__.py + /homeassistant/components/nmap_tracker/__init__.py:131:24 - error: "new_options" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/nmap_tracker/device_tracker.py + /homeassistant/components/nmap_tracker/device_tracker.py:74:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nmap_tracker/device_tracker.py:84:9 - error: "ip_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nmap_tracker/device_tracker.py:89:9 - error: "mac_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nmap_tracker/device_tracker.py:94:9 - error: "hostname" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nmap_tracker/device_tracker.py:106:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nmbs/sensor.py + /homeassistant/components/nmbs/sensor.py:84:48 - error: Argument of type "Any | None" cannot be assigned to parameter "station_from" of type "StationDetails" in function "__init__" +   Type "Any | None" is not assignable to type "StationDetails" +     "None" is not assignable to "StationDetails" (reportArgumentType) + /homeassistant/components/nmbs/sensor.py:84:62 - error: Argument of type "Any | None" cannot be assigned to parameter "station_to" of type "StationDetails" in function "__init__" +   Type "Any | None" is not assignable to type "StationDetails" +     "None" is not assignable to "StationDetails" (reportArgumentType) + /homeassistant/components/nmbs/sensor.py:87:29 - error: Argument of type "Any | None" cannot be assigned to parameter "live_station" of type "StationDetails" in function "__init__" +   Type "Any | None" is not assignable to type "StationDetails" +     "None" is not assignable to "StationDetails" (reportArgumentType) + /homeassistant/components/nmbs/sensor.py:87:43 - error: Argument of type "Any | None" cannot be assigned to parameter "station_from" of type "StationDetails" in function "__init__" +   Type "Any | None" is not assignable to type "StationDetails" +     "None" is not assignable to "StationDetails" (reportArgumentType) + /homeassistant/components/nmbs/sensor.py:87:57 - error: Argument of type "Any | None" cannot be assigned to parameter "station_to" of type "StationDetails" in function "__init__" +   Type "Any | None" is not assignable to type "StationDetails" +     "None" is not assignable to "StationDetails" (reportArgumentType) + /homeassistant/components/nmbs/sensor.py:89:39 - error: Argument of type "Any | None" cannot be assigned to parameter "live_station" of type "StationDetails" in function "__init__" +   Type "Any | None" is not assignable to type "StationDetails" +     "None" is not assignable to "StationDetails" (reportArgumentType) + /homeassistant/components/nmbs/sensor.py:89:51 - error: Argument of type "Any | None" cannot be assigned to parameter "station_from" of type "StationDetails" in function "__init__" +   Type "Any | None" is not assignable to type "StationDetails" +     "None" is not assignable to "StationDetails" (reportArgumentType) + /homeassistant/components/nmbs/sensor.py:89:65 - error: Argument of type "Any | None" cannot be assigned to parameter "station_to" of type "StationDetails" in function "__init__" +   Type "Any | None" is not assignable to type "StationDetails" +     "None" is not assignable to "StationDetails" (reportArgumentType) + /homeassistant/components/nmbs/sensor.py:121:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nmbs/sensor.py:126:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nmbs/sensor.py:134:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nmbs/sensor.py:142:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/nmbs/sensor.py:147:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nmbs/sensor.py:218:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nmbs/sensor.py:226:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nmbs/sensor.py:233:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nmbs/sensor.py:243:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nmbs/sensor.py:259:9 - error: Argument of type "bool" cannot be assigned to parameter "value" of type "str" in function "__setitem__" +   "bool" is not assignable to "str" (reportArgumentType) + /homeassistant/components/nmbs/sensor.py:261:13 - error: Argument of type "None" cannot be assigned to parameter "value" of type "str" in function "__setitem__" +   "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/nmbs/sensor.py:262:13 - error: Argument of type "None" cannot be assigned to parameter "value" of type "str" in function "__setitem__" +   "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/nmbs/sensor.py:265:13 - error: Argument of type "int" cannot be assigned to parameter "value" of type "str" in function "__setitem__" +   "int" is not assignable to "str" (reportArgumentType) + /homeassistant/components/nmbs/sensor.py:268:13 - error: Argument of type "float" cannot be assigned to parameter "value" of type "str" in function "__setitem__" +   "float" is not assignable to "str" (reportArgumentType) + /homeassistant/components/nmbs/sensor.py:269:13 - error: Argument of type "float" cannot be assigned to parameter "value" of type "str" in function "__setitem__" +   "float" is not assignable to "str" (reportArgumentType) + /homeassistant/components/nmbs/sensor.py:272:19 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/nmbs/sensor.py:287:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/noaa_tides/sensor.py + /homeassistant/components/noaa_tides/sensor.py:9:8 - error: Import "noaa_coops" could not be resolved (reportMissingImports) + /homeassistant/components/noaa_tides/sensor.py:113:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/noaa_tides/sensor.py:118:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/noaa_tides/sensor.py:144:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/nordpool/sensor.py + /homeassistant/components/nordpool/sensor.py:321:7 - error: Base classes for class "NordpoolSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nordpool/sensor.py:324:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NordpoolDefaultSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nordpool/sensor.py:327:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/nordpool/sensor.py:332:7 - error: Base classes for class "NordpoolPriceSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nordpool/sensor.py:335:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NordpoolPricesSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nordpool/sensor.py:349:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/nordpool/sensor.py:354:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nordpool/sensor.py:359:7 - error: Base classes for class "NordpoolBlockPriceSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nordpool/sensor.py:362:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NordpoolBlockPricesSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nordpool/sensor.py:381:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/nordpool/sensor.py:388:7 - error: Base classes for class "NordpoolDailyAveragePriceSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nordpool/sensor.py:405:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/norway_air/air_quality.py + /homeassistant/components/norway_air/air_quality.py:97:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/norway_air/air_quality.py:105:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/notify/__init__.py + /homeassistant/components/notify/__init__.py:132:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NotifyEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/notify/__init__.py:133:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NotifyEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/notify/__init__.py:135:5 - error: "_attr_device_class" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/notify/__init__.py:136:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) +/homeassistant/components/notify_events/notify.py + /homeassistant/components/notify_events/notify.py:76:61 - error: Argument of type "Unknown | None" cannot be assigned to parameter "file_name" of type "str" in function "add_image_from_url" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/notify_events/notify.py:76:72 - error: Argument of type "Unknown | None" cannot be assigned to parameter "mime_type" of type "str" in function "add_image_from_url" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/notify_events/notify.py:78:60 - error: Argument of type "Unknown | None" cannot be assigned to parameter "file_name" of type "str" in function "add_file_from_url" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/notify_events/notify.py:78:71 - error: Argument of type "Unknown | None" cannot be assigned to parameter "mime_type" of type "str" in function "add_file_from_url" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/notify_events/notify.py:82:46 - error: Argument of type "Unknown | None" cannot be assigned to parameter "file_name" of type "str" in function "add_image_from_content" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/notify_events/notify.py:82:57 - error: Argument of type "Unknown | None" cannot be assigned to parameter "mime_type" of type "str" in function "add_image_from_content" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/notify_events/notify.py:85:68 - error: Argument of type "Unknown | None" cannot be assigned to parameter "file_name" of type "str" in function "add_file_from_content" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/notify_events/notify.py:85:79 - error: Argument of type "Unknown | None" cannot be assigned to parameter "mime_type" of type "str" in function "add_file_from_content" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/notify_events/notify.py:91:57 - error: Argument of type "Unknown | None" cannot be assigned to parameter "file_name" of type "str" in function "add_image" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/notify_events/notify.py:91:68 - error: Argument of type "Unknown | None" cannot be assigned to parameter "mime_type" of type "str" in function "add_image" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/notify_events/notify.py:93:56 - error: Argument of type "Unknown | None" cannot be assigned to parameter "file_name" of type "str" in function "add_file" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/notify_events/notify.py:93:67 - error: Argument of type "Unknown | None" cannot be assigned to parameter "mime_type" of type "str" in function "add_file" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/notion/binary_sensor.py + /homeassistant/components/notion/binary_sensor.py:134:7 - error: Base classes for class "NotionBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/notion/binary_sensor.py:137:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "NotionBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/notion/binary_sensor.py:140:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/notion/config_flow.py + /homeassistant/components/notion/config_flow.py:62:19 - error: "client" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/notion/config_flow.py:62:51 - error: "client" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/notion/coordinator.py + /homeassistant/components/notion/coordinator.py:159:29 - error: "bridges" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/notion/coordinator.py:160:31 - error: "listeners" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/notion/coordinator.py:161:29 - error: "sensors" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/notion/coordinator.py:162:38 - error: "user_preferences" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/notion/sensor.py + /homeassistant/components/notion/sensor.py:69:7 - error: Base classes for class "NotionSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/notion/sensor.py:73:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/notion/sensor.py:84:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/notion/util.py + /homeassistant/components/notion/util.py:4:5 - error: "async_get_client_with_credentials" is not exported from module "aionotion" +   Import from "aionotion.client" instead (reportPrivateImportUsage) + /homeassistant/components/notion/util.py:5:5 - error: "async_get_client_with_refresh_token" is not exported from module "aionotion" +   Import from "aionotion.client" instead (reportPrivateImportUsage) +/homeassistant/components/nsw_fuel_station/__init__.py + /homeassistant/components/nsw_fuel_station/__init__.py:64:20 - error: Argument of type "dict[tuple[int | None, str], float]" cannot be assigned to parameter "prices" of type "dict[tuple[int, str], float]" in function "__init__" (reportArgumentType) +/homeassistant/components/nsw_fuel_station/sensor.py + /homeassistant/components/nsw_fuel_station/sensor.py:89:7 - error: Base classes for class "StationPriceSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nsw_fuel_station/sensor.py:109:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nsw_fuel_station/sensor.py:115:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/nsw_fuel_station/sensor.py:124:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nsw_fuel_station/sensor.py:132:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nsw_fuel_station/sensor.py:148:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nsw_rural_fire_service_feed/geo_location.py + /homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:166:16 - error: Type "FeedEntry | None" is not assignable to return type "NswRuralFireServiceIncidentsFeedEntry | None" +   Type "FeedEntry | None" is not assignable to type "NswRuralFireServiceIncidentsFeedEntry | None" +     Type "FeedEntry" is not assignable to type "NswRuralFireServiceIncidentsFeedEntry | None" +       "FeedEntry" is not assignable to "NswRuralFireServiceIncidentsFeedEntry" +       "FeedEntry" is not assignable to "None" (reportReturnType) + /homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:249:31 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:250:32 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:263:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:270:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ntfy/event.py + /homeassistant/components/ntfy/event.py:169:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ntfy/notify.py + /homeassistant/components/ntfy/notify.py:54:43 - error: Argument missing for parameter "v" (reportCallIssue) + /homeassistant/components/ntfy/notify.py:59:44 - error: Argument missing for parameter "v" (reportCallIssue) + /homeassistant/components/ntfy/notify.py:60:35 - error: Argument missing for parameter "v" (reportCallIssue) + /homeassistant/components/ntfy/notify.py:62:42 - error: Argument missing for parameter "v" (reportCallIssue) +/homeassistant/components/ntfy/sensor.py + /homeassistant/components/ntfy/sensor.py:243:7 - error: Base classes for class "NtfySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ntfy/sensor.py:258:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NtfySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ntfy/sensor.py:258:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NtfySensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ntfy/sensor.py:269:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/nuheat/climate.py + /homeassistant/components/nuheat/climate.py:93:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuheat/climate.py:101:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuheat/climate.py:109:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuheat/climate.py:121:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuheat/climate.py:128:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuheat/climate.py:133:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuheat/climate.py:141:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuheat/climate.py:149:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuheat/climate.py:157:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuheat/climate.py:251:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nuheat/config_flow.py + /homeassistant/components/nuheat/config_flow.py:87:48 - error: "info" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/nuheat/config_flow.py:89:54 - error: "info" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/nuki/binary_sensor.py + /homeassistant/components/nuki/binary_sensor.py:45:7 - error: Base classes for class "NukiDoorsensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/binary_sensor.py:53:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/binary_sensor.py:58:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/binary_sensor.py:60:56 - error: Cannot access attribute "is_door_sensor_activated" for class "NukiDevice" +   Attribute "is_door_sensor_activated" is unknown (reportAttributeAccessIssue) + /homeassistant/components/nuki/binary_sensor.py:73:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/binary_sensor.py:78:7 - error: Base classes for class "NukiRingactionEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/binary_sensor.py:78:7 - error: Base classes for class "NukiRingactionEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/binary_sensor.py:85:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/binary_sensor.py:90:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/binary_sensor.py:92:34 - error: Cannot access attribute "ring_action_state" for class "NukiDevice" +   Attribute "ring_action_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/nuki/binary_sensor.py:95:7 - error: Base classes for class "NukiBatteryCriticalEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/binary_sensor.py:95:7 - error: Base classes for class "NukiBatteryCriticalEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/binary_sensor.py:103:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/binary_sensor.py:108:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/binary_sensor.py:113:7 - error: Base classes for class "NukiBatteryChargingEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/binary_sensor.py:113:7 - error: Base classes for class "NukiBatteryChargingEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/binary_sensor.py:122:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/binary_sensor.py:127:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/binary_sensor.py:129:34 - error: Cannot access attribute "battery_charging" for class "NukiDevice" +   Attribute "battery_charging" is unknown (reportAttributeAccessIssue) +/homeassistant/components/nuki/config_flow.py + /homeassistant/components/nuki/config_flow.py:132:26 - error: "info" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/nuki/config_flow.py:171:38 - error: "info" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/nuki/coordinator.py + /homeassistant/components/nuki/coordinator.py:65:32 - error: Argument of type "tuple[list[NukiOpener | NukiLock]]" cannot be assigned to parameter "args" of type "_Ts@async_add_executor_job" in function "async_add_executor_job" +   Type "*tuple[list[NukiOpener | NukiLock]]" is not assignable to type "*tuple[list[NukiDevice]]" +     "*tuple[list[NukiOpener | NukiLock]]" is not assignable to "*tuple[list[NukiDevice]]" +       Tuple entry 1 is incorrect type +         "list[NukiOpener | NukiLock]" is not assignable to "list[NukiDevice]" +           Type parameter "_T@list" is invariant, but "NukiOpener | NukiLock" is not the same as "NukiDevice" +           Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) +/homeassistant/components/nuki/entity.py + /homeassistant/components/nuki/entity.py:32:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nuki/lock.py + /homeassistant/components/nuki/lock.py:61:7 - error: Base classes for class "NukiDeviceEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/lock.py:70:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/lock.py:75:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/lock.py:96:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/lock.py:137:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nuki/sensor.py + /homeassistant/components/nuki/sensor.py:31:7 - error: Base classes for class "NukiBatterySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/sensor.py:31:7 - error: Base classes for class "NukiBatterySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/sensor.py:40:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/sensor.py:45:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/nuki/sensor.py:47:34 - error: Cannot access attribute "battery_charge" for class "NukiDevice" +   Attribute "battery_charge" is unknown (reportAttributeAccessIssue) +/homeassistant/components/numato/binary_sensor.py + /homeassistant/components/numato/binary_sensor.py:124:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/number/__init__.py + /homeassistant/components/number/__init__.py:189:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/number/__init__.py:190:5 - error: "_attr_device_class" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NumberDeviceClass | None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/number/__init__.py:194:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) + /homeassistant/components/number/__init__.py:196:5 - error: "_attr_unit_of_measurement" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/number/__init__.py:243:9 - error: "capability_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/number/__init__.py:358:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/number/__init__.py:386:9 - error: "unit_of_measurement" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/number/__init__.py:472:36 - error: Argument of type "NumberDeviceClass | None" cannot be assigned to parameter "key" of type "NumberDeviceClass" in function "__getitem__" +   Type "NumberDeviceClass | None" is not assignable to type "NumberDeviceClass" +     "None" is not assignable to "NumberDeviceClass" (reportArgumentType) + /homeassistant/components/number/__init__.py:496:20 - error: Argument of type "NumberDeviceClass | None" cannot be assigned to parameter "key" of type "NumberDeviceClass" in function "__getitem__" +   Type "NumberDeviceClass | None" is not assignable to type "NumberDeviceClass" +     "None" is not assignable to "NumberDeviceClass" (reportArgumentType) + /homeassistant/components/number/__init__.py:513:16 - error: Argument of type "NumberDeviceClass | None" cannot be assigned to parameter "key" of type "NumberDeviceClass" in function "__getitem__" +   Type "NumberDeviceClass | None" is not assignable to type "NumberDeviceClass" +     "None" is not assignable to "NumberDeviceClass" (reportArgumentType) + /homeassistant/components/number/__init__.py:514:32 - error: Argument of type "NumberDeviceClass | None" cannot be assigned to parameter "key" of type "NumberDeviceClass" in function "__getitem__" +   Type "NumberDeviceClass | None" is not assignable to type "NumberDeviceClass" +     "None" is not assignable to "NumberDeviceClass" (reportArgumentType) + /homeassistant/components/number/__init__.py:551:7 - error: Base classes for class "RestoreNumber" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/number/__init__.py:551:7 - error: Base classes for class "RestoreNumber" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/number/__init__.py:551:7 - error: Base classes for class "RestoreNumber" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/number/__init__.py:551:7 - error: Base classes for class "RestoreNumber" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/number/__init__.py:551:7 - error: Base classes for class "RestoreNumber" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/number/__init__.py:551:7 - error: Base classes for class "RestoreNumber" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/number/__init__.py:551:7 - error: Base classes for class "RestoreNumber" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/nut/button.py + /homeassistant/components/nut/button.py:60:7 - error: Base classes for class "NUTButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/nut/sensor.py + /homeassistant/components/nut/sensor.py:1137:7 - error: Base classes for class "NUTSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nut/sensor.py:1141:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/nut/switch.py + /homeassistant/components/nut/switch.py:66:7 - error: Base classes for class "NUTSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nut/switch.py:70:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nws/__init__.py + /homeassistant/components/nws/__init__.py:76:21 - error: Argument of type "(*, raise_no_data: bool = False) -> CoroutineType[Any, Any, None]" cannot be assigned to parameter "func" of type "(Any, Any) -> Awaitable[Any]" in function "call_with_retry" +   Type "(*, raise_no_data: bool = False) -> CoroutineType[Any, Any, None]" is not assignable to type "(Any, Any) -> Awaitable[Any]" +     Function accepts too many positional parameters; expected 0 but received 2 (reportArgumentType) + /homeassistant/components/nws/__init__.py:94:21 - error: Argument of type "(*, raise_no_data: bool = False) -> CoroutineType[Any, Any, None]" cannot be assigned to parameter "func" of type "(Any, Any) -> Awaitable[Any]" in function "call_with_retry" +   Type "(*, raise_no_data: bool = False) -> CoroutineType[Any, Any, None]" is not assignable to type "(Any, Any) -> Awaitable[Any]" +     Function accepts too many positional parameters; expected 0 but received 2 (reportArgumentType) +/homeassistant/components/nws/config_flow.py + /homeassistant/components/nws/config_flow.py:45:22 - error: Type "dict[str, str | None]" is not assignable to return type "dict[str, str]" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportReturnType) +/homeassistant/components/nws/sensor.py + /homeassistant/components/nws/sensor.py:173:7 - error: Base classes for class "NWSSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nws/sensor.py:193:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NWSSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nws/sensor.py:193:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NWSSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nws/sensor.py:204:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/nws/weather.py + /homeassistant/components/nws/weather.py:187:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nws/weather.py:194:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nws/weather.py:201:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nws/weather.py:208:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nws/weather.py:215:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nws/weather.py:222:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nws/weather.py:230:38 - error: "time" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/nws/weather.py:234:9 - error: "native_visibility" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nws/weather.py:323:31 - error: Argument of type "List[Dict[str, Any]] | None" cannot be assigned to parameter "nws_forecast" of type "list[dict[str, Any]]" in function "_forecast" +   Type "List[Dict[str, Any]] | None" is not assignable to type "list[dict[str, Any]]" +     "None" is not assignable to "list[dict[str, Any]]" (reportArgumentType) + /homeassistant/components/nws/weather.py:328:31 - error: Argument of type "List[Dict[str, Any]] | None" cannot be assigned to parameter "nws_forecast" of type "list[dict[str, Any]]" in function "_forecast" +   Type "List[Dict[str, Any]] | None" is not assignable to type "list[dict[str, Any]]" +     "None" is not assignable to "list[dict[str, Any]]" (reportArgumentType) +/homeassistant/components/nx584/alarm_control_panel.py + /homeassistant/components/nx584/alarm_control_panel.py:130:16 - error: "part" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/nx584/alarm_control_panel.py:137:21 - error: "part" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/nx584/binary_sensor.py + /homeassistant/components/nx584/binary_sensor.py:99:9 - error: "device_class" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[BinarySensorDeviceClass | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nx584/binary_sensor.py:104:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nx584/binary_sensor.py:109:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/nx584/binary_sensor.py:115:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/nyt_games/sensor.py + /homeassistant/components/nyt_games/sensor.py:172:7 - error: Base classes for class "NYTGamesWordleSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nyt_games/sensor.py:184:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NYTGamesWordleSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nyt_games/sensor.py:184:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NYTGamesWordleSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nyt_games/sensor.py:190:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/nyt_games/sensor.py:195:7 - error: Base classes for class "NYTGamesSpellingBeeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nyt_games/sensor.py:207:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NYTGamesSpellingBeeSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nyt_games/sensor.py:207:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NYTGamesSpellingBeeSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nyt_games/sensor.py:213:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/nyt_games/sensor.py:219:7 - error: Base classes for class "NYTGamesConnectionsSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nyt_games/sensor.py:231:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "NYTGamesConnectionsSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nyt_games/sensor.py:231:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "NYTGamesConnectionsSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/nyt_games/sensor.py:237:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/nzbget/sensor.py + /homeassistant/components/nzbget/sensor.py:110:7 - error: Base classes for class "NZBGetSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nzbget/sensor.py:131:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/nzbget/switch.py + /homeassistant/components/nzbget/switch.py:39:7 - error: Base classes for class "NZBGetDownloadSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/nzbget/switch.py:60:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/oasa_telematics/sensor.py + /homeassistant/components/oasa_telematics/sensor.py:9:8 - error: Import "oasatelematics" could not be resolved (reportMissingImports) + /homeassistant/components/oasa_telematics/sensor.py:82:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/oasa_telematics/sensor.py:87:9 - error: "device_class" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[SensorDeviceClass | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/oasa_telematics/sensor.py:92:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/oasa_telematics/sensor.py:97:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/obihai/connectivity.py + /homeassistant/components/obihai/connectivity.py:55:35 - error: Cannot assign to attribute "pyobihai" for class "ObihaiConnection*" +   "None" is not assignable to "PyObihai" (reportAttributeAccessIssue) + /homeassistant/components/obihai/connectivity.py:62:29 - error: Cannot assign to attribute "pyobihai" for class "ObihaiConnection*" +   Type "PyObihai | None" is not assignable to type "PyObihai" +     "None" is not assignable to "PyObihai" (reportAttributeAccessIssue) + /homeassistant/components/obihai/connectivity.py:68:25 - error: Cannot assign to attribute "services" for class "ObihaiConnection*" +   "dict[str, Any]" is not assignable to "list[Unknown]" (reportAttributeAccessIssue) + /homeassistant/components/obihai/connectivity.py:69:30 - error: Cannot assign to attribute "line_services" for class "ObihaiConnection*" +   "dict[str, Any]" is not assignable to "list[Unknown]" (reportAttributeAccessIssue) + /homeassistant/components/obihai/connectivity.py:70:31 - error: Cannot assign to attribute "call_direction" for class "ObihaiConnection*" +   "dict[str, str]" is not assignable to "list[Unknown]" (reportAttributeAccessIssue) +/homeassistant/components/obihai/sensor.py + /homeassistant/components/obihai/sensor.py:58:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/octoprint/binary_sensor.py + /homeassistant/components/octoprint/binary_sensor.py:59:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/octoprint/binary_sensor.py:67:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/octoprint/button.py + /homeassistant/components/octoprint/button.py:64:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/octoprint/button.py:92:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/octoprint/config_flow.py + /homeassistant/components/octoprint/config_flow.py:97:25 - error: Argument of type "Any | None" cannot be assigned to parameter "username" of type "str" in function "_schema_with_defaults" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/octoprint/config_flow.py:158:50 - error: "upnp_uuid" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/octoprint/config_flow.py:191:18 - error: Argument of type "int | None" cannot be assigned to parameter "port" of type "int" in function "_schema_with_defaults" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/octoprint/config_flow.py:214:18 - error: Argument of type "str | None" cannot be assigned to parameter "host" of type "str" in function "_schema_with_defaults" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/octoprint/config_flow.py:216:18 - error: Argument of type "int | None" cannot be assigned to parameter "port" of type "int" in function "_schema_with_defaults" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) +/homeassistant/components/octoprint/number.py + /homeassistant/components/octoprint/number.py:82:7 - error: Base classes for class "OctoPrintTemperatureNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/octoprint/number.py:118:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/octoprint/sensor.py + /homeassistant/components/octoprint/sensor.py:94:7 - error: Base classes for class "OctoPrintSensorBase" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/octoprint/sensor.py:125:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/octoprint/sensor.py:152:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/octoprint/sensor.py:176:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/octoprint/sensor.py:205:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/octoprint/sensor.py:243:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/octoprint/sensor.py:281:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/octoprint/sensor.py:285:29 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/octoprint/sensor.py:293:16 - error: Type "str | None" is not assignable to return type "bool" +   Type "str | None" is not assignable to type "bool" +     "str" is not assignable to "bool" (reportReturnType) + /homeassistant/components/octoprint/sensor.py:293:37 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/octoprint/sensor.py:312:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/octoprint/sensor.py:316:29 - error: "size" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/octoprint/sensor.py:324:37 - error: "size" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/oem/climate.py + /homeassistant/components/oem/climate.py:7:6 - error: Import "oemthermostat" could not be resolved (reportMissingImports) + /homeassistant/components/oem/climate.py:89:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/oem/climate.py:101:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/oem/climate.py:106:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/oem/climate.py:115:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/oem/climate.py:120:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ohmconnect/sensor.py + /homeassistant/components/ohmconnect/sensor.py:61:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ohmconnect/sensor.py:66:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/ohmconnect/sensor.py:73:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ohmconnect/sensor.py:88:60 - error: "url" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/ohme/button.py + /homeassistant/components/ohme/button.py:56:7 - error: Base classes for class "OhmeButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/button.py:59:5 - error: "entity_description" overrides symbol of same name in class "OhmeEntity" +   Variable is mutable so its type is invariant +     Override type "OhmeButtonDescription" is not the same as base type "OhmeEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/button.py:59:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "OhmeButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/ohme/entity.py + /homeassistant/components/ohme/entity.py:38:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "OhmeEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/ohme/number.py + /homeassistant/components/ohme/number.py:72:7 - error: Base classes for class "OhmeNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/number.py:75:5 - error: "entity_description" overrides symbol of same name in class "OhmeEntity" +   Variable is mutable so its type is invariant +     Override type "OhmeNumberDescription" is not the same as base type "OhmeEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/number.py:75:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "OhmeNumberDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/number.py:78:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ohme/select.py + /homeassistant/components/ohme/select.py:68:7 - error: Base classes for class "OhmeSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/select.py:71:5 - error: "entity_description" overrides symbol of same name in class "OhmeEntity" +   Variable is mutable so its type is invariant +     Override type "OhmeSelectDescription" is not the same as base type "OhmeEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/select.py:71:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "OhmeSelectDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/select.py:84:9 - error: "options" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/select.py:92:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ohme/sensor.py + /homeassistant/components/ohme/sensor.py:127:7 - error: Base classes for class "OhmeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/sensor.py:130:5 - error: "entity_description" overrides symbol of same name in class "OhmeEntity" +   Variable is mutable so its type is invariant +     Override type "OhmeSensorDescription" is not the same as base type "OhmeEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/sensor.py:130:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "OhmeSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/sensor.py:133:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/ohme/switch.py + /homeassistant/components/ohme/switch.py:95:7 - error: Base classes for class "OhmeSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/switch.py:98:5 - error: "entity_description" overrides symbol of same name in class "OhmeEntity" +   Variable is mutable so its type is invariant +     Override type "OhmeSwitchDescription" is not the same as base type "OhmeEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/switch.py:98:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "OhmeSwitchDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/switch.py:101:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/switch.py:116:7 - error: Base classes for class "OhmeConfigSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/switch.py:119:5 - error: "entity_description" overrides symbol of same name in class "OhmeEntity" +   Variable is mutable so its type is invariant +     Override type "OhmeConfigSwitchDescription" is not the same as base type "OhmeEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/switch.py:119:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "OhmeConfigSwitchDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/switch.py:122:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ohme/time.py + /homeassistant/components/ohme/time.py:60:7 - error: Base classes for class "OhmeTime" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/time.py:63:5 - error: "entity_description" overrides symbol of same name in class "OhmeEntity" +   Variable is mutable so its type is invariant +     Override type "OhmeTimeDescription" is not the same as base type "OhmeEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/time.py:63:5 - error: "entity_description" overrides symbol of same name in class "TimeEntity" +   Variable is mutable so its type is invariant +     Override type "OhmeTimeDescription" is not the same as base type "TimeEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ohme/time.py:66:9 - error: "native_value" overrides symbol of same name in class "TimeEntity" +   "property" is not assignable to "cached_property[time | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ollama/ai_task.py + /homeassistant/components/ollama/ai_task.py:36:7 - error: Base classes for class "OllamaTaskEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ollama/conversation.py + /homeassistant/components/ollama/conversation.py:34:7 - error: Base classes for class "OllamaConversationEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ombi/__init__.py + /homeassistant/components/ombi/__init__.py:5:8 - error: Import "pyombi" could not be resolved (reportMissingImports) +/homeassistant/components/ombi/sensor.py + /homeassistant/components/ombi/sensor.py:8:6 - error: Import "pyombi" could not be resolved (reportMissingImports) +/homeassistant/components/omnilogic/entity.py + /homeassistant/components/omnilogic/entity.py:66:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/entity.py:71:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/entity.py:76:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/entity.py:81:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/entity.py:86:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/omnilogic/sensor.py + /homeassistant/components/omnilogic/sensor.py:66:7 - error: Base classes for class "OmnilogicSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/sensor.py:66:7 - error: Base classes for class "OmnilogicSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/sensor.py:66:7 - error: Base classes for class "OmnilogicSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/sensor.py:66:7 - error: Base classes for class "OmnilogicSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/sensor.py:66:7 - error: Base classes for class "OmnilogicSensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/sensor.py:66:7 - error: Base classes for class "OmnilogicSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/sensor.py:102:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/sensor.py:130:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/sensor.py:165:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/sensor.py:183:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/sensor.py:192:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/sensor.py:236:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/omnilogic/switch.py + /homeassistant/components/omnilogic/switch.py:73:7 - error: Base classes for class "OmniLogicSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/switch.py:73:7 - error: Base classes for class "OmniLogicSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/switch.py:73:7 - error: Base classes for class "OmniLogicSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/switch.py:73:7 - error: Base classes for class "OmniLogicSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/switch.py:73:7 - error: Base classes for class "OmniLogicSwitch" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/switch.py:73:7 - error: Base classes for class "OmniLogicSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/omnilogic/switch.py:100:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/onboarding/views.py + /homeassistant/components/onboarding/views.py:195:28 - error: Cannot access attribute "async_add_auth" for class "AuthProvider" +   Attribute "async_add_auth" is unknown (reportAttributeAccessIssue) +/homeassistant/components/ondilo_ico/coordinator.py + /homeassistant/components/ondilo_ico/coordinator.py:181:55 - error: Argument of type "str" cannot be assigned to parameter "pool_id" of type "int" in function "get_last_pool_measures" +   "str" is not assignable to "int" (reportArgumentType) +/homeassistant/components/ondilo_ico/sensor.py + /homeassistant/components/ondilo_ico/sensor.py:124:7 - error: Base classes for class "OndiloICO" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ondilo_ico/sensor.py:148:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/onedrive/__init__.py + /homeassistant/components/onedrive/__init__.py:11:35 - error: "OneDriveClient" is not exported from module "onedrive_personal_sdk" +   Import from "onedrive_personal_sdk.clients.client" instead (reportPrivateImportUsage) +/homeassistant/components/onedrive/backup.py + /homeassistant/components/onedrive/backup.py:136:15 - error: Method "async_download_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, AsyncIterator[bytes]]", override returns type "Coroutine[Any, Any, AsyncIterator[bytes]]" +     "Coroutine[Any, Any, AsyncIterator[bytes]]" is not assignable to "CoroutineType[Any, Any, AsyncIterator[bytes]]" (reportIncompatibleMethodOverride) + /homeassistant/components/onedrive/backup.py:150:15 - error: Method "async_upload_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/onedrive/backup.py:219:15 - error: Method "async_delete_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/onedrive/backup.py:240:15 - error: Method "async_list_backups" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, list[AgentBackup]]", override returns type "Coroutine[Any, Any, list[AgentBackup]]" +     "Coroutine[Any, Any, list[AgentBackup]]" is not assignable to "CoroutineType[Any, Any, list[AgentBackup]]" (reportIncompatibleMethodOverride) + /homeassistant/components/onedrive/backup.py:247:15 - error: Method "async_get_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, AgentBackup]", override returns type "Coroutine[Any, Any, AgentBackup]" +     "Coroutine[Any, Any, AgentBackup]" is not assignable to "CoroutineType[Any, Any, AgentBackup]" (reportIncompatibleMethodOverride) +/homeassistant/components/onedrive/config_flow.py + /homeassistant/components/onedrive/config_flow.py:146:41 - error: "folder" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/onedrive/coordinator.py + /homeassistant/components/onedrive/coordinator.py:10:35 - error: "OneDriveClient" is not exported from module "onedrive_personal_sdk" +   Import from "onedrive_personal_sdk.clients.client" instead (reportPrivateImportUsage) +/homeassistant/components/onedrive/sensor.py + /homeassistant/components/onedrive/sensor.py:101:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "OneDriveSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/onedrive/sensor.py:101:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "OneDriveSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/onedrive/sensor.py:114:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/onedrive/sensor.py:120:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/onewire/binary_sensor.py + /homeassistant/components/onewire/binary_sensor.py:150:7 - error: Base classes for class "OneWireBinarySensorEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/onewire/binary_sensor.py:154:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/onewire/entity.py + /homeassistant/components/onewire/entity.py:40:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/onewire/select.py + /homeassistant/components/onewire/select.py:91:7 - error: Base classes for class "OneWireSelectEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/onewire/select.py:95:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/onewire/sensor.py + /homeassistant/components/onewire/sensor.py:451:7 - error: Base classes for class "OneWireSensorEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/onewire/sensor.py:455:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/onewire/switch.py + /homeassistant/components/onewire/switch.py:203:7 - error: Base classes for class "OneWireSwitchEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/onewire/switch.py:207:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/onkyo/media_player.py + /homeassistant/components/onkyo/media_player.py:9:34 - error: "Status" is not exported from module "aioonkyo" +   Import from "..status" instead (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:118:39 - error: "Raw" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:127:45 - error: "NotAvailable" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:237:41 - error: "Power" is not exported from module "..query" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:238:41 - error: "Volume" is not exported from module "..query" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:239:41 - error: "Muting" is not exported from module "..query" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:240:41 - error: "InputSource" is not exported from module "..query" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:241:41 - error: "TunerPreset" is not exported from module "..query" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:243:45 - error: "ListeningMode" is not exported from module "..query" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:245:45 - error: "HDMIOutput" is not exported from module "..query" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:246:45 - error: "AudioInformation" is not exported from module "..query" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:247:45 - error: "VideoInformation" is not exported from module "..query" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:251:27 - error: "Power" is not exported from module "..command" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:251:53 - error: "Power" is not exported from module "..command" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:256:27 - error: "Power" is not exported from module "..command" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:256:53 - error: "Power" is not exported from module "..command" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:270:27 - error: "Volume" is not exported from module "..command" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:275:27 - error: "Volume" is not exported from module "..command" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:275:54 - error: "Volume" is not exported from module "..command" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:280:27 - error: "Volume" is not exported from module "..command" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:280:54 - error: "Volume" is not exported from module "..command" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:285:27 - error: "Muting" is not exported from module "..command" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:286:33 - error: "Muting" is not exported from module "..command" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:286:70 - error: "Muting" is not exported from module "..command" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:302:27 - error: "InputSource" is not exported from module "..command" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:317:27 - error: "ListeningMode" is not exported from module "..command" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:324:27 - error: "HDMIOutput" is not exported from module "..command" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:338:27 - error: "TunerPreset" is not exported from module "..command" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:341:46 - error: "Known" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:344:25 - error: "Power" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:344:44 - error: "Power" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:346:25 - error: "Power" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:346:44 - error: "Power" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:349:25 - error: "Volume" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:359:25 - error: "Muting" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:360:68 - error: "Muting" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:362:25 - error: "InputSource" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:376:25 - error: "ListeningMode" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:396:25 - error: "HDMIOutput" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:402:25 - error: "TunerPreset" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:405:25 - error: "AudioInformation" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:416:25 - error: "VideoInformation" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:427:25 - error: "FLDisplay" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:430:25 - error: "NotAvailable" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:434:25 - error: "NotAvailable" is not exported from module ".export.status" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:446:53 - error: "AudioInformation" is not exported from module "..query" (reportPrivateImportUsage) + /homeassistant/components/onkyo/media_player.py:448:53 - error: "VideoInformation" is not exported from module "..query" (reportPrivateImportUsage) +/homeassistant/components/onkyo/receiver.py + /homeassistant/components/onkyo/receiver.py:13:22 - error: "Instruction" is not exported from module "aioonkyo" +   Import from "...instruction" instead (reportPrivateImportUsage) + /homeassistant/components/onkyo/receiver.py:13:59 - error: "Status" is not exported from module "aioonkyo" +   Import from "..status" instead (reportPrivateImportUsage) + /homeassistant/components/onkyo/receiver.py:107:36 - error: "Power" is not exported from module "..query" (reportPrivateImportUsage) +/homeassistant/components/onvif/binary_sensor.py + /homeassistant/components/onvif/binary_sensor.py:71:7 - error: Base classes for class "ONVIFBinarySensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/onvif/binary_sensor.py:71:7 - error: Base classes for class "ONVIFBinarySensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/onvif/binary_sensor.py:71:7 - error: Base classes for class "ONVIFBinarySensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/onvif/binary_sensor.py:71:7 - error: Base classes for class "ONVIFBinarySensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/onvif/binary_sensor.py:71:7 - error: Base classes for class "ONVIFBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/onvif/binary_sensor.py:71:7 - error: Base classes for class "ONVIFBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/onvif/binary_sensor.py:85:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/onvif/binary_sensor.py:107:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/onvif/button.py + /homeassistant/components/onvif/button.py:24:7 - error: Base classes for class "RebootButton" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/onvif/button.py:24:7 - error: Base classes for class "RebootButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/onvif/button.py:42:7 - error: Base classes for class "SetSystemDateAndTimeButton" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/onvif/button.py:42:7 - error: Base classes for class "SetSystemDateAndTimeButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/onvif/camera.py + /homeassistant/components/onvif/camera.py:95:7 - error: Base classes for class "ONVIFCameraEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/onvif/camera.py:124:9 - error: "use_stream_for_stills" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/onvif/device.py + /homeassistant/components/onvif/device.py:189:20 - error: Object of type "None" cannot be called (reportOptionalCall) + /homeassistant/components/onvif/device.py:480:15 - error: Object of type "None" cannot be called (reportOptionalCall) + /homeassistant/components/onvif/device.py:508:30 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/onvif/device.py:508:45 - error: Argument of type "Unknown | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/onvif/device.py:509:31 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/onvif/device.py:509:47 - error: Argument of type "Unknown | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/onvif/device.py:510:31 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/onvif/device.py:510:47 - error: Argument of type "Unknown | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/onvif/device.py:526:19 - error: Object of type "None" cannot be called (reportOptionalCall) + /homeassistant/components/onvif/device.py:546:23 - error: Object of type "None" cannot be called (reportOptionalCall) + /homeassistant/components/onvif/device.py:636:19 - error: Object of type "None" cannot be called (reportOptionalCall) + /homeassistant/components/onvif/device.py:664:19 - error: Object of type "None" cannot be called (reportOptionalCall) +/homeassistant/components/onvif/entity.py + /homeassistant/components/onvif/entity.py:20:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/onvif/entity.py:40:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/onvif/event.py + /homeassistant/components/onvif/event.py:477:35 - error: Argument of type "HassJob[(_now: datetime | None = None), None]" cannot be assigned to parameter "action" of type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" in function "async_call_later" +   Type "HassJob[(_now: datetime | None = None), None]" is not assignable to type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" +     "HassJob[(_now: datetime | None = None), None]" is not assignable to "HassJob[(datetime), Coroutine[Any, Any, None] | None]" +       Type parameter "_P@HassJob" is invariant, but "(_now: datetime | None = None)" is not the same as "(datetime)" +       Type parameter "_R_co@HassJob" is invariant, but "None" is not the same as "Coroutine[Any, Any, None] | None" +     Type "HassJob[(_now: datetime | None = None), None]" is not assignable to type "(datetime) -> (Coroutine[Any, Any, None] | None)" (reportArgumentType) + /homeassistant/components/onvif/event.py:558:25 - error: Argument of type "str | None" cannot be assigned to parameter "address" of type "str" in function "create_notification_manager" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/onvif/sensor.py + /homeassistant/components/onvif/sensor.py:68:7 - error: Base classes for class "ONVIFSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/onvif/sensor.py:68:7 - error: Base classes for class "ONVIFSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/onvif/sensor.py:105:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/onvif/switch.py + /homeassistant/components/onvif/switch.py:81:7 - error: Base classes for class "ONVIFSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/onvif/switch.py:81:7 - error: Base classes for class "ONVIFSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/onvif/switch.py:93:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ONVIFSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/onvif/switch.py:93:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "ONVIFSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/open_meteo/weather.py + /homeassistant/components/open_meteo/weather.py:73:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/open_meteo/weather.py:82:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/open_meteo/weather.py:89:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/open_meteo/weather.py:96:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/open_router/ai_task.py + /homeassistant/components/open_router/ai_task.py:36:7 - error: Base classes for class "OpenRouterAITaskEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/openai_conversation/ai_task.py + /homeassistant/components/openai_conversation/ai_task.py:52:7 - error: Base classes for class "OpenAITaskEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/openai_conversation/ai_task.py:134:41 - error: Cannot access attribute "output_format" for class "ImageGenerationCall" +   Attribute "output_format" is unknown (reportAttributeAccessIssue) + /homeassistant/components/openai_conversation/ai_task.py:140:64 - error: Cannot access attribute "size" for class "ImageGenerationCall" +   Attribute "size" is unknown (reportAttributeAccessIssue) + /homeassistant/components/openai_conversation/ai_task.py:152:39 - error: Cannot access attribute "revised_prompt" for class "ImageGenerationCall" +   Attribute "revised_prompt" is unknown (reportAttributeAccessIssue) +/homeassistant/components/openai_conversation/conversation.py + /homeassistant/components/openai_conversation/conversation.py:34:7 - error: Base classes for class "OpenAIConversationEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/openai_conversation/entity.py + /homeassistant/components/openai_conversation/entity.py:390:13 - error: "current_tool_call" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/openai_conversation/entity.py:392:13 - error: "current_tool_call" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/openai_conversation/entity.py:396:28 - error: "current_tool_call" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/openai_conversation/entity.py:397:35 - error: "current_tool_call" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/openai_conversation/entity.py:398:46 - error: "current_tool_call" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/openai_conversation/entity.py:497:12 - error: Could not access item in TypedDict +   "model" is not a required key in "ResponseCreateParamsStreaming", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/openai_conversation/entity.py:502:24 - error: Could not access item in TypedDict +   "model" is not a required key in "ResponseCreateParamsStreaming", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/openai_conversation/entity.py:508:12 - error: Could not access item in TypedDict +   "model" is not a required key in "ResponseCreateParamsStreaming", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/openai_conversation/entity.py:513:12 - error: Could not access item in TypedDict +   "model" is not a required key in "ResponseCreateParamsStreaming", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/openai_conversation/entity.py:599:17 - error: Could not access item in TypedDict +   "type" is not a required key in "EasyInputMessageParam", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/openai_conversation/entity.py:599:17 - error: Could not access item in TypedDict +   "type" is not a required key in "Message", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/openai_conversation/entity.py:599:17 - error: Could not access item in TypedDict +   "type" is not a required key in "ItemReference", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "ResponseFileSearchToolCallParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "ResponseComputerToolCallParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "ComputerCallOutput" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "ResponseFunctionWebSearchParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "ResponseFunctionToolCallParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "FunctionCallOutput" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "ResponseReasoningItemParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "ImageGenerationCall" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "ResponseCodeInterpreterToolCallParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "LocalShellCall" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "LocalShellCallOutput" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "ShellCall" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "ShellCallOutput" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "ApplyPatchCall" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "ApplyPatchCallOutput" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "McpListTools" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "McpApprovalRequest" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "McpApprovalResponse" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "McpCall" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "ResponseCustomToolCallOutputParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "ResponseCustomToolCallParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:600:21 - error: Could not access item in TypedDict +   "role" is not a defined key in "ItemReference" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "ResponseFileSearchToolCallParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "ResponseComputerToolCallParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "ComputerCallOutput" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "ResponseFunctionWebSearchParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "ResponseFunctionToolCallParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "FunctionCallOutput" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a required key in "ResponseReasoningItemParam", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "ImageGenerationCall" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "ResponseCodeInterpreterToolCallParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "LocalShellCall" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "LocalShellCallOutput" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "ShellCall" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "ShellCallOutput" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "ApplyPatchCall" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "ApplyPatchCallOutput" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "McpListTools" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "McpApprovalRequest" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "McpApprovalResponse" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "McpCall" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "ResponseCustomToolCallOutputParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "ResponseCustomToolCallParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:601:32 - error: Could not access item in TypedDict +   "content" is not a defined key in "ItemReference" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "ResponseFileSearchToolCallParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "ResponseComputerToolCallParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "ComputerCallOutput" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "ResponseFunctionWebSearchParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "ResponseFunctionToolCallParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "FunctionCallOutput" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "ImageGenerationCall" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "ResponseCodeInterpreterToolCallParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "LocalShellCall" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "LocalShellCallOutput" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "ShellCall" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "ShellCallOutput" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "ApplyPatchCall" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "ApplyPatchCallOutput" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "McpListTools" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "McpApprovalRequest" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "McpApprovalResponse" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "McpCall" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "ResponseCustomToolCallOutputParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "ResponseCustomToolCallParam" (reportGeneralTypeIssues) + /homeassistant/components/openai_conversation/entity.py:603:13 - error: Could not assign item in TypedDict +   "content" is not a defined key in "ItemReference" (reportGeneralTypeIssues) +/homeassistant/components/openalpr_cloud/image_processing.py + /homeassistant/components/openalpr_cloud/image_processing.py:104:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/openalpr_cloud/image_processing.py:117:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/openerz/sensor.py + /homeassistant/components/openerz/sensor.py:55:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/openerz/sensor.py:60:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/openevse/sensor.py + /homeassistant/components/openevse/sensor.py:7:8 - error: Import "openevsewifi" could not be resolved (reportMissingImports) +/homeassistant/components/openexchangerates/sensor.py + /homeassistant/components/openexchangerates/sensor.py:36:7 - error: Base classes for class "OpenexchangeratesSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/openexchangerates/sensor.py:66:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/opengarage/binary_sensor.py + /homeassistant/components/opengarage/binary_sensor.py:50:7 - error: Base classes for class "OpenGarageBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/opengarage/binary_sensor.py:64:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/opengarage/button.py + /homeassistant/components/opengarage/button.py:61:7 - error: Base classes for class "OpenGarageButtonEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/opengarage/button.py:61:7 - error: Base classes for class "OpenGarageButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/opengarage/button.py:64:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "OpenGarageButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/opengarage/cover.py + /homeassistant/components/opengarage/cover.py:38:7 - error: Base classes for class "OpenGarageCover" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/opengarage/cover.py:38:7 - error: Base classes for class "OpenGarageCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/opengarage/cover.py:55:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/opengarage/cover.py:62:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/opengarage/cover.py:69:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/opengarage/entity.py + /homeassistant/components/opengarage/entity.py:48:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/opengarage/sensor.py + /homeassistant/components/opengarage/sensor.py:81:7 - error: Base classes for class "OpenGarageSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/opengarage/sensor.py:81:7 - error: Base classes for class "OpenGarageSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/openhardwaremonitor/sensor.py + /homeassistant/components/openhardwaremonitor/sensor.py:77:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/openhardwaremonitor/sensor.py:82:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/openhardwaremonitor/sensor.py:87:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/openhardwaremonitor/sensor.py:94:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/openhome/__init__.py + /homeassistant/components/openhome/__init__.py:6:38 - error: "UpnpError" is not exported from module "async_upnp_client.client" +   Import from "async_upnp_client.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/openhome/media_player.py + /homeassistant/components/openhome/media_player.py:11:38 - error: "UpnpError" is not exported from module "async_upnp_client.client" +   Import from "async_upnp_client.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/openhome/media_player.py:186:15 - error: Method "async_turn_on" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/openhome/media_player.py:191:15 - error: Method "async_turn_off" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/openhome/media_player.py:196:15 - error: Method "async_play_media" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/openhome/media_player.py:221:15 - error: Method "async_media_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/openhome/media_player.py:226:15 - error: Method "async_media_stop" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/openhome/media_player.py:231:15 - error: Method "async_media_play" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/openhome/media_player.py:236:15 - error: Method "async_media_next_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/openhome/media_player.py:241:15 - error: Method "async_media_previous_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/openhome/media_player.py:246:15 - error: Method "async_select_source" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/openhome/media_player.py:262:15 - error: Method "async_volume_up" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/openhome/media_player.py:267:15 - error: Method "async_volume_down" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/openhome/media_player.py:272:15 - error: Method "async_set_volume_level" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/openhome/media_player.py:277:15 - error: Method "async_mute_volume" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/openhome/update.py + /homeassistant/components/openhome/update.py:9:38 - error: "UpnpError" is not exported from module "async_upnp_client.client" +   Import from "async_upnp_client.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/openrgb/light.py + /homeassistant/components/openrgb/light.py:239:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/opensensemap/air_quality.py + /homeassistant/components/opensensemap/air_quality.py:8:6 - error: Import "opensensemap_api" could not be resolved (reportMissingImports) + /homeassistant/components/opensensemap/air_quality.py:9:6 - error: Import "opensensemap_api.exceptions" could not be resolved (reportMissingImports) + /homeassistant/components/opensensemap/air_quality.py:73:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/opensky/sensor.py + /homeassistant/components/opensky/sensor.py:34:7 - error: Base classes for class "OpenSkySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/opensky/sensor.py:62:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/opentherm_gw/binary_sensor.py + /homeassistant/components/opentherm_gw/binary_sensor.py:407:7 - error: Base classes for class "OpenThermBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/opentherm_gw/binary_sensor.py:411:5 - error: "entity_description" overrides symbol of same name in class "OpenThermEntity" +   Variable is mutable so its type is invariant +     Override type "OpenThermBinarySensorEntityDescription" is not the same as base type "OpenThermEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/opentherm_gw/binary_sensor.py:411:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "OpenThermBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/opentherm_gw/button.py + /homeassistant/components/opentherm_gw/button.py:66:7 - error: Base classes for class "OpenThermButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/opentherm_gw/button.py:70:5 - error: "entity_description" overrides symbol of same name in class "OpenThermEntity" +   Variable is mutable so its type is invariant +     Override type "OpenThermButtonEntityDescription" is not the same as base type "OpenThermEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/opentherm_gw/button.py:70:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "OpenThermButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/opentherm_gw/climate.py + /homeassistant/components/opentherm_gw/climate.py:73:7 - error: Base classes for class "OpenThermClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/opentherm_gw/climate.py:93:5 - error: "entity_description" overrides symbol of same name in class "OpenThermEntity" +   Variable is mutable so its type is invariant +     Override type "OpenThermClimateEntityDescription" is not the same as base type "OpenThermEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/opentherm_gw/climate.py:93:5 - error: "entity_description" overrides symbol of same name in class "ClimateEntity" +   Variable is mutable so its type is invariant +     Override type "OpenThermClimateEntityDescription" is not the same as base type "ClimateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/opentherm_gw/climate.py:178:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/opentherm_gw/climate.py:183:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/opentherm_gw/entity.py + /homeassistant/components/opentherm_gw/entity.py:43:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "OpenThermEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/opentherm_gw/entity.py:56:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/opentherm_gw/select.py + /homeassistant/components/opentherm_gw/select.py:247:7 - error: Base classes for class "OpenThermSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/opentherm_gw/select.py:252:5 - error: "entity_description" overrides symbol of same name in class "OpenThermEntity" +   Variable is mutable so its type is invariant +     Override type "OpenThermSelectEntityDescription" is not the same as base type "OpenThermEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/opentherm_gw/select.py:252:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "OpenThermSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/opentherm_gw/sensor.py + /homeassistant/components/opentherm_gw/sensor.py:892:7 - error: Base classes for class "OpenThermSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/opentherm_gw/sensor.py:896:5 - error: "entity_description" overrides symbol of same name in class "OpenThermEntity" +   Variable is mutable so its type is invariant +     Override type "OpenThermSensorEntityDescription" is not the same as base type "OpenThermEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/opentherm_gw/sensor.py:896:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "OpenThermSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/opentherm_gw/switch.py + /homeassistant/components/opentherm_gw/switch.py:61:7 - error: Base classes for class "OpenThermSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/opentherm_gw/switch.py:67:5 - error: "entity_description" overrides symbol of same name in class "OpenThermEntity" +   Variable is mutable so its type is invariant +     Override type "OpenThermSwitchEntityDescription" is not the same as base type "OpenThermEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/opentherm_gw/switch.py:67:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "OpenThermSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/openuv/__init__.py + /homeassistant/components/openuv/__init__.py:8:22 - error: "Client" is not exported from module "pyopenuv" +   Import from "pyopenuv.client" instead (reportPrivateImportUsage) +/homeassistant/components/openuv/binary_sensor.py + /homeassistant/components/openuv/binary_sensor.py:46:7 - error: Base classes for class "OpenUvBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/openuv/config_flow.py + /homeassistant/components/openuv/config_flow.py:9:22 - error: "Client" is not exported from module "pyopenuv" +   Import from "pyopenuv.client" instead (reportPrivateImportUsage) +/homeassistant/components/openuv/sensor.py + /homeassistant/components/openuv/sensor.py:184:7 - error: Base classes for class "OpenUvSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/openuv/sensor.py:187:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "OpenUvSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/openuv/sensor.py:190:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/openuv/sensor.py:199:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/openweathermap/coordinator.py + /homeassistant/components/openweathermap/coordinator.py:190:25 - error: Argument of type "Decimal" cannot be assigned to parameter "temperature" of type "None" in function "__init__" +   "Decimal" is not assignable to "None" (reportArgumentType) + /homeassistant/components/openweathermap/coordinator.py:191:41 - error: Argument of type "Decimal" cannot be assigned to parameter "native_apparent_temperature" of type "float | None" in function "__init__" +   Type "Decimal" is not assignable to type "float | None" +     "Decimal" is not assignable to "float" +     "Decimal" is not assignable to "None" (reportArgumentType) + /homeassistant/components/openweathermap/coordinator.py:192:22 - error: Argument of type "int" cannot be assigned to parameter "pressure" of type "None" in function "__init__" +   "int" is not assignable to "None" (reportArgumentType) + /homeassistant/components/openweathermap/coordinator.py:194:30 - error: Argument of type "Decimal | None" cannot be assigned to parameter "native_dew_point" of type "float | None" in function "__init__" +   Type "Decimal | None" is not assignable to type "float | None" +     Type "Decimal" is not assignable to type "float | None" +       "Decimal" is not assignable to "float" +       "Decimal" is not assignable to "None" (reportArgumentType) + /homeassistant/components/openweathermap/coordinator.py:196:24 - error: Argument of type "Decimal" cannot be assigned to parameter "wind_speed" of type "None" in function "__init__" +   "Decimal" is not assignable to "None" (reportArgumentType) + /homeassistant/components/openweathermap/coordinator.py:197:36 - error: Argument of type "Decimal | None" cannot be assigned to parameter "native_wind_gust_speed" of type "float | None" in function "__init__" +   Type "Decimal | None" is not assignable to type "float | None" +     Type "Decimal" is not assignable to type "float | None" +       "Decimal" is not assignable to "float" +       "Decimal" is not assignable to "None" (reportArgumentType) + /homeassistant/components/openweathermap/coordinator.py:210:25 - error: Argument of type "Decimal" cannot be assigned to parameter "temperature" of type "None" in function "__init__" +   "Decimal" is not assignable to "None" (reportArgumentType) + /homeassistant/components/openweathermap/coordinator.py:211:21 - error: Argument of type "Decimal" cannot be assigned to parameter "templow" of type "None" in function "__init__" +   "Decimal" is not assignable to "None" (reportArgumentType) + /homeassistant/components/openweathermap/coordinator.py:212:41 - error: Argument of type "DailyTemperature" cannot be assigned to parameter "native_apparent_temperature" of type "float | None" in function "__init__" +   Type "DailyTemperature" is not assignable to type "float | None" +     "DailyTemperature" is not assignable to "float" +     "DailyTemperature" is not assignable to "None" (reportArgumentType) + /homeassistant/components/openweathermap/coordinator.py:213:22 - error: Argument of type "int" cannot be assigned to parameter "pressure" of type "None" in function "__init__" +   "int" is not assignable to "None" (reportArgumentType) + /homeassistant/components/openweathermap/coordinator.py:215:30 - error: Argument of type "Decimal" cannot be assigned to parameter "native_dew_point" of type "float | None" in function "__init__" +   Type "Decimal" is not assignable to type "float | None" +     "Decimal" is not assignable to "float" +     "Decimal" is not assignable to "None" (reportArgumentType) + /homeassistant/components/openweathermap/coordinator.py:217:24 - error: Argument of type "Decimal" cannot be assigned to parameter "wind_speed" of type "None" in function "__init__" +   "Decimal" is not assignable to "None" (reportArgumentType) + /homeassistant/components/openweathermap/coordinator.py:218:36 - error: Argument of type "Decimal | None" cannot be assigned to parameter "native_wind_gust_speed" of type "float | None" in function "__init__" +   Type "Decimal | None" is not assignable to type "float | None" +     Type "Decimal" is not assignable to type "float | None" +       "Decimal" is not assignable to "float" +       "Decimal" is not assignable to "None" (reportArgumentType) + /homeassistant/components/openweathermap/coordinator.py:222:27 - error: Argument of type "Decimal" cannot be assigned to parameter "precipitation" of type "None" in function "__init__" +   "Decimal" is not assignable to "None" (reportArgumentType) +/homeassistant/components/openweathermap/sensor.py + /homeassistant/components/openweathermap/sensor.py:283:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/openweathermap/sensor.py:302:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/openweathermap/weather.py + /homeassistant/components/openweathermap/weather.py:129:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/openweathermap/weather.py:134:9 - error: "cloud_coverage" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/openweathermap/weather.py:139:9 - error: "native_apparent_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/openweathermap/weather.py:146:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/openweathermap/weather.py:151:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/openweathermap/weather.py:156:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/openweathermap/weather.py:161:9 - error: "native_dew_point" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/openweathermap/weather.py:166:9 - error: "native_wind_gust_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/openweathermap/weather.py:171:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/openweathermap/weather.py:176:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/openweathermap/weather.py:181:9 - error: "native_visibility" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/opower/coordinator.py + /homeassistant/components/opower/coordinator.py:231:21 - error: Could not access item in TypedDict +   "start" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/opower/coordinator.py:265:24 - error: "stats" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/opower/coordinator.py:278:35 - error: Could not access item in TypedDict +   "start" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/opower/coordinator.py:409:52 - error: Could not access item in TypedDict +   "start" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/opower/coordinator.py:410:40 - error: Could not access item in TypedDict +   "sum" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/opower/sensor.py + /homeassistant/components/opower/sensor.py:231:7 - error: Base classes for class "OpowerSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/opower/sensor.py:247:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "OpowerEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/opower/sensor.py:247:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "OpowerEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/opower/sensor.py:253:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/opple/light.py + /homeassistant/components/opple/light.py:8:6 - error: Import "pyoppleio.OppleLightDevice" could not be resolved (reportMissingImports) + /homeassistant/components/opple/light.py:70:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/opple/light.py:75:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/opple/light.py:80:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/opple/light.py:85:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/opple/light.py:90:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/oralb/sensor.py + /homeassistant/components/oralb/sensor.py:154:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/oralb/sensor.py:167:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/oralb/sensor.py:179:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/oru/sensor.py + /homeassistant/components/oru/sensor.py:8:17 - error: "Meter" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/oru/sensor.py:8:24 - error: "MeterError" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/oru/sensor.py:68:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/orvibo/switch.py + /homeassistant/components/orvibo/switch.py:8:6 - error: Import "orvibo.s20" could not be resolved (reportMissingImports) + /homeassistant/components/orvibo/switch.py:92:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/orvibo/switch.py:97:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/osoenergy/binary_sensor.py + /homeassistant/components/osoenergy/binary_sensor.py:32:50 - error: Cannot access attribute "state" for class "OSOEnergy" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/osoenergy/binary_sensor.py:37:50 - error: Cannot access attribute "state" for class "OSOEnergy" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/osoenergy/binary_sensor.py:42:50 - error: Cannot access attribute "state" for class "OSOEnergy" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/osoenergy/binary_sensor.py:81:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "OSOEnergyBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/osoenergy/binary_sensor.py:81:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "OSOEnergyBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/osoenergy/binary_sensor.py:84:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/osoenergy/binary_sensor.py:86:49 - error: Argument of type "OSOEnergyBinarySensorData" cannot be assigned to parameter of type "OSOEnergy" +   "OSOEnergyBinarySensorData" is not assignable to "OSOEnergy" (reportArgumentType) +/homeassistant/components/osoenergy/sensor.py + /homeassistant/components/osoenergy/sensor.py:52:50 - error: Cannot access attribute "state" for class "OSOEnergy" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/osoenergy/sensor.py:59:50 - error: Cannot access attribute "state" for class "OSOEnergy" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/osoenergy/sensor.py:66:50 - error: Cannot access attribute "state" for class "OSOEnergy" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/osoenergy/sensor.py:73:50 - error: Cannot access attribute "state" for class "OSOEnergy" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/osoenergy/sensor.py:80:50 - error: Cannot access attribute "state" for class "OSOEnergy" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/osoenergy/sensor.py:87:50 - error: Cannot access attribute "state" for class "OSOEnergy" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/osoenergy/sensor.py:94:50 - error: Cannot access attribute "state" for class "OSOEnergy" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/osoenergy/sensor.py:101:50 - error: Cannot access attribute "state" for class "OSOEnergy" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/osoenergy/sensor.py:107:50 - error: Cannot access attribute "state" for class "OSOEnergy" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/osoenergy/sensor.py:114:50 - error: Cannot access attribute "state" for class "OSOEnergy" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/osoenergy/sensor.py:121:50 - error: Cannot access attribute "state" for class "OSOEnergy" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/osoenergy/sensor.py:128:50 - error: Cannot access attribute "state" for class "OSOEnergy" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/osoenergy/sensor.py:135:50 - error: Cannot access attribute "state" for class "OSOEnergy" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/osoenergy/sensor.py:176:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "OSOEnergySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/osoenergy/sensor.py:176:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "OSOEnergySensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/osoenergy/sensor.py:179:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/osoenergy/sensor.py:181:49 - error: Argument of type "OSOEnergySensorData" cannot be assigned to parameter of type "OSOEnergy" +   "OSOEnergySensorData" is not assignable to "OSOEnergy" (reportArgumentType) +/homeassistant/components/osoenergy/water_heater.py + /homeassistant/components/osoenergy/water_heater.py:195:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/osoenergy/water_heater.py:200:9 - error: "current_operation" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/osoenergy/water_heater.py:216:9 - error: "current_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/osoenergy/water_heater.py:221:9 - error: "is_away_mode_on" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/osoenergy/water_heater.py:226:9 - error: "target_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/osoenergy/water_heater.py:231:9 - error: "target_temperature_high" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/osoenergy/water_heater.py:236:9 - error: "target_temperature_low" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/osoenergy/water_heater.py:271:69 - error: Argument of type "list[int]" cannot be assigned to parameter "profile" of type "array[Unknown]" in function "set_profile" +   "list[int]" is not assignable to "array[Unknown]" (reportArgumentType) + /homeassistant/components/osoenergy/water_heater.py:289:69 - error: Argument of type "list[float]" cannot be assigned to parameter "profile" of type "array[Unknown]" in function "set_profile" +   "list[float]" is not assignable to "array[Unknown]" (reportArgumentType) +/homeassistant/components/osramlightify/light.py + /homeassistant/components/osramlightify/light.py:9:6 - error: Import "lightify" could not be resolved (reportMissingImports) + /homeassistant/components/osramlightify/light.py:247:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/osramlightify/light.py:252:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/osramlightify/light.py:257:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/osramlightify/light.py:262:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/osramlightify/light.py:267:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/osramlightify/light.py:272:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/osramlightify/light.py:277:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/osramlightify/light.py:282:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/otbr/__init__.py + /homeassistant/components/otbr/__init__.py:40:57 - error: Argument of type "Module("..homeassistant_hardware")" cannot be assigned to parameter "platform" of type "HardwareFirmwareInfoModule" in function "async_register_firmware_info_provider" +   Type "Module("..homeassistant_hardware")" is not assignable to type "HardwareFirmwareInfoModule" +     "get_firmware_info" is not present +     "async_get_firmware_info" is an incompatible type +       Type "(hass: HomeAssistant, config_entry: OTBRConfigEntry) -> CoroutineType[Any, Any, FirmwareInfo | None]" is not assignable to type "(hass: HomeAssistant, entry: ConfigEntry[Any]) -> CoroutineType[Any, Any, FirmwareInfo | None]" +         Parameter name mismatch: "entry" versus "config_entry" (reportArgumentType) +/homeassistant/components/otbr/config_flow.py + /homeassistant/components/otbr/config_flow.py:113:37 - error: "ActiveDataSet" is not exported from module "python_otbr_api" (reportPrivateImportUsage) +/homeassistant/components/otbr/util.py + /homeassistant/components/otbr/util.py:117:59 - error: "ActiveDataSet" is not exported from module "python_otbr_api" (reportPrivateImportUsage) + /homeassistant/components/otbr/util.py:133:40 - error: "ActiveDataSet" is not exported from module "python_otbr_api" (reportPrivateImportUsage) +/homeassistant/components/otbr/websocket_api.py + /homeassistant/components/otbr/websocket_api.py:169:29 - error: "ActiveDataSet" is not exported from module "python_otbr_api" (reportPrivateImportUsage) + /homeassistant/components/otbr/websocket_api.py:230:28 - error: "thread_dataset_channel" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/otbr/websocket_api.py:234:52 - error: "thread_dataset_channel" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/otp/sensor.py + /homeassistant/components/otp/sensor.py:63:14 - error: "_attr_native_value" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "StateType" is not the same as base type "StateType | date | datetime | Decimal" (reportIncompatibleVariableOverride) +/homeassistant/components/ourgroceries/todo.py + /homeassistant/components/ourgroceries/todo.py:40:7 - error: Base classes for class "OurGroceriesTodoListEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/alarm_control_panel.py + /homeassistant/components/overkiz/alarm_control_panel.py:231:7 - error: Base classes for class "OverkizAlarmControlPanel" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/alarm_control_panel.py:234:5 - error: "entity_description" overrides symbol of same name in class "AlarmControlPanelEntity" +   Variable is mutable so its type is invariant +     Override type "OverkizAlarmDescription" is not the same as base type "AlarmControlPanelEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/alarm_control_panel.py:249:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/binary_sensor.py + /homeassistant/components/overkiz/binary_sensor.py:173:7 - error: Base classes for class "OverkizBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/binary_sensor.py:176:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "OverkizBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/binary_sensor.py:179:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/button.py + /homeassistant/components/overkiz/button.py:129:7 - error: Base classes for class "OverkizButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/button.py:132:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "OverkizButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/climate/__init__.py + /homeassistant/components/overkiz/climate/__init__.py:112:9 - error: Argument of type "Protocol | None" cannot be assigned to parameter "key" of type "Protocol" in function "__getitem__" +   Type "Protocol | None" is not assignable to type "Protocol" +     "None" is not assignable to "Protocol" (reportArgumentType) +/homeassistant/components/overkiz/climate/atlantic_electrical_heater.py + /homeassistant/components/overkiz/climate/atlantic_electrical_heater.py:45:7 - error: Base classes for class "AtlanticElectricalHeater" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_electrical_heater.py:59:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_electrical_heater.py:75:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/climate/atlantic_electrical_heater_with_adjustable_temperature_setpoint.py + /homeassistant/components/overkiz/climate/atlantic_electrical_heater_with_adjustable_temperature_setpoint.py:76:7 - error: Base classes for class "AtlanticElectricalHeaterWithAdjustableTemperatureSetpoint" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_electrical_heater_with_adjustable_temperature_setpoint.py:102:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_electrical_heater_with_adjustable_temperature_setpoint.py:118:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_electrical_heater_with_adjustable_temperature_setpoint.py:126:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_electrical_heater_with_adjustable_temperature_setpoint.py:156:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_electrical_heater_with_adjustable_temperature_setpoint.py:163:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py + /homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py:43:7 - error: Base classes for class "AtlanticElectricalTowelDryer" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py:70:13 - error: Operator "+=" not supported for types "list[str] | None" and "list[str]" +   Operator "+" not supported for types "None" and "list[str]" (reportOperatorIssue) + /homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py:73:20 - error: Operator "not in" not supported for types "str" and "list[str] | None" +   Operator "not in" not supported for types "str" and "None" (reportOperatorIssue) + /homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py:77:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py:94:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py:105:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py:128:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py:137:12 - error: Operator "in" not supported for types "Literal['drying']" and "list[str] | None" +   Operator "in" not supported for types "Literal['drying']" and "None" (reportOperatorIssue) + /homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py:175:14 - error: Operator "in" not supported for types "Literal['drying']" and "list[str] | None" +   Operator "in" not supported for types "Literal['drying']" and "None" (reportOperatorIssue) +/homeassistant/components/overkiz/climate/atlantic_heat_recovery_ventilation.py + /homeassistant/components/overkiz/climate/atlantic_heat_recovery_ventilation.py:43:7 - error: Base classes for class "AtlanticHeatRecoveryVentilation" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_heat_recovery_ventilation.py:69:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_heat_recovery_ventilation.py:82:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_heat_recovery_ventilation.py:135:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/climate/atlantic_pass_apc_heat_pump_main_component.py + /homeassistant/components/overkiz/climate/atlantic_pass_apc_heat_pump_main_component.py:29:7 - error: Base classes for class "AtlanticPassAPCHeatPumpMainComponent" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_pass_apc_heat_pump_main_component.py:46:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/climate/atlantic_pass_apc_heating_zone.py + /homeassistant/components/overkiz/climate/atlantic_pass_apc_heating_zone.py:82:7 - error: Base classes for class "AtlanticPassAPCHeatingZone" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_pass_apc_heating_zone.py:108:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_pass_apc_heating_zone.py:118:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_pass_apc_heating_zone.py:161:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_pass_apc_heating_zone.py:181:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/climate/atlantic_pass_apc_zone_control.py + /homeassistant/components/overkiz/climate/atlantic_pass_apc_zone_control.py:27:7 - error: Base classes for class "AtlanticPassAPCZoneControl" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_pass_apc_zone_control.py:56:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/climate/atlantic_pass_apc_zone_control_zone.py + /homeassistant/components/overkiz/climate/atlantic_pass_apc_zone_control_zone.py:183:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_pass_apc_zone_control_zone.py:339:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_pass_apc_zone_control_zone.py:351:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_pass_apc_zone_control_zone.py:434:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/atlantic_pass_apc_zone_control_zone.py:458:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/climate/evo_home_controller.py + /homeassistant/components/overkiz/climate/evo_home_controller.py:34:7 - error: Base classes for class "EvoHomeController" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/evo_home_controller.py:54:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/evo_home_controller.py:74:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/evo_home_controller.py:100:13 - error: "time_interval" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_hlrrwifi.py + /homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_hlrrwifi.py:85:7 - error: Base classes for class "HitachiAirToAirHeatPumpHLRRWIFI" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_hlrrwifi.py:116:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_hlrrwifi.py:143:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_hlrrwifi.py:151:9 - error: "fan_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_hlrrwifi.py:160:9 - error: "swing_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_hlrrwifi.py:172:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_hlrrwifi.py:182:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_hlrrwifi.py:195:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_ovp.py + /homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_ovp.py:88:7 - error: Base classes for class "HitachiAirToAirHeatPumpOVP" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_ovp.py:120:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_ovp.py:149:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_ovp.py:163:9 - error: "swing_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_ovp.py:175:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_ovp.py:185:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_ovp.py:199:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_ovp.py:247:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_air_heat_pump_ovp.py:254:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/climate/hitachi_air_to_water_heating_zone.py + /homeassistant/components/overkiz/climate/hitachi_air_to_water_heating_zone.py:37:7 - error: Base classes for class "HitachiAirToWaterHeatingZone" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_water_heating_zone.py:62:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_water_heating_zone.py:78:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_water_heating_zone.py:94:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/hitachi_air_to_water_heating_zone.py:106:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/climate/somfy_heating_temperature_interface.py + /homeassistant/components/overkiz/climate/somfy_heating_temperature_interface.py:60:7 - error: Base classes for class "SomfyHeatingTemperatureInterface" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/somfy_heating_temperature_interface.py:96:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/somfy_heating_temperature_interface.py:123:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/somfy_heating_temperature_interface.py:141:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/somfy_heating_temperature_interface.py:153:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/somfy_heating_temperature_interface.py:171:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/climate/somfy_thermostat.py + /homeassistant/components/overkiz/climate/somfy_thermostat.py:55:7 - error: Base classes for class "SomfyThermostat" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/somfy_thermostat.py:80:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/somfy_thermostat.py:90:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/somfy_thermostat.py:103:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/somfy_thermostat.py:112:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/climate/valve_heating_temperature_interface.py + /homeassistant/components/overkiz/climate/valve_heating_temperature_interface.py:48:7 - error: Base classes for class "ValveHeatingTemperatureInterface" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/valve_heating_temperature_interface.py:77:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/valve_heating_temperature_interface.py:84:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/valve_heating_temperature_interface.py:91:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/climate/valve_heating_temperature_interface.py:115:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/cover/awning.py + /homeassistant/components/overkiz/cover/awning.py:48:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/cover/awning.py:74:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/cover/awning.py:90:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/cover/generic_cover.py + /homeassistant/components/overkiz/cover/generic_cover.py:47:7 - error: Base classes for class "OverkizGenericCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/cover/generic_cover.py:51:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/cover/generic_cover.py:73:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/cover/generic_cover.py:125:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/cover/vertical_cover.py + /homeassistant/components/overkiz/cover/vertical_cover.py:80:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/cover/vertical_cover.py:112:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/cover/vertical_cover.py:128:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/light.py + /homeassistant/components/overkiz/light.py:38:7 - error: Base classes for class "OverkizLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/light.py:55:14 - error: "_attr_supported_color_modes" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "set[ColorMode]" is not the same as base type "set[ColorMode] | set[str] | None" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/light.py:58:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/light.py:66:9 - error: "rgb_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/light.py:78:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/lock.py + /homeassistant/components/overkiz/lock.py:32:7 - error: Base classes for class "OverkizLock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/lock.py:44:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/number.py + /homeassistant/components/overkiz/number.py:224:7 - error: Base classes for class "OverkizNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/number.py:227:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "OverkizNumberDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/number.py:253:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/select.py + /homeassistant/components/overkiz/select.py:155:7 - error: Base classes for class "OverkizSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/select.py:158:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "OverkizSelectDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/select.py:161:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/sensor.py + /homeassistant/components/overkiz/sensor.py:560:7 - error: Base classes for class "OverkizStateSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/sensor.py:563:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "OverkizSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/sensor.py:566:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/sensor.py:591:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/sensor.py:614:7 - error: Base classes for class "OverkizHomeKitSetupCodeSensor" define variable "_attr_name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/sensor.py:614:7 - error: Base classes for class "OverkizHomeKitSetupCodeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/sensor.py:628:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/sensor.py:635:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/siren.py + /homeassistant/components/overkiz/siren.py:35:7 - error: Base classes for class "OverkizSiren" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/siren.py:45:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/switch.py + /homeassistant/components/overkiz/switch.py:141:7 - error: Base classes for class "OverkizSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/switch.py:144:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "OverkizSwitchDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/switch.py:147:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/water_heater/atlantic_domestic_hot_water_production_mlb_component.py + /homeassistant/components/overkiz/water_heater/atlantic_domestic_hot_water_production_mlb_component.py:22:7 - error: Base classes for class "AtlanticDomesticHotWaterProductionMBLComponent" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/atlantic_domestic_hot_water_production_mlb_component.py:58:9 - error: "current_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/atlantic_domestic_hot_water_production_mlb_component.py:68:9 - error: "target_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/atlantic_domestic_hot_water_production_mlb_component.py:99:9 - error: "is_away_mode_on" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/atlantic_domestic_hot_water_production_mlb_component.py:107:9 - error: "current_operation" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/water_heater/atlantic_domestic_hot_water_production_v2_io_component.py + /homeassistant/components/overkiz/water_heater/atlantic_domestic_hot_water_production_v2_io_component.py:30:7 - error: Base classes for class "AtlanticDomesticHotWaterProductionV2IOComponent" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/atlantic_domestic_hot_water_production_v2_io_component.py:66:9 - error: "current_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/atlantic_domestic_hot_water_production_v2_io_component.py:77:9 - error: "target_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/atlantic_domestic_hot_water_production_v2_io_component.py:125:9 - error: "is_away_mode_on" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/atlantic_domestic_hot_water_production_v2_io_component.py:142:9 - error: "current_operation" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/water_heater/atlantic_pass_apc_dhw.py + /homeassistant/components/overkiz/water_heater/atlantic_pass_apc_dhw.py:20:7 - error: Base classes for class "AtlanticPassAPCDHW" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/atlantic_pass_apc_dhw.py:32:9 - error: "target_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/atlantic_pass_apc_dhw.py:94:9 - error: "is_away_mode_on" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/atlantic_pass_apc_dhw.py:102:9 - error: "current_operation" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/water_heater/domestic_hot_water_production.py + /homeassistant/components/overkiz/water_heater/domestic_hot_water_production.py:43:7 - error: Base classes for class "DomesticHotWaterProduction" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/domestic_hot_water_production.py:117:9 - error: "is_away_mode_on" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/domestic_hot_water_production.py:175:9 - error: "current_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/domestic_hot_water_production.py:190:9 - error: "target_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/domestic_hot_water_production.py:212:9 - error: "target_temperature_high" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/domestic_hot_water_production.py:222:9 - error: "target_temperature_low" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/domestic_hot_water_production.py:254:9 - error: "current_operation" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overkiz/water_heater/hitachi_dhw.py + /homeassistant/components/overkiz/water_heater/hitachi_dhw.py:33:7 - error: Base classes for class "HitachiDHW" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/hitachi_dhw.py:48:9 - error: "current_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/hitachi_dhw.py:58:9 - error: "target_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/overkiz/water_heater/hitachi_dhw.py:77:9 - error: "current_operation" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/overseerr/event.py + /homeassistant/components/overseerr/event.py:76:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "OverseerrEventEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/overseerr/event.py:76:14 - error: "entity_description" overrides symbol of same name in class "EventEntity" +   Variable is mutable so its type is invariant +     Override type "OverseerrEventEntityDescription" is not the same as base type "EventEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/overseerr/event.py:104:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/overseerr/sensor.py + /homeassistant/components/overseerr/sensor.py:89:7 - error: Base classes for class "OverseerrSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/overseerr/sensor.py:101:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "OverseerrSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/overseerr/sensor.py:101:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "OverseerrSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/overseerr/sensor.py:105:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/ovo_energy/config_flow.py + /homeassistant/components/ovo_energy/config_flow.py:66:31 - error: Argument of type "str | None" cannot be assigned to parameter "title" of type "str" in function "async_create_entry" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/ovo_energy/config_flow.py:111:21 - error: Argument of type "Any | None" cannot be assigned to parameter "username" of type "str" in function "authenticate" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/ovo_energy/entity.py + /homeassistant/components/ovo_energy/entity.py:36:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ovo_energy/entity.py:40:35 - error: Argument of type "set[tuple[Literal['ovo_energy'], int | None]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]]" in function "__init__" +   Type "int | None" is not assignable to type "str" +     "int" is not assignable to "str" (reportArgumentType) +/homeassistant/components/ovo_energy/sensor.py + /homeassistant/components/ovo_energy/sensor.py:41:62 - error: Type "Overload[(number: _SupportsRound1[_T@round], ndigits: None = None) -> _T@round, (number: _SupportsRound2[_T@round], ndigits: SupportsIndex) -> _T@round]" is not assignable to declared type "(OVODailyUsage) -> (StateType | datetime)" +   No overloaded function matches type "(OVODailyUsage) -> (StateType | datetime)" (reportAssignmentType) + /homeassistant/components/ovo_energy/sensor.py:51:29 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/ovo_energy/sensor.py:58:29 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/ovo_energy/sensor.py:59:12 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/ovo_energy/sensor.py:67:44 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/ovo_energy/sensor.py:67:75 - error: "start" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/ovo_energy/sensor.py:74:44 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/ovo_energy/sensor.py:74:75 - error: "end" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/ovo_energy/sensor.py:85:29 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/ovo_energy/sensor.py:92:29 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/ovo_energy/sensor.py:93:12 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/ovo_energy/sensor.py:101:44 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/ovo_energy/sensor.py:101:67 - error: "start" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/ovo_energy/sensor.py:108:44 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/ovo_energy/sensor.py:108:67 - error: "end" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/ovo_energy/sensor.py:159:7 - error: Base classes for class "OVOEnergySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ovo_energy/sensor.py:159:7 - error: Base classes for class "OVOEnergySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ovo_energy/sensor.py:174:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "OVOEnergySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ovo_energy/sensor.py:174:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "OVOEnergySensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ovo_energy/sensor.py:177:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/ovo_energy/sensor.py:180:46 - error: Argument of type "DataUpdateCoordinator[OVODailyUsage]" cannot be assigned to parameter of type "OVODailyUsage" +   "DataUpdateCoordinator[OVODailyUsage]" is not assignable to "OVODailyUsage" (reportArgumentType) +/homeassistant/components/owntracks/device_tracker.py + /homeassistant/components/owntracks/device_tracker.py:63:7 - error: Base classes for class "OwnTracksEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/owntracks/device_tracker.py:63:7 - error: Base classes for class "OwnTracksEntity" define variable "_attr_device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/owntracks/device_tracker.py:63:7 - error: Base classes for class "OwnTracksEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/owntracks/device_tracker.py:63:7 - error: Base classes for class "OwnTracksEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/owntracks/device_tracker.py:63:7 - error: Base classes for class "OwnTracksEntity" define variable "force_update" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/owntracks/device_tracker.py:76:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/owntracks/device_tracker.py:81:9 - error: "battery_level" overrides symbol of same name in class "BaseTrackerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/owntracks/device_tracker.py:86:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/owntracks/device_tracker.py:91:9 - error: "location_accuracy" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/owntracks/device_tracker.py:96:9 - error: "latitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/owntracks/device_tracker.py:105:9 - error: "longitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/owntracks/device_tracker.py:114:9 - error: "location_name" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/owntracks/device_tracker.py:124:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/p1_monitor/sensor.py + /homeassistant/components/p1_monitor/sensor.py:284:7 - error: Base classes for class "P1MonitorSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/p1_monitor/sensor.py:319:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/palazzetti/button.py + /homeassistant/components/palazzetti/button.py:29:7 - error: Base classes for class "PalazzettiSilentButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/palazzetti/climate.py + /homeassistant/components/palazzetti/climate.py:32:7 - error: Base classes for class "PalazzettiClimateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/palazzetti/climate.py:65:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/palazzetti/climate.py:70:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/palazzetti/climate.py:93:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/palazzetti/climate.py:98:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/palazzetti/climate.py:122:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/palazzetti/number.py + /homeassistant/components/palazzetti/number.py:38:7 - error: Base classes for class "PalazzettiCombustionPowerEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/palazzetti/number.py:56:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/palazzetti/number.py:80:7 - error: Base classes for class "PalazzettiFanEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/palazzetti/number.py:101:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/palazzetti/sensor.py + /homeassistant/components/palazzetti/sensor.py:96:7 - error: Base classes for class "PalazzettiSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/palazzetti/sensor.py:108:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PropertySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/palazzetti/sensor.py:108:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PropertySensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/palazzetti/sensor.py:112:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/panasonic_bluray/media_player.py + /homeassistant/components/panasonic_bluray/media_player.py:7:6 - error: Import "panacotta" could not be resolved (reportMissingImports) +/homeassistant/components/panasonic_viera/__init__.py + /homeassistant/components/panasonic_viera/__init__.py:198:37 - error: Cannot access attribute "upper" for class "Keys" +   Attribute "upper" is unknown (reportAttributeAccessIssue) +/homeassistant/components/panasonic_viera/media_player.py + /homeassistant/components/panasonic_viera/media_player.py:93:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/panasonic_viera/media_player.py:98:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/panasonic_viera/media_player.py:103:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/panasonic_viera/media_player.py:108:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/panasonic_viera/remote.py + /homeassistant/components/panasonic_viera/remote.py:57:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/panasonic_viera/remote.py:64:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/panasonic_viera/remote.py:76:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/panasonic_viera/remote.py:81:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/panasonic_viera/remote.py:86:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/paperless_ngx/sensor.py + /homeassistant/components/paperless_ngx/sensor.py:267:7 - error: Base classes for class "PaperlessSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/paperless_ngx/sensor.py:272:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PaperlessEntityDescription[Unknown]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/paperless_ngx/sensor.py:275:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/paperless_ngx/update.py + /homeassistant/components/paperless_ngx/update.py:55:19 - error: Type "Literal['https://docs.paperless-ngx.com/changelog/']" is not assignable to declared type "cached_property" +   "Literal['https://docs.paperless-ngx.com/changelog/']" is not assignable to "cached_property[str | None]" (reportAssignmentType) + /homeassistant/components/paperless_ngx/update.py:58:9 - error: "should_poll" overrides symbol of same name in class "BaseCoordinatorEntity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/paperless_ngx/update.py:58:9 - error: "should_poll" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/paperless_ngx/update.py:63:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/paperless_ngx/update.py:68:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/peblar/binary_sensor.py + /homeassistant/components/peblar/binary_sensor.py:66:7 - error: Base classes for class "PeblarBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/peblar/binary_sensor.py:72:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "PeblarBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/peblar/binary_sensor.py:75:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/peblar/button.py + /homeassistant/components/peblar/button.py:68:7 - error: Base classes for class "PeblarButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/peblar/button.py:74:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "PeblarButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/peblar/button.py:77:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/peblar/coordinator.py + /homeassistant/components/peblar/coordinator.py:130:15 - error: Method "_async_update_data" overrides class "DataUpdateCoordinator" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, PeblarVersionInformation]", override returns type "Coroutine[Any, Any, Any]" +     "Coroutine[Any, Any, Any]" is not assignable to "CoroutineType[Any, Any, PeblarVersionInformation]" (reportIncompatibleMethodOverride) + /homeassistant/components/peblar/coordinator.py:157:15 - error: Method "_async_update_data" overrides class "DataUpdateCoordinator" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, PeblarData]", override returns type "Coroutine[Any, Any, Any]" +     "Coroutine[Any, Any, Any]" is not assignable to "CoroutineType[Any, Any, PeblarData]" (reportIncompatibleMethodOverride) + /homeassistant/components/peblar/coordinator.py:185:15 - error: Method "_async_update_data" overrides class "DataUpdateCoordinator" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, PeblarUserConfiguration]", override returns type "Coroutine[Any, Any, Any]" +     "Coroutine[Any, Any, Any]" is not assignable to "CoroutineType[Any, Any, PeblarUserConfiguration]" (reportIncompatibleMethodOverride) +/homeassistant/components/peblar/number.py + /homeassistant/components/peblar/number.py:42:7 - error: Base classes for class "PeblarChargeCurrentLimitNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/peblar/number.py:117:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/peblar/select.py + /homeassistant/components/peblar/select.py:65:7 - error: Base classes for class "PeblarSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/peblar/select.py:71:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "PeblarSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/peblar/select.py:74:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/peblar/select.py:79:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/peblar/sensor.py + /homeassistant/components/peblar/sensor.py:248:7 - error: Base classes for class "PeblarSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/peblar/sensor.py:251:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PeblarSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/peblar/sensor.py:254:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/peblar/switch.py + /homeassistant/components/peblar/switch.py:88:7 - error: Base classes for class "PeblarSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/peblar/switch.py:94:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "PeblarSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/peblar/switch.py:97:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/peblar/switch.py:102:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/peblar/switch.py:108:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/peblar/update.py + /homeassistant/components/peblar/update.py:70:7 - error: Base classes for class "PeblarUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/peblar/update.py:76:5 - error: "entity_description" overrides symbol of same name in class "UpdateEntity" +   Variable is mutable so its type is invariant +     Override type "PeblarUpdateEntityDescription" is not the same as base type "UpdateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/peblar/update.py:79:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/peblar/update.py:84:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/peco/binary_sensor.py + /homeassistant/components/peco/binary_sensor.py:41:7 - error: Base classes for class "PecoBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/peco/binary_sensor.py:58:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/peco/sensor.py + /homeassistant/components/peco/sensor.py:90:7 - error: Base classes for class "PecoSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/peco/sensor.py:111:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PECOSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/peco/sensor.py:111:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PECOSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/peco/sensor.py:114:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/peco/sensor.py:119:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/pegel_online/config_flow.py + /homeassistant/components/pegel_online/config_flow.py:7:28 - error: "CONNECT_ERRORS" is not exported from module "aiopegelonline" +   Import from "aiopegelonline.const" instead (reportPrivateImportUsage) +/homeassistant/components/pegel_online/coordinator.py + /homeassistant/components/pegel_online/coordinator.py:5:28 - error: "CONNECT_ERRORS" is not exported from module "aiopegelonline" +   Import from "aiopegelonline.const" instead (reportPrivateImportUsage) + /homeassistant/components/pegel_online/coordinator.py:5:57 - error: "Station" is not exported from module "aiopegelonline" +   Import from "aiopegelonline.models" instead (reportPrivateImportUsage) + /homeassistant/components/pegel_online/coordinator.py:5:66 - error: "StationMeasurements" is not exported from module "aiopegelonline" +   Import from "aiopegelonline.models" instead (reportPrivateImportUsage) +/homeassistant/components/pegel_online/sensor.py + /homeassistant/components/pegel_online/sensor.py:114:7 - error: Base classes for class "PegelOnlineSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pegel_online/sensor.py:126:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PegelOnlineSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/pegel_online/sensor.py:126:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PegelOnlineSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/pegel_online/sensor.py:148:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/pencom/switch.py + /homeassistant/components/pencom/switch.py:8:6 - error: Import "pencompy.pencompy" could not be resolved (reportMissingImports) + /homeassistant/components/pencom/switch.py:89:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pencom/switch.py:94:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pencom/switch.py:111:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/permobil/__init__.py + /homeassistant/components/permobil/__init__.py:7:24 - error: "MyPermobil" is not exported from module "mypermobil" +   Import from "mypermobil.mypermobil" instead (reportPrivateImportUsage) + /homeassistant/components/permobil/__init__.py:7:36 - error: "MyPermobilClientException" is not exported from module "mypermobil" +   Import from "mypermobil.mypermobil" instead (reportPrivateImportUsage) +/homeassistant/components/permobil/binary_sensor.py + /homeassistant/components/permobil/binary_sensor.py:60:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "PermobilBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/permobil/binary_sensor.py:63:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/permobil/binary_sensor.py:68:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/permobil/config_flow.py + /homeassistant/components/permobil/config_flow.py:10:5 - error: "MyPermobil" is not exported from module "mypermobil" +   Import from "mypermobil.mypermobil" instead (reportPrivateImportUsage) + /homeassistant/components/permobil/config_flow.py:11:5 - error: "MyPermobilAPIException" is not exported from module "mypermobil" +   Import from "mypermobil.mypermobil" instead (reportPrivateImportUsage) + /homeassistant/components/permobil/config_flow.py:12:5 - error: "MyPermobilClientException" is not exported from module "mypermobil" +   Import from "mypermobil.mypermobil" instead (reportPrivateImportUsage) + /homeassistant/components/permobil/config_flow.py:13:5 - error: "MyPermobilEulaException" is not exported from module "mypermobil" +   Import from "mypermobil.mypermobil" instead (reportPrivateImportUsage) +/homeassistant/components/permobil/coordinator.py + /homeassistant/components/permobil/coordinator.py:8:24 - error: "MyPermobil" is not exported from module "mypermobil" +   Import from "mypermobil.mypermobil" instead (reportPrivateImportUsage) + /homeassistant/components/permobil/coordinator.py:8:36 - error: "MyPermobilAPIException" is not exported from module "mypermobil" +   Import from "mypermobil.mypermobil" instead (reportPrivateImportUsage) +/homeassistant/components/permobil/sensor.py + /homeassistant/components/permobil/sensor.py:197:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PermobilSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/permobil/sensor.py:200:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/permobil/sensor.py:209:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/permobil/sensor.py:216:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/person/__init__.py + /homeassistant/components/person/__init__.py:567:14 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str | None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) +/homeassistant/components/pglab/__init__.py + /homeassistant/components/pglab/__init__.py:48:38 - error: Argument of type "ReceivePayloadType" cannot be assigned to parameter of type "str" +   Type "ReceivePayloadType" is not assignable to type "str" +     "bytearray" is not assignable to "str" (reportArgumentType) + /homeassistant/components/pglab/__init__.py:69:36 - error: Argument of type "(topic: str, payload: str, qos: int, retain: bool) -> CoroutineType[Any, Any, None]" cannot be assigned to parameter "publish" of type "(str, str, int | None, bool | None) -> Coroutine[Any, Any, dict[Unknown, Unknown]]" in function "__init__" +   Type "(topic: str, payload: str, qos: int, retain: bool) -> CoroutineType[Any, Any, None]" is not assignable to type "(str, str, int | None, bool | None) -> Coroutine[Any, Any, dict[Unknown, Unknown]]" +     Parameter 3: type "int | None" is incompatible with type "int" +       Type "int | None" is not assignable to type "int" +         "None" is not assignable to "int" +     Parameter 4: type "bool | None" is incompatible with type "bool" +       Type "bool | None" is not assignable to type "bool" +         "None" is not assignable to "bool" +     Function return type "CoroutineType[Any, Any, None]" is incompatible with type "Coroutine[Any, Any, dict[Unknown, Unknown]]" + ... (reportArgumentType) + /homeassistant/components/pglab/__init__.py:69:66 - error: Argument of type "(sub_state: Sub_State) -> CoroutineType[Any, Any, None]" cannot be assigned to parameter "unsubscribe" of type "(Sub_State) -> Coroutine[Any, Any, dict[Unknown, Unknown]]" in function "__init__" +   Type "(sub_state: Sub_State) -> CoroutineType[Any, Any, None]" is not assignable to type "(Sub_State) -> Coroutine[Any, Any, dict[Unknown, Unknown]]" +     Function return type "CoroutineType[Any, Any, None]" is incompatible with type "Coroutine[Any, Any, dict[Unknown, Unknown]]" +       "CoroutineType[Any, Any, None]" is not assignable to "Coroutine[Any, Any, dict[Unknown, Unknown]]" +         Type parameter "_ReturnT_nd_co@Coroutine" is covariant, but "None" is not a subtype of "dict[Unknown, Unknown]" +           "None" is not assignable to "dict[Unknown, Unknown]" (reportArgumentType) +/homeassistant/components/pglab/cover.py + /homeassistant/components/pglab/cover.py:67:62 - error: Cannot assign to attribute "_attr_translation_placeholders" for class "PGLabCover*" +   "int" is not assignable to "str" (reportAttributeAccessIssue) + /homeassistant/components/pglab/cover.py:89:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pglab/cover.py:96:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pglab/cover.py:103:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/pglab/entity.py + /homeassistant/components/pglab/entity.py:92:44 - error: Argument of type "None" cannot be assigned to parameter "on_state_update" of type "State_Update" in function "set_on_state_callback" +   Type "None" is not assignable to type "State_Update" (reportArgumentType) + /homeassistant/components/pglab/entity.py:112:36 - error: Argument of type "Self@PGLabSensorEntity" cannot be assigned to parameter "self" of type "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" in function "__init__" +   "PGLabSensorEntity*" is not assignable to "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" +     Type parameter "_DataUpdateCoordinatorT@CoordinatorEntity" is invariant, but "PGLabSensorsCoordinator" is not the same as "DataUpdateCoordinator[dict[str, Any]]" (reportArgumentType) +/homeassistant/components/pglab/sensor.py + /homeassistant/components/pglab/sensor.py:107:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/pglab/switch.py + /homeassistant/components/pglab/switch.py:61:60 - error: Cannot assign to attribute "_attr_translation_placeholders" for class "PGLabSwitch*" +   "int" is not assignable to "str" (reportAttributeAccessIssue) + /homeassistant/components/pglab/switch.py:74:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/philips_js/binary_sensor.py + /homeassistant/components/philips_js/binary_sensor.py:66:7 - error: Base classes for class "PhilipsTVBinarySensorEntityRecordingType" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/philips_js/binary_sensor.py:77:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PhilipsTVBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/philips_js/binary_sensor.py:77:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "PhilipsTVBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/philips_js/coordinator.py + /homeassistant/components/philips_js/coordinator.py:66:18 - error: Could not access item in TypedDict +   "name" is not a required key in "SystemType", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/philips_js/light.py + /homeassistant/components/philips_js/light.py:46:8 - error: Could not access item in TypedDict +   "styleName" is not a required key in "AmbilightCurrentConfiguration", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/philips_js/light.py:47:16 - error: Could not access item in TypedDict +   "colorSettings" is not a required key in "AmbilightCurrentConfiguration", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/philips_js/light.py:48:8 - error: Could not access item in TypedDict +   "styleName" is not a required key in "AmbilightCurrentConfiguration", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/philips_js/light.py:49:16 - error: Could not access item in TypedDict +   "audioSettings" is not a required key in "AmbilightCurrentConfiguration", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/philips_js/light.py:201:45 - error: Argument of type "str | None" cannot be assigned to parameter "style" of type "str" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/philips_js/light.py:204:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/philips_js/light.py:216:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/philips_js/light.py:306:13 - error: Could not assign item in TypedDict +   "dict[str, Unknown]" is not assignable to "AmbilightColorSettingsType" (reportGeneralTypeIssues) + /homeassistant/components/philips_js/light.py:307:13 - error: Could not assign item in TypedDict +   "speed" is not a defined key in "AmbilightCurrentConfiguration" (reportGeneralTypeIssues) + /homeassistant/components/philips_js/light.py:310:13 - error: Could not assign item in TypedDict +   "dict[str, Unknown]" is not assignable to "AmbilightAudioSettingsType" (reportGeneralTypeIssues) + /homeassistant/components/philips_js/light.py:311:13 - error: Could not assign item in TypedDict +   "tuning" is not a defined key in "AmbilightCurrentConfiguration" (reportGeneralTypeIssues) + /homeassistant/components/philips_js/light.py:321:28 - error: Type "dict[str, str | bool | None]" is not assignable to declared type "AmbilightCurrentConfiguration" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportAssignmentType) + /homeassistant/components/philips_js/light.py:383:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/philips_js/media_player.py + /homeassistant/components/philips_js/media_player.py:65:7 - error: Base classes for class "PhilipsTVMediaPlayer" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/philips_js/media_player.py:102:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/philips_js/media_player.py:102:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/philips_js/media_player.py:196:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/philips_js/media_player.py:203:17 - error: Argument of type "Literal[MediaType.APP, MediaType.CHANNEL] | None" cannot be assigned to parameter "media_content_type" of type "str" in function "get_browse_image_url" +   Type "Literal[MediaType.APP, MediaType.CHANNEL] | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/philips_js/media_player.py:219:43 - error: Could not access item in TypedDict +   "ccid" is not a required key in "ChannelType", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/philips_js/media_player.py:247:59 - error: Could not access item in TypedDict +   "ccid" is not a required key in "ChannelType", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/philips_js/media_player.py:249:68 - error: Could not access item in TypedDict +   "ccid" is not a required key in "ChannelType", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/philips_js/remote.py + /homeassistant/components/philips_js/remote.py:35:7 - error: Base classes for class "PhilipsTVRemote" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/philips_js/remote.py:62:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/philips_js/switch.py + /homeassistant/components/philips_js/switch.py:48:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/philips_js/switch.py:57:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/philips_js/switch.py:86:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/philips_js/switch.py:95:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/pi_hole/__init__.py + /homeassistant/components/pi_hole/__init__.py:52:10 - error: Expected class but received "(..., version: int = 6) -> Unknown" (reportGeneralTypeIssues) + /homeassistant/components/pi_hole/__init__.py:207:22 - error: Cannot access attribute "authenticate" for class "HoleV5" +   Attribute "authenticate" is unknown (reportAttributeAccessIssue) +/homeassistant/components/pi_hole/binary_sensor.py + /homeassistant/components/pi_hole/binary_sensor.py:28:28 - error: Expected class but received "(..., version: int = 6) -> Unknown" (reportGeneralTypeIssues) + /homeassistant/components/pi_hole/binary_sensor.py:29:28 - error: Expected class but received "(..., version: int = 6) -> Unknown" (reportGeneralTypeIssues) + /homeassistant/components/pi_hole/binary_sensor.py:64:7 - error: Base classes for class "PiHoleBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pi_hole/binary_sensor.py:64:7 - error: Base classes for class "PiHoleBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pi_hole/binary_sensor.py:72:14 - error: Expected class but received "(..., version: int = 6) -> Unknown" (reportGeneralTypeIssues) + /homeassistant/components/pi_hole/binary_sensor.py:80:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PiHoleBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/pi_hole/binary_sensor.py:80:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "PiHoleBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/pi_hole/binary_sensor.py:84:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pi_hole/binary_sensor.py:90:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/pi_hole/config_flow.py + /homeassistant/components/pi_hole/config_flow.py:141:18 - error: Expected class but received "(..., version: int = 6) -> Unknown" (reportGeneralTypeIssues) +/homeassistant/components/pi_hole/entity.py + /homeassistant/components/pi_hole/entity.py:21:14 - error: Expected class but received "(..., version: int = 6) -> Unknown" (reportGeneralTypeIssues) + /homeassistant/components/pi_hole/entity.py:33:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/pi_hole/sensor.py + /homeassistant/components/pi_hole/sensor.py:142:7 - error: Base classes for class "PiHoleSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pi_hole/sensor.py:142:7 - error: Base classes for class "PiHoleSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pi_hole/sensor.py:150:14 - error: Expected class but received "(..., version: int = 6) -> Unknown" (reportGeneralTypeIssues) + /homeassistant/components/pi_hole/sensor.py:158:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/pi_hole/sensor.py:163:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/pi_hole/switch.py + /homeassistant/components/pi_hole/switch.py:55:7 - error: Base classes for class "PiHoleSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pi_hole/switch.py:55:7 - error: Base classes for class "PiHoleSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pi_hole/switch.py:61:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pi_hole/switch.py:66:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pi_hole/switch.py:71:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/pi_hole/update.py + /homeassistant/components/pi_hole/update.py:24:34 - error: Expected class but received "(..., version: int = 6) -> Unknown" (reportGeneralTypeIssues) + /homeassistant/components/pi_hole/update.py:25:31 - error: Expected class but received "(..., version: int = 6) -> Unknown" (reportGeneralTypeIssues) + /homeassistant/components/pi_hole/update.py:26:27 - error: Expected class but received "(..., version: int = 6) -> Unknown" (reportGeneralTypeIssues) + /homeassistant/components/pi_hole/update.py:86:7 - error: Base classes for class "PiHoleUpdateEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pi_hole/update.py:86:7 - error: Base classes for class "PiHoleUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pi_hole/update.py:94:14 - error: Expected class but received "(..., version: int = 6) -> Unknown" (reportGeneralTypeIssues) + /homeassistant/components/pi_hole/update.py:102:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PiHoleUpdateEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/pi_hole/update.py:102:14 - error: "entity_description" overrides symbol of same name in class "UpdateEntity" +   Variable is mutable so its type is invariant +     Override type "PiHoleUpdateEntityDescription" is not the same as base type "UpdateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/pi_hole/update.py:108:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pi_hole/update.py:115:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pi_hole/update.py:124:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/picnic/__init__.py + /homeassistant/components/picnic/__init__.py:30:20 - error: Argument of type "Any | None" cannot be assigned to parameter "auth_token" of type "str" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/picnic/__init__.py:31:22 - error: Argument of type "Any | None" cannot be assigned to parameter "country_code" of type "str" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/picnic/sensor.py + /homeassistant/components/picnic/sensor.py:218:7 - error: Base classes for class "PicnicSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/picnic/sensor.py:218:7 - error: Base classes for class "PicnicSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/picnic/sensor.py:218:7 - error: Base classes for class "PicnicSensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/picnic/sensor.py:218:7 - error: Base classes for class "PicnicSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/picnic/sensor.py:218:7 - error: Base classes for class "PicnicSensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/picnic/sensor.py:218:7 - error: Base classes for class "PicnicSensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/picnic/sensor.py:218:7 - error: Base classes for class "PicnicSensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/picnic/sensor.py:233:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PicnicSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/picnic/sensor.py:233:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PicnicSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/picnic/sensor.py:244:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/picnic/todo.py + /homeassistant/components/picnic/todo.py:39:7 - error: Base classes for class "PicnicCart" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/picnic/todo.py:62:9 - error: "todo_items" overrides symbol of same name in class "TodoListEntity" +   "property" is not assignable to "cached_property[list[TodoItem] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/pilight/binary_sensor.py + /homeassistant/components/pilight/binary_sensor.py:67:33 - error: Argument of type "Any | None" cannot be assigned to parameter "rst_dly_sec" of type "int" in function "__init__" +   Type "Any | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/pilight/binary_sensor.py:102:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pilight/binary_sensor.py:107:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pilight/binary_sensor.py:156:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pilight/binary_sensor.py:161:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/pilight/entity.py + /homeassistant/components/pilight/entity.py:97:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pilight/entity.py:102:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/pilight/light.py + /homeassistant/components/pilight/light.py:52:7 - error: Base classes for class "PilightLight" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pilight/light.py:52:7 - error: Base classes for class "PilightLight" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pilight/light.py:52:7 - error: Base classes for class "PilightLight" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pilight/light.py:65:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/pilight/sensor.py + /homeassistant/components/pilight/sensor.py:73:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pilight/sensor.py:78:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pilight/sensor.py:83:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/pilight/switch.py + /homeassistant/components/pilight/switch.py:40:7 - error: Base classes for class "PilightSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pilight/switch.py:40:7 - error: Base classes for class "PilightSwitch" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pilight/switch.py:40:7 - error: Base classes for class "PilightSwitch" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ping/binary_sensor.py + /homeassistant/components/ping/binary_sensor.py:26:7 - error: Base classes for class "PingBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ping/binary_sensor.py:46:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ping/device_tracker.py + /homeassistant/components/ping/device_tracker.py:31:7 - error: Base classes for class "PingDeviceTracker" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ping/device_tracker.py:61:9 - error: "ip_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ping/device_tracker.py:66:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ping/device_tracker.py:82:9 - error: "entity_registry_enabled_default" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/ping/helpers.py + /homeassistant/components/ping/helpers.py:59:28 - error: Argument of type "bool | None" cannot be assigned to parameter "privileged" of type "bool" in function "async_ping" +   Type "bool | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) +/homeassistant/components/ping/sensor.py + /homeassistant/components/ping/sensor.py:119:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PingSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ping/sensor.py:119:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PingSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ping/sensor.py:122:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/ping/sensor.py:127:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/pioneer/media_player.py + /homeassistant/components/pioneer/media_player.py:172:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pioneer/media_player.py:177:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pioneer/media_player.py:189:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pioneer/media_player.py:194:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pioneer/media_player.py:199:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pioneer/media_player.py:204:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pioneer/media_player.py:209:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/plaato/binary_sensor.py + /homeassistant/components/plaato/binary_sensor.py:40:7 - error: Base classes for class "PlaatoBinarySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/plaato/binary_sensor.py:40:7 - error: Base classes for class "PlaatoBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/plaato/binary_sensor.py:52:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/plaato/entity.py + /homeassistant/components/plaato/entity.py:64:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plaato/entity.py:76:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/plaato/sensor.py + /homeassistant/components/plaato/sensor.py:78:7 - error: Base classes for class "PlaatoSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/plaato/sensor.py:78:7 - error: Base classes for class "PlaatoSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/plaato/sensor.py:88:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/plaato/sensor.py:93:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/plant/__init__.py + /homeassistant/components/plant/__init__.py:338:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plant/__init__.py:343:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/plant/__init__.py:348:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/playstation_network/binary_sensor.py + /homeassistant/components/playstation_network/binary_sensor.py:63:7 - error: Base classes for class "PlaystationNetworkBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/playstation_network/binary_sensor.py:69:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "PlaystationNetworkBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/playstation_network/binary_sensor.py:73:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/playstation_network/image.py + /homeassistant/components/playstation_network/image.py:111:7 - error: Base classes for class "PlaystationNetworkImageBaseEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/playstation_network/image.py:114:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PlaystationNetworkImageEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/playstation_network/image.py:148:5 - error: "coordinator" overrides symbol of same name in class "PlaystationNetworkImageBaseEntity" +   Variable is mutable so its type is invariant +     Override type "PlaystationNetworkUserDataCoordinator" is not the same as base type "PlayStationNetworkBaseCoordinator[Unknown]" (reportIncompatibleVariableOverride) + /homeassistant/components/playstation_network/image.py:154:5 - error: "coordinator" overrides symbol of same name in class "PlaystationNetworkImageBaseEntity" +   Variable is mutable so its type is invariant +     Override type "PlaystationNetworkFriendDataCoordinator" is not the same as base type "PlayStationNetworkBaseCoordinator[Unknown]" (reportIncompatibleVariableOverride) +/homeassistant/components/playstation_network/media_player.py + /homeassistant/components/playstation_network/media_player.py:84:7 - error: Base classes for class "PsnMediaPlayerEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/playstation_network/media_player.py:118:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/playstation_network/media_player.py:118:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/playstation_network/media_player.py:131:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/playstation_network/media_player.py:137:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/playstation_network/media_player.py:143:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/playstation_network/notify.py + /homeassistant/components/playstation_network/notify.py:111:7 - error: Base classes for class "PlaystationNetworkNotifyBaseEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/playstation_network/sensor.py + /homeassistant/components/playstation_network/sensor.py:179:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PlaystationNetworkSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/playstation_network/sensor.py:183:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/playstation_network/sensor.py:189:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/playstation_network/sensor.py:203:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/playstation_network/sensor.py:214:5 - error: "coordinator" overrides symbol of same name in class "PlaystationNetworkSensorBaseEntity" +   Variable is mutable so its type is invariant +     Override type "PlaystationNetworkUserDataCoordinator" is not the same as base type "PlayStationNetworkBaseCoordinator[Unknown]" (reportIncompatibleVariableOverride) + /homeassistant/components/playstation_network/sensor.py:220:5 - error: "coordinator" overrides symbol of same name in class "PlaystationNetworkSensorBaseEntity" +   Variable is mutable so its type is invariant +     Override type "PlaystationNetworkFriendDataCoordinator" is not the same as base type "PlayStationNetworkBaseCoordinator[Unknown]" (reportIncompatibleVariableOverride) +/homeassistant/components/plex/config_flow.py + /homeassistant/components/plex/config_flow.py:268:12 - error: Could not access item in TypedDict +   "source" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/plex/media_player.py + /homeassistant/components/plex/media_player.py:204:38 - error: "url" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/plex/media_player.py:208:25 - error: "proxyThroughServer" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/plex/media_player.py:209:58 - error: "protocolCapabilities" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/plex/media_player.py:226:46 - error: No overloads for "join" match the provided arguments (reportCallIssue) + /homeassistant/components/plex/media_player.py:226:57 - error: Argument of type "list[Any | None]" cannot be assigned to parameter "iterable" of type "Iterable[str]" in function "join" +   "list[Any | None]" is not assignable to "Iterable[str]" +     Type parameter "_T_co@Iterable" is covariant, but "Any | None" is not a subtype of "str" +       Type "Any | None" is not assignable to type "str" +         "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/plex/media_player.py:295:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/media_player.py:301:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/media_player.py:313:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/media_player.py:319:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/media_player.py:325:9 - error: "media_album_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/media_player.py:331:9 - error: "media_track" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/media_player.py:337:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/media_player.py:343:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/media_player.py:349:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/media_player.py:355:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/media_player.py:367:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/media_player.py:373:9 - error: "media_season" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/media_player.py:379:9 - error: "media_series_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/media_player.py:385:9 - error: "media_episode" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/media_player.py:390:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/media_player.py:392:28 - error: Operator "in" not supported for types "Literal['playback']" and "Any | None" +   Operator "in" not supported for types "Literal['playback']" and "None" (reportOperatorIssue) + /homeassistant/components/plex/media_player.py:412:28 - error: Operator "in" not supported for types "Literal['playback']" and "Any | None" +   Operator "in" not supported for types "Literal['playback']" and "None" (reportOperatorIssue) + /homeassistant/components/plex/media_player.py:417:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/media_player.py:428:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/media_player.py:441:33 - error: Operator "in" not supported for types "Literal['playback']" and "Any | None" +   Operator "in" not supported for types "Literal['playback']" and "None" (reportOperatorIssue) + /homeassistant/components/plex/media_player.py:453:28 - error: Operator "in" not supported for types "Literal['playback']" and "Any | None" +   Operator "in" not supported for types "Literal['playback']" and "None" (reportOperatorIssue) + /homeassistant/components/plex/media_player.py:458:28 - error: Operator "in" not supported for types "Literal['playback']" and "Any | None" +   Operator "in" not supported for types "Literal['playback']" and "None" (reportOperatorIssue) + /homeassistant/components/plex/media_player.py:463:28 - error: Operator "in" not supported for types "Literal['playback']" and "Any | None" +   Operator "in" not supported for types "Literal['playback']" and "None" (reportOperatorIssue) + /homeassistant/components/plex/media_player.py:468:28 - error: Operator "in" not supported for types "Literal['playback']" and "Any | None" +   Operator "in" not supported for types "Literal['playback']" and "None" (reportOperatorIssue) + /homeassistant/components/plex/media_player.py:473:28 - error: Operator "in" not supported for types "Literal['playback']" and "Any | None" +   Operator "in" not supported for types "Literal['playback']" and "None" (reportOperatorIssue) + /homeassistant/components/plex/media_player.py:478:28 - error: Operator "in" not supported for types "Literal['playback']" and "Any | None" +   Operator "in" not supported for types "Literal['playback']" and "None" (reportOperatorIssue) + /homeassistant/components/plex/media_player.py:485:33 - error: Operator "in" not supported for types "Literal['playback']" and "Any | None" +   Operator "in" not supported for types "Literal['playback']" and "None" (reportOperatorIssue) + /homeassistant/components/plex/media_player.py:503:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/media_player.py:519:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/plex/sensor.py + /homeassistant/components/plex/sensor.py:113:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/sensor.py:118:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/sensor.py:207:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/plex/services.py + /homeassistant/components/plex/services.py:162:5 - error: No overloads for "update" match the provided arguments (reportCallIssue) + /homeassistant/components/plex/services.py:162:13 - error: Cannot access attribute "update" for class "str" +   Attribute "update" is unknown (reportAttributeAccessIssue) + /homeassistant/components/plex/services.py:162:20 - error: Argument of type "dict[str, str]" cannot be assigned to parameter "m" of type "Iterable[tuple[str, int]]" in function "update" +   "dict[str, str]" is not assignable to "Iterable[tuple[str, int]]" +     Type parameter "_T_co@Iterable" is covariant, but "str" is not a subtype of "tuple[str, int]" +       "str" is not assignable to "tuple[str, int]" (reportArgumentType) + /homeassistant/components/plex/services.py:164:32 - error: Cannot access attribute "pop" for class "str" +   Attribute "pop" is unknown (reportAttributeAccessIssue) + /homeassistant/components/plex/services.py:175:28 - error: Cannot access attribute "copy" for class "str" +   Attribute "copy" is unknown (reportAttributeAccessIssue) +/homeassistant/components/plex/update.py + /homeassistant/components/plex/update.py:39:5 - error: "_attr_translation_key" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/plex/update.py:79:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/plugwise/__init__.py + /homeassistant/components/plugwise/__init__.py:83:12 - error: Could not access item in TypedDict +   "dev_class" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/plugwise/binary_sensor.py + /homeassistant/components/plugwise/binary_sensor.py:111:7 - error: Base classes for class "PlugwiseBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/binary_sensor.py:124:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PlugwiseBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/binary_sensor.py:124:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "PlugwiseBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/binary_sensor.py:128:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/binary_sensor.py:130:16 - error: Could not access item in TypedDict +   "binary_sensors" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/binary_sensor.py:130:16 - error: Could not access item in TypedDict +   "compressor_state" is not a required key in "SmileBinarySensors", so access may result in runtime exception +   "cooling_enabled" is not a required key in "SmileBinarySensors", so access may result in runtime exception +   "cooling_state" is not a required key in "SmileBinarySensors", so access may result in runtime exception +   "dhw_state" is not a required key in "SmileBinarySensors", so access may result in runtime exception +   "flame_state" is not a required key in "SmileBinarySensors", so access may result in runtime exception +   "heating_state" is not a required key in "SmileBinarySensors", so access may result in runtime exception +   "low_battery" is not a required key in "SmileBinarySensors", so access may result in runtime exception +   "plugwise_notification" is not a required key in "SmileBinarySensors", so access may result in runtime exception + ... (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/binary_sensor.py:133:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/binary_sensor.py:140:22 - error: Could not access item in TypedDict +   "notifications" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/plugwise/button.py + /homeassistant/components/plugwise/button.py:33:7 - error: Base classes for class "PlugwiseButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/button.py:50:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/plugwise/climate.py + /homeassistant/components/plugwise/climate.py:73:20 - error: Could not access item in TypedDict +   "dev_class" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/climate.py:79:20 - error: Could not access item in TypedDict +   "dev_class" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/climate.py:86:7 - error: Base classes for class "PlugwiseClimateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/climate.py:86:7 - error: Base classes for class "PlugwiseClimateEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/climate.py:86:7 - error: Base classes for class "PlugwiseClimateEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/climate.py:86:7 - error: Base classes for class "PlugwiseClimateEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/climate.py:86:7 - error: Base classes for class "PlugwiseClimateEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/climate.py:86:7 - error: Base classes for class "PlugwiseClimateEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/climate.py:139:31 - error: Could not access item in TypedDict +   "thermostat" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/climate.py:139:31 - error: Could not access item in TypedDict +   "lower_bound" is not a required key in "ActuatorData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/climate.py:140:35 - error: Could not access item in TypedDict +   "thermostat" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/climate.py:140:35 - error: Could not access item in TypedDict +   "upper_bound" is not a required key in "ActuatorData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/climate.py:143:13 - error: Could not access item in TypedDict +   "thermostat" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/climate.py:143:13 - error: Could not access item in TypedDict +   "resolution" is not a required key in "ActuatorData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/climate.py:147:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/climate.py:149:16 - error: Could not access item in TypedDict +   "sensors" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/climate.py:149:16 - error: Could not access item in TypedDict +   "temperature" is not a required key in "SmileSensors", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/climate.py:160:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/climate.py:166:16 - error: Could not access item in TypedDict +   "thermostat" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/climate.py:166:16 - error: Could not access item in TypedDict +   "setpoint" is not a required key in "ActuatorData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/climate.py:169:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/climate.py:174:16 - error: Could not access item in TypedDict +   "thermostat" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/climate.py:174:16 - error: Could not access item in TypedDict +   "setpoint_high" is not a required key in "ActuatorData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/climate.py:177:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/climate.py:182:16 - error: Could not access item in TypedDict +   "thermostat" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/climate.py:182:16 - error: Could not access item in TypedDict +   "setpoint_low" is not a required key in "ActuatorData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/climate.py:185:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/climate.py:194:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/climate.py:218:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/climate.py:226:20 - error: Could not access item in TypedDict +   "select_regulation_mode" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/climate.py:236:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/climate.py:241:15 - error: Method "async_set_temperature" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/plugwise/climate.py:257:15 - error: Method "async_set_hvac_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/plugwise/climate.py:292:15 - error: Method "async_set_preset_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/plugwise/config_flow.py + /homeassistant/components/plugwise/config_flow.py:183:9 - error: Method "is_matching" overrides class "ConfigFlow" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "ConfigFlow", override parameter is type "PlugwiseConfigFlow" +     "ConfigFlow" is not assignable to "PlugwiseConfigFlow" (reportIncompatibleMethodOverride) +/homeassistant/components/plugwise/coordinator.py + /homeassistant/components/plugwise/coordinator.py:6:22 - error: "GwEntityData" is not exported from module "plugwise" +   Import from "plugwise.constants" instead (reportPrivateImportUsage) +/homeassistant/components/plugwise/number.py + /homeassistant/components/plugwise/number.py:82:7 - error: Base classes for class "PlugwiseNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/number.py:96:39 - error: Could not access item in TypedDict +   "maximum_boiler_temperature" is not a required key in "GwEntityData", so access may result in runtime exception +   "max_dhw_temperature" is not a required key in "GwEntityData", so access may result in runtime exception +   "temperature_offset" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/number.py:96:39 - error: Could not access item in TypedDict +   "upper_bound" is not a required key in "ActuatorData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/number.py:97:39 - error: Could not access item in TypedDict +   "maximum_boiler_temperature" is not a required key in "GwEntityData", so access may result in runtime exception +   "max_dhw_temperature" is not a required key in "GwEntityData", so access may result in runtime exception +   "temperature_offset" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/number.py:97:39 - error: Could not access item in TypedDict +   "lower_bound" is not a required key in "ActuatorData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/number.py:100:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PlugwiseNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/number.py:100:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "PlugwiseNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/number.py:102:23 - error: Could not access item in TypedDict +   "maximum_boiler_temperature" is not a required key in "GwEntityData", so access may result in runtime exception +   "max_dhw_temperature" is not a required key in "GwEntityData", so access may result in runtime exception +   "temperature_offset" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/number.py:102:23 - error: Could not access item in TypedDict +   "resolution" is not a required key in "ActuatorData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/number.py:108:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/number.py:110:16 - error: Could not access item in TypedDict +   "maximum_boiler_temperature" is not a required key in "GwEntityData", so access may result in runtime exception +   "max_dhw_temperature" is not a required key in "GwEntityData", so access may result in runtime exception +   "temperature_offset" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/number.py:110:16 - error: Could not access item in TypedDict +   "setpoint" is not a required key in "ActuatorData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/number.py:113:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/plugwise/select.py + /homeassistant/components/plugwise/select.py:95:7 - error: Base classes for class "PlugwiseSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/select.py:109:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PlugwiseSelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/select.py:109:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "PlugwiseSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/select.py:116:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/select.py:118:16 - error: Could not access item in TypedDict +   "select_dhw_mode" is not a required key in "GwEntityData", so access may result in runtime exception +   "select_gateway_mode" is not a required key in "GwEntityData", so access may result in runtime exception +   "select_regulation_mode" is not a required key in "GwEntityData", so access may result in runtime exception +   "select_schedule" is not a required key in "GwEntityData", so access may result in runtime exception +   "select_zone_profile" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/select.py:121:9 - error: "options" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/select.py:123:16 - error: Could not access item in TypedDict +   "available_schedules" is not a required key in "GwEntityData", so access may result in runtime exception +   "dhw_modes" is not a required key in "GwEntityData", so access may result in runtime exception +   "gateway_modes" is not a required key in "GwEntityData", so access may result in runtime exception +   "regulation_modes" is not a required key in "GwEntityData", so access may result in runtime exception +   "zone_profiles" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/select.py:126:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/plugwise/sensor.py + /homeassistant/components/plugwise/sensor.py:428:7 - error: Base classes for class "PlugwiseSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/sensor.py:442:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PlugwiseSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/sensor.py:442:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PlugwiseSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/sensor.py:445:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/sensor.py:447:16 - error: Could not access item in TypedDict +   "sensors" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/sensor.py:447:16 - error: Could not access item in TypedDict +   "battery" is not a required key in "SmileSensors", so access may result in runtime exception +   "cooling_activation_outdoor_temperature" is not a required key in "SmileSensors", so access may result in runtime exception +   "cooling_deactivation_threshold" is not a required key in "SmileSensors", so access may result in runtime exception +   "dhw_temperature" is not a required key in "SmileSensors", so access may result in runtime exception +   "domestic_hot_water_setpoint" is not a required key in "SmileSensors", so access may result in runtime exception +   "temperature" is not a required key in "SmileSensors", so access may result in runtime exception +   "electricity_consumed" is not a required key in "SmileSensors", so access may result in runtime exception +   "electricity_consumed_interval" is not a required key in "SmileSensors", so access may result in runtime exception + ... (reportTypedDictNotRequiredAccess) +/homeassistant/components/plugwise/switch.py + /homeassistant/components/plugwise/switch.py:83:7 - error: Base classes for class "PlugwiseSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/switch.py:97:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PlugwiseSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/switch.py:97:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "PlugwiseSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/switch.py:100:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/plugwise/switch.py:102:16 - error: Could not access item in TypedDict +   "switches" is not a required key in "GwEntityData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/switch.py:102:16 - error: Could not access item in TypedDict +   "cooling_ena_switch" is not a required key in "SmileSwitches", so access may result in runtime exception +   "dhw_cm_switch" is not a required key in "SmileSwitches", so access may result in runtime exception +   "lock" is not a required key in "SmileSwitches", so access may result in runtime exception +   "relay" is not a required key in "SmileSwitches", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/plugwise/switch.py:105:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/plugwise/switch.py:115:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/pocketcasts/sensor.py + /homeassistant/components/pocketcasts/sensor.py:8:6 - error: Import "pycketcasts" could not be resolved (reportMissingImports) + /homeassistant/components/pocketcasts/sensor.py:62:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pocketcasts/sensor.py:67:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/point/alarm_control_panel.py + /homeassistant/components/point/alarm_control_panel.py:93:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/point/binary_sensor.py + /homeassistant/components/point/binary_sensor.py:71:7 - error: Base classes for class "MinutPointBinarySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/point/binary_sensor.py:71:7 - error: Base classes for class "MinutPointBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/point/entity.py + /homeassistant/components/point/entity.py:59:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/point/sensor.py + /homeassistant/components/point/sensor.py:71:7 - error: Base classes for class "MinutPointSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/point/sensor.py:71:7 - error: Base classes for class "MinutPointSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/point/sensor.py:86:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/pooldose/entity.py + /homeassistant/components/pooldose/entity.py:41:23 - error: Could not access item in TypedDict +   "IP" is not a required key in "DeviceInfoDict", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/pooldose/sensor.py + /homeassistant/components/pooldose/sensor.py:189:19 - error: Could not access item in TypedDict +   "sensor" is not a required key in "StructuredValuesDict", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/pooldose/sensor.py:205:7 - error: Base classes for class "PooldoseSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pooldose/sensor.py:208:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PooldoseSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/pooldose/sensor.py:211:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/pooldose/sensor.py:215:20 - error: Could not access item in TypedDict +   "value" is not a required key in "ValueDict", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/pooldose/sensor.py:219:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/poolsense/binary_sensor.py + /homeassistant/components/poolsense/binary_sensor.py:44:7 - error: Base classes for class "PoolSenseBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/poolsense/binary_sensor.py:48:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/poolsense/sensor.py + /homeassistant/components/poolsense/sensor.py:78:7 - error: Base classes for class "PoolSenseSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/poolsense/sensor.py:82:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/portainer/binary_sensor.py + /homeassistant/components/portainer/binary_sensor.py:129:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PortainerEndpointBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/binary_sensor.py:129:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "PortainerEndpointBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/binary_sensor.py:135:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/binary_sensor.py:140:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/binary_sensor.py:158:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PortainerContainerBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/binary_sensor.py:158:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "PortainerContainerBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/binary_sensor.py:164:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/binary_sensor.py:169:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/portainer/button.py + /homeassistant/components/portainer/button.py:94:7 - error: Base classes for class "PortainerButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/button.py:107:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PortainerButtonDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/button.py:107:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "PortainerButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/portainer/sensor.py + /homeassistant/components/portainer/sensor.py:285:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PortainerContainerSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/sensor.py:285:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PortainerContainerSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/sensor.py:291:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/sensor.py:296:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/sensor.py:313:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PortainerEndpointSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/sensor.py:313:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PortainerEndpointSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/sensor.py:319:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/sensor.py:324:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/portainer/switch.py + /homeassistant/components/portainer/switch.py:114:7 - error: Base classes for class "PortainerContainerSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/switch.py:127:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PortainerSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/switch.py:127:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "PortainerSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/portainer/switch.py:133:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/powerfox/sensor.py + /homeassistant/components/powerfox/sensor.py:169:7 - error: Base classes for class "PowerfoxSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/powerfox/sensor.py:182:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PowerfoxSensorEntityDescription[Unknown]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/powerfox/sensor.py:182:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PowerfoxSensorEntityDescription[Unknown]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/powerfox/sensor.py:186:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/powerwall/__init__.py + /homeassistant/components/powerwall/__init__.py:11:5 - error: "AccessDeniedError" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.error" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/__init__.py:12:5 - error: "ApiError" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.error" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/__init__.py:13:5 - error: "MissingAttributeError" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.error" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/__init__.py:14:5 - error: "Powerwall" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.powerwall" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/__init__.py:15:5 - error: "PowerwallUnreachableError" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.error" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/__init__.py:202:19 - error: "base_info" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/powerwall/__init__.py:208:19 - error: "base_info" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/powerwall/__init__.py:240:56 - error: "base_info" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/powerwall/binary_sensor.py + /homeassistant/components/powerwall/binary_sensor.py:5:29 - error: "GridStatus" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.const" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/binary_sensor.py:5:41 - error: "MeterType" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.const" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/binary_sensor.py:44:7 - error: Base classes for class "PowerWallRunningSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/binary_sensor.py:51:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/binary_sensor.py:56:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/binary_sensor.py:61:7 - error: Base classes for class "PowerWallConnectedSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/binary_sensor.py:68:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/binary_sensor.py:73:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/binary_sensor.py:78:7 - error: Base classes for class "PowerWallGridServicesActiveSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/binary_sensor.py:85:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/binary_sensor.py:90:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/binary_sensor.py:95:7 - error: Base classes for class "PowerWallGridStatusSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/binary_sensor.py:102:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/binary_sensor.py:107:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/binary_sensor.py:118:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/binary_sensor.py:127:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/binary_sensor.py:132:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/powerwall/config_flow.py + /homeassistant/components/powerwall/config_flow.py:12:5 - error: "AccessDeniedError" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.error" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/config_flow.py:13:5 - error: "MissingAttributeError" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.error" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/config_flow.py:14:5 - error: "Powerwall" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.powerwall" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/config_flow.py:15:5 - error: "PowerwallUnreachableError" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.error" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/config_flow.py:16:5 - error: "SiteInfoResponse" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.responses" instead (reportPrivateImportUsage) +/homeassistant/components/powerwall/entity.py + /homeassistant/components/powerwall/entity.py:17:21 - error: "BatteryResponse" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.responses" instead (reportPrivateImportUsage) +/homeassistant/components/powerwall/models.py + /homeassistant/components/powerwall/models.py:9:5 - error: "BatteryResponse" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.responses" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/models.py:10:5 - error: "DeviceType" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.const" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/models.py:11:5 - error: "GridStatus" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.const" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/models.py:12:5 - error: "MetersAggregatesResponse" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.responses" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/models.py:13:5 - error: "Powerwall" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.powerwall" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/models.py:14:5 - error: "PowerwallStatusResponse" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.responses" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/models.py:15:5 - error: "SiteInfoResponse" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.responses" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/models.py:16:5 - error: "SiteMasterResponse" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.responses" instead (reportPrivateImportUsage) +/homeassistant/components/powerwall/sensor.py + /homeassistant/components/powerwall/sensor.py:10:29 - error: "GridState" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.const" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/sensor.py:10:40 - error: "MeterResponse" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.responses" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/sensor.py:10:55 - error: "MeterType" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.const" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/sensor.py:33:21 - error: "BatteryResponse" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.responses" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/sensor.py:247:7 - error: Base classes for class "PowerWallChargeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/sensor.py:256:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/sensor.py:261:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/sensor.py:266:7 - error: Base classes for class "PowerWallEnergySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/sensor.py:278:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PowerwallSensorEntityDescription[MeterResponse, float]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/sensor.py:278:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PowerwallSensorEntityDescription[MeterResponse, float]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/sensor.py:285:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/sensor.py:294:7 - error: Base classes for class "PowerWallBackupReserveSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/sensor.py:302:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/sensor.py:307:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/sensor.py:334:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/sensor.py:361:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/sensor.py:381:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/sensor.py:389:7 - error: Base classes for class "PowerWallBatterySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/sensor.py:401:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PowerwallSensorEntityDescription[BatteryResponse, _ValueT@PowerWallBatterySensor]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/sensor.py:401:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PowerwallSensorEntityDescription[BatteryResponse, _ValueT@PowerWallBatterySensor]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/sensor.py:407:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/powerwall/switch.py + /homeassistant/components/powerwall/switch.py:5:29 - error: "GridStatus" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.const" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/switch.py:5:41 - error: "IslandMode" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.const" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/switch.py:5:53 - error: "PowerwallError" is not exported from module "tesla_powerwall" +   Import from "tesla_powerwall.error" instead (reportPrivateImportUsage) + /homeassistant/components/powerwall/switch.py:31:7 - error: Base classes for class "PowerwallOffGridEnabledEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/powerwall/switch.py:44:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/private_ble_device/device_tracker.py + /homeassistant/components/private_ble_device/device_tracker.py:39:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/private_ble_device/device_tracker.py:65:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/private_ble_device/sensor.py + /homeassistant/components/private_ble_device/sensor.py:117:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PrivateDeviceSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/private_ble_device/sensor.py:117:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PrivateDeviceSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/private_ble_device/sensor.py:141:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/probe_plus/sensor.py + /homeassistant/components/probe_plus/sensor.py:41:53 - error: "probe_temperature" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/probe_plus/sensor.py:48:53 - error: "probe_battery" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/probe_plus/sensor.py:55:53 - error: "relay_battery" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/probe_plus/sensor.py:64:53 - error: "probe_rssi" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/probe_plus/sensor.py:73:53 - error: "relay_voltage" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/probe_plus/sensor.py:82:53 - error: "probe_voltage" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/probe_plus/sensor.py:98:7 - error: Base classes for class "ProbeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/probe_plus/sensor.py:101:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ProbePlusSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/probe_plus/sensor.py:104:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/profiler/__init__.py + /homeassistant/components/profiler/__init__.py:121:9 - error: Object of type "object*" is not callable +   Attribute "__call__" is unknown (reportCallIssue) + /homeassistant/components/profiler/__init__.py:164:9 - error: Object of type "object*" is not callable +   Attribute "__call__" is unknown (reportCallIssue) +/homeassistant/components/progettihwsw/binary_sensor.py + /homeassistant/components/progettihwsw/binary_sensor.py:57:7 - error: Base classes for class "ProgettihwswBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/progettihwsw/binary_sensor.py:67:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/progettihwsw/switch.py + /homeassistant/components/progettihwsw/switch.py:58:7 - error: Base classes for class "ProgettihwswSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/progettihwsw/switch.py:83:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/proliphix/climate.py + /homeassistant/components/proliphix/climate.py:52:21 - error: "PDP" is not a known attribute of module "proliphix" (reportAttributeAccessIssue) + /homeassistant/components/proliphix/climate.py:76:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/proliphix/climate.py:81:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/proliphix/climate.py:86:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/proliphix/climate.py:91:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/proliphix/climate.py:96:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/proliphix/climate.py:108:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/proliphix/climate.py:117:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) +/homeassistant/components/prometheus/__init__.py + /homeassistant/components/prometheus/__init__.py:679:12 - error: "metric" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/prometheus/__init__.py:692:17 - error: "metric" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/proximity/coordinator.py + /homeassistant/components/proximity/coordinator.py:126:37 - error: Could not access item in TypedDict +   "old_entity_id" is not a required key in "_EventEntityRegistryUpdatedData_Update", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/proximity/sensor.py + /homeassistant/components/proximity/sensor.py:131:7 - error: Base classes for class "ProximitySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/proximity/sensor.py:150:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/proximity/sensor.py:197:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/proximity/sensor.py:205:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/proxmoxve/__init__.py + /homeassistant/components/proxmoxve/__init__.py:8:6 - error: Import "proxmoxer" could not be resolved (reportMissingImports) +/homeassistant/components/proxmoxve/binary_sensor.py + /homeassistant/components/proxmoxve/binary_sensor.py:96:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/proxmoxve/binary_sensor.py:104:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/proxmoxve/common.py + /homeassistant/components/proxmoxve/common.py:7:6 - error: Import "proxmoxer" could not be resolved (reportMissingImports) + /homeassistant/components/proxmoxve/common.py:8:6 - error: Import "proxmoxer.core" could not be resolved (reportMissingImports) +/homeassistant/components/proxy/camera.py + /homeassistant/components/proxy/camera.py:293:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/prusalink/binary_sensor.py + /homeassistant/components/prusalink/binary_sensor.py:50:22 - error: Argument of type "(data: PrinterInfo) -> (bool | None)" cannot be assigned to parameter "value_fn" of type "(PrinterInfo) -> bool" in function "__init__" +   Type "(data: PrinterInfo) -> (bool | None)" is not assignable to type "(PrinterInfo) -> bool" +     Function return type "bool | None" is incompatible with type "bool" +       Type "bool | None" is not assignable to type "bool" +         "None" is not assignable to "bool" (reportArgumentType) + /homeassistant/components/prusalink/binary_sensor.py:78:7 - error: Base classes for class "PrusaLinkBinarySensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/prusalink/binary_sensor.py:78:7 - error: Base classes for class "PrusaLinkBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/prusalink/binary_sensor.py:90:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PrusaLinkBinarySensorEntityDescription[Unknown]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/prusalink/binary_sensor.py:90:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "PrusaLinkBinarySensorEntityDescription[Unknown]" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/prusalink/binary_sensor.py:94:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/prusalink/button.py + /homeassistant/components/prusalink/button.py:94:7 - error: Base classes for class "PrusaLinkButtonEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/prusalink/button.py:106:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PrusaLinkButtonEntityDescription[Unknown]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/prusalink/button.py:106:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "PrusaLinkButtonEntityDescription[Unknown]" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/prusalink/button.py:110:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/prusalink/camera.py + /homeassistant/components/prusalink/camera.py:27:7 - error: Base classes for class "PrusaLinkJobPreviewEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/prusalink/config_flow.py + /homeassistant/components/prusalink/config_flow.py:48:57 - error: Could not access item in TypedDict +   "server" is not a defined key in "VersionInfo" (reportGeneralTypeIssues) + /homeassistant/components/prusalink/config_flow.py:79:22 - error: Could not access item in TypedDict +   "hostname" is not a defined key in "VersionInfo" (reportGeneralTypeIssues) +/homeassistant/components/prusalink/coordinator.py + /homeassistant/components/prusalink/coordinator.py:55:55 - error: Argument of type "None" cannot be assigned to parameter "data" of type "T@PrusaLinkUpdateCoordinator" in function "_get_update_interval" +   Type "None" is not assignable to type "T@PrusaLinkUpdateCoordinator" (reportArgumentType) + /homeassistant/components/prusalink/coordinator.py:118:56 - error: Type "PrinterInfo" cannot be assigned to type variable "T@PrusaLinkUpdateCoordinator" +   Type "PrinterInfo" is not assignable to constrained type variable "T@PrusaLinkUpdateCoordinator" (reportInvalidTypeArguments) +/homeassistant/components/prusalink/entity.py + /homeassistant/components/prusalink/entity.py:18:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/prusalink/sensor.py + /homeassistant/components/prusalink/sensor.py:60:71 - error: Cannot access attribute "lower" for class "PrinterState" +   Attribute "lower" is unknown (reportAttributeAccessIssue) + /homeassistant/components/prusalink/sensor.py:142:45 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/prusalink/sensor.py:159:45 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/prusalink/sensor.py:183:60 - error: Argument of type "int | None" cannot be assigned to parameter "seconds" of type "float" in function "__new__" +   Type "int | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportArgumentType) + /homeassistant/components/prusalink/sensor.py:227:7 - error: Base classes for class "PrusaLinkSensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/prusalink/sensor.py:239:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PrusaLinkSensorEntityDescription[Unknown]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/prusalink/sensor.py:239:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PrusaLinkSensorEntityDescription[Unknown]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/prusalink/sensor.py:243:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/prusalink/sensor.py:248:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/ps4/config_flow.py + /homeassistant/components/ps4/config_flow.py:67:24 - error: Argument of type "tuple[dict_keys[int, str]]" cannot be assigned to parameter "args" of type "_Ts@async_add_executor_job" in function "async_add_executor_job" +   Type "*tuple[dict_keys[int, str]]" is not assignable to type "*tuple[list[Unknown]]" +     "*tuple[dict_keys[int, str]]" is not assignable to "*tuple[list[Unknown]]" +       Tuple entry 1 is incorrect type +         "dict_keys[int, str]" is not assignable to "list[Unknown]" (reportArgumentType) + /homeassistant/components/ps4/config_flow.py:173:40 - error: Argument of type "tuple[Any, str | None, str, Literal['Home-Assistant'], Literal[1988]]" cannot be assigned to parameter "args" of type "_Ts@async_add_executor_job" in function "async_add_executor_job" +   Type "*tuple[Any, str | None, str, Literal['Home-Assistant'], Literal[1988]]" is not assignable to type "*tuple[str, str, str, Unknown | None, int]" +     "*tuple[Any, str | None, str, Literal['Home-Assistant'], Literal[1988]]" is not assignable to "*tuple[str, str, str, Unknown | None, int]" +       Tuple entry 2 is incorrect type +         Type "str | None" is not assignable to type "str" +           "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/ps4/media_player.py + /homeassistant/components/ps4/media_player.py:401:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/pterodactyl/binary_sensor.py + /homeassistant/components/pterodactyl/binary_sensor.py:46:7 - error: Base classes for class "PterodactylBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pterodactyl/binary_sensor.py:62:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/pterodactyl/button.py + /homeassistant/components/pterodactyl/button.py:76:7 - error: Base classes for class "PterodactylButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pterodactyl/button.py:90:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PterodactylButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/pterodactyl/button.py:90:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "PterodactylButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/pterodactyl/sensor.py + /homeassistant/components/pterodactyl/sensor.py:163:7 - error: Base classes for class "PterodactylSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pterodactyl/sensor.py:177:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PterodactylSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/pterodactyl/sensor.py:177:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PterodactylSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/pterodactyl/sensor.py:181:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/pulseaudio_loopback/switch.py + /homeassistant/components/pulseaudio_loopback/switch.py:8:6 - error: Import "pulsectl" could not be resolved (reportMissingImports) + /homeassistant/components/pulseaudio_loopback/switch.py:108:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/pulseaudio_loopback/switch.py:113:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/pulseaudio_loopback/switch.py:118:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/pure_energie/sensor.py + /homeassistant/components/pure_energie/sensor.py:79:7 - error: Base classes for class "PureEnergieSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pure_energie/sensor.py:96:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PureEnergieSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/pure_energie/sensor.py:96:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PureEnergieSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/pure_energie/sensor.py:110:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/purpleair/config_flow.py + /homeassistant/components/purpleair/config_flow.py:11:26 - error: "API" is not exported from module "aiopurpleair" +   Import from "aiopurpleair.api" instead (reportPrivateImportUsage) + /homeassistant/components/purpleair/config_flow.py:194:34 - error: "nearby_sensor_results" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/purpleair/coordinator.py + /homeassistant/components/purpleair/coordinator.py:7:26 - error: "API" is not exported from module "aiopurpleair" +   Import from "aiopurpleair.api" instead (reportPrivateImportUsage) +/homeassistant/components/purpleair/entity.py + /homeassistant/components/purpleair/entity.py:45:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/purpleair/sensor.py + /homeassistant/components/purpleair/sensor.py:178:7 - error: Base classes for class "PurpleAirSensorEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/purpleair/sensor.py:178:7 - error: Base classes for class "PurpleAirSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/purpleair/sensor.py:193:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PurpleAirSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/purpleair/sensor.py:193:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PurpleAirSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/purpleair/sensor.py:196:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/push/camera.py + /homeassistant/components/push/camera.py:105:5 - error: "name" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "cached_property" (reportIncompatibleVariableOverride) + /homeassistant/components/push/camera.py:186:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/pushbullet/config_flow.py + /homeassistant/components/pushbullet/config_flow.py:46:48 - error: "pushbullet" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/pushbullet/notify.py + /homeassistant/components/pushbullet/notify.py:116:51 - error: Argument of type "Device | Channel" cannot be assigned to parameter "pusher" of type "PushBullet" in function "_push_data" +   Type "Device | Channel" is not assignable to type "PushBullet" +     "Channel" is not assignable to "Pushbullet" (reportArgumentType) +/homeassistant/components/pushover/config_flow.py + /homeassistant/components/pushover/config_flow.py:52:13 - error: Could not access item in TypedDict +   "entry_id" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/pushover/notify.py + /homeassistant/components/pushover/notify.py:116:22 - error: Argument of type "Literal[1, 0]" cannot be assigned to parameter "html" of type "bool" in function "send_message" +   Type "Literal[1, 0]" is not assignable to type "bool" +     "Literal[0]" is not assignable to "bool" (reportArgumentType) +/homeassistant/components/pvoutput/sensor.py + /homeassistant/components/pvoutput/sensor.py:118:7 - error: Base classes for class "PVOutputSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pvoutput/sensor.py:136:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "PVOutputSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/pvoutput/sensor.py:136:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PVOutputSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/pvoutput/sensor.py:147:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/pvpc_hourly_pricing/sensor.py + /homeassistant/components/pvpc_hourly_pricing/sensor.py:190:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/pvpc_hourly_pricing/sensor.py:229:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/pvpc_hourly_pricing/sensor.py:234:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/pyload/button.py + /homeassistant/components/pyload/button.py:80:7 - error: Base classes for class "PyLoadBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pyload/button.py:83:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "PyLoadButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/pyload/sensor.py + /homeassistant/components/pyload/sensor.py:107:7 - error: Base classes for class "PyLoadSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pyload/sensor.py:110:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "PyLoadSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/pyload/sensor.py:113:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/pyload/switch.py + /homeassistant/components/pyload/switch.py:82:7 - error: Base classes for class "PyLoadSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/pyload/switch.py:85:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "PyLoadSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/pyload/switch.py:88:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/qbittorrent/sensor.py + /homeassistant/components/qbittorrent/sensor.py:250:7 - error: Base classes for class "QBittorrentSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/qbittorrent/sensor.py:264:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "QBittorrentSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/qbittorrent/sensor.py:264:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "QBittorrentSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/qbittorrent/sensor.py:273:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/qbittorrent/switch.py + /homeassistant/components/qbittorrent/switch.py:58:7 - error: Base classes for class "QBittorrentSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/qbittorrent/switch.py:72:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "QBittorrentSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/qbittorrent/switch.py:72:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "QBittorrentSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/qbittorrent/switch.py:81:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/qbus/binary_sensor.py + /homeassistant/components/qbus/binary_sensor.py:104:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "QbusWeatherDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/qbus/binary_sensor.py:104:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "QbusWeatherDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/qbus/climate.py + /homeassistant/components/qbus/climate.py:86:14 - error: "_attr_target_temperature_step" overrides symbol of same name in class "ClimateEntity" +   Variable is mutable so its type is invariant +     Override type "float" is not the same as base type "float | None" (reportIncompatibleVariableOverride) + /homeassistant/components/qbus/climate.py:87:14 - error: "_attr_preset_modes" overrides symbol of same name in class "ClimateEntity" +   Variable is mutable so its type is invariant +     Override type "list[str]" is not the same as base type "list[str] | None" (reportIncompatibleVariableOverride) + /homeassistant/components/qbus/climate.py:135:18 - error: "_attr_preset_mode" overrides symbol of same name in class "ClimateEntity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/qbus/cover.py + /homeassistant/components/qbus/cover.py:84:18 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "CoverEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/qbus/cover.py:84:18 - error: "_attr_supported_features" overrides symbol of same name in class "CoverEntity" +   Variable is mutable so its type is invariant +     Override type "CoverEntityFeature" is not the same as base type "CoverEntityFeature | None" (reportIncompatibleVariableOverride) +/homeassistant/components/qbus/sensor.py + /homeassistant/components/qbus/sensor.py:371:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "QbusWeatherDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/qbus/sensor.py:371:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "QbusWeatherDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/qingping/binary_sensor.py + /homeassistant/components/qingping/binary_sensor.py:92:7 - error: Base classes for class "QingpingBluetoothSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/qingping/binary_sensor.py:101:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/qingping/sensor.py + /homeassistant/components/qingping/sensor.py:160:7 - error: Base classes for class "QingpingBluetoothSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/qingping/sensor.py:169:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/qld_bushfire/geo_location.py + /homeassistant/components/qld_bushfire/geo_location.py:224:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/qnap/coordinator.py + /homeassistant/components/qnap/coordinator.py:67:24 - error: Argument of type "Any | None" cannot be assigned to parameter "verify_ssl" of type "bool" in function "__init__" +   Type "Any | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /homeassistant/components/qnap/coordinator.py:68:21 - error: Argument of type "Any | None" cannot be assigned to parameter "timeout" of type "int" in function "__init__" +   Type "Any | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) +/homeassistant/components/qnap/sensor.py + /homeassistant/components/qnap/sensor.py:309:7 - error: Base classes for class "QNAPSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/qnap/sensor.py:344:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/qnap/sensor.py:358:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/qnap/sensor.py:384:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/qnap/sensor.py:410:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/qnap/sensor.py:437:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/qnap/sensor.py:450:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/qnap/sensor.py:469:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/qnap_qsw/binary_sensor.py + /homeassistant/components/qnap_qsw/binary_sensor.py:132:7 - error: Base classes for class "QswBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/qnap_qsw/binary_sensor.py:154:14 - error: "entity_description" overrides symbol of same name in class "QswSensorEntity" +   Variable is mutable so its type is invariant +     Override type "QswBinarySensorEntityDescription" is not the same as base type "QswEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/qnap_qsw/binary_sensor.py:154:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "QswBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/qnap_qsw/button.py + /homeassistant/components/qnap_qsw/button.py:55:7 - error: Base classes for class "QswButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/qnap_qsw/button.py:71:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "QswButtonDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/qnap_qsw/button.py:71:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "QswButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/qnap_qsw/entity.py + /homeassistant/components/qnap_qsw/entity.py:104:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "QswEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/qnap_qsw/sensor.py + /homeassistant/components/qnap_qsw/sensor.py:348:7 - error: Base classes for class "QswSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/qnap_qsw/sensor.py:371:14 - error: "entity_description" overrides symbol of same name in class "QswSensorEntity" +   Variable is mutable so its type is invariant +     Override type "QswSensorEntityDescription" is not the same as base type "QswEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/qnap_qsw/sensor.py:371:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "QswSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/qnap_qsw/update.py + /homeassistant/components/qnap_qsw/update.py:52:7 - error: Base classes for class "QswUpdate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/qnap_qsw/update.py:67:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "UpdateEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/qrcode/image_processing.py + /homeassistant/components/qrcode/image_processing.py:8:6 - error: Import "pyzbar" could not be resolved (reportMissingImports) +/homeassistant/components/qvr_pro/__init__.py + /homeassistant/components/qvr_pro/__init__.py:5:6 - error: Import "pyqvrpro" could not be resolved (reportMissingImports) + /homeassistant/components/qvr_pro/__init__.py:6:6 - error: Import "pyqvrpro.client" could not be resolved (reportMissingImports) +/homeassistant/components/qvr_pro/camera.py + /homeassistant/components/qvr_pro/camera.py:7:6 - error: Import "pyqvrpro.client" could not be resolved (reportMissingImports) + /homeassistant/components/qvr_pro/camera.py:76:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/qvr_pro/camera.py:81:9 - error: "model" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/qvr_pro/camera.py:86:9 - error: "brand" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/qvr_pro/camera.py:91:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/qwikswitch/binary_sensor.py + /homeassistant/components/qwikswitch/binary_sensor.py:36:7 - error: Base classes for class "QSBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/qwikswitch/binary_sensor.py:69:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/qwikswitch/binary_sensor.py:74:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/qwikswitch/binary_sensor.py:79:9 - error: "device_class" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/qwikswitch/binary_sensor.py:79:9 - error: "device_class" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[BinarySensorDeviceClass | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/qwikswitch/entity.py + /homeassistant/components/qwikswitch/entity.py:24:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/qwikswitch/entity.py:29:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/qwikswitch/light.py + /homeassistant/components/qwikswitch/light.py:29:7 - error: Base classes for class "QSLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/qwikswitch/light.py:29:7 - error: Base classes for class "QSLight" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/qwikswitch/light.py:29:7 - error: Base classes for class "QSLight" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/qwikswitch/light.py:33:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/qwikswitch/light.py:38:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/qwikswitch/light.py:43:9 - error: "supported_color_modes" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[set[ColorMode] | set[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/qwikswitch/sensor.py + /homeassistant/components/qwikswitch/sensor.py:37:7 - error: Base classes for class "QSSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/qwikswitch/sensor.py:72:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/qwikswitch/sensor.py:77:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/qwikswitch/sensor.py:82:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/qwikswitch/switch.py + /homeassistant/components/qwikswitch/switch.py:29:7 - error: Base classes for class "QSSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/qwikswitch/switch.py:29:7 - error: Base classes for class "QSSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/qwikswitch/switch.py:29:7 - error: Base classes for class "QSSwitch" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/rabbitair/fan.py + /homeassistant/components/rabbitair/fan.py:51:7 - error: Base classes for class "RabbitAirFanEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/rachio/__init__.py + /homeassistant/components/rachio/__init__.py:57:12 - error: Cannot assign to attribute "webhook_auth" for class "Rachio" +   Attribute "webhook_auth" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rachio/__init__.py:65:12 - error: Cannot assign to attribute "webhook_url" for class "Rachio" +   Attribute "webhook_url" is unknown (reportAttributeAccessIssue) +/homeassistant/components/rachio/binary_sensor.py + /homeassistant/components/rachio/binary_sensor.py:151:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RachioControllerBinarySensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rachio/binary_sensor.py:151:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "RachioControllerBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rachio/binary_sensor.py:189:7 - error: Base classes for class "RachioHoseTimerBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rachio/binary_sensor.py:202:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RachioHoseTimerBinarySensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rachio/binary_sensor.py:202:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "RachioHoseTimerBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/rachio/calendar.py + /homeassistant/components/rachio/calendar.py:50:7 - error: Base classes for class "RachioCalendarEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/rachio/config_flow.py + /homeassistant/components/rachio/config_flow.py:60:20 - error: Argument of type "Literal['username']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['username']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['username']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['username']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) +/homeassistant/components/rachio/coordinator.py + /homeassistant/components/rachio/coordinator.py:71:17 - error: Argument of type "Literal['id']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['id']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['id']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['id']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/rachio/coordinator.py:71:51 - error: Argument of type "Literal['valves']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['valves']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['valves']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['valves']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/rachio/coordinator.py:122:22 - error: Argument of type "Literal['valveDayViews']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['valveDayViews']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['valveDayViews']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['valveDayViews']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/rachio/coordinator.py:123:27 - error: Argument of type "Literal['valveProgramRunSummaries']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['valveProgramRunSummaries']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['valveProgramRunSummaries']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['valveProgramRunSummaries']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) +/homeassistant/components/rachio/device.py + /homeassistant/components/rachio/device.py:150:34 - error: Argument of type "Unknown | str | None" cannot be assigned to parameter "user_id" of type "str" in function "get" +   Type "Unknown | str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/rachio/device.py:155:25 - error: Argument of type "Literal['username']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['username']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['username']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['username']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/rachio/device.py:156:41 - error: Argument of type "Literal['devices']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['devices']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['devices']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['devices']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/rachio/device.py:156:41 - error: Type "Any | Unknown | str" is not assignable to declared type "list[dict[str, Any]]" +   Type "Any | Unknown | str" is not assignable to type "list[dict[str, Any]]" +     "str" is not assignable to "list[dict[str, Any]]" (reportAssignmentType) + /homeassistant/components/rachio/device.py:157:61 - error: Argument of type "Unknown | str | None" cannot be assigned to parameter "user_id" of type "str" in function "list_base_stations" +   Type "Unknown | str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/rachio/device.py:158:47 - error: Argument of type "Literal['baseStations']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['baseStations']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['baseStations']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['baseStations']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/rachio/device.py:158:47 - error: Type "Any | Unknown | str" is not assignable to declared type "list[dict[str, Any]]" +   Type "Any | Unknown | str" is not assignable to type "list[dict[str, Any]]" +     "str" is not assignable to "list[dict[str, Any]]" (reportAssignmentType) + /homeassistant/components/rachio/device.py:185:62 - error: Argument of type "Any | Unknown | str" cannot be assigned to parameter "webhooks" of type "list[dict[str, Any]]" in function "__init__" +   Type "Any | Unknown | str" is not assignable to type "list[dict[str, Any]]" +     "str" is not assignable to "list[dict[str, Any]]" (reportArgumentType) + /homeassistant/components/rachio/device.py:264:34 - error: Cannot assign to attribute "_webhooks" for class "RachioIro*" +   Type "Any | Unknown | str" is not assignable to type "list[dict[str, Any]]" +     "str" is not assignable to "list[dict[str, Any]]" (reportAttributeAccessIssue) + /homeassistant/components/rachio/device.py:285:27 - error: Cannot access attribute "webhook_url" for class "Rachio" +   Attribute "webhook_url" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rachio/device.py:286:47 - error: Cannot access attribute "webhook_auth" for class "Rachio" +   Attribute "webhook_auth" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rachio/device.py:291:30 - error: Argument of type "Literal['id']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['id']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['id']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['id']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) +/homeassistant/components/rachio/switch.py + /homeassistant/components/rachio/switch.py:229:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rachio/switch.py:277:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rachio/switch.py:380:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rachio/switch.py:478:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rachio/switch.py:483:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rachio/switch.py:539:7 - error: Base classes for class "RachioValve" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/rachio/webhooks.py + /homeassistant/components/rachio/webhooks.py:99:34 - error: Cannot access attribute "webhook_auth" for class "Rachio" +   Attribute "webhook_auth" is unknown (reportAttributeAccessIssue) +/homeassistant/components/radarr/binary_sensor.py + /homeassistant/components/radarr/binary_sensor.py:38:7 - error: Base classes for class "RadarrBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/radarr/binary_sensor.py:38:7 - error: Base classes for class "RadarrBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/radarr/binary_sensor.py:42:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/radarr/calendar.py + /homeassistant/components/radarr/calendar.py:31:7 - error: Base classes for class "RadarrCalendarEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/radarr/calendar.py:31:7 - error: Base classes for class "RadarrCalendarEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/radarr/calendar.py:34:5 - error: "coordinator" overrides symbol of same name in class "RadarrEntity" +   Variable is mutable so its type is invariant +     Override type "CalendarUpdateCoordinator" is not the same as base type "RadarrDataUpdateCoordinator[Unknown]" (reportIncompatibleVariableOverride) +/homeassistant/components/radarr/entity.py + /homeassistant/components/radarr/entity.py:31:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/radarr/sensor.py + /homeassistant/components/radarr/sensor.py:134:7 - error: Base classes for class "RadarrSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/radarr/sensor.py:134:7 - error: Base classes for class "RadarrSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/radarr/sensor.py:138:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RadarrSensorEntityDescription[T@RadarrSensor]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/radarr/sensor.py:151:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/radiotherm/climate.py + /homeassistant/components/radiotherm/climate.py:103:7 - error: Base classes for class "RadioThermostat" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/radiotherm/switch.py + /homeassistant/components/radiotherm/switch.py:29:7 - error: Base classes for class "RadioThermHoldSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/rainbird/binary_sensor.py + /homeassistant/components/rainbird/binary_sensor.py:37:7 - error: Base classes for class "RainBirdSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainbird/binary_sensor.py:57:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/rainbird/calendar.py + /homeassistant/components/rainbird/calendar.py:44:7 - error: Base classes for class "RainBirdCalendarEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainbird/calendar.py:82:35 - error: Cannot access attribute "program_id" for class "Timespan" +   Attribute "program_id" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rainbird/calendar.py:85:33 - error: Cannot access attribute "rrule_str" for class "Timespan" +   Attribute "rrule_str" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rainbird/calendar.py:97:39 - error: Argument of type "_TzInfo | None" cannot be assigned to parameter "tzinfo" of type "tzinfo" in function "timeline_tz" +   Type "_TzInfo | None" is not assignable to type "tzinfo" +     "None" is not assignable to "tzinfo" (reportArgumentType) + /homeassistant/components/rainbird/calendar.py:103:39 - error: Cannot access attribute "program_id" for class "Timespan" +   Attribute "program_id" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rainbird/calendar.py:106:37 - error: Cannot access attribute "rrule_str" for class "Timespan" +   Attribute "rrule_str" is unknown (reportAttributeAccessIssue) +/homeassistant/components/rainbird/number.py + /homeassistant/components/rainbird/number.py:37:7 - error: Base classes for class "RainDelayNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainbird/number.py:60:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rainbird/number.py:67:62 - error: Argument of type "float" cannot be assigned to parameter "days" of type "int" in function "set_rain_delay" +   "float" is not assignable to "int" (reportArgumentType) +/homeassistant/components/rainbird/sensor.py + /homeassistant/components/rainbird/sensor.py:41:7 - error: Base classes for class "RainBirdSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainbird/sensor.py:63:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/rainbird/switch.py + /homeassistant/components/rainbird/switch.py:58:7 - error: Base classes for class "RainBirdSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainbird/switch.py:91:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rainbird/switch.py:134:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/raincloud/__init__.py + /homeassistant/components/raincloud/__init__.py:6:6 - error: Import "raincloudy.core" could not be resolved (reportMissingImports) +/homeassistant/components/raincloud/binary_sensor.py + /homeassistant/components/raincloud/binary_sensor.py:62:7 - error: Base classes for class "RainCloudBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/raincloud/binary_sensor.py:62:7 - error: Base classes for class "RainCloudBinarySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/raincloud/binary_sensor.py:66:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/raincloud/binary_sensor.py:78:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/raincloud/entity.py + /homeassistant/components/raincloud/entity.py:44:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/raincloud/entity.py:61:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/raincloud/entity.py:66:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/raincloud/sensor.py + /homeassistant/components/raincloud/sensor.py:70:7 - error: Base classes for class "RainCloudSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/raincloud/sensor.py:70:7 - error: Base classes for class "RainCloudSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/raincloud/sensor.py:74:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/raincloud/sensor.py:79:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/raincloud/sensor.py:92:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/raincloud/switch.py + /homeassistant/components/raincloud/switch.py:63:7 - error: Base classes for class "RainCloudSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/raincloud/switch.py:63:7 - error: Base classes for class "RainCloudSwitch" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/raincloud/switch.py:72:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/raincloud/switch.py:101:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/rainforest_eagle/sensor.py + /homeassistant/components/rainforest_eagle/sensor.py:90:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/rainforest_eagle/sensor.py:95:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/rainforest_raven/sensor.py + /homeassistant/components/rainforest_raven/sensor.py:120:7 - error: Base classes for class "RAVEnSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainforest_raven/sensor.py:133:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RAVEnSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rainforest_raven/sensor.py:133:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RAVEnSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rainforest_raven/sensor.py:146:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rainforest_raven/sensor.py:156:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/rainmachine/__init__.py + /homeassistant/components/rainmachine/__init__.py:11:27 - error: "Client" is not exported from module "regenmaschine" +   Import from "regenmaschine.client" instead (reportPrivateImportUsage) +/homeassistant/components/rainmachine/binary_sensor.py + /homeassistant/components/rainmachine/binary_sensor.py:139:7 - error: Base classes for class "CurrentRestrictionsBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/binary_sensor.py:139:7 - error: Base classes for class "CurrentRestrictionsBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/binary_sensor.py:142:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "RainMachineBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/binary_sensor.py:161:7 - error: Base classes for class "ProvisionSettingsBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/binary_sensor.py:161:7 - error: Base classes for class "ProvisionSettingsBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/binary_sensor.py:164:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "RainMachineBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/rainmachine/button.py + /homeassistant/components/rainmachine/button.py:66:7 - error: Base classes for class "RainMachineButton" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/button.py:66:7 - error: Base classes for class "RainMachineButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/button.py:72:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "RainMachineButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/rainmachine/config_flow.py + /homeassistant/components/rainmachine/config_flow.py:7:27 - error: "Client" is not exported from module "regenmaschine" +   Import from "regenmaschine.client" instead (reportPrivateImportUsage) +/homeassistant/components/rainmachine/entity.py + /homeassistant/components/rainmachine/entity.py:48:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/rainmachine/select.py + /homeassistant/components/rainmachine/select.py:106:7 - error: Base classes for class "FreezeProtectionTemperatureSelect" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/select.py:106:7 - error: Base classes for class "FreezeProtectionTemperatureSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/select.py:109:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "FreezeProtectionSelectDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/rainmachine/sensor.py + /homeassistant/components/rainmachine/sensor.py:227:7 - error: Base classes for class "TimeRemainingSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/sensor.py:227:7 - error: Base classes for class "TimeRemainingSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/sensor.py:230:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RainMachineSensorCompletionTimerDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/sensor.py:311:7 - error: Base classes for class "ProvisionSettingsSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/sensor.py:311:7 - error: Base classes for class "ProvisionSettingsSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/sensor.py:314:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RainMachineSensorDataDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/rainmachine/switch.py + /homeassistant/components/rainmachine/switch.py:250:7 - error: Base classes for class "RainMachineBaseSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/switch.py:250:7 - error: Base classes for class "RainMachineBaseSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/switch.py:253:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "RainMachineSwitchDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/switch.py:295:5 - error: "entity_description" overrides symbol of same name in class "RainMachineBaseSwitch" +   Variable is mutable so its type is invariant +     Override type "RainMachineActivitySwitchDescription" is not the same as base type "RainMachineSwitchDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/switch.py:356:5 - error: "entity_description" overrides symbol of same name in class "RainMachineBaseSwitch" +   Variable is mutable so its type is invariant +     Override type "RainMachineActivitySwitchDescription" is not the same as base type "RainMachineSwitchDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/switch.py:431:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/rainmachine/switch.py:441:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/rainmachine/switch.py:451:5 - error: "entity_description" overrides symbol of same name in class "RainMachineBaseSwitch" +   Variable is mutable so its type is invariant +     Override type "RainMachineRestrictionSwitchDescription" is not the same as base type "RainMachineSwitchDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/switch.py:454:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/rainmachine/switch.py:463:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/rainmachine/switch.py:561:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/rainmachine/switch.py:571:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/rainmachine/update.py + /homeassistant/components/rainmachine/update.py:70:7 - error: Base classes for class "RainMachineUpdateEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rainmachine/update.py:70:7 - error: Base classes for class "RainMachineUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/rapt_ble/sensor.py + /homeassistant/components/rapt_ble/sensor.py:117:7 - error: Base classes for class "RAPTPillBluetoothSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rapt_ble/sensor.py:126:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/raspyrfm/switch.py + /homeassistant/components/raspyrfm/switch.py:7:6 - error: Import "raspyrfm_client" could not be resolved (reportMissingImports) + /homeassistant/components/raspyrfm/switch.py:8:6 - error: Import "raspyrfm_client.device_implementations.controlunit.actions" could not be resolved (reportMissingImports) + /homeassistant/components/raspyrfm/switch.py:9:6 - error: Import "raspyrfm_client.device_implementations.controlunit.controlunit_constants" could not be resolved (reportMissingImports) + /homeassistant/components/raspyrfm/switch.py:12:6 - error: Import "raspyrfm_client.device_implementations.gateway.manufacturer.gateway_constants" could not be resolved (reportMissingImports) + /homeassistant/components/raspyrfm/switch.py:15:6 - error: Import "raspyrfm_client.device_implementations.manufacturer_constants" could not be resolved (reportMissingImports) +/homeassistant/components/rdw/binary_sensor.py + /homeassistant/components/rdw/binary_sensor.py:66:7 - error: Base classes for class "RDWBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rdw/binary_sensor.py:82:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RDWBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rdw/binary_sensor.py:82:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "RDWBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rdw/binary_sensor.py:95:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/rdw/sensor.py + /homeassistant/components/rdw/sensor.py:68:7 - error: Base classes for class "RDWSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rdw/sensor.py:83:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RDWSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rdw/sensor.py:83:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RDWSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rdw/sensor.py:96:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/recollect_waste/calendar.py + /homeassistant/components/recollect_waste/calendar.py:50:7 - error: Base classes for class "ReCollectWasteCalendar" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/recollect_waste/sensor.py + /homeassistant/components/recollect_waste/sensor.py:57:7 - error: Base classes for class "ReCollectWasteSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/recollect_waste/sensor.py:93:65 - error: "event" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/recollect_waste/sensor.py:95:58 - error: "event" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/recollect_waste/sensor.py:97:39 - error: "event" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/recorder/core.py + /homeassistant/components/recorder/core.py:284:30 - error: Cannot access attribute "shutdown" for class "Pool" +   Attribute "shutdown" is unknown (reportAttributeAccessIssue) + /homeassistant/components/recorder/core.py:1419:21 - error: Argument of type "dict[Unknown, Unknown]" cannot be assigned to parameter "value" of type "str" in function "__setitem__" +   "dict[Unknown, Unknown]" is not assignable to "str" (reportArgumentType) +/homeassistant/components/recorder/db_schema.py + /homeassistant/components/recorder/db_schema.py:646:13 - error: No parameter named "metadata_id" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:647:13 - error: No parameter named "created" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:648:13 - error: No parameter named "created_ts" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:649:13 - error: No parameter named "start" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:650:13 - error: No parameter named "start_ts" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:651:13 - error: No parameter named "mean" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:652:13 - error: No parameter named "mean_weight" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:653:13 - error: No parameter named "min" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:654:13 - error: No parameter named "max" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:655:13 - error: No parameter named "last_reset" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:656:13 - error: No parameter named "last_reset_ts" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:657:13 - error: No parameter named "state" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:658:13 - error: No parameter named "sum" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:670:13 - error: No parameter named "metadata_id" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:671:13 - error: No parameter named "created" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:672:13 - error: No parameter named "created_ts" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:673:13 - error: No parameter named "start" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:674:13 - error: No parameter named "start_ts" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:675:13 - error: No parameter named "mean" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:676:13 - error: No parameter named "mean_weight" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:677:13 - error: No parameter named "min" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:678:13 - error: No parameter named "max" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:679:13 - error: No parameter named "last_reset" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:680:13 - error: No parameter named "last_reset_ts" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:681:13 - error: No parameter named "state" (reportCallIssue) + /homeassistant/components/recorder/db_schema.py:682:13 - error: No parameter named "sum" (reportCallIssue) +/homeassistant/components/recorder/executor.py + /homeassistant/components/recorder/executor.py:55:19 - error: Argument of type "None" cannot be assigned to parameter "item" of type "_WorkItem[Any]" in function "put" +   "None" is not assignable to "_WorkItem[Any]" (reportArgumentType) +/homeassistant/components/recorder/history/__init__.py + /homeassistant/components/recorder/history/__init__.py:889:21 - error: Argument of type "str | None" cannot be assigned to parameter "state" of type "str" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/recorder/history/__init__.py:889:21 - error: Argument of type "str | None" cannot be assigned to parameter "state" of type "str" in function "row_to_compressed_state" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/recorder/models/state.py + /homeassistant/components/recorder/models/state.py:107:9 - error: "last_changed_timestamp" overrides symbol of same name in class "State" +   "cached_property[float]" is not assignable to "under_cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/recorder/models/state.py:115:9 - error: "last_reported_timestamp" overrides symbol of same name in class "State" +   "cached_property[float]" is not assignable to "under_cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/recorder/services.py + /homeassistant/components/recorder/services.py:154:53 - error: Could not access item in TypedDict +   "start" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/recorder/services.py:155:51 - error: Could not access item in TypedDict +   "end" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/recorder/statistics.py + /homeassistant/components/recorder/statistics.py:1130:47 - error: Could not access item in TypedDict +   "start" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/recorder/statistics.py:1134:32 - error: Could not access item in TypedDict +   "start" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/recorder/statistics.py:1134:52 - error: Could not access item in TypedDict +   "start" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/recorder/statistics.py:1135:47 - error: Could not access item in TypedDict +   "start" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/recorder/statistics.py:1164:34 - error: Could not access item in TypedDict +   "sum" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/recorder/system_health/__init__.py + /homeassistant/components/recorder/system_health/__init__.py:75:12 - error: "db_runs" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/recorder/util.py + /homeassistant/components/recorder/util.py:126:49 - error: "timer_start" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/recorder/util.py:386:10 - warning: Import "MySQLdb.constants" could not be resolved from source (reportMissingModuleSource) + /homeassistant/components/recorder/util.py:386:35 - warning: Import "MySQLdb.constants.FIELD_TYPE" could not be resolved from source (reportMissingModuleSource) + /homeassistant/components/recorder/util.py:387:10 - warning: Import "MySQLdb.converters" could not be resolved from source (reportMissingModuleSource) + /homeassistant/components/recorder/util.py:813:27 - error: Could not access item in TypedDict +   "period" is not a required key in "CalendarStatisticPeriod", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/recorder/util.py:853:20 - error: Could not access item in TypedDict +   "duration" is not a required key in "RollingWindowStatisticPeriod", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/recorder/util.py:907:26 - error: Cannot access attribute "pgcode" for class "BaseException" +   Attribute "pgcode" is unknown (reportAttributeAccessIssue) +/homeassistant/components/recorder/websocket_api.py + /homeassistant/components/recorder/websocket_api.py:204:32 - error: Could not access item in TypedDict +   "start" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/recorder/websocket_api.py:205:30 - error: Could not access item in TypedDict +   "end" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/recorder/websocket_api.py:206:54 - error: Could not access item in TypedDict +   "last_reset" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/recswitch/switch.py + /homeassistant/components/recswitch/switch.py:8:6 - error: Import "pyrecswitch" could not be resolved (reportMissingImports) + /homeassistant/components/recswitch/switch.py:70:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/recswitch/switch.py:75:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/recswitch/switch.py:80:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/reddit/sensor.py + /homeassistant/components/reddit/sensor.py:88:17 - error: "exceptions" is not a known attribute of module "praw" (reportAttributeAccessIssue) + /homeassistant/components/reddit/sensor.py:111:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reddit/sensor.py:116:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/reddit/sensor.py:121:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reddit/sensor.py:130:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reddit/sensor.py:156:21 - error: "exceptions" is not a known attribute of module "praw" (reportAttributeAccessIssue) +/homeassistant/components/refoss/sensor.py + /homeassistant/components/refoss/sensor.py:157:7 - error: Base classes for class "RefossSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/refoss/sensor.py:170:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RefossSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/refoss/sensor.py:170:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RefossSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/refoss/sensor.py:177:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/refoss/sensor.py:179:41 - error: Cannot access attribute "get_value" for class "BaseDevice" +   Attribute "get_value" is unknown (reportAttributeAccessIssue) +/homeassistant/components/refoss/switch.py + /homeassistant/components/refoss/switch.py:50:7 - error: Base classes for class "RefossSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/refoss/switch.py:63:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/refoss/switch.py:65:40 - error: Cannot access attribute "is_on" for class "BaseDevice" +   Attribute "is_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/refoss/switch.py:69:39 - error: Cannot access attribute "async_turn_on" for class "BaseDevice" +   Attribute "async_turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/refoss/switch.py:74:39 - error: Cannot access attribute "async_turn_off" for class "BaseDevice" +   Attribute "async_turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/refoss/switch.py:79:39 - error: Cannot access attribute "async_toggle" for class "BaseDevice" +   Attribute "async_toggle" is unknown (reportAttributeAccessIssue) +/homeassistant/components/rehlko/__init__.py + /homeassistant/components/rehlko/__init__.py:45:39 - error: Argument of type "(refresh_token: str) -> CoroutineType[Any, Any, None]" cannot be assigned to parameter "callback" of type "(str | None) -> Awaitable[None]" in function "set_refresh_token_callback" +   Type "(refresh_token: str) -> CoroutineType[Any, Any, None]" is not assignable to type "(str | None) -> Awaitable[None]" +     Parameter 1: type "str | None" is incompatible with type "str" +       Type "str | None" is not assignable to type "str" +         "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/rehlko/binary_sensor.py + /homeassistant/components/rehlko/binary_sensor.py:91:7 - error: Base classes for class "RehlkoBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rehlko/binary_sensor.py:94:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "RehlkoBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rehlko/binary_sensor.py:97:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/rehlko/sensor.py + /homeassistant/components/rehlko/sensor.py:256:7 - error: Base classes for class "RehlkoSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rehlko/sensor.py:259:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RehlkoSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rehlko/sensor.py:262:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/rejseplanen/sensor.py + /homeassistant/components/rejseplanen/sensor.py:14:8 - error: Import "rjpl" could not be resolved (reportMissingImports) + /homeassistant/components/rejseplanen/sensor.py:117:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rejseplanen/sensor.py:122:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/rejseplanen/sensor.py:127:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rejseplanen/sensor.py:147:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/remember_the_milk/__init__.py + /homeassistant/components/remember_the_milk/__init__.py:127:51 - error: Argument of type "Any | None" cannot be assigned to parameter "token" of type "str" in function "set_token" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/remember_the_milk/__init__.py:135:13 - error: Argument of type "Any | None" cannot be assigned to parameter "token" of type "str" in function "_create_instance" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/remember_the_milk/entity.py + /homeassistant/components/remember_the_milk/entity.py:138:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/remember_the_milk/entity.py:143:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/remote/__init__.py + /homeassistant/components/remote/__init__.py:163:5 - error: "entity_description" overrides symbol of same name in class "ToggleEntity" +   Variable is mutable so its type is invariant +     Override type "RemoteEntityDescription" is not the same as base type "ToggleEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/remote/__init__.py:166:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RemoteEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/remote/__init__.py:185:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/remote/reproduce_state.py + /homeassistant/components/remote/reproduce_state.py:56:17 - error: "service" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/remote_calendar/calendar.py + /homeassistant/components/remote_calendar/calendar.py:36:7 - error: Base classes for class "RemoteCalendarEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/remote_rpi_gpio/binary_sensor.py + /homeassistant/components/remote_rpi_gpio/binary_sensor.py:64:59 - error: Argument of type "Any | None" cannot be assigned to parameter "sensor" of type "DigitalInputDevice" in function "__init__" +   Type "Any | None" is not assignable to type "DigitalInputDevice" +     "None" is not assignable to "DigitalInputDevice" (reportArgumentType) + /homeassistant/components/remote_rpi_gpio/binary_sensor.py:96:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/remote_rpi_gpio/switch.py + /homeassistant/components/remote_rpi_gpio/switch.py:52:48 - error: Argument of type "Any | None" cannot be assigned to parameter "led" of type "LED" in function "__init__" +   Type "Any | None" is not assignable to type "LED" +     "None" is not assignable to "LED" (reportArgumentType) +/homeassistant/components/renault/binary_sensor.py + /homeassistant/components/renault/binary_sensor.py:64:7 - error: Base classes for class "RenaultBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/renault/binary_sensor.py:64:7 - error: Base classes for class "RenaultBinarySensor" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/renault/binary_sensor.py:69:5 - error: "entity_description" overrides symbol of same name in class "RenaultEntity" +   Variable is mutable so its type is invariant +     Override type "RenaultBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/renault/binary_sensor.py:69:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "RenaultBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/renault/binary_sensor.py:72:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/renault/button.py + /homeassistant/components/renault/button.py:47:5 - error: "entity_description" overrides symbol of same name in class "RenaultEntity" +   Variable is mutable so its type is invariant +     Override type "RenaultButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/renault/button.py:47:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "RenaultButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/renault/device_tracker.py + /homeassistant/components/renault/device_tracker.py:45:7 - error: Base classes for class "RenaultDeviceTracker" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/renault/device_tracker.py:45:7 - error: Base classes for class "RenaultDeviceTracker" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/renault/device_tracker.py:50:5 - error: "entity_description" overrides symbol of same name in class "RenaultEntity" +   Variable is mutable so its type is invariant +     Override type "RenaultTrackerEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/renault/device_tracker.py:50:5 - error: "entity_description" overrides symbol of same name in class "TrackerEntity" +   Variable is mutable so its type is invariant +     Override type "RenaultTrackerEntityDescription" is not the same as base type "TrackerEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/renault/device_tracker.py:53:9 - error: "latitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/renault/device_tracker.py:58:9 - error: "longitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/renault/entity.py + /homeassistant/components/renault/entity.py:46:7 - error: Base classes for class "RenaultDataEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/renault/entity.py:65:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/renault/renault_hub.py + /homeassistant/components/renault/renault_hub.py:170:25 - error: Could not access item in TypedDict +   "identifiers" is not a required key in "DeviceInfo", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/renault/renault_hub.py:171:26 - error: Could not access item in TypedDict +   "manufacturer" is not a required key in "DeviceInfo", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/renault/renault_hub.py:172:18 - error: Could not access item in TypedDict +   "name" is not a required key in "DeviceInfo", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/renault/renault_hub.py:173:19 - error: Could not access item in TypedDict +   "model" is not a required key in "DeviceInfo", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/renault/renault_hub.py:174:22 - error: Could not access item in TypedDict +   "model_id" is not a required key in "DeviceInfo", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/renault/select.py + /homeassistant/components/renault/select.py:47:7 - error: Base classes for class "RenaultSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/renault/select.py:47:7 - error: Base classes for class "RenaultSelectEntity" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/renault/select.py:52:5 - error: "entity_description" overrides symbol of same name in class "RenaultEntity" +   Variable is mutable so its type is invariant +     Override type "RenaultSelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/renault/select.py:52:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "RenaultSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/renault/select.py:55:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/renault/sensor.py + /homeassistant/components/renault/sensor.py:79:7 - error: Base classes for class "RenaultSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/renault/sensor.py:79:7 - error: Base classes for class "RenaultSensor" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/renault/sensor.py:82:5 - error: "entity_description" overrides symbol of same name in class "RenaultEntity" +   Variable is mutable so its type is invariant +     Override type "RenaultSensorEntityDescription[T@RenaultSensor]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/renault/sensor.py:82:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RenaultSensorEntityDescription[T@RenaultSensor]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/renault/sensor.py:90:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/renson/binary_sensor.py + /homeassistant/components/renson/binary_sensor.py:104:7 - error: Base classes for class "RensonBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/renson/button.py + /homeassistant/components/renson/button.py:71:7 - error: Base classes for class "RensonButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/renson/button.py:86:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RensonButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/renson/button.py:86:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "RensonButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/renson/fan.py + /homeassistant/components/renson/fan.py:118:7 - error: Base classes for class "RensonFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/renson/fan.py:159:26 - error: Argument of type "Any | None" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/renson/fan.py:197:62 - error: Argument of type "FieldEnum" cannot be assigned to parameter "fieldname" of type "str" in function "get_field_value" +   "FieldEnum" is not assignable to "str" (reportArgumentType) + /homeassistant/components/renson/fan.py:198:19 - error: Argument of type "tuple[Level, str, Literal[True]]" cannot be assigned to parameter "args" of type "_Ts@async_add_executor_job" in function "async_add_executor_job" +   Type "*tuple[Level, str, Literal[True]]" is not assignable to type "*tuple[Level, int, bool]" +     "*tuple[Level, str, Literal[True]]" is not assignable to "*tuple[Level, int, bool]" +       Tuple entry 2 is incorrect type +         "str" is not assignable to "int" (reportArgumentType) + /homeassistant/components/renson/fan.py:236:15 - error: "None" is not awaitable +   "None" is incompatible with protocol "Awaitable[_T_co@Awaitable]" +     "__await__" is not present (reportGeneralTypeIssues) + /homeassistant/components/renson/fan.py:241:13 - error: Argument of type "str" cannot be assigned to parameter "co2_control" of type "bool" in function "set_pollution" +   "str" is not assignable to "bool" (reportArgumentType) + /homeassistant/components/renson/fan.py:242:13 - error: Argument of type "int" cannot be assigned to parameter "co2_threshold" of type "bool" in function "set_pollution" +   "int" is not assignable to "bool" (reportArgumentType) + /homeassistant/components/renson/fan.py:243:13 - error: Argument of type "int" cannot be assigned to parameter "co2_hysteresis" of type "bool" in function "set_pollution" +   "int" is not assignable to "bool" (reportArgumentType) +/homeassistant/components/renson/number.py + /homeassistant/components/renson/number.py:55:7 - error: Base classes for class "RensonNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/renson/number.py:82:15 - error: Argument of type "tuple[float]" cannot be assigned to parameter "args" of type "_Ts@async_add_executor_job" in function "async_add_executor_job" +   Type "*tuple[float]" is not assignable to type "*tuple[int]" +     "*tuple[float]" is not assignable to "*tuple[int]" +       Tuple entry 1 is incorrect type +         "float" is not assignable to "int" (reportArgumentType) +/homeassistant/components/renson/sensor.py + /homeassistant/components/renson/sensor.py:233:7 - error: Base classes for class "RensonSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/renson/sensor.py:265:15 - error: "lower" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/renson/switch.py + /homeassistant/components/renson/switch.py:23:7 - error: Base classes for class "RensonBreezeSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/renson/time.py + /homeassistant/components/renson/time.py:66:7 - error: Base classes for class "RensonTime" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/renson/time.py:80:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RensonTimeEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/renson/time.py:80:14 - error: "entity_description" overrides symbol of same name in class "TimeEntity" +   Variable is mutable so its type is invariant +     Override type "RensonTimeEntityDescription" is not the same as base type "TimeEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/reolink/binary_sensor.py + /homeassistant/components/reolink/binary_sensor.py:345:7 - error: Base classes for class "ReolinkBinarySensorEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/binary_sensor.py:345:7 - error: Base classes for class "ReolinkBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/binary_sensor.py:357:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkBinarySensorEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/binary_sensor.py:357:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/binary_sensor.py:368:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/binary_sensor.py:399:7 - error: Base classes for class "ReolinkSmartAIBinarySensorEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/binary_sensor.py:399:7 - error: Base classes for class "ReolinkSmartAIBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/binary_sensor.py:414:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkSmartAIBinarySensorEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/binary_sensor.py:414:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkSmartAIBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/binary_sensor.py:429:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/binary_sensor.py:436:7 - error: Base classes for class "ReolinkIndexBinarySensorEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/binary_sensor.py:436:7 - error: Base classes for class "ReolinkIndexBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/binary_sensor.py:451:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkIndexBinarySensorEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/binary_sensor.py:451:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkIndexBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/binary_sensor.py:459:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/reolink/button.py + /homeassistant/components/reolink/button.py:9:29 - error: "GuardEnum" is not exported from module "reolink_aio.api" +   Import from "reolink_aio.enums" instead (reportPrivateImportUsage) + /homeassistant/components/reolink/button.py:9:46 - error: "PtzEnum" is not exported from module "reolink_aio.api" +   Import from "reolink_aio.enums" instead (reportPrivateImportUsage) + /homeassistant/components/reolink/button.py:190:7 - error: Base classes for class "ReolinkButtonEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/button.py:190:7 - error: Base classes for class "ReolinkButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/button.py:202:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkButtonEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/button.py:202:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/button.py:217:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/button.py:230:7 - error: Base classes for class "ReolinkHostButtonEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/button.py:230:7 - error: Base classes for class "ReolinkHostButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/button.py:241:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkHostButtonEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/button.py:241:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkHostButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/button.py:245:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/reolink/camera.py + /homeassistant/components/reolink/camera.py:124:7 - error: Base classes for class "ReolinkCamera" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/camera.py:136:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkCameraEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/camera.py:136:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ReolinkCameraEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/camera.py:155:15 - error: Method "async_camera_image" overrides class "Camera" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, bytes | None]", override returns type "Coroutine[Any, Any, bytes | None]" +     "Coroutine[Any, Any, bytes | None]" is not assignable to "CoroutineType[Any, Any, bytes | None]" (reportIncompatibleMethodOverride) +/homeassistant/components/reolink/config_flow.py + /homeassistant/components/reolink/config_flow.py:11:34 - error: "DEFAULT_BC_PORT" is not exported from module "reolink_aio.baichuan" +   Import from "reolink_aio.baichuan.util" instead (reportPrivateImportUsage) + /homeassistant/components/reolink/config_flow.py:133:15 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/reolink/config_flow.py:135:25 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/reolink/entity.py + /homeassistant/components/reolink/entity.py:60:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ReolinkEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/entity.py:73:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/reolink/host.py + /homeassistant/components/reolink/host.py:15:34 - error: "DEFAULT_BC_PORT" is not exported from module "reolink_aio.baichuan" +   Import from "reolink_aio.baichuan.util" instead (reportPrivateImportUsage) + /homeassistant/components/reolink/host.py:822:56 - error: Argument of type "HassJob[(*_: Any), CoroutineType[Any, Any, None]]" cannot be assigned to parameter "action" of type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" in function "async_call_later" +   Type "HassJob[(*_: Any), CoroutineType[Any, Any, None]]" is not assignable to type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" +     "HassJob[(*_: Any), CoroutineType[Any, Any, None]]" is not assignable to "HassJob[(datetime), Coroutine[Any, Any, None] | None]" +       Type parameter "_R_co@HassJob" is invariant, but "CoroutineType[Any, Any, None]" is not the same as "Coroutine[Any, Any, None] | None" +     Type "HassJob[(*_: Any), CoroutineType[Any, Any, None]]" is not assignable to type "(datetime) -> (Coroutine[Any, Any, None] | None)" (reportArgumentType) +/homeassistant/components/reolink/light.py + /homeassistant/components/reolink/light.py:123:7 - error: Base classes for class "ReolinkLightEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/light.py:123:7 - error: Base classes for class "ReolinkLightEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/light.py:135:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkLightEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/light.py:135:14 - error: "entity_description" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkLightEntityDescription" is not the same as base type "LightEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/light.py:154:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/light.py:159:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/light.py:179:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/light.py:187:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/light.py:210:7 - error: Base classes for class "ReolinkHostLightEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/light.py:210:7 - error: Base classes for class "ReolinkHostLightEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/light.py:223:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkHostLightEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/light.py:223:14 - error: "entity_description" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkHostLightEntityDescription" is not the same as base type "LightEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/light.py:227:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/light.py:232:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/light.py:238:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/reolink/media_source.py + /homeassistant/components/reolink/media_source.py:55:5 - error: "name" overrides symbol of same name in class "MediaSource" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/reolink/number.py + /homeassistant/components/reolink/number.py:984:7 - error: Base classes for class "ReolinkNumberEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:984:7 - error: Base classes for class "ReolinkNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:996:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkNumberEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:996:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1010:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1015:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/number.py:1021:7 - error: Base classes for class "ReolinkSmartAINumberEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1021:7 - error: Base classes for class "ReolinkSmartAINumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1034:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkSmartAINumberEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1034:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkSmartAINumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1051:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1058:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/number.py:1066:7 - error: Base classes for class "ReolinkHostNumberEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1066:7 - error: Base classes for class "ReolinkHostNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1077:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkHostNumberEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1077:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkHostNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1083:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1088:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/number.py:1094:7 - error: Base classes for class "ReolinkChimeNumberEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1094:7 - error: Base classes for class "ReolinkChimeNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1106:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkChimeNumberEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1106:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkChimeNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1112:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1117:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/number.py:1123:7 - error: Base classes for class "ReolinkHostChimeNumberEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1123:7 - error: Base classes for class "ReolinkHostChimeNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1135:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkChimeNumberEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1135:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkChimeNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1141:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/number.py:1146:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/reolink/select.py + /homeassistant/components/reolink/select.py:11:5 - error: "BinningModeEnum" is not exported from module "reolink_aio.api" +   Import from "reolink_aio.enums" instead (reportPrivateImportUsage) + /homeassistant/components/reolink/select.py:13:5 - error: "ChimeToneEnum" is not exported from module "reolink_aio.api" +   Import from "reolink_aio.enums" instead (reportPrivateImportUsage) + /homeassistant/components/reolink/select.py:14:5 - error: "DayNightEnum" is not exported from module "reolink_aio.api" +   Import from "reolink_aio.enums" instead (reportPrivateImportUsage) + /homeassistant/components/reolink/select.py:15:5 - error: "EncodingEnum" is not exported from module "reolink_aio.api" +   Import from "reolink_aio.enums" instead (reportPrivateImportUsage) + /homeassistant/components/reolink/select.py:16:5 - error: "ExposureEnum" is not exported from module "reolink_aio.api" +   Import from "reolink_aio.enums" instead (reportPrivateImportUsage) + /homeassistant/components/reolink/select.py:17:5 - error: "HDREnum" is not exported from module "reolink_aio.api" +   Import from "reolink_aio.enums" instead (reportPrivateImportUsage) + /homeassistant/components/reolink/select.py:19:5 - error: "HubToneEnum" is not exported from module "reolink_aio.api" +   Import from "reolink_aio.enums" instead (reportPrivateImportUsage) + /homeassistant/components/reolink/select.py:20:5 - error: "SpotlightEventModeEnum" is not exported from module "reolink_aio.api" +   Import from "reolink_aio.enums" instead (reportPrivateImportUsage) + /homeassistant/components/reolink/select.py:21:5 - error: "SpotlightModeEnum" is not exported from module "reolink_aio.api" +   Import from "reolink_aio.enums" instead (reportPrivateImportUsage) + /homeassistant/components/reolink/select.py:22:5 - error: "StatusLedEnum" is not exported from module "reolink_aio.api" +   Import from "reolink_aio.enums" instead (reportPrivateImportUsage) + /homeassistant/components/reolink/select.py:23:5 - error: "TrackMethodEnum" is not exported from module "reolink_aio.api" +   Import from "reolink_aio.enums" instead (reportPrivateImportUsage) + /homeassistant/components/reolink/select.py:445:7 - error: Base classes for class "ReolinkSelectEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:445:7 - error: Base classes for class "ReolinkSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:457:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkSelectEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:457:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:467:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:484:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/select.py:490:7 - error: Base classes for class "ReolinkHostSelectEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:490:7 - error: Base classes for class "ReolinkHostSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:501:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkHostSelectEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:501:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkHostSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:506:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:511:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/select.py:517:7 - error: Base classes for class "ReolinkChimeSelectEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:517:7 - error: Base classes for class "ReolinkChimeSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:529:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkChimeSelectEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:529:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkChimeSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:534:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:539:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/select.py:545:7 - error: Base classes for class "ReolinkHostChimeSelectEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:545:7 - error: Base classes for class "ReolinkHostChimeSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:557:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkChimeSelectEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:557:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkChimeSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:562:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/select.py:567:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/reolink/sensor.py + /homeassistant/components/reolink/sensor.py:245:7 - error: Base classes for class "ReolinkSensorEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/sensor.py:245:7 - error: Base classes for class "ReolinkSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/sensor.py:257:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkSensorEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/sensor.py:257:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/sensor.py:261:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/sensor.py:266:7 - error: Base classes for class "ReolinkHostSensorEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/sensor.py:266:7 - error: Base classes for class "ReolinkHostSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/sensor.py:277:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkHostSensorEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/sensor.py:277:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkHostSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/sensor.py:281:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/sensor.py:286:7 - error: Base classes for class "ReolinkHddSensorEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/sensor.py:298:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkSensorEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/sensor.py:298:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/sensor.py:311:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/sensor.py:316:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/reolink/siren.py + /homeassistant/components/reolink/siren.py:83:7 - error: Base classes for class "ReolinkSirenEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/siren.py:83:7 - error: Base classes for class "ReolinkSirenEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/siren.py:101:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkSirenEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/siren.py:101:14 - error: "entity_description" overrides symbol of same name in class "SirenEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkSirenEntityDescription" is not the same as base type "SirenEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/siren.py:105:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/siren.py:110:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/siren.py:118:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/siren.py:123:7 - error: Base classes for class "ReolinkHostSirenEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/siren.py:123:7 - error: Base classes for class "ReolinkHostSirenEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/siren.py:137:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkHostSirenEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/siren.py:137:14 - error: "entity_description" overrides symbol of same name in class "SirenEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkHostSirenEntityDescription" is not the same as base type "SirenEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/siren.py:141:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/reolink/switch.py + /homeassistant/components/reolink/switch.py:369:7 - error: Base classes for class "ReolinkSwitchEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:369:7 - error: Base classes for class "ReolinkSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:381:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkSwitchEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:381:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:385:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:390:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/switch.py:396:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/switch.py:402:7 - error: Base classes for class "ReolinkHostSwitchEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:402:7 - error: Base classes for class "ReolinkHostSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:413:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkHostSwitchEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:413:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkHostSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:417:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:422:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/switch.py:428:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/switch.py:434:7 - error: Base classes for class "ReolinkChimeSwitchEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:434:7 - error: Base classes for class "ReolinkChimeSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:446:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkChimeSwitchEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:446:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkChimeSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:450:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:455:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/switch.py:461:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/switch.py:467:7 - error: Base classes for class "ReolinkHostChimeSwitchEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:467:7 - error: Base classes for class "ReolinkHostChimeSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:479:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkChimeSwitchEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:479:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkChimeSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:483:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:488:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/switch.py:494:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/switch.py:500:7 - error: Base classes for class "ReolinkIndexSwitchEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:500:7 - error: Base classes for class "ReolinkIndexSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:513:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkSwitchIndexEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:513:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkSwitchIndexEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:522:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/switch.py:527:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/switch.py:535:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/reolink/update.py + /homeassistant/components/reolink/update.py:111:36 - error: Argument of type "Self@ReolinkUpdateBaseEntity" cannot be assigned to parameter "self" of type "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" in function "__init__" +   "ReolinkUpdateBaseEntity*" is not assignable to "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" +     Type parameter "_DataUpdateCoordinatorT@CoordinatorEntity" is invariant, but "DataUpdateCoordinator[None]" is not the same as "DataUpdateCoordinator[dict[str, Any]]" (reportArgumentType) + /homeassistant/components/reolink/update.py:111:42 - error: Argument of type "DataUpdateCoordinator[None]" cannot be assigned to parameter "coordinator" of type "DataUpdateCoordinator[dict[str, Any]]" in function "__init__" +   "DataUpdateCoordinator[None]" is not assignable to "DataUpdateCoordinator[dict[str, Any]]" +     Type parameter "_DataT@DataUpdateCoordinator" is invariant, but "None" is not the same as "dict[str, Any]" (reportArgumentType) + /homeassistant/components/reolink/update.py:121:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:126:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:138:9 - error: "in_progress" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:143:9 - error: "update_percentage" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[int | float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:148:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:148:9 - error: "supported_features" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[UpdateEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:158:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:188:15 - error: Method "async_install" overrides class "UpdateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/reolink/update.py:266:7 - error: Base classes for class "ReolinkUpdateEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:266:7 - error: Base classes for class "ReolinkUpdateEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:266:7 - error: Base classes for class "ReolinkUpdateEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:266:7 - error: Base classes for class "ReolinkUpdateEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:266:7 - error: Base classes for class "ReolinkUpdateEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:266:7 - error: Base classes for class "ReolinkUpdateEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:266:7 - error: Base classes for class "ReolinkUpdateEntity" define variable "supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:266:7 - error: Base classes for class "ReolinkUpdateEntity" define variable "entity_category" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:282:14 - error: "entity_description" overrides symbol of same name in class "UpdateEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkUpdateEntityDescription" is not the same as base type "UpdateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:282:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkUpdateEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:291:7 - error: Base classes for class "ReolinkHostUpdateEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:291:7 - error: Base classes for class "ReolinkHostUpdateEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:291:7 - error: Base classes for class "ReolinkHostUpdateEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:291:7 - error: Base classes for class "ReolinkHostUpdateEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:291:7 - error: Base classes for class "ReolinkHostUpdateEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:291:7 - error: Base classes for class "ReolinkHostUpdateEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:291:7 - error: Base classes for class "ReolinkHostUpdateEntity" define variable "supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:291:7 - error: Base classes for class "ReolinkHostUpdateEntity" define variable "entity_category" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:305:14 - error: "entity_description" overrides symbol of same name in class "UpdateEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkHostUpdateEntityDescription" is not the same as base type "UpdateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/reolink/update.py:305:14 - error: "entity_description" overrides symbol of same name in class "ReolinkHostCoordinatorEntity" +   Variable is mutable so its type is invariant +     Override type "ReolinkHostUpdateEntityDescription" is not the same as base type "ReolinkEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/reolink/views.py + /homeassistant/components/reolink/views.py:31:23 - error: "format" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/repairs/models.py + /homeassistant/components/repairs/models.py:26:10 - error: Function with declared return type "RepairsFlow" must return value on all code paths +   "None" is not assignable to "RepairsFlow" (reportReturnType) +/homeassistant/components/repairs/websocket_api.py + /homeassistant/components/repairs/websocket_api.py:152:15 - error: Method "get" overrides class "FlowManagerResourceView" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, Response]", override returns type "Coroutine[Any, Any, Response]" +     "Coroutine[Any, Any, Response]" is not assignable to "CoroutineType[Any, Any, Response]" (reportIncompatibleMethodOverride) +/homeassistant/components/repetier/__init__.py + /homeassistant/components/repetier/__init__.py:9:8 - error: Import "pyrepetierng" could not be resolved (reportMissingImports) +/homeassistant/components/repetier/sensor.py + /homeassistant/components/repetier/sensor.py:76:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RepetierSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/repetier/sensor.py:86:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/repetier/sensor.py:126:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/repetier/sensor.py:147:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/rest/binary_sensor.py + /homeassistant/components/rest/binary_sensor.py:115:7 - error: Base classes for class "RestBinarySensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/binary_sensor.py:115:7 - error: Base classes for class "RestBinarySensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/binary_sensor.py:115:7 - error: Base classes for class "RestBinarySensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/binary_sensor.py:115:7 - error: Base classes for class "RestBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/binary_sensor.py:115:7 - error: Base classes for class "RestBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/binary_sensor.py:115:7 - error: Base classes for class "RestBinarySensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/binary_sensor.py:115:7 - error: Base classes for class "RestBinarySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/binary_sensor.py:115:7 - error: Base classes for class "RestBinarySensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/binary_sensor.py:115:7 - error: Base classes for class "RestBinarySensor" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/binary_sensor.py:139:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/rest/entity.py + /homeassistant/components/rest/entity.py:34:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/rest/sensor.py + /homeassistant/components/rest/sensor.py:120:7 - error: Base classes for class "RestSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/sensor.py:120:7 - error: Base classes for class "RestSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/sensor.py:120:7 - error: Base classes for class "RestSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/sensor.py:120:7 - error: Base classes for class "RestSensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/sensor.py:120:7 - error: Base classes for class "RestSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/sensor.py:120:7 - error: Base classes for class "RestSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/sensor.py:120:7 - error: Base classes for class "RestSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/sensor.py:120:7 - error: Base classes for class "RestSensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/sensor.py:120:7 - error: Base classes for class "RestSensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/sensor.py:120:7 - error: Base classes for class "RestSensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/sensor.py:120:7 - error: Base classes for class "RestSensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/sensor.py:120:7 - error: Base classes for class "RestSensor" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/sensor.py:153:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/rest/switch.py + /homeassistant/components/rest/switch.py:127:7 - error: Base classes for class "RestSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/switch.py:127:7 - error: Base classes for class "RestSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/switch.py:127:7 - error: Base classes for class "RestSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/switch.py:127:7 - error: Base classes for class "RestSwitch" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/switch.py:127:7 - error: Base classes for class "RestSwitch" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rest/switch.py:127:7 - error: Base classes for class "RestSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/rflink/binary_sensor.py + /homeassistant/components/rflink/binary_sensor.py:76:7 - error: Base classes for class "RflinkBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/binary_sensor.py:76:7 - error: Base classes for class "RflinkBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/binary_sensor.py:76:7 - error: Base classes for class "RflinkBinarySensor" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/binary_sensor.py:76:7 - error: Base classes for class "RflinkBinarySensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/binary_sensor.py:76:7 - error: Base classes for class "RflinkBinarySensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/binary_sensor.py:76:7 - error: Base classes for class "RflinkBinarySensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/binary_sensor.py:76:7 - error: Base classes for class "RflinkBinarySensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/binary_sensor.py:128:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/rflink/cover.py + /homeassistant/components/rflink/cover.py:130:7 - error: Base classes for class "RflinkCover" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/cover.py:130:7 - error: Base classes for class "RflinkCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/cover.py:130:7 - error: Base classes for class "RflinkCover" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/cover.py:130:7 - error: Base classes for class "RflinkCover" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/cover.py:130:7 - error: Base classes for class "RflinkCover" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/cover.py:130:7 - error: Base classes for class "RflinkCover" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/cover.py:130:7 - error: Base classes for class "RflinkCover" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/cover.py:130:7 - error: Base classes for class "RflinkCover" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/cover.py:130:7 - error: Base classes for class "RflinkCover" define variable "supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/cover.py:150:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/cover.py:155:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/rflink/entity.py + /homeassistant/components/rflink/entity.py:96:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/entity.py:108:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/entity.py:113:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/entity.py:300:7 - error: Base classes for class "SwitchableRflinkDevice" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/entity.py:300:7 - error: Base classes for class "SwitchableRflinkDevice" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/entity.py:300:7 - error: Base classes for class "SwitchableRflinkDevice" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/rflink/light.py + /homeassistant/components/rflink/light.py:177:7 - error: Base classes for class "RflinkLight" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/light.py:177:7 - error: Base classes for class "RflinkLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/light.py:177:7 - error: Base classes for class "RflinkLight" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/light.py:177:7 - error: Base classes for class "RflinkLight" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/light.py:184:7 - error: Base classes for class "DimmableRflinkLight" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/light.py:184:7 - error: Base classes for class "DimmableRflinkLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/light.py:184:7 - error: Base classes for class "DimmableRflinkLight" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/light.py:184:7 - error: Base classes for class "DimmableRflinkLight" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/light.py:229:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/rflink/sensor.py + /homeassistant/components/rflink/sensor.py:334:7 - error: Base classes for class "RflinkSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/sensor.py:334:7 - error: Base classes for class "RflinkSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/sensor.py:334:7 - error: Base classes for class "RflinkSensor" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/sensor.py:399:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/sensor.py:408:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/rflink/switch.py + /homeassistant/components/rflink/switch.py:81:7 - error: Base classes for class "RflinkSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/switch.py:81:7 - error: Base classes for class "RflinkSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/switch.py:81:7 - error: Base classes for class "RflinkSwitch" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rflink/switch.py:81:7 - error: Base classes for class "RflinkSwitch" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/rfxtrx/__init__.py + /homeassistant/components/rfxtrx/__init__.py:192:44 - error: Cannot access attribute "data" for class "RFXtrxEvent" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/__init__.py:234:47 - error: Cannot access attribute "data" for class "RFXtrxEvent" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/__init__.py:239:45 - error: Cannot access attribute "data" for class "RFXtrxEvent" +   Attribute "data" is unknown (reportAttributeAccessIssue) +/homeassistant/components/rfxtrx/binary_sensor.py + /homeassistant/components/rfxtrx/binary_sensor.py:127:7 - error: Base classes for class "RfxtrxBinarySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/rfxtrx/config_flow.py + /homeassistant/components/rfxtrx/config_flow.py:226:20 - error: "command_on" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/rfxtrx/config_flow.py:228:20 - error: "command_off" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/rfxtrx/config_flow.py:537:69 - error: "data" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/rfxtrx/config_flow.py:569:69 - error: "data" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/rfxtrx/config_flow.py:601:69 - error: "data" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/rfxtrx/cover.py + /homeassistant/components/rfxtrx/cover.py:47:16 - error: Type "list[RfxtrxCover]" is not assignable to return type "list[Entity]" (reportReturnType) + /homeassistant/components/rfxtrx/cover.py:52:23 - error: Argument of type "RFXtrxEvent | None" cannot be assigned to parameter "event" of type "RFXtrxEvent" in function "__init__" +   Type "RFXtrxEvent | None" is not assignable to type "RFXtrxEvent" +     "None" is not assignable to "RFXtrxEvent" (reportArgumentType) + /homeassistant/components/rfxtrx/cover.py:61:7 - error: Base classes for class "RfxtrxCover" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/cover.py:64:5 - error: "_device" overrides symbol of same name in class "RfxtrxEntity" +   Variable is mutable so its type is invariant +     Override type "RollerTrolDevice | RfyDevice | LightingDevice" is not the same as base type "RFXtrxDevice" (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/cover.py:70:40 - error: Expression of type "None" cannot be assigned to parameter of type "RFXtrxEvent" +   "None" is not assignable to "RFXtrxEvent" (reportArgumentType) + /homeassistant/components/rfxtrx/cover.py:104:49 - error: Cannot access attribute "send_up05sec" for class "RollerTrolDevice" +   Attribute "send_up05sec" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/cover.py:104:49 - error: Cannot access attribute "send_up05sec" for class "LightingDevice" +   Attribute "send_up05sec" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/cover.py:106:49 - error: Cannot access attribute "send_up2sec" for class "RollerTrolDevice" +   Attribute "send_up2sec" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/cover.py:106:49 - error: Cannot access attribute "send_up2sec" for class "LightingDevice" +   Attribute "send_up2sec" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/cover.py:115:49 - error: Cannot access attribute "send_down05sec" for class "RollerTrolDevice" +   Attribute "send_down05sec" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/cover.py:115:49 - error: Cannot access attribute "send_down05sec" for class "LightingDevice" +   Attribute "send_down05sec" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/cover.py:117:49 - error: Cannot access attribute "send_down2sec" for class "RollerTrolDevice" +   Attribute "send_down2sec" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/cover.py:117:49 - error: Cannot access attribute "send_down2sec" for class "LightingDevice" +   Attribute "send_down2sec" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/cover.py:132:49 - error: Cannot access attribute "send_up2sec" for class "RollerTrolDevice" +   Attribute "send_up2sec" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/cover.py:132:49 - error: Cannot access attribute "send_up2sec" for class "LightingDevice" +   Attribute "send_up2sec" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/cover.py:134:49 - error: Cannot access attribute "send_up05sec" for class "RollerTrolDevice" +   Attribute "send_up05sec" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/cover.py:134:49 - error: Cannot access attribute "send_up05sec" for class "LightingDevice" +   Attribute "send_up05sec" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/cover.py:139:49 - error: Cannot access attribute "send_down2sec" for class "RollerTrolDevice" +   Attribute "send_down2sec" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/cover.py:139:49 - error: Cannot access attribute "send_down2sec" for class "LightingDevice" +   Attribute "send_down2sec" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/cover.py:141:49 - error: Cannot access attribute "send_down05sec" for class "RollerTrolDevice" +   Attribute "send_down05sec" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/cover.py:141:49 - error: Cannot access attribute "send_down05sec" for class "LightingDevice" +   Attribute "send_down05sec" is unknown (reportAttributeAccessIssue) +/homeassistant/components/rfxtrx/entity.py + /homeassistant/components/rfxtrx/entity.py:69:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/entity.py:73:69 - error: Cannot access attribute "data" for class "RFXtrxEvent" +   Attribute "data" is unknown (reportAttributeAccessIssue) +/homeassistant/components/rfxtrx/event.py + /homeassistant/components/rfxtrx/event.py:66:7 - error: Base classes for class "RfxtrxEventEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/rfxtrx/light.py + /homeassistant/components/rfxtrx/light.py:58:7 - error: Base classes for class "RfxtrxLight" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/light.py:64:5 - error: "_device" overrides symbol of same name in class "RfxtrxEntity" +   Variable is mutable so its type is invariant +     Override type "LightingDevice" is not the same as base type "RFXtrxDevice" (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/light.py:107:18 - error: "_attr_brightness" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "int" is not the same as base type "int | None" (reportIncompatibleVariableOverride) +/homeassistant/components/rfxtrx/sensor.py + /homeassistant/components/rfxtrx/sensor.py:265:40 - error: Cannot access attribute "values" for class "RFXtrxEvent" +   Attribute "values" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/sensor.py:274:7 - error: Base classes for class "RfxtrxSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/sensor.py:293:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RfxtrxSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/sensor.py:293:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RfxtrxSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/sensor.py:305:31 - error: Argument of type "RFXtrxEvent | None" cannot be assigned to parameter "event" of type "RFXtrxEvent" in function "_apply_event" +   Type "RFXtrxEvent | None" is not assignable to type "RFXtrxEvent" +     "None" is not assignable to "RFXtrxEvent" (reportArgumentType) + /homeassistant/components/rfxtrx/sensor.py:308:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/sensor.py:312:29 - error: Cannot access attribute "values" for class "RFXtrxEvent" +   Attribute "values" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/sensor.py:321:53 - error: Cannot access attribute "values" for class "RFXtrxEvent" +   Attribute "values" is unknown (reportAttributeAccessIssue) +/homeassistant/components/rfxtrx/siren.py + /homeassistant/components/rfxtrx/siren.py:125:7 - error: Base classes for class "RfxtrxChime" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/siren.py:125:7 - error: Base classes for class "RfxtrxChime" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/siren.py:125:7 - error: Base classes for class "RfxtrxChime" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/siren.py:125:7 - error: Base classes for class "RfxtrxChime" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/siren.py:125:7 - error: Base classes for class "RfxtrxChime" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/siren.py:125:7 - error: Base classes for class "RfxtrxChime" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/siren.py:129:5 - error: "_device" overrides symbol of same name in class "RfxtrxEntity" +   Variable is mutable so its type is invariant +     Override type "ChimeDevice" is not the same as base type "RFXtrxDevice" (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/siren.py:145:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/siren.py:164:9 - error: Method "_apply_event" overrides class "RfxtrxEntity" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "RFXtrxEvent", override parameter is type "ControlEvent" +     "RFXtrxEvent" is not assignable to "ControlEvent" (reportIncompatibleMethodOverride) + /homeassistant/components/rfxtrx/siren.py:179:31 - error: Argument of type "RFXtrxEvent" cannot be assigned to parameter "event" of type "ControlEvent" in function "_apply_event" +   "RFXtrxEvent" is not assignable to "ControlEvent" (reportArgumentType) + /homeassistant/components/rfxtrx/siren.py:184:7 - error: Base classes for class "RfxtrxSecurityPanic" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/siren.py:184:7 - error: Base classes for class "RfxtrxSecurityPanic" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/siren.py:184:7 - error: Base classes for class "RfxtrxSecurityPanic" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/siren.py:184:7 - error: Base classes for class "RfxtrxSecurityPanic" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/siren.py:184:7 - error: Base classes for class "RfxtrxSecurityPanic" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/siren.py:184:7 - error: Base classes for class "RfxtrxSecurityPanic" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/siren.py:188:5 - error: "_device" overrides symbol of same name in class "RfxtrxEntity" +   Variable is mutable so its type is invariant +     Override type "SecurityDevice" is not the same as base type "RFXtrxDevice" (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/siren.py:204:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/siren.py:226:9 - error: Method "_apply_event" overrides class "RfxtrxEntity" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "RFXtrxEvent", override parameter is type "SensorEvent" +     "RFXtrxEvent" is not assignable to "SensorEvent" (reportIncompatibleMethodOverride) + /homeassistant/components/rfxtrx/siren.py:244:31 - error: Argument of type "RFXtrxEvent" cannot be assigned to parameter "event" of type "SensorEvent" in function "_apply_event" +   "RFXtrxEvent" is not assignable to "SensorEvent" (reportArgumentType) +/homeassistant/components/rfxtrx/switch.py + /homeassistant/components/rfxtrx/switch.py:70:7 - error: Base classes for class "RfxtrxSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rfxtrx/switch.py:138:49 - error: Cannot access attribute "send_command" for class "RFXtrxDevice" +   Attribute "send_command" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/switch.py:140:49 - error: Cannot access attribute "send_on" for class "RFXtrxDevice" +   Attribute "send_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/switch.py:147:49 - error: Cannot access attribute "send_command" for class "RFXtrxDevice" +   Attribute "send_command" is unknown (reportAttributeAccessIssue) + /homeassistant/components/rfxtrx/switch.py:149:49 - error: Cannot access attribute "send_off" for class "RFXtrxDevice" +   Attribute "send_off" is unknown (reportAttributeAccessIssue) +/homeassistant/components/ridwell/calendar.py + /homeassistant/components/ridwell/calendar.py:81:7 - error: Base classes for class "RidwellCalendar" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ridwell/config_flow.py + /homeassistant/components/ridwell/config_flow.py:8:24 - error: "async_get_client" is not exported from module "aioridwell" +   Import from "aioridwell.client" instead (reportPrivateImportUsage) + /homeassistant/components/ridwell/config_flow.py:122:16 - error: "schema_options_flow_handler" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/ridwell/sensor.py + /homeassistant/components/ridwell/sensor.py:50:7 - error: Base classes for class "RidwellSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ridwell/sensor.py:66:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ridwell/sensor.py:88:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/ridwell/switch.py + /homeassistant/components/ridwell/switch.py:40:7 - error: Base classes for class "RidwellSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ridwell/switch.py:56:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ring/binary_sensor.py + /homeassistant/components/ring/binary_sensor.py:146:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/ring/binary_sensor.py:154:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ring/button.py + /homeassistant/components/ring/button.py:40:7 - error: Base classes for class "RingDoorButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ring/button.py:58:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/ring/camera.py + /homeassistant/components/ring/camera.py:146:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ring/camera.py:186:17 - error: Argument of type "StreamReader" cannot be assigned to parameter "stream" of type "StreamReader" in function "async_aiohttp_proxy_stream" +   "asyncio.streams.StreamReader" is not assignable to "aiohttp.streams.StreamReader" (reportArgumentType) +/homeassistant/components/ring/entity.py + /homeassistant/components/ring/entity.py:145:34 - error: "deprecated_info" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/ring/entity.py:154:33 - error: "deprecated_info" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/ring/entity.py:186:7 - error: Base classes of RingEntity are mutually incompatible +   Base class "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" derives from "BaseCoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" which is incompatible with type "BaseCoordinatorEntity[RingDataCoordinator]" (reportGeneralTypeIssues) +/homeassistant/components/ring/event.py + /homeassistant/components/ring/event.py:87:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RingEventEntityDescription[RingDeviceT@RingEvent]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ring/event.py:87:14 - error: "entity_description" overrides symbol of same name in class "EventEntity" +   Variable is mutable so its type is invariant +     Override type "RingEventEntityDescription[RingDeviceT@RingEvent]" is not the same as base type "EventEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ring/event.py:107:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/ring/light.py + /homeassistant/components/ring/light.py:56:7 - error: Base classes for class "RingLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/ring/number.py + /homeassistant/components/ring/number.py:113:7 - error: Base classes for class "RingNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ring/number.py:126:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RingNumberEntityDescription[RingDeviceT@RingNumber]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ring/number.py:126:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "RingNumberEntityDescription[RingDeviceT@RingNumber]" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ring/number.py:149:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/ring/sensor.py + /homeassistant/components/ring/sensor.py:73:7 - error: Base classes for class "RingSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ring/sensor.py:86:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RingSensorEntityDescription[RingDeviceT@RingSensor]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ring/sensor.py:86:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RingSensorEntityDescription[RingDeviceT@RingSensor]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/ring/siren.py + /homeassistant/components/ring/siren.py:108:7 - error: Base classes for class "RingSiren" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ring/siren.py:121:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RingSirenEntityDescription[RingDeviceT@RingSiren]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ring/siren.py:121:14 - error: "entity_description" overrides symbol of same name in class "SirenEntity" +   Variable is mutable so its type is invariant +     Override type "RingSirenEntityDescription[RingDeviceT@RingSiren]" is not the same as base type "SirenEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ring/siren.py:146:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/ring/siren.py:151:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/ring/switch.py + /homeassistant/components/ring/switch.py:109:7 - error: Base classes for class "RingSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ring/switch.py:122:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RingSwitchEntityDescription[RingDeviceT@RingSwitch]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/ring/switch.py:122:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "RingSwitchEntityDescription[RingDeviceT@RingSwitch]" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/ripple/sensor.py + /homeassistant/components/ripple/sensor.py:7:6 - error: Import "pyripple" could not be resolved (reportMissingImports) + /homeassistant/components/ripple/sensor.py:58:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ripple/sensor.py:63:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/ripple/sensor.py:68:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/risco/alarm_control_panel.py + /homeassistant/components/risco/alarm_control_panel.py:115:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/risco/alarm_control_panel.py:179:7 - error: Base classes for class "RiscoCloudAlarm" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/risco/alarm_control_panel.py:179:7 - error: Base classes for class "RiscoCloudAlarm" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/risco/alarm_control_panel.py:179:7 - error: Base classes for class "RiscoCloudAlarm" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/risco/alarm_control_panel.py:179:7 - error: Base classes for class "RiscoCloudAlarm" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/risco/binary_sensor.py + /homeassistant/components/risco/binary_sensor.py:109:7 - error: Base classes for class "RiscoCloudBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/risco/binary_sensor.py:122:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/risco/binary_sensor.py:138:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/risco/binary_sensor.py:146:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/risco/binary_sensor.py:166:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/risco/binary_sensor.py:186:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/risco/binary_sensor.py:223:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/risco/sensor.py + /homeassistant/components/risco/sensor.py:71:7 - error: Base classes for class "RiscoSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/risco/sensor.py:112:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/risco/sensor.py:122:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/risco/switch.py + /homeassistant/components/risco/switch.py:43:7 - error: Base classes for class "RiscoCloudSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/risco/switch.py:57:18 - error: Argument of type "Zone" cannot be assigned to parameter "zone" of type "Zone" in function "__init__" +   "pyrisco.common.Zone" is not assignable to "pyrisco.cloud.zone.Zone" (reportArgumentType) + /homeassistant/components/risco/switch.py:61:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/risco/switch.py:91:18 - error: Argument of type "Zone" cannot be assigned to parameter "zone" of type "Zone" in function "__init__" +   "pyrisco.common.Zone" is not assignable to "pyrisco.local.zone.Zone" (reportArgumentType) + /homeassistant/components/risco/switch.py:95:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/rituals_perfume_genie/binary_sensor.py + /homeassistant/components/rituals_perfume_genie/binary_sensor.py:62:7 - error: Base classes for class "RitualsBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rituals_perfume_genie/binary_sensor.py:65:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "RitualsBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rituals_perfume_genie/binary_sensor.py:68:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/rituals_perfume_genie/number.py + /homeassistant/components/rituals_perfume_genie/number.py:57:7 - error: Base classes for class "RitualsNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rituals_perfume_genie/number.py:60:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "RitualsNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rituals_perfume_genie/number.py:63:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/rituals_perfume_genie/select.py + /homeassistant/components/rituals_perfume_genie/select.py:61:7 - error: Base classes for class "RitualsSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rituals_perfume_genie/select.py:64:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "RitualsSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rituals_perfume_genie/select.py:78:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/rituals_perfume_genie/sensor.py + /homeassistant/components/rituals_perfume_genie/sensor.py:78:7 - error: Base classes for class "RitualsSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rituals_perfume_genie/sensor.py:81:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RitualsSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rituals_perfume_genie/sensor.py:85:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/rituals_perfume_genie/switch.py + /homeassistant/components/rituals_perfume_genie/switch.py:59:7 - error: Base classes for class "RitualsSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rituals_perfume_genie/switch.py:62:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "RitualsSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/rmvtransport/sensor.py + /homeassistant/components/rmvtransport/sensor.py:154:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rmvtransport/sensor.py:159:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/rmvtransport/sensor.py:164:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/rmvtransport/sensor.py:169:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rmvtransport/sensor.py:184:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/rmvtransport/sensor.py:189:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/roborock/__init__.py + /homeassistant/components/roborock/__init__.py:20:39 - error: "RoborockMqttClientA01" is not exported from module "roborock.version_a01_apis" +   Import from "roborock.version_a01_apis.roborock_mqtt_client_a01" instead (reportPrivateImportUsage) +/homeassistant/components/roborock/binary_sensor.py + /homeassistant/components/roborock/binary_sensor.py:99:7 - error: Base classes for class "RoborockBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/binary_sensor.py:115:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RoborockBinarySensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/binary_sensor.py:115:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "RoborockBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/binary_sensor.py:118:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/roborock/button.py + /homeassistant/components/roborock/button.py:120:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RoborockButtonDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/button.py:120:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "RoborockButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/button.py:145:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/roborock/coordinator.py + /homeassistant/components/roborock/coordinator.py:27:39 - error: "RoborockClientA01" is not exported from module "roborock.version_a01_apis" +   Import from "roborock.version_a01_apis.roborock_client_a01" instead (reportPrivateImportUsage) +/homeassistant/components/roborock/entity.py + /homeassistant/components/roborock/entity.py:17:39 - error: "RoborockClientA01" is not exported from module "roborock.version_a01_apis" +   Import from "roborock.version_a01_apis.roborock_client_a01" instead (reportPrivateImportUsage) + /homeassistant/components/roborock/entity.py:135:36 - error: Argument of type "Self@RoborockCoordinatedEntityV1" cannot be assigned to parameter "self" of type "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" in function "__init__" +   "RoborockCoordinatedEntityV1*" is not assignable to "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" +     Type parameter "_DataUpdateCoordinatorT@CoordinatorEntity" is invariant, but "RoborockDataUpdateCoordinator" is not the same as "DataUpdateCoordinator[dict[str, Any]]" (reportArgumentType) + /homeassistant/components/roborock/entity.py:135:54 - error: Argument of type "RoborockDataUpdateCoordinator" cannot be assigned to parameter "coordinator" of type "DataUpdateCoordinator[dict[str, Any]]" in function "__init__" +   "RoborockDataUpdateCoordinator" is not assignable to "DataUpdateCoordinator[dict[str, Any]]" +     Type parameter "_DataT@DataUpdateCoordinator" is invariant, but "DeviceProp" is not the same as "dict[str, Any]" (reportArgumentType) + /homeassistant/components/roborock/entity.py:206:36 - error: Argument of type "Self@RoborockCoordinatedEntityA01" cannot be assigned to parameter "self" of type "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" in function "__init__" +   "RoborockCoordinatedEntityA01*" is not assignable to "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" +     Type parameter "_DataUpdateCoordinatorT@CoordinatorEntity" is invariant, but "RoborockDataUpdateCoordinatorA01" is not the same as "DataUpdateCoordinator[dict[str, Any]]" (reportArgumentType) + /homeassistant/components/roborock/entity.py:206:54 - error: Argument of type "RoborockDataUpdateCoordinatorA01" cannot be assigned to parameter "coordinator" of type "DataUpdateCoordinator[dict[str, Any]]" in function "__init__" +   "RoborockDataUpdateCoordinatorA01" is not assignable to "DataUpdateCoordinator[dict[str, Any]]" +     Type parameter "_DataT@DataUpdateCoordinator" is invariant, but "dict[RoborockDyadDataProtocol | RoborockZeoProtocol, StateType]" is not the same as "dict[str, Any]" (reportArgumentType) +/homeassistant/components/roborock/image.py + /homeassistant/components/roborock/image.py:42:7 - error: Base classes for class "RoborockMap" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/image.py:46:5 - error: "image_last_updated" overrides symbol of same name in class "ImageEntity" +   Variable is mutable so its type is invariant +     Override type "datetime" is not the same as base type "cached_property" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/image.py:61:14 - error: "_attr_name" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/roborock/number.py + /homeassistant/components/roborock/number.py:102:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RoborockNumberDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/number.py:102:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "RoborockNumberDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/number.py:106:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/roborock/select.py + /homeassistant/components/roborock/select.py:74:26 - error: Argument of type "(key: str, _: DeviceProp) -> list[int | None]" cannot be assigned to parameter "parameter_lambda" of type "(str, DeviceProp) -> list[int]" in function "__init__" +   Type "(key: str, _: DeviceProp) -> list[int | None]" is not assignable to type "(str, DeviceProp) -> list[int]" +     Function return type "list[int | None]" is incompatible with type "list[int]" +       "list[int | None]" is not assignable to "list[int]" +         Type parameter "_T@list" is invariant, but "int | None" is not the same as "int" +         Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /homeassistant/components/roborock/select.py:108:7 - error: Base classes for class "RoborockSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/select.py:120:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RoborockSelectDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/select.py:120:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "RoborockSelectDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/select.py:137:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/select.py:142:7 - error: Base classes for class "RoborockCurrentMapSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/select.py:167:9 - error: "options" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/select.py:172:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/roborock/sensor.py + /homeassistant/components/roborock/sensor.py:365:7 - error: Base classes for class "RoborockSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/sensor.py:376:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RoborockSensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/sensor.py:376:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RoborockSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/sensor.py:385:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/sensor.py:392:7 - error: Base classes for class "RoborockCurrentRoom" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/sensor.py:412:9 - error: "options" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/sensor.py:424:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/sensor.py:434:7 - error: Base classes for class "RoborockSensorEntityA01" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/sensor.py:445:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RoborockSensorDescriptionA01" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/sensor.py:445:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RoborockSensorDescriptionA01" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/sensor.py:449:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/roborock/switch.py + /homeassistant/components/roborock/switch.py:155:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RoborockSwitchDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/switch.py:155:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "RoborockSwitchDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/switch.py:189:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/roborock/time.py + /homeassistant/components/roborock/time.py:166:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RoborockTimeDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/time.py:166:14 - error: "entity_description" overrides symbol of same name in class "TimeEntity" +   Variable is mutable so its type is invariant +     Override type "RoborockTimeDescription" is not the same as base type "TimeEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/time.py:170:9 - error: "native_value" overrides symbol of same name in class "TimeEntity" +   "property" is not assignable to "cached_property[time | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/roborock/vacuum.py + /homeassistant/components/roborock/vacuum.py:99:7 - error: Base classes for class "RoborockVacuum" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/vacuum.py:135:9 - error: "activity" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[VacuumActivity | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roborock/vacuum.py:141:9 - error: "fan_speed" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/rocketchat/notify.py + /homeassistant/components/rocketchat/notify.py:8:6 - error: Import "rocketchat_API.APIExceptions.RocketExceptions" could not be resolved (reportMissingImports) + /homeassistant/components/rocketchat/notify.py:12:6 - error: Import "rocketchat_API.rocketchat" could not be resolved (reportMissingImports) + /homeassistant/components/rocketchat/notify.py:29:33 - error: Argument missing for parameter "v" (reportCallIssue) +/homeassistant/components/roku/binary_sensor.py + /homeassistant/components/roku/binary_sensor.py:74:7 - error: Base classes for class "RokuBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/roku/binary_sensor.py:77:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "RokuBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/binary_sensor.py:80:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/roku/browse_media.py + /homeassistant/components/roku/browse_media.py:252:18 - error: Argument of type "Unknown | Literal[False, '']" cannot be assigned to parameter "can_play" of type "bool" in function "__init__" +   Type "Unknown | Literal[False, '']" is not assignable to type "bool" +     "Literal['']" is not assignable to "bool" (reportArgumentType) +/homeassistant/components/roku/media_player.py + /homeassistant/components/roku/media_player.py:108:7 - error: Base classes for class "RokuMediaPlayer" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/roku/media_player.py:142:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/media_player.py:142:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/media_player.py:167:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/media_player.py:178:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/media_player.py:186:9 - error: "app_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/media_player.py:194:9 - error: "app_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/media_player.py:202:9 - error: "media_channel" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/media_player.py:212:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/media_player.py:223:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/media_player.py:231:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/media_player.py:239:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/media_player.py:247:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/media_player.py:255:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/media_player.py:297:15 - error: Method "async_turn_on" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/roku/media_player.py:303:15 - error: Method "async_turn_off" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/roku/media_player.py:309:15 - error: Method "async_media_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/roku/media_player.py:316:15 - error: Method "async_media_play" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/roku/media_player.py:323:15 - error: Method "async_media_play_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/roku/media_player.py:330:15 - error: Method "async_media_previous_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/roku/media_player.py:336:15 - error: Method "async_media_next_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/roku/media_player.py:342:15 - error: Method "async_mute_volume" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/roku/media_player.py:348:15 - error: Method "async_volume_up" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/roku/media_player.py:353:15 - error: Method "async_volume_down" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/roku/media_player.py:358:15 - error: Method "async_play_media" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/roku/media_player.py:473:15 - error: Method "async_select_source" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/roku/remote.py + /homeassistant/components/roku/remote.py:35:7 - error: Base classes for class "RokuRemote" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/roku/remote.py:41:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/remote.py:46:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/roku/remote.py:52:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/roku/remote.py:58:15 - error: Method "async_send_command" overrides class "RemoteEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/roku/select.py + /homeassistant/components/roku/select.py:136:7 - error: Base classes for class "RokuSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/roku/select.py:139:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "RokuSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/select.py:142:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/select.py:147:9 - error: "options" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/select.py:152:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/roku/sensor.py + /homeassistant/components/roku/sensor.py:60:7 - error: Base classes for class "RokuSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/roku/sensor.py:63:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RokuSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roku/sensor.py:66:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/romy/__init__.py + /homeassistant/components/romy/__init__.py:16:27 - error: "create_romy" is not exported from module "romy" (reportPrivateImportUsage) +/homeassistant/components/romy/binary_sensor.py + /homeassistant/components/romy/binary_sensor.py:55:7 - error: Base classes for class "RomyBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/romy/binary_sensor.py:68:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/romy/binary_sensor.py:71:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/romy/config_flow.py + /homeassistant/components/romy/config_flow.py:36:35 - error: "create_romy" is not exported from module "romy" (reportPrivateImportUsage) + /homeassistant/components/romy/config_flow.py:68:35 - error: "create_romy" is not exported from module "romy" (reportPrivateImportUsage) + /homeassistant/components/romy/config_flow.py:97:42 - error: "create_romy" is not exported from module "romy" (reportPrivateImportUsage) +/homeassistant/components/romy/coordinator.py + /homeassistant/components/romy/coordinator.py:3:18 - error: "RomyRobot" is not exported from module "romy" +   Import from "romy.romy" instead (reportPrivateImportUsage) +/homeassistant/components/romy/sensor.py + /homeassistant/components/romy/sensor.py:93:7 - error: Base classes for class "RomySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/romy/sensor.py:106:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/romy/sensor.py:109:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/romy/vacuum.py + /homeassistant/components/romy/vacuum.py:62:7 - error: Base classes for class "RomyVacuumEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/roomba/binary_sensor.py + /homeassistant/components/roomba/binary_sensor.py:35:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roomba/binary_sensor.py:40:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/roomba/config_flow.py + /homeassistant/components/roomba/config_flow.py:134:30 - error: Could not access item in TypedDict +   "context" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/roomba/entity.py + /homeassistant/components/roomba/entity.py:50:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/roomba/sensor.py + /homeassistant/components/roomba/sensor.py:178:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RoombaSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roomba/sensor.py:178:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RoombaSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/roomba/sensor.py:181:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roomba/sensor.py:186:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/roomba/vacuum.py + /homeassistant/components/roomba/vacuum.py:115:7 - error: Base classes for class "IRobotVacuum" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/roomba/vacuum.py:128:9 - error: "activity" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[VacuumActivity | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roomba/vacuum.py:142:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roomba/vacuum.py:273:9 - error: "fan_speed" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roomba/vacuum.py:332:9 - error: "fan_speed" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/roon/media_player.py + /homeassistant/components/roon/media_player.py:149:9 - error: "group_members" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roon/media_player.py:156:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roon/media_player.py:169:19 - error: "dev_model" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/roon/media_player.py:329:9 - error: "media_album_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/roon/media_player.py:334:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/route_b_smart_meter/sensor.py + /homeassistant/components/route_b_smart_meter/sensor.py:87:7 - error: Base classes for class "SmartMeterBRouteSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/route_b_smart_meter/sensor.py:99:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensorEntityDescriptionWithValueAccessor" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/route_b_smart_meter/sensor.py:99:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SensorEntityDescriptionWithValueAccessor" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/route_b_smart_meter/sensor.py:107:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/rova/sensor.py + /homeassistant/components/rova/sensor.py:59:7 - error: Base classes for class "RovaSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rova/sensor.py:81:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/rpi_camera/camera.py + /homeassistant/components/rpi_camera/camera.py:154:9 - error: "frame_interval" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/rpi_power/binary_sensor.py + /homeassistant/components/rpi_power/binary_sensor.py:35:54 - error: Argument of type "UnderVoltage | None" cannot be assigned to parameter "under_voltage" of type "UnderVoltage" in function "__init__" +   Type "UnderVoltage | None" is not assignable to type "UnderVoltage" +     "None" is not assignable to "UnderVoltage" (reportArgumentType) +/homeassistant/components/ruckus_unleashed/device_tracker.py + /homeassistant/components/ruckus_unleashed/device_tracker.py:94:7 - error: Base classes for class "RuckusDevice" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ruckus_unleashed/device_tracker.py:104:9 - error: "mac_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ruckus_unleashed/device_tracker.py:109:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/ruckus_unleashed/device_tracker.py:116:9 - error: "ip_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/russound_rio/media_player.py + /homeassistant/components/russound_rio/media_player.py:95:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/media_player.py:95:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/media_player.py:112:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/media_player.py:117:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/media_player.py:135:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/media_player.py:140:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/media_player.py:145:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/media_player.py:150:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/media_player.py:155:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/media_player.py:160:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/media_player.py:165:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/media_player.py:170:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/media_player.py:179:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/media_player.py:184:15 - error: Method "async_turn_off" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/russound_rio/media_player.py:189:15 - error: Method "async_turn_on" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/russound_rio/media_player.py:194:15 - error: Method "async_set_volume_level" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/russound_rio/media_player.py:200:15 - error: Method "async_select_source" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/russound_rio/media_player.py:209:15 - error: Method "async_volume_up" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/russound_rio/media_player.py:214:15 - error: Method "async_volume_down" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/russound_rio/media_player.py:219:15 - error: Method "async_mute_volume" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/russound_rio/media_player.py:232:15 - error: Method "async_media_seek" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/russound_rio/media_player.py:237:15 - error: Method "async_play_media" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/russound_rio/number.py + /homeassistant/components/russound_rio/number.py:99:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RussoundZoneNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/number.py:99:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "RussoundZoneNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/number.py:105:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/number.py:110:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/russound_rio/switch.py + /homeassistant/components/russound_rio/switch.py:67:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RussoundZoneSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/switch.py:67:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "RussoundZoneSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/switch.py:73:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/russound_rio/switch.py:78:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/russound_rio/switch.py:83:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/russound_rnet/media_player.py + /homeassistant/components/russound_rnet/media_player.py:8:6 - error: Import "russound" could not be resolved (reportMissingImports) +/homeassistant/components/ruuvitag_ble/sensor.py + /homeassistant/components/ruuvitag_ble/sensor.py:207:7 - error: Base classes for class "RuuvitagBluetoothSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ruuvitag_ble/sensor.py:216:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/rympro/sensor.py + /homeassistant/components/rympro/sensor.py:76:7 - error: Base classes for class "RymProSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/rympro/sensor.py:102:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RymProSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rympro/sensor.py:102:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RymProSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/rympro/sensor.py:105:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/sabnzbd/binary_sensor.py + /homeassistant/components/sabnzbd/binary_sensor.py:53:7 - error: Base classes for class "SabnzbdBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sabnzbd/binary_sensor.py:56:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "SabnzbdBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sabnzbd/binary_sensor.py:59:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sabnzbd/button.py + /homeassistant/components/sabnzbd/button.py:53:7 - error: Base classes for class "SabnzbdButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sabnzbd/button.py:56:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "SabnzbdButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/sabnzbd/number.py + /homeassistant/components/sabnzbd/number.py:61:7 - error: Base classes for class "SabnzbdNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sabnzbd/number.py:64:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "SabnzbdNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sabnzbd/number.py:67:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sabnzbd/sensor.py + /homeassistant/components/sabnzbd/sensor.py:126:7 - error: Base classes for class "SabnzbdSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sabnzbd/sensor.py:129:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SabnzbdSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sabnzbd/sensor.py:132:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/saj/sensor.py + /homeassistant/components/saj/sensor.py:10:8 - error: Import "pysaj" could not be resolved (reportMissingImports) + /homeassistant/components/saj/sensor.py:220:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/samsungtv/bridge.py + /homeassistant/components/samsungtv/bridge.py:351:16 - error: Type "Remote | None" is not assignable to return type "Remote" +   Type "Remote | None" is not assignable to type "Remote" +     "None" is not assignable to "Remote" (reportReturnType) +/homeassistant/components/samsungtv/config_flow.py + /homeassistant/components/samsungtv/config_flow.py:442:9 - error: Method "is_matching" overrides class "ConfigFlow" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "ConfigFlow", override parameter is type "SamsungTVConfigFlow" +     "ConfigFlow" is not assignable to "SamsungTVConfigFlow" (reportIncompatibleMethodOverride) +/homeassistant/components/samsungtv/entity.py + /homeassistant/components/samsungtv/entity.py:55:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/samsungtv/media_player.py + /homeassistant/components/samsungtv/media_player.py:77:7 - error: Base classes for class "SamsungTVDevice" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/samsungtv/media_player.py:110:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/samsungtv/media_player.py:110:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/samsungtv/media_player.py:119:14 - error: "_attr_source_list" overrides symbol of same name in class "MediaPlayerEntity" +   Variable is mutable so its type is invariant +     Override type "list[str]" is not the same as base type "list[str] | None" (reportIncompatibleVariableOverride) + /homeassistant/components/samsungtv/media_player.py:197:18 - error: "_attr_is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   Variable is mutable so its type is invariant +     Override type "bool" is not the same as base type "bool | None" (reportIncompatibleVariableOverride) +/homeassistant/components/samsungtv/remote.py + /homeassistant/components/samsungtv/remote.py:30:7 - error: Base classes for class "SamsungTVRemote" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/sanix/sensor.py + /homeassistant/components/sanix/sensor.py:97:7 - error: Base classes for class "SanixSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sanix/sensor.py:113:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SanixSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sanix/sensor.py:113:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SanixSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sanix/sensor.py:123:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/saunum/climate.py + /homeassistant/components/saunum/climate.py:41:7 - error: Base classes for class "LeilSaunaClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/saunum/climate.py:52:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/saunum/climate.py:57:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/saunum/climate.py:62:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/saunum/climate.py:68:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/scene/__init__.py + /homeassistant/components/scene/__init__.py:105:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/schedule/__init__.py + /homeassistant/components/schedule/__init__.py:336:18 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "Literal['on', 'off']" is not the same as base type "StateType" (reportIncompatibleVariableOverride) +/homeassistant/components/schlage/binary_sensor.py + /homeassistant/components/schlage/binary_sensor.py:62:7 - error: Base classes for class "SchlageBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/schlage/binary_sensor.py:75:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SchlageBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/schlage/binary_sensor.py:75:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "SchlageBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/schlage/binary_sensor.py:79:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/schlage/lock.py + /homeassistant/components/schlage/lock.py:33:7 - error: Base classes for class "SchlageLockEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/schlage/select.py + /homeassistant/components/schlage/select.py:48:7 - error: Base classes for class "SchlageSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/schlage/select.py:63:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/schlage/sensor.py + /homeassistant/components/schlage/sensor.py:52:7 - error: Base classes for class "SchlageBatterySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/schlage/switch.py + /homeassistant/components/schlage/switch.py:79:7 - error: Base classes for class "SchlageSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/schlage/switch.py:92:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SchlageSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/schlage/switch.py:92:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "SchlageSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/schlage/switch.py:96:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/schluter/__init__.py + /homeassistant/components/schluter/__init__.py:6:6 - error: Import "schluter.api" could not be resolved (reportMissingImports) + /homeassistant/components/schluter/__init__.py:7:6 - error: Import "schluter.authenticator" could not be resolved (reportMissingImports) +/homeassistant/components/schluter/climate.py + /homeassistant/components/schluter/climate.py:78:7 - error: Base classes for class "SchluterThermostat" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/schluter/climate.py:94:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/schluter/climate.py:99:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/schluter/climate.py:104:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/schluter/climate.py:109:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/schluter/climate.py:116:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/schluter/climate.py:121:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/schluter/climate.py:126:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/scrape/sensor.py + /homeassistant/components/scrape/sensor.py:157:36 - error: Argument of type "Self@ScrapeSensor" cannot be assigned to parameter "self" of type "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" in function "__init__" +   "ScrapeSensor*" is not assignable to "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" +     Type parameter "_DataUpdateCoordinatorT@CoordinatorEntity" is invariant, but "ScrapeCoordinator" is not the same as "DataUpdateCoordinator[dict[str, Any]]" (reportArgumentType) + /homeassistant/components/scrape/sensor.py:157:42 - error: Argument of type "ScrapeCoordinator" cannot be assigned to parameter "coordinator" of type "DataUpdateCoordinator[dict[str, Any]]" in function "__init__" +   "ScrapeCoordinator" is not assignable to "DataUpdateCoordinator[dict[str, Any]]" +     Type parameter "_DataT@DataUpdateCoordinator" is invariant, but "BeautifulSoup" is not the same as "dict[str, Any]" (reportArgumentType) +/homeassistant/components/screenlogic/__init__.py + /homeassistant/components/screenlogic/__init__.py:66:39 - error: Argument of type "str | int" cannot be assigned to parameter "connection_closed_callback" of type "(...) -> Unknown" in function "async_connect" +   Type "str | int" is not assignable to type "(...) -> Unknown" +     Type "int" is not assignable to type "(...) -> Unknown" (reportArgumentType) +/homeassistant/components/screenlogic/binary_sensor.py + /homeassistant/components/screenlogic/binary_sensor.py:48:27 - error: Argument of type "Literal[12500]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12500]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/binary_sensor.py:55:27 - error: Argument of type "Literal[12500]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12500]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/binary_sensor.py:61:27 - error: Argument of type "Literal[12500]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12500]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/binary_sensor.py:67:27 - error: Argument of type "Literal[12500]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12500]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/binary_sensor.py:73:27 - error: Argument of type "Literal[12500]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12500]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/binary_sensor.py:89:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/binary_sensor.py:96:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/binary_sensor.py:104:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/binary_sensor.py:112:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/binary_sensor.py:120:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/binary_sensor.py:128:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/binary_sensor.py:136:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/binary_sensor.py:144:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/binary_sensor.py:151:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/binary_sensor.py:158:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/binary_sensor.py:165:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/binary_sensor.py:171:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/binary_sensor.py:178:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/binary_sensor.py:260:7 - error: Base classes for class "ScreenLogicBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/binary_sensor.py:263:5 - error: "entity_description" overrides symbol of same name in class "ScreenLogicEntity" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicBinarySensorDescription" is not the same as base type "ScreenLogicEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/binary_sensor.py:263:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/binary_sensor.py:268:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/binary_sensor.py:276:5 - error: "entity_description" overrides symbol of same name in class "ScreenLogicPushEntity" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicPushBinarySensorDescription" is not the same as base type "ScreenLogicPushEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/binary_sensor.py:276:5 - error: "entity_description" overrides symbol of same name in class "ScreenLogicBinarySensor" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicPushBinarySensorDescription" is not the same as base type "ScreenLogicBinarySensorDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/screenlogic/climate.py + /homeassistant/components/screenlogic/climate.py:56:35 - error: Argument of type "Literal[12500]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12500]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/climate.py:73:7 - error: Base classes for class "ScreenLogicClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/climate.py:73:7 - error: Base classes for class "ScreenLogicClimate" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/climate.py:73:7 - error: Base classes for class "ScreenLogicClimate" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/climate.py:73:7 - error: Base classes for class "ScreenLogicClimate" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/climate.py:73:7 - error: Base classes for class "ScreenLogicClimate" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/climate.py:76:5 - error: "entity_description" overrides symbol of same name in class "ScreenLogicPushEntity" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicClimateDescription" is not the same as base type "ScreenLogicPushEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/climate.py:76:5 - error: "entity_description" overrides symbol of same name in class "ClimateEntity" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicClimateDescription" is not the same as base type "ClimateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/climate.py:76:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicClimateDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/climate.py:104:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/climate.py:109:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/climate.py:114:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/climate.py:121:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/climate.py:128:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/climate.py:137:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/climate.py:207:36 - error: Argument of type "Any | None" cannot be assigned to parameter "value" of type "str" in function "parse" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/screenlogic/config_flow.py + /homeassistant/components/screenlogic/config_flow.py:169:48 - error: "mac" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/screenlogic/config_flow.py:172:40 - error: "mac" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/screenlogic/coordinator.py + /homeassistant/components/screenlogic/coordinator.py:101:52 - error: Argument of type "str | int" cannot be assigned to parameter "connection_closed_callback" of type "(...) -> Unknown" in function "async_connect" +   Type "str | int" is not assignable to type "(...) -> Unknown" +     Type "int" is not assignable to type "(...) -> Unknown" (reportArgumentType) +/homeassistant/components/screenlogic/entity.py + /homeassistant/components/screenlogic/entity.py:53:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/entity.py:110:5 - error: "entity_description" overrides symbol of same name in class "ScreenLogicEntity" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicPushEntityDescription" is not the same as base type "ScreenLogicEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/entity.py:134:17 - error: Argument of type "CODE" cannot be assigned to parameter "code" of type "int" in function "async_subscribe_client" +   "CODE" is not assignable to "int" (reportArgumentType) + /homeassistant/components/screenlogic/entity.py:171:50 - error: Argument of type "str" cannot be assigned to parameter "circuitID" of type "int" in function "async_set_circuit" +   "str" is not assignable to "int" (reportArgumentType) +/homeassistant/components/screenlogic/light.py + /homeassistant/components/screenlogic/light.py:44:39 - error: Argument of type "Literal[12500]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12500]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/light.py:65:7 - error: Base classes for class "ScreenLogicLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/light.py:65:7 - error: Base classes for class "ScreenLogicLight" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/light.py:68:5 - error: "entity_description" overrides symbol of same name in class "ScreenLogicPushEntity" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicLightDescription" is not the same as base type "ScreenLogicPushEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/light.py:68:5 - error: "entity_description" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicLightDescription" is not the same as base type "LightEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/screenlogic/number.py + /homeassistant/components/screenlogic/number.py:55:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/number.py:63:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/number.py:71:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/number.py:79:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/number.py:141:7 - error: Base classes for class "ScreenLogicNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/number.py:144:5 - error: "entity_description" overrides symbol of same name in class "ScreenLogicEntity" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicNumberDescription" is not the same as base type "ScreenLogicEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/number.py:144:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicNumberDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/number.py:171:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/number.py:183:5 - error: "entity_description" overrides symbol of same name in class "ScreenLogicPushEntity" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicPushNumberDescription" is not the same as base type "ScreenLogicPushEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/number.py:183:5 - error: "entity_description" overrides symbol of same name in class "ScreenLogicNumber" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicPushNumberDescription" is not the same as base type "ScreenLogicNumberDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/screenlogic/sensor.py + /homeassistant/components/screenlogic/sensor.py:56:27 - error: Argument of type "Literal[12500]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12500]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:64:27 - error: Argument of type "Literal[12500]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12500]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:97:27 - error: Argument of type "Literal[12500]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12500]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:103:27 - error: Argument of type "Literal[12500]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12500]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:109:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:117:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:125:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:134:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:143:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:151:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:158:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:165:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:172:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:179:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:186:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:193:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:200:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:210:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:219:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:228:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:238:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:247:27 - error: Argument of type "Literal[12505]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12505]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/sensor.py:341:7 - error: Base classes for class "ScreenLogicSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/sensor.py:344:5 - error: "entity_description" overrides symbol of same name in class "ScreenLogicEntity" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicSensorDescription" is not the same as base type "ScreenLogicEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/sensor.py:344:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/sensor.py:359:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/sensor.py:366:7 - error: Base classes for class "ScreenLogicPushSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/sensor.py:366:7 - error: Base classes for class "ScreenLogicPushSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/sensor.py:366:7 - error: Base classes for class "ScreenLogicPushSensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/sensor.py:366:7 - error: Base classes for class "ScreenLogicPushSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/sensor.py:366:7 - error: Base classes for class "ScreenLogicPushSensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/sensor.py:366:7 - error: Base classes for class "ScreenLogicPushSensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/sensor.py:366:7 - error: Base classes for class "ScreenLogicPushSensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/sensor.py:369:5 - error: "entity_description" overrides symbol of same name in class "ScreenLogicSensor" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicPushSensorDescription" is not the same as base type "ScreenLogicSensorDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/sensor.py:369:5 - error: "entity_description" overrides symbol of same name in class "ScreenLogicPushEntity" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicPushSensorDescription" is not the same as base type "ScreenLogicPushEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/screenlogic/switch.py + /homeassistant/components/screenlogic/switch.py:51:39 - error: Argument of type "Literal[12500]" cannot be assigned to parameter "subscription_code" of type "CODE" in function "__init__" +   "Literal[12500]" is not assignable to "CODE" (reportArgumentType) + /homeassistant/components/screenlogic/switch.py:65:7 - error: Base classes for class "ScreenLogicCircuitSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/switch.py:65:7 - error: Base classes for class "ScreenLogicCircuitSwitch" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/switch.py:68:5 - error: "entity_description" overrides symbol of same name in class "ScreenLogicPushEntity" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicCircuitSwitchDescription" is not the same as base type "ScreenLogicPushEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/screenlogic/switch.py:68:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "ScreenLogicCircuitSwitchDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/script/__init__.py + /homeassistant/components/script/__init__.py:540:7 - error: Base classes for class "ScriptEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/script/__init__.py:540:7 - error: Base classes for class "ScriptEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/script/__init__.py:540:7 - error: Base classes for class "ScriptEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/script/__init__.py:543:12 - error: Type "None" is not assignable to declared type "cached_property" +   "None" is not assignable to "cached_property[str | None]" (reportAssignmentType) + /homeassistant/components/script/__init__.py:561:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/script/__init__.py:584:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/script/__init__.py:599:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/scsgate/__init__.py + /homeassistant/components/scsgate/__init__.py:6:6 - error: Import "scsgate.connection" could not be resolved (reportMissingImports) + /homeassistant/components/scsgate/__init__.py:7:6 - error: Import "scsgate.messages" could not be resolved (reportMissingImports) + /homeassistant/components/scsgate/__init__.py:8:6 - error: Import "scsgate.reactor" could not be resolved (reportMissingImports) + /homeassistant/components/scsgate/__init__.py:9:6 - error: Import "scsgate.tasks" could not be resolved (reportMissingImports) +/homeassistant/components/scsgate/cover.py + /homeassistant/components/scsgate/cover.py:8:6 - error: Import "scsgate.tasks" could not be resolved (reportMissingImports) + /homeassistant/components/scsgate/cover.py:81:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/scsgate/cover.py:86:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/scsgate/light.py + /homeassistant/components/scsgate/light.py:8:6 - error: Import "scsgate.tasks" could not be resolved (reportMissingImports) + /homeassistant/components/scsgate/light.py:81:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/scsgate/switch.py + /homeassistant/components/scsgate/switch.py:8:6 - error: Import "scsgate.messages" could not be resolved (reportMissingImports) + /homeassistant/components/scsgate/switch.py:9:6 - error: Import "scsgate.tasks" could not be resolved (reportMissingImports) + /homeassistant/components/scsgate/switch.py:115:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/scsgate/switch.py:120:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/select/__init__.py + /homeassistant/components/select/__init__.py:129:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/select/__init__.py:132:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) + /homeassistant/components/select/__init__.py:135:9 - error: "capability_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/select/__init__.py:143:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/sendgrid/notify.py + /homeassistant/components/sendgrid/notify.py:8:22 - error: "SendGridAPIClient" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/sendgrid/notify.py:36:36 - error: Argument missing for parameter "v" (reportCallIssue) + /homeassistant/components/sendgrid/notify.py:37:39 - error: Argument missing for parameter "v" (reportCallIssue) +/homeassistant/components/sense/__init__.py + /homeassistant/components/sense/__init__.py:8:5 - error: "ASyncSenseable" is not exported from module "sense_energy" +   Import from "sense_energy.asyncsenseable" instead (reportPrivateImportUsage) +/homeassistant/components/sense/binary_sensor.py + /homeassistant/components/sense/binary_sensor.py:42:7 - error: Base classes for class "SenseBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sense/binary_sensor.py:63:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sense/config_flow.py + /homeassistant/components/sense/config_flow.py:9:5 - error: "ASyncSenseable" is not exported from module "sense_energy" +   Import from "sense_energy.asyncsenseable" instead (reportPrivateImportUsage) +/homeassistant/components/sense/coordinator.py + /homeassistant/components/sense/coordinator.py:10:5 - error: "ASyncSenseable" is not exported from module "sense_energy" +   Import from "sense_energy.asyncsenseable" instead (reportPrivateImportUsage) +/homeassistant/components/sense/entity.py + /homeassistant/components/sense/entity.py:3:26 - error: "ASyncSenseable" is not exported from module "sense_energy" +   Import from "sense_energy.asyncsenseable" instead (reportPrivateImportUsage) +/homeassistant/components/sense/sensor.py + /homeassistant/components/sense/sensor.py:5:26 - error: "ASyncSenseable" is not exported from module "sense_energy" +   Import from "sense_energy.asyncsenseable" instead (reportPrivateImportUsage) + /homeassistant/components/sense/sensor.py:5:42 - error: "Scale" is not exported from module "sense_energy" +   Import from "sense_energy.sense_api" instead (reportPrivateImportUsage) + /homeassistant/components/sense/sensor.py:121:7 - error: Base classes for class "SensePowerSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sense/sensor.py:147:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/sense/sensor.py:156:7 - error: Base classes for class "SenseVoltageSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sense/sensor.py:178:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/sense/sensor.py:183:7 - error: Base classes for class "SenseTrendsSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sense/sensor.py:217:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/sense/sensor.py:222:9 - error: "last_reset" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sense/sensor.py:229:7 - error: Base classes for class "SenseDevicePowerSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sense/sensor.py:248:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/sense/sensor.py:253:7 - error: Base classes for class "SenseDeviceEnergySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sense/sensor.py:280:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/sensibo/binary_sensor.py + /homeassistant/components/sensibo/binary_sensor.py:178:7 - error: Base classes for class "SensiboMotionSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/binary_sensor.py:198:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensiboMotionBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/binary_sensor.py:198:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "SensiboMotionBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/binary_sensor.py:202:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/binary_sensor.py:209:7 - error: Base classes for class "SensiboDeviceSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/binary_sensor.py:225:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensiboDeviceBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/binary_sensor.py:225:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "SensiboDeviceBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/binary_sensor.py:229:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sensibo/button.py + /homeassistant/components/sensibo/button.py:63:7 - error: Base classes for class "SensiboDeviceButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/button.py:79:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensiboButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/button.py:79:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "SensiboButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/sensibo/climate.py + /homeassistant/components/sensibo/climate.py:130:7 - error: Base classes for class "SensiboClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/climate.py:150:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/climate.py:150:9 - error: "supported_features" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[ClimateEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/climate.py:159:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/climate.py:164:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/climate.py:171:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/climate.py:178:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/climate.py:189:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/climate.py:198:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/climate.py:203:9 - error: "target_temperature_step" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/climate.py:208:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/climate.py:213:9 - error: "fan_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/climate.py:218:9 - error: "swing_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/climate.py:223:9 - error: "swing_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/climate.py:228:9 - error: "swing_horizontal_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/climate.py:233:9 - error: "swing_horizontal_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/climate.py:238:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/climate.py:243:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/sensibo/number.py + /homeassistant/components/sensibo/number.py:94:7 - error: Base classes for class "SensiboNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/number.py:107:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensiboNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/number.py:107:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "SensiboNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/number.py:111:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sensibo/select.py + /homeassistant/components/sensibo/select.py:87:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensiboSelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/select.py:87:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "SensiboSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/select.py:91:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/select.py:98:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/select.py:103:9 - error: "options" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) +/homeassistant/components/sensibo/sensor.py + /homeassistant/components/sensibo/sensor.py:296:7 - error: Base classes for class "SensiboMotionSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/sensor.py:316:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensiboMotionSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/sensor.py:316:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SensiboMotionSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/sensor.py:320:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/sensor.py:327:7 - error: Base classes for class "SensiboDeviceSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/sensor.py:343:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensiboDeviceSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/sensor.py:343:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SensiboDeviceSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/sensor.py:347:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/sensor.py:352:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sensibo/switch.py + /homeassistant/components/sensibo/switch.py:109:7 - error: Base classes for class "SensiboDeviceSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/switch.py:125:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensiboDeviceSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/switch.py:125:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "SensiboDeviceSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/switch.py:129:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/switch.py:152:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sensibo/update.py + /homeassistant/components/sensibo/update.py:75:7 - error: Base classes for class "SensiboDeviceUpdate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/update.py:88:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensiboDeviceUpdateEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/update.py:88:14 - error: "entity_description" overrides symbol of same name in class "UpdateEntity" +   Variable is mutable so its type is invariant +     Override type "SensiboDeviceUpdateEntityDescription" is not the same as base type "UpdateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/update.py:93:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensibo/update.py:98:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sensirion_ble/sensor.py + /homeassistant/components/sensirion_ble/sensor.py:40:5 - error: Type "dict[tuple[Literal[SensorDeviceClass.CO2], Literal['ppm']] | tuple[Literal[SensorDeviceClass.HUMIDITY], Literal['%']] | tuple[Literal[SensorDeviceClass.TEMPERATURE], Literal['°C']], SensorEntityDescription]" is not assignable to declared type "dict[tuple[SensorDeviceClass, Units | None], SensorEntityDescription]" +   Type "Literal['ppm']" is not assignable to type "Units | None" +     "Literal['ppm']" is not assignable to "Units" +     "Literal['ppm']" is not assignable to "None" +   Type "Literal['%']" is not assignable to type "Units | None" +     "Literal['%']" is not assignable to "Units" +     "Literal['%']" is not assignable to "None" +   Type "Literal['°C']" is not assignable to type "Units | None" +     "Literal['°C']" is not assignable to "Units" (reportAssignmentType) + /homeassistant/components/sensirion_ble/sensor.py:124:7 - error: Base classes for class "SensirionBluetoothSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensirion_ble/sensor.py:133:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/sensor/__init__.py + /homeassistant/components/sensor/__init__.py:185:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sensor/__init__.py:186:5 - error: "_attr_device_class" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensorDeviceClass | None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/sensor/__init__.py:192:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) + /homeassistant/components/sensor/__init__.py:195:5 - error: "_attr_unit_of_measurement" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/sensor/__init__.py:351:9 - error: "capability_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensor/__init__.py:438:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensor/__init__.py:520:9 - error: "unit_of_measurement" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensor/__init__.py:565:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensor/__init__.py:975:7 - error: Base classes for class "RestoreSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensor/__init__.py:975:7 - error: Base classes for class "RestoreSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensor/__init__.py:975:7 - error: Base classes for class "RestoreSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensor/__init__.py:975:7 - error: Base classes for class "RestoreSensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensor/__init__.py:975:7 - error: Base classes for class "RestoreSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensor/__init__.py:975:7 - error: Base classes for class "RestoreSensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensor/__init__.py:975:7 - error: Base classes for class "RestoreSensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensor/__init__.py:975:7 - error: Base classes for class "RestoreSensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/sensor/recorder.py + /homeassistant/components/sensor/recorder.py:668:13 - error: Could not assign item in TypedDict +   "tuple[Any, ...]" is not assignable to "float" (reportGeneralTypeIssues) + /homeassistant/components/sensor/recorder.py:672:13 - error: Could not assign item in TypedDict +   "tuple[Any, ...]" is not assignable to "float" (reportGeneralTypeIssues) + /homeassistant/components/sensor/recorder.py:694:62 - error: Could not access item in TypedDict +   "last_reset" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/sensor/websocket_api.py + /homeassistant/components/sensor/websocket_api.py:44:13 - error: Argument of type "Any | None" cannot be assigned to parameter "key" of type "SensorDeviceClass" in function "__getitem__" +   Type "Any | None" is not assignable to type "SensorDeviceClass" +     "None" is not assignable to "SensorDeviceClass" (reportArgumentType) +/homeassistant/components/sensorpro/sensor.py + /homeassistant/components/sensorpro/sensor.py:129:7 - error: Base classes for class "SensorProBluetoothSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensorpro/sensor.py:138:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/sensorpush/sensor.py + /homeassistant/components/sensorpush/sensor.py:115:7 - error: Base classes for class "SensorPushBluetoothSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sensorpush/sensor.py:124:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/sensorpush_cloud/sensor.py + /homeassistant/components/sensorpush_cloud/sensor.py:147:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensorpush_cloud/sensor.py:156:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/sensoterra/sensor.py + /homeassistant/components/sensoterra/sensor.py:155:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/sensoterra/sensor.py:161:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/senz/climate.py + /homeassistant/components/senz/climate.py:74:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/senz/climate.py:79:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/senz/climate.py:84:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/senz/climate.py:89:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/senz/climate.py:96:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/senz/sensor.py + /homeassistant/components/senz/sensor.py:73:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SenzSensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/senz/sensor.py:73:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SenzSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/senz/sensor.py:85:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/senz/sensor.py:90:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/serial/sensor.py + /homeassistant/components/serial/sensor.py:36:35 - error: "serial" is not exported from module "serial_asyncio_fast" (reportPrivateImportUsage) + /homeassistant/components/serial/sensor.py:37:33 - error: "serial" is not exported from module "serial_asyncio_fast" (reportPrivateImportUsage) + /homeassistant/components/serial/sensor.py:38:35 - error: "serial" is not exported from module "serial_asyncio_fast" (reportPrivateImportUsage) + /homeassistant/components/serial/sensor.py:51:32 - error: "serial" is not exported from module "serial_asyncio_fast" (reportPrivateImportUsage) + /homeassistant/components/serial/sensor.py:52:32 - error: "serial" is not exported from module "serial_asyncio_fast" (reportPrivateImportUsage) + /homeassistant/components/serial/sensor.py:53:32 - error: "serial" is not exported from module "serial_asyncio_fast" (reportPrivateImportUsage) + /homeassistant/components/serial/sensor.py:54:32 - error: "serial" is not exported from module "serial_asyncio_fast" (reportPrivateImportUsage) + /homeassistant/components/serial/sensor.py:59:32 - error: "serial" is not exported from module "serial_asyncio_fast" (reportPrivateImportUsage) + /homeassistant/components/serial/sensor.py:60:32 - error: "serial" is not exported from module "serial_asyncio_fast" (reportPrivateImportUsage) + /homeassistant/components/serial/sensor.py:61:32 - error: "serial" is not exported from module "serial_asyncio_fast" (reportPrivateImportUsage) + /homeassistant/components/serial/sensor.py:62:32 - error: "serial" is not exported from module "serial_asyncio_fast" (reportPrivateImportUsage) + /homeassistant/components/serial/sensor.py:63:32 - error: "serial" is not exported from module "serial_asyncio_fast" (reportPrivateImportUsage) + /homeassistant/components/serial/sensor.py:68:32 - error: "serial" is not exported from module "serial_asyncio_fast" (reportPrivateImportUsage) + /homeassistant/components/serial/sensor.py:69:32 - error: "serial" is not exported from module "serial_asyncio_fast" (reportPrivateImportUsage) + /homeassistant/components/serial/sensor.py:70:32 - error: "serial" is not exported from module "serial_asyncio_fast" (reportPrivateImportUsage) + /homeassistant/components/serial/sensor.py:243:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/serial/sensor.py:248:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/serial/sensor.py:253:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/serial_pm/sensor.py + /homeassistant/components/serial_pm/sensor.py:7:6 - error: Import "pmsensor" could not be resolved (reportMissingImports) + /homeassistant/components/serial_pm/sensor.py:83:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/serial_pm/sensor.py:88:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/serial_pm/sensor.py:93:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sesame/lock.py + /homeassistant/components/sesame/lock.py:7:8 - error: Import "pysesame2" could not be resolved (reportMissingImports) + /homeassistant/components/sesame/lock.py:56:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sesame/lock.py:61:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/sesame/lock.py:66:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sesame/lock.py:89:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/seventeentrack/sensor.py + /homeassistant/components/seventeentrack/sensor.py:32:7 - error: Base classes for class "SeventeenTrackSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/seventeentrack/sensor.py:42:35 - error: Argument of type "set[tuple[Literal['seventeentrack'], str | None]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]]" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/seventeentrack/sensor.py:70:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/seventeentrack/services.py + /homeassistant/components/seventeentrack/services.py:141:44 - error: Cannot access attribute "isoformat" for class "str" +   Attribute "isoformat" is unknown (reportAttributeAccessIssue) +/homeassistant/components/sfr_box/binary_sensor.py + /homeassistant/components/sfr_box/binary_sensor.py:89:7 - error: Base classes for class "SFRBoxBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sfr_box/binary_sensor.py:92:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "SFRBoxBinarySensorEntityDescription[_T@SFRBoxBinarySensor]" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sfr_box/binary_sensor.py:95:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sfr_box/button.py + /homeassistant/components/sfr_box/button.py:85:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "SFRBoxButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sfr_box/button.py:98:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/sfr_box/entity.py + /homeassistant/components/sfr_box/entity.py:29:7 - error: Base classes for class "SFRCoordinatorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/sfr_box/sensor.py + /homeassistant/components/sfr_box/sensor.py:245:7 - error: Base classes for class "SFRBoxSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sfr_box/sensor.py:248:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SFRBoxSensorEntityDescription[_T@SFRBoxSensor]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sfr_box/sensor.py:251:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/sharkiq/coordinator.py + /homeassistant/components/sharkiq/coordinator.py:74:19 - error: Operator "-" not supported for "None" (reportOptionalOperand) +/homeassistant/components/sharkiq/vacuum.py + /homeassistant/components/sharkiq/vacuum.py:154:9 - error: "activity" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[VacuumActivity | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sharkiq/vacuum.py:167:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/sharkiq/vacuum.py:173:9 - error: "battery_level" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sharkiq/vacuum.py:221:9 - error: "fan_speed" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sharkiq/vacuum.py:233:36 - error: Argument of type "PowerModes | None" cannot be assigned to parameter "value" of type "PropertyValue" in function "async_set_property_value" +   Type "PowerModes | None" is not assignable to type "PropertyValue" +     Type "None" is not assignable to type "PropertyValue" +       "None" is not assignable to "str" +       "None" is not assignable to "int" +       "None" is not assignable to "Enum" (reportArgumentType) + /homeassistant/components/sharkiq/vacuum.py:262:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/shell_command/__init__.py + /homeassistant/components/shell_command/__init__.py:80:47 - error: Argument of type "Any | None" cannot be assigned to parameter "s" of type "str | _ShlexInstream" in function "split" +   Type "Any | None" is not assignable to type "str | _ShlexInstream" +     Type "None" is not assignable to type "str | _ShlexInstream" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "_ShlexInstream" +         "read" is not present +         "readline" is not present +         "close" is not present (reportArgumentType) +/homeassistant/components/shelly/binary_sensor.py + /homeassistant/components/shelly/binary_sensor.py:65:7 - error: Base classes for class "RpcBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:68:5 - error: "entity_description" overrides symbol of same name in class "ShellyRpcAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RpcBinarySensorDescription" is not the same as base type "RpcEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:68:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "RpcBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:71:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:411:7 - error: Base classes for class "BlockBinarySensor" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:411:7 - error: Base classes for class "BlockBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:414:5 - error: "entity_description" overrides symbol of same name in class "ShellyBlockAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "BlockBinarySensorDescription" is not the same as base type "BlockEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:414:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "BlockBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:417:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:422:7 - error: Base classes for class "RestBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:425:5 - error: "entity_description" overrides symbol of same name in class "ShellyRestAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RestBinarySensorDescription" is not the same as base type "RestEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:425:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "RestBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:428:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:433:7 - error: Base classes for class "BlockSleepingBinarySensor" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:433:7 - error: Base classes for class "BlockSleepingBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:433:7 - error: Base classes for class "BlockSleepingBinarySensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:433:7 - error: Base classes for class "BlockSleepingBinarySensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:433:7 - error: Base classes for class "BlockSleepingBinarySensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:438:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "BlockBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:438:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BlockBinarySensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:446:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:457:7 - error: Base classes for class "RpcSleepingBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:457:7 - error: Base classes for class "RpcSleepingBinarySensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:457:7 - error: Base classes for class "RpcSleepingBinarySensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:457:7 - error: Base classes for class "RpcSleepingBinarySensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:462:5 - error: "entity_description" overrides symbol of same name in class "ShellySleepingRpcAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RpcBinarySensorDescription" is not the same as base type "RpcEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:462:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "RpcBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:462:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RpcBinarySensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/binary_sensor.py:470:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/shelly/button.py + /homeassistant/components/shelly/button.py:254:7 - error: Base classes for class "ShellyBaseButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/button.py:274:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ShellyButtonDescription[ShellyRpcCoordinator | ShellyBlockCoordinator]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/button.py:274:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "ShellyButtonDescription[ShellyRpcCoordinator | ShellyBlockCoordinator]" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/button.py:336:7 - error: Base classes for class "ShellyBluTrvButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/button.py:339:5 - error: "entity_description" overrides symbol of same name in class "ShellyRpcAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RpcButtonDescription" is not the same as base type "RpcEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/button.py:339:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "RpcButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/button.py:365:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/shelly/button.py:370:7 - error: Base classes for class "RpcVirtualButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/button.py:373:5 - error: "entity_description" overrides symbol of same name in class "ShellyRpcAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RpcButtonDescription" is not the same as base type "RpcEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/button.py:373:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "RpcButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/button.py:390:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/shelly/button.py:401:5 - error: "entity_description" overrides symbol of same name in class "ShellySleepingRpcAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RpcButtonDescription" is not the same as base type "RpcEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/button.py:401:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "RpcButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/button.py:418:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/shelly/button.py:427:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/shelly/climate.py + /homeassistant/components/shelly/climate.py:82:7 - error: Base classes for class "RpcLinkedgoThermostatClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:85:5 - error: "entity_description" overrides symbol of same name in class "ShellyRpcAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RpcClimateDescription" is not the same as base type "RpcEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:85:5 - error: "entity_description" overrides symbol of same name in class "ClimateEntity" +   Variable is mutable so its type is invariant +     Override type "RpcClimateDescription" is not the same as base type "ClimateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:147:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:155:9 - error: "target_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:163:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:178:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:186:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:191:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:202:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:395:7 - error: Base classes for class "BlockSleepingClimate" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:395:7 - error: Base classes for class "BlockSleepingClimate" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:395:7 - error: Base classes for class "BlockSleepingClimate" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:395:7 - error: Base classes for class "BlockSleepingClimate" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:395:7 - error: Base classes for class "BlockSleepingClimate" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:455:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:460:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:476:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:492:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:499:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:512:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:521:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:533:9 - error: "preset_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:683:7 - error: Base classes for class "RpcClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:713:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:718:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:723:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:731:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:739:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:761:7 - error: Base classes for class "RpcBluTrvClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:788:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:796:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:801:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/climate.py:809:15 - error: Method "async_set_temperature" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/shelly/config_flow.py + /homeassistant/components/shelly/config_flow.py:310:21 - error: Could not access item in TypedDict +   "context" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/shelly/config_flow.py:311:21 - error: Could not access item in TypedDict +   "context" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/shelly/config_flow.py:403:25 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/shelly/coordinator.py + /homeassistant/components/shelly/coordinator.py:245:12 - error: "new_sleep_period" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/shelly/coordinator.py:246:39 - error: "new_sleep_period" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/shelly/cover.py + /homeassistant/components/shelly/cover.py:104:7 - error: Base classes for class "BlockShellyCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:107:5 - error: "entity_description" overrides symbol of same name in class "ShellyBlockAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "BlockCoverDescription" is not the same as base type "BlockEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:107:5 - error: "entity_description" overrides symbol of same name in class "CoverEntity" +   Variable is mutable so its type is invariant +     Override type "BlockCoverDescription" is not the same as base type "CoverEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:123:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:125:18 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "CoverEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:125:18 - error: "_attr_supported_features" overrides symbol of same name in class "CoverEntity" +   Variable is mutable so its type is invariant +     Override type "CoverEntityFeature" is not the same as base type "CoverEntityFeature | None" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:128:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:136:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:144:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:152:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:188:7 - error: Base classes for class "RpcShellyCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:191:5 - error: "entity_description" overrides symbol of same name in class "ShellyRpcAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RpcCoverDescription" is not the same as base type "RpcEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:191:5 - error: "entity_description" overrides symbol of same name in class "CoverEntity" +   Variable is mutable so its type is invariant +     Override type "RpcCoverDescription" is not the same as base type "CoverEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:207:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:212:18 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "CoverEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:212:18 - error: "_attr_supported_features" overrides symbol of same name in class "CoverEntity" +   Variable is mutable so its type is invariant +     Override type "CoverEntityFeature" is not the same as base type "CoverEntityFeature | None" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:220:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:225:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:233:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:241:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:246:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/cover.py:280:15 - error: Method "async_close_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/shelly/cover.py:285:15 - error: Method "async_open_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/shelly/cover.py:290:15 - error: Method "async_set_cover_position" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/shelly/cover.py:297:15 - error: Method "async_stop_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/shelly/cover.py:302:15 - error: Method "async_open_cover_tilt" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/shelly/cover.py:307:15 - error: Method "async_close_cover_tilt" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/shelly/cover.py:312:15 - error: Method "async_set_cover_tilt_position" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/shelly/cover.py:319:15 - error: Method "async_stop_cover_tilt" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/shelly/entity.py + /homeassistant/components/shelly/entity.py:467:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BlockEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/entity.py:469:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/entity.py:483:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/entity.py:509:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RestEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/entity.py:547:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RpcEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/entity.py:594:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/shelly/event.py + /homeassistant/components/shelly/event.py:178:7 - error: Base classes for class "ShellyBlockEvent" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/event.py:198:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ShellyBlockEventDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/event.py:198:14 - error: "entity_description" overrides symbol of same name in class "EventEntity" +   Variable is mutable so its type is invariant +     Override type "ShellyBlockEventDescription" is not the same as base type "EventEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/event.py:226:7 - error: Base classes for class "ShellyRpcEvent" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/event.py:243:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ShellyRpcEventDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/event.py:243:14 - error: "entity_description" overrides symbol of same name in class "EventEntity" +   Variable is mutable so its type is invariant +     Override type "ShellyRpcEventDescription" is not the same as base type "EventEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/shelly/light.py + /homeassistant/components/shelly/light.py:107:7 - error: Base classes for class "BlockShellyLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:110:5 - error: "entity_description" overrides symbol of same name in class "ShellyBlockAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "BlockLightDescription" is not the same as base type "BlockEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:110:5 - error: "entity_description" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "BlockLightDescription" is not the same as base type "LightEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:123:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:124:14 - error: "_attr_supported_color_modes" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "set[str]" is not the same as base type "set[ColorMode] | set[str] | None" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:151:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:177:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:190:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:206:9 - error: "rgb_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:219:9 - error: "rgbw_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:241:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:249:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:365:7 - error: Base classes for class "RpcShellyLightBase" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:368:5 - error: "entity_description" overrides symbol of same name in class "ShellyRpcAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RpcLightDescription" is not the same as base type "RpcEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:368:5 - error: "entity_description" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "RpcLightDescription" is not the same as base type "LightEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:383:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:388:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:393:9 - error: "rgb_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:398:9 - error: "rgbw_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/light.py:505:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/shelly/number.py + /homeassistant/components/shelly/number.py:81:7 - error: Base classes for class "RpcNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/number.py:84:5 - error: "entity_description" overrides symbol of same name in class "ShellyRpcAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RpcNumberDescription" is not the same as base type "RpcEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/number.py:84:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "RpcNumberDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/number.py:85:5 - error: "attribute_value" incorrectly overrides property of same name in class "ShellyRpcAttributeEntity" (reportIncompatibleMethodOverride) + /homeassistant/components/shelly/number.py:115:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/number.py:120:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/shelly/number.py:397:7 - error: Base classes for class "BlockSleepingNumber" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/number.py:397:7 - error: Base classes for class "BlockSleepingNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/number.py:400:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "BlockNumberDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/number.py:423:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/shelly/repairs.py + /homeassistant/components/shelly/repairs.py:224:16 - error: Could not access item in TypedDict +   "restart_required" is not a required key in "ShellyWsSetConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/shelly/select.py + /homeassistant/components/shelly/select.py:43:7 - error: Base classes for class "RpcSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/select.py:46:5 - error: "entity_description" overrides symbol of same name in class "ShellyRpcAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RpcSelectDescription" is not the same as base type "RpcEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/select.py:46:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "RpcSelectDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/select.py:66:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/select.py:74:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/shelly/sensor.py + /homeassistant/components/shelly/sensor.py:94:7 - error: Base classes for class "RpcSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:97:5 - error: "entity_description" overrides symbol of same name in class "ShellyRpcAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RpcSensorDescription" is not the same as base type "RpcEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:97:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RpcSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:134:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1808:7 - error: Base classes for class "BlockSensor" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1808:7 - error: Base classes for class "BlockSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1811:5 - error: "entity_description" overrides symbol of same name in class "ShellyBlockAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "BlockSensorDescription" is not the same as base type "BlockEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1811:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "BlockSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1829:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1834:7 - error: Base classes for class "RestSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1837:5 - error: "entity_description" overrides symbol of same name in class "ShellyRestAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RestSensorDescription" is not the same as base type "RestEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1837:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RestSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1852:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1857:7 - error: Base classes for class "BlockSleepingSensor" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1857:7 - error: Base classes for class "BlockSleepingSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1860:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "BlockSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1883:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1894:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1905:7 - error: Base classes for class "RpcSleepingSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1908:5 - error: "entity_description" overrides symbol of same name in class "ShellySleepingRpcAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RpcSensorDescription" is not the same as base type "RpcEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1908:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "RpcSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1931:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/sensor.py:1942:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/shelly/switch.py + /homeassistant/components/shelly/switch.py:408:7 - error: Base classes for class "BlockSleepingMotionSwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/switch.py:408:7 - error: Base classes for class "BlockSleepingMotionSwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/switch.py:408:7 - error: Base classes for class "BlockSleepingMotionSwitch" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/switch.py:408:7 - error: Base classes for class "BlockSleepingMotionSwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/switch.py:408:7 - error: Base classes for class "BlockSleepingMotionSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/switch.py:413:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BlockSwitchDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/switch.py:413:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "BlockSwitchDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/switch.py:431:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/switch.py:458:7 - error: Base classes for class "BlockRelaySwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/switch.py:461:5 - error: "entity_description" overrides symbol of same name in class "ShellyBlockAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "BlockSwitchDescription" is not the same as base type "BlockEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/switch.py:461:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "BlockSwitchDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/switch.py:473:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/switch.py:476:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/switch.py:500:7 - error: Base classes for class "RpcSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/switch.py:503:5 - error: "entity_description" overrides symbol of same name in class "ShellyRpcAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RpcSwitchDescription" is not the same as base type "RpcEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/switch.py:503:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "RpcSwitchDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/switch.py:523:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/switch.py:528:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/shelly/switch.py:539:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/shelly/text.py + /homeassistant/components/shelly/text.py:94:7 - error: Base classes for class "RpcText" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/text.py:97:5 - error: "entity_description" overrides symbol of same name in class "ShellyRpcAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RpcTextDescription" is not the same as base type "RpcEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/text.py:97:5 - error: "entity_description" overrides symbol of same name in class "TextEntity" +   Variable is mutable so its type is invariant +     Override type "RpcTextDescription" is not the same as base type "TextEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/text.py:98:5 - error: "attribute_value" incorrectly overrides property of same name in class "ShellyRpcAttributeEntity" (reportIncompatibleMethodOverride) + /homeassistant/components/shelly/text.py:102:9 - error: "native_value" overrides symbol of same name in class "TextEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/text.py:107:15 - error: Method "async_set_value" overrides class "TextEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/shelly/update.py + /homeassistant/components/shelly/update.py:162:7 - error: Base classes for class "RestUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:168:5 - error: "entity_description" overrides symbol of same name in class "ShellyRestAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RestUpdateDescription" is not the same as base type "RestEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:168:5 - error: "entity_description" overrides symbol of same name in class "UpdateEntity" +   Variable is mutable so its type is invariant +     Override type "RestUpdateDescription" is not the same as base type "UpdateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:189:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:194:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:205:9 - error: "in_progress" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:258:7 - error: Base classes for class "RpcUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:264:5 - error: "entity_description" overrides symbol of same name in class "ShellyRpcAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RpcUpdateDescription" is not the same as base type "RpcEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:264:5 - error: "entity_description" overrides symbol of same name in class "UpdateEntity" +   Variable is mutable so its type is invariant +     Override type "RpcUpdateDescription" is not the same as base type "UpdateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:306:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:311:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:320:9 - error: "in_progress" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:325:9 - error: "update_percentage" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[int | float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:372:7 - error: Base classes for class "RpcSleepingUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:372:7 - error: Base classes for class "RpcSleepingUpdateEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:372:7 - error: Base classes for class "RpcSleepingUpdateEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:372:7 - error: Base classes for class "RpcSleepingUpdateEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:372:7 - error: Base classes for class "RpcSleepingUpdateEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:372:7 - error: Base classes for class "RpcSleepingUpdateEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:372:7 - error: Base classes for class "RpcSleepingUpdateEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:372:7 - error: Base classes for class "RpcSleepingUpdateEntity" define variable "entity_category" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:377:5 - error: "entity_description" overrides symbol of same name in class "ShellySleepingRpcAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RpcUpdateDescription" is not the same as base type "RpcEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:377:5 - error: "entity_description" overrides symbol of same name in class "UpdateEntity" +   Variable is mutable so its type is invariant +     Override type "RpcUpdateDescription" is not the same as base type "UpdateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:377:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "RpcUpdateDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:399:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:410:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/update.py:425:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/shelly/utils.py + /homeassistant/components/shelly/utils.py:235:17 - error: "diff" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/shelly/utils.py:790:50 - error: Could not access item in TypedDict +   "data" is not a required key in "ShellyScriptCode", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/shelly/valve.py + /homeassistant/components/shelly/valve.py:60:7 - error: Base classes for class "RpcShellyBaseWaterValve" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/valve.py:63:5 - error: "entity_description" overrides symbol of same name in class "ShellyRpcAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "RpcValveDescription" is not the same as base type "RpcEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/valve.py:63:5 - error: "entity_description" overrides symbol of same name in class "ValveEntity" +   Variable is mutable so its type is invariant +     Override type "RpcValveDescription" is not the same as base type "ValveEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/valve.py:225:7 - error: Base classes for class "BlockShellyValve" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/valve.py:225:7 - error: Base classes for class "BlockShellyValve" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/valve.py:228:5 - error: "entity_description" overrides symbol of same name in class "ShellyBlockAttributeEntity" +   Variable is mutable so its type is invariant +     Override type "BlockValveDescription" is not the same as base type "BlockEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/shelly/valve.py:228:5 - error: "entity_description" overrides symbol of same name in class "ValveEntity" +   Variable is mutable so its type is invariant +     Override type "BlockValveDescription" is not the same as base type "ValveEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/shodan/sensor.py + /homeassistant/components/shodan/sensor.py:49:30 - error: "Shodan" is not a known attribute of module "shodan" (reportAttributeAccessIssue) + /homeassistant/components/shodan/sensor.py:52:19 - error: "exception" is not a known attribute of module "shodan" (reportAttributeAccessIssue) + /homeassistant/components/shodan/sensor.py:80:36 - error: "Shodan" is not a known attribute of module "shodan" (reportAttributeAccessIssue) +/homeassistant/components/shopping_list/intent.py + /homeassistant/components/shopping_list/intent.py:27:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/shopping_list/intent.py:27:19 - error: Type "dict[str, (value: Any) -> str]" is not assignable to declared type "property" (reportAssignmentType) + /homeassistant/components/shopping_list/intent.py:46:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/shopping_list/intent.py:46:19 - error: Type "dict[str, (value: Any) -> str]" is not assignable to declared type "property" (reportAssignmentType) + /homeassistant/components/shopping_list/intent.py:72:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/shopping_list/intent.py:72:19 - error: Type "dict[str, (value: Any) -> str]" is not assignable to declared type "property" (reportAssignmentType) +/homeassistant/components/shopping_list/todo.py + /homeassistant/components/shopping_list/todo.py:92:9 - error: "todo_items" overrides symbol of same name in class "TodoListEntity" +   "property" is not assignable to "cached_property[list[TodoItem] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sia/alarm_control_panel.py + /homeassistant/components/sia/alarm_control_panel.py:9:24 - error: "SIAEvent" is not exported from module "pysiaalarm" +   Import from "pysiaalarm.event" instead (reportPrivateImportUsage) + /homeassistant/components/sia/alarm_control_panel.py:90:5 - error: "entity_description" overrides symbol of same name in class "SIABaseEntity" +   Variable is mutable so its type is invariant +     Override type "SIAAlarmControlPanelEntityDescription" is not the same as base type "SIAEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sia/alarm_control_panel.py:90:5 - error: "entity_description" overrides symbol of same name in class "AlarmControlPanelEntity" +   Variable is mutable so its type is invariant +     Override type "SIAAlarmControlPanelEntityDescription" is not the same as base type "AlarmControlPanelEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/sia/binary_sensor.py + /homeassistant/components/sia/binary_sensor.py:9:24 - error: "SIAEvent" is not exported from module "pysiaalarm" +   Import from "pysiaalarm.event" instead (reportPrivateImportUsage) + /homeassistant/components/sia/binary_sensor.py:117:5 - error: "entity_description" overrides symbol of same name in class "SIABaseEntity" +   Variable is mutable so its type is invariant +     Override type "SIABinarySensorEntityDescription" is not the same as base type "SIAEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sia/binary_sensor.py:117:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "SIABinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/sia/config_flow.py + /homeassistant/components/sia/config_flow.py:11:5 - error: "InvalidAccountFormatError" is not exported from module "pysiaalarm" +   Import from "pysiaalarm.errors" instead (reportPrivateImportUsage) + /homeassistant/components/sia/config_flow.py:12:5 - error: "InvalidAccountLengthError" is not exported from module "pysiaalarm" +   Import from "pysiaalarm.errors" instead (reportPrivateImportUsage) + /homeassistant/components/sia/config_flow.py:13:5 - error: "InvalidKeyFormatError" is not exported from module "pysiaalarm" +   Import from "pysiaalarm.errors" instead (reportPrivateImportUsage) + /homeassistant/components/sia/config_flow.py:14:5 - error: "InvalidKeyLengthError" is not exported from module "pysiaalarm" +   Import from "pysiaalarm.errors" instead (reportPrivateImportUsage) + /homeassistant/components/sia/config_flow.py:15:5 - error: "SIAAccount" is not exported from module "pysiaalarm" +   Import from "pysiaalarm.account" instead (reportPrivateImportUsage) +/homeassistant/components/sia/entity.py + /homeassistant/components/sia/entity.py:9:24 - error: "SIAEvent" is not exported from module "pysiaalarm" +   Import from "pysiaalarm.event" instead (reportPrivateImportUsage) + /homeassistant/components/sia/entity.py:68:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SIAEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/sia/hub.py + /homeassistant/components/sia/hub.py:9:64 - error: "SIAClient" is not exported from module "pysiaalarm.aio" +   Import from "pysiaalarm.aio.client" instead (reportPrivateImportUsage) +/homeassistant/components/sia/utils.py + /homeassistant/components/sia/utils.py:8:24 - error: "SIAEvent" is not exported from module "pysiaalarm" +   Import from "pysiaalarm.event" instead (reportPrivateImportUsage) + /homeassistant/components/sia/utils.py:9:30 - error: "MessageTypes" is not exported from module "pysiaalarm.utils" +   Import from "pysiaalarm.utils.enums" instead (reportPrivateImportUsage) +/homeassistant/components/sigfox/sensor.py + /homeassistant/components/sigfox/sensor.py:155:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sigfox/sensor.py:160:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/sigfox/sensor.py:165:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sighthound/image_processing.py + /homeassistant/components/sighthound/image_processing.py:141:44 - error: Argument of type "int | None" cannot be assigned to parameter "img_width" of type "int" in function "bbox_to_tf_style" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/sighthound/image_processing.py:141:63 - error: Argument of type "int | None" cannot be assigned to parameter "img_height" of type "int" in function "bbox_to_tf_style" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/sighthound/image_processing.py:176:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/simplefin/binary_sensor.py + /homeassistant/components/simplefin/binary_sensor.py:60:7 - error: Base classes for class "SimpleFinBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/simplefin/binary_sensor.py:63:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "SimpleFinBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/simplefin/binary_sensor.py:66:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/simplefin/entity.py + /homeassistant/components/simplefin/entity.py:43:16 - error: Type "Account | None" is not assignable to return type "Account" +   Type "Account | None" is not assignable to type "Account" +     "None" is not assignable to "Account" (reportReturnType) +/homeassistant/components/simplefin/sensor.py + /homeassistant/components/simplefin/sensor.py:43:17 - error: Argument of type "(account: Account) -> AccountType" cannot be assigned to parameter "icon_fn" of type "((Account) -> str) | None" in function "__init__" +   Type "(account: Account) -> AccountType" is not assignable to type "((Account) -> str) | None" +     Type "(account: Account) -> AccountType" is not assignable to type "(Account) -> str" +       Function return type "AccountType" is incompatible with type "str" +         "AccountType" is not assignable to "str" +     "FunctionType" is not assignable to "None" (reportArgumentType) + /homeassistant/components/simplefin/sensor.py:76:7 - error: Base classes for class "SimpleFinSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/simplefin/sensor.py:79:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SimpleFinSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/simplefin/sensor.py:82:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/simplefin/sensor.py:87:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/simplefin/sensor.py:95:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/simplisafe/__init__.py + /homeassistant/components/simplisafe/__init__.py:10:22 - error: "API" is not exported from module "simplipy" +   Import from "simplipy.api" instead (reportPrivateImportUsage) +/homeassistant/components/simplisafe/alarm_control_panel.py + /homeassistant/components/simplisafe/alarm_control_panel.py:118:7 - error: Base classes for class "SimpliSafeAlarm" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/simplisafe/binary_sensor.py + /homeassistant/components/simplisafe/binary_sensor.py:95:7 - error: Base classes for class "TriggeredBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/simplisafe/binary_sensor.py:117:7 - error: Base classes for class "BatteryBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/simplisafe/button.py + /homeassistant/components/simplisafe/button.py:65:7 - error: Base classes for class "SimpliSafeButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/simplisafe/button.py:81:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SimpliSafeButtonDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/simplisafe/button.py:81:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "SimpliSafeButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/simplisafe/config_flow.py + /homeassistant/components/simplisafe/config_flow.py:8:22 - error: "API" is not exported from module "simplipy" +   Import from "simplipy.api" instead (reportPrivateImportUsage) + /homeassistant/components/simplisafe/config_flow.py:143:34 - error: "simplisafe" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/simplisafe/config_flow.py:144:64 - error: "simplisafe" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/simplisafe/lock.py + /homeassistant/components/simplisafe/lock.py:54:7 - error: Base classes for class "SimpliSafeLock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/simplisafe/sensor.py + /homeassistant/components/simplisafe/sensor.py:47:7 - error: Base classes for class "SimplisafeFreezeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/sinch/notify.py + /homeassistant/components/sinch/notify.py:7:6 - error: Import "clx.xms.api" could not be resolved (reportMissingImports) + /homeassistant/components/sinch/notify.py:8:6 - error: Import "clx.xms.client" could not be resolved (reportMissingImports) + /homeassistant/components/sinch/notify.py:9:6 - error: Import "clx.xms.exceptions" could not be resolved (reportMissingImports) +/homeassistant/components/siren/__init__.py + /homeassistant/components/siren/__init__.py:161:5 - error: "entity_description" overrides symbol of same name in class "ToggleEntity" +   Variable is mutable so its type is invariant +     Override type "SirenEntityDescription" is not the same as base type "ToggleEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/siren/__init__.py:163:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SirenEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/siren/__init__.py:167:9 - error: "capability_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sisyphus/__init__.py + /homeassistant/components/sisyphus/__init__.py:6:6 - error: Import "sisyphus_control" could not be resolved (reportMissingImports) +/homeassistant/components/sisyphus/light.py + /homeassistant/components/sisyphus/light.py:61:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/sisyphus/light.py:66:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sisyphus/light.py:71:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sisyphus/light.py:76:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sisyphus/light.py:81:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sisyphus/media_player.py + /homeassistant/components/sisyphus/media_player.py:6:6 - error: Import "sisyphus_control" could not be resolved (reportMissingImports) + /homeassistant/components/sisyphus/media_player.py:73:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sisyphus/media_player.py:78:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/sisyphus/media_player.py:83:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sisyphus/media_player.py:88:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sisyphus/media_player.py:103:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sisyphus/media_player.py:108:9 - error: "shuffle" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sisyphus/media_player.py:117:9 - error: "media_playlist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sisyphus/media_player.py:122:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sisyphus/media_player.py:127:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sisyphus/media_player.py:132:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sisyphus/media_player.py:137:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sisyphus/media_player.py:142:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sisyphus/media_player.py:150:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sisyphus/media_player.py:155:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sky_hub/device_tracker.py + /homeassistant/components/sky_hub/device_tracker.py:7:6 - error: Import "pyskyqhub.skyq_hub" could not be resolved (reportMissingImports) +/homeassistant/components/skybeacon/sensor.py + /homeassistant/components/skybeacon/sensor.py:9:6 - error: Import "pygatt" could not be resolved (reportMissingImports) + /homeassistant/components/skybeacon/sensor.py:10:6 - error: Import "pygatt.backends" could not be resolved (reportMissingImports) + /homeassistant/components/skybeacon/sensor.py:11:6 - error: Import "pygatt.exceptions" could not be resolved (reportMissingImports) + /homeassistant/components/skybeacon/sensor.py:90:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/skybeacon/sensor.py:95:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/skybeacon/sensor.py:100:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/skybeacon/sensor.py:117:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/skybeacon/sensor.py:122:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/skybeacon/sensor.py:127:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/skybell/binary_sensor.py + /homeassistant/components/skybell/binary_sensor.py:46:7 - error: Base classes for class "SkybellBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/skybell/camera.py + /homeassistant/components/skybell/camera.py:82:17 - error: Argument of type "StreamReader" cannot be assigned to parameter "stream" of type "StreamReader" in function "async_aiohttp_proxy_stream" +   "asyncio.streams.StreamReader" is not assignable to "aiohttp.streams.StreamReader" (reportArgumentType) +/homeassistant/components/skybell/coordinator.py + /homeassistant/components/skybell/coordinator.py:5:24 - error: "SkybellDevice" is not exported from module "aioskybell" +   Import from "aioskybell.device" instead (reportPrivateImportUsage) + /homeassistant/components/skybell/coordinator.py:5:39 - error: "SkybellException" is not exported from module "aioskybell" +   Import from "aioskybell.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/skybell/entity.py + /homeassistant/components/skybell/entity.py:5:24 - error: "SkybellDevice" is not exported from module "aioskybell" +   Import from "aioskybell.device" instead (reportPrivateImportUsage) +/homeassistant/components/skybell/light.py + /homeassistant/components/skybell/light.py:36:7 - error: Base classes for class "SkybellLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/skybell/light.py:56:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/skybell/light.py:61:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/skybell/light.py:66:9 - error: "rgb_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/skybell/sensor.py + /homeassistant/components/skybell/sensor.py:9:24 - error: "SkybellDevice" is not exported from module "aioskybell" +   Import from "aioskybell.device" instead (reportPrivateImportUsage) + /homeassistant/components/skybell/sensor.py:104:7 - error: Base classes for class "SkybellSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/skybell/sensor.py:107:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SkybellSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/skybell/sensor.py:110:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/skybell/switch.py + /homeassistant/components/skybell/switch.py:44:7 - error: Base classes for class "SkybellSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/skybell/switch.py:56:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/slack/config_flow.py + /homeassistant/components/slack/config_flow.py:8:40 - error: "AsyncSlackResponse" is not exported from module "slack_sdk.web.async_client" +   Import from "slack_sdk.web.async_slack_response" instead (reportPrivateImportUsage) + /homeassistant/components/slack/config_flow.py:46:27 - error: Argument of type "str | None" cannot be assigned to parameter "title" of type "str" in function "async_create_entry" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/slack/notify.py + /homeassistant/components/slack/notify.py:173:25 - error: Argument of type "list[str]" cannot be assigned to parameter "channel_ids" of type "list[str | None]" in function "upload_file_to_slack" +   "list[str]" is not assignable to "list[str | None]" +     Type parameter "_T@list" is invariant, but "str" is not the same as "str | None" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /homeassistant/components/slack/notify.py:223:25 - error: Argument of type "list[str]" cannot be assigned to parameter "channel_ids" of type "list[str | None]" in function "upload_file_to_slack" +   "list[str]" is not assignable to "list[str | None]" +     Type parameter "_T@list" is invariant, but "str" is not the same as "str | None" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) +/homeassistant/components/sleep_as_android/event.py + /homeassistant/components/sleep_as_android/event.py:27:5 - error: "event_types" overrides a field of the same name but is missing a default value (reportGeneralTypeIssues) + /homeassistant/components/sleep_as_android/event.py:152:5 - error: "entity_description" overrides symbol of same name in class "EventEntity" +   Variable is mutable so its type is invariant +     Override type "SleepAsAndroidEventEntityDescription" is not the same as base type "EventEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/sleepiq/__init__.py + /homeassistant/components/sleepiq/__init__.py:9:5 - error: "AsyncSleepIQ" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.asyncsleepiq" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/__init__.py:10:5 - error: "SleepIQAPIException" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/__init__.py:11:5 - error: "SleepIQLoginException" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/__init__.py:12:5 - error: "SleepIQTimeoutException" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/sleepiq/binary_sensor.py + /homeassistant/components/sleepiq/binary_sensor.py:3:26 - error: "SleepIQBed" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.bed" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/binary_sensor.py:3:38 - error: "SleepIQSleeper" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.sleeper" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/binary_sensor.py:32:7 - error: Base classes for class "IsInBedBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/sleepiq/button.py + /homeassistant/components/sleepiq/button.py:9:26 - error: "SleepIQBed" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.bed" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/button.py:71:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SleepIQButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sleepiq/button.py:71:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "SleepIQButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/sleepiq/config_flow.py + /homeassistant/components/sleepiq/config_flow.py:9:26 - error: "AsyncSleepIQ" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.asyncsleepiq" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/config_flow.py:9:40 - error: "SleepIQLoginException" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/config_flow.py:9:63 - error: "SleepIQTimeoutException" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/sleepiq/coordinator.py + /homeassistant/components/sleepiq/coordinator.py:8:26 - error: "AsyncSleepIQ" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.asyncsleepiq" instead (reportPrivateImportUsage) +/homeassistant/components/sleepiq/entity.py + /homeassistant/components/sleepiq/entity.py:5:26 - error: "SleepIQBed" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.bed" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/entity.py:5:38 - error: "SleepIQSleeper" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.sleeper" instead (reportPrivateImportUsage) +/homeassistant/components/sleepiq/light.py + /homeassistant/components/sleepiq/light.py:6:26 - error: "SleepIQBed" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.bed" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/light.py:6:38 - error: "SleepIQLight" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.light" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/light.py:34:7 - error: Base classes for class "SleepIQLightEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/sleepiq/number.py + /homeassistant/components/sleepiq/number.py:12:5 - error: "SleepIQActuator" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.actuator" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/number.py:13:5 - error: "SleepIQBed" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.bed" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/number.py:14:5 - error: "SleepIQCoreClimate" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.core_climate" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/number.py:15:5 - error: "SleepIQFootWarmer" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.foot_warmer" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/number.py:16:5 - error: "SleepIQSleeper" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.sleeper" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/number.py:231:7 - error: Base classes for class "SleepIQNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sleepiq/number.py:245:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SleepIQNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sleepiq/number.py:245:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "SleepIQNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/sleepiq/select.py + /homeassistant/components/sleepiq/select.py:9:5 - error: "SleepIQBed" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.bed" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/select.py:10:5 - error: "SleepIQCoreClimate" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.core_climate" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/select.py:11:5 - error: "SleepIQFootWarmer" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.foot_warmer" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/select.py:12:5 - error: "SleepIQPreset" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.preset" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/select.py:49:7 - error: Base classes for class "SleepIQSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sleepiq/select.py:83:7 - error: Base classes for class "SleepIQFootWarmingTempSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sleepiq/select.py:126:7 - error: Base classes for class "SleepIQCoreTempSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/sleepiq/sensor.py + /homeassistant/components/sleepiq/sensor.py:5:26 - error: "SleepIQBed" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.bed" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/sensor.py:5:38 - error: "SleepIQSleeper" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.sleeper" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/sensor.py:34:7 - error: Base classes for class "SleepIQSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/sleepiq/switch.py + /homeassistant/components/sleepiq/switch.py:7:26 - error: "SleepIQBed" is not exported from module "asyncsleepiq" +   Import from "asyncsleepiq.bed" instead (reportPrivateImportUsage) + /homeassistant/components/sleepiq/switch.py:32:7 - error: Base classes for class "SleepNumberPrivateSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/slide/cover.py + /homeassistant/components/slide/cover.py:60:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/slide/cover.py:65:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/slide/cover.py:70:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/slide/cover.py:77:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/slide/cover.py:82:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/slide_local/button.py + /homeassistant/components/slide_local/button.py:37:7 - error: Base classes for class "SlideButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/slide_local/cover.py + /homeassistant/components/slide_local/cover.py:41:7 - error: Base classes for class "SlideCoverLocal" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/slide_local/cover.py:60:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/slide_local/cover.py:65:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/slide_local/cover.py:70:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/slide_local/cover.py:75:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/slide_local/switch.py + /homeassistant/components/slide_local/switch.py:39:7 - error: Base classes for class "SlideSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/slide_local/switch.py:52:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/slimproto/media_player.py + /homeassistant/components/slimproto/media_player.py:66:32 - error: Argument of type "SlimClient | None" cannot be assigned to parameter "player" of type "SlimClient" in function "async_add_player" +   Type "SlimClient | None" is not assignable to type "SlimClient" +     "None" is not assignable to "SlimClient" (reportArgumentType) + /homeassistant/components/slimproto/media_player.py:70:30 - error: Argument of type "(event: SlimEvent) -> CoroutineType[Any, Any, None]" cannot be assigned to parameter "cb_func" of type "EventCallBackType" in function "subscribe" +   Type "(event: SlimEvent) -> CoroutineType[Any, Any, None]" is not assignable to type "EventCallBackType" +     Function return type "CoroutineType[Any, Any, None]" is incompatible with type "None" +       "CoroutineType[Any, Any, None]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/slimproto/media_player.py:120:17 - error: Argument of type "(event: SlimEvent) -> CoroutineType[Any, Any, None]" cannot be assigned to parameter "cb_func" of type "EventCallBackType" in function "subscribe" +   Type "(event: SlimEvent) -> CoroutineType[Any, Any, None]" is not assignable to type "EventCallBackType" +     Function return type "CoroutineType[Any, Any, None]" is incompatible with type "None" +       "CoroutineType[Any, Any, None]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/slimproto/media_player.py:121:17 - error: Argument of type "tuple[Literal[EventType.PLAYER_UPDATED], Literal[EventType.PLAYER_CONNECTED], Literal[EventType.PLAYER_DISCONNECTED], Literal[EventType.PLAYER_NAME_RECEIVED], Literal[EventType.PLAYER_CLI_EVENT]]" cannot be assigned to parameter "event_filter" of type "EventType | tuple[EventType] | None" in function "subscribe" +   Type "tuple[Literal[EventType.PLAYER_UPDATED], Literal[EventType.PLAYER_CONNECTED], Literal[EventType.PLAYER_DISCONNECTED], Literal[EventType.PLAYER_NAME_RECEIVED], Literal[EventType.PLAYER_CLI_EVENT]]" is not assignable to type "EventType | tuple[EventType] | None" +     "tuple[Literal[EventType.PLAYER_UPDATED], Literal[EventType.PLAYER_CONNECTED], Literal[EventType.PLAYER_DISCONNECTED], Literal[EventType.PLAYER_NAME_RECEIVED], Literal[EventType.PLAYER_CLI_EVENT]]" is not assignable to "EventType" +     "tuple[Literal[EventType.PLAYER_UPDATED], Literal[EventType.PLAYER_CONNECTED], Literal[EventType.PLAYER_DISCONNECTED], Literal[EventType.PLAYER_NAME_RECEIVED], Literal[EventType.PLAYER_CLI_EVENT]]" is not assignable to "tuple[EventType]" +       Tuple size mismatch; expected 1 but received 5 +     "tuple[Literal[EventType.PLAYER_UPDATED], Literal[EventType.PLAYER_CONNECTED], Literal[EventType.PLAYER_DISCONNECTED], Literal[EventType.PLAYER_NAME_RECEIVED], Literal[EventType.PLAYER_CLI_EVENT]]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/slimproto/media_player.py:128:43 - error: "player_id" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/slimproto/media_player.py:133:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/slimproto/media_player.py:135:28 - error: "connected" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/slimproto/media_player.py:138:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/slimproto/media_player.py:140:28 - error: "powered" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/slimproto/media_player.py:142:42 - error: "state" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/slimproto/media_player.py:147:47 - error: "volume_level" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/slimproto/media_player.py:148:50 - error: "muted" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/slimproto/media_player.py:149:37 - error: Cannot assign to attribute "_attr_media_position" for class "SlimProtoPlayer*" +   Type "float" is not assignable to type "int | None" +     "float" is not assignable to "int" +     "float" is not assignable to "None" (reportAttributeAccessIssue) + /homeassistant/components/slimproto/media_player.py:149:49 - error: "elapsed_seconds" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/slimproto/media_player.py:151:42 - error: "current_media" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/slimproto/media_player.py:169:27 - error: "play" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/slimproto/media_player.py:173:27 - error: "pause" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/slimproto/media_player.py:177:27 - error: "stop" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/slimproto/media_player.py:182:27 - error: "volume_set" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/slimproto/media_player.py:186:27 - error: "mute" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/slimproto/media_player.py:190:27 - error: "power" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/slimproto/media_player.py:194:27 - error: "power" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/slimproto/media_player.py:213:27 - error: "play_url" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/slimproto/media_player.py:237:17 - error: Expected mapping for dictionary unpack operator (reportGeneralTypeIssues) +/homeassistant/components/sma/sensor.py + /homeassistant/components/sma/sensor.py:897:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sma/sensor.py:907:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/sma/sensor.py:915:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/smappee/sensor.py + /homeassistant/components/smappee/sensor.py:337:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SmappeeSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smappee/sensor.py:349:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smappee/sensor.py:362:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smappee/switch.py + /homeassistant/components/smappee/switch.py:91:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smappee/switch.py:106:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smappee/switch.py:138:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/smappee/switch.py:146:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smarla/config_flow.py + /homeassistant/components/smarla/config_flow.py:37:35 - error: "serialNumber" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/smarla/entity.py + /homeassistant/components/smarla/entity.py:32:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SmarlaEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smarla/entity.py:49:30 - error: "add_listener" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/smarla/entity.py:53:30 - error: "remove_listener" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/smarla/number.py + /homeassistant/components/smarla/number.py:51:5 - error: "entity_description" overrides symbol of same name in class "SmarlaBaseEntity" +   Variable is mutable so its type is invariant +     Override type "SmarlaNumberEntityDescription" is not the same as base type "SmarlaEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smarla/number.py:51:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "SmarlaNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smarla/number.py:56:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smarla/sensor.py + /homeassistant/components/smarla/sensor.py:86:5 - error: "entity_description" overrides symbol of same name in class "SmarlaBaseEntity" +   Variable is mutable so its type is invariant +     Override type "SmarlaSensorEntityDescription" is not the same as base type "SmarlaEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smarla/sensor.py:86:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SmarlaSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smarla/sensor.py:91:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/smarla/sensor.py:99:5 - error: "entity_description" overrides symbol of same name in class "SmarlaBaseEntity" +   Variable is mutable so its type is invariant +     Override type "SmarlaSensorEntityDescription" is not the same as base type "SmarlaEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smarla/sensor.py:99:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SmarlaSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smarla/sensor.py:104:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/smarla/switch.py + /homeassistant/components/smarla/switch.py:50:5 - error: "entity_description" overrides symbol of same name in class "SmarlaBaseEntity" +   Variable is mutable so its type is invariant +     Override type "SmarlaSwitchEntityDescription" is not the same as base type "SmarlaEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smarla/switch.py:50:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "SmarlaSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smarla/switch.py:55:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smart_meter_texas/sensor.py + /homeassistant/components/smart_meter_texas/sensor.py:45:7 - error: Base classes for class "SmartMeterTexasSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smart_meter_texas/sensor.py:45:7 - error: Base classes for class "SmartMeterTexasSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smart_meter_texas/sensor.py:45:7 - error: Base classes for class "SmartMeterTexasSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smart_meter_texas/sensor.py:45:7 - error: Base classes for class "SmartMeterTexasSensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smart_meter_texas/sensor.py:45:7 - error: Base classes for class "SmartMeterTexasSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smart_meter_texas/sensor.py:45:7 - error: Base classes for class "SmartMeterTexasSensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smart_meter_texas/sensor.py:45:7 - error: Base classes for class "SmartMeterTexasSensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smart_meter_texas/sensor.py:45:7 - error: Base classes for class "SmartMeterTexasSensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smart_meter_texas/sensor.py:45:7 - error: Base classes for class "SmartMeterTexasSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smart_meter_texas/sensor.py:61:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smartthings/binary_sensor.py + /homeassistant/components/smartthings/binary_sensor.py:285:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SmartThingsBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/binary_sensor.py:285:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "SmartThingsBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/binary_sensor.py:306:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smartthings/button.py + /homeassistant/components/smartthings/button.py:70:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SmartThingsButtonDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/button.py:70:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "SmartThingsButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/smartthings/climate.py + /homeassistant/components/smartthings/climate.py:269:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:278:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:285:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:292:9 - error: "fan_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:299:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:311:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:320:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:335:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:348:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:357:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:366:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:497:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:504:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:527:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:534:9 - error: "fan_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:541:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:552:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:559:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:587:9 - error: "swing_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:597:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:678:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:678:9 - error: "supported_features" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[ClimateEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:691:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:701:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:747:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:754:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:765:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/climate.py:772:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) +/homeassistant/components/smartthings/cover.py + /homeassistant/components/smartthings/cover.py:137:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/cover.py:142:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/cover.py:147:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smartthings/event.py + /homeassistant/components/smartthings/event.py:54:9 - error: "event_types" overrides symbol of same name in class "EventEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) +/homeassistant/components/smartthings/fan.py + /homeassistant/components/smartthings/fan.py:122:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/fan.py:130:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/fan.py:142:9 - error: "preset_modes" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smartthings/light.py + /homeassistant/components/smartthings/light.py:58:7 - error: Base classes for class "SmartThingsLight" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/light.py:58:7 - error: Base classes for class "SmartThingsLight" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/light.py:58:7 - error: Base classes for class "SmartThingsLight" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/light.py:58:7 - error: Base classes for class "SmartThingsLight" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/light.py:58:7 - error: Base classes for class "SmartThingsLight" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/light.py:58:7 - error: Base classes for class "SmartThingsLight" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/light.py:99:14 - error: "_attr_supported_color_modes" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "set[ColorMode]" is not the same as base type "set[ColorMode] | set[str] | None" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/light.py:232:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smartthings/lock.py + /homeassistant/components/smartthings/lock.py:62:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/lock.py:69:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smartthings/media_player.py + /homeassistant/components/smartthings/media_player.py:237:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/media_player.py:252:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/media_player.py:267:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/media_player.py:267:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/media_player.py:300:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/media_player.py:307:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/media_player.py:312:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/media_player.py:325:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/media_player.py:339:9 - error: "shuffle" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/media_player.py:351:9 - error: "repeat" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[RepeatMode | str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smartthings/number.py + /homeassistant/components/smartthings/number.py:73:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/number.py:82:9 - error: "native_min_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/number.py:87:9 - error: "native_max_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/number.py:129:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/number.py:138:9 - error: "native_min_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/number.py:143:9 - error: "native_max_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/number.py:190:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/number.py:199:9 - error: "native_min_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/number.py:204:9 - error: "native_max_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/number.py:209:9 - error: "native_step" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smartthings/scene.py + /homeassistant/components/smartthings/scene.py:40:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smartthings/select.py + /homeassistant/components/smartthings/select.py:200:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SmartThingsSelectDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/select.py:200:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "SmartThingsSelectDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/select.py:204:9 - error: "options" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/select.py:221:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smartthings/sensor.py + /homeassistant/components/smartthings/sensor.py:1230:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SmartThingsSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/sensor.py:1230:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SmartThingsSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/sensor.py:1241:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/sensor.py:1249:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/sensor.py:1264:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/sensor.py:1273:9 - error: "options" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smartthings/switch.py + /homeassistant/components/smartthings/switch.py:267:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SmartThingsSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/switch.py:267:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "SmartThingsSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/switch.py:292:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/switch.py:305:5 - error: "entity_description" overrides symbol of same name in class "SmartThingsSwitch" +   Variable is mutable so its type is invariant +     Override type "SmartThingsCommandSwitchEntityDescription" is not the same as base type "SmartThingsSwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/smartthings/update.py + /homeassistant/components/smartthings/update.py:51:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/update.py:58:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/update.py:65:9 - error: "in_progress" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smartthings/vacuum.py + /homeassistant/components/smartthings/vacuum.py:60:9 - error: "activity" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[VacuumActivity | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smartthings/water_heater.py + /homeassistant/components/smartthings/water_heater.py:94:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/water_heater.py:122:9 - error: "operation_list" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/water_heater.py:136:9 - error: "current_operation" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/water_heater.py:147:9 - error: "current_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/water_heater.py:154:9 - error: "target_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/water_heater.py:161:9 - error: "target_temperature_low" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/water_heater.py:168:9 - error: "target_temperature_high" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smartthings/water_heater.py:175:9 - error: "is_away_mode_on" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smarttub/binary_sensor.py + /homeassistant/components/smarttub/binary_sensor.py:95:7 - error: Base classes for class "SmartTubOnline" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/binary_sensor.py:109:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/binary_sensor.py:114:7 - error: Base classes for class "SmartTubReminder" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/binary_sensor.py:140:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/binary_sensor.py:145:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/binary_sensor.py:163:7 - error: Base classes for class "SmartTubError" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/binary_sensor.py:190:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/binary_sensor.py:195:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/binary_sensor.py:210:7 - error: Base classes for class "SmartTubCoverSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/binary_sensor.py:216:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smarttub/climate.py + /homeassistant/components/smarttub/climate.py:60:7 - error: Base classes for class "SmartTubThermostat" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/climate.py:83:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/climate.py:85:49 - error: Cannot access attribute "heater" for class "SpaState" +   Attribute "heater" is unknown (reportAttributeAccessIssue) + /homeassistant/components/smarttub/climate.py:97:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/climate.py:99:45 - error: Cannot access attribute "heat_mode" for class "SpaState" +   Attribute "heat_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/smarttub/climate.py:102:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/climate.py:107:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smarttub/light.py + /homeassistant/components/smarttub/light.py:43:7 - error: Base classes for class "SmartTubLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/light.py:66:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/light.py:83:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/light.py:88:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/light.py:96:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smarttub/sensor.py + /homeassistant/components/smarttub/sensor.py:93:7 - error: Base classes for class "SmartTubBuiltinSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/sensor.py:97:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/sensor.py:127:27 - error: Cannot access attribute "status" for class "SpaPrimaryFiltrationCycle" +   Attribute "status" is unknown (reportAttributeAccessIssue) + /homeassistant/components/smarttub/sensor.py:130:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/sensor.py:133:39 - error: Cannot access attribute "duration" for class "SpaPrimaryFiltrationCycle" +   Attribute "duration" is unknown (reportAttributeAccessIssue) + /homeassistant/components/smarttub/sensor.py:134:49 - error: Cannot access attribute "last_updated" for class "SpaPrimaryFiltrationCycle" +   Attribute "last_updated" is unknown (reportAttributeAccessIssue) + /homeassistant/components/smarttub/sensor.py:135:35 - error: Cannot access attribute "mode" for class "SpaPrimaryFiltrationCycle" +   Attribute "mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/smarttub/sensor.py:136:41 - error: Cannot access attribute "start_hour" for class "SpaPrimaryFiltrationCycle" +   Attribute "start_hour" is unknown (reportAttributeAccessIssue) + /homeassistant/components/smarttub/sensor.py:167:27 - error: Cannot access attribute "status" for class "SpaSecondaryFiltrationCycle" +   Attribute "status" is unknown (reportAttributeAccessIssue) + /homeassistant/components/smarttub/sensor.py:170:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/sensor.py:173:49 - error: Cannot access attribute "last_updated" for class "SpaSecondaryFiltrationCycle" +   Attribute "last_updated" is unknown (reportAttributeAccessIssue) + /homeassistant/components/smarttub/sensor.py:174:35 - error: Cannot access attribute "mode" for class "SpaSecondaryFiltrationCycle" +   Attribute "mode" is unknown (reportAttributeAccessIssue) +/homeassistant/components/smarttub/switch.py + /homeassistant/components/smarttub/switch.py:37:7 - error: Base classes for class "SmartTubPump" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/switch.py:55:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smarttub/switch.py:65:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smarty/binary_sensor.py + /homeassistant/components/smarty/binary_sensor.py:67:7 - error: Base classes for class "SmartyBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smarty/binary_sensor.py:79:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SmartyBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smarty/binary_sensor.py:79:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "SmartyBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smarty/binary_sensor.py:85:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smarty/button.py + /homeassistant/components/smarty/button.py:52:7 - error: Base classes for class "SmartyButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smarty/button.py:64:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SmartyButtonDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smarty/button.py:64:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "SmartyButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/smarty/fan.py + /homeassistant/components/smarty/fan.py:41:7 - error: Base classes for class "SmartyFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smarty/fan.py:65:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) + /homeassistant/components/smarty/fan.py:70:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smarty/sensor.py + /homeassistant/components/smarty/sensor.py:99:7 - error: Base classes for class "SmartySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smarty/sensor.py:111:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SmartySensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smarty/sensor.py:111:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SmartySensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smarty/sensor.py:117:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/smarty/switch.py + /homeassistant/components/smarty/switch.py:56:7 - error: Base classes for class "SmartySwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smarty/switch.py:68:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SmartySwitchDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smarty/switch.py:68:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "SmartySwitchDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smarty/switch.py:74:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smhi/entity.py + /homeassistant/components/smhi/entity.py:43:7 - error: Base classes for class "SmhiWeatherEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smhi/entity.py:65:7 - error: Base classes for class "SmhiFireEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/smhi/sensor.py + /homeassistant/components/smhi/sensor.py:266:7 - error: Base classes for class "SMHIWeatherSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smhi/sensor.py:279:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SMHIWeatherEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smhi/sensor.py:279:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SMHIWeatherEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smhi/sensor.py:293:7 - error: Base classes for class "SMHIFireSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smhi/sensor.py:306:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SMHIFireEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smhi/sensor.py:306:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SMHIFireEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/smhi/weather.py + /homeassistant/components/smhi/weather.py:104:7 - error: Base classes of SmhiWeather are mutually incompatible +   Base class "SingleCoordinatorWeatherEntity[DataUpdateCoordinator[dict[str, Any]]]" derives from "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" which is incompatible with type "CoordinatorEntity[SMHIDataUpdateCoordinator]" (reportGeneralTypeIssues) + /homeassistant/components/smhi/weather.py:122:45 - error: Could not access item in TypedDict +   "temperature" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:123:35 - error: Could not access item in TypedDict +   "humidity" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:124:44 - error: Could not access item in TypedDict +   "wind_speed" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:125:39 - error: Could not access item in TypedDict +   "wind_direction" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:126:44 - error: Could not access item in TypedDict +   "visibility" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:127:42 - error: Could not access item in TypedDict +   "pressure" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:128:49 - error: Could not access item in TypedDict +   "wind_gust" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:129:41 - error: Could not access item in TypedDict +   "total_cloud" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:130:54 - error: Could not access item in TypedDict +   "symbol" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:137:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smhi/weather.py:141:48 - error: Could not access item in TypedDict +   "thunder" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:161:43 - error: Could not access item in TypedDict +   "symbol" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:163:28 - error: Could not access item in TypedDict +   "valid_time" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:169:41 - error: Could not access item in TypedDict +   "valid_time" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:170:48 - error: Could not access item in TypedDict +   "temperature_max" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:171:52 - error: Could not access item in TypedDict +   "temperature_min" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:175:24 - error: Could not access item in TypedDict +   "mean_precipitation" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:177:52 - error: Could not access item in TypedDict +   "pressure" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:178:49 - error: Could not access item in TypedDict +   "wind_direction" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:179:54 - error: Could not access item in TypedDict +   "wind_speed" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:180:45 - error: Could not access item in TypedDict +   "humidity" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:181:59 - error: Could not access item in TypedDict +   "wind_gust" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:182:51 - error: Could not access item in TypedDict +   "total_cloud" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/smhi/weather.py:187:20 - error: Could not access item in TypedDict +   "valid_time" is not a required key in "SMHIForecast", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/smlight/binary_sensor.py + /homeassistant/components/smlight/binary_sensor.py:10:27 - error: "MessageEvent" is not exported from module "pysmlight.sse" (reportPrivateImportUsage) + /homeassistant/components/smlight/binary_sensor.py:76:7 - error: Base classes for class "SmBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/binary_sensor.py:91:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SmBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/binary_sensor.py:91:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "SmBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/binary_sensor.py:95:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/binary_sensor.py:100:7 - error: Base classes for class "SmInternetSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/binary_sensor.py:132:9 - error: "should_poll" overrides symbol of same name in class "BaseCoordinatorEntity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/binary_sensor.py:132:9 - error: "should_poll" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/smlight/button.py + /homeassistant/components/smlight/button.py:105:7 - error: Base classes for class "SmButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/button.py:121:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SmButtonDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/button.py:121:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "SmButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/smlight/config_flow.py + /homeassistant/components/smlight/config_flow.py:183:38 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/smlight/sensor.py + /homeassistant/components/smlight/sensor.py:162:7 - error: Base classes for class "SmSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/sensor.py:177:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SmSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/sensor.py:177:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SmSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/sensor.py:181:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/sensor.py:186:7 - error: Base classes for class "SmInfoSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/sensor.py:202:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SmInfoEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/sensor.py:202:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SmInfoEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/sensor.py:208:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/smlight/switch.py + /homeassistant/components/smlight/switch.py:79:7 - error: Base classes for class "SmSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/switch.py:94:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SmSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/switch.py:94:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "SmSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/switch.py:129:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/smlight/update.py + /homeassistant/components/smlight/update.py:12:27 - error: "MessageEvent" is not exported from module "pysmlight.sse" (reportPrivateImportUsage) + /homeassistant/components/smlight/update.py:88:7 - error: Base classes for class "SmUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/update.py:110:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SmUpdateEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/update.py:110:14 - error: "entity_description" overrides symbol of same name in class "UpdateEntity" +   Variable is mutable so its type is invariant +     Override type "SmUpdateEntityDescription" is not the same as base type "UpdateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/update.py:134:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/update.py:141:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/smlight/update.py:187:20 - error: Type "int" is not assignable to declared type "MessageEvent" +   "int" is not assignable to "MessageEvent" (reportAssignmentType) + /homeassistant/components/smlight/update.py:188:40 - error: Cannot assign to attribute "_attr_update_percentage" for class "SmUpdateEntity*" +   Type "MessageEvent" is not assignable to type "int | float | None" +     "MessageEvent" is not assignable to "int" +     "MessageEvent" is not assignable to "float" +     "MessageEvent" is not assignable to "None" (reportAttributeAccessIssue) +/homeassistant/components/smtp/notify.py + /homeassistant/components/smtp/notify.py:68:64 - error: Argument missing for parameter "v" (reportCallIssue) + /homeassistant/components/smtp/notify.py:69:36 - error: Argument missing for parameter "v" (reportCallIssue) +/homeassistant/components/snapcast/media_player.py + /homeassistant/components/snapcast/media_player.py:171:7 - error: Base classes for class "SnapcastBaseDevice" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/snapcast/media_player.py:217:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/snapcast/media_player.py:222:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/snapcast/media_player.py:234:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/snapcast/media_player.py:244:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/snapcast/media_player.py:299:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/snapcast/media_player.py:304:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/snapcast/media_player.py:309:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/snapcast/media_player.py:317:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/snapcast/media_player.py:322:9 - error: "media_album_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/snapcast/media_player.py:330:9 - error: "media_track" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/snapcast/media_player.py:338:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/snapcast/media_player.py:346:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/snapcast/media_player.py:374:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/snapcast/media_player.py:379:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/snapcast/media_player.py:465:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/snapcast/media_player.py:470:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/snapcast/media_player.py:479:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/snapcast/media_player.py:532:9 - error: "group_members" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/snmp/sensor.py + /homeassistant/components/snmp/sensor.py:137:50 - error: Argument of type "tuple[Any | None, Any | None]" cannot be assigned to parameter "address" of type "Tuple[str, int]" in function "create" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" +   Type "Any | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/snmp/sensor.py:141:56 - error: Parameter "timeout" is already assigned (reportCallIssue) +/homeassistant/components/snmp/switch.py + /homeassistant/components/snmp/switch.py:273:27 - error: Cannot access attribute "prettyPrint" for class "int" +   Attribute "prettyPrint" is unknown (reportAttributeAccessIssue) + /homeassistant/components/snmp/switch.py:295:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/snoo/binary_sensor.py + /homeassistant/components/snoo/binary_sensor.py:34:18 - error: Argument of type "(data: SnooData) -> int" cannot be assigned to parameter "value_fn" of type "(SnooData) -> bool" in function "__init__" +   Type "(data: SnooData) -> int" is not assignable to type "(SnooData) -> bool" +     Function return type "int" is incompatible with type "bool" +       "int" is not assignable to "bool" (reportArgumentType) + /homeassistant/components/snoo/binary_sensor.py:41:18 - error: Argument of type "(data: SnooData) -> int" cannot be assigned to parameter "value_fn" of type "(SnooData) -> bool" in function "__init__" +   Type "(data: SnooData) -> int" is not assignable to type "(SnooData) -> bool" +     Function return type "int" is incompatible with type "bool" +       "int" is not assignable to "bool" (reportArgumentType) + /homeassistant/components/snoo/binary_sensor.py:62:7 - error: Base classes for class "SnooBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/snoo/binary_sensor.py:65:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "SnooBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/snoo/binary_sensor.py:68:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/snoo/button.py + /homeassistant/components/snoo/button.py:52:7 - error: Base classes for class "SnooButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/snoo/button.py:55:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "SnooButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/snoo/event.py + /homeassistant/components/snoo/event.py:42:7 - error: Base classes for class "SnooEvent" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/snoo/select.py + /homeassistant/components/snoo/select.py:34:56 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/snoo/select.py:36:21 - error: Argument of type "SnooLevels" cannot be assigned to parameter "level" of type "SnooStates" in function "set_level" +   "SnooLevels" is not assignable to "SnooStates" (reportArgumentType) + /homeassistant/components/snoo/select.py:57:7 - error: Base classes for class "SnooSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/snoo/select.py:60:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "SnooSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/snoo/select.py:63:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/snoo/sensor.py + /homeassistant/components/snoo/sensor.py:42:18 - error: Argument of type "(data: SnooData) -> (datetime | None)" cannot be assigned to parameter "value_fn" of type "(SnooData) -> StateType" in function "__init__" +   Type "(data: SnooData) -> (datetime | None)" is not assignable to type "(SnooData) -> StateType" +     Function return type "datetime | None" is incompatible with type "StateType" +       Type "datetime | None" is not assignable to type "StateType" +         Type "datetime" is not assignable to type "StateType" +           "datetime" is not assignable to "str" +           "datetime" is not assignable to "int" +           "datetime" is not assignable to "float" +           "datetime" is not assignable to "None" (reportArgumentType) + /homeassistant/components/snoo/sensor.py:63:7 - error: Base classes for class "SnooSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/snoo/sensor.py:66:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SnooSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/snoo/sensor.py:69:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/snoo/switch.py + /homeassistant/components/snoo/switch.py:45:21 - error: Argument of type "SnooLevels | None" cannot be assigned to parameter "level" of type "SnooStates" in function "set_level" +   Type "SnooLevels | None" is not assignable to type "SnooStates" +     "SnooLevels" is not assignable to "SnooStates" (reportArgumentType) + /homeassistant/components/snoo/switch.py:65:7 - error: Base classes for class "SnooSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/snoo/switch.py:68:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "SnooSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/snoo/switch.py:71:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/snooz/fan.py + /homeassistant/components/snooz/fan.py:75:7 - error: Base classes for class "SnoozFan" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/snooz/fan.py:75:7 - error: Base classes for class "SnoozFan" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/snooz/fan.py:75:7 - error: Base classes for class "SnoozFan" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/snooz/fan.py:75:7 - error: Base classes for class "SnoozFan" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/snooz/fan.py:75:7 - error: Base classes for class "SnoozFan" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/snooz/fan.py:75:7 - error: Base classes for class "SnoozFan" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/snooz/fan.py:122:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/snooz/fan.py:132:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/solaredge/coordinator.py + /homeassistant/components/solaredge/coordinator.py:468:33 - error: Could not access item in TypedDict +   "sum" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/solaredge/coordinator.py:478:25 - error: Could not access item in TypedDict +   "start" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/solaredge/coordinator.py:480:37 - error: Could not access item in TypedDict +   "sum" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/solaredge/sensor.py + /homeassistant/components/solaredge/sensor.py:289:7 - error: Base classes for class "SolarEdgeSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/solaredge/sensor.py:305:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SolarEdgeSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/solaredge/sensor.py:305:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SolarEdgeSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/solaredge/sensor.py:312:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/solaredge/sensor.py:323:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/solaredge/sensor.py:332:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/solaredge/sensor.py:337:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/solaredge/sensor.py:353:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/solaredge/sensor.py:358:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/solaredge/sensor.py:377:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/solaredge/sensor.py:382:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/solaredge/sensor.py:403:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/solaredge/sensor.py:408:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/solaredge/sensor.py:419:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/solaredge_local/sensor.py + /homeassistant/components/solaredge_local/sensor.py:12:29 - error: "SolarEdge" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/solaredge_local/sensor.py:286:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SolarEdgeLocalSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/solaredge_local/sensor.py:292:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/solarlog/sensor.py + /homeassistant/components/solarlog/sensor.py:350:7 - error: Base classes for class "SolarLogCoordinatorSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/solarlog/sensor.py:353:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SolarLogCoordinatorSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/solarlog/sensor.py:356:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/solarlog/sensor.py:362:7 - error: Base classes for class "SolarLogBatterySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/solarlog/sensor.py:365:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SolarLogBatterySensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/solarlog/sensor.py:368:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/solarlog/sensor.py:375:7 - error: Base classes for class "SolarLogInverterSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/solarlog/sensor.py:378:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SolarLogInverterSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/solarlog/sensor.py:381:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/solax/sensor.py + /homeassistant/components/solax/sensor.py:121:7 - error: Base classes for class "InverterSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/solax/sensor.py:139:26 - error: Argument of type "SolaxDataUpdateCoordinator" cannot be assigned to parameter "coordinator" of type "DataUpdateCoordinator[dict[str, Any]]" in function "__init__" +   "SolaxDataUpdateCoordinator" is not assignable to "DataUpdateCoordinator[dict[str, Any]]" +     Type parameter "_DataT@DataUpdateCoordinator" is invariant, but "InverterResponse" is not the same as "dict[str, Any]" (reportArgumentType) + /homeassistant/components/solax/sensor.py:154:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/soma/cover.py + /homeassistant/components/soma/cover.py:45:7 - error: Base classes for class "SomaTilt" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/soma/cover.py:45:7 - error: Base classes for class "SomaTilt" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/soma/cover.py:45:7 - error: Base classes for class "SomaTilt" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/soma/cover.py:60:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/soma/cover.py:62:16 - error: Type "float" is not assignable to return type "int" +   "float" is not assignable to "int" (reportReturnType) + /homeassistant/components/soma/cover.py:65:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/soma/cover.py:128:7 - error: Base classes for class "SomaShade" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/soma/cover.py:128:7 - error: Base classes for class "SomaShade" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/soma/cover.py:128:7 - error: Base classes for class "SomaShade" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/soma/cover.py:141:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/soma/cover.py:146:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/soma/entity.py + /homeassistant/components/soma/entity.py:74:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/soma/entity.py:79:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/soma/entity.py:84:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/soma/sensor.py + /homeassistant/components/soma/sensor.py:32:7 - error: Base classes for class "SomaSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/soma/sensor.py:32:7 - error: Base classes for class "SomaSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/soma/sensor.py:32:7 - error: Base classes for class "SomaSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/soma/sensor.py:39:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/sonarr/sensor.py + /homeassistant/components/sonarr/sensor.py:159:7 - error: Base classes for class "SonarrSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sonarr/sensor.py:163:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SonarrSensorEntityDescription[SonarrDataT@SonarrSensor]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sonarr/sensor.py:166:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonarr/sensor.py:171:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/songpal/media_player.py + /homeassistant/components/songpal/media_player.py:251:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/songpal/media_player.py:256:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/songpal/media_player.py:259:26 - error: "macAddr" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/songpal/media_player.py:260:71 - error: "macAddr" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/songpal/media_player.py:261:26 - error: "wirelessMacAddr" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/songpal/media_player.py:262:71 - error: "wirelessMacAddr" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/songpal/media_player.py:269:38 - error: "version" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/songpal/media_player.py:341:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/songpal/media_player.py:355:9 - error: "sound_mode_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/songpal/media_player.py:367:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/songpal/media_player.py:374:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/songpal/media_player.py:380:9 - error: "sound_mode" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/songpal/media_player.py:386:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/songpal/media_player.py:394:43 - error: "set_volume" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/songpal/media_player.py:398:43 - error: "set_volume" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/songpal/media_player.py:402:43 - error: "set_volume" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/songpal/media_player.py:431:43 - error: "set_mute" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/sonos/__init__.py + /homeassistant/components/sonos/__init__.py:118:20 - error: "EVENT_CACHE_TIMEOUT" is not a known attribute of module "soco.zonegroupstate" (reportAttributeAccessIssue) +/homeassistant/components/sonos/binary_sensor.py + /homeassistant/components/sonos/binary_sensor.py:58:7 - error: Base classes for class "SonosPowerEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/binary_sensor.py:74:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/binary_sensor.py:79:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/binary_sensor.py:86:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/binary_sensor.py:91:7 - error: Base classes for class "SonosMicrophoneSensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/binary_sensor.py:91:7 - error: Base classes for class "SonosMicrophoneSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/binary_sensor.py:112:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sonos/entity.py + /homeassistant/components/sonos/entity.py:84:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/entity.py:106:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/sonos/media_browser.py + /homeassistant/components/sonos/media_browser.py:259:21 - error: Object of type "None" cannot be called (reportOptionalCall) + /homeassistant/components/sonos/media_browser.py:285:31 - error: Argument of type "str" cannot be assigned to parameter "item" of type "DidlObject" in function "can_expand" +   "str" is not assignable to "DidlObject" (reportArgumentType) + /homeassistant/components/sonos/media_browser.py:304:21 - error: Object of type "None" cannot be called (reportOptionalCall) + /homeassistant/components/sonos/media_browser.py:497:26 - error: Argument of type "DidlFavorite" cannot be assigned to parameter "item" of type "MusicServiceItem | None" in function "get_thumbnail_url_full" +   Type "DidlFavorite" is not assignable to type "MusicServiceItem | None" +     "DidlFavorite" is not assignable to "MusicServiceItem" +     "DidlFavorite" is not assignable to "None" (reportArgumentType) +/homeassistant/components/sonos/media_player.py + /homeassistant/components/sonos/media_player.py:112:7 - error: Base classes for class "SonosMediaPlayerEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:161:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:175:9 - error: "group_members" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:184:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:184:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:218:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:223:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:228:9 - error: "shuffle" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:230:16 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/sonos/media_player.py:233:9 - error: "repeat" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[RepeatMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:235:24 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/sonos/media_player.py:244:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:249:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:254:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:259:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:264:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:269:9 - error: "media_channel" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:274:9 - error: "media_playlist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:279:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:284:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:289:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:294:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:317:24 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/sonos/media_player.py:325:25 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/sonos/media_player.py:381:31 - error: Cannot access attribute "resource_meta_data" for class "DidlFavorite" +   Attribute "resource_meta_data" is unknown (reportAttributeAccessIssue) + /homeassistant/components/sonos/media_player.py:390:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/media_player.py:487:46 - error: Argument of type "dict[str, str | dict[str, Any]]" cannot be assigned to parameter "translation_placeholders" of type "dict[str, str] | None" in function "__init__" +   Type "dict[str, str | dict[str, Any]]" is not assignable to type "dict[str, str] | None" +     "dict[str, str | dict[str, Any]]" is not assignable to "dict[str, str]" +       Type parameter "_VT@dict" is invariant, but "str | dict[str, Any]" is not the same as "str" +       Consider switching from "dict" to "Mapping" which is covariant in the value type +     "dict[str, str | dict[str, Any]]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/sonos/media_player.py:758:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sonos/number.py + /homeassistant/components/sonos/number.py:105:7 - error: Base classes for class "SonosLevelEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/number.py:105:7 - error: Base classes for class "SonosLevelEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/number.py:141:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sonos/select.py + /homeassistant/components/sonos/select.py:84:7 - error: Base classes for class "SonosSelectEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/select.py:84:7 - error: Base classes for class "SonosSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/select.py:115:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sonos/sensor.py + /homeassistant/components/sonos/sensor.py:97:7 - error: Base classes for class "SonosBatteryEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/sensor.py:114:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/sensor.py:119:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/sensor.py:124:7 - error: Base classes for class "SonosPowerSourceEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/sensor.py:147:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/sensor.py:161:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/sensor.py:166:7 - error: Base classes for class "SonosAudioInputFormatSensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/sensor.py:166:7 - error: Base classes for class "SonosAudioInputFormatSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/sonos/speaker.py + /homeassistant/components/sonos/speaker.py:131:34 - error: Cannot assign to attribute "callback" for class "SubscriptionBase" +   Attribute "callback" is unknown (reportAttributeAccessIssue) + /homeassistant/components/sonos/speaker.py:337:45 - error: Cannot access attribute "event_listener" for class "SubscriptionBase" +   Attribute "event_listener" is unknown (reportAttributeAccessIssue) + /homeassistant/components/sonos/speaker.py:1005:34 - error: Argument of type "SonosSpeaker" cannot be assigned to parameter "object" of type "Self@SonosSpeaker" in function "append" +   Type "SonosSpeaker" is not assignable to type "Self@SonosSpeaker" (reportArgumentType) + /homeassistant/components/sonos/speaker.py:1007:16 - error: Type "list[Self@SonosSpeaker] | list[SonosSpeaker]" is not assignable to return type "list[SonosSpeaker]" +   Type "list[Self@SonosSpeaker] | list[SonosSpeaker]" is not assignable to type "list[SonosSpeaker]" +     "list[Self@SonosSpeaker]" is not assignable to "list[SonosSpeaker]" +       Type parameter "_T@list" is invariant, but "Self@SonosSpeaker" is not the same as "SonosSpeaker" +       Consider switching from "list" to "Sequence" which is covariant (reportReturnType) +/homeassistant/components/sonos/statistics.py + /homeassistant/components/sonos/statistics.py:75:9 - error: Argument of type "_CacheInfo" cannot be assigned to parameter "value" of type "dict[str, int | float]" in function "__setitem__" +   "_CacheInfo" is not assignable to "dict[str, int | float]" (reportArgumentType) + /homeassistant/components/sonos/statistics.py:76:9 - error: Argument of type "_CacheInfo" cannot be assigned to parameter "value" of type "dict[str, int | float]" in function "__setitem__" +   "_CacheInfo" is not assignable to "dict[str, int | float]" (reportArgumentType) +/homeassistant/components/sonos/switch.py + /homeassistant/components/sonos/switch.py:155:7 - error: Base classes for class "SonosSwitchEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/switch.py:155:7 - error: Base classes for class "SonosSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/switch.py:189:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/switch.py:216:7 - error: Base classes for class "SonosAlarmEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/switch.py:257:16 - error: Type "Alarm | None" is not assignable to return type "Alarm" +   Type "Alarm | None" is not assignable to type "Alarm" +     "None" is not assignable to "Alarm" (reportReturnType) + /homeassistant/components/sonos/switch.py:262:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/switch.py:341:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/switch.py:346:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sonos/switch.py:351:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sony_projector/switch.py + /homeassistant/components/sony_projector/switch.py:8:8 - error: Import "pysdcp" could not be resolved (reportMissingImports) + /homeassistant/components/sony_projector/switch.py:67:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/sony_projector/switch.py:72:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sony_projector/switch.py:77:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/sony_projector/switch.py:82:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/soundtouch/media_player.py + /homeassistant/components/soundtouch/media_player.py:118:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/soundtouch/media_player.py:123:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/soundtouch/media_player.py:134:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/soundtouch/media_player.py:139:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/soundtouch/media_player.py:188:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/soundtouch/media_player.py:193:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/soundtouch/media_player.py:203:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/soundtouch/media_player.py:208:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/soundtouch/media_player.py:213:9 - error: "media_track" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/soundtouch/media_player.py:218:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/soundtouch/media_player.py:336:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/spc/alarm_control_panel.py + /homeassistant/components/spc/alarm_control_panel.py:83:9 - error: "changed_by" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spc/alarm_control_panel.py:88:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/spc/binary_sensor.py + /homeassistant/components/spc/binary_sensor.py:77:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/speedtestdotnet/sensor.py + /homeassistant/components/speedtestdotnet/sensor.py:82:7 - error: Base classes for class "SpeedtestSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/speedtestdotnet/sensor.py:96:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SpeedtestSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/speedtestdotnet/sensor.py:96:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SpeedtestSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/speedtestdotnet/sensor.py:108:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/speedtestdotnet/sensor.py:116:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/splunk/__init__.py + /homeassistant/components/splunk/__init__.py:9:6 - error: Import "hass_splunk" could not be resolved (reportMissingImports) +/homeassistant/components/spotify/media_player.py + /homeassistant/components/spotify/media_player.py:111:7 - error: Base classes for class "SpotifyMediaPlayer" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:134:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:134:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:143:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:143:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:152:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:160:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:166:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:172:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:177:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:184:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:192:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:210:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:216:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:229:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:242:9 - error: "media_track" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:251:9 - error: "media_playlist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:260:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:267:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:272:9 - error: "shuffle" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:279:9 - error: "repeat" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[RepeatMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/spotify/media_player.py:286:15 - error: Method "async_set_volume_level" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/spotify/media_player.py:291:15 - error: Method "async_media_play" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/spotify/media_player.py:296:15 - error: Method "async_media_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/spotify/media_player.py:301:15 - error: Method "async_media_previous_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/spotify/media_player.py:306:15 - error: Method "async_media_next_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/spotify/media_player.py:311:15 - error: Method "async_media_seek" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/spotify/media_player.py:316:15 - error: Method "async_play_media" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/spotify/media_player.py:360:15 - error: Method "async_select_source" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/spotify/media_player.py:370:15 - error: Method "async_set_shuffle" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/spotify/media_player.py:375:15 - error: Method "async_set_repeat" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/sql/config_flow.py + /homeassistant/components/sql/config_flow.py:198:31 - error: "db_url_for_validation" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/sql/sensor.py + /homeassistant/components/sql/sensor.py:284:17 - error: "rendered_query" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/sql/util.py + /homeassistant/components/sql/util.py:92:29 - error: "instance" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/sql/util.py:94:16 - error: "instance" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/sql/util.py:95:54 - error: "instance" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/squeezebox/__init__.py + /homeassistant/components/squeezebox/__init__.py:161:9 - error: Cannot assign to attribute "name" for class "Server" +   Expression of type "QueryResult | Any | int | str | list[QueryResult]" cannot be assigned to attribute "name" of class "Server" +     Type "QueryResult | Any | int | str | list[QueryResult]" is not assignable to type "str | None" +       Type "int" is not assignable to type "str | None" +         "int" is not assignable to "str" +         "int" is not assignable to "None" (reportAttributeAccessIssue) + /homeassistant/components/squeezebox/__init__.py:168:46 - error: Argument of type "int | str | QueryResult | list[QueryResult]" cannot be assigned to parameter "args" of type "Hashable" in function "__call__" +   Type "int | str | QueryResult | list[QueryResult]" is not assignable to type "Hashable" +     "dict[str, int | str | QueryResult | list[QueryResult]]" is incompatible with protocol "Hashable" +       "__hash__" is an incompatible type +       "__hash__" is not defined as a ClassVar in protocol +         Type "None" is not assignable to type "() -> int" (reportArgumentType) + /homeassistant/components/squeezebox/__init__.py:176:31 - error: Argument of type "set[tuple[Literal['squeezebox'], int | str | QueryResult | list[QueryResult]]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]] | UndefinedType | None" in function "async_get_or_create" +   Type "int | str | QueryResult | list[QueryResult]" is not assignable to type "str" +     "int" is not assignable to "str" (reportArgumentType) + /homeassistant/components/squeezebox/__init__.py:181:20 - error: Argument of type "int | str | QueryResult | list[QueryResult] | None" cannot be assigned to parameter "sw_version" of type "str | UndefinedType | None" in function "async_get_or_create" +   Type "int | str | QueryResult | list[QueryResult] | None" is not assignable to type "str | UndefinedType | None" +     Type "int" is not assignable to type "str | UndefinedType | None" +       "int" is not assignable to "str" +       "int" is not assignable to "None" +       "int" is not assignable to "UndefinedType" (reportArgumentType) + /homeassistant/components/squeezebox/__init__.py:207:42 - error: Argument of type "str | Any | None" cannot be assigned to parameter "server_uuid" of type "str" in function "__init__" +   Type "str | Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/squeezebox/binary_sensor.py + /homeassistant/components/squeezebox/binary_sensor.py:51:7 - error: Base classes for class "ServerStatusBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/binary_sensor.py:55:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/squeezebox/browse_media.py + /homeassistant/components/squeezebox/browse_media.py:164:24 - error: "int" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /homeassistant/components/squeezebox/browse_media.py:176:24 - error: "int" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /homeassistant/components/squeezebox/browse_media.py:322:21 - error: "int" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /homeassistant/components/squeezebox/browse_media.py:363:20 - error: "child_media" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/squeezebox/browse_media.py:365:13 - error: "child_media" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/squeezebox/browse_media.py:375:29 - error: "child_media" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/squeezebox/browse_media.py:392:15 - error: Argument of type "int | str | QueryResult | list[QueryResult] | None" cannot be assigned to parameter "title" of type "str" in function "__init__" +   Type "int | str | QueryResult | list[QueryResult] | None" is not assignable to type "str" +     "int" is not assignable to "str" (reportArgumentType) + /homeassistant/components/squeezebox/browse_media.py:392:22 - error: "get" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/squeezebox/browse_media.py:486:23 - error: Type "int | str | QueryResult | list[QueryResult]" is not assignable to declared type "list[Unknown]" +   Type "int | str | QueryResult | list[QueryResult]" is not assignable to type "list[Unknown]" +     "int" is not assignable to "list[Unknown]" (reportAssignmentType) +/homeassistant/components/squeezebox/button.py + /homeassistant/components/squeezebox/button.py:142:7 - error: Base classes for class "SqueezeboxButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/button.py:154:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SqueezeboxButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/button.py:154:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "SqueezeboxButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/squeezebox/config_flow.py + /homeassistant/components/squeezebox/config_flow.py:159:44 - error: Argument of type "int | str | QueryResult | list[QueryResult]" cannot be assigned to parameter "unique_id" of type "str | None" in function "async_set_unique_id" +   Type "int | str | QueryResult | list[QueryResult]" is not assignable to type "str | None" +     Type "int" is not assignable to type "str | None" +       "int" is not assignable to "str" +       "int" is not assignable to "None" (reportArgumentType) +/homeassistant/components/squeezebox/coordinator.py + /homeassistant/components/squeezebox/coordinator.py:46:18 - error: Argument of type "str | None" cannot be assigned to parameter "name" of type "str" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/squeezebox/coordinator.py:126:14 - error: Could not access item in TypedDict +   "id" is not a required key in "Alarm", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/squeezebox/media_player.py + /homeassistant/components/squeezebox/media_player.py:231:7 - error: Base classes for class "SqueezeBoxMediaPlayerEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:279:9 - error: "volume_step" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:298:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:307:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:307:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:330:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:338:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:343:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:348:29 - error: Could not access item in TypedDict +   "url" is not a required key in "Track", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/squeezebox/media_player.py:353:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:362:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:367:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:372:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:377:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:382:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:387:9 - error: "media_channel" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:392:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:397:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:402:9 - error: "repeat" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[RepeatMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:411:9 - error: "shuffle" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:417:9 - error: "group_members" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/media_player.py:422:27 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) + /homeassistant/components/squeezebox/media_player.py:581:50 - error: Argument of type "float | None" cannot be assigned to parameter "volume" of type "int | None" in function "set_announce_volume" +   Type "float | None" is not assignable to type "int | None" +     Type "float" is not assignable to type "int | None" +       "float" is not assignable to "int" +       "float" is not assignable to "None" (reportArgumentType) + /homeassistant/components/squeezebox/media_player.py:889:17 - error: Argument of type "(track_id: int) -> str" cannot be assigned to parameter "method" of type "(...) -> Awaitable[Any]" in function "safe_library_call" +   Type "(track_id: int) -> str" is not assignable to type "(...) -> Awaitable[Any]" +     Function return type "str" is incompatible with type "Awaitable[Any]" +       "str" is incompatible with protocol "Awaitable[Any]" +         "__await__" is not present (reportArgumentType) +/homeassistant/components/squeezebox/sensor.py + /homeassistant/components/squeezebox/sensor.py:90:7 - error: Base classes for class "ServerStatusSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/sensor.py:94:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/squeezebox/switch.py + /homeassistant/components/squeezebox/switch.py:113:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/switch.py:138:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/switch.py:143:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/switch.py:148:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/switch.py:150:27 - error: Could not access item in TypedDict +   "enabled" is not a required key in "Alarm", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/squeezebox/switch.py:163:7 - error: Base classes for class "SqueezeBoxAlarmsEnabledEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/switch.py:172:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/switch.py:177:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/squeezebox/update.py + /homeassistant/components/squeezebox/update.py:63:7 - error: Base classes for class "ServerStatusUpdate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/update.py:67:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/update.py:75:5 - error: "title" overrides symbol of same name in class "UpdateEntity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "cached_property" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/update.py:78:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/update.py:83:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/update.py:88:9 - error: "release_summary" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/update.py:100:19 - error: Type "Literal[True]" is not assignable to declared type "cached_property" +   "Literal[True]" is not assignable to "cached_property[bool]" (reportAssignmentType) + /homeassistant/components/squeezebox/update.py:101:5 - error: "title" overrides symbol of same name in class "UpdateEntity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "cached_property" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/update.py:102:25 - error: Type "Literal['Current']" is not assignable to declared type "cached_property" +   "Literal['Current']" is not assignable to "cached_property[str | None]" (reportAssignmentType) + /homeassistant/components/squeezebox/update.py:107:9 - error: "supported_features" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[UpdateEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/update.py:116:9 - error: "release_summary" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/update.py:127:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/squeezebox/update.py:136:9 - error: "in_progress" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/srp_energy/sensor.py + /homeassistant/components/srp_energy/sensor.py:33:7 - error: Base classes for class "SrpEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/srp_energy/sensor.py:61:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/ssdp/__init__.py + /homeassistant/components/ssdp/__init__.py:227:1 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) +/homeassistant/components/ssdp/server.py + /homeassistant/components/ssdp/server.py:86:5 - error: "EMBEDDED_DEVICES" overrides symbol of same name in class "UpnpServerDevice" +   Variable is mutable so its type is invariant +     Override type "list[type[UpnpServerDevice]]" is not the same as base type "Sequence[type[UpnpServerDevice]]" (reportIncompatibleVariableOverride) + /homeassistant/components/ssdp/server.py:87:5 - error: "SERVICES" overrides symbol of same name in class "UpnpServerDevice" +   Variable is mutable so its type is invariant +     Override type "list[type[UpnpServerService]]" is not the same as base type "Sequence[type[UpnpServerService]]" (reportIncompatibleVariableOverride) +/homeassistant/components/ssdp/websocket_api.py + /homeassistant/components/ssdp/websocket_api.py:69:78 - error: Argument of type "HassJob[(info: SsdpServiceInfo, change: SsdpChange), None]" cannot be assigned to parameter "callback" of type "SsdpHassJobCallback" in function "async_register_callback" +   "HassJob[(info: SsdpServiceInfo, change: SsdpChange), None]" is not assignable to "HassJob[(SsdpServiceInfo, SsdpChange), Coroutine[Any, Any, None] | None]" +     Type parameter "_R_co@HassJob" is invariant, but "None" is not the same as "Coroutine[Any, Any, None] | None" (reportArgumentType) +/homeassistant/components/starline/binary_sensor.py + /homeassistant/components/starline/binary_sensor.py:89:7 - error: Base classes for class "StarlineSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/starline/binary_sensor.py:103:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/starline/button.py + /homeassistant/components/starline/button.py:64:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/starline/button.py:67:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/starline/config_flow.py + /homeassistant/components/starline/config_flow.py:194:36 - error: Argument of type "tuple[str | None, str | None]" cannot be assigned to parameter "args" of type "_Ts@async_add_executor_job" in function "async_add_executor_job" +   Type "*tuple[str | None, str | None]" is not assignable to type "*tuple[str, str]" +     "*tuple[str | None, str | None]" is not assignable to "*tuple[str, str]" +       Tuple entry 1 is incorrect type +         Type "str | None" is not assignable to type "str" +           "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/starline/config_flow.py:197:37 - error: Argument of type "tuple[str | None, str | None, str]" cannot be assigned to parameter "args" of type "_Ts@async_add_executor_job" in function "async_add_executor_job" +   Type "*tuple[str | None, str | None, str]" is not assignable to type "*tuple[str, str, str]" +     "*tuple[str | None, str | None, str]" is not assignable to "*tuple[str, str, str]" +       Tuple entry 1 is incorrect type +         Type "str | None" is not assignable to type "str" +           "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/starline/config_flow.py:210:33 - error: Argument of type "tuple[str, str | None, str | None, str | None, str | None, str | None]" cannot be assigned to parameter "args" of type "_Ts@async_add_executor_job" in function "async_add_executor_job" +   Type "*tuple[str, str | None, str | None, str | None, str | None, str | None]" is not assignable to type "*tuple[str, str, str, str, str, str]" +     "*tuple[str, str | None, str | None, str | None, str | None, str | None]" is not assignable to "*tuple[str, str, str, str, str, str]" +       Tuple entry 2 is incorrect type +         Type "str | None" is not assignable to type "str" +           "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/starline/config_flow.py:246:19 - error: Argument of type "tuple[Unknown | None]" cannot be assigned to parameter "args" of type "_Ts@async_add_executor_job" in function "async_add_executor_job" +   Type "*tuple[Unknown | None]" is not assignable to type "*tuple[str]" +     "*tuple[Unknown | None]" is not assignable to "*tuple[str]" +       Tuple entry 1 is incorrect type +         Type "Unknown | None" is not assignable to type "str" +           "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/starline/device_tracker.py + /homeassistant/components/starline/device_tracker.py:30:7 - error: Base classes for class "StarlineDeviceTracker" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/starline/device_tracker.py:30:7 - error: Base classes for class "StarlineDeviceTracker" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/starline/device_tracker.py:30:7 - error: Base classes for class "StarlineDeviceTracker" define variable "_attr_device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/starline/device_tracker.py:30:7 - error: Base classes for class "StarlineDeviceTracker" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/starline/device_tracker.py:30:7 - error: Base classes for class "StarlineDeviceTracker" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/starline/device_tracker.py:30:7 - error: Base classes for class "StarlineDeviceTracker" define variable "force_update" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/starline/device_tracker.py:40:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/starline/device_tracker.py:45:9 - error: "battery_level" overrides symbol of same name in class "BaseTrackerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/starline/device_tracker.py:50:9 - error: "location_accuracy" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/starline/device_tracker.py:55:9 - error: "latitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/starline/device_tracker.py:60:9 - error: "longitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/starline/entity.py + /homeassistant/components/starline/entity.py:27:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/starline/lock.py + /homeassistant/components/starline/lock.py:43:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/starline/lock.py:48:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/starline/lock.py:69:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/starline/sensor.py + /homeassistant/components/starline/sensor.py:107:7 - error: Base classes for class "StarlineSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/starline/sensor.py:121:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/starline/sensor.py:133:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/starline/sensor.py:156:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/starline/sensor.py:169:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/starline/switch.py + /homeassistant/components/starline/switch.py:69:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/starline/switch.py:74:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/starline/switch.py:82:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/starlingbank/sensor.py + /homeassistant/components/starlingbank/sensor.py:9:26 - error: "StarlingAccount" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/starlingbank/sensor.py:93:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/starlingbank/sensor.py:99:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/starlingbank/sensor.py:104:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/starlink/binary_sensor.py + /homeassistant/components/starlink/binary_sensor.py:40:7 - error: Base classes for class "StarlinkBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/starlink/binary_sensor.py:43:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "StarlinkBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/starlink/binary_sensor.py:46:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/starlink/button.py + /homeassistant/components/starlink/button.py:40:7 - error: Base classes for class "StarlinkButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/starlink/button.py:43:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "StarlinkButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/starlink/device_tracker.py + /homeassistant/components/starlink/device_tracker.py:45:21 - error: Argument of type "(data: StarlinkData) -> (float | None)" cannot be assigned to parameter "latitude_fn" of type "(StarlinkData) -> float" in function "__init__" +   Type "(data: StarlinkData) -> (float | None)" is not assignable to type "(StarlinkData) -> float" +     Function return type "float | None" is incompatible with type "float" +       Type "float | None" is not assignable to type "float" +         "None" is not assignable to "float" (reportArgumentType) + /homeassistant/components/starlink/device_tracker.py:46:22 - error: Argument of type "(data: StarlinkData) -> (float | None)" cannot be assigned to parameter "longitude_fn" of type "(StarlinkData) -> float" in function "__init__" +   Type "(data: StarlinkData) -> (float | None)" is not assignable to type "(StarlinkData) -> float" +     Function return type "float | None" is incompatible with type "float" +       Type "float | None" is not assignable to type "float" +         "None" is not assignable to "float" (reportArgumentType) + /homeassistant/components/starlink/device_tracker.py:47:21 - error: Argument of type "(data: StarlinkData) -> (float | None)" cannot be assigned to parameter "altitude_fn" of type "(StarlinkData) -> float" in function "__init__" +   Type "(data: StarlinkData) -> (float | None)" is not assignable to type "(StarlinkData) -> float" +     Function return type "float | None" is incompatible with type "float" +       Type "float | None" is not assignable to type "float" +         "None" is not assignable to "float" (reportArgumentType) + /homeassistant/components/starlink/device_tracker.py:52:7 - error: Base classes for class "StarlinkDeviceTrackerEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/starlink/device_tracker.py:55:5 - error: "entity_description" overrides symbol of same name in class "TrackerEntity" +   Variable is mutable so its type is invariant +     Override type "StarlinkDeviceTrackerEntityDescription" is not the same as base type "TrackerEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/starlink/device_tracker.py:58:9 - error: "latitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/starlink/device_tracker.py:63:9 - error: "longitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/starlink/device_tracker.py:68:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/starlink/entity.py + /homeassistant/components/starlink/entity.py:13:7 - error: Base classes for class "StarlinkEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/starlink/sensor.py + /homeassistant/components/starlink/sensor.py:56:7 - error: Base classes for class "StarlinkSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/starlink/sensor.py:59:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "StarlinkSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/starlink/sensor.py:62:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/starlink/sensor.py:67:7 - error: Base classes for class "StarlinkAccumulationSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/starlink/sensor.py:67:7 - error: Base classes for class "StarlinkAccumulationSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/starlink/sensor.py:73:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/starlink/sensor.py:91:18 - error: "_attr_native_value" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "int | float" is not the same as base type "StateType | date | datetime | Decimal" (reportIncompatibleVariableOverride) +/homeassistant/components/starlink/switch.py + /homeassistant/components/starlink/switch.py:42:7 - error: Base classes for class "StarlinkSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/starlink/switch.py:45:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "StarlinkSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/starlink/switch.py:48:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/starlink/time.py + /homeassistant/components/starlink/time.py:43:5 - error: "entity_description" overrides symbol of same name in class "TimeEntity" +   Variable is mutable so its type is invariant +     Override type "StarlinkTimeEntityDescription" is not the same as base type "TimeEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/starlink/time.py:46:9 - error: "native_value" overrides symbol of same name in class "TimeEntity" +   "property" is not assignable to "cached_property[time | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/starlink/time.py:53:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/statistics/sensor.py + /homeassistant/components/statistics/sensor.py:674:14 - error: "_attr_name" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/steam_online/config_flow.py + /homeassistant/components/steam_online/config_flow.py:30:11 - error: "api" is not a known attribute of module "steam" (reportAttributeAccessIssue) + /homeassistant/components/steam_online/config_flow.py:31:23 - error: "api" is not a known attribute of module "steam" (reportAttributeAccessIssue) + /homeassistant/components/steam_online/config_flow.py:61:27 - error: "api" is not a known attribute of module "steam" (reportAttributeAccessIssue) + /homeassistant/components/steam_online/config_flow.py:61:48 - error: "api" is not a known attribute of module "steam" (reportAttributeAccessIssue) + /homeassistant/components/steam_online/config_flow.py:76:27 - error: "name" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/steam_online/config_flow.py:78:72 - error: "name" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/steam_online/config_flow.py:159:22 - error: "api" is not a known attribute of module "steam" (reportAttributeAccessIssue) + /homeassistant/components/steam_online/config_flow.py:176:27 - error: "api" is not a known attribute of module "steam" (reportAttributeAccessIssue) + /homeassistant/components/steam_online/config_flow.py:182:22 - error: "api" is not a known attribute of module "steam" (reportAttributeAccessIssue) +/homeassistant/components/steam_online/coordinator.py + /homeassistant/components/steam_online/coordinator.py:38:44 - error: Cannot assign to attribute "player_interface" for class "SteamDataUpdateCoordinator*" +   "None" is not assignable to "_interface_method" (reportAttributeAccessIssue) + /homeassistant/components/steam_online/coordinator.py:39:42 - error: Cannot assign to attribute "user_interface" for class "SteamDataUpdateCoordinator*" +   "None" is not assignable to "_interface_method" (reportAttributeAccessIssue) + /homeassistant/components/steam_online/coordinator.py:40:15 - error: "api" is not a known attribute of module "steam" (reportAttributeAccessIssue) + /homeassistant/components/steam_online/coordinator.py:47:41 - error: "api" is not a known attribute of module "steam" (reportAttributeAccessIssue) + /homeassistant/components/steam_online/coordinator.py:48:43 - error: "api" is not a known attribute of module "steam" (reportAttributeAccessIssue) + /homeassistant/components/steam_online/coordinator.py:51:45 - error: Cannot access attribute "GetOwnedGames" for class "_interface_method" +   Attribute "GetOwnedGames" is unknown (reportAttributeAccessIssue) + /homeassistant/components/steam_online/coordinator.py:57:40 - error: Cannot access attribute "GetPlayerSummaries" for class "_interface_method" +   Attribute "GetPlayerSummaries" is unknown (reportAttributeAccessIssue) + /homeassistant/components/steam_online/coordinator.py:64:42 - error: Cannot access attribute "GetSteamLevel" for class "_interface_method" +   Attribute "GetSteamLevel" is unknown (reportAttributeAccessIssue) + /homeassistant/components/steam_online/coordinator.py:73:23 - error: "api" is not a known attribute of module "steam" (reportAttributeAccessIssue) + /homeassistant/components/steam_online/coordinator.py:73:44 - error: "api" is not a known attribute of module "steam" (reportAttributeAccessIssue) +/homeassistant/components/steam_online/sensor.py + /homeassistant/components/steam_online/sensor.py:41:7 - error: Base classes for class "SteamSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/steam_online/sensor.py:55:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/steam_online/sensor.py:63:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/steamist/config_flow.py + /homeassistant/components/steamist/config_flow.py:96:9 - error: Method "is_matching" overrides class "ConfigFlow" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "ConfigFlow", override parameter is type "SteamistConfigFlow" +     "ConfigFlow" is not assignable to "SteamistConfigFlow" (reportIncompatibleMethodOverride) +/homeassistant/components/steamist/entity.py + /homeassistant/components/steamist/entity.py:17:7 - error: Base classes for class "SteamistEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/steamist/sensor.py + /homeassistant/components/steamist/sensor.py:75:7 - error: Base classes for class "SteamistSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/steamist/sensor.py:78:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SteamistSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/steamist/sensor.py:94:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/steamist/switch.py + /homeassistant/components/steamist/switch.py:34:7 - error: Base classes for class "SteamistSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/steamist/switch.py:38:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/stiebel_eltron/__init__.py + /homeassistant/components/stiebel_eltron/__init__.py:84:45 - error: Could not access item in TypedDict +   "reason" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/stiebel_eltron/__init__.py:89:61 - error: Could not access item in TypedDict +   "reason" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/stiebel_eltron/climate.py + /homeassistant/components/stiebel_eltron/climate.py:107:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/stiebel_eltron/climate.py:112:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/stiebel_eltron/climate.py:119:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/stiebel_eltron/climate.py:124:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/stiebel_eltron/climate.py:129:9 - error: "target_temperature_step" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/stiebel_eltron/climate.py:134:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/stiebel_eltron/climate.py:139:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/stiebel_eltron/climate.py:144:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/stiebel_eltron/climate.py:149:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/stiebel_eltron/climate.py:154:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/stiebel_eltron/climate.py:159:9 - error: "preset_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/stiebel_eltron/climate.py:169:36 - error: Argument of type "str | None" cannot be assigned to parameter "mode" of type "str" in function "set_operation" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/stiebel_eltron/climate.py:182:36 - error: Argument of type "str | None" cannot be assigned to parameter "mode" of type "str" in function "set_operation" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/stookwijzer/sensor.py + /homeassistant/components/stookwijzer/sensor.py:70:7 - error: Base classes for class "StookwijzerSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/stookwijzer/sensor.py:84:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "StookwijzerSensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/stookwijzer/sensor.py:84:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "StookwijzerSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/stookwijzer/sensor.py:94:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/stream/__init__.py + /homeassistant/components/stream/__init__.py:240:8 - error: "logging" is not exported from module "av" (reportPrivateImportUsage) + /homeassistant/components/stream/__init__.py:240:29 - error: "logging" is not exported from module "av" (reportPrivateImportUsage) + /homeassistant/components/stream/__init__.py:240:63 - error: "logging" is not exported from module "av" (reportPrivateImportUsage) + /homeassistant/components/stream/__init__.py:571:57 - error: Cannot access attribute "video_path" for class "StreamOutput" +   Attribute "video_path" is unknown (reportAttributeAccessIssue) + /homeassistant/components/stream/__init__.py:576:18 - error: Cannot assign to attribute "video_path" for class "StreamOutput" +   Attribute "video_path" is unknown (reportAttributeAccessIssue) + /homeassistant/components/stream/__init__.py:585:51 - error: Cannot access attribute "target_duration" for class "StreamOutput" +   Attribute "target_duration" is unknown (reportAttributeAccessIssue) + /homeassistant/components/stream/__init__.py:588:22 - error: Cannot access attribute "prepend" for class "StreamOutput" +   Attribute "prepend" is unknown (reportAttributeAccessIssue) + /homeassistant/components/stream/__init__.py:590:24 - error: Cannot access attribute "async_record" for class "StreamOutput" +   Attribute "async_record" is unknown (reportAttributeAccessIssue) +/homeassistant/components/stream/core.py + /homeassistant/components/stream/core.py:527:49 - error: Cannot access attribute "encode" for class "Literal[True]" +   Attribute "encode" is unknown (reportAttributeAccessIssue) +/homeassistant/components/stream/fmp4utils.py + /homeassistant/components/stream/fmp4utils.py:149:42 - error: Function with declared return type "int" must return value on all code paths +   "None" is not assignable to "int" (reportReturnType) +/homeassistant/components/stream/hls.py + /homeassistant/components/stream/hls.py:183:44 - error: Cannot access attribute "target_duration" for class "StreamOutput" +   Attribute "target_duration" is unknown (reportAttributeAccessIssue) + /homeassistant/components/stream/hls.py:211:51 - error: Cannot access attribute "target_duration" for class "StreamOutput" +   Attribute "target_duration" is unknown (reportAttributeAccessIssue) + /homeassistant/components/stream/hls.py:283:61 - error: Cannot access attribute "target_duration" for class "StreamOutput" +   Attribute "target_duration" is unknown (reportAttributeAccessIssue) + /homeassistant/components/stream/hls.py:294:63 - error: Cannot access attribute "target_duration" for class "StreamOutput" +   Attribute "target_duration" is unknown (reportAttributeAccessIssue) + /homeassistant/components/stream/hls.py:305:61 - error: Cannot access attribute "target_duration" for class "StreamOutput" +   Attribute "target_duration" is unknown (reportAttributeAccessIssue) + /homeassistant/components/stream/hls.py:316:63 - error: Cannot access attribute "target_duration" for class "StreamOutput" +   Attribute "target_duration" is unknown (reportAttributeAccessIssue) + /homeassistant/components/stream/hls.py:331:63 - error: Cannot access attribute "target_duration" for class "StreamOutput" +   Attribute "target_duration" is unknown (reportAttributeAccessIssue) +/homeassistant/components/stream/worker.py + /homeassistant/components/stream/worker.py:109:47 - error: Cannot access attribute "discontinuity" for class "StreamOutput" +   Attribute "discontinuity" is unknown (reportAttributeAccessIssue) + /homeassistant/components/stream/worker.py:129:36 - error: "AudioStream" is not exported from module "av.audio" (reportPrivateImportUsage) + /homeassistant/components/stream/worker.py:139:32 - error: "AudioStream" is not exported from module "av.audio" (reportPrivateImportUsage) + /homeassistant/components/stream/worker.py:160:33 - error: "AudioStream" is not exported from module "av.audio" (reportPrivateImportUsage) + /homeassistant/components/stream/worker.py:164:18 - error: "AudioStream" is not exported from module "av.audio" (reportPrivateImportUsage) + /homeassistant/components/stream/worker.py:382:60 - error: "segment_duration" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/streamlabswater/__init__.py + /homeassistant/components/streamlabswater/__init__.py:49:45 - error: Argument of type "Any | None" cannot be assigned to parameter "home_or_away" of type "str" in function "update_location" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/streamlabswater/binary_sensor.py + /homeassistant/components/streamlabswater/binary_sensor.py:28:7 - error: Base classes for class "StreamlabsAwayMode" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/streamlabswater/binary_sensor.py:38:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/streamlabswater/sensor.py + /homeassistant/components/streamlabswater/sensor.py:75:7 - error: Base classes for class "StreamLabsSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/streamlabswater/sensor.py:88:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "StreamlabsWaterSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/streamlabswater/sensor.py:88:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "StreamlabsWaterSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/streamlabswater/sensor.py:91:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/stt/__init__.py + /homeassistant/components/stt/__init__.py:12:26 - error: "istr" is not exported from module "aiohttp.hdrs" +   Import from "._multidict_py" instead (reportPrivateImportUsage) + /homeassistant/components/stt/__init__.py:164:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/stt/legacy.py + /homeassistant/components/stt/legacy.py:59:17 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/components/stt/legacy.py:59:17 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[str, _S@__setitem__]" is not assignable to type "dict[str, Provider]" +     "dict[str, _S@__setitem__]" is not assignable to "dict[str, Provider]" +       Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "Provider" +       Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) +/homeassistant/components/subaru/__init__.py + /homeassistant/components/subaru/__init__.py:60:13 - error: Argument of type "None" cannot be assigned to parameter "device_name" of type "str" in function "__init__" +   "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/subaru/device_tracker.py + /homeassistant/components/subaru/device_tracker.py:62:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/subaru/device_tracker.py:71:9 - error: "latitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/subaru/device_tracker.py:76:9 - error: "longitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/subaru/device_tracker.py:81:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/subaru/sensor.py + /homeassistant/components/subaru/sensor.py:204:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/subaru/sensor.py:219:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/subaru/sensor.py:229:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/suez_water/config_flow.py + /homeassistant/components/suez_water/config_flow.py:8:20 - error: "PySuezError" is not exported from module "pysuez" +   Import from "pysuez.exception" instead (reportPrivateImportUsage) + /homeassistant/components/suez_water/config_flow.py:8:33 - error: "SuezClient" is not exported from module "pysuez" +   Import from "pysuez.suez_client" instead (reportPrivateImportUsage) + /homeassistant/components/suez_water/config_flow.py:52:15 - error: "client" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/suez_water/coordinator.py + /homeassistant/components/suez_water/coordinator.py:7:20 - error: "PySuezError" is not exported from module "pysuez" +   Import from "pysuez.exception" instead (reportPrivateImportUsage) + /homeassistant/components/suez_water/coordinator.py:7:33 - error: "SuezClient" is not exported from module "pysuez" +   Import from "pysuez.suez_client" instead (reportPrivateImportUsage) + /homeassistant/components/suez_water/coordinator.py:7:45 - error: "TelemetryMeasure" is not exported from module "pysuez" +   Import from "pysuez.models" instead (reportPrivateImportUsage) + /homeassistant/components/suez_water/coordinator.py:133:13 - error: Could not access item in TypedDict +   "sum" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/suez_water/coordinator.py:134:36 - error: Could not access item in TypedDict +   "sum" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/suez_water/coordinator.py:138:13 - error: Could not access item in TypedDict +   "sum" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/suez_water/coordinator.py:138:57 - error: Could not access item in TypedDict +   "sum" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/suez_water/coordinator.py:141:36 - error: Could not access item in TypedDict +   "start" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/suez_water/sensor.py + /homeassistant/components/suez_water/sensor.py:88:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SuezWaterSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/suez_water/sensor.py:88:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SuezWaterSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/suez_water/sensor.py:91:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/suez_water/sensor.py:99:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/suez_water/sensor.py:104:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sun/binary_sensor.py + /homeassistant/components/sun/binary_sensor.py:76:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "SunBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sun/binary_sensor.py:87:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sun/entity.py + /homeassistant/components/sun/entity.py:157:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/sun/entity.py:166:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/sun/sensor.py + /homeassistant/components/sun/sensor.py:139:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SunSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/sun/sensor.py:150:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/supervisord/sensor.py + /homeassistant/components/supervisord/sensor.py:64:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/supervisord/sensor.py:69:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/supervisord/sensor.py:74:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/supervisord/sensor.py:79:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/supla/__init__.py + /homeassistant/components/supla/__init__.py:9:6 - error: Import "asyncpysupla" could not be resolved (reportMissingImports) +/homeassistant/components/supla/cover.py + /homeassistant/components/supla/cover.py:62:7 - error: Base classes for class "SuplaCoverEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/supla/cover.py:62:7 - error: Base classes for class "SuplaCoverEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/supla/cover.py:62:7 - error: Base classes for class "SuplaCoverEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/supla/cover.py:66:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/supla/cover.py:79:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/supla/cover.py:98:7 - error: Base classes for class "SuplaDoorEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/supla/cover.py:98:7 - error: Base classes for class "SuplaDoorEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/supla/cover.py:98:7 - error: Base classes for class "SuplaDoorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/supla/cover.py:104:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/supla/entity.py + /homeassistant/components/supla/entity.py:28:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/supla/entity.py:35:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/supla/switch.py + /homeassistant/components/supla/switch.py:47:7 - error: Base classes for class "SuplaSwitchEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/supla/switch.py:47:7 - error: Base classes for class "SuplaSwitchEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/supla/switch.py:47:7 - error: Base classes for class "SuplaSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/supla/switch.py:59:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/surepetcare/binary_sensor.py + /homeassistant/components/surepetcare/binary_sensor.py:53:7 - error: Base classes for class "SurePetcareBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/surepetcare/coordinator.py + /homeassistant/components/surepetcare/coordinator.py:8:28 - error: "SurepyEntity" is not exported from module "surepy" +   Import from "surepy.entities" instead (reportPrivateImportUsage) +/homeassistant/components/surepetcare/lock.py + /homeassistant/components/surepetcare/lock.py:60:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/surepetcare/sensor.py + /homeassistant/components/surepetcare/sensor.py:48:7 - error: Base classes for class "SureBattery" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/surepetcare/sensor.py:88:7 - error: Base classes for class "Felaqua" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/swiss_hydrological_data/sensor.py + /homeassistant/components/swiss_hydrological_data/sensor.py:8:6 - error: Import "swisshydrodata" could not be resolved (reportMissingImports) + /homeassistant/components/swiss_hydrological_data/sensor.py:104:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/swiss_hydrological_data/sensor.py:109:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/swiss_hydrological_data/sensor.py:114:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/swiss_hydrological_data/sensor.py:121:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/swiss_hydrological_data/sensor.py:128:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/swiss_hydrological_data/sensor.py:149:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/swiss_public_transport/coordinator.py + /homeassistant/components/swiss_public_transport/coordinator.py:114:23 - error: Argument of type "Any | None" cannot be assigned to parameter "start" of type "str" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/swiss_public_transport/coordinator.py:115:29 - error: Argument of type "Any | None" cannot be assigned to parameter "destination" of type "str" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/swiss_public_transport/sensor.py + /homeassistant/components/swiss_public_transport/sensor.py:107:7 - error: Base classes for class "SwissPublicTransportSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/swiss_public_transport/sensor.py:124:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SwissPublicTransportSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/swiss_public_transport/sensor.py:124:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SwissPublicTransportSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/swiss_public_transport/sensor.py:133:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/switch/__init__.py + /homeassistant/components/switch/__init__.py:101:5 - error: "entity_description" overrides symbol of same name in class "ToggleEntity" +   Variable is mutable so its type is invariant +     Override type "SwitchEntityDescription" is not the same as base type "ToggleEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/switch/__init__.py:102:5 - error: "_attr_device_class" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SwitchDeviceClass | None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/switch/reproduce_state.py + /homeassistant/components/switch/reproduce_state.py:56:17 - error: "service" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/switch_as_x/fan.py + /homeassistant/components/switch_as_x/fan.py:51:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/switchbee/__init__.py + /homeassistant/components/switchbee/__init__.py:9:27 - error: "CentralUnitPolling" is not exported from module "switchbee.api" +   Import from "switchbee.api.polling" instead (reportPrivateImportUsage) + /homeassistant/components/switchbee/__init__.py:9:47 - error: "CentralUnitWsRPC" is not exported from module "switchbee.api" +   Import from "switchbee.api.wsrpc" instead (reportPrivateImportUsage) +/homeassistant/components/switchbee/button.py + /homeassistant/components/switchbee/button.py:4:30 - error: "ApiStateCommand" is not exported from module "switchbee.device" +   Import from "switchbee.const" instead (reportPrivateImportUsage) + /homeassistant/components/switchbee/button.py:31:7 - error: Base classes for class "SwitchBeeButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/switchbee/climate.py + /homeassistant/components/switchbee/climate.py:14:30 - error: "ApiStateCommand" is not exported from module "switchbee.device" +   Import from "switchbee.const" instead (reportPrivateImportUsage) + /homeassistant/components/switchbee/climate.py:90:7 - error: Base classes for class "SwitchBeeClimateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbee/climate.py:127:14 - error: "_attr_hvac_mode" overrides symbol of same name in class "ClimateEntity" +   Variable is mutable so its type is invariant +     Override type "HVACMode" is not the same as base type "HVACMode | None" (reportIncompatibleVariableOverride) +/homeassistant/components/switchbee/const.py + /homeassistant/components/switchbee/const.py:3:27 - error: "CentralUnitPolling" is not exported from module "switchbee.api" +   Import from "switchbee.api.polling" instead (reportPrivateImportUsage) + /homeassistant/components/switchbee/const.py:3:47 - error: "CentralUnitWsRPC" is not exported from module "switchbee.api" +   Import from "switchbee.api.wsrpc" instead (reportPrivateImportUsage) +/homeassistant/components/switchbee/coordinator.py + /homeassistant/components/switchbee/coordinator.py:9:27 - error: "CentralUnitPolling" is not exported from module "switchbee.api" +   Import from "switchbee.api.polling" instead (reportPrivateImportUsage) + /homeassistant/components/switchbee/coordinator.py:9:47 - error: "CentralUnitWsRPC" is not exported from module "switchbee.api" +   Import from "switchbee.api.wsrpc" instead (reportPrivateImportUsage) +/homeassistant/components/switchbee/cover.py + /homeassistant/components/switchbee/cover.py:45:7 - error: Base classes for class "SwitchBeeSomfyEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbee/cover.py:76:7 - error: Base classes for class "SwitchBeeCoverEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/switchbee/entity.py + /homeassistant/components/switchbee/entity.py:6:23 - error: "SWITCHBEE_BRAND" is not exported from module "switchbee" +   Import from "switchbee.const" instead (reportPrivateImportUsage) +/homeassistant/components/switchbee/light.py + /homeassistant/components/switchbee/light.py:8:30 - error: "ApiStateCommand" is not exported from module "switchbee.device" +   Import from "switchbee.const" instead (reportPrivateImportUsage) + /homeassistant/components/switchbee/light.py:51:7 - error: Base classes for class "SwitchBeeLightEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/switchbee/switch.py + /homeassistant/components/switchbee/switch.py:9:5 - error: "ApiStateCommand" is not exported from module "switchbee.device" +   Import from "switchbee.const" instead (reportPrivateImportUsage) + /homeassistant/components/switchbee/switch.py:50:7 - error: Base classes for class "SwitchBeeSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/switchbot/binary_sensor.py + /homeassistant/components/switchbot/binary_sensor.py:88:7 - error: Base classes for class "SwitchBotBinarySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/binary_sensor.py:88:7 - error: Base classes for class "SwitchBotBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/binary_sensor.py:103:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/switchbot/climate.py + /homeassistant/components/switchbot/climate.py:57:7 - error: Base classes for class "SwitchBotClimateEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/climate.py:57:7 - error: Base classes for class "SwitchBotClimateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/climate.py:73:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/climate.py:75:29 - error: Cannot access attribute "min_temperature" for class "SwitchbotDevice" +   Attribute "min_temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/switchbot/climate.py:78:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/climate.py:80:29 - error: Cannot access attribute "max_temperature" for class "SwitchbotDevice" +   Attribute "max_temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/switchbot/climate.py:83:9 - error: "preset_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/climate.py:85:29 - error: Cannot access attribute "preset_modes" for class "SwitchbotDevice" +   Attribute "preset_modes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/switchbot/climate.py:88:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/climate.py:90:29 - error: Cannot access attribute "preset_mode" for class "SwitchbotDevice" +   Attribute "preset_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/switchbot/climate.py:93:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/climate.py:96:26 - error: Cannot access attribute "hvac_mode" for class "SwitchbotDevice" +   Attribute "hvac_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/switchbot/climate.py:100:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/climate.py:104:38 - error: Cannot access attribute "hvac_modes" for class "SwitchbotDevice" +   Attribute "hvac_modes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/switchbot/climate.py:108:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/climate.py:111:26 - error: Cannot access attribute "hvac_action" for class "SwitchbotDevice" +   Attribute "hvac_action" is unknown (reportAttributeAccessIssue) + /homeassistant/components/switchbot/climate.py:115:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/climate.py:117:29 - error: Cannot access attribute "current_temperature" for class "SwitchbotDevice" +   Attribute "current_temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/switchbot/climate.py:120:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/climate.py:122:29 - error: Cannot access attribute "target_temperature" for class "SwitchbotDevice" +   Attribute "target_temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/switchbot/climate.py:125:15 - error: Method "async_set_hvac_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/climate.py:127:35 - error: Cannot access attribute "set_hvac_mode" for class "SwitchbotDevice" +   Attribute "set_hvac_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/switchbot/climate.py:132:15 - error: Method "async_set_preset_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/climate.py:134:35 - error: Cannot access attribute "set_preset_mode" for class "SwitchbotDevice" +   Attribute "set_preset_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/switchbot/climate.py:137:15 - error: Method "async_set_temperature" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/climate.py:140:35 - error: Cannot access attribute "set_target_temperature" for class "SwitchbotDevice" +   Attribute "set_target_temperature" is unknown (reportAttributeAccessIssue) +/homeassistant/components/switchbot/const.py + /homeassistant/components/switchbot/const.py:144:5 - error: Type "dict[SwitchbotModel, type[SwitchbotLock] | type[SwitchbotRelaySwitch] | type[SwitchbotAirPurifier] | type[SwitchbotEvaporativeHumidifier] | type[SwitchbotStripLight3] | type[SwitchbotRgbicLight] | type[SwitchbotRelaySwitch2PM] | type[SwitchbotSmartThermostatRadiator]]" is not assignable to declared type "dict[SwitchbotModel, SwitchbotEncryptedDevice]" +   Type "type[SwitchbotLock]" is not assignable to type "SwitchbotEncryptedDevice" +   Type "type[SwitchbotLock]" is not assignable to type "SwitchbotEncryptedDevice" +   Type "type[SwitchbotRelaySwitch]" is not assignable to type "SwitchbotEncryptedDevice" +   Type "type[SwitchbotRelaySwitch]" is not assignable to type "SwitchbotEncryptedDevice" +   Type "type[SwitchbotLock]" is not assignable to type "SwitchbotEncryptedDevice" +   Type "type[SwitchbotLock]" is not assignable to type "SwitchbotEncryptedDevice" +   Type "type[SwitchbotAirPurifier]" is not assignable to type "SwitchbotEncryptedDevice" +   Type "type[SwitchbotAirPurifier]" is not assignable to type "SwitchbotEncryptedDevice" (reportAssignmentType) +/homeassistant/components/switchbot/cover.py + /homeassistant/components/switchbot/cover.py:48:7 - error: Base classes for class "SwitchBotCurtainEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:48:7 - error: Base classes for class "SwitchBotCurtainEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:48:7 - error: Base classes for class "SwitchBotCurtainEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:48:7 - error: Base classes for class "SwitchBotCurtainEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:48:7 - error: Base classes for class "SwitchBotCurtainEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:48:7 - error: Base classes for class "SwitchBotCurtainEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:48:7 - error: Base classes for class "SwitchBotCurtainEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:48:7 - error: Base classes for class "SwitchBotCurtainEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:48:7 - error: Base classes for class "SwitchBotCurtainEntity" define variable "supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:51:5 - error: "_device" overrides symbol of same name in class "SwitchbotEntity" +   Variable is mutable so its type is invariant +     Override type "SwitchbotCurtain" is not the same as base type "SwitchbotDevice" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:82:15 - error: Method "async_open_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/cover.py:92:15 - error: Method "async_close_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/cover.py:102:15 - error: Method "async_stop_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/cover.py:112:15 - error: Method "async_set_cover_position" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/cover.py:117:71 - error: Argument of type "Any | None" cannot be assigned to parameter "position" of type "int" in function "set_position" +   Type "Any | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/switchbot/cover.py:133:7 - error: Base classes for class "SwitchBotBlindTiltEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:133:7 - error: Base classes for class "SwitchBotBlindTiltEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:133:7 - error: Base classes for class "SwitchBotBlindTiltEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:133:7 - error: Base classes for class "SwitchBotBlindTiltEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:133:7 - error: Base classes for class "SwitchBotBlindTiltEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:133:7 - error: Base classes for class "SwitchBotBlindTiltEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:133:7 - error: Base classes for class "SwitchBotBlindTiltEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:133:7 - error: Base classes for class "SwitchBotBlindTiltEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:133:7 - error: Base classes for class "SwitchBotBlindTiltEntity" define variable "supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:136:5 - error: "_device" overrides symbol of same name in class "SwitchbotEntity" +   Variable is mutable so its type is invariant +     Override type "SwitchbotBlindTilt" is not the same as base type "SwitchbotDevice" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:171:15 - error: Method "async_open_cover_tilt" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/cover.py:179:15 - error: Method "async_close_cover_tilt" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/cover.py:187:15 - error: Method "async_stop_cover_tilt" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/cover.py:195:15 - error: Method "async_set_cover_tilt_position" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/cover.py:200:71 - error: Argument of type "Any | None" cannot be assigned to parameter "position" of type "int" in function "set_position" +   Type "Any | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/switchbot/cover.py:216:7 - error: Base classes for class "SwitchBotRollerShadeEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:216:7 - error: Base classes for class "SwitchBotRollerShadeEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:216:7 - error: Base classes for class "SwitchBotRollerShadeEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:216:7 - error: Base classes for class "SwitchBotRollerShadeEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:216:7 - error: Base classes for class "SwitchBotRollerShadeEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:216:7 - error: Base classes for class "SwitchBotRollerShadeEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:216:7 - error: Base classes for class "SwitchBotRollerShadeEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:216:7 - error: Base classes for class "SwitchBotRollerShadeEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:216:7 - error: Base classes for class "SwitchBotRollerShadeEntity" define variable "supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:219:5 - error: "_device" overrides symbol of same name in class "SwitchbotEntity" +   Variable is mutable so its type is invariant +     Override type "SwitchbotRollerShade" is not the same as base type "SwitchbotDevice" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:251:15 - error: Method "async_open_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/cover.py:261:15 - error: Method "async_close_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/cover.py:271:15 - error: Method "async_stop_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/cover.py:281:15 - error: Method "async_set_cover_position" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/cover.py:286:71 - error: Argument of type "Any | None" cannot be assigned to parameter "position" of type "int" in function "set_position" +   Type "Any | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/switchbot/cover.py:302:7 - error: Base classes for class "SwitchbotGarageDoorOpenerEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:302:7 - error: Base classes for class "SwitchbotGarageDoorOpenerEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:305:5 - error: "_device" overrides symbol of same name in class "SwitchbotEntity" +   Variable is mutable so its type is invariant +     Override type "SwitchbotGarageDoorOpener" is not the same as base type "SwitchbotDevice" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:312:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/cover.py:317:15 - error: Method "async_open_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/cover.py:323:15 - error: Method "async_close_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/switchbot/entity.py + /homeassistant/components/switchbot/entity.py:58:9 - error: Could not access item in TypedDict +   "connections" is not a required key in "DeviceInfo", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/switchbot/entity.py:70:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/entity.py:118:7 - error: Base classes for class "SwitchbotSwitchedEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/entity.py:118:7 - error: Base classes for class "SwitchbotSwitchedEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/entity.py:121:5 - error: "_device" overrides symbol of same name in class "SwitchbotEntity" +   Variable is mutable so its type is invariant +     Override type "Switchbot" is not the same as base type "SwitchbotDevice" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/entity.py:124:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/entity.py:134:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/switchbot/fan.py + /homeassistant/components/switchbot/fan.py:36:7 - error: Base classes for class "SwitchBotFanEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/fan.py:36:7 - error: Base classes for class "SwitchBotFanEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/fan.py:36:7 - error: Base classes for class "SwitchBotFanEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/fan.py:36:7 - error: Base classes for class "SwitchBotFanEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/fan.py:36:7 - error: Base classes for class "SwitchBotFanEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/fan.py:36:7 - error: Base classes for class "SwitchBotFanEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/fan.py:36:7 - error: Base classes for class "SwitchBotFanEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/fan.py:36:7 - error: Base classes for class "SwitchBotFanEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/fan.py:39:5 - error: "_device" overrides symbol of same name in class "SwitchbotEntity" +   Variable is mutable so its type is invariant +     Override type "SwitchbotFan" is not the same as base type "SwitchbotDevice" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/fan.py:62:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/fan.py:67:9 - error: "oscillating" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/fan.py:72:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/fan.py:128:7 - error: Base classes for class "SwitchBotAirPurifierEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/fan.py:128:7 - error: Base classes for class "SwitchBotAirPurifierEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/fan.py:131:5 - error: "_device" overrides symbol of same name in class "SwitchbotEntity" +   Variable is mutable so its type is invariant +     Override type "SwitchbotAirPurifier" is not the same as base type "SwitchbotDevice" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/fan.py:147:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/fan.py:152:15 - error: Method "async_set_preset_mode" overrides class "FanEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/fan.py:164:15 - error: Method "async_turn_on" overrides class "FanEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/fan.py:182:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/switchbot/humidifier.py + /homeassistant/components/switchbot/humidifier.py:27:66 - error: Type "dict[switchbot.const.evaporative_humidifier.HumidifierAction, homeassistant.components.humidifier.const.HumidifierAction]" is not assignable to declared type "dict[int, HumidifierAction]" +   "Literal[HumidifierAction.OFF]" is not assignable to "int" +   "Literal[HumidifierAction.HUMIDIFYING]" is not assignable to "int" +   "Literal[HumidifierAction.DRYING]" is not assignable to "int" (reportAssignmentType) + /homeassistant/components/switchbot/humidifier.py:47:7 - error: Base classes for class "SwitchBotHumidifier" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/humidifier.py:47:7 - error: Base classes for class "SwitchBotHumidifier" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/humidifier.py:47:7 - error: Base classes for class "SwitchBotHumidifier" define method "async_turn_on" in incompatible way +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/humidifier.py:47:7 - error: Base classes for class "SwitchBotHumidifier" define method "async_turn_off" in incompatible way +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/humidifier.py:53:5 - error: "_device" overrides symbol of same name in class "SwitchbotSwitchedEntity" +   Variable is mutable so its type is invariant +     Override type "SwitchbotHumidifier" is not the same as base type "Switchbot" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/humidifier.py:59:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/humidifier.py:64:9 - error: "mode" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/humidifier.py:69:9 - error: "target_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/humidifier.py:74:15 - error: Method "async_set_humidity" overrides class "HumidifierEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/humidifier.py:80:15 - error: Method "async_set_mode" overrides class "HumidifierEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/humidifier.py:89:7 - error: Base classes for class "SwitchBotEvaporativeHumidifier" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/humidifier.py:89:7 - error: Base classes for class "SwitchBotEvaporativeHumidifier" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/humidifier.py:92:5 - error: "_device" overrides symbol of same name in class "SwitchbotSwitchedEntity" +   Variable is mutable so its type is invariant +     Override type "SwitchbotEvaporativeHumidifier" is not the same as base type "Switchbot" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/humidifier.py:102:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/humidifier.py:107:9 - error: "mode" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/humidifier.py:109:40 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/switchbot/humidifier.py:112:9 - error: "current_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/humidifier.py:117:9 - error: "target_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/humidifier.py:122:9 - error: "action" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[HumidifierAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/humidifier.py:129:15 - error: Method "async_set_humidity" overrides class "HumidifierEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/humidifier.py:136:15 - error: Method "async_set_mode" overrides class "HumidifierEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/humidifier.py:143:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/humidifier.py:150:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/switchbot/light.py + /homeassistant/components/switchbot/light.py:44:7 - error: Base classes for class "SwitchbotLightEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/light.py:44:7 - error: Base classes for class "SwitchbotLightEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/light.py:47:5 - error: "_device" overrides symbol of same name in class "SwitchbotEntity" +   Variable is mutable so its type is invariant +     Override type "SwitchbotBaseLight" is not the same as base type "SwitchbotDevice" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/light.py:62:9 - error: "supported_color_modes" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[set[ColorMode] | set[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/light.py:64:77 - error: Cannot access attribute "color_modes" for class "SwitchbotBaseLight" +   Attribute "color_modes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/switchbot/light.py:67:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/light.py:67:9 - error: "supported_features" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[LightEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/light.py:72:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/light.py:74:38 - error: Operator "*" not supported for "None" (reportOptionalOperand) + /homeassistant/components/switchbot/light.py:77:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/light.py:84:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/light.py:89:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/light.py:94:9 - error: "rgb_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/light.py:104:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/light.py:106:16 - error: Type "bool | None" is not assignable to return type "bool" +   Type "bool | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportReturnType) + /homeassistant/components/switchbot/light.py:109:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/light.py:138:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/switchbot/lock.py + /homeassistant/components/switchbot/lock.py:30:7 - error: Base classes for class "SwitchBotLock" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/lock.py:30:7 - error: Base classes for class "SwitchBotLock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/lock.py:35:5 - error: "_device" overrides symbol of same name in class "SwitchbotEntity" +   Variable is mutable so its type is invariant +     Override type "SwitchbotLock" is not the same as base type "SwitchbotDevice" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/lock.py:58:15 - error: Method "async_lock" overrides class "LockEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/lock.py:64:15 - error: Method "async_unlock" overrides class "LockEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/lock.py:73:15 - error: Method "async_open" overrides class "LockEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/switchbot/sensor.py + /homeassistant/components/switchbot/sensor.py:157:7 - error: Base classes for class "SwitchBotSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/sensor.py:157:7 - error: Base classes for class "SwitchBotSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/sensor.py:186:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/switchbot/switch.py + /homeassistant/components/switchbot/switch.py:43:7 - error: Base classes for class "SwitchBotSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/switch.py:43:7 - error: Base classes for class "SwitchBotSwitch" define method "async_turn_on" in incompatible way +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/switch.py:43:7 - error: Base classes for class "SwitchBotSwitch" define method "async_turn_off" in incompatible way +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/switch.py:43:7 - error: Base classes for class "SwitchBotSwitch" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/switch.py:43:7 - error: Base classes for class "SwitchBotSwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/switch.py:43:7 - error: Base classes for class "SwitchBotSwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/switch.py:43:7 - error: Base classes for class "SwitchBotSwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/switch.py:65:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/switch.py:70:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/switch.py:77:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/switch.py:85:7 - error: Base classes for class "SwitchbotMultiChannelSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/switch.py:85:7 - error: Base classes for class "SwitchbotMultiChannelSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/switch.py:108:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/switch.py:110:35 - error: Expected 0 positional arguments (reportCallIssue) + /homeassistant/components/switchbot/switch.py:113:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/switch.py:118:36 - error: Expected 0 positional arguments (reportCallIssue) + /homeassistant/components/switchbot/switch.py:122:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/switchbot/switch.py:127:37 - error: Expected 0 positional arguments (reportCallIssue) +/homeassistant/components/switchbot/vacuum.py + /homeassistant/components/switchbot/vacuum.py:85:7 - error: Base classes for class "SwitchbotVacuumEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/vacuum.py:85:7 - error: Base classes for class "SwitchbotVacuumEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/vacuum.py:88:5 - error: "_device" overrides symbol of same name in class "SwitchbotEntity" +   Variable is mutable so its type is invariant +     Override type "SwitchbotVacuum" is not the same as base type "SwitchbotDevice" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot/vacuum.py:105:9 - error: "activity" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[VacuumActivity | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/switchbot_cloud/binary_sensor.py + /homeassistant/components/switchbot_cloud/binary_sensor.py:133:7 - error: Base classes for class "SwitchBotCloudBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot_cloud/binary_sensor.py:147:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SwitchBotCloudBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot_cloud/binary_sensor.py:147:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "SwitchBotCloudBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot_cloud/binary_sensor.py:151:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/switchbot_cloud/button.py + /homeassistant/components/switchbot_cloud/button.py:30:7 - error: Base classes for class "SwitchBotCloudBot" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/switchbot_cloud/climate.py + /homeassistant/components/switchbot_cloud/climate.py:61:7 - error: Base classes for class "SwitchBotCloudAirConditioner" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot_cloud/climate.py:61:7 - error: Base classes for class "SwitchBotCloudAirConditioner" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot_cloud/climate.py:61:7 - error: Base classes for class "SwitchBotCloudAirConditioner" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot_cloud/climate.py:61:7 - error: Base classes for class "SwitchBotCloudAirConditioner" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot_cloud/climate.py:61:7 - error: Base classes for class "SwitchBotCloudAirConditioner" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot_cloud/climate.py:61:7 - error: Base classes for class "SwitchBotCloudAirConditioner" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot_cloud/climate.py:124:20 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/switchbot_cloud/climate.py:125:17 - error: Argument of type "HVACMode | None" cannot be assigned to parameter "key" of type "HVACMode" in function "get" +   Type "HVACMode | None" is not assignable to type "HVACMode" +     "None" is not assignable to "HVACMode" (reportArgumentType) + /homeassistant/components/switchbot_cloud/climate.py:127:16 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/switchbot_cloud/climate.py:127:42 - error: Argument of type "Literal[HVACMode.HEAT, HVACMode.COOL, HVACMode.HEAT_COOL, HVACMode.AUTO, HVACMode.DRY, HVACMode.FAN_ONLY] | None" cannot be assigned to parameter "key" of type "HVACMode" in function "get" +   Type "Literal[HVACMode.HEAT, HVACMode.COOL, HVACMode.HEAT_COOL, HVACMode.AUTO, HVACMode.DRY, HVACMode.FAN_ONLY] | None" is not assignable to type "HVACMode" +     "None" is not assignable to "HVACMode" (reportArgumentType) + /homeassistant/components/switchbot_cloud/climate.py:137:25 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/switchbot_cloud/climate.py:138:13 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/switchbot_cloud/climate.py:141:26 - error: Argument of type "float | None" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "float | None" is not assignable to type "ConvertibleToInt" +     Type "None" is not assignable to type "ConvertibleToInt" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "None" is incompatible with protocol "SupportsInt" +         "__int__" is not present +       "None" is incompatible with protocol "SupportsIndex" + ... (reportArgumentType) + /homeassistant/components/switchbot_cloud/climate.py:141:26 - error: Argument of type "float | None" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "float | None" is not assignable to type "ConvertibleToInt" +     Type "None" is not assignable to type "ConvertibleToInt" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "None" is incompatible with protocol "SupportsInt" +         "__int__" is not present +       "None" is incompatible with protocol "SupportsIndex" (reportArgumentType) + /homeassistant/components/switchbot_cloud/climate.py:180:40 - error: Argument of type "Literal[HVACMode.FAN_ONLY, HVACMode.HEAT, HVACMode.COOL, HVACMode.HEAT_COOL, HVACMode.AUTO, HVACMode.DRY] | None" cannot be assigned to parameter "hvac_mode" of type "HVACMode" in function "async_set_hvac_mode" +   Type "Literal[HVACMode.FAN_ONLY, HVACMode.HEAT, HVACMode.COOL, HVACMode.HEAT_COOL, HVACMode.AUTO, HVACMode.DRY] | None" is not assignable to type "HVACMode" +     "None" is not assignable to "HVACMode" (reportArgumentType) +/homeassistant/components/switchbot_cloud/cover.py + /homeassistant/components/switchbot_cloud/cover.py:43:7 - error: Base classes for class "SwitchBotCloudCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot_cloud/cover.py:64:5 - error: "_attr_supported_features" overrides symbol of same name in class "CoverEntity" +   Variable is mutable so its type is invariant +     Override type "CoverEntityFeature" is not the same as base type "CoverEntityFeature | None" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot_cloud/cover.py:104:5 - error: "_attr_supported_features" overrides symbol of same name in class "CoverEntity" +   Variable is mutable so its type is invariant +     Override type "CoverEntityFeature" is not the same as base type "CoverEntityFeature | None" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot_cloud/cover.py:138:5 - error: "_attr_supported_features" overrides symbol of same name in class "CoverEntity" +   Variable is mutable so its type is invariant +     Override type "CoverEntityFeature" is not the same as base type "CoverEntityFeature | None" (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot_cloud/cover.py:192:5 - error: "_attr_supported_features" overrides symbol of same name in class "CoverEntity" +   Variable is mutable so its type is invariant +     Override type "CoverEntityFeature" is not the same as base type "CoverEntityFeature | None" (reportIncompatibleVariableOverride) +/homeassistant/components/switchbot_cloud/entity.py + /homeassistant/components/switchbot_cloud/entity.py:51:13 - error: Argument of type "str | None" cannot be assigned to parameter "device_id" of type "str" in function "send_command" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/switchbot_cloud/entity.py:52:13 - error: Argument of type "Commands" cannot be assigned to parameter "command" of type "T@send_command | str" in function "send_command" +   Type "Commands" is not assignable to type "T@send_command | str" +     Type "Commands" is not assignable to type "CommonCommands" +       "Commands" is not assignable to "CommonCommands" +     "Commands" is not assignable to "str" (reportArgumentType) + /homeassistant/components/switchbot_cloud/entity.py:54:13 - error: Argument of type "dict[Unknown, Unknown] | str | int" cannot be assigned to parameter "parameters" of type "dict[Unknown, Unknown] | str" in function "send_command" +   Type "dict[Unknown, Unknown] | str | int" is not assignable to type "dict[Unknown, Unknown] | str" +     Type "int" is not assignable to type "dict[Unknown, Unknown] | str" +       "int" is not assignable to "dict[Unknown, Unknown]" +       "int" is not assignable to "str" (reportArgumentType) +/homeassistant/components/switchbot_cloud/fan.py + /homeassistant/components/switchbot_cloud/fan.py:45:7 - error: Base classes for class "SwitchBotCloudFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot_cloud/fan.py:134:7 - error: Base classes for class "SwitchBotAirPurifierEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/switchbot_cloud/humidifier.py + /homeassistant/components/switchbot_cloud/humidifier.py:42:7 - error: Base classes for class "SwitchBotHumidifier" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot_cloud/humidifier.py:103:7 - error: Base classes for class "SwitchBotEvaporativeHumidifier" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/switchbot_cloud/light.py + /homeassistant/components/switchbot_cloud/light.py:48:7 - error: Base classes for class "SwitchBotCloudLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/switchbot_cloud/lock.py + /homeassistant/components/switchbot_cloud/lock.py:30:7 - error: Base classes for class "SwitchBotCloudLock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/switchbot_cloud/sensor.py + /homeassistant/components/switchbot_cloud/sensor.py:279:7 - error: Base classes for class "SwitchBotCloudSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot_cloud/sensor.py:343:38 - error: Argument of type "Device | Remote" cannot be assigned to parameter "device" of type "Device" in function "__init__" +   Type "Device | Remote" is not assignable to type "Device" +     "Remote" is not assignable to "Device" (reportArgumentType) +/homeassistant/components/switchbot_cloud/switch.py + /homeassistant/components/switchbot_cloud/switch.py:42:7 - error: Base classes for class "SwitchBotCloudSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/switchbot_cloud/vacuum.py + /homeassistant/components/switchbot_cloud/vacuum.py:71:7 - error: Base classes for class "SwitchBotCloudVacuum" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switchbot_cloud/vacuum.py:79:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "VacuumEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) +/homeassistant/components/switcher_kis/button.py + /homeassistant/components/switcher_kis/button.py:90:7 - error: Base classes for class "SwitcherThermostatButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switcher_kis/button.py:103:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SwitcherThermostatButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/switcher_kis/button.py:103:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "SwitcherThermostatButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/switcher_kis/climate.py + /homeassistant/components/switcher_kis/climate.py:83:7 - error: Base classes for class "SwitcherClimateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/switcher_kis/cover.py + /homeassistant/components/switcher_kis/cover.py:62:7 - error: Base classes for class "SwitcherBaseCoverEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/switcher_kis/light.py + /homeassistant/components/switcher_kis/light.py:56:7 - error: Base classes for class "SwitcherBaseLightEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/switcher_kis/sensor.py + /homeassistant/components/switcher_kis/sensor.py:119:7 - error: Base classes for class "SwitcherSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switcher_kis/sensor.py:129:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SwitcherSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/switcher_kis/sensor.py:129:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SwitcherSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/switcher_kis/sensor.py:136:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/switcher_kis/switch.py + /homeassistant/components/switcher_kis/switch.py:106:7 - error: Base classes for class "SwitcherBaseSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/switcher_kis/switch.py:163:7 - error: Base classes for class "SwitcherShutterChildLockBaseSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/switchmate/switch.py + /homeassistant/components/switchmate/switch.py:8:24 - error: "Switchmate" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/switchmate/switch.py:59:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchmate/switch.py:64:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchmate/switch.py:69:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/switchmate/switch.py:78:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/syncthing/__init__.py + /homeassistant/components/syncthing/__init__.py:48:25 - error: "exceptions" is not a known attribute of module "aiosyncthing" (reportAttributeAccessIssue) +/homeassistant/components/syncthing/config_flow.py + /homeassistant/components/syncthing/config_flow.py:36:25 - error: "exceptions" is not a known attribute of module "aiosyncthing" (reportAttributeAccessIssue) +/homeassistant/components/syncthing/sensor.py + /homeassistant/components/syncthing/sensor.py:36:25 - error: "exceptions" is not a known attribute of module "aiosyncthing" (reportAttributeAccessIssue) + /homeassistant/components/syncthing/sensor.py:109:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/syncthing/sensor.py:114:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/syncthing/sensor.py:119:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/syncthru/binary_sensor.py + /homeassistant/components/syncthru/binary_sensor.py:67:7 - error: Base classes for class "SyncThruBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/syncthru/binary_sensor.py:70:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "SyncThruBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/syncthru/binary_sensor.py:73:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/syncthru/sensor.py + /homeassistant/components/syncthru/sensor.py:149:7 - error: Base classes for class "SyncThruSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/syncthru/sensor.py:153:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SyncThruSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/syncthru/sensor.py:156:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/syncthru/sensor.py:161:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/synology_dsm/binary_sensor.py + /homeassistant/components/synology_dsm/binary_sensor.py:93:7 - error: Base classes for class "SynoDSMBinarySensor" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/binary_sensor.py:93:7 - error: Base classes for class "SynoDSMBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/binary_sensor.py:93:7 - error: Base classes for class "SynoDSMBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/binary_sensor.py:98:5 - error: "entity_description" overrides symbol of same name in class "SynologyDSMBaseEntity" +   Variable is mutable so its type is invariant +     Override type "SynologyDSMBinarySensorEntityDescription" is not the same as base type "SynologyDSMEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/binary_sensor.py:98:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "SynologyDSMBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/binary_sensor.py:114:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/binary_sensor.py:124:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/binary_sensor.py:134:5 - error: "entity_description" overrides symbol of same name in class "SynologyDSMBaseEntity" +   Variable is mutable so its type is invariant +     Override type "SynologyDSMBinarySensorEntityDescription" is not the same as base type "SynologyDSMEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/binary_sensor.py:147:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/synology_dsm/button.py + /homeassistant/components/synology_dsm/button.py:73:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "SynologyDSMbuttonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/synology_dsm/camera.py + /homeassistant/components/synology_dsm/camera.py:9:51 - error: "SynoCamera" is not exported from module "synology_dsm.api.surveillance_station" +   Import from "synology_dsm.api.surveillance_station.camera" instead (reportPrivateImportUsage) + /homeassistant/components/synology_dsm/camera.py:61:7 - error: Base classes for class "SynoDSMCamera" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/camera.py:61:7 - error: Base classes for class "SynoDSMCamera" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/camera.py:65:5 - error: "entity_description" overrides symbol of same name in class "SynologyDSMBaseEntity" +   Variable is mutable so its type is invariant +     Override type "SynologyDSMCameraEntityDescription" is not the same as base type "SynologyDSMEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/camera.py:65:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SynologyDSMCameraEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/camera.py:95:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/camera.py:116:9 - error: "is_recording" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/camera.py:121:9 - error: "motion_detection_enabled" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/synology_dsm/config_flow.py + /homeassistant/components/synology_dsm/config_flow.py:243:57 - error: "serial" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/synology_dsm/config_flow.py:371:15 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/config_flow.py:457:5 - error: "config_entry" incorrectly overrides property of same name in class "OptionsFlow" (reportIncompatibleMethodOverride) +/homeassistant/components/synology_dsm/coordinator.py + /homeassistant/components/synology_dsm/coordinator.py:115:24 - error: Could not access item in TypedDict +   "CMSMinVersion" is not a required key in "SurveillanceStationInfoData", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/coordinator.py:118:15 - error: Method "_async_update_data" overrides class "DataUpdateCoordinator" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, dict[str, dict[str, Any]]]", override returns type "Coroutine[Any, Any, dict[str, dict[str, Any]]]" +     "Coroutine[Any, Any, dict[str, dict[str, Any]]]" is not assignable to "CoroutineType[Any, Any, dict[str, dict[str, Any]]]" (reportIncompatibleMethodOverride) + /homeassistant/components/synology_dsm/coordinator.py:143:15 - error: Method "_async_update_data" overrides class "DataUpdateCoordinator" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/synology_dsm/coordinator.py:163:15 - error: Method "_async_update_data" overrides class "DataUpdateCoordinator" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, dict[str, dict[int, SynoCamera]]]", override returns type "Coroutine[Any, Any, dict[str, dict[int, SynoCamera]]]" +     "Coroutine[Any, Any, dict[str, dict[int, SynoCamera]]]" is not assignable to "CoroutineType[Any, Any, dict[str, dict[int, SynoCamera]]]" (reportIncompatibleMethodOverride) +/homeassistant/components/synology_dsm/diagnostics.py + /homeassistant/components/synology_dsm/diagnostics.py:70:48 - error: Could not access item in TypedDict +   "id" is not a required key in "NetworkInterface", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/diagnostics.py:71:25 - error: Could not access item in TypedDict +   "type" is not a required key in "NetworkInterface", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/diagnostics.py:72:23 - error: Could not access item in TypedDict +   "ip" is not a required key in "NetworkInterface", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/diagnostics.py:77:43 - error: Could not access item in TypedDict +   "id" is not a required key in "SynoStorageDisk", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/diagnostics.py:78:25 - error: Could not access item in TypedDict +   "name" is not a required key in "SynoStorageDisk", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/diagnostics.py:79:27 - error: Could not access item in TypedDict +   "vendor" is not a required key in "SynoStorageDisk", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/diagnostics.py:80:26 - error: Could not access item in TypedDict +   "model" is not a required key in "SynoStorageDisk", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/diagnostics.py:81:27 - error: Could not access item in TypedDict +   "device" is not a required key in "SynoStorageDisk", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/diagnostics.py:82:25 - error: Could not access item in TypedDict +   "temp" is not a required key in "SynoStorageDisk", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/diagnostics.py:83:31 - error: Could not access item in TypedDict +   "size_total" is not a required key in "SynoStorageDisk", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/diagnostics.py:87:45 - error: Could not access item in TypedDict +   "id" is not a required key in "SynoStorageVolume", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/diagnostics.py:88:25 - error: Could not access item in TypedDict +   "fs_type" is not a required key in "SynoStorageVolume", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/diagnostics.py:89:25 - error: Could not access item in TypedDict +   "size" is not a required key in "SynoStorageVolume", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/synology_dsm/entity.py + /homeassistant/components/synology_dsm/entity.py:33:5 - error: "unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "cached_property" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/entity.py:45:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SynologyDSMEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/entity.py:54:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/entity.py:110:33 - error: Could not access item in TypedDict +   "id" is not a required key in "SynoStorageVolume", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/entity.py:115:17 - error: Could not access item in TypedDict +   "device_type" is not a required key in "SynoStorageVolume", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/entity.py:126:33 - error: Could not access item in TypedDict +   "name" is not a required key in "SynoStorageDisk", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/entity.py:127:41 - error: Could not access item in TypedDict +   "vendor" is not a required key in "SynoStorageDisk", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/entity.py:128:34 - error: Could not access item in TypedDict +   "model" is not a required key in "SynoStorageDisk", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/entity.py:129:37 - error: Could not access item in TypedDict +   "firm" is not a required key in "SynoStorageDisk", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/synology_dsm/entity.py:130:33 - error: Could not access item in TypedDict +   "diskType" is not a required key in "SynoStorageDisk", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/synology_dsm/media_source.py + /homeassistant/components/synology_dsm/media_source.py:10:37 - error: "SynoPhotosAlbum" is not exported from module "synology_dsm.api.photos" +   Import from "synology_dsm.api.photos.model" instead (reportPrivateImportUsage) + /homeassistant/components/synology_dsm/media_source.py:10:54 - error: "SynoPhotosItem" is not exported from module "synology_dsm.api.photos" +   Import from "synology_dsm.api.photos.model" instead (reportPrivateImportUsage) +/homeassistant/components/synology_dsm/sensor.py + /homeassistant/components/synology_dsm/sensor.py:423:7 - error: Base classes for class "SynoDSMSensor" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/sensor.py:423:7 - error: Base classes for class "SynoDSMSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/sensor.py:423:7 - error: Base classes for class "SynoDSMSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/sensor.py:428:5 - error: "entity_description" overrides symbol of same name in class "SynologyDSMBaseEntity" +   Variable is mutable so its type is invariant +     Override type "SynologyDSMSensorEntityDescription" is not the same as base type "SynologyDSMEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/sensor.py:428:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SynologyDSMSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/sensor.py:444:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/sensor.py:468:5 - error: "entity_description" overrides symbol of same name in class "SynologyDSMBaseEntity" +   Variable is mutable so its type is invariant +     Override type "SynologyDSMSensorEntityDescription" is not the same as base type "SynologyDSMEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/sensor.py:481:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/sensor.py:492:5 - error: "entity_description" overrides symbol of same name in class "SynologyDSMBaseEntity" +   Variable is mutable so its type is invariant +     Override type "SynologyDSMSensorEntityDescription" is not the same as base type "SynologyDSMEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/sensor.py:505:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/sensor.py:521:21 - error: "attr" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/synology_dsm/sensor.py:523:12 - error: "attr" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/synology_dsm/sensor.py:560:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/synology_dsm/switch.py + /homeassistant/components/synology_dsm/switch.py:58:7 - error: Base classes for class "SynoDSMSurveillanceHomeModeToggle" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/switch.py:58:7 - error: Base classes for class "SynoDSMSurveillanceHomeModeToggle" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/switch.py:63:5 - error: "entity_description" overrides symbol of same name in class "SynologyDSMBaseEntity" +   Variable is mutable so its type is invariant +     Override type "SynologyDSMSwitchEntityDescription" is not the same as base type "SynologyDSMEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/switch.py:63:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "SynologyDSMSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/switch.py:77:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/switch.py:106:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/switch.py:111:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/synology_dsm/update.py + /homeassistant/components/synology_dsm/update.py:50:7 - error: Base classes for class "SynoDSMUpdateEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/update.py:50:7 - error: Base classes for class "SynoDSMUpdateEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/update.py:55:5 - error: "entity_description" overrides symbol of same name in class "SynologyDSMBaseEntity" +   Variable is mutable so its type is invariant +     Override type "SynologyDSMUpdateEntityEntityDescription" is not the same as base type "SynologyDSMEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/update.py:55:5 - error: "entity_description" overrides symbol of same name in class "UpdateEntity" +   Variable is mutable so its type is invariant +     Override type "SynologyDSMUpdateEntityEntityDescription" is not the same as base type "UpdateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/update.py:59:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/update.py:64:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/update.py:71:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/synology_dsm/update.py:80:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/system_bridge/binary_sensor.py + /homeassistant/components/system_bridge/binary_sensor.py:91:7 - error: Base classes for class "SystemBridgeBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/binary_sensor.py:91:7 - error: Base classes for class "SystemBridgeBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/binary_sensor.py:91:7 - error: Base classes for class "SystemBridgeBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/binary_sensor.py:108:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SystemBridgeBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/binary_sensor.py:108:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "SystemBridgeBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/binary_sensor.py:111:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/system_bridge/data.py + /homeassistant/components/system_bridge/data.py:24:20 - error: Type "None" is not assignable to declared type "Disks" +   "None" is not assignable to "Disks" (reportAssignmentType) + /homeassistant/components/system_bridge/data.py:28:22 - error: Type "None" is not assignable to declared type "Memory" +   "None" is not assignable to "Memory" (reportAssignmentType) + /homeassistant/components/system_bridge/data.py:30:22 - error: Type "None" is not assignable to declared type "System" +   "None" is not assignable to "System" (reportAssignmentType) +/homeassistant/components/system_bridge/entity.py + /homeassistant/components/system_bridge/entity.py:35:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/entity.py:40:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/system_bridge/media_player.py + /homeassistant/components/system_bridge/media_player.py:86:7 - error: Base classes for class "SystemBridgeMediaPlayer" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/media_player.py:86:7 - error: Base classes for class "SystemBridgeMediaPlayer" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/media_player.py:103:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "MediaPlayerEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/media_player.py:106:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/media_player.py:111:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/media_player.py:111:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/media_player.py:135:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/media_player.py:135:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/media_player.py:145:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/media_player.py:152:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/media_player.py:159:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/media_player.py:166:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/media_player.py:171:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/media_player.py:176:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/media_player.py:181:9 - error: "media_album_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/media_player.py:186:9 - error: "media_track" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/media_player.py:191:9 - error: "shuffle" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/media_player.py:196:9 - error: "repeat" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[RepeatMode | str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/system_bridge/sensor.py + /homeassistant/components/system_bridge/sensor.py:642:7 - error: Base classes for class "SystemBridgeSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/sensor.py:642:7 - error: Base classes for class "SystemBridgeSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/sensor.py:642:7 - error: Base classes for class "SystemBridgeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/sensor.py:659:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SystemBridgeSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/sensor.py:659:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SystemBridgeSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/sensor.py:664:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/system_bridge/update.py + /homeassistant/components/system_bridge/update.py:34:7 - error: Base classes for class "SystemBridgeUpdateEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/update.py:34:7 - error: Base classes for class "SystemBridgeUpdateEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/update.py:34:7 - error: Base classes for class "SystemBridgeUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/update.py:54:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/update.py:59:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/system_bridge/update.py:64:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/systemmonitor/binary_sensor.py + /homeassistant/components/systemmonitor/binary_sensor.py:133:7 - error: Base classes for class "SystemMonitorSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/systemmonitor/binary_sensor.py:151:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SysMonitorBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/systemmonitor/binary_sensor.py:151:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "SysMonitorBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/systemmonitor/binary_sensor.py:153:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/systemmonitor/binary_sensor.py:177:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/systemmonitor/coordinator.py + /homeassistant/components/systemmonitor/coordinator.py:252:33 - error: Cannot access attribute "pid" for class "Error" +   Attribute "pid" is unknown (reportAttributeAccessIssue) + /homeassistant/components/systemmonitor/coordinator.py:253:33 - error: Cannot access attribute "name" for class "Error" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/systemmonitor/coordinator.py:266:38 - error: "sensors_temperatures" is not a known attribute of module "psutil" (reportAttributeAccessIssue) + /homeassistant/components/systemmonitor/coordinator.py:274:44 - error: "sensors_fans" is not a known attribute of module "psutil" (reportAttributeAccessIssue) +/homeassistant/components/systemmonitor/sensor.py + /homeassistant/components/systemmonitor/sensor.py:643:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SysMonitorSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/systemmonitor/sensor.py:643:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "SysMonitorSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/systemmonitor/sensor.py:648:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/systemmonitor/sensor.py:684:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/tado/binary_sensor.py + /homeassistant/components/tado/binary_sensor.py:160:7 - error: Base classes for class "TadoDeviceBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tado/binary_sensor.py:172:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TadoBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/binary_sensor.py:172:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TadoBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/binary_sensor.py:195:7 - error: Base classes for class "TadoZoneBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tado/binary_sensor.py:208:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TadoBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/binary_sensor.py:208:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TadoBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tado/climate.py + /homeassistant/components/tado/climate.py:340:38 - error: "TadoZone" is not a known attribute of module "PyTado" (reportAttributeAccessIssue) + /homeassistant/components/tado/climate.py:394:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/climate.py:399:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/climate.py:404:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/climate.py:412:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/climate.py:422:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/climate.py:445:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/climate.py:459:9 - error: "preset_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/climate.py:471:9 - error: "target_temperature_step" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/climate.py:478:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/climate.py:539:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/climate.py:544:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/climate.py:557:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/climate.py:570:9 - error: "swing_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/climate.py:591:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/climate.py:813:20 - error: Operator "in" not supported for types "str | None" and "str | list[Any]" +   Operator "in" not supported for types "None" and "str" (reportOperatorIssue) +/homeassistant/components/tado/config_flow.py + /homeassistant/components/tado/config_flow.py:75:29 - error: Argument of type "str | None" cannot be assigned to parameter "val" of type "str | SplitResult | URL | UndefinedType" in function "__new__" +   Type "str | None" is not assignable to type "str | SplitResult | URL | UndefinedType" +     Type "None" is not assignable to type "str | SplitResult | URL | UndefinedType" +       "None" is not assignable to "str" +       "None" is not assignable to "SplitResult" +       "None" is not assignable to "URL" +       "None" is not assignable to "UndefinedType" (reportArgumentType) + /homeassistant/components/tado/config_flow.py:110:38 - error: Argument of type "dict[str, str | Unbound | None]" cannot be assigned to parameter "description_placeholders" of type "Mapping[str, str] | None" in function "async_show_progress" +   Type "dict[str, str | Unbound | None]" is not assignable to type "Mapping[str, str] | None" +     "dict[str, str | Unbound | None]" is not assignable to "Mapping[str, str]" +       Type parameter "_VT_co@Mapping" is covariant, but "str | Unbound | None" is not a subtype of "str" +         Type "str | Unbound | None" is not assignable to type "str" +           "None" is not assignable to "str" +     "dict[str, str | Unbound | None]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/tado/config_flow.py:111:24 - error: "tado_device_url" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/tado/config_flow.py:112:25 - error: "user_code" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/tado/coordinator.py + /homeassistant/components/tado/coordinator.py:315:33 - error: Argument of type "Unknown | None" cannot be assigned to parameter "zone_id" of type "int" in function "_update_zone" +   Type "Unknown | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) +/homeassistant/components/tado/device_tracker.py + /homeassistant/components/tado/device_tracker.py:81:7 - error: Base classes for class "TadoDeviceTrackerEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tado/device_tracker.py:134:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/device_tracker.py:139:9 - error: "location_name" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tado/sensor.py + /homeassistant/components/tado/sensor.py:229:7 - error: Base classes for class "TadoHomeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tado/sensor.py:240:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TadoSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/sensor.py:240:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TadoSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/sensor.py:259:68 - error: "tado_sensor_data" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/tado/sensor.py:262:17 - error: "tado_sensor_data" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/tado/sensor.py:267:7 - error: Base classes for class "TadoZoneSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tado/sensor.py:280:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TadoSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/sensor.py:280:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TadoSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tado/switch.py + /homeassistant/components/tado/switch.py:41:7 - error: Base classes for class "TadoChildLockSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/tado/water_heater.py + /homeassistant/components/tado/water_heater.py:131:7 - error: Base classes for class "TadoWaterHeater" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tado/water_heater.py:178:9 - error: "current_operation" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/water_heater.py:183:9 - error: "target_temperature" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tado/water_heater.py:188:9 - error: "is_away_mode_on" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tag/__init__.py + /homeassistant/components/tag/__init__.py:404:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/tag/__init__.py:414:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tailscale/binary_sensor.py + /homeassistant/components/tailscale/binary_sensor.py:126:7 - error: Base classes for class "TailscaleBinarySensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tailscale/binary_sensor.py:126:7 - error: Base classes for class "TailscaleBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tailscale/binary_sensor.py:129:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TailscaleBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tailscale/binary_sensor.py:132:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tailscale/entity.py + /homeassistant/components/tailscale/entity.py:36:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tailscale/sensor.py + /homeassistant/components/tailscale/sensor.py:73:7 - error: Base classes for class "TailscaleSensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tailscale/sensor.py:73:7 - error: Base classes for class "TailscaleSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tailscale/sensor.py:76:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TailscaleSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tailscale/sensor.py:79:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/tailwind/binary_sensor.py + /homeassistant/components/tailwind/binary_sensor.py:54:7 - error: Base classes for class "TailwindDoorBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tailwind/binary_sensor.py:57:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TailwindDoorBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tailwind/binary_sensor.py:60:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tailwind/button.py + /homeassistant/components/tailwind/button.py:58:7 - error: Base classes for class "TailwindButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tailwind/button.py:61:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "TailwindButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tailwind/cover.py + /homeassistant/components/tailwind/cover.py:42:7 - error: Base classes for class "TailwindDoorCoverEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tailwind/cover.py:52:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tailwind/number.py + /homeassistant/components/tailwind/number.py:62:7 - error: Base classes for class "TailwindNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tailwind/number.py:65:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "TailwindNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tailwind/number.py:68:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tami4/__init__.py + /homeassistant/components/tami4/__init__.py:23:21 - error: Argument of type "tuple[Any | None]" cannot be assigned to parameter "args" of type "_Ts@async_add_executor_job" in function "async_add_executor_job" +   Type "*tuple[Any | None]" is not assignable to type "*tuple[str]" +     "*tuple[Any | None]" is not assignable to "*tuple[str]" +       Tuple entry 1 is incorrect type +         Type "Any | None" is not assignable to type "str" +           "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/tami4/button.py + /homeassistant/components/tami4/button.py:76:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "Tami4EdgeButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tami4/button.py:86:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "Tami4EdgeDrinkButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tami4/sensor.py + /homeassistant/components/tami4/sensor.py:74:7 - error: Base classes for class "Tami4EdgeSensorEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tami4/sensor.py:74:7 - error: Base classes for class "Tami4EdgeSensorEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tami4/sensor.py:74:7 - error: Base classes for class "Tami4EdgeSensorEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tami4/sensor.py:74:7 - error: Base classes for class "Tami4EdgeSensorEntity" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tami4/sensor.py:74:7 - error: Base classes for class "Tami4EdgeSensorEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tami4/sensor.py:74:7 - error: Base classes for class "Tami4EdgeSensorEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tami4/sensor.py:74:7 - error: Base classes for class "Tami4EdgeSensorEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tami4/sensor.py:74:7 - error: Base classes for class "Tami4EdgeSensorEntity" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tami4/sensor.py:74:7 - error: Base classes for class "Tami4EdgeSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tami4/sensor.py:89:36 - error: Argument of type "Self@Tami4EdgeSensorEntity" cannot be assigned to parameter "self" of type "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" in function "__init__" +   "Tami4EdgeSensorEntity*" is not assignable to "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" +     Type parameter "_DataUpdateCoordinatorT@CoordinatorEntity" is invariant, but "Tami4EdgeCoordinator" is not the same as "DataUpdateCoordinator[dict[str, Any]]" (reportArgumentType) + /homeassistant/components/tami4/sensor.py:89:42 - error: Argument of type "Tami4EdgeCoordinator" cannot be assigned to parameter "coordinator" of type "DataUpdateCoordinator[dict[str, Any]]" in function "__init__" +   "Tami4EdgeCoordinator" is not assignable to "DataUpdateCoordinator[dict[str, Any]]" +     Type parameter "_DataT@DataUpdateCoordinator" is invariant, but "FlattenedWaterQuality" is not the same as "dict[str, Any]" (reportArgumentType) +/homeassistant/components/tank_utility/sensor.py + /homeassistant/components/tank_utility/sensor.py:9:26 - error: "auth" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/tank_utility/sensor.py:9:32 - error: "device" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/tank_utility/sensor.py:69:53 - error: "token" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/tank_utility/sensor.py:94:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/tank_utility/sensor.py:99:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tank_utility/sensor.py:104:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tank_utility/sensor.py:109:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tankerkoenig/binary_sensor.py + /homeassistant/components/tankerkoenig/binary_sensor.py:43:7 - error: Base classes for class "StationOpenBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tankerkoenig/binary_sensor.py:65:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tankerkoenig/sensor.py + /homeassistant/components/tankerkoenig/sensor.py:65:7 - error: Base classes for class "FuelPriceSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tankerkoenig/sensor.py:113:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/tapsaff/binary_sensor.py + /homeassistant/components/tapsaff/binary_sensor.py:8:21 - error: "TapsAff" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/tapsaff/binary_sensor.py:59:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tapsaff/binary_sensor.py:64:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tasmota/__init__.py + /homeassistant/components/tasmota/__init__.py:139:59 - error: Could not access item in TypedDict +   "mac" is not a required key in "TasmotaDeviceConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/tasmota/__init__.py:142:37 - error: Could not access item in TypedDict +   "ip" is not a required key in "TasmotaDeviceConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/tasmota/__init__.py:143:47 - error: Could not access item in TypedDict +   "mac" is not a required key in "TasmotaDeviceConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/tasmota/__init__.py:144:22 - error: Could not access item in TypedDict +   "manufacturer" is not a required key in "TasmotaDeviceConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/tasmota/__init__.py:145:15 - error: Could not access item in TypedDict +   "md" is not a required key in "TasmotaDeviceConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/tasmota/__init__.py:146:14 - error: Could not access item in TypedDict +   "name" is not a required key in "TasmotaDeviceConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/tasmota/__init__.py:147:20 - error: Could not access item in TypedDict +   "sw" is not a required key in "TasmotaDeviceConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/tasmota/binary_sensor.py + /homeassistant/components/tasmota/binary_sensor.py:55:7 - error: Base classes for class "TasmotaBinarySensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/binary_sensor.py:55:7 - error: Base classes for class "TasmotaBinarySensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/binary_sensor.py:55:7 - error: Base classes for class "TasmotaBinarySensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/binary_sensor.py:55:7 - error: Base classes for class "TasmotaBinarySensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/binary_sensor.py:55:7 - error: Base classes for class "TasmotaBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/binary_sensor.py:55:7 - error: Base classes for class "TasmotaBinarySensor" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/binary_sensor.py:55:7 - error: Base classes for class "TasmotaBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/binary_sensor.py:55:7 - error: Base classes for class "TasmotaBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/binary_sensor.py:64:5 - error: "_tasmota_entity" overrides symbol of same name in class "TasmotaAvailability" +   Variable is mutable so its type is invariant +     Override type "TasmotaSwitch" is not the same as base type "TasmotaAvailability" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/binary_sensor.py:104:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tasmota/camera.py + /homeassistant/components/tasmota/camera.py:64:7 - error: Base classes for class "TasmotaCamera" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/camera.py:64:7 - error: Base classes for class "TasmotaCamera" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/camera.py:64:7 - error: Base classes for class "TasmotaCamera" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/camera.py:64:7 - error: Base classes for class "TasmotaCamera" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/camera.py:64:7 - error: Base classes for class "TasmotaCamera" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/camera.py:64:7 - error: Base classes for class "TasmotaCamera" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/camera.py:64:7 - error: Base classes for class "TasmotaCamera" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/camera.py:64:7 - error: Base classes for class "TasmotaCamera" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/camera.py:72:5 - error: "_tasmota_entity" overrides symbol of same name in class "TasmotaAvailability" +   Variable is mutable so its type is invariant +     Override type "TasmotaCamera" is not the same as base type "TasmotaAvailability" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/camera.py:103:36 - error: Cannot access attribute "Request" for class "object" +   Attribute "Request" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tasmota/camera.py:104:22 - error: Cannot access attribute "StreamResponse" for class "object" +   Attribute "StreamResponse" is unknown (reportAttributeAccessIssue) +/homeassistant/components/tasmota/cover.py + /homeassistant/components/tasmota/cover.py:53:7 - error: Base classes for class "TasmotaCover" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/cover.py:53:7 - error: Base classes for class "TasmotaCover" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/cover.py:53:7 - error: Base classes for class "TasmotaCover" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/cover.py:53:7 - error: Base classes for class "TasmotaCover" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/cover.py:53:7 - error: Base classes for class "TasmotaCover" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/cover.py:53:7 - error: Base classes for class "TasmotaCover" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/cover.py:53:7 - error: Base classes for class "TasmotaCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/cover.py:53:7 - error: Base classes for class "TasmotaCover" define variable "supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/cover.py:53:7 - error: Base classes for class "TasmotaCover" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/cover.py:53:7 - error: Base classes for class "TasmotaCover" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/cover.py:53:7 - error: Base classes for class "TasmotaCover" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/cover.py:60:5 - error: "_tasmota_entity" overrides symbol of same name in class "TasmotaAvailability" +   Variable is mutable so its type is invariant +     Override type "TasmotaShutter" is not the same as base type "TasmotaAvailability" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/cover.py:100:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/cover.py:108:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/cover.py:116:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/cover.py:121:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/cover.py:126:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tasmota/device_trigger.py + /homeassistant/components/tasmota/device_trigger.py:269:40 - error: Argument of type "DiscoveryHashType | None" cannot be assigned to parameter "discovery_hash" of type "DiscoveryHashType" in function "clear_discovery_hash" +   Type "DiscoveryHashType | None" is not assignable to type "DiscoveryHashType" +     "None" is not assignable to "tuple[str, str, str, str | int]" (reportArgumentType) +/homeassistant/components/tasmota/discovery.py + /homeassistant/components/tasmota/discovery.py:207:17 - error: Could not access item in TypedDict +   "name" is not a required key in "TasmotaDeviceConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/tasmota/discovery.py:208:17 - error: Could not access item in TypedDict +   "ip" is not a required key in "TasmotaDeviceConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/tasmota/discovery.py:220:29 - error: Could not access item in TypedDict +   "name" is not a required key in "TasmotaDeviceConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/tasmota/discovery.py:221:27 - error: Could not access item in TypedDict +   "ip" is not a required key in "TasmotaDeviceConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/tasmota/entity.py + /homeassistant/components/tasmota/entity.py:69:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/entity.py:74:9 - error: "should_poll" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/entity.py:79:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/entity.py:149:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/tasmota/fan.py + /homeassistant/components/tasmota/fan.py:61:7 - error: Base classes for class "TasmotaFan" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/fan.py:61:7 - error: Base classes for class "TasmotaFan" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/fan.py:61:7 - error: Base classes for class "TasmotaFan" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/fan.py:61:7 - error: Base classes for class "TasmotaFan" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/fan.py:61:7 - error: Base classes for class "TasmotaFan" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/fan.py:61:7 - error: Base classes for class "TasmotaFan" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/fan.py:61:7 - error: Base classes for class "TasmotaFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/fan.py:61:7 - error: Base classes for class "TasmotaFan" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/fan.py:61:7 - error: Base classes for class "TasmotaFan" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/fan.py:61:7 - error: Base classes for class "TasmotaFan" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/fan.py:74:5 - error: "_tasmota_entity" overrides symbol of same name in class "TasmotaAvailability" +   Variable is mutable so its type is invariant +     Override type "TasmotaFan" is not the same as base type "TasmotaAvailability" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/fan.py:99:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/fan.py:104:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tasmota/light.py + /homeassistant/components/tasmota/light.py:86:7 - error: Base classes for class "TasmotaLight" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/light.py:86:7 - error: Base classes for class "TasmotaLight" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/light.py:86:7 - error: Base classes for class "TasmotaLight" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/light.py:86:7 - error: Base classes for class "TasmotaLight" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/light.py:86:7 - error: Base classes for class "TasmotaLight" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/light.py:86:7 - error: Base classes for class "TasmotaLight" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/light.py:86:7 - error: Base classes for class "TasmotaLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/light.py:86:7 - error: Base classes for class "TasmotaLight" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/light.py:86:7 - error: Base classes for class "TasmotaLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/light.py:86:7 - error: Base classes for class "TasmotaLight" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/light.py:86:7 - error: Base classes for class "TasmotaLight" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/light.py:94:5 - error: "_tasmota_entity" overrides symbol of same name in class "TasmotaAvailability" +   Variable is mutable so its type is invariant +     Override type "TasmotaLight" is not the same as base type "TasmotaAvailability" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/light.py:193:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/light.py:198:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/light.py:226:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/light.py:231:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/light.py:236:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/light.py:244:9 - error: "supported_color_modes" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[set[ColorMode] | set[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tasmota/sensor.py + /homeassistant/components/tasmota/sensor.py:272:7 - error: Base classes for class "TasmotaSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/sensor.py:272:7 - error: Base classes for class "TasmotaSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/sensor.py:272:7 - error: Base classes for class "TasmotaSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/sensor.py:272:7 - error: Base classes for class "TasmotaSensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/sensor.py:272:7 - error: Base classes for class "TasmotaSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/sensor.py:272:7 - error: Base classes for class "TasmotaSensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/sensor.py:272:7 - error: Base classes for class "TasmotaSensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/sensor.py:272:7 - error: Base classes for class "TasmotaSensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/sensor.py:272:7 - error: Base classes for class "TasmotaSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/sensor.py:272:7 - error: Base classes for class "TasmotaSensor" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/sensor.py:272:7 - error: Base classes for class "TasmotaSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/sensor.py:272:7 - error: Base classes for class "TasmotaSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/sensor.py:275:5 - error: "_tasmota_entity" overrides symbol of same name in class "TasmotaAvailability" +   Variable is mutable so its type is invariant +     Override type "TasmotaSensor" is not the same as base type "TasmotaAvailability" (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/sensor.py:302:49 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/tasmota/sensor.py:303:13 - error: Argument of type "str | None" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/tasmota/sensor.py:330:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/tasmota/switch.py + /homeassistant/components/tasmota/switch.py:50:7 - error: Base classes for class "TasmotaSwitch" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/switch.py:50:7 - error: Base classes for class "TasmotaSwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/switch.py:50:7 - error: Base classes for class "TasmotaSwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/switch.py:50:7 - error: Base classes for class "TasmotaSwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/switch.py:50:7 - error: Base classes for class "TasmotaSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/switch.py:50:7 - error: Base classes for class "TasmotaSwitch" define variable "should_poll" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/switch.py:50:7 - error: Base classes for class "TasmotaSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/switch.py:50:7 - error: Base classes for class "TasmotaSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/switch.py:50:7 - error: Base classes for class "TasmotaSwitch" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tasmota/switch.py:58:5 - error: "_tasmota_entity" overrides symbol of same name in class "TasmotaAvailability" +   Variable is mutable so its type is invariant +     Override type "TasmotaRelay" is not the same as base type "TasmotaAvailability" (reportIncompatibleVariableOverride) +/homeassistant/components/tautulli/entity.py + /homeassistant/components/tautulli/entity.py:35:35 - error: Argument of type "set[tuple[Literal['tautulli'], int | str | None]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]]" in function "__init__" +   Type "int | str | None" is not assignable to type "str" +     "int" is not assignable to "str" (reportArgumentType) +/homeassistant/components/tautulli/sensor.py + /homeassistant/components/tautulli/sensor.py:42:17 - error: "PyTautulliApiHomeStats" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /homeassistant/components/tautulli/sensor.py:243:7 - error: Base classes for class "TautulliSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tautulli/sensor.py:246:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TautulliSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tautulli/sensor.py:249:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/tautulli/sensor.py:252:13 - error: Argument of type "list[PyTautulliApiHomeStats] | None" cannot be assigned to parameter of type "PyTautulliApiHomeStats" +   Type "list[PyTautulliApiHomeStats] | None" is not assignable to type "PyTautulliApiHomeStats" +     "list[PyTautulliApiHomeStats]" is not assignable to "PyTautulliApiHomeStats" (reportArgumentType) + /homeassistant/components/tautulli/sensor.py:253:13 - error: Argument of type "PyTautulliApiActivity | None" cannot be assigned to parameter of type "PyTautulliApiActivity" +   Type "PyTautulliApiActivity | None" is not assignable to type "PyTautulliApiActivity" +     "None" is not assignable to "PyTautulliApiActivity" (reportArgumentType) + /homeassistant/components/tautulli/sensor.py:258:7 - error: Base classes for class "TautulliSessionSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tautulli/sensor.py:261:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TautulliSessionSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tautulli/sensor.py:275:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/tautulli/sensor.py:278:28 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) +/homeassistant/components/tcp/binary_sensor.py + /homeassistant/components/tcp/binary_sensor.py:32:7 - error: Base classes for class "TcpBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tcp/binary_sensor.py:36:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tcp/entity.py + /homeassistant/components/tcp/entity.py:65:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tcp/sensor.py + /homeassistant/components/tcp/sensor.py:32:7 - error: Base classes for class "TcpSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tcp/sensor.py:36:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/tcp/sensor.py:41:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/technove/binary_sensor.py + /homeassistant/components/technove/binary_sensor.py:77:7 - error: Base classes for class "TechnoVEBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/technove/binary_sensor.py:88:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TechnoVEBinarySensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/technove/binary_sensor.py:88:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TechnoVEBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/technove/binary_sensor.py:92:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/technove/number.py + /homeassistant/components/technove/number.py:46:48 - error: Argument of type "float" cannot be assigned to parameter "max_current" of type "int" in function "set_max_current" +   "float" is not assignable to "int" (reportArgumentType) + /homeassistant/components/technove/number.py:58:53 - error: Cannot access attribute "info" for class "TechnoVE" +   Attribute "info" is unknown (reportAttributeAccessIssue) + /homeassistant/components/technove/number.py:59:49 - error: Cannot access attribute "info" for class "TechnoVE" +   Attribute "info" is unknown (reportAttributeAccessIssue) + /homeassistant/components/technove/number.py:76:7 - error: Base classes for class "TechnoVENumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/technove/number.py:87:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TechnoVENumberDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/technove/number.py:87:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "TechnoVENumberDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/technove/number.py:91:9 - error: "native_max_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/technove/number.py:93:60 - error: Argument of type "Station" cannot be assigned to parameter of type "TechnoVE" +   "Station" is not assignable to "TechnoVE" (reportArgumentType) + /homeassistant/components/technove/number.py:96:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/technove/number.py:98:56 - error: Argument of type "Station" cannot be assigned to parameter of type "TechnoVE" +   "Station" is not assignable to "TechnoVE" (reportArgumentType) + /homeassistant/components/technove/number.py:101:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/technove/sensor.py + /homeassistant/components/technove/sensor.py:132:7 - error: Base classes for class "TechnoVESensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/technove/sensor.py:144:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TechnoVESensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/technove/sensor.py:144:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TechnoVESensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/technove/sensor.py:147:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/technove/switch.py + /homeassistant/components/technove/switch.py:92:7 - error: Base classes for class "TechnoVESwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/technove/switch.py:103:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TechnoVESwitchDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/technove/switch.py:103:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "TechnoVESwitchDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/technove/switch.py:107:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/technove/switch.py:113:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/technove/switch.py:118:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/ted5000/sensor.py + /homeassistant/components/ted5000/sensor.py:106:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/tedee/binary_sensor.py + /homeassistant/components/tedee/binary_sensor.py:100:5 - error: "entity_description" overrides symbol of same name in class "TedeeDescriptionEntity" +   Variable is mutable so its type is invariant +     Override type "TedeeBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tedee/binary_sensor.py:100:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TedeeBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tedee/binary_sensor.py:103:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tedee/binary_sensor.py:108:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/tedee/lock.py + /homeassistant/components/tedee/lock.py:55:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tedee/lock.py:65:9 - error: "is_unlocking" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tedee/lock.py:70:9 - error: "is_open" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tedee/lock.py:75:9 - error: "is_opening" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tedee/lock.py:80:9 - error: "is_locking" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tedee/lock.py:85:9 - error: "is_jammed" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tedee/lock.py:90:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/tedee/lock.py:133:9 - error: "supported_features" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[LockEntityFeature]" (reportIncompatibleVariableOverride) +/homeassistant/components/tedee/sensor.py + /homeassistant/components/tedee/sensor.py:72:7 - error: Base classes for class "TedeeSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tedee/sensor.py:75:5 - error: "entity_description" overrides symbol of same name in class "TedeeDescriptionEntity" +   Variable is mutable so its type is invariant +     Override type "TedeeSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tedee/sensor.py:75:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TedeeSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tedee/sensor.py:78:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/telegram_bot/bot.py + /homeassistant/components/telegram_bot/bot.py:455:54 - error: "split" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/telegram_bot/bot.py:1109:40 - error: "req" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/telegram_bot/bot.py:1112:56 - error: "req" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/telegram_bot/config_flow.py + /homeassistant/components/telegram_bot/config_flow.py:232:21 - error: Could not access item in TypedDict +   "description_placeholders" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/telegram_bot/config_flow.py:254:17 - error: Could not access item in TypedDict +   "description_placeholders" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/tellduslive/binary_sensor.py + /homeassistant/components/tellduslive/binary_sensor.py:33:7 - error: Base classes for class "TelldusLiveSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/binary_sensor.py:33:7 - error: Base classes for class "TelldusLiveSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/binary_sensor.py:33:7 - error: Base classes for class "TelldusLiveSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/binary_sensor.py:33:7 - error: Base classes for class "TelldusLiveSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/binary_sensor.py:33:7 - error: Base classes for class "TelldusLiveSensor" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/binary_sensor.py:39:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tellduslive/config_flow.py + /homeassistant/components/tellduslive/config_flow.py:120:15 - error: Method "async_step_discovery" overrides class "ConfigFlow" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "DiscoveryInfoType", override parameter is type "list[str]" +     "dict[str, Any]" is not assignable to "list[str]" (reportIncompatibleMethodOverride) +/homeassistant/components/tellduslive/cover.py + /homeassistant/components/tellduslive/cover.py:36:7 - error: Base classes for class "TelldusLiveCover" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/cover.py:36:7 - error: Base classes for class "TelldusLiveCover" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/cover.py:36:7 - error: Base classes for class "TelldusLiveCover" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/cover.py:36:7 - error: Base classes for class "TelldusLiveCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/cover.py:36:7 - error: Base classes for class "TelldusLiveCover" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/cover.py:42:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tellduslive/entity.py + /homeassistant/components/tellduslive/entity.py:61:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/entity.py:66:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/entity.py:71:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/entity.py:101:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/entity.py:106:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tellduslive/light.py + /homeassistant/components/tellduslive/light.py:38:7 - error: Base classes for class "TelldusLiveLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/light.py:38:7 - error: Base classes for class "TelldusLiveLight" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/light.py:38:7 - error: Base classes for class "TelldusLiveLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/light.py:38:7 - error: Base classes for class "TelldusLiveLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/light.py:38:7 - error: Base classes for class "TelldusLiveLight" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/light.py:56:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/light.py:61:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tellduslive/sensor.py + /homeassistant/components/tellduslive/sensor.py:140:7 - error: Base classes for class "TelldusLiveSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/sensor.py:140:7 - error: Base classes for class "TelldusLiveSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/sensor.py:140:7 - error: Base classes for class "TelldusLiveSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/sensor.py:140:7 - error: Base classes for class "TelldusLiveSensor" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/sensor.py:182:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/sensor.py:195:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tellduslive/switch.py + /homeassistant/components/tellduslive/switch.py:35:7 - error: Base classes for class "TelldusLiveSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/switch.py:35:7 - error: Base classes for class "TelldusLiveSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/switch.py:35:7 - error: Base classes for class "TelldusLiveSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/switch.py:35:7 - error: Base classes for class "TelldusLiveSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/switch.py:35:7 - error: Base classes for class "TelldusLiveSwitch" define variable "assumed_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellduslive/switch.py:41:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tellstick/__init__.py + /homeassistant/components/tellstick/__init__.py:5:6 - error: Import "tellcore.constants" could not be resolved (reportMissingImports) + /homeassistant/components/tellstick/__init__.py:6:6 - error: Import "tellcore.telldus" could not be resolved (reportMissingImports) + /homeassistant/components/tellstick/__init__.py:7:6 - error: Import "tellcorenet" could not be resolved (reportMissingImports) +/homeassistant/components/tellstick/cover.py + /homeassistant/components/tellstick/cover.py:48:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tellstick/cover.py:53:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/tellstick/entity.py + /homeassistant/components/tellstick/entity.py:6:6 - error: Import "tellcore.constants" could not be resolved (reportMissingImports) + /homeassistant/components/tellstick/entity.py:7:6 - error: Import "tellcore.library" could not be resolved (reportMissingImports) +/homeassistant/components/tellstick/light.py + /homeassistant/components/tellstick/light.py:42:7 - error: Base classes for class "TellstickLight" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tellstick/light.py:55:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tellstick/sensor.py + /homeassistant/components/tellstick/sensor.py:8:6 - error: Import "tellcore" could not be resolved (reportMissingImports) + /homeassistant/components/tellstick/sensor.py:9:8 - error: Import "tellcore.constants" could not be resolved (reportMissingImports) + /homeassistant/components/tellstick/sensor.py:136:38 - error: "named_sensors" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/tellstick/sensor.py:137:31 - error: "named_sensors" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/tellstick/sensor.py:138:30 - error: "named_sensors" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/tellstick/sensor.py:139:31 - error: "named_sensors" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/tellstick/sensor.py:140:36 - error: "named_sensors" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/tellstick/sensor.py:141:31 - error: "named_sensors" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/tellstick/switch.py + /homeassistant/components/tellstick/switch.py:43:7 - error: Base classes for class "TellstickSwitch" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/template/alarm_control_panel.py + /homeassistant/components/template/alarm_control_panel.py:207:7 - error: Base classes for class "AbstractTemplateAlarmControlPanel" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/alarm_control_panel.py:207:7 - error: Base classes for class "AbstractTemplateAlarmControlPanel" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/alarm_control_panel.py:207:7 - error: Base classes for class "AbstractTemplateAlarmControlPanel" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/alarm_control_panel.py:222:14 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AlarmControlPanelEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/template/alarm_control_panel.py:388:7 - error: Base classes for class "TriggerAlarmControlPanelEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/alarm_control_panel.py:388:7 - error: Base classes for class "TriggerAlarmControlPanelEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/alarm_control_panel.py:388:7 - error: Base classes for class "TriggerAlarmControlPanelEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/alarm_control_panel.py:388:7 - error: Base classes for class "TriggerAlarmControlPanelEntity" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/alarm_control_panel.py:388:7 - error: Base classes for class "TriggerAlarmControlPanelEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/alarm_control_panel.py:388:7 - error: Base classes for class "TriggerAlarmControlPanelEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/template/binary_sensor.py + /homeassistant/components/template/binary_sensor.py:171:7 - error: Base classes for class "StateBinarySensorEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/binary_sensor.py:171:7 - error: Base classes for class "StateBinarySensorEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/binary_sensor.py:171:7 - error: Base classes for class "StateBinarySensorEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/binary_sensor.py:171:7 - error: Base classes for class "StateBinarySensorEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/binary_sensor.py:187:14 - error: "_template" overrides symbol of same name in class "AbstractTemplateEntity" +   Variable is mutable so its type is invariant +     Override type "Template" is not the same as base type "Template | None" (reportIncompatibleVariableOverride) + /homeassistant/components/template/binary_sensor.py:262:7 - error: Base classes for class "TriggerBinarySensorEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/binary_sensor.py:262:7 - error: Base classes for class "TriggerBinarySensorEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/binary_sensor.py:262:7 - error: Base classes for class "TriggerBinarySensorEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/binary_sensor.py:262:7 - error: Base classes for class "TriggerBinarySensorEntity" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/binary_sensor.py:262:7 - error: Base classes for class "TriggerBinarySensorEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/binary_sensor.py:262:7 - error: Base classes for class "TriggerBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/binary_sensor.py:262:7 - error: Base classes for class "TriggerBinarySensorEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/binary_sensor.py:262:7 - error: Base classes for class "TriggerBinarySensorEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/binary_sensor.py:262:7 - error: Base classes for class "TriggerBinarySensorEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/binary_sensor.py:262:7 - error: Base classes for class "TriggerBinarySensorEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/template/config_flow.py + /homeassistant/components/template/config_flow.py:753:25 - error: Could not access item in TypedDict +   "step_id" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/template/cover.py + /homeassistant/components/template/cover.py:241:14 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "CoverEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/template/cover.py:241:14 - error: "_attr_supported_features" overrides symbol of same name in class "CoverEntity" +   Variable is mutable so its type is invariant +     Override type "CoverEntityFeature" is not the same as base type "CoverEntityFeature | None" (reportIncompatibleVariableOverride) + /homeassistant/components/template/cover.py:259:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/cover.py:267:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/cover.py:272:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/cover.py:277:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/cover.py:287:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/cover.py:500:7 - error: Base classes for class "TriggerCoverEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/cover.py:500:7 - error: Base classes for class "TriggerCoverEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/cover.py:500:7 - error: Base classes for class "TriggerCoverEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/cover.py:500:7 - error: Base classes for class "TriggerCoverEntity" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/cover.py:500:7 - error: Base classes for class "TriggerCoverEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/cover.py:500:7 - error: Base classes for class "TriggerCoverEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/template/event.py + /homeassistant/components/template/event.py:202:7 - error: Base classes for class "TriggerEventEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/event.py:202:7 - error: Base classes for class "TriggerEventEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/event.py:202:7 - error: Base classes for class "TriggerEventEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/event.py:202:7 - error: Base classes for class "TriggerEventEntity" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/event.py:202:7 - error: Base classes for class "TriggerEventEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/event.py:202:7 - error: Base classes for class "TriggerEventEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/event.py:202:7 - error: Base classes for class "TriggerEventEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/event.py:202:7 - error: Base classes for class "TriggerEventEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/event.py:202:7 - error: Base classes for class "TriggerEventEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/event.py:202:7 - error: Base classes for class "TriggerEventEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/event.py:202:7 - error: Base classes for class "TriggerEventEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/event.py:202:7 - error: Base classes for class "TriggerEventEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/template/fan.py + /homeassistant/components/template/fan.py:244:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/fan.py:249:9 - error: "preset_modes" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/fan.py:259:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/fan.py:264:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/fan.py:269:9 - error: "oscillating" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/fan.py:274:9 - error: "current_direction" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/fan.py:547:7 - error: Base classes for class "TriggerFanEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/fan.py:547:7 - error: Base classes for class "TriggerFanEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/fan.py:547:7 - error: Base classes for class "TriggerFanEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/fan.py:547:7 - error: Base classes for class "TriggerFanEntity" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/fan.py:547:7 - error: Base classes for class "TriggerFanEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/fan.py:547:7 - error: Base classes for class "TriggerFanEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/template/image.py + /homeassistant/components/template/image.py:115:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/image.py:138:7 - error: Base classes for class "TriggerImageEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/image.py:138:7 - error: Base classes for class "TriggerImageEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/image.py:138:7 - error: Base classes for class "TriggerImageEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/image.py:138:7 - error: Base classes for class "TriggerImageEntity" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/image.py:138:7 - error: Base classes for class "TriggerImageEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/image.py:171:14 - error: "_attr_image_url" overrides symbol of same name in class "ImageEntity" +   Variable is mutable so its type is invariant +     Override type "str | None" is not the same as base type "str | UndefinedType | None" (reportIncompatibleVariableOverride) +/homeassistant/components/template/light.py + /homeassistant/components/template/light.py:325:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/light.py:353:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/light.py:358:9 - error: "rgb_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/light.py:363:9 - error: "rgbw_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/light.py:368:9 - error: "rgbww_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/light.py:373:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/light.py:378:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/light.py:383:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/light.py:388:9 - error: "supported_color_modes" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[set[ColorMode] | set[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/light.py:393:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/light.py:1125:7 - error: Base classes for class "TriggerLightEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/light.py:1125:7 - error: Base classes for class "TriggerLightEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/light.py:1125:7 - error: Base classes for class "TriggerLightEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/light.py:1125:7 - error: Base classes for class "TriggerLightEntity" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/light.py:1125:7 - error: Base classes for class "TriggerLightEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/light.py:1125:7 - error: Base classes for class "TriggerLightEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/template/lock.py + /homeassistant/components/template/lock.py:175:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/lock.py:180:9 - error: "is_jammed" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/lock.py:185:9 - error: "is_unlocking" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/lock.py:190:9 - error: "is_locking" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/lock.py:195:9 - error: "is_open" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/lock.py:200:9 - error: "is_opening" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/lock.py:205:9 - error: "code_format" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/lock.py:371:7 - error: Base classes for class "TriggerLockEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/lock.py:371:7 - error: Base classes for class "TriggerLockEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/lock.py:371:7 - error: Base classes for class "TriggerLockEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/lock.py:371:7 - error: Base classes for class "TriggerLockEntity" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/lock.py:371:7 - error: Base classes for class "TriggerLockEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/lock.py:371:7 - error: Base classes for class "TriggerLockEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/template/number.py + /homeassistant/components/template/number.py:202:7 - error: Base classes for class "TriggerNumberEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/number.py:202:7 - error: Base classes for class "TriggerNumberEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/number.py:202:7 - error: Base classes for class "TriggerNumberEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/number.py:202:7 - error: Base classes for class "TriggerNumberEntity" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/number.py:202:7 - error: Base classes for class "TriggerNumberEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/number.py:202:7 - error: Base classes for class "TriggerNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/template/select.py + /homeassistant/components/template/select.py:179:7 - error: Base classes for class "TriggerSelectEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/select.py:179:7 - error: Base classes for class "TriggerSelectEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/select.py:179:7 - error: Base classes for class "TriggerSelectEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/select.py:179:7 - error: Base classes for class "TriggerSelectEntity" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/select.py:179:7 - error: Base classes for class "TriggerSelectEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/select.py:179:7 - error: Base classes for class "TriggerSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/template/sensor.py + /homeassistant/components/template/sensor.py:233:14 - error: "_template" overrides symbol of same name in class "AbstractTemplateEntity" +   Variable is mutable so its type is invariant +     Override type "Template" is not the same as base type "Template | None" (reportIncompatibleVariableOverride) + /homeassistant/components/template/sensor.py:277:7 - error: Base classes for class "TriggerSensorEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/sensor.py:277:7 - error: Base classes for class "TriggerSensorEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/sensor.py:277:7 - error: Base classes for class "TriggerSensorEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/sensor.py:277:7 - error: Base classes for class "TriggerSensorEntity" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/sensor.py:277:7 - error: Base classes for class "TriggerSensorEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/sensor.py:277:7 - error: Base classes for class "TriggerSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/sensor.py:318:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/template/switch.py + /homeassistant/components/template/switch.py:150:7 - error: Base classes for class "AbstractTemplateSwitch" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/switch.py:150:7 - error: Base classes for class "AbstractTemplateSwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/switch.py:150:7 - error: Base classes for class "AbstractTemplateSwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/switch.py:150:7 - error: Base classes for class "AbstractTemplateSwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/switch.py:240:7 - error: Base classes for class "TriggerSwitchEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/switch.py:240:7 - error: Base classes for class "TriggerSwitchEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/switch.py:240:7 - error: Base classes for class "TriggerSwitchEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/switch.py:240:7 - error: Base classes for class "TriggerSwitchEntity" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/switch.py:240:7 - error: Base classes for class "TriggerSwitchEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/switch.py:240:7 - error: Base classes for class "TriggerSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/template/template_entity.py + /homeassistant/components/template/template_entity.py:141:28 - error: Argument of type "None" cannot be assigned to parameter "result" of type "str | TemplateError" in function "_default_update" +   Type "None" is not assignable to type "str | TemplateError" +     "None" is not assignable to "str" +     "None" is not assignable to "TemplateError" (reportArgumentType) +/homeassistant/components/template/trigger_entity.py + /homeassistant/components/template/trigger_entity.py:18:7 - error: Base classes for class "TriggerEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/trigger_entity.py:18:7 - error: Base classes for class "TriggerEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/trigger_entity.py:18:7 - error: Base classes for class "TriggerEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/trigger_entity.py:18:7 - error: Base classes for class "TriggerEntity" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/trigger_entity.py:18:7 - error: Base classes for class "TriggerEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/trigger_entity.py:32:36 - error: Argument of type "Self@TriggerEntity" cannot be assigned to parameter "self" of type "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" in function "__init__" +   "TriggerEntity*" is not assignable to "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" +     Type parameter "_DataUpdateCoordinatorT@CoordinatorEntity" is invariant, but "TriggerUpdateCoordinator" is not the same as "DataUpdateCoordinator[dict[str, Any]]" (reportArgumentType) + /homeassistant/components/template/trigger_entity.py:59:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/template/update.py + /homeassistant/components/template/update.py:298:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/update.py:368:7 - error: Base classes for class "TriggerUpdateEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/update.py:368:7 - error: Base classes for class "TriggerUpdateEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/update.py:368:7 - error: Base classes for class "TriggerUpdateEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/update.py:368:7 - error: Base classes for class "TriggerUpdateEntity" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/update.py:368:7 - error: Base classes for class "TriggerUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/template/vacuum.py + /homeassistant/components/template/vacuum.py:448:7 - error: Base classes for class "TriggerVacuumEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/vacuum.py:448:7 - error: Base classes for class "TriggerVacuumEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/vacuum.py:448:7 - error: Base classes for class "TriggerVacuumEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/vacuum.py:448:7 - error: Base classes for class "TriggerVacuumEntity" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/vacuum.py:448:7 - error: Base classes for class "TriggerVacuumEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/vacuum.py:448:7 - error: Base classes for class "TriggerVacuumEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/template/weather.py + /homeassistant/components/template/weather.py:256:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:261:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:266:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:271:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:276:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:281:9 - error: "ozone" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:286:9 - error: "uv_index" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:291:9 - error: "native_visibility" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:296:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:301:9 - error: "native_wind_gust_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:306:9 - error: "cloud_coverage" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:311:9 - error: "native_dew_point" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:316:9 - error: "native_apparent_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:333:9 - error: "attribution" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:532:7 - error: Base classes for class "TriggerWeatherEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:532:7 - error: Base classes for class "TriggerWeatherEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:532:7 - error: Base classes for class "TriggerWeatherEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:532:7 - error: Base classes for class "TriggerWeatherEntity" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:532:7 - error: Base classes for class "TriggerWeatherEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:532:7 - error: Base classes for class "TriggerWeatherEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:532:7 - error: Base classes for class "TriggerWeatherEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:532:7 - error: Base classes for class "TriggerWeatherEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:532:7 - error: Base classes for class "TriggerWeatherEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:532:7 - error: Base classes for class "TriggerWeatherEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:615:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:620:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:627:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:634:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:641:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:648:9 - error: "ozone" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:655:9 - error: "uv_index" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:662:9 - error: "native_visibility" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:669:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:676:9 - error: "native_wind_gust_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:683:9 - error: "cloud_coverage" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:690:9 - error: "native_dew_point" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/template/weather.py:697:9 - error: "native_apparent_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tesla_fleet/__init__.py + /homeassistant/components/tesla_fleet/__init__.py:102:16 - error: Argument of type "str" cannot be assigned to parameter "region" of type "Literal['na', 'eu', 'cn'] | None" in function "__init__" +   Type "str" is not assignable to type "Literal['na', 'eu', 'cn'] | None" +     "str" is not assignable to "None" +     "str" is not assignable to type "Literal['na']" +     "str" is not assignable to type "Literal['eu']" +     "str" is not assignable to type "Literal['cn']" (reportArgumentType) +/homeassistant/components/tesla_fleet/binary_sensor.py + /homeassistant/components/tesla_fleet/binary_sensor.py:209:7 - error: Base classes for class "TeslaFleetVehicleBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/binary_sensor.py:220:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslaFleetBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/binary_sensor.py:220:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TeslaFleetBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/binary_sensor.py:237:7 - error: Base classes for class "TeslaFleetEnergyLiveBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/binary_sensor.py:250:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/binary_sensor.py:258:7 - error: Base classes for class "TeslaFleetEnergyInfoBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/binary_sensor.py:271:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tesla_fleet/button.py + /homeassistant/components/tesla_fleet/button.py:40:56 - error: Cannot access attribute "flash_lights" for class "EnergySite" +   Attribute "flash_lights" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/button.py:43:48 - error: Cannot access attribute "honk_horn" for class "EnergySite" +   Attribute "honk_horn" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/button.py:46:66 - error: Cannot access attribute "remote_start_drive" for class "EnergySite" +   Attribute "remote_start_drive" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/button.py:49:51 - error: Cannot access attribute "remote_boombox" for class "EnergySite" +   Attribute "remote_boombox" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/button.py:53:36 - error: Cannot access attribute "trigger_homelink" for class "EnergySite" +   Attribute "trigger_homelink" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/button.py:76:7 - error: Base classes for class "TeslaFleetButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/button.py:87:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslaFleetButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/button.py:87:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "TeslaFleetButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tesla_fleet/climate.py + /homeassistant/components/tesla_fleet/climate.py:49:60 - error: Argument of type "list[Scope]" cannot be assigned to parameter "scopes" of type "Scope" in function "__init__" +   "list[Scope]" is not assignable to "Scope" (reportArgumentType) + /homeassistant/components/tesla_fleet/climate.py:55:30 - error: Argument of type "list[Scope]" cannot be assigned to parameter "scopes" of type "Scope" in function "__init__" +   "list[Scope]" is not assignable to "Scope" (reportArgumentType) + /homeassistant/components/tesla_fleet/climate.py:63:7 - error: Base classes for class "TeslaFleetClimateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/climate.py:125:47 - error: Cannot access attribute "auto_conditioning_start" for class "EnergySite" +   Attribute "auto_conditioning_start" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/climate.py:134:47 - error: Cannot access attribute "auto_conditioning_stop" for class "EnergySite" +   Attribute "auto_conditioning_stop" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/climate.py:137:34 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/tesla_fleet/climate.py:152:22 - error: Cannot access attribute "set_temps" for class "EnergySite" +   Attribute "set_temps" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/climate.py:176:22 - error: Cannot access attribute "set_climate_keeper_mode" for class "EnergySite" +   Attribute "set_climate_keeper_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/climate.py:177:61 - error: "index" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/tesla_fleet/climate.py:181:27 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/tesla_fleet/climate.py:207:7 - error: Base classes for class "TeslaFleetCabinOverheatProtectionEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/climate.py:260:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/climate.py:260:9 - error: "supported_features" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[ClimateEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/climate.py:295:47 - error: Cannot access attribute "set_cop_temp" for class "EnergySite" +   Attribute "set_cop_temp" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/climate.py:312:26 - error: Cannot access attribute "set_cabin_overheat_protection" for class "EnergySite" +   Attribute "set_cabin_overheat_protection" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/climate.py:316:26 - error: Cannot access attribute "set_cabin_overheat_protection" for class "EnergySite" +   Attribute "set_cabin_overheat_protection" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/climate.py:320:26 - error: Cannot access attribute "set_cabin_overheat_protection" for class "EnergySite" +   Attribute "set_cabin_overheat_protection" is unknown (reportAttributeAccessIssue) +/homeassistant/components/tesla_fleet/coordinator.py + /homeassistant/components/tesla_fleet/coordinator.py:107:62 - error: Argument of type "list[VehicleDataEndpoint]" cannot be assigned to parameter "endpoints" of type "list[VehicleDataEndpoint | str] | None" in function "vehicle_data" +   Type "list[VehicleDataEndpoint]" is not assignable to type "list[VehicleDataEndpoint | str] | None" +     "list[VehicleDataEndpoint]" is not assignable to "list[VehicleDataEndpoint | str]" +       Type parameter "_T@list" is invariant, but "VehicleDataEndpoint" is not the same as "VehicleDataEndpoint | str" +       Consider switching from "list" to "Sequence" which is covariant +     "list[VehicleDataEndpoint]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/tesla_fleet/coordinator.py:184:24 - error: Cannot access attribute "get" for class "str" +   Attribute "get" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/coordinator.py:184:24 - error: "get" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/tesla_fleet/coordinator.py:186:16 - error: Operator "in" not supported for types "Literal['after']" and "dict[Unknown, Unknown] | str | None" +   Operator "in" not supported for types "Literal['after']" and "None" (reportOperatorIssue) + /homeassistant/components/tesla_fleet/coordinator.py:187:62 - error: Argument of type "Literal['after']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['after']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['after']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['after']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/tesla_fleet/coordinator.py:187:62 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/tesla_fleet/coordinator.py:246:24 - error: Cannot access attribute "get" for class "str" +   Attribute "get" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/coordinator.py:246:24 - error: "get" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/tesla_fleet/coordinator.py:248:16 - error: Operator "in" not supported for types "Literal['after']" and "dict[Unknown, Unknown] | str | None" +   Operator "in" not supported for types "Literal['after']" and "None" (reportOperatorIssue) + /homeassistant/components/tesla_fleet/coordinator.py:249:62 - error: Argument of type "Literal['after']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['after']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['after']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['after']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/tesla_fleet/coordinator.py:249:62 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/tesla_fleet/coordinator.py:309:24 - error: Cannot access attribute "get" for class "str" +   Attribute "get" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/coordinator.py:309:24 - error: "get" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/tesla_fleet/coordinator.py:311:16 - error: Operator "in" not supported for types "Literal['after']" and "dict[Unknown, Unknown] | str | None" +   Operator "in" not supported for types "Literal['after']" and "None" (reportOperatorIssue) + /homeassistant/components/tesla_fleet/coordinator.py:312:62 - error: Argument of type "Literal['after']" cannot be assigned to parameter "key" of type "SupportsIndex | slice[Any, Any, Any]" in function "__getitem__" +   Type "Literal['after']" is not assignable to type "SupportsIndex | slice[Any, Any, Any]" +     "Literal['after']" is incompatible with protocol "SupportsIndex" +       "__index__" is not present +     "Literal['after']" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /homeassistant/components/tesla_fleet/coordinator.py:312:62 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) +/homeassistant/components/tesla_fleet/cover.py + /homeassistant/components/tesla_fleet/cover.py:48:7 - error: Base classes for class "TeslaFleetWindowEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/cover.py:84:22 - error: Cannot access attribute "window_control" for class "EnergySite" +   Attribute "window_control" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/cover.py:93:22 - error: Cannot access attribute "window_control" for class "EnergySite" +   Attribute "window_control" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/cover.py:99:7 - error: Base classes for class "TeslaFleetChargePortEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/cover.py:124:47 - error: Cannot access attribute "charge_port_door_open" for class "EnergySite" +   Attribute "charge_port_door_open" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/cover.py:131:47 - error: Cannot access attribute "charge_port_door_close" for class "EnergySite" +   Attribute "charge_port_door_close" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/cover.py:136:7 - error: Base classes for class "TeslaFleetFrontTrunkEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/cover.py:157:47 - error: Cannot access attribute "actuate_trunk" for class "EnergySite" +   Attribute "actuate_trunk" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/cover.py:162:7 - error: Base classes for class "TeslaFleetRearTrunkEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/cover.py:186:51 - error: Cannot access attribute "actuate_trunk" for class "EnergySite" +   Attribute "actuate_trunk" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/cover.py:194:51 - error: Cannot access attribute "actuate_trunk" for class "EnergySite" +   Attribute "actuate_trunk" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/cover.py:199:7 - error: Base classes for class "TeslaFleetSunroofEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/cover.py:231:47 - error: Cannot access attribute "sun_roof_control" for class "EnergySite" +   Attribute "sun_roof_control" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/cover.py:238:47 - error: Cannot access attribute "sun_roof_control" for class "EnergySite" +   Attribute "sun_roof_control" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/cover.py:245:47 - error: Cannot access attribute "sun_roof_control" for class "EnergySite" +   Attribute "sun_roof_control" is unknown (reportAttributeAccessIssue) +/homeassistant/components/tesla_fleet/device_tracker.py + /homeassistant/components/tesla_fleet/device_tracker.py:33:7 - error: Base classes for class "TeslaFleetDeviceTrackerEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/device_tracker.py:33:7 - error: Base classes for class "TeslaFleetDeviceTrackerEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/device_tracker.py:33:7 - error: Base classes for class "TeslaFleetDeviceTrackerEntity" define variable "_attr_device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/device_tracker.py:33:7 - error: Base classes for class "TeslaFleetDeviceTrackerEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/device_tracker.py:33:7 - error: Base classes for class "TeslaFleetDeviceTrackerEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/device_tracker.py:33:7 - error: Base classes for class "TeslaFleetDeviceTrackerEntity" define variable "force_update" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/device_tracker.py:88:9 - error: "location_name" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tesla_fleet/entity.py + /homeassistant/components/tesla_fleet/entity.py:176:7 - error: Base classes of TeslaFleetWallConnectorEntity are mutually incompatible +   Base class "CoordinatorEntity[TeslaFleetEnergySiteLiveCoordinator]" is incompatible with type "CoordinatorEntity[TeslaFleetVehicleDataCoordinator | TeslaFleetEnergySiteLiveCoordinator | TeslaFleetEnergySiteHistoryCoordinator | TeslaFleetEnergySiteInfoCoordinator]" (reportGeneralTypeIssues) +/homeassistant/components/tesla_fleet/lock.py + /homeassistant/components/tesla_fleet/lock.py:42:7 - error: Base classes for class "TeslaFleetVehicleLockEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/lock.py:58:47 - error: Cannot access attribute "door_lock" for class "EnergySite" +   Attribute "door_lock" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/lock.py:66:47 - error: Cannot access attribute "door_unlock" for class "EnergySite" +   Attribute "door_unlock" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/lock.py:71:7 - error: Base classes for class "TeslaFleetCableLockEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/lock.py:101:47 - error: Cannot access attribute "charge_port_door_open" for class "EnergySite" +   Attribute "charge_port_door_open" is unknown (reportAttributeAccessIssue) +/homeassistant/components/tesla_fleet/media_player.py + /homeassistant/components/tesla_fleet/media_player.py:46:7 - error: Base classes for class "TeslaFleetMediaEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/media_player.py:120:22 - error: Cannot access attribute "adjust_volume" for class "EnergySite" +   Attribute "adjust_volume" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/media_player.py:129:51 - error: Cannot access attribute "media_toggle_playback" for class "EnergySite" +   Attribute "media_toggle_playback" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/media_player.py:137:51 - error: Cannot access attribute "media_toggle_playback" for class "EnergySite" +   Attribute "media_toggle_playback" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/media_player.py:144:47 - error: Cannot access attribute "media_next_track" for class "EnergySite" +   Attribute "media_next_track" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/media_player.py:149:47 - error: Cannot access attribute "media_prev_track" for class "EnergySite" +   Attribute "media_prev_track" is unknown (reportAttributeAccessIssue) +/homeassistant/components/tesla_fleet/number.py + /homeassistant/components/tesla_fleet/number.py:37:5 - error: "native_min_value" overrides a field of the same name but is missing a default value (reportGeneralTypeIssues) + /homeassistant/components/tesla_fleet/number.py:38:5 - error: "native_max_value" overrides a field of the same name but is missing a default value (reportGeneralTypeIssues) + /homeassistant/components/tesla_fleet/number.py:54:55 - error: Argument of type "float" cannot be assigned to parameter "charging_amps" of type "int" in function "set_charging_amps" +   "float" is not assignable to "int" (reportArgumentType) + /homeassistant/components/tesla_fleet/number.py:67:54 - error: Argument of type "float" cannot be assigned to parameter "percent" of type "int" in function "set_charge_limit" +   "float" is not assignable to "int" (reportArgumentType) + /homeassistant/components/tesla_fleet/number.py:128:7 - error: Base classes for class "TeslaFleetVehicleNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/number.py:141:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslaFleetNumberVehicleEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/number.py:141:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "TeslaFleetNumberVehicleEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/number.py:169:67 - error: Argument of type "VehicleFleet | EnergySite" cannot be assigned to parameter of type "VehicleFleet" +   Type "VehicleFleet | EnergySite" is not assignable to type "VehicleFleet" +     "EnergySite" is not assignable to "VehicleFleet" (reportArgumentType) + /homeassistant/components/tesla_fleet/number.py:174:7 - error: Base classes for class "TeslaFleetEnergyInfoNumberSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/number.py:192:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslaFleetNumberBatteryEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/number.py:192:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "TeslaFleetNumberBatteryEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/number.py:204:59 - error: Argument of type "VehicleFleet | EnergySite" cannot be assigned to parameter of type "EnergySite" +   Type "VehicleFleet | EnergySite" is not assignable to type "EnergySite" +     "VehicleFleet" is not assignable to "EnergySite" (reportArgumentType) +/homeassistant/components/tesla_fleet/select.py + /homeassistant/components/tesla_fleet/select.py:113:7 - error: Base classes for class "TeslaFleetSeatHeaterSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/select.py:132:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SeatHeaterDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/select.py:132:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "SeatHeaterDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/select.py:152:51 - error: Cannot access attribute "auto_conditioning_start" for class "EnergySite" +   Attribute "auto_conditioning_start" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/select.py:154:22 - error: Cannot access attribute "remote_seat_heater_request" for class "EnergySite" +   Attribute "remote_seat_heater_request" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/select.py:160:7 - error: Base classes for class "TeslaFleetWheelHeaterSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/select.py:197:51 - error: Cannot access attribute "auto_conditioning_start" for class "EnergySite" +   Attribute "auto_conditioning_start" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/select.py:199:22 - error: Cannot access attribute "remote_steering_wheel_heat_level_request" for class "EnergySite" +   Attribute "remote_steering_wheel_heat_level_request" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/select.py:205:7 - error: Base classes for class "TeslaFleetOperationSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/select.py:230:39 - error: Cannot access attribute "operation" for class "VehicleFleet" +   Attribute "operation" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/select.py:235:7 - error: Base classes for class "TeslaFleetExportRuleSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/select.py:261:22 - error: Cannot access attribute "grid_import_export" for class "VehicleFleet" +   Attribute "grid_import_export" is unknown (reportAttributeAccessIssue) +/homeassistant/components/tesla_fleet/sensor.py + /homeassistant/components/tesla_fleet/sensor.py:497:7 - error: Base classes for class "TeslaFleetVehicleSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/sensor.py:508:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslaFleetSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/sensor.py:508:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TeslaFleetSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/sensor.py:526:7 - error: Base classes for class "TeslaFleetVehicleTimeSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/sensor.py:537:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslaFleetTimeEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/sensor.py:537:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TeslaFleetTimeEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/sensor.py:552:7 - error: Base classes for class "TeslaFleetEnergyLiveSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/sensor.py:563:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslaFleetSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/sensor.py:563:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TeslaFleetSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/sensor.py:571:7 - error: Base classes for class "TeslaFleetEnergyHistorySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/sensor.py:582:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/sensor.py:590:7 - error: Base classes for class "TeslaFleetWallConnectorSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/sensor.py:602:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/sensor.py:615:7 - error: Base classes for class "TeslaFleetEnergyInfoSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/sensor.py:626:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tesla_fleet/switch.py + /homeassistant/components/tesla_fleet/switch.py:134:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "TeslaFleetSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/switch.py:137:7 - error: Base classes for class "TeslaFleetVehicleSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/switch.py:177:7 - error: Base classes for class "TeslaFleetChargeFromGridSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/switch.py:203:22 - error: Cannot access attribute "grid_import_export" for class "VehicleFleet" +   Attribute "grid_import_export" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/switch.py:214:22 - error: Cannot access attribute "grid_import_export" for class "VehicleFleet" +   Attribute "grid_import_export" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/switch.py:222:7 - error: Base classes for class "TeslaFleetStormModeSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_fleet/switch.py:244:39 - error: Cannot access attribute "storm_mode" for class "VehicleFleet" +   Attribute "storm_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_fleet/switch.py:251:39 - error: Cannot access attribute "storm_mode" for class "VehicleFleet" +   Attribute "storm_mode" is unknown (reportAttributeAccessIssue) +/homeassistant/components/tesla_wall_connector/__init__.py + /homeassistant/components/tesla_wall_connector/__init__.py:85:34 - error: Cannot access attribute "part_number" for class "dict[Unknown, Unknown]" +   Attribute "part_number" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_wall_connector/__init__.py:86:39 - error: Cannot access attribute "firmware_version" for class "dict[Unknown, Unknown]" +   Attribute "firmware_version" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_wall_connector/__init__.py:87:36 - error: Cannot access attribute "serial_number" for class "dict[Unknown, Unknown]" +   Attribute "serial_number" is unknown (reportAttributeAccessIssue) +/homeassistant/components/tesla_wall_connector/binary_sensor.py + /homeassistant/components/tesla_wall_connector/binary_sensor.py:64:7 - error: Base classes for class "WallConnectorBinarySensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_wall_connector/binary_sensor.py:64:7 - error: Base classes for class "WallConnectorBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_wall_connector/binary_sensor.py:77:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tesla_wall_connector/config_flow.py + /homeassistant/components/tesla_wall_connector/config_flow.py:36:46 - error: Cannot access attribute "serial_number" for class "dict[Unknown, Unknown]" +   Attribute "serial_number" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_wall_connector/config_flow.py:72:38 - error: Cannot access attribute "serial_number" for class "dict[Unknown, Unknown]" +   Attribute "serial_number" is unknown (reportAttributeAccessIssue) + /homeassistant/components/tesla_wall_connector/config_flow.py:110:27 - error: "info" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/tesla_wall_connector/config_flow.py:116:50 - error: "info" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/tesla_wall_connector/entity.py + /homeassistant/components/tesla_wall_connector/entity.py:42:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tesla_wall_connector/sensor.py + /homeassistant/components/tesla_wall_connector/sensor.py:203:7 - error: Base classes for class "WallConnectorSensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_wall_connector/sensor.py:203:7 - error: Base classes for class "WallConnectorSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_wall_connector/sensor.py:214:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WallConnectorSensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_wall_connector/sensor.py:214:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "WallConnectorSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tesla_wall_connector/sensor.py:218:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/teslemetry/binary_sensor.py + /homeassistant/components/teslemetry/binary_sensor.py:574:7 - error: Base classes for class "TeslemetryVehiclePollingBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/binary_sensor.py:587:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/binary_sensor.py:587:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/binary_sensor.py:599:7 - error: Base classes for class "TeslemetryVehicleStreamingBinarySensorEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/binary_sensor.py:599:7 - error: Base classes for class "TeslemetryVehicleStreamingBinarySensorEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/binary_sensor.py:599:7 - error: Base classes for class "TeslemetryVehicleStreamingBinarySensorEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/binary_sensor.py:612:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/binary_sensor.py:612:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/binary_sensor.py:635:7 - error: Base classes for class "TeslemetryEnergyLiveBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/binary_sensor.py:648:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/binary_sensor.py:648:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/binary_sensor.py:656:7 - error: Base classes for class "TeslemetryEnergyInfoBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/binary_sensor.py:669:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/binary_sensor.py:669:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/teslemetry/button.py + /homeassistant/components/teslemetry/button.py:89:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/button.py:89:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/teslemetry/climate.py + /homeassistant/components/teslemetry/climate.py:117:34 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/teslemetry/climate.py:118:31 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/teslemetry/climate.py:154:61 - error: "index" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/teslemetry/climate.py:158:27 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/teslemetry/climate.py:175:24 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/teslemetry/climate.py:180:7 - error: Base classes for class "TeslemetryVehiclePollingClimateEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/climate.py:180:7 - error: Base classes for class "TeslemetryVehiclePollingClimateEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/climate.py:180:7 - error: Base classes for class "TeslemetryVehiclePollingClimateEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/climate.py:180:7 - error: Base classes for class "TeslemetryVehiclePollingClimateEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/climate.py:180:7 - error: Base classes for class "TeslemetryVehiclePollingClimateEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/climate.py:231:7 - error: Base classes for class "TeslemetryStreamingClimateEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/climate.py:231:7 - error: Base classes for class "TeslemetryStreamingClimateEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/climate.py:231:7 - error: Base classes for class "TeslemetryStreamingClimateEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/climate.py:231:7 - error: Base classes for class "TeslemetryStreamingClimateEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/climate.py:231:7 - error: Base classes for class "TeslemetryStreamingClimateEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/climate.py:433:7 - error: Base classes for class "TeslemetryVehiclePollingCabinOverheatProtectionEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/climate.py:478:7 - error: Base classes for class "TeslemetryStreamingCabinOverheatProtectionEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/climate.py:478:7 - error: Base classes for class "TeslemetryStreamingCabinOverheatProtectionEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/climate.py:478:7 - error: Base classes for class "TeslemetryStreamingCabinOverheatProtectionEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/climate.py:478:7 - error: Base classes for class "TeslemetryStreamingCabinOverheatProtectionEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/climate.py:478:7 - error: Base classes for class "TeslemetryStreamingCabinOverheatProtectionEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/teslemetry/coordinator.py + /homeassistant/components/teslemetry/coordinator.py:74:59 - error: Argument of type "list[VehicleDataEndpoint]" cannot be assigned to parameter "endpoints" of type "list[VehicleDataEndpoint | str] | None" in function "vehicle_data" +   Type "list[VehicleDataEndpoint]" is not assignable to type "list[VehicleDataEndpoint | str] | None" +     "list[VehicleDataEndpoint]" is not assignable to "list[VehicleDataEndpoint | str]" +       Type parameter "_T@list" is invariant, but "VehicleDataEndpoint" is not the same as "VehicleDataEndpoint | str" +       Consider switching from "list" to "Sequence" which is covariant +     "list[VehicleDataEndpoint]" is not assignable to "None" (reportArgumentType) +/homeassistant/components/teslemetry/cover.py + /homeassistant/components/teslemetry/cover.py:133:7 - error: Base classes for class "TeslemetryVehiclePollingWindowEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/cover.py:259:7 - error: Base classes for class "TeslemetryVehiclePollingChargePortEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/cover.py:334:7 - error: Base classes for class "TeslemetryVehiclePollingFrontTrunkEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/cover.py:404:7 - error: Base classes for class "TeslemetryVehiclePollingRearTrunkEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/cover.py:448:7 - error: Base classes for class "TeslemetrySunroofEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/teslemetry/device_tracker.py + /homeassistant/components/teslemetry/device_tracker.py:107:7 - error: Base classes for class "TeslemetryVehiclePollingDeviceTrackerEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/device_tracker.py:120:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryDeviceTrackerEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/device_tracker.py:120:14 - error: "entity_description" overrides symbol of same name in class "TrackerEntity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryDeviceTrackerEntityDescription" is not the same as base type "TrackerEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/device_tracker.py:141:7 - error: Base classes for class "TeslemetryStreamingDeviceTrackerEntity" define variable "_attr_device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/device_tracker.py:141:7 - error: Base classes for class "TeslemetryStreamingDeviceTrackerEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/device_tracker.py:141:7 - error: Base classes for class "TeslemetryStreamingDeviceTrackerEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/device_tracker.py:141:7 - error: Base classes for class "TeslemetryStreamingDeviceTrackerEntity" define variable "force_update" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/device_tracker.py:154:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryDeviceTrackerEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/device_tracker.py:154:14 - error: "entity_description" overrides symbol of same name in class "TrackerEntity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryDeviceTrackerEntityDescription" is not the same as base type "TrackerEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/teslemetry/entity.py + /homeassistant/components/teslemetry/entity.py:67:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/teslemetry/lock.py + /homeassistant/components/teslemetry/lock.py:87:7 - error: Base classes for class "TeslemetryVehiclePollingVehicleLockEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/lock.py:105:7 - error: Base classes for class "TeslemetryStreamingVehicleLockEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/lock.py:105:7 - error: Base classes for class "TeslemetryStreamingVehicleLockEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/lock.py:105:7 - error: Base classes for class "TeslemetryStreamingVehicleLockEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/lock.py:105:7 - error: Base classes for class "TeslemetryStreamingVehicleLockEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/lock.py:105:7 - error: Base classes for class "TeslemetryStreamingVehicleLockEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/lock.py:160:7 - error: Base classes for class "TeslemetryVehiclePollingCableLockEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/lock.py:184:7 - error: Base classes for class "TeslemetryStreamingCableLockEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/lock.py:184:7 - error: Base classes for class "TeslemetryStreamingCableLockEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/lock.py:184:7 - error: Base classes for class "TeslemetryStreamingCableLockEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/lock.py:184:7 - error: Base classes for class "TeslemetryStreamingCableLockEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/lock.py:184:7 - error: Base classes for class "TeslemetryStreamingCableLockEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/teslemetry/media_player.py + /homeassistant/components/teslemetry/media_player.py:109:7 - error: Base classes for class "TeslemetryVehiclePollingMediaEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/media_player.py:163:7 - error: Base classes for class "TeslemetryStreamingMediaEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/media_player.py:163:7 - error: Base classes for class "TeslemetryStreamingMediaEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/media_player.py:163:7 - error: Base classes for class "TeslemetryStreamingMediaEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/media_player.py:163:7 - error: Base classes for class "TeslemetryStreamingMediaEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/media_player.py:163:7 - error: Base classes for class "TeslemetryStreamingMediaEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/media_player.py:163:7 - error: Base classes for class "TeslemetryStreamingMediaEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/media_player.py:163:7 - error: Base classes for class "TeslemetryStreamingMediaEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/teslemetry/number.py + /homeassistant/components/teslemetry/number.py:52:5 - error: "native_min_value" overrides a field of the same name but is missing a default value (reportGeneralTypeIssues) + /homeassistant/components/teslemetry/number.py:53:5 - error: "native_max_value" overrides a field of the same name but is missing a default value (reportGeneralTypeIssues) + /homeassistant/components/teslemetry/number.py:176:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryNumberVehicleEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/number.py:176:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryNumberVehicleEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/number.py:187:7 - error: Base classes for class "TeslemetryVehiclePollingNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/number.py:231:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryNumberVehicleEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/number.py:231:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryNumberVehicleEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/number.py:275:7 - error: Base classes for class "TeslemetryEnergyInfoNumberSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/number.py:293:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryNumberBatteryEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/number.py:293:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryNumberBatteryEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/teslemetry/select.py + /homeassistant/components/teslemetry/select.py:52:5 - error: "options" overrides a field of the same name but is missing a default value (reportGeneralTypeIssues) + /homeassistant/components/teslemetry/select.py:212:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslemetrySelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/select.py:212:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "TeslemetrySelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/select.py:227:7 - error: Base classes for class "TeslemetryVehiclePollingSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/select.py:252:7 - error: Base classes for class "TeslemetryStreamingSelectEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/select.py:252:7 - error: Base classes for class "TeslemetryStreamingSelectEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/select.py:252:7 - error: Base classes for class "TeslemetryStreamingSelectEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/select.py:252:7 - error: Base classes for class "TeslemetryStreamingSelectEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/select.py:303:7 - error: Base classes for class "TeslemetryOperationSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/select.py:333:7 - error: Base classes for class "TeslemetryExportRuleSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/teslemetry/sensor.py + /homeassistant/components/teslemetry/sensor.py:1641:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryVehicleSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1641:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryVehicleSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1664:7 - error: Base classes for class "TeslemetryVehicleSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1675:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryVehicleSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1675:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryVehicleSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1701:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryTimeEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1701:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryTimeEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1727:7 - error: Base classes for class "TeslemetryVehicleTimeSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1738:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryTimeEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1738:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryTimeEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1753:7 - error: Base classes for class "TeslemetryEnergyLiveSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1764:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryEnergySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1764:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TeslemetryEnergySensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1773:7 - error: Base classes for class "TeslemetryWallConnectorSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1785:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslemetrySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1785:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TeslemetrySensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1797:7 - error: Base classes for class "TeslemetryEnergyInfoSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1808:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1817:7 - error: Base classes for class "TeslemetryEnergyHistorySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/sensor.py:1828:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/teslemetry/services.py + /homeassistant/components/teslemetry/services.py:85:12 - error: "config_entry" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/teslemetry/services.py:97:12 - error: "vehicle_data" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/teslemetry/services.py:109:12 - error: "energy_data" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/teslemetry/services.py:163:81 - error: Argument of type "int | None" cannot be assigned to parameter "time" of type "int" in function "set_scheduled_charging" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/teslemetry/services.py:223:17 - error: Argument of type "int | None" cannot be assigned to parameter "departure_time" of type "int" in function "set_scheduled_departure" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/teslemetry/services.py:226:17 - error: Argument of type "int | None" cannot be assigned to parameter "end_off_peak_time" of type "int" in function "set_scheduled_departure" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/teslemetry/services.py:256:17 - error: Argument of type "Any | None" cannot be assigned to parameter "on" of type "bool" in function "set_valet_mode" +   Type "Any | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /homeassistant/components/teslemetry/services.py:282:50 - error: Argument of type "Any | None" cannot be assigned to parameter "pin" of type "str | int" in function "speed_limit_activate" +   Type "Any | None" is not assignable to type "str | int" +     Type "None" is not assignable to type "str | int" +       "None" is not assignable to "str" +       "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/teslemetry/services.py:286:52 - error: Argument of type "Any | None" cannot be assigned to parameter "pin" of type "str | int" in function "speed_limit_deactivate" +   Type "Any | None" is not assignable to type "str | int" +     Type "None" is not assignable to type "str | int" +       "None" is not assignable to "str" +       "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/teslemetry/services.py:309:43 - error: Argument of type "Any | None" cannot be assigned to parameter "settings" of type "dict[str, Any]" in function "time_of_use_settings" +   Type "Any | None" is not assignable to type "dict[str, Any]" +     "None" is not assignable to "dict[str, Any]" (reportArgumentType) +/homeassistant/components/teslemetry/switch.py + /homeassistant/components/teslemetry/switch.py:203:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TeslemetrySwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/switch.py:203:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "TeslemetrySwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/switch.py:220:7 - error: Base classes for class "TeslemetryVehiclePollingVehicleSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/switch.py:247:7 - error: Base classes for class "TeslemetryStreamingVehicleSwitchEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/switch.py:247:7 - error: Base classes for class "TeslemetryStreamingVehicleSwitchEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/switch.py:247:7 - error: Base classes for class "TeslemetryStreamingVehicleSwitchEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/switch.py:247:7 - error: Base classes for class "TeslemetryStreamingVehicleSwitchEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/switch.py:290:7 - error: Base classes for class "TeslemetryChargeFromGridSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/switch.py:335:7 - error: Base classes for class "TeslemetryStormModeSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/teslemetry/update.py + /homeassistant/components/teslemetry/update.py:65:7 - error: Base classes for class "TeslemetryVehiclePollingUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/update.py:130:7 - error: Base classes for class "TeslemetryStreamingUpdateEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/update.py:130:7 - error: Base classes for class "TeslemetryStreamingUpdateEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/update.py:130:7 - error: Base classes for class "TeslemetryStreamingUpdateEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/update.py:130:7 - error: Base classes for class "TeslemetryStreamingUpdateEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/update.py:130:7 - error: Base classes for class "TeslemetryStreamingUpdateEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/update.py:130:7 - error: Base classes for class "TeslemetryStreamingUpdateEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/update.py:130:7 - error: Base classes for class "TeslemetryStreamingUpdateEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/teslemetry/update.py:130:7 - error: Base classes for class "TeslemetryStreamingUpdateEntity" define variable "entity_category" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/tessie/binary_sensor.py + /homeassistant/components/tessie/binary_sensor.py:205:7 - error: Base classes for class "TessieBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/binary_sensor.py:217:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TessieBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/binary_sensor.py:217:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TessieBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/binary_sensor.py:220:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/binary_sensor.py:225:7 - error: Base classes for class "TessieEnergyLiveBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/binary_sensor.py:236:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/binary_sensor.py:245:7 - error: Base classes for class "TessieEnergyInfoBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/binary_sensor.py:256:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tessie/button.py + /homeassistant/components/tessie/button.py:65:7 - error: Base classes for class "TessieButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/button.py:77:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TessieButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/button.py:77:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "TessieButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tessie/climate.py + /homeassistant/components/tessie/climate.py:43:7 - error: Base classes for class "TessieClimateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/climate.py:57:5 - error: "_attr_preset_modes" overrides symbol of same name in class "ClimateEntity" +   Variable is mutable so its type is invariant +     Override type "list[Unknown]" is not the same as base type "list[str] | None" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/climate.py:72:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/climate.py:79:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/climate.py:84:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/climate.py:89:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/climate.py:94:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/climate.py:99:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tessie/cover.py + /homeassistant/components/tessie/cover.py:66:7 - error: Base classes for class "TessieWindowEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/cover.py:77:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/cover.py:107:7 - error: Base classes for class "TessieChargePortEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/cover.py:118:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/cover.py:133:7 - error: Base classes for class "TessieFrontTrunkEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/cover.py:144:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/cover.py:154:7 - error: Base classes for class "TessieRearTrunkEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/cover.py:165:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/cover.py:182:7 - error: Base classes for class "TessieSunroofEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/cover.py:193:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/cover.py:198:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tessie/device_tracker.py + /homeassistant/components/tessie/device_tracker.py:35:7 - error: Base classes for class "TessieDeviceTrackerEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/device_tracker.py:52:9 - error: "longitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/device_tracker.py:57:9 - error: "latitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/device_tracker.py:62:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/device_tracker.py:76:9 - error: "longitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/device_tracker.py:81:9 - error: "latitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tessie/lock.py + /homeassistant/components/tessie/lock.py:37:7 - error: Base classes for class "TessieLockEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/lock.py:48:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/lock.py:63:7 - error: Base classes for class "TessieCableLockEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/lock.py:74:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tessie/media_player.py + /homeassistant/components/tessie/media_player.py:41:7 - error: Base classes for class "TessieMediaEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/media_player.py:55:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/media_player.py:55:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/media_player.py:63:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/media_player.py:68:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/media_player.py:75:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/media_player.py:83:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/media_player.py:90:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/media_player.py:97:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/media_player.py:104:9 - error: "media_playlist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/media_player.py:111:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tessie/number.py + /homeassistant/components/tessie/number.py:43:5 - error: "native_min_value" overrides a field of the same name but is missing a default value (reportGeneralTypeIssues) + /homeassistant/components/tessie/number.py:44:5 - error: "native_max_value" overrides a field of the same name but is missing a default value (reportGeneralTypeIssues) + /homeassistant/components/tessie/number.py:136:7 - error: Base classes for class "TessieNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/number.py:148:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TessieNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/number.py:148:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "TessieNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/number.py:151:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/number.py:156:9 - error: "native_min_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/number.py:166:9 - error: "native_max_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/number.py:180:7 - error: Base classes for class "TessieEnergyInfoNumberSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/number.py:196:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TessieNumberBatteryEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/number.py:196:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "TessieNumberBatteryEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tessie/select.py + /homeassistant/components/tessie/select.py:76:7 - error: Base classes for class "TessieSeatHeaterSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/select.py:87:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/select.py:98:7 - error: Base classes for class "TessieSeatCoolerSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/select.py:109:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/select.py:120:7 - error: Base classes for class "TessieOperationSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/select.py:147:7 - error: Base classes for class "TessieExportRuleSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/tessie/sensor.py + /homeassistant/components/tessie/sensor.py:427:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TessieSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/sensor.py:427:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TessieSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/sensor.py:431:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/sensor.py:436:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/sensor.py:441:7 - error: Base classes for class "TessieEnergyLiveSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/sensor.py:452:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TessieSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/sensor.py:452:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TessieSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/sensor.py:461:7 - error: Base classes for class "TessieEnergyInfoSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/sensor.py:472:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TessieSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/sensor.py:472:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TessieSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/sensor.py:481:7 - error: Base classes for class "TessieWallConnectorSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/sensor.py:493:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TessieSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/sensor.py:493:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TessieSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tessie/switch.py + /homeassistant/components/tessie/switch.py:111:7 - error: Base classes for class "TessieSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/switch.py:123:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TessieSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/switch.py:123:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "TessieSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/switch.py:129:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/switch.py:144:7 - error: Base classes for class "TessieChargeFromGridSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/switch.py:185:7 - error: Base classes for class "TessieStormModeSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/tessie/update.py + /homeassistant/components/tessie/update.py:32:7 - error: Base classes for class "TessieUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/update.py:45:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/update.py:45:9 - error: "supported_features" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[UpdateEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/update.py:55:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/update.py:61:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/update.py:74:9 - error: "in_progress" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/update.py:82:9 - error: "update_percentage" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[int | float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tessie/update.py:92:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/text/__init__.py + /homeassistant/components/text/__init__.py:126:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TextEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/text/__init__.py:132:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) + /homeassistant/components/text/__init__.py:136:9 - error: "capability_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/text/__init__.py:147:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/text/__init__.py:266:7 - error: Base classes for class "RestoreText" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/text/__init__.py:266:7 - error: Base classes for class "RestoreText" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/text/__init__.py:266:7 - error: Base classes for class "RestoreText" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/text/__init__.py:266:7 - error: Base classes for class "RestoreText" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/tfiac/climate.py + /homeassistant/components/tfiac/climate.py:10:6 - error: Import "pytfiac" could not be resolved (reportMissingImports) + /homeassistant/components/tfiac/climate.py:104:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tfiac/climate.py:109:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tfiac/climate.py:114:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tfiac/climate.py:119:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tfiac/climate.py:131:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tfiac/climate.py:136:9 - error: "swing_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/thermobeacon/sensor.py + /homeassistant/components/thermobeacon/sensor.py:131:7 - error: Base classes for class "ThermoBeaconBluetoothSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/thermobeacon/sensor.py:140:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/thermopro/button.py + /homeassistant/components/thermopro/button.py:120:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "ThermoProButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/thermopro/sensor.py + /homeassistant/components/thermopro/sensor.py:129:7 - error: Base classes for class "ThermoProBluetoothSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/thermopro/sensor.py:138:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/thermoworks_smoke/sensor.py + /homeassistant/components/thermoworks_smoke/sensor.py:88:33 - error: "initialize_app" is not a known attribute of module "thermoworks_smoke" (reportAttributeAccessIssue) +/homeassistant/components/thethingsnetwork/config_flow.py + /homeassistant/components/thethingsnetwork/config_flow.py:7:38 - error: "TTNClient" is not exported from module "ttn_client" +   Import from "ttn_client.client" instead (reportPrivateImportUsage) +/homeassistant/components/thethingsnetwork/coordinator.py + /homeassistant/components/thethingsnetwork/coordinator.py:6:38 - error: "TTNClient" is not exported from module "ttn_client" +   Import from "ttn_client.client" instead (reportPrivateImportUsage) +/homeassistant/components/thethingsnetwork/sensor.py + /homeassistant/components/thethingsnetwork/sensor.py:51:7 - error: Base classes for class "TtnDataSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/thethingsnetwork/sensor.py:54:5 - error: "_ttn_value" overrides symbol of same name in class "TTNEntity" +   Variable is mutable so its type is invariant +     Override type "TTNSensorValue" is not the same as base type "TTNBaseValue" (reportIncompatibleVariableOverride) + /homeassistant/components/thethingsnetwork/sensor.py:57:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/thingspeak/__init__.py + /homeassistant/components/thingspeak/__init__.py:48:30 - error: "Channel" is not a known attribute of module "thingspeak" (reportAttributeAccessIssue) +/homeassistant/components/thinkingcleaner/sensor.py + /homeassistant/components/thinkingcleaner/sensor.py:7:6 - error: Import "pythinkingcleaner" could not be resolved (reportMissingImports) +/homeassistant/components/thinkingcleaner/switch.py + /homeassistant/components/thinkingcleaner/switch.py:9:6 - error: Import "pythinkingcleaner" could not be resolved (reportMissingImports) + /homeassistant/components/thinkingcleaner/switch.py:126:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/thread/dataset_store.py + /homeassistant/components/thread/dataset_store.py:181:16 - error: "data" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/thread/diagnostics.py + /homeassistant/components/thread/diagnostics.py:32:26 - error: "NDB" is unknown import symbol (reportAttributeAccessIssue) +/homeassistant/components/thread/discovery.py + /homeassistant/components/thread/discovery.py:13:5 - error: "DNSPointer" is not exported from module "zeroconf" +   Import from "zeroconf._dns" instead (reportPrivateImportUsage) + /homeassistant/components/thread/discovery.py:16:5 - error: "instance_name_from_service_info" is not exported from module "zeroconf" +   Import from "zeroconf._services.info" instead (reportPrivateImportUsage) +/homeassistant/components/threshold/binary_sensor.py + /homeassistant/components/threshold/binary_sensor.py:255:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tibber/__init__.py + /homeassistant/components/tibber/__init__.py:59:16 - error: "RetryableHttpExceptionError" is not exported from module "tibber" (reportPrivateImportUsage) + /homeassistant/components/tibber/__init__.py:62:19 - error: "InvalidLoginError" is not exported from module "tibber" (reportPrivateImportUsage) + /homeassistant/components/tibber/__init__.py:65:19 - error: "FatalHttpExceptionError" is not exported from module "tibber" (reportPrivateImportUsage) +/homeassistant/components/tibber/config_flow.py + /homeassistant/components/tibber/config_flow.py:50:27 - error: "InvalidLoginError" is not exported from module "tibber" (reportPrivateImportUsage) + /homeassistant/components/tibber/config_flow.py:54:24 - error: "RetryableHttpExceptionError" is not exported from module "tibber" (reportPrivateImportUsage) + /homeassistant/components/tibber/config_flow.py:55:24 - error: "FatalHttpExceptionError" is not exported from module "tibber" (reportPrivateImportUsage) +/homeassistant/components/tibber/coordinator.py + /homeassistant/components/tibber/coordinator.py:63:23 - error: "RetryableHttpExceptionError" is not exported from module "tibber" (reportPrivateImportUsage) + /homeassistant/components/tibber/coordinator.py:65:23 - error: "FatalHttpExceptionError" is not exported from module "tibber" (reportPrivateImportUsage) + /homeassistant/components/tibber/coordinator.py:142:44 - error: Could not access item in TypedDict +   "sum" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/tibber/coordinator.py:143:43 - error: Could not access item in TypedDict +   "start" is not a required key in "StatisticsRow", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/tibber/sensor.py + /homeassistant/components/tibber/sensor.py:283:24 - error: "RetryableHttpExceptionError" is not exported from module "tibber" (reportPrivateImportUsage) + /homeassistant/components/tibber/sensor.py:337:47 - error: "TibberHome" is not exported from module "tibber" (reportPrivateImportUsage) + /homeassistant/components/tibber/sensor.py:351:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:369:44 - error: "TibberHome" is not exported from module "tibber" (reportPrivateImportUsage) + /homeassistant/components/tibber/sensor.py:441:7 - error: Base classes for class "TibberDataSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:441:7 - error: Base classes for class "TibberDataSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:441:7 - error: Base classes for class "TibberDataSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:441:7 - error: Base classes for class "TibberDataSensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:441:7 - error: Base classes for class "TibberDataSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:441:7 - error: Base classes for class "TibberDataSensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:441:7 - error: Base classes for class "TibberDataSensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:441:7 - error: Base classes for class "TibberDataSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:441:7 - error: Base classes for class "TibberDataSensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:446:29 - error: "TibberHome" is not exported from module "tibber" (reportPrivateImportUsage) + /homeassistant/components/tibber/sensor.py:463:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:468:7 - error: Base classes for class "TibberSensorRT" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:468:7 - error: Base classes for class "TibberSensorRT" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:468:7 - error: Base classes for class "TibberSensorRT" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:468:7 - error: Base classes for class "TibberSensorRT" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:468:7 - error: Base classes for class "TibberSensorRT" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:468:7 - error: Base classes for class "TibberSensorRT" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:468:7 - error: Base classes for class "TibberSensorRT" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:468:7 - error: Base classes for class "TibberSensorRT" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:468:7 - error: Base classes for class "TibberSensorRT" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:473:29 - error: "TibberHome" is not exported from module "tibber" (reportPrivateImportUsage) + /homeassistant/components/tibber/sensor.py:491:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/tibber/sensor.py:535:29 - error: "TibberHome" is not exported from module "tibber" (reportPrivateImportUsage) + /homeassistant/components/tibber/sensor.py:621:29 - error: "TibberHome" is not exported from module "tibber" (reportPrivateImportUsage) +/homeassistant/components/tikteck/light.py + /homeassistant/components/tikteck/light.py:63:5 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "tuple[float, float]" is not the same as base type "cached_property" (reportIncompatibleVariableOverride) + /homeassistant/components/tikteck/light.py:64:5 - error: "brightness" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "int" is not the same as base type "cached_property" (reportIncompatibleVariableOverride) +/homeassistant/components/tile/__init__.py + /homeassistant/components/tile/__init__.py:5:20 - error: "async_login" is not exported from module "pytile" +   Import from "pytile.api" instead (reportPrivateImportUsage) +/homeassistant/components/tile/binary_sensor.py + /homeassistant/components/tile/binary_sensor.py:51:7 - error: Base classes for class "TileBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tile/binary_sensor.py:63:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TileBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tile/binary_sensor.py:63:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TileBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tile/binary_sensor.py:69:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tile/config_flow.py + /homeassistant/components/tile/config_flow.py:8:20 - error: "async_login" is not exported from module "pytile" +   Import from "pytile.api" instead (reportPrivateImportUsage) +/homeassistant/components/tile/device_tracker.py + /homeassistant/components/tile/device_tracker.py:40:7 - error: Base classes for class "TileDeviceTracker" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/tilt_ble/sensor.py + /homeassistant/components/tilt_ble/sensor.py:104:7 - error: Base classes for class "TiltBluetoothSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tilt_ble/sensor.py:113:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/tilt_pi/sensor.py + /homeassistant/components/tilt_pi/sensor.py:74:7 - error: Base classes for class "TiltSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tilt_pi/sensor.py:87:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TiltEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tilt_pi/sensor.py:87:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TiltEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tilt_pi/sensor.py:91:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/time/__init__.py + /homeassistant/components/time/__init__.py:74:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TimeEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/time/__init__.py:76:5 - error: "_attr_device_class" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/time/__init__.py:77:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) + /homeassistant/components/time/__init__.py:93:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/time_date/sensor.py + /homeassistant/components/time_date/sensor.py:91:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/time_date/sensor.py:96:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/timer/__init__.py + /homeassistant/components/timer/__init__.py:234:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/timer/__init__.py:239:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/timer/__init__.py:244:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/timer/__init__.py:249:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/timer/__init__.py:265:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/timer/reproduce_state.py + /homeassistant/components/timer/reproduce_state.py:65:17 - error: "service" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/tmb/sensor.py + /homeassistant/components/tmb/sensor.py:9:17 - error: "IBus" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/tmb/sensor.py:91:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tmb/sensor.py:96:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tmb/sensor.py:101:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tmb/sensor.py:106:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/tmb/sensor.py:111:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tod/binary_sensor.py + /homeassistant/components/tod/binary_sensor.py:138:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tod/binary_sensor.py:145:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/todo/__init__.py + /homeassistant/components/todo/__init__.py:246:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/todo/intent.py + /homeassistant/components/todo/intent.py:28:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/todo/intent.py:28:19 - error: Type "dict[Required, (value: Any) -> str]" is not assignable to declared type "property" (reportAssignmentType) + /homeassistant/components/todo/intent.py:85:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/todo/intent.py:85:19 - error: Type "dict[Required, (value: Any) -> str]" is not assignable to declared type "property" (reportAssignmentType) +/homeassistant/components/todoist/calendar.py + /homeassistant/components/todoist/calendar.py:360:7 - error: Base classes for class "TodoistProjectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/todoist/calendar.py:400:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/todoist/calendar.py:419:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/todoist/calendar.py:520:59 - error: Argument of type "datetime | None" cannot be assigned to parameter "end" of type "date | datetime" in function "__init__" +   Type "datetime | None" is not assignable to type "date | datetime" +     Type "None" is not assignable to type "date | datetime" +       "None" is not assignable to "date" +       "None" is not assignable to "datetime" (reportArgumentType) + /homeassistant/components/todoist/calendar.py:570:21 - error: Operator ">" not supported for "None" (reportOptionalOperand) + /homeassistant/components/todoist/calendar.py:576:45 - error: "date" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/todoist/calendar.py:579:20 - error: Operator "<=" not supported for "None" (reportOptionalOperand) + /homeassistant/components/todoist/calendar.py:647:36 - error: "date" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/todoist/calendar.py:647:56 - error: "date" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/todoist/calendar.py:651:36 - error: "date" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/todoist/calendar.py:651:56 - error: "date" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/todoist/calendar.py:662:44 - error: Operator "<" not supported for types "datetime | None" and "datetime | None" +   Operator "<" not supported for types "datetime" and "None" +   Operator "<" not supported for types "None" and "datetime" +   Operator "<" not supported for types "None" and "None" (reportOperatorIssue) +/homeassistant/components/todoist/todo.py + /homeassistant/components/todoist/todo.py:64:7 - error: Base classes for class "TodoistTodoListEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/togrill/event.py + /homeassistant/components/togrill/event.py:32:7 - error: Base classes for class "ToGrillEventEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/togrill/number.py + /homeassistant/components/togrill/number.py:167:7 - error: Base classes for class "ToGrillNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/togrill/number.py:180:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ToGrillNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/togrill/number.py:180:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "ToGrillNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/togrill/number.py:184:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/togrill/select.py + /homeassistant/components/togrill/select.py:150:7 - error: Base classes for class "ToGrillSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/togrill/select.py:163:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ToGrillSelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/togrill/select.py:163:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "ToGrillSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/togrill/select.py:167:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/togrill/sensor.py + /homeassistant/components/togrill/sensor.py:113:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ToGrillSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/togrill/sensor.py:113:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ToGrillSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/togrill/sensor.py:117:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/togrill/sensor.py:122:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/tolo/binary_sensor.py + /homeassistant/components/tolo/binary_sensor.py:30:7 - error: Base classes for class "ToloFlowInBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/binary_sensor.py:46:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/binary_sensor.py:51:7 - error: Base classes for class "ToloFlowOutBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/binary_sensor.py:67:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tolo/button.py + /homeassistant/components/tolo/button.py:43:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/tolo/climate.py + /homeassistant/components/tolo/climate.py:41:7 - error: Base classes for class "SaunaClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/climate.py:71:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/climate.py:76:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/climate.py:81:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/climate.py:86:9 - error: "target_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/climate.py:91:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/climate.py:103:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/climate.py:116:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tolo/fan.py + /homeassistant/components/tolo/fan.py:25:7 - error: Base classes for class "ToloFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/tolo/light.py + /homeassistant/components/tolo/light.py:25:7 - error: Base classes for class "ToloLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/light.py:41:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tolo/number.py + /homeassistant/components/tolo/number.py:78:7 - error: Base classes for class "ToloNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/number.py:91:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ToloNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/number.py:91:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "ToloNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/number.py:95:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tolo/select.py + /homeassistant/components/tolo/select.py:24:5 - error: "options" overrides a field of the same name but is missing a default value (reportGeneralTypeIssues) + /homeassistant/components/tolo/select.py:65:7 - error: Base classes for class "ToloSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/select.py:80:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ToloSelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/select.py:80:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "ToloSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/select.py:84:9 - error: "options" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/select.py:89:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tolo/sensor.py + /homeassistant/components/tolo/sensor.py:112:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ToloSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/sensor.py:112:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ToloSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/sensor.py:116:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/sensor.py:125:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/tolo/switch.py + /homeassistant/components/tolo/switch.py:55:7 - error: Base classes for class "ToloSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/switch.py:68:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ToloSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/switch.py:68:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "ToloSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tolo/switch.py:72:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tomorrowio/sensor.py + /homeassistant/components/tomorrowio/sensor.py:352:7 - error: Base classes for class "BaseTomorrowioSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tomorrowio/sensor.py:368:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TomorrowioSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tomorrowio/sensor.py:368:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TomorrowioSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tomorrowio/sensor.py:381:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/tomorrowio/weather.py + /homeassistant/components/tomorrowio/weather.py:97:7 - error: Base classes of TomorrowioWeatherEntity are mutually incompatible +   Base class "SingleCoordinatorWeatherEntity[DataUpdateCoordinator[dict[str, Any]]]" derives from "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" which is incompatible with type "CoordinatorEntity[TomorrowioDataUpdateCoordinator]" (reportGeneralTypeIssues) + /homeassistant/components/tomorrowio/weather.py:178:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tomorrowio/weather.py:183:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tomorrowio/weather.py:188:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tomorrowio/weather.py:193:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tomorrowio/weather.py:198:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tomorrowio/weather.py:203:9 - error: "ozone" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tomorrowio/weather.py:208:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tomorrowio/weather.py:216:9 - error: "native_visibility" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/toon/__init__.py + /homeassistant/components/toon/__init__.py:116:17 - error: Argument of type "set[tuple[Literal['toon'], str | None, Literal['meter_adapter']]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]] | UndefinedType | None" in function "async_get_or_create" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/toon/__init__.py:122:20 - error: Argument of type "tuple[Literal['toon'], str | None]" cannot be assigned to parameter "via_device" of type "tuple[str, str] | UndefinedType | None" in function "async_get_or_create" +   Type "tuple[Literal['toon'], str | None]" is not assignable to type "tuple[str, str] | UndefinedType | None" +     "tuple[Literal['toon'], str | None]" is not assignable to "tuple[str, str]" +       Tuple entry 2 is incorrect type +         Type "str | None" is not assignable to type "str" +           "None" is not assignable to "str" +     "tuple[Literal['toon'], str | None]" is not assignable to "None" +     "tuple[Literal['toon'], str | None]" is not assignable to "UndefinedType" (reportArgumentType) +/homeassistant/components/toon/binary_sensor.py + /homeassistant/components/toon/binary_sensor.py:50:7 - error: Base classes for class "ToonBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/binary_sensor.py:62:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ToonBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/binary_sensor.py:62:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "ToonBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/binary_sensor.py:71:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/binary_sensor.py:85:7 - error: Base classes for class "ToonBoilerBinarySensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/binary_sensor.py:85:7 - error: Base classes for class "ToonBoilerBinarySensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/binary_sensor.py:85:7 - error: Base classes for class "ToonBoilerBinarySensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/binary_sensor.py:85:7 - error: Base classes for class "ToonBoilerBinarySensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/binary_sensor.py:89:7 - error: Base classes for class "ToonDisplayBinarySensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/binary_sensor.py:89:7 - error: Base classes for class "ToonDisplayBinarySensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/binary_sensor.py:89:7 - error: Base classes for class "ToonDisplayBinarySensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/binary_sensor.py:89:7 - error: Base classes for class "ToonDisplayBinarySensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/binary_sensor.py:93:7 - error: Base classes for class "ToonBoilerModuleBinarySensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/binary_sensor.py:93:7 - error: Base classes for class "ToonBoilerModuleBinarySensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/binary_sensor.py:93:7 - error: Base classes for class "ToonBoilerModuleBinarySensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/binary_sensor.py:93:7 - error: Base classes for class "ToonBoilerModuleBinarySensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/toon/climate.py + /homeassistant/components/toon/climate.py:45:7 - error: Base classes for class "ToonThermostatDevice" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/climate.py:45:7 - error: Base classes for class "ToonThermostatDevice" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/climate.py:76:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/climate.py:83:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/climate.py:91:28 - error: Argument of type "int | None" cannot be assigned to parameter "key" of type "int" in function "get" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/toon/climate.py:94:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/climate.py:99:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/climate.py:104:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/climate.py:109:15 - error: Method "async_set_temperature" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/toon/climate.py:112:58 - error: Argument of type "Any | None" cannot be assigned to parameter "temperature" of type "float" in function "set_current_setpoint" +   Type "Any | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportArgumentType) + /homeassistant/components/toon/climate.py:115:15 - error: Method "async_set_preset_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/toon/coordinator.py + /homeassistant/components/toon/coordinator.py:153:20 - error: Type "Status | None" is not assignable to return type "Status" +   Type "Status | None" is not assignable to type "Status" +     "None" is not assignable to "Status" (reportReturnType) +/homeassistant/components/toon/entity.py + /homeassistant/components/toon/entity.py:22:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/entity.py:26:35 - error: Argument of type "set[tuple[Literal['toon'], str | None]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]]" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/toon/entity.py:28:54 - error: "rpartition" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/toon/entity.py:30:59 - error: "rpartition" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/toon/entity.py:38:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/entity.py:58:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/entity.py:78:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/entity.py:98:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/entity.py:118:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/entity.py:131:33 - error: Argument of type "tuple[Literal['toon'], str | None]" cannot be assigned to parameter "via_device" of type "tuple[str, str]" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/toon/entity.py:139:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/toon/sensor.py + /homeassistant/components/toon/sensor.py:69:7 - error: Base classes for class "ToonSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:80:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ToonSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:80:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ToonSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:90:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:96:7 - error: Base classes for class "ToonElectricityMeterDeviceSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:96:7 - error: Base classes for class "ToonElectricityMeterDeviceSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:96:7 - error: Base classes for class "ToonElectricityMeterDeviceSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:96:7 - error: Base classes for class "ToonElectricityMeterDeviceSensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:96:7 - error: Base classes for class "ToonElectricityMeterDeviceSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:96:7 - error: Base classes for class "ToonElectricityMeterDeviceSensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:96:7 - error: Base classes for class "ToonElectricityMeterDeviceSensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:96:7 - error: Base classes for class "ToonElectricityMeterDeviceSensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:100:7 - error: Base classes for class "ToonGasMeterDeviceSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:100:7 - error: Base classes for class "ToonGasMeterDeviceSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:100:7 - error: Base classes for class "ToonGasMeterDeviceSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:100:7 - error: Base classes for class "ToonGasMeterDeviceSensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:100:7 - error: Base classes for class "ToonGasMeterDeviceSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:100:7 - error: Base classes for class "ToonGasMeterDeviceSensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:100:7 - error: Base classes for class "ToonGasMeterDeviceSensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:100:7 - error: Base classes for class "ToonGasMeterDeviceSensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:104:7 - error: Base classes for class "ToonWaterMeterDeviceSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:104:7 - error: Base classes for class "ToonWaterMeterDeviceSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:104:7 - error: Base classes for class "ToonWaterMeterDeviceSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:104:7 - error: Base classes for class "ToonWaterMeterDeviceSensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:104:7 - error: Base classes for class "ToonWaterMeterDeviceSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:104:7 - error: Base classes for class "ToonWaterMeterDeviceSensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:104:7 - error: Base classes for class "ToonWaterMeterDeviceSensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:104:7 - error: Base classes for class "ToonWaterMeterDeviceSensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:108:7 - error: Base classes for class "ToonSolarDeviceSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:108:7 - error: Base classes for class "ToonSolarDeviceSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:108:7 - error: Base classes for class "ToonSolarDeviceSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:108:7 - error: Base classes for class "ToonSolarDeviceSensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:108:7 - error: Base classes for class "ToonSolarDeviceSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:108:7 - error: Base classes for class "ToonSolarDeviceSensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:108:7 - error: Base classes for class "ToonSolarDeviceSensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:108:7 - error: Base classes for class "ToonSolarDeviceSensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:112:7 - error: Base classes for class "ToonBoilerDeviceSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:112:7 - error: Base classes for class "ToonBoilerDeviceSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:112:7 - error: Base classes for class "ToonBoilerDeviceSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:112:7 - error: Base classes for class "ToonBoilerDeviceSensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:112:7 - error: Base classes for class "ToonBoilerDeviceSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:112:7 - error: Base classes for class "ToonBoilerDeviceSensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:112:7 - error: Base classes for class "ToonBoilerDeviceSensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:112:7 - error: Base classes for class "ToonBoilerDeviceSensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:116:7 - error: Base classes for class "ToonDisplayDeviceSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:116:7 - error: Base classes for class "ToonDisplayDeviceSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:116:7 - error: Base classes for class "ToonDisplayDeviceSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:116:7 - error: Base classes for class "ToonDisplayDeviceSensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:116:7 - error: Base classes for class "ToonDisplayDeviceSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:116:7 - error: Base classes for class "ToonDisplayDeviceSensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:116:7 - error: Base classes for class "ToonDisplayDeviceSensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/sensor.py:116:7 - error: Base classes for class "ToonDisplayDeviceSensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/toon/switch.py + /homeassistant/components/toon/switch.py:39:7 - error: Base classes for class "ToonSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/switch.py:50:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ToonSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/switch.py:50:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "ToonSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/switch.py:58:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/toon/switch.py:64:7 - error: Base classes for class "ToonProgramSwitch" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/switch.py:64:7 - error: Base classes for class "ToonProgramSwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/switch.py:64:7 - error: Base classes for class "ToonProgramSwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/switch.py:64:7 - error: Base classes for class "ToonProgramSwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/switch.py:68:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/toon/switch.py:75:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/toon/switch.py:82:7 - error: Base classes for class "ToonHolidayModeSwitch" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/switch.py:82:7 - error: Base classes for class "ToonHolidayModeSwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/switch.py:82:7 - error: Base classes for class "ToonHolidayModeSwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/switch.py:82:7 - error: Base classes for class "ToonHolidayModeSwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/toon/switch.py:86:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/toon/switch.py:93:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/torque/sensor.py + /homeassistant/components/torque/sensor.py:141:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/torque/sensor.py:146:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/torque/sensor.py:151:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/torque/sensor.py:156:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/totalconnect/__init__.py + /homeassistant/components/totalconnect/__init__.py:33:24 - error: Argument of type "tuple[Any, Any, dict[int, Any], Any]" cannot be assigned to parameter "args" of type "_Ts@async_add_executor_job" in function "async_add_executor_job" +   Type "*tuple[Any, Any, dict[int, Any], Any]" is not assignable to type "*tuple[str, str, Dict[str, str] | None, bool, int, bool]" +     "*tuple[Any, Any, dict[int, Any], Any]" is not assignable to "*tuple[str, str, Dict[str, str] | None, bool, int, bool]" +       Tuple entry 3 is incorrect type +         Type "dict[int, Any]" is not assignable to type "Dict[str, str] | None" +           "dict[int, Any]" is not assignable to "Dict[str, str]" +           "dict[int, Any]" is not assignable to "None" (reportArgumentType) +/homeassistant/components/totalconnect/alarm_control_panel.py + /homeassistant/components/totalconnect/alarm_control_panel.py:59:7 - error: Base classes for class "TotalConnectAlarm" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/totalconnect/alarm_control_panel.py:98:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/totalconnect/alarm_control_panel.py:139:42 - error: Argument of type "dict[str, Any | None]" cannot be assigned to parameter "translation_placeholders" of type "dict[str, str] | None" in function "__init__" +   Type "dict[str, Any | None]" is not assignable to type "dict[str, str] | None" +     "dict[str, Any | None]" is not assignable to "dict[str, str]" +       Type parameter "_VT@dict" is invariant, but "Any | None" is not the same as "str" +       Consider switching from "dict" to "Mapping" which is covariant in the value type +     "dict[str, Any | None]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/totalconnect/alarm_control_panel.py:162:42 - error: Argument of type "dict[str, Any | None]" cannot be assigned to parameter "translation_placeholders" of type "dict[str, str] | None" in function "__init__" +   Type "dict[str, Any | None]" is not assignable to type "dict[str, str] | None" +     "dict[str, Any | None]" is not assignable to "dict[str, str]" +       Type parameter "_VT@dict" is invariant, but "Any | None" is not the same as "str" +       Consider switching from "dict" to "Mapping" which is covariant in the value type +     "dict[str, Any | None]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/totalconnect/alarm_control_panel.py:185:42 - error: Argument of type "dict[str, Any | None]" cannot be assigned to parameter "translation_placeholders" of type "dict[str, str] | None" in function "__init__" +   Type "dict[str, Any | None]" is not assignable to type "dict[str, str] | None" +     "dict[str, Any | None]" is not assignable to "dict[str, str]" +       Type parameter "_VT@dict" is invariant, but "Any | None" is not the same as "str" +       Consider switching from "dict" to "Mapping" which is covariant in the value type +     "dict[str, Any | None]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/totalconnect/alarm_control_panel.py:208:42 - error: Argument of type "dict[str, Any | None]" cannot be assigned to parameter "translation_placeholders" of type "dict[str, str] | None" in function "__init__" +   Type "dict[str, Any | None]" is not assignable to type "dict[str, str] | None" +     "dict[str, Any | None]" is not assignable to "dict[str, str]" +       Type parameter "_VT@dict" is invariant, but "Any | None" is not the same as "str" +       Consider switching from "dict" to "Mapping" which is covariant in the value type +     "dict[str, Any | None]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/totalconnect/alarm_control_panel.py:230:42 - error: Argument of type "dict[str, Any | None]" cannot be assigned to parameter "translation_placeholders" of type "dict[str, str] | None" in function "__init__" +   Type "dict[str, Any | None]" is not assignable to type "dict[str, str] | None" +     "dict[str, Any | None]" is not assignable to "dict[str, str]" +       Type parameter "_VT@dict" is invariant, but "Any | None" is not the same as "str" +       Consider switching from "dict" to "Mapping" which is covariant in the value type +     "dict[str, Any | None]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/totalconnect/alarm_control_panel.py:252:42 - error: Argument of type "dict[str, Any | None]" cannot be assigned to parameter "translation_placeholders" of type "dict[str, str] | None" in function "__init__" +   Type "dict[str, Any | None]" is not assignable to type "dict[str, str] | None" +     "dict[str, Any | None]" is not assignable to "dict[str, str]" +       Type parameter "_VT@dict" is invariant, but "Any | None" is not the same as "str" +       Consider switching from "dict" to "Mapping" which is covariant in the value type +     "dict[str, Any | None]" is not assignable to "None" (reportArgumentType) +/homeassistant/components/totalconnect/binary_sensor.py + /homeassistant/components/totalconnect/binary_sensor.py:141:64 - error: Argument of type "int" cannot be assigned to parameter "location_id" of type "str" in function "__init__" +   "int" is not assignable to "str" (reportArgumentType) + /homeassistant/components/totalconnect/binary_sensor.py:151:25 - error: Argument of type "int" cannot be assigned to parameter "location_id" of type "str" in function "__init__" +   "int" is not assignable to "str" (reportArgumentType) + /homeassistant/components/totalconnect/binary_sensor.py:159:7 - error: Base classes for class "TotalConnectZoneBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/totalconnect/binary_sensor.py:173:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TotalConnectZoneBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/totalconnect/binary_sensor.py:173:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TotalConnectZoneBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/totalconnect/binary_sensor.py:181:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/totalconnect/binary_sensor.py:186:9 - error: "device_class" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/totalconnect/binary_sensor.py:186:9 - error: "device_class" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[BinarySensorDeviceClass | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/totalconnect/binary_sensor.py:193:7 - error: Base classes for class "TotalConnectAlarmBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/totalconnect/binary_sensor.py:206:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TotalConnectAlarmBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/totalconnect/binary_sensor.py:206:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TotalConnectAlarmBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/totalconnect/binary_sensor.py:213:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/totalconnect/button.py + /homeassistant/components/totalconnect/button.py:55:61 - error: Argument of type "int" cannot be assigned to parameter "location_id" of type "str" in function "__init__" +   "int" is not assignable to "str" (reportArgumentType) + /homeassistant/components/totalconnect/button.py:63:7 - error: Base classes for class "TotalConnectZoneBypassButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/totalconnect/button.py:83:7 - error: Base classes for class "TotalConnectPanelButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/totalconnect/button.py:96:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TotalConnectButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/totalconnect/button.py:96:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "TotalConnectButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/totalconnect/config_flow.py + /homeassistant/components/totalconnect/config_flow.py:156:19 - error: Argument of type "tuple[str | None, str, dict[int, str | None]]" cannot be assigned to parameter "args" of type "_Ts@async_add_executor_job" in function "async_add_executor_job" +   Type "*tuple[str | None, str, dict[int, str | None]]" is not assignable to type "*tuple[str, str, Dict[str, str] | None, bool, int, bool]" +     "*tuple[str | None, str, dict[int, str | None]]" is not assignable to "*tuple[str, str, Dict[str, str] | None, bool, int, bool]" +       Tuple entry 1 is incorrect type +         Type "str | None" is not assignable to type "str" +           "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/totalconnect/diagnostics.py + /homeassistant/components/totalconnect/diagnostics.py:40:32 - error: "_master_user" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/totalconnect/diagnostics.py:41:36 - error: "_user_admin" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/totalconnect/diagnostics.py:42:38 - error: "_config_admin" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/totalconnect/diagnostics.py:43:42 - error: "security_problem" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/totalconnect/diagnostics.py:44:34 - error: "_features" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/totalconnect/entity.py + /homeassistant/components/totalconnect/entity.py:32:35 - error: Argument of type "set[tuple[Literal['totalconnect'], Any | None]]" cannot be assigned to parameter "identifiers" of type "set[tuple[str, str]]" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/touchline/climate.py + /homeassistant/components/touchline/climate.py:7:6 - error: Import "pytouchline_extended" could not be resolved (reportMissingImports) +/homeassistant/components/touchline_sl/climate.py + /homeassistant/components/touchline_sl/climate.py:36:7 - error: Base classes for class "TouchlineSLZone" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/touchline_sl/climate.py:102:47 - error: Cannot access attribute "name" for class "LocalScheduleModel" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/touchline_sl/climate.py:102:47 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/tplink/binary_sensor.py + /homeassistant/components/tplink/binary_sensor.py:105:7 - error: Base classes for class "TPLinkBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/binary_sensor.py:108:5 - error: "entity_description" overrides symbol of same name in class "CoordinatedTPLinkFeatureEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkBinarySensorEntityDescription" is not the same as base type "TPLinkFeatureEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/binary_sensor.py:108:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tplink/button.py + /homeassistant/components/tplink/button.py:126:7 - error: Base classes for class "TPLinkButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/button.py:129:5 - error: "entity_description" overrides symbol of same name in class "CoordinatedTPLinkFeatureEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkButtonEntityDescription" is not the same as base type "TPLinkFeatureEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/button.py:129:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tplink/camera.py + /homeassistant/components/tplink/camera.py:97:5 - error: "entity_description" overrides symbol of same name in class "CoordinatedTPLinkModuleEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkCameraEntityDescription" is not the same as base type "TPLinkModuleEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/camera.py:97:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TPLinkCameraEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/camera.py:228:17 - error: Argument of type "StreamReader" cannot be assigned to parameter "stream" of type "StreamReader" in function "async_aiohttp_proxy_stream" +   "asyncio.streams.StreamReader" is not assignable to "aiohttp.streams.StreamReader" (reportArgumentType) +/homeassistant/components/tplink/climate.py + /homeassistant/components/tplink/climate.py:11:51 - error: "ThermostatState" is not exported from module "kasa.smart.modules.temperaturecontrol" +   Import from "kasa.interfaces.thermostat" instead (reportPrivateImportUsage) + /homeassistant/components/tplink/climate.py:101:7 - error: Base classes for class "TPLinkClimateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/climate.py:113:5 - error: "entity_description" overrides symbol of same name in class "CoordinatedTPLinkModuleEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkClimateEntityDescription" is not the same as base type "TPLinkModuleEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/climate.py:113:5 - error: "entity_description" overrides symbol of same name in class "ClimateEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkClimateEntityDescription" is not the same as base type "ClimateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/climate.py:150:15 - error: Method "async_set_temperature" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/tplink/climate.py:157:15 - error: Method "async_set_hvac_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/tplink/climate.py:165:15 - error: Method "async_turn_on" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/tplink/climate.py:170:15 - error: Method "async_turn_off" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/tplink/config_flow.py + /homeassistant/components/tplink/config_flow.py:140:17 - error: "entry_conn_params_dict" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/tplink/config_flow.py:141:17 - error: "device_conn_params_dict" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/tplink/config_flow.py:201:9 - error: Method "is_matching" overrides class "ConfigFlow" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "ConfigFlow", override parameter is type "TPLinkConfigFlow" +     "ConfigFlow" is not assignable to "TPLinkConfigFlow" (reportIncompatibleMethodOverride) + /homeassistant/components/tplink/config_flow.py:459:27 - error: "un" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/tplink/config_flow.py:459:34 - error: "pw" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/tplink/config_flow.py:579:23 - error: Could not access item in TypedDict +   "context" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/tplink/config_flow.py:582:24 - error: Could not access item in TypedDict +   "entry_id" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/tplink/entity.py + /homeassistant/components/tplink/entity.py:178:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TPLinkEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/entity.py:300:5 - error: "entity_description" overrides symbol of same name in class "CoordinatedTPLinkEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkFeatureEntityDescription" is not the same as base type "TPLinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/entity.py:540:5 - error: "entity_description" overrides symbol of same name in class "CoordinatedTPLinkEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkModuleEntityDescription" is not the same as base type "TPLinkEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/entity.py:678:45 - error: "has_parent_entities" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/tplink/fan.py + /homeassistant/components/tplink/fan.py:93:7 - error: Base classes for class "TPLinkFanEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/fan.py:103:5 - error: "entity_description" overrides symbol of same name in class "CoordinatedTPLinkModuleEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkFanEntityDescription" is not the same as base type "TPLinkModuleEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/fan.py:103:5 - error: "entity_description" overrides symbol of same name in class "FanEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkFanEntityDescription" is not the same as base type "FanEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/fan.py:118:15 - error: Method "async_turn_on" overrides class "FanEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/tplink/fan.py:134:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/tplink/light.py + /homeassistant/components/tplink/light.py:240:7 - error: Base classes for class "TPLinkLightEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/light.py:246:5 - error: "entity_description" overrides symbol of same name in class "CoordinatedTPLinkModuleEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkLightEntityDescription" is not the same as base type "TPLinkModuleEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/light.py:246:5 - error: "entity_description" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkLightEntityDescription" is not the same as base type "LightEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/light.py:336:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/tplink/light.py:349:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/tplink/number.py + /homeassistant/components/tplink/number.py:114:7 - error: Base classes for class "TPLinkNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/number.py:117:5 - error: "entity_description" overrides symbol of same name in class "CoordinatedTPLinkFeatureEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkNumberEntityDescription" is not the same as base type "TPLinkFeatureEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/number.py:117:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/number.py:136:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/tplink/select.py + /homeassistant/components/tplink/select.py:84:7 - error: Base classes for class "TPLinkSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/select.py:87:5 - error: "entity_description" overrides symbol of same name in class "CoordinatedTPLinkFeatureEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkSelectEntityDescription" is not the same as base type "TPLinkFeatureEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/select.py:87:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/select.py:105:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/tplink/sensor.py + /homeassistant/components/tplink/sensor.py:302:7 - error: Base classes for class "TPLinkSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/sensor.py:305:5 - error: "entity_description" overrides symbol of same name in class "CoordinatedTPLinkFeatureEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkSensorEntityDescription" is not the same as base type "TPLinkFeatureEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/sensor.py:305:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tplink/siren.py + /homeassistant/components/tplink/siren.py:92:7 - error: Base classes for class "TPLinkSirenEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/siren.py:104:5 - error: "entity_description" overrides symbol of same name in class "CoordinatedTPLinkModuleEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkSirenEntityDescription" is not the same as base type "TPLinkModuleEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/siren.py:104:5 - error: "entity_description" overrides symbol of same name in class "SirenEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkSirenEntityDescription" is not the same as base type "SirenEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/siren.py:127:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/tplink/siren.py:152:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/tplink/switch.py + /homeassistant/components/tplink/switch.py:116:7 - error: Base classes for class "TPLinkSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/switch.py:119:5 - error: "entity_description" overrides symbol of same name in class "CoordinatedTPLinkFeatureEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkSwitchEntityDescription" is not the same as base type "TPLinkFeatureEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/switch.py:119:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/switch.py:122:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/tplink/switch.py:127:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/tplink/vacuum.py + /homeassistant/components/tplink/vacuum.py:94:7 - error: Base classes for class "TPLinkVacuumEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/vacuum.py:105:5 - error: "entity_description" overrides symbol of same name in class "CoordinatedTPLinkModuleEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkVacuumEntityDescription" is not the same as base type "TPLinkModuleEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/vacuum.py:105:5 - error: "entity_description" overrides symbol of same name in class "StateVacuumEntity" +   Variable is mutable so its type is invariant +     Override type "TPLinkVacuumEntityDescription" is not the same as base type "StateVacuumEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink/vacuum.py:129:15 - error: Method "async_start" overrides class "StateVacuumEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/tplink/vacuum.py:134:15 - error: Method "async_pause" overrides class "StateVacuumEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/tplink/vacuum.py:139:15 - error: Method "async_return_to_base" overrides class "StateVacuumEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/tplink/vacuum.py:144:15 - error: Method "async_set_fan_speed" overrides class "StateVacuumEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/tplink/vacuum.py:153:9 - error: "battery_level" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tplink_lte/__init__.py + /homeassistant/components/tplink_lte/__init__.py:11:8 - error: Import "tp_connected" could not be resolved (reportMissingImports) +/homeassistant/components/tplink_lte/notify.py + /homeassistant/components/tplink_lte/notify.py:9:8 - error: Import "tp_connected" could not be resolved (reportMissingImports) +/homeassistant/components/tplink_omada/binary_sensor.py + /homeassistant/components/tplink_omada/binary_sensor.py:96:7 - error: Base classes for class "OmadaGatewayPortBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tplink_omada/binary_sensor.py:112:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "GatewayPortBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink_omada/binary_sensor.py:112:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "GatewayPortBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tplink_omada/device_tracker.py + /homeassistant/components/tplink_omada/device_tracker.py:43:7 - error: Base classes for class "OmadaClientScannerEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tplink_omada/device_tracker.py:78:9 - error: "ip_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink_omada/device_tracker.py:83:9 - error: "mac_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink_omada/device_tracker.py:88:9 - error: "hostname" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink_omada/device_tracker.py:98:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tplink_omada/sensor.py + /homeassistant/components/tplink_omada/sensor.py:111:7 - error: Base classes for class "OmadaDeviceSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tplink_omada/sensor.py:124:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "OmadaDeviceSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink_omada/sensor.py:124:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "OmadaDeviceSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink_omada/sensor.py:128:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/tplink_omada/switch.py + /homeassistant/components/tplink_omada/switch.py:258:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "OmadaDevicePortSwitchEntityDescription[TCoordinator@OmadaDevicePortSwitchEntity, TDevice@OmadaDevicePortSwitchEntity, TPort@OmadaDevicePortSwitchEntity]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink_omada/switch.py:258:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "OmadaDevicePortSwitchEntityDescription[TCoordinator@OmadaDevicePortSwitchEntity, TDevice@OmadaDevicePortSwitchEntity, TPort@OmadaDevicePortSwitchEntity]" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tplink_omada/switch.py:291:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/tplink_omada/update.py + /homeassistant/components/tplink_omada/update.py:113:7 - error: Base classes for class "OmadaDeviceUpdate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/traccar/device_tracker.py + /homeassistant/components/traccar/device_tracker.py:113:7 - error: Base classes for class "TraccarEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/traccar/device_tracker.py:113:7 - error: Base classes for class "TraccarEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/traccar/device_tracker.py:113:7 - error: Base classes for class "TraccarEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/traccar/device_tracker.py:113:7 - error: Base classes for class "TraccarEntity" define variable "force_update" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/traccar/device_tracker.py:135:9 - error: "battery_level" overrides symbol of same name in class "BaseTrackerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/traccar/device_tracker.py:176:9 - error: Object of type "None" cannot be called (reportOptionalCall) +/homeassistant/components/traccar_server/binary_sensor.py + /homeassistant/components/traccar_server/binary_sensor.py:73:7 - error: Base classes for class "TraccarServerBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/traccar_server/binary_sensor.py:87:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TraccarServerBinarySensorEntityDescription[_T@TraccarServerBinarySensor]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/traccar_server/binary_sensor.py:87:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TraccarServerBinarySensorEntityDescription[_T@TraccarServerBinarySensor]" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/traccar_server/binary_sensor.py:93:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/traccar_server/device_tracker.py + /homeassistant/components/traccar_server/device_tracker.py:30:7 - error: Base classes for class "TraccarServerDeviceTracker" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/traccar_server/device_tracker.py:37:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/traccar_server/device_tracker.py:47:9 - error: "latitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/traccar_server/device_tracker.py:52:9 - error: "longitude" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/traccar_server/device_tracker.py:57:9 - error: "location_accuracy" overrides symbol of same name in class "TrackerEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/traccar_server/sensor.py + /homeassistant/components/traccar_server/sensor.py:101:7 - error: Base classes for class "TraccarServerSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/traccar_server/sensor.py:115:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TraccarServerSensorEntityDescription[_T@TraccarServerSensor]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/traccar_server/sensor.py:115:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TraccarServerSensorEntityDescription[_T@TraccarServerSensor]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/traccar_server/sensor.py:121:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/trace/__init__.py + /homeassistant/components/trace/__init__.py:50:5 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/components/trace/__init__.py:50:5 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[str, _S@__setitem__]" is not assignable to type "TraceData" +     "dict[str, _S@__setitem__]" is not assignable to "dict[str, LimitedSizeDict[str, BaseTrace]]" +       Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "LimitedSizeDict[str, BaseTrace]" +       Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) +/homeassistant/components/tractive/__init__.py + /homeassistant/components/tractive/__init__.py:62:26 - error: "tracker" is not a known attribute of module "aiotractive" (reportAttributeAccessIssue) + /homeassistant/components/tractive/__init__.py:92:24 - error: "exceptions" is not a known attribute of module "aiotractive" (reportAttributeAccessIssue) + /homeassistant/components/tractive/__init__.py:95:24 - error: "exceptions" is not a known attribute of module "aiotractive" (reportAttributeAccessIssue) + /homeassistant/components/tractive/__init__.py:106:24 - error: "exceptions" is not a known attribute of module "aiotractive" (reportAttributeAccessIssue) + /homeassistant/components/tractive/__init__.py:130:28 - error: "trackable_object" is not a known attribute of module "aiotractive" (reportAttributeAccessIssue) + /homeassistant/components/tractive/__init__.py:199:27 - error: "trackable_object" is not a known attribute of module "aiotractive" (reportAttributeAccessIssue) + /homeassistant/components/tractive/__init__.py:202:30 - error: "trackable_object" is not a known attribute of module "aiotractive" (reportAttributeAccessIssue) + /homeassistant/components/tractive/__init__.py:206:55 - error: "tracker" is not a known attribute of module "aiotractive" (reportAttributeAccessIssue) + /homeassistant/components/tractive/__init__.py:224:36 - error: "CoroutineType[Any, Any, Unknown]" is not iterable +   "__aiter__" method not defined (reportGeneralTypeIssues) + /homeassistant/components/tractive/__init__.py:248:32 - error: "exceptions" is not a known attribute of module "aiotractive" (reportAttributeAccessIssue) + /homeassistant/components/tractive/__init__.py:259:32 - error: "exceptions" is not a known attribute of module "aiotractive" (reportAttributeAccessIssue) +/homeassistant/components/tractive/config_flow.py + /homeassistant/components/tractive/config_flow.py:32:26 - error: "api" is not a known attribute of module "aiotractive" (reportAttributeAccessIssue) + /homeassistant/components/tractive/config_flow.py:35:24 - error: "exceptions" is not a known attribute of module "aiotractive" (reportAttributeAccessIssue) +/homeassistant/components/tractive/device_tracker.py + /homeassistant/components/tractive/device_tracker.py:64:9 - error: "battery_level" overrides symbol of same name in class "BaseTrackerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tractive/sensor.py + /homeassistant/components/tractive/sensor.py:77:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TractiveSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tractive/sensor.py:77:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TractiveSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tractive/switch.py + /homeassistant/components/tractive/switch.py:98:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TractiveSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tractive/switch.py:98:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "TractiveSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tradfri/__init__.py + /homeassistant/components/tradfri/__init__.py:274:50 - error: "device_id" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/tradfri/__init__.py:280:66 - error: "device_id" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/tradfri/cover.py + /homeassistant/components/tradfri/cover.py:41:7 - error: Base classes for class "TradfriCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tradfri/cover.py:67:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tradfri/cover.py:72:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tradfri/cover.py:106:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tradfri/fan.py + /homeassistant/components/tradfri/fan.py:54:7 - error: Base classes for class "TradfriAirPurifierFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tradfri/fan.py:101:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tradfri/fan.py:112:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tradfri/light.py + /homeassistant/components/tradfri/light.py:51:7 - error: Base classes for class "TradfriLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tradfri/light.py:106:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tradfri/light.py:113:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tradfri/light.py:122:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tradfri/light.py:136:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tradfri/light.py:240:29 - error: Operator "+" not supported for "None" (reportOptionalOperand) +/homeassistant/components/tradfri/sensor.py + /homeassistant/components/tradfri/sensor.py:173:7 - error: Base classes for class "TradfriSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tradfri/sensor.py:192:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TradfriSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tradfri/sensor.py:192:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TradfriSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tradfri/switch.py + /homeassistant/components/tradfri/switch.py:41:7 - error: Base classes for class "TradfriSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tradfri/switch.py:67:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/trafikverket_camera/binary_sensor.py + /homeassistant/components/trafikverket_camera/binary_sensor.py:53:7 - error: Base classes for class "TrafikverketCameraBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/trafikverket_camera/binary_sensor.py:58:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TVCameraSensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/trafikverket_camera/camera.py + /homeassistant/components/trafikverket_camera/camera.py:66:9 - error: "is_on" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/trafikverket_camera/camera.py:71:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/trafikverket_camera/sensor.py + /homeassistant/components/trafikverket_camera/sensor.py:88:7 - error: Base classes for class "TrafikverketCameraSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/trafikverket_camera/sensor.py:91:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TVCameraSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/trafikverket_ferry/sensor.py + /homeassistant/components/trafikverket_ferry/sensor.py:109:7 - error: Base classes for class "FerrySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/trafikverket_ferry/sensor.py:126:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TrafikverketSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/trafikverket_ferry/sensor.py:126:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TrafikverketSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/trafikverket_train/sensor.py + /homeassistant/components/trafikverket_train/sensor.py:127:7 - error: Base classes for class "TrainSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/trafikverket_train/sensor.py:144:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TrafikverketSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/trafikverket_train/sensor.py:144:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TrafikverketSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/trafikverket_train/sensor.py:166:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/trafikverket_weatherstation/sensor.py + /homeassistant/components/trafikverket_weatherstation/sensor.py:222:7 - error: Base classes for class "TrafikverketWeatherStation" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/trafikverket_weatherstation/sensor.py:240:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TrafikverketSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/trafikverket_weatherstation/sensor.py:240:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TrafikverketSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/trafikverket_weatherstation/sensor.py:252:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/transmission/__init__.py + /homeassistant/components/transmission/__init__.py:133:32 - error: "new" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/transmission/sensor.py + /homeassistant/components/transmission/sensor.py:141:7 - error: Base classes for class "TransmissionSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/transmission/sensor.py:144:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TransmissionSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/transmission/sensor.py:147:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/transmission/sensor.py:152:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/transmission/switch.py + /homeassistant/components/transmission/switch.py:56:7 - error: Base classes for class "TransmissionSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/transmission/switch.py:59:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "TransmissionSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/transmission/switch.py:62:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/transport_nsw/sensor.py + /homeassistant/components/transport_nsw/sensor.py:92:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/transport_nsw/sensor.py:97:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/transport_nsw/sensor.py:102:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/transport_nsw/sensor.py:117:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/transport_nsw/sensor.py:122:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/travisci/sensor.py + /homeassistant/components/travisci/sensor.py:8:6 - error: Import "travispy" could not be resolved (reportMissingImports) + /homeassistant/components/travisci/sensor.py:9:6 - error: Import "travispy.errors" could not be resolved (reportMissingImports) + /homeassistant/components/travisci/sensor.py:157:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/trend/binary_sensor.py + /homeassistant/components/trend/binary_sensor.py:164:7 - error: Base classes for class "SensorTrend" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/trend/binary_sensor.py:164:7 - error: Base classes for class "SensorTrend" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/trend/binary_sensor.py:164:7 - error: Base classes for class "SensorTrend" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/trend/binary_sensor.py:164:7 - error: Base classes for class "SensorTrend" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/trend/binary_sensor.py:208:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/triggercmd/switch.py + /homeassistant/components/triggercmd/switch.py:59:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/tts/__init__.py + /homeassistant/components/tts/__init__.py:23:30 - error: "TextFrame" is not exported from module "mutagen.id3" +   Import from "mutagen.id3._frames" instead (reportPrivateImportUsage) + /homeassistant/components/tts/__init__.py:86:5 - warning: "SampleFormat" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /homeassistant/components/tts/__init__.py:659:13 - error: Argument of type "HassJob[(_now: datetime), None]" cannot be assigned to parameter "action" of type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" in function "async_call_later" +   Type "HassJob[(_now: datetime), None]" is not assignable to type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" +     "HassJob[(_now: datetime), None]" is not assignable to "HassJob[(datetime), Coroutine[Any, Any, None] | None]" +       Type parameter "_R_co@HassJob" is invariant, but "None" is not the same as "Coroutine[Any, Any, None] | None" +     Type "HassJob[(_now: datetime), None]" is not assignable to type "(datetime) -> (Coroutine[Any, Any, None] | None)" (reportArgumentType) + /homeassistant/components/tts/__init__.py:1156:32 - error: "File" is not exported from module "mutagen" (reportPrivateImportUsage) + /homeassistant/components/tts/__init__.py:1178:24 - error: "MutagenError" is not exported from module "mutagen" (reportPrivateImportUsage) +/homeassistant/components/tts/entity.py + /homeassistant/components/tts/entity.py:66:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/tts/media_source.py + /homeassistant/components/tts/media_source.py:128:5 - error: "name" overrides symbol of same name in class "MediaSource" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/tuya/alarm_control_panel.py + /homeassistant/components/tuya/alarm_control_panel.py:120:42 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceCategory" in function "get" +   "str" is not assignable to "DeviceCategory" (reportArgumentType) + /homeassistant/components/tuya/alarm_control_panel.py:147:7 - error: Base classes for class "TuyaAlarmEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/alarm_control_panel.py:147:7 - error: Base classes for class "TuyaAlarmEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/alarm_control_panel.py:178:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/alarm_control_panel.py:183:9 - error: "changed_by" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tuya/binary_sensor.py + /homeassistant/components/tuya/binary_sensor.py:427:51 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceCategory" in function "get" +   "str" is not assignable to "DeviceCategory" (reportArgumentType) + /homeassistant/components/tuya/binary_sensor.py:443:7 - error: Base classes for class "TuyaBinarySensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/binary_sensor.py:443:7 - error: Base classes for class "TuyaBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/binary_sensor.py:457:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TuyaBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/binary_sensor.py:457:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "TuyaBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/binary_sensor.py:462:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tuya/button.py + /homeassistant/components/tuya/button.py:82:44 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceCategory" in function "get" +   "str" is not assignable to "DeviceCategory" (reportArgumentType) + /homeassistant/components/tuya/button.py:102:7 - error: Base classes for class "TuyaButtonEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/button.py:102:7 - error: Base classes for class "TuyaButtonEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/tuya/camera.py + /homeassistant/components/tuya/camera.py:61:7 - error: Base classes for class "TuyaCameraEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/camera.py:84:9 - error: "is_recording" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/camera.py:91:9 - error: "motion_detection_enabled" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/tuya/climate.py + /homeassistant/components/tuya/climate.py:108:25 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceCategory" in function "__getitem__" +   "str" is not assignable to "DeviceCategory" (reportArgumentType) + /homeassistant/components/tuya/climate.py:127:7 - error: Base classes for class "TuyaClimateEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/climate.py:127:7 - error: Base classes for class "TuyaClimateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/climate.py:148:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TuyaClimateEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/climate.py:148:14 - error: "entity_description" overrides symbol of same name in class "ClimateEntity" +   Variable is mutable so its type is invariant +     Override type "TuyaClimateEntityDescription" is not the same as base type "ClimateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/climate.py:365:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/climate.py:384:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/climate.py:389:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/climate.py:401:9 - error: "target_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/climate.py:406:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/climate.py:430:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/climate.py:442:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/climate.py:451:9 - error: "swing_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tuya/config_flow.py + /homeassistant/components/tuya/config_flow.py:144:19 - error: Argument of type "Any | None" cannot be assigned to parameter "title" of type "str" in function "async_create_entry" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/tuya/cover.py + /homeassistant/components/tuya/cover.py:209:43 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceCategory" in function "get" +   "str" is not assignable to "DeviceCategory" (reportArgumentType) + /homeassistant/components/tuya/cover.py:243:7 - error: Base classes for class "TuyaCoverEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/cover.py:243:7 - error: Base classes for class "TuyaCoverEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/cover.py:261:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TuyaCoverEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/cover.py:261:14 - error: "entity_description" overrides symbol of same name in class "CoverEntity" +   Variable is mutable so its type is invariant +     Override type "TuyaCoverEntityDescription" is not the same as base type "CoverEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/cover.py:293:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/cover.py:298:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/cover.py:306:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tuya/diagnostics.py + /homeassistant/components/tuya/diagnostics.py:50:19 - error: "client" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/tuya/diagnostics.py:51:37 - error: "client" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/tuya/entity.py + /homeassistant/components/tuya/entity.py:32:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/entity.py:43:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/tuya/event.py + /homeassistant/components/tuya/event.py:98:43 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceCategory" in function "get" +   "str" is not assignable to "DeviceCategory" (reportArgumentType) + /homeassistant/components/tuya/event.py:120:7 - error: Base classes for class "TuyaEventEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/event.py:120:7 - error: Base classes for class "TuyaEventEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/event.py:134:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "EventEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/tuya/fan.py + /homeassistant/components/tuya/fan.py:87:7 - error: Base classes for class "TuyaFanEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/fan.py:87:7 - error: Base classes for class "TuyaFanEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/fan.py:237:9 - error: "current_direction" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/fan.py:254:9 - error: "oscillating" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/fan.py:261:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/fan.py:268:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/fan.py:285:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) +/homeassistant/components/tuya/humidifier.py + /homeassistant/components/tuya/humidifier.py:95:48 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceCategory" in function "get" +   "str" is not assignable to "DeviceCategory" (reportArgumentType) + /homeassistant/components/tuya/humidifier.py:127:7 - error: Base classes for class "TuyaHumidifierEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/humidifier.py:127:7 - error: Base classes for class "TuyaHumidifierEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/humidifier.py:146:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TuyaHumidifierEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/humidifier.py:146:14 - error: "entity_description" overrides symbol of same name in class "HumidifierEntity" +   Variable is mutable so its type is invariant +     Override type "TuyaHumidifierEntityDescription" is not the same as base type "HumidifierEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/humidifier.py:169:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/humidifier.py:174:9 - error: "mode" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/humidifier.py:179:9 - error: "target_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/humidifier.py:184:9 - error: "current_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tuya/light.py + /homeassistant/components/tuya/light.py:522:43 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceCategory" in function "get" +   "str" is not assignable to "DeviceCategory" (reportArgumentType) + /homeassistant/components/tuya/light.py:551:7 - error: Base classes for class "TuyaLightEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/light.py:551:7 - error: Base classes for class "TuyaLightEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/light.py:576:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TuyaLightEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/light.py:576:14 - error: "entity_description" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "TuyaLightEntityDescription" is not the same as base type "LightEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/light.py:638:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/light.py:740:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/light.py:765:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/light.py:774:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tuya/models.py + /homeassistant/components/tuya/models.py:208:37 - error: Argument of type "DPType" cannot be assigned to parameter "dptype" of type "Literal[DPType.BOOLEAN, DPType.JSON, DPType.RAW]" in function "find_dpcode" +   Type "DPType" is not assignable to type "Literal[DPType.BOOLEAN, DPType.JSON, DPType.RAW]" +     "DPType" is not assignable to type "Literal[DPType.BOOLEAN]" +     "DPType" is not assignable to type "Literal[DPType.JSON]" +     "DPType" is not assignable to type "Literal[DPType.RAW]" (reportArgumentType) + /homeassistant/components/tuya/models.py:431:33 - error: Argument of type "dict[str, Any] | str" cannot be assigned to parameter "data" of type "str" in function "from_json" +   Type "dict[str, Any] | str" is not assignable to type "str" +     "dict[str, Any]" is not assignable to "str" (reportArgumentType) +/homeassistant/components/tuya/number.py + /homeassistant/components/tuya/number.py:463:44 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceCategory" in function "get" +   "str" is not assignable to "DeviceCategory" (reportArgumentType) + /homeassistant/components/tuya/number.py:483:7 - error: Base classes for class "TuyaNumberEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/number.py:483:7 - error: Base classes for class "TuyaNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/number.py:552:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tuya/scene.py + /homeassistant/components/tuya/scene.py:44:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/scene.py:55:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/scene.py:61:41 - error: Argument of type "int" cannot be assigned to parameter "home_id" of type "str" in function "trigger_scene" +   "int" is not assignable to "str" (reportArgumentType) +/homeassistant/components/tuya/select.py + /homeassistant/components/tuya/select.py:366:44 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceCategory" in function "get" +   "str" is not assignable to "DeviceCategory" (reportArgumentType) + /homeassistant/components/tuya/select.py:388:7 - error: Base classes for class "TuyaSelectEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/select.py:388:7 - error: Base classes for class "TuyaSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/select.py:406:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tuya/sensor.py + /homeassistant/components/tuya/sensor.py:1750:44 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceCategory" in function "get" +   "str" is not assignable to "DeviceCategory" (reportArgumentType) + /homeassistant/components/tuya/sensor.py:1766:7 - error: Base classes for class "TuyaSensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/sensor.py:1766:7 - error: Base classes for class "TuyaSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/sensor.py:1781:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TuyaSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/sensor.py:1781:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TuyaSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/sensor.py:1837:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/tuya/siren.py + /homeassistant/components/tuya/siren.py:66:43 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceCategory" in function "get" +   "str" is not assignable to "DeviceCategory" (reportArgumentType) + /homeassistant/components/tuya/siren.py:86:7 - error: Base classes for class "TuyaSirenEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/siren.py:86:7 - error: Base classes for class "TuyaSirenEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/siren.py:106:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tuya/switch.py + /homeassistant/components/tuya/switch.py:947:45 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceCategory" in function "get" +   "str" is not assignable to "DeviceCategory" (reportArgumentType) + /homeassistant/components/tuya/switch.py:1022:7 - error: Base classes for class "TuyaSwitchEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/switch.py:1022:7 - error: Base classes for class "TuyaSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/switch.py:1039:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tuya/vacuum.py + /homeassistant/components/tuya/vacuum.py:97:7 - error: Base classes for class "TuyaVacuumEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/vacuum.py:97:7 - error: Base classes for class "TuyaVacuumEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/vacuum.py:147:9 - error: "fan_speed" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/vacuum.py:152:9 - error: "activity" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[VacuumActivity | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/tuya/valve.py + /homeassistant/components/tuya/valve.py:95:43 - error: Argument of type "str" cannot be assigned to parameter "key" of type "DeviceCategory" in function "get" +   "str" is not assignable to "DeviceCategory" (reportArgumentType) + /homeassistant/components/tuya/valve.py:115:7 - error: Base classes for class "TuyaValveEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/tuya/valve.py:115:7 - error: Base classes for class "TuyaValveEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/twentemilieu/calendar.py + /homeassistant/components/twentemilieu/calendar.py:27:7 - error: Base classes for class "TwenteMilieuCalendar" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/twentemilieu/entity.py + /homeassistant/components/twentemilieu/entity.py:14:7 - error: Base classes for class "TwenteMilieuEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/twentemilieu/sensor.py + /homeassistant/components/twentemilieu/sensor.py:76:7 - error: Base classes for class "TwenteMilieuSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/twentemilieu/sensor.py:88:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "TwenteMilieuSensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/twentemilieu/sensor.py:88:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "TwenteMilieuSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/twentemilieu/sensor.py:92:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/twinkly/coordinator.py + /homeassistant/components/twinkly/coordinator.py:97:13 - error: Argument of type "bool | None" cannot be assigned to parameter "is_on" of type "bool" in function "__init__" +   Type "bool | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) +/homeassistant/components/twinkly/light.py + /homeassistant/components/twinkly/light.py:38:7 - error: Base classes for class "TwinklyLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/twinkly/light.py:67:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/twinkly/light.py:76:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/twinkly/select.py + /homeassistant/components/twinkly/select.py:29:7 - error: Base classes for class "TwinklyModeSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/twinkly/select.py:42:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/twitch/sensor.py + /homeassistant/components/twitch/sensor.py:60:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/twitch/sensor.py:70:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/twitch/sensor.py:75:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/twitch/sensor.py:96:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/twitter/notify.py + /homeassistant/components/twitter/notify.py:13:6 - error: Import "TwitterAPI" could not be resolved (reportMissingImports) +/homeassistant/components/ubus/device_tracker.py + /homeassistant/components/ubus/device_tracker.py:8:6 - error: Import "openwrt.ubus" could not be resolved (reportMissingImports) +/homeassistant/components/uk_transport/sensor.py + /homeassistant/components/uk_transport/sensor.py:126:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/uk_transport/sensor.py:131:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/uk_transport/sensor.py:200:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/uk_transport/sensor.py:212:17 - error: Argument of type "Unknown | Any | None" cannot be assigned to parameter "value" of type "list[Unknown]" in function "__setitem__" +   Type "Unknown | Any | None" is not assignable to type "list[Unknown]" +     "None" is not assignable to "list[Unknown]" (reportArgumentType) + /homeassistant/components/uk_transport/sensor.py:272:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ukraine_alarm/binary_sensor.py + /homeassistant/components/ukraine_alarm/binary_sensor.py:84:7 - error: Base classes for class "UkraineAlarmSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/ukraine_alarm/binary_sensor.py:114:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/ukraine_alarm/config_flow.py + /homeassistant/components/ukraine_alarm/config_flow.py:59:35 - error: "regions" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/ukraine_alarm/config_flow.py:68:27 - error: "__getitem__" method not defined on type "ClientResponse" (reportIndexIssue) + /homeassistant/components/ukraine_alarm/config_flow.py:68:27 - error: "regions" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/ukraine_alarm/config_flow.py:103:46 - error: Argument of type "Any | list[dict[str, Any]] | None" cannot be assigned to parameter "regions" of type "list[dict[str, Any]]" in function "_find" +   Type "Any | list[dict[str, Any]] | None" is not assignable to type "list[dict[str, Any]]" +     "None" is not assignable to "list[dict[str, Any]]" (reportArgumentType) + /homeassistant/components/ukraine_alarm/config_flow.py:120:45 - error: Argument of type "Any | list[dict[str, Any]] | None" cannot be assigned to parameter "regions" of type "list[dict[str, Any]]" in function "_make_regions_object" +   Type "Any | list[dict[str, Any]] | None" is not assignable to type "list[dict[str, Any]]" +     "None" is not assignable to "list[dict[str, Any]]" (reportArgumentType) +/homeassistant/components/ukraine_alarm/coordinator.py + /homeassistant/components/ukraine_alarm/coordinator.py:56:22 - error: "__getitem__" method not defined on type "ClientResponse" (reportIndexIssue) +/homeassistant/components/unifi/button.py + /homeassistant/components/unifi/button.py:59:19 - error: "Controller" is not exported from module "aiounifi" (reportPrivateImportUsage) + /homeassistant/components/unifi/button.py:66:19 - error: "Controller" is not exported from module "aiounifi" (reportPrivateImportUsage) + /homeassistant/components/unifi/button.py:74:19 - error: "Controller" is not exported from module "aiounifi" (reportPrivateImportUsage) + /homeassistant/components/unifi/button.py:88:36 - error: "Controller" is not exported from module "aiounifi" (reportPrivateImportUsage) + /homeassistant/components/unifi/button.py:145:7 - error: Base classes for class "UnifiButtonEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifi/button.py:150:5 - error: "entity_description" overrides symbol of same name in class "UnifiEntity" +   Variable is mutable so its type is invariant +     Override type "UnifiButtonEntityDescription[HandlerT@UnifiButtonEntity, ApiItemT@UnifiButtonEntity]" is not the same as base type "UnifiEntityDescription[HandlerT@UnifiButtonEntity, ApiItemT@UnifiButtonEntity]" (reportIncompatibleVariableOverride) + /homeassistant/components/unifi/button.py:150:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "UnifiButtonEntityDescription[HandlerT@UnifiButtonEntity, ApiItemT@UnifiButtonEntity]" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/unifi/device_tracker.py + /homeassistant/components/unifi/device_tracker.py:146:39 - error: "Controller" is not exported from module "aiounifi" (reportPrivateImportUsage) + /homeassistant/components/unifi/device_tracker.py:148:37 - error: "Controller" is not exported from module "aiounifi" (reportPrivateImportUsage) + /homeassistant/components/unifi/device_tracker.py:227:7 - error: Base classes for class "UnifiScannerEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifi/device_tracker.py:232:5 - error: "entity_description" overrides symbol of same name in class "UnifiEntity" +   Variable is mutable so its type is invariant +     Override type "UnifiTrackerEntityDescription[Unknown, Unknown]" is not the same as base type "UnifiEntityDescription[HandlerT@UnifiScannerEntity, ApiItemT@UnifiScannerEntity]" (reportIncompatibleVariableOverride) + /homeassistant/components/unifi/device_tracker.py:232:5 - error: "entity_description" overrides symbol of same name in class "ScannerEntity" +   Variable is mutable so its type is invariant +     Override type "UnifiTrackerEntityDescription[Unknown, Unknown]" is not the same as base type "ScannerEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/unifi/device_tracker.py:261:9 - error: "hostname" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/unifi/device_tracker.py:266:9 - error: "ip_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/unifi/device_tracker.py:276:9 - error: "unique_id" incorrectly overrides property of same name in class "ScannerEntity" (reportIncompatibleMethodOverride) + /homeassistant/components/unifi/device_tracker.py:354:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/unifi/entity.py + /homeassistant/components/unifi/entity.py:102:40 - error: "Controller" is not exported from module "aiounifi" (reportPrivateImportUsage) + /homeassistant/components/unifi/entity.py:106:35 - error: "Controller" is not exported from module "aiounifi" (reportPrivateImportUsage) + /homeassistant/components/unifi/entity.py:148:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "UnifiEntityDescription[HandlerT@UnifiEntity, ApiItemT@UnifiEntity]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/unifi/entity.py:157:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/unifi/hub/api.py + /homeassistant/components/unifi/hub/api.py:31:15 - error: "Controller" is not exported from module "aiounifi" (reportPrivateImportUsage) + /homeassistant/components/unifi/hub/api.py:44:20 - error: "Controller" is not exported from module "aiounifi" (reportPrivateImportUsage) +/homeassistant/components/unifi/hub/entity_helper.py + /homeassistant/components/unifi/hub/entity_helper.py:19:59 - error: "Controller" is not exported from module "aiounifi" (reportPrivateImportUsage) + /homeassistant/components/unifi/hub/entity_helper.py:122:59 - error: "Controller" is not exported from module "aiounifi" (reportPrivateImportUsage) +/homeassistant/components/unifi/hub/hub.py + /homeassistant/components/unifi/hub/hub.py:36:23 - error: "Controller" is not exported from module "aiounifi" (reportPrivateImportUsage) +/homeassistant/components/unifi/hub/websocket.py + /homeassistant/components/unifi/hub/websocket.py:25:50 - error: "Controller" is not exported from module "aiounifi" (reportPrivateImportUsage) +/homeassistant/components/unifi/image.py + /homeassistant/components/unifi/image.py:77:7 - error: Base classes for class "UnifiImageEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifi/image.py:82:5 - error: "entity_description" overrides symbol of same name in class "UnifiEntity" +   Variable is mutable so its type is invariant +     Override type "UnifiImageEntityDescription[HandlerT@UnifiImageEntity, ApiItemT@UnifiImageEntity]" is not the same as base type "UnifiEntityDescription[HandlerT@UnifiImageEntity, ApiItemT@UnifiImageEntity]" (reportIncompatibleVariableOverride) + /homeassistant/components/unifi/image.py:82:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "UnifiImageEntityDescription[HandlerT@UnifiImageEntity, ApiItemT@UnifiImageEntity]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/unifi/light.py + /homeassistant/components/unifi/light.py:123:7 - error: Base classes for class "UnifiLightEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifi/light.py:128:5 - error: "entity_description" overrides symbol of same name in class "UnifiEntity" +   Variable is mutable so its type is invariant +     Override type "UnifiLightEntityDescription[HandlerT@UnifiLightEntity, ApiItemT@UnifiLightEntity]" is not the same as base type "UnifiEntityDescription[HandlerT@UnifiLightEntity, ApiItemT@UnifiLightEntity]" (reportIncompatibleVariableOverride) + /homeassistant/components/unifi/light.py:128:5 - error: "entity_description" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "UnifiLightEntityDescription[HandlerT@UnifiLightEntity, ApiItemT@UnifiLightEntity]" is not the same as base type "LightEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/unifi/sensor.py + /homeassistant/components/unifi/sensor.py:654:7 - error: Base classes for class "UnifiSensorEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifi/sensor.py:659:5 - error: "entity_description" overrides symbol of same name in class "UnifiEntity" +   Variable is mutable so its type is invariant +     Override type "UnifiSensorEntityDescription[HandlerT@UnifiSensorEntity, ApiItemT@UnifiSensorEntity]" is not the same as base type "UnifiEntityDescription[HandlerT@UnifiSensorEntity, ApiItemT@UnifiSensorEntity]" (reportIncompatibleVariableOverride) + /homeassistant/components/unifi/sensor.py:659:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "UnifiSensorEntityDescription[HandlerT@UnifiSensorEntity, ApiItemT@UnifiSensorEntity]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/unifi/switch.py + /homeassistant/components/unifi/switch.py:240:42 - error: "Controller" is not exported from module "aiounifi" (reportPrivateImportUsage) + /homeassistant/components/unifi/switch.py:435:7 - error: Base classes for class "UnifiSwitchEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifi/switch.py:440:5 - error: "entity_description" overrides symbol of same name in class "UnifiEntity" +   Variable is mutable so its type is invariant +     Override type "UnifiSwitchEntityDescription[HandlerT@UnifiSwitchEntity, ApiItemT@UnifiSwitchEntity]" is not the same as base type "UnifiEntityDescription[HandlerT@UnifiSwitchEntity, ApiItemT@UnifiSwitchEntity]" (reportIncompatibleVariableOverride) + /homeassistant/components/unifi/switch.py:440:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "UnifiSwitchEntityDescription[HandlerT@UnifiSwitchEntity, ApiItemT@UnifiSwitchEntity]" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/unifi/update.py + /homeassistant/components/unifi/update.py:35:49 - error: "Controller" is not exported from module "aiounifi" (reportPrivateImportUsage) + /homeassistant/components/unifi/update.py:46:36 - error: "Controller" is not exported from module "aiounifi" (reportPrivateImportUsage) + /homeassistant/components/unifi/update.py:47:34 - error: "Controller" is not exported from module "aiounifi" (reportPrivateImportUsage) + /homeassistant/components/unifi/update.py:78:7 - error: Base classes for class "UnifiDeviceUpdateEntity" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifi/update.py:83:5 - error: "entity_description" overrides symbol of same name in class "UnifiEntity" +   Variable is mutable so its type is invariant +     Override type "UnifiUpdateEntityDescription[_HandlerT@UnifiDeviceUpdateEntity, _DataT@UnifiDeviceUpdateEntity]" is not the same as base type "UnifiEntityDescription[_HandlerT@UnifiDeviceUpdateEntity, _DataT@UnifiDeviceUpdateEntity]" (reportIncompatibleVariableOverride) + /homeassistant/components/unifi/update.py:83:5 - error: "entity_description" overrides symbol of same name in class "UpdateEntity" +   Variable is mutable so its type is invariant +     Override type "UnifiUpdateEntityDescription[_HandlerT@UnifiDeviceUpdateEntity, _DataT@UnifiDeviceUpdateEntity]" is not the same as base type "UpdateEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/unifi_direct/device_tracker.py + /homeassistant/components/unifi_direct/device_tracker.py:8:6 - error: Import "unifi_ap" could not be resolved (reportMissingImports) +/homeassistant/components/unifiled/light.py + /homeassistant/components/unifiled/light.py:8:22 - error: "unifiled" is unknown import symbol (reportAttributeAccessIssue) +/homeassistant/components/unifiprotect/binary_sensor.py + /homeassistant/components/unifiprotect/binary_sensor.py:620:7 - error: Base classes for class "ProtectDeviceBinarySensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/binary_sensor.py:620:7 - error: Base classes for class "ProtectDeviceBinarySensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/binary_sensor.py:620:7 - error: Base classes for class "ProtectDeviceBinarySensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/binary_sensor.py:625:5 - error: "entity_description" overrides symbol of same name in class "ProtectIsOnEntity" +   Variable is mutable so its type is invariant +     Override type "ProtectBinaryEntityDescription" is not the same as base type "ProtectEntityDescription[Unknown]" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/binary_sensor.py:625:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "ProtectBinaryEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/binary_sensor.py:631:5 - error: "device" overrides symbol of same name in class "BaseProtectEntity" +   Variable is mutable so its type is invariant +     Override type "Sensor" is not the same as base type "ProtectDeviceType" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/binary_sensor.py:647:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "ProtectBinaryEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/binary_sensor.py:690:5 - error: "entity_description" overrides symbol of same name in class "EventEntityMixin" +   Variable is mutable so its type is invariant +     Override type "ProtectBinaryEventEntityDescription" is not the same as base type "ProtectEventMixin[Unknown]" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/binary_sensor.py:690:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "ProtectBinaryEventEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/unifiprotect/button.py + /homeassistant/components/unifiprotect/button.py:89:22 - error: Argument of type "Literal['unifiprotect__chime_button']" cannot be assigned to parameter "device_class" of type "ButtonDeviceClass | None" in function "__init__" +   Type "Literal['unifiprotect__chime_button']" is not assignable to type "ButtonDeviceClass | None" +     "Literal['unifiprotect__chime_button']" is not assignable to "ButtonDeviceClass" +     "Literal['unifiprotect__chime_button']" is not assignable to "None" (reportArgumentType) + /homeassistant/components/unifiprotect/button.py:168:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "ProtectButtonEntityDescription[Unknown]" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/unifiprotect/camera.py + /homeassistant/components/unifiprotect/camera.py:166:5 - error: "device" overrides symbol of same name in class "BaseProtectEntity" +   Variable is mutable so its type is invariant +     Override type "Camera" is not the same as base type "ProtectDeviceType" (reportIncompatibleVariableOverride) +/homeassistant/components/unifiprotect/entity.py + /homeassistant/components/unifiprotect/entity.py:313:5 - error: "device" overrides symbol of same name in class "BaseProtectEntity" +   Variable is mutable so its type is invariant +     Override type "NVR" is not the same as base type "ProtectDeviceType" (reportIncompatibleVariableOverride) +/homeassistant/components/unifiprotect/event.py + /homeassistant/components/unifiprotect/event.py:59:7 - error: Base classes for class "ProtectDeviceRingEventEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:59:7 - error: Base classes for class "ProtectDeviceRingEventEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:59:7 - error: Base classes for class "ProtectDeviceRingEventEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:59:7 - error: Base classes for class "ProtectDeviceRingEventEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:59:7 - error: Base classes for class "ProtectDeviceRingEventEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:62:5 - error: "entity_description" overrides symbol of same name in class "EventEntityMixin" +   Variable is mutable so its type is invariant +     Override type "ProtectEventEntityDescription" is not the same as base type "ProtectEventMixin[Unknown]" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:62:5 - error: "entity_description" overrides symbol of same name in class "EventEntity" +   Variable is mutable so its type is invariant +     Override type "ProtectEventEntityDescription" is not the same as base type "EventEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:84:7 - error: Base classes for class "ProtectDeviceNFCEventEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:84:7 - error: Base classes for class "ProtectDeviceNFCEventEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:84:7 - error: Base classes for class "ProtectDeviceNFCEventEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:84:7 - error: Base classes for class "ProtectDeviceNFCEventEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:84:7 - error: Base classes for class "ProtectDeviceNFCEventEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:87:5 - error: "entity_description" overrides symbol of same name in class "EventEntityMixin" +   Variable is mutable so its type is invariant +     Override type "ProtectEventEntityDescription" is not the same as base type "ProtectEventMixin[Unknown]" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:87:5 - error: "entity_description" overrides symbol of same name in class "EventEntity" +   Variable is mutable so its type is invariant +     Override type "ProtectEventEntityDescription" is not the same as base type "EventEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:126:7 - error: Base classes for class "ProtectDeviceFingerprintEventEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:126:7 - error: Base classes for class "ProtectDeviceFingerprintEventEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:126:7 - error: Base classes for class "ProtectDeviceFingerprintEventEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:126:7 - error: Base classes for class "ProtectDeviceFingerprintEventEntity" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:126:7 - error: Base classes for class "ProtectDeviceFingerprintEventEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:131:5 - error: "entity_description" overrides symbol of same name in class "EventEntityMixin" +   Variable is mutable so its type is invariant +     Override type "ProtectEventEntityDescription" is not the same as base type "ProtectEventMixin[Unknown]" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/event.py:131:5 - error: "entity_description" overrides symbol of same name in class "EventEntity" +   Variable is mutable so its type is invariant +     Override type "ProtectEventEntityDescription" is not the same as base type "EventEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/unifiprotect/light.py + /homeassistant/components/unifiprotect/light.py:56:5 - error: "device" overrides symbol of same name in class "BaseProtectEntity" +   Variable is mutable so its type is invariant +     Override type "Light" is not the same as base type "ProtectDeviceType" (reportIncompatibleVariableOverride) +/homeassistant/components/unifiprotect/lock.py + /homeassistant/components/unifiprotect/lock.py:51:5 - error: "device" overrides symbol of same name in class "BaseProtectEntity" +   Variable is mutable so its type is invariant +     Override type "Doorlock" is not the same as base type "ProtectDeviceType" (reportIncompatibleVariableOverride) +/homeassistant/components/unifiprotect/media_player.py + /homeassistant/components/unifiprotect/media_player.py:64:5 - error: "device" overrides symbol of same name in class "BaseProtectEntity" +   Variable is mutable so its type is invariant +     Override type "Camera" is not the same as base type "ProtectDeviceType" (reportIncompatibleVariableOverride) +/homeassistant/components/unifiprotect/media_source.py + /homeassistant/components/unifiprotect/media_source.py:180:5 - error: "name" overrides symbol of same name in class "MediaSource" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/media_source.py:444:22 - error: "event_text" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/unifiprotect/media_source.py:593:21 - error: "recording_start" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/unifiprotect/media_source.py:771:43 - error: "format" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/unifiprotect/number.py + /homeassistant/components/unifiprotect/number.py:259:5 - error: "device" overrides symbol of same name in class "BaseProtectEntity" +   Variable is mutable so its type is invariant +     Override type "Camera | Light" is not the same as base type "ProtectDeviceType" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/number.py:260:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "ProtectNumberEntityDescription[Unknown]" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/unifiprotect/select.py + /homeassistant/components/unifiprotect/select.py:366:5 - error: "device" overrides symbol of same name in class "BaseProtectEntity" +   Variable is mutable so its type is invariant +     Override type "Camera | Light | Viewer" is not the same as base type "ProtectDeviceType" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/select.py:367:5 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "ProtectSelectEntityDescription[Unknown]" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/unifiprotect/sensor.py + /homeassistant/components/unifiprotect/sensor.py:693:17 - error: "description" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/unifiprotect/sensor.py:716:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ProtectSensorEntityDescription[Unknown]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:724:7 - error: Base classes for class "ProtectDeviceSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:724:7 - error: Base classes for class "ProtectDeviceSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:724:7 - error: Base classes for class "ProtectDeviceSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:724:7 - error: Base classes for class "ProtectDeviceSensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:724:7 - error: Base classes for class "ProtectDeviceSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:724:7 - error: Base classes for class "ProtectDeviceSensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:724:7 - error: Base classes for class "ProtectDeviceSensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:724:7 - error: Base classes for class "ProtectDeviceSensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:728:7 - error: Base classes for class "ProtectNVRSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:728:7 - error: Base classes for class "ProtectNVRSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:728:7 - error: Base classes for class "ProtectNVRSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:728:7 - error: Base classes for class "ProtectNVRSensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:728:7 - error: Base classes for class "ProtectNVRSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:728:7 - error: Base classes for class "ProtectNVRSensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:728:7 - error: Base classes for class "ProtectNVRSensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:728:7 - error: Base classes for class "ProtectNVRSensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:735:5 - error: "entity_description" overrides symbol of same name in class "EventEntityMixin" +   Variable is mutable so its type is invariant +     Override type "ProtectSensorEventEntityDescription[Unknown]" is not the same as base type "ProtectEventMixin[Unknown]" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:735:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ProtectSensorEventEntityDescription[Unknown]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/sensor.py:746:5 - error: "device" overrides symbol of same name in class "BaseProtectEntity" +   Variable is mutable so its type is invariant +     Override type "Camera" is not the same as base type "ProtectDeviceType" (reportIncompatibleVariableOverride) +/homeassistant/components/unifiprotect/switch.py + /homeassistant/components/unifiprotect/switch.py:476:5 - error: "entity_description" overrides symbol of same name in class "ProtectIsOnEntity" +   Variable is mutable so its type is invariant +     Override type "ProtectSwitchEntityDescription[Unknown]" is not the same as base type "ProtectEntityDescription[Unknown]" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/switch.py:487:7 - error: Base classes for class "ProtectSwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/switch.py:487:7 - error: Base classes for class "ProtectSwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/switch.py:487:7 - error: Base classes for class "ProtectSwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/switch.py:490:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "ProtectSwitchEntityDescription[Unknown]" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/switch.py:493:7 - error: Base classes for class "ProtectNVRSwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/switch.py:493:7 - error: Base classes for class "ProtectNVRSwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/switch.py:493:7 - error: Base classes for class "ProtectNVRSwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/switch.py:493:7 - error: Base classes for class "ProtectNVRSwitch" define variable "device" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/switch.py:496:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "ProtectSwitchEntityDescription[Unknown]" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/switch.py:502:5 - error: "device" overrides symbol of same name in class "BaseProtectEntity" +   Variable is mutable so its type is invariant +     Override type "Camera" is not the same as base type "ProtectDeviceType" (reportIncompatibleVariableOverride) + /homeassistant/components/unifiprotect/switch.py:503:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ProtectSwitchEntityDescription[Unknown]" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/unifiprotect/text.py + /homeassistant/components/unifiprotect/text.py:93:5 - error: "entity_description" overrides symbol of same name in class "TextEntity" +   Variable is mutable so its type is invariant +     Override type "ProtectTextEntityDescription[Unknown]" is not the same as base type "TextEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/universal/media_player.py + /homeassistant/components/universal/media_player.py:316:9 - error: "assumed_state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:318:16 - error: Type "Any | None" is not assignable to return type "bool" +   Type "Any | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportReturnType) + /homeassistant/components/universal/media_player.py:321:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:338:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:346:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:351:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:356:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:361:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:366:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:381:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:386:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:391:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:396:9 - error: "media_album_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:401:9 - error: "media_track" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:406:9 - error: "media_series_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:411:9 - error: "media_season" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:416:9 - error: "media_episode" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:421:9 - error: "media_channel" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:426:9 - error: "media_playlist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:431:9 - error: "app_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:436:9 - error: "app_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:441:9 - error: "sound_mode" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:446:9 - error: "sound_mode_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:451:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:456:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:461:9 - error: "repeat" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[RepeatMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:466:9 - error: "shuffle" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:471:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:536:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:542:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/universal/media_player.py:547:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/upb/__init__.py + /homeassistant/components/upb/__init__.py:55:17 - error: "add_callback" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/upb/config_flow.py + /homeassistant/components/upb/config_flow.py:103:52 - error: "network_id" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/upb/config_flow.py:107:27 - error: "info" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/upb/config_flow.py:109:36 - error: "info" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/upb/entity.py + /homeassistant/components/upb/entity.py:23:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/upb/entity.py:28:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/upb/entity.py:33:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/upb/entity.py:56:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/upb/light.py + /homeassistant/components/upb/light.py:52:7 - error: Base classes for class "UpbLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upb/light.py:52:7 - error: Base classes for class "UpbLight" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upb/light.py:52:7 - error: Base classes for class "UpbLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upb/light.py:52:7 - error: Base classes for class "UpbLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upb/light.py:64:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/upb/light.py:71:9 - error: "supported_color_modes" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[set[ColorMode] | set[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/upb/light.py:76:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/upb/light.py:76:9 - error: "supported_features" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[LightEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/upb/light.py:83:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/upb/scene.py + /homeassistant/components/upb/scene.py:50:7 - error: Base classes for class "UpbLink" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upb/scene.py:50:7 - error: Base classes for class "UpbLink" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upb/scene.py:50:7 - error: Base classes for class "UpbLink" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/upc_connect/device_tracker.py + /homeassistant/components/upc_connect/device_tracker.py:7:6 - error: Import "connect_box" could not be resolved (reportMissingImports) + /homeassistant/components/upc_connect/device_tracker.py:8:6 - error: Import "connect_box.exceptions" could not be resolved (reportMissingImports) +/homeassistant/components/upcloud/binary_sensor.py + /homeassistant/components/upcloud/binary_sensor.py:25:7 - error: Base classes for class "UpCloudBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upcloud/binary_sensor.py:25:7 - error: Base classes for class "UpCloudBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upcloud/binary_sensor.py:25:7 - error: Base classes for class "UpCloudBinarySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upcloud/binary_sensor.py:25:7 - error: Base classes for class "UpCloudBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upcloud/binary_sensor.py:25:7 - error: Base classes for class "UpCloudBinarySensor" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upcloud/binary_sensor.py:25:7 - error: Base classes for class "UpCloudBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upcloud/binary_sensor.py:25:7 - error: Base classes for class "UpCloudBinarySensor" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/upcloud/entity.py + /homeassistant/components/upcloud/entity.py:46:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/upcloud/entity.py:51:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/upcloud/entity.py:59:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/upcloud/entity.py:75:26 - error: Cannot access attribute "state" for class "Server" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/upcloud/entity.py:75:46 - error: Cannot access attribute "state" for class "Server" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/upcloud/entity.py:79:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/upcloud/entity.py:94:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/upcloud/switch.py + /homeassistant/components/upcloud/switch.py:28:7 - error: Base classes for class "UpCloudSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upcloud/switch.py:28:7 - error: Base classes for class "UpCloudSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upcloud/switch.py:28:7 - error: Base classes for class "UpCloudSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upcloud/switch.py:28:7 - error: Base classes for class "UpCloudSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upcloud/switch.py:28:7 - error: Base classes for class "UpCloudSwitch" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upcloud/switch.py:28:7 - error: Base classes for class "UpCloudSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upcloud/switch.py:28:7 - error: Base classes for class "UpCloudSwitch" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/update/__init__.py + /homeassistant/components/update/__init__.py:224:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "UpdateEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/update/__init__.py:227:5 - error: "_attr_device_class" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "UpdateDeviceClass | None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/update/__init__.py:233:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) + /homeassistant/components/update/__init__.py:234:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "UpdateEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/update/__init__.py:276:9 - error: "entity_category" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[EntityCategory | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/update/__init__.py:287:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/update/__init__.py:413:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/update/__init__.py:434:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/upnp/binary_sensor.py + /homeassistant/components/upnp/binary_sensor.py:58:7 - error: Base classes for class "UpnpStatusBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upnp/binary_sensor.py:61:5 - error: "entity_description" overrides symbol of same name in class "UpnpEntity" +   Variable is mutable so its type is invariant +     Override type "UpnpBinarySensorEntityDescription" is not the same as base type "UpnpEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/upnp/binary_sensor.py:61:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "UpnpBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/upnp/binary_sensor.py:72:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/upnp/entity.py + /homeassistant/components/upnp/entity.py:40:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "UpnpEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/upnp/sensor.py + /homeassistant/components/upnp/sensor.py:174:7 - error: Base classes for class "UpnpSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/upnp/sensor.py:177:5 - error: "entity_description" overrides symbol of same name in class "UpnpEntity" +   Variable is mutable so its type is invariant +     Override type "UpnpSensorEntityDescription" is not the same as base type "UpnpEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/upnp/sensor.py:177:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "UpnpSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/upnp/sensor.py:180:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/uptime_kuma/sensor.py + /homeassistant/components/uptime_kuma/sensor.py:156:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "UptimeKumaSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/uptime_kuma/sensor.py:156:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "UptimeKumaSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/uptime_kuma/sensor.py:174:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/uptime_kuma/sensor.py:180:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/uptime_kuma/update.py + /homeassistant/components/uptime_kuma/update.py:82:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/uptime_kuma/update.py:88:9 - error: "title" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/uptime_kuma/update.py:94:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/uptime_kuma/update.py:100:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/uptime_kuma/update.py:120:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/uptimerobot/binary_sensor.py + /homeassistant/components/uptimerobot/binary_sensor.py:50:7 - error: Base classes for class "UptimeRobotBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/uptimerobot/binary_sensor.py:54:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/uptimerobot/config_flow.py + /homeassistant/components/uptimerobot/config_flow.py:57:45 - error: "message" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/uptimerobot/config_flow.py:59:46 - error: Type "list[UptimeRobotMonitor] | UptimeRobotAccount | None" is not assignable to declared type "UptimeRobotAccount | None" +   Type "list[UptimeRobotMonitor] | UptimeRobotAccount | None" is not assignable to type "UptimeRobotAccount | None" +     Type "list[UptimeRobotMonitor]" is not assignable to type "UptimeRobotAccount | None" +       "list[UptimeRobotMonitor]" is not assignable to "UptimeRobotAccount" +       "list[UptimeRobotMonitor]" is not assignable to "None" (reportAssignmentType) + /homeassistant/components/uptimerobot/config_flow.py:61:61 - error: Cannot access attribute "email" for class "list[UptimeRobotMonitor]" +   Attribute "email" is unknown (reportAttributeAccessIssue) + /homeassistant/components/uptimerobot/config_flow.py:102:50 - error: Could not access item in TypedDict +   "unique_id" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/uptimerobot/diagnostics.py + /homeassistant/components/uptimerobot/diagnostics.py:28:40 - error: Cannot access attribute "up_monitors" for class "list[UptimeRobotMonitor]" +   Attribute "up_monitors" is unknown (reportAttributeAccessIssue) + /homeassistant/components/uptimerobot/diagnostics.py:29:42 - error: Cannot access attribute "down_monitors" for class "list[UptimeRobotMonitor]" +   Attribute "down_monitors" is unknown (reportAttributeAccessIssue) + /homeassistant/components/uptimerobot/diagnostics.py:30:44 - error: Cannot access attribute "paused_monitors" for class "list[UptimeRobotMonitor]" +   Attribute "paused_monitors" is unknown (reportAttributeAccessIssue) +/homeassistant/components/uptimerobot/sensor.py + /homeassistant/components/uptimerobot/sensor.py:68:7 - error: Base classes for class "UptimeRobotSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/uptimerobot/sensor.py:72:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/uptimerobot/switch.py + /homeassistant/components/uptimerobot/switch.py:58:7 - error: Base classes for class "UptimeRobotSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/uptimerobot/switch.py:64:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/uptimerobot/switch.py:86:67 - error: "message" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/usage_prediction/__init__.py + /homeassistant/components/usage_prediction/__init__.py:27:5 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/components/usage_prediction/__init__.py:27:5 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[str, _S@__setitem__]" is not assignable to type "dict[str, Task[EntityUsagePredictions] | EntityUsageDataCache]" +     "dict[str, _S@__setitem__]" is not assignable to "dict[str, Task[EntityUsagePredictions] | EntityUsageDataCache]" +       Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "Task[EntityUsagePredictions] | EntityUsageDataCache" +       Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) +/homeassistant/components/usb/__init__.py + /homeassistant/components/usb/__init__.py:536:1 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) +/homeassistant/components/usgs_earthquakes_feed/geo_location.py + /homeassistant/components/usgs_earthquakes_feed/geo_location.py:185:16 - error: Type "FeedEntry | None" is not assignable to return type "UsgsEarthquakeHazardsProgramFeedEntry | None" +   Type "FeedEntry | None" is not assignable to type "UsgsEarthquakeHazardsProgramFeedEntry | None" +     Type "FeedEntry" is not assignable to type "UsgsEarthquakeHazardsProgramFeedEntry | None" +       "FeedEntry" is not assignable to "UsgsEarthquakeHazardsProgramFeedEntry" +       "FeedEntry" is not assignable to "None" (reportReturnType) + /homeassistant/components/usgs_earthquakes_feed/geo_location.py:264:31 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/usgs_earthquakes_feed/geo_location.py:265:32 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /homeassistant/components/usgs_earthquakes_feed/geo_location.py:276:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/utility_meter/select.py + /homeassistant/components/utility_meter/select.py:82:7 - error: Base classes for class "TariffSelect" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/utility_meter/select.py:82:7 - error: Base classes for class "TariffSelect" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/utility_meter/select.py:82:7 - error: Base classes for class "TariffSelect" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/utility_meter/select.py:82:7 - error: Base classes for class "TariffSelect" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/utility_meter/select.py:107:9 - error: "options" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/utility_meter/select.py:112:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/utility_meter/sensor.py + /homeassistant/components/utility_meter/sensor.py:691:9 - error: "device_class" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[SensorDeviceClass | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/utility_meter/sensor.py:703:9 - error: "state_class" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[SensorStateClass | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/utility_meter/sensor.py:712:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/uvc/camera.py + /homeassistant/components/uvc/camera.py:109:9 - error: "supported_features" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[CameraEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/uvc/camera.py:119:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/uvc/camera.py:129:9 - error: "is_recording" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/uvc/camera.py:140:9 - error: "motion_detection_enabled" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/uvc/camera.py:145:9 - error: "model" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/v2c/binary_sensor.py + /homeassistant/components/v2c/binary_sensor.py:64:7 - error: Base classes for class "V2CBinarySensorBaseEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/v2c/binary_sensor.py:67:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "V2CBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/v2c/binary_sensor.py:80:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/v2c/number.py + /homeassistant/components/v2c/number.py:85:7 - error: Base classes for class "V2CSettingsNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/v2c/number.py:88:5 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "V2CSettingsNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/v2c/number.py:101:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/v2c/sensor.py + /homeassistant/components/v2c/sensor.py:156:7 - error: Base classes for class "V2CSensorBaseEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/v2c/sensor.py:159:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "V2CSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/v2c/sensor.py:172:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/v2c/switch.py + /homeassistant/components/v2c/switch.py:93:7 - error: Base classes for class "V2CSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/v2c/switch.py:96:5 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "V2CSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/v2c/switch.py:109:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/vacuum/__init__.py + /homeassistant/components/vacuum/__init__.py:208:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "StateVacuumEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vacuum/__init__.py:217:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "VacuumEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/vacuum/__init__.py:351:9 - error: "capability_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vacuum/__init__.py:368:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vacuum/__init__.py:387:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/vacuum/__init__.py:523:1 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) +/homeassistant/components/vacuum/const.py + /homeassistant/components/vacuum/const.py:42:1 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) +/homeassistant/components/vacuum/device_action.py + /homeassistant/components/vacuum/device_action.py:77:17 - error: "service" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/vacuum/reproduce_state.py + /homeassistant/components/vacuum/reproduce_state.py:84:21 - error: "service" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/vallox/binary_sensor.py + /homeassistant/components/vallox/binary_sensor.py:21:7 - error: Base classes for class "ValloxBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vallox/binary_sensor.py:36:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ValloxBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vallox/binary_sensor.py:36:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "ValloxBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vallox/binary_sensor.py:41:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/vallox/date.py + /homeassistant/components/vallox/date.py:20:7 - error: Base classes for class "ValloxFilterChangeDateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vallox/date.py:39:9 - error: "native_value" overrides symbol of same name in class "DateEntity" +   "property" is not assignable to "cached_property[date | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/vallox/fan.py + /homeassistant/components/vallox/fan.py:78:7 - error: Base classes for class "ValloxFanEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vallox/fan.py:109:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vallox/fan.py:115:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vallox/fan.py:125:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/vallox/number.py + /homeassistant/components/vallox/number.py:24:7 - error: Base classes for class "ValloxNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vallox/number.py:40:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ValloxNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vallox/number.py:40:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "ValloxNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vallox/number.py:46:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/vallox/sensor.py + /homeassistant/components/vallox/sensor.py:39:7 - error: Base classes for class "ValloxSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vallox/sensor.py:54:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ValloxSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vallox/sensor.py:54:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ValloxSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vallox/sensor.py:59:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/vallox/switch.py + /homeassistant/components/vallox/switch.py:21:7 - error: Base classes for class "ValloxSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vallox/switch.py:37:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ValloxSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vallox/switch.py:37:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "ValloxSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vallox/switch.py:43:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/valve/__init__.py + /homeassistant/components/valve/__init__.py:133:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ValveEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/valve/__init__.py:135:5 - error: "_attr_device_class" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ValveDeviceClass | None" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/valve/__init__.py:140:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ValveEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/valve/__init__.py:162:9 - error: "device_class" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/valve/__init__.py:172:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/valve/__init__.py:192:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/valve/__init__.py:199:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/vasttrafik/sensor.py + /homeassistant/components/vasttrafik/sensor.py:70:26 - error: "JournyPlanner" is not a known attribute of module "vasttrafik" (reportAttributeAccessIssue) + /homeassistant/components/vasttrafik/sensor.py:115:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vasttrafik/sensor.py:120:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vasttrafik/sensor.py:125:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/vasttrafik/sensor.py:138:27 - error: "Error" is not a known attribute of module "vasttrafik" (reportAttributeAccessIssue) +/homeassistant/components/vegehub/__init__.py + /homeassistant/components/vegehub/__init__.py:44:26 - error: Cannot assign to attribute "runtime_data" for class "VegeHubConfigEntry" +   "VegeHubCoordinator" is not assignable to "VegeHub" (reportAttributeAccessIssue) + /homeassistant/components/vegehub/__init__.py:59:61 - error: Argument of type "VegeHub" cannot be assigned to parameter "coordinator" of type "VegeHubCoordinator" in function "get_webhook_handler" +   "VegeHub" is not assignable to "VegeHubCoordinator" (reportArgumentType) +/homeassistant/components/vegehub/sensor.py + /homeassistant/components/vegehub/sensor.py:47:33 - error: Cannot access attribute "vegehub" for class "VegeHub" +   Attribute "vegehub" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vegehub/sensor.py:50:25 - error: Argument of type "VegeHub" cannot be assigned to parameter "coordinator" of type "VegeHubCoordinator" in function "__init__" +   "VegeHub" is not assignable to "VegeHubCoordinator" (reportArgumentType) + /homeassistant/components/vegehub/sensor.py:56:24 - error: Cannot access attribute "vegehub" for class "VegeHub" +   Attribute "vegehub" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vegehub/sensor.py:60:29 - error: Argument of type "VegeHub" cannot be assigned to parameter "coordinator" of type "VegeHubCoordinator" in function "__init__" +   "VegeHub" is not assignable to "VegeHubCoordinator" (reportArgumentType) + /homeassistant/components/vegehub/sensor.py:68:7 - error: Base classes for class "VegeHubSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vegehub/sensor.py:90:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/vegehub/switch.py + /homeassistant/components/vegehub/switch.py:37:25 - error: Argument of type "VegeHub" cannot be assigned to parameter "coordinator" of type "VegeHubCoordinator" in function "__init__" +   "VegeHub" is not assignable to "VegeHubCoordinator" (reportArgumentType) + /homeassistant/components/vegehub/switch.py:40:36 - error: Cannot access attribute "vegehub" for class "VegeHub" +   Attribute "vegehub" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vegehub/switch.py:44:7 - error: Base classes for class "VegeHubSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vegehub/switch.py:68:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/velbus/binary_sensor.py + /homeassistant/components/velbus/binary_sensor.py:34:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/velbus/button.py + /homeassistant/components/velbus/button.py:42:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/velbus/climate.py + /homeassistant/components/velbus/climate.py:51:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/velbus/climate.py:56:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/velbus/climate.py:68:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/velbus/climate.py:73:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/velbus/climate.py:78:15 - error: Method "async_set_temperature" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/velbus/climate.py:86:15 - error: Method "async_set_preset_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/velbus/climate.py:92:15 - error: Method "async_set_hvac_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/velbus/cover.py + /homeassistant/components/velbus/cover.py:63:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/velbus/cover.py:70:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/velbus/cover.py:77:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/velbus/cover.py:84:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/velbus/cover.py:96:15 - error: Method "async_open_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/velbus/cover.py:101:15 - error: Method "async_close_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/velbus/cover.py:106:15 - error: Method "async_stop_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/velbus/cover.py:111:15 - error: Method "async_set_cover_position" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/velbus/light.py + /homeassistant/components/velbus/light.py:61:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/velbus/light.py:66:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/velbus/light.py:71:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/velbus/light.py:92:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/velbus/light.py:118:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/velbus/light.py:123:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/velbus/light.py:133:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/velbus/select.py + /homeassistant/components/velbus/select.py:45:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/velbus/select.py:50:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/velbus/sensor.py + /homeassistant/components/velbus/sensor.py:70:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/velbus/services.py + /homeassistant/components/velbus/services.py:41:62 - error: "entry_id" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/velbus/switch.py + /homeassistant/components/velbus/switch.py:36:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/velbus/switch.py:41:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/velbus/switch.py:46:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/velux/__init__.py + /homeassistant/components/velux/__init__.py:5:19 - error: "PyVLX" is not exported from module "pyvlx" +   Import from "pyvlx.pyvlx" instead (reportPrivateImportUsage) + /homeassistant/components/velux/__init__.py:5:26 - error: "PyVLXException" is not exported from module "pyvlx" +   Import from "pyvlx.exception" instead (reportPrivateImportUsage) +/homeassistant/components/velux/button.py + /homeassistant/components/velux/button.py:5:19 - error: "PyVLX" is not exported from module "pyvlx" +   Import from "pyvlx.pyvlx" instead (reportPrivateImportUsage) + /homeassistant/components/velux/button.py:5:26 - error: "PyVLXException" is not exported from module "pyvlx" +   Import from "pyvlx.exception" instead (reportPrivateImportUsage) +/homeassistant/components/velux/config_flow.py + /homeassistant/components/velux/config_flow.py:5:19 - error: "PyVLX" is not exported from module "pyvlx" +   Import from "pyvlx.pyvlx" instead (reportPrivateImportUsage) + /homeassistant/components/velux/config_flow.py:5:26 - error: "PyVLXException" is not exported from module "pyvlx" +   Import from "pyvlx.exception" instead (reportPrivateImportUsage) +/homeassistant/components/velux/cover.py + /homeassistant/components/velux/cover.py:8:5 - error: "Awning" is not exported from module "pyvlx" +   Import from "pyvlx.opening_device" instead (reportPrivateImportUsage) + /homeassistant/components/velux/cover.py:9:5 - error: "Blind" is not exported from module "pyvlx" +   Import from "pyvlx.opening_device" instead (reportPrivateImportUsage) + /homeassistant/components/velux/cover.py:10:5 - error: "GarageDoor" is not exported from module "pyvlx" +   Import from "pyvlx.opening_device" instead (reportPrivateImportUsage) + /homeassistant/components/velux/cover.py:11:5 - error: "Gate" is not exported from module "pyvlx" +   Import from "pyvlx.opening_device" instead (reportPrivateImportUsage) + /homeassistant/components/velux/cover.py:12:5 - error: "OpeningDevice" is not exported from module "pyvlx" +   Import from "pyvlx.opening_device" instead (reportPrivateImportUsage) + /homeassistant/components/velux/cover.py:13:5 - error: "Position" is not exported from module "pyvlx" +   Import from "pyvlx.parameter" instead (reportPrivateImportUsage) + /homeassistant/components/velux/cover.py:14:5 - error: "RollerShutter" is not exported from module "pyvlx" +   Import from "pyvlx.opening_device" instead (reportPrivateImportUsage) + /homeassistant/components/velux/cover.py:87:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/velux/cover.py:92:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/velux/cover.py:99:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/velux/cover.py:107:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/velux/cover.py:112:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/velux/entity.py + /homeassistant/components/velux/entity.py:5:19 - error: "Node" is not exported from module "pyvlx" +   Import from "pyvlx.node" instead (reportPrivateImportUsage) +/homeassistant/components/velux/light.py + /homeassistant/components/velux/light.py:7:19 - error: "Intensity" is not exported from module "pyvlx" +   Import from "pyvlx.parameter" instead (reportPrivateImportUsage) + /homeassistant/components/velux/light.py:7:30 - error: "LighteningDevice" is not exported from module "pyvlx" +   Import from "pyvlx.lightening_device" instead (reportPrivateImportUsage) + /homeassistant/components/velux/light.py:43:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/velux/light.py:48:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/velux/scene.py + /homeassistant/components/velux/scene.py:7:19 - error: "Scene" is not exported from module "pyvlx" +   Import from "pyvlx.scene" instead (reportPrivateImportUsage) +/homeassistant/components/venstar/binary_sensor.py + /homeassistant/components/venstar/binary_sensor.py:31:7 - error: Base classes for class "VenstarBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/binary_sensor.py:31:7 - error: Base classes for class "VenstarBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/binary_sensor.py:44:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/venstar/climate.py + /homeassistant/components/venstar/climate.py:111:7 - error: Base classes for class "VenstarThermostat" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/climate.py:111:7 - error: Base classes for class "VenstarThermostat" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/climate.py:137:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/climate.py:137:9 - error: "supported_features" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[ClimateEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/climate.py:156:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/climate.py:163:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/climate.py:168:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/climate.py:173:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/climate.py:184:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/climate.py:195:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/climate.py:202:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/climate.py:210:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/climate.py:219:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/climate.py:226:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/climate.py:233:9 - error: "target_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/climate.py:238:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/venstar/config_flow.py + /homeassistant/components/venstar/config_flow.py:46:12 - error: Type "Any | None" is not assignable to return type "str" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportReturnType) +/homeassistant/components/venstar/entity.py + /homeassistant/components/venstar/entity.py:35:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/venstar/sensor.py + /homeassistant/components/venstar/sensor.py:137:7 - error: Base classes for class "VenstarSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/sensor.py:137:7 - error: Base classes for class "VenstarSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/sensor.py:151:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "VenstarSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/sensor.py:151:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "VenstarSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/sensor.py:158:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/sensor.py:163:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/venstar/sensor.py:168:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/vera/binary_sensor.py + /homeassistant/components/vera/binary_sensor.py:26:30 - error: Argument of type "VeraDevice" cannot be assigned to parameter "vera_device" of type "VeraBinarySensor" in function "__init__" +   "VeraDevice" is not assignable to "VeraBinarySensor" (reportArgumentType) + /homeassistant/components/vera/binary_sensor.py:33:7 - error: Base classes for class "VeraBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/binary_sensor.py:33:7 - error: Base classes for class "VeraBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/binary_sensor.py:33:7 - error: Base classes for class "VeraBinarySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/binary_sensor.py:33:7 - error: Base classes for class "VeraBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/vera/climate.py + /homeassistant/components/vera/climate.py:39:28 - error: Argument of type "VeraDevice" cannot be assigned to parameter "vera_device" of type "VeraThermostat" in function "__init__" +   "VeraDevice" is not assignable to "VeraThermostat" (reportArgumentType) + /homeassistant/components/vera/climate.py:46:7 - error: Base classes for class "VeraThermostat" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/climate.py:46:7 - error: Base classes for class "VeraThermostat" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/climate.py:46:7 - error: Base classes for class "VeraThermostat" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/climate.py:46:7 - error: Base classes for class "VeraThermostat" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/climate.py:66:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vera/climate.py:81:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vera/climate.py:97:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/vera/climate.py:107:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vera/climate.py:114:16 - error: Type "str | None" is not assignable to return type "str" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportReturnType) + /homeassistant/components/vera/climate.py:117:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vera/climate.py:124:46 - error: Argument of type "Any | None" cannot be assigned to parameter "temp" of type "float" in function "set_temperature" +   Type "Any | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportArgumentType) +/homeassistant/components/vera/cover.py + /homeassistant/components/vera/cover.py:28:23 - error: Argument of type "VeraDevice" cannot be assigned to parameter "vera_device" of type "VeraCurtain" in function "__init__" +   "VeraDevice" is not assignable to "VeraCurtain" (reportArgumentType) + /homeassistant/components/vera/cover.py:35:7 - error: Base classes for class "VeraCover" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/cover.py:35:7 - error: Base classes for class "VeraCover" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/cover.py:35:7 - error: Base classes for class "VeraCover" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/cover.py:35:7 - error: Base classes for class "VeraCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/cover.py:46:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vera/cover.py:60:36 - error: Argument of type "Any | None" cannot be assigned to parameter "level" of type "int" in function "set_level" +   Type "Any | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/vera/cover.py:64:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/vera/entity.py + /homeassistant/components/vera/entity.py:49:52 - error: Argument of type "(_device: _DeviceTypeT@VeraEntity) -> None" cannot be assigned to parameter "callback" of type "SubscriptionCallback" in function "register" +   Type "(_device: _DeviceTypeT@VeraEntity) -> None" is not assignable to type "SubscriptionCallback" +     Parameter 1: type "VeraDevice" is incompatible with type "_DeviceTypeT@VeraEntity" +       Type "VeraDevice" is not assignable to type "_DeviceTypeT@VeraEntity" (reportArgumentType) + /homeassistant/components/vera/entity.py:53:54 - error: Argument of type "(_device: _DeviceTypeT@VeraEntity) -> None" cannot be assigned to parameter "callback" of type "SubscriptionCallback" in function "unregister" +   Type "(_device: _DeviceTypeT@VeraEntity) -> None" is not assignable to type "SubscriptionCallback" +     Parameter 1: type "VeraDevice" is incompatible with type "_DeviceTypeT@VeraEntity" +       Type "VeraDevice" is not assignable to type "_DeviceTypeT@VeraEntity" (reportArgumentType) + /homeassistant/components/vera/entity.py:67:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vera/entity.py:72:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vera/entity.py:97:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/vera/entity.py:102:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/vera/light.py + /homeassistant/components/vera/light.py:35:23 - error: Argument of type "VeraDevice" cannot be assigned to parameter "vera_device" of type "VeraDimmer" in function "__init__" +   "VeraDevice" is not assignable to "VeraDimmer" (reportArgumentType) + /homeassistant/components/vera/light.py:42:7 - error: Base classes for class "VeraLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/light.py:42:7 - error: Base classes for class "VeraLight" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/light.py:42:7 - error: Base classes for class "VeraLight" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/light.py:42:7 - error: Base classes for class "VeraLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/light.py:57:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vera/light.py:66:9 - error: "supported_color_modes" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[set[ColorMode] | set[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vera/light.py:74:40 - error: Argument of type "tuple[int, int, int]" cannot be assigned to parameter "rgb" of type "List[int]" in function "set_color" +   "tuple[int, int, int]" is not assignable to "List[int]" (reportArgumentType) +/homeassistant/components/vera/lock.py + /homeassistant/components/vera/lock.py:31:22 - error: Argument of type "VeraDevice" cannot be assigned to parameter "vera_device" of type "VeraLock" in function "__init__" +   "VeraDevice" is not assignable to "VeraLock" (reportArgumentType) + /homeassistant/components/vera/lock.py:38:7 - error: Base classes for class "VeraLock" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/lock.py:38:7 - error: Base classes for class "VeraLock" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/lock.py:38:7 - error: Base classes for class "VeraLock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/lock.py:59:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vera/lock.py:76:9 - error: "changed_by" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/vera/scene.py + /homeassistant/components/vera/scene.py:56:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/vera/sensor.py + /homeassistant/components/vera/sensor.py:41:24 - error: Argument of type "VeraDevice" cannot be assigned to parameter "vera_device" of type "VeraSensor" in function "__init__" +   "VeraDevice" is not assignable to "VeraSensor" (reportArgumentType) + /homeassistant/components/vera/sensor.py:48:7 - error: Base classes for class "VeraSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/sensor.py:48:7 - error: Base classes for class "VeraSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/sensor.py:48:7 - error: Base classes for class "VeraSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/sensor.py:48:7 - error: Base classes for class "VeraSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/vera/switch.py + /homeassistant/components/vera/switch.py:28:24 - error: Argument of type "VeraDevice" cannot be assigned to parameter "vera_device" of type "VeraSwitch" in function "__init__" +   "VeraDevice" is not assignable to "VeraSwitch" (reportArgumentType) + /homeassistant/components/vera/switch.py:35:7 - error: Base classes for class "VeraSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/switch.py:35:7 - error: Base classes for class "VeraSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/switch.py:35:7 - error: Base classes for class "VeraSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vera/switch.py:35:7 - error: Base classes for class "VeraSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/verisure/alarm_control_panel.py + /homeassistant/components/verisure/alarm_control_panel.py:32:7 - error: Base classes for class "VerisureAlarm" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/alarm_control_panel.py:46:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/alarm_control_panel.py:57:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/alarm_control_panel.py:80:58 - error: Argument of type "str" cannot be assigned to parameter "future_state" of type "ArmFutureState" in function "poll_arm_state" +   "str" is not assignable to "ArmFutureState" (reportArgumentType) + /homeassistant/components/verisure/alarm_control_panel.py:99:58 - error: Argument of type "str | None" cannot be assigned to parameter "code" of type "Code" in function "disarm" +   Type "str | None" is not assignable to type "Code" +     "str" is not assignable to "Code" (reportArgumentType) + /homeassistant/components/verisure/alarm_control_panel.py:107:62 - error: Argument of type "str | None" cannot be assigned to parameter "code" of type "Code" in function "arm_home" +   Type "str | None" is not assignable to type "Code" +     "str" is not assignable to "Code" (reportArgumentType) + /homeassistant/components/verisure/alarm_control_panel.py:115:62 - error: Argument of type "str | None" cannot be assigned to parameter "code" of type "Code" in function "arm_away" +   Type "str | None" is not assignable to type "Code" +     "str" is not assignable to "Code" (reportArgumentType) +/homeassistant/components/verisure/binary_sensor.py + /homeassistant/components/verisure/binary_sensor.py:57:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/binary_sensor.py:70:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/binary_sensor.py:77:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/binary_sensor.py:85:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/binary_sensor.py:105:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/binary_sensor.py:110:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/binary_sensor.py:121:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/binary_sensor.py:126:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/verisure/camera.py + /homeassistant/components/verisure/camera.py:70:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/verisure/coordinator.py + /homeassistant/components/verisure/coordinator.py:156:49 - error: Argument of type "str" cannot be assigned to parameter "device_label" of type "DeviceLabel" in function "camera_get_request_id" +   "str" is not assignable to "DeviceLabel" (reportArgumentType) + /homeassistant/components/verisure/coordinator.py:172:46 - error: Argument of type "str" cannot be assigned to parameter "device_label" of type "DeviceLabel" in function "camera_capture" +   "str" is not assignable to "DeviceLabel" (reportArgumentType) +/homeassistant/components/verisure/lock.py + /homeassistant/components/verisure/lock.py:78:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/lock.py:91:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/lock.py:98:9 - error: "code_format" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/lock.py:106:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/lock.py:125:49 - error: Argument of type "str" cannot be assigned to parameter "device_label" of type "DeviceLabel" in function "door_lock" +   "str" is not assignable to "DeviceLabel" (reportArgumentType) + /homeassistant/components/verisure/lock.py:125:69 - error: Argument of type "str" cannot be assigned to parameter "code" of type "Code" in function "door_lock" +   "str" is not assignable to "Code" (reportArgumentType) + /homeassistant/components/verisure/lock.py:127:56 - error: Argument of type "str" cannot be assigned to parameter "device_label" of type "DeviceLabel" in function "door_unlock" +   "str" is not assignable to "DeviceLabel" (reportArgumentType) + /homeassistant/components/verisure/lock.py:127:76 - error: Argument of type "str" cannot be assigned to parameter "code" of type "Code" in function "door_unlock" +   "str" is not assignable to "Code" (reportArgumentType) + /homeassistant/components/verisure/lock.py:147:37 - error: Argument of type "str" cannot be assigned to parameter "device_label" of type "DeviceLabel" in function "poll_lock_state" +   "str" is not assignable to "DeviceLabel" (reportArgumentType) + /homeassistant/components/verisure/lock.py:147:57 - error: Argument of type "Literal['LOCKED', 'UNLOCKED']" cannot be assigned to parameter "future_state" of type "LockFutureState" in function "poll_lock_state" +   Type "Literal['LOCKED', 'UNLOCKED']" is not assignable to type "LockFutureState" +     "Literal['LOCKED']" is not assignable to "LockFutureState" (reportArgumentType) + /homeassistant/components/verisure/lock.py:165:17 - error: Argument of type "str" cannot be assigned to parameter "device_label" of type "DeviceLabel" in function "set_autolock_enabled" +   "str" is not assignable to "DeviceLabel" (reportArgumentType) + /homeassistant/components/verisure/lock.py:176:17 - error: Argument of type "str" cannot be assigned to parameter "device_label" of type "DeviceLabel" in function "set_autolock_enabled" +   "str" is not assignable to "DeviceLabel" (reportArgumentType) +/homeassistant/components/verisure/sensor.py + /homeassistant/components/verisure/sensor.py:64:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/sensor.py:80:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/sensor.py:85:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/sensor.py:114:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/sensor.py:130:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/sensor.py:135:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/verisure/switch.py + /homeassistant/components/verisure/switch.py:50:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/switch.py:65:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/switch.py:76:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/verisure/switch.py:94:53 - error: Argument of type "str" cannot be assigned to parameter "device_label" of type "DeviceLabel" in function "set_smartplug" +   "str" is not assignable to "DeviceLabel" (reportArgumentType) +/homeassistant/components/versasense/__init__.py + /homeassistant/components/versasense/__init__.py:5:8 - error: Import "pyversasense" could not be resolved (reportMissingImports) +/homeassistant/components/versasense/sensor.py + /homeassistant/components/versasense/sensor.py:69:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/versasense/sensor.py:74:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/versasense/sensor.py:79:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/versasense/sensor.py:84:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/versasense/sensor.py:89:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/versasense/switch.py + /homeassistant/components/versasense/switch.py:72:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/versasense/switch.py:77:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/versasense/switch.py:82:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/versasense/switch.py:87:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/version/binary_sensor.py + /homeassistant/components/version/binary_sensor.py:51:7 - error: Base classes for class "VersionBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/version/binary_sensor.py:57:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/version/sensor.py + /homeassistant/components/version/sensor.py:42:7 - error: Base classes for class "VersionSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/version/sensor.py:46:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/version/sensor.py:51:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/vesync/binary_sensor.py + /homeassistant/components/vesync/binary_sensor.py:93:7 - error: Base classes for class "VeSyncBinarySensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/binary_sensor.py:93:7 - error: Base classes for class "VeSyncBinarySensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/binary_sensor.py:93:7 - error: Base classes for class "VeSyncBinarySensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/binary_sensor.py:106:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "VeSyncBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/binary_sensor.py:106:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "VeSyncBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/binary_sensor.py:110:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/vesync/entity.py + /homeassistant/components/vesync/entity.py:41:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/vesync/fan.py + /homeassistant/components/vesync/fan.py:81:7 - error: Base classes for class "VeSyncFanHA" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/fan.py:81:7 - error: Base classes for class "VeSyncFanHA" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/fan.py:109:9 - error: "oscillating" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/fan.py:114:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/fan.py:125:29 - error: Cannot access attribute "fan_levels" for class "VeSyncBaseDevice[Unknown]" +   Attribute "fan_levels" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/fan.py:130:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/fan.py:132:32 - error: Cannot access attribute "fan_levels" for class "VeSyncBaseDevice[Unknown]" +   Attribute "fan_levels" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/fan.py:135:9 - error: "preset_modes" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/fan.py:141:45 - error: Cannot access attribute "modes" for class "VeSyncBaseDevice[Unknown]" +   Attribute "modes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/fan.py:148:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/fan.py:155:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/fan.py:196:38 - error: Cannot access attribute "turn_off" for class "VeSyncBaseDevice[Unknown]" +   Attribute "turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/fan.py:199:49 - error: "message" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/vesync/fan.py:206:38 - error: Cannot access attribute "turn_on" for class "VeSyncBaseDevice[Unknown]" +   Attribute "turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/fan.py:209:49 - error: "message" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/vesync/fan.py:214:38 - error: Cannot access attribute "set_manual_mode" for class "VeSyncBaseDevice[Unknown]" +   Attribute "set_manual_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/fan.py:217:49 - error: "message" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/vesync/fan.py:221:34 - error: Cannot access attribute "set_fan_speed" for class "VeSyncBaseDevice[Unknown]" +   Attribute "set_fan_speed" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/fan.py:222:57 - error: Cannot access attribute "fan_levels" for class "VeSyncBaseDevice[Unknown]" +   Attribute "fan_levels" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/fan.py:226:45 - error: "message" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/vesync/fan.py:240:31 - error: Cannot access attribute "turn_on" for class "VeSyncBaseDevice[Unknown]" +   Attribute "turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/fan.py:243:41 - error: Cannot access attribute "set_auto_mode" for class "VeSyncBaseDevice[Unknown]" +   Attribute "set_auto_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/fan.py:245:41 - error: Cannot access attribute "set_sleep_mode" for class "VeSyncBaseDevice[Unknown]" +   Attribute "set_sleep_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/fan.py:247:41 - error: Cannot access attribute "set_advanced_sleep_mode" for class "VeSyncBaseDevice[Unknown]" +   Attribute "set_advanced_sleep_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/fan.py:249:41 - error: Cannot access attribute "set_pet_mode" for class "VeSyncBaseDevice[Unknown]" +   Attribute "set_pet_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/fan.py:251:41 - error: Cannot access attribute "set_turbo_mode" for class "VeSyncBaseDevice[Unknown]" +   Attribute "set_turbo_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/fan.py:253:41 - error: Cannot access attribute "set_normal_mode" for class "VeSyncBaseDevice[Unknown]" +   Attribute "set_normal_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/fan.py:254:16 - error: "success" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/vesync/fan.py:255:64 - error: "message" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/vesync/fan.py:270:41 - error: Cannot access attribute "turn_on" for class "VeSyncBaseDevice[Unknown]" +   Attribute "turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/fan.py:272:68 - error: "message" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/vesync/fan.py:279:37 - error: Cannot access attribute "turn_off" for class "VeSyncBaseDevice[Unknown]" +   Attribute "turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/fan.py:281:64 - error: "message" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/vesync/fan.py:286:37 - error: Cannot access attribute "toggle_oscillation" for class "VeSyncBaseDevice[Unknown]" +   Attribute "toggle_oscillation" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/fan.py:288:64 - error: "message" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/vesync/humidifier.py + /homeassistant/components/vesync/humidifier.py:88:7 - error: Base classes for class "VeSyncHumidifierHA" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/humidifier.py:88:7 - error: Base classes for class "VeSyncHumidifierHA" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/humidifier.py:112:46 - error: Cannot access attribute "target_minmax" for class "VeSyncBaseDevice[Unknown]" +   Attribute "target_minmax" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/humidifier.py:113:46 - error: Cannot access attribute "target_minmax" for class "VeSyncBaseDevice[Unknown]" +   Attribute "target_minmax" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/humidifier.py:116:36 - error: Cannot access attribute "mist_modes" for class "VeSyncBaseDevice[Unknown]" +   Attribute "mist_modes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/humidifier.py:128:9 - error: "available_modes" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/humidifier.py:133:9 - error: "current_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/humidifier.py:138:9 - error: "target_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/humidifier.py:143:9 - error: "mode" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/humidifier.py:153:34 - error: Cannot access attribute "set_humidity" for class "VeSyncBaseDevice[Unknown]" +   Attribute "set_humidity" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/humidifier.py:154:64 - error: "message" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/vesync/humidifier.py:162:34 - error: Cannot access attribute "set_mode" for class "VeSyncBaseDevice[Unknown]" +   Attribute "set_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/humidifier.py:163:64 - error: "message" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/vesync/humidifier.py:167:31 - error: Cannot access attribute "toggle_display" for class "VeSyncBaseDevice[Unknown]" +   Attribute "toggle_display" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/humidifier.py:177:37 - error: Cannot access attribute "turn_on" for class "VeSyncBaseDevice[Unknown]" +   Attribute "turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/humidifier.py:179:64 - error: "message" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/vesync/humidifier.py:185:37 - error: Cannot access attribute "turn_off" for class "VeSyncBaseDevice[Unknown]" +   Attribute "turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/humidifier.py:187:64 - error: "message" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/vesync/humidifier.py:192:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/vesync/light.py + /homeassistant/components/vesync/light.py:74:7 - error: Base classes for class "VeSyncBaseLightHA" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/light.py:74:7 - error: Base classes for class "VeSyncBaseLightHA" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/light.py:80:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/light.py:85:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/light.py:122:31 - error: Cannot access attribute "set_color_temp" for class "VeSyncBaseDevice[Unknown]" +   Attribute "set_color_temp" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/light.py:139:31 - error: Cannot access attribute "set_brightness" for class "VeSyncBaseDevice[Unknown]" +   Attribute "set_brightness" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/light.py:147:27 - error: Cannot access attribute "turn_on" for class "VeSyncBaseDevice[Unknown]" +   Attribute "turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/light.py:151:27 - error: Cannot access attribute "turn_off" for class "VeSyncBaseDevice[Unknown]" +   Attribute "turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/light.py:154:7 - error: Base classes for class "VeSyncDimmableLightHA" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/light.py:154:7 - error: Base classes for class "VeSyncDimmableLightHA" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/light.py:154:7 - error: Base classes for class "VeSyncDimmableLightHA" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/light.py:154:7 - error: Base classes for class "VeSyncDimmableLightHA" define variable "brightness" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/light.py:161:7 - error: Base classes for class "VeSyncTunableWhiteLightHA" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/light.py:161:7 - error: Base classes for class "VeSyncTunableWhiteLightHA" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/light.py:161:7 - error: Base classes for class "VeSyncTunableWhiteLightHA" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/light.py:161:7 - error: Base classes for class "VeSyncTunableWhiteLightHA" define variable "brightness" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/vesync/number.py + /homeassistant/components/vesync/number.py:43:55 - error: Cannot access attribute "mist_levels" for class "VeSyncBaseDevice[Unknown]" +   Attribute "mist_levels" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/number.py:44:55 - error: Cannot access attribute "mist_levels" for class "VeSyncBaseDevice[Unknown]" +   Attribute "mist_levels" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/number.py:48:51 - error: Cannot access attribute "set_mist_level" for class "VeSyncBaseDevice[Unknown]" +   Attribute "set_mist_level" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/number.py:93:7 - error: Base classes for class "VeSyncNumberEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/number.py:93:7 - error: Base classes for class "VeSyncNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/number.py:106:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "VeSyncNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/number.py:106:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "VeSyncNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/number.py:110:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/number.py:115:9 - error: "native_min_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/number.py:120:9 - error: "native_max_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/number.py:127:64 - error: "message" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/vesync/select.py + /homeassistant/components/vesync/select.py:65:67 - error: Cannot access attribute "supports_nightlight" for class "VeSyncBaseDevice[Unknown]" +   Attribute "supports_nightlight" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/select.py:68:55 - error: Cannot access attribute "set_nightlight_brightness" for class "VeSyncBaseDevice[Unknown]" +   Attribute "set_nightlight_brightness" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/select.py:87:65 - error: Cannot access attribute "supports_nightlight" for class "VeSyncBaseDevice[Unknown]" +   Attribute "supports_nightlight" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/select.py:88:55 - error: Cannot access attribute "set_nightlight_mode" for class "VeSyncBaseDevice[Unknown]" +   Attribute "set_nightlight_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/select.py:101:63 - error: Cannot access attribute "supports_nightlight" for class "VeSyncBaseDevice[Unknown]" +   Attribute "supports_nightlight" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/select.py:102:55 - error: Cannot access attribute "set_nightlight_state" for class "VeSyncBaseDevice[Unknown]" +   Attribute "set_nightlight_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/select.py:147:7 - error: Base classes for class "VeSyncSelectEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/select.py:147:7 - error: Base classes for class "VeSyncSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/select.py:160:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "VeSyncSelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/select.py:160:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "VeSyncSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/select.py:164:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/select.py:171:64 - error: "message" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/vesync/sensor.py + /homeassistant/components/vesync/sensor.py:197:7 - error: Base classes for class "VeSyncSensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/sensor.py:197:7 - error: Base classes for class "VeSyncSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/sensor.py:210:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "VeSyncSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/sensor.py:210:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "VeSyncSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/sensor.py:214:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/vesync/switch.py + /homeassistant/components/vesync/switch.py:46:37 - error: Cannot access attribute "turn_on" for class "VeSyncBaseDevice[Unknown]" +   Attribute "turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/switch.py:47:38 - error: Cannot access attribute "turn_off" for class "VeSyncBaseDevice[Unknown]" +   Attribute "turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/switch.py:56:37 - error: Cannot access attribute "toggle_display" for class "VeSyncBaseDevice[Unknown]" +   Attribute "toggle_display" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/switch.py:57:38 - error: Cannot access attribute "toggle_display" for class "VeSyncBaseDevice[Unknown]" +   Attribute "toggle_display" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/switch.py:64:37 - error: Cannot access attribute "toggle_child_lock" for class "VeSyncBaseDevice[Unknown]" +   Attribute "toggle_child_lock" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/switch.py:65:38 - error: Cannot access attribute "toggle_child_lock" for class "VeSyncBaseDevice[Unknown]" +   Attribute "toggle_child_lock" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vesync/switch.py:108:7 - error: Base classes for class "VeSyncSwitchEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/switch.py:108:7 - error: Base classes for class "VeSyncSwitchEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/switch.py:108:7 - error: Base classes for class "VeSyncSwitchEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/switch.py:121:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "VeSyncSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/switch.py:121:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "VeSyncSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/switch.py:129:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/switch.py:136:64 - error: "message" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/vesync/switch.py:143:64 - error: "message" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/vesync/update.py + /homeassistant/components/vesync/update.py:55:7 - error: Base classes for class "VeSyncDeviceUpdate" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/update.py:55:7 - error: Base classes for class "VeSyncDeviceUpdate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/update.py:61:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vesync/update.py:66:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/viaggiatreno/sensor.py + /homeassistant/components/viaggiatreno/sensor.py:118:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/viaggiatreno/sensor.py:123:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/viaggiatreno/sensor.py:128:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/viaggiatreno/sensor.py:133:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/viaggiatreno/sensor.py:138:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/vicare/__init__.py + /homeassistant/components/vicare/__init__.py:39:30 - error: Cannot assign to attribute "runtime_data" for class "ViCareConfigEntry" +   "PyViCare" is not assignable to "ViCareData" (reportAttributeAccessIssue) + /homeassistant/components/vicare/__init__.py:80:12 - error: Type "ViCareData" is not assignable to return type "PyViCare" +   "ViCareData" is not assignable to "PyViCare" (reportReturnType) +/homeassistant/components/vicare/binary_sensor.py + /homeassistant/components/vicare/binary_sensor.py:58:38 - error: Cannot access attribute "getCirculationPumpActive" for class "Device" +   Attribute "getCirculationPumpActive" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/binary_sensor.py:63:38 - error: Cannot access attribute "getFrostProtectionActive" for class "Device" +   Attribute "getFrostProtectionActive" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/binary_sensor.py:72:38 - error: Cannot access attribute "getActive" for class "Device" +   Attribute "getActive" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/binary_sensor.py:81:38 - error: Cannot access attribute "getActive" for class "Device" +   Attribute "getActive" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/binary_sensor.py:90:38 - error: Cannot access attribute "getSolarPumpActive" for class "Device" +   Attribute "getSolarPumpActive" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/binary_sensor.py:96:38 - error: Cannot access attribute "getDomesticHotWaterChargingActive" for class "Device" +   Attribute "getDomesticHotWaterChargingActive" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/binary_sensor.py:102:38 - error: Cannot access attribute "getDomesticHotWaterCirculationPumpActive" for class "Device" +   Attribute "getDomesticHotWaterCirculationPumpActive" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/binary_sensor.py:108:38 - error: Cannot access attribute "getDomesticHotWaterPumpActive" for class "Device" +   Attribute "getDomesticHotWaterPumpActive" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/binary_sensor.py:114:38 - error: Cannot access attribute "getOneTimeCharge" for class "Device" +   Attribute "getOneTimeCharge" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/binary_sensor.py:125:38 - error: Cannot access attribute "getIdentification" for class "Device" +   Attribute "getIdentification" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/binary_sensor.py:132:38 - error: Cannot access attribute "getMountingMode" for class "Device" +   Attribute "getMountingMode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/binary_sensor.py:138:38 - error: Cannot access attribute "getChildLock" for class "Device" +   Attribute "getChildLock" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/binary_sensor.py:145:38 - error: Cannot access attribute "isValveOpen" for class "Device" +   Attribute "isValveOpen" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/binary_sensor.py:150:38 - error: Cannot access attribute "getHeatExchangerFrostProtectionActive" for class "Device" +   Attribute "getHeatExchangerFrostProtectionActive" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/binary_sensor.py:225:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ViCareBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vicare/binary_sensor.py:225:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "ViCareBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vicare/binary_sensor.py:228:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/vicare/binary_sensor.py:236:73 - error: Argument of type "Device | HeatingDeviceWithComponent" cannot be assigned to parameter of type "Device" +   Type "Device | HeatingDeviceWithComponent" is not assignable to type "Device" +     "HeatingDeviceWithComponent" is not assignable to "Device" (reportArgumentType) +/homeassistant/components/vicare/button.py + /homeassistant/components/vicare/button.py:42:38 - error: Cannot access attribute "getOneTimeCharge" for class "Device" +   Attribute "getOneTimeCharge" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/button.py:43:38 - error: Cannot access attribute "activateOneTimeCharge" for class "Device" +   Attribute "activateOneTimeCharge" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/button.py:49:38 - error: Cannot access attribute "getOneTimeCharge" for class "Device" +   Attribute "getOneTimeCharge" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/button.py:50:38 - error: Cannot access attribute "deactivateOneTimeCharge" for class "Device" +   Attribute "deactivateOneTimeCharge" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/button.py:101:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ViCareButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vicare/button.py:101:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "ViCareButtonEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vicare/button.py:107:54 - error: Argument of type "Device | HeatingDeviceWithComponent" cannot be assigned to parameter of type "Device" +   Type "Device | HeatingDeviceWithComponent" is not assignable to type "Device" +     "HeatingDeviceWithComponent" is not assignable to "Device" (reportArgumentType) +/homeassistant/components/vicare/climate.py + /homeassistant/components/vicare/climate.py:91:13 - error: Argument of type "HeatingDeviceWithComponent" cannot be assigned to parameter "circuit" of type "HeatingCircuit" in function "__init__" +   "HeatingDeviceWithComponent" is not assignable to "HeatingCircuit" (reportArgumentType) + /homeassistant/components/vicare/climate.py:148:13 - error: Argument of type "str | None" cannot be assigned to parameter "unique_id_suffix" of type "str" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/vicare/climate.py:152:57 - error: Cannot access attribute "getPrograms" for class "Device" +   Attribute "getPrograms" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:152:57 - error: Cannot access attribute "getPrograms" for class "HeatingDeviceWithComponent" +   Attribute "getPrograms" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:165:31 - error: Cannot access attribute "getRoomTemperature" for class "Device" +   Attribute "getRoomTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:165:31 - error: Cannot access attribute "getRoomTemperature" for class "HeatingDeviceWithComponent" +   Attribute "getRoomTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:170:49 - error: Cannot access attribute "getSupplyTemperature" for class "Device" +   Attribute "getSupplyTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:170:49 - error: Cannot access attribute "getSupplyTemperature" for class "HeatingDeviceWithComponent" +   Attribute "getSupplyTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:181:31 - error: Cannot access attribute "getActiveProgram" for class "Device" +   Attribute "getActiveProgram" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:181:31 - error: Cannot access attribute "getActiveProgram" for class "HeatingDeviceWithComponent" +   Attribute "getActiveProgram" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:185:59 - error: Cannot access attribute "getCurrentDesiredTemperature" for class "Device" +   Attribute "getCurrentDesiredTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:185:59 - error: Cannot access attribute "getCurrentDesiredTemperature" for class "HeatingDeviceWithComponent" +   Attribute "getCurrentDesiredTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:189:31 - error: Cannot access attribute "getActiveMode" for class "Device" +   Attribute "getActiveMode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:189:31 - error: Cannot access attribute "getActiveMode" for class "HeatingDeviceWithComponent" +   Attribute "getActiveMode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:194:31 - error: Cannot access attribute "getHeatingCurveSlope" for class "Device" +   Attribute "getHeatingCurveSlope" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:194:31 - error: Cannot access attribute "getHeatingCurveSlope" for class "HeatingDeviceWithComponent" +   Attribute "getHeatingCurveSlope" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:199:31 - error: Cannot access attribute "getHeatingCurveShift" for class "Device" +   Attribute "getHeatingCurveShift" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:199:31 - error: Cannot access attribute "getHeatingCurveShift" for class "HeatingDeviceWithComponent" +   Attribute "getHeatingCurveShift" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:203:62 - error: Cannot access attribute "getModes" for class "Device" +   Attribute "getModes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:203:62 - error: Cannot access attribute "getModes" for class "HeatingDeviceWithComponent" +   Attribute "getModes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:209:75 - error: Cannot access attribute "getActive" for class "HeatingDeviceWithComponent" +   Attribute "getActive" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:214:60 - error: Cannot access attribute "getActive" for class "HeatingDeviceWithComponent" +   Attribute "getActive" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:227:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vicare/climate.py:243:19 - error: Cannot access attribute "setMode" for class "Device" +   Attribute "setMode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:243:19 - error: Cannot access attribute "setMode" for class "HeatingDeviceWithComponent" +   Attribute "setMode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:257:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) + /homeassistant/components/vicare/climate.py:272:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vicare/climate.py:281:23 - error: Cannot access attribute "setProgramTemperature" for class "Device" +   Attribute "setProgramTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:281:23 - error: Cannot access attribute "setProgramTemperature" for class "HeatingDeviceWithComponent" +   Attribute "setProgramTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:285:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vicare/climate.py:310:27 - error: Cannot access attribute "deactivateProgram" for class "Device" +   Attribute "deactivateProgram" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:310:27 - error: Cannot access attribute "deactivateProgram" for class "HeatingDeviceWithComponent" +   Attribute "deactivateProgram" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:324:27 - error: Cannot access attribute "activateProgram" for class "Device" +   Attribute "activateProgram" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:324:27 - error: Cannot access attribute "activateProgram" for class "HeatingDeviceWithComponent" +   Attribute "activateProgram" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:335:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vicare/climate.py:344:19 - error: Cannot access attribute "setMode" for class "Device" +   Attribute "setMode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/climate.py:344:19 - error: Cannot access attribute "setMode" for class "HeatingDeviceWithComponent" +   Attribute "setMode" is unknown (reportAttributeAccessIssue) +/homeassistant/components/vicare/fan.py + /homeassistant/components/vicare/fan.py:140:13 - error: Argument of type "str | None" cannot be assigned to parameter "unique_id_suffix" of type "str" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/vicare/fan.py:143:47 - error: Cannot access attribute "getVentilationModes" for class "Device" +   Attribute "getVentilationModes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:143:47 - error: Cannot access attribute "getVentilationModes" for class "HeatingDeviceWithComponent" +   Attribute "getVentilationModes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:154:42 - error: Cannot access attribute "getVentilationLevels" for class "Device" +   Attribute "getVentilationLevels" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:154:42 - error: Cannot access attribute "getVentilationLevels" for class "HeatingDeviceWithComponent" +   Attribute "getVentilationLevels" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:160:20 - error: Cannot access attribute "getVentilationQuickmodes" for class "Device" +   Attribute "getVentilationQuickmodes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:163:33 - error: Cannot access attribute "getVentilationQuickmodes" for class "Device" +   Attribute "getVentilationQuickmodes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:177:31 - error: Cannot access attribute "getActiveVentilationMode" for class "Device" +   Attribute "getActiveVentilationMode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:177:31 - error: Cannot access attribute "getActiveVentilationMode" for class "HeatingDeviceWithComponent" +   Attribute "getActiveVentilationMode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:181:48 - error: Cannot access attribute "getVentilationLevel" for class "Device" +   Attribute "getVentilationLevel" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:181:48 - error: Cannot access attribute "getVentilationLevel" for class "HeatingDeviceWithComponent" +   Attribute "getVentilationLevel" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:202:25 - error: Cannot access attribute "getVentilationQuickmode" for class "Device" +   Attribute "getVentilationQuickmode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:202:25 - error: Cannot access attribute "getVentilationQuickmode" for class "HeatingDeviceWithComponent" +   Attribute "getVentilationQuickmode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:209:19 - error: Cannot access attribute "activateVentilationQuickmode" for class "Device" +   Attribute "activateVentilationQuickmode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:209:19 - error: Cannot access attribute "activateVentilationQuickmode" for class "HeatingDeviceWithComponent" +   Attribute "activateVentilationQuickmode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:212:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vicare/fan.py:216:25 - error: Cannot access attribute "getVentilationQuickmode" for class "Device" +   Attribute "getVentilationQuickmode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:216:25 - error: Cannot access attribute "getVentilationQuickmode" for class "HeatingDeviceWithComponent" +   Attribute "getVentilationQuickmode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:245:25 - error: Cannot access attribute "getVentilationQuickmode" for class "Device" +   Attribute "getVentilationQuickmode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:245:25 - error: Cannot access attribute "getVentilationQuickmode" for class "HeatingDeviceWithComponent" +   Attribute "getVentilationQuickmode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:246:23 - error: Cannot access attribute "deactivateVentilationQuickmode" for class "Device" +   Attribute "deactivateVentilationQuickmode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:246:23 - error: Cannot access attribute "deactivateVentilationQuickmode" for class "HeatingDeviceWithComponent" +   Attribute "deactivateVentilationQuickmode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:250:19 - error: Cannot access attribute "setVentilationLevel" for class "Device" +   Attribute "setVentilationLevel" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:250:19 - error: Cannot access attribute "setVentilationLevel" for class "HeatingDeviceWithComponent" +   Attribute "setVentilationLevel" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:256:19 - error: Cannot access attribute "activateVentilationMode" for class "Device" +   Attribute "activateVentilationMode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:256:19 - error: Cannot access attribute "activateVentilationMode" for class "HeatingDeviceWithComponent" +   Attribute "activateVentilationMode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/fan.py:259:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/vicare/number.py + /homeassistant/components/vicare/number.py:64:38 - error: Cannot access attribute "getDomesticHotWaterConfiguredTemperature" for class "Device" +   Attribute "getDomesticHotWaterConfiguredTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:65:45 - error: Cannot access attribute "setDomesticHotWaterTemperature" for class "Device" +   Attribute "setDomesticHotWaterTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:66:42 - error: Cannot access attribute "getDomesticHotWaterMinTemperature" for class "Device" +   Attribute "getDomesticHotWaterMinTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:67:42 - error: Cannot access attribute "getDomesticHotWaterMaxTemperature" for class "Device" +   Attribute "getDomesticHotWaterMaxTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:77:38 - error: Cannot access attribute "getDomesticHotWaterConfiguredTemperature2" for class "Device" +   Attribute "getDomesticHotWaterConfiguredTemperature2" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:78:45 - error: Cannot access attribute "setDomesticHotWaterTemperature2" for class "Device" +   Attribute "setDomesticHotWaterTemperature2" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:91:38 - error: Cannot access attribute "getDomesticHotWaterHysteresisSwitchOn" for class "Device" +   Attribute "getDomesticHotWaterHysteresisSwitchOn" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:92:45 - error: Cannot access attribute "setDomesticHotWaterHysteresisSwitchOn" for class "Device" +   Attribute "setDomesticHotWaterHysteresisSwitchOn" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:95:42 - error: Cannot access attribute "getDomesticHotWaterHysteresisSwitchOnMin" for class "Device" +   Attribute "getDomesticHotWaterHysteresisSwitchOnMin" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:96:42 - error: Cannot access attribute "getDomesticHotWaterHysteresisSwitchOnMax" for class "Device" +   Attribute "getDomesticHotWaterHysteresisSwitchOnMax" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:97:41 - error: Cannot access attribute "getDomesticHotWaterHysteresisSwitchOnStepping" for class "Device" +   Attribute "getDomesticHotWaterHysteresisSwitchOnStepping" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:106:38 - error: Cannot access attribute "getDomesticHotWaterHysteresisSwitchOff" for class "Device" +   Attribute "getDomesticHotWaterHysteresisSwitchOff" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:107:45 - error: Cannot access attribute "setDomesticHotWaterHysteresisSwitchOff" for class "Device" +   Attribute "setDomesticHotWaterHysteresisSwitchOff" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:110:42 - error: Cannot access attribute "getDomesticHotWaterHysteresisSwitchOffMin" for class "Device" +   Attribute "getDomesticHotWaterHysteresisSwitchOffMin" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:111:42 - error: Cannot access attribute "getDomesticHotWaterHysteresisSwitchOffMax" for class "Device" +   Attribute "getDomesticHotWaterHysteresisSwitchOffMax" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:112:41 - error: Cannot access attribute "getDomesticHotWaterHysteresisSwitchOffStepping" for class "Device" +   Attribute "getDomesticHotWaterHysteresisSwitchOffStepping" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:125:38 - error: Cannot access attribute "getHeatingCurveShift" for class "Device" +   Attribute "getHeatingCurveShift" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:127:17 - error: Cannot access attribute "setHeatingCurve" for class "Device" +   Attribute "setHeatingCurve" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:127:44 - error: Cannot access attribute "getHeatingCurveSlope" for class "Device" +   Attribute "getHeatingCurveSlope" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:129:42 - error: Cannot access attribute "getHeatingCurveShiftMin" for class "Device" +   Attribute "getHeatingCurveShiftMin" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:130:42 - error: Cannot access attribute "getHeatingCurveShiftMax" for class "Device" +   Attribute "getHeatingCurveShiftMax" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:131:41 - error: Cannot access attribute "getHeatingCurveShiftStepping" for class "Device" +   Attribute "getHeatingCurveShiftStepping" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:141:38 - error: Cannot access attribute "getHeatingCurveSlope" for class "Device" +   Attribute "getHeatingCurveSlope" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:143:17 - error: Cannot access attribute "setHeatingCurve" for class "Device" +   Attribute "setHeatingCurve" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:143:37 - error: Cannot access attribute "getHeatingCurveShift" for class "Device" +   Attribute "getHeatingCurveShift" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:145:42 - error: Cannot access attribute "getHeatingCurveSlopeMin" for class "Device" +   Attribute "getHeatingCurveSlopeMin" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:146:42 - error: Cannot access attribute "getHeatingCurveSlopeMax" for class "Device" +   Attribute "getHeatingCurveSlopeMax" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:147:41 - error: Cannot access attribute "getHeatingCurveSlopeStepping" for class "Device" +   Attribute "getHeatingCurveSlopeStepping" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:159:38 - error: Cannot access attribute "getDesiredTemperatureForProgram" for class "Device" +   Attribute "getDesiredTemperatureForProgram" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:162:45 - error: Cannot access attribute "setProgramTemperature" for class "Device" +   Attribute "setProgramTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:165:42 - error: Cannot access attribute "getProgramMinTemperature" for class "Device" +   Attribute "getProgramMinTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:168:42 - error: Cannot access attribute "getProgramMaxTemperature" for class "Device" +   Attribute "getProgramMaxTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:171:41 - error: Cannot access attribute "getProgramStepping" for class "Device" +   Attribute "getProgramStepping" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:180:38 - error: Cannot access attribute "getDesiredTemperatureForProgram" for class "Device" +   Attribute "getDesiredTemperatureForProgram" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:183:45 - error: Cannot access attribute "setProgramTemperature" for class "Device" +   Attribute "setProgramTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:186:42 - error: Cannot access attribute "getProgramMinTemperature" for class "Device" +   Attribute "getProgramMinTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:189:42 - error: Cannot access attribute "getProgramMaxTemperature" for class "Device" +   Attribute "getProgramMaxTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:192:41 - error: Cannot access attribute "getProgramStepping" for class "Device" +   Attribute "getProgramStepping" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:201:38 - error: Cannot access attribute "getDesiredTemperatureForProgram" for class "Device" +   Attribute "getDesiredTemperatureForProgram" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:204:45 - error: Cannot access attribute "setProgramTemperature" for class "Device" +   Attribute "setProgramTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:207:42 - error: Cannot access attribute "getProgramMinTemperature" for class "Device" +   Attribute "getProgramMinTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:210:42 - error: Cannot access attribute "getProgramMaxTemperature" for class "Device" +   Attribute "getProgramMaxTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:213:41 - error: Cannot access attribute "getProgramStepping" for class "Device" +   Attribute "getProgramStepping" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:222:38 - error: Cannot access attribute "getDesiredTemperatureForProgram" for class "Device" +   Attribute "getDesiredTemperatureForProgram" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:225:45 - error: Cannot access attribute "setProgramTemperature" for class "Device" +   Attribute "setProgramTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:228:42 - error: Cannot access attribute "getProgramMinTemperature" for class "Device" +   Attribute "getProgramMinTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:231:42 - error: Cannot access attribute "getProgramMaxTemperature" for class "Device" +   Attribute "getProgramMaxTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:234:41 - error: Cannot access attribute "getProgramStepping" for class "Device" +   Attribute "getProgramStepping" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:245:38 - error: Cannot access attribute "getDesiredTemperatureForProgram" for class "Device" +   Attribute "getDesiredTemperatureForProgram" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:248:45 - error: Cannot access attribute "setProgramTemperature" for class "Device" +   Attribute "setProgramTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:251:42 - error: Cannot access attribute "getProgramMinTemperature" for class "Device" +   Attribute "getProgramMinTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:254:42 - error: Cannot access attribute "getProgramMaxTemperature" for class "Device" +   Attribute "getProgramMaxTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:257:41 - error: Cannot access attribute "getProgramStepping" for class "Device" +   Attribute "getProgramStepping" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:268:38 - error: Cannot access attribute "getDesiredTemperatureForProgram" for class "Device" +   Attribute "getDesiredTemperatureForProgram" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:271:45 - error: Cannot access attribute "setProgramTemperature" for class "Device" +   Attribute "setProgramTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:274:42 - error: Cannot access attribute "getProgramMinTemperature" for class "Device" +   Attribute "getProgramMinTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:277:42 - error: Cannot access attribute "getProgramMaxTemperature" for class "Device" +   Attribute "getProgramMaxTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:280:41 - error: Cannot access attribute "getProgramStepping" for class "Device" +   Attribute "getProgramStepping" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:291:38 - error: Cannot access attribute "getDesiredTemperatureForProgram" for class "Device" +   Attribute "getDesiredTemperatureForProgram" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:294:45 - error: Cannot access attribute "setProgramTemperature" for class "Device" +   Attribute "setProgramTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:297:42 - error: Cannot access attribute "getProgramMinTemperature" for class "Device" +   Attribute "getProgramMinTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:300:42 - error: Cannot access attribute "getProgramMaxTemperature" for class "Device" +   Attribute "getProgramMaxTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:303:41 - error: Cannot access attribute "getProgramStepping" for class "Device" +   Attribute "getProgramStepping" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:314:38 - error: Cannot access attribute "getDesiredTemperatureForProgram" for class "Device" +   Attribute "getDesiredTemperatureForProgram" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:317:45 - error: Cannot access attribute "setProgramTemperature" for class "Device" +   Attribute "setProgramTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:320:42 - error: Cannot access attribute "getProgramMinTemperature" for class "Device" +   Attribute "getProgramMinTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:323:42 - error: Cannot access attribute "getProgramMaxTemperature" for class "Device" +   Attribute "getProgramMaxTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:326:41 - error: Cannot access attribute "getProgramStepping" for class "Device" +   Attribute "getProgramStepping" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:337:38 - error: Cannot access attribute "getDesiredTemperatureForProgram" for class "Device" +   Attribute "getDesiredTemperatureForProgram" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:340:45 - error: Cannot access attribute "setProgramTemperature" for class "Device" +   Attribute "setProgramTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:343:42 - error: Cannot access attribute "getProgramMinTemperature" for class "Device" +   Attribute "getProgramMinTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:346:42 - error: Cannot access attribute "getProgramMaxTemperature" for class "Device" +   Attribute "getProgramMaxTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:349:41 - error: Cannot access attribute "getProgramStepping" for class "Device" +   Attribute "getProgramStepping" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/number.py:421:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ViCareNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vicare/number.py:421:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "ViCareNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vicare/number.py:424:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/vicare/number.py:431:50 - error: Argument of type "Device | HeatingDeviceWithComponent" cannot be assigned to parameter of type "Device" +   Type "Device | HeatingDeviceWithComponent" is not assignable to type "Device" +     "HeatingDeviceWithComponent" is not assignable to "Device" (reportArgumentType) + /homeassistant/components/vicare/number.py:439:21 - error: Argument of type "Device | HeatingDeviceWithComponent" cannot be assigned to parameter of type "Device" +   Type "Device | HeatingDeviceWithComponent" is not assignable to type "Device" +     "HeatingDeviceWithComponent" is not assignable to "Device" (reportArgumentType) + /homeassistant/components/vicare/number.py:443:63 - error: Argument of type "Device | HeatingDeviceWithComponent" cannot be assigned to parameter "api" of type "HeatingDeviceWithComponent" in function "_get_value" +   Type "Device | HeatingDeviceWithComponent" is not assignable to type "HeatingDeviceWithComponent" +     "Device" is not assignable to "HeatingDeviceWithComponent" (reportArgumentType) + /homeassistant/components/vicare/number.py:448:63 - error: Argument of type "Device | HeatingDeviceWithComponent" cannot be assigned to parameter "api" of type "HeatingDeviceWithComponent" in function "_get_value" +   Type "Device | HeatingDeviceWithComponent" is not assignable to type "HeatingDeviceWithComponent" +     "Device" is not assignable to "HeatingDeviceWithComponent" (reportArgumentType) + /homeassistant/components/vicare/number.py:453:62 - error: Argument of type "Device | HeatingDeviceWithComponent" cannot be assigned to parameter "api" of type "HeatingDeviceWithComponent" in function "_get_value" +   Type "Device | HeatingDeviceWithComponent" is not assignable to type "HeatingDeviceWithComponent" +     "Device" is not assignable to "HeatingDeviceWithComponent" (reportArgumentType) + /homeassistant/components/vicare/number.py:470:39 - error: Argument of type "HeatingDeviceWithComponent" cannot be assigned to parameter of type "Device" +   "HeatingDeviceWithComponent" is not assignable to "Device" (reportArgumentType) +/homeassistant/components/vicare/sensor.py + /homeassistant/components/vicare/sensor.py:104:38 - error: Cannot access attribute "getSupplyTemperature" for class "Device" +   Attribute "getSupplyTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:116:38 - error: Cannot access attribute "getOutsideTemperature" for class "Device" +   Attribute "getOutsideTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:124:38 - error: Cannot access attribute "getOutsideHumidity" for class "Device" +   Attribute "getOutsideHumidity" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:132:38 - error: Cannot access attribute "getReturnTemperature" for class "Device" +   Attribute "getReturnTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:140:38 - error: Cannot access attribute "getBoilerTemperature" for class "Device" +   Attribute "getBoilerTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:148:38 - error: Cannot access attribute "getBoilerCommonSupplyTemperature" for class "Device" +   Attribute "getBoilerCommonSupplyTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:156:38 - error: Cannot access attribute "getSupplyTemperaturePrimaryCircuit" for class "Device" +   Attribute "getSupplyTemperaturePrimaryCircuit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:164:38 - error: Cannot access attribute "getReturnTemperaturePrimaryCircuit" for class "Device" +   Attribute "getReturnTemperaturePrimaryCircuit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:172:38 - error: Cannot access attribute "getSupplyTemperatureSecondaryCircuit" for class "Device" +   Attribute "getSupplyTemperatureSecondaryCircuit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:180:38 - error: Cannot access attribute "getReturnTemperatureSecondaryCircuit" for class "Device" +   Attribute "getReturnTemperatureSecondaryCircuit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:188:38 - error: Cannot access attribute "getDomesticHotWaterOutletTemperature" for class "Device" +   Attribute "getDomesticHotWaterOutletTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:196:38 - error: Cannot access attribute "getDomesticHotWaterMaxTemperature" for class "Device" +   Attribute "getDomesticHotWaterMaxTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:205:38 - error: Cannot access attribute "getDomesticHotWaterMinTemperature" for class "Device" +   Attribute "getDomesticHotWaterMinTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:214:38 - error: Cannot access attribute "getDomesticHotWaterStorageTemperature" for class "Device" +   Attribute "getDomesticHotWaterStorageTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:222:38 - error: Cannot access attribute "getHotWaterStorageTemperatureTop" for class "Device" +   Attribute "getHotWaterStorageTemperatureTop" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:230:38 - error: Cannot access attribute "getDomesticHotWaterStorageTemperatureMiddle" for class "Device" +   Attribute "getDomesticHotWaterStorageTemperatureMiddle" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:239:38 - error: Cannot access attribute "getHotWaterStorageTemperatureBottom" for class "Device" +   Attribute "getHotWaterStorageTemperatureBottom" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:246:38 - error: Cannot access attribute "getGasConsumptionDomesticHotWaterToday" for class "Device" +   Attribute "getGasConsumptionDomesticHotWaterToday" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:247:37 - error: Cannot access attribute "getGasConsumptionDomesticHotWaterUnit" for class "Device" +   Attribute "getGasConsumptionDomesticHotWaterUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:253:38 - error: Cannot access attribute "getGasConsumptionDomesticHotWaterThisWeek" for class "Device" +   Attribute "getGasConsumptionDomesticHotWaterThisWeek" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:254:37 - error: Cannot access attribute "getGasConsumptionDomesticHotWaterUnit" for class "Device" +   Attribute "getGasConsumptionDomesticHotWaterUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:261:38 - error: Cannot access attribute "getGasConsumptionDomesticHotWaterThisMonth" for class "Device" +   Attribute "getGasConsumptionDomesticHotWaterThisMonth" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:262:37 - error: Cannot access attribute "getGasConsumptionDomesticHotWaterUnit" for class "Device" +   Attribute "getGasConsumptionDomesticHotWaterUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:269:38 - error: Cannot access attribute "getGasConsumptionDomesticHotWaterThisYear" for class "Device" +   Attribute "getGasConsumptionDomesticHotWaterThisYear" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:270:37 - error: Cannot access attribute "getGasConsumptionDomesticHotWaterUnit" for class "Device" +   Attribute "getGasConsumptionDomesticHotWaterUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:277:38 - error: Cannot access attribute "getGasConsumptionHeatingToday" for class "Device" +   Attribute "getGasConsumptionHeatingToday" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:278:37 - error: Cannot access attribute "getGasConsumptionHeatingUnit" for class "Device" +   Attribute "getGasConsumptionHeatingUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:284:38 - error: Cannot access attribute "getGasConsumptionHeatingThisWeek" for class "Device" +   Attribute "getGasConsumptionHeatingThisWeek" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:285:37 - error: Cannot access attribute "getGasConsumptionHeatingUnit" for class "Device" +   Attribute "getGasConsumptionHeatingUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:292:38 - error: Cannot access attribute "getGasConsumptionHeatingThisMonth" for class "Device" +   Attribute "getGasConsumptionHeatingThisMonth" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:293:37 - error: Cannot access attribute "getGasConsumptionHeatingUnit" for class "Device" +   Attribute "getGasConsumptionHeatingUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:300:38 - error: Cannot access attribute "getGasConsumptionHeatingThisYear" for class "Device" +   Attribute "getGasConsumptionHeatingThisYear" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:301:37 - error: Cannot access attribute "getGasConsumptionHeatingUnit" for class "Device" +   Attribute "getGasConsumptionHeatingUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:308:38 - error: Cannot access attribute "getFuelCellGasConsumptionToday" for class "Device" +   Attribute "getFuelCellGasConsumptionToday" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:309:37 - error: Cannot access attribute "getFuelCellGasConsumptionUnit" for class "Device" +   Attribute "getFuelCellGasConsumptionUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:315:38 - error: Cannot access attribute "getFuelCellGasConsumptionThisWeek" for class "Device" +   Attribute "getFuelCellGasConsumptionThisWeek" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:316:37 - error: Cannot access attribute "getFuelCellGasConsumptionUnit" for class "Device" +   Attribute "getFuelCellGasConsumptionUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:323:38 - error: Cannot access attribute "getFuelCellGasConsumptionThisMonth" for class "Device" +   Attribute "getFuelCellGasConsumptionThisMonth" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:324:37 - error: Cannot access attribute "getFuelCellGasConsumptionUnit" for class "Device" +   Attribute "getFuelCellGasConsumptionUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:331:38 - error: Cannot access attribute "getFuelCellGasConsumptionThisYear" for class "Device" +   Attribute "getFuelCellGasConsumptionThisYear" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:332:37 - error: Cannot access attribute "getFuelCellGasConsumptionUnit" for class "Device" +   Attribute "getFuelCellGasConsumptionUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:339:38 - error: Cannot access attribute "getGasConsumptionTotalToday" for class "Device" +   Attribute "getGasConsumptionTotalToday" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:340:37 - error: Cannot access attribute "getGasConsumptionUnit" for class "Device" +   Attribute "getGasConsumptionUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:346:38 - error: Cannot access attribute "getGasConsumptionTotalThisWeek" for class "Device" +   Attribute "getGasConsumptionTotalThisWeek" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:347:37 - error: Cannot access attribute "getGasConsumptionUnit" for class "Device" +   Attribute "getGasConsumptionUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:354:38 - error: Cannot access attribute "getGasConsumptionTotalThisMonth" for class "Device" +   Attribute "getGasConsumptionTotalThisMonth" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:355:37 - error: Cannot access attribute "getGasConsumptionUnit" for class "Device" +   Attribute "getGasConsumptionUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:362:38 - error: Cannot access attribute "getGasConsumptionTotalThisYear" for class "Device" +   Attribute "getGasConsumptionTotalThisYear" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:363:37 - error: Cannot access attribute "getGasConsumptionUnit" for class "Device" +   Attribute "getGasConsumptionUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:371:38 - error: Cannot access attribute "getGasSummaryConsumptionHeatingCurrentDay" for class "Device" +   Attribute "getGasSummaryConsumptionHeatingCurrentDay" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:372:37 - error: Cannot access attribute "getGasSummaryConsumptionHeatingUnit" for class "Device" +   Attribute "getGasSummaryConsumptionHeatingUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:379:38 - error: Cannot access attribute "getGasSummaryConsumptionHeatingCurrentMonth" for class "Device" +   Attribute "getGasSummaryConsumptionHeatingCurrentMonth" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:380:37 - error: Cannot access attribute "getGasSummaryConsumptionHeatingUnit" for class "Device" +   Attribute "getGasSummaryConsumptionHeatingUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:388:38 - error: Cannot access attribute "getGasSummaryConsumptionHeatingCurrentYear" for class "Device" +   Attribute "getGasSummaryConsumptionHeatingCurrentYear" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:389:37 - error: Cannot access attribute "getGasSummaryConsumptionHeatingUnit" for class "Device" +   Attribute "getGasSummaryConsumptionHeatingUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:397:38 - error: Cannot access attribute "getGasSummaryConsumptionHeatingLastSevenDays" for class "Device" +   Attribute "getGasSummaryConsumptionHeatingLastSevenDays" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:398:37 - error: Cannot access attribute "getGasSummaryConsumptionHeatingUnit" for class "Device" +   Attribute "getGasSummaryConsumptionHeatingUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:406:38 - error: Cannot access attribute "getGasSummaryConsumptionDomesticHotWaterCurrentDay" for class "Device" +   Attribute "getGasSummaryConsumptionDomesticHotWaterCurrentDay" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:407:37 - error: Cannot access attribute "getGasSummaryConsumptionDomesticHotWaterUnit" for class "Device" +   Attribute "getGasSummaryConsumptionDomesticHotWaterUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:414:38 - error: Cannot access attribute "getGasSummaryConsumptionDomesticHotWaterCurrentMonth" for class "Device" +   Attribute "getGasSummaryConsumptionDomesticHotWaterCurrentMonth" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:415:37 - error: Cannot access attribute "getGasSummaryConsumptionDomesticHotWaterUnit" for class "Device" +   Attribute "getGasSummaryConsumptionDomesticHotWaterUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:423:38 - error: Cannot access attribute "getGasSummaryConsumptionDomesticHotWaterCurrentYear" for class "Device" +   Attribute "getGasSummaryConsumptionDomesticHotWaterCurrentYear" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:424:37 - error: Cannot access attribute "getGasSummaryConsumptionDomesticHotWaterUnit" for class "Device" +   Attribute "getGasSummaryConsumptionDomesticHotWaterUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:432:38 - error: Cannot access attribute "getGasSummaryConsumptionDomesticHotWaterLastSevenDays" for class "Device" +   Attribute "getGasSummaryConsumptionDomesticHotWaterLastSevenDays" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:433:37 - error: Cannot access attribute "getGasSummaryConsumptionDomesticHotWaterUnit" for class "Device" +   Attribute "getGasSummaryConsumptionDomesticHotWaterUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:441:38 - error: Cannot access attribute "getPowerSummaryConsumptionHeatingCurrentDay" for class "Device" +   Attribute "getPowerSummaryConsumptionHeatingCurrentDay" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:442:37 - error: Cannot access attribute "getPowerSummaryConsumptionHeatingUnit" for class "Device" +   Attribute "getPowerSummaryConsumptionHeatingUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:449:38 - error: Cannot access attribute "getPowerSummaryConsumptionHeatingCurrentMonth" for class "Device" +   Attribute "getPowerSummaryConsumptionHeatingCurrentMonth" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:450:37 - error: Cannot access attribute "getPowerSummaryConsumptionHeatingUnit" for class "Device" +   Attribute "getPowerSummaryConsumptionHeatingUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:458:38 - error: Cannot access attribute "getPowerSummaryConsumptionHeatingCurrentYear" for class "Device" +   Attribute "getPowerSummaryConsumptionHeatingCurrentYear" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:459:37 - error: Cannot access attribute "getPowerSummaryConsumptionHeatingUnit" for class "Device" +   Attribute "getPowerSummaryConsumptionHeatingUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:467:38 - error: Cannot access attribute "getPowerSummaryConsumptionHeatingLastSevenDays" for class "Device" +   Attribute "getPowerSummaryConsumptionHeatingLastSevenDays" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:468:37 - error: Cannot access attribute "getPowerSummaryConsumptionHeatingUnit" for class "Device" +   Attribute "getPowerSummaryConsumptionHeatingUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:476:38 - error: Cannot access attribute "getPowerConsumptionCoolingToday" for class "Device" +   Attribute "getPowerConsumptionCoolingToday" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:477:37 - error: Cannot access attribute "getPowerConsumptionCoolingUnit" for class "Device" +   Attribute "getPowerConsumptionCoolingUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:484:38 - error: Cannot access attribute "getPowerConsumptionCoolingThisMonth" for class "Device" +   Attribute "getPowerConsumptionCoolingThisMonth" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:485:37 - error: Cannot access attribute "getPowerConsumptionCoolingUnit" for class "Device" +   Attribute "getPowerConsumptionCoolingUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:493:38 - error: Cannot access attribute "getPowerConsumptionCoolingThisYear" for class "Device" +   Attribute "getPowerConsumptionCoolingThisYear" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:494:37 - error: Cannot access attribute "getPowerConsumptionCoolingUnit" for class "Device" +   Attribute "getPowerConsumptionCoolingUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:502:38 - error: Cannot access attribute "getPowerSummaryConsumptionDomesticHotWaterCurrentDay" for class "Device" +   Attribute "getPowerSummaryConsumptionDomesticHotWaterCurrentDay" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:503:37 - error: Cannot access attribute "getPowerSummaryConsumptionDomesticHotWaterUnit" for class "Device" +   Attribute "getPowerSummaryConsumptionDomesticHotWaterUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:510:38 - error: Cannot access attribute "getPowerSummaryConsumptionDomesticHotWaterCurrentMonth" for class "Device" +   Attribute "getPowerSummaryConsumptionDomesticHotWaterCurrentMonth" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:511:37 - error: Cannot access attribute "getPowerSummaryConsumptionDomesticHotWaterUnit" for class "Device" +   Attribute "getPowerSummaryConsumptionDomesticHotWaterUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:519:38 - error: Cannot access attribute "getPowerSummaryConsumptionDomesticHotWaterCurrentYear" for class "Device" +   Attribute "getPowerSummaryConsumptionDomesticHotWaterCurrentYear" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:520:37 - error: Cannot access attribute "getPowerSummaryConsumptionDomesticHotWaterUnit" for class "Device" +   Attribute "getPowerSummaryConsumptionDomesticHotWaterUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:528:38 - error: Cannot access attribute "getPowerSummaryConsumptionDomesticHotWaterLastSevenDays" for class "Device" +   Attribute "getPowerSummaryConsumptionDomesticHotWaterLastSevenDays" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:529:37 - error: Cannot access attribute "getPowerSummaryConsumptionDomesticHotWaterUnit" for class "Device" +   Attribute "getPowerSummaryConsumptionDomesticHotWaterUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:537:38 - error: Cannot access attribute "getPowerProductionCurrent" for class "Device" +   Attribute "getPowerProductionCurrent" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:545:38 - error: Cannot access attribute "getPowerProductionToday" for class "Device" +   Attribute "getPowerProductionToday" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:553:38 - error: Cannot access attribute "getPowerProductionThisWeek" for class "Device" +   Attribute "getPowerProductionThisWeek" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:562:38 - error: Cannot access attribute "getPowerProductionThisMonth" for class "Device" +   Attribute "getPowerProductionThisMonth" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:571:38 - error: Cannot access attribute "getPowerProductionThisYear" for class "Device" +   Attribute "getPowerProductionThisYear" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:580:38 - error: Cannot access attribute "getSolarStorageTemperature" for class "Device" +   Attribute "getSolarStorageTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:588:38 - error: Cannot access attribute "getSolarCollectorTemperature" for class "Device" +   Attribute "getSolarCollectorTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:596:38 - error: Cannot access attribute "getSolarPowerProductionToday" for class "Device" +   Attribute "getSolarPowerProductionToday" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:597:37 - error: Cannot access attribute "getSolarPowerProductionUnit" for class "Device" +   Attribute "getSolarPowerProductionUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:605:38 - error: Cannot access attribute "getSolarPowerProductionThisWeek" for class "Device" +   Attribute "getSolarPowerProductionThisWeek" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:606:37 - error: Cannot access attribute "getSolarPowerProductionUnit" for class "Device" +   Attribute "getSolarPowerProductionUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:615:38 - error: Cannot access attribute "getSolarPowerProductionThisMonth" for class "Device" +   Attribute "getSolarPowerProductionThisMonth" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:616:37 - error: Cannot access attribute "getSolarPowerProductionUnit" for class "Device" +   Attribute "getSolarPowerProductionUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:625:38 - error: Cannot access attribute "getSolarPowerProductionThisYear" for class "Device" +   Attribute "getSolarPowerProductionThisYear" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:626:37 - error: Cannot access attribute "getSolarPowerProductionUnit" for class "Device" +   Attribute "getSolarPowerProductionUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:635:38 - error: Cannot access attribute "getPowerConsumptionToday" for class "Device" +   Attribute "getPowerConsumptionToday" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:636:37 - error: Cannot access attribute "getPowerConsumptionUnit" for class "Device" +   Attribute "getPowerConsumptionUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:644:38 - error: Cannot access attribute "getPowerConsumptionThisWeek" for class "Device" +   Attribute "getPowerConsumptionThisWeek" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:645:37 - error: Cannot access attribute "getPowerConsumptionUnit" for class "Device" +   Attribute "getPowerConsumptionUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:654:38 - error: Cannot access attribute "getPowerConsumptionThisMonth" for class "Device" +   Attribute "getPowerConsumptionThisMonth" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:655:37 - error: Cannot access attribute "getPowerConsumptionUnit" for class "Device" +   Attribute "getPowerConsumptionUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:664:38 - error: Cannot access attribute "getPowerConsumptionThisYear" for class "Device" +   Attribute "getPowerConsumptionThisYear" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:665:37 - error: Cannot access attribute "getPowerConsumptionUnit" for class "Device" +   Attribute "getPowerConsumptionUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:674:38 - error: Cannot access attribute "getBufferTopTemperature" for class "Device" +   Attribute "getBufferTopTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:684:38 - error: Cannot access attribute "getBufferMidTopTemperature" for class "Device" +   Attribute "getBufferMidTopTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:692:38 - error: Cannot access attribute "getBufferMiddleTemperature" for class "Device" +   Attribute "getBufferMiddleTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:700:38 - error: Cannot access attribute "getBufferMidBottomTemperature" for class "Device" +   Attribute "getBufferMidBottomTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:708:38 - error: Cannot access attribute "getBufferBottomTemperature" for class "Device" +   Attribute "getBufferBottomTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:714:38 - error: Cannot access attribute "getBufferMainTemperature" for class "Device" +   Attribute "getBufferMainTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:722:38 - error: Cannot access attribute "getVolumetricFlowReturn" for class "Device" +   Attribute "getVolumetricFlowReturn" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:732:38 - error: Cannot access attribute "getElectricalEnergySystemSOC" for class "Device" +   Attribute "getElectricalEnergySystemSOC" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:733:37 - error: Cannot access attribute "getElectricalEnergySystemSOCUnit" for class "Device" +   Attribute "getElectricalEnergySystemSOCUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:740:38 - error: Cannot access attribute "getElectricalEnergySystemPower" for class "Device" +   Attribute "getElectricalEnergySystemPower" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:741:37 - error: Cannot access attribute "getElectricalEnergySystemPowerUnit" for class "Device" +   Attribute "getElectricalEnergySystemPowerUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:748:38 - error: Cannot access attribute "getElectricalEnergySystemOperationState" for class "Device" +   Attribute "getElectricalEnergySystemOperationState" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:754:38 - error: Cannot access attribute "getElectricalEnergySystemTransferChargeCumulatedLifeCycle" for class "Device" +   Attribute "getElectricalEnergySystemTransferChargeCumulatedLifeCycle" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:755:37 - error: Cannot access attribute "getElectricalEnergySystemTransferChargeCumulatedUnit" for class "Device" +   Attribute "getElectricalEnergySystemTransferChargeCumulatedUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:761:38 - error: Cannot access attribute "getElectricalEnergySystemTransferDischargeCumulatedCurrentDay" for class "Device" +   Attribute "getElectricalEnergySystemTransferDischargeCumulatedCurrentDay" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:762:37 - error: Cannot access attribute "getElectricalEnergySystemTransferDischargeCumulatedUnit" for class "Device" +   Attribute "getElectricalEnergySystemTransferDischargeCumulatedUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:768:38 - error: Cannot access attribute "getElectricalEnergySystemTransferDischargeCumulatedCurrentWeek" for class "Device" +   Attribute "getElectricalEnergySystemTransferDischargeCumulatedCurrentWeek" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:769:37 - error: Cannot access attribute "getElectricalEnergySystemTransferDischargeCumulatedUnit" for class "Device" +   Attribute "getElectricalEnergySystemTransferDischargeCumulatedUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:776:38 - error: Cannot access attribute "getElectricalEnergySystemTransferDischargeCumulatedCurrentMonth" for class "Device" +   Attribute "getElectricalEnergySystemTransferDischargeCumulatedCurrentMonth" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:777:37 - error: Cannot access attribute "getElectricalEnergySystemTransferDischargeCumulatedUnit" for class "Device" +   Attribute "getElectricalEnergySystemTransferDischargeCumulatedUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:784:38 - error: Cannot access attribute "getElectricalEnergySystemTransferDischargeCumulatedCurrentYear" for class "Device" +   Attribute "getElectricalEnergySystemTransferDischargeCumulatedCurrentYear" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:785:37 - error: Cannot access attribute "getElectricalEnergySystemTransferDischargeCumulatedUnit" for class "Device" +   Attribute "getElectricalEnergySystemTransferDischargeCumulatedUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:792:38 - error: Cannot access attribute "getElectricalEnergySystemTransferDischargeCumulatedLifeCycle" for class "Device" +   Attribute "getElectricalEnergySystemTransferDischargeCumulatedLifeCycle" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:793:37 - error: Cannot access attribute "getElectricalEnergySystemTransferDischargeCumulatedUnit" for class "Device" +   Attribute "getElectricalEnergySystemTransferDischargeCumulatedUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:801:38 - error: Cannot access attribute "getPointOfCommonCouplingTransferPowerExchange" for class "Device" +   Attribute "getPointOfCommonCouplingTransferPowerExchange" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:808:38 - error: Cannot access attribute "getPointOfCommonCouplingTransferConsumptionTotal" for class "Device" +   Attribute "getPointOfCommonCouplingTransferConsumptionTotal" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:809:37 - error: Cannot access attribute "getPointOfCommonCouplingTransferConsumptionTotalUnit" for class "Device" +   Attribute "getPointOfCommonCouplingTransferConsumptionTotalUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:816:38 - error: Cannot access attribute "getPointOfCommonCouplingTransferFeedInTotal" for class "Device" +   Attribute "getPointOfCommonCouplingTransferFeedInTotal" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:817:37 - error: Cannot access attribute "getPointOfCommonCouplingTransferFeedInTotalUnit" for class "Device" +   Attribute "getPointOfCommonCouplingTransferFeedInTotalUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:824:38 - error: Cannot access attribute "getPhotovoltaicProductionCurrent" for class "Device" +   Attribute "getPhotovoltaicProductionCurrent" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:825:37 - error: Cannot access attribute "getPhotovoltaicProductionCurrentUnit" for class "Device" +   Attribute "getPhotovoltaicProductionCurrentUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:833:38 - error: Cannot access attribute "getPhotovoltaicProductionCumulatedCurrentDay" for class "Device" +   Attribute "getPhotovoltaicProductionCumulatedCurrentDay" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:834:37 - error: Cannot access attribute "getPhotovoltaicProductionCumulatedUnit" for class "Device" +   Attribute "getPhotovoltaicProductionCumulatedUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:842:38 - error: Cannot access attribute "getPhotovoltaicProductionCumulatedCurrentWeek" for class "Device" +   Attribute "getPhotovoltaicProductionCumulatedCurrentWeek" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:843:37 - error: Cannot access attribute "getPhotovoltaicProductionCumulatedUnit" for class "Device" +   Attribute "getPhotovoltaicProductionCumulatedUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:852:38 - error: Cannot access attribute "getPhotovoltaicProductionCumulatedCurrentMonth" for class "Device" +   Attribute "getPhotovoltaicProductionCumulatedCurrentMonth" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:853:37 - error: Cannot access attribute "getPhotovoltaicProductionCumulatedUnit" for class "Device" +   Attribute "getPhotovoltaicProductionCumulatedUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:862:38 - error: Cannot access attribute "getPhotovoltaicProductionCumulatedCurrentYear" for class "Device" +   Attribute "getPhotovoltaicProductionCumulatedCurrentYear" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:863:37 - error: Cannot access attribute "getPhotovoltaicProductionCumulatedUnit" for class "Device" +   Attribute "getPhotovoltaicProductionCumulatedUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:872:38 - error: Cannot access attribute "getPhotovoltaicProductionCumulatedLifeCycle" for class "Device" +   Attribute "getPhotovoltaicProductionCumulatedLifeCycle" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:873:37 - error: Cannot access attribute "getPhotovoltaicProductionCumulatedUnit" for class "Device" +   Attribute "getPhotovoltaicProductionCumulatedUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:880:51 - error: Cannot access attribute "getPhotovoltaicStatus" for class "Device" +   Attribute "getPhotovoltaicStatus" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:887:38 - error: Cannot access attribute "getTemperature" for class "Device" +   Attribute "getTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:894:38 - error: Cannot access attribute "getHumidity" for class "Device" +   Attribute "getHumidity" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:899:51 - error: Cannot access attribute "getVentilationLevel" for class "Device" +   Attribute "getVentilationLevel" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:906:38 - error: Cannot access attribute "getVentilationReason" for class "Device" +   Attribute "getVentilationReason" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:926:38 - error: Cannot access attribute "getSupplyPressure" for class "Device" +   Attribute "getSupplyPressure" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:927:37 - error: Cannot access attribute "getSupplyPressureUnit" for class "Device" +   Attribute "getSupplyPressureUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:932:38 - error: Cannot access attribute "getHeatingRodStarts" for class "Device" +   Attribute "getHeatingRodStarts" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:940:38 - error: Cannot access attribute "getHeatingRodHours" for class "Device" +   Attribute "getHeatingRodHours" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:949:38 - error: Cannot access attribute "getSeasonalPerformanceFactorTotal" for class "Device" +   Attribute "getSeasonalPerformanceFactorTotal" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:956:38 - error: Cannot access attribute "getSeasonalPerformanceFactorDHW" for class "Device" +   Attribute "getSeasonalPerformanceFactorDHW" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:963:38 - error: Cannot access attribute "getSeasonalPerformanceFactorHeating" for class "Device" +   Attribute "getSeasonalPerformanceFactorHeating" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:971:38 - error: Cannot access attribute "getBatteryLevel" for class "Device" +   Attribute "getBatteryLevel" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:979:38 - error: Cannot access attribute "getZigbeeSignalStrength" for class "Device" +   Attribute "getZigbeeSignalStrength" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:987:38 - error: Cannot access attribute "getValvePosition" for class "Device" +   Attribute "getValvePosition" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:996:38 - error: Cannot access attribute "getFuelNeed" for class "Device" +   Attribute "getFuelNeed" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:997:37 - error: Cannot access attribute "getFuelUnit" for class "Device" +   Attribute "getFuelUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1006:38 - error: Cannot access attribute "getHydraulicSeparatorTemperature" for class "Device" +   Attribute "getHydraulicSeparatorTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1015:38 - error: Cannot access attribute "getSupplyHumidity" for class "Device" +   Attribute "getSupplyHumidity" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1021:38 - error: Cannot access attribute "getSupplyFanHours" for class "Device" +   Attribute "getSupplyFanHours" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1030:38 - error: Cannot access attribute "getSupplyFanSpeed" for class "Device" +   Attribute "getSupplyFanSpeed" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1039:38 - error: Cannot access attribute "getFilterHours" for class "Device" +   Attribute "getFilterHours" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1048:38 - error: Cannot access attribute "getFilterRemainingHours" for class "Device" +   Attribute "getFilterRemainingHours" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1057:38 - error: Cannot access attribute "getFilterOverdueHours" for class "Device" +   Attribute "getFilterOverdueHours" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1067:38 - error: Cannot access attribute "getAirborneDustPM1" for class "Device" +   Attribute "getAirborneDustPM1" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1074:38 - error: Cannot access attribute "getAirborneDustPM2d5" for class "Device" +   Attribute "getAirborneDustPM2d5" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1081:38 - error: Cannot access attribute "getAirborneDustPM4" for class "Device" +   Attribute "getAirborneDustPM4" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1088:38 - error: Cannot access attribute "getAirborneDustPM10" for class "Device" +   Attribute "getAirborneDustPM10" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1094:38 - error: Cannot access attribute "getSupplyVolumeFlow" for class "Device" +   Attribute "getSupplyVolumeFlow" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1101:38 - error: Cannot access attribute "getExhaustVolumeFlow" for class "Device" +   Attribute "getExhaustVolumeFlow" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1114:38 - error: Cannot access attribute "getStarts" for class "Device" +   Attribute "getStarts" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1122:38 - error: Cannot access attribute "getHours" for class "Device" +   Attribute "getHours" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1130:38 - error: Cannot access attribute "getModulation" for class "Device" +   Attribute "getModulation" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1139:38 - error: Cannot access attribute "getStarts" for class "Device" +   Attribute "getStarts" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1147:38 - error: Cannot access attribute "getHours" for class "Device" +   Attribute "getHours" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1155:38 - error: Cannot access attribute "getHoursLoadClass1" for class "Device" +   Attribute "getHoursLoadClass1" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1164:38 - error: Cannot access attribute "getHoursLoadClass2" for class "Device" +   Attribute "getHoursLoadClass2" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1173:38 - error: Cannot access attribute "getHoursLoadClass3" for class "Device" +   Attribute "getHoursLoadClass3" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1182:38 - error: Cannot access attribute "getHoursLoadClass4" for class "Device" +   Attribute "getHoursLoadClass4" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1191:38 - error: Cannot access attribute "getHoursLoadClass5" for class "Device" +   Attribute "getHoursLoadClass5" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1199:54 - error: Cannot access attribute "getPhase" for class "Device" +   Attribute "getPhase" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1207:38 - error: Cannot access attribute "getCompressorInletTemperature" for class "Device" +   Attribute "getCompressorInletTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1208:37 - error: Cannot access attribute "getCompressorInletTemperatureUnit" for class "Device" +   Attribute "getCompressorInletTemperatureUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1216:38 - error: Cannot access attribute "getCompressorOutletTemperature" for class "Device" +   Attribute "getCompressorOutletTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1217:37 - error: Cannot access attribute "getCompressorOutletTemperatureUnit" for class "Device" +   Attribute "getCompressorOutletTemperatureUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1225:38 - error: Cannot access attribute "getCompressorInletPressure" for class "Device" +   Attribute "getCompressorInletPressure" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1226:37 - error: Cannot access attribute "getCompressorInletPressureUnit" for class "Device" +   Attribute "getCompressorInletPressureUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1234:38 - error: Cannot access attribute "getCompressorOutletPressure" for class "Device" +   Attribute "getCompressorOutletPressure" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1235:37 - error: Cannot access attribute "getCompressorOutletPressureUnit" for class "Device" +   Attribute "getCompressorOutletPressureUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1246:38 - error: Cannot access attribute "getCondensorLiquidTemperature" for class "Device" +   Attribute "getCondensorLiquidTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1247:37 - error: Cannot access attribute "getCondensorLiquidTemperatureUnit" for class "Device" +   Attribute "getCondensorLiquidTemperatureUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1255:38 - error: Cannot access attribute "getCondensorSubcoolingTemperature" for class "Device" +   Attribute "getCondensorSubcoolingTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1256:37 - error: Cannot access attribute "getCondensorSubcoolingTemperatureUnit" for class "Device" +   Attribute "getCondensorSubcoolingTemperatureUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1267:38 - error: Cannot access attribute "getEvaporatorOverheatTemperature" for class "Device" +   Attribute "getEvaporatorOverheatTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1268:37 - error: Cannot access attribute "getEvaporatorOverheatTemperatureUnit" for class "Device" +   Attribute "getEvaporatorOverheatTemperatureUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1276:38 - error: Cannot access attribute "getEvaporatorLiquidTemperature" for class "Device" +   Attribute "getEvaporatorLiquidTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1277:37 - error: Cannot access attribute "getEvaporatorLiquidTemperatureUnit" for class "Device" +   Attribute "getEvaporatorLiquidTemperatureUnit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/sensor.py:1357:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ViCareSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vicare/sensor.py:1357:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ViCareSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vicare/sensor.py:1360:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/vicare/sensor.py:1370:21 - error: Argument of type "Device | HeatingDeviceWithComponent" cannot be assigned to parameter of type "Device" +   Type "Device | HeatingDeviceWithComponent" is not assignable to type "Device" +     "HeatingDeviceWithComponent" is not assignable to "Device" (reportArgumentType) + /homeassistant/components/vicare/sensor.py:1374:71 - error: Argument of type "Device | HeatingDeviceWithComponent" cannot be assigned to parameter of type "Device" +   Type "Device | HeatingDeviceWithComponent" is not assignable to type "Device" +     "HeatingDeviceWithComponent" is not assignable to "Device" (reportArgumentType) +/homeassistant/components/vicare/utils.py + /homeassistant/components/vicare/utils.py:103:23 - error: Cannot access attribute "burners" for class "Device" +   Attribute "burners" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/utils.py:114:23 - error: Cannot access attribute "circuits" for class "Device" +   Attribute "circuits" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/utils.py:125:23 - error: Cannot access attribute "compressors" for class "Device" +   Attribute "compressors" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/utils.py:136:23 - error: Cannot access attribute "condensors" for class "Device" +   Attribute "condensors" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/utils.py:147:23 - error: Cannot access attribute "evaporators" for class "Device" +   Attribute "evaporators" is unknown (reportAttributeAccessIssue) +/homeassistant/components/vicare/water_heater.py + /homeassistant/components/vicare/water_heater.py:73:13 - error: Argument of type "HeatingDeviceWithComponent" cannot be assigned to parameter "circuit" of type "HeatingCircuit" in function "__init__" +   "HeatingDeviceWithComponent" is not assignable to "HeatingCircuit" (reportArgumentType) + /homeassistant/components/vicare/water_heater.py:123:31 - error: Cannot access attribute "getDomesticHotWaterStorageTemperature" for class "Device" +   Attribute "getDomesticHotWaterStorageTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/water_heater.py:123:31 - error: Cannot access attribute "getDomesticHotWaterStorageTemperature" for class "HeatingDeviceWithComponent" +   Attribute "getDomesticHotWaterStorageTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/water_heater.py:128:31 - error: Cannot access attribute "getDomesticHotWaterDesiredTemperature" for class "Device" +   Attribute "getDomesticHotWaterDesiredTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/water_heater.py:128:31 - error: Cannot access attribute "getDomesticHotWaterDesiredTemperature" for class "HeatingDeviceWithComponent" +   Attribute "getDomesticHotWaterDesiredTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/water_heater.py:146:23 - error: Cannot access attribute "setDomesticHotWaterTemperature" for class "Device" +   Attribute "setDomesticHotWaterTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/water_heater.py:146:23 - error: Cannot access attribute "setDomesticHotWaterTemperature" for class "HeatingDeviceWithComponent" +   Attribute "setDomesticHotWaterTemperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vicare/water_heater.py:150:9 - error: "current_operation" overrides symbol of same name in class "WaterHeaterEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/victron_remote_monitoring/coordinator.py + /homeassistant/components/victron_remote_monitoring/coordinator.py:57:15 - error: Argument of type "Literal['solar_yield']" cannot be assigned to parameter "key" of type "Literal['records', 'totals']" in function "__getitem__" +   Type "Literal['solar_yield']" is not assignable to type "Literal['records', 'totals']" +     "Literal['solar_yield']" is not assignable to type "Literal['records']" +     "Literal['solar_yield']" is not assignable to type "Literal['totals']" (reportArgumentType) + /homeassistant/components/victron_remote_monitoring/coordinator.py:57:15 - error: Argument of type "dict[Unknown, Unknown] | ForecastAggregations | None" cannot be assigned to parameter "solar" of type "ForecastAggregations | None" in function "__init__" +   Type "dict[Unknown, Unknown] | ForecastAggregations | None" is not assignable to type "ForecastAggregations | None" +     Type "dict[Unknown, Unknown]" is not assignable to type "ForecastAggregations | None" +       "dict[Unknown, Unknown]" is not assignable to "ForecastAggregations" +       "dict[Unknown, Unknown]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/victron_remote_monitoring/coordinator.py:58:21 - error: Argument of type "Literal['consumption']" cannot be assigned to parameter "key" of type "Literal['records', 'totals']" in function "__getitem__" +   Type "Literal['consumption']" is not assignable to type "Literal['records', 'totals']" +     "Literal['consumption']" is not assignable to type "Literal['records']" +     "Literal['consumption']" is not assignable to type "Literal['totals']" (reportArgumentType) + /homeassistant/components/victron_remote_monitoring/coordinator.py:58:21 - error: Argument of type "dict[Unknown, Unknown] | ForecastAggregations | None" cannot be assigned to parameter "consumption" of type "ForecastAggregations | None" in function "__init__" +   Type "dict[Unknown, Unknown] | ForecastAggregations | None" is not assignable to type "ForecastAggregations | None" +     Type "dict[Unknown, Unknown]" is not assignable to type "ForecastAggregations | None" +       "dict[Unknown, Unknown]" is not assignable to "ForecastAggregations" +       "dict[Unknown, Unknown]" is not assignable to "None" (reportArgumentType) +/homeassistant/components/victron_remote_monitoring/sensor.py + /homeassistant/components/victron_remote_monitoring/sensor.py:261:7 - error: Base classes for class "VRMForecastsSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/victron_remote_monitoring/sensor.py:279:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "VRMForecastsSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/victron_remote_monitoring/sensor.py:279:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "VRMForecastsSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/victron_remote_monitoring/sensor.py:292:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/vilfo/sensor.py + /homeassistant/components/vilfo/sensor.py:72:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "VilfoSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vilfo/sensor.py:84:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/vivotek/camera.py + /homeassistant/components/vivotek/camera.py:5:6 - error: Import "libpyvivotek" could not be resolved (reportMissingImports) +/homeassistant/components/vizio/config_flow.py + /homeassistant/components/vizio/config_flow.py:232:45 - error: Could not access item in TypedDict +   "source" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/vizio/config_flow.py:244:25 - error: Argument of type "Any | None" cannot be assigned to parameter "auth_token" of type "str" in function "validate_ha_config" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/vizio/config_flow.py:343:17 - error: Argument of type "str | None" cannot be assigned to parameter "ch_type" of type "int | str" in function "pair" +   Type "str | None" is not assignable to type "int | str" +     Type "None" is not assignable to type "int | str" +       "None" is not assignable to "int" +       "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/vizio/config_flow.py:343:32 - error: Argument of type "str | None" cannot be assigned to parameter "token" of type "int | str" in function "pair" +   Type "str | None" is not assignable to type "int | str" +     Type "None" is not assignable to type "int | str" +       "None" is not assignable to "int" +       "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/vizio/media_player.py + /homeassistant/components/vizio/media_player.py:242:48 - error: Cannot access attribute "lower" for class "int" +   Attribute "lower" is unknown (reportAttributeAccessIssue) + /homeassistant/components/vizio/media_player.py:251:41 - error: Cannot assign to attribute "_attr_sound_mode" for class "VizioDevice*" +   Type "int | str" is not assignable to type "str | None" +     Type "int" is not assignable to type "str | None" +       "int" is not assignable to "str" +       "int" is not assignable to "None" (reportAttributeAccessIssue) + /homeassistant/components/vizio/media_player.py:253:50 - error: Cannot assign to attribute "_attr_sound_mode_list" for class "VizioDevice*" +   Type "List[str] | Dict[str, int | str] | None" is not assignable to type "list[str] | None" +     Type "Dict[str, int | str]" is not assignable to type "list[str] | None" +       "Dict[str, int | str]" is not assignable to "list[str]" +       "Dict[str, int | str]" is not assignable to "None" (reportAttributeAccessIssue) + /homeassistant/components/vizio/media_player.py:363:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vizio/media_player.py:371:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vizio/media_player.py:393:9 - error: "app_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/vizio/media_player.py:454:25 - error: Argument of type "list[dict[str, Any]] | None" cannot be assigned to parameter "apps_list" of type "List[Dict[str, str | List[str | Dict[str, Any]]]]" in function "launch_app" +   Type "list[dict[str, Any]] | None" is not assignable to type "List[Dict[str, str | List[str | Dict[str, Any]]]]" +     "None" is not assignable to "List[Dict[str, str | List[str | Dict[str, Any]]]]" (reportArgumentType) +/homeassistant/components/vlc/media_player.py + /homeassistant/components/vlc/media_player.py:76:26 - error: "State" is not a known attribute of module "vlc" (reportAttributeAccessIssue) + /homeassistant/components/vlc/media_player.py:78:28 - error: "State" is not a known attribute of module "vlc" (reportAttributeAccessIssue) +/homeassistant/components/vlc_telnet/media_player.py + /homeassistant/components/vlc_telnet/media_player.py:96:5 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   Variable is mutable so its type is invariant +     Override type "int" is not the same as base type "cached_property" (reportIncompatibleVariableOverride) + /homeassistant/components/vlc_telnet/media_player.py:189:15 - error: Method "async_media_seek" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/vlc_telnet/media_player.py:194:15 - error: Method "async_mute_volume" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/vlc_telnet/media_player.py:206:15 - error: Method "async_set_volume_level" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/vlc_telnet/media_player.py:216:15 - error: Method "async_media_play" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/vlc_telnet/media_player.py:227:15 - error: Method "async_media_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/vlc_telnet/media_player.py:237:15 - error: Method "async_media_stop" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/vlc_telnet/media_player.py:243:15 - error: Method "async_play_media" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/vlc_telnet/media_player.py:263:15 - error: Method "async_media_previous_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/vlc_telnet/media_player.py:268:15 - error: Method "async_media_next_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/vlc_telnet/media_player.py:273:15 - error: Method "async_clear_playlist" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/vlc_telnet/media_player.py:278:15 - error: Method "async_set_shuffle" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/vodafone_station/button.py + /homeassistant/components/vodafone_station/button.py:99:7 - error: Base classes for class "VodafoneStationSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vodafone_station/button.py:114:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "VodafoneStationEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vodafone_station/button.py:114:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "VodafoneStationEntityDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/vodafone_station/device_tracker.py + /homeassistant/components/vodafone_station/device_tracker.py:68:7 - error: Base classes for class "VodafoneStationTracker" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vodafone_station/device_tracker.py:73:5 - error: "mac_address" overrides symbol of same name in class "ScannerEntity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "cached_property" (reportIncompatibleVariableOverride) + /homeassistant/components/vodafone_station/device_tracker.py:99:9 - error: "ip_address" overrides symbol of same name in class "ScannerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/vodafone_station/sensor.py + /homeassistant/components/vodafone_station/sensor.py:188:7 - error: Base classes for class "VodafoneStationSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/vodafone_station/sensor.py:203:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "VodafoneStationEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vodafone_station/sensor.py:203:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "VodafoneStationEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/vodafone_station/sensor.py:209:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/voip/assist_satellite.py + /homeassistant/components/voip/assist_satellite.py:126:14 - error: "_audio_queue" overrides symbol of same name in class "RtpDatagramProtocol" +   Variable is mutable so its type is invariant +     Override type "Queue[bytes | None]" is not the same as base type "Queue[bytes]" (reportIncompatibleVariableOverride) + /homeassistant/components/voip/assist_satellite.py:168:37 - error: Cannot assign to attribute "protocol" for class "VoIPDevice" +   Type "Self@VoipAssistSatellite" is not assignable to type "VoipDatagramProtocol | None" +     "VoipAssistSatellite*" is not assignable to "VoipDatagramProtocol" +     "VoipAssistSatellite*" is not assignable to "None" (reportAttributeAccessIssue) + /homeassistant/components/voip/assist_satellite.py:278:22 - error: Argument of type "int | None" cannot be assigned to parameter "rtp_port" of type "int" in function "outgoing_call" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/voip/assist_satellite.py:442:30 - error: Argument of type "CoroutineType[Any, Any, Unknown]" cannot be assigned to parameter "audio_stream" of type "AsyncIterable[bytes]" in function "async_accept_pipeline_from_satellite" +   "CoroutineType[Any, Any, Unknown]" is incompatible with protocol "AsyncIterable[bytes]" +     "__aiter__" is not present (reportArgumentType) +/homeassistant/components/voip/switch.py + /homeassistant/components/voip/switch.py:42:7 - error: Base classes for class "VoIPCallAllowedSwitch" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/voip/switch.py:42:7 - error: Base classes for class "VoIPCallAllowedSwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/voip/switch.py:42:7 - error: Base classes for class "VoIPCallAllowedSwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/voip/switch.py:42:7 - error: Base classes for class "VoIPCallAllowedSwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/voip/voip.py + /homeassistant/components/voip/voip.py:58:16 - error: Type "PreRecordMessageProtocol" is not assignable to return type "VoipDatagramProtocol" +   "PreRecordMessageProtocol" is not assignable to "VoipDatagramProtocol" (reportReturnType) + /homeassistant/components/voip/voip.py:68:14 - error: Cannot access attribute "_rtp_input" for class "VoipDatagramProtocol" +   Attribute "_rtp_input" is unknown (reportAttributeAccessIssue) + /homeassistant/components/voip/voip.py:69:14 - error: Cannot access attribute "_rtp_output" for class "VoipDatagramProtocol" +   Attribute "_rtp_output" is unknown (reportAttributeAccessIssue) + /homeassistant/components/voip/voip.py:71:14 - error: Cannot assign to attribute "rtcp_state" for class "VoipDatagramProtocol" +   Attribute "rtcp_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/voip/voip.py:72:17 - error: Cannot access attribute "rtcp_state" for class "VoipDatagramProtocol" +   Attribute "rtcp_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/voip/voip.py:74:18 - error: Cannot access attribute "rtcp_state" for class "VoipDatagramProtocol" +   Attribute "rtcp_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/voip/voip.py:74:53 - error: Cannot access attribute "disconnect" for class "VoipDatagramProtocol" +   Attribute "disconnect" is unknown (reportAttributeAccessIssue) + /homeassistant/components/voip/voip.py:91:36 - error: Argument of type "(call_info: CallInfo, rtcp_state: RtcpState) -> VoipDatagramProtocol" cannot be assigned to parameter "valid_protocol_factory" of type "CallProtocolFactory" in function "__init__" +   Type "(call_info: CallInfo, rtcp_state: RtcpState) -> VoipDatagramProtocol" is not assignable to type "CallProtocolFactory" +     Function return type "VoipDatagramProtocol" is incompatible with type "Protocol" +       "VoipDatagramProtocol" is not assignable to "Protocol" (reportArgumentType) + /homeassistant/components/voip/voip.py:94:38 - error: Argument of type "(call_info: CallInfo, rtcp_state: RtcpState) -> PreRecordMessageProtocol" cannot be assigned to parameter "invalid_protocol_factory" of type "CallProtocolFactory | None" in function "__init__" +   Type "(call_info: CallInfo, rtcp_state: RtcpState) -> PreRecordMessageProtocol" is not assignable to type "CallProtocolFactory | None" +     Type "(call_info: CallInfo, rtcp_state: RtcpState) -> PreRecordMessageProtocol" is not assignable to type "CallProtocolFactory" +       Function return type "PreRecordMessageProtocol" is incompatible with type "Protocol" +         "PreRecordMessageProtocol" is not assignable to "Protocol" +     "FunctionType" is not assignable to "None" (reportArgumentType) +/homeassistant/components/volkszaehler/sensor.py + /homeassistant/components/volkszaehler/sensor.py:8:26 - error: "Volkszaehler" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/volkszaehler/sensor.py:9:6 - error: Import "volkszaehler.exceptions" could not be resolved (reportMissingImports) + /homeassistant/components/volkszaehler/sensor.py:133:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/volumio/media_player.py + /homeassistant/components/volumio/media_player.py:96:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/volumio/media_player.py:107:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/volumio/media_player.py:112:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/volumio/media_player.py:117:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/volumio/media_player.py:122:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/volumio/media_player.py:133:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/volumio/media_player.py:138:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/volumio/media_player.py:146:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/volumio/media_player.py:151:9 - error: "shuffle" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/volumio/media_player.py:156:9 - error: "repeat" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[RepeatMode | str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/volvo/binary_sensor.py + /homeassistant/components/volvo/binary_sensor.py:378:7 - error: Base classes for class "VolvoBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/volvo/binary_sensor.py:381:5 - error: "entity_description" overrides symbol of same name in class "VolvoBaseEntity" +   Variable is mutable so its type is invariant +     Override type "VolvoBinarySensorDescription" is not the same as base type "VolvoEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/volvo/binary_sensor.py:381:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "VolvoBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/volvo/button.py + /homeassistant/components/volvo/button.py:89:5 - error: "entity_description" overrides symbol of same name in class "VolvoBaseEntity" +   Variable is mutable so its type is invariant +     Override type "VolvoButtonDescription" is not the same as base type "VolvoEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/volvo/button.py:89:5 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "VolvoButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/volvo/button.py:105:42 - error: "result" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/volvo/button.py:109:67 - error: "result" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/volvo/device_tracker.py + /homeassistant/components/volvo/device_tracker.py:49:7 - error: Base classes for class "VolvoDeviceTracker" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/volvo/device_tracker.py:52:5 - error: "entity_description" overrides symbol of same name in class "VolvoBaseEntity" +   Variable is mutable so its type is invariant +     Override type "VolvoTrackerDescription" is not the same as base type "VolvoEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/volvo/device_tracker.py:52:5 - error: "entity_description" overrides symbol of same name in class "TrackerEntity" +   Variable is mutable so its type is invariant +     Override type "VolvoTrackerDescription" is not the same as base type "TrackerEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/volvo/entity.py + /homeassistant/components/volvo/entity.py:46:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "VolvoEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/volvo/entity.py:80:36 - error: Argument of type "Self@VolvoEntity" cannot be assigned to parameter "self" of type "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" in function "__init__" +   "VolvoEntity*" is not assignable to "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" +     Type parameter "_DataUpdateCoordinatorT@CoordinatorEntity" is invariant, but "VolvoBaseCoordinator" is not the same as "DataUpdateCoordinator[dict[str, Any]]" (reportArgumentType) + /homeassistant/components/volvo/entity.py:93:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/volvo/lock.py + /homeassistant/components/volvo/lock.py:63:7 - error: Base classes for class "VolvoLock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/volvo/lock.py:66:5 - error: "entity_description" overrides symbol of same name in class "VolvoBaseEntity" +   Variable is mutable so its type is invariant +     Override type "VolvoLockDescription" is not the same as base type "VolvoEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/volvo/lock.py:66:5 - error: "entity_description" overrides symbol of same name in class "LockEntity" +   Variable is mutable so its type is invariant +     Override type "VolvoLockDescription" is not the same as base type "LockEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/volvo/sensor.py + /homeassistant/components/volvo/sensor.py:412:7 - error: Base classes for class "VolvoSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/volvo/sensor.py:415:5 - error: "entity_description" overrides symbol of same name in class "VolvoBaseEntity" +   Variable is mutable so its type is invariant +     Override type "VolvoSensorDescription" is not the same as base type "VolvoEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/volvo/sensor.py:415:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "VolvoSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/w800rf32/__init__.py + /homeassistant/components/w800rf32/__init__.py:6:8 - error: Import "W800rf32" could not be resolved (reportMissingImports) +/homeassistant/components/w800rf32/binary_sensor.py + /homeassistant/components/w800rf32/binary_sensor.py:8:8 - error: Import "W800rf32" could not be resolved (reportMissingImports) + /homeassistant/components/w800rf32/binary_sensor.py:96:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/w800rf32/binary_sensor.py:101:9 - error: "device_class" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[BinarySensorDeviceClass | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/w800rf32/binary_sensor.py:106:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wake_on_lan/switch.py + /homeassistant/components/wake_on_lan/switch.py:103:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wake_word/__init__.py + /homeassistant/components/wake_word/__init__.py:89:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/wallbox/entity.py + /homeassistant/components/wallbox/entity.py:26:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wallbox/lock.py + /homeassistant/components/wallbox/lock.py:45:7 - error: Base classes for class "WallboxLock" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/lock.py:45:7 - error: Base classes for class "WallboxLock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/lock.py:60:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wallbox/number.py + /homeassistant/components/wallbox/number.py:97:7 - error: Base classes for class "WallboxNumber" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/number.py:97:7 - error: Base classes for class "WallboxNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/number.py:110:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WallboxNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/number.py:110:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "WallboxNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/number.py:115:9 - error: "native_max_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/number.py:120:9 - error: "native_min_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/number.py:125:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wallbox/select.py + /homeassistant/components/wallbox/select.py:80:7 - error: Base classes for class "WallboxSelect" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/select.py:80:7 - error: Base classes for class "WallboxSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/select.py:92:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WallboxSelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/select.py:92:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "WallboxSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/select.py:96:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wallbox/sensor.py + /homeassistant/components/wallbox/sensor.py:188:7 - error: Base classes for class "WallboxSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/sensor.py:188:7 - error: Base classes for class "WallboxSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/sensor.py:200:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WallboxSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/sensor.py:200:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "WallboxSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/sensor.py:204:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/sensor.py:218:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wallbox/switch.py + /homeassistant/components/wallbox/switch.py:45:7 - error: Base classes for class "WallboxSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/switch.py:59:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/wallbox/switch.py:74:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/waqi/sensor.py + /homeassistant/components/waqi/sensor.py:144:7 - error: Base classes for class "WaqiSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/waqi/sensor.py:157:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WAQISensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/waqi/sensor.py:157:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "WAQISensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/waqi/sensor.py:169:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/water_heater/__init__.py + /homeassistant/components/water_heater/__init__.py:182:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WaterHeaterEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/water_heater/__init__.py:190:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) + /homeassistant/components/water_heater/__init__.py:191:5 - error: "_attr_supported_features" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WaterHeaterEntityFeature" is not the same as base type "int | None" (reportIncompatibleVariableOverride) + /homeassistant/components/water_heater/__init__.py:200:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/water_heater/__init__.py:214:9 - error: "capability_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/water_heater/__init__.py:234:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/water_heater/__init__.py:413:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/water_heater/__init__.py:451:1 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) +/homeassistant/components/water_heater/device_action.py + /homeassistant/components/water_heater/device_action.py:78:17 - error: "service" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/waterfurnace/__init__.py + /homeassistant/components/waterfurnace/__init__.py:9:6 - error: Import "waterfurnace.waterfurnace" could not be resolved (reportMissingImports) +/homeassistant/components/watergate/__init__.py + /homeassistant/components/watergate/__init__.py:107:55 - error: Cannot access attribute "state" for class "AutoShutOffReportData" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:107:55 - error: Cannot access attribute "state" for class "TelemetryEventData" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:107:55 - error: Cannot access attribute "state" for class "PowerSupplyChangedEventData" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:107:55 - error: Cannot access attribute "state" for class "WifiChangedEventData" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:107:55 - error: Cannot access attribute "state" for class "OnlineEvent" +   Attribute "state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:109:27 - error: Cannot access attribute "errors" for class "AutoShutOffReportData" +   Attribute "errors" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:109:27 - error: Cannot access attribute "errors" for class "ValveEventData" +   Attribute "errors" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:109:27 - error: Cannot access attribute "errors" for class "PowerSupplyChangedEventData" +   Attribute "errors" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:109:27 - error: Cannot access attribute "errors" for class "WifiChangedEventData" +   Attribute "errors" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:109:27 - error: Cannot access attribute "errors" for class "OnlineEvent" +   Attribute "errors" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:110:40 - error: Cannot assign to attribute "flow" for class "TelemetryData" +   Expression of type "Unknown | int | None" cannot be assigned to attribute "flow" of class "TelemetryData" +     Type "Unknown | int | None" is not assignable to type "float" +       "None" is not assignable to "float" (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:111:22 - error: Cannot access attribute "flow" for class "AutoShutOffReportData" +   Attribute "flow" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:111:22 - error: Cannot access attribute "flow" for class "ValveEventData" +   Attribute "flow" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:111:22 - error: Cannot access attribute "flow" for class "PowerSupplyChangedEventData" +   Attribute "flow" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:111:22 - error: Cannot access attribute "flow" for class "WifiChangedEventData" +   Attribute "flow" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:111:22 - error: Cannot access attribute "flow" for class "OnlineEvent" +   Attribute "flow" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:113:40 - error: Cannot assign to attribute "pressure" for class "TelemetryData" +   Expression of type "Unknown | int | None" cannot be assigned to attribute "pressure" of class "TelemetryData" +     Type "Unknown | int | None" is not assignable to type "float" +       "None" is not assignable to "float" (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:114:22 - error: Cannot access attribute "pressure" for class "AutoShutOffReportData" +   Attribute "pressure" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:114:22 - error: Cannot access attribute "pressure" for class "ValveEventData" +   Attribute "pressure" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:114:22 - error: Cannot access attribute "pressure" for class "PowerSupplyChangedEventData" +   Attribute "pressure" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:114:22 - error: Cannot access attribute "pressure" for class "WifiChangedEventData" +   Attribute "pressure" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:114:22 - error: Cannot access attribute "pressure" for class "OnlineEvent" +   Attribute "pressure" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:116:40 - error: Cannot assign to attribute "water_temperature" for class "TelemetryData" +   Expression of type "Unknown | float | None" cannot be assigned to attribute "water_temperature" of class "TelemetryData" +     Type "Unknown | float | None" is not assignable to type "float" +       "None" is not assignable to "float" (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:117:22 - error: Cannot access attribute "temperature" for class "AutoShutOffReportData" +   Attribute "temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:117:22 - error: Cannot access attribute "temperature" for class "ValveEventData" +   Attribute "temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:117:22 - error: Cannot access attribute "temperature" for class "PowerSupplyChangedEventData" +   Attribute "temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:117:22 - error: Cannot access attribute "temperature" for class "WifiChangedEventData" +   Attribute "temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:117:22 - error: Cannot access attribute "temperature" for class "OnlineEvent" +   Attribute "temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:120:51 - error: Cannot access attribute "ip" for class "AutoShutOffReportData" +   Attribute "ip" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:120:51 - error: Cannot access attribute "ip" for class "TelemetryEventData" +   Attribute "ip" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:120:51 - error: Cannot access attribute "ip" for class "ValveEventData" +   Attribute "ip" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:120:51 - error: Cannot access attribute "ip" for class "PowerSupplyChangedEventData" +   Attribute "ip" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:120:51 - error: Cannot access attribute "ip" for class "OnlineEvent" +   Attribute "ip" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:121:56 - error: Cannot access attribute "gateway" for class "AutoShutOffReportData" +   Attribute "gateway" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:121:56 - error: Cannot access attribute "gateway" for class "TelemetryEventData" +   Attribute "gateway" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:121:56 - error: Cannot access attribute "gateway" for class "ValveEventData" +   Attribute "gateway" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:121:56 - error: Cannot access attribute "gateway" for class "PowerSupplyChangedEventData" +   Attribute "gateway" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:121:56 - error: Cannot access attribute "gateway" for class "OnlineEvent" +   Attribute "gateway" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:122:55 - error: Cannot access attribute "subnet" for class "AutoShutOffReportData" +   Attribute "subnet" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:122:55 - error: Cannot access attribute "subnet" for class "TelemetryEventData" +   Attribute "subnet" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:122:55 - error: Cannot access attribute "subnet" for class "ValveEventData" +   Attribute "subnet" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:122:55 - error: Cannot access attribute "subnet" for class "PowerSupplyChangedEventData" +   Attribute "subnet" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:122:55 - error: Cannot access attribute "subnet" for class "OnlineEvent" +   Attribute "subnet" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:123:53 - error: Cannot access attribute "ssid" for class "AutoShutOffReportData" +   Attribute "ssid" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:123:53 - error: Cannot access attribute "ssid" for class "TelemetryEventData" +   Attribute "ssid" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:123:53 - error: Cannot access attribute "ssid" for class "ValveEventData" +   Attribute "ssid" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:123:53 - error: Cannot access attribute "ssid" for class "PowerSupplyChangedEventData" +   Attribute "ssid" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:123:53 - error: Cannot access attribute "ssid" for class "OnlineEvent" +   Attribute "ssid" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:124:41 - error: Cannot assign to attribute "rssi" for class "NetworkingData" +   Expression of type "Unknown | int" cannot be assigned to attribute "rssi" of class "NetworkingData" +     Type "Unknown | int" is not assignable to type "str" +       "int" is not assignable to "str" (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:124:53 - error: Cannot access attribute "rssi" for class "AutoShutOffReportData" +   Attribute "rssi" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:124:53 - error: Cannot access attribute "rssi" for class "TelemetryEventData" +   Attribute "rssi" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:124:53 - error: Cannot access attribute "rssi" for class "ValveEventData" +   Attribute "rssi" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:124:53 - error: Cannot access attribute "rssi" for class "PowerSupplyChangedEventData" +   Attribute "rssi" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:124:53 - error: Cannot access attribute "rssi" for class "OnlineEvent" +   Attribute "rssi" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:126:56 - error: Cannot access attribute "supply" for class "AutoShutOffReportData" +   Attribute "supply" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:126:56 - error: Cannot access attribute "supply" for class "TelemetryEventData" +   Attribute "supply" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:126:56 - error: Cannot access attribute "supply" for class "ValveEventData" +   Attribute "supply" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:126:56 - error: Cannot access attribute "supply" for class "WifiChangedEventData" +   Attribute "supply" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:126:56 - error: Cannot access attribute "supply" for class "OnlineEvent" +   Attribute "supply" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:129:60 - error: Cannot access attribute "type" for class "TelemetryEventData" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:129:60 - error: Cannot access attribute "type" for class "ValveEventData" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:129:60 - error: Cannot access attribute "type" for class "PowerSupplyChangedEventData" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /homeassistant/components/watergate/__init__.py:129:60 - error: Cannot access attribute "type" for class "WifiChangedEventData" +   Attribute "type" is unknown (reportAttributeAccessIssue) +/homeassistant/components/watergate/coordinator.py + /homeassistant/components/watergate/coordinator.py:59:43 - error: Argument of type "DeviceState | None" cannot be assigned to parameter "state" of type "DeviceState" in function "__init__" +   Type "DeviceState | None" is not assignable to type "DeviceState" +     "None" is not assignable to "DeviceState" (reportArgumentType) + /homeassistant/components/watergate/coordinator.py:59:50 - error: Argument of type "TelemetryData | None" cannot be assigned to parameter "telemetry" of type "TelemetryData" in function "__init__" +   Type "TelemetryData | None" is not assignable to type "TelemetryData" +     "None" is not assignable to "TelemetryData" (reportArgumentType) + /homeassistant/components/watergate/coordinator.py:59:61 - error: Argument of type "NetworkingData | None" cannot be assigned to parameter "networking" of type "NetworkingData" in function "__init__" +   Type "NetworkingData | None" is not assignable to type "NetworkingData" +     "None" is not assignable to "NetworkingData" (reportArgumentType) +/homeassistant/components/watergate/event.py + /homeassistant/components/watergate/event.py:49:7 - error: Base classes for class "AutoShutOffEvent" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/watergate/sensor.py + /homeassistant/components/watergate/sensor.py:96:56 - error: Argument of type "str" cannot be assigned to parameter "milliseconds" of type "float" in function "__new__" +   "str" is not assignable to "float" (reportArgumentType) + /homeassistant/components/watergate/sensor.py:110:56 - error: Argument of type "str" cannot be assigned to parameter "milliseconds" of type "float" in function "__new__" +   "str" is not assignable to "float" (reportArgumentType) + /homeassistant/components/watergate/sensor.py:208:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WatergateSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/watergate/sensor.py:208:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "WatergateSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/watergate/sensor.py:211:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/watergate/sensor.py:219:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/watergate/valve.py + /homeassistant/components/watergate/valve.py:88:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/watson_tts/tts.py + /homeassistant/components/watson_tts/tts.py:5:6 - error: Import "ibm_cloud_sdk_core.authenticators" could not be resolved (reportMissingImports) + /homeassistant/components/watson_tts/tts.py:6:6 - error: Import "ibm_watson" could not be resolved (reportMissingImports) +/homeassistant/components/watttime/sensor.py + /homeassistant/components/watttime/sensor.py:70:7 - error: Base classes for class "RealtimeEmissionsSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/watttime/sensor.py:93:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/watttime/sensor.py:113:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/waze_travel_time/coordinator.py + /homeassistant/components/waze_travel_time/coordinator.py:71:26 - error: Argument of type "str" cannot be assigned to parameter "vehicle_type" of type "Literal['TAXI', 'MOTORCYCLE'] | None" in function "calc_routes" +   Type "str" is not assignable to type "Literal['TAXI', 'MOTORCYCLE'] | None" +     "str" is not assignable to "None" +     "str" is not assignable to type "Literal['TAXI']" +     "str" is not assignable to type "Literal['MOTORCYCLE']" (reportArgumentType) +/homeassistant/components/waze_travel_time/helpers.py + /homeassistant/components/waze_travel_time/helpers.py:23:34 - error: Argument of type "str | None" cannot be assigned to parameter "start" of type "str" in function "calc_routes" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/waze_travel_time/helpers.py:23:51 - error: Argument of type "str | None" cannot be assigned to parameter "end" of type "str" in function "calc_routes" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/waze_travel_time/sensor.py + /homeassistant/components/waze_travel_time/sensor.py:37:7 - error: Base classes for class "WazeTravelTimeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/waze_travel_time/sensor.py:65:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/waze_travel_time/sensor.py:72:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/weather/__init__.py + /homeassistant/components/weather/__init__.py:286:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WeatherEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/weather/__init__.py:293:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) + /homeassistant/components/weather/__init__.py:560:9 - error: "state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[dict[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weather/__init__.py:879:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/weather/__init__.py:1033:7 - error: Base classes for class "CoordinatorWeatherEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/weather/intent.py + /homeassistant/components/weather/intent.py:23:5 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/components/weather/intent.py:23:19 - error: Type "dict[Optional, (value: Any) -> str]" is not assignable to declared type "property" (reportAssignmentType) +/homeassistant/components/weatherflow/event.py + /homeassistant/components/weatherflow/event.py:24:5 - error: "event_types" overrides a field of the same name but is missing a default value (reportGeneralTypeIssues) + /homeassistant/components/weatherflow/event.py:81:14 - error: "entity_description" overrides symbol of same name in class "EventEntity" +   Variable is mutable so its type is invariant +     Override type "WeatherFlowEventEntityDescription" is not the same as base type "EventEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/weatherflow/sensor.py + /homeassistant/components/weatherflow/sensor.py:80:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:88:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:97:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:106:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:115:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:124:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:131:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:140:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:146:26 - error: Argument of type "(raw_data: WeatherFlowDevice) -> WeatherFlowDevice" cannot be assigned to parameter "raw_data_conv_fn" of type "(WeatherFlowDevice) -> (StateType | datetime)" in function "__init__" +   Type "(raw_data: WeatherFlowDevice) -> WeatherFlowDevice" is not assignable to type "(WeatherFlowDevice) -> (StateType | datetime)" +     Function return type "WeatherFlowDevice" is incompatible with type "StateType | datetime" +       Type "WeatherFlowDevice" is not assignable to type "StateType | datetime" +         "WeatherFlowDevice" is not assignable to "datetime" +         "WeatherFlowDevice" is not assignable to "str" +         "WeatherFlowDevice" is not assignable to "int" +         "WeatherFlowDevice" is not assignable to "float" +         "WeatherFlowDevice" is not assignable to "None" (reportArgumentType) + /homeassistant/components/weatherflow/sensor.py:153:26 - error: Argument of type "(raw_data: Enum) -> (str | None)" cannot be assigned to parameter "raw_data_conv_fn" of type "(WeatherFlowDevice) -> (StateType | datetime)" in function "__init__" +   Type "(raw_data: Enum) -> (str | None)" is not assignable to type "(WeatherFlowDevice) -> (StateType | datetime)" +     Parameter 1: type "WeatherFlowDevice" is incompatible with type "Enum" +       "WeatherFlowDevice" is not assignable to "Enum" (reportArgumentType) + /homeassistant/components/weatherflow/sensor.py:161:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:168:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:175:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:185:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:195:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:202:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:211:26 - error: Argument of type "(raw_data: WeatherFlowDevice) -> WeatherFlowDevice" cannot be assigned to parameter "raw_data_conv_fn" of type "(WeatherFlowDevice) -> (StateType | datetime)" in function "__init__" +   Type "(raw_data: WeatherFlowDevice) -> WeatherFlowDevice" is not assignable to type "(WeatherFlowDevice) -> (StateType | datetime)" +     Function return type "WeatherFlowDevice" is incompatible with type "StateType | datetime" +       Type "WeatherFlowDevice" is not assignable to type "StateType | datetime" +         "WeatherFlowDevice" is not assignable to "datetime" +         "WeatherFlowDevice" is not assignable to "str" +         "WeatherFlowDevice" is not assignable to "int" +         "WeatherFlowDevice" is not assignable to "float" +         "WeatherFlowDevice" is not assignable to "None" (reportArgumentType) + /homeassistant/components/weatherflow/sensor.py:218:26 - error: Argument of type "(raw_data: WeatherFlowDevice) -> WeatherFlowDevice" cannot be assigned to parameter "raw_data_conv_fn" of type "(WeatherFlowDevice) -> (StateType | datetime)" in function "__init__" +   Type "(raw_data: WeatherFlowDevice) -> WeatherFlowDevice" is not assignable to type "(WeatherFlowDevice) -> (StateType | datetime)" +     Function return type "WeatherFlowDevice" is incompatible with type "StateType | datetime" +       Type "WeatherFlowDevice" is not assignable to type "StateType | datetime" +         "WeatherFlowDevice" is not assignable to "datetime" +         "WeatherFlowDevice" is not assignable to "str" +         "WeatherFlowDevice" is not assignable to "int" +         "WeatherFlowDevice" is not assignable to "float" +         "WeatherFlowDevice" is not assignable to "None" (reportArgumentType) + /homeassistant/components/weatherflow/sensor.py:228:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:238:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:247:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:256:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:265:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:274:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:281:52 - error: Cannot access attribute "magnitude" for class "WeatherFlowDevice" +   Attribute "magnitude" is unknown (reportAttributeAccessIssue) + /homeassistant/components/weatherflow/sensor.py:334:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "WeatherFlowSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherflow/sensor.py:353:9 - error: "last_reset" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherflow/sensor.py:356:32 - error: Cannot access attribute "last_report" for class "WeatherFlowDevice" +   Attribute "last_report" is unknown (reportAttributeAccessIssue) +/homeassistant/components/weatherflow_cloud/coordinator.py + /homeassistant/components/weatherflow_cloud/coordinator.py:137:22 - error: Argument of type "(data: Unknown) -> CoroutineType[Any, Any, None]" cannot be assigned to parameter "callback" of type "(str) -> None" in function "register_callback" +   Type "(data: Unknown) -> CoroutineType[Any, Any, None]" is not assignable to type "(str) -> None" +     Function return type "CoroutineType[Any, Any, None]" is incompatible with type "None" +       "CoroutineType[Any, Any, None]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/weatherflow_cloud/coordinator.py:143:51 - error: Argument of type "None" cannot be assigned to parameter "message_type" of type "WebsocketRequest" in function "send_message" +   "None" is not assignable to "WebsocketRequest" (reportArgumentType) + /homeassistant/components/weatherflow_cloud/coordinator.py:167:9 - error: Method "_create_listen_message" overrides class "BaseWebsocketCoordinator" in an incompatible manner +   Return type mismatch: base method returns type "None", override returns type "RapidWindListenStartMessage" +     "RapidWindListenStartMessage" is not assignable to "None" (reportIncompatibleMethodOverride) + /homeassistant/components/weatherflow_cloud/coordinator.py:177:9 - error: Argument of type "EventDataRapidWind | List[Unknown]" cannot be assigned to parameter "value" of type "EventDataRapidWind | None" in function "__setitem__" +   Type "EventDataRapidWind | List[Unknown]" is not assignable to type "EventDataRapidWind | None" +     Type "List[Unknown]" is not assignable to type "EventDataRapidWind | None" +       "List[Unknown]" is not assignable to "EventDataRapidWind" +       "List[Unknown]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/weatherflow_cloud/coordinator.py:186:9 - error: Method "_create_listen_message" overrides class "BaseWebsocketCoordinator" in an incompatible manner +   Return type mismatch: base method returns type "None", override returns type "ListenStartMessage" +     "ListenStartMessage" is not assignable to "None" (reportIncompatibleMethodOverride) +/homeassistant/components/weatherflow_cloud/sensor.py + /homeassistant/components/weatherflow_cloud/sensor.py:431:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherflow_cloud/sensor.py:453:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherflow_cloud/sensor.py:465:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherflow_cloud/sensor.py:483:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/weatherflow_cloud/weather.py + /homeassistant/components/weatherflow_cloud/weather.py:43:7 - error: Base classes of WeatherFlowWeatherREST are mutually incompatible +   Base class "SingleCoordinatorWeatherEntity[WeatherFlowCloudUpdateCoordinatorREST]" derives from "CoordinatorEntity[WeatherFlowCloudUpdateCoordinatorREST]" which is incompatible with type "CoordinatorEntity[BaseWeatherFlowCoordinator[Unknown]]" (reportGeneralTypeIssues) + /homeassistant/components/weatherflow_cloud/weather.py:73:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherflow_cloud/weather.py:78:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherflow_cloud/weather.py:83:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherflow_cloud/weather.py:88:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherflow_cloud/weather.py:93:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherflow_cloud/weather.py:98:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherflow_cloud/weather.py:103:9 - error: "native_wind_gust_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherflow_cloud/weather.py:108:9 - error: "native_dew_point" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherflow_cloud/weather.py:113:9 - error: "uv_index" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherflow_cloud/weather.py:120:16 - error: Type "list[dict[Unknown, Unknown]]" is not assignable to return type "list[Forecast] | None" (reportReturnType) + /homeassistant/components/weatherflow_cloud/weather.py:125:16 - error: Type "list[dict[Unknown, Unknown]]" is not assignable to return type "list[Forecast] | None" (reportReturnType) +/homeassistant/components/weatherkit/sensor.py + /homeassistant/components/weatherkit/sensor.py:51:7 - error: Base classes for class "WeatherKitSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/sensor.py:51:7 - error: Base classes for class "WeatherKitSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/sensor.py:51:7 - error: Base classes for class "WeatherKitSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/sensor.py:51:7 - error: Base classes for class "WeatherKitSensor" define variable "_attr_unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/sensor.py:51:7 - error: Base classes for class "WeatherKitSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/sensor.py:51:7 - error: Base classes for class "WeatherKitSensor" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/sensor.py:51:7 - error: Base classes for class "WeatherKitSensor" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/sensor.py:51:7 - error: Base classes for class "WeatherKitSensor" define variable "unit_of_measurement" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/sensor.py:51:7 - error: Base classes for class "WeatherKitSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/sensor.py:69:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/weatherkit/weather.py + /homeassistant/components/weatherkit/weather.py:127:7 - error: Base classes for class "WeatherKitWeather" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/weather.py:127:7 - error: Base classes for class "WeatherKitWeather" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/weather.py:127:7 - error: Base classes for class "WeatherKitWeather" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/weather.py:127:7 - error: Base classes for class "WeatherKitWeather" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/weather.py:127:7 - error: Base classes for class "WeatherKitWeather" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/weather.py:151:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/weather.py:175:9 - error: "condition" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/weather.py:186:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/weather.py:191:9 - error: "native_apparent_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/weather.py:196:9 - error: "native_dew_point" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/weather.py:201:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/weather.py:206:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/weather.py:211:9 - error: "cloud_coverage" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/weather.py:216:9 - error: "uv_index" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/weather.py:221:9 - error: "native_visibility" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/weather.py:226:9 - error: "native_wind_gust_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/weather.py:231:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/weatherkit/weather.py:236:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/webdav/backup.py + /homeassistant/components/webdav/backup.py:120:15 - error: Method "async_download_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, AsyncIterator[bytes]]", override returns type "Coroutine[Any, Any, AsyncIterator[bytes]]" +     "Coroutine[Any, Any, AsyncIterator[bytes]]" is not assignable to "CoroutineType[Any, Any, AsyncIterator[bytes]]" (reportIncompatibleMethodOverride) + /homeassistant/components/webdav/backup.py:138:15 - error: Method "async_upload_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/webdav/backup.py:178:15 - error: Method "async_delete_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/webdav/backup.py:204:15 - error: Method "async_list_backups" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, list[AgentBackup]]", override returns type "Coroutine[Any, Any, list[AgentBackup]]" +     "Coroutine[Any, Any, list[AgentBackup]]" is not assignable to "CoroutineType[Any, Any, list[AgentBackup]]" (reportIncompatibleMethodOverride) + /homeassistant/components/webdav/backup.py:209:15 - error: Method "async_get_backup" overrides class "BackupAgent" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, AgentBackup]", override returns type "Coroutine[Any, Any, AgentBackup]" +     "Coroutine[Any, Any, AgentBackup]" is not assignable to "CoroutineType[Any, Any, AgentBackup]" (reportIncompatibleMethodOverride) +/homeassistant/components/webmin/sensor.py + /homeassistant/components/webmin/sensor.py:224:7 - error: Base classes for class "WebminSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/webmin/sensor.py:236:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/webmin/sensor.py:241:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/webmin/sensor.py:246:7 - error: Base classes for class "WebminFSSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/webmin/sensor.py:260:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WebminFSSensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/webmin/sensor.py:260:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "WebminFSSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/webmin/sensor.py:268:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/webostv/config_flow.py + /homeassistant/components/webostv/config_flow.py:137:9 - error: Method "is_matching" overrides class "ConfigFlow" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "ConfigFlow", override parameter is type "FlowHandler" +     "ConfigFlow" is not assignable to "FlowHandler" (reportIncompatibleMethodOverride) +/homeassistant/components/webostv/media_player.py + /homeassistant/components/webostv/media_player.py:379:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/webostv/media_player.py:379:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/webostv/media_player.py:387:15 - error: Method "async_turn_off" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/webostv/media_player.py:396:15 - error: Method "async_volume_up" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/webostv/media_player.py:401:15 - error: Method "async_volume_down" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/webostv/media_player.py:406:15 - error: Method "async_set_volume_level" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/webostv/media_player.py:412:15 - error: Method "async_mute_volume" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/webostv/media_player.py:422:15 - error: Method "async_media_play_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/webostv/media_player.py:430:15 - error: Method "async_select_source" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/webostv/media_player.py:447:15 - error: Method "async_play_media" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/webostv/media_player.py:484:15 - error: Method "async_media_play" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/webostv/media_player.py:490:15 - error: Method "async_media_pause" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/webostv/media_player.py:496:15 - error: Method "async_media_stop" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/webostv/media_player.py:501:15 - error: Method "async_media_next_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/webostv/media_player.py:509:15 - error: Method "async_media_previous_track" overrides class "MediaPlayerEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/websocket_api/__init__.py + /homeassistant/components/websocket_api/__init__.py:67:5 - error: Argument of type "Any | str | WebSocketCommandHandler" cannot be assigned to parameter "key" of type "str" in function "__setitem__" +   Type "Any | str | WebSocketCommandHandler" is not assignable to type "str" +     "FunctionType" is not assignable to "str" (reportArgumentType) +/homeassistant/components/websocket_api/connection.py + /homeassistant/components/websocket_api/connection.py:282:31 - error: "humanize" is not a known attribute of module "voluptuous" (reportAttributeAccessIssue) +/homeassistant/components/websocket_api/http.py + /homeassistant/components/websocket_api/http.py:53:5 - error: "url" overrides symbol of same name in class "HomeAssistantView" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/websocket_api/http.py:117:36 - error: "isEnabledFor" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:148:24 - error: "debug" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:153:29 - error: "closed" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:216:26 - error: "error" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:243:17 - error: Argument of type "HomeAssistant | None" cannot be assigned to parameter "hass" of type "HomeAssistant" in function "async_call_later" +   Type "HomeAssistant | None" is not assignable to type "HomeAssistant" +     "None" is not assignable to "HomeAssistant" (reportArgumentType) + /homeassistant/components/websocket_api/http.py:280:22 - error: "error" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:317:29 - error: "prepare" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:320:20 - error: "debug" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:324:20 - error: Type "WebSocketResponse | None" is not assignable to return type "WebSocketResponse" +   Type "WebSocketResponse | None" is not assignable to type "WebSocketResponse" +     "None" is not assignable to "WebSocketResponse" (reportReturnType) + /homeassistant/components/websocket_api/http.py:326:20 - error: "warning" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:327:20 - error: Type "WebSocketResponse | None" is not assignable to return type "WebSocketResponse" +   Type "WebSocketResponse | None" is not assignable to type "WebSocketResponse" +     "None" is not assignable to "WebSocketResponse" (reportReturnType) + /homeassistant/components/websocket_api/http.py:329:16 - error: "debug" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:332:27 - error: "bus" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:335:40 - error: "bus" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:339:24 - error: "_writer" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:345:13 - error: Argument of type "WebSocketAdapter | None" cannot be assigned to parameter "logger" of type "WebSocketAdapter" in function "__init__" +   Type "WebSocketAdapter | None" is not assignable to type "WebSocketAdapter" +     "None" is not assignable to "WebSocketAdapter" (reportArgumentType) + /homeassistant/components/websocket_api/http.py:345:21 - error: Argument of type "HomeAssistant | None" cannot be assigned to parameter "hass" of type "HomeAssistant" in function "__init__" +   Type "HomeAssistant | None" is not assignable to type "HomeAssistant" +     "None" is not assignable to "HomeAssistant" (reportArgumentType) + /homeassistant/components/websocket_api/http.py:355:20 - error: "debug" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:361:20 - error: "debug" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:363:20 - error: "exception" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:381:16 - error: Type "WebSocketResponse | None" is not assignable to return type "WebSocketResponse" +   Type "WebSocketResponse | None" is not assignable to type "WebSocketResponse" +     "None" is not assignable to "WebSocketResponse" (reportReturnType) + /homeassistant/components/websocket_api/http.py:393:37 - error: "receive" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:418:26 - error: "debug" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:427:20 - error: "data" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:427:56 - error: "data" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:428:9 - error: No overloads for "async_dispatcher_send" match the provided arguments (reportCallIssue) + /homeassistant/components/websocket_api/http.py:428:31 - error: Argument of type "HomeAssistant | None" cannot be assigned to parameter "hass" of type "HomeAssistant" in function "async_dispatcher_send" +   Type "HomeAssistant | None" is not assignable to type "HomeAssistant" +     "None" is not assignable to "HomeAssistant" (reportArgumentType) + /homeassistant/components/websocket_api/http.py:481:25 - error: "closed" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:482:31 - error: "receive" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:512:30 - error: "debug" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:540:29 - error: "close" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:543:28 - error: "debug" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:547:28 - error: "debug" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:553:28 - error: "warning" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:558:26 - error: "data" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/websocket_api/http.py:561:17 - error: No overloads for "async_dispatcher_send" match the provided arguments (reportCallIssue) + /homeassistant/components/websocket_api/http.py:561:39 - error: Argument of type "HomeAssistant | None" cannot be assigned to parameter "hass" of type "HomeAssistant" in function "async_dispatcher_send" +   Type "HomeAssistant | None" is not assignable to type "HomeAssistant" +     "None" is not assignable to "HomeAssistant" (reportArgumentType) +/homeassistant/components/weheat/binary_sensor.py + /homeassistant/components/weheat/binary_sensor.py:84:7 - error: Base classes for class "WeheatHeatPumpBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/weheat/binary_sensor.py:99:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WeHeatBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/weheat/binary_sensor.py:99:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "WeHeatBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/weheat/binary_sensor.py:104:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/weheat/sensor.py + /homeassistant/components/weheat/sensor.py:270:7 - error: Base classes for class "WeheatHeatPumpSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/weheat/sensor.py:285:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WeHeatSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/weheat/sensor.py:285:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "WeHeatSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/weheat/sensor.py:290:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/wemo/__init__.py + /homeassistant/components/wemo/__init__.py:88:23 - error: "SubscriptionRegistry" is not exported from module "pywemo" (reportPrivateImportUsage) + /homeassistant/components/wemo/__init__.py:92:34 - error: "ssdp" is not a known attribute of module "pywemo" (reportAttributeAccessIssue) + /homeassistant/components/wemo/__init__.py:180:49 - error: "WeMoDevice" is not exported from module "pywemo" (reportPrivateImportUsage) + /homeassistant/components/wemo/__init__.py:188:23 - error: "PyWeMoException" is not exported from module "pywemo" (reportPrivateImportUsage) + /homeassistant/components/wemo/__init__.py:273:24 - error: "discover_devices" is not exported from module "pywemo" (reportPrivateImportUsage) + /homeassistant/components/wemo/__init__.py:289:17 - error: Argument of type "HassJob[(datetime), None]" cannot be assigned to parameter "action" of type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" in function "async_call_later" +   Type "HassJob[(datetime), None]" is not assignable to type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" +     "HassJob[(datetime), None]" is not assignable to "HassJob[(datetime), Coroutine[Any, Any, None] | None]" +       Type parameter "_R_co@HassJob" is invariant, but "None" is not the same as "Coroutine[Any, Any, None] | None" +     Type "HassJob[(datetime), None]" is not assignable to type "(datetime) -> (Coroutine[Any, Any, None] | None)" (reportArgumentType) + /homeassistant/components/wemo/__init__.py:325:67 - error: "WeMoDevice" is not exported from module "pywemo" (reportPrivateImportUsage) + /homeassistant/components/wemo/__init__.py:327:18 - error: "setup_url_for_address" is not exported from module "pywemo" (reportPrivateImportUsage) +/homeassistant/components/wemo/binary_sensor.py + /homeassistant/components/wemo/binary_sensor.py:3:20 - error: "Insight" is not exported from module "pywemo" +   Import from "pywemo.ouimeaux_device.insight" instead (reportPrivateImportUsage) + /homeassistant/components/wemo/binary_sensor.py:3:29 - error: "Maker" is not exported from module "pywemo" +   Import from "pywemo.ouimeaux_device.maker" instead (reportPrivateImportUsage) + /homeassistant/components/wemo/binary_sensor.py:3:36 - error: "StandbyState" is not exported from module "pywemo" +   Import from "pywemo.ouimeaux_device.insight" instead (reportPrivateImportUsage) + /homeassistant/components/wemo/binary_sensor.py:34:7 - error: Base classes for class "WemoBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/binary_sensor.py:34:7 - error: Base classes for class "WemoBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/binary_sensor.py:34:7 - error: Base classes for class "WemoBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/binary_sensor.py:34:7 - error: Base classes for class "WemoBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/binary_sensor.py:34:7 - error: Base classes for class "WemoBinarySensor" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/binary_sensor.py:38:7 - error: Base classes for class "MakerBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/binary_sensor.py:38:7 - error: Base classes for class "MakerBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/binary_sensor.py:38:7 - error: Base classes for class "MakerBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/binary_sensor.py:38:7 - error: Base classes for class "MakerBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/binary_sensor.py:45:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wemo/config_flow.py + /homeassistant/components/wemo/config_flow.py:21:58 - error: "discover_devices" is not exported from module "pywemo" (reportPrivateImportUsage) +/homeassistant/components/wemo/coordinator.py + /homeassistant/components/wemo/coordinator.py:12:20 - error: "Insight" is not exported from module "pywemo" +   Import from "pywemo.ouimeaux_device.insight" instead (reportPrivateImportUsage) + /homeassistant/components/wemo/coordinator.py:12:29 - error: "LongPressMixin" is not exported from module "pywemo" +   Import from "pywemo.ouimeaux_device.api.long_press" instead (reportPrivateImportUsage) + /homeassistant/components/wemo/coordinator.py:12:45 - error: "WeMoDevice" is not exported from module "pywemo" +   Import from "pywemo.ouimeaux_device" instead (reportPrivateImportUsage) +/homeassistant/components/wemo/entity.py + /homeassistant/components/wemo/entity.py:40:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/entity.py:55:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/entity.py:63:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wemo/fan.py + /homeassistant/components/wemo/fan.py:9:20 - error: "DesiredHumidity" is not exported from module "pywemo" +   Import from "pywemo.ouimeaux_device.humidifier" instead (reportPrivateImportUsage) + /homeassistant/components/wemo/fan.py:9:37 - error: "FanMode" is not exported from module "pywemo" +   Import from "pywemo.ouimeaux_device.humidifier" instead (reportPrivateImportUsage) + /homeassistant/components/wemo/fan.py:9:46 - error: "Humidifier" is not exported from module "pywemo" +   Import from "pywemo.ouimeaux_device.humidifier" instead (reportPrivateImportUsage) + /homeassistant/components/wemo/fan.py:74:7 - error: Base classes for class "WemoHumidifier" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/fan.py:74:7 - error: Base classes for class "WemoHumidifier" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/fan.py:74:7 - error: Base classes for class "WemoHumidifier" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/fan.py:74:7 - error: Base classes for class "WemoHumidifier" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/fan.py:94:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/fan.py:99:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/fan.py:111:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/fan.py:116:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/fan.py:172:36 - error: "pywemo_humidity" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/wemo/light.py + /homeassistant/components/wemo/light.py:7:20 - error: "Bridge" is not exported from module "pywemo" +   Import from "pywemo.ouimeaux_device.bridge" instead (reportPrivateImportUsage) + /homeassistant/components/wemo/light.py:7:28 - error: "BridgeLight" is not exported from module "pywemo" +   Import from "pywemo.ouimeaux_device.bridge" instead (reportPrivateImportUsage) + /homeassistant/components/wemo/light.py:7:41 - error: "Dimmer" is not exported from module "pywemo" +   Import from "pywemo.ouimeaux_device.dimmer" instead (reportPrivateImportUsage) + /homeassistant/components/wemo/light.py:94:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/light.py:99:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/light.py:104:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/light.py:109:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/light.py:120:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/light.py:125:9 - error: "xy_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/light.py:137:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/light.py:151:9 - error: "supported_color_modes" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[set[ColorMode] | set[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/light.py:165:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/light.py:206:7 - error: Base classes for class "WemoDimmer" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/light.py:206:7 - error: Base classes for class "WemoDimmer" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/light.py:206:7 - error: Base classes for class "WemoDimmer" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/light.py:206:7 - error: Base classes for class "WemoDimmer" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/light.py:206:7 - error: Base classes for class "WemoDimmer" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/light.py:214:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wemo/models.py + /homeassistant/components/wemo/models.py:37:22 - error: "SubscriptionRegistry" is not exported from module "pywemo" (reportPrivateImportUsage) +/homeassistant/components/wemo/sensor.py + /homeassistant/components/wemo/sensor.py:77:7 - error: Base classes for class "AttributeSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/sensor.py:77:7 - error: Base classes for class "AttributeSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/sensor.py:77:7 - error: Base classes for class "AttributeSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/sensor.py:77:7 - error: Base classes for class "AttributeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/sensor.py:87:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "AttributeSensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/sensor.py:87:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "AttributeSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/sensor.py:106:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/wemo/switch.py + /homeassistant/components/wemo/switch.py:8:20 - error: "CoffeeMaker" is not exported from module "pywemo" +   Import from "pywemo.ouimeaux_device.coffeemaker" instead (reportPrivateImportUsage) + /homeassistant/components/wemo/switch.py:8:33 - error: "Insight" is not exported from module "pywemo" +   Import from "pywemo.ouimeaux_device.insight" instead (reportPrivateImportUsage) + /homeassistant/components/wemo/switch.py:8:42 - error: "Maker" is not exported from module "pywemo" +   Import from "pywemo.ouimeaux_device.maker" instead (reportPrivateImportUsage) + /homeassistant/components/wemo/switch.py:8:49 - error: "StandbyState" is not exported from module "pywemo" +   Import from "pywemo.ouimeaux_device.insight" instead (reportPrivateImportUsage) + /homeassistant/components/wemo/switch.py:8:63 - error: "Switch" is not exported from module "pywemo" +   Import from "pywemo.ouimeaux_device.switch" instead (reportPrivateImportUsage) + /homeassistant/components/wemo/switch.py:50:7 - error: Base classes for class "WemoSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/switch.py:50:7 - error: Base classes for class "WemoSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/switch.py:50:7 - error: Base classes for class "WemoSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/switch.py:50:7 - error: Base classes for class "WemoSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/switch.py:50:7 - error: Base classes for class "WemoSwitch" define variable "is_on" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/switch.py:57:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wemo/switch.py:116:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/whirlpool/binary_sensor.py + /homeassistant/components/whirlpool/binary_sensor.py:35:46 - error: Cannot access attribute "get_door_open" for class "Appliance" +   Attribute "get_door_open" is unknown (reportAttributeAccessIssue) + /homeassistant/components/whirlpool/binary_sensor.py:71:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WhirlpoolBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/whirlpool/binary_sensor.py:71:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "WhirlpoolBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/whirlpool/binary_sensor.py:74:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/whirlpool/climate.py + /homeassistant/components/whirlpool/climate.py:86:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/whirlpool/climate.py:88:16 - error: Type "float | None" is not assignable to return type "float" +   Type "float | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportReturnType) + /homeassistant/components/whirlpool/climate.py:91:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/whirlpool/climate.py:93:16 - error: Type "float | None" is not assignable to return type "float" +   Type "float | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportReturnType) + /homeassistant/components/whirlpool/climate.py:98:44 - error: Argument of type "Any | None" cannot be assigned to parameter "temp" of type "float" in function "set_temp" +   Type "Any | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportArgumentType) + /homeassistant/components/whirlpool/climate.py:102:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/whirlpool/climate.py:104:16 - error: Type "int | None" is not assignable to return type "int" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportReturnType) + /homeassistant/components/whirlpool/climate.py:107:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/whirlpool/climate.py:112:28 - error: Type "Mode | None" is not assignable to declared type "Mode" +   Type "Mode | None" is not assignable to type "Mode" +     "None" is not assignable to "Mode" (reportAssignmentType) + /homeassistant/components/whirlpool/climate.py:131:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/whirlpool/climate.py:134:16 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /homeassistant/components/whirlpool/climate.py:134:40 - error: Argument of type "FanSpeed | None" cannot be assigned to parameter "key" of type "FanSpeed" in function "get" +   Type "FanSpeed | None" is not assignable to type "FanSpeed" +     "None" is not assignable to "FanSpeed" (reportArgumentType) + /homeassistant/components/whirlpool/climate.py:144:9 - error: "swing_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/whirlpool/entity.py + /homeassistant/components/whirlpool/entity.py:48:32 - error: Cannot assign to attribute "_attr_available" for class "WhirlpoolEntity*" +   Type "bool | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportAttributeAccessIssue) +/homeassistant/components/whirlpool/sensor.py + /homeassistant/components/whirlpool/sensor.py:136:37 - error: Argument of type "Literal[MachineState.RunningMainCycle, MachineState.Standby, MachineState.Setting, MachineState.DelayCountdownMode, MachineState.DelayPause, MachineState.SmartDelay, MachineState.SmartGridPause, MachineState.Pause, MachineState.RunningPostCycle, MachineState.Exceptions, MachineState.Complete, MachineState.PowerFailure, MachineState.ServiceDiagnostic, MachineState.FactoryDiagnostic, MachineState.LifeTest, MachineState.CustomerFocusMode, MachineState.DemoMode, MachineState.HardStopOrError, MachineState.SystemInit] | None" cannot be assigned to parameter "key" of type "MachineState" in function "get" +   Type "Literal[MachineState.RunningMainCycle, MachineState.Standby, MachineState.Setting, MachineState.DelayCountdownMode, MachineState.DelayPause, MachineState.SmartDelay, MachineState.SmartGridPause, MachineState.Pause, MachineState.RunningPostCycle, MachineState.Exceptions, MachineState.Complete, MachineState.PowerFailure, MachineState.ServiceDiagnostic, MachineState.FactoryDiagnostic, MachineState.LifeTest, MachineState.CustomerFocusMode, MachineState.DemoMode, MachineState.HardStopOrError, MachineState.SystemInit] | None" is not assignable to type "MachineState" +     "None" is not assignable to "MachineState" (reportArgumentType) + /homeassistant/components/whirlpool/sensor.py:148:36 - error: Argument of type "Literal[MachineState.RunningMainCycle, MachineState.Standby, MachineState.Setting, MachineState.DelayCountdownMode, MachineState.DelayPause, MachineState.SmartDelay, MachineState.SmartGridPause, MachineState.Pause, MachineState.RunningPostCycle, MachineState.Exceptions, MachineState.Complete, MachineState.PowerFailure, MachineState.ServiceDiagnostic, MachineState.FactoryDiagnostic, MachineState.LifeTest, MachineState.CustomerFocusMode, MachineState.DemoMode, MachineState.HardStopOrError, MachineState.SystemInit, MachineState.Cancelled] | None" cannot be assigned to parameter "key" of type "MachineState" in function "get" +   Type "Literal[MachineState.RunningMainCycle, MachineState.Standby, MachineState.Setting, MachineState.DelayCountdownMode, MachineState.DelayPause, MachineState.SmartDelay, MachineState.SmartGridPause, MachineState.Pause, MachineState.RunningPostCycle, MachineState.Exceptions, MachineState.Complete, MachineState.PowerFailure, MachineState.ServiceDiagnostic, MachineState.FactoryDiagnostic, MachineState.LifeTest, MachineState.CustomerFocusMode, MachineState.DemoMode, MachineState.HardStopOrError, MachineState.SystemInit, MachineState.Cancelled] | None" is not assignable to type "MachineState" +     "None" is not assignable to "MachineState" (reportArgumentType) + /homeassistant/components/whirlpool/sensor.py:179:18 - error: Argument of type "(washer: Washer) -> (str | None)" cannot be assigned to parameter "value_fn" of type "(Appliance) -> (str | None)" in function "__init__" +   Type "(washer: Washer) -> (str | None)" is not assignable to type "(Appliance) -> (str | None)" +     Parameter 1: type "Appliance" is incompatible with type "Washer" +       "Appliance" is not assignable to "Washer" (reportArgumentType) + /homeassistant/components/whirlpool/sensor.py:187:61 - error: Cannot access attribute "get_dispense_1_level" for class "Appliance" +   Attribute "get_dispense_1_level" is unknown (reportAttributeAccessIssue) + /homeassistant/components/whirlpool/sensor.py:197:18 - error: Argument of type "(dryer: Dryer) -> (str | None)" cannot be assigned to parameter "value_fn" of type "(Appliance) -> (str | None)" in function "__init__" +   Type "(dryer: Dryer) -> (str | None)" is not assignable to type "(Appliance) -> (str | None)" +     Parameter 1: type "Appliance" is incompatible with type "Dryer" +       "Appliance" is not assignable to "Dryer" (reportArgumentType) + /homeassistant/components/whirlpool/sensor.py:330:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WhirlpoolSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/whirlpool/sensor.py:330:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "WhirlpoolSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/whirlpool/sensor.py:333:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/whirlpool/sensor.py:373:6 - error: Argument of type "property" cannot be assigned to parameter "method" of type "_F@override" in function "override" +   Type "property" is not assignable to type "(...) -> Any" +     Type "property" is not assignable to type "(...) -> Any" (reportArgumentType) + /homeassistant/components/whirlpool/sensor.py:375:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/whirlpool/sensor.py:386:25 - error: Argument of type "int | None" cannot be assigned to parameter "seconds" of type "float" in function "__new__" +   Type "int | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportArgumentType) + /homeassistant/components/whirlpool/sensor.py:399:5 - error: "_appliance" overrides symbol of same name in class "WasherDryerTimeSensorBase" +   Variable is mutable so its type is invariant +     Override type "Washer" is not the same as base type "Washer | Dryer" (reportIncompatibleVariableOverride) + /homeassistant/components/whirlpool/sensor.py:418:5 - error: "_appliance" overrides symbol of same name in class "WasherDryerTimeSensorBase" +   Variable is mutable so its type is invariant +     Override type "Dryer" is not the same as base type "Washer | Dryer" (reportIncompatibleVariableOverride) + /homeassistant/components/whirlpool/sensor.py:445:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WhirlpoolOvenCavitySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/whirlpool/sensor.py:445:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "WhirlpoolOvenCavitySensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/whirlpool/sensor.py:450:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/whois/sensor.py + /homeassistant/components/whois/sensor.py:182:7 - error: Base classes for class "WhoisSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/whois/sensor.py:198:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WhoisSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/whois/sensor.py:198:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "WhoisSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/whois/sensor.py:208:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/whois/sensor.py:215:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wiffi/binary_sensor.py + /homeassistant/components/wiffi/binary_sensor.py:47:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/wiffi/sensor.py + /homeassistant/components/wiffi/sensor.py:89:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/wiffi/sensor.py:119:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/wilight/cover.py + /homeassistant/components/wilight/cover.py:61:7 - error: Base classes for class "WiLightCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/cover.py:67:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/cover.py:77:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/cover.py:84:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/cover.py:91:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wilight/entity.py + /homeassistant/components/wilight/entity.py:42:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/wilight/fan.py + /homeassistant/components/wilight/fan.py:58:7 - error: Base classes for class "WiLightFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/fan.py:82:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/fan.py:95:9 - error: "current_direction" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wilight/light.py + /homeassistant/components/wilight/light.py:57:7 - error: Base classes for class "WiLightLightOnOff" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/light.py:65:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/light.py:78:7 - error: Base classes for class "WiLightLightDimmer" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/light.py:86:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/light.py:91:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/light.py:130:7 - error: Base classes for class "WiLightLightColor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/light.py:138:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/light.py:143:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/light.py:151:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wilight/parent_device.py + /homeassistant/components/wilight/parent_device.py:106:16 - error: Type "None" is not assignable to return type "PyWiLightDevice" +   "None" is not assignable to "PyWiLightDevice" (reportReturnType) +/homeassistant/components/wilight/switch.py + /homeassistant/components/wilight/switch.py:148:7 - error: Base classes for class "WiLightValveSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/switch.py:154:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/switch.py:207:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/switch.py:264:7 - error: Base classes for class "WiLightValvePauseSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/switch.py:270:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wilight/switch.py:286:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wirelesstag/__init__.py + /homeassistant/components/wirelesstag/__init__.py:7:6 - error: Import "wirelesstagpy" could not be resolved (reportMissingImports) + /homeassistant/components/wirelesstag/__init__.py:8:6 - error: Import "wirelesstagpy.exceptions" could not be resolved (reportMissingImports) +/homeassistant/components/wirelesstag/binary_sensor.py + /homeassistant/components/wirelesstag/binary_sensor.py:98:7 - error: Base classes for class "WirelessTagBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wirelesstag/binary_sensor.py:98:7 - error: Base classes for class "WirelessTagBinarySensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wirelesstag/binary_sensor.py:98:7 - error: Base classes for class "WirelessTagBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wirelesstag/binary_sensor.py:122:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wirelesstag/binary_sensor.py:127:9 - error: "device_class" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wirelesstag/binary_sensor.py:127:9 - error: "device_class" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[BinarySensorDeviceClass | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wirelesstag/entity.py + /homeassistant/components/wirelesstag/entity.py:39:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wirelesstag/entity.py:63:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/wirelesstag/entity.py:81:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wirelesstag/sensor.py + /homeassistant/components/wirelesstag/sensor.py:95:7 - error: Base classes for class "WirelessTagSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wirelesstag/sensor.py:95:7 - error: Base classes for class "WirelessTagSensor" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wirelesstag/sensor.py:95:7 - error: Base classes for class "WirelessTagSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wirelesstag/sensor.py:131:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/wirelesstag/sensor.py:136:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wirelesstag/switch.py + /homeassistant/components/wirelesstag/switch.py:82:7 - error: Base classes for class "WirelessTagSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wirelesstag/switch.py:82:7 - error: Base classes for class "WirelessTagSwitch" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wirelesstag/switch.py:82:7 - error: Base classes for class "WirelessTagSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wirelesstag/switch.py:101:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wirelesstag/switch.py:103:16 - error: Type "Unknown | None" is not assignable to return type "bool" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportReturnType) +/homeassistant/components/wirelesstag/util.py + /homeassistant/components/wirelesstag/util.py:5:6 - error: Import "wirelesstagpy.sensortag" could not be resolved (reportMissingImports) +/homeassistant/components/withings/binary_sensor.py + /homeassistant/components/withings/binary_sensor.py:48:7 - error: Base classes for class "WithingsBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/withings/binary_sensor.py:60:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/withings/calendar.py + /homeassistant/components/withings/calendar.py:68:7 - error: Base classes for class "WithingsWorkoutCalendarEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/withings/sensor.py + /homeassistant/components/withings/sensor.py:886:7 - error: Base classes for class "WithingsSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/withings/sensor.py:901:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "_ED@WithingsSensor" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/withings/sensor.py:901:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "_ED@WithingsSensor" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/withings/sensor.py:913:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/withings/sensor.py:944:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/withings/sensor.py:960:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/withings/sensor.py:975:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/withings/sensor.py:982:9 - error: "last_reset" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/withings/sensor.py:996:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/withings/sensor.py:1003:7 - error: Base classes for class "WithingsDeviceSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/withings/sensor.py:1016:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WithingsDeviceSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/withings/sensor.py:1016:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "WithingsDeviceSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/withings/sensor.py:1019:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/wiz/binary_sensor.py + /homeassistant/components/wiz/binary_sensor.py:65:7 - error: Base classes for class "WizOccupancyEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wiz/binary_sensor.py:79:31 - error: "get_source" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/wiz/config_flow.py + /homeassistant/components/wiz/config_flow.py:180:66 - error: Argument of type "str | None" cannot be assigned to parameter "mac" of type "str" in function "name_from_bulb_type_and_mac" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/wiz/entity.py + /homeassistant/components/wiz/entity.py:22:7 - error: Base classes for class "WizEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wiz/entity.py:31:31 - error: Type "BulbType | None" is not assignable to declared type "BulbType" +   Type "BulbType | None" is not assignable to type "BulbType" +     "None" is not assignable to "BulbType" (reportAssignmentType) + /homeassistant/components/wiz/entity.py:34:51 - error: Argument of type "set[tuple[Literal['mac'], str | None]]" cannot be assigned to parameter "connections" of type "set[tuple[str, str]]" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/wiz/entity.py:60:7 - error: Base classes for class "WizToggleEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/wiz/fan.py + /homeassistant/components/wiz/fan.py:37:41 - error: "features" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/wiz/fan.py:41:7 - error: Base classes for class "WizFanEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wiz/fan.py:48:5 - error: "is_on" incorrectly overrides property of same name in class "FanEntity" (reportIncompatibleMethodOverride) + /homeassistant/components/wiz/fan.py:48:23 - error: Type "cached_property" is not assignable to declared type "property" +   "cached_property[bool | None]" is not assignable to "property" (reportAssignmentType) + /homeassistant/components/wiz/fan.py:53:31 - error: Type "BulbType | None" is not assignable to declared type "BulbType" +   Type "BulbType | None" is not assignable to type "BulbType" +     "None" is not assignable to "BulbType" (reportAssignmentType) + /homeassistant/components/wiz/fan.py:68:34 - error: Cannot assign to attribute "_attr_speed_count" for class "WizFanEntity*" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportAttributeAccessIssue) + /homeassistant/components/wiz/fan.py:77:28 - error: Operator ">" not supported for "None" (reportOptionalOperand) + /homeassistant/components/wiz/fan.py:77:34 - error: "get_fan_state" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/wiz/fan.py:79:36 - error: Argument of type "int | None" cannot be assigned to parameter "value" of type "float" in function "ranged_value_to_percentage" +   Type "int | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportArgumentType) + /homeassistant/components/wiz/fan.py:79:42 - error: "get_fan_speed" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/wiz/fan.py:82:30 - error: "get_fan_mode" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/wiz/fan.py:85:33 - error: "get_fan_reverse" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/wiz/light.py + /homeassistant/components/wiz/light.py:63:41 - error: "bulb_type" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/wiz/light.py:67:7 - error: Base classes for class "WizBulbEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wiz/light.py:76:31 - error: Type "BulbType | None" is not assignable to declared type "BulbType" +   Type "BulbType | None" is not assignable to type "BulbType" +     "None" is not assignable to "BulbType" (reportAssignmentType) + /homeassistant/components/wiz/light.py:80:29 - error: Argument of type "int | None" cannot be assigned to parameter "key" of type "int" in function "__getitem__" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/wiz/light.py:92:55 - error: "max" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/wiz/light.py:93:55 - error: "min" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/wiz/light.py:104:33 - error: "get_brightness" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/wiz/light.py:107:33 - error: "get_colortemp" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/wiz/light.py:112:64 - error: "get_rgbww" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/wiz/light.py:116:63 - error: "get_rgbw" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/wiz/light.py:119:35 - error: "get_scene" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/wiz/number.py + /homeassistant/components/wiz/number.py:49:63 - error: "get_speed" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/wiz/number.py:60:63 - error: "get_ratio" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/wiz/number.py:78:46 - error: "features" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/wiz/number.py:94:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WizNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/wiz/number.py:94:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "WizNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/wiz/number.py:99:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/wiz/sensor.py + /homeassistant/components/wiz/sensor.py:65:7 - error: Base classes for class "WizSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wiz/sensor.py:75:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "SensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/wiz/sensor.py:82:54 - error: "pilotResult" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/wiz/sensor.py:94:41 - error: "get_power" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/wiz/switch.py + /homeassistant/components/wiz/switch.py:25:41 - error: "bulb_type" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/wiz/switch.py:29:7 - error: Base classes for class "WizSocketEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/wled/button.py + /homeassistant/components/wled/button.py:26:7 - error: Base classes for class "WLEDRestartButton" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/button.py:26:7 - error: Base classes for class "WLEDRestartButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/button.py:38:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/wled/entity.py + /homeassistant/components/wled/entity.py:16:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wled/light.py + /homeassistant/components/wled/light.py:59:7 - error: Base classes for class "WLEDMainLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/light.py:73:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/light.py:78:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/light.py:83:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/light.py:88:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/wled/light.py:98:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/wled/light.py:110:7 - error: Base classes for class "WLEDSegmentLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/light.py:151:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/light.py:161:9 - error: "rgb_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/light.py:168:9 - error: "rgbw_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/light.py:181:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/light.py:188:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/light.py:202:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/light.py:207:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/light.py:219:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/wled/light.py:236:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/wled/number.py + /homeassistant/components/wled/number.py:71:7 - error: Base classes for class "WLEDNumber" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/number.py:84:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WLEDNumberEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/number.py:84:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "WLEDNumberEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/number.py:98:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/number.py:108:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/number.py:115:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/wled/select.py + /homeassistant/components/wled/select.py:47:7 - error: Base classes for class "WLEDLiveOverrideSelect" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/select.py:47:7 - error: Base classes for class "WLEDLiveOverrideSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/select.py:61:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/select.py:66:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/wled/select.py:71:7 - error: Base classes for class "WLEDPresetSelect" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/select.py:83:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/select.py:88:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/select.py:99:9 - error: "options" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/select.py:107:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/wled/select.py:112:7 - error: Base classes for class "WLEDPlaylistSelect" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/select.py:124:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/select.py:129:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/select.py:140:9 - error: "options" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/select.py:148:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/wled/select.py:153:7 - error: Base classes for class "WLEDPaletteSelect" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/select.py:174:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/select.py:184:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/select.py:196:9 - error: "options" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/select.py:204:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/wled/sensor.py + /homeassistant/components/wled/sensor.py:144:7 - error: Base classes for class "WLEDSensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/sensor.py:144:7 - error: Base classes for class "WLEDSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/sensor.py:156:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WLEDSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/sensor.py:156:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "WLEDSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/sensor.py:160:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/wled/switch.py + /homeassistant/components/wled/switch.py:47:7 - error: Base classes for class "WLEDNightlightSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/switch.py:47:7 - error: Base classes for class "WLEDNightlightSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/switch.py:59:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/switch.py:68:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/switch.py:73:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/wled/switch.py:78:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/wled/switch.py:83:7 - error: Base classes for class "WLEDSyncSendSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/switch.py:83:7 - error: Base classes for class "WLEDSyncSendSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/switch.py:95:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/switch.py:100:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/switch.py:105:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/wled/switch.py:110:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/wled/switch.py:115:7 - error: Base classes for class "WLEDSyncReceiveSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/switch.py:115:7 - error: Base classes for class "WLEDSyncReceiveSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/switch.py:127:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/switch.py:132:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/switch.py:137:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/wled/switch.py:142:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/wled/switch.py:147:7 - error: Base classes for class "WLEDReverseSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/switch.py:168:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/switch.py:178:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/switch.py:183:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/wled/switch.py:188:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/wled/update.py + /homeassistant/components/wled/update.py:36:7 - error: Base classes for class "WLEDUpdateEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wled/update.py:68:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/update.py:73:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/update.py:80:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/update.py:101:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wled/update.py:108:15 - error: Method "async_install" overrides class "UpdateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) +/homeassistant/components/wmspro/button.py + /homeassistant/components/wmspro/button.py:32:7 - error: Base classes for class "WebControlProIdentifyButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/wmspro/cover.py + /homeassistant/components/wmspro/cover.py:46:7 - error: Base classes for class "WebControlProCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wmspro/cover.py:53:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wmspro/cover.py:66:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wmspro/entity.py + /homeassistant/components/wmspro/entity.py:40:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/wmspro/light.py + /homeassistant/components/wmspro/light.py:44:7 - error: Base classes for class "WebControlProLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wmspro/light.py:52:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wmspro/light.py:79:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wolflink/sensor.py + /homeassistant/components/wolflink/sensor.py:153:7 - error: Base classes for class "WolfLinkSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wolflink/sensor.py:167:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "WolflinkSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/wolflink/sensor.py:167:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "WolflinkSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/wolflink/sensor.py:179:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/wolflink/sensor.py:195:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/workday/entity.py + /homeassistant/components/workday/entity.py:8:35 - error: "__version__" is not exported from module "holidays" +   Import from "holidays.version" instead (reportPrivateImportUsage) +/homeassistant/components/worldtidesinfo/sensor.py + /homeassistant/components/worldtidesinfo/sensor.py:58:19 - error: "get" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/worldtidesinfo/sensor.py:79:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/worldtidesinfo/sensor.py:84:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/worldtidesinfo/sensor.py:101:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/worxlandroid/sensor.py + /homeassistant/components/worxlandroid/sensor.py:79:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/worxlandroid/sensor.py:84:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/worxlandroid/sensor.py:89:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/worxlandroid/sensor.py:121:26 - error: "mower_response" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/ws66i/__init__.py + /homeassistant/components/ws66i/__init__.py:55:41 - error: "amp_num" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/ws66i/media_player.py + /homeassistant/components/ws66i/media_player.py:45:7 - error: Base classes for class "Ws66iZone" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/wsdot/sensor.py + /homeassistant/components/wsdot/sensor.py:81:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wsdot/sensor.py:86:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/wsdot/sensor.py:117:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/wyoming/select.py + /homeassistant/components/wyoming/select.py:72:7 - error: Base classes for class "WyomingSatelliteNoiseSuppressionLevelSelect" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wyoming/select.py:72:7 - error: Base classes for class "WyomingSatelliteNoiseSuppressionLevelSelect" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wyoming/select.py:72:7 - error: Base classes for class "WyomingSatelliteNoiseSuppressionLevelSelect" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wyoming/select.py:72:7 - error: Base classes for class "WyomingSatelliteNoiseSuppressionLevelSelect" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/wyoming/switch.py + /homeassistant/components/wyoming/switch.py:35:7 - error: Base classes for class "WyomingSatelliteMuteSwitch" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wyoming/switch.py:35:7 - error: Base classes for class "WyomingSatelliteMuteSwitch" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wyoming/switch.py:35:7 - error: Base classes for class "WyomingSatelliteMuteSwitch" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/wyoming/switch.py:35:7 - error: Base classes for class "WyomingSatelliteMuteSwitch" define variable "state" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/wyoming/tts.py + /homeassistant/components/wyoming/tts.py:87:9 - error: "default_language" overrides symbol of same name in class "TextToSpeechEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/wyoming/tts.py:95:9 - error: "supported_languages" overrides symbol of same name in class "TextToSpeechEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/wyoming/tts.py:100:9 - error: "supported_options" overrides symbol of same name in class "TextToSpeechEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wyoming/tts.py:109:9 - error: "default_options" overrides symbol of same name in class "TextToSpeechEntity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/wyoming/tts.py:195:44 - error: Argument of type "CoroutineType[Any, Any, Unknown]" cannot be assigned to parameter "data_gen" of type "AsyncGenerator[bytes, None]" in function "__init__" +   "CoroutineType[Any, Any, Unknown]" is incompatible with protocol "AsyncGenerator[bytes, None]" +     "__anext__" is not present +     "asend" is not present +     "athrow" is not present +     "aclose" is not present +     "__aiter__" is not present (reportArgumentType) +/homeassistant/components/x10/light.py + /homeassistant/components/x10/light.py:78:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/x10/light.py:83:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/x10/light.py:95:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xbox/binary_sensor.py + /homeassistant/components/xbox/binary_sensor.py:139:7 - error: Base classes for class "XboxBinarySensorEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/binary_sensor.py:139:7 - error: Base classes for class "XboxBinarySensorEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/binary_sensor.py:139:7 - error: Base classes for class "XboxBinarySensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/binary_sensor.py:142:5 - error: "entity_description" overrides symbol of same name in class "XboxBaseEntity" +   Variable is mutable so its type is invariant +     Override type "XboxBinarySensorEntityDescription" is not the same as base type "XboxBaseEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/binary_sensor.py:142:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "XboxBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/binary_sensor.py:145:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xbox/entity.py + /homeassistant/components/xbox/entity.py:59:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "XboxBaseEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/entity.py:82:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/entity.py:93:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xbox/image.py + /homeassistant/components/xbox/image.py:92:7 - error: Base classes for class "XboxImageEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/image.py:92:7 - error: Base classes for class "XboxImageEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/image.py:95:5 - error: "entity_description" overrides symbol of same name in class "XboxBaseEntity" +   Variable is mutable so its type is invariant +     Override type "XboxImageEntityDescription" is not the same as base type "XboxBaseEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/image.py:95:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "XboxImageEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/xbox/media_player.py + /homeassistant/components/xbox/media_player.py:69:7 - error: Base classes for class "XboxMediaPlayer" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/media_player.py:76:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/media_player.py:76:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/media_player.py:84:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/media_player.py:84:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/media_player.py:95:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/media_player.py:103:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/media_player.py:108:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/media_player.py:118:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xbox/media_source.py + /homeassistant/components/xbox/media_source.py:89:5 - error: "name" overrides symbol of same name in class "MediaSource" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) +/homeassistant/components/xbox/remote.py + /homeassistant/components/xbox/remote.py:37:7 - error: Base classes for class "XboxRemote" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/remote.py:41:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xbox/sensor.py + /homeassistant/components/xbox/sensor.py:291:7 - error: Base classes for class "XboxSensorEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/sensor.py:291:7 - error: Base classes for class "XboxSensorEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/sensor.py:291:7 - error: Base classes for class "XboxSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/sensor.py:294:5 - error: "entity_description" overrides symbol of same name in class "XboxBaseEntity" +   Variable is mutable so its type is invariant +     Override type "XboxSensorEntityDescription" is not the same as base type "XboxBaseEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/sensor.py:294:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "XboxSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/sensor.py:297:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/sensor.py:302:7 - error: Base classes for class "XboxStorageDeviceSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/sensor.py:319:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "XboxStorageDeviceSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/sensor.py:319:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "XboxStorageDeviceSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/xbox/sensor.py:355:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/xeoma/camera.py + /homeassistant/components/xeoma/camera.py:7:6 - error: Import "pyxeoma.xeoma" could not be resolved (reportMissingImports) + /homeassistant/components/xeoma/camera.py:142:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi/camera.py + /homeassistant/components/xiaomi/camera.py:90:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi/camera.py:95:9 - error: "brand" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi/camera.py:100:9 - error: "model" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_aqara/binary_sensor.py + /homeassistant/components/xiaomi_aqara/binary_sensor.py:140:7 - error: Base classes for class "XiaomiBinarySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/binary_sensor.py:140:7 - error: Base classes for class "XiaomiBinarySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/binary_sensor.py:140:7 - error: Base classes for class "XiaomiBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/binary_sensor.py:140:7 - error: Base classes for class "XiaomiBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/binary_sensor.py:184:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/binary_sensor.py:246:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/binary_sensor.py:327:7 - error: Base classes for class "XiaomiDoorSensor" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/binary_sensor.py:327:7 - error: Base classes for class "XiaomiDoorSensor" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/binary_sensor.py:327:7 - error: Base classes for class "XiaomiDoorSensor" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/binary_sensor.py:327:7 - error: Base classes for class "XiaomiDoorSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/binary_sensor.py:327:7 - error: Base classes for class "XiaomiDoorSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/binary_sensor.py:327:7 - error: Base classes for class "XiaomiDoorSensor" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/binary_sensor.py:327:7 - error: Base classes for class "XiaomiDoorSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/binary_sensor.py:327:7 - error: Base classes for class "XiaomiDoorSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/binary_sensor.py:352:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/binary_sensor.py:465:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/binary_sensor.py:514:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/binary_sensor.py:562:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/binary_sensor.py:632:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_aqara/cover.py + /homeassistant/components/xiaomi_aqara/cover.py:42:7 - error: Base classes for class "XiaomiGenericCover" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/cover.py:42:7 - error: Base classes for class "XiaomiGenericCover" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/cover.py:42:7 - error: Base classes for class "XiaomiGenericCover" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/cover.py:42:7 - error: Base classes for class "XiaomiGenericCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/cover.py:59:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/cover.py:64:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_aqara/entity.py + /homeassistant/components/xiaomi_aqara/entity.py:53:48 - error: Cannot access attribute "_data_key" for class "XiaomiDevice*" +   Attribute "_data_key" is unknown (reportAttributeAccessIssue) + /homeassistant/components/xiaomi_aqara/entity.py:54:39 - error: Cannot access attribute "_data_key" for class "XiaomiDevice*" +   Attribute "_data_key" is unknown (reportAttributeAccessIssue) + /homeassistant/components/xiaomi_aqara/entity.py:76:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/entity.py:81:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/entity.py:91:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/entity.py:115:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_aqara/light.py + /homeassistant/components/xiaomi_aqara/light.py:44:7 - error: Base classes for class "XiaomiGatewayLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/light.py:44:7 - error: Base classes for class "XiaomiGatewayLight" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/light.py:44:7 - error: Base classes for class "XiaomiGatewayLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/light.py:44:7 - error: Base classes for class "XiaomiGatewayLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/light.py:94:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/light.py:99:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_aqara/lock.py + /homeassistant/components/xiaomi_aqara/lock.py:42:7 - error: Base classes for class "XiaomiAqaraLock" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/lock.py:42:7 - error: Base classes for class "XiaomiAqaraLock" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/lock.py:42:7 - error: Base classes for class "XiaomiAqaraLock" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/lock.py:42:7 - error: Base classes for class "XiaomiAqaraLock" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/lock.py:42:7 - error: Base classes for class "XiaomiAqaraLock" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/lock.py:59:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_aqara/sensor.py + /homeassistant/components/xiaomi_aqara/sensor.py:167:7 - error: Base classes for class "XiaomiSensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/sensor.py:167:7 - error: Base classes for class "XiaomiSensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/sensor.py:167:7 - error: Base classes for class "XiaomiSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/sensor.py:167:7 - error: Base classes for class "XiaomiSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/sensor.py:208:7 - error: Base classes for class "XiaomiBatterySensor" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/sensor.py:208:7 - error: Base classes for class "XiaomiBatterySensor" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/sensor.py:208:7 - error: Base classes for class "XiaomiBatterySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/sensor.py:208:7 - error: Base classes for class "XiaomiBatterySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_aqara/switch.py + /homeassistant/components/xiaomi_aqara/switch.py:138:7 - error: Base classes for class "XiaomiGenericSwitch" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/switch.py:138:7 - error: Base classes for class "XiaomiGenericSwitch" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/switch.py:138:7 - error: Base classes for class "XiaomiGenericSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/switch.py:138:7 - error: Base classes for class "XiaomiGenericSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/switch.py:161:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_aqara/switch.py:168:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_ble/binary_sensor.py + /homeassistant/components/xiaomi_ble/binary_sensor.py:6:5 - error: "BinarySensorDeviceClass" is not exported from module "xiaomi_ble.parser" +   Import from ".binary_sensor.device_class" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_ble/binary_sensor.py:7:5 - error: "ExtendedBinarySensorDeviceClass" is not exported from module "xiaomi_ble.parser" +   Import from "xiaomi_ble.const" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_ble/binary_sensor.py:8:5 - error: "SensorUpdate" is not exported from module "xiaomi_ble.parser" +   Import from ".data" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_ble/binary_sensor.py:162:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_ble/binary_sensor.py:167:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_ble/config_flow.py + /homeassistant/components/xiaomi_ble/config_flow.py:17:31 - error: "EncryptionScheme" is not exported from module "xiaomi_ble.parser" +   Import from "xiaomi_ble.const" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_ble/config_flow.py:149:38 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/xiaomi_ble/config_flow.py:183:38 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/xiaomi_ble/config_flow.py:234:19 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/xiaomi_ble/config_flow.py:246:38 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/xiaomi_ble/config_flow.py:259:38 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/xiaomi_ble/config_flow.py:272:38 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/xiaomi_ble/config_flow.py:366:19 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/xiaomi_ble/coordinator.py + /homeassistant/components/xiaomi_ble/coordinator.py:78:5 - error: "coordinator" overrides symbol of same name in class "PassiveBluetoothDataProcessor" +   Variable is mutable so its type is invariant +     Override type "XiaomiActiveBluetoothProcessorCoordinator" is not the same as base type "PassiveBluetoothProcessorCoordinator[SensorUpdate]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_ble/sensor.py + /homeassistant/components/xiaomi_ble/sensor.py:8:31 - error: "ExtendedSensorDeviceClass" is not exported from module "xiaomi_ble.parser" +   Import from "xiaomi_ble.const" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_ble/sensor.py:271:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_ble/sensor.py:276:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_miio/__init__.py + /homeassistant/components/xiaomi_miio/__init__.py:13:5 - error: "AirFresh" is not exported from module "miio" +   Import from "miio.integrations.airpurifier" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:14:5 - error: "AirFreshA1" is not exported from module "miio" +   Import from "miio.integrations.airpurifier" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:15:5 - error: "AirFreshT2017" is not exported from module "miio" +   Import from "miio.integrations.airpurifier" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:16:5 - error: "AirHumidifier" is not exported from module "miio" +   Import from "miio.integrations.humidifier" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:17:5 - error: "AirHumidifierMiot" is not exported from module "miio" +   Import from "miio.integrations.humidifier" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:18:5 - error: "AirHumidifierMjjsq" is not exported from module "miio" +   Import from "miio.integrations.humidifier" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:19:5 - error: "AirPurifier" is not exported from module "miio" +   Import from "miio.integrations.airpurifier" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:20:5 - error: "AirPurifierMiot" is not exported from module "miio" +   Import from "miio.integrations.airpurifier" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:21:5 - error: "CleaningDetails" is not exported from module "miio" +   Import from "miio.integrations.vacuum.roborock.vacuumcontainers" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:22:5 - error: "CleaningSummary" is not exported from module "miio" +   Import from "miio.integrations.vacuum.roborock.vacuumcontainers" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:23:5 - error: "ConsumableStatus" is not exported from module "miio" +   Import from "miio.integrations.vacuum.roborock.vacuumcontainers" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:24:5 - error: "Device" is not exported from module "miio" +   Import from "miio.device" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:25:5 - error: "DeviceException" is not exported from module "miio" +   Import from "miio.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:26:5 - error: "DNDStatus" is not exported from module "miio" +   Import from "miio.integrations.vacuum.roborock.vacuumcontainers" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:27:5 - error: "Fan" is not exported from module "miio" +   Import from "miio.integrations.fan" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:28:5 - error: "Fan1C" is not exported from module "miio" +   Import from "miio.integrations.fan" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:29:5 - error: "FanMiot" is not exported from module "miio" +   Import from "miio.integrations.fan" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:30:5 - error: "FanP5" is not exported from module "miio" +   Import from "miio.integrations.fan" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:31:5 - error: "FanZA5" is not exported from module "miio" +   Import from "miio.integrations.fan" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:32:5 - error: "RoborockVacuum" is not exported from module "miio" +   Import from "miio.integrations.vacuum" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:33:5 - error: "Timer" is not exported from module "miio" +   Import from "miio.integrations.vacuum.roborock.vacuumcontainers" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:34:5 - error: "VacuumStatus" is not exported from module "miio" +   Import from "miio.integrations.vacuum.roborock.vacuumcontainers" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/__init__.py:255:13 - error: Argument of type "CleaningDetails | None" cannot be assigned to parameter "last_clean_details" of type "CleaningDetails" in function "__init__" +   Type "CleaningDetails | None" is not assignable to type "CleaningDetails" +     "None" is not assignable to "CleaningDetails" (reportArgumentType) + /homeassistant/components/xiaomi_miio/__init__.py:390:43 - error: Argument of type "AirHumidifierMiot | AirHumidifierMjjsq | AirHumidifier | AirPurifierMiot | AirPurifier | AirFresh | AirFreshA1 | AirFreshT2017 | RoborockVacuum | Unknown | Device | Fan" cannot be assigned to parameter "device" of type "RoborockVacuum" in function "_async_update_data_vacuum" +   Type "AirHumidifierMiot | AirHumidifierMjjsq | AirHumidifier | AirPurifierMiot | AirPurifier | AirFresh | AirFreshA1 | AirFreshT2017 | RoborockVacuum | Unknown | Device | Fan" is not assignable to type "RoborockVacuum" +     "Device" is not assignable to "RoborockVacuum" (reportArgumentType) +/homeassistant/components/xiaomi_miio/air_quality.py + /homeassistant/components/xiaomi_miio/air_quality.py:7:5 - error: "AirQualityMonitor" is not exported from module "miio" +   Import from "miio.airqualitymonitor" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/air_quality.py:8:5 - error: "AirQualityMonitorCGDN1" is not exported from module "miio" +   Import from "miio.airqualitymonitor_miot" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/air_quality.py:9:5 - error: "Device" is not exported from module "miio" +   Import from "miio.device" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/air_quality.py:10:5 - error: "DeviceException" is not exported from module "miio" +   Import from "miio.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/air_quality.py:45:7 - error: Base classes for class "AirMonitorB1" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/air_quality.py:119:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/air_quality.py:171:7 - error: Base classes for class "AirMonitorCGDN1" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_miio/alarm_control_panel.py + /homeassistant/components/xiaomi_miio/alarm_control_panel.py:8:18 - error: "DeviceException" is not exported from module "miio" +   Import from "miio.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/xiaomi_miio/binary_sensor.py + /homeassistant/components/xiaomi_miio/binary_sensor.py:10:18 - error: "Device" is not exported from module "miio" +   Import from "miio.device" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/binary_sensor.py:219:7 - error: Base classes for class "XiaomiGenericBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/binary_sensor.py:219:7 - error: Base classes for class "XiaomiGenericBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/binary_sensor.py:237:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "XiaomiMiioBinarySensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/binary_sensor.py:237:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "XiaomiMiioBinarySensorDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_miio/button.py + /homeassistant/components/xiaomi_miio/button.py:8:18 - error: "Device" is not exported from module "miio" +   Import from "miio.device" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/button.py:154:7 - error: Base classes for class "XiaomiGenericCoordinatedButton" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/button.py:154:7 - error: Base classes for class "XiaomiGenericCoordinatedButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/button.py:173:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "XiaomiMiioButtonDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/button.py:173:14 - error: "entity_description" overrides symbol of same name in class "ButtonEntity" +   Variable is mutable so its type is invariant +     Override type "XiaomiMiioButtonDescription" is not the same as base type "ButtonEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_miio/config_flow.py + /homeassistant/components/xiaomi_miio/config_flow.py:414:27 - error: "startswith" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/xiaomi_miio/config_flow.py:419:31 - error: "startswith" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/xiaomi_miio/config_flow.py:424:23 - error: Argument of type "Unknown | Any | None" cannot be assigned to parameter "title" of type "str" in function "async_create_entry" +   Type "Unknown | Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/xiaomi_miio/device.py + /homeassistant/components/xiaomi_miio/device.py:6:18 - error: "Device" is not exported from module "miio" +   Import from "miio.device" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/device.py:6:26 - error: "DeviceException" is not exported from module "miio" +   Import from "miio.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/xiaomi_miio/device_tracker.py + /homeassistant/components/xiaomi_miio/device_tracker.py:7:18 - error: "DeviceException" is not exported from module "miio" +   Import from "miio.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/device_tracker.py:7:35 - error: "WifiRepeater" is not exported from module "miio" +   Import from "miio.wifirepeater" instead (reportPrivateImportUsage) +/homeassistant/components/xiaomi_miio/entity.py + /homeassistant/components/xiaomi_miio/entity.py:9:18 - error: "Device" is not exported from module "miio" +   Import from "miio.device" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/entity.py:9:40 - error: "DeviceException" is not exported from module "miio" +   Import from "miio.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/entity.py:10:34 - error: "SubDevice" is not exported from module "miio.gateway.devices" +   Import from "miio.gateway.devices.subdevice" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/entity.py:47:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/entity.py:88:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/entity.py:175:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/entity.py:190:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_miio/fan.py + /homeassistant/components/xiaomi_miio/fan.py:11:18 - error: "Device" is not exported from module "miio" +   Import from "miio.device" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/fan.py:300:7 - error: Base classes for class "XiaomiGenericDevice" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/fan.py:300:7 - error: Base classes for class "XiaomiGenericDevice" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/fan.py:323:14 - error: "_attr_preset_modes" overrides symbol of same name in class "FanEntity" +   Variable is mutable so its type is invariant +     Override type "list[str]" is not the same as base type "list[str] | None" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/fan.py:331:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/fan.py:379:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/fan.py:958:9 - error: "preset_modes" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/fan.py:1018:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_miio/gateway.py + /homeassistant/components/xiaomi_miio/gateway.py:8:18 - error: "DeviceException" is not exported from module "miio" +   Import from "miio.exceptions" instead (reportPrivateImportUsage) +/homeassistant/components/xiaomi_miio/humidifier.py + /homeassistant/components/xiaomi_miio/humidifier.py:7:18 - error: "Device" is not exported from module "miio" +   Import from "miio.device" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/humidifier.py:113:7 - error: Base classes for class "XiaomiGenericHumidifier" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/humidifier.py:113:7 - error: Base classes for class "XiaomiGenericHumidifier" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/humidifier.py:169:7 - error: Base classes for class "XiaomiAirHumidifier" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/humidifier.py:169:7 - error: Base classes for class "XiaomiAirHumidifier" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/humidifier.py:172:5 - error: "available_modes" overrides symbol of same name in class "HumidifierEntity" +   Variable is mutable so its type is invariant +     Override type "list[str]" is not the same as base type "cached_property" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/humidifier.py:226:9 - error: "mode" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/humidifier.py:231:9 - error: "target_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_miio/light.py + /homeassistant/components/xiaomi_miio/light.py:14:5 - error: "Ceil" is not exported from module "miio" +   Import from "miio.integrations.light" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/light.py:15:5 - error: "Device" is not exported from module "miio" +   Import from "miio.device" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/light.py:16:5 - error: "DeviceException" is not exported from module "miio" +   Import from "miio.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/light.py:17:5 - error: "PhilipsBulb" is not exported from module "miio" +   Import from "miio.integrations.light" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/light.py:18:5 - error: "PhilipsEyecare" is not exported from module "miio" +   Import from "miio.integrations.light" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/light.py:19:5 - error: "PhilipsMoonlight" is not exported from module "miio" +   Import from "miio.integrations.light" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/light.py:257:7 - error: Base classes for class "XiaomiPhilipsAbstractLight" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/light.py:329:38 - error: Operator "*" not supported for types "float" and "int | None" +   Operator "*" not supported for types "float" and "None" when expected type is "_SupportsCeil[int]" (reportOperatorIssue) + /homeassistant/components/xiaomi_miio/light.py:365:38 - error: Operator "*" not supported for types "float" and "int | None" +   Operator "*" not supported for types "float" and "None" when expected type is "_SupportsCeil[int]" (reportOperatorIssue) + /homeassistant/components/xiaomi_miio/light.py:368:19 - error: Cannot access attribute "delay_off_countdown" for class "PhilipsMoonlightStatus" +   Attribute "delay_off_countdown" is unknown (reportAttributeAccessIssue) + /homeassistant/components/xiaomi_miio/light.py:418:5 - error: "_device" overrides symbol of same name in class "XiaomiPhilipsGenericLight" +   Variable is mutable so its type is invariant +     Override type "Ceil | PhilipsBulb | PhilipsMoonlight" is not the same as base type "Ceil | PhilipsBulb | PhilipsEyecare | PhilipsMoonlight" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/light.py:483:17 - error: "brightness" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:484:17 - error: "percent_brightness" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:485:17 - error: "color_temp" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:486:17 - error: "percent_color_temp" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:492:17 - error: "percent_brightness" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:493:17 - error: "percent_color_temp" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:497:36 - error: "color_temp" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:498:41 - error: "brightness" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:503:17 - error: "color_temp" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:504:17 - error: "percent_color_temp" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:510:17 - error: "percent_color_temp" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:514:36 - error: "color_temp" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:548:38 - error: Operator "*" not supported for types "float" and "int | None" +   Operator "*" not supported for types "float" and "None" when expected type is "_SupportsCeil[int]" (reportOperatorIssue) + /homeassistant/components/xiaomi_miio/light.py:558:19 - error: Cannot access attribute "delay_off_countdown" for class "PhilipsMoonlightStatus" +   Attribute "delay_off_countdown" is unknown (reportAttributeAccessIssue) + /homeassistant/components/xiaomi_miio/light.py:579:5 - error: "_device" overrides symbol of same name in class "XiaomiPhilipsBulb" +   Variable is mutable so its type is invariant +     Override type "Ceil" is not the same as base type "Ceil | PhilipsBulb | PhilipsMoonlight" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/light.py:647:5 - error: "_device" overrides symbol of same name in class "XiaomiPhilipsGenericLight" +   Variable is mutable so its type is invariant +     Override type "PhilipsEyecare" is not the same as base type "Ceil | PhilipsBulb | PhilipsEyecare | PhilipsMoonlight" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/light.py:768:5 - error: "_device" overrides symbol of same name in class "XiaomiPhilipsAbstractLight" +   Variable is mutable so its type is invariant +     Override type "PhilipsEyecare" is not the same as base type "Ceil | PhilipsBulb | PhilipsEyecare | PhilipsMoonlight" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/light.py:835:5 - error: "_device" overrides symbol of same name in class "XiaomiPhilipsBulb" +   Variable is mutable so its type is invariant +     Override type "PhilipsMoonlight" is not the same as base type "Ceil | PhilipsBulb | PhilipsMoonlight" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/light.py:869:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/light.py:896:17 - error: "brightness" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:897:17 - error: "percent_brightness" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:898:17 - error: "rgb" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:904:17 - error: "percent_brightness" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:905:17 - error: "rgb" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:909:39 - error: "hs_color" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:910:41 - error: "brightness" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:918:17 - error: "brightness" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:919:17 - error: "percent_brightness" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:920:17 - error: "color_temp" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:921:17 - error: "percent_color_temp" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:927:17 - error: "percent_brightness" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:928:17 - error: "percent_color_temp" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:932:36 - error: "color_temp" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:933:41 - error: "brightness" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:936:48 - error: "rgb" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:939:67 - error: "rgb" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:943:39 - error: "hs_color" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:948:17 - error: "color_temp" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:949:17 - error: "percent_color_temp" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:955:17 - error: "percent_color_temp" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:959:36 - error: "color_temp" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/xiaomi_miio/light.py:1037:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/light.py:1044:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/light.py:1049:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/light.py:1097:7 - error: Base classes for class "XiaomiGatewayBulb" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/light.py:1097:7 - error: Base classes for class "XiaomiGatewayBulb" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/light.py:1105:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/light.py:1115:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_miio/number.py + /homeassistant/components/xiaomi_miio/number.py:9:18 - error: "Device" is not exported from module "miio" +   Import from "miio.device" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/number.py:354:7 - error: Base classes for class "XiaomiNumberEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/number.py:375:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "XiaomiMiioNumberDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/number.py:375:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "XiaomiMiioNumberDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/number.py:378:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_miio/remote.py + /homeassistant/components/xiaomi_miio/remote.py:11:18 - error: "ChuangmiIr" is not exported from module "miio" +   Import from "miio.chuangmi_ir" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/remote.py:11:30 - error: "DeviceException" is not exported from module "miio" +   Import from "miio.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/remote.py:214:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_miio/select.py + /homeassistant/components/xiaomi_miio/select.py:9:18 - error: "Device" is not exported from module "miio" +   Import from "miio.device" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/select.py:237:7 - error: Base classes for class "XiaomiSelector" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/select.py:237:7 - error: Base classes for class "XiaomiSelector" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/select.py:254:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "XiaomiMiioSelectDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/select.py:254:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "XiaomiMiioSelectDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/select.py:305:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_miio/sensor.py + /homeassistant/components/xiaomi_miio/sensor.py:10:18 - error: "AirQualityMonitor" is not exported from module "miio" +   Import from "miio.airqualitymonitor" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/sensor.py:10:37 - error: "Device" is not exported from module "miio" +   Import from "miio.device" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/sensor.py:10:59 - error: "DeviceException" is not exported from module "miio" +   Import from "miio.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/sensor.py:11:34 - error: "SubDevice" is not exported from module "miio.gateway.devices" +   Import from "miio.gateway.devices.subdevice" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/sensor.py:857:7 - error: Base classes for class "XiaomiGenericSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/sensor.py:857:7 - error: Base classes for class "XiaomiGenericSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/sensor.py:874:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "XiaomiMiioSensorDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/sensor.py:874:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "XiaomiMiioSensorDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/sensor.py:925:7 - error: Base classes for class "XiaomiAirQualityMonitor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/sensor.py:980:7 - error: Base classes for class "XiaomiGatewaySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/sensor.py:980:7 - error: Base classes for class "XiaomiGatewaySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/sensor.py:997:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_miio/switch.py + /homeassistant/components/xiaomi_miio/switch.py:12:5 - error: "AirConditioningCompanionV3" is not exported from module "miio" +   Import from "miio.airconditioningcompanion" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/switch.py:13:5 - error: "ChuangmiPlug" is not exported from module "miio" +   Import from "miio.chuangmi_plug" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/switch.py:14:5 - error: "Device" is not exported from module "miio" +   Import from "miio.device" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/switch.py:15:5 - error: "DeviceException" is not exported from module "miio" +   Import from "miio.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/switch.py:16:5 - error: "PowerStrip" is not exported from module "miio" +   Import from "miio.powerstrip" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/switch.py:18:34 - error: "SubDevice" is not exported from module "miio.gateway.devices" +   Import from "miio.gateway.devices.subdevice" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/switch.py:529:7 - error: Base classes for class "XiaomiGenericCoordinatedSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/switch.py:550:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "XiaomiMiioSwitchDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/switch.py:550:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "XiaomiMiioSwitchDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/switch.py:562:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/switch.py:765:7 - error: Base classes for class "XiaomiGatewaySwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/switch.py:765:7 - error: Base classes for class "XiaomiGatewaySwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/switch.py:786:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/switch.py:803:7 - error: Base classes for class "XiaomiPlugGenericSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/switch.py:878:73 - error: Cannot access attribute "temperature" for class "AirConditioningCompanionStatus" +   Attribute "temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/xiaomi_miio/switch.py:918:5 - error: "_device" overrides symbol of same name in class "XiaomiPlugGenericSwitch" +   Variable is mutable so its type is invariant +     Override type "PowerStrip" is not the same as base type "AirConditioningCompanionV3 | ChuangmiPlug | PowerStrip" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/switch.py:995:5 - error: "_device" overrides symbol of same name in class "XiaomiPlugGenericSwitch" +   Variable is mutable so its type is invariant +     Override type "ChuangmiPlug" is not the same as base type "AirConditioningCompanionV3 | ChuangmiPlug | PowerStrip" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/switch.py:1087:5 - error: "_device" overrides symbol of same name in class "XiaomiPlugGenericSwitch" +   Variable is mutable so its type is invariant +     Override type "AirConditioningCompanionV3" is not the same as base type "AirConditioningCompanionV3 | ChuangmiPlug | PowerStrip" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_miio/typing.py + /homeassistant/components/xiaomi_miio/typing.py:6:18 - error: "Device" is not exported from module "miio" +   Import from "miio.device" instead (reportPrivateImportUsage) +/homeassistant/components/xiaomi_miio/vacuum.py + /homeassistant/components/xiaomi_miio/vacuum.py:9:18 - error: "DeviceException" is not exported from module "miio" +   Import from "miio.exceptions" instead (reportPrivateImportUsage) + /homeassistant/components/xiaomi_miio/vacuum.py:177:7 - error: Base classes for class "MiroboVacuum" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/vacuum.py:177:7 - error: Base classes for class "MiroboVacuum" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/vacuum.py:203:9 - error: "activity" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[VacuumActivity | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/vacuum.py:213:9 - error: "battery_level" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/vacuum.py:218:9 - error: "fan_speed" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/vacuum.py:229:9 - error: "fan_speed_list" overrides symbol of same name in class "StateVacuumEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/xiaomi_miio/vacuum.py:248:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xiaomi_tv/media_player.py + /homeassistant/components/xiaomi_tv/media_player.py:7:8 - error: Import "pymitv" could not be resolved (reportMissingImports) +/homeassistant/components/xmpp/notify.py + /homeassistant/components/xmpp/notify.py:334:54 - error: "get" is not a known attribute of "None" (reportOptionalMemberAccess) +/homeassistant/components/xs1/__init__.py + /homeassistant/components/xs1/__init__.py:6:8 - error: Import "xs1_api_client" could not be resolved (reportMissingImports) +/homeassistant/components/xs1/climate.py + /homeassistant/components/xs1/climate.py:7:6 - error: Import "xs1_api_client.api_constants" could not be resolved (reportMissingImports) + /homeassistant/components/xs1/climate.py:8:6 - error: Import "xs1_api_client.device.actuator" could not be resolved (reportMissingImports) + /homeassistant/components/xs1/climate.py:9:6 - error: Import "xs1_api_client.device.sensor" could not be resolved (reportMissingImports) + /homeassistant/components/xs1/climate.py:67:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xs1/climate.py:72:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xs1/climate.py:80:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/xs1/climate.py:85:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xs1/entity.py + /homeassistant/components/xs1/entity.py:5:6 - error: Import "xs1_api_client.device" could not be resolved (reportMissingImports) +/homeassistant/components/xs1/sensor.py + /homeassistant/components/xs1/sensor.py:5:6 - error: Import "xs1_api_client.api_constants" could not be resolved (reportMissingImports) + /homeassistant/components/xs1/sensor.py:6:6 - error: Import "xs1_api_client.device.actuator" could not be resolved (reportMissingImports) + /homeassistant/components/xs1/sensor.py:7:6 - error: Import "xs1_api_client.device.sensor" could not be resolved (reportMissingImports) + /homeassistant/components/xs1/sensor.py:49:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xs1/sensor.py:54:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/xs1/sensor.py:59:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/xs1/switch.py + /homeassistant/components/xs1/switch.py:7:6 - error: Import "xs1_api_client.api_constants" could not be resolved (reportMissingImports) + /homeassistant/components/xs1/switch.py:8:6 - error: Import "xs1_api_client.device.actuator" could not be resolved (reportMissingImports) + /homeassistant/components/xs1/switch.py:40:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/xs1/switch.py:45:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/yale/binary_sensor.py + /homeassistant/components/yale/binary_sensor.py:75:18 - error: Argument of type "(data: YaleData, detail: DoorbellDetail | LockDetail) -> bool" cannot be assigned to parameter "value_fn" of type "(YaleData, DoorbellDetail | LockDetail) -> (Activity | None)" in function "__init__" +   Type "(data: YaleData, detail: DoorbellDetail | LockDetail) -> bool" is not assignable to type "(YaleData, DoorbellDetail | LockDetail) -> (Activity | None)" +     Function return type "bool" is incompatible with type "Activity | None" +       Type "bool" is not assignable to type "Activity | None" +         "bool" is not assignable to "Activity" +         "bool" is not assignable to "None" (reportArgumentType) + /homeassistant/components/yale/binary_sensor.py:103:19 - error: Cannot access attribute "doorsense" for class "DoorbellDetail" +   Attribute "doorsense" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/binary_sensor.py:106:19 - error: Cannot access attribute "doorbell" for class "DoorbellDetail" +   Attribute "doorbell" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/binary_sensor.py:130:46 - error: Argument of type "DoorbellDetail | LockDetail" cannot be assigned to parameter "lock_detail" of type "LockDetail" in function "update_lock_detail_from_activity" +   Type "DoorbellDetail | LockDetail" is not assignable to type "LockDetail" +     "DoorbellDetail" is not assignable to "LockDetail" (reportArgumentType) + /homeassistant/components/yale/binary_sensor.py:130:60 - error: Argument of type "Activity" cannot be assigned to parameter "activity" of type "LockActivityTypes" in function "update_lock_detail_from_activity" +   Type "Activity" is not assignable to type "LockActivityTypes" +     "Activity" is not assignable to "LockOperationActivity" +     "Activity" is not assignable to "DoorOperationActivity" +     "Activity" is not assignable to "BridgeOperationActivity" (reportArgumentType) + /homeassistant/components/yale/binary_sensor.py:132:30 - error: Cannot access attribute "set_online" for class "DoorbellDetail" +   Attribute "set_online" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/binary_sensor.py:135:46 - error: Argument of type "DoorbellDetail | LockDetail" cannot be assigned to parameter "lock_detail" of type "LockDetail" in function "update_lock_detail_from_activity" +   Type "DoorbellDetail | LockDetail" is not assignable to type "LockDetail" +     "DoorbellDetail" is not assignable to "LockDetail" (reportArgumentType) + /homeassistant/components/yale/binary_sensor.py:135:60 - error: Argument of type "Activity" cannot be assigned to parameter "activity" of type "LockActivityTypes" in function "update_lock_detail_from_activity" +   Type "Activity" is not assignable to type "LockActivityTypes" +     "Activity" is not assignable to "LockOperationActivity" +     "Activity" is not assignable to "DoorOperationActivity" +     "Activity" is not assignable to "BridgeOperationActivity" (reportArgumentType) + /homeassistant/components/yale/binary_sensor.py:136:45 - error: Cannot access attribute "bridge_is_online" for class "DoorbellDetail" +   Attribute "bridge_is_online" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/binary_sensor.py:137:41 - error: Cannot access attribute "door_state" for class "DoorbellDetail" +   Attribute "door_state" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/binary_sensor.py:143:5 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "YaleDoorbellBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/yale/camera.py + /homeassistant/components/yale/camera.py:57:28 - error: Cannot assign to attribute "_attr_model" for class "YaleCamera*" +   Type "str | int | Unknown | None" is not assignable to type "str | None" +     Type "int" is not assignable to type "str | None" +       "int" is not assignable to "str" +       "int" is not assignable to "None" (reportAttributeAccessIssue) + /homeassistant/components/yale/camera.py:60:9 - error: "is_recording" overrides symbol of same name in class "Camera" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/yale/camera.py:62:29 - error: Cannot access attribute "has_subscription" for class "Lock" +   Attribute "has_subscription" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/camera.py:62:29 - error: Cannot access attribute "has_subscription" for class "KeypadDetail" +   Attribute "has_subscription" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/camera.py:76:49 - error: Argument of type "DoorbellDetail | LockDetail" cannot be assigned to parameter "doorbell_detail" of type "DoorbellDetail" in function "update_doorbell_image_from_activity" +   Type "DoorbellDetail | LockDetail" is not assignable to type "DoorbellDetail" +     "LockDetail" is not assignable to "DoorbellDetail" (reportArgumentType) + /homeassistant/components/yale/camera.py:76:63 - error: Argument of type "Activity" cannot be assigned to parameter "activity" of type "DoorbellActivityTypes" in function "update_doorbell_image_from_activity" +   Type "Activity" is not assignable to type "DoorbellActivityTypes" +     "Activity" is not assignable to "DoorbellImageCaptureActivity" +     "Activity" is not assignable to "DoorbellMotionActivity" +     "Activity" is not assignable to "BridgeOperationActivity" (reportArgumentType) + /homeassistant/components/yale/camera.py:84:48 - error: Cannot access attribute "image_url" for class "LockDetail" +   Attribute "image_url" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/camera.py:88:44 - error: Cannot access attribute "image_url" for class "LockDetail" +   Attribute "image_url" is unknown (reportAttributeAccessIssue) +/homeassistant/components/yale/data.py + /homeassistant/components/yale/data.py:30:17 - error: Argument of type "dict[str, Unknown | str | int | None]" cannot be assigned to parameter "__map" of type "YaleXSBLEDiscovery" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /homeassistant/components/yale/data.py:47:40 - error: Argument of type "type[HomeAssistantError]" cannot be assigned to parameter "error_exception_class" of type "Exception" in function "__init__" +   Type "type[HomeAssistantError]" is not assignable to type "Exception" (reportArgumentType) +/homeassistant/components/yale/entity.py + /homeassistant/components/yale/entity.py:43:19 - error: Argument of type "str | int | Unknown | None" cannot be assigned to parameter "model" of type "str | None" in function "__init__" +   Type "str | int | Unknown | None" is not assignable to type "str | None" +     Type "int" is not assignable to type "str | None" +       "int" is not assignable to "str" +       "int" is not assignable to "None" (reportArgumentType) + /homeassistant/components/yale/entity.py:59:34 - error: Cannot access attribute "bridge" for class "DoorbellDetail" +   Attribute "bridge" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/entity.py:59:58 - error: Cannot access attribute "bridge" for class "DoorbellDetail" +   Attribute "bridge" is unknown (reportAttributeAccessIssue) +/homeassistant/components/yale/event.py + /homeassistant/components/yale/event.py:70:74 - error: Cannot access attribute "doorbell" for class "DoorbellDetail" +   Attribute "doorbell" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/event.py:83:5 - error: "entity_description" overrides symbol of same name in class "EventEntity" +   Variable is mutable so its type is invariant +     Override type "YaleEventEntityDescription" is not the same as base type "EventEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/yale/lock.py + /homeassistant/components/yale/lock.py:38:7 - error: Base classes for class "YaleLock" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale/lock.py:38:7 - error: Base classes for class "YaleLock" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale/lock.py:38:7 - error: Base classes for class "YaleLock" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale/lock.py:38:7 - error: Base classes for class "YaleLock" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale/lock.py:38:7 - error: Base classes for class "YaleLock" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale/lock.py:47:25 - error: Cannot access attribute "unlatch_supported" for class "DoorbellDetail" +   Attribute "unlatch_supported" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/lock.py:73:30 - error: Cannot assign to attribute "lock_status" for class "DoorbellDetail" +   Attribute "lock_status" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/lock.py:74:30 - error: Cannot assign to attribute "lock_status_datetime" for class "DoorbellDetail" +   Attribute "lock_status_datetime" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/lock.py:79:50 - error: Argument of type "DoorbellDetail | LockDetail" cannot be assigned to parameter "lock_detail" of type "LockDetail" in function "update_lock_detail_from_activity" +   Type "DoorbellDetail | LockDetail" is not assignable to type "LockDetail" +     "DoorbellDetail" is not assignable to "LockDetail" (reportArgumentType) + /homeassistant/components/yale/lock.py:79:64 - error: Argument of type "ActivityTypes" cannot be assigned to parameter "activity" of type "LockActivityTypes" in function "update_lock_detail_from_activity" +   Type "ActivityTypes" is not assignable to type "LockActivityTypes" +     Type "DoorbellDingActivity" is not assignable to type "LockActivityTypes" +       "DoorbellDingActivity" is not assignable to "LockOperationActivity" +       "DoorbellDingActivity" is not assignable to "DoorOperationActivity" +       "DoorbellDingActivity" is not assignable to "BridgeOperationActivity" (reportArgumentType) + /homeassistant/components/yale/lock.py:89:45 - error: Cannot access attribute "bridge_is_online" for class "DoorbellDetail" +   Attribute "bridge_is_online" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/lock.py:91:46 - error: Cannot access attribute "lock_status" for class "DoorbellDetail" +   Attribute "lock_status" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/lock.py:92:46 - error: Cannot access attribute "lock_status" for class "DoorbellDetail" +   Attribute "lock_status" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/lock.py:101:51 - error: Cannot access attribute "operated_by" for class "Activity" +   Attribute "operated_by" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/lock.py:106:13 - error: Argument of type "Activity | None" cannot be assigned to parameter "activity1" of type "LockActivityTypes | None" in function "get_latest_activity" +   Type "Activity | None" is not assignable to type "LockActivityTypes | None" +     Type "Activity" is not assignable to type "LockActivityTypes | None" +       "Activity" is not assignable to "LockOperationActivity" +       "Activity" is not assignable to "DoorOperationActivity" +       "Activity" is not assignable to "BridgeOperationActivity" +       "Activity" is not assignable to "None" (reportArgumentType) + /homeassistant/components/yale/lock.py:106:45 - error: Argument of type "Activity | None" cannot be assigned to parameter "activity2" of type "LockActivityTypes | None" in function "get_latest_activity" +   Type "Activity | None" is not assignable to type "LockActivityTypes | None" +     Type "Activity" is not assignable to type "LockActivityTypes | None" +       "Activity" is not assignable to "LockOperationActivity" +       "Activity" is not assignable to "DoorOperationActivity" +       "Activity" is not assignable to "BridgeOperationActivity" +       "Activity" is not assignable to "None" (reportArgumentType) + /homeassistant/components/yale/lock.py:109:30 - error: Cannot access attribute "set_online" for class "DoorbellDetail" +   Attribute "set_online" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/lock.py:110:46 - error: Argument of type "DoorbellDetail | LockDetail" cannot be assigned to parameter "lock_detail" of type "LockDetail" in function "update_lock_detail_from_activity" +   Type "DoorbellDetail | LockDetail" is not assignable to type "LockDetail" +     "DoorbellDetail" is not assignable to "LockDetail" (reportArgumentType) + /homeassistant/components/yale/lock.py:113:46 - error: Argument of type "DoorbellDetail | LockDetail" cannot be assigned to parameter "lock_detail" of type "LockDetail" in function "update_lock_detail_from_activity" +   Type "DoorbellDetail | LockDetail" is not assignable to type "LockDetail" +     "DoorbellDetail" is not assignable to "LockDetail" (reportArgumentType) + /homeassistant/components/yale/lock.py:113:54 - error: Argument of type "Activity" cannot be assigned to parameter "activity" of type "LockActivityTypes" in function "update_lock_detail_from_activity" +   Type "Activity" is not assignable to type "LockActivityTypes" +     "Activity" is not assignable to "LockOperationActivity" +     "Activity" is not assignable to "DoorOperationActivity" +     "Activity" is not assignable to "BridgeOperationActivity" (reportArgumentType) + /homeassistant/components/yale/lock.py:128:29 - error: Cannot access attribute "keypad" for class "DoorbellDetail" +   Attribute "keypad" is unknown (reportAttributeAccessIssue) +/homeassistant/components/yale/sensor.py + /homeassistant/components/yale/sensor.py:94:48 - error: Argument of type "DoorbellDetail | LockDetail" cannot be assigned to parameter of type "LockDetail" +   Type "DoorbellDetail | LockDetail" is not assignable to type "LockDetail" +     "DoorbellDetail" is not assignable to "LockDetail" (reportArgumentType) + /homeassistant/components/yale/sensor.py:98:29 - error: Cannot access attribute "keypad" for class "DoorbellDetail" +   Attribute "keypad" is unknown (reportAttributeAccessIssue) + /homeassistant/components/yale/sensor.py:106:27 - error: Type "Doorbell" cannot be assigned to type variable "T@YaleBatterySensor" +   Type "Doorbell" is not assignable to upper bound "LockDetail | KeypadDetail" for type variable "T@YaleBatterySensor" +     Type "Doorbell" is not assignable to type "LockDetail | KeypadDetail" +       "Doorbell" is not assignable to "LockDetail" +       "Doorbell" is not assignable to "KeypadDetail" (reportInvalidTypeArguments) + /homeassistant/components/yale/sensor.py:108:48 - error: Argument of type "DoorbellDetail | LockDetail" cannot be assigned to parameter of type "LockDetail" +   Type "DoorbellDetail | LockDetail" is not assignable to type "LockDetail" +     "DoorbellDetail" is not assignable to "LockDetail" (reportArgumentType) + /homeassistant/components/yale/sensor.py:139:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yale/sensor.py:203:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "YaleSensorEntityDescription[T@YaleBatterySensor]" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/yale/sensor.py:210:68 - error: Argument of type "DoorbellDetail | LockDetail" cannot be assigned to parameter of type "T@YaleBatterySensor" +   Type "DoorbellDetail | LockDetail" is not assignable to type "T@YaleBatterySensor" (reportArgumentType) +/homeassistant/components/yale/util.py + /homeassistant/components/yale/util.py:38:12 - error: Type "Literal[False]" is not assignable to return type "Activity | None" +   Type "Literal[False]" is not assignable to type "Activity | None" +     "Literal[False]" is not assignable to "Activity" +     "Literal[False]" is not assignable to "None" (reportReturnType) +/homeassistant/components/yale_smart_alarm/alarm_control_panel.py + /homeassistant/components/yale_smart_alarm/alarm_control_panel.py:93:12 - error: "alarm_state" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/yale_smart_alarm/alarm_control_panel.py:103:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/alarm_control_panel.py:110:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/yale_smart_alarm/binary_sensor.py + /homeassistant/components/yale_smart_alarm/binary_sensor.py:68:7 - error: Base classes for class "YaleDoorSensor" define variable "_attr_device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/binary_sensor.py:68:7 - error: Base classes for class "YaleDoorSensor" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/binary_sensor.py:68:7 - error: Base classes for class "YaleDoorSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/binary_sensor.py:74:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/binary_sensor.py:79:7 - error: Base classes for class "YaleDoorBatterySensor" define variable "_attr_device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/binary_sensor.py:79:7 - error: Base classes for class "YaleDoorBatterySensor" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/binary_sensor.py:79:7 - error: Base classes for class "YaleDoorBatterySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/binary_sensor.py:94:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/binary_sensor.py:100:7 - error: Base classes for class "YaleProblemSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/binary_sensor.py:112:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "BinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/binary_sensor.py:118:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/yale_smart_alarm/button.py + /homeassistant/components/yale_smart_alarm/button.py:39:7 - error: Base classes for class "YalePanicButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/button.py:51:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ButtonEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/yale_smart_alarm/const.py + /homeassistant/components/yale_smart_alarm/const.py:6:5 - error: "YALE_STATE_ARM_FULL" is not exported from module "yalesmartalarmclient.client" +   Import from "yalesmartalarmclient.const" instead (reportPrivateImportUsage) + /homeassistant/components/yale_smart_alarm/const.py:7:5 - error: "YALE_STATE_ARM_PARTIAL" is not exported from module "yalesmartalarmclient.client" +   Import from "yalesmartalarmclient.const" instead (reportPrivateImportUsage) + /homeassistant/components/yale_smart_alarm/const.py:8:5 - error: "YALE_STATE_DISARM" is not exported from module "yalesmartalarmclient.client" +   Import from "yalesmartalarmclient.const" instead (reportPrivateImportUsage) +/homeassistant/components/yale_smart_alarm/entity.py + /homeassistant/components/yale_smart_alarm/entity.py:22:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/entity.py:23:14 - error: "_attr_device_info" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "DeviceInfo" is not the same as base type "DeviceInfo | None" (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/entity.py:40:14 - error: "_attr_unique_id" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/entity.py:51:7 - error: Base classes for class "YaleAlarmEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/yale_smart_alarm/lock.py + /homeassistant/components/yale_smart_alarm/lock.py:47:7 - error: Base classes for class "YaleDoorlock" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/lock.py:47:7 - error: Base classes for class "YaleDoorlock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/lock.py:100:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/lock.py:105:9 - error: "is_open" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/yale_smart_alarm/select.py + /homeassistant/components/yale_smart_alarm/select.py:34:7 - error: Base classes for class "YaleLockVolumeSelect" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/select.py:34:7 - error: Base classes for class "YaleLockVolumeSelect" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/yale_smart_alarm/sensor.py + /homeassistant/components/yale_smart_alarm/sensor.py:32:7 - error: Base classes for class "YaleTemperatureSensor" define variable "_attr_device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/sensor.py:32:7 - error: Base classes for class "YaleTemperatureSensor" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/sensor.py:32:7 - error: Base classes for class "YaleTemperatureSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/sensor.py:39:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/yale_smart_alarm/switch.py + /homeassistant/components/yale_smart_alarm/switch.py:34:7 - error: Base classes for class "YaleAutolockSwitch" define variable "_attr_unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yale_smart_alarm/switch.py:34:7 - error: Base classes for class "YaleAutolockSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/yalexs_ble/config_flow.py + /homeassistant/components/yalexs_ble/config_flow.py:9:35 - error: "BleakError" is not exported from module "bleak_retry_connector" +   Import from "bleak.exc" instead (reportPrivateImportUsage) + /homeassistant/components/yalexs_ble/config_flow.py:9:47 - error: "BLEDevice" is not exported from module "bleak_retry_connector" +   Import from "bleak.backends.device" instead (reportPrivateImportUsage) + /homeassistant/components/yalexs_ble/config_flow.py:153:9 - error: Method "is_matching" overrides class "ConfigFlow" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "ConfigFlow", override parameter is type "YalexsConfigFlow" +     "ConfigFlow" is not assignable to "YalexsConfigFlow" (reportIncompatibleMethodOverride) +/homeassistant/components/yalexs_ble/sensor.py + /homeassistant/components/yalexs_ble/sensor.py:96:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "YaleXSBLESensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/yalexs_ble/sensor.py:96:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "YaleXSBLESensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/yamaha/media_player.py + /homeassistant/components/yamaha/media_player.py:122:24 - error: Argument of type "Any | None" cannot be assigned to parameter "model_name" of type "str" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/yamaha/media_player.py:123:27 - error: Argument of type "Any | None" cannot be assigned to parameter "friendly_name" of type "str" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/yamaha/media_player.py:133:47 - error: Argument of type "Any | None" cannot be assigned to parameter "model_name" of type "str" in function "__init__" +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/yamaha/media_player.py:287:13 - error: Argument of type "Generator[str | None, None, None]" cannot be assigned to parameter "iterable" of type "Iterable[SupportsRichComparisonT@sorted]" in function "sorted" +   "Generator[str | None, None, None]" is not assignable to "Iterable[SupportsRichComparisonT@sorted]" +     Type parameter "_T_co@Iterable" is covariant, but "str | None" is not a subtype of "SupportsRichComparisonT@sorted" +       Type "str | None" is not assignable to type "SupportsRichComparison" +         Type "str | None" is not assignable to type "SupportsRichComparison" +           Type "None" is not assignable to type "SupportsRichComparison" (reportArgumentType) + /homeassistant/components/yamaha/media_player.py:293:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha/media_player.py:299:35 - error: "replace" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/yamaha/media_player.py:308:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha/media_player.py:420:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha/media_player.py:427:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha/media_player.py:434:9 - error: "media_content_type" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaType | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha/media_player.py:442:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/yamaha_musiccast/config_flow.py + /homeassistant/components/yamaha_musiccast/config_flow.py:92:13 - error: Argument of type "str | None" cannot be assigned to parameter "location" of type "str" in function "check_yamaha_ssdp" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/yamaha_musiccast/entity.py + /homeassistant/components/yamaha_musiccast/entity.py:55:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/entity.py:74:64 - error: "values" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/yamaha_musiccast/entity.py:77:13 - error: Could not assign item in TypedDict +   Type "Any | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportGeneralTypeIssues) + /homeassistant/components/yamaha_musiccast/entity.py:110:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/yamaha_musiccast/media_player.py + /homeassistant/components/yamaha_musiccast/media_player.py:78:7 - error: Base classes for class "MusicCastMediaPlayer" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:78:7 - error: Base classes for class "MusicCastMediaPlayer" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:143:9 - error: "media_content_id" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:148:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:148:9 - error: "state" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerState | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:180:9 - error: "volume_level" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:188:9 - error: "is_volume_muted" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:195:9 - error: "shuffle" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:202:9 - error: "sound_mode" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:207:9 - error: "sound_mode_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:217:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:405:9 - error: "media_image_url" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:412:9 - error: "media_title" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:422:9 - error: "media_artist" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:432:9 - error: "media_album_name" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:437:9 - error: "repeat" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[RepeatMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:446:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:446:9 - error: "supported_features" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[MediaPlayerEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:523:9 - error: "source" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:528:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:533:9 - error: "media_duration" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:541:9 - error: "media_position" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:549:9 - error: "media_position_updated_at" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[datetime | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/media_player.py:662:9 - error: "group_members" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/yamaha_musiccast/number.py + /homeassistant/components/yamaha_musiccast/number.py:41:7 - error: Base classes for class "NumberCapability" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/number.py:41:7 - error: Base classes for class "NumberCapability" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/number.py:41:7 - error: Base classes for class "NumberCapability" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/number.py:59:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/number.py:65:35 - error: Argument of type "float" cannot be assigned to parameter "value" of type "int" in function "set" +   "float" is not assignable to "int" (reportArgumentType) +/homeassistant/components/yamaha_musiccast/select.py + /homeassistant/components/yamaha_musiccast/select.py:41:7 - error: Base classes for class "SelectableCapability" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/select.py:41:7 - error: Base classes for class "SelectableCapability" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/select.py:41:7 - error: Base classes for class "SelectableCapability" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/select.py:64:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/yamaha_musiccast/switch.py + /homeassistant/components/yamaha_musiccast/switch.py:41:7 - error: Base classes for class "SwitchCapability" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/switch.py:41:7 - error: Base classes for class "SwitchCapability" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/switch.py:41:7 - error: Base classes for class "SwitchCapability" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yamaha_musiccast/switch.py:47:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/yardian/binary_sensor.py + /homeassistant/components/yardian/binary_sensor.py:111:7 - error: Base classes for class "YardianBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yardian/binary_sensor.py:126:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "YardianBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/yardian/binary_sensor.py:126:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "YardianBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/yardian/binary_sensor.py:131:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/yardian/config_flow.py + /homeassistant/components/yardian/config_flow.py:64:48 - error: Could not access item in TypedDict +   "yid" is not a required key in "DeviceInfo", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/yardian/switch.py + /homeassistant/components/yardian/switch.py:63:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yardian/switch.py:68:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yardian/switch.py:73:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/yeelight/binary_sensor.py + /homeassistant/components/yeelight/binary_sensor.py:29:7 - error: Base classes for class "YeelightNightlightModeSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yeelight/binary_sensor.py:46:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yeelight/binary_sensor.py:51:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/yeelight/config_flow.py + /homeassistant/components/yeelight/config_flow.py:146:9 - error: Method "is_matching" overrides class "ConfigFlow" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "ConfigFlow", override parameter is type "YeelightConfigFlow" +     "ConfigFlow" is not assignable to "YeelightConfigFlow" (reportIncompatibleMethodOverride) +/homeassistant/components/yeelight/entity.py + /homeassistant/components/yeelight/entity.py:32:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yeelight/entity.py:37:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/yeelight/light.py + /homeassistant/components/yeelight/light.py:411:7 - error: Base classes for class "YeelightBaseLight" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yeelight/light.py:411:7 - error: Base classes for class "YeelightBaseLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yeelight/light.py:469:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yeelight/light.py:481:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yeelight/light.py:486:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yeelight/light.py:513:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yeelight/light.py:523:9 - error: "rgb_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yeelight/light.py:536:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yeelight/light.py:568:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yeelight/light.py:710:16 - error: Argument of type "Unknown | None" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "Unknown | None" is not assignable to type "ConvertibleToInt" +     Type "None" is not assignable to type "ConvertibleToInt" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "None" is incompatible with protocol "SupportsInt" +         "__int__" is not present +       "None" is incompatible with protocol "SupportsIndex" + ... (reportArgumentType) + /homeassistant/components/yeelight/light.py:710:16 - error: Argument of type "Unknown | None" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "Unknown | None" is not assignable to type "ConvertibleToInt" +     Type "None" is not assignable to type "ConvertibleToInt" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "None" is incompatible with protocol "SupportsInt" +         "__int__" is not present +       "None" is incompatible with protocol "SupportsIndex" (reportArgumentType) + /homeassistant/components/yeelight/light.py:725:77 - error: "duration" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/yeelight/light.py:729:72 - error: "duration" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/yeelight/light.py:733:27 - error: "count" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/yeelight/light.py:880:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yeelight/light.py:882:26 - error: Argument of type "Unknown | None" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "Unknown | None" is not assignable to type "ConvertibleToInt" +     Type "None" is not assignable to type "ConvertibleToInt" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "None" is incompatible with protocol "SupportsInt" +         "__int__" is not present +       "None" is incompatible with protocol "SupportsIndex" + ... (reportArgumentType) + /homeassistant/components/yeelight/light.py:882:26 - error: Argument of type "Unknown | None" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "Unknown | None" is not assignable to type "ConvertibleToInt" +     Type "None" is not assignable to type "ConvertibleToInt" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "None" is incompatible with protocol "SupportsInt" +         "__int__" is not present +       "None" is incompatible with protocol "SupportsIndex" (reportArgumentType) + /homeassistant/components/yeelight/light.py:938:7 - error: Base classes for class "YeelightColorLightWithoutNightlightSwitch" define variable "color_mode" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yeelight/light.py:952:7 - error: Base classes for class "YeelightColorLightWithNightlightSwitch" define variable "color_mode" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yeelight/light.py:1019:9 - error: "supported_features" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[LightEntityFeature]" (reportIncompatibleVariableOverride) +/homeassistant/components/yeelightsunflower/light.py + /homeassistant/components/yeelightsunflower/light.py:38:29 - error: "Hub" is not a known attribute of module "yeelightsunflower" (reportAttributeAccessIssue) + /homeassistant/components/yeelightsunflower/light.py:53:49 - error: "Bulb" is not a known attribute of module "yeelightsunflower" (reportAttributeAccessIssue) + /homeassistant/components/yeelightsunflower/light.py:64:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/yeelightsunflower/light.py:69:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/yi/camera.py + /homeassistant/components/yi/camera.py:7:6 - error: Import "aioftp" could not be resolved (reportMissingImports) +/homeassistant/components/yolink/binary_sensor.py + /homeassistant/components/yolink/binary_sensor.py:151:7 - error: Base classes for class "YoLinkBinarySensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/binary_sensor.py:164:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "YoLinkBinarySensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/binary_sensor.py:164:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "YoLinkBinarySensorEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/binary_sensor.py:182:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/yolink/climate.py + /homeassistant/components/yolink/climate.py:62:7 - error: Base classes for class "YoLinkClimateEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/climate.py:62:7 - error: Base classes for class "YoLinkClimateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/yolink/cover.py + /homeassistant/components/yolink/cover.py:40:7 - error: Base classes for class "YoLinkCoverEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/cover.py:40:7 - error: Base classes for class "YoLinkCoverEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/yolink/entity.py + /homeassistant/components/yolink/entity.py:51:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/yolink/light.py + /homeassistant/components/yolink/light.py:35:7 - error: Base classes for class "YoLinkDimmerEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/light.py:35:7 - error: Base classes for class "YoLinkDimmerEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/light.py:40:5 - error: "_attr_supported_color_modes" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "set[ColorMode]" is not the same as base type "set[ColorMode] | set[str] | None" (reportIncompatibleVariableOverride) +/homeassistant/components/yolink/lock.py + /homeassistant/components/yolink/lock.py:36:7 - error: Base classes for class "YoLinkLockEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/lock.py:36:7 - error: Base classes for class "YoLinkLockEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/yolink/number.py + /homeassistant/components/yolink/number.py:90:7 - error: Base classes for class "YoLinkNumberTypeConfigEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/number.py:90:7 - error: Base classes for class "YoLinkNumberTypeConfigEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/number.py:103:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "YoLinkNumberTypeConfigEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/number.py:103:14 - error: "entity_description" overrides symbol of same name in class "NumberEntity" +   Variable is mutable so its type is invariant +     Override type "YoLinkNumberTypeConfigEntityDescription" is not the same as base type "NumberEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/yolink/select.py + /homeassistant/components/yolink/select.py:83:7 - error: Base classes for class "YoLinkSelectEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/select.py:83:7 - error: Base classes for class "YoLinkSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/select.py:96:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "YoLinkSelectEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/select.py:96:14 - error: "entity_description" overrides symbol of same name in class "SelectEntity" +   Variable is mutable so its type is invariant +     Override type "YoLinkSelectEntityDescription" is not the same as base type "SelectEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/yolink/sensor.py + /homeassistant/components/yolink/sensor.py:367:7 - error: Base classes for class "YoLinkSensorEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/sensor.py:380:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "YoLinkSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/sensor.py:380:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "YoLinkSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/sensor.py:398:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/yolink/services.py + /homeassistant/components/yolink/services.py:43:16 - error: "entry" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/yolink/services.py:43:33 - error: "entry" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/yolink/services.py:48:44 - error: "entry" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/yolink/siren.py + /homeassistant/components/yolink/siren.py:66:7 - error: Base classes for class "YoLinkSirenEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/siren.py:66:7 - error: Base classes for class "YoLinkSirenEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/siren.py:81:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "YoLinkSirenEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/siren.py:81:14 - error: "entity_description" overrides symbol of same name in class "SirenEntity" +   Variable is mutable so its type is invariant +     Override type "YoLinkSirenEntityDescription" is not the same as base type "SirenEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/yolink/switch.py + /homeassistant/components/yolink/switch.py:136:7 - error: Base classes for class "YoLinkSwitchEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/switch.py:136:7 - error: Base classes for class "YoLinkSwitchEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/switch.py:149:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "YoLinkSwitchEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/switch.py:149:14 - error: "entity_description" overrides symbol of same name in class "SwitchEntity" +   Variable is mutable so its type is invariant +     Override type "YoLinkSwitchEntityDescription" is not the same as base type "SwitchEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/switch.py:174:41 - error: Type "None" is not assignable to declared type "ClientRequest" +   "None" is not assignable to "ClientRequest" (reportAssignmentType) +/homeassistant/components/yolink/valve.py + /homeassistant/components/yolink/valve.py:129:7 - error: Base classes for class "YoLinkValveEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/valve.py:145:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "YoLinkValveEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/valve.py:145:14 - error: "entity_description" overrides symbol of same name in class "ValveEntity" +   Variable is mutable so its type is invariant +     Override type "YoLinkValveEntityDescription" is not the same as base type "ValveEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/yolink/valve.py:208:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/youless/sensor.py + /homeassistant/components/youless/sensor.py:178:42 - error: "current" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/youless/sensor.py:212:42 - error: "current" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/youless/sensor.py:323:7 - error: Base classes for class "YouLessSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/youless/sensor.py:342:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "YouLessSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/youless/sensor.py:342:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "YouLessSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/youless/sensor.py:345:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/youtube/sensor.py + /homeassistant/components/youtube/sensor.py:99:5 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "YouTubeSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/youtube/sensor.py:102:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/youtube/sensor.py:109:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/youtube/sensor.py:114:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/youtube/sensor.py:123:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zabbix/__init__.py + /homeassistant/components/zabbix/__init__.py:15:6 - error: Import "zabbix_utils" could not be resolved (reportMissingImports) + /homeassistant/components/zabbix/__init__.py:16:6 - error: Import "zabbix_utils.exceptions" could not be resolved (reportMissingImports) +/homeassistant/components/zabbix/sensor.py + /homeassistant/components/zabbix/sensor.py:10:6 - error: Import "zabbix_utils" could not be resolved (reportMissingImports) + /homeassistant/components/zabbix/sensor.py:105:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zabbix/sensor.py:110:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/zabbix/sensor.py:115:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zabbix/sensor.py:131:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zamg/coordinator.py + /homeassistant/components/zamg/coordinator.py:51:14 - error: "data" overrides symbol of same name in class "DataUpdateCoordinator" +   Variable is mutable so its type is invariant +     Override type "dict[Unknown, Unknown]" is not the same as base type "ZamgData" (reportIncompatibleVariableOverride) + /homeassistant/components/zamg/coordinator.py:51:21 - error: Cannot assign to attribute "data" for class "ZamgDataUpdateCoordinator*" +   Type "dict[Unknown, Unknown] | None" is not assignable to type "dict[Unknown, Unknown]" +     "None" is not assignable to "dict[Unknown, Unknown]" (reportAttributeAccessIssue) + /homeassistant/components/zamg/coordinator.py:54:16 - error: Type "dict[Unknown, Unknown] | None" is not assignable to return type "ZamgData" +   Type "dict[Unknown, Unknown] | None" is not assignable to type "ZamgData" +     "dict[Unknown, Unknown]" is not assignable to "ZamgData" (reportReturnType) +/homeassistant/components/zamg/sensor.py + /homeassistant/components/zamg/sensor.py:189:7 - error: Base classes for class "ZamgSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zamg/sensor.py:203:26 - error: Argument of type "ZamgDataUpdateCoordinator" cannot be assigned to parameter "coordinator" of type "DataUpdateCoordinator[dict[str, Any]]" in function "__init__" +   "ZamgDataUpdateCoordinator" is not assignable to "DataUpdateCoordinator[dict[str, Any]]" +     Type parameter "_DataT@DataUpdateCoordinator" is invariant, but "ZamgData" is not the same as "dict[str, Any]" (reportArgumentType) + /homeassistant/components/zamg/sensor.py:204:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ZamgSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/zamg/sensor.py:204:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ZamgSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/zamg/sensor.py:218:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/zamg/sensor.py:228:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zamg/weather.py + /homeassistant/components/zamg/weather.py:34:7 - error: Base classes for class "ZamgWeather" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zamg/weather.py:47:26 - error: Argument of type "ZamgDataUpdateCoordinator" cannot be assigned to parameter "coordinator" of type "DataUpdateCoordinator[dict[str, Any]]" in function "__init__" +   "ZamgDataUpdateCoordinator" is not assignable to "DataUpdateCoordinator[dict[str, Any]]" +     Type parameter "_DataT@DataUpdateCoordinator" is invariant, but "ZamgData" is not the same as "dict[str, Any]" (reportArgumentType) + /homeassistant/components/zamg/weather.py:60:9 - error: "native_temperature" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zamg/weather.py:76:9 - error: "native_pressure" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zamg/weather.py:84:9 - error: "humidity" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zamg/weather.py:92:9 - error: "native_wind_speed" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zamg/weather.py:108:9 - error: "wind_bearing" overrides symbol of same name in class "WeatherEntity" +   "property" is not assignable to "cached_property[float | str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zeroconf/__init__.py + /homeassistant/components/zeroconf/__init__.py:321:1 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) +/homeassistant/components/zeroconf/discovery.py + /homeassistant/components/zeroconf/discovery.py:419:30 - error: Could not access item in TypedDict +   "domain" is not a required key in "ZeroconfMatcher", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/zeroconf/discovery.py:487:38 - error: Argument of type "dict[str, Any | str | None]" cannot be assigned to parameter "translation_placeholders" of type "dict[str, str] | None" in function "async_create_issue" +   Type "dict[str, Any | str | None]" is not assignable to type "dict[str, str] | None" +     "dict[str, Any | str | None]" is not assignable to "dict[str, str]" +       Type parameter "_VT@dict" is invariant, but "Any | str | None" is not the same as "str" +       Consider switching from "dict" to "Mapping" which is covariant in the value type +     "dict[str, Any | str | None]" is not assignable to "None" (reportArgumentType) +/homeassistant/components/zeroconf/websocket_api.py + /homeassistant/components/zeroconf/websocket_api.py:13:46 - error: "DNSPointer" is not exported from module "zeroconf" +   Import from "zeroconf._dns" instead (reportPrivateImportUsage) + /homeassistant/components/zeroconf/websocket_api.py:14:48 - error: "IPVersion" is not exported from module "zeroconf.asyncio" +   Import from "zeroconf._utils.net" instead (reportPrivateImportUsage) +/homeassistant/components/zestimate/sensor.py + /homeassistant/components/zestimate/sensor.py:84:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zestimate/sensor.py:89:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zestimate/sensor.py:94:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/zestimate/sensor.py:102:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zeversolar/sensor.py + /homeassistant/components/zeversolar/sensor.py:70:7 - error: Base classes for class "ZeversolarSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zeversolar/sensor.py:82:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ZeversolarEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/zeversolar/sensor.py:82:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ZeversolarEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/zeversolar/sensor.py:87:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/zha/__init__.py + /homeassistant/components/zha/__init__.py:120:57 - error: Argument of type "Module("..homeassistant_hardware")" cannot be assigned to parameter "platform" of type "HardwareFirmwareInfoModule" in function "async_register_firmware_info_provider" +   Type "Module("..homeassistant_hardware")" is not assignable to type "HardwareFirmwareInfoModule" +     "get_firmware_info" is an incompatible type +       Type "(hass: HomeAssistant, config_entry: ConfigEntry[Any]) -> (FirmwareInfo | None)" is not assignable to type "(hass: HomeAssistant, entry: ConfigEntry[Any]) -> (FirmwareInfo | None)" +         Parameter name mismatch: "entry" versus "config_entry" +     "async_get_firmware_info" is not present (reportArgumentType) +/homeassistant/components/zha/alarm_control_panel.py + /homeassistant/components/zha/alarm_control_panel.py:68:7 - error: Base classes for class "ZHAAlarmControlPanel" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/alarm_control_panel.py:68:7 - error: Base classes for class "ZHAAlarmControlPanel" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/alarm_control_panel.py:71:5 - error: "_attr_translation_key" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/alarm_control_panel.py:81:9 - error: "code_arm_required" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/alarm_control_panel.py:83:40 - error: Cannot access attribute "code_arm_required" for class "PlatformEntity" +   Attribute "code_arm_required" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/alarm_control_panel.py:83:40 - error: Cannot access attribute "code_arm_required" for class "GroupEntity" +   Attribute "code_arm_required" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/alarm_control_panel.py:86:15 - error: Method "async_alarm_disarm" overrides class "AlarmControlPanelEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/alarm_control_panel.py:88:39 - error: Cannot access attribute "async_alarm_disarm" for class "PlatformEntity" +   Attribute "async_alarm_disarm" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/alarm_control_panel.py:88:39 - error: Cannot access attribute "async_alarm_disarm" for class "GroupEntity" +   Attribute "async_alarm_disarm" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/alarm_control_panel.py:92:15 - error: Method "async_alarm_arm_home" overrides class "AlarmControlPanelEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/alarm_control_panel.py:94:39 - error: Cannot access attribute "async_alarm_arm_home" for class "PlatformEntity" +   Attribute "async_alarm_arm_home" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/alarm_control_panel.py:94:39 - error: Cannot access attribute "async_alarm_arm_home" for class "GroupEntity" +   Attribute "async_alarm_arm_home" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/alarm_control_panel.py:98:15 - error: Method "async_alarm_arm_away" overrides class "AlarmControlPanelEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/alarm_control_panel.py:100:39 - error: Cannot access attribute "async_alarm_arm_away" for class "PlatformEntity" +   Attribute "async_alarm_arm_away" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/alarm_control_panel.py:100:39 - error: Cannot access attribute "async_alarm_arm_away" for class "GroupEntity" +   Attribute "async_alarm_arm_away" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/alarm_control_panel.py:104:15 - error: Method "async_alarm_arm_night" overrides class "AlarmControlPanelEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/alarm_control_panel.py:106:39 - error: Cannot access attribute "async_alarm_arm_night" for class "PlatformEntity" +   Attribute "async_alarm_arm_night" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/alarm_control_panel.py:106:39 - error: Cannot access attribute "async_alarm_arm_night" for class "GroupEntity" +   Attribute "async_alarm_arm_night" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/alarm_control_panel.py:110:15 - error: Method "async_alarm_trigger" overrides class "AlarmControlPanelEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/alarm_control_panel.py:112:39 - error: Cannot access attribute "async_alarm_trigger" for class "PlatformEntity" +   Attribute "async_alarm_trigger" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/alarm_control_panel.py:112:39 - error: Cannot access attribute "async_alarm_trigger" for class "GroupEntity" +   Attribute "async_alarm_trigger" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/alarm_control_panel.py:116:9 - error: "alarm_state" overrides symbol of same name in class "AlarmControlPanelEntity" +   "property" is not assignable to "cached_property[AlarmControlPanelState | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zha/api.py + /homeassistant/components/zha/api.py:61:24 - error: No overloads for "max" match the provided arguments (reportCallIssue) + /homeassistant/components/zha/api.py:61:28 - error: Argument of type "BackupManager" cannot be assigned to parameter "iterable" of type "Iterable[_T@max]" in function "max" +   "BackupManager" is incompatible with protocol "Iterable[_T@max]" +     "__iter__" is not present (reportArgumentType) + /homeassistant/components/zha/api.py:61:57 - error: Cannot access attribute "backup_time" for class "object*" +   Attribute "backup_time" is unknown (reportAttributeAccessIssue) +/homeassistant/components/zha/binary_sensor.py + /homeassistant/components/zha/binary_sensor.py:45:7 - error: Base classes for class "BinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/binary_sensor.py:45:7 - error: Base classes for class "BinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/binary_sensor.py:57:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/binary_sensor.py:59:40 - error: Cannot access attribute "is_on" for class "PlatformEntity" +   Attribute "is_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/binary_sensor.py:59:40 - error: Cannot access attribute "is_on" for class "GroupEntity" +   Attribute "is_on" is unknown (reportAttributeAccessIssue) +/homeassistant/components/zha/button.py + /homeassistant/components/zha/button.py:46:7 - error: Base classes for class "ZHAButton" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/button.py:46:7 - error: Base classes for class "ZHAButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/button.py:58:15 - error: Method "async_press" overrides class "ButtonEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/button.py:60:39 - error: Cannot access attribute "async_press" for class "PlatformEntity" +   Attribute "async_press" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/button.py:60:39 - error: Cannot access attribute "async_press" for class "GroupEntity" +   Attribute "async_press" is unknown (reportAttributeAccessIssue) +/homeassistant/components/zha/climate.py + /homeassistant/components/zha/climate.py:85:7 - error: Base classes for class "Thermostat" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/climate.py:85:7 - error: Base classes for class "Thermostat" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/climate.py:90:5 - error: "_attr_translation_key" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/climate.py:96:75 - error: Cannot access attribute "hvac_modes" for class "PlatformEntity" +   Attribute "hvac_modes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:96:75 - error: Cannot access attribute "hvac_modes" for class "GroupEntity" +   Attribute "hvac_modes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:99:37 - error: Cannot access attribute "hvac_mode" for class "PlatformEntity" +   Attribute "hvac_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:99:37 - error: Cannot access attribute "hvac_mode" for class "GroupEntity" +   Attribute "hvac_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:102:37 - error: Cannot access attribute "hvac_action" for class "PlatformEntity" +   Attribute "hvac_action" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:102:37 - error: Cannot access attribute "hvac_action" for class "GroupEntity" +   Attribute "hvac_action" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:107:37 - error: Cannot access attribute "supported_features" for class "PlatformEntity" +   Attribute "supported_features" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:107:37 - error: Cannot access attribute "supported_features" for class "GroupEntity" +   Attribute "supported_features" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:130:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/climate.py:148:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/climate.py:150:40 - error: Cannot access attribute "current_temperature" for class "PlatformEntity" +   Attribute "current_temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:150:40 - error: Cannot access attribute "current_temperature" for class "GroupEntity" +   Attribute "current_temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:153:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/climate.py:155:40 - error: Cannot access attribute "fan_mode" for class "PlatformEntity" +   Attribute "fan_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:155:40 - error: Cannot access attribute "fan_mode" for class "GroupEntity" +   Attribute "fan_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:158:9 - error: "fan_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/climate.py:160:40 - error: Cannot access attribute "fan_modes" for class "PlatformEntity" +   Attribute "fan_modes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:160:40 - error: Cannot access attribute "fan_modes" for class "GroupEntity" +   Attribute "fan_modes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:163:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/climate.py:165:40 - error: Cannot access attribute "preset_mode" for class "PlatformEntity" +   Attribute "preset_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:165:40 - error: Cannot access attribute "preset_mode" for class "GroupEntity" +   Attribute "preset_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:168:9 - error: "preset_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/climate.py:170:40 - error: Cannot access attribute "preset_modes" for class "PlatformEntity" +   Attribute "preset_modes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:170:40 - error: Cannot access attribute "preset_modes" for class "GroupEntity" +   Attribute "preset_modes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:173:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/climate.py:175:40 - error: Cannot access attribute "target_temperature" for class "PlatformEntity" +   Attribute "target_temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:175:40 - error: Cannot access attribute "target_temperature" for class "GroupEntity" +   Attribute "target_temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:178:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/climate.py:180:40 - error: Cannot access attribute "target_temperature_high" for class "PlatformEntity" +   Attribute "target_temperature_high" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:180:40 - error: Cannot access attribute "target_temperature_high" for class "GroupEntity" +   Attribute "target_temperature_high" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:183:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/climate.py:185:40 - error: Cannot access attribute "target_temperature_low" for class "PlatformEntity" +   Attribute "target_temperature_low" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:185:40 - error: Cannot access attribute "target_temperature_low" for class "GroupEntity" +   Attribute "target_temperature_low" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:188:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/climate.py:190:40 - error: Cannot access attribute "max_temp" for class "PlatformEntity" +   Attribute "max_temp" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:190:40 - error: Cannot access attribute "max_temp" for class "GroupEntity" +   Attribute "max_temp" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:193:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/climate.py:195:40 - error: Cannot access attribute "min_temp" for class "PlatformEntity" +   Attribute "min_temp" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:195:40 - error: Cannot access attribute "min_temp" for class "GroupEntity" +   Attribute "min_temp" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:201:37 - error: Cannot access attribute "hvac_mode" for class "PlatformEntity" +   Attribute "hvac_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:201:37 - error: Cannot access attribute "hvac_mode" for class "GroupEntity" +   Attribute "hvac_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:204:37 - error: Cannot access attribute "hvac_action" for class "PlatformEntity" +   Attribute "hvac_action" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:204:37 - error: Cannot access attribute "hvac_action" for class "GroupEntity" +   Attribute "hvac_action" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:209:15 - error: Method "async_set_fan_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/climate.py:211:39 - error: Cannot access attribute "async_set_fan_mode" for class "PlatformEntity" +   Attribute "async_set_fan_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:211:39 - error: Cannot access attribute "async_set_fan_mode" for class "GroupEntity" +   Attribute "async_set_fan_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:215:15 - error: Method "async_set_hvac_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/climate.py:217:39 - error: Cannot access attribute "async_set_hvac_mode" for class "PlatformEntity" +   Attribute "async_set_hvac_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:217:39 - error: Cannot access attribute "async_set_hvac_mode" for class "GroupEntity" +   Attribute "async_set_hvac_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:221:15 - error: Method "async_set_preset_mode" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/climate.py:223:39 - error: Cannot access attribute "async_set_preset_mode" for class "PlatformEntity" +   Attribute "async_set_preset_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:223:39 - error: Cannot access attribute "async_set_preset_mode" for class "GroupEntity" +   Attribute "async_set_preset_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:227:15 - error: Method "async_set_temperature" overrides class "ClimateEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/climate.py:229:39 - error: Cannot access attribute "async_set_temperature" for class "PlatformEntity" +   Attribute "async_set_temperature" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/climate.py:229:39 - error: Cannot access attribute "async_set_temperature" for class "GroupEntity" +   Attribute "async_set_temperature" is unknown (reportAttributeAccessIssue) +/homeassistant/components/zha/config_flow.py + /homeassistant/components/zha/config_flow.py:211:9 - error: "hass" overrides symbol of same name in class "FlowHandler" +   "property" is not assignable to "HomeAssistant" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/config_flow.py:363:17 - error: Argument of type "Unknown | dict[str, Any] | None" cannot be assigned to parameter "device_config" of type "dict[str, Any]" in function "probe" +   Type "Unknown | dict[str, Any] | None" is not assignable to type "dict[str, Any]" +     "None" is not assignable to "dict[str, Any]" (reportArgumentType) + /homeassistant/components/zha/config_flow.py:841:7 - error: Base classes for class "ZhaConfigFlowHandler" define variable "hass" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/config_flow.py:897:46 - error: Argument of type "dict[str, str | None]" cannot be assigned to parameter "description_placeholders" of type "Mapping[str, str] | None" in function "__init__" +   Type "dict[str, str | None]" is not assignable to type "Mapping[str, str] | None" +     "dict[str, str | None]" is not assignable to "Mapping[str, str]" +       Type parameter "_VT_co@Mapping" is covariant, but "str | None" is not a subtype of "str" +         Type "str | None" is not assignable to type "str" +           "None" is not assignable to "str" +     "dict[str, str | None]" is not assignable to "None" (reportArgumentType) + /homeassistant/components/zha/config_flow.py:1123:7 - error: Base classes for class "ZhaOptionsFlowHandler" define variable "hass" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/zha/cover.py + /homeassistant/components/zha/cover.py:58:7 - error: Base classes for class "ZhaCover" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/cover.py:58:7 - error: Base classes for class "ZhaCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/cover.py:71:71 - error: Cannot access attribute "supported_features" for class "PlatformEntity" +   Attribute "supported_features" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:71:71 - error: Cannot access attribute "supported_features" for class "GroupEntity" +   Attribute "supported_features" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:93:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/cover.py:95:40 - error: Cannot access attribute "is_closed" for class "PlatformEntity" +   Attribute "is_closed" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:95:40 - error: Cannot access attribute "is_closed" for class "GroupEntity" +   Attribute "is_closed" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:98:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/cover.py:100:40 - error: Cannot access attribute "is_opening" for class "PlatformEntity" +   Attribute "is_opening" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:100:40 - error: Cannot access attribute "is_opening" for class "GroupEntity" +   Attribute "is_opening" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:103:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/cover.py:105:40 - error: Cannot access attribute "is_closing" for class "PlatformEntity" +   Attribute "is_closing" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:105:40 - error: Cannot access attribute "is_closing" for class "GroupEntity" +   Attribute "is_closing" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:108:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/cover.py:110:40 - error: Cannot access attribute "current_cover_position" for class "PlatformEntity" +   Attribute "current_cover_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:110:40 - error: Cannot access attribute "current_cover_position" for class "GroupEntity" +   Attribute "current_cover_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:113:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/cover.py:115:40 - error: Cannot access attribute "current_cover_tilt_position" for class "PlatformEntity" +   Attribute "current_cover_tilt_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:115:40 - error: Cannot access attribute "current_cover_tilt_position" for class "GroupEntity" +   Attribute "current_cover_tilt_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:118:15 - error: Method "async_open_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/cover.py:120:39 - error: Cannot access attribute "async_open_cover" for class "PlatformEntity" +   Attribute "async_open_cover" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:120:39 - error: Cannot access attribute "async_open_cover" for class "GroupEntity" +   Attribute "async_open_cover" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:124:15 - error: Method "async_open_cover_tilt" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/cover.py:126:39 - error: Cannot access attribute "async_open_cover_tilt" for class "PlatformEntity" +   Attribute "async_open_cover_tilt" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:126:39 - error: Cannot access attribute "async_open_cover_tilt" for class "GroupEntity" +   Attribute "async_open_cover_tilt" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:130:15 - error: Method "async_close_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/cover.py:132:39 - error: Cannot access attribute "async_close_cover" for class "PlatformEntity" +   Attribute "async_close_cover" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:132:39 - error: Cannot access attribute "async_close_cover" for class "GroupEntity" +   Attribute "async_close_cover" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:136:15 - error: Method "async_close_cover_tilt" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/cover.py:138:39 - error: Cannot access attribute "async_close_cover_tilt" for class "PlatformEntity" +   Attribute "async_close_cover_tilt" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:138:39 - error: Cannot access attribute "async_close_cover_tilt" for class "GroupEntity" +   Attribute "async_close_cover_tilt" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:142:15 - error: Method "async_set_cover_position" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/cover.py:144:39 - error: Cannot access attribute "async_set_cover_position" for class "PlatformEntity" +   Attribute "async_set_cover_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:144:39 - error: Cannot access attribute "async_set_cover_position" for class "GroupEntity" +   Attribute "async_set_cover_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:150:15 - error: Method "async_set_cover_tilt_position" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/cover.py:152:39 - error: Cannot access attribute "async_set_cover_tilt_position" for class "PlatformEntity" +   Attribute "async_set_cover_tilt_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:152:39 - error: Cannot access attribute "async_set_cover_tilt_position" for class "GroupEntity" +   Attribute "async_set_cover_tilt_position" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:158:15 - error: Method "async_stop_cover" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/cover.py:160:39 - error: Cannot access attribute "async_stop_cover" for class "PlatformEntity" +   Attribute "async_stop_cover" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:160:39 - error: Cannot access attribute "async_stop_cover" for class "GroupEntity" +   Attribute "async_stop_cover" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:164:15 - error: Method "async_stop_cover_tilt" overrides class "CoverEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/cover.py:166:39 - error: Cannot access attribute "async_stop_cover_tilt" for class "PlatformEntity" +   Attribute "async_stop_cover_tilt" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:166:39 - error: Cannot access attribute "async_stop_cover_tilt" for class "GroupEntity" +   Attribute "async_stop_cover_tilt" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:178:33 - error: Cannot access attribute "restore_external_state_attributes" for class "PlatformEntity" +   Attribute "restore_external_state_attributes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/cover.py:178:33 - error: Cannot access attribute "restore_external_state_attributes" for class "GroupEntity" +   Attribute "restore_external_state_attributes" is unknown (reportAttributeAccessIssue) +/homeassistant/components/zha/device_action.py + /homeassistant/components/zha/device_action.py:52:55 - error: Cannot access attribute "__getitem__" for class "type[AllLEDEffectType]" +   Attribute "__getitem__" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/device_action.py:62:58 - error: Cannot access attribute "__getitem__" for class "type[SingleLEDEffectType]" +   Attribute "__getitem__" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/device_action.py:99:66 - error: Cannot access attribute "__members__" for class "type[AllLEDEffectType]" +   Attribute "__members__" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/device_action.py:108:69 - error: Cannot access attribute "__members__" for class "type[SingleLEDEffectType]" +   Attribute "__members__" is unknown (reportAttributeAccessIssue) +/homeassistant/components/zha/device_tracker.py + /homeassistant/components/zha/device_tracker.py:45:7 - error: Base classes for class "ZHADeviceScannerEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/device_tracker.py:45:7 - error: Base classes for class "ZHADeviceScannerEntity" define variable "_attr_device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/device_tracker.py:45:7 - error: Base classes for class "ZHADeviceScannerEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/device_tracker.py:45:7 - error: Base classes for class "ZHADeviceScannerEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/device_tracker.py:45:7 - error: Base classes for class "ZHADeviceScannerEntity" define variable "entity_registry_enabled_default" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/device_tracker.py:49:5 - error: "_attr_name" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/device_tracker.py:54:40 - error: Cannot access attribute "is_connected" for class "PlatformEntity" +   Attribute "is_connected" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/device_tracker.py:54:40 - error: Cannot access attribute "is_connected" for class "GroupEntity" +   Attribute "is_connected" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/device_tracker.py:57:9 - error: "battery_level" overrides symbol of same name in class "BaseTrackerEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/device_tracker.py:62:40 - error: Cannot access attribute "battery_level" for class "PlatformEntity" +   Attribute "battery_level" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/device_tracker.py:62:40 - error: Cannot access attribute "battery_level" for class "GroupEntity" +   Attribute "battery_level" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/device_tracker.py:65:9 - error: Method "device_info" cannot override final method defined in class "ScannerEntity" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/device_tracker.py:72:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/device_tracker.py:75:16 - error: Type "str | None" is not assignable to return type "str" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportReturnType) +/homeassistant/components/zha/entity.py + /homeassistant/components/zha/entity.py:86:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/entity.py:91:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zha/fan.py + /homeassistant/components/zha/fan.py:46:7 - error: Base classes for class "ZhaFan" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/fan.py:46:7 - error: Base classes for class "ZhaFan" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/fan.py:46:7 - error: Base classes for class "ZhaFan" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/fan.py:46:7 - error: Base classes for class "ZhaFan" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/fan.py:46:7 - error: Base classes for class "ZhaFan" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/fan.py:46:7 - error: Base classes for class "ZhaFan" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/fan.py:49:5 - error: "_attr_translation_key" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/fan.py:55:69 - error: Cannot access attribute "supported_features" for class "PlatformEntity" +   Attribute "supported_features" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:55:69 - error: Cannot access attribute "supported_features" for class "GroupEntity" +   Attribute "supported_features" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:73:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/fan.py:75:40 - error: Cannot access attribute "preset_mode" for class "PlatformEntity" +   Attribute "preset_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:75:40 - error: Cannot access attribute "preset_mode" for class "GroupEntity" +   Attribute "preset_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:78:9 - error: "preset_modes" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/fan.py:80:40 - error: Cannot access attribute "preset_modes" for class "PlatformEntity" +   Attribute "preset_modes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:80:40 - error: Cannot access attribute "preset_modes" for class "GroupEntity" +   Attribute "preset_modes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:85:40 - error: Cannot access attribute "default_on_percentage" for class "PlatformEntity" +   Attribute "default_on_percentage" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:85:40 - error: Cannot access attribute "default_on_percentage" for class "GroupEntity" +   Attribute "default_on_percentage" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:90:40 - error: Cannot access attribute "speed_range" for class "PlatformEntity" +   Attribute "speed_range" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:90:40 - error: Cannot access attribute "speed_range" for class "GroupEntity" +   Attribute "speed_range" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:93:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/fan.py:95:40 - error: Cannot access attribute "speed_count" for class "PlatformEntity" +   Attribute "speed_count" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:95:40 - error: Cannot access attribute "speed_count" for class "GroupEntity" +   Attribute "speed_count" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:98:15 - error: Method "async_turn_on" overrides class "FanEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/fan.py:105:39 - error: Cannot access attribute "async_turn_on" for class "PlatformEntity" +   Attribute "async_turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:105:39 - error: Cannot access attribute "async_turn_on" for class "GroupEntity" +   Attribute "async_turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:111:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/fan.py:113:39 - error: Cannot access attribute "async_turn_off" for class "PlatformEntity" +   Attribute "async_turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:113:39 - error: Cannot access attribute "async_turn_off" for class "GroupEntity" +   Attribute "async_turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:117:15 - error: Method "async_set_percentage" overrides class "FanEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/fan.py:119:39 - error: Cannot access attribute "async_set_percentage" for class "PlatformEntity" +   Attribute "async_set_percentage" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:119:39 - error: Cannot access attribute "async_set_percentage" for class "GroupEntity" +   Attribute "async_set_percentage" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:123:15 - error: Method "async_set_preset_mode" overrides class "FanEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/fan.py:125:39 - error: Cannot access attribute "async_set_preset_mode" for class "PlatformEntity" +   Attribute "async_set_preset_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:125:39 - error: Cannot access attribute "async_set_preset_mode" for class "GroupEntity" +   Attribute "async_set_preset_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:129:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/fan.py:131:40 - error: Cannot access attribute "percentage" for class "PlatformEntity" +   Attribute "percentage" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/fan.py:131:40 - error: Cannot access attribute "percentage" for class "GroupEntity" +   Attribute "percentage" is unknown (reportAttributeAccessIssue) +/homeassistant/components/zha/helpers.py + /homeassistant/components/zha/helpers.py:364:28 - error: Could not access item in TypedDict +   "name" is not a required key in "DeviceInfo", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/zha/helpers.py:372:56 - error: Cannot access attribute "name" for class "DeviceType" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/helpers.py:373:59 - error: Cannot access attribute "name" for class "RxOnWhenIdle" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/helpers.py:374:53 - error: Cannot access attribute "name" for class "Relationship" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/helpers.py:378:57 - error: Cannot access attribute "name" for class "PermitJoins" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/helpers.py:388:53 - error: Cannot access attribute "name" for class "RouteStatus" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/helpers.py:533:52 - error: "handlers" is not a known attribute of module "logging" (reportAttributeAccessIssue) + /homeassistant/components/zha/helpers.py:603:27 - error: Argument of type "tuple[str, str]" cannot be assigned to parameter "key" of type "tuple[Platform, str]" in function "__getitem__" +   "tuple[str, str]" is not assignable to "tuple[Platform, str]" +     Tuple entry 1 is incorrect type +       "str" is not assignable to "Platform" (reportArgumentType) + /homeassistant/components/zha/helpers.py:615:65 - error: Argument of type "Group" cannot be assigned to parameter "group_info" of type "GroupInfo" in function "_async_get_or_create_group_proxy" +   "Group" is not assignable to "GroupInfo" (reportArgumentType) + /homeassistant/components/zha/helpers.py:701:67 - error: Argument of type "Device | None" cannot be assigned to parameter "zha_device" of type "Device" in function "_async_get_or_create_device_proxy" +   Type "Device | None" is not assignable to type "Device" +     "None" is not assignable to "Device" (reportArgumentType) + /homeassistant/components/zha/helpers.py:821:19 - error: Cannot access attribute "zha_device" for class "ZHAEntity" +   Attribute "zha_device" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/helpers.py:822:58 - error: Cannot access attribute "zha_device" for class "ZHAEntity" +   Attribute "zha_device" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/helpers.py:823:40 - error: Cannot access attribute "zha_device" for class "ZHAEntity" +   Attribute "zha_device" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/helpers.py:878:49 - error: "ieee" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/zha/helpers.py:1145:51 - error: Cannot access attribute "min_value" for class "type[Flag]" +   Attribute "min_value" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/helpers.py:1145:51 - error: Cannot access attribute "min_value" for class "type[Enum]" +   Attribute "min_value" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/helpers.py:1145:73 - error: Cannot access attribute "max_value" for class "type[Flag]" +   Attribute "max_value" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/helpers.py:1145:73 - error: Cannot access attribute "max_value" for class "type[Enum]" +   Attribute "max_value" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/helpers.py:1164:21 - error: Operator "|=" not supported for types "Unknown | Literal[0]" and "Flag" +   Operator "|" not supported for types "Literal[0]" and "Flag" (reportOperatorIssue) +/homeassistant/components/zha/light.py + /homeassistant/components/zha/light.py:78:7 - error: Base classes for class "Light" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/light.py:78:7 - error: Base classes for class "Light" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/light.py:78:7 - error: Base classes for class "Light" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/light.py:78:7 - error: Base classes for class "Light" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/light.py:78:7 - error: Base classes for class "Light" define variable "capability_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/light.py:78:7 - error: Base classes for class "Light" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/light.py:86:51 - error: Cannot access attribute "supported_color_modes" for class "PlatformEntity" +   Attribute "supported_color_modes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:86:51 - error: Cannot access attribute "supported_color_modes" for class "GroupEntity" +   Attribute "supported_color_modes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:101:71 - error: Cannot access attribute "supported_features" for class "PlatformEntity" +   Attribute "supported_features" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:101:71 - error: Cannot access attribute "supported_features" for class "GroupEntity" +   Attribute "supported_features" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:113:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/light.py:122:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/light.py:124:40 - error: Cannot access attribute "is_on" for class "PlatformEntity" +   Attribute "is_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:124:40 - error: Cannot access attribute "is_on" for class "GroupEntity" +   Attribute "is_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:127:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/light.py:129:40 - error: Cannot access attribute "brightness" for class "PlatformEntity" +   Attribute "brightness" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:129:40 - error: Cannot access attribute "brightness" for class "GroupEntity" +   Attribute "brightness" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:135:37 - error: Cannot access attribute "min_mireds" for class "PlatformEntity" +   Attribute "min_mireds" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:135:37 - error: Cannot access attribute "min_mireds" for class "GroupEntity" +   Attribute "min_mireds" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:142:37 - error: Cannot access attribute "max_mireds" for class "PlatformEntity" +   Attribute "max_mireds" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:142:37 - error: Cannot access attribute "max_mireds" for class "GroupEntity" +   Attribute "max_mireds" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:146:9 - error: "xy_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/light.py:148:40 - error: Cannot access attribute "xy_color" for class "PlatformEntity" +   Attribute "xy_color" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:148:40 - error: Cannot access attribute "xy_color" for class "GroupEntity" +   Attribute "xy_color" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:155:51 - error: Cannot access attribute "color_temp" for class "PlatformEntity" +   Attribute "color_temp" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:155:51 - error: Cannot access attribute "color_temp" for class "GroupEntity" +   Attribute "color_temp" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:160:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/light.py:162:36 - error: Cannot access attribute "color_mode" for class "PlatformEntity" +   Attribute "color_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:162:36 - error: Cannot access attribute "color_mode" for class "GroupEntity" +   Attribute "color_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:164:61 - error: Cannot access attribute "color_mode" for class "PlatformEntity" +   Attribute "color_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:164:61 - error: Cannot access attribute "color_mode" for class "GroupEntity" +   Attribute "color_mode" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:167:9 - error: "effect_list" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/light.py:169:40 - error: Cannot access attribute "effect_list" for class "PlatformEntity" +   Attribute "effect_list" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:169:40 - error: Cannot access attribute "effect_list" for class "GroupEntity" +   Attribute "effect_list" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:172:9 - error: "effect" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/light.py:174:40 - error: Cannot access attribute "effect" for class "PlatformEntity" +   Attribute "effect" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:174:40 - error: Cannot access attribute "effect" for class "GroupEntity" +   Attribute "effect" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:177:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/light.py:184:39 - error: Cannot access attribute "async_turn_on" for class "PlatformEntity" +   Attribute "async_turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:184:39 - error: Cannot access attribute "async_turn_on" for class "GroupEntity" +   Attribute "async_turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:195:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/light.py:197:39 - error: Cannot access attribute "async_turn_off" for class "PlatformEntity" +   Attribute "async_turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:197:39 - error: Cannot access attribute "async_turn_off" for class "GroupEntity" +   Attribute "async_turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:210:33 - error: Cannot access attribute "restore_external_state_attributes" for class "PlatformEntity" +   Attribute "restore_external_state_attributes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/light.py:210:33 - error: Cannot access attribute "restore_external_state_attributes" for class "GroupEntity" +   Attribute "restore_external_state_attributes" is unknown (reportAttributeAccessIssue) +/homeassistant/components/zha/lock.py + /homeassistant/components/zha/lock.py:87:7 - error: Base classes for class "ZhaDoorLock" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/lock.py:87:7 - error: Base classes for class "ZhaDoorLock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/lock.py:90:5 - error: "_attr_translation_key" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/lock.py:93:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/lock.py:95:40 - error: Cannot access attribute "is_locked" for class "PlatformEntity" +   Attribute "is_locked" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/lock.py:95:40 - error: Cannot access attribute "is_locked" for class "GroupEntity" +   Attribute "is_locked" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/lock.py:98:15 - error: Method "async_lock" overrides class "LockEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/lock.py:100:39 - error: Cannot access attribute "async_lock" for class "PlatformEntity" +   Attribute "async_lock" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/lock.py:100:39 - error: Cannot access attribute "async_lock" for class "GroupEntity" +   Attribute "async_lock" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/lock.py:104:15 - error: Method "async_unlock" overrides class "LockEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/lock.py:106:39 - error: Cannot access attribute "async_unlock" for class "PlatformEntity" +   Attribute "async_unlock" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/lock.py:106:39 - error: Cannot access attribute "async_unlock" for class "GroupEntity" +   Attribute "async_unlock" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/lock.py:112:39 - error: Cannot access attribute "async_set_lock_user_code" for class "PlatformEntity" +   Attribute "async_set_lock_user_code" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/lock.py:112:39 - error: Cannot access attribute "async_set_lock_user_code" for class "GroupEntity" +   Attribute "async_set_lock_user_code" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/lock.py:120:39 - error: Cannot access attribute "async_enable_lock_user_code" for class "PlatformEntity" +   Attribute "async_enable_lock_user_code" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/lock.py:120:39 - error: Cannot access attribute "async_enable_lock_user_code" for class "GroupEntity" +   Attribute "async_enable_lock_user_code" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/lock.py:126:39 - error: Cannot access attribute "async_disable_lock_user_code" for class "PlatformEntity" +   Attribute "async_disable_lock_user_code" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/lock.py:126:39 - error: Cannot access attribute "async_disable_lock_user_code" for class "GroupEntity" +   Attribute "async_disable_lock_user_code" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/lock.py:132:39 - error: Cannot access attribute "async_clear_lock_user_code" for class "PlatformEntity" +   Attribute "async_clear_lock_user_code" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/lock.py:132:39 - error: Cannot access attribute "async_clear_lock_user_code" for class "GroupEntity" +   Attribute "async_clear_lock_user_code" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/lock.py:138:33 - error: Cannot access attribute "restore_external_state_attributes" for class "PlatformEntity" +   Attribute "restore_external_state_attributes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/lock.py:138:33 - error: Cannot access attribute "restore_external_state_attributes" for class "GroupEntity" +   Attribute "restore_external_state_attributes" is unknown (reportAttributeAccessIssue) +/homeassistant/components/zha/logbook.py + /homeassistant/components/zha/logbook.py:80:26 - error: "message" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/zha/logbook.py:84:36 - error: "message" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/zha/number.py + /homeassistant/components/zha/number.py:45:7 - error: Base classes for class "ZhaNumber" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/number.py:45:7 - error: Base classes for class "ZhaNumber" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/number.py:49:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/number.py:51:40 - error: Cannot access attribute "native_value" for class "PlatformEntity" +   Attribute "native_value" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/number.py:51:40 - error: Cannot access attribute "native_value" for class "GroupEntity" +   Attribute "native_value" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/number.py:54:9 - error: "native_min_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/number.py:56:40 - error: Cannot access attribute "native_min_value" for class "PlatformEntity" +   Attribute "native_min_value" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/number.py:56:40 - error: Cannot access attribute "native_min_value" for class "GroupEntity" +   Attribute "native_min_value" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/number.py:59:9 - error: "native_max_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/number.py:61:40 - error: Cannot access attribute "native_max_value" for class "PlatformEntity" +   Attribute "native_max_value" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/number.py:61:40 - error: Cannot access attribute "native_max_value" for class "GroupEntity" +   Attribute "native_max_value" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/number.py:64:9 - error: "native_step" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/number.py:66:40 - error: Cannot access attribute "native_step" for class "PlatformEntity" +   Attribute "native_step" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/number.py:66:40 - error: Cannot access attribute "native_step" for class "GroupEntity" +   Attribute "native_step" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/number.py:69:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/number.py:71:40 - error: Cannot access attribute "native_unit_of_measurement" for class "PlatformEntity" +   Attribute "native_unit_of_measurement" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/number.py:71:40 - error: Cannot access attribute "native_unit_of_measurement" for class "GroupEntity" +   Attribute "native_unit_of_measurement" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/number.py:74:15 - error: Method "async_set_native_value" overrides class "NumberEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/number.py:76:39 - error: Cannot access attribute "async_set_native_value" for class "PlatformEntity" +   Attribute "async_set_native_value" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/number.py:76:39 - error: Cannot access attribute "async_set_native_value" for class "GroupEntity" +   Attribute "async_set_native_value" is unknown (reportAttributeAccessIssue) +/homeassistant/components/zha/radio_manager.py + /homeassistant/components/zha/radio_manager.py:425:41 - error: "backup" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/zha/radio_manager.py:429:59 - error: "copy" is not a known attribute of "None" (reportOptionalMemberAccess) + /homeassistant/components/zha/radio_manager.py:465:59 - error: "retry" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/zha/repairs/network_settings_inconsistent.py + /homeassistant/components/zha/repairs/network_settings_inconsistent.py:100:14 - error: Argument of type "dict[str, str | dict[str, Any]]" cannot be assigned to parameter "data" of type "dict[str, str | int | float | None] | None" in function "async_create_issue" +   Type "dict[str, str | dict[str, Any]]" is not assignable to type "dict[str, str | int | float | None] | None" +     "dict[str, str | dict[str, Any]]" is not assignable to "dict[str, str | int | float | None]" +       Type parameter "_VT@dict" is invariant, but "str | dict[str, Any]" is not the same as "str | int | float | None" +       Consider switching from "dict" to "Mapping" which is covariant in the value type +     "dict[str, str | dict[str, Any]]" is not assignable to "None" (reportArgumentType) +/homeassistant/components/zha/select.py + /homeassistant/components/zha/select.py:50:7 - error: Base classes for class "ZHAEnumSelectEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/select.py:50:7 - error: Base classes for class "ZHAEnumSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/select.py:56:66 - error: Cannot access attribute "options" for class "BaseEntityInfo" +   Attribute "options" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/select.py:59:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/select.py:61:40 - error: Cannot access attribute "current_option" for class "PlatformEntity" +   Attribute "current_option" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/select.py:61:40 - error: Cannot access attribute "current_option" for class "GroupEntity" +   Attribute "current_option" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/select.py:64:15 - error: Method "async_select_option" overrides class "SelectEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/select.py:66:39 - error: Cannot access attribute "async_select_option" for class "PlatformEntity" +   Attribute "async_select_option" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/select.py:66:39 - error: Cannot access attribute "async_select_option" for class "GroupEntity" +   Attribute "async_select_option" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/select.py:73:37 - error: Cannot access attribute "restore_external_state_attributes" for class "PlatformEntity" +   Attribute "restore_external_state_attributes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/select.py:73:37 - error: Cannot access attribute "restore_external_state_attributes" for class "GroupEntity" +   Attribute "restore_external_state_attributes" is unknown (reportAttributeAccessIssue) +/homeassistant/components/zha/sensor.py + /homeassistant/components/zha/sensor.py:100:7 - error: Base classes for class "Sensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/sensor.py:100:7 - error: Base classes for class "Sensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/sensor.py:114:71 - error: Cannot access attribute "unit" for class "BaseEntityInfo" +   Attribute "unit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/sensor.py:115:72 - error: Cannot access attribute "unit" for class "BaseEntityInfo" +   Attribute "unit" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/sensor.py:119:24 - error: Cannot access attribute "entity_description" for class "PlatformEntity" +   Attribute "entity_description" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/sensor.py:119:24 - error: Cannot access attribute "entity_description" for class "GroupEntity" +   Attribute "entity_description" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/sensor.py:121:41 - error: Cannot access attribute "entity_description" for class "PlatformEntity" +   Attribute "entity_description" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/sensor.py:121:41 - error: Cannot access attribute "entity_description" for class "GroupEntity" +   Attribute "entity_description" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/sensor.py:141:31 - error: Cannot access attribute "suggested_display_precision" for class "BaseEntityInfo" +   Attribute "suggested_display_precision" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/sensor.py:143:36 - error: Cannot access attribute "suggested_display_precision" for class "BaseEntityInfo" +   Attribute "suggested_display_precision" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/sensor.py:147:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/sensor.py:149:40 - error: Cannot access attribute "native_value" for class "PlatformEntity" +   Attribute "native_value" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/sensor.py:149:40 - error: Cannot access attribute "native_value" for class "GroupEntity" +   Attribute "native_value" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/sensor.py:152:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zha/silabs_multiprotocol.py + /homeassistant/components/zha/silabs_multiprotocol.py:31:12 - error: "zha_network_settings" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/zha/siren.py + /homeassistant/components/zha/siren.py:60:7 - error: Base classes for class "ZHASiren" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/siren.py:60:7 - error: Base classes for class "ZHASiren" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/siren.py:77:71 - error: Cannot access attribute "supported_features" for class "PlatformEntity" +   Attribute "supported_features" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/siren.py:77:71 - error: Cannot access attribute "supported_features" for class "GroupEntity" +   Attribute "supported_features" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/siren.py:93:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/siren.py:95:40 - error: Cannot access attribute "is_on" for class "PlatformEntity" +   Attribute "is_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/siren.py:95:40 - error: Cannot access attribute "is_on" for class "GroupEntity" +   Attribute "is_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/siren.py:98:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/siren.py:100:39 - error: Cannot access attribute "async_turn_on" for class "PlatformEntity" +   Attribute "async_turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/siren.py:100:39 - error: Cannot access attribute "async_turn_on" for class "GroupEntity" +   Attribute "async_turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/siren.py:108:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/siren.py:110:39 - error: Cannot access attribute "async_turn_off" for class "PlatformEntity" +   Attribute "async_turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/siren.py:110:39 - error: Cannot access attribute "async_turn_off" for class "GroupEntity" +   Attribute "async_turn_off" is unknown (reportAttributeAccessIssue) +/homeassistant/components/zha/switch.py + /homeassistant/components/zha/switch.py:46:7 - error: Base classes for class "Switch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/switch.py:46:7 - error: Base classes for class "Switch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/switch.py:50:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/switch.py:52:40 - error: Cannot access attribute "is_on" for class "PlatformEntity" +   Attribute "is_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/switch.py:52:40 - error: Cannot access attribute "is_on" for class "GroupEntity" +   Attribute "is_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/switch.py:55:15 - error: Method "async_turn_on" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/switch.py:57:39 - error: Cannot access attribute "async_turn_on" for class "PlatformEntity" +   Attribute "async_turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/switch.py:57:39 - error: Cannot access attribute "async_turn_on" for class "GroupEntity" +   Attribute "async_turn_on" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/switch.py:61:15 - error: Method "async_turn_off" overrides class "ToggleEntity" in an incompatible manner +   Return type mismatch: base method returns type "CoroutineType[Any, Any, None]", override returns type "Coroutine[Any, Any, None]" +     "Coroutine[Any, Any, None]" is not assignable to "CoroutineType[Any, Any, None]" (reportIncompatibleMethodOverride) + /homeassistant/components/zha/switch.py:63:39 - error: Cannot access attribute "async_turn_off" for class "PlatformEntity" +   Attribute "async_turn_off" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/switch.py:63:39 - error: Cannot access attribute "async_turn_off" for class "GroupEntity" +   Attribute "async_turn_off" is unknown (reportAttributeAccessIssue) +/homeassistant/components/zha/update.py + /homeassistant/components/zha/update.py:103:7 - error: Base classes for class "ZHAFirmwareUpdateEntity" define variable "entity_description" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/update.py:103:7 - error: Base classes for class "ZHAFirmwareUpdateEntity" define variable "_attr_device_class" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/update.py:103:7 - error: Base classes for class "ZHAFirmwareUpdateEntity" define variable "_attr_state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/update.py:103:7 - error: Base classes for class "ZHAFirmwareUpdateEntity" define variable "_attr_supported_features" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/update.py:103:7 - error: Base classes for class "ZHAFirmwareUpdateEntity" define variable "state" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/update.py:103:7 - error: Base classes for class "ZHAFirmwareUpdateEntity" define variable "state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/update.py:103:7 - error: Base classes for class "ZHAFirmwareUpdateEntity" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/update.py:103:7 - error: Base classes for class "ZHAFirmwareUpdateEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/update.py:103:7 - error: Base classes for class "ZHAFirmwareUpdateEntity" define variable "entity_category" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/update.py:103:7 - error: Base classes for class "ZHAFirmwareUpdateEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zha/update.py:123:36 - error: Argument of type "Self@ZHAFirmwareUpdateEntity" cannot be assigned to parameter "self" of type "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" in function "__init__" +   "ZHAFirmwareUpdateEntity*" is not assignable to "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" +     Type parameter "_DataUpdateCoordinatorT@CoordinatorEntity" is invariant, but "ZHAFirmwareUpdateCoordinator" is not the same as "DataUpdateCoordinator[dict[str, Any]]" (reportArgumentType) + /homeassistant/components/zha/update.py:123:42 - error: Argument of type "ZHAFirmwareUpdateCoordinator" cannot be assigned to parameter "coordinator" of type "DataUpdateCoordinator[dict[str, Any]]" in function "__init__" +   "ZHAFirmwareUpdateCoordinator" is not assignable to "DataUpdateCoordinator[dict[str, Any]]" +     Type parameter "_DataT@DataUpdateCoordinator" is invariant, but "None" is not the same as "dict[str, Any]" (reportArgumentType) + /homeassistant/components/zha/update.py:126:9 - error: "installed_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/update.py:128:40 - error: Cannot access attribute "installed_version" for class "PlatformEntity" +   Attribute "installed_version" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/update.py:128:40 - error: Cannot access attribute "installed_version" for class "GroupEntity" +   Attribute "installed_version" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/update.py:131:9 - error: "in_progress" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/update.py:136:40 - error: Cannot access attribute "in_progress" for class "PlatformEntity" +   Attribute "in_progress" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/update.py:136:40 - error: Cannot access attribute "in_progress" for class "GroupEntity" +   Attribute "in_progress" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/update.py:139:9 - error: "update_percentage" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[int | float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/update.py:146:40 - error: Cannot access attribute "update_percentage" for class "PlatformEntity" +   Attribute "update_percentage" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/update.py:146:40 - error: Cannot access attribute "update_percentage" for class "GroupEntity" +   Attribute "update_percentage" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/update.py:149:9 - error: "latest_version" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/update.py:151:40 - error: Cannot access attribute "latest_version" for class "PlatformEntity" +   Attribute "latest_version" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/update.py:151:40 - error: Cannot access attribute "latest_version" for class "GroupEntity" +   Attribute "latest_version" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/update.py:154:9 - error: "release_summary" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/update.py:160:40 - error: Cannot access attribute "release_summary" for class "PlatformEntity" +   Attribute "release_summary" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/update.py:160:40 - error: Cannot access attribute "release_summary" for class "GroupEntity" +   Attribute "release_summary" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/update.py:178:55 - error: Cannot access attribute "release_notes" for class "PlatformEntity" +   Attribute "release_notes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/update.py:178:55 - error: Cannot access attribute "release_notes" for class "GroupEntity" +   Attribute "release_notes" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/update.py:181:9 - error: "release_url" overrides symbol of same name in class "UpdateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zha/update.py:183:40 - error: Cannot access attribute "release_url" for class "PlatformEntity" +   Attribute "release_url" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/update.py:183:40 - error: Cannot access attribute "release_url" for class "GroupEntity" +   Attribute "release_url" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/update.py:192:43 - error: Cannot access attribute "async_install" for class "PlatformEntity" +   Attribute "async_install" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/update.py:192:43 - error: Cannot access attribute "async_install" for class "GroupEntity" +   Attribute "async_install" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/update.py:200:46 - error: Argument of type "Self@ZHAFirmwareUpdateEntity" cannot be assigned to parameter "self" of type "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" in function "async_update" +   "ZHAFirmwareUpdateEntity*" is not assignable to "CoordinatorEntity[DataUpdateCoordinator[dict[str, Any]]]" +     Type parameter "_DataUpdateCoordinatorT@CoordinatorEntity" is invariant, but "ZHAFirmwareUpdateCoordinator" is not the same as "DataUpdateCoordinator[dict[str, Any]]" (reportArgumentType) +/homeassistant/components/zha/websocket_api.py + /homeassistant/components/zha/websocket_api.py:383:48 - error: Cannot access attribute "hass" for class "Gateway" +   Attribute "hass" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/websocket_api.py:392:48 - error: Cannot access attribute "hass" for class "Gateway" +   Attribute "hass" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/websocket_api.py:420:50 - error: Argument of type "ZHAGatewayProxy" cannot be assigned to parameter "zha_gateway" of type "Gateway" in function "_get_entity_name" +   "ZHAGatewayProxy" is not assignable to "Gateway" (reportArgumentType) + /homeassistant/components/zha/websocket_api.py:422:29 - error: Argument of type "ZHAGatewayProxy" cannot be assigned to parameter "zha_gateway" of type "Gateway" in function "_get_entity_original_name" +   "ZHAGatewayProxy" is not assignable to "Gateway" (reportArgumentType) + /homeassistant/components/zha/websocket_api.py:426:59 - error: Cannot access attribute "cluster_handlers" for class "GroupEntity" +   Attribute "cluster_handlers" is unknown (reportAttributeAccessIssue) + /homeassistant/components/zha/websocket_api.py:938:48 - error: Argument of type "int" cannot be assigned to parameter "operation" of type "ZDOCmd" in function "async_binding_operation" +   "int" is not assignable to "ZDOCmd" (reportArgumentType) + /homeassistant/components/zha/websocket_api.py:967:48 - error: Argument of type "int" cannot be assigned to parameter "operation" of type "ZDOCmd" in function "async_binding_operation" +   "int" is not assignable to "ZDOCmd" (reportArgumentType) + /homeassistant/components/zha/websocket_api.py:999:55 - error: Argument of type "list[ClusterBinding]" cannot be assigned to parameter "cluster_bindings" of type "list[ClusterBinding]" in function "async_bind_to_group" +   "builtins.list" is not assignable to "builtins.list" +     Type parameter "_T@list" is invariant, but "homeassistant.components.zha.websocket_api.ClusterBinding" is not the same as "zha.zigbee.device.ClusterBinding" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /homeassistant/components/zha/websocket_api.py:1023:59 - error: Argument of type "list[ClusterBinding]" cannot be assigned to parameter "cluster_bindings" of type "list[ClusterBinding]" in function "async_unbind_from_group" +   "builtins.list" is not assignable to "builtins.list" +     Type parameter "_T@list" is invariant, but "homeassistant.components.zha.websocket_api.ClusterBinding" is not the same as "zha.zigbee.device.ClusterBinding" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /homeassistant/components/zha/websocket_api.py:1048:23 - error: Cannot access attribute "name" for class "ZDOCmd" +   Attribute "name" is unknown (reportAttributeAccessIssue) +/homeassistant/components/zhong_hong/climate.py + /homeassistant/components/zhong_hong/climate.py:9:6 - error: Import "zhong_hong_hvac.hub" could not be resolved (reportMissingImports) + /homeassistant/components/zhong_hong/climate.py:10:6 - error: Import "zhong_hong_hvac.hvac" could not be resolved (reportMissingImports) + /homeassistant/components/zhong_hong/climate.py:187:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zhong_hong/climate.py:192:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zhong_hong/climate.py:197:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zhong_hong/climate.py:200:20 - error: Type "Any | None" is not assignable to return type "HVACMode" +   Type "Any | None" is not assignable to type "HVACMode" +     "None" is not assignable to "HVACMode" (reportReturnType) + /homeassistant/components/zhong_hong/climate.py:204:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zhong_hong/climate.py:209:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zhong_hong/climate.py:214:9 - error: "target_temperature_step" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zhong_hong/climate.py:224:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zhong_hong/climate.py:231:9 - error: "fan_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zhong_hong/climate.py:238:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/zhong_hong/climate.py:243:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/ziggo_mediabox_xl/media_player.py + /homeassistant/components/ziggo_mediabox_xl/media_player.py:9:31 - error: "ZiggoMediaboxXL" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/components/ziggo_mediabox_xl/media_player.py:128:9 - error: "source_list" overrides symbol of same name in class "MediaPlayerEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zimi/config_flow.py + /homeassistant/components/zimi/config_flow.py:47:25 - error: Type "None" is not assignable to declared type "ControlPoint" +   "None" is not assignable to "ControlPoint" (reportAssignmentType) +/homeassistant/components/zimi/cover.py + /homeassistant/components/zimi/cover.py:38:7 - error: Base classes for class "ZimiCover" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zimi/cover.py:55:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zimi/cover.py:60:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zimi/cover.py:65:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zimi/cover.py:70:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zimi/entity.py + /homeassistant/components/zimi/entity.py:46:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/zimi/fan.py + /homeassistant/components/zimi/fan.py:36:7 - error: Base classes for class "ZimiFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zimi/fan.py:85:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zimi/fan.py:92:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) +/homeassistant/components/zimi/light.py + /homeassistant/components/zimi/light.py:41:7 - error: Base classes for class "ZimiLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zimi/light.py:53:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zimi/light.py:99:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zimi/light.py:101:22 - error: Operator "*" not supported for "None" (reportOptionalOperand) +/homeassistant/components/zimi/sensor.py + /homeassistant/components/zimi/sensor.py:81:7 - error: Base classes for class "ZimiSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zimi/sensor.py:96:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ZimiSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/zimi/sensor.py:96:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ZimiSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/zimi/sensor.py:100:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/zimi/switch.py + /homeassistant/components/zimi/switch.py:32:7 - error: Base classes for class "ZimiSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zimi/switch.py:36:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zone/__init__.py + /homeassistant/components/zone/__init__.py:380:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/components/zoneminder/__init__.py + /homeassistant/components/zoneminder/__init__.py:7:6 - error: Import "zoneminder.zm" could not be resolved (reportMissingImports) +/homeassistant/components/zoneminder/binary_sensor.py + /homeassistant/components/zoneminder/binary_sensor.py:5:6 - error: Import "zoneminder.zm" could not be resolved (reportMissingImports) +/homeassistant/components/zoneminder/camera.py + /homeassistant/components/zoneminder/camera.py:7:6 - error: Import "zoneminder.monitor" could not be resolved (reportMissingImports) + /homeassistant/components/zoneminder/camera.py:8:6 - error: Import "zoneminder.zm" could not be resolved (reportMissingImports) +/homeassistant/components/zoneminder/sensor.py + /homeassistant/components/zoneminder/sensor.py:8:6 - error: Import "zoneminder.monitor" could not be resolved (reportMissingImports) + /homeassistant/components/zoneminder/sensor.py:9:6 - error: Import "zoneminder.zm" could not be resolved (reportMissingImports) +/homeassistant/components/zoneminder/switch.py + /homeassistant/components/zoneminder/switch.py:9:6 - error: Import "zoneminder.monitor" could not be resolved (reportMissingImports) + /homeassistant/components/zoneminder/switch.py:10:6 - error: Import "zoneminder.zm" could not be resolved (reportMissingImports) + /homeassistant/components/zoneminder/switch.py:62:12 - error: Type "Literal['mdi:record-rec']" is not assignable to declared type "cached_property" +   "Literal['mdi:record-rec']" is not assignable to "cached_property[str | None]" (reportAssignmentType) + /homeassistant/components/zoneminder/switch.py:77:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_js/api.py + /homeassistant/components/zwave_js/api.py:36:5 - error: "ControllerStatistics" is not exported from module "zwave_js_server.model.controller" +   Import from "zwave_js_server.model.controller.statistics" instead (reportPrivateImportUsage) + /homeassistant/components/zwave_js/api.py:37:5 - error: "InclusionGrant" is not exported from module "zwave_js_server.model.controller" +   Import from "zwave_js_server.model.controller.inclusion_and_provisioning" instead (reportPrivateImportUsage) + /homeassistant/components/zwave_js/api.py:38:5 - error: "ProvisioningEntry" is not exported from module "zwave_js_server.model.controller" +   Import from "zwave_js_server.model.controller.inclusion_and_provisioning" instead (reportPrivateImportUsage) + /homeassistant/components/zwave_js/api.py:39:5 - error: "QRProvisioningInformation" is not exported from module "zwave_js_server.model.controller" +   Import from "zwave_js_server.model.controller.inclusion_and_provisioning" instead (reportPrivateImportUsage) + /homeassistant/components/zwave_js/api.py:50:46 - error: "NodeStatistics" is not exported from module "zwave_js_server.model.node" +   Import from "zwave_js_server.model.node.statistics" instead (reportPrivateImportUsage) + /homeassistant/components/zwave_js/api.py:2564:48 - error: Type "str | bytes | FileField" is not assignable to declared type "FileField" +   Type "str | bytes | FileField" is not assignable to type "FileField" +     "bytes" is not assignable to "FileField" (reportAssignmentType) +/homeassistant/components/zwave_js/binary_sensor.py + /homeassistant/components/zwave_js/binary_sensor.py:477:7 - error: Base classes for class "ZWaveBooleanBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/binary_sensor.py:498:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/binary_sensor.py:505:7 - error: Base classes for class "ZWaveNotificationBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/binary_sensor.py:529:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/binary_sensor.py:536:7 - error: Base classes for class "ZWavePropertyBinarySensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/binary_sensor.py:550:14 - error: "entity_description" overrides symbol of same name in class "BinarySensorEntity" +   Variable is mutable so its type is invariant +     Override type "PropertyZWaveJSEntityDescription" is not the same as base type "BinarySensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/binary_sensor.py:554:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_js/button.py + /homeassistant/components/zwave_js/button.py:68:7 - error: Base classes for class "ZwaveBooleanNodeButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/button.py:137:7 - error: Base classes for class "ZWaveNotificationIdleButton" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_js/climate.py + /homeassistant/components/zwave_js/climate.py:126:7 - error: Base classes for class "ZWaveClimate" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/climate.py:275:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/climate.py:286:9 - error: "hvac_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACMode | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/climate.py:298:9 - error: "hvac_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[HVACMode]]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/climate.py:303:9 - error: "hvac_action" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[HVACAction | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/climate.py:313:9 - error: "current_humidity" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/climate.py:318:9 - error: "current_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/climate.py:323:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/climate.py:337:9 - error: "target_temperature_high" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/climate.py:351:9 - error: "target_temperature_low" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/climate.py:365:9 - error: "preset_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/climate.py:379:9 - error: "preset_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/climate.py:384:9 - error: "fan_mode" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/climate.py:395:9 - error: "fan_modes" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/climate.py:402:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/climate.py:418:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/climate.py:434:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_js/config_flow.py + /homeassistant/components/zwave_js/config_flow.py:19:37 - error: "VersionInfo" is not exported from module "zwave_js_server.version" +   Import from "zwave_js_server.model.version" instead (reportPrivateImportUsage) + /homeassistant/components/zwave_js/config_flow.py:496:16 - error: Could not access item in TypedDict +   "context" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/components/zwave_js/config_flow.py:582:30 - error: Could not access item in TypedDict +   "title_placeholders" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/components/zwave_js/cover.py + /homeassistant/components/zwave_js/cover.py:82:7 - error: Base classes for class "CoverPositionMixin" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/cover.py:96:41 - error: Cannot assign to attribute "_attr_supported_features" for class "CoverPositionMixin*" +   Type "CoverEntityFeature | int" is not assignable to type "CoverEntityFeature | None" +     Type "int" is not assignable to type "CoverEntityFeature | None" +       "int" is not assignable to "CoverEntityFeature" +       "int" is not assignable to "None" (reportAttributeAccessIssue) + /homeassistant/components/zwave_js/cover.py:109:13 - error: Operator "|=" not supported for types "CoverEntityFeature | None" and "Literal[CoverEntityFeature.STOP]" +   Operator "|" not supported for types "None" and "Literal[CoverEntityFeature.STOP]" (reportOperatorIssue) + /homeassistant/components/zwave_js/cover.py:142:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/cover.py:149:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/cover.py:188:7 - error: Base classes for class "CoverTiltMixin" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/cover.py:202:41 - error: Cannot assign to attribute "_attr_supported_features" for class "CoverTiltMixin*" +   Type "CoverEntityFeature | int" is not assignable to type "CoverEntityFeature | None" +     Type "int" is not assignable to type "CoverEntityFeature | None" +       "int" is not assignable to "CoverEntityFeature" +       "int" is not assignable to "None" (reportAttributeAccessIssue) + /homeassistant/components/zwave_js/cover.py:215:13 - error: Operator "|=" not supported for types "CoverEntityFeature | None" and "Literal[CoverEntityFeature.STOP_TILT]" +   Operator "|" not supported for types "None" and "Literal[CoverEntityFeature.STOP_TILT]" (reportOperatorIssue) + /homeassistant/components/zwave_js/cover.py:246:9 - error: "current_cover_tilt_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/cover.py:322:7 - error: Base classes for class "ZWaveTiltCover" define variable "current_cover_position" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/cover.py:322:7 - error: Base classes for class "ZWaveTiltCover" define variable "is_closed" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/cover.py:341:7 - error: Base classes for class "ZWaveWindowCovering" define variable "current_cover_position" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/cover.py:341:7 - error: Base classes for class "ZWaveWindowCovering" define variable "is_closed" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/cover.py:439:7 - error: Base classes for class "ZwaveMotorizedBarrier" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/cover.py:460:9 - error: "is_opening" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/cover.py:467:9 - error: "is_closing" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/cover.py:474:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_js/discovery.py + /homeassistant/components/zwave_js/discovery.py:49:5 - error: "ConfigurationValueType" is not exported from module "zwave_js_server.model.value" +   Import from "zwave_js_server.const" instead (reportPrivateImportUsage) + /homeassistant/components/zwave_js/discovery.py:1274:34 - error: Argument of type "str | None" cannot be assigned to parameter "version" of type "str" in function "__new__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /homeassistant/components/zwave_js/discovery.py:1279:34 - error: Argument of type "str | None" cannot be assigned to parameter "version" of type "str" in function "__new__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/zwave_js/entity.py + /homeassistant/components/zwave_js/entity.py:227:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_js/event.py + /homeassistant/components/zwave_js/event.py:71:7 - error: Base classes for class "ZwaveEventEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_js/fan.py + /homeassistant/components/zwave_js/fan.py:77:7 - error: Base classes for class "ZwaveFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/fan.py:148:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/fan.py:213:9 - error: "preset_modes" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/fan.py:221:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/fan.py:248:9 - error: "speed_count" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/fan.py:253:9 - error: "supported_features" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[FanEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/fan.py:285:16 - error: "max_speed" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/zwave_js/fan.py:310:7 - error: Base classes for class "ZwaveThermostatFan" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/fan.py:361:9 - error: "preset_mode" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/fan.py:383:9 - error: "preset_modes" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[list[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/fan.py:390:9 - error: "supported_features" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/fan.py:390:9 - error: "supported_features" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[FanEntityFeature]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/fan.py:413:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_js/helpers.py + /homeassistant/components/zwave_js/helpers.py:19:58 - error: "ProvisioningEntry" is not exported from module "zwave_js_server.model.controller" +   Import from "zwave_js_server.model.controller.inclusion_and_provisioning" instead (reportPrivateImportUsage) + /homeassistant/components/zwave_js/helpers.py:29:37 - error: "VersionInfo" is not exported from module "zwave_js_server.version" +   Import from "zwave_js_server.model.version" instead (reportPrivateImportUsage) +/homeassistant/components/zwave_js/humidifier.py + /homeassistant/components/zwave_js/humidifier.py:115:7 - error: Base classes for class "ZWaveHumidifier" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/humidifier.py:132:14 - error: "entity_description" overrides symbol of same name in class "HumidifierEntity" +   Variable is mutable so its type is invariant +     Override type "ZwaveHumidifierEntityDescription" is not the same as base type "HumidifierEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/humidifier.py:147:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/humidifier.py:191:9 - error: "target_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/humidifier.py:203:9 - error: "min_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/humidifier.py:211:9 - error: "max_humidity" overrides symbol of same name in class "HumidifierEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_js/light.py + /homeassistant/components/zwave_js/light.py:108:7 - error: Base classes for class "ZwaveLight" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/light.py:219:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/light.py:229:9 - error: "color_mode" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[ColorMode | str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/light.py:234:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/light.py:243:9 - error: "hs_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[float, float] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/light.py:248:9 - error: "rgbw_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int, int] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/light.py:258:9 - error: "supported_color_modes" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[set[ColorMode] | set[str] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/light.py:517:21 - error: "red" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/zwave_js/light.py:518:25 - error: "green" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/zwave_js/light.py:519:25 - error: "blue" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/zwave_js/light.py:522:33 - error: "red" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/zwave_js/light.py:522:38 - error: "green" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/zwave_js/light.py:522:45 - error: "blue" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/zwave_js/light.py:531:21 - error: "red" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/zwave_js/light.py:532:25 - error: "green" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/zwave_js/light.py:533:25 - error: "blue" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/zwave_js/light.py:536:33 - error: "red" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/zwave_js/light.py:536:38 - error: "green" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/components/zwave_js/light.py:536:45 - error: "blue" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/components/zwave_js/lock.py + /homeassistant/components/zwave_js/lock.py:122:7 - error: Base classes for class "ZWaveLock" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/lock.py:126:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_js/number.py + /homeassistant/components/zwave_js/number.py:60:7 - error: Base classes for class "ZwaveNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/number.py:80:9 - error: "native_min_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/number.py:86:9 - error: "native_max_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/number.py:92:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/number.py:98:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/number.py:129:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/number.py:140:7 - error: Base classes for class "ZwaveVolumeNumberEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/number.py:159:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_js/select.py + /homeassistant/components/zwave_js/select.py:65:7 - error: Base classes for class "ZwaveSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/select.py:81:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/select.py:141:7 - error: Base classes for class "ZwaveDefaultToneSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/select.py:159:9 - error: "options" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[list[str]]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/select.py:170:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/select.py:192:7 - error: Base classes for class "ZwaveMultilevelSwitchSelectEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/select.py:210:9 - error: "current_option" overrides symbol of same name in class "SelectEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_js/sensor.py + /homeassistant/components/zwave_js/sensor.py:731:7 - error: Base classes for class "ZwaveSensor" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/sensor.py:753:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/sensor.py:761:9 - error: "native_unit_of_measurement" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/sensor.py:809:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/sensor.py:874:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/sensor.py:975:14 - error: "_attr_native_value" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "StateType | date | datetime | Decimal" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/sensor.py:1036:14 - error: "_attr_native_value" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "StateType | date | datetime | Decimal" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/sensor.py:1055:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ZWaveJSStatisticsSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_js/siren.py + /homeassistant/components/zwave_js/siren.py:55:7 - error: Base classes for class "ZwaveSirenEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/siren.py:79:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_js/switch.py + /homeassistant/components/zwave_js/switch.py:63:7 - error: Base classes for class "ZWaveSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/switch.py:75:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/switch.py:105:7 - error: Base classes for class "ZWaveBarrierEventSignalingSwitch" define variable "available" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/switch.py:129:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_js/triggers/event.py + /homeassistant/components/zwave_js/triggers/event.py:11:46 - error: "CONTROLLER_EVENT_MODEL_MAP" is not exported from module "zwave_js_server.model.controller" +   Import from "zwave_js_server.model.controller.event_model" instead (reportPrivateImportUsage) + /homeassistant/components/zwave_js/triggers/event.py:13:40 - error: "NODE_EVENT_MODEL_MAP" is not exported from module "zwave_js_server.model.node" +   Import from "zwave_js_server.model.node.event_model" instead (reportPrivateImportUsage) +/homeassistant/components/zwave_js/update.py + /homeassistant/components/zwave_js/update.py:191:14 - error: "entity_description" overrides symbol of same name in class "UpdateEntity" +   Variable is mutable so its type is invariant +     Override type "ZWaveUpdateEntityDescription" is not the same as base type "UpdateEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_js/update.py:294:34 - error: Argument of type "str | None" cannot be assigned to parameter "version" of type "str" in function "__new__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/homeassistant/components/zwave_me/binary_sensor.py + /homeassistant/components/zwave_me/binary_sensor.py:61:7 - error: Base classes for class "ZWaveMeBinarySensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/binary_sensor.py:75:9 - error: "is_on" overrides symbol of same name in class "BinarySensorEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_me/button.py + /homeassistant/components/zwave_me/button.py:40:7 - error: Base classes for class "ZWaveMeButton" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_me/climate.py + /homeassistant/components/zwave_me/climate.py:54:7 - error: Base classes for class "ZWaveMeClimate" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/climate.py:71:9 - error: "temperature_unit" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/climate.py:76:9 - error: "target_temperature" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/climate.py:78:16 - error: Type "Any | str | int | float" is not assignable to return type "float" +   Type "Any | str | int | float" is not assignable to type "float" +     "str" is not assignable to "float" (reportReturnType) + /homeassistant/components/zwave_me/climate.py:81:9 - error: "max_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/climate.py:83:16 - error: Type "Any | str" is not assignable to return type "float" +   Type "Any | str" is not assignable to type "float" +     "str" is not assignable to "float" (reportReturnType) + /homeassistant/components/zwave_me/climate.py:86:9 - error: "min_temp" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/climate.py:88:16 - error: Type "Any | str" is not assignable to return type "float" +   Type "Any | str" is not assignable to type "float" +     "str" is not assignable to "float" (reportReturnType) + /homeassistant/components/zwave_me/climate.py:91:9 - error: "target_temperature_step" overrides symbol of same name in class "ClimateEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_me/cover.py + /homeassistant/components/zwave_me/cover.py:48:7 - error: Base classes for class "ZWaveMeCover" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/cover.py:78:9 - error: "current_cover_position" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/cover.py:86:12 - error: Operator ">" not supported for types "Any | str | int | float" and "Literal[95]" +   Operator ">" not supported for types "str" and "Literal[95]" (reportOperatorIssue) + /homeassistant/components/zwave_me/cover.py:89:16 - error: Type "Any | str | int | float" is not assignable to return type "int | None" +   Type "Any | str | int | float" is not assignable to type "int | None" +     Type "float" is not assignable to type "int | None" +       "float" is not assignable to "int" +       "float" is not assignable to "None" (reportReturnType) + /homeassistant/components/zwave_me/cover.py:92:9 - error: "is_closed" overrides symbol of same name in class "CoverEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/cover.py:103:16 - error: Operator "<" not supported for types "Any | str | int | float" and "Literal[5]" +   Operator "<" not supported for types "str" and "Literal[5]" when expected type is "bool | None" (reportOperatorIssue) +/homeassistant/components/zwave_me/entity.py + /homeassistant/components/zwave_me/entity.py:27:9 - error: "device_info" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[DeviceInfo | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_me/fan.py + /homeassistant/components/zwave_me/fan.py:44:7 - error: Base classes for class "ZWaveMeFan" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/fan.py:54:9 - error: "percentage" overrides symbol of same name in class "FanEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/fan.py:58:16 - error: Type "Any | str | int | float" is not assignable to return type "int" +   Type "Any | str | int | float" is not assignable to type "int" +     "float" is not assignable to "int" (reportReturnType) +/homeassistant/components/zwave_me/light.py + /homeassistant/components/zwave_me/light.py:55:7 - error: Base classes for class "ZWaveMeRGB" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/light.py:69:14 - error: "_attr_supported_color_modes" overrides symbol of same name in class "LightEntity" +   Variable is mutable so its type is invariant +     Override type "set[ColorMode]" is not the same as base type "set[ColorMode] | set[str] | None" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/light.py:93:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/light.py:98:9 - error: "brightness" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[int | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/light.py:103:9 - error: "rgb_color" overrides symbol of same name in class "LightEntity" +   "property" is not assignable to "cached_property[tuple[int, int, int] | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_me/lock.py + /homeassistant/components/zwave_me/lock.py:47:7 - error: Base classes for class "ZWaveMeLock" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/lock.py:51:9 - error: "is_locked" overrides symbol of same name in class "LockEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_me/number.py + /homeassistant/components/zwave_me/number.py:40:7 - error: Base classes for class "ZWaveMeNumber" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/number.py:44:9 - error: "native_value" overrides symbol of same name in class "NumberEntity" +   "property" is not assignable to "cached_property[float | None]" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/number.py:48:16 - error: Type "Any | str | int | float" is not assignable to return type "float" +   Type "Any | str | int | float" is not assignable to type "float" +     "str" is not assignable to "float" (reportReturnType) +/homeassistant/components/zwave_me/sensor.py + /homeassistant/components/zwave_me/sensor.py:144:7 - error: Base classes for class "ZWaveMeSensor" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/sensor.py:157:14 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ZWaveMeSensorEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/sensor.py:157:14 - error: "entity_description" overrides symbol of same name in class "SensorEntity" +   Variable is mutable so its type is invariant +     Override type "ZWaveMeSensorEntityDescription" is not the same as base type "SensorEntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/sensor.py:160:9 - error: "native_value" overrides symbol of same name in class "SensorEntity" +   "property" is not assignable to "cached_property[StateType | date | datetime | Decimal]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_me/siren.py + /homeassistant/components/zwave_me/siren.py:42:7 - error: Base classes for class "ZWaveMeSiren" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/siren.py:53:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/components/zwave_me/switch.py + /homeassistant/components/zwave_me/switch.py:55:7 - error: Base classes for class "ZWaveMeSwitch" define variable "device_info" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/components/zwave_me/switch.py:64:9 - error: "is_on" overrides symbol of same name in class "ToggleEntity" +   "property" is not assignable to "cached_property[bool | None]" (reportIncompatibleVariableOverride) +/homeassistant/config.py + /homeassistant/config.py:614:26 - error: "schema_builder" is not a known attribute of module "voluptuous" (reportAttributeAccessIssue) + /homeassistant/config.py:948:27 - error: "platform_exception" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/config.py:959:9 - error: No parameter named "translation_domain" (reportCallIssue) + /homeassistant/config.py:960:9 - error: No parameter named "translation_placeholders" (reportCallIssue) + /homeassistant/config.py:960:34 - error: "placeholders" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/config.py:1015:69 - error: Argument of type "Hashable" cannot be assigned to parameter "element" of type "str" in function "add" +   "Hashable" is not assignable to "str" (reportArgumentType) +/homeassistant/config_entries.py + /homeassistant/config_entries.py:1091:54 - error: Cannot access attribute "VERSION" for class "FunctionType" +   Attribute "VERSION" is unknown (reportFunctionMemberAccess) + /homeassistant/config_entries.py:1092:65 - error: Cannot access attribute "MINOR_VERSION" for class "FunctionType" +   Attribute "MINOR_VERSION" is unknown (reportFunctionMemberAccess) + /homeassistant/config_entries.py:1260:12 - error: Could not access item in TypedDict +   "type" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:1289:16 - error: Could not access item in TypedDict +   "context" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:1476:26 - error: Could not access item in TypedDict +   "type" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:1541:12 - error: Could not access item in TypedDict +   "source" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:1559:12 - error: Could not access item in TypedDict +   "type" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:1608:17 - error: Could not access item in TypedDict +   "source" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:1624:34 - error: Could not access item in TypedDict +   "context" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:1685:18 - error: Could not access item in TypedDict +   "data" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:1688:27 - error: Could not access item in TypedDict +   "minor_version" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:1689:21 - error: Could not access item in TypedDict +   "options" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:1690:20 - error: Could not access item in TypedDict +   "source" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:1691:29 - error: Could not access item in TypedDict +   "subentries" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:1692:19 - error: Could not access item in TypedDict +   "title" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:1694:21 - error: Could not access item in TypedDict +   "version" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:2987:17 - error: Could not access item in TypedDict +   "context" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:2987:17 - error: Could not access item in TypedDict +   "source" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:3395:16 - error: Could not access item in TypedDict +   "entry_id" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:3407:16 - error: Could not access item in TypedDict +   "entry_id" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:3476:12 - error: Could not access item in TypedDict +   "type" is not a required key in "SubentryFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:3491:39 - error: Could not access item in TypedDict +   "data" is not a required key in "SubentryFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:3493:23 - error: Could not access item in TypedDict +   "title" is not a required key in "SubentryFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:3649:16 - error: Could not access item in TypedDict +   "subentry_id" is not a required key in "SubentryFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:3698:12 - error: Could not access item in TypedDict +   "type" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:3703:12 - error: Could not access item in TypedDict +   "data" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/config_entries.py:3715:36 - error: Could not access item in TypedDict +   "data" is not a required key in "ConfigFlowResult", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/core.py + /homeassistant/core.py:665:9 - error: Overloaded implementation is not consistent with signature of overload 1 +   Function return type "Future[Coroutine[Any, Any, _R@async_add_hass_job]] | None" is incompatible with type "Future[Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, _R@async_add_hass_job]]]]] | None" +     Type "Future[Coroutine[Any, Any, _R@async_add_hass_job]] | None" is not assignable to type "Future[Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, _R@async_add_hass_job]]]]] | None" +       Type "Future[Coroutine[Any, Any, _R@async_add_hass_job]]" is not assignable to type "Future[Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, _R@async_add_hass_job]]]]] | None" +         "Future[Coroutine[Any, Any, _R@async_add_hass_job]]" is not assignable to "Future[Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, _R@async_add_hass_job]]]]]" +           Type parameter "_T@Future" is invariant, but "Coroutine[Any, Any, _R@async_add_hass_job]" is not the same as "Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, _R@async_add_hass_job]]]]" +         "Future[Coroutine[Any, Any, _R@async_add_hass_job]]" is not assignable to "None" (reportInconsistentOverload) + /homeassistant/core.py:713:9 - error: Overloaded implementation is not consistent with signature of overload 1 +   Function return type "Future[Coroutine[Any, Any, _R@_async_add_hass_job]] | None" is incompatible with type "Future[Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, _R@_async_add_hass_job]]]]] | None" +     Type "Future[Coroutine[Any, Any, _R@_async_add_hass_job]] | None" is not assignable to type "Future[Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, _R@_async_add_hass_job]]]]] | None" +       Type "Future[Coroutine[Any, Any, _R@_async_add_hass_job]]" is not assignable to type "Future[Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, _R@_async_add_hass_job]]]]] | None" +         "Future[Coroutine[Any, Any, _R@_async_add_hass_job]]" is not assignable to "Future[Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, _R@_async_add_hass_job]]]]]" +           Type parameter "_T@Future" is invariant, but "Coroutine[Any, Any, _R@_async_add_hass_job]" is not the same as "Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, _R@_async_add_hass_job]]]]" +         "Future[Coroutine[Any, Any, _R@_async_add_hass_job]]" is not assignable to "None" (reportInconsistentOverload) + /homeassistant/core.py:735:27 - error: Type "HassJob[..., Coroutine[Any, Any, _R@_async_add_hass_job]]" is not assignable to declared type "HassJob[..., Coroutine[Any, Any, _R@_async_add_hass_job] | _R@_async_add_hass_job]" +   "HassJob[..., Coroutine[Any, Any, _R@_async_add_hass_job]]" is not assignable to "HassJob[..., Coroutine[Any, Any, _R@_async_add_hass_job] | _R@_async_add_hass_job]" +     Type parameter "_R_co@HassJob" is invariant, but "Coroutine[Any, Any, _R@_async_add_hass_job]" is not the same as "Coroutine[Any, Any, _R@_async_add_hass_job] | _R@_async_add_hass_job" (reportAssignmentType) + /homeassistant/core.py:737:17 - error: Argument of type "Coroutine[Any, Any, _R@_async_add_hass_job] | _R@_async_add_hass_job" cannot be assigned to parameter "coro" of type "Coroutine[Any, Any, _T@create_eager_task]" in function "create_eager_task" +   Type "Coroutine[Any, Any, _R@_async_add_hass_job] | object*" is not assignable to type "Coroutine[Any, Any, _T@create_eager_task]" +     "object*" is not assignable to "Coroutine[Any, Any, _T@create_eager_task]" (reportArgumentType) + /homeassistant/core.py:743:27 - error: Type "HassJob[..., _R@_async_add_hass_job]" is not assignable to declared type "HassJob[..., Coroutine[Any, Any, _R@_async_add_hass_job] | _R@_async_add_hass_job]" +   "HassJob[..., _R@_async_add_hass_job]" is not assignable to "HassJob[..., Coroutine[Any, Any, _R@_async_add_hass_job] | _R@_async_add_hass_job]" +     Type parameter "_R_co@HassJob" is invariant, but "_R@_async_add_hass_job" is not the same as "Coroutine[Any, Any, _R@_async_add_hass_job] | _R@_async_add_hass_job" (reportAssignmentType) + /homeassistant/core.py:748:27 - error: Type "HassJob[..., _R@_async_add_hass_job]" is not assignable to declared type "HassJob[..., Coroutine[Any, Any, _R@_async_add_hass_job] | _R@_async_add_hass_job]" +   "HassJob[..., _R@_async_add_hass_job]" is not assignable to "HassJob[..., Coroutine[Any, Any, _R@_async_add_hass_job] | _R@_async_add_hass_job]" +     Type parameter "_R_co@HassJob" is invariant, but "_R@_async_add_hass_job" is not the same as "Coroutine[Any, Any, _R@_async_add_hass_job] | _R@_async_add_hass_job" (reportAssignmentType) + /homeassistant/core.py:749:20 - error: Type "Future[Coroutine[Any, Any, _R@_async_add_hass_job] | _R@_async_add_hass_job]" is not assignable to declared type "Future[_R@_async_add_hass_job]" +   "Future[Coroutine[Any, Any, _R@_async_add_hass_job] | _R@_async_add_hass_job]" is not assignable to "Future[_R@_async_add_hass_job]" +     Type parameter "_T@Future" is invariant, but "Coroutine[Any, Any, _R@_async_add_hass_job] | _R@_async_add_hass_job" is not the same as "_R@_async_add_hass_job" (reportAssignmentType) + /homeassistant/core.py:896:9 - error: Overloaded implementation is not consistent with signature of overload 1 +   Function return type "Future[Coroutine[Any, Any, _R@async_run_hass_job]] | None" is incompatible with type "Future[Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, _R@async_run_hass_job]]]]] | None" +     Type "Future[Coroutine[Any, Any, _R@async_run_hass_job]] | None" is not assignable to type "Future[Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, _R@async_run_hass_job]]]]] | None" +       Type "Future[Coroutine[Any, Any, _R@async_run_hass_job]]" is not assignable to type "Future[Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, _R@async_run_hass_job]]]]] | None" +         "Future[Coroutine[Any, Any, _R@async_run_hass_job]]" is not assignable to "Future[Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, _R@async_run_hass_job]]]]]" +           Type parameter "_T@Future" is invariant, but "Coroutine[Any, Any, _R@async_run_hass_job]" is not the same as "Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, Coroutine[Any, Any, _R@async_run_hass_job]]]]" +         "Future[Coroutine[Any, Any, _R@async_run_hass_job]]" is not assignable to "None" (reportInconsistentOverload) + /homeassistant/core.py:917:27 - error: Type "HassJob[..., _R@async_run_hass_job]" is not assignable to declared type "HassJob[..., Coroutine[Any, Any, _R@async_run_hass_job] | _R@async_run_hass_job]" +   "HassJob[..., _R@async_run_hass_job]" is not assignable to "HassJob[..., Coroutine[Any, Any, _R@async_run_hass_job] | _R@async_run_hass_job]" +     Type parameter "_R_co@HassJob" is invariant, but "_R@async_run_hass_job" is not the same as "Coroutine[Any, Any, _R@async_run_hass_job] | _R@async_run_hass_job" (reportAssignmentType) + /homeassistant/core.py:2356:17 - error: Argument of type "EventType[EventStateReportedData]" cannot be assigned to parameter "event_type" of type "EventType[_DataT@async_fire_internal] | str" in function "async_fire_internal" +   Type "EventType[EventStateReportedData]" is not assignable to type "EventType[EventStateReportedData | dict[str, str | datetime | State | None]] | str" +     "EventType[EventStateReportedData]" is not assignable to "EventType[EventStateReportedData | dict[str, str | datetime | State | None]]" +       Type parameter "_DataT@EventType" is invariant, but "EventStateReportedData" is not the same as "EventStateReportedData | dict[str, str | datetime | State | None]" +     "EventType[EventStateReportedData]" is not assignable to "str" (reportArgumentType) + /homeassistant/core.py:2874:1 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) +/homeassistant/data_entry_flow.py + /homeassistant/data_entry_flow.py:339:48 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:345:29 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:388:12 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:394:23 - error: Could not access item in TypedDict +   "step_id" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:397:12 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:401:16 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:401:69 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:411:16 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:411:69 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:427:16 - error: Could not access item in TypedDict +   "step_id" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:428:17 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:430:21 - error: Could not access item in TypedDict +   "progress_action" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:431:24 - error: Could not access item in TypedDict +   "description_placeholders" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:506:16 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:514:27 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:523:13 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:540:14 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:543:12 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:547:12 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:548:54 - error: Could not access item in TypedDict +   "step_id" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:565:12 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:606:25 - error: Could not access item in TypedDict +   "step_id" is not a required key in "FlowResult[Any, Any]*", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/data_entry_flow.py:707:37 - error: Argument of type "Marker | Any" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   Type "Marker | Any" is not assignable to type "str" +     "Marker" is not assignable to "str" (reportArgumentType) +/homeassistant/helpers/chat_session.py + /homeassistant/helpers/chat_session.py:85:13 - error: Argument of type "HassJob[(now: datetime), None]" cannot be assigned to parameter "action" of type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" in function "async_call_later" +   Type "HassJob[(now: datetime), None]" is not assignable to type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" +     "HassJob[(now: datetime), None]" is not assignable to "HassJob[(datetime), Coroutine[Any, Any, None] | None]" +       Type parameter "_R_co@HassJob" is invariant, but "None" is not the same as "Coroutine[Any, Any, None] | None" +     Type "HassJob[(now: datetime), None]" is not assignable to type "(datetime) -> (Coroutine[Any, Any, None] | None)" (reportArgumentType) +/homeassistant/helpers/collection.py + /homeassistant/helpers/collection.py:651:32 - error: "data" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/helpers/condition.py + /homeassistant/helpers/condition.py:150:5 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/helpers/condition.py:150:5 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[str, _S@__setitem__]" is not assignable to type "dict[str, dict[str, Any] | None]" +     "dict[str, _S@__setitem__]" is not assignable to "dict[str, dict[str, Any] | None]" +       Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "dict[str, Any] | None" +       Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /homeassistant/helpers/condition.py:152:5 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/helpers/condition.py:152:5 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[str, _S@__setitem__]" is not assignable to type "dict[str, str]" +     "dict[str, _S@__setitem__]" is not assignable to "dict[str, str]" +       Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "str" +       Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /homeassistant/helpers/condition.py:263:10 - error: Function with declared return type "dict[str, type[Condition]]" must return value on all code paths +   "None" is not assignable to "dict[str, type[Condition]]" (reportReturnType) + /homeassistant/helpers/condition.py:359:26 - error: Type "tuple[str, ModuleType]" is not assignable to return type "tuple[str, ConditionProtocol | None]" +   Type "ModuleType" is not assignable to type "ConditionProtocol | None" +     "ModuleType" is incompatible with protocol "ConditionProtocol" +       "async_get_conditions" is not present +     "ModuleType" is not assignable to "None" (reportReturnType) + /homeassistant/helpers/condition.py:770:72 - error: "state_value" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/helpers/config_validation.py + /homeassistant/helpers/config_validation.py:21:5 - error: "_GLOBAL_DEFAULT_TIMEOUT" is unknown import symbol (reportAttributeAccessIssue) + /homeassistant/helpers/config_validation.py:873:37 - error: Argument missing for parameter "v" (reportCallIssue) + /homeassistant/helpers/config_validation.py:1200:29 - error: Could not access item in TypedDict +   "collapsed" is not a required key in "SectionConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/helpers/data_entry_flow.py + /homeassistant/helpers/data_entry_flow.py:36:12 - error: Could not access item in TypedDict +   "type" is not a required key in "FlowResult[FlowContext, str]", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/helpers/debounce.py + /homeassistant/helpers/debounce.py:127:28 - error: No overloads for "async_run_hass_job" match the provided arguments (reportCallIssue) + /homeassistant/helpers/debounce.py:128:21 - error: Argument of type "HassJob[(), _R_co@Debouncer]" cannot be assigned to parameter "hassjob" of type "HassJob[..., Coroutine[Any, Any, _R@async_run_hass_job] | _R@async_run_hass_job]" in function "async_run_hass_job" +   "HassJob[(), _R_co@Debouncer]" is not assignable to "HassJob[..., Coroutine[Any, Any, _R@async_run_hass_job] | _R@async_run_hass_job]" +     Type parameter "_R_co@HassJob" is invariant, but "_R_co@Debouncer" is not the same as "Coroutine[Any, Any, _R@async_run_hass_job] | _R@async_run_hass_job" (reportArgumentType) + /homeassistant/helpers/debounce.py:150:28 - error: No overloads for "async_run_hass_job" match the provided arguments (reportCallIssue) + /homeassistant/helpers/debounce.py:151:21 - error: Argument of type "HassJob[(), _R_co@Debouncer]" cannot be assigned to parameter "hassjob" of type "HassJob[..., Coroutine[Any, Any, _R@async_run_hass_job] | _R@async_run_hass_job]" in function "async_run_hass_job" +   "HassJob[(), _R_co@Debouncer]" is not assignable to "HassJob[..., Coroutine[Any, Any, _R@async_run_hass_job] | _R@async_run_hass_job]" +     Type parameter "_R_co@HassJob" is invariant, but "_R_co@Debouncer" is not the same as "Coroutine[Any, Any, _R@async_run_hass_job] | _R@async_run_hass_job" (reportArgumentType) +/homeassistant/helpers/deprecation.py + /homeassistant/helpers/deprecation.py:373:9 - error: "breaks_in_ha_version" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/helpers/device_registry.py + /homeassistant/helpers/device_registry.py:404:52 - error: "dict_repr" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/helpers/discovery_flow.py + /homeassistant/helpers/discovery_flow.py:142:38 - error: Could not access item in TypedDict +   "source" is not a required key in "ConfigFlowContext", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/helpers/dispatcher.py + /homeassistant/helpers/dispatcher.py:53:5 - error: Overloaded implementation is not consistent with signature of overload 2 +   Type "(hass: HomeAssistant, signal: SignalType[*_Ts@dispatcher_connect], target: (*_Ts@dispatcher_connect) -> None) -> (() -> None)" is not assignable to type "(hass: HomeAssistant, signal: str, target: (...) -> None) -> (() -> None)" +     Parameter 2: type "str" is incompatible with type "SignalType[*_Ts@dispatcher_connect]" +       "str" is not assignable to "SignalType[*_Ts@dispatcher_connect]" (reportInconsistentOverload) + /homeassistant/helpers/dispatcher.py:141:5 - error: Overloaded implementation is not consistent with signature of overload 2 +   Type "(hass: HomeAssistant, signal: SignalType[*_Ts@dispatcher_send], *args: *_Ts@dispatcher_send) -> None" is not assignable to type "(hass: HomeAssistant, signal: str, *args: Any) -> None" +     Parameter 2: type "str" is incompatible with type "SignalType[*_Ts@dispatcher_send]" +       "str" is not assignable to "SignalType[*_Ts@dispatcher_send]" (reportInconsistentOverload) +/homeassistant/helpers/entity.py + /homeassistant/helpers/entity.py:1312:28 - error: Cannot access attribute "async_update" for class "Entity*" +   Attribute "async_update" is unknown (reportAttributeAccessIssue) + /homeassistant/helpers/entity.py:1314:56 - error: Cannot access attribute "update" for class "Entity*" +   Attribute "update" is unknown (reportAttributeAccessIssue) + /homeassistant/helpers/entity.py:1320:17 - error: "update_warn" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/helpers/entity.py:1649:5 - error: "entity_description" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "ToggleEntityDescription" is not the same as base type "EntityDescription" (reportIncompatibleVariableOverride) + /homeassistant/helpers/entity.py:1651:5 - error: "_attr_state" overrides symbol of same name in class "Entity" +   Variable is mutable so its type is invariant +     Override type "None" is not the same as base type "StateType" (reportIncompatibleVariableOverride) + /homeassistant/helpers/entity.py:1655:9 - error: "state" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[StateType]" (reportIncompatibleVariableOverride) +/homeassistant/helpers/entity_component.py + /homeassistant/helpers/entity_component.py:375:22 - error: Argument of type "ModuleType | None" cannot be assigned to parameter "platform" of type "EntityPlatformModule | None" in function "__init__" +   Type "ModuleType | None" is not assignable to type "EntityPlatformModule | None" +     Type "ModuleType" is not assignable to type "EntityPlatformModule | None" +       "ModuleType" is incompatible with protocol "EntityPlatformModule" +         "async_setup_platform" is not present +         "setup_platform" is not present +         "async_setup_entry" is not present +       "ModuleType" is not assignable to "None" (reportArgumentType) +/homeassistant/helpers/entity_platform.py + /homeassistant/helpers/entity_platform.py:974:17 - error: "entry" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/helpers/entity_registry.py + /homeassistant/helpers/entity_registry.py:218:13 - error: Cannot access attribute "default" for class "str" +   Attribute "default" is unknown (reportAttributeAccessIssue) + /homeassistant/helpers/entity_registry.py:277:52 - error: "dict_repr" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/helpers/entity_registry.py:339:52 - error: "dict_repr" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/helpers/entity_registry.py:443:13 - error: Cannot access attribute "default" for class "str" +   Attribute "default" is unknown (reportAttributeAccessIssue) + /homeassistant/helpers/entity_registry.py:1912:29 - error: Could not access item in TypedDict +   "old_entity_id" is not a required key in "_EventEntityRegistryUpdatedData_Update", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/helpers/event.py + /homeassistant/helpers/event.py:256:20 - error: "match_from_state" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/helpers/event.py:264:20 - error: "match_to_state" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/helpers/event.py:1491:48 - error: Argument of type "HassJob[(utc_now: datetime), None]" cannot be assigned to parameter "action" of type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" in function "async_track_point_in_utc_time" +   Type "HassJob[(utc_now: datetime), None]" is not assignable to type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" +     "HassJob[(utc_now: datetime), None]" is not assignable to "HassJob[(datetime), Coroutine[Any, Any, None] | None]" +       Type parameter "_R_co@HassJob" is invariant, but "None" is not the same as "Coroutine[Any, Any, None] | None" +     Type "HassJob[(utc_now: datetime), None]" is not assignable to type "(datetime) -> (Coroutine[Any, Any, None] | None)" (reportArgumentType) + /homeassistant/helpers/event.py:1819:13 - error: Argument of type "HassJob[(datetime), None]" cannot be assigned to parameter "action" of type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" in function "async_track_point_in_utc_time" +   Type "HassJob[(datetime), None]" is not assignable to type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" +     "HassJob[(datetime), None]" is not assignable to "HassJob[(datetime), Coroutine[Any, Any, None] | None]" +       Type parameter "_R_co@HassJob" is invariant, but "None" is not the same as "Coroutine[Any, Any, None] | None" +     Type "HassJob[(datetime), None]" is not assignable to type "(datetime) -> (Coroutine[Any, Any, None] | None)" (reportArgumentType) + /homeassistant/helpers/event.py:1842:13 - error: Argument of type "HassJob[(datetime), None]" cannot be assigned to parameter "action" of type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" in function "async_track_point_in_utc_time" +   Type "HassJob[(datetime), None]" is not assignable to type "HassJob[(datetime), Coroutine[Any, Any, None] | None] | ((datetime) -> (Coroutine[Any, Any, None] | None))" +     "HassJob[(datetime), None]" is not assignable to "HassJob[(datetime), Coroutine[Any, Any, None] | None]" +       Type parameter "_R_co@HassJob" is invariant, but "None" is not the same as "Coroutine[Any, Any, None] | None" +     Type "HassJob[(datetime), None]" is not assignable to type "(datetime) -> (Coroutine[Any, Any, None] | None)" (reportArgumentType) +/homeassistant/helpers/frame.py + /homeassistant/helpers/frame.py:141:28 - error: "path" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/helpers/frame.py:142:21 - error: "integration" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/helpers/frame.py:144:58 - error: "index" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/helpers/frame.py:403:19 - error: Function declaration "report_use" is obscured by a declaration of the same name (reportRedeclaration) +/homeassistant/helpers/integration_platform.py + /homeassistant/helpers/integration_platform.py:141:23 - error: No overloads for "async_run_hass_job" match the provided arguments (reportCallIssue) + /homeassistant/helpers/integration_platform.py:142:17 - error: Argument of type "HassJob[(HomeAssistant, str, Any), Awaitable[None] | None]" cannot be assigned to parameter "hassjob" of type "HassJob[..., Coroutine[Any, Any, _R@async_run_hass_job] | _R@async_run_hass_job]" in function "async_run_hass_job" +   "HassJob[(HomeAssistant, str, Any), Awaitable[None] | None]" is not assignable to "HassJob[..., Coroutine[Any, Any, _R@async_run_hass_job] | _R@async_run_hass_job]" +     Type parameter "_R_co@HassJob" is invariant, but "Awaitable[None] | None" is not the same as "Coroutine[Any, Any, _R@async_run_hass_job] | _R@async_run_hass_job" (reportArgumentType) + /homeassistant/helpers/integration_platform.py:191:24 - error: Argument of type "HassJob[(*Any), Coroutine[Any, Any, None] | None]" cannot be assigned to parameter "process_job" of type "HassJob[(HomeAssistant, str, Any), Awaitable[None] | None]" in function "__init__" +   "HassJob[(*Any), Coroutine[Any, Any, None] | None]" is not assignable to "HassJob[(HomeAssistant, str, Any), Awaitable[None] | None]" +     Type parameter "_R_co@HassJob" is invariant, but "Coroutine[Any, Any, None] | None" is not the same as "Awaitable[None] | None" (reportArgumentType) +/homeassistant/helpers/intent.py + /homeassistant/helpers/intent.py:951:9 - error: "slot_schema" incorrectly overrides property of same name in class "IntentHandler" (reportIncompatibleMethodOverride) + /homeassistant/helpers/intent.py:1161:35 - error: "service" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/helpers/json.py + /homeassistant/helpers/json.py:60:33 - error: Function with declared return type "bytes" must return value on all code paths +   "None" is not assignable to "bytes" (reportReturnType) + /homeassistant/helpers/json.py:189:55 - error: "dump" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/helpers/llm.py + /homeassistant/helpers/llm.py:519:79 - error: "extra" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/helpers/llm.py:521:58 - error: "extra" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/helpers/llm.py:786:31 - error: Cannot access attribute "DATA_SCHEMA" for class "Selector[Unknown]" +   Attribute "DATA_SCHEMA" is unknown (reportAttributeAccessIssue) + /homeassistant/helpers/llm.py:789:38 - error: Cannot access attribute "DATA_SCHEMA" for class "Selector[Unknown]" +   Attribute "DATA_SCHEMA" is unknown (reportAttributeAccessIssue) + /homeassistant/helpers/llm.py:871:28 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/helpers/llm.py:871:28 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[str, _S@__setitem__]" is not assignable to type "dict[str, dict[str, tuple[str | None, Schema]]]" +     "dict[str, _S@__setitem__]" is not assignable to "dict[str, dict[str, tuple[str | None, Schema]]]" +       Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "dict[str, tuple[str | None, Schema]]" +       Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /homeassistant/helpers/llm.py:881:59 - error: Cannot access attribute "pop" for class "object*" +   Attribute "pop" is unknown (reportAttributeAccessIssue) + /homeassistant/helpers/llm.py:892:39 - error: Operator "in" not supported for types "str" and "_S@__setitem__ | dict[str, tuple[str | None, Schema]]" +   Operator "in" not supported for types "str" and "object*" (reportOperatorIssue) + /homeassistant/helpers/llm.py:893:16 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /homeassistant/helpers/llm.py:1077:32 - error: "start" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/helpers/llm.py:1078:30 - error: "end" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/helpers/redact.py + /homeassistant/helpers/redact.py:63:48 - error: Argument of type "Unknown | str" cannot be assigned to parameter of type "_ValueT@async_redact_data" +   Type "Unknown | str" is not assignable to type "_ValueT@async_redact_data" (reportArgumentType) +/homeassistant/helpers/restore_state.py + /homeassistant/helpers/restore_state.py:94:75 - error: Argument of type "datetime | Unknown | None" cannot be assigned to parameter "last_seen" of type "datetime" in function "__init__" +   Type "datetime | Unknown | None" is not assignable to type "datetime" +     "None" is not assignable to "datetime" (reportArgumentType) +/homeassistant/helpers/schema_config_entry_flow.py + /homeassistant/helpers/schema_config_entry_flow.py:215:44 - error: "data_schema" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/helpers/schema_config_entry_flow.py:437:9 - error: Method "async_create_entry" overrides class "ConfigFlow" in an incompatible manner +   Positional parameter count mismatch; base method has 8, but override has 3 (reportIncompatibleMethodOverride) + /homeassistant/helpers/schema_config_entry_flow.py:505:9 - error: Method "async_create_entry" overrides class "FlowHandler" in an incompatible manner +   Positional parameter count mismatch; base method has 5, but override has 3 (reportIncompatibleMethodOverride) + /homeassistant/helpers/schema_config_entry_flow.py:516:7 - error: Base classes for class "SchemaOptionsFlowHandlerWithReload" define method "async_create_entry" in incompatible way +   Positional parameter count mismatch; base method has 5, but override has 3 (reportIncompatibleMethodOverride) +/homeassistant/helpers/script.py + /homeassistant/helpers/script.py:704:21 - error: "idx" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/helpers/script.py:1463:13 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/helpers/script.py:1463:13 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[str, _S@__setitem__]" is not assignable to type "dict[str, dict[str, set[str]]]" +     "dict[str, _S@__setitem__]" is not assignable to "dict[str, dict[str, set[str]]]" +       Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "dict[str, set[str]]" +       Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /homeassistant/helpers/script.py:2082:5 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/helpers/script.py:2082:5 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[str, _S@__setitem__]" is not assignable to type "dict[str, dict[str, set[str]]]" +     "dict[str, _S@__setitem__]" is not assignable to "dict[str, dict[str, set[str]]]" +       Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "dict[str, set[str]]" +       Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) +/homeassistant/helpers/selector.py + /homeassistant/helpers/selector.py:306:16 - error: Could not access item in TypedDict +   "multiple" is not a required key in "AreaSelectorConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/helpers/selector.py:571:20 - error: Could not access item in TypedDict +   "value" is not a required key in "ConstantSelectorConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/helpers/selector.py:572:16 - error: Could not access item in TypedDict +   "value" is not a required key in "ConstantSelectorConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/helpers/selector.py:716:16 - error: Could not access item in TypedDict +   "multiple" is not a required key in "DeviceSelectorConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/helpers/selector.py:820:16 - error: Could not access item in TypedDict +   "multiple" is not a required key in "EntitySelectorConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/helpers/selector.py:894:16 - error: Could not access item in TypedDict +   "multiple" is not a required key in "FloorSelectorConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/helpers/selector.py:953:16 - error: Could not access item in TypedDict +   "multiple" is not a required key in "LabelSelectorConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/helpers/selector.py:1078:16 - error: Could not access item in TypedDict +   "multiple" is not a required key in "MediaSelectorConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/helpers/selector.py:1230:43 - error: Could not access item in TypedDict +   "multiple" is not a required key in "ObjectSelectorConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/helpers/selector.py:1236:38 - error: Could not access item in TypedDict +   "fields" is not a required key in "ObjectSelectorConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/helpers/selector.py:1289:16 - error: Could not access item in TypedDict +   "data" is not a required key in "QrCodeSelectorConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/helpers/selector.py:1364:12 - error: Could not access item in TypedDict +   "custom_value" is not a required key in "SelectSelectorConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/helpers/selector.py:1367:16 - error: Could not access item in TypedDict +   "multiple" is not a required key in "SelectSelectorConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/helpers/selector.py:1407:16 - error: Could not access item in TypedDict +   "multiple" is not a required key in "StateSelectorConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/helpers/selector.py:1440:16 - error: Could not access item in TypedDict +   "multiple" is not a required key in "StatisticSelectorConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/helpers/selector.py:1568:16 - error: Could not access item in TypedDict +   "multiple" is not a required key in "TextSelectorConfig", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/homeassistant/helpers/service.py + /homeassistant/helpers/service.py:455:6 - error: Expected class but received "(referenced: set[str] = set, indirectly_referenced: set[str] = set, missing_devices: set[str] = set, missing_areas: set[str] = set, missing_floors: set[str] = set, missing_labels: set[str] = set, referenced_devices: set[str] = set, referenced_areas: set[str] = set) -> SelectedEntities" (reportGeneralTypeIssues) + /homeassistant/helpers/service.py:894:16 - error: No overloads for "async_run_hass_job" match the provided arguments (reportCallIssue) + /homeassistant/helpers/service.py:894:40 - error: Argument of type "HassJob[..., _T@partial]" cannot be assigned to parameter "hassjob" of type "HassJob[..., Coroutine[Any, Any, _R@async_run_hass_job] | _R@async_run_hass_job]" in function "async_run_hass_job" +   "HassJob[..., _T@partial]" is not assignable to "HassJob[..., Coroutine[Any, Any, _R@async_run_hass_job] | _R@async_run_hass_job]" +     Type parameter "_R_co@HassJob" is invariant, but "_T@partial" is not the same as "Coroutine[Any, Any, _R@async_run_hass_job] | _R@async_run_hass_job" (reportArgumentType) +/homeassistant/helpers/significant_change.py + /homeassistant/helpers/significant_change.py:100:17 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/helpers/significant_change.py:100:17 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[str, _S@__setitem__]" is not assignable to type "dict[str, CheckTypeFunc]" +     "dict[str, _S@__setitem__]" is not assignable to "dict[str, CheckTypeFunc]" +       Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "CheckTypeFunc" +       Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) +/homeassistant/helpers/singleton.py + /homeassistant/helpers/singleton.py:83:12 - error: Type "Overload[(func: _FuncType[_Coro[_T@singleton]]) -> _FuncType[_Coro[_T@singleton]], (func: _FuncType[_U@singleton]) -> _FuncType[_U@singleton]]" is not assignable to return type "(_FuncType[_S@singleton]) -> _FuncType[_S@singleton]" +   No overloaded function matches type "(_FuncType[_S@singleton]) -> _FuncType[_S@singleton]" (reportReturnType) +/homeassistant/helpers/sun.py + /homeassistant/helpers/sun.py:45:9 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/helpers/sun.py:45:9 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[tuple[str, str, str, float, float], Location] | dict[str, _S@__setitem__]" is not assignable to type "dict[tuple[str, str, str, float, float], Location]" +     Type "dict[tuple[str, str, str, float, float], Location] | dict[str, _S@__setitem__]" is not assignable to type "dict[tuple[str, str, str, float, float], Location]" +       "dict[str, _S@__setitem__]" is not assignable to "dict[tuple[str, str, str, float, float], Location]" +         Type parameter "_KT@dict" is invariant, but "str" is not the same as "tuple[str, str, str, float, float]" +         Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "Location" (reportArgumentType) +/homeassistant/helpers/template/__init__.py + /homeassistant/helpers/template/__init__.py:899:9 - error: "entity_id" overrides symbol of same name in class "State" +   "under_cached_property[str]" is not assignable to "str" (reportIncompatibleVariableOverride) + /homeassistant/helpers/template/__init__.py:955:9 - error: "name" overrides symbol of same name in class "State" +   "property" is not assignable to "under_cached_property[str]" (reportIncompatibleVariableOverride) + /homeassistant/helpers/template/__init__.py:2181:26 - error: "nodes" is not a known attribute of module "jinja2" (reportAttributeAccessIssue) + /homeassistant/helpers/template/__init__.py:2426:9 - error: Overload 1 for "compile" overlaps overload 2 and returns an incompatible type (reportOverlappingOverload) + /homeassistant/helpers/template/__init__.py:2428:30 - error: "nodes" is not a known attribute of module "jinja2" (reportAttributeAccessIssue) + /homeassistant/helpers/template/__init__.py:2438:30 - error: "nodes" is not a known attribute of module "jinja2" (reportAttributeAccessIssue) + /homeassistant/helpers/template/__init__.py:2447:30 - error: "nodes" is not a known attribute of module "jinja2" (reportAttributeAccessIssue) +/homeassistant/helpers/template/extensions/base.py + /homeassistant/helpers/template/extensions/base.py:54:22 - error: Expected 1 positional argument (reportCallIssue) +/homeassistant/helpers/trigger.py + /homeassistant/helpers/trigger.py:114:5 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/helpers/trigger.py:114:5 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[str, _S@__setitem__]" is not assignable to type "dict[str, dict[str, Any] | None]" +     "dict[str, _S@__setitem__]" is not assignable to "dict[str, dict[str, Any] | None]" +       Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "dict[str, Any] | None" +       Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /homeassistant/helpers/trigger.py:116:5 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/helpers/trigger.py:116:5 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[str, _S@__setitem__]" is not assignable to type "dict[str, str]" +     "dict[str, _S@__setitem__]" is not assignable to "dict[str, str]" +       Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "str" +       Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /homeassistant/helpers/trigger.py:254:64 - error: Function with declared return type "dict[str, type[Trigger]]" must return value on all code paths +   "None" is not assignable to "dict[str, type[Trigger]]" (reportReturnType) + /homeassistant/helpers/trigger.py:261:10 - error: Function with declared return type "ConfigType" must return value on all code paths +   "None" is not assignable to "dict[str, Any]" (reportReturnType) + /homeassistant/helpers/trigger.py:270:10 - error: Function with declared return type "CALLBACK_TYPE" must return value on all code paths +   Type "None" is not assignable to type "CALLBACK_TYPE" (reportReturnType) + /homeassistant/helpers/trigger.py:292:10 - error: Function with declared return type "Task[Any]" must return value on all code paths +   "None" is not assignable to "Task[Any]" (reportReturnType) + /homeassistant/helpers/trigger.py:305:10 - error: Function with declared return type "dict[str, Any]" must return value on all code paths +   "None" is not assignable to "dict[str, Any]" (reportReturnType) + /homeassistant/helpers/trigger.py:392:16 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/helpers/trigger.py:392:16 - error: Argument of type "defaultdict[str, PluggableActionsEntry]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "defaultdict[tuple[Unknown, ...], PluggableActionsEntry] | defaultdict[str, PluggableActionsEntry]" is not assignable to type "defaultdict[tuple[Unknown, ...], PluggableActionsEntry]" +     Type "defaultdict[tuple[Unknown, ...], PluggableActionsEntry] | defaultdict[str, PluggableActionsEntry]" is not assignable to type "defaultdict[tuple[Unknown, ...], PluggableActionsEntry]" +       "defaultdict[str, PluggableActionsEntry]" is not assignable to "defaultdict[tuple[Unknown, ...], PluggableActionsEntry]" +         Type parameter "_KT@defaultdict" is invariant, but "str" is not the same as "tuple[Unknown, ...]" (reportArgumentType) + /homeassistant/helpers/trigger.py:393:16 - error: Type "defaultdict[str, PluggableActionsEntry]" is not assignable to return type "dict[tuple[Unknown, ...], PluggableActionsEntry]" +   "defaultdict[str, PluggableActionsEntry]" is not assignable to "dict[tuple[Unknown, ...], PluggableActionsEntry]" +     Type parameter "_KT@dict" is invariant, but "str" is not the same as "tuple[Unknown, ...]" (reportReturnType) + /homeassistant/helpers/trigger.py:476:26 - error: Type "tuple[str, ModuleType]" is not assignable to return type "tuple[str, TriggerProtocol]" +   "ModuleType" is incompatible with protocol "TriggerProtocol" +     "async_get_triggers" is not present +     "TRIGGER_SCHEMA" is not present +     "async_validate_trigger_config" is not present +     "async_attach_trigger" is not present (reportReturnType) +/homeassistant/helpers/trigger_template_entity.py + /homeassistant/helpers/trigger_template_entity.py:200:9 - error: "name" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | UndefinedType | None]" (reportIncompatibleVariableOverride) + /homeassistant/helpers/trigger_template_entity.py:205:9 - error: "unique_id" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/helpers/trigger_template_entity.py:210:9 - error: "icon" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/helpers/trigger_template_entity.py:215:9 - error: "entity_picture" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[str | None]" (reportIncompatibleVariableOverride) + /homeassistant/helpers/trigger_template_entity.py:220:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) + /homeassistant/helpers/trigger_template_entity.py:228:9 - error: "extra_state_attributes" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[Mapping[str, Any] | None]" (reportIncompatibleVariableOverride) + /homeassistant/helpers/trigger_template_entity.py:384:7 - error: Base classes for class "ManualTriggerSensorEntity" define variable "unique_id" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/helpers/trigger_template_entity.py:384:7 - error: Base classes for class "ManualTriggerSensorEntity" define variable "name" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/helpers/trigger_template_entity.py:384:7 - error: Base classes for class "ManualTriggerSensorEntity" define variable "extra_state_attributes" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/helpers/trigger_template_entity.py:384:7 - error: Base classes for class "ManualTriggerSensorEntity" define variable "icon" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/helpers/trigger_template_entity.py:384:7 - error: Base classes for class "ManualTriggerSensorEntity" define variable "entity_picture" in incompatible way (reportIncompatibleVariableOverride) + /homeassistant/helpers/trigger_template_entity.py:384:7 - error: Base classes for class "ManualTriggerSensorEntity" define variable "available" in incompatible way (reportIncompatibleVariableOverride) +/homeassistant/helpers/typing.py + /homeassistant/helpers/typing.py:66:1 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) +/homeassistant/helpers/update_coordinator.py + /homeassistant/helpers/update_coordinator.py:62:10 - error: Function with declared return type "() -> None" must return value on all code paths +   Type "None" is not assignable to type "() -> None" (reportReturnType) + /homeassistant/helpers/update_coordinator.py:512:35 - error: "start" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/helpers/update_coordinator.py:637:9 - error: "available" overrides symbol of same name in class "Entity" +   "property" is not assignable to "cached_property[bool]" (reportIncompatibleVariableOverride) +/homeassistant/loader.py + /homeassistant/loader.py:274:5 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/loader.py:274:5 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[str, _S@__setitem__]" is not assignable to type "dict[str, ModuleType | ComponentProtocol]" +     "dict[str, _S@__setitem__]" is not assignable to "dict[str, ModuleType | ComponentProtocol]" +       Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "ModuleType | ComponentProtocol" +       Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /homeassistant/loader.py:275:5 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/loader.py:275:5 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[str, _S@__setitem__]" is not assignable to type "dict[str, Integration | Future[Integration | IntegrationNotFound]]" +     "dict[str, _S@__setitem__]" is not assignable to "dict[str, Integration | Future[Integration | IntegrationNotFound]]" +       Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "Integration | Future[Integration | IntegrationNotFound]" +       Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /homeassistant/loader.py:276:5 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/loader.py:276:5 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[str, _S@__setitem__]" is not assignable to type "dict[str, bool]" +     "dict[str, _S@__setitem__]" is not assignable to "dict[str, bool]" +       Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "bool" +       Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /homeassistant/loader.py:297:16 - error: Import "custom_components" could not be resolved (reportMissingImports) + /homeassistant/loader.py:373:10 - error: Function with declared return type "bool" must return value on all code paths +   "None" is not assignable to "bool" (reportReturnType) + /homeassistant/loader.py:378:10 - error: Function with declared return type "bool" must return value on all code paths +   "None" is not assignable to "bool" (reportReturnType) + /homeassistant/loader.py:383:10 - error: Function with declared return type "bool" must return value on all code paths +   "None" is not assignable to "bool" (reportReturnType) + /homeassistant/loader.py:396:10 - error: Function with declared return type "bool" must return value on all code paths +   "None" is not assignable to "bool" (reportReturnType) + /homeassistant/loader.py:404:77 - error: Function with declared return type "bool" must return value on all code paths +   "None" is not assignable to "bool" (reportReturnType) + /homeassistant/loader.py:407:65 - error: Function with declared return type "bool" must return value on all code paths +   "None" is not assignable to "bool" (reportReturnType) + /homeassistant/loader.py:787:16 - error: Could not access item in TypedDict +   "name" is not a required key in "Manifest", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/loader.py:797:16 - error: Could not access item in TypedDict +   "domain" is not a required key in "Manifest", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /homeassistant/loader.py:979:20 - error: Type "ModuleType | ComponentProtocol" is not assignable to return type "ComponentProtocol" +   Type "ModuleType | ComponentProtocol" is not assignable to type "ComponentProtocol" +     "ModuleType" is incompatible with protocol "ComponentProtocol" +       "CONFIG_SCHEMA" is not present +       "DOMAIN" is not present +       "async_setup_entry" is not present +       "async_unload_entry" is not present +       "async_migrate_entry" is not present +       "async_remove_entry" is not present + ... (reportReturnType) + /homeassistant/loader.py:999:43 - error: "start" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/loader.py:1035:39 - error: "start" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/loader.py:1057:20 - error: Type "ModuleType | ComponentProtocol" is not assignable to return type "ComponentProtocol" +   Type "ModuleType | ComponentProtocol" is not assignable to type "ComponentProtocol" +     "ModuleType" is incompatible with protocol "ComponentProtocol" +       "CONFIG_SCHEMA" is not present +       "DOMAIN" is not present +       "async_setup_entry" is not present +       "async_unload_entry" is not present +       "async_migrate_entry" is not present +       "async_remove_entry" is not present + ... (reportReturnType) + /homeassistant/loader.py:1084:16 - error: Type "ModuleType | ComponentProtocol" is not assignable to return type "ComponentProtocol" +   Type "ModuleType | ComponentProtocol" is not assignable to type "ComponentProtocol" +     "ModuleType" is incompatible with protocol "ComponentProtocol" +       "CONFIG_SCHEMA" is not present +       "DOMAIN" is not present +       "async_setup_entry" is not present +       "async_unload_entry" is not present +       "async_migrate_entry" is not present +       "async_remove_entry" is not present + ... (reportReturnType) + /homeassistant/loader.py:1189:47 - error: "start" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/loader.py:1487:15 - error: Argument of type "dict[Any, Any]" cannot be assigned to parameter "cache" of type "_ResolveDependenciesCacheProtocol" in function "_resolve_integrations_dependencies" (reportArgumentType) + /homeassistant/loader.py:1673:16 - error: Import "custom_components" could not be resolved (reportMissingImports) +/homeassistant/scripts/auth.py + /homeassistant/scripts/auth.py:76:25 - error: Cannot access attribute "data" for class "AuthProvider" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /homeassistant/scripts/auth.py:77:26 - error: Cannot access attribute "data" for class "AuthProvider" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /homeassistant/scripts/auth.py:90:25 - error: Cannot access attribute "data" for class "AuthProvider" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /homeassistant/scripts/auth.py:92:18 - error: Cannot access attribute "data" for class "AuthProvider" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /homeassistant/scripts/auth.py:98:20 - error: Cannot access attribute "data" for class "AuthProvider" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /homeassistant/scripts/auth.py:107:25 - error: Cannot access attribute "data" for class "AuthProvider" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /homeassistant/scripts/auth.py:109:18 - error: Cannot access attribute "data" for class "AuthProvider" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /homeassistant/scripts/auth.py:120:25 - error: Cannot access attribute "data" for class "AuthProvider" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /homeassistant/scripts/auth.py:122:18 - error: Cannot access attribute "data" for class "AuthProvider" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /homeassistant/scripts/auth.py:123:24 - error: Cannot access attribute "data" for class "AuthProvider" +   Attribute "data" is unknown (reportAttributeAccessIssue) +/homeassistant/setup.py + /homeassistant/setup.py:107:18 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/setup.py:107:18 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[str, _S@__setitem__]" is not assignable to type "dict[str, str | None]" +     "dict[str, _S@__setitem__]" is not assignable to "dict[str, str | None]" +       Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "str | None" +       Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /homeassistant/setup.py:109:5 - error: Argument of type "object* | str | None" cannot be assigned to parameter "value" of type "str | None" in function "__setitem__" +   Type "object* | str | None" is not assignable to type "str | None" +     Type "object*" is not assignable to type "str | None" +       "object*" is not assignable to "str" +       "object*" is not assignable to "None" (reportArgumentType) + /homeassistant/setup.py:560:21 - error: "component" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/setup.py:560:52 - error: "component" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/util/__init__.py + /homeassistant/util/__init__.py:130:23 - error: Function declaration "throttled_value" is obscured by a declaration of the same name (reportRedeclaration) + /homeassistant/util/__init__.py:163:31 - error: Cannot access attribute "__self__" for class "FunctionType" +   Attribute "__self__" is unknown (reportFunctionMemberAccess) + /homeassistant/util/__init__.py:170:22 - error: Cannot assign to attribute "_throttle" for class "_Wrapped[..., Unknown, ..., ((...) -> Unknown) | Coroutine[Unknown, Unknown, Unknown]]" +   Attribute "_throttle" is unknown (reportAttributeAccessIssue) + /homeassistant/util/__init__.py:172:37 - error: Cannot access attribute "_throttle" for class "_Wrapped[..., Unknown, ..., ((...) -> Unknown) | Coroutine[Unknown, Unknown, Unknown]]" +   Attribute "_throttle" is unknown (reportAttributeAccessIssue) + /homeassistant/util/__init__.py:173:22 - error: Cannot access attribute "_throttle" for class "_Wrapped[..., Unknown, ..., ((...) -> Unknown) | Coroutine[Unknown, Unknown, Unknown]]" +   Attribute "_throttle" is unknown (reportAttributeAccessIssue) + /homeassistant/util/__init__.py:174:29 - error: Cannot access attribute "_throttle" for class "_Wrapped[..., Unknown, ..., ((...) -> Unknown) | Coroutine[Unknown, Unknown, Unknown]]" +   Attribute "_throttle" is unknown (reportAttributeAccessIssue) + /homeassistant/util/__init__.py:177:24 - error: Type "None" is not assignable to return type "((...) -> Unknown) | Coroutine[Unknown, Unknown, Unknown]" +   Type "None" is not assignable to type "((...) -> Unknown) | Coroutine[Unknown, Unknown, Unknown]" +     Type "None" is not assignable to type "(...) -> Unknown" +     "None" is not assignable to "Coroutine[Unknown, Unknown, Unknown]" (reportReturnType) + /homeassistant/util/__init__.py:188:24 - error: Type "None" is not assignable to return type "((...) -> Unknown) | Coroutine[Unknown, Unknown, Unknown]" +   Type "None" is not assignable to type "((...) -> Unknown) | Coroutine[Unknown, Unknown, Unknown]" +     Type "None" is not assignable to type "(...) -> Unknown" +     "None" is not assignable to "Coroutine[Unknown, Unknown, Unknown]" (reportReturnType) +/homeassistant/util/enum.py + /homeassistant/util/enum.py:11:56 - error: Function with declared return type "_T@lru_cache" must return value on all code paths +   Type "None" is not assignable to type "_T@lru_cache" (reportReturnType) +/homeassistant/util/hass_dict.pyi + /homeassistant/util/hass_dict.pyi:37:9 - error: Method "__getitem__" overrides class "dict" in an incompatible manner +   No overload signature in override is compatible with base method (reportIncompatibleMethodOverride) + /homeassistant/util/hass_dict.pyi:47:9 - error: Method "__setitem__" overrides class "dict" in an incompatible manner +   No overload signature in override is compatible with base method (reportIncompatibleMethodOverride) + /homeassistant/util/hass_dict.pyi:59:9 - error: Method "setdefault" overrides class "MutableMapping" in an incompatible manner +   Override does not handle all overloads of base method (reportIncompatibleMethodOverride) + /homeassistant/util/hass_dict.pyi:75:9 - error: Method "get" overrides class "dict" in an incompatible manner +   Override does not handle all overloads of base method (reportIncompatibleMethodOverride) + /homeassistant/util/hass_dict.pyi:97:9 - error: Method "pop" overrides class "dict" in an incompatible manner +   Override does not handle all overloads of base method (reportIncompatibleMethodOverride) + /homeassistant/util/hass_dict.pyi:125:5 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /homeassistant/util/hass_dict.pyi:125:5 - error: Argument of type "dict[str, _S@__setitem__]" cannot be assigned to parameter "value" of type "_S@__setitem__" in function "__setitem__" +   Type "dict[int, bool] | dict[str, _S@__setitem__]" is not assignable to type "dict[int, bool]" +     Type "dict[int, bool] | dict[str, _S@__setitem__]" is not assignable to type "dict[int, bool]" +       "dict[str, _S@__setitem__]" is not assignable to "dict[int, bool]" +         Type parameter "_KT@dict" is invariant, but "str" is not the same as "int" +         Type parameter "_VT@dict" is invariant, but "_S@__setitem__" is not the same as "bool" (reportArgumentType) + /homeassistant/util/hass_dict.pyi:140:17 - error: "assert_type" mismatch: expected "set[str]" but received "set[str] | set[Unknown]" (reportAssertTypeFailure) +/homeassistant/util/language.py + /homeassistant/util/language.py:153:46 - error: "region_idx" is possibly unbound (reportPossiblyUnboundVariable) +/homeassistant/util/loop.py + /homeassistant/util/loop.py:107:19 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/util/loop.py:113:28 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/util/loop.py:114:16 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/util/loop.py:125:26 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/util/loop.py:126:13 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/util/loop.py:127:13 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/util/loop.py:128:13 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/util/loop.py:129:13 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/util/loop.py:145:26 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/util/loop.py:146:13 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/util/loop.py:147:13 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/util/loop.py:148:13 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/util/loop.py:149:13 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/util/loop.py:155:46 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/util/loop.py:162:29 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/util/loop.py:163:29 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/util/loop.py:164:16 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/util/loop.py:164:60 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) + /homeassistant/util/loop.py:165:17 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable) +19186 errors, 18 warnings, 0 informations diff --git a/scripts/ty_benchmark/snapshots/homeassistant_mypy.txt b/scripts/ty_benchmark/snapshots/homeassistant_mypy.txt new file mode 100644 index 0000000000..d3da3ded65 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/homeassistant_mypy.txt @@ -0,0 +1,14 @@ +homeassistant/components/vivotek/camera.py:101: error: Returning Any from function declared to return "bytes | None" [no-any-return] +homeassistant/components/amcrest/camera.py:194: error: Returning Any from function declared to return "bytes | None" [no-any-return] +homeassistant/components/amcrest/camera.py:480: error: Unused "type: ignore" comment [unused-ignore] +homeassistant/components/amcrest/camera.py:482: error: Unused "type: ignore" comment [unused-ignore] +homeassistant/components/amcrest/camera.py:517: error: Returning Any from function declared to return "bool" [no-any-return] +homeassistant/components/amcrest/camera.py:538: error: Returning Any from function declared to return "bool" [no-any-return] +homeassistant/components/amcrest/camera.py:557: error: Returning Any from function declared to return "bool" [no-any-return] +homeassistant/components/amcrest/camera.py:570: error: Returning Any from function declared to return "bool" [no-any-return] +homeassistant/components/amcrest/camera.py:607: error: Returning Any from function declared to return "bool" [no-any-return] +homeassistant/components/amcrest/camera.py:628: error: Returning Any from function declared to return "str" [no-any-return] +homeassistant/components/amcrest/__init__.py:125: error: Class cannot subclass "ApiWrapper" (has type "Any") [misc] +homeassistant/components/amcrest/__init__.py:200: error: Returning Any from function declared to return "Response" [no-any-return] +Found 12 errors in 3 files (checked 8525 source files) +Warning: unused section(s) in mypy.ini: [mypy-tests.*] diff --git a/scripts/ty_benchmark/snapshots/homeassistant_ty.txt b/scripts/ty_benchmark/snapshots/homeassistant_ty.txt new file mode 100644 index 0000000000..3317a1deca --- /dev/null +++ b/scripts/ty_benchmark/snapshots/homeassistant_ty.txt @@ -0,0 +1,4794 @@ +homeassistant/auth/__init__.py:411:19: error[call-non-callable] Object of type `object` is not callable +homeassistant/auth/mfa_modules/notify.py:179:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/auth/mfa_modules/notify.py:192:12: warning[possibly-missing-attribute] Attribute `pop` may be missing on object of type `dict[str, NotifySetting] | None` +homeassistant/auth/mfa_modules/notify.py:201:16: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `str` with `dict[str, NotifySetting] | None` +homeassistant/auth/mfa_modules/notify.py:209:31: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[str, NotifySetting] | None` +homeassistant/auth/mfa_modules/notify.py:226:31: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[str, NotifySetting] | None` +homeassistant/auth/mfa_modules/notify.py:249:31: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[str, NotifySetting] | None` +homeassistant/auth/permissions/merge.py:63:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `Mapping[str, SubCategoryType]` +homeassistant/auth/providers/__init__.py:268:23: error[call-non-callable] Object of type `object` is not callable +homeassistant/auth/providers/command_line.py:76:24: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/auth/providers/homeassistant.py:325:13: warning[possibly-missing-attribute] Attribute `validate_login` may be missing on object of type `Data | None` +homeassistant/auth/providers/homeassistant.py:334:48: warning[possibly-missing-attribute] Attribute `add_auth` may be missing on object of type `Data | None` +homeassistant/auth/providers/homeassistant.py:335:15: warning[possibly-missing-attribute] Attribute `async_save` may be missing on object of type `Data | None` +homeassistant/auth/providers/homeassistant.py:343:9: warning[possibly-missing-attribute] Attribute `async_remove_auth` may be missing on object of type `Data | None` +homeassistant/auth/providers/homeassistant.py:344:15: warning[possibly-missing-attribute] Attribute `async_save` may be missing on object of type `Data | None` +homeassistant/auth/providers/homeassistant.py:353:13: warning[possibly-missing-attribute] Attribute `change_password` may be missing on object of type `Data | None` +homeassistant/auth/providers/homeassistant.py:355:15: warning[possibly-missing-attribute] Attribute `async_save` may be missing on object of type `Data | None` +homeassistant/auth/providers/homeassistant.py:365:9: warning[possibly-missing-attribute] Attribute `change_username` may be missing on object of type `Data | None` +homeassistant/auth/providers/homeassistant.py:369:15: warning[possibly-missing-attribute] Attribute `async_save` may be missing on object of type `Data | None` +homeassistant/auth/providers/homeassistant.py:379:25: warning[possibly-missing-attribute] Attribute `normalize_username` may be missing on object of type `Data | None` +homeassistant/auth/providers/homeassistant.py:402:13: warning[possibly-missing-attribute] Attribute `async_remove_auth` may be missing on object of type `Data | None` +homeassistant/auth/providers/homeassistant.py:403:19: warning[possibly-missing-attribute] Attribute `async_save` may be missing on object of type `Data | None` +homeassistant/components/abode/__init__.py:83:40: error[invalid-argument-type] Argument to bound method `override` is incorrect: Expected `Mapping[str, Path]`, found `Path` +homeassistant/components/abode/camera.py:37:35: error[unresolved-attribute] Module `jaraco.abode.helpers.timeline` has no member `CAPTURE_IMAGE` +homeassistant/components/accuweather/weather.py:190:16: error[invalid-return-type] Return type does not match returned value: expected `list[Forecast] | None`, found `list[dict[Unknown | str, Unknown | str | None] | Unknown]` +homeassistant/components/accuweather/weather.py:220:16: error[invalid-return-type] Return type does not match returned value: expected `list[Forecast] | None`, found `list[dict[Unknown | str, Unknown | str | None] | Unknown]` +homeassistant/components/acmeda/config_flow.py:58:9: error[invalid-assignment] Object of type `dict[Unknown | None, Hub | Unknown]` is not assignable to attribute `discovered_hubs` of type `dict[str, Hub] | None` +homeassistant/components/acmeda/config_flow.py:74:40: error[invalid-argument-type] Argument to bound method `async_create_entry` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/acmeda/cover.py:60:24: error[unsupported-operator] Operator `-` is unsupported between objects of type `Literal[100]` and `Unknown | None` +homeassistant/components/acmeda/cover.py:71:24: error[unsupported-operator] Operator `-` is unsupported between objects of type `Literal[100]` and `Unknown | None` +homeassistant/components/acmeda/hub.py:64:9: error[invalid-assignment] Object of type `None` is not assignable to attribute `api` of type `Hub` +homeassistant/components/actron_air/__init__.py:30:19: error[invalid-assignment] Object of type `list[dict[str, Any]]` is not assignable to `list[ActronAirNeoACSystem]` +homeassistant/components/actron_air/__init__.py:42:64: error[non-subscriptable] Cannot subscript object of type `ActronAirNeoACSystem` with no `__getitem__` method +homeassistant/components/actron_air/__init__.py:44:29: error[non-subscriptable] Cannot subscript object of type `ActronAirNeoACSystem` with no `__getitem__` method +homeassistant/components/actron_air/climate.py:59:16: error[unresolved-attribute] Object of type `ActronAirNeoACSystem` has no attribute `ac_system` +homeassistant/components/actron_air/climate.py:64:25: error[unresolved-attribute] Object of type `ActronAirNeoACSystem` has no attribute `remote_zone_info` +homeassistant/components/actron_air/climate.py:117:18: warning[possibly-missing-attribute] Attribute `system_name` may be missing on object of type `ActronAirNeoACSystem | None` +homeassistant/components/actron_air/climate.py:119:22: warning[possibly-missing-attribute] Attribute `master_wc_model` may be missing on object of type `ActronAirNeoACSystem | None` +homeassistant/components/actron_air/climate.py:120:24: warning[possibly-missing-attribute] Attribute `master_wc_firmware_version` may be missing on object of type `ActronAirNeoACSystem | None` +homeassistant/components/actron_air/climate.py:137:16: error[invalid-return-type] Return type does not match returned value: expected `ActronAirNeoStatus`, found `Unknown | ActronAirNeoACSystem` +homeassistant/components/actron_air/climate.py:142:16: warning[possibly-missing-attribute] Attribute `is_on` may be missing on object of type `ActronAirNeoUserAirconSettings | None` +homeassistant/components/actron_air/climate.py:145:16: warning[possibly-missing-attribute] Attribute `mode` may be missing on object of type `ActronAirNeoUserAirconSettings | None` +homeassistant/components/actron_air/climate.py:151:20: warning[possibly-missing-attribute] Attribute `fan_mode` may be missing on object of type `ActronAirNeoUserAirconSettings | None` +homeassistant/components/actron_air/climate.py:157:16: warning[possibly-missing-attribute] Attribute `live_humidity_pc` may be missing on object of type `ActronAirNeoMasterInfo | None` +homeassistant/components/actron_air/climate.py:162:16: warning[possibly-missing-attribute] Attribute `live_temp_c` may be missing on object of type `ActronAirNeoMasterInfo | None` +homeassistant/components/actron_air/climate.py:167:16: warning[possibly-missing-attribute] Attribute `temperature_setpoint_cool_c` may be missing on object of type `ActronAirNeoUserAirconSettings | None` +homeassistant/components/actron_air/climate.py:172:15: warning[possibly-missing-attribute] Attribute `set_fan_mode` may be missing on object of type `ActronAirNeoUserAirconSettings | None` +homeassistant/components/actron_air/climate.py:172:62: error[invalid-argument-type] Argument to bound method `set_fan_mode` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/actron_air/climate.py:177:15: warning[possibly-missing-attribute] Attribute `set_system_mode` may be missing on object of type `ActronAirNeoACSystem | None` +homeassistant/components/actron_air/climate.py:177:54: error[invalid-argument-type] Argument to bound method `set_system_mode` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/actron_air/climate.py:182:15: warning[possibly-missing-attribute] Attribute `set_temperature` may be missing on object of type `ActronAirNeoUserAirconSettings | None` +homeassistant/components/actron_air/climate.py:182:65: error[invalid-argument-type] Argument to bound method `set_temperature` is incorrect: Expected `int | float`, found `Any | None` +homeassistant/components/actron_air/climate.py:227:16: warning[possibly-missing-attribute] Attribute `zones` may be missing on object of type `Unknown | ActronAirNeoACSystem` +homeassistant/components/actron_air/coordinator.py:55:30: error[non-subscriptable] Cannot subscript object of type `ActronAirNeoACSystem` with no `__getitem__` method +homeassistant/components/actron_air/coordinator.py:65:16: error[invalid-return-type] Return type does not match returned value: expected `ActronAirNeoStatus`, found `Unknown | ActronAirNeoStatus | None` +homeassistant/components/adguard/entity.py:63:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown | str, Unknown | int, Unknown | str]]` +homeassistant/components/ads/__init__.py:5:8: error[unresolved-import] Cannot resolve imported module `pyads` +homeassistant/components/ads/binary_sensor.py:5:8: error[unresolved-import] Cannot resolve imported module `pyads` +homeassistant/components/ads/cover.py:7:8: error[unresolved-import] Cannot resolve imported module `pyads` +homeassistant/components/ads/entity.py:54:13: warning[possibly-missing-attribute] Attribute `set` may be missing on object of type `Event | None` +homeassistant/components/ads/hub.py:9:8: error[unresolved-import] Cannot resolve imported module `pyads` +homeassistant/components/ads/light.py:7:8: error[unresolved-import] Cannot resolve imported module `pyads` +homeassistant/components/ads/select.py:5:8: error[unresolved-import] Cannot resolve imported module `pyads` +homeassistant/components/ads/switch.py:7:8: error[unresolved-import] Cannot resolve imported module `pyads` +homeassistant/components/ads/valve.py:5:8: error[unresolved-import] Cannot resolve imported module `pyads` +homeassistant/components/advantage_air/binary_sensor.py:53:9: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `Literal["-filter"]` +homeassistant/components/advantage_air/binary_sensor.py:70:9: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `Literal["-motion"]` +homeassistant/components/advantage_air/binary_sensor.py:88:9: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `Literal["-myzone"]` +homeassistant/components/advantage_air/entity.py:49:9: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `str` +homeassistant/components/advantage_air/entity.py:81:9: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `str` +homeassistant/components/advantage_air/entity.py:101:9: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `str` +homeassistant/components/advantage_air/light.py:53:9: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `str` +homeassistant/components/advantage_air/select.py:36:9: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `Literal["-myzone"]` +homeassistant/components/advantage_air/sensor.py:76:9: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `str` +homeassistant/components/advantage_air/sensor.py:107:9: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `Literal["-vent"]` +homeassistant/components/advantage_air/sensor.py:135:9: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `Literal["-signal"]` +homeassistant/components/advantage_air/sensor.py:169:9: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `Literal["-temp"]` +homeassistant/components/advantage_air/switch.py:57:9: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `Literal["-freshair"]` +homeassistant/components/advantage_air/switch.py:83:9: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `Literal["-myfan"]` +homeassistant/components/advantage_air/switch.py:109:9: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `Literal["-nightmode"]` +homeassistant/components/aemet/sensor.py:406:38: error[invalid-argument-type] Argument to bound method `get_aemet_value` is incorrect: Expected `list[str]`, found `list[str] | None` +homeassistant/components/aftership/sensor.py:56:13: error[invalid-argument-type] Argument to bound method `add` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/aftership/sensor.py:57:13: error[invalid-argument-type] Argument to bound method `add` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/aftership/sensor.py:106:16: error[invalid-return-type] Return type does not match returned value: expected `dict[str, str]`, found `Unknown | dict[Unknown | str, Unknown | int | list[Unknown]] | dict[str, Any]` +homeassistant/components/airq/config_flow.py:87:44: error[invalid-argument-type] Argument to bound method `async_create_entry` is incorrect: Expected `str`, found `str | None` +homeassistant/components/airq/number.py:75:16: error[unresolved-attribute] Object of type `NumberEntityDescription` has no attribute `value` +homeassistant/components/airq/number.py:84:15: error[unresolved-attribute] Object of type `NumberEntityDescription` has no attribute `set_value` +homeassistant/components/airq/sensor.py:448:35: error[unresolved-attribute] Object of type `SensorEntityDescription` has no attribute `value` +homeassistant/components/airthings_ble/sensor.py:189:17: error[invalid-argument-type] Argument to function `replace` is incorrect: Argument type `SensorEntityDescription` does not satisfy upper bound `DataclassInstance` of type variable `_DataclassT` +homeassistant/components/alert/__init__.py:107:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[Any, Any]`, found `Any | None` +homeassistant/components/alexa/auth.py:171:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/components/alexa/auth.py:173:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/components/alexa/auth.py:175:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/components/alexa/state_report.py:341:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]` +homeassistant/components/alexa/state_report.py:342:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _async_entity_state_listener(event_: Event[EventStateChangedData]) -> CoroutineType[Any, Any, None]` +homeassistant/components/alexa/state_report.py:343:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _async_entity_state_filter(data: EventStateChangedData) -> bool` +homeassistant/components/alpha_vantage/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `alpha_vantage.foreignexchange` +homeassistant/components/alpha_vantage/sensor.py:9:6: error[unresolved-import] Cannot resolve imported module `alpha_vantage.timeseries` +homeassistant/components/altruist/sensor.py:274:16: error[unresolved-attribute] Object of type `SensorEntityDescription` has no attribute `native_value_fn` +homeassistant/components/amazon_polly/tts.py:101:19: error[unresolved-attribute] Module `botocore` has no member `config` +homeassistant/components/amazon_polly/tts.py:143:23: error[invalid-type-form] Variable of type `def client(...) -> Unknown` is not allowed in a type expression +homeassistant/components/amcrest/__init__.py:15:6: error[unresolved-import] Cannot resolve imported module `amcrest` +homeassistant/components/amcrest/binary_sensor.py:11:6: error[unresolved-import] Cannot resolve imported module `amcrest` +homeassistant/components/amcrest/binary_sensor.py:215:32: error[unresolved-attribute] Object of type `BinarySensorEntityDescription` has no attribute `event_codes` +homeassistant/components/amcrest/binary_sensor.py:272:28: error[unresolved-attribute] Object of type `BinarySensorEntityDescription` has no attribute `event_codes` +homeassistant/components/amcrest/binary_sensor.py:273:19: error[unresolved-attribute] Object of type `BinarySensorEntityDescription` has no attribute `should_poll` +homeassistant/components/amcrest/camera.py:13:6: error[unresolved-import] Cannot resolve imported module `amcrest` +homeassistant/components/amcrest/camera.py:177:30: error[unresolved-attribute] Module `asyncio` has no member `tasks` +homeassistant/components/amcrest/camera.py:259:49: error[invalid-argument-type] Argument to bound method `open_camera` is incorrect: Expected `str | None`, found `Unknown | list[str]` +homeassistant/components/amcrest/camera.py:266:17: error[invalid-argument-type] Argument to function `async_aiohttp_proxy_stream` is incorrect: Expected `StreamReader`, found `StreamReader` +homeassistant/components/amcrest/sensor.py:9:6: error[unresolved-import] Cannot resolve imported module `amcrest` +homeassistant/components/ampio/air_quality.py:8:6: error[unresolved-import] Cannot resolve imported module `asmog` +homeassistant/components/analytics/analytics.py:167:16: error[invalid-return-type] Return type does not match returned value: expected `AnalyticsPlatformProtocol | None`, found `ModuleType` +homeassistant/components/androidtv/entity.py:46:16: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/androidtv/entity.py:46:49: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/androidtv/entity.py:54:15: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/androidtv/entity.py:55:10: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/anel_pwrctrl/switch.py:9:6: error[unresolved-import] Cannot resolve imported module `anel_pwrctrl` +homeassistant/components/anthemav/config_flow.py:74:47: error[unresolved-attribute] Object of type `Protocol` has no attribute `macaddress` +homeassistant/components/anthemav/config_flow.py:75:38: error[unresolved-attribute] Object of type `Protocol` has no attribute `model` +homeassistant/components/anthemav/media_player.py:44:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `AVR`, found `Protocol` +homeassistant/components/anthemav/media_player.py:46:28: error[unresolved-attribute] Object of type `Protocol` has no attribute `zones` +homeassistant/components/anthropic/ai_task.py:60:16: warning[possibly-missing-attribute] Attribute `content` may be missing on object of type `SystemContent | UserContent | AssistantContent | ToolResultContent` +homeassistant/components/anthropic/config_flow.py:125:46: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `Never`, found `Literal["error"]` +homeassistant/components/anthropic/config_flow.py:136:21: error[invalid-argument-type] Argument to bound method `async_create_entry` is incorrect: Expected `Iterable[ConfigSubentryData] | None`, found `list[Unknown | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | bool | list[Unknown | str] | str] | None] | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | bool] | None]]` +homeassistant/components/anthropic/entity.py:187:29: error[invalid-argument-type] Invalid argument to key "content" with declared type `Iterable[WebSearchResultBlockParam] | WebSearchToolRequestErrorParam` on TypedDict `WebSearchToolResultBlockParam`: value of type `dict[str, Any] | list[Any] | str | ... omitted 4 union elements` +homeassistant/components/anthropic/entity.py:261:58: error[invalid-argument-type] Invalid argument to key "text" with declared type `str` on TypedDict `TextBlockParam`: value of type `str | Iterable[TextBlockParam | ImageBlockParam | DocumentBlockParam | ... omitted 13 union elements]` +homeassistant/components/anthropic/entity.py:399:24: error[unresolved-reference] Name `first_block` used when not defined +homeassistant/components/anthropic/entity.py:410:21: error[unresolved-reference] Name `first_block` used when not defined +homeassistant/components/anthropic/entity.py:431:20: error[unresolved-reference] Name `first_block` used when not defined +homeassistant/components/anthropic/entity.py:507:21: error[unresolved-reference] Name `current_tool_args` used when not defined +homeassistant/components/anthropic/entity.py:656:44: warning[possibly-missing-attribute] Attribute `attachments` may be missing on object of type `SystemContent | UserContent | AssistantContent | ToolResultContent` +homeassistant/components/anthropic/entity.py:668:64: warning[possibly-missing-attribute] Attribute `attachments` may be missing on object of type `SystemContent | UserContent | AssistantContent | ToolResultContent` +homeassistant/components/apache_kafka/__init__.py:133:37: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]` +homeassistant/components/apache_kafka/__init__.py:133:58: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method Self@start.write(event: Event[EventStateChangedData]) -> CoroutineType[Any, Any, None]` +homeassistant/components/api/__init__.py:286:28: error[invalid-argument-type] Argument to bound method `async_set` is incorrect: Expected `str`, found `dict[str, dict[str, Any] | list[Any] | str | ... omitted 3 union elements] | list[dict[str, Any] | list[Any] | str | ... omitted 3 union elements] | str | int | float` +homeassistant/components/api/__init__.py:286:39: error[invalid-argument-type] Argument to bound method `async_set` is incorrect: Expected `Mapping[str, Any] | None`, found `dict[str, dict[str, Any] | list[Any] | str | ... omitted 3 union elements] | list[dict[str, Any] | list[Any] | str | ... omitted 3 union elements] | str | ... omitted 3 union elements` +homeassistant/components/api/__init__.py:286:51: error[invalid-argument-type] Argument to bound method `async_set` is incorrect: Expected `bool`, found `dict[str, Any] | list[Any] | str | ... omitted 3 union elements` +homeassistant/components/api/__init__.py:431:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]` +homeassistant/components/api/__init__.py:432:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _async_save_changed_entities(event: Event[EventStateChangedData]) -> None` +homeassistant/components/apple_tv/__init__.py:372:13: warning[possibly-missing-attribute] Attribute `removesuffix` may be missing on object of type `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | URL | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `set[tuple[str, str]] | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | datetime | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `DeviceEntryDisabler | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `DeviceEntryType | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `set[tuple[str, str]] | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | datetime | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `Mapping[str, str] | None`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/__init__.py:392:57: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `tuple[str, str] | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, Unknown | str | None]] | str` +homeassistant/components/apple_tv/media_player.py:484:41: error[invalid-argument-type] Argument to bound method `insert` is incorrect: Expected `Never`, found `BrowseMedia` +homeassistant/components/application_credentials/__init__.py:309:12: error[invalid-return-type] Return type does not match returned value: expected `ApplicationCredentialsProtocol | None`, found `ModuleType` +homeassistant/components/aprilaire/coordinator.py:57:13: error[invalid-assignment] Object of type `~AlwaysFalsy` is not assignable to attribute `data` of type `dict[str, Any]` +homeassistant/components/aprilaire/entity.py:37:27: error[invalid-assignment] Object of type `Unknown | None` is not assignable to `bool` +homeassistant/components/aprilaire/entity.py:41:25: error[invalid-assignment] Object of type `Unknown | None` is not assignable to `bool` +homeassistant/components/apsystems/config_flow.py:47:48: warning[possibly-missing-attribute] Attribute `deviceId` may be missing on object of type `ReturnDeviceInfo | None` +homeassistant/components/apsystems/coordinator.py:69:30: warning[possibly-missing-attribute] Attribute `maxPower` may be missing on object of type `Unknown | ReturnDeviceInfo | None` +homeassistant/components/apsystems/coordinator.py:70:30: warning[possibly-missing-attribute] Attribute `minPower` may be missing on object of type `Unknown | ReturnDeviceInfo | None` +homeassistant/components/apsystems/coordinator.py:71:31: warning[possibly-missing-attribute] Attribute `devVer` may be missing on object of type `Unknown | ReturnDeviceInfo | None` +homeassistant/components/apsystems/coordinator.py:72:31: warning[possibly-missing-attribute] Attribute `isBatterySystem` may be missing on object of type `Unknown | ReturnDeviceInfo | None` +homeassistant/components/apsystems/coordinator.py:82:36: error[invalid-argument-type] Argument is incorrect: Expected `ReturnOutputData`, found `Unknown | ReturnOutputData | None` +homeassistant/components/apsystems/coordinator.py:82:61: error[invalid-argument-type] Argument is incorrect: Expected `ReturnAlarmInfo`, found `Unknown | ReturnAlarmInfo | None` +homeassistant/components/aqualogic/__init__.py:10:6: error[unresolved-import] Cannot resolve imported module `aqualogic.core` +homeassistant/components/aqualogic/switch.py:7:6: error[unresolved-import] Cannot resolve imported module `aqualogic.core` +homeassistant/components/aquostv/media_player.py:9:8: error[unresolved-import] Cannot resolve imported module `sharp_aquos_rc` +homeassistant/components/arest/binary_sensor.py:51:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/arest/binary_sensor.py:56:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/arest/binary_sensor.py:111:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/arest/sensor.py:74:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/arest/sensor.py:79:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/arest/sensor.py:172:39: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/arest/sensor.py:207:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/arest/switch.py:62:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/arest/switch.py:67:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/arest/switch.py:160:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/arest/switch.py:207:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/arris_tg2492lg/device_tracker.py:6:6: error[unresolved-import] Cannot resolve imported module `arris_tg2492lg` +homeassistant/components/arve/entity.py:47:13: error[unsupported-operator] Operator `in` is not supported for types `Unknown` and `ArveSensProData`, in comparing `Unknown | str` with `Unknown | ArveSensProData` +homeassistant/components/arve/entity.py:53:16: error[non-subscriptable] Cannot subscript object of type `ArveSensProData` with no `__getitem__` method +homeassistant/components/assist_pipeline/select.py:90:13: error[invalid-argument-type] Argument to function `replace` is incorrect: Argument type `Unknown | SelectEntityDescription` does not satisfy upper bound `DataclassInstance` of type variable `_DataclassT` +homeassistant/components/assist_pipeline/vad.py:52:28: error[invalid-type-form] Variable of type `def bytes(self) -> Unknown` is not allowed in a type expression +homeassistant/components/assist_pipeline/vad.py:61:24: error[invalid-type-form] Variable of type `def bytes(self) -> Unknown` is not allowed in a type expression +homeassistant/components/assist_satellite/__init__.py:124:69: error[invalid-argument-type] Argument to bound method `async_internal_ask_question` is incorrect: Expected `bool`, found `Unknown | None` +homeassistant/components/assist_satellite/__init__.py:124:69: error[invalid-argument-type] Argument to bound method `async_internal_ask_question` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/asuswrt/diagnostics.py:65:9: error[invalid-assignment] Invalid subscript assignment with key of type `str` and value of type `dict[Unknown | str, Unknown | None | dict[Unknown, Unknown]]` on object of type `list[Unknown]` +homeassistant/components/asuswrt/diagnostics.py:76:9: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | dict[Unknown, Unknown] | list[Unknown]` +homeassistant/components/asuswrt/helpers.py:41:16: error[invalid-return-type] Return type does not match returned value: expected `T@translate_to_legacy`, found `None` +homeassistant/components/asuswrt/helpers.py:44:16: error[invalid-return-type] Return type does not match returned value: expected `T@translate_to_legacy`, found `dict[Unknown | str, object]` +homeassistant/components/asuswrt/helpers.py:47:16: error[invalid-return-type] Return type does not match returned value: expected `T@translate_to_legacy`, found `list[object]` +homeassistant/components/atag/climate.py:55:39: warning[possibly-missing-attribute] Attribute `temp_unit` may be missing on object of type `Unknown | None | Climate` +homeassistant/components/atag/climate.py:60:41: warning[possibly-missing-attribute] Attribute `hvac_mode` may be missing on object of type `Unknown | None | Climate` +homeassistant/components/atag/climate.py:65:21: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Unknown | None | Climate` +homeassistant/components/atag/climate.py:71:16: warning[possibly-missing-attribute] Attribute `temperature` may be missing on object of type `Unknown | None | Climate` +homeassistant/components/atag/climate.py:76:16: warning[possibly-missing-attribute] Attribute `target_temperature` may be missing on object of type `Unknown | None | Climate` +homeassistant/components/atag/climate.py:81:18: warning[possibly-missing-attribute] Attribute `preset_mode` may be missing on object of type `Unknown | None | Climate` +homeassistant/components/atag/climate.py:86:15: warning[possibly-missing-attribute] Attribute `set_temp` may be missing on object of type `Unknown | None | Climate` +homeassistant/components/atag/climate.py:86:54: error[invalid-argument-type] Argument to bound method `set_temp` is incorrect: Expected `int | float`, found `Any | None` +homeassistant/components/atag/climate.py:91:15: warning[possibly-missing-attribute] Attribute `set_hvac_mode` may be missing on object of type `Unknown | None | Climate` +homeassistant/components/atag/climate.py:96:15: warning[possibly-missing-attribute] Attribute `set_preset_mode` may be missing on object of type `Unknown | None | Climate` +homeassistant/components/atag/config_flow.py:16:37: error[unresolved-attribute] Module `pyatag` has no member `const` +homeassistant/components/atag/sensor.py:45:12: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/atag/sensor.py:49:39: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/atag/sensor.py:50:12: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/atag/sensor.py:57:53: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/atag/sensor.py:64:16: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/atag/sensor.py:69:16: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/atag/water_heater.py:42:16: warning[possibly-missing-attribute] Attribute `temperature` may be missing on object of type `Unknown | None | DHW` +homeassistant/components/atag/water_heater.py:47:21: warning[possibly-missing-attribute] Attribute `current_operation` may be missing on object of type `Unknown | None | DHW` +homeassistant/components/atag/water_heater.py:52:18: warning[possibly-missing-attribute] Attribute `set_temp` may be missing on object of type `Unknown | None | DHW` +homeassistant/components/atag/water_heater.py:52:53: error[invalid-argument-type] Argument to bound method `set_temp` is incorrect: Expected `int | float`, found `Any | None` +homeassistant/components/atag/water_heater.py:58:16: warning[possibly-missing-attribute] Attribute `target_temperature` may be missing on object of type `Unknown | None | DHW` +homeassistant/components/atag/water_heater.py:63:16: warning[possibly-missing-attribute] Attribute `max_temp` may be missing on object of type `Unknown | None | DHW` +homeassistant/components/atag/water_heater.py:68:16: warning[possibly-missing-attribute] Attribute `min_temp` may be missing on object of type `Unknown | None | DHW` +homeassistant/components/aten_pe/switch.py:8:6: error[unresolved-import] Cannot resolve imported module `atenpdu` +homeassistant/components/atome/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `pyatome.client` +homeassistant/components/august/__init__.py:73:38: error[invalid-argument-type] Argument to bound method `async_setup` is incorrect: Expected `Config`, found `dict[Unknown | str, Unknown | Brand]` +homeassistant/components/august/__init__.py:73:38: error[missing-typed-dict-key] Missing required key 'username' in TypedDict `Config` constructor +homeassistant/components/august/__init__.py:73:38: error[missing-typed-dict-key] Missing required key 'password' in TypedDict `Config` constructor +homeassistant/components/august/__init__.py:73:38: error[missing-typed-dict-key] Missing required key 'login_method' in TypedDict `Config` constructor +homeassistant/components/august/__init__.py:73:38: error[missing-typed-dict-key] Missing required key 'access_token_cache_file' in TypedDict `Config` constructor +homeassistant/components/august/__init__.py:73:38: error[missing-typed-dict-key] Missing required key 'install_id' in TypedDict `Config` constructor +homeassistant/components/august/__init__.py:73:38: error[missing-typed-dict-key] Missing required key 'timeout' in TypedDict `Config` constructor +homeassistant/components/august/binary_sensor.py:75:9: error[invalid-argument-type] Argument is incorrect: Expected `(AugustData, DoorbellDetail | LockDetail, /) -> Activity | None`, found `def retrieve_online_state(data: AugustData, detail: DoorbellDetail | LockDetail) -> bool` +homeassistant/components/august/binary_sensor.py:103:12: warning[possibly-missing-attribute] Attribute `doorsense` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/august/binary_sensor.py:106:12: warning[possibly-missing-attribute] Attribute `doorbell` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/august/binary_sensor.py:130:46: error[invalid-argument-type] Argument to function `update_lock_detail_from_activity` is incorrect: Expected `LockDetail`, found `DoorbellDetail | LockDetail` +homeassistant/components/august/binary_sensor.py:130:60: error[invalid-argument-type] Argument to function `update_lock_detail_from_activity` is incorrect: Expected `LockOperationActivity | DoorOperationActivity | BridgeOperationActivity`, found `Activity & ~AlwaysFalsy` +homeassistant/components/august/binary_sensor.py:132:17: warning[possibly-missing-attribute] Attribute `set_online` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/august/binary_sensor.py:135:46: error[invalid-argument-type] Argument to function `update_lock_detail_from_activity` is incorrect: Expected `LockDetail`, found `DoorbellDetail | LockDetail` +homeassistant/components/august/binary_sensor.py:135:60: error[invalid-argument-type] Argument to function `update_lock_detail_from_activity` is incorrect: Expected `LockOperationActivity | DoorOperationActivity | BridgeOperationActivity`, found `Activity & ~AlwaysFalsy` +homeassistant/components/august/binary_sensor.py:136:32: warning[possibly-missing-attribute] Attribute `bridge_is_online` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/august/binary_sensor.py:137:28: warning[possibly-missing-attribute] Attribute `door_state` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/august/camera.py:62:16: warning[possibly-missing-attribute] Attribute `has_subscription` may be missing on object of type `Unknown | Doorbell | Lock | KeypadDetail` +homeassistant/components/august/camera.py:76:49: error[invalid-argument-type] Argument to function `update_doorbell_image_from_activity` is incorrect: Expected `DoorbellDetail`, found `DoorbellDetail | LockDetail` +homeassistant/components/august/camera.py:76:63: error[invalid-argument-type] Argument to function `update_doorbell_image_from_activity` is incorrect: Expected `DoorbellImageCaptureActivity | DoorbellMotionActivity | BridgeOperationActivity`, found `Activity & ~AlwaysFalsy` +homeassistant/components/august/camera.py:84:35: warning[possibly-missing-attribute] Attribute `image_url` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/august/camera.py:88:31: warning[possibly-missing-attribute] Attribute `image_url` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/august/data.py:47:42: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Exception`, found `` +homeassistant/components/august/entity.py:59:21: warning[possibly-missing-attribute] Attribute `bridge` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/august/entity.py:59:45: warning[possibly-missing-attribute] Attribute `bridge` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/august/event.py:70:67: warning[possibly-missing-attribute] Attribute `doorbell` may be missing on object of type `(DoorbellDetail & ~AlwaysFalsy) | (LockDetail & ~AlwaysFalsy)` +homeassistant/components/august/lock.py:47:12: warning[possibly-missing-attribute] Attribute `unlatch_supported` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/august/lock.py:73:17: error[invalid-assignment] Object of type `Literal[LockStatus.JAMMED]` is not assignable to attribute `lock_status` on type `DoorbellDetail | LockDetail` +homeassistant/components/august/lock.py:74:17: error[invalid-assignment] Object of type `Unknown` is not assignable to attribute `lock_status_datetime` on type `DoorbellDetail | LockDetail` +homeassistant/components/august/lock.py:79:50: error[invalid-argument-type] Argument to function `update_lock_detail_from_activity` is incorrect: Expected `LockDetail`, found `DoorbellDetail | LockDetail` +homeassistant/components/august/lock.py:79:64: error[invalid-argument-type] Argument to function `update_lock_detail_from_activity` is incorrect: Expected `LockOperationActivity | DoorOperationActivity | BridgeOperationActivity`, found `Unknown | DoorbellDingActivity | DoorbellMotionActivity | ... omitted 5 union elements` +homeassistant/components/august/lock.py:89:32: warning[possibly-missing-attribute] Attribute `bridge_is_online` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/august/lock.py:91:33: warning[possibly-missing-attribute] Attribute `lock_status` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/august/lock.py:92:33: warning[possibly-missing-attribute] Attribute `lock_status` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/august/lock.py:101:37: error[unresolved-attribute] Object of type `Activity & ~AlwaysFalsy` has no attribute `operated_by` +homeassistant/components/august/lock.py:106:13: error[invalid-argument-type] Argument to function `get_latest_activity` is incorrect: Expected `LockOperationActivity | DoorOperationActivity | BridgeOperationActivity | None`, found `Activity | None` +homeassistant/components/august/lock.py:106:45: error[invalid-argument-type] Argument to function `get_latest_activity` is incorrect: Expected `LockOperationActivity | DoorOperationActivity | BridgeOperationActivity | None`, found `Activity | None` +homeassistant/components/august/lock.py:109:17: warning[possibly-missing-attribute] Attribute `set_online` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/august/lock.py:110:46: error[invalid-argument-type] Argument to function `update_lock_detail_from_activity` is incorrect: Expected `LockDetail`, found `DoorbellDetail | LockDetail` +homeassistant/components/august/lock.py:113:46: error[invalid-argument-type] Argument to function `update_lock_detail_from_activity` is incorrect: Expected `LockDetail`, found `DoorbellDetail | LockDetail` +homeassistant/components/august/lock.py:113:54: error[invalid-argument-type] Argument to function `update_lock_detail_from_activity` is incorrect: Expected `LockOperationActivity | DoorOperationActivity | BridgeOperationActivity`, found `Activity & ~AlwaysFalsy` +homeassistant/components/august/lock.py:128:22: warning[possibly-missing-attribute] Attribute `keypad` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/august/sensor.py:94:48: error[invalid-argument-type] Argument is incorrect: Expected `LockDetail`, found `DoorbellDetail | LockDetail` +homeassistant/components/august/sensor.py:100:22: warning[possibly-missing-attribute] Attribute `keypad` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/august/sensor.py:108:9: error[invalid-argument-type] Argument to class `AugustBatterySensor` is incorrect: Expected `LockDetail | KeypadDetail`, found `Doorbell` +homeassistant/components/august/sensor.py:110:48: error[invalid-argument-type] Argument is incorrect: Expected `LockDetail`, found `DoorbellDetail | LockDetail` +homeassistant/components/august/sensor.py:212:68: error[invalid-argument-type] Argument is incorrect: Expected `T@AugustBatterySensor`, found `DoorbellDetail | LockDetail` +homeassistant/components/august/util.py:38:12: error[invalid-return-type] Return type does not match returned value: expected `Activity | None`, found `Literal[False]` +homeassistant/components/aurora_abb_powerone/config_flow.py:53:12: warning[possibly-missing-attribute] Attribute `isOpen` may be missing on object of type `Unknown | Serial` +homeassistant/components/aurora_abb_powerone/coordinator.py:105:20: warning[possibly-missing-attribute] Attribute `isOpen` may be missing on object of type `Unknown | Serial` +homeassistant/components/aussie_broadband/coordinator.py:60:49: error[invalid-argument-type] Argument to bound method `get_usage` is incorrect: Expected `int`, found `Unknown | str` +homeassistant/components/auth/__init__.py:676:50: error[unresolved-reference] Name `current_refresh_token` used when not defined +homeassistant/components/auth/__init__.py:679:34: error[unresolved-reference] Name `current_refresh_token` used when not defined +homeassistant/components/auth/mfa_setup_flow.py:155:16: error[no-matching-overload] No overload of bound method `__init__` matches arguments +homeassistant/components/avea/light.py:7:8: error[unresolved-import] Cannot resolve imported module `avea` +homeassistant/components/awair/config_flow.py:40:9: error[invalid-assignment] Object of type `AwairLocalDevice | None` is not assignable to attribute `_device` of type `AwairLocalDevice` +homeassistant/components/awair/config_flow.py:78:13: error[invalid-argument-type] Argument to bound method `async_show_form` is incorrect: Expected `Mapping[str, str] | None`, found `dict[Unknown | str, Unknown | str | int]` +homeassistant/components/awair/config_flow.py:103:48: error[invalid-argument-type] Argument to bound method `async_create_entry` is incorrect: Expected `str`, found `str | None` +homeassistant/components/awair/config_flow.py:167:13: error[invalid-assignment] Object of type `AwairLocalDevice | None` is not assignable to attribute `_device` of type `AwairLocalDevice` +homeassistant/components/awair/coordinator.py:67:43: error[invalid-argument-type] Argument is incorrect: Expected `AirData`, found `AirData | None` +homeassistant/components/aws_s3/backup.py:45:42: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, T@handle_boto_errors]` has no attribute `__name__` +homeassistant/components/azure_devops/config_flow.py:54:51: error[invalid-argument-type] Argument to bound method `authorize` is incorrect: Expected `str`, found `str | None` +homeassistant/components/azure_devops/config_flow.py:58:53: error[invalid-argument-type] Argument to bound method `get_project` is incorrect: Expected `str`, found `str | None` +homeassistant/components/azure_devops/config_flow.py:58:73: error[invalid-argument-type] Argument to bound method `get_project` is incorrect: Expected `str`, found `str | None` +homeassistant/components/azure_devops/entity.py:23:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, str, str]]` +homeassistant/components/azure_devops/sensor.py:198:16: warning[possibly-missing-attribute] Attribute `build_id` may be missing on object of type `BuildDefinition | None` +homeassistant/components/azure_devops/sensor.py:202:32: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `BuildDefinition | None` +homeassistant/components/azure_service_bus/notify.py:8:6: error[unresolved-import] Cannot resolve imported module `azure.servicebus` +homeassistant/components/azure_service_bus/notify.py:9:6: error[unresolved-import] Cannot resolve imported module `azure.servicebus.aio` +homeassistant/components/azure_service_bus/notify.py:10:6: error[unresolved-import] Cannot resolve imported module `azure.servicebus.exceptions` +homeassistant/components/azure_storage/backup.py:74:17: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@handle_backup_errors]` has no attribute `__name__` +homeassistant/components/azure_storage/backup.py:80:53: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@handle_backup_errors]` has no attribute `__name__` +homeassistant/components/azure_storage/backup.py:85:55: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@handle_backup_errors]` has no attribute `__name__` +homeassistant/components/azure_storage/backup.py:90:17: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@handle_backup_errors]` has no attribute `__name__` +homeassistant/components/azure_storage/backup.py:95:53: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@handle_backup_errors]` has no attribute `__name__` +homeassistant/components/backblaze_b2/__init__.py:51:16: error[invalid-return-type] Return type does not match returned value: expected `b2sdk.v2.bucket.Bucket`, found `b2sdk._internal.bucket.Bucket` +homeassistant/components/backblaze_b2/backup.py:95:42: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, T@handle_b2_errors]` has no attribute `__name__` +homeassistant/components/backup/manager.py:1610:16: error[invalid-return-type] Return type does not match returned value: expected `StoredKnownBackup`, found `dict[Unknown | str, Unknown | str | list[dict[Unknown | str, Unknown | str | None] | Unknown] | list[str]]` +homeassistant/components/backup/manager.py:1612:30: error[invalid-argument-type] Invalid argument to key "failed_addons" with declared type `list[StoredAddonInfo]` on TypedDict `StoredKnownBackup`: value of type `list[dict[Unknown | str, Unknown | str | None] | Unknown]` +homeassistant/components/backup/util.py:186:20: warning[possibly-missing-attribute] Attribute `plaintext_size` may be missing on object of type `Unknown | SecureTarHeader | None` +homeassistant/components/backup/util.py:289:35: warning[possibly-missing-attribute] Attribute `plaintext_size` may be missing on object of type `Unknown | SecureTarHeader | None` +homeassistant/components/baf/entity.py:24:25: error[invalid-argument-type] Invalid argument to key "connections" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown | str | None]]` +homeassistant/components/baidu/tts.py:5:6: error[unresolved-import] Cannot resolve imported module `aip` +homeassistant/components/bang_olufsen/media_player.py:932:53: error[invalid-argument-type] Argument to function `loads` is incorrect: Expected `str | bytes | bytearray`, found `Unknown | None` +homeassistant/components/bbox/device_tracker.py:9:8: error[unresolved-import] Cannot resolve imported module `pybbox` +homeassistant/components/bbox/sensor.py:8:8: error[unresolved-import] Cannot resolve imported module `pybbox` +homeassistant/components/bbox/sensor.py:105:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/bbox/sensor.py:201:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/beewi_smartclim/sensor.py:5:6: error[unresolved-import] Cannot resolve imported module `beewi_smartclim` +homeassistant/components/bitcoin/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `blockchain` +homeassistant/components/bizkaibus/sensor.py:7:6: error[unresolved-import] Cannot resolve imported module `bizkaibus.bizkaibus` +homeassistant/components/blebox/binary_sensor.py:52:16: warning[possibly-missing-attribute] Attribute `state` may be missing on object of type `Unknown | BinarySensor` +homeassistant/components/blebox/climate.py:94:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `Unknown | int | float | None` +homeassistant/components/blebox/climate.py:99:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `Unknown | int | float | None` +homeassistant/components/blebox/config_flow.py:98:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int`, found `int | None` +homeassistant/components/blebox/light.py:74:16: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `Unknown | bool | None` +homeassistant/components/blebox/light.py:125:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int, int, int] | None`, found `tuple[int, ...]` +homeassistant/components/blebox/light.py:132:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int, int, int, int] | None`, found `tuple[int, ...]` +homeassistant/components/blebox/light.py:171:50: error[invalid-argument-type] Argument to bound method `apply_brightness` is incorrect: Expected `int`, found `Unknown | list[Unknown] | str | None` +homeassistant/components/blink/alarm_control_panel.py:61:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown | None]]` +homeassistant/components/blink/camera.py:89:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown | None]]` +homeassistant/components/blink/config_flow.py:103:43: error[invalid-argument-type] Argument to function `_send_blink_2fa_pin` is incorrect: Expected `Blink`, found `Blink | None` +homeassistant/components/blinksticklight/light.py:48:13: error[unresolved-reference] Name `blinkstick` used when not defined +homeassistant/components/blockchain/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `pyblockchain` +homeassistant/components/bluetooth/diagnostics.py:8:32: warning[possibly-missing-import] Member `get_dbus_managed_objects` of module `bluetooth_adapters` may be missing +homeassistant/components/bluetooth/passive_update_coordinator.py:78:20: error[not-iterable] Object of type `GeneratorType[~None, None, None]` is not iterable +homeassistant/components/bluetooth/passive_update_processor.py:99:30: error[invalid-assignment] Object of type `object` is not assignable to `type[EntityDescription]` +homeassistant/components/bluetooth/passive_update_processor.py:667:36: error[invalid-assignment] Cannot assign value of type `str` to key of type `Never` on TypedDict `DeviceInfo` +homeassistant/components/bluetooth_tracker/device_tracker.py:10:8: error[unresolved-import] Cannot resolve imported module `bluetooth` +homeassistant/components/bluetooth_tracker/device_tracker.py:11:6: error[unresolved-import] Cannot resolve imported module `bt_proximity` +homeassistant/components/bond/button.py:49:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["TurnOn"]` +homeassistant/components/bond/button.py:56:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["TurnLightOn"]` +homeassistant/components/bond/button.py:63:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetBrightness"]` +homeassistant/components/bond/button.py:70:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetBrightness"]` +homeassistant/components/bond/button.py:77:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["TurnUpLightOn"]` +homeassistant/components/bond/button.py:84:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["TurnDownLightOn"]` +homeassistant/components/bond/button.py:91:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetBrightness"]` +homeassistant/components/bond/button.py:105:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetUpLightBrightness"]` +homeassistant/components/bond/button.py:112:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetDownLightBrightness"]` +homeassistant/components/bond/button.py:119:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetBrightness"]` +homeassistant/components/bond/button.py:126:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetBrightness"]` +homeassistant/components/bond/button.py:133:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetUpLightBrightness"]` +homeassistant/components/bond/button.py:140:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetUpLightBrightness"]` +homeassistant/components/bond/button.py:147:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetDownLightBrightness"]` +homeassistant/components/bond/button.py:154:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetDownLightBrightness"]` +homeassistant/components/bond/button.py:161:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetUpLightBrightness"]` +homeassistant/components/bond/button.py:168:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetDownLightBrightness"]` +homeassistant/components/bond/button.py:175:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetBrightness"]` +homeassistant/components/bond/button.py:182:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetSpeed"]` +homeassistant/components/bond/button.py:189:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetSpeed"]` +homeassistant/components/bond/button.py:196:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetDirection"]` +homeassistant/components/bond/button.py:230:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["Open"]` +homeassistant/components/bond/button.py:237:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetPosition"]` +homeassistant/components/bond/button.py:244:9: error[invalid-argument-type] Argument is incorrect: Expected `Action | None`, found `Unknown | Literal["SetPosition"]` +homeassistant/components/bond/button.py:280:42: error[invalid-argument-type] Argument to bound method `has_action` is incorrect: Expected `str`, found `Action` +homeassistant/components/bosch_alarm/config_flow.py:120:17: error[unresolved-attribute] Module `asyncio` has no member `exceptions` +homeassistant/components/bosch_alarm/config_flow.py:191:13: error[unresolved-attribute] Module `asyncio` has no member `exceptions` +homeassistant/components/bosch_shc/binary_sensor.py:34:13: error[unsupported-operator] Operator `+` is unsupported between objects of type `Sequence[SHCShutterContact]` and `Sequence[SHCShutterContact2]` +homeassistant/components/bosch_shc/binary_sensor.py:46:13: error[unsupported-operator] Operator `+` is unsupported between objects of type `Sequence[SHCMotionDetector]` and `Sequence[SHCShutterContact]` +homeassistant/components/bosch_shc/binary_sensor.py:76:13: warning[possibly-missing-attribute] Attribute `device_class` may be missing on object of type `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/binary_sensor.py:82:16: warning[possibly-missing-attribute] Attribute `state` may be missing on object of type `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/binary_sensor.py:99:13: warning[possibly-missing-attribute] Attribute `batterylevel` may be missing on object of type `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/cover.py:53:22: warning[possibly-missing-attribute] Attribute `level` may be missing on object of type `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/cover.py:57:9: warning[possibly-missing-attribute] Attribute `stop` may be missing on object of type `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/cover.py:68:13: warning[possibly-missing-attribute] Attribute `operation_state` may be missing on object of type `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/cover.py:76:13: warning[possibly-missing-attribute] Attribute `operation_state` may be missing on object of type `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/cover.py:82:9: error[invalid-assignment] Object of type `float` is not assignable to attribute `level` on type `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/cover.py:86:9: error[invalid-assignment] Object of type `float` is not assignable to attribute `level` on type `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/cover.py:91:9: error[invalid-assignment] Object of type `Any` is not assignable to attribute `level` on type `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/entity.py:83:24: warning[possibly-missing-attribute] Attribute `device_services` may be missing on object of type `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/entity.py:89:24: warning[possibly-missing-attribute] Attribute `device_services` may be missing on object of type `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/entity.py:95:16: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/entity.py:121:16: warning[possibly-missing-attribute] Attribute `system_availability` may be missing on object of type `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/sensor.py:183:13: error[unsupported-operator] Operator `+` is unsupported between objects of type `Sequence[SHCSmartPlug]` and `Sequence[SHCLightSwitchBSM]` +homeassistant/components/bosch_shc/sensor.py:222:49: error[invalid-argument-type] Argument is incorrect: Expected `SHCDevice`, found `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/sensor.py:228:58: error[invalid-argument-type] Argument is incorrect: Expected `SHCDevice`, found `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/switch.py:45:9: error[invalid-argument-type] Argument is incorrect: Expected `StateType`, found `Literal[State.ON]` +homeassistant/components/bosch_shc/switch.py:52:9: error[invalid-argument-type] Argument is incorrect: Expected `StateType`, found `Literal[State.ON]` +homeassistant/components/bosch_shc/switch.py:59:9: error[invalid-argument-type] Argument is incorrect: Expected `StateType`, found `Literal[State.ON]` +homeassistant/components/bosch_shc/switch.py:66:9: error[invalid-argument-type] Argument is incorrect: Expected `StateType`, found `Literal[State.ON]` +homeassistant/components/bosch_shc/switch.py:73:9: error[invalid-argument-type] Argument is incorrect: Expected `StateType`, found `Literal[State.DISABLED]` +homeassistant/components/bosch_shc/switch.py:188:9: warning[possibly-missing-attribute] Attribute `update` may be missing on object of type `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/switch.py:205:16: warning[possibly-missing-attribute] Attribute `routing` may be missing on object of type `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/switch.py:209:9: error[invalid-assignment] Object of type `Literal[True]` is not assignable to attribute `routing` on type `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/bosch_shc/switch.py:213:9: error[invalid-assignment] Object of type `Literal[False]` is not assignable to attribute `routing` on type `Unknown | SHCDevice | SHCIntrusionSystem` +homeassistant/components/broadlink/device.py:109:9: error[invalid-assignment] Object of type `Device` is not assignable to attribute `api` of type `_ApiT@BroadlinkDevice` +homeassistant/components/broadlink/light.py:82:13: error[invalid-assignment] Object of type `list[Unknown]` is not assignable to attribute `_attr_hs_color` of type `tuple[int | float, int | float] | None` +homeassistant/components/brottsplatskartan/sensor.py:68:59: error[invalid-assignment] Object of type `Unknown | list[Unknown] | bool` is not assignable to `dict[str, list[Unknown]] | Literal[False]` +homeassistant/components/brunt/cover.py:159:27: error[invalid-argument-type] Argument to bound method `async_change_request_position` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/brunt/cover.py:173:16: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, int].__getitem__(key: str, /) -> int` cannot be called with key of type `Unknown | str | None` on object of type `dict[str, int]` +homeassistant/components/bryant_evolution/climate.py:48:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `BryantEvolutionLocalClient`, found `BryantEvolutionLocalClient | None` +homeassistant/components/bryant_evolution/climate.py:193:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[str, str] | None`, found `dict[Unknown | str, Unknown | tuple[str, bool] | str]` +homeassistant/components/bt_home_hub_5/device_tracker.py:7:8: error[unresolved-import] Cannot resolve imported module `bthomehub5_devicelist` +homeassistant/components/bt_smarthub/device_tracker.py:8:6: error[unresolved-import] Cannot resolve imported module `btsmarthub_devicelist` +homeassistant/components/bthome/__init__.py:109:6: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/components/bthome/__init__.py:114:52: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 2 +homeassistant/components/bthome/event.py:70:43: error[invalid-argument-type] Argument to function `replace` is incorrect: Argument type `Unknown | EventEntityDescription` does not satisfy upper bound `DataclassInstance` of type variable `_DataclassT` +homeassistant/components/bthome/logbook.py:34:16: error[invalid-return-type] Return type does not match returned value: expected `dict[str, str]`, found `dict[str, str | (DeviceEntry & ~AlwaysTruthy & ~AlwaysFalsy)]` +homeassistant/components/buienradar/sensor.py:783:28: warning[possibly-missing-attribute] Attribute `data` may be missing on object of type `BrData | None` +homeassistant/components/buienradar/util.py:185:16: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[str, Any] | None` +homeassistant/components/buienradar/util.py:190:16: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[str, Any] | None` +homeassistant/components/buienradar/util.py:195:16: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[str, Any] | None` +homeassistant/components/buienradar/util.py:201:26: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsFloat | SupportsIndex`, found `Any | None` +homeassistant/components/buienradar/util.py:201:26: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[str, Any] | None` +homeassistant/components/buienradar/util.py:209:26: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsFloat | SupportsIndex`, found `Any | None` +homeassistant/components/buienradar/util.py:209:26: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[str, Any] | None` +homeassistant/components/buienradar/util.py:217:26: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsFloat | SupportsIndex`, found `Any | None` +homeassistant/components/buienradar/util.py:217:26: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[str, Any] | None` +homeassistant/components/buienradar/util.py:225:24: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsInt | SupportsIndex | SupportsTrunc`, found `Any | None` +homeassistant/components/buienradar/util.py:225:24: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[str, Any] | None` +homeassistant/components/buienradar/util.py:233:24: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsInt | SupportsIndex | SupportsTrunc`, found `Any | None` +homeassistant/components/buienradar/util.py:233:24: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[str, Any] | None` +homeassistant/components/buienradar/util.py:241:26: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsFloat | SupportsIndex`, found `Any | None` +homeassistant/components/buienradar/util.py:241:26: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[str, Any] | None` +homeassistant/components/buienradar/util.py:249:26: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsFloat | SupportsIndex`, found `Any | None` +homeassistant/components/buienradar/util.py:249:26: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[str, Any] | None` +homeassistant/components/buienradar/util.py:257:24: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsInt | SupportsIndex | SupportsTrunc`, found `Any | None` +homeassistant/components/buienradar/util.py:257:24: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[str, Any] | None` +homeassistant/components/buienradar/util.py:264:16: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[str, Any] | None` +homeassistant/components/caldav/todo.py:70:35: error[invalid-argument-type] Argument to function `get_attr_value` is incorrect: Expected `CalendarObjectResource`, found `~AlwaysFalsy` +homeassistant/components/caldav/todo.py:71:39: error[invalid-argument-type] Argument to function `get_attr_value` is incorrect: Expected `CalendarObjectResource`, found `~AlwaysFalsy` +homeassistant/components/caldav/todo.py:75:36: error[invalid-argument-type] Argument to function `get_attr_value` is incorrect: Expected `CalendarObjectResource`, found `~AlwaysFalsy` +homeassistant/components/caldav/todo.py:84:28: error[invalid-argument-type] Argument to function `get_attr_value` is incorrect: Expected `CalendarObjectResource`, found `~AlwaysFalsy` +homeassistant/components/caldav/todo.py:88:36: error[invalid-argument-type] Argument to function `get_attr_value` is incorrect: Expected `CalendarObjectResource`, found `~AlwaysFalsy` +homeassistant/components/calendar/trigger.py:172:14: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/components/cambridge_audio/entity.py:32:38: error[unresolved-attribute] Object of type `(...) -> Awaitable[None]` has no attribute `__name__` +homeassistant/components/canary/camera.py:173:17: error[invalid-argument-type] Argument to function `async_aiohttp_proxy_stream` is incorrect: Expected `StreamReader`, found `StreamReader` +homeassistant/components/cast/const.py:27:25: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/components/cast/const.py:31:22: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/components/cast/const.py:34:29: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 4 +homeassistant/components/cast/helpers.py:132:13: error[unknown-argument] Argument `is_dynamic_group` does not match any known parameter +homeassistant/components/cast/helpers.py:268:12: error[unresolved-attribute] Object of type `object` has no attribute `ClientError` +homeassistant/components/cast/media_player.py:94:11: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/cast/media_player.py:95:6: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/cast/media_player.py:353:28: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Chromecast | None` +homeassistant/components/cast/media_player.py:354:29: warning[possibly-missing-attribute] Attribute `media_controller` may be missing on object of type `Chromecast | None` +homeassistant/components/cast/media_player.py:460:35: warning[possibly-missing-attribute] Attribute `get_multizone_memberships` may be missing on object of type `Unknown | None` +homeassistant/components/cast/media_player.py:463:46: warning[possibly-missing-attribute] Attribute `get_multizone_mediacontroller` may be missing on object of type `Unknown | None` +homeassistant/components/cast/media_player.py:493:28: warning[possibly-missing-attribute] Attribute `media_controller` may be missing on object of type `Chromecast | None` +homeassistant/components/cast/media_player.py:502:40: warning[possibly-missing-attribute] Attribute `get_multizone_mediacontroller` may be missing on object of type `Unknown | None` +homeassistant/components/cast/media_player.py:599:32: warning[possibly-missing-attribute] Attribute `cast_type` may be missing on object of type `Chromecast | None` +homeassistant/components/cast/media_player.py:608:29: error[invalid-argument-type] Argument to bound method `extend` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | Sequence[BrowseMedia] | None` +homeassistant/components/ccm15/climate.py:149:33: error[invalid-argument-type] Argument to bound method `async_set_temperature` is incorrect: Expected `CCM15SlaveDevice`, found `CCM15SlaveDevice | None` +homeassistant/components/ccm15/climate.py:154:68: error[invalid-argument-type] Argument to bound method `async_set_hvac_mode` is incorrect: Expected `CCM15SlaveDevice`, found `CCM15SlaveDevice | None` +homeassistant/components/ccm15/climate.py:158:67: error[invalid-argument-type] Argument to bound method `async_set_fan_mode` is incorrect: Expected `CCM15SlaveDevice`, found `CCM15SlaveDevice | None` +homeassistant/components/chacon_dio/__init__.py:47:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `str | None` +homeassistant/components/channels/media_player.py:7:6: error[unresolved-import] Cannot resolve imported module `pychannels` +homeassistant/components/cisco_mobility_express/device_tracker.py:7:6: error[unresolved-import] Cannot resolve imported module `ciscomobilityexpress.ciscome` +homeassistant/components/cisco_mobility_express/device_tracker.py:89:16: warning[possibly-missing-attribute] Attribute `_asdict` may be missing on object of type `Unknown | None` +homeassistant/components/cisco_webex_teams/notify.py:8:6: error[unresolved-import] Cannot resolve imported module `webexpythonsdk` +homeassistant/components/citybikes/sensor.py:11:6: error[unresolved-import] Cannot resolve imported module `citybikes` +homeassistant/components/citybikes/sensor.py:12:6: error[unresolved-import] Cannot resolve imported module `citybikes.asyncio` +homeassistant/components/clementine/media_player.py:8:6: error[unresolved-import] Cannot resolve imported module `clementineremote` +homeassistant/components/cloud/__init__.py:85:32: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/components/cloud/__init__.py:281:51: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[str, Any]`, found `Unknown | (str & ~AlwaysFalsy)` +homeassistant/components/cloud/__init__.py:281:63: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[str, Any]`, found `Unknown | (str & ~AlwaysFalsy)` +homeassistant/components/cloud/__init__.py:282:51: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Literal["development", "production"]`, found `Unknown | str` +homeassistant/components/cloud/__init__.py:282:51: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[Literal["remote_access_resolve_dns_cname", "subscription_info", "subscription_migrate_paypal", "voice_connection_details"], str] | None`, found `Unknown | str` +homeassistant/components/cloud/__init__.py:282:51: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Literal["development", "production"]`, found `Unknown | str` +homeassistant/components/cloud/__init__.py:282:51: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[Literal["remote_access_resolve_dns_cname", "subscription_info", "subscription_migrate_paypal", "voice_connection_details"], str] | None`, found `Unknown | str` +homeassistant/components/cloud/alexa_config.py:272:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventEntityRegistryUpdatedData]` +homeassistant/components/cloud/alexa_config.py:273:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method Self@async_initialize._handle_entity_registry_updated(event: Event[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]) -> CoroutineType[Any, Any, None]` +homeassistant/components/cloud/alexa_config.py:543:28: error[invalid-key] Unknown key "changes" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "changes" +homeassistant/components/cloud/alexa_config.py:547:45: error[invalid-key] Unknown key "old_entity_id" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "old_entity_id" +homeassistant/components/cloud/client.py:96:33: error[unresolved-attribute] Object of type `object` has no attribute `AppRunner` +homeassistant/components/cloud/const.py:90:27: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/components/cloud/google_config.py:269:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventEntityRegistryUpdatedData]` +homeassistant/components/cloud/google_config.py:270:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method Self@async_initialize._handle_entity_registry_updated(event: Event[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]) -> None` +homeassistant/components/cloud/google_config.py:275:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventDeviceRegistryUpdatedData]` +homeassistant/components/cloud/google_config.py:276:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method Self@async_initialize._handle_device_registry_updated(event: Event[_EventDeviceRegistryUpdatedData_Create | _EventDeviceRegistryUpdatedData_Remove | _EventDeviceRegistryUpdatedData_Update]) -> None` +homeassistant/components/cloud/google_config.py:471:28: error[invalid-key] Unknown key "changes" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "changes" +homeassistant/components/cloud/google_config.py:495:76: error[invalid-key] Unknown key "changes" for TypedDict `_EventDeviceRegistryUpdatedData_Create`: Unknown key "changes" +homeassistant/components/cloud/google_config.py:495:76: error[invalid-key] Unknown key "changes" for TypedDict `_EventDeviceRegistryUpdatedData_Remove`: Unknown key "changes" +homeassistant/components/cmus/media_player.py:8:6: error[unresolved-import] Cannot resolve imported module `pycmus` +homeassistant/components/comfoconnect/__init__.py:104:26: warning[possibly-missing-attribute] Attribute `hex` may be missing on object of type `Unknown | str` +homeassistant/components/command_line/utils.py:54:20: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/concord232/alarm_control_panel.py:8:6: error[unresolved-import] Cannot resolve imported module `concord232` +homeassistant/components/concord232/alarm_control_panel.py:62:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/concord232/alarm_control_panel.py:90:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/concord232/binary_sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `concord232` +homeassistant/components/concord232/binary_sensor.py:71:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/concord232/binary_sensor.py:129:16: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/concord232/binary_sensor.py:135:21: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/concord232/binary_sensor.py:144:52: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/control4/config_flow.py:133:24: warning[possibly-missing-attribute] Attribute `split` may be missing on object of type `Unknown | None` +homeassistant/components/control4/config_flow.py:138:21: error[invalid-argument-type] Argument to bound method `async_create_entry` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/conversation/chat_log.py:54:16: warning[possibly-missing-attribute] Attribute `content` may be missing on object of type `SystemContent | UserContent | AssistantContent | ToolResultContent` +homeassistant/components/conversation/chat_log.py:424:40: error[invalid-key] Unknown key "tool_call_id" for TypedDict `AssistantContentDeltaDict` - did you mean "tool_calls"? +homeassistant/components/conversation/chat_log.py:425:37: error[invalid-key] Unknown key "tool_name" for TypedDict `AssistantContentDeltaDict`: Unknown key "tool_name" +homeassistant/components/conversation/chat_log.py:426:39: error[invalid-key] Unknown key "tool_result" for TypedDict `AssistantContentDeltaDict`: Unknown key "tool_result" +homeassistant/components/conversation/default_agent.py:274:33: error[invalid-key] Unknown key "changes" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "changes" +homeassistant/components/conversation/default_agent.py:289:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventAreaRegistryUpdatedData]` +homeassistant/components/conversation/default_agent.py:293:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventFloorRegistryUpdatedData]` +homeassistant/components/conversation/default_agent.py:297:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventEntityRegistryUpdatedData]` +homeassistant/components/conversation/default_agent.py:299:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `bound method Self@_listen_clear_slot_list._filter_entity_registry_changes(event_data: _EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update) -> bool` +homeassistant/components/conversation/default_agent.py:302:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]` +homeassistant/components/conversation/default_agent.py:304:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `bound method Self@_listen_clear_slot_list._filter_state_changes(event_data: EventStateChangedData) -> bool` +homeassistant/components/counter/__init__.py:219:53: error[invalid-argument-type] Argument to function `max` is incorrect: Argument type `int | None` does not satisfy upper bound `SupportsDunderLT[Any] | SupportsDunderGT[Any]` of type variable `SupportsRichComparisonT` +homeassistant/components/counter/__init__.py:221:53: error[invalid-argument-type] Argument to function `min` is incorrect: Argument type `int | None | Unknown` does not satisfy upper bound `SupportsDunderLT[Any] | SupportsDunderGT[Any]` of type variable `SupportsRichComparisonT` +homeassistant/components/cppm_tracker/device_tracker.py:8:6: error[unresolved-import] Cannot resolve imported module `clearpasspy` +homeassistant/components/cppm_tracker/device_tracker.py:65:45: error[not-iterable] Object of type `Unknown | None | list[Unknown]` may not be iterable +homeassistant/components/cppm_tracker/device_tracker.py:70:43: error[not-iterable] Object of type `Unknown | None | list[Unknown]` may not be iterable +homeassistant/components/crownstone/config_flow.py:238:33: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, Sphere].__getitem__(key: str, /) -> Sphere` cannot be called with key of type `Any | None` on object of type `dict[str, Sphere]` +homeassistant/components/crownstone/entry_manager.py:110:20: error[invalid-context-manager] Object of type `CrownstoneSSEAsync` cannot be used with `async with` because it does not correctly implement `__aexit__` +homeassistant/components/crownstone/light.py:95:12: warning[possibly-missing-attribute] Attribute `is_enabled` may be missing on object of type `Unknown | CrownstoneAbility | None` +homeassistant/components/crownstone/listeners.py:106:13: error[invalid-argument-type] Argument to bound method `get_crownstone_by_uid` is incorrect: Expected `int`, found `Unknown | None` +homeassistant/components/cync/config_flow.py:43:23: error[invalid-assignment] Object of type `None` is not assignable to `Auth` +homeassistant/components/cync/config_flow.py:126:40: error[invalid-argument-type] Argument to bound method `login` is incorrect: Expected `str`, found `Any | None` +homeassistant/components/cync/light.py:145:40: error[invalid-argument-type] Argument to bound method `set_rgb` is incorrect: Expected `tuple[int, int, int]`, found `Any | None` +homeassistant/components/cync/light.py:180:16: error[invalid-return-type] Return type does not match returned value: expected `CyncLight`, found `Unknown | CyncDevice` +homeassistant/components/daikin/__init__.py:46:39: error[invalid-await] `DaikinFactory` is not awaitable +homeassistant/components/daikin/__init__.py:49:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Any | None` +homeassistant/components/daikin/__init__.py:51:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Any | None` +homeassistant/components/daikin/__init__.py:87:16: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None | ApplianceValues` +homeassistant/components/daikin/config_flow.py:88:43: error[invalid-await] `DaikinFactory` is not awaitable +homeassistant/components/daikin/config_flow.py:91:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `(str & ~AlwaysFalsy) | None` +homeassistant/components/daikin/config_flow.py:93:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `(str & ~AlwaysFalsy) | None` +homeassistant/components/daikin/coordinator.py:30:18: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None | ApplianceValues` +homeassistant/components/daikin/entity.py:22:19: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None | ApplianceValues` +homeassistant/components/daikin/entity.py:23:18: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None | ApplianceValues` +homeassistant/components/daikin/entity.py:24:24: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None | ApplianceValues` +homeassistant/components/danfoss_air/__init__.py:6:6: error[unresolved-import] Cannot resolve imported module `pydanfossair.commands` +homeassistant/components/danfoss_air/__init__.py:7:6: error[unresolved-import] Cannot resolve imported module `pydanfossair.danfossclient` +homeassistant/components/danfoss_air/binary_sensor.py:5:6: error[unresolved-import] Cannot resolve imported module `pydanfossair.commands` +homeassistant/components/danfoss_air/sensor.py:7:6: error[unresolved-import] Cannot resolve imported module `pydanfossair.commands` +homeassistant/components/danfoss_air/switch.py:8:6: error[unresolved-import] Cannot resolve imported module `pydanfossair.commands` +homeassistant/components/datadog/__init__.py:124:31: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]` +homeassistant/components/ddwrt/device_tracker.py:153:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/deconz/button.py:104:13: error[unresolved-attribute] Object of type `ButtonEntityDescription` has no attribute `button_fn` +homeassistant/components/deconz/entity.py:141:39: warning[possibly-missing-attribute] Attribute `reachable` may be missing on object of type `_DeviceT@DeconzDevice & ~Scene` +homeassistant/components/deconz/light.py:255:12: error[unsupported-operator] Operator `not in` is not supported for types `Unknown` and `None`, in comparing `Unknown | ColorMode` with `set[ColorMode] | set[str] | None` +homeassistant/components/deconz/light.py:303:16: error[unsupported-operator] Operator `in` is not supported for types `Literal[ColorMode.XY]` and `None`, in comparing `Literal[ColorMode.XY]` with `set[ColorMode] | set[str] | None` +homeassistant/components/decora_wifi/light.py:8:6: error[unresolved-import] Cannot resolve imported module `decora_wifi` +homeassistant/components/decora_wifi/light.py:9:6: error[unresolved-import] Cannot resolve imported module `decora_wifi.models.person` +homeassistant/components/decora_wifi/light.py:10:6: error[unresolved-import] Cannot resolve imported module `decora_wifi.models.residence` +homeassistant/components/decora_wifi/light.py:11:6: error[unresolved-import] Cannot resolve imported module `decora_wifi.models.residential_account` +homeassistant/components/delijn/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `pydelijn.api` +homeassistant/components/delijn/sensor.py:9:6: error[unresolved-import] Cannot resolve imported module `pydelijn.common` +homeassistant/components/deluge/entity.py:29:24: error[invalid-argument-type] Invalid argument to key "sw_version" with declared type `str | None` on TypedDict `DeviceInfo`: value of type `Unknown | None | Literal[2, 1]` +homeassistant/components/denonavr/config_flow.py:212:31: warning[possibly-missing-attribute] Attribute `replace` may be missing on object of type `str | None` +homeassistant/components/denonavr/config_flow.py:229:13: error[invalid-argument-type] Argument to bound method `async_create_entry` is incorrect: Expected `str`, found `str | None` +homeassistant/components/denonavr/media_player.py:122:53: error[unresolved-attribute] Object of type `DenonAVRFoundation` has no attribute `zone` +homeassistant/components/denonavr/media_player.py:124:52: error[unresolved-attribute] Object of type `DenonAVRFoundation` has no attribute `zone` +homeassistant/components/denonavr/media_player.py:127:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `DenonAVR`, found `DenonAVRFoundation` +homeassistant/components/denonavr/media_player.py:222:17: error[unresolved-attribute] Object of type `(...) -> Awaitable[_R@async_log_errors]` has no attribute `__name__` +homeassistant/components/denonavr/media_player.py:228:71: error[unresolved-attribute] Object of type `(...) -> Awaitable[_R@async_log_errors]` has no attribute `__name__` +homeassistant/components/denonavr/media_player.py:272:9: error[unsupported-operator] Operator `|=` is unsupported between objects of type `Literal[MediaPlayerEntityFeature.VOLUME_STEP]` and `Literal[False, MediaPlayerEntityFeature.SELECT_SOUND_MODE] | None` +homeassistant/components/denonavr/receiver.py:87:20: error[missing-argument] No argument provided for required parameter `_host` +homeassistant/components/denonavr/receiver.py:88:13: error[unknown-argument] Argument `host` does not match any known parameter +homeassistant/components/denonavr/receiver.py:89:13: error[unknown-argument] Argument `show_all_inputs` does not match any known parameter +homeassistant/components/denonavr/receiver.py:90:13: error[unknown-argument] Argument `timeout` does not match any known parameter +homeassistant/components/denonavr/receiver.py:91:13: error[unknown-argument] Argument `add_zones` does not match any known parameter +homeassistant/components/denonavr/receiver.py:100:27: error[unresolved-attribute] Object of type `DenonAVRFoundation` has no attribute `async_update` +homeassistant/components/denonavr/receiver.py:102:27: error[unresolved-attribute] Object of type `DenonAVRFoundation` has no attribute `async_update_audyssey` +homeassistant/components/devialet/config_flow.py:51:13: error[invalid-argument-type] Argument to bound method `async_create_entry` is incorrect: Expected `str`, found `str | None` +homeassistant/components/devialet/diagnostics.py:16:12: error[invalid-return-type] Return type does not match returned value: expected `dict[str, Any]`, found `Unknown | None` +homeassistant/components/devialet/media_player.py:112:16: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `Unknown | bool | None` +homeassistant/components/device_tracker/config_entry.py:166:27: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventDeviceRegistryUpdatedData]` +homeassistant/components/device_tracker/config_entry.py:166:61: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def handle_device_event(ev: Event[EventDeviceRegistryUpdatedData]) -> None` +homeassistant/components/device_tracker/const.py:52:31: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/components/device_tracker/legacy.py:409:12: error[missing-argument] No argument provided for required parameter `config` +homeassistant/components/device_tracker/legacy.py:409:34: error[invalid-argument-type] Argument is incorrect: Expected `tuple[str, ...]`, found `str` +homeassistant/components/device_tracker/legacy.py:409:42: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `ModuleType` +homeassistant/components/device_tracker/legacy.py:409:52: error[invalid-argument-type] Argument is incorrect: Expected `ModuleType`, found `dict[Unknown, Unknown]` +homeassistant/components/devolo_home_control/sensor.py:192:17: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, ConsumptionProperty].__getitem__(key: str, /) -> ConsumptionProperty` cannot be called with key of type `str | None | Unknown` on object of type `dict[str, ConsumptionProperty]` +homeassistant/components/devolo_home_control/switch.py:54:40: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, BinarySwitchProperty].__getitem__(key: str, /) -> BinarySwitchProperty` cannot be called with key of type `str | None | Unknown` on object of type `dict[str, BinarySwitchProperty]` +homeassistant/components/devolo_home_network/binary_sensor.py:90:16: error[unresolved-attribute] Object of type `BinarySensorEntityDescription` has no attribute `value_func` +homeassistant/components/devolo_home_network/image.py:91:16: error[unresolved-attribute] Object of type `EntityDescription` has no attribute `image_func` +homeassistant/components/digital_ocean/__init__.py:6:8: error[unresolved-import] Cannot resolve imported module `digitalocean` +homeassistant/components/digital_ocean/binary_sensor.py:79:16: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/binary_sensor.py:84:16: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/binary_sensor.py:95:30: warning[possibly-missing-attribute] Attribute `created_at` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/binary_sensor.py:96:30: warning[possibly-missing-attribute] Attribute `id` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/binary_sensor.py:97:32: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/binary_sensor.py:98:28: warning[possibly-missing-attribute] Attribute `features` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/binary_sensor.py:99:32: warning[possibly-missing-attribute] Attribute `ip_address` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/binary_sensor.py:100:32: warning[possibly-missing-attribute] Attribute `ip_v6_address` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/binary_sensor.py:101:26: warning[possibly-missing-attribute] Attribute `memory` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/binary_sensor.py:102:26: warning[possibly-missing-attribute] Attribute `region` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/binary_sensor.py:103:25: warning[possibly-missing-attribute] Attribute `vcpus` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/switch.py:80:16: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/switch.py:85:16: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/switch.py:91:30: warning[possibly-missing-attribute] Attribute `created_at` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/switch.py:92:30: warning[possibly-missing-attribute] Attribute `id` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/switch.py:93:32: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/switch.py:94:28: warning[possibly-missing-attribute] Attribute `features` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/switch.py:95:32: warning[possibly-missing-attribute] Attribute `ip_address` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/switch.py:96:32: warning[possibly-missing-attribute] Attribute `ip_v6_address` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/switch.py:97:26: warning[possibly-missing-attribute] Attribute `memory` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/switch.py:98:26: warning[possibly-missing-attribute] Attribute `region` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/switch.py:99:25: warning[possibly-missing-attribute] Attribute `vcpus` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/switch.py:104:12: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/switch.py:105:13: warning[possibly-missing-attribute] Attribute `power_on` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/switch.py:109:12: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Unknown | None` +homeassistant/components/digital_ocean/switch.py:110:13: warning[possibly-missing-attribute] Attribute `power_off` may be missing on object of type `Unknown | None` +homeassistant/components/directv/entity.py:22:58: warning[possibly-missing-attribute] Attribute `info` may be missing on object of type `Device | None` +homeassistant/components/directv/entity.py:27:26: warning[possibly-missing-attribute] Attribute `info` may be missing on object of type `Device | None` +homeassistant/components/directv/entity.py:29:24: warning[possibly-missing-attribute] Attribute `info` may be missing on object of type `Device | None` +homeassistant/components/directv/entity.py:30:33: warning[possibly-missing-attribute] Attribute `info` may be missing on object of type `Device | None` +homeassistant/components/directv/media_player.py:70:29: warning[possibly-missing-attribute] Attribute `locations` may be missing on object of type `Device | None` +homeassistant/components/directv/media_player.py:161:20: error[invalid-return-type] Return type does not match returned value: expected `MediaType | None`, found `Unknown | str` +homeassistant/components/directv/remote.py:39:29: warning[possibly-missing-attribute] Attribute `locations` may be missing on object of type `Device | None` +homeassistant/components/discogs/sensor.py:9:8: error[unresolved-import] Cannot resolve imported module `discogs_client` +homeassistant/components/dlink/data.py:44:16: error[unresolved-attribute] Module `urllib` has no member `error` +homeassistant/components/dlna_dmr/media_player.py:79:70: error[unresolved-attribute] Object of type `(...) -> Awaitable[_R@catch_request_errors]` has no attribute `__name__` +homeassistant/components/dlna_dmr/media_player.py:86:55: error[unresolved-attribute] Object of type `(...) -> Awaitable[_R@catch_request_errors]` has no attribute `__name__` +homeassistant/components/dlna_dms/dms.py:137:73: error[unresolved-attribute] Object of type `(_DlnaDmsDeviceMethod@catch_request_errors, str, /) -> Coroutine[Any, Any, _R@catch_request_errors]` has no attribute `__name__` +homeassistant/components/dominos/__init__.py:6:6: error[unresolved-import] Cannot resolve imported module `pizzapi` +homeassistant/components/doods/image_processing.py:12:6: error[unresolved-import] Cannot resolve imported module `pydoods` +homeassistant/components/doods/image_processing.py:246:23: error[invalid-argument-type] Argument to function `draw_box` is incorrect: Expected `tuple[int | float, int | float, int | float, int | float]`, found `Unknown | list[Unknown | int] | list[Unknown]` +homeassistant/components/dovado/__init__.py:47:9: error[unresolved-reference] Name `dovado` used when not defined +homeassistant/components/downloader/services.py:127:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/drop_connect/__init__.py:42:24: error[invalid-argument-type] Argument to bound method `parse_drop_message` is incorrect: Expected `str | bytes`, found `str | bytes | bytearray` +homeassistant/components/drop_connect/config_flow.py:51:39: error[invalid-argument-type] Argument to bound method `parse_discovery` is incorrect: Expected `str | bytes`, found `(str & ~AlwaysFalsy) | (bytes & ~AlwaysFalsy) | (bytearray & ~AlwaysFalsy)` +homeassistant/components/dunehd/media_player.py:109:23: warning[possibly-missing-attribute] Attribute `volume_up` may be missing on object of type `Unknown | DuneHDPlayer` +homeassistant/components/dunehd/media_player.py:113:23: warning[possibly-missing-attribute] Attribute `volume_down` may be missing on object of type `Unknown | DuneHDPlayer` +homeassistant/components/duotecno/entity.py:62:34: error[unresolved-attribute] Object of type `(...) -> Awaitable[None]` has no attribute `__name__` +homeassistant/components/dwd_weather_warnings/coordinator.py:70:21: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/dwd_weather_warnings/coordinator.py:71:21: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/dwd_weather_warnings/sensor.py:120:40: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | None | list[Unknown]` +homeassistant/components/dwd_weather_warnings/sensor.py:122:37: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | None | list[Unknown]` +homeassistant/components/dynalite/bridge.py:60:53: error[unresolved-attribute] Object of type `DynaliteBaseDevice & ~AlwaysFalsy` has no attribute `unique_id` +homeassistant/components/dynalite/bridge.py:110:49: error[unresolved-attribute] Object of type `DynaliteBaseDevice` has no attribute `category` +homeassistant/components/dynalite/bridge.py:117:55: error[invalid-argument-type] Argument to bound method `extend` is incorrect: Expected `Iterable[str]`, found `list[DynaliteBaseDevice | Unknown]` +homeassistant/components/eafm/sensor.py:101:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, str, Unknown]]` +homeassistant/components/ebox/sensor.py:11:6: error[unresolved-import] Cannot resolve imported module `pyebox` +homeassistant/components/ebox/sensor.py:12:6: error[unresolved-import] Cannot resolve imported module `pyebox.client` +homeassistant/components/ebusd/__init__.py:5:8: error[unresolved-import] Cannot resolve imported module `ebusdpy` +homeassistant/components/ecoal_boiler/__init__.py:5:6: error[unresolved-import] Cannot resolve imported module `ecoaliface.simple` +homeassistant/components/ecobee/__init__.py:75:35: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["API_KEY"]` on object of type `str` +homeassistant/components/ecobee/__init__.py:75:35: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/ecobee/__init__.py:76:41: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["REFRESH_TOKEN"]` on object of type `str` +homeassistant/components/ecobee/__init__.py:76:41: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/ecobee/binary_sensor.py:25:28: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | None` +homeassistant/components/ecobee/binary_sensor.py:27:25: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["capability"]` on object of type `str` +homeassistant/components/ecobee/binary_sensor.py:31:53: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["name"]` on object of type `str` +homeassistant/components/ecobee/climate.py:214:28: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | None` +homeassistant/components/ecobee/climate.py:216:12: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["modelNumber"]` on object of type `str` +homeassistant/components/ecobee/climate.py:225:17: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["name"]` on object of type `str` +homeassistant/components/ecobee/climate.py:226:17: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["modelNumber"]` on object of type `str` +homeassistant/components/ecobee/climate.py:228:49: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[Unknown, Unknown]`, found `Unknown | str` +homeassistant/components/ecobee/climate.py:406:16: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["runtime"]` on object of type `str` +homeassistant/components/ecobee/climate.py:425:45: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["modelNumber"]` on object of type `str` +homeassistant/components/ecobee/climate.py:431:35: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["identifier"]` on object of type `str` +homeassistant/components/ecobee/climate.py:434:18: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["name"]` on object of type `str` +homeassistant/components/ecobee/climate.py:440:16: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["runtime"]` on object of type `str` +homeassistant/components/ecobee/climate.py:446:20: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["runtime"]` on object of type `str` +homeassistant/components/ecobee/climate.py:453:20: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["runtime"]` on object of type `str` +homeassistant/components/ecobee/climate.py:464:16: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["settings"]` on object of type `str` +homeassistant/components/ecobee/climate.py:478:20: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["runtime"]` on object of type `str` +homeassistant/components/ecobee/climate.py:487:20: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["runtime"]` on object of type `str` +homeassistant/components/ecobee/climate.py:489:20: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["runtime"]` on object of type `str` +homeassistant/components/ecobee/climate.py:495:21: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["equipmentStatus"]` on object of type `str` +homeassistant/components/ecobee/climate.py:502:16: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["runtime"]` on object of type `str` +homeassistant/components/ecobee/climate.py:507:18: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["events"]` on object of type `str` +homeassistant/components/ecobee/climate.py:531:13: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["program"]` on object of type `str` +homeassistant/components/ecobee/climate.py:546:24: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["runtime"]` on object of type `str` +homeassistant/components/ecobee/climate.py:560:12: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["equipmentStatus"]` on object of type `str` +homeassistant/components/ecobee/climate.py:565:27: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["equipmentStatus"]` on object of type `str` +homeassistant/components/ecobee/climate.py:585:18: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["equipmentStatus"]` on object of type `str` +homeassistant/components/ecobee/climate.py:589:17: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["program"]` on object of type `str` +homeassistant/components/ecobee/climate.py:600:24: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | dict[Unknown, Unknown] | str` +homeassistant/components/ecobee/climate.py:616:24: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | dict[Unknown, Unknown] | str` +homeassistant/components/ecobee/climate.py:711:28: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["program"]` on object of type `str` +homeassistant/components/ecobee/climate.py:719:34: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["runtime"]` on object of type `str` +homeassistant/components/ecobee/climate.py:724:34: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["runtime"]` on object of type `str` +homeassistant/components/ecobee/climate.py:801:62: error[invalid-argument-type] Argument to bound method `set_humidity` is incorrect: Expected `str`, found `int` +homeassistant/components/ecobee/climate.py:821:36: error[invalid-argument-type] Argument to bound method `resume_program` is incorrect: Expected `bool`, found `Literal["false", "true"]` +homeassistant/components/ecobee/climate.py:850:29: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | dict[Unknown, Unknown] | str` +homeassistant/components/ecobee/climate.py:908:36: error[invalid-argument-type] Argument to bound method `update_climate_sensors` is incorrect: Expected `str`, found `str | None` +homeassistant/components/ecobee/climate.py:914:20: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["program"]` on object of type `str` +homeassistant/components/ecobee/climate.py:926:13: error[invalid-argument-type] Argument to function `sorted` is incorrect: Argument type `str | None | Unknown` does not satisfy upper bound `SupportsDunderLT[Any] | SupportsDunderGT[Any]` of type variable `SupportsRichComparisonT` +homeassistant/components/ecobee/climate.py:926:13: error[invalid-argument-type] Argument to function `sorted` is incorrect: Expected `Iterable[str]`, found `list[str | None | Unknown]` +homeassistant/components/ecobee/climate.py:1040:36: error[invalid-argument-type] Argument to bound method `set_occupancy_modes` is incorrect: Expected `bool`, found `Unknown | None` +homeassistant/components/ecobee/climate.py:1040:47: error[invalid-argument-type] Argument to bound method `set_occupancy_modes` is incorrect: Expected `bool`, found `Unknown | None` +homeassistant/components/ecobee/config_flow.py:64:13: error[invalid-argument-type] Argument to bound method `async_show_form` is incorrect: Expected `Mapping[str, str] | None`, found `dict[Unknown | str, Unknown | None | str]` +homeassistant/components/ecobee/entity.py:36:16: error[invalid-return-type] Return type does not match returned value: expected `dict[str, Any]`, found `Unknown | str` +homeassistant/components/ecobee/humidifier.py:38:28: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | None` +homeassistant/components/ecobee/humidifier.py:40:12: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["settings"]` on object of type `str` +homeassistant/components/ecobee/notify.py:21:64: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | None` +homeassistant/components/ecobee/number.py:65:44: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | None` +homeassistant/components/ecobee/number.py:74:48: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | None` +homeassistant/components/ecobee/number.py:168:75: error[invalid-argument-type] Argument to bound method `set_aux_cutover_threshold` is incorrect: Expected `int`, found `int | float` +homeassistant/components/ecobee/sensor.py:82:28: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["name"]` on object of type `str` +homeassistant/components/ecobee/sensor.py:83:32: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | None` +homeassistant/components/ecobee/sensor.py:85:21: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["capability"]` on object of type `str` +homeassistant/components/ecobee/sensor.py:174:26: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsFloat | SupportsIndex`, found `None | Unknown` +homeassistant/components/ecobee/switch.py:40:44: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | None` +homeassistant/components/ecobee/switch.py:47:48: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | None` +homeassistant/components/ecobee/switch.py:133:36: error[invalid-argument-type] Argument to bound method `set_hvac_mode` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/ecobee/weather.py:48:28: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | None` +homeassistant/components/ecobee/weather.py:51:44: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["name"]` on object of type `str` +homeassistant/components/ecobee/weather.py:78:24: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/ecobee/weather.py:170:12: error[unsupported-operator] Operator `not in` is not supported for types `str` and `None`, in comparing `Literal["forecasts"]` with `Unknown | None` +homeassistant/components/ecobee/weather.py:176:42: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/econet/climate.py:68:30: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Thermostat`, found `Equipment` +homeassistant/components/econet/sensor.py:125:16: warning[possibly-missing-attribute] Attribute `energy_type` may be missing on object of type `Unknown | Equipment` +homeassistant/components/econet/switch.py:29:33: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Thermostat`, found `Equipment` +homeassistant/components/econet/water_heater.py:57:31: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `WaterHeater`, found `Equipment` +homeassistant/components/ecovacs/number.py:111:30: error[too-many-positional-arguments] Too many positional arguments to class `CapabilitySet`: expected 1, got 2 +homeassistant/components/ecovacs/number.py:111:52: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[int]`? +homeassistant/components/ecovacs/number.py:121:21: error[too-many-positional-arguments] Too many positional arguments to class `CapabilitySet`: expected 1, got 2 +homeassistant/components/ecovacs/number.py:121:43: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[int]`? +homeassistant/components/ecovacs/select.py:87:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `CapabilityMap`, found `CapabilityMap | None` +homeassistant/components/ecovacs/select.py:97:30: error[too-many-positional-arguments] Too many positional arguments to class `CapabilitySetTypes`: expected 2, got 3 +homeassistant/components/ecovacs/select.py:97:57: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[str]`? +homeassistant/components/ecovacs/select.py:108:21: error[too-many-positional-arguments] Too many positional arguments to class `CapabilitySetTypes`: expected 2, got 3 +homeassistant/components/ecovacs/select.py:108:48: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[str]`? +homeassistant/components/ecowitt/binary_sensor.py:51:13: error[invalid-argument-type] Argument to function `replace` is incorrect: Argument type `Unknown | BinarySensorEntityDescription` does not satisfy upper bound `DataclassInstance` of type variable `_DataclassT` +homeassistant/components/ecowitt/sensor.py:283:13: error[invalid-argument-type] Argument to function `replace` is incorrect: Argument type `Unknown | SensorEntityDescription` does not satisfy upper bound `DataclassInstance` of type variable `_DataclassT` +homeassistant/components/edimax/switch.py:7:6: error[unresolved-import] Cannot resolve imported module `pyedimax.smartplug` +homeassistant/components/efergy/sensor.py:129:17: error[invalid-argument-type] Argument to function `replace` is incorrect: Argument type `SensorEntityDescription` does not satisfy upper bound `DataclassInstance` of type variable `_DataclassT` +homeassistant/components/egardia/__init__.py:5:6: error[unresolved-import] Cannot resolve imported module `pythonegardia` +homeassistant/components/egardia/__init__.py:98:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/egardia/alarm_control_panel.py:104:44: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `Unknown | None` +homeassistant/components/egardia/alarm_control_panel.py:132:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/egardia/alarm_control_panel.py:142:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/egardia/alarm_control_panel.py:152:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/ekeybionyx/config_flow.py:110:47: error[invalid-assignment] Object of type `list[dict[Unknown | str, Unknown | str] | Unknown]` is not assignable to `list[SelectOptionDict]` +homeassistant/components/eliqonline/sensor.py:8:8: error[unresolved-import] Cannot resolve imported module `eliqonline` +homeassistant/components/elmax/__init__.py:50:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `SSLContext`, found `None | SSLContext` +homeassistant/components/elmax/config_flow.py:167:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `SSLContext`, found `None | Unknown` +homeassistant/components/elmax/config_flow.py:330:30: error[invalid-argument-type] Argument to function `_store_panel_by_name` is incorrect: Expected `str`, found `str | None` +homeassistant/components/elmax/config_flow.py:342:9: error[invalid-assignment] Object of type `str | None` is not assignable to attribute `_cloud_username` of type `str` +homeassistant/components/elmax/coordinator.py:70:20: error[invalid-return-type] Return type does not match returned value: expected `Actuator`, found `DeviceEndpoint` +homeassistant/components/elmax/coordinator.py:76:20: error[invalid-return-type] Return type does not match returned value: expected `Actuator`, found `DeviceEndpoint` +homeassistant/components/elmax/coordinator.py:82:20: error[invalid-return-type] Return type does not match returned value: expected `Area`, found `DeviceEndpoint` +homeassistant/components/elmax/coordinator.py:88:20: error[invalid-return-type] Return type does not match returned value: expected `Cover`, found `DeviceEndpoint` +homeassistant/components/elv/switch.py:8:8: error[unresolved-import] Cannot resolve imported module `pypca` +homeassistant/components/emby/media_player.py:7:6: error[unresolved-import] Cannot resolve imported module `pyemby` +homeassistant/components/emoncms_history/__init__.py:67:70: error[invalid-argument-type] Argument to bound method `async_input_post` is incorrect: Expected `str | None`, found `str | int` +homeassistant/components/emonitor/sensor.py:48:36: error[unresolved-attribute] Object of type `list[Unknown]` has no attribute `items` +homeassistant/components/emonitor/sensor.py:56:33: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `DataUpdateCoordinator[dict[str, Any]]`, found `DataUpdateCoordinator[EmonitorStatus]` +homeassistant/components/emonitor/sensor.py:63:27: error[invalid-argument-type] Argument to class `CoordinatorEntity` is incorrect: Expected `DataUpdateCoordinator[Any]`, found `EmonitorStatus` +homeassistant/components/emulated_roku/binding.py:135:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/emulated_roku/binding.py:136:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | int | None` +homeassistant/components/emulated_roku/binding.py:137:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | bool | None` +homeassistant/components/energenie_power_sockets/__init__.py:21:44: error[invalid-assignment] Object of type `Device | None` is not assignable to `PowerStripUSB | None` +homeassistant/components/energy/data.py:367:29: error[invalid-assignment] Invalid assignment to key "energy_sources" with declared type `list[SourceType]` on TypedDict `EnergyPreferences`: value of type `list[SourceType] | list[DeviceConsumption]` +homeassistant/components/energy/data.py:367:29: error[invalid-assignment] Invalid assignment to key "device_consumption" with declared type `list[DeviceConsumption]` on TypedDict `EnergyPreferences`: value of type `list[SourceType] | list[DeviceConsumption]` +homeassistant/components/energy/validate.py:174:36: error[unresolved-attribute] Module `homeassistant.components.recorder` has no member `models` +homeassistant/components/energy/validate.py:234:36: error[unresolved-attribute] Module `homeassistant.components.recorder` has no member `models` +homeassistant/components/energy/validate.py:305:36: error[unresolved-attribute] Module `homeassistant.components.recorder` has no member `models` +homeassistant/components/energy/validate.py:338:36: error[unresolved-attribute] Module `homeassistant.components.recorder` has no member `models` +homeassistant/components/energy/validate.py:392:47: error[unresolved-attribute] Module `homeassistant.components.recorder` has no member `models` +homeassistant/components/energy/validate.py:521:47: error[unresolved-attribute] Module `homeassistant.components.recorder` has no member `models` +homeassistant/components/energy/validate.py:581:47: error[unresolved-attribute] Module `homeassistant.components.recorder` has no member `models` +homeassistant/components/energy/validate.py:641:47: error[unresolved-attribute] Module `homeassistant.components.recorder` has no member `models` +homeassistant/components/energy/validate.py:749:17: error[unresolved-attribute] Module `homeassistant.components.recorder` has no member `statistics` +homeassistant/components/energy/websocket_api.py:276:9: error[unresolved-attribute] Module `homeassistant.components.recorder` has no member `statistics` +homeassistant/components/energy/websocket_api.py:361:43: error[unresolved-attribute] Module `homeassistant.components.recorder` has no member `statistics` +homeassistant/components/energy/websocket_api.py:372:13: error[unresolved-attribute] Module `homeassistant.components.recorder` has no member `statistics` +homeassistant/components/enphase_envoy/entity.py:65:31: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, Any]` has no attribute `__name__` +homeassistant/components/entur_public_transport/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `enturclient` +homeassistant/components/entur_public_transport/sensor.py:87:16: error[invalid-return-type] Return type does not match returned value: expected `int`, found `None` +homeassistant/components/entur_public_transport/sensor.py:215:34: warning[possibly-missing-attribute] Attribute `latitude` may be missing on object of type `(Unknown & ~None) | dict[Unknown, Unknown]` +homeassistant/components/entur_public_transport/sensor.py:215:52: warning[possibly-missing-attribute] Attribute `longitude` may be missing on object of type `(Unknown & ~None) | dict[Unknown, Unknown]` +homeassistant/components/entur_public_transport/sensor.py:216:47: warning[possibly-missing-attribute] Attribute `latitude` may be missing on object of type `(Unknown & ~None) | dict[Unknown, Unknown]` +homeassistant/components/entur_public_transport/sensor.py:217:48: warning[possibly-missing-attribute] Attribute `longitude` may be missing on object of type `(Unknown & ~None) | dict[Unknown, Unknown]` +homeassistant/components/entur_public_transport/sensor.py:219:26: warning[possibly-missing-attribute] Attribute `estimated_calls` may be missing on object of type `(Unknown & ~None) | dict[Unknown, Unknown]` +homeassistant/components/environment_canada/coordinator.py:67:19: error[invalid-argument-type] Argument to bound method `update` is incorrect: Expected `ECAirQuality`, found `DataT@ECDataUpdateCoordinator` +homeassistant/components/environment_canada/coordinator.py:67:19: error[invalid-argument-type] Argument to bound method `update` is incorrect: Expected `ECRadar`, found `DataT@ECDataUpdateCoordinator` +homeassistant/components/environment_canada/coordinator.py:67:19: error[invalid-argument-type] Argument to bound method `update` is incorrect: Expected `ECWeather`, found `DataT@ECDataUpdateCoordinator` +homeassistant/components/environment_canada/sensor.py:292:34: warning[possibly-missing-attribute] Attribute `attribution` may be missing on object of type `Unknown | MetaData | dict[Unknown | str, Unknown | str] | MetaData` +homeassistant/components/environment_canada/sensor.py:316:28: warning[possibly-missing-attribute] Attribute `location` may be missing on object of type `Unknown | MetaData | dict[Unknown | str, Unknown | str] | MetaData` +homeassistant/components/environment_canada/sensor.py:317:27: warning[possibly-missing-attribute] Attribute `station` may be missing on object of type `Unknown | MetaData | dict[Unknown | str, Unknown | str] | MetaData` +homeassistant/components/environment_canada/weather.py:250:13: error[invalid-argument-type] Argument to bound method `extend` is incorrect: Expected `Iterable[Forecast]`, found `GeneratorType[dict[Unknown | str, Unknown | int], None, None]` +homeassistant/components/envisalink/__init__.py:6:6: error[unresolved-import] Cannot resolve imported module `pyenvisalink` +homeassistant/components/ephember/climate.py:10:6: error[unresolved-import] Cannot resolve imported module `pyephember2.pyephember2` +homeassistant/components/ephember/climate.py:196:16: error[no-matching-overload] No overload of function `getattr` matches arguments +homeassistant/components/esphome/encryption_key_storage.py:49:13: error[invalid-assignment] Object of type `(Unknown & ~AlwaysFalsy) | (EncryptionKeyData & ~AlwaysFalsy) | dict[Unknown | str, Unknown | dict[Unknown, Unknown]]` is not assignable to attribute `_data` of type `EncryptionKeyData | None` +homeassistant/components/esphome/entity.py:181:28: error[invalid-argument-type] Argument to bound method `__call__` is incorrect: Expected `Iterable[Entity]`, found `list[typing.TypeVar] & ~AlwaysFalsy` +homeassistant/components/esphome/entry_data.py:195:16: error[invalid-return-type] Return type does not match returned value: expected `str`, found `(DeviceInfo & ~AlwaysTruthy & ~AlwaysFalsy) | str` +homeassistant/components/esphome/entry_data.py:201:16: error[invalid-return-type] Return type does not match returned value: expected `str`, found `(DeviceInfo & ~AlwaysTruthy & ~AlwaysFalsy) | str` +homeassistant/components/esphome/ffmpeg_proxy.py:66:11: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/esphome/ffmpeg_proxy.py:195:20: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/esphome/ffmpeg_proxy.py:196:20: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/esphome/ffmpeg_proxy.py:213:15: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/esphome/ffmpeg_proxy.py:258:15: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/esphome/light.py:337:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int, int, int]`, found `tuple[@Todo, Unknown]` +homeassistant/components/esphome/light.py:358:20: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int, int, int, int]`, found `tuple[@Todo, Unknown, Unknown]` +homeassistant/components/esphome/light.py:363:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int, int, int, int]`, found `tuple[@Todo, Unknown, Unknown]` +homeassistant/components/esphome/select.py:135:13: error[invalid-argument-type] Argument to function `replace` is incorrect: Argument type `Unknown | SelectEntityDescription` does not satisfy upper bound `DataclassInstance` of type variable `_DataclassT` +homeassistant/components/etherscan/sensor.py:7:6: error[unresolved-import] Cannot resolve imported module `pyetherscan` +homeassistant/components/eufy/__init__.py:3:8: error[unresolved-import] Cannot resolve imported module `lakeside` +homeassistant/components/eufy/light.py:7:8: error[unresolved-import] Cannot resolve imported module `lakeside` +homeassistant/components/eufy/light.py:95:20: error[unsupported-operator] Operator `*` is unsupported between objects of type `Unknown | None | Literal[100]` and `Literal[255]` +homeassistant/components/eufy/light.py:102:16: error[unsupported-operator] Operator `*` is unsupported between objects of type `Unknown | None` and `Literal[3800]` +homeassistant/components/eufy/light.py:149:17: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/eufy/light.py:149:30: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/eufy/switch.py:7:8: error[unresolved-import] Cannot resolve imported module `lakeside` +homeassistant/components/evohome/storage.py:116:13: error[unsupported-operator] Operator `|=` is unsupported between objects of type `dict[str, object]` and `SessionIdEntryT` +homeassistant/components/ezviz/alarm_control_panel.py:104:17: error[invalid-argument-type] Argument to bound method `api_set_defence_mode` is incorrect: Expected `DefenseModeType`, found `Literal[1]` +homeassistant/components/ezviz/alarm_control_panel.py:115:17: error[invalid-argument-type] Argument to bound method `api_set_defence_mode` is incorrect: Expected `DefenseModeType`, found `Literal[2]` +homeassistant/components/ezviz/alarm_control_panel.py:126:17: error[invalid-argument-type] Argument to bound method `api_set_defence_mode` is incorrect: Expected `DefenseModeType`, found `Literal[3]` +homeassistant/components/familyhub/camera.py:5:6: error[unresolved-import] Cannot resolve imported module `pyfamilyhublocal` +homeassistant/components/feedreader/coordinator.py:161:13: error[unresolved-attribute] Unresolved attribute `entries` on type `FeedParserDict`. +homeassistant/components/ffmpeg/camera.py:96:17: error[invalid-argument-type] Argument to function `async_aiohttp_proxy_stream` is incorrect: Expected `StreamReader`, found `StreamReader` +homeassistant/components/ffmpeg/const.py:7:23: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/components/ffmpeg/const.py:8:22: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/components/ffmpeg/const.py:9:25: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/components/fibaro/__init__.py:188:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, int]]` +homeassistant/components/fibaro/__init__.py:238:17: error[invalid-assignment] Object of type `Self@_read_devices` is not assignable to attribute `fibaro_controller` on type `Unknown | DeviceModel` +homeassistant/components/fibaro/__init__.py:242:17: error[invalid-assignment] Object of type `str & ~AlwaysFalsy` is not assignable to attribute `room_name` on type `Unknown | DeviceModel` +homeassistant/components/fibaro/__init__.py:243:17: error[invalid-assignment] Object of type `str` is not assignable to attribute `friendly_name` on type `Unknown | DeviceModel` +homeassistant/components/fibaro/__init__.py:244:17: error[invalid-assignment] Object of type `str` is not assignable to attribute `ha_id` on type `Unknown | DeviceModel` +homeassistant/components/fibaro/__init__.py:251:17: error[invalid-assignment] Object of type `str` is not assignable to attribute `unique_id_str` on type `Unknown | DeviceModel` +homeassistant/components/fibaro/__init__.py:255:21: warning[possibly-missing-attribute] Attribute `ha_id` may be missing on object of type `Unknown | DeviceModel` +homeassistant/components/fibaro/__init__.py:269:25: warning[possibly-missing-attribute] Attribute `ha_id` may be missing on object of type `Unknown | DeviceModel` +homeassistant/components/fibaro/__init__.py:273:72: warning[possibly-missing-attribute] Attribute `ha_id` may be missing on object of type `Unknown | DeviceModel` +homeassistant/components/fibaro/climate.py:139:42: error[unresolved-attribute] Object of type `DeviceModel` has no attribute `ha_id` +homeassistant/components/fibaro/climate.py:263:20: error[invalid-return-type] Return type does not match returned value: expected `str | int`, found `str | None` +homeassistant/components/fibaro/climate.py:305:35: warning[possibly-missing-attribute] Attribute `lower` may be missing on object of type `str | None` +homeassistant/components/fibaro/entity.py:27:45: error[unresolved-attribute] Object of type `DeviceModel` has no attribute `fibaro_controller` +homeassistant/components/fibaro/entity.py:28:22: error[unresolved-attribute] Object of type `DeviceModel` has no attribute `ha_id` +homeassistant/components/fibaro/entity.py:29:27: error[unresolved-attribute] Object of type `DeviceModel` has no attribute `friendly_name` +homeassistant/components/fibaro/entity.py:30:32: error[unresolved-attribute] Object of type `DeviceModel` has no attribute `unique_id_str` +homeassistant/components/fibaro/entity.py:97:48: error[invalid-argument-type] Argument to bound method `execute_action` is incorrect: Expected `list[Any] | None`, found `tuple[Any, ...]` +homeassistant/components/fibaro/event.py:53:30: error[unresolved-attribute] Object of type `DeviceModel` has no attribute `friendly_name` +homeassistant/components/fibaro/event.py:56:35: error[unresolved-attribute] Object of type `DeviceModel` has no attribute `unique_id_str` +homeassistant/components/fibaro/light.py:72:16: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["RGB"]` with `str | None` +homeassistant/components/fibaro/light.py:73:16: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["rgb"]` with `str | None` +homeassistant/components/fibaro/light.py:74:16: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["color"]` with `str | None` +homeassistant/components/fibaro/light.py:81:16: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["RGBW"]` with `str | None` +homeassistant/components/fibaro/light.py:82:16: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["rgbw"]` with `str | None` +homeassistant/components/fibaro/sensor.py:111:52: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `str | None` +homeassistant/components/fibaro/sensor.py:157:57: error[no-matching-overload] No overload of bound method `get` matches arguments +homeassistant/components/fibaro/sensor.py:183:30: error[unresolved-attribute] Object of type `DeviceModel` has no attribute `friendly_name` +homeassistant/components/fibaro/sensor.py:184:35: error[unresolved-attribute] Object of type `DeviceModel` has no attribute `unique_id_str` +homeassistant/components/fing/device_tracker.py:77:46: error[invalid-argument-type] Argument to function `get_icon_from_type` is incorrect: Expected `str`, found `str | None` +homeassistant/components/fing/device_tracker.py:109:54: error[invalid-argument-type] Argument to function `get_icon_from_type` is incorrect: Expected `str`, found `str | None` +homeassistant/components/fing/device_tracker.py:121:50: error[invalid-argument-type] Argument to function `get_icon_from_type` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/fireservicerota/config_flow.py:93:53: error[invalid-argument-type] Argument to bound method `async_update_entry` is incorrect: Expected `ConfigEntry[Any]`, found `ConfigEntry[Any] | None` +homeassistant/components/fireservicerota/config_flow.py:94:53: warning[possibly-missing-attribute] Attribute `entry_id` may be missing on object of type `ConfigEntry[Any] | None` +homeassistant/components/firmata/board.py:113:9: error[invalid-assignment] Object of type `None` is not assignable to attribute `api` of type `PymataExpress` +homeassistant/components/firmata/board.py:131:13: error[unsupported-operator] Operator `+=` is unsupported between objects of type `int` and `Unknown | None | int` +homeassistant/components/fivem/config_flow.py:35:17: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/fixer/sensor.py:9:6: error[unresolved-import] Cannot resolve imported module `fixerio` +homeassistant/components/fixer/sensor.py:10:6: error[unresolved-import] Cannot resolve imported module `fixerio.exceptions` +homeassistant/components/fleetgo/device_tracker.py:8:6: error[unresolved-import] Cannot resolve imported module `ritassist` +homeassistant/components/fleetgo/device_tracker.py:100:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/flo/__init__.py:31:23: warning[possibly-missing-attribute] Attribute `get_info` may be missing on object of type `User | None` +homeassistant/components/flux/switch.py:261:13: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/flux/switch.py:286:25: error[unsupported-operator] Operator `<` is not supported for types `datetime` and `None`, in comparing `datetime` with `datetime | None` +homeassistant/components/flux/switch.py:290:30: warning[possibly-missing-attribute] Attribute `timestamp` may be missing on object of type `datetime | None` +homeassistant/components/flux/switch.py:303:64: warning[possibly-missing-attribute] Attribute `day` may be missing on object of type `datetime | None` +homeassistant/components/flux/switch.py:305:35: error[unsupported-operator] Operator `-` is unsupported between objects of type `datetime | None` and `timedelta` +homeassistant/components/flux/switch.py:309:60: warning[possibly-missing-attribute] Attribute `timestamp` may be missing on object of type `Unknown | datetime | None` +homeassistant/components/flux/switch.py:310:61: warning[possibly-missing-attribute] Attribute `timestamp` may be missing on object of type `Unknown | datetime | None` +homeassistant/components/flux/switch.py:322:58: error[invalid-argument-type] Argument to function `color_RGB_to_xy_brightness` is incorrect: Expected `int`, found `int | float` +homeassistant/components/flux/switch.py:322:58: error[invalid-argument-type] Argument to function `color_RGB_to_xy_brightness` is incorrect: Expected `int`, found `int | float` +homeassistant/components/flux/switch.py:322:58: error[invalid-argument-type] Argument to function `color_RGB_to_xy_brightness` is incorrect: Expected `int`, found `int | float` +homeassistant/components/flux_led/util.py:98:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int, int, int]`, found `tuple[@Todo, int]` +homeassistant/components/flux_led/util.py:99:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int, int, int]`, found `tuple[@Todo, int]` +homeassistant/components/flux_led/util.py:114:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int, int, int, int]`, found `tuple[@Todo, int, int]` +homeassistant/components/flux_led/util.py:115:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int, int, int, int]`, found `tuple[@Todo, int, int]` +homeassistant/components/foobot/sensor.py:120:9: error[unresolved-attribute] Object of type `object` has no attribute `ClientConnectorError` +homeassistant/components/foobot/sensor.py:177:13: error[unresolved-attribute] Object of type `object` has no attribute `ClientConnectorError` +homeassistant/components/forked_daapd/media_player.py:182:37: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/forked_daapd/media_player.py:187:12: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/forked_daapd/media_player.py:194:16: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/forked_daapd/media_player.py:199:16: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/forked_daapd/media_player.py:388:30: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["items"]` on object of type `list[Unknown]` +homeassistant/components/forked_daapd/media_player.py:388:30: error[not-iterable] Object of type `Unknown | str | int | list[Unknown]` may not be iterable +homeassistant/components/forked_daapd/media_player.py:389:20: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["id"]` on object of type `str` +homeassistant/components/forked_daapd/media_player.py:389:35: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["item_id"]` on object of type `list[Unknown]` +homeassistant/components/forked_daapd/media_player.py:413:25: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["id"]` on object of type `str` +homeassistant/components/forked_daapd/media_player.py:414:34: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["selected"]` on object of type `str` +homeassistant/components/forked_daapd/media_player.py:415:32: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["volume"]` on object of type `str` +homeassistant/components/forked_daapd/media_player.py:423:18: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["id"]` on object of type `str` +homeassistant/components/forked_daapd/media_player.py:430:16: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["selected"]` on object of type `str` +homeassistant/components/forked_daapd/media_player.py:452:12: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["state"]` on object of type `list[Unknown]` +homeassistant/components/forked_daapd/media_player.py:454:12: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["state"]` on object of type `list[Unknown]` +homeassistant/components/forked_daapd/media_player.py:456:20: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["selected"]` on object of type `str` +homeassistant/components/forked_daapd/media_player.py:458:12: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["state"]` on object of type `list[Unknown]` +homeassistant/components/forked_daapd/media_player.py:465:16: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["volume"]` on object of type `list[Unknown]` +homeassistant/components/forked_daapd/media_player.py:465:16: error[unsupported-operator] Operator `/` is unsupported between objects of type `Unknown | str | int | list[Unknown]` and `Literal[100]` +homeassistant/components/forked_daapd/media_player.py:470:16: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["volume"]` on object of type `list[Unknown]` +homeassistant/components/forked_daapd/media_player.py:475:16: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["item_id"]` on object of type `list[Unknown]` +homeassistant/components/forked_daapd/media_player.py:485:16: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["item_length_ms"]` on object of type `list[Unknown]` +homeassistant/components/forked_daapd/media_player.py:485:16: error[unsupported-operator] Operator `/` is unsupported between objects of type `Unknown | str | int | list[Unknown]` and `Literal[1000]` +homeassistant/components/forked_daapd/media_player.py:490:16: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["item_progress_ms"]` on object of type `list[Unknown]` +homeassistant/components/forked_daapd/media_player.py:490:16: error[unsupported-operator] Operator `/` is unsupported between objects of type `Unknown | str | int | list[Unknown]` and `Literal[1000]` +homeassistant/components/forked_daapd/media_player.py:533:16: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["shuffle"]` on object of type `list[Unknown]` +homeassistant/components/forked_daapd/media_player.py:630:25: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["id"]` on object of type `str` +homeassistant/components/forked_daapd/media_player.py:697:17: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["position"]` on object of type `str` +homeassistant/components/forked_daapd/media_player.py:698:29: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["items"]` on object of type `list[Unknown]` +homeassistant/components/forked_daapd/media_player.py:698:29: error[not-iterable] Object of type `Unknown | str | int | list[Unknown]` may not be iterable +homeassistant/components/forked_daapd/media_player.py:699:20: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["id"]` on object of type `str` +homeassistant/components/forked_daapd/media_player.py:699:34: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["item_id"]` on object of type `list[Unknown]` +homeassistant/components/forked_daapd/media_player.py:728:31: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["item_progress_ms"]` on object of type `list[Unknown]` +homeassistant/components/forked_daapd/media_player.py:729:38: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["count"]` on object of type `list[Unknown]` +homeassistant/components/forked_daapd/media_player.py:729:38: error[unsupported-operator] Operator `>` is not supported for types `str` and `int`, in comparing `Unknown | str | int | list[Unknown]` with `Literal[0]` +homeassistant/components/forked_daapd/media_player.py:734:34: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["item_id"]` on object of type `list[Unknown]` +homeassistant/components/forked_daapd/media_player.py:747:13: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["items"]` on object of type `list[Unknown]` +homeassistant/components/forked_daapd/media_player.py:747:13: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["length_ms"]` on object of type `str` +homeassistant/components/forked_daapd/media_player.py:747:13: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +homeassistant/components/forked_daapd/media_player.py:876:19: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/fortios/device_tracker.py:12:6: error[unresolved-import] Cannot resolve imported module `fortiosapi` +homeassistant/components/free_mobile/notify.py:8:6: error[unresolved-import] Cannot resolve imported module `freesms` +homeassistant/components/fritz/image.py:71:13: warning[possibly-missing-attribute] Attribute `get_wifi_qr_code` may be missing on object of type `Unknown | FritzGuestWLAN` +homeassistant/components/fritzbox/diagnostics.py:27:33: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | FritzhomeDevice | FritzhomeTemplate]` is not assignable to `dict[str, dict[Unknown, Unknown]]` +homeassistant/components/fritzbox/entity.py:51:16: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `bool | Unknown | None` +homeassistant/components/fritzbox/light.py:104:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[int | float, int | float]`, found `tuple[Unknown | None | int, int | float]` +homeassistant/components/fritzbox/light.py:104:28: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsFloat | SupportsIndex`, found `Unknown | None | int` +homeassistant/components/fritzbox_callmonitor/base.py:84:22: warning[possibly-missing-attribute] Attribute `contacts` may be missing on object of type `Unknown | None | Phonebook` +homeassistant/components/fronius/config_flow.py:119:53: error[no-matching-overload] No overload of bound method `__init__` matches arguments +homeassistant/components/frontier_silicon/browse_media.py:36:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `str | None` +homeassistant/components/frontier_silicon/browse_media.py:138:36: error[invalid-argument-type] Argument to function `_item_payload` is incorrect: Expected `dict[str, str]`, found `dict[str, str | int | None]` +homeassistant/components/frontier_silicon/config_flow.py:132:9: error[invalid-assignment] Object of type `str | None` is not assignable to attribute `_name` of type `str` +homeassistant/components/frontier_silicon/config_flow.py:146:13: error[invalid-assignment] Object of type `str | None` is not assignable to attribute `_name` of type `str` +homeassistant/components/frontier_silicon/config_flow.py:200:13: error[invalid-assignment] Object of type `str | None` is not assignable to attribute `_name` of type `str` +homeassistant/components/frontier_silicon/media_player.py:276:48: error[invalid-argument-type] Argument to bound method `set_eq_preset` is incorrect: Expected `Equaliser | int`, found `str` +homeassistant/components/frontier_silicon/media_player.py:313:59: error[invalid-argument-type] Argument to bound method `nav_select_item_via_path` is incorrect: Expected `list[int]`, found `list[str]` +homeassistant/components/fujitsu_fglair/coordinator.py:68:71: warning[possibly-missing-attribute] Attribute `is_online` may be missing on object of type `Unknown | Device` +homeassistant/components/fujitsu_fglair/coordinator.py:77:16: error[invalid-return-type] Return type does not match returned value: expected `dict[str, FujitsuHVAC]`, found `dict[str | None | Unknown, Device | Unknown]` +homeassistant/components/fujitsu_fglair/entity.py:22:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, str | None]]` +homeassistant/components/futurenow/light.py:7:8: error[unresolved-import] Cannot resolve imported module `pyfnip` +homeassistant/components/garadget/cover.py:122:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/garadget/cover.py:238:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/gardena_bluetooth/config_flow.py:73:51: error[invalid-argument-type] Argument to function `get_connection` is incorrect: Expected `str`, found `str | None` +homeassistant/components/gardena_bluetooth/switch.py:72:38: error[invalid-argument-type] Argument to bound method `write` is incorrect: Expected `Characteristic[Literal[0]]`, found `Unknown | CharacteristicLong` +homeassistant/components/gardena_bluetooth/valve.py:72:38: error[invalid-argument-type] Argument to bound method `write` is incorrect: Expected `Characteristic[(Unknown & ~AlwaysFalsy) | Literal[3600]]`, found `Unknown | CharacteristicLong` +homeassistant/components/gardena_bluetooth/valve.py:78:38: error[invalid-argument-type] Argument to bound method `write` is incorrect: Expected `Characteristic[Literal[0]]`, found `Unknown | CharacteristicLong` +homeassistant/components/gc100/__init__.py:5:8: error[unresolved-import] Cannot resolve imported module `gc100` +homeassistant/components/gdacs/diagnostics.py:26:33: error[invalid-assignment] Object of type `StatusUpdate | None` is not assignable to `StatusUpdate` +homeassistant/components/gdacs/geo_location.py:148:36: error[invalid-argument-type] Argument to bound method `_update_from_feed` is incorrect: Expected `GdacsFeedEntry`, found `(Unknown & ~AlwaysFalsy) | (FeedEntry & ~AlwaysFalsy)` +homeassistant/components/gdacs/geo_location.py:163:31: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/gdacs/geo_location.py:164:32: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/generic_hygrostat/__init__.py:136:36: error[invalid-key] Unknown key "changes" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "changes" +homeassistant/components/generic_thermostat/__init__.py:63:36: error[invalid-key] Unknown key "changes" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "changes" +homeassistant/components/geniushub/__init__.py:176:13: error[unresolved-attribute] Object of type `object` has no attribute `ClientConnectorError` +homeassistant/components/geo_json_events/geo_location.py:109:31: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/geo_json_events/geo_location.py:110:32: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/geo_json_events/manager.py:91:16: error[invalid-return-type] Return type does not match returned value: expected `GenericFeedEntry | None`, found `Unknown | None | FeedEntry` +homeassistant/components/geofency/device_tracker.py:71:9: error[invalid-assignment] Object of type `DeviceInfo` is not assignable to attribute `_attr_device_info` of type `None` +homeassistant/components/geofency/device_tracker.py:98:9: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/geonetnz_quakes/__init__.py:139:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `datetime`, found `timedelta` +homeassistant/components/geonetnz_quakes/geo_location.py:146:31: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/geonetnz_quakes/geo_location.py:147:32: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/github/__init__.py:26:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[GitHubClientKwarg, Any]`, found `Literal["HomeAssistant/2025.12.0.dev0 aiohttp/3.13.2 Python/3.13"]` +homeassistant/components/github/config_flow.py:41:46: error[invalid-argument-type] Argument to bound method `starred` is incorrect: Expected `dict[GitHubRequestKwarg, Any]`, found `dict[Unknown | str, Unknown | int]` +homeassistant/components/github/config_flow.py:46:25: error[invalid-argument-type] Argument to bound method `starred` is incorrect: Expected `dict[GitHubRequestKwarg, Any]`, found `dict[Unknown | str, Unknown | int]` +homeassistant/components/github/config_flow.py:49:25: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `SupportsIndex`, found `int | None` +homeassistant/components/github/config_flow.py:49:52: error[unsupported-operator] Operator `+` is unsupported between objects of type `int | None` and `Literal[1]` +homeassistant/components/github/config_flow.py:54:17: warning[possibly-missing-attribute] Attribute `extend` may be missing on object of type `list[GitHubRepositoryModel] | None` +homeassistant/components/github/config_flow.py:56:29: error[invalid-argument-type] Argument to bound method `update` is incorrect: Expected `Iterable[Unknown]`, found `list[GitHubRepositoryModel] | None` +homeassistant/components/github/config_flow.py:59:44: error[invalid-argument-type] Argument to bound method `repos` is incorrect: Expected `dict[GitHubRequestKwarg, Any]`, found `dict[Unknown | str, Unknown | int]` +homeassistant/components/github/config_flow.py:64:25: error[invalid-argument-type] Argument to bound method `repos` is incorrect: Expected `dict[GitHubRequestKwarg, Any]`, found `dict[Unknown | str, Unknown | int]` +homeassistant/components/github/config_flow.py:67:25: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `SupportsIndex`, found `int | None` +homeassistant/components/github/config_flow.py:67:52: error[unsupported-operator] Operator `+` is unsupported between objects of type `int | None` and `Literal[1]` +homeassistant/components/github/config_flow.py:72:17: warning[possibly-missing-attribute] Attribute `extend` may be missing on object of type `list[GitHubRepositoryModel] | None` +homeassistant/components/github/config_flow.py:74:29: error[invalid-argument-type] Argument to bound method `update` is incorrect: Expected `Iterable[Unknown]`, found `list[GitHubRepositoryModel] | None` +homeassistant/components/github/config_flow.py:132:17: error[invalid-argument-type] Argument to bound method `activation` is incorrect: Expected `str`, found `str | None` +homeassistant/components/github/config_flow.py:140:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[GitHubClientKwarg, Any]`, found `Literal["HomeAssistant/2025.12.0.dev0 aiohttp/3.13.2 Python/3.13"]` +homeassistant/components/github/config_flow.py:165:13: error[invalid-argument-type] Argument to bound method `async_show_progress` is incorrect: Expected `Mapping[str, str] | None`, found `dict[Unknown | str, Unknown | str | None]` +homeassistant/components/github/config_flow.py:183:62: error[invalid-argument-type] Argument to function `get_repositories` is incorrect: Expected `str`, found `str | None` +homeassistant/components/github/coordinator.py:149:16: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/github/coordinator.py:166:13: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(() -> Awaitable[None]) | None`, found `def _handle_error(error: GitHubException) -> CoroutineType[Any, Any, None]` +homeassistant/components/github/diagnostics.py:28:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[GitHubClientKwarg, Any]`, found `Literal["HomeAssistant/2025.12.0.dev0 aiohttp/3.13.2 Python/3.13"]` +homeassistant/components/github/diagnostics.py:36:30: warning[possibly-missing-attribute] Attribute `as_dict` may be missing on object of type `GitHubRateLimitModel | None` +homeassistant/components/gitlab_ci/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `gitlab` +homeassistant/components/gitter/sensor.py:7:6: error[unresolved-import] Cannot resolve imported module `gitterpy.client` +homeassistant/components/gitter/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `gitterpy.errors` +homeassistant/components/go2rtc/server.py:87:24: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/go2rtc/server.py:116:20: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/go2rtc/server.py:117:20: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/go2rtc/server.py:139:42: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/gogogate2/entity.py:45:16: error[invalid-return-type] Return type does not match returned value: expected `AbstractDoor`, found `Unknown | DoorStatus | TransitionDoorStatus` +homeassistant/components/goodwe/__init__.py:38:21: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, str | None]]` +homeassistant/components/goodwe/sensor.py:215:38: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `SensorKind`, found `SensorKind | None` +homeassistant/components/google/calendar.py:284:36: error[missing-argument] No argument provided for required parameter `calendarId` +homeassistant/components/google/calendar.py:285:21: error[unknown-argument] Argument `calendar_id` does not match any known parameter +homeassistant/components/google/calendar.py:286:21: error[unknown-argument] Argument `start_time` does not match any known parameter +homeassistant/components/google/coordinator.py:139:19: error[missing-argument] No argument provided for required parameter `calendarId` +homeassistant/components/google/coordinator.py:140:13: error[unknown-argument] Argument `calendar_id` does not match any known parameter +homeassistant/components/google/coordinator.py:141:13: error[unknown-argument] Argument `start_time` does not match any known parameter +homeassistant/components/google/coordinator.py:157:19: error[missing-argument] No argument provided for required parameter `calendarId` +homeassistant/components/google/coordinator.py:157:37: error[unknown-argument] Argument `calendar_id` does not match any known parameter +homeassistant/components/google_assistant/helpers.py:536:33: warning[possibly-missing-attribute] Attribute `entity_id` may be missing on object of type `Unknown | State | None` +homeassistant/components/google_assistant/helpers.py:536:57: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | State | None` +homeassistant/components/google_assistant/helpers.py:561:17: warning[possibly-missing-attribute] Attribute `domain` may be missing on object of type `Unknown | State | None` +homeassistant/components/google_assistant/helpers.py:561:36: warning[possibly-missing-attribute] Attribute `attributes` may be missing on object of type `Unknown | State | None` +homeassistant/components/google_assistant/helpers.py:584:18: warning[possibly-missing-attribute] Attribute `domain` may be missing on object of type `Unknown | State | None` +homeassistant/components/google_assistant/helpers.py:585:20: warning[possibly-missing-attribute] Attribute `attributes` may be missing on object of type `Unknown | State | None` +homeassistant/components/google_assistant/helpers.py:586:24: warning[possibly-missing-attribute] Attribute `attributes` may be missing on object of type `Unknown | State | None` +homeassistant/components/google_assistant/helpers.py:599:55: warning[possibly-missing-attribute] Attribute `entity_id` may be missing on object of type `Unknown | State | None` +homeassistant/components/google_assistant/helpers.py:600:49: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | State | None` +homeassistant/components/google_assistant/helpers.py:609:19: warning[possibly-missing-attribute] Attribute `entity_id` may be missing on object of type `Unknown | State | None` +homeassistant/components/google_assistant/helpers.py:615:17: warning[possibly-missing-attribute] Attribute `domain` may be missing on object of type `Unknown | State | None` +homeassistant/components/google_assistant/helpers.py:615:31: warning[possibly-missing-attribute] Attribute `attributes` may be missing on object of type `Unknown | State | None` +homeassistant/components/google_assistant/helpers.py:622:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `str` +homeassistant/components/google_assistant/helpers.py:622:13: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["nicknames"]` and value of type `list[Unknown]` on object of type `list[str | Unknown]` +homeassistant/components/google_assistant/helpers.py:624:17: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["nicknames"]` on object of type `str` +homeassistant/components/google_assistant/helpers.py:624:17: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> str | Unknown, (s: slice[Any, Any, Any], /) -> list[str | Unknown]]` cannot be called with key of type `Literal["nicknames"]` on object of type `list[str | Unknown]` +homeassistant/components/google_assistant/helpers.py:637:13: warning[possibly-missing-attribute] Attribute `update` may be missing on object of type `Unknown | str | dict[Unknown | str, Unknown] | dict[Unknown, Unknown] | list[str | Unknown]` +homeassistant/components/google_assistant/helpers.py:691:12: warning[possibly-missing-attribute] Attribute `state` may be missing on object of type `Unknown | State | None` +homeassistant/components/google_assistant/helpers.py:734:52: warning[possibly-missing-attribute] Attribute `entity_id` may be missing on object of type `Unknown | State | None` +homeassistant/components/google_assistant/http.py:252:34: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Any, (s: slice[Any, Any, Any], /) -> list[Any]]` cannot be called with key of type `Literal["access_token"]` on object of type `list[Any]` +homeassistant/components/google_assistant/http.py:253:64: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Any, (s: slice[Any, Any, Any], /) -> list[Any]]` cannot be called with key of type `Literal["expires_in"]` on object of type `list[Any]` +homeassistant/components/google_assistant/report_state.py:107:47: warning[possibly-missing-attribute] Attribute `entity_id` may be missing on object of type `Unknown | State | None` +homeassistant/components/google_assistant/report_state.py:111:17: warning[possibly-missing-attribute] Attribute `entity_id` may be missing on object of type `Unknown | State | None` +homeassistant/components/google_assistant/report_state.py:164:54: error[invalid-argument-type] Argument to function `create_checker` is incorrect: Expected `ExtraCheckTypeFunc | None`, found `def extra_significant_check(hass: HomeAssistant, old_state: str, old_attrs: dict[Unknown, Unknown], old_extra_arg: dict[Unknown, Unknown], new_state: str, new_attrs: dict[Unknown, Unknown], new_extra_arg: dict[Unknown, Unknown]) -> Unknown` +homeassistant/components/google_assistant/report_state.py:178:17: error[invalid-argument-type] Argument to bound method `async_is_significant_change` is incorrect: Expected `State`, found `Unknown | State | None` +homeassistant/components/google_assistant/report_state.py:190:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]` +homeassistant/components/google_assistant/report_state.py:191:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _async_entity_state_listener(event: Event[EventStateChangedData]) -> CoroutineType[Any, Any, None]` +homeassistant/components/google_assistant/report_state.py:192:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _async_entity_state_filter(data: EventStateChangedData) -> bool` +homeassistant/components/google_assistant/trait.py:1832:21: error[invalid-argument-type] Argument to function `ordered_list_item_to_percentage` is incorrect: Expected `list[Unknown & ~AlwaysFalsy]`, found `Unknown | list[str | Unknown]` +homeassistant/components/google_assistant/trait.py:1928:13: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | list[Unknown | dict[Unknown | str, Unknown | list[Unknown | str] | str]] | list[Unknown] | bool` +homeassistant/components/google_generative_ai_conversation/ai_task.py:93:16: warning[possibly-missing-attribute] Attribute `content` may be missing on object of type `SystemContent | UserContent | AssistantContent | ToolResultContent` +homeassistant/components/google_generative_ai_conversation/config_flow.py:132:21: error[invalid-argument-type] Argument to bound method `async_create_entry` is incorrect: Expected `Iterable[ConfigSubentryData] | None`, found `list[Unknown | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str | list[Unknown | str] | bool] | None] | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | bool] | None] | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str | bool] | None]]` +homeassistant/components/google_generative_ai_conversation/entity.py:518:37: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `ToolResultContent`, found `SystemContent | UserContent | AssistantContent | ToolResultContent` +homeassistant/components/google_generative_ai_conversation/entity.py:533:46: error[invalid-argument-type] Argument to function `_convert_content` is incorrect: Expected `UserContent | AssistantContent | SystemContent`, found `SystemContent | UserContent | AssistantContent | ToolResultContent` +homeassistant/components/google_mail/notify.py:58:17: error[unresolved-attribute] Object of type `Resource` has no attribute `users` +homeassistant/components/google_mail/sensor.py:44:33: warning[possibly-missing-attribute] Attribute `users` may be missing on object of type `Unknown | Resource` +homeassistant/components/google_mail/services.py:88:13: error[unresolved-attribute] Object of type `Resource` has no attribute `users` +homeassistant/components/google_maps/device_tracker.py:8:6: error[unresolved-import] Cannot resolve imported module `locationsharinglib` +homeassistant/components/google_maps/device_tracker.py:9:6: error[unresolved-import] Cannot resolve imported module `locationsharinglib.locationsharinglibexceptions` +homeassistant/components/google_maps/device_tracker.py:115:16: error[unsupported-operator] Operator `<` is not supported for types `datetime` and `str`, in comparing `datetime` with `str | datetime` +homeassistant/components/google_maps/device_tracker.py:130:13: error[invalid-assignment] Invalid subscript assignment with key of type `str` and value of type `datetime` on object of type `dict[str, str]` +homeassistant/components/google_pubsub/__init__.py:77:21: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]` +homeassistant/components/google_pubsub/__init__.py:77:42: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def send_to_pubsub(event: Event[EventStateChangedData]) -> Unknown` +homeassistant/components/google_tasks/api.py:63:28: error[unresolved-attribute] Object of type `Resource` has no attribute `tasklists` +homeassistant/components/google_tasks/api.py:70:28: error[unresolved-attribute] Object of type `Resource` has no attribute `tasks` +homeassistant/components/google_tasks/api.py:86:28: error[unresolved-attribute] Object of type `Resource` has no attribute `tasks` +homeassistant/components/google_tasks/api.py:100:28: error[unresolved-attribute] Object of type `Resource` has no attribute `tasks` +homeassistant/components/google_tasks/api.py:114:35: error[unresolved-attribute] Object of type `Resource` has no attribute `new_batch_http_request` +homeassistant/components/google_tasks/api.py:127:17: error[unresolved-attribute] Object of type `Resource` has no attribute `tasks` +homeassistant/components/google_tasks/api.py:144:28: error[unresolved-attribute] Object of type `Resource` has no attribute `tasks` +homeassistant/components/google_tasks/api.py:156:53: warning[possibly-missing-attribute] Attribute `reason` may be missing on object of type `HttpError | ServerNotFoundError` +homeassistant/components/google_tasks/api.py:156:67: warning[possibly-missing-attribute] Attribute `status_code` may be missing on object of type `HttpError | ServerNotFoundError` +homeassistant/components/google_weather/config_flow.py:134:21: error[invalid-argument-type] Argument to bound method `async_create_entry` is incorrect: Expected `Iterable[ConfigSubentryData] | None`, found `list[Unknown | dict[Unknown | str, Unknown | str | None]]` +homeassistant/components/google_weather/weather.py:248:16: error[invalid-return-type] Return type does not match returned value: expected `list[Forecast] | None`, found `list[dict[Unknown | str, Unknown | str | None | int | float] | Unknown]` +homeassistant/components/google_weather/weather.py:290:16: error[invalid-return-type] Return type does not match returned value: expected `list[Forecast] | None`, found `list[dict[Unknown | str, Unknown | str | None | int | float] | Unknown]` +homeassistant/components/google_wifi/sensor.py:187:29: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/google_wifi/sensor.py:199:20: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `str` with `Unknown | None` +homeassistant/components/google_wifi/sensor.py:200:36: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/google_wifi/sensor.py:217:59: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/govee_ble/sensor.py:137:16: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `bool | (ModelInfo & ~AlwaysTruthy & ~AlwaysFalsy)` +homeassistant/components/govee_light_local/__init__.py:37:34: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event]`? +homeassistant/components/govee_light_local/coordinator.py:102:15: error[missing-argument] No argument provided for required parameter `scene` of bound method `set_scene` +homeassistant/components/govee_light_local/coordinator.py:102:32: error[invalid-argument-type] Argument to bound method `set_scene` is incorrect: Expected `GoveeDevice`, found `str` +homeassistant/components/govee_light_local/light.py:185:54: error[invalid-argument-type] Argument to bound method `set_scene` is incorrect: Expected `GoveeController`, found `Unknown | GoveeDevice` +homeassistant/components/govee_light_local/light.py:216:72: error[invalid-argument-type] Argument to bound method `set_rgb_color` is incorrect: Expected `int`, found `int | None` +homeassistant/components/govee_light_local/light.py:216:72: error[invalid-argument-type] Argument to bound method `set_rgb_color` is incorrect: Expected `int`, found `int | None` +homeassistant/components/govee_light_local/light.py:216:72: error[invalid-argument-type] Argument to bound method `set_rgb_color` is incorrect: Expected `int`, found `int | None` +homeassistant/components/govee_light_local/light.py:218:74: error[invalid-argument-type] Argument to bound method `set_temperature` is incorrect: Expected `int`, found `int | None` +homeassistant/components/gpsd/sensor.py:51:18: warning[possibly-missing-attribute] Attribute `satellites` may be missing on object of type `Unknown | DataStream` +homeassistant/components/gpsd/sensor.py:57:18: warning[possibly-missing-attribute] Attribute `satellites` may be missing on object of type `Unknown | DataStream` +homeassistant/components/gpslogger/device_tracker.py:83:9: error[invalid-assignment] Object of type `DeviceInfo` is not assignable to attribute `_attr_device_info` of type `None` +homeassistant/components/gpslogger/device_tracker.py:134:9: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/graphite/__init__.py:107:9: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/gree/climate.py:189:9: error[invalid-assignment] Object of type `Unknown | Mode | None` is not assignable to attribute `mode` on type `Unknown | Device` +homeassistant/components/gree/climate.py:261:9: error[invalid-assignment] Object of type `Unknown | FanSpeed | None` is not assignable to attribute `fan_speed` on type `Unknown | Device` +homeassistant/components/greenwave/light.py:10:8: error[unresolved-import] Cannot resolve imported module `greenwavereality` +homeassistant/components/group/sensor.py:705:20: error[invalid-return-type] Return type does not match returned value: expected `set[str | None]`, found `set[type[StrEnum] | str | None]` +homeassistant/components/growatt_server/config_flow.py:79:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/growatt_server/config_flow.py:114:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/growatt_server/config_flow.py:200:20: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/growatt_server/config_flow.py:228:40: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/growatt_server/config_flow.py:230:9: error[no-matching-overload] No overload of bound method `update` matches arguments +homeassistant/components/growatt_server/coordinator.py:94:30: warning[possibly-missing-attribute] Attribute `plant_energy_overview` may be missing on object of type `Unknown | GrowattApi` +homeassistant/components/growatt_server/coordinator.py:112:31: warning[possibly-missing-attribute] Attribute `min_detail` may be missing on object of type `Unknown | GrowattApi` +homeassistant/components/growatt_server/coordinator.py:113:32: warning[possibly-missing-attribute] Attribute `min_settings` may be missing on object of type `Unknown | GrowattApi` +homeassistant/components/growatt_server/coordinator.py:114:30: warning[possibly-missing-attribute] Attribute `min_energy` may be missing on object of type `Unknown | GrowattApi` +homeassistant/components/growatt_server/coordinator.py:182:16: error[unresolved-attribute] Module `json` has no member `decoder` +homeassistant/components/growatt_server/number.py:144:17: warning[possibly-missing-attribute] Attribute `min_write_parameter` may be missing on object of type `Unknown | GrowattApi` +homeassistant/components/growatt_server/switch.py:121:17: warning[possibly-missing-attribute] Attribute `min_write_parameter` may be missing on object of type `Unknown | GrowattApi` +homeassistant/components/gtfs/sensor.py:11:8: error[unresolved-import] Cannot resolve imported module `pygtfs` +homeassistant/components/guardian/services.py:93:42: error[unresolved-attribute] Object of type `(ServiceCall, GuardianData, /) -> Coroutine[Any, Any, None]` has no attribute `__name__` +homeassistant/components/guardian/util.py:77:40: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, Any]` has no attribute `__name__` +homeassistant/components/hardware/models.py:26:16: error[invalid-type-form] Variable of type `` is not allowed in a type expression +homeassistant/components/harman_kardon_avr/media_player.py:5:8: error[unresolved-import] Cannot resolve imported module `hkavr` +homeassistant/components/harmony/config_flow.py:116:34: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `str | None | bytes` +homeassistant/components/harmony/data.py:113:68: error[invalid-argument-type] Argument is incorrect: Expected `Future[Unknown] | Event | ((object, Any | None, /) -> Any) | None`, found `Unknown | (bound method Self@connect._config_updated(_: dict[Unknown, Unknown] | None = None) -> None) | (bound method Self@connect._connected(_: str | None = None) -> None) | ... omitted 3 union elements` +homeassistant/components/harmony/data.py:113:68: error[invalid-argument-type] Argument is incorrect: Expected `Future[Unknown] | Event | ((object, Any | None, /) -> Any) | None`, found `Unknown | (bound method Self@connect._config_updated(_: dict[Unknown, Unknown] | None = None) -> None) | (bound method Self@connect._connected(_: str | None = None) -> None) | ... omitted 3 union elements` +homeassistant/components/harmony/data.py:113:68: error[invalid-argument-type] Argument is incorrect: Expected `Future[Unknown] | Event | ((object, Any | None, /) -> Any) | None`, found `Unknown | (bound method Self@connect._config_updated(_: dict[Unknown, Unknown] | None = None) -> None) | (bound method Self@connect._connected(_: str | None = None) -> None) | ... omitted 3 union elements` +homeassistant/components/harmony/data.py:113:68: error[invalid-argument-type] Argument is incorrect: Expected `Future[Unknown] | Event | ((object, Any | None, /) -> Any) | None`, found `Unknown | (bound method Self@connect._config_updated(_: dict[Unknown, Unknown] | None = None) -> None) | (bound method Self@connect._connected(_: str | None = None) -> None) | ... omitted 3 union elements` +homeassistant/components/harmony/data.py:113:68: error[invalid-argument-type] Argument is incorrect: Expected `Future[Unknown] | Event | ((object, Any | None, /) -> Any) | None`, found `Unknown | (bound method Self@connect._config_updated(_: dict[Unknown, Unknown] | None = None) -> None) | (bound method Self@connect._connected(_: str | None = None) -> None) | ... omitted 3 union elements` +homeassistant/components/harmony/data.py:234:21: error[invalid-argument-type] Argument is incorrect: Expected `int`, found `str` +homeassistant/components/harmony/subscriber.py:13:24: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/components/harmony/subscriber.py:13:32: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `tuple[()]`? +homeassistant/components/harmony/subscriber.py:14:25: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/components/harmony/subscriber.py:14:33: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[tuple[Unknown, ...]]`? +homeassistant/components/hassio/addon_manager.py:38:6: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/hassio/addon_manager.py:38:42: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/hassio/addon_manager.py:44:15: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/hassio/addon_manager.py:45:10: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/hassio/repairs.py:226:18: warning[possibly-missing-attribute] Attribute `key` may be missing on object of type `(SupervisorIssues & ~AlwaysTruthy & ~AlwaysFalsy) | (Issue & ~AlwaysFalsy)` +homeassistant/components/hassio/repairs.py:228:18: warning[possibly-missing-attribute] Attribute `key` may be missing on object of type `(SupervisorIssues & ~AlwaysTruthy & ~AlwaysFalsy) | (Issue & ~AlwaysFalsy)` +homeassistant/components/hassio/repairs.py:230:18: warning[possibly-missing-attribute] Attribute `key` may be missing on object of type `(SupervisorIssues & ~AlwaysTruthy & ~AlwaysFalsy) | (Issue & ~AlwaysFalsy)` +homeassistant/components/haveibeenpwned/sensor.py:94:17: error[invalid-argument-type] Argument to function `as_local` is incorrect: Expected `datetime`, found `datetime | None` +homeassistant/components/haveibeenpwned/sensor.py:165:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/hddtemp/sensor.py:68:23: error[no-matching-overload] No overload of function `iter` matches arguments +homeassistant/components/hdmi_cec/__init__.py:258:49: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `list[int]`, found `Unknown | Literal[""]` +homeassistant/components/heatmiser/climate.py:8:6: error[unresolved-import] Cannot resolve imported module `heatmiserv3` +homeassistant/components/heos/media_player.py:144:16: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/heos/media_player.py:144:36: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/heos/media_player.py:147:25: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/heos/media_player.py:147:47: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/here_travel_time/coordinator.py:226:21: error[invalid-argument-type] Argument is incorrect: Expected `int | float`, found `str` +homeassistant/components/here_travel_time/coordinator.py:226:48: error[invalid-argument-type] Argument is incorrect: Expected `int | float`, found `str` +homeassistant/components/here_travel_time/coordinator.py:229:21: error[invalid-argument-type] Argument is incorrect: Expected `int | float`, found `str` +homeassistant/components/here_travel_time/coordinator.py:229:53: error[invalid-argument-type] Argument is incorrect: Expected `int | float`, found `str` +homeassistant/components/hikvision/binary_sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `pyhik.hikvision` +homeassistant/components/hikvisioncam/switch.py:8:8: error[unresolved-import] Cannot resolve imported module `hikvision.api` +homeassistant/components/hikvisioncam/switch.py:9:6: error[unresolved-import] Cannot resolve imported module `hikvision.error` +homeassistant/components/hitron_coda/device_tracker.py:89:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/hitron_coda/device_tracker.py:113:55: error[invalid-argument-type] Argument to function `get` is incorrect: Expected `CookieJar | MutableMapping[str, str] | None`, found `dict[Unknown | str, Unknown | None | str]` +homeassistant/components/hitron_coda/device_tracker.py:114:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/hive/binary_sensor.py:83:20: error[not-iterable] Object of type `Unknown | None` may not be iterable +homeassistant/components/hive/binary_sensor.py:91:20: error[not-iterable] Object of type `Unknown | None` may not be iterable +homeassistant/components/hive/climate.py:127:61: error[invalid-argument-type] Argument to bound method `setBoostOn` is incorrect: Expected `str`, found `Literal[30]` +homeassistant/components/hive/config_flow.py:199:44: error[invalid-argument-type] Argument to bound method `updateInterval` is incorrect: Expected `timedelta`, found `Any | None` +homeassistant/components/hive/light.py:83:26: error[invalid-argument-type] Argument to bound method `turnOn` is incorrect: Expected `int`, found `None | (int & ~Literal[0])` +homeassistant/components/hive/light.py:83:42: error[invalid-argument-type] Argument to bound method `turnOn` is incorrect: Expected `int`, found `None | Any` +homeassistant/components/hive/light.py:83:58: error[invalid-argument-type] Argument to bound method `turnOn` is incorrect: Expected `list[Unknown]`, found `None | tuple[int, int, Literal[100]]` +homeassistant/components/hlk_sw16/config_flow.py:56:17: warning[possibly-missing-attribute] Attribute `set_exception` may be missing on object of type `Unknown | None` +homeassistant/components/home_connect/switch.py:286:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[str, str] | None`, found `dict[Unknown | str, Unknown | str | UndefinedType]` +homeassistant/components/homeassistant_alerts/__init__.py:103:55: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _component_loaded(_: Event[EventComponentLoaded]) -> None` +homeassistant/components/homeassistant_hardware/firmware_config_flow.py:271:41: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `str | None` +homeassistant/components/homeassistant_hardware/firmware_config_flow.py:273:16: error[unsupported-operator] Operator `>=` is not supported for types `Version` and `Version`, in comparing `Version` with `Version | None` +homeassistant/components/homeassistant_hardware/helpers.py:184:35: error[call-non-callable] Object of type `object` is not callable +homeassistant/components/homekit/__init__.py:913:56: error[invalid-argument-type] Argument to function `accessory_friendly_name` is incorrect: Expected `Accessory`, found `Accessory | None` +homeassistant/components/homekit/__init__.py:915:13: warning[possibly-missing-attribute] Attribute `xhm_uri` may be missing on object of type `Accessory | None` +homeassistant/components/homekit/__init__.py:959:13: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `set[tuple[str, str]] | None | UndefinedType`, found `set[Unknown | tuple[str, Unknown | str, str]]` +homeassistant/components/homekit/__init__.py:964:61: error[invalid-argument-type] Argument to function `accessory_friendly_name` is incorrect: Expected `Accessory`, found `Accessory | None` +homeassistant/components/homekit/__init__.py:1025:16: error[invalid-return-type] Return type does not match returned value: expected `HomeAccessory`, found `HomeBridge` +homeassistant/components/homekit/accessories.py:331:13: error[parameter-already-assigned] Multiple values provided for parameter 2 (`driver`) of bound method `__init__` +homeassistant/components/homekit/accessories.py:331:13: error[parameter-already-assigned] Multiple values provided for parameter 3 (`display_name`) of bound method `__init__` +homeassistant/components/homekit/accessories.py:331:13: error[parameter-already-assigned] Multiple values provided for parameter 4 (`aid`) of bound method `__init__` +homeassistant/components/homekit/accessories.py:331:13: error[parameter-already-assigned] Multiple values provided for parameter 5 (`iid_manager`) of bound method `__init__` +homeassistant/components/homekit/accessories.py:378:13: warning[possibly-missing-attribute] Attribute `add_characteristic` may be missing on object of type `Service | None` +homeassistant/components/homekit/accessories.py:379:13: warning[possibly-missing-attribute] Attribute `configure_char` may be missing on object of type `Service | None` +homeassistant/components/homekit/accessories.py:440:49: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["BatteryService"]` +homeassistant/components/homekit/accessories.py:749:56: error[invalid-argument-type] Argument to function `accessory_friendly_name` is incorrect: Expected `Accessory`, found `Accessory | None` +homeassistant/components/homekit/accessories.py:751:13: warning[possibly-missing-attribute] Attribute `xhm_uri` may be missing on object of type `Accessory | None` +homeassistant/components/homekit/accessories.py:765:15: warning[possibly-missing-attribute] Attribute `aid` may be missing on object of type `Accessory | None` +homeassistant/components/homekit/accessories.py:767:32: error[invalid-assignment] Object of type `Service | None` is not assignable to `Service` +homeassistant/components/homekit/accessories.py:769:17: error[invalid-argument-type] Argument to bound method `get_or_allocate_iid` is incorrect: Expected `int`, found `int | None` +homeassistant/components/homekit/accessories.py:773:17: error[invalid-argument-type] Argument to bound method `get_or_allocate_iid` is incorrect: Expected `int`, found `int | None` +homeassistant/components/homekit/const.py:17:25: error[too-many-positional-arguments] Too many positional arguments to class `SignalTypeFormat`: expected 0, got 1 +homeassistant/components/homekit/diagnostics.py:42:66: error[invalid-argument-type] Argument to function `_get_accessory_diagnostics` is incorrect: Expected `HomeAccessory`, found `Accessory & ~AlwaysFalsy & ~HomeBridge` +homeassistant/components/homekit/doorbell.py:55:50: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["Doorbell"]` +homeassistant/components/homekit/doorbell.py:62:13: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["StatelessProgrammableSwitch"]` +homeassistant/components/homekit/doorbell.py:69:49: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["Speaker"]` +homeassistant/components/homekit/type_air_purifiers.py:96:54: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["AirPurifier"]` +homeassistant/components/homekit/type_air_purifiers.py:96:73: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[str]` +homeassistant/components/homekit/type_air_purifiers.py:126:54: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["HumiditySensor"]` +homeassistant/components/homekit/type_air_purifiers.py:126:76: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `Literal["Name"]` +homeassistant/components/homekit/type_air_purifiers.py:139:17: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["AirQualitySensor"]` +homeassistant/components/homekit/type_air_purifiers.py:140:17: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_air_purifiers.py:156:17: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["TemperatureSensor"]` +homeassistant/components/homekit/type_air_purifiers.py:156:42: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_air_purifiers.py:181:17: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["FilterMaintenance"]` +homeassistant/components/homekit/type_air_purifiers.py:181:42: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_cameras.py:226:56: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["MotionSensor"]` +homeassistant/components/homekit/type_covers.py:110:53: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["GarageDoorOpener"]` +homeassistant/components/homekit/type_covers.py:353:57: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Service`, found `Literal["Door"]` +homeassistant/components/homekit/type_covers.py:365:59: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Service`, found `Literal["Window"]` +homeassistant/components/homekit/type_covers.py:378:55: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Service`, found `Literal["WindowCovering"]` +homeassistant/components/homekit/type_covers.py:393:55: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Service`, found `Literal["WindowCovering"]` +homeassistant/components/homekit/type_fans.py:124:21: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["Switch"]` +homeassistant/components/homekit/type_fans.py:125:21: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_fans.py:157:45: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["Fanv2"]` +homeassistant/components/homekit/type_fans.py:157:57: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[str]` +homeassistant/components/homekit/type_humidifiers.py:124:13: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["HumidifierDehumidifier"]` +homeassistant/components/homekit/type_humidifiers.py:124:43: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[str]` +homeassistant/components/homekit/type_lights.py:114:47: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["Lightbulb"]` +homeassistant/components/homekit/type_locks.py:70:56: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["LockMechanism"]` +homeassistant/components/homekit/type_media_players.py:105:17: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["Switch"]` +homeassistant/components/homekit/type_media_players.py:105:30: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_media_players.py:120:17: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["Switch"]` +homeassistant/components/homekit/type_media_players.py:121:17: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_media_players.py:137:17: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["Switch"]` +homeassistant/components/homekit/type_media_players.py:138:17: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_media_players.py:154:17: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["Switch"]` +homeassistant/components/homekit/type_media_players.py:155:17: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_media_players.py:287:17: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["TelevisionSpeaker"]` +homeassistant/components/homekit/type_media_players.py:287:42: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[str]` +homeassistant/components/homekit/type_remotes.py:118:13: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["Television"]` +homeassistant/components/homekit/type_remotes.py:118:13: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["Television"]` +homeassistant/components/homekit/type_remotes.py:118:30: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_remotes.py:118:30: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_remotes.py:138:17: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["InputSource"]` +homeassistant/components/homekit/type_remotes.py:138:36: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_security_systems.py:97:47: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["SecuritySystem"]` +homeassistant/components/homekit/type_security_systems.py:126:33: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `Any | None` +homeassistant/components/homekit/type_security_systems.py:135:33: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `Any | None` +homeassistant/components/homekit/type_sensors.py:123:46: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["TemperatureSensor"]` +homeassistant/components/homekit/type_sensors.py:154:50: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["HumiditySensor"]` +homeassistant/components/homekit/type_sensors.py:188:13: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["AirQualitySensor"]` +homeassistant/components/homekit/type_sensors.py:188:38: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_sensors.py:214:13: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["AirQualitySensor"]` +homeassistant/components/homekit/type_sensors.py:214:38: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_sensors.py:241:13: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["AirQualitySensor"]` +homeassistant/components/homekit/type_sensors.py:241:38: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_sensors.py:268:13: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["AirQualitySensor"]` +homeassistant/components/homekit/type_sensors.py:268:38: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_sensors.py:300:13: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["AirQualitySensor"]` +homeassistant/components/homekit/type_sensors.py:300:38: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_sensors.py:337:13: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["CarbonMonoxideSensor"]` +homeassistant/components/homekit/type_sensors.py:338:13: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_sensors.py:377:13: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["CarbonDioxideSensor"]` +homeassistant/components/homekit/type_sensors.py:378:13: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_sensors.py:416:47: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["LightSensor"]` +homeassistant/components/homekit/type_sensors.py:449:44: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `str` +homeassistant/components/homekit/type_switches.py:130:48: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["Outlet"]` +homeassistant/components/homekit/type_switches.py:169:48: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["Switch"]` +homeassistant/components/homekit/type_switches.py:315:47: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["Valve"]` +homeassistant/components/homekit/type_switches.py:522:17: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["Outlet"]` +homeassistant/components/homekit/type_switches.py:523:17: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_switches.py:535:34: error[invalid-argument-type] Argument to bound method `set_primary_service` is incorrect: Expected `Service`, found `Characteristic` +homeassistant/components/homekit/type_thermostats.py:235:52: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["Thermostat"]` +homeassistant/components/homekit/type_thermostats.py:235:69: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[str]` +homeassistant/components/homekit/type_thermostats.py:349:49: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["Fanv2"]` +homeassistant/components/homekit/type_thermostats.py:349:61: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[str] & ~AlwaysFalsy` +homeassistant/components/homekit/type_thermostats.py:755:52: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["Thermostat"]` +homeassistant/components/homekit/type_triggers.py:69:17: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["StatelessProgrammableSwitch"]` +homeassistant/components/homekit/type_triggers.py:70:17: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Iterable[Characteristic] | None`, found `list[Unknown | str]` +homeassistant/components/homekit/type_triggers.py:88:17: error[invalid-argument-type] Argument to bound method `add_preload_service` is incorrect: Expected `Service`, found `Literal["ServiceLabel"]` +homeassistant/components/homekit/type_triggers.py:107:13: error[invalid-argument-type] Argument to function `async_initialize_triggers` is incorrect: Expected `str`, found `str | None` +homeassistant/components/homekit_controller/config_flow.py:383:31: warning[possibly-missing-attribute] Attribute `async_find` may be missing on object of type `Controller | None` +homeassistant/components/homekit_controller/switch.py:201:36: error[unresolved-attribute] Object of type `SwitchEntityDescription` has no attribute `true_value` +homeassistant/components/homekit_controller/switch.py:206:31: error[unresolved-attribute] Object of type `SwitchEntityDescription` has no attribute `true_value` +homeassistant/components/homekit_controller/switch.py:212:31: error[unresolved-attribute] Object of type `SwitchEntityDescription` has no attribute `false_value` +homeassistant/components/homematic/climate.py:78:39: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `OFF_VALUE` +homeassistant/components/homematic/climate.py:80:27: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `ACTIONNODE` +homeassistant/components/homematic/climate.py:81:41: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `MANU_MODE` +homeassistant/components/homematic/climate.py:96:27: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `ACTIONNODE` +homeassistant/components/homematic/climate.py:122:25: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `ACTIONNODE` +homeassistant/components/homematic/climate.py:152:9: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `writeNodeData` +homeassistant/components/homematic/climate.py:157:13: error[unresolved-attribute] Unresolved attribute `MODE` on type `HMGeneric`. +homeassistant/components/homematic/climate.py:157:35: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `AUTO_MODE` +homeassistant/components/homematic/climate.py:159:13: error[unresolved-attribute] Unresolved attribute `MODE` on type `HMGeneric`. +homeassistant/components/homematic/climate.py:159:35: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `MANU_MODE` +homeassistant/components/homematic/climate.py:161:13: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `turnoff` +homeassistant/components/homematic/climate.py:166:13: error[unresolved-attribute] Unresolved attribute `MODE` on type `HMGeneric`. +homeassistant/components/homematic/climate.py:166:35: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `BOOST_MODE` +homeassistant/components/homematic/climate.py:168:13: error[unresolved-attribute] Unresolved attribute `MODE` on type `HMGeneric`. +homeassistant/components/homematic/climate.py:168:35: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `COMFORT_MODE` +homeassistant/components/homematic/climate.py:170:13: error[unresolved-attribute] Unresolved attribute `MODE` on type `HMGeneric`. +homeassistant/components/homematic/climate.py:170:35: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `LOWERING_MODE` +homeassistant/components/homematic/climate.py:183:33: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `WRITENODE` +homeassistant/components/homematic/climate.py:187:32: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `ATTRIBUTENODE` +homeassistant/components/homematic/climate.py:188:37: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `ATTRIBUTENODE` +homeassistant/components/homematic/climate.py:192:21: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `SENSORNODE` +homeassistant/components/homematic/cover.py:60:13: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `set_level` +homeassistant/components/homematic/cover.py:71:9: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `move_up` +homeassistant/components/homematic/cover.py:75:9: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `move_down` +homeassistant/components/homematic/cover.py:79:9: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `stop` +homeassistant/components/homematic/cover.py:85:25: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `WRITENODE` +homeassistant/components/homematic/cover.py:104:13: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `set_cover_tilt_position` +homeassistant/components/homematic/cover.py:109:13: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `open_slats` +homeassistant/components/homematic/cover.py:114:13: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `close_slats` +homeassistant/components/homematic/cover.py:139:16: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `is_closed` +homeassistant/components/homematic/entity.py:73:16: warning[possibly-missing-attribute] Attribute `replace` may be missing on object of type `Unknown | str | None` +homeassistant/components/homematic/entity.py:134:35: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `UNREACH` +homeassistant/components/homematic/entity.py:135:35: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `UNREACH` +homeassistant/components/homematic/entity.py:145:13: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `ACTIONNODE` +homeassistant/components/homematic/entity.py:146:13: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `EVENTNODE` +homeassistant/components/homematic/entity.py:147:13: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `WRITENODE` +homeassistant/components/homematic/entity.py:148:13: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `ATTRIBUTENODE` +homeassistant/components/homematic/entity.py:149:13: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `BINARYNODE` +homeassistant/components/homematic/entity.py:150:13: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `SENSORNODE` +homeassistant/components/homematic/entity.py:166:9: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `setEventCallback` +homeassistant/components/homematic/entity.py:175:14: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `ATTRIBUTENODE` +homeassistant/components/homematic/entity.py:175:44: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `getAttributeData` +homeassistant/components/homematic/entity.py:176:14: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `WRITENODE` +homeassistant/components/homematic/entity.py:176:40: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `getWriteData` +homeassistant/components/homematic/entity.py:177:14: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `SENSORNODE` +homeassistant/components/homematic/entity.py:177:41: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `getSensorData` +homeassistant/components/homematic/entity.py:178:14: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `BINARYNODE` +homeassistant/components/homematic/entity.py:178:41: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `getBinaryData` +homeassistant/components/homematic/entity.py:200:26: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `ATTRIBUTENODE` +homeassistant/components/homematic/light.py:72:23: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `WRITENODE` +homeassistant/components/homematic/light.py:83:23: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `WRITENODE` +homeassistant/components/homematic/light.py:96:25: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `WRITENODE` +homeassistant/components/homematic/light.py:105:20: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `get_hs_color` +homeassistant/components/homematic/light.py:113:25: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `get_color_temp` +homeassistant/components/homematic/light.py:123:16: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `get_effect_list` +homeassistant/components/homematic/light.py:130:16: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `get_effect` +homeassistant/components/homematic/light.py:135:13: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `setValue` +homeassistant/components/homematic/light.py:139:13: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `set_level` +homeassistant/components/homematic/light.py:145:13: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `on` +homeassistant/components/homematic/light.py:148:13: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `set_hs_color` +homeassistant/components/homematic/light.py:158:13: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `set_color_temp` +homeassistant/components/homematic/light.py:160:13: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `set_effect` +homeassistant/components/homematic/light.py:165:13: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `setValue` +homeassistant/components/homematic/light.py:167:9: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `off` +homeassistant/components/homematic/lock.py:41:9: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `lock` +homeassistant/components/homematic/lock.py:45:9: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `unlock` +homeassistant/components/homematic/lock.py:49:9: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `open` +homeassistant/components/homematic/switch.py:58:9: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `on` +homeassistant/components/homematic/switch.py:62:9: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `off` +homeassistant/components/homematic/switch.py:70:21: error[unresolved-attribute] Object of type `HMGeneric` has no attribute `SENSORNODE` +homeassistant/components/homematicip_cloud/__init__.py:99:15: error[unresolved-attribute] Object of type `AsyncHome` has no attribute `label` +homeassistant/components/homematicip_cloud/__init__.py:99:29: error[unresolved-attribute] Object of type `AsyncHome` has no attribute `label` +homeassistant/components/homematicip_cloud/__init__.py:99:72: error[unresolved-attribute] Object of type `AsyncHome` has no attribute `label` +homeassistant/components/homematicip_cloud/__init__.py:103:9: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `set[tuple[str, str]] | None | UndefinedType`, found `set[Unknown | tuple[str, Unknown | None]]` +homeassistant/components/homematicip_cloud/__init__.py:128:8: error[unsupported-operator] Operator `<` is not supported for types `None` and `str`, in comparing `Unknown | None` with `Literal["2.2.12"]` +homeassistant/components/homematicip_cloud/alarm_control_panel.py:58:24: error[invalid-argument-type] Invalid argument to key "via_device" with declared type `tuple[str, str]` on TypedDict `DeviceInfo`: value of type `tuple[Literal["homematicip_cloud"], Unknown | None]` +homeassistant/components/homematicip_cloud/alarm_control_panel.py:80:16: error[invalid-return-type] Return type does not match returned value: expected `SecurityAndAlarmHome`, found `FunctionalHome | None` +homeassistant/components/homematicip_cloud/alarm_control_panel.py:118:12: error[unresolved-attribute] Object of type `AsyncHome` has no attribute `name` +homeassistant/components/homematicip_cloud/alarm_control_panel.py:119:23: error[unresolved-attribute] Object of type `AsyncHome` has no attribute `name` +homeassistant/components/homematicip_cloud/alarm_control_panel.py:125:16: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `Unknown | None` +homeassistant/components/homematicip_cloud/binary_sensor.py:156:28: error[unresolved-attribute] Object of type `AsyncHome` has no attribute `name` +homeassistant/components/homematicip_cloud/binary_sensor.py:156:52: error[unresolved-attribute] Object of type `AsyncHome` has no attribute `name` +homeassistant/components/homematicip_cloud/binary_sensor.py:163:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown | None]]` +homeassistant/components/homematicip_cloud/binary_sensor.py:181:16: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `Unknown | None` +homeassistant/components/homematicip_cloud/climate.py:85:9: error[unresolved-attribute] Unresolved attribute `modelType` on type `HeatingGroup`. +homeassistant/components/homematicip_cloud/climate.py:259:16: error[invalid-return-type] Return type does not match returned value: expected `IndoorClimateHome`, found `FunctionalHome | None` +homeassistant/components/homematicip_cloud/climate.py:281:20: error[invalid-return-type] Return type does not match returned value: expected `str`, found `(Unknown & ~Literal[""]) | None` +homeassistant/components/homematicip_cloud/climate.py:296:16: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, int].__getitem__(key: str, /) -> int` cannot be called with key of type `Unknown | None` on object of type `dict[str, int]` +homeassistant/components/homematicip_cloud/cover.py:286:16: warning[possibly-missing-attribute] Attribute `doorState` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/cover.py:290:15: warning[possibly-missing-attribute] Attribute `async_send_door_command` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/cover.py:294:15: warning[possibly-missing-attribute] Attribute `async_send_door_command` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/cover.py:298:15: warning[possibly-missing-attribute] Attribute `async_send_door_command` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/entity.py:205:21: error[unresolved-attribute] Object of type `AsyncHome` has no attribute `name` +homeassistant/components/homematicip_cloud/entity.py:206:23: error[unresolved-attribute] Object of type `AsyncHome` has no attribute `name` +homeassistant/components/homematicip_cloud/entity.py:265:16: error[invalid-return-type] Return type does not match returned value: expected `FunctionalChannel`, found `None` +homeassistant/components/homematicip_cloud/hap.py:35:15: error[unresolved-attribute] Module `homeassistant` has no member `util` +homeassistant/components/homematicip_cloud/hap.py:39:9: error[invalid-argument-type] Argument to bound method `build_context_async` is incorrect: Expected `str`, found `str | None` +homeassistant/components/homematicip_cloud/hap.py:291:9: error[unresolved-attribute] Unresolved attribute `name` on type `AsyncHome`. +homeassistant/components/homematicip_cloud/hap.py:293:9: error[unresolved-attribute] Unresolved attribute `label` on type `AsyncHome`. +homeassistant/components/homematicip_cloud/hap.py:294:9: error[unresolved-attribute] Unresolved attribute `modelType` on type `AsyncHome`. +homeassistant/components/homematicip_cloud/helpers.py:49:49: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, Any]` has no attribute `__name__` +homeassistant/components/homematicip_cloud/light.py:137:16: warning[possibly-missing-attribute] Attribute `on` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/light.py:142:20: warning[possibly-missing-attribute] Attribute `dimLevel` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/light.py:148:13: warning[possibly-missing-attribute] Attribute `hue` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/light.py:149:16: warning[possibly-missing-attribute] Attribute `saturationLevel` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/light.py:153:13: warning[possibly-missing-attribute] Attribute `hue` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/light.py:154:13: warning[possibly-missing-attribute] Attribute `saturationLevel` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/light.py:166:19: warning[possibly-missing-attribute] Attribute `hue` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/light.py:167:26: warning[possibly-missing-attribute] Attribute `saturationLevel` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/light.py:171:25: warning[possibly-missing-attribute] Attribute `dimLevel` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/light.py:173:15: warning[possibly-missing-attribute] Attribute `set_hue_saturation_dim_level_async` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/light.py:179:15: warning[possibly-missing-attribute] Attribute `set_switch_state_async` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/light.py:392:13: error[invalid-argument-type] Argument to bound method `async_set_optical_signal` is incorrect: Expected `OpticalSignalBehaviour`, found `str | None | Any` +homeassistant/components/homematicip_cloud/sensor.py:310:16: warning[possibly-missing-attribute] Attribute `waterFlow` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/sensor.py:561:17: warning[possibly-missing-attribute] Attribute `vaporAmount` may be missing on object of type `(Unknown & ~None) | FunctionalChannel` +homeassistant/components/homematicip_cloud/sensor.py:565:13: warning[possibly-missing-attribute] Attribute `vaporAmount` may be missing on object of type `(Unknown & ~None) | FunctionalChannel` +homeassistant/components/homematicip_cloud/sensor.py:566:16: warning[possibly-missing-attribute] Attribute `vaporAmount` may be missing on object of type `(Unknown & ~None) | FunctionalChannel` +homeassistant/components/homematicip_cloud/switch.py:116:16: warning[possibly-missing-attribute] Attribute `on` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/switch.py:120:15: warning[possibly-missing-attribute] Attribute `async_turn_on` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/switch.py:124:15: warning[possibly-missing-attribute] Attribute `async_turn_off` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/valve.py:50:15: warning[possibly-missing-attribute] Attribute `set_watering_switch_state_async` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/valve.py:54:15: warning[possibly-missing-attribute] Attribute `set_watering_switch_state_async` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/valve.py:59:16: warning[possibly-missing-attribute] Attribute `wateringActive` may be missing on object of type `Unknown | FunctionalChannel` +homeassistant/components/homematicip_cloud/weather.py:127:9: error[unresolved-attribute] Unresolved attribute `modelType` on type `AsyncHome`. +homeassistant/components/homematicip_cloud/weather.py:133:16: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `Unknown | None` +homeassistant/components/homematicip_cloud/weather.py:138:27: warning[possibly-missing-attribute] Attribute `city` may be missing on object of type `Unknown | None | Location` +homeassistant/components/honeywell/__init__.py:61:12: error[unresolved-attribute] Module `aiosomecomfort` has no member `device` +homeassistant/components/honeywell/__init__.py:65:9: error[unresolved-attribute] Module `aiosomecomfort` has no member `device` +homeassistant/components/honeywell/__init__.py:66:9: error[unresolved-attribute] Module `aiosomecomfort` has no member `device` +homeassistant/components/honeywell/__init__.py:67:9: error[unresolved-attribute] Module `aiosomecomfort` has no member `device` +homeassistant/components/honeywell/__init__.py:102:24: error[unresolved-attribute] Module `aiosomecomfort` has no member `device` +homeassistant/components/honeywell/climate.py:286:16: error[invalid-return-type] Return type does not match returned value: expected `int | None`, found `Unknown | int | float | None` +homeassistant/components/horizon/media_player.py:9:6: error[unresolved-import] Cannot resolve imported module `horimote` +homeassistant/components/horizon/media_player.py:10:6: error[unresolved-import] Cannot resolve imported module `horimote.exceptions` +homeassistant/components/hp_ilo/sensor.py:8:8: error[unresolved-import] Cannot resolve imported module `hpilo` +homeassistant/components/html5/notify.py:481:13: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | str | dict[Unknown, Unknown]` +homeassistant/components/html5/notify.py:484:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `str` +homeassistant/components/http/decorators.py:33:6: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/http/decorators.py:34:5: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/http/decorators.py:44:12: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/http/decorators.py:45:6: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/http/decorators.py:53:12: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/http/decorators.py:59:10: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/http/decorators.py:60:9: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/http/decorators.py:62:7: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/http/decorators.py:67:15: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/http/decorators.py:68:10: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/huawei_lte/sensor.py:903:69: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/hue/__init__.py:40:37: warning[possibly-missing-attribute] Attribute `bridge_id` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/__init__.py:76:54: warning[possibly-missing-attribute] Attribute `mac_address` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/__init__.py:77:35: warning[possibly-missing-attribute] Attribute `bridge_id` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/__init__.py:79:18: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/__init__.py:80:22: warning[possibly-missing-attribute] Attribute `model_id` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/__init__.py:81:24: warning[possibly-missing-attribute] Attribute `software_version` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/__init__.py:85:13: warning[possibly-missing-attribute] Attribute `model_id` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/__init__.py:86:17: warning[possibly-missing-attribute] Attribute `software_version` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/__init__.py:101:54: warning[possibly-missing-attribute] Attribute `mac_address` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/__init__.py:103:26: warning[possibly-missing-attribute] Attribute `bridge_id` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/__init__.py:104:26: warning[possibly-missing-attribute] Attribute `bridge_device` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/__init__.py:106:26: warning[possibly-missing-attribute] Attribute `bridge_device` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/__init__.py:107:18: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/__init__.py:108:22: warning[possibly-missing-attribute] Attribute `model_id` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/__init__.py:109:24: warning[possibly-missing-attribute] Attribute `software_version` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/config_flow.py:98:20: error[invalid-return-type] Return type does not match returned value: expected `DiscoveredHueBridge`, found `None` +homeassistant/components/hue/diagnostics.py:21:18: warning[possibly-missing-attribute] Attribute `get_diagnostics` may be missing on object of type `Unknown | HueBridgeV1 | HueBridgeV2` +homeassistant/components/hue/event.py:33:24: error[invalid-assignment] Object of type `Unknown | HueBridgeV1 | HueBridgeV2` is not assignable to `HueBridgeV2` +homeassistant/components/hue/event.py:48:76: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `HueResource`, found `RelativeRotary` +homeassistant/components/hue/event.py:66:56: error[invalid-argument-type] Argument to function `async_add_entity` is incorrect: Expected `Button | RelativeRotary | BellButton`, found `Unknown | type[Button] | type[BellButton]` +homeassistant/components/hue/event.py:71:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_entity(event_type: EventType, resource: Button | RelativeRotary | BellButton) -> None` +homeassistant/components/hue/event.py:71:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_entity(event_type: EventType, resource: Button | RelativeRotary | BellButton) -> None` +homeassistant/components/hue/event.py:71:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_entity(event_type: EventType, resource: Button | RelativeRotary | BellButton) -> None` +homeassistant/components/hue/event.py:92:22: warning[possibly-missing-attribute] Attribute `id` may be missing on object of type `Unknown | Device | None` +homeassistant/components/hue/event.py:93:20: warning[possibly-missing-attribute] Attribute `devices` may be missing on object of type `Unknown | HueBridgeV1 | HueBridgeV2` +homeassistant/components/hue/event.py:100:9: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | int]` is not assignable to attribute `_attr_translation_placeholders` of type `Mapping[str, str]` +homeassistant/components/hue/event.py:115:43: error[invalid-argument-type] Argument to bound method `_handle_event` is incorrect: Expected `HueResource`, found `Button | BellButton` +homeassistant/components/hue/event.py:162:43: error[invalid-argument-type] Argument to bound method `_handle_event` is incorrect: Expected `HueResource`, found `RelativeRotary` +homeassistant/components/hue/migration.py:89:16: error[invalid-context-manager] Object of type `HueBridgeV2` cannot be used with `async with` because it does not correctly implement `__aexit__` +homeassistant/components/hue/migration.py:130:42: error[no-matching-overload] No overload of function `iter` matches arguments +homeassistant/components/hue/migration.py:189:37: warning[possibly-missing-attribute] Attribute `grouped_light` may be missing on object of type `Room | GroupedLight | (Unknown & ~None) | (type[Room] & ~AlwaysFalsy) | type[Zone]` +homeassistant/components/hue/migration.py:196:29: warning[possibly-missing-attribute] Attribute `grouped_light` may be missing on object of type `Room | GroupedLight | (Unknown & ~None) | (type[Room] & ~AlwaysFalsy) | type[Zone]` +homeassistant/components/hue/migration.py:204:60: error[invalid-argument-type] Argument to bound method `async_update_entity` is incorrect: Expected `str | UndefinedType`, found `str | (Unknown & ~None) | property` +homeassistant/components/hue/scene.py:40:24: error[invalid-assignment] Object of type `Unknown | HueBridgeV1 | HueBridgeV2` is not assignable to `HueBridgeV2` +homeassistant/components/hue/scene.py:63:30: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_entity(event_type: EventType, resource: Scene | SmartScene) -> None` +homeassistant/components/hue/scene.py:98:34: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `BaseResourcesController[Unknown]`, found `ScenesController` +homeassistant/components/hue/scene.py:98:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `HueResource`, found `Scene | SmartScene` +homeassistant/components/hue/scene.py:113:13: warning[possibly-missing-attribute] Attribute `subscribe` may be missing on object of type `Unknown | Groups | None | GroupsController` +homeassistant/components/hue/scene.py:114:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `bound method Self@async_added_to_hass._handle_event(event_type: EventType, resource: Light | DevicePower | GroupedLight | LightLevel | Motion) -> None` +homeassistant/components/hue/scene.py:123:16: warning[possibly-missing-attribute] Attribute `metadata` may be missing on object of type `Unknown | Scene | SmartScene | ... omitted 5 union elements` +homeassistant/components/hue/scene.py:133:13: warning[possibly-missing-attribute] Attribute `palette` may be missing on object of type `Unknown | Scene | SmartScene | ... omitted 5 union elements` +homeassistant/components/hue/scene.py:134:17: warning[possibly-missing-attribute] Attribute `palette` may be missing on object of type `Unknown | Scene | SmartScene | ... omitted 5 union elements` +homeassistant/components/hue/scene.py:135:21: warning[possibly-missing-attribute] Attribute `palette` may be missing on object of type `Unknown | Scene | SmartScene | ... omitted 5 union elements` +homeassistant/components/hue/scene.py:139:13: warning[possibly-missing-attribute] Attribute `palette` may be missing on object of type `Unknown | Scene | SmartScene | ... omitted 5 union elements` +homeassistant/components/hue/scene.py:140:17: warning[possibly-missing-attribute] Attribute `palette` may be missing on object of type `Unknown | Scene | SmartScene | ... omitted 5 union elements` +homeassistant/components/hue/scene.py:141:21: warning[possibly-missing-attribute] Attribute `palette` may be missing on object of type `Unknown | Scene | SmartScene | ... omitted 5 union elements` +homeassistant/components/hue/scene.py:158:17: warning[possibly-missing-attribute] Attribute `scene` may be missing on object of type `Unknown | ScenesController | BaseResourcesController[Unknown]` +homeassistant/components/hue/scene.py:164:13: warning[possibly-missing-attribute] Attribute `scene` may be missing on object of type `Unknown | ScenesController | BaseResourcesController[Unknown]` +homeassistant/components/hue/scene.py:175:23: warning[possibly-missing-attribute] Attribute `palette` may be missing on object of type `Unknown | Scene | SmartScene | ... omitted 5 union elements` +homeassistant/components/hue/scene.py:180:27: warning[possibly-missing-attribute] Attribute `actions` may be missing on object of type `Unknown | Scene | SmartScene | ... omitted 5 union elements` +homeassistant/components/hue/scene.py:190:21: warning[possibly-missing-attribute] Attribute `metadata` may be missing on object of type `Unknown | Scene | SmartScene | ... omitted 5 union elements` +homeassistant/components/hue/scene.py:191:22: warning[possibly-missing-attribute] Attribute `speed` may be missing on object of type `Unknown | Scene | SmartScene | ... omitted 5 union elements` +homeassistant/components/hue/scene.py:203:16: warning[possibly-missing-attribute] Attribute `state` may be missing on object of type `Unknown | Scene | SmartScene | ... omitted 5 union elements` +homeassistant/components/hue/scene.py:209:13: warning[possibly-missing-attribute] Attribute `smart_scene` may be missing on object of type `Unknown | ScenesController | BaseResourcesController[Unknown]` +homeassistant/components/hue/scene.py:219:21: warning[possibly-missing-attribute] Attribute `metadata` may be missing on object of type `Unknown | Scene | SmartScene | ... omitted 5 union elements` +homeassistant/components/hue/scene.py:222:31: warning[possibly-missing-attribute] Attribute `active_timeslot` may be missing on object of type `Unknown | Scene | SmartScene | ... omitted 5 union elements` +homeassistant/components/hue/scene.py:223:41: warning[possibly-missing-attribute] Attribute `active_timeslot` may be missing on object of type `Unknown | Scene | SmartScene | ... omitted 5 union elements` +homeassistant/components/hue/scene.py:224:43: warning[possibly-missing-attribute] Attribute `active_timeslot` may be missing on object of type `Unknown | Scene | SmartScene | ... omitted 5 union elements` +homeassistant/components/hue/scene.py:228:33: warning[possibly-missing-attribute] Attribute `week_timeslots` may be missing on object of type `Unknown | Scene | SmartScene | ... omitted 5 union elements` +homeassistant/components/hue/scene.py:230:33: warning[possibly-missing-attribute] Attribute `active_timeslot` may be missing on object of type `Unknown | Scene | SmartScene | ... omitted 5 union elements` +homeassistant/components/hue/services.py:87:24: error[invalid-assignment] Object of type `Unknown | HueBridgeV1 | HueBridgeV2` is not assignable to `HueBridgeV1` +homeassistant/components/hue/services.py:93:29: warning[possibly-missing-attribute] Attribute `values` may be missing on object of type `Groups | None` +homeassistant/components/hue/services.py:109:41: warning[possibly-missing-attribute] Attribute `update` may be missing on object of type `Groups | None` +homeassistant/components/hue/services.py:145:24: error[invalid-assignment] Object of type `Unknown | HueBridgeV1 | HueBridgeV2` is not assignable to `HueBridgeV2` +homeassistant/components/hue/switch.py:37:24: error[invalid-assignment] Object of type `Unknown | HueBridgeV1 | HueBridgeV2` is not assignable to `HueBridgeV2` +homeassistant/components/hue/switch.py:63:56: error[invalid-argument-type] Argument to function `async_add_entity` is incorrect: Expected `BehaviorInstance | LightLevel | Motion`, found `type[BehaviorInstance] | type[LightLevel] | type[Motion]` +homeassistant/components/hue/switch.py:68:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_entity(event_type: EventType, resource: BehaviorInstance | LightLevel | Motion) -> None` +homeassistant/components/hue/switch.py:68:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_entity(event_type: EventType, resource: BehaviorInstance | LightLevel | Motion) -> None` +homeassistant/components/hue/switch.py:68:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_entity(event_type: EventType, resource: BehaviorInstance | LightLevel | Motion) -> None` +homeassistant/components/hue/v1/light.py:150:41: warning[possibly-missing-attribute] Attribute `apiversion` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/v1/light.py:164:57: warning[possibly-missing-attribute] Attribute `update` may be missing on object of type `Unknown | Lights | None | LightsController` +homeassistant/components/hue/v1/light.py:199:57: warning[possibly-missing-attribute] Attribute `update` may be missing on object of type `Unknown | Groups | None | GroupsController` +homeassistant/components/hue/v1/light.py:227:24: error[not-iterable] Object of type `Unknown | Groups | None | GroupsController` may not be iterable +homeassistant/components/hue/v1/light.py:228:21: error[invalid-argument-type] Method `__getitem__` of type `bound method GroupsController.__getitem__(id: str) -> Room | GroupedLight` cannot be called with key of type `Unknown | Room | GroupedLight` on object of type `GroupsController` +homeassistant/components/hue/v1/light.py:228:21: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/hue/v1/light.py:231:29: warning[possibly-missing-attribute] Attribute `lights` may be missing on object of type `Unknown | Room | GroupedLight` +homeassistant/components/hue/v1/light.py:232:35: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | Room | GroupedLight` +homeassistant/components/hue/v1/light.py:236:34: error[invalid-argument-type] Argument to bound method `remove` is incorrect: Expected `() -> None`, found `None` +homeassistant/components/hue/v1/light.py:237:9: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/hue/v1/light.py:439:61: error[too-many-positional-arguments] Too many positional arguments to function `color_xy_to_hs`: expected 3, got 4 +homeassistant/components/hue/v1/light.py:554:78: error[too-many-positional-arguments] Too many positional arguments to function `color_hs_to_xy`: expected 3, got 4 +homeassistant/components/hue/v1/sensor_base.py:134:24: warning[possibly-missing-attribute] Attribute `format` may be missing on object of type `@Todo | str | ` +homeassistant/components/hue/v1/sensor_base.py:135:29: error[call-non-callable] Object of type `str` is not callable +homeassistant/components/hue/v2/binary_sensor.py:75:27: warning[possibly-missing-attribute] Attribute `get_parent` may be missing on object of type `ControllerType` +homeassistant/components/hue/v2/binary_sensor.py:92:24: error[invalid-assignment] Object of type `Unknown | HueBridgeV1 | HueBridgeV2` is not assignable to `HueBridgeV2` +homeassistant/components/hue/v2/binary_sensor.py:96:45: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `(...) -> Unknown`, found `SensorType` +homeassistant/components/hue/v2/binary_sensor.py:109:32: error[invalid-argument-type] Argument to function `_resource_valid` is incorrect: Expected `SensorType`, found `type[CameraMotion] | type[Contact] | type[Motion] | ... omitted 4 union elements` +homeassistant/components/hue/v2/binary_sensor.py:115:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_sensor(event_type: EventType, resource: SensorType) -> None` +homeassistant/components/hue/v2/binary_sensor.py:115:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_sensor(event_type: EventType, resource: SensorType) -> None` +homeassistant/components/hue/v2/binary_sensor.py:115:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_sensor(event_type: EventType, resource: SensorType) -> None` +homeassistant/components/hue/v2/binary_sensor.py:115:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_sensor(event_type: EventType, resource: SensorType) -> None` +homeassistant/components/hue/v2/binary_sensor.py:115:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_sensor(event_type: EventType, resource: SensorType) -> None` +homeassistant/components/hue/v2/binary_sensor.py:115:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_sensor(event_type: EventType, resource: SensorType) -> None` +homeassistant/components/hue/v2/binary_sensor.py:115:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_sensor(event_type: EventType, resource: SensorType) -> None` +homeassistant/components/hue/v2/binary_sensor.py:120:47: error[invalid-argument-type] Argument to function `register_items` is incorrect: Expected `SensorType`, found `` +homeassistant/components/hue/v2/binary_sensor.py:121:40: error[invalid-argument-type] Argument to function `register_items` is incorrect: Expected `SensorType`, found `` +homeassistant/components/hue/v2/binary_sensor.py:122:60: error[invalid-argument-type] Argument to function `register_items` is incorrect: Expected `SensorType`, found `` +homeassistant/components/hue/v2/binary_sensor.py:123:41: error[invalid-argument-type] Argument to function `register_items` is incorrect: Expected `SensorType`, found `` +homeassistant/components/hue/v2/binary_sensor.py:124:40: error[invalid-argument-type] Argument to function `register_items` is incorrect: Expected `SensorType`, found `` +homeassistant/components/hue/v2/binary_sensor.py:125:48: error[invalid-argument-type] Argument to function `register_items` is incorrect: Expected `SensorType`, found `` +homeassistant/components/hue/v2/binary_sensor.py:126:54: error[invalid-argument-type] Argument to function `register_items` is incorrect: Expected `SensorType`, found `` +homeassistant/components/hue/v2/binary_sensor.py:169:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `HueResource`, found `GroupedMotion` +homeassistant/components/hue/v2/binary_sensor.py:174:35: warning[possibly-missing-attribute] Attribute `id` may be missing on object of type `ServiceGroup | Room | BridgeHome | None` +homeassistant/components/hue/v2/binary_sensor.py:210:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `HueResource`, found `SecurityAreaMotion` +homeassistant/components/hue/v2/binary_sensor.py:216:22: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/hue/v2/binary_sensor.py:226:13: warning[possibly-missing-attribute] Attribute `subscribe` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/v2/binary_sensor.py:227:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `bound method Self@async_added_to_hass._handle_event(event_type: EventType, resource: Light | DevicePower | GroupedLight | LightLevel | Motion) -> None` +homeassistant/components/hue/v2/binary_sensor.py:275:16: warning[possibly-missing-attribute] Attribute `state` may be missing on object of type `ContactReport | None` +homeassistant/components/hue/v2/device.py:38:24: error[invalid-assignment] Object of type `Unknown | HueBridgeV1 | HueBridgeV2` is not assignable to `HueBridgeV2` +homeassistant/components/hue/v2/device.py:71:13: warning[possibly-missing-attribute] Attribute `add` may be missing on object of type `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | URL | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `set[tuple[str, str]] | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | datetime | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `DeviceEntryDisabler | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `DeviceEntryType | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `set[tuple[str, str]] | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | datetime | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `Mapping[str, str] | None`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:78:76: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `tuple[str, str] | None | UndefinedType`, found `Unknown | set[Unknown | tuple[str, str]] | str` +homeassistant/components/hue/v2/device.py:103:34: error[invalid-argument-type] Argument to function `add_device` is incorrect: Expected `Device | Room | ServiceGroup`, found `Unknown | type[Room]` +homeassistant/components/hue/v2/device.py:104:34: error[invalid-argument-type] Argument to function `add_device` is incorrect: Expected `Device | Room | ServiceGroup`, found `Unknown | type[Zone]` +homeassistant/components/hue/v2/device.py:105:34: error[invalid-argument-type] Argument to function `add_device` is incorrect: Expected `Device | Room | ServiceGroup`, found `Unknown | type[ServiceGroup]` +homeassistant/components/hue/v2/device.py:113:52: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def handle_device_event(evt_type: EventType, hue_resource: Device | Room | ServiceGroup) -> None` +homeassistant/components/hue/v2/device.py:114:53: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def handle_device_event(evt_type: EventType, hue_resource: Device | Room | ServiceGroup) -> None` +homeassistant/components/hue/v2/device.py:115:53: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def handle_device_event(evt_type: EventType, hue_resource: Device | Room | ServiceGroup) -> None` +homeassistant/components/hue/v2/device.py:116:62: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def handle_device_event(evt_type: EventType, hue_resource: Device | Room | ServiceGroup) -> None` +homeassistant/components/hue/v2/device_trigger.py:88:24: error[invalid-assignment] Object of type `Unknown | HueBridgeV1 | HueBridgeV2` is not assignable to `HueBridgeV2` +homeassistant/components/hue/v2/device_trigger.py:94:16: error[invalid-argument-type] Method `__getitem__` of type `bound method DevicesController.__getitem__(id: str) -> type[Device]` cannot be called with key of type `str | None` on object of type `DevicesController` +homeassistant/components/hue/v2/device_trigger.py:96:45: error[invalid-argument-type] Argument to bound method `get_sensors` is incorrect: Expected `str`, found `str | None` +homeassistant/components/hue/v2/device_trigger.py:105:35: warning[possibly-missing-attribute] Attribute `metadata` may be missing on object of type `DevicePower | BellButton | Button | ... omitted 13 union elements` +homeassistant/components/hue/v2/entity.py:63:39: warning[possibly-missing-attribute] Attribute `bridge` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/v2/entity.py:79:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `bound method Self@async_added_to_hass._handle_event(event_type: EventType, resource: Light | DevicePower | GroupedLight | LightLevel | Motion) -> None` +homeassistant/components/hue/v2/entity.py:81:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `EventType | tuple[EventType] | None`, found `tuple[Literal[EventType.RESOURCE_UPDATED], Literal[EventType.RESOURCE_DELETED]]` +homeassistant/components/hue/v2/entity.py:88:13: warning[possibly-missing-attribute] Attribute `devices` may be missing on object of type `Unknown | HueBridgeV1 | HueBridgeV2` +homeassistant/components/hue/v2/entity.py:89:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `bound method Self@async_added_to_hass._handle_event(event_type: EventType, resource: Light | DevicePower | GroupedLight | LightLevel | Motion) -> None` +homeassistant/components/hue/v2/entity.py:95:22: warning[possibly-missing-attribute] Attribute `devices` may be missing on object of type `Unknown | HueBridgeV1 | HueBridgeV2` +homeassistant/components/hue/v2/entity.py:97:17: warning[possibly-missing-attribute] Attribute `zigbee_connectivity` may be missing on object of type `Unknown | Sensors | None | SensorsController` +homeassistant/components/hue/v2/entity.py:98:21: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `bound method Self@async_added_to_hass._handle_event(event_type: EventType, resource: Light | DevicePower | GroupedLight | LightLevel | Motion) -> None` +homeassistant/components/hue/v2/entity.py:116:22: warning[possibly-missing-attribute] Attribute `devices` may be missing on object of type `Unknown | HueBridgeV1 | HueBridgeV2` +homeassistant/components/hue/v2/entity.py:172:21: error[unresolved-attribute] Object of type `object` has no attribute `on` +homeassistant/components/hue/v2/entity.py:176:22: warning[possibly-missing-attribute] Attribute `devices` may be missing on object of type `Unknown | HueBridgeV1 | HueBridgeV2` +homeassistant/components/hue/v2/group.py:49:24: error[invalid-assignment] Object of type `Unknown | HueBridgeV1 | HueBridgeV2` is not assignable to `HueBridgeV2` +homeassistant/components/hue/v2/group.py:74:61: error[invalid-argument-type] Argument to function `async_add_light` is incorrect: Expected `GroupedLight`, found `Unknown | type[GroupedLight]` +homeassistant/components/hue/v2/group.py:79:13: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_light(event_type: EventType, resource: GroupedLight) -> CoroutineType[Any, Any, None]` +homeassistant/components/hue/v2/group.py:99:22: warning[possibly-missing-attribute] Attribute `grouped_light` may be missing on object of type `Unknown | Groups | None | GroupsController` +homeassistant/components/hue/v2/group.py:123:39: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `bound method Self@async_added_to_hass._handle_event(event_type: EventType, resource: Light | DevicePower | GroupedLight | LightLevel | Motion) -> None` +homeassistant/components/hue/v2/group.py:129:31: warning[possibly-missing-attribute] Attribute `get_lights` may be missing on object of type `Unknown | GroupedLightController | BaseResourcesController[Unknown]` +homeassistant/components/hue/v2/group.py:132:43: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `bound method Self@async_added_to_hass._handle_event(event_type: EventType, resource: Light | DevicePower | GroupedLight | LightLevel | Motion) -> None` +homeassistant/components/hue/v2/group.py:132:63: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `str | tuple[str] | None`, found `tuple[Unknown | str, ...]` +homeassistant/components/hue/v2/group.py:138:16: warning[possibly-missing-attribute] Attribute `on` may be missing on object of type `Unknown | GroupedLight | Light | ... omitted 3 union elements` +homeassistant/components/hue/v2/group.py:138:16: warning[possibly-missing-attribute] Attribute `on` may be missing on object of type `Unknown | OnFeature | None` +homeassistant/components/hue/v2/group.py:147:27: warning[possibly-missing-attribute] Attribute `get_lights` may be missing on object of type `Unknown | GroupedLightController | BaseResourcesController[Unknown]` +homeassistant/components/hue/v2/group.py:150:13: error[invalid-argument-type] Argument to bound method `_get_names_and_entity_ids_for_resource_ids` is incorrect: Expected `tuple[str]`, found `tuple[Unknown | str, ...]` +homeassistant/components/hue/v2/group.py:190:13: warning[possibly-missing-attribute] Attribute `set_state` may be missing on object of type `Unknown | GroupedLightController | BaseResourcesController[Unknown]` +homeassistant/components/hue/v2/group.py:212:13: warning[possibly-missing-attribute] Attribute `set_state` may be missing on object of type `Unknown | GroupedLightController | BaseResourcesController[Unknown]` +homeassistant/components/hue/v2/group.py:221:13: warning[possibly-missing-attribute] Attribute `set_flash` may be missing on object of type `Unknown | GroupedLightController | BaseResourcesController[Unknown]` +homeassistant/components/hue/v2/group.py:240:22: warning[possibly-missing-attribute] Attribute `get_lights` may be missing on object of type `Unknown | GroupedLightController | BaseResourcesController[Unknown]` +homeassistant/components/hue/v2/group.py:372:29: warning[possibly-missing-attribute] Attribute `metadata` may be missing on object of type `Unknown | Device | None` +homeassistant/components/hue/v2/hue_event.py:33:24: error[invalid-assignment] Object of type `Unknown | HueBridgeV1 | HueBridgeV2` is not assignable to `HueBridgeV2` +homeassistant/components/hue/v2/hue_event.py:50:65: warning[possibly-missing-attribute] Attribute `id` may be missing on object of type `Unknown | Device | None` +homeassistant/components/hue/v2/hue_event.py:55:33: warning[possibly-missing-attribute] Attribute `metadata` may be missing on object of type `Unknown | Device | None` +homeassistant/components/hue/v2/hue_event.py:58:24: warning[possibly-missing-attribute] Attribute `event` may be missing on object of type `ButtonReport | None` +homeassistant/components/hue/v2/hue_event.py:66:13: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def handle_button_event(evt_type: EventType, hue_resource: Button) -> None` +homeassistant/components/hue/v2/hue_event.py:76:65: warning[possibly-missing-attribute] Attribute `id` may be missing on object of type `Unknown | Device | None` +homeassistant/components/hue/v2/hue_event.py:82:24: warning[possibly-missing-attribute] Attribute `rotary_report` may be missing on object of type `RelativeRotaryFeature | None` +homeassistant/components/hue/v2/hue_event.py:82:24: warning[possibly-missing-attribute] Attribute `action` may be missing on object of type `RelativeRotaryReport | None` +homeassistant/components/hue/v2/hue_event.py:83:27: warning[possibly-missing-attribute] Attribute `rotary_report` may be missing on object of type `RelativeRotaryFeature | None` +homeassistant/components/hue/v2/hue_event.py:83:27: warning[possibly-missing-attribute] Attribute `rotation` may be missing on object of type `RelativeRotaryReport | None` +homeassistant/components/hue/v2/hue_event.py:84:28: warning[possibly-missing-attribute] Attribute `rotary_report` may be missing on object of type `RelativeRotaryFeature | None` +homeassistant/components/hue/v2/hue_event.py:84:28: warning[possibly-missing-attribute] Attribute `rotation` may be missing on object of type `RelativeRotaryReport | None` +homeassistant/components/hue/v2/hue_event.py:85:25: warning[possibly-missing-attribute] Attribute `rotary_report` may be missing on object of type `RelativeRotaryFeature | None` +homeassistant/components/hue/v2/hue_event.py:85:25: warning[possibly-missing-attribute] Attribute `rotation` may be missing on object of type `RelativeRotaryReport | None` +homeassistant/components/hue/v2/hue_event.py:92:13: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def handle_rotary_event(evt_type: EventType, hue_resource: RelativeRotary) -> None` +homeassistant/components/hue/v2/light.py:58:24: error[invalid-assignment] Object of type `Unknown | HueBridgeV1 | HueBridgeV2` is not assignable to `HueBridgeV2` +homeassistant/components/hue/v2/light.py:71:30: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_light(event_type: EventType, resource: Light) -> None` +homeassistant/components/hue/v2/light.py:89:12: warning[possibly-missing-attribute] Attribute `alert` may be missing on object of type `Unknown | Light | DevicePower | ... omitted 3 union elements` +homeassistant/components/hue/v2/light.py:89:36: warning[possibly-missing-attribute] Attribute `alert` may be missing on object of type `Unknown | Light | DevicePower | ... omitted 3 union elements` +homeassistant/components/hue/v2/light.py:130:23: warning[possibly-missing-attribute] Attribute `dimming` may be missing on object of type `Unknown | Light | DevicePower | ... omitted 3 union elements` +homeassistant/components/hue/v2/light.py:138:16: warning[possibly-missing-attribute] Attribute `on` may be missing on object of type `Unknown | Light | DevicePower | ... omitted 3 union elements` +homeassistant/components/hue/v2/light.py:138:16: warning[possibly-missing-attribute] Attribute `on` may be missing on object of type `Unknown | OnFeature | None` +homeassistant/components/hue/v2/light.py:156:22: warning[possibly-missing-attribute] Attribute `color_temperature` may be missing on object of type `Unknown | Light | DevicePower | ... omitted 3 union elements` +homeassistant/components/hue/v2/light.py:161:12: warning[possibly-missing-attribute] Attribute `product_data` may be missing on object of type `Unknown | Device | None` +homeassistant/components/hue/v2/light.py:162:20: warning[possibly-missing-attribute] Attribute `color_temperature` may be missing on object of type `Unknown | Light | DevicePower | ... omitted 3 union elements` +homeassistant/components/hue/v2/light.py:162:20: warning[possibly-missing-attribute] Attribute `mirek_valid` may be missing on object of type `Unknown | ColorTemperatureFeature | None` +homeassistant/components/hue/v2/light.py:168:21: warning[possibly-missing-attribute] Attribute `color` may be missing on object of type `Unknown | Light | DevicePower | ... omitted 3 union elements` +homeassistant/components/hue/v2/light.py:175:26: warning[possibly-missing-attribute] Attribute `color_temperature` may be missing on object of type `Unknown | Light | DevicePower | ... omitted 3 union elements` +homeassistant/components/hue/v2/light.py:176:65: error[invalid-argument-type] Argument to function `color_temperature_mired_to_kelvin` is incorrect: Expected `int | float`, found `Unknown | int | None` +homeassistant/components/hue/v2/light.py:183:26: warning[possibly-missing-attribute] Attribute `color_temperature` may be missing on object of type `Unknown | Light | DevicePower | ... omitted 3 union elements` +homeassistant/components/hue/v2/light.py:191:26: warning[possibly-missing-attribute] Attribute `color_temperature` may be missing on object of type `Unknown | Light | DevicePower | ... omitted 3 union elements` +homeassistant/components/hue/v2/light.py:210:21: warning[possibly-missing-attribute] Attribute `mode` may be missing on object of type `Unknown | Light | DevicePower | ... omitted 3 union elements` +homeassistant/components/hue/v2/light.py:211:25: warning[possibly-missing-attribute] Attribute `dynamics` may be missing on object of type `Unknown | Light | DevicePower | ... omitted 3 union elements` +homeassistant/components/hue/v2/light.py:211:25: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Unknown | DynamicsFeature | None` +homeassistant/components/hue/v2/light.py:217:23: warning[possibly-missing-attribute] Attribute `effects` may be missing on object of type `Unknown | Light | DevicePower | ... omitted 3 union elements` +homeassistant/components/hue/v2/light.py:220:29: warning[possibly-missing-attribute] Attribute `timed_effects` may be missing on object of type `Unknown | Light | DevicePower | ... omitted 3 union elements` +homeassistant/components/hue/v2/light.py:293:13: warning[possibly-missing-attribute] Attribute `set_state` may be missing on object of type `Unknown | LightsController | BaseResourcesController[Unknown]` +homeassistant/components/hue/v2/light.py:306:39: warning[possibly-missing-attribute] Attribute `dimming` may be missing on object of type `Unknown | Light | DevicePower | ... omitted 3 union elements` +homeassistant/components/hue/v2/light.py:307:37: warning[possibly-missing-attribute] Attribute `dimming` may be missing on object of type `Unknown | Light | DevicePower | ... omitted 3 union elements` +homeassistant/components/hue/v2/light.py:318:13: warning[possibly-missing-attribute] Attribute `set_state` may be missing on object of type `Unknown | LightsController | BaseResourcesController[Unknown]` +homeassistant/components/hue/v2/light.py:327:13: warning[possibly-missing-attribute] Attribute `set_flash` may be missing on object of type `Unknown | LightsController | BaseResourcesController[Unknown]` +homeassistant/components/hue/v2/sensor.py:71:16: warning[possibly-missing-attribute] Attribute `children` may be missing on object of type `(Room & ~AlwaysFalsy) | (GroupedLight & ~AlwaysFalsy) | (Bridge & ~AlwaysFalsy) | ... omitted 5 union elements` +homeassistant/components/hue/v2/sensor.py:84:24: error[invalid-assignment] Object of type `Unknown | HueBridgeV1 | HueBridgeV2` is not assignable to `HueBridgeV2` +homeassistant/components/hue/v2/sensor.py:89:38: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `(...) -> Unknown`, found `SensorType` +homeassistant/components/hue/v2/sensor.py:102:32: error[invalid-argument-type] Argument to function `_resource_valid` is incorrect: Expected `SensorType`, found `type[DevicePower] | type[LightLevel] | type[Temperature] | type[ZigbeeConnectivity] | type[GroupedLightLevel]` +homeassistant/components/hue/v2/sensor.py:108:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_sensor(event_type: EventType, resource: SensorType) -> None` +homeassistant/components/hue/v2/sensor.py:108:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_sensor(event_type: EventType, resource: SensorType) -> None` +homeassistant/components/hue/v2/sensor.py:108:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_sensor(event_type: EventType, resource: SensorType) -> None` +homeassistant/components/hue/v2/sensor.py:108:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_sensor(event_type: EventType, resource: SensorType) -> None` +homeassistant/components/hue/v2/sensor.py:108:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(EventType, dict[Unknown, Unknown] | None, /) -> None`, found `def async_add_sensor(event_type: EventType, resource: SensorType) -> None` +homeassistant/components/hue/v2/sensor.py:113:43: error[invalid-argument-type] Argument to function `register_items` is incorrect: Expected `SensorType`, found `` +homeassistant/components/hue/v2/sensor.py:114:43: error[invalid-argument-type] Argument to function `register_items` is incorrect: Expected `SensorType`, found `` +homeassistant/components/hue/v2/sensor.py:115:44: error[invalid-argument-type] Argument to function `register_items` is incorrect: Expected `SensorType`, found `` +homeassistant/components/hue/v2/sensor.py:116:51: error[invalid-argument-type] Argument to function `register_items` is incorrect: Expected `SensorType`, found `` +homeassistant/components/hue/v2/sensor.py:117:53: error[invalid-argument-type] Argument to function `register_items` is incorrect: Expected `SensorType`, found `` +homeassistant/components/hue/v2/sensor.py:131:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `HueResource`, found `SensorType` +homeassistant/components/hue/v2/sensor.py:151:16: error[no-matching-overload] No overload of function `round` matches arguments +homeassistant/components/hue/v2/sensor.py:151:22: warning[possibly-missing-attribute] Attribute `temperature` may be missing on object of type `Unknown | DevicePower | LightLevel | ... omitted 6 union elements` +homeassistant/components/hue/v2/sensor.py:173:28: error[unsupported-operator] Operator `-` is unsupported between objects of type `Unknown | int | None` and `Literal[1]` +homeassistant/components/hue/v2/sensor.py:173:28: warning[possibly-missing-attribute] Attribute `light` may be missing on object of type `Unknown | DevicePower | LightLevel | ... omitted 6 union elements` +homeassistant/components/hue/v2/sensor.py:179:28: warning[possibly-missing-attribute] Attribute `light` may be missing on object of type `Unknown | DevicePower | LightLevel | ... omitted 6 union elements` +homeassistant/components/hue/v2/sensor.py:202:18: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | Groups | None | GroupsController` +homeassistant/components/hue/v2/sensor.py:202:47: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | Config | None | ConfigController` +homeassistant/components/hue/v2/sensor.py:204:35: warning[possibly-missing-attribute] Attribute `id` may be missing on object of type `Unknown | (Room & ~AlwaysFalsy) | (GroupedLight & ~AlwaysFalsy) | ... omitted 7 union elements` +homeassistant/components/hue/v2/sensor.py:224:16: error[invalid-return-type] Return type does not match returned value: expected `int`, found `Unknown | int | None` +homeassistant/components/hue/v2/sensor.py:224:16: warning[possibly-missing-attribute] Attribute `power_state` may be missing on object of type `Unknown | DevicePower | LightLevel | ... omitted 6 union elements` +homeassistant/components/hue/v2/sensor.py:229:12: warning[possibly-missing-attribute] Attribute `power_state` may be missing on object of type `Unknown | DevicePower | LightLevel | ... omitted 6 union elements` +homeassistant/components/hue/v2/sensor.py:231:34: warning[possibly-missing-attribute] Attribute `power_state` may be missing on object of type `Unknown | DevicePower | LightLevel | ... omitted 6 union elements` +homeassistant/components/hue/v2/sensor.py:256:16: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Unknown | DevicePower | LightLevel | ... omitted 6 union elements` +homeassistant/components/hue/v2/sensor.py:261:32: warning[possibly-missing-attribute] Attribute `mac_address` may be missing on object of type `Unknown | DevicePower | LightLevel | ... omitted 6 union elements` +homeassistant/components/hunterdouglas_powerview/__init__.py:71:9: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `set[tuple[str, str]] | None | UndefinedType`, found `set[Unknown | tuple[str, Unknown | None]]` +homeassistant/components/hunterdouglas_powerview/__init__.py:72:9: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `set[tuple[str, str]] | None | UndefinedType`, found `set[Unknown | tuple[str, Unknown | None]]` +homeassistant/components/hunterdouglas_powerview/__init__.py:77:20: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Version | None` +homeassistant/components/hunterdouglas_powerview/__init__.py:114:9: error[invalid-argument-type] Argument is incorrect: Expected `dict[str, Room]`, found `dict[str, BaseShade | Hub | Automation | Scene | Room]` +homeassistant/components/hunterdouglas_powerview/__init__.py:115:9: error[invalid-argument-type] Argument is incorrect: Expected `dict[str, Scene]`, found `dict[str, BaseShade | Hub | Automation | Scene | Room]` +homeassistant/components/hunterdouglas_powerview/__init__.py:116:9: error[invalid-argument-type] Argument is incorrect: Expected `dict[str, BaseShade]`, found `dict[str, BaseShade | Hub | Automation | Scene | Room]` +homeassistant/components/hunterdouglas_powerview/button.py:83:52: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `int` +homeassistant/components/hunterdouglas_powerview/button.py:119:19: error[unresolved-attribute] Object of type `ButtonEntityDescription` has no attribute `press_action` +homeassistant/components/hunterdouglas_powerview/config_flow.py:44:12: error[invalid-return-type] Return type does not match returned value: expected `dict[str, str]`, found `dict[str, str | int]` +homeassistant/components/hunterdouglas_powerview/cover.py:75:52: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `int` +homeassistant/components/hunterdouglas_powerview/cover.py:115:13: error[unsupported-operator] Operator `|=` is unsupported between objects of type `None` and `Literal[CoverEntityFeature.STOP]` +homeassistant/components/hunterdouglas_powerview/cover.py:146:16: error[unsupported-operator] Operator `<=` is not supported for types `None` and `int`, in comparing `int | float | None` with `Literal[0]` +homeassistant/components/hunterdouglas_powerview/cover.py:151:16: error[invalid-return-type] Return type does not match returned value: expected `int`, found `int | float | None` +homeassistant/components/hunterdouglas_powerview/cover.py:156:16: error[invalid-return-type] Return type does not match returned value: expected `int`, found `int | float | None` +homeassistant/components/hunterdouglas_powerview/cover.py:352:9: error[unsupported-operator] Operator `|=` is unsupported between objects of type `None` and `Literal[CoverEntityFeature.OPEN_TILT]` +homeassistant/components/hunterdouglas_powerview/cover.py:364:16: error[invalid-return-type] Return type does not match returned value: expected `int`, found `int | float | None` +homeassistant/components/hunterdouglas_powerview/cover.py:369:16: error[unsupported-operator] Operator `+` is unsupported between objects of type `int | float | None` and `int | float | None` +homeassistant/components/hunterdouglas_powerview/cover.py:529:16: error[invalid-return-type] Return type does not match returned value: expected `int`, found `int | float | None` +homeassistant/components/hunterdouglas_powerview/cover.py:534:16: error[unsupported-operator] Operator `<=` is not supported for types `None` and `int`, in comparing `int | float | None` with `Literal[0]` +homeassistant/components/hunterdouglas_powerview/cover.py:552:16: error[unsupported-operator] Operator `-` is unsupported between objects of type `Literal[100]` and `int | float | None` +homeassistant/components/hunterdouglas_powerview/cover.py:561:17: error[unsupported-operator] Operator `-` is unsupported between objects of type `Literal[100]` and `int | float | None` +homeassistant/components/hunterdouglas_powerview/cover.py:575:16: error[unsupported-operator] Operator `+` is unsupported between objects of type `int | float | None` and `int | float | None` +homeassistant/components/hunterdouglas_powerview/cover.py:603:43: error[unsupported-operator] Operator `-` is unsupported between objects of type `Literal[100]` and `int | float | None` +homeassistant/components/hunterdouglas_powerview/cover.py:650:16: error[unsupported-operator] Operator `<=` is not supported for types `None` and `int`, in comparing `int | float | None` with `Literal[0]` +homeassistant/components/hunterdouglas_powerview/cover.py:656:16: error[invalid-return-type] Return type does not match returned value: expected `int`, found `int | float | None` +homeassistant/components/hunterdouglas_powerview/cover.py:672:43: error[unsupported-operator] Operator `-` is unsupported between objects of type `Literal[100]` and `int | float | None` +homeassistant/components/hunterdouglas_powerview/cover.py:696:20: error[unsupported-operator] Operator `/` is unsupported between objects of type `int | float | None` and `Literal[2]` +homeassistant/components/hunterdouglas_powerview/cover.py:700:21: error[unsupported-operator] Operator `/` is unsupported between objects of type `int | float | None` and `Literal[2]` +homeassistant/components/hunterdouglas_powerview/cover.py:749:16: error[unsupported-operator] Operator `<=` is not supported for types `None` and `int`, in comparing `int | float | None` with `Literal[0]` +homeassistant/components/hunterdouglas_powerview/cover.py:756:21: error[unsupported-operator] Operator `/` is unsupported between objects of type `int | float | None` and `Literal[2]` +homeassistant/components/hunterdouglas_powerview/cover.py:758:24: error[unsupported-operator] Operator `/` is unsupported between objects of type `int | float | None` and `Literal[2]` +homeassistant/components/hunterdouglas_powerview/cover.py:880:16: error[unsupported-operator] Operator `<=` is not supported for types `None` and `int`, in comparing `int | float | None` with `Literal[0]` +homeassistant/components/hunterdouglas_powerview/cover.py:885:16: error[invalid-return-type] Return type does not match returned value: expected `int`, found `int | float | None` +homeassistant/components/hunterdouglas_powerview/cover.py:929:9: error[unsupported-operator] Operator `|=` is unsupported between objects of type `None` and `Literal[CoverEntityFeature.OPEN_TILT]` +homeassistant/components/hunterdouglas_powerview/cover.py:944:20: error[unsupported-operator] Operator `/` is unsupported between objects of type `int | float | None` and `Literal[2]` +homeassistant/components/hunterdouglas_powerview/cover.py:948:21: error[unsupported-operator] Operator `/` is unsupported between objects of type `int | float | None` and `Literal[2]` +homeassistant/components/hunterdouglas_powerview/cover.py:1016:36: error[invalid-assignment] Object of type `Unknown | tuple[] | tuple[] | ... omitted 6 union elements` is not assignable to `Iterable[BaseShade]` +homeassistant/components/hunterdouglas_powerview/cover.py:1028:9: error[call-non-callable] Object of type `BaseShade` is not callable +homeassistant/components/hunterdouglas_powerview/number.py:63:52: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `int` +homeassistant/components/hunterdouglas_powerview/select.py:65:52: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `int` +homeassistant/components/hunterdouglas_powerview/select.py:101:16: error[unresolved-attribute] Object of type `SelectEntityDescription` has no attribute `current_fn` +homeassistant/components/hunterdouglas_powerview/select.py:106:16: error[unresolved-attribute] Object of type `SelectEntityDescription` has no attribute `options_fn` +homeassistant/components/hunterdouglas_powerview/select.py:110:15: error[unresolved-attribute] Object of type `SelectEntityDescription` has no attribute `select_fn` +homeassistant/components/hunterdouglas_powerview/sensor.py:88:52: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `int` +homeassistant/components/hunterdouglas_powerview/util.py:25:9: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `str | None` +homeassistant/components/hunterdouglas_powerview/util.py:26:9: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/hunterdouglas_powerview/util.py:27:9: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/hunterdouglas_powerview/util.py:29:9: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `str | None` +homeassistant/components/hunterdouglas_powerview/util.py:30:9: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/husqvarna_automower_ble/__init__.py:68:81: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `str | None` +homeassistant/components/husqvarna_automower_ble/coordinator.py:84:13: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["battery_level"]` and value of type `Unknown | int | None` on object of type `dict[str, str | int]` +homeassistant/components/husqvarna_automower_ble/coordinator.py:90:13: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["activity"]` and value of type `Unknown | MowerActivity | None` on object of type `dict[str, str | int]` +homeassistant/components/husqvarna_automower_ble/coordinator.py:96:13: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["state"]` and value of type `Unknown | MowerState | None` on object of type `dict[str, str | int]` +homeassistant/components/huum/climate.py:59:16: warning[possibly-missing-attribute] Attribute `min_temp` may be missing on object of type `Unknown | SaunaConfig | None` +homeassistant/components/huum/climate.py:64:16: warning[possibly-missing-attribute] Attribute `max_temp` may be missing on object of type `Unknown | SaunaConfig | None` +homeassistant/components/huum/number.py:50:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `Unknown | int | None` +homeassistant/components/hvv_departures/binary_sensor.py:143:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown, Unknown, Unknown]]` +homeassistant/components/hvv_departures/sensor.py:79:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown, Unknown, Unknown]]` +homeassistant/components/iammeter/sensor.py:11:6: error[unresolved-import] Cannot resolve imported module `iammeter.client` +homeassistant/components/iaqualink/climate.py:84:31: warning[possibly-missing-attribute] Attribute `_heater` may be missing on object of type `Unknown | AqualinkThermostat` +homeassistant/components/iaqualink/light.py:46:43: error[unresolved-attribute] Object of type `AqualinkLight` has no attribute `supported_effects` +homeassistant/components/iaqualink/light.py:87:16: error[unsupported-operator] Operator `*` is unsupported between objects of type `Unknown | int | None` and `Literal[255]` +homeassistant/components/iaqualink/light.py:92:16: error[invalid-return-type] Return type does not match returned value: expected `str`, found `Unknown | str | None` +homeassistant/components/icloud/account.py:148:35: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `Any | None` +homeassistant/components/icloud/account.py:450:54: error[invalid-argument-type] Argument to bound method `lost_device` is incorrect: Expected `str`, found `None` +homeassistant/components/icloud/config_flow.py:163:53: error[invalid-argument-type] Argument to bound method `async_update_entry` is incorrect: Expected `ConfigEntry[Any]`, found `ConfigEntry[Any] | None` +homeassistant/components/icloud/config_flow.py:164:53: warning[possibly-missing-attribute] Attribute `entry_id` may be missing on object of type `ConfigEntry[Any] | None` +homeassistant/components/icloud/services.py:105:16: error[invalid-return-type] Return type does not match returned value: expected `IcloudAccount`, found `None` +homeassistant/components/idteck_prox/__init__.py:7:6: error[unresolved-import] Cannot resolve imported module `rfk101py.rfk101py` +homeassistant/components/ifttt/__init__.py:87:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/iglo/light.py:7:6: error[unresolved-import] Cannot resolve imported module `iglo` +homeassistant/components/iglo/light.py:8:6: error[unresolved-import] Cannot resolve imported module `iglo.lamp` +homeassistant/components/ign_sismologia/geo_location.py:221:20: error[invalid-return-type] Return type does not match returned value: expected `str | None`, found `(Unknown & ~AlwaysFalsy) | (int & ~AlwaysFalsy) | (float & ~AlwaysFalsy)` +homeassistant/components/ihc/__init__.py:5:6: error[unresolved-import] Cannot resolve imported module `ihcsdk.ihccontroller` +homeassistant/components/ihc/binary_sensor.py:5:6: error[unresolved-import] Cannot resolve imported module `ihcsdk.ihccontroller` +homeassistant/components/ihc/entity.py:5:6: error[unresolved-import] Cannot resolve imported module `ihcsdk.ihccontroller` +homeassistant/components/ihc/light.py:7:6: error[unresolved-import] Cannot resolve imported module `ihcsdk.ihccontroller` +homeassistant/components/ihc/sensor.py:5:6: error[unresolved-import] Cannot resolve imported module `ihcsdk.ihccontroller` +homeassistant/components/ihc/switch.py:7:6: error[unresolved-import] Cannot resolve imported module `ihcsdk.ihccontroller` +homeassistant/components/ihc/util.py:5:6: error[unresolved-import] Cannot resolve imported module `ihcsdk.ihccontroller` +homeassistant/components/imap/__init__.py:169:17: warning[possibly-missing-attribute] Attribute `expunge` may be missing on object of type `Unknown | None | IMAP4ClientProtocol` +homeassistant/components/imap/__init__.py:196:17: warning[possibly-missing-attribute] Attribute `expunge` may be missing on object of type `Unknown | None | IMAP4ClientProtocol` +homeassistant/components/imap/__init__.py:264:20: error[invalid-return-type] Return type does not match returned value: expected `Message[str, str]`, found `Message[str, str] | @Todo | str` +homeassistant/components/imap/coordinator.py:84:8: warning[possibly-missing-attribute] Attribute `state` may be missing on object of type `Unknown | None | IMAP4ClientProtocol` +homeassistant/components/imap/coordinator.py:91:8: warning[possibly-missing-attribute] Attribute `state` may be missing on object of type `Unknown | None | IMAP4ClientProtocol` +homeassistant/components/imap/coordinator.py:93:8: warning[possibly-missing-attribute] Attribute `state` may be missing on object of type `Unknown | None | IMAP4ClientProtocol` +homeassistant/components/imap/coordinator.py:100:8: warning[possibly-missing-attribute] Attribute `state` may be missing on object of type `Unknown | None | IMAP4ClientProtocol` +homeassistant/components/imap/coordinator.py:281:26: warning[possibly-missing-attribute] Attribute `fetch` may be missing on object of type `Unknown | IMAP4_SSL | None` +homeassistant/components/imap/coordinator.py:352:15: warning[possibly-missing-attribute] Attribute `noop` may be missing on object of type `Unknown | IMAP4_SSL | None` +homeassistant/components/imap/coordinator.py:353:31: warning[possibly-missing-attribute] Attribute `search` may be missing on object of type `Unknown | IMAP4_SSL | None` +homeassistant/components/imap/coordinator.py:531:46: warning[possibly-missing-attribute] Attribute `idle_start` may be missing on object of type `Unknown | IMAP4_SSL | None` +homeassistant/components/imap/coordinator.py:532:23: warning[possibly-missing-attribute] Attribute `wait_server_push` may be missing on object of type `Unknown | IMAP4_SSL | None` +homeassistant/components/imap/coordinator.py:533:17: warning[possibly-missing-attribute] Attribute `idle_done` may be missing on object of type `Unknown | IMAP4_SSL | None` +homeassistant/components/input_datetime/__init__.py:295:34: warning[possibly-missing-attribute] Attribute `replace` may be missing on object of type `datetime | None | Unknown` +homeassistant/components/input_datetime/__init__.py:404:20: warning[possibly-missing-attribute] Attribute `date` may be missing on object of type `Unknown | None | datetime` +homeassistant/components/input_datetime/__init__.py:407:20: warning[possibly-missing-attribute] Attribute `time` may be missing on object of type `Unknown | None | datetime` +homeassistant/components/input_number/__init__.py:316:40: error[unsupported-operator] Operator `+` is unsupported between objects of type `int | float | None` and `int` +homeassistant/components/input_number/__init__.py:320:40: error[unsupported-operator] Operator `-` is unsupported between objects of type `int | float | None` and `int` +homeassistant/components/insteon/api/config.py:314:37: error[invalid-argument-type] Argument to function `get_broken_links` is incorrect: Expected `dict[Address, Device]`, found `DeviceManager` +homeassistant/components/insteon/api/config.py:335:37: error[invalid-argument-type] Argument to function `get_broken_links` is incorrect: Expected `dict[Address, Device]`, found `DeviceManager` +homeassistant/components/insteon/api/device.py:120:9: error[invalid-argument-type] Argument to bound method `async_add_device` is incorrect: Expected `Address`, found `Any | None` +homeassistant/components/insteon/api/properties.py:46:12: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, Any].__getitem__(key: str, /) -> Any` cannot be called with key of type `Literal[0]` on object of type `dict[str, Any]` +homeassistant/components/insteon/api/properties.py:50:12: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, Any].__getitem__(key: str, /) -> Any` cannot be called with key of type `Literal[0]` on object of type `dict[str, Any]` +homeassistant/components/insteon/api/properties.py:54:12: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, Any].__getitem__(key: str, /) -> Any` cannot be called with key of type `Literal[0]` on object of type `dict[str, Any]` +homeassistant/components/insteon/api/properties.py:58:12: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, Any].__getitem__(key: str, /) -> Any` cannot be called with key of type `Literal[0]` on object of type `dict[str, Any]` +homeassistant/components/insteon/api/properties.py:65:12: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, Any].__getitem__(key: str, /) -> Any` cannot be called with key of type `Literal[0]` on object of type `dict[str, Any]` +homeassistant/components/insteon/api/properties.py:73:12: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, Any].__getitem__(key: str, /) -> Any` cannot be called with key of type `Literal[0]` on object of type `dict[str, Any]` +homeassistant/components/insteon/api/scenes.py:91:24: error[not-iterable] Object of type `int` is not iterable +homeassistant/components/insteon/binary_sensor.py:61:13: error[invalid-argument-type] Argument to function `async_add_insteon_entities` is incorrect: Expected `dict[str, Any]`, found `Unknown | None` +homeassistant/components/insteon/climate.py:70:13: error[invalid-argument-type] Argument to function `async_add_insteon_entities` is incorrect: Expected `dict[str, Any]`, found `Unknown | None` +homeassistant/components/insteon/cover.py:33:75: error[invalid-argument-type] Argument to function `async_add_insteon_entities` is incorrect: Expected `dict[str, Any]`, found `Unknown | None` +homeassistant/components/insteon/fan.py:37:71: error[invalid-argument-type] Argument to function `async_add_insteon_entities` is incorrect: Expected `dict[str, Any]`, found `Unknown | None` +homeassistant/components/insteon/ipdb.py:52:64: error[invalid-assignment] Object of type `dict[Unknown | | | ... omitted 39 union elements, Unknown | dict[Unknown | EntityPlatforms, Unknown | list[Unknown | int]] | dict[Unknown | EntityPlatforms, Unknown | list[Unknown | int] | range] | dict[Unknown | EntityPlatforms, Unknown | range]]` is not assignable to `dict[Device, dict[EntityPlatforms, Iterable[int]]]` +homeassistant/components/insteon/ipdb.py:114:12: error[no-matching-overload] No overload of bound method `get` matches arguments +homeassistant/components/insteon/light.py:37:13: error[invalid-argument-type] Argument to function `async_add_insteon_entities` is incorrect: Expected `dict[str, Any]`, found `Unknown | None` +homeassistant/components/insteon/lock.py:28:73: error[invalid-argument-type] Argument to function `async_add_insteon_entities` is incorrect: Expected `dict[str, Any]`, found `Unknown | None` +homeassistant/components/insteon/services.py:104:42: error[invalid-argument-type] Argument to function `async_enter_unlinking_mode` is incorrect: Expected `int`, found `Unknown | None` +homeassistant/components/insteon/services.py:148:39: error[invalid-argument-type] Argument to function `async_x10_all_units_off` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/insteon/services.py:153:40: error[invalid-argument-type] Argument to function `async_x10_all_lights_off` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/insteon/services.py:158:39: error[invalid-argument-type] Argument to function `async_x10_all_lights_on` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/insteon/services.py:188:33: error[invalid-argument-type] Argument to bound method `set_id` is incorrect: Expected `int`, found `None` +homeassistant/components/insteon/services.py:188:39: error[invalid-argument-type] Argument to bound method `set_id` is incorrect: Expected `int`, found `None` +homeassistant/components/insteon/services.py:188:45: error[invalid-argument-type] Argument to bound method `set_id` is incorrect: Expected `int`, found `None` +homeassistant/components/insteon/switch.py:32:13: error[invalid-argument-type] Argument to function `async_add_insteon_entities` is incorrect: Expected `dict[str, Any]`, found `Unknown | None` +homeassistant/components/intesishome/climate.py:9:6: error[unresolved-import] Cannot resolve imported module `pyintesishome` +homeassistant/components/intesishome/climate.py:409:20: error[invalid-return-type] Return type does not match returned value: expected `HVACMode`, found `Unknown | None | HVACMode` +homeassistant/components/iometer/config_flow.py:50:9: error[invalid-assignment] Object of type `str | None` is not assignable to attribute `_meter_number` of type `str` +homeassistant/components/iometer/config_flow.py:91:17: error[invalid-assignment] Object of type `str | None` is not assignable to attribute `_meter_number` of type `str` +homeassistant/components/iotty/cover.py:148:16: error[invalid-return-type] Return type does not match returned value: expected `CoverEntityFeature`, found `CoverEntityFeature | None` +homeassistant/components/iperf3/__init__.py:8:8: error[unresolved-import] Cannot resolve imported module `iperf3` +homeassistant/components/ipma/weather.py:186:16: error[invalid-return-type] Return type does not match returned value: expected `list[Forecast]`, found `list[dict[Unknown | str, Unknown] | Unknown]` +homeassistant/components/irish_rail_transport/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `pyirishrail.pyirishrail` +homeassistant/components/irm_kmi/coordinator.py:91:59: error[invalid-argument-type] Argument to bound method `get_current_weather` is incorrect: Expected `ZoneInfo`, found `ZoneInfo | None` +homeassistant/components/irm_kmi/coordinator.py:92:57: error[invalid-argument-type] Argument to bound method `get_daily_forecast` is incorrect: Expected `ZoneInfo`, found `ZoneInfo | None` +homeassistant/components/irm_kmi/coordinator.py:93:59: error[invalid-argument-type] Argument to bound method `get_hourly_forecast` is incorrect: Expected `ZoneInfo`, found `ZoneInfo | None` +homeassistant/components/irm_kmi/coordinator.py:94:13: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/irm_kmi/weather.py:57:55: error[invalid-argument-type] Argument to function `__init__` is incorrect: Expected `DataUpdateCoordinator[dict[str, Any]]`, found `IrmKmiCoordinator` +homeassistant/components/irm_kmi/weather.py:107:16: error[invalid-return-type] Return type does not match returned value: expected `list[Forecast] | None`, found `Unknown | list[ExtendedForecast]` +homeassistant/components/irm_kmi/weather.py:119:32: error[invalid-assignment] Object of type `Unknown | list[ExtendedForecast]` is not assignable to `list[Forecast]` +homeassistant/components/iskra/sensor.py:250:45: warning[possibly-missing-attribute] Attribute `non_resettable` may be missing on object of type `Unknown | None` +homeassistant/components/iskra/sensor.py:256:45: warning[possibly-missing-attribute] Attribute `resettable` may be missing on object of type `Unknown | None` +homeassistant/components/islamic_prayer_times/coordinator.py:90:16: warning[redundant-cast] Value is already of type `dict[str, Any]` +homeassistant/components/iss/__init__.py:50:28: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/iss/__init__.py:58:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(() -> Awaitable[dict[str, Any]]) | None`, found `def async_update() -> CoroutineType[Any, Any, IssData]` +homeassistant/components/ista_ecotrend/__init__.py:26:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Logger` +homeassistant/components/ista_ecotrend/config_flow.py:54:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Logger` +homeassistant/components/ista_ecotrend/config_flow.py:105:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Logger` +homeassistant/components/ista_ecotrend/sensor.py:269:47: error[invalid-assignment] Object of type `list[dict[Unknown | str, Unknown] | Unknown]` is not assignable to `list[StatisticData]` +homeassistant/components/ista_ecotrend/sensor.py:273:47: error[unresolved-reference] Name `statistics_sum` used when not defined +homeassistant/components/isy994/__init__.py:103:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int | float`, found `Any | None` +homeassistant/components/isy994/__init__.py:134:33: error[invalid-argument-type] Argument to function `_categorize_nodes` is incorrect: Expected `Nodes`, found `Nodes | None` +homeassistant/components/isy994/__init__.py:135:36: error[invalid-argument-type] Argument to function `_categorize_programs` is incorrect: Expected `Programs`, found `Programs | None` +homeassistant/components/isy994/__init__.py:137:8: warning[possibly-missing-attribute] Attribute `children` may be missing on object of type `Variables | None` +homeassistant/components/isy994/__init__.py:142:30: warning[possibly-missing-attribute] Attribute `children` may be missing on object of type `Variables | None` +homeassistant/components/isy994/__init__.py:143:28: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/isy994/__init__.py:143:28: error[non-subscriptable] Cannot subscript object of type `Variable` with no `__getitem__` method +homeassistant/components/isy994/__init__.py:146:11: warning[possibly-missing-attribute] Attribute `nobjs` may be missing on object of type `NetworkResources | None` +homeassistant/components/isy994/__init__.py:150:25: warning[possibly-missing-attribute] Attribute `nobjs` may be missing on object of type `NetworkResources | None` +homeassistant/components/isy994/__init__.py:169:9: warning[possibly-missing-attribute] Attribute `stop` may be missing on object of type `WebSocketClient | None` +homeassistant/components/isy994/__init__.py:172:5: warning[possibly-missing-attribute] Attribute `start` may be missing on object of type `WebSocketClient | None` +homeassistant/components/isy994/__init__.py:222:5: warning[possibly-missing-attribute] Attribute `stop` may be missing on object of type `WebSocketClient | None` +homeassistant/components/isy994/binary_sensor.py:87:35: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `str | None` +homeassistant/components/isy994/binary_sensor.py:127:53: warning[possibly-missing-attribute] Attribute `address` may be missing on object of type `Node | None` +homeassistant/components/isy994/binary_sensor.py:221:23: warning[possibly-missing-attribute] Attribute `type` may be missing on object of type `Group | Node` +homeassistant/components/isy994/binary_sensor.py:228:27: warning[possibly-missing-attribute] Attribute `zwave_props` may be missing on object of type `Group | Node` +homeassistant/components/isy994/binary_sensor.py:228:27: warning[possibly-missing-attribute] Attribute `category` may be missing on object of type `ZWaveProperties | None` +homeassistant/components/isy994/binary_sensor.py:230:16: warning[possibly-missing-attribute] Attribute `zwave_props` may be missing on object of type `Group | Node` +homeassistant/components/isy994/binary_sensor.py:230:16: warning[possibly-missing-attribute] Attribute `category` may be missing on object of type `ZWaveProperties | None` +homeassistant/components/isy994/binary_sensor.py:236:16: warning[possibly-missing-attribute] Attribute `startswith` may be missing on object of type `str | None` +homeassistant/components/isy994/binary_sensor.py:295:9: warning[possibly-missing-attribute] Attribute `control_events` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/binary_sensor.py:448:9: warning[possibly-missing-attribute] Attribute `control_events` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/button.py:120:38: error[unresolved-attribute] Object of type `object` has no attribute `nodes` +homeassistant/components/isy994/button.py:123:30: warning[possibly-missing-attribute] Attribute `address` may be missing on object of type `(Unknown & & ) | Node | (ISY & ) | (NetworkCommand & )` +homeassistant/components/isy994/button.py:142:15: warning[possibly-missing-attribute] Attribute `query` may be missing on object of type `Unknown | Node | ISY | NetworkCommand` +homeassistant/components/isy994/button.py:150:15: warning[possibly-missing-attribute] Attribute `beep` may be missing on object of type `Unknown | Node | ISY | NetworkCommand` +homeassistant/components/isy994/button.py:160:15: warning[possibly-missing-attribute] Attribute `run` may be missing on object of type `Unknown | Node | ISY | NetworkCommand` +homeassistant/components/isy994/climate.py:72:29: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Node`, found `Node | Group` +homeassistant/components/isy994/climate.py:72:47: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `str | None` +homeassistant/components/isy994/climate.py:95:21: warning[possibly-missing-attribute] Attribute `uom` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/climate.py:97:25: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/isy994/climate.py:97:25: warning[possibly-missing-attribute] Attribute `uom` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/climate.py:102:24: warning[possibly-missing-attribute] Attribute `aux_properties` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/climate.py:113:29: warning[possibly-missing-attribute] Attribute `aux_properties` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/climate.py:122:30: warning[possibly-missing-attribute] Attribute `aux_properties` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/climate.py:142:23: warning[possibly-missing-attribute] Attribute `aux_properties` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/climate.py:153:43: warning[possibly-missing-attribute] Attribute `prec` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/climate.py:168:18: warning[possibly-missing-attribute] Attribute `aux_properties` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/climate.py:176:18: warning[possibly-missing-attribute] Attribute `aux_properties` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/climate.py:184:20: warning[possibly-missing-attribute] Attribute `aux_properties` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/climate.py:200:19: warning[possibly-missing-attribute] Attribute `set_climate_setpoint_heat` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/climate.py:202:19: warning[possibly-missing-attribute] Attribute `set_climate_setpoint_cool` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/climate.py:208:15: warning[possibly-missing-attribute] Attribute `set_fan_mode` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/climate.py:208:39: error[invalid-argument-type] Argument to bound method `set_fan_mode` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/isy994/climate.py:214:15: warning[possibly-missing-attribute] Attribute `set_climate_mode` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/climate.py:214:43: error[invalid-argument-type] Argument to bound method `set_climate_mode` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/isy994/config_flow.py:105:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int | float`, found `Any | None` +homeassistant/components/isy994/cover.py:32:42: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `str | None` +homeassistant/components/isy994/cover.py:58:12: warning[possibly-missing-attribute] Attribute `uom` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/cover.py:71:22: warning[possibly-missing-attribute] Attribute `turn_on` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/cover.py:76:22: warning[possibly-missing-attribute] Attribute `turn_off` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/cover.py:82:12: warning[possibly-missing-attribute] Attribute `uom` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/cover.py:84:22: warning[possibly-missing-attribute] Attribute `turn_on` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/entity.py:46:9: error[invalid-assignment] Object of type `Node | Group | Variable | Program` is not assignable to attribute `_node` of type `Node | Program | Variable` +homeassistant/components/isy994/entity.py:61:37: error[unresolved-attribute] Object of type `object` has no attribute `subscribe` +homeassistant/components/isy994/entity.py:121:32: warning[possibly-missing-attribute] Attribute `aux_properties` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/entity.py:151:15: error[call-non-callable] Object of type `object` is not callable +homeassistant/components/isy994/entity.py:160:15: warning[possibly-missing-attribute] Attribute `get_zwave_parameter` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/entity.py:171:15: warning[possibly-missing-attribute] Attribute `set_zwave_parameter` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/entity.py:171:57: error[invalid-argument-type] Argument to bound method `set_zwave_parameter` is incorrect: Expected `int | str`, found `Any | None` +homeassistant/components/isy994/entity.py:171:64: error[invalid-argument-type] Argument to bound method `set_zwave_parameter` is incorrect: Expected `int`, found `int | None` +homeassistant/components/isy994/entity.py:172:15: warning[possibly-missing-attribute] Attribute `get_zwave_parameter` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/entity.py:176:15: warning[possibly-missing-attribute] Attribute `rename` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/entity.py:186:52: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `Program` +homeassistant/components/isy994/entity.py:252:38: warning[possibly-missing-attribute] Attribute `status_events` may be missing on object of type `Unknown | Nodes | None` +homeassistant/components/isy994/fan.py:36:40: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `str | None` +homeassistant/components/isy994/fan.py:81:19: warning[possibly-missing-attribute] Attribute `turn_off` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/fan.py:86:15: warning[possibly-missing-attribute] Attribute `turn_on` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/fan.py:99:15: warning[possibly-missing-attribute] Attribute `turn_off` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/helpers.py:109:13: error[unresolved-attribute] Object of type `~None` has no attribute `startswith` +homeassistant/components/isy994/helpers.py:133:21: error[unresolved-attribute] Object of type `~None` has no attribute `startswith` +homeassistant/components/isy994/helpers.py:142:21: error[unresolved-attribute] Object of type `~None` has no attribute `startswith` +homeassistant/components/isy994/helpers.py:169:19: error[unresolved-attribute] Object of type `~None` has no attribute `category` +homeassistant/components/isy994/helpers.py:237:24: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `(object, /) -> Unknown`, found `Overload[(self: LiteralString) -> LiteralString, (self) -> str]` +homeassistant/components/isy994/helpers.py:298:22: warning[possibly-missing-attribute] Attribute `title` may be missing on object of type `str | None` +homeassistant/components/isy994/helpers.py:401:34: warning[possibly-missing-attribute] Attribute `children` may be missing on object of type `(Folder & ~AlwaysFalsy) | (Programs & ~AlwaysFalsy)` +homeassistant/components/isy994/helpers.py:429:48: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `tuple[str, Program, Program]`, found `tuple[@Todo, @Todo & ~AlwaysFalsy, None | (@Todo & ~AlwaysFalsy)]` +homeassistant/components/isy994/light.py:37:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Node`, found `Node | Group` +homeassistant/components/isy994/light.py:37:63: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `str | None` +homeassistant/components/isy994/light.py:72:12: warning[possibly-missing-attribute] Attribute `uom` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/light.py:79:22: warning[possibly-missing-attribute] Attribute `turn_off` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/light.py:87:16: warning[possibly-missing-attribute] Attribute `uom` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/light.py:98:39: warning[possibly-missing-attribute] Attribute `uom` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/light.py:100:22: warning[possibly-missing-attribute] Attribute `turn_on` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/lock.py:56:41: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `str | None` +homeassistant/components/isy994/lock.py:81:22: warning[possibly-missing-attribute] Attribute `secure_lock` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/lock.py:86:22: warning[possibly-missing-attribute] Attribute `secure_unlock` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/lock.py:91:22: warning[possibly-missing-attribute] Attribute `set_zwave_lock_code` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/lock.py:98:22: warning[possibly-missing-attribute] Attribute `delete_zwave_lock_code` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/models.py:57:16: warning[redundant-cast] Value is already of type `str` +homeassistant/components/isy994/number.py:100:13: error[invalid-argument-type] Argument to function `replace` is incorrect: Argument type `NumberEntityDescription` does not satisfy upper bound `DataclassInstance` of type variable `_DataclassT` +homeassistant/components/isy994/number.py:130:44: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `str | None` +homeassistant/components/isy994/number.py:133:54: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Node`, found `Unknown | Node | str | NumberEntityDescription` +homeassistant/components/isy994/number.py:133:54: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | Node | str | NumberEntityDescription` +homeassistant/components/isy994/number.py:133:54: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | Node | str | NumberEntityDescription` +homeassistant/components/isy994/number.py:133:54: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `NumberEntityDescription`, found `Unknown | Node | str | NumberEntityDescription` +homeassistant/components/isy994/number.py:133:54: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `DeviceInfo | None`, found `Unknown | Node | str | NumberEntityDescription` +homeassistant/components/isy994/number.py:135:51: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Node`, found `Unknown | Node | str | NumberEntityDescription` +homeassistant/components/isy994/number.py:135:51: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | Node | str | NumberEntityDescription` +homeassistant/components/isy994/number.py:135:51: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | Node | str | NumberEntityDescription` +homeassistant/components/isy994/number.py:135:51: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `EntityDescription`, found `Unknown | Node | str | NumberEntityDescription` +homeassistant/components/isy994/number.py:135:51: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `DeviceInfo | None`, found `Unknown | Node | str | NumberEntityDescription` +homeassistant/components/isy994/number.py:169:43: error[invalid-argument-type] Argument to bound method `set_on_level` is incorrect: Expected `int`, found `int | float` +homeassistant/components/isy994/number.py:267:39: warning[possibly-missing-attribute] Attribute `status_events` may be missing on object of type `Unknown | Nodes | None` +homeassistant/components/isy994/select.py:51:34: error[invalid-argument-type] Argument to function `time_string` is incorrect: Expected `int`, found `Unknown | int | float` +homeassistant/components/isy994/select.py:94:44: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `str | None` +homeassistant/components/isy994/select.py:98:53: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Node`, found `Unknown | Node | str | SelectEntityDescription` +homeassistant/components/isy994/select.py:98:53: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | Node | str | SelectEntityDescription` +homeassistant/components/isy994/select.py:98:53: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | Node | str | SelectEntityDescription` +homeassistant/components/isy994/select.py:98:53: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `EntityDescription`, found `Unknown | Node | str | SelectEntityDescription` +homeassistant/components/isy994/select.py:98:53: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `DeviceInfo | None`, found `Unknown | Node | str | SelectEntityDescription` +homeassistant/components/isy994/select.py:101:54: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Node`, found `Unknown | Node | str | SelectEntityDescription` +homeassistant/components/isy994/select.py:101:54: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | Node | str | SelectEntityDescription` +homeassistant/components/isy994/select.py:101:54: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | Node | str | SelectEntityDescription` +homeassistant/components/isy994/select.py:101:54: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `SelectEntityDescription`, found `Unknown | Node | str | SelectEntityDescription` +homeassistant/components/isy994/select.py:101:54: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `DeviceInfo | None`, found `Unknown | Node | str | SelectEntityDescription` +homeassistant/components/isy994/select.py:104:60: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Node`, found `Unknown | Node | str | SelectEntityDescription` +homeassistant/components/isy994/select.py:104:60: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | Node | str | SelectEntityDescription` +homeassistant/components/isy994/select.py:104:60: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | Node | str | SelectEntityDescription` +homeassistant/components/isy994/select.py:104:60: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `EntityDescription`, found `Unknown | Node | str | SelectEntityDescription` +homeassistant/components/isy994/select.py:104:60: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `DeviceInfo | None`, found `Unknown | Node | str | SelectEntityDescription` +homeassistant/components/isy994/select.py:181:39: warning[possibly-missing-attribute] Attribute `status_events` may be missing on object of type `Unknown | Nodes | None` +homeassistant/components/isy994/sensor.py:120:59: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `str | None` +homeassistant/components/isy994/sensor.py:134:41: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `str | None` +homeassistant/components/isy994/sensor.py:147:16: error[invalid-return-type] Return type does not match returned value: expected `Node | NodeProperty | None`, found `Node | Program | Variable` +homeassistant/components/isy994/sensor.py:255:33: warning[possibly-missing-attribute] Attribute `aux_properties` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/sensor.py:258:16: warning[redundant-cast] Value is already of type `NodeProperty` +homeassistant/components/isy994/sensor.py:258:35: warning[possibly-missing-attribute] Attribute `aux_properties` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/sensor.py:263:49: warning[possibly-missing-attribute] Attribute `value` may be missing on object of type `Node | NodeProperty` +homeassistant/components/isy994/sensor.py:273:32: warning[possibly-missing-attribute] Attribute `control_events` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/sensor.py:276:38: warning[possibly-missing-attribute] Attribute `status_events` may be missing on object of type `Unknown | Nodes | None` +homeassistant/components/isy994/sensor.py:292:27: warning[possibly-missing-attribute] Attribute `enabled` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/switch.py:55:49: warning[possibly-missing-attribute] Attribute `controllers` may be missing on object of type `Node | Group` +homeassistant/components/isy994/switch.py:57:23: warning[possibly-missing-attribute] Attribute `get_by_id` may be missing on object of type `Unknown | Nodes | None` +homeassistant/components/isy994/switch.py:57:23: warning[possibly-missing-attribute] Attribute `primary_node` may be missing on object of type `Unknown | Node | Nodes | None` +homeassistant/components/isy994/switch.py:57:48: warning[possibly-missing-attribute] Attribute `controllers` may be missing on object of type `Node | Group` +homeassistant/components/isy994/switch.py:59:63: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `str | None | Unknown` +homeassistant/components/isy994/switch.py:79:45: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `str | None` +homeassistant/components/isy994/switch.py:97:22: warning[possibly-missing-attribute] Attribute `turn_off` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/switch.py:102:22: warning[possibly-missing-attribute] Attribute `turn_on` may be missing on object of type `Node | Program | Variable` +homeassistant/components/isy994/switch.py:163:32: warning[possibly-missing-attribute] Attribute `status_events` may be missing on object of type `Unknown | Nodes | None` +homeassistant/components/itach/remote.py:9:8: error[unresolved-import] Cannot resolve imported module `pyitachip2ir` +homeassistant/components/itunes/media_player.py:75:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/itunes/media_player.py:77:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/itunes/media_player.py:279:17: warning[possibly-missing-attribute] Attribute `update_state` may be missing on object of type `Unknown | None` +homeassistant/components/itunes/media_player.py:298:16: error[unsupported-operator] Operator `/` is unsupported between objects of type `Unknown | None` and `float` +homeassistant/components/izone/climate.py:122:16: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/izone/climate.py:122:46: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/izone/climate.py:123:20: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/izone/climate.py:123:52: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/izone/climate.py:367:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `Unknown | int | float | None` +homeassistant/components/izone/climate.py:469:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown & ~AlwaysFalsy, int]]` +homeassistant/components/izone/climate.py:539:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `Unknown | int | float | None` +homeassistant/components/joaoapps_join/__init__.py:5:6: error[unresolved-import] Cannot resolve imported module `pyjoin` +homeassistant/components/joaoapps_join/notify.py:7:6: error[unresolved-import] Cannot resolve imported module `pyjoin` +homeassistant/components/justnimbus/sensor.py:138:16: error[unresolved-attribute] Object of type `SensorEntityDescription` has no attribute `value_fn` +homeassistant/components/kaiterra/api_data.py:7:6: error[unresolved-import] Cannot resolve imported module `kaiterra_async_client` +homeassistant/components/keba/__init__.py:6:6: error[unresolved-import] Cannot resolve imported module `keba_kecontact.connection` +homeassistant/components/keba/__init__.py:231:23: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/keba/__init__.py:232:24: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/keba/__init__.py:233:23: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/keenetic_ndms2/config_flow.py:75:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `(str & ~AlwaysFalsy) | (bytes & ~AlwaysFalsy) | Any` +homeassistant/components/keenetic_ndms2/device_tracker.py:56:29: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `str | None` +homeassistant/components/keenetic_ndms2/device_tracker.py:57:29: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `None` +homeassistant/components/keenetic_ndms2/device_tracker.py:58:29: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `None` +homeassistant/components/keenetic_ndms2/router.py:168:9: warning[possibly-missing-attribute] Attribute `disconnect` may be missing on object of type `TelnetConnection | None` +homeassistant/components/keenetic_ndms2/router.py:172:33: warning[possibly-missing-attribute] Attribute `get_router_info` may be missing on object of type `Client | None` +homeassistant/components/keenetic_ndms2/router.py:183:25: warning[possibly-missing-attribute] Attribute `get_devices` may be missing on object of type `Client | None` +homeassistant/components/keenetic_ndms2/router.py:194:33: warning[possibly-missing-attribute] Attribute `get_router_info` may be missing on object of type `Client | None` +homeassistant/components/kef/media_player.py:10:6: error[unresolved-import] Cannot resolve imported module `aiokef` +homeassistant/components/kef/media_player.py:11:6: error[unresolved-import] Cannot resolve imported module `aiokef.aiokef` +homeassistant/components/kef/media_player.py:345:9: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/keyboard_remote/__init__.py:12:6: error[unresolved-import] Cannot resolve imported module `evdev` +homeassistant/components/keyboard_remote/__init__.py:163:37: error[unresolved-attribute] Object of type `Future[Unknown]` has no attribute `async_device_stop_monitoring` +homeassistant/components/keyboard_remote/__init__.py:204:32: error[not-iterable] Object of type `Unknown | None | Inotify` may not be async-iterable +homeassistant/components/keyboard_remote/__init__.py:218:27: error[unresolved-attribute] Object of type `Future[Unknown]` has no attribute `async_device_stop_monitoring` +homeassistant/components/keyboard_remote/__init__.py:268:38: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | None` +homeassistant/components/keyboard_remote/__init__.py:300:60: warning[possibly-missing-attribute] Attribute `ungrab` may be missing on object of type `Unknown | None` +homeassistant/components/keyboard_remote/__init__.py:304:56: warning[possibly-missing-attribute] Attribute `fileno` may be missing on object of type `Unknown | None` +homeassistant/components/keyboard_remote/__init__.py:305:17: warning[possibly-missing-attribute] Attribute `close` may be missing on object of type `Unknown | None` +homeassistant/components/keyboard_remote/__init__.py:314:38: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | None` +homeassistant/components/keyboard_remote/__init__.py:317:60: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | None` +homeassistant/components/keyboard_remote/__init__.py:332:56: warning[possibly-missing-attribute] Attribute `grab` may be missing on object of type `Unknown | None` +homeassistant/components/keyboard_remote/__init__.py:333:36: warning[possibly-missing-attribute] Attribute `async_read_loop` may be missing on object of type `Unknown | None` +homeassistant/components/keyboard_remote/__init__.py:337:51: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | None` +homeassistant/components/keyboard_remote/__init__.py:346:50: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | None` +homeassistant/components/keymitt_ble/config_flow.py:68:41: error[invalid-argument-type] Argument to function `name_from_discovery` is incorrect: Expected `MicroBotAdvertisement`, found `MicroBotAdvertisement | None` +homeassistant/components/keymitt_ble/config_flow.py:105:46: error[invalid-argument-type] Argument to function `name_from_discovery` is incorrect: Expected `MicroBotAdvertisement`, found `MicroBotAdvertisement | None` +homeassistant/components/keymitt_ble/config_flow.py:133:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `BLEDevice`, found `BLEDevice | None` +homeassistant/components/kiwi/lock.py:8:6: error[unresolved-import] Cannot resolve imported module `kiwiki` +homeassistant/components/kmtronic/config_flow.py:50:12: error[unresolved-attribute] Object of type `object` has no attribute `ClientResponseError` +homeassistant/components/kmtronic/config_flow.py:52:12: error[unresolved-attribute] Object of type `object` has no attribute `ClientConnectorError` +homeassistant/components/knx/expose.py:114:13: error[invalid-assignment] Object of type `int | float | str | None` is not assignable to attribute `value` on type `RemoteValueSensor | RemoteValueSwitch` +homeassistant/components/knx/light.py:375:24: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int, int, int] | None`, found `tuple[@Todo, int]` +homeassistant/components/knx/sensor.py:217:16: error[unresolved-attribute] Object of type `SensorEntityDescription` has no attribute `value_fn` +homeassistant/components/knx/sensor.py:222:12: error[unresolved-attribute] Object of type `SensorEntityDescription` has no attribute `always_available` +homeassistant/components/knx/storage/config_store.py:88:25: error[missing-typed-dict-key] Missing required key 'entities' in TypedDict `KNXConfigStoreModel` constructor +homeassistant/components/knx/storage/serialize.py:36:16: error[invalid-return-type] Return type does not match returned value: expected `dict[str, Any] | list[dict[str, Any]] | UnsupportedType`, found `Top[dict[str | Unknown, dict[str, Unknown] | Unknown | str]]` +homeassistant/components/knx/telegrams.py:28:22: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 2 +homeassistant/components/knx/websocket.py:135:19: error[invalid-await] `Awaitable[None] | None` is not awaitable +homeassistant/components/kodi/browse_media.py:54:23: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/kodi/browse_media.py:230:42: error[invalid-argument-type] Argument to bound method `extend` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | Sequence[BrowseMedia] | None` +homeassistant/components/kodi/config_flow.py:289:13: error[invalid-argument-type] Argument to bound method `async_create_entry` is incorrect: Expected `str`, found `str | None` +homeassistant/components/kodi/media_player.py:151:17: error[unresolved-attribute] Object of type `(...) -> Awaitable[Any]` has no attribute `__name__` +homeassistant/components/kodi/media_player.py:322:37: warning[possibly-missing-attribute] Attribute `id` may be missing on object of type `DeviceEntry | None` +homeassistant/components/kodi/media_player.py:323:27: warning[possibly-missing-attribute] Attribute `id` may be missing on object of type `DeviceEntry | None` +homeassistant/components/konnected/__init__.py:338:16: error[unresolved-attribute] Module `json` has no member `decoder` +homeassistant/components/konnected/panel.py:136:16: warning[possibly-missing-attribute] Attribute `ClientError` may be missing on object of type `Unknown | None | Client` +homeassistant/components/konnected/panel.py:191:16: warning[possibly-missing-attribute] Attribute `ClientError` may be missing on object of type `Unknown | None | Client` +homeassistant/components/konnected/panel.py:320:28: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/konnected/panel.py:356:20: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/konnected/panel.py:361:26: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/konnected/panel.py:363:26: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/konnected/panel.py:364:28: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/konnected/panel.py:365:32: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/konnected/panel.py:384:19: warning[possibly-missing-attribute] Attribute `put_settings` may be missing on object of type `Unknown | None | Client` +homeassistant/components/kostal_plenticore/coordinator.py:57:16: error[invalid-return-type] Return type does not match returned value: expected `ApiClient`, found `Unknown | None | ExtendedApiClient` +homeassistant/components/kostal_plenticore/coordinator.py:128:15: warning[possibly-missing-attribute] Attribute `logout` may be missing on object of type `Unknown | None | ExtendedApiClient` +homeassistant/components/kostal_plenticore/number.py:114:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `DeviceInfo`, found `Unknown | dict[Unknown, Unknown] | DeviceInfo` +homeassistant/components/kostal_plenticore/select.py:74:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `DeviceInfo`, found `Unknown | dict[Unknown, Unknown] | DeviceInfo` +homeassistant/components/kostal_plenticore/sensor.py:839:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `DeviceInfo`, found `Unknown | dict[Unknown, Unknown] | DeviceInfo` +homeassistant/components/kostal_plenticore/switch.py:103:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `DeviceInfo`, found `Unknown | dict[Unknown, Unknown] | DeviceInfo` +homeassistant/components/kostal_plenticore/switch.py:148:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `DeviceInfo`, found `Unknown | dict[Unknown, Unknown] | DeviceInfo` +homeassistant/components/kwb/sensor.py:5:6: error[unresolved-import] Cannot resolve imported module `pykwb` +homeassistant/components/lacrosse/sensor.py:9:8: error[unresolved-import] Cannot resolve imported module `pylacrosse` +homeassistant/components/launch_library/__init__.py:44:21: error[invalid-argument-type] Argument to bound method `launch_upcoming` is incorrect: Expected `Mapping[str, str] | None`, found `dict[Unknown | str, Unknown | int | str]` +homeassistant/components/launch_library/__init__.py:56:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(() -> Awaitable[dict[str, Any]]) | None`, found `def async_update() -> CoroutineType[Any, Any, LaunchLibraryData]` +homeassistant/components/laundrify/binary_sensor.py:54:21: error[unresolved-attribute] Object of type `LaundrifyDevice` has no attribute `id` +homeassistant/components/laundrify/binary_sensor.py:58:18: error[unresolved-attribute] Object of type `LaundrifyDevice` has no attribute `name` +homeassistant/components/laundrify/binary_sensor.py:60:26: error[unresolved-attribute] Object of type `LaundrifyDevice` has no attribute `model` +homeassistant/components/laundrify/binary_sensor.py:61:24: error[unresolved-attribute] Object of type `LaundrifyDevice` has no attribute `firmwareVersion` +homeassistant/components/laundrify/binary_sensor.py:62:41: error[unresolved-attribute] Object of type `LaundrifyDevice` has no attribute `internalIP` +homeassistant/components/laundrify/binary_sensor.py:76:21: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Unknown | LaundrifyDevice` +homeassistant/components/laundrify/sensor.py:50:67: error[unresolved-attribute] Object of type `LaundrifyDevice` has no attribute `id` +homeassistant/components/laundrify/sensor.py:51:35: error[unresolved-attribute] Object of type `LaundrifyDevice` has no attribute `id` +homeassistant/components/laundrify/sensor.py:97:40: warning[possibly-missing-attribute] Attribute `id` may be missing on object of type `Unknown | LaundrifyDevice` +homeassistant/components/laundrify/sensor.py:98:22: warning[possibly-missing-attribute] Attribute `totalEnergy` may be missing on object of type `Unknown | LaundrifyDevice` +homeassistant/components/lcn/__init__.py:279:65: error[invalid-argument-type] Argument to function `_async_fire_access_control_event` is incorrect: Expected `InputType`, found `ModStatusAccessControl` +homeassistant/components/lcn/__init__.py:281:60: error[invalid-argument-type] Argument to function `_async_fire_send_keys_event` is incorrect: Expected `InputType`, found `ModSendKeysHost & ~ModStatusAccessControl` +homeassistant/components/lcn/__init__.py:294:17: error[unresolved-attribute] Object of type `InputType` has no attribute `code` +homeassistant/components/lcn/__init__.py:300:8: error[unresolved-attribute] Object of type `InputType` has no attribute `periphery` +homeassistant/components/lcn/__init__.py:302:23: error[unresolved-attribute] Object of type `InputType` has no attribute `level` +homeassistant/components/lcn/__init__.py:302:41: error[unresolved-attribute] Object of type `InputType` has no attribute `key` +homeassistant/components/lcn/__init__.py:302:60: error[unresolved-attribute] Object of type `InputType` has no attribute `action` +homeassistant/components/lcn/__init__.py:305:25: error[unresolved-attribute] Object of type `InputType` has no attribute `periphery` +homeassistant/components/lcn/__init__.py:316:36: error[unresolved-attribute] Object of type `InputType` has no attribute `actions` +homeassistant/components/lcn/__init__.py:320:40: error[unresolved-attribute] Object of type `InputType` has no attribute `keys` +homeassistant/components/lcn/binary_sensor.py:76:15: warning[possibly-missing-attribute] Attribute `request_status_binary_sensors` may be missing on object of type `ModuleConnection | GroupConnection` +homeassistant/components/lcn/climate.py:187:13: warning[possibly-missing-attribute] Attribute `request_status_variable` may be missing on object of type `ModuleConnection | GroupConnection` +homeassistant/components/lcn/climate.py:190:13: warning[possibly-missing-attribute] Attribute `request_status_variable` may be missing on object of type `ModuleConnection | GroupConnection` +homeassistant/components/lcn/cover.py:135:17: warning[possibly-missing-attribute] Attribute `request_status_output` may be missing on object of type `ModuleConnection | GroupConnection` +homeassistant/components/lcn/cover.py:138:17: warning[possibly-missing-attribute] Attribute `request_status_output` may be missing on object of type `ModuleConnection | GroupConnection` +homeassistant/components/lcn/cover.py:192:13: error[unsupported-operator] Operator `|=` is unsupported between objects of type `None` and `Literal[CoverEntityFeature.SET_POSITION]` +homeassistant/components/lcn/cover.py:258:18: warning[possibly-missing-attribute] Attribute `request_status_relays` may be missing on object of type `ModuleConnection | GroupConnection` +homeassistant/components/lcn/cover.py:261:17: warning[possibly-missing-attribute] Attribute `request_status_motor_position` may be missing on object of type `ModuleConnection | GroupConnection` +homeassistant/components/lcn/cover.py:286:13: error[invalid-assignment] Object of type `Unknown | int | float` is not assignable to attribute `_attr_current_cover_position` of type `int | None` +homeassistant/components/lcn/entity.py:72:39: warning[possibly-missing-attribute] Attribute `register_for_inputs` may be missing on object of type `DeviceConnectionType` +homeassistant/components/lcn/entity.py:73:13: error[invalid-argument-type] Argument to bound method `register_for_inputs` is incorrect: Expected `(Input, /) -> None`, found `bound method Self@async_added_to_hass.input_received(input_obj: type[Input]) -> None` +homeassistant/components/lcn/helpers.py:254:15: warning[possibly-missing-attribute] Attribute `serials_known` may be missing on object of type `DeviceConnectionType` +homeassistant/components/lcn/helpers.py:274:29: warning[possibly-missing-attribute] Attribute `request_name` may be missing on object of type `DeviceConnectionType` +homeassistant/components/lcn/light.py:152:15: warning[possibly-missing-attribute] Attribute `request_status_output` may be missing on object of type `ModuleConnection | GroupConnection` +homeassistant/components/lcn/light.py:203:15: warning[possibly-missing-attribute] Attribute `request_status_relays` may be missing on object of type `ModuleConnection | GroupConnection` +homeassistant/components/lcn/sensor.py:136:15: warning[possibly-missing-attribute] Attribute `request_status_variable` may be missing on object of type `ModuleConnection | GroupConnection` +homeassistant/components/lcn/sensor.py:172:15: warning[possibly-missing-attribute] Attribute `request_status_led_and_logic_ops` may be missing on object of type `ModuleConnection | GroupConnection` +homeassistant/components/lcn/switch.py:98:15: warning[possibly-missing-attribute] Attribute `request_status_output` may be missing on object of type `ModuleConnection | GroupConnection` +homeassistant/components/lcn/switch.py:145:15: warning[possibly-missing-attribute] Attribute `request_status_relays` may be missing on object of type `ModuleConnection | GroupConnection` +homeassistant/components/lcn/switch.py:186:15: warning[possibly-missing-attribute] Attribute `request_status_variable` may be missing on object of type `ModuleConnection | GroupConnection` +homeassistant/components/lcn/switch.py:239:15: warning[possibly-missing-attribute] Attribute `request_status_locked_keys` may be missing on object of type `ModuleConnection | GroupConnection` +homeassistant/components/led_ble/__init__.py:91:59: error[invalid-argument-type] Argument is incorrect: Expected `DataUpdateCoordinator[None]`, found `DataUpdateCoordinator[dict[str, Any]]` +homeassistant/components/lg_soundbar/media_player.py:155:9: warning[possibly-missing-attribute] Attribute `get_eq` may be missing on object of type `Unknown | None | temescal` +homeassistant/components/lg_soundbar/media_player.py:156:9: warning[possibly-missing-attribute] Attribute `get_info` may be missing on object of type `Unknown | None | temescal` +homeassistant/components/lg_soundbar/media_player.py:157:9: warning[possibly-missing-attribute] Attribute `get_func` may be missing on object of type `Unknown | None | temescal` +homeassistant/components/lg_soundbar/media_player.py:158:9: warning[possibly-missing-attribute] Attribute `get_settings` may be missing on object of type `Unknown | None | temescal` +homeassistant/components/lg_soundbar/media_player.py:207:9: warning[possibly-missing-attribute] Attribute `set_volume` may be missing on object of type `Unknown | None | temescal` +homeassistant/components/lg_soundbar/media_player.py:211:9: warning[possibly-missing-attribute] Attribute `set_mute` may be missing on object of type `Unknown | None | temescal` +homeassistant/components/lg_soundbar/media_player.py:215:9: warning[possibly-missing-attribute] Attribute `set_func` may be missing on object of type `Unknown | None | temescal` +homeassistant/components/lg_soundbar/media_player.py:219:9: warning[possibly-missing-attribute] Attribute `set_eq` may be missing on object of type `Unknown | None | temescal` +homeassistant/components/lg_soundbar/media_player.py:231:9: warning[possibly-missing-attribute] Attribute `send_packet` may be missing on object of type `Unknown | None | temescal` +homeassistant/components/lg_thinq/binary_sensor.py:92:5: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | tuple[ThinQBinarySensorEntityDescription] | tuple[ThinQBinarySensorEntityDescription, ThinQBinarySensorEntityDescription, ThinQBinarySensorEntityDescription, ThinQBinarySensorEntityDescription, ThinQBinarySensorEntityDescription, ThinQBinarySensorEntityDescription] | tuple[ThinQBinarySensorEntityDescription, ThinQBinarySensorEntityDescription, ThinQBinarySensorEntityDescription, ThinQBinarySensorEntityDescription]]` is not assignable to `dict[DeviceType, tuple[ThinQBinarySensorEntityDescription, ...]]` +homeassistant/components/lg_thinq/binary_sensor.py:147:17: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceType`, found `Unknown | str` +homeassistant/components/lg_thinq/climate.py:32:83: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | tuple[ClimateEntityDescription]]` is not assignable to `dict[DeviceType, tuple[ClimateEntityDescription, ...]]` +homeassistant/components/lg_thinq/climate.py:87:17: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceType`, found `Unknown | str` +homeassistant/components/lg_thinq/climate.py:141:12: error[unresolved-attribute] Object of type `PropertyState` has no attribute `support_temperature_range` +homeassistant/components/lg_thinq/climate.py:160:35: error[no-matching-overload] No overload of bound method `get` matches arguments +homeassistant/components/lg_thinq/climate.py:253:35: error[invalid-argument-type] Argument to bound method `async_set_hvac_mode` is incorrect: Expected `str`, found `str | Unknown | None` +homeassistant/components/lg_thinq/climate.py:296:35: error[invalid-argument-type] Argument to bound method `async_set_swing_mode` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/lg_thinq/climate.py:310:35: error[invalid-argument-type] Argument to bound method `async_set_swing_horizontal_mode` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/lg_thinq/climate.py:338:16: error[unsupported-operator] Operator `>=` is not supported for types `None` and `int`, in comparing `int | float | None` with `Literal[1]` +homeassistant/components/lg_thinq/climate.py:351:16: error[unsupported-operator] Operator `>=` is not supported for types `None` and `int`, in comparing `int | float | None` with `Literal[1]` +homeassistant/components/lg_thinq/coordinator.py:41:9: error[invalid-assignment] Object of type `dict[str, PropertyState] | None` is not assignable to attribute `data` of type `dict[str, Any]` +homeassistant/components/lg_thinq/event.py:30:79: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | tuple[EventEntityDescription] | tuple[EventEntityDescription, EventEntityDescription]]` is not assignable to `dict[DeviceType, tuple[EventEntityDescription, ...]]` +homeassistant/components/lg_thinq/event.py:67:17: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceType`, found `Unknown | str` +homeassistant/components/lg_thinq/event.py:95:9: error[invalid-assignment] Object of type `list[str] | None` is not assignable to attribute `_attr_event_types` of type `list[str]` +homeassistant/components/lg_thinq/fan.py:38:80: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | tuple[ThinQFanEntityDescription]]` is not assignable to `dict[DeviceType, tuple[ThinQFanEntityDescription, ...]]` +homeassistant/components/lg_thinq/fan.py:71:53: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceType`, found `Unknown | str` +homeassistant/components/lg_thinq/fan.py:104:23: error[not-iterable] Object of type `list[str] | None` may not be iterable +homeassistant/components/lg_thinq/fan.py:115:29: error[unsupported-operator] Operator `not in` is not supported for types `Unknown` and `None`, in comparing `Unknown | str` with `list[str] | None` +homeassistant/components/lg_thinq/number.py:55:67: error[invalid-assignment] Object of type `dict[Unknown | Property | TimerProperty, Unknown | NumberEntityDescription]` is not assignable to `dict[Property, NumberEntityDescription]` +homeassistant/components/lg_thinq/number.py:85:5: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, NumberEntityDescription].__getitem__(key: Property, /) -> NumberEntityDescription` cannot be called with key of type `Literal[TimerProperty.RELATIVE_HOUR_TO_START_WM]` on object of type `dict[Property, NumberEntityDescription]` +homeassistant/components/lg_thinq/number.py:86:5: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, NumberEntityDescription].__getitem__(key: Property, /) -> NumberEntityDescription` cannot be called with key of type `Literal[TimerProperty.RELATIVE_HOUR_TO_STOP_WM]` on object of type `dict[Property, NumberEntityDescription]` +homeassistant/components/lg_thinq/number.py:89:81: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | tuple[NumberEntityDescription, NumberEntityDescription, NumberEntityDescription] | tuple[NumberEntityDescription, NumberEntityDescription] | tuple[NumberEntityDescription]]` is not assignable to `dict[DeviceType, tuple[NumberEntityDescription, ...]]` +homeassistant/components/lg_thinq/number.py:114:25: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, NumberEntityDescription].__getitem__(key: Property, /) -> NumberEntityDescription` cannot be called with key of type `Literal[TimerProperty.RELATIVE_HOUR_TO_STOP_WM]` on object of type `dict[Property, NumberEntityDescription]` +homeassistant/components/lg_thinq/number.py:144:17: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceType`, found `Unknown | str` +homeassistant/components/lg_thinq/select.py:86:81: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | tuple[SelectEntityDescription, SelectEntityDescription] | tuple[SelectEntityDescription, SelectEntityDescription, SelectEntityDescription, SelectEntityDescription] | tuple[SelectEntityDescription]]` is not assignable to `dict[DeviceType, tuple[SelectEntityDescription, ...]]` +homeassistant/components/lg_thinq/select.py:164:17: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceType`, found `Unknown | str` +homeassistant/components/lg_thinq/sensor.py:127:70: error[invalid-assignment] Object of type `dict[Unknown | Property | ThinQPropertyEx, Unknown | SensorEntityDescription]` is not assignable to `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:262:73: error[invalid-assignment] Object of type `dict[Unknown | Property | ThinQPropertyEx, Unknown | SensorEntityDescription]` is not assignable to `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:356:66: error[invalid-assignment] Object of type `dict[Unknown | TimerProperty, Unknown | SensorEntityDescription]` is not assignable to `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:373:67: error[invalid-assignment] Object of type `dict[Unknown | TimerProperty, Unknown | SensorEntityDescription]` is not assignable to `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:426:5: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.TOTAL]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:427:5: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.RELATIVE_TO_START_WM]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:428:5: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.RELATIVE_TO_STOP_WM]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:429:5: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.REMAIN]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:431:81: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | tuple[SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription] | tuple[SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription, SensorEntityDescription] | ... omitted 9 union elements]` is not assignable to `dict[DeviceType, tuple[SensorEntityDescription, ...]]` +homeassistant/components/lg_thinq/sensor.py:441:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.RELATIVE_TO_START]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:442:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.RELATIVE_TO_STOP]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:443:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.SLEEP_TIMER_RELATIVE_TO_STOP]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:444:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.ABSOLUTE_TO_START]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:445:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.ABSOLUTE_TO_STOP]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:456:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.SLEEP_TIMER_RELATIVE_TO_STOP]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:457:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.ABSOLUTE_TO_START]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:458:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.ABSOLUTE_TO_STOP]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:472:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.ABSOLUTE_TO_START]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:473:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.ABSOLUTE_TO_STOP]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:478:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.REMAIN]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:489:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.TOTAL]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:490:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.RELATIVE_TO_START_WM]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:491:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.REMAIN]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:517:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.SLEEP_TIMER_RELATIVE_TO_STOP]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:518:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.ABSOLUTE_TO_START]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:519:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.ABSOLUTE_TO_STOP]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:542:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.LIGHT_START]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:556:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.RUNNING]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:557:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.ABSOLUTE_TO_START]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:561:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[ThinQPropertyEx.CURRENT_JOB_MODE_STICK_CLEANER]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:566:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[ThinQPropertyEx.ROOM_AIR_CURRENT_TEMPERATURE]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:567:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[ThinQPropertyEx.ROOM_IN_WATER_CURRENT_TEMPERATURE]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:568:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[ThinQPropertyEx.ROOM_OUT_WATER_CURRENT_TEMPERATURE]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:576:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.ABSOLUTE_TO_START]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:577:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.ABSOLUTE_TO_STOP]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:578:9: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Property, SensorEntityDescription].__getitem__(key: Property, /) -> SensorEntityDescription` cannot be called with key of type `Literal[TimerProperty.SLEEP_TIMER_RELATIVE_TO_STOP]` on object of type `dict[Property, SensorEntityDescription]` +homeassistant/components/lg_thinq/sensor.py:648:17: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceType`, found `Unknown | str` +homeassistant/components/lg_thinq/sensor.py:838:13: error[invalid-assignment] Object of type `Unknown | dict[Unknown, Unknown] | None` is not assignable to attribute `_attr_native_value` of type `StateType | date | Decimal` +homeassistant/components/lg_thinq/switch.py:43:86: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | tuple[ThinQSwitchEntityDescription, ThinQSwitchEntityDescription, ThinQSwitchEntityDescription, ThinQSwitchEntityDescription] | tuple[ThinQSwitchEntityDescription, ThinQSwitchEntityDescription, ThinQSwitchEntityDescription] | ... omitted 3 union elements]` is not assignable to `dict[DeviceType, tuple[ThinQSwitchEntityDescription, ...]]` +homeassistant/components/lg_thinq/switch.py:226:17: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceType`, found `Unknown | str` +homeassistant/components/lg_thinq/vacuum.py:24:86: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | tuple[StateVacuumEntityDescription]]` is not assignable to `dict[DeviceType, tuple[StateVacuumEntityDescription, ...]]` +homeassistant/components/lg_thinq/vacuum.py:84:17: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceType`, found `Unknown | str` +homeassistant/components/lg_thinq/water_heater.py:29:70: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | WaterHeaterEntityDescription]` is not assignable to `dict[DeviceType, WaterHeaterEntityDescription]` +homeassistant/components/lg_thinq/water_heater.py:61:51: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceType`, found `Unknown | str` +homeassistant/components/lifx/config_flow.py:147:46: error[invalid-assignment] Invalid assignment to key "title_placeholders" with declared type `Mapping[str, str]` on TypedDict `ConfigFlowContext`: value of type `dict[Unknown | str, Unknown | None]` +homeassistant/components/lifx/config_flow.py:149:42: error[invalid-argument-type] Argument to bound method `async_show_form` is incorrect: Expected `Mapping[str, str] | None`, found `dict[Unknown | str, Unknown | None]` +homeassistant/components/lifx/config_flow.py:219:13: error[invalid-argument-type] Argument to bound method `async_create_entry` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/lifx/config_flow.py:233:25: error[invalid-assignment] Object of type `Unknown | None` is not assignable to `Light` +homeassistant/components/lifx/coordinator.py:139:27: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str`, found `Unknown | None | str` +homeassistant/components/lifx/coordinator.py:147:52: error[invalid-argument-type] Argument to function `infrared_brightness_value_to_option` is incorrect: Expected `int`, found `Unknown | None` +homeassistant/components/lifx/coordinator.py:162:13: error[invalid-argument-type] Argument to function `get_real_mac_addr` is incorrect: Expected `str`, found `Unknown | None | str` +homeassistant/components/lifx/coordinator.py:200:20: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/lifx/coordinator.py:201:27: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/lifx/coordinator.py:202:27: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/lifx/coordinator.py:203:23: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/lifx/coordinator.py:209:48: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | None | list[Unknown | None]` +homeassistant/components/lifx/coordinator.py:210:17: error[invalid-assignment] Cannot assign to a subscript on an object of type `int` +homeassistant/components/lifx/coordinator.py:294:27: error[invalid-argument-type] Argument is incorrect: Expected `Message`, found `Light` +homeassistant/components/lifx/coordinator.py:294:33: error[invalid-argument-type] Argument is incorrect: Expected `dict[str, Any] | None`, found `Message` +homeassistant/components/lifx/coordinator.py:385:47: error[unresolved-attribute] Object of type `Message` has no attribute `signal` +homeassistant/components/lifx/coordinator.py:388:34: error[invalid-argument-type] Method `__getitem__` of type `bound method .__getitem__[_EnumMemberT](name: str) -> _EnumMemberT@__getitem__` cannot be called with key of type `Unknown | None` on object of type `` +homeassistant/components/lifx/light.py:155:16: error[unsupported-operator] Operator `/` is unsupported between objects of type `Unknown | int | None` and `Literal[65535]` +homeassistant/components/lifx/light.py:156:43: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/lifx/light.py:161:20: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/lifx/light.py:315:34: error[invalid-argument-type] Argument to function `merge_hsbk` is incorrect: Expected `list[int | float | None]`, found `Unknown | None` +homeassistant/components/lifx/light.py:383:19: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/lifx/light.py:389:26: error[not-iterable] Object of type `None` is not iterable +homeassistant/components/lifx/light.py:426:26: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/lifx/light.py:427:37: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/lifx/light.py:429:17: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/lifx/light.py:429:17: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/lifx/light.py:433:17: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/lifx/light.py:447:36: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/lifx/light.py:488:42: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | None | list[Unknown | None]` +homeassistant/components/lifx/light.py:489:17: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/components/lifx/light.py:492:42: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | None | list[Unknown | None]` +homeassistant/components/lifx/light.py:494:21: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/components/lifx/light.py:499:17: error[invalid-argument-type] Argument to bound method `async_set_extended_color_zones` is incorrect: Expected `list[tuple[int | float, int | float, int | float, int | float]]`, found `Unknown | None | list[Unknown | None]` +homeassistant/components/light/__init__.py:503:21: error[too-many-positional-arguments] Too many positional arguments to function `color_rgbww_to_rgb`: expected 7, got 9 +homeassistant/components/light/__init__.py:1156:31: error[too-many-positional-arguments] Too many positional arguments to function `color_rgbww_to_rgb`: expected 7, got 9 +homeassistant/components/lightwave/__init__.py:5:6: error[unresolved-import] Cannot resolve imported module `lightwave.lightwave` +homeassistant/components/limitlessled/light.py:9:6: error[unresolved-import] Cannot resolve imported module `limitlessled` +homeassistant/components/limitlessled/light.py:10:6: error[unresolved-import] Cannot resolve imported module `limitlessled.bridge` +homeassistant/components/limitlessled/light.py:11:6: error[unresolved-import] Cannot resolve imported module `limitlessled.group` +homeassistant/components/limitlessled/light.py:12:6: error[unresolved-import] Cannot resolve imported module `limitlessled.group.dimmer` +homeassistant/components/limitlessled/light.py:13:6: error[unresolved-import] Cannot resolve imported module `limitlessled.group.rgbw` +homeassistant/components/limitlessled/light.py:14:6: error[unresolved-import] Cannot resolve imported module `limitlessled.group.rgbww` +homeassistant/components/limitlessled/light.py:15:6: error[unresolved-import] Cannot resolve imported module `limitlessled.group.white` +homeassistant/components/limitlessled/light.py:16:6: error[unresolved-import] Cannot resolve imported module `limitlessled.pipeline` +homeassistant/components/limitlessled/light.py:17:6: error[unresolved-import] Cannot resolve imported module `limitlessled.presets` +homeassistant/components/linkplay/entity.py:42:53: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[DeviceAttribute, str].__getitem__(key: DeviceAttribute, /) -> str` cannot be called with key of type `Literal["project"]` on object of type `dict[DeviceAttribute, str]` +homeassistant/components/linkplay/entity.py:45:24: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[DeviceAttribute, str].__getitem__(key: DeviceAttribute, /) -> str` cannot be called with key of type `Literal["project"]` on object of type `dict[DeviceAttribute, str]` +homeassistant/components/linkplay/entity.py:50:45: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[DeviceAttribute, str].__getitem__(key: DeviceAttribute, /) -> str` cannot be called with key of type `Literal["MAC"]` on object of type `dict[DeviceAttribute, str]` +homeassistant/components/linkplay/entity.py:54:31: error[invalid-argument-type] Invalid argument to key "configuration_url" with declared type `str | URL | None` on TypedDict `DeviceInfo`: value of type `LinkPlayEndpoint` +homeassistant/components/linkplay/entity.py:56:24: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[DeviceAttribute, str].__getitem__(key: DeviceAttribute, /) -> str` cannot be called with key of type `Literal["hardware"]` on object of type `dict[DeviceAttribute, str]` +homeassistant/components/linkplay/entity.py:62:24: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[DeviceAttribute, str].__getitem__(key: DeviceAttribute, /) -> str` cannot be called with key of type `Literal["firmware"]` on object of type `dict[DeviceAttribute, str]` +homeassistant/components/linkplay/select.py:53:9: error[invalid-argument-type] Argument is incorrect: Expected `(LinkPlayPlayer, /) -> Awaitable[str]`, found `def _get_current_option(bridge: LinkPlayBridge) -> CoroutineType[Any, Any, str]` +homeassistant/components/linkplay/select.py:75:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `LinkPlayPlayer`, found `LinkPlayBridge` +homeassistant/components/linkplay/select.py:91:26: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `LinkPlayBridge`, found `LinkPlayPlayer` +homeassistant/components/linkplay/select.py:93:35: error[unresolved-attribute] Object of type `LinkPlayPlayer` has no attribute `device` +homeassistant/components/linkplay/select.py:100:17: error[invalid-argument-type] Argument is incorrect: Expected `LinkPlayPlayer`, found `Unknown | LinkPlayBridge` +homeassistant/components/linkplay/select.py:112:53: error[invalid-argument-type] Argument is incorrect: Expected `LinkPlayPlayer`, found `Unknown | LinkPlayBridge` +homeassistant/components/linode/__init__.py:6:8: error[unresolved-import] Cannot resolve imported module `linode` +homeassistant/components/linode/switch.py:73:12: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Unknown | None` +homeassistant/components/linode/switch.py:74:13: warning[possibly-missing-attribute] Attribute `boot` may be missing on object of type `Unknown | None` +homeassistant/components/linode/switch.py:78:12: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Unknown | None` +homeassistant/components/linode/switch.py:79:13: warning[possibly-missing-attribute] Attribute `shutdown` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `batinfo` +homeassistant/components/linux_battery/sensor.py:104:28: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:105:28: warning[possibly-missing-attribute] Attribute `path` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:106:30: warning[possibly-missing-attribute] Attribute `health` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:107:30: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:110:24: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:111:24: warning[possibly-missing-attribute] Attribute `path` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:112:25: warning[possibly-missing-attribute] Attribute `alarm` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:113:34: warning[possibly-missing-attribute] Attribute `capacity_level` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:114:31: warning[possibly-missing-attribute] Attribute `cycle_count` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:115:31: warning[possibly-missing-attribute] Attribute `energy_full` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:116:38: warning[possibly-missing-attribute] Attribute `energy_full_design` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:117:30: warning[possibly-missing-attribute] Attribute `energy_now` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:118:32: warning[possibly-missing-attribute] Attribute `manufacturer` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:119:30: warning[possibly-missing-attribute] Attribute `model_name` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:120:29: warning[possibly-missing-attribute] Attribute `power_now` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:121:33: warning[possibly-missing-attribute] Attribute `serial_number` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:122:26: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:123:38: warning[possibly-missing-attribute] Attribute `voltage_min_design` may be missing on object of type `Unknown | None` +homeassistant/components/linux_battery/sensor.py:124:31: warning[possibly-missing-attribute] Attribute `voltage_now` may be missing on object of type `Unknown | None` +homeassistant/components/livisi/climate.py:93:13: error[invalid-argument-type] Argument to bound method `async_vrcc_set_temperature` is incorrect: Expected `int | float`, found `Any | None` +homeassistant/components/livisi/coordinator.py:98:36: error[invalid-assignment] Object of type `Unknown | dict[str, Any] | None` is not assignable to `dict[str, Any]` +homeassistant/components/livisi/coordinator.py:107:42: error[invalid-assignment] Object of type `Unknown | dict[str, Any]` is not assignable to `list[dict[str, Any]]` +homeassistant/components/locative/device_tracker.py:58:9: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/logbook/helpers.py:220:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]` +homeassistant/components/logbook/helpers.py:221:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _forward_state_events_filtered(event: Event[EventStateChangedData]) -> None` +homeassistant/components/logentries/__init__.py:51:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/logentries/__init__.py:54:21: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]` +homeassistant/components/lookin/__init__.py:81:78: error[invalid-argument-type] Argument to function `start_lookin_udp` is incorrect: Expected `str`, found `None` +homeassistant/components/lookin/__init__.py:82:20: error[invalid-return-type] Return type does not match returned value: expected `LookinUDPSubscriptions`, found `LookinUDPSubscriptions | None` +homeassistant/components/lookin/__init__.py:157:33: error[invalid-argument-type] Argument to bound method `update_from_value` is incorrect: Expected `str`, found `str | None` +homeassistant/components/lookin/climate.py:183:13: error[invalid-argument-type] Argument to bound method `update_conditioner` is incorrect: Expected `str`, found `str | None | Unknown` +homeassistant/components/lookin/climate.py:204:52: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/lookin/climate.py:205:49: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/lookin/climate.py:217:42: error[invalid-argument-type] Argument to bound method `update_from_status` is incorrect: Expected `str`, found `str | None` +homeassistant/components/lookin/entity.py:161:34: error[invalid-argument-type] Argument to bound method `_update_from_status` is incorrect: Expected `str`, found `str | None` +homeassistant/components/lookin/entity.py:175:34: error[invalid-argument-type] Argument to bound method `_update_from_status` is incorrect: Expected `str`, found `str | None` +homeassistant/components/loqed/sensor.py:67:16: error[invalid-return-type] Return type does not match returned value: expected `StatusMessage`, found `Unknown | Lock` +homeassistant/components/lovelace/__init__.py:333:58: error[invalid-argument-type] Argument to function `async_register_built_in_panel` is incorrect: Expected `str | None`, found `Unknown | str | None | dict[Unknown | str, Unknown | str] | bool` +homeassistant/components/lovelace/__init__.py:333:58: error[invalid-argument-type] Argument to function `async_register_built_in_panel` is incorrect: Expected `str | None`, found `Unknown | str | None | dict[Unknown | str, Unknown | str] | bool` +homeassistant/components/lovelace/__init__.py:333:58: error[invalid-argument-type] Argument to function `async_register_built_in_panel` is incorrect: Expected `bool`, found `Unknown | str | None | dict[Unknown | str, Unknown | str] | bool` +homeassistant/components/lovelace/__init__.py:333:58: error[invalid-argument-type] Argument to function `async_register_built_in_panel` is incorrect: Expected `str | None`, found `Unknown | str | None | dict[Unknown | str, Unknown | str] | bool` +homeassistant/components/lovelace/__init__.py:333:58: error[invalid-argument-type] Argument to function `async_register_built_in_panel` is incorrect: Expected `dict[str, Any] | None`, found `Unknown | str | None | dict[Unknown | str, Unknown | str] | bool` +homeassistant/components/lovelace/__init__.py:333:58: error[invalid-argument-type] Argument to function `async_register_built_in_panel` is incorrect: Expected `bool`, found `Unknown | str | None | dict[Unknown | str, Unknown | str] | bool` +homeassistant/components/lovelace/__init__.py:333:58: error[invalid-argument-type] Argument to function `async_register_built_in_panel` is incorrect: Expected `bool`, found `Unknown | str | None | dict[Unknown | str, Unknown | str] | bool` +homeassistant/components/lovelace/__init__.py:333:58: error[invalid-argument-type] Argument to function `async_register_built_in_panel` is incorrect: Expected `str | None`, found `Unknown | str | None | dict[Unknown | str, Unknown | str] | bool` +homeassistant/components/lovelace/dashboard.py:155:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/components/lovelace/dashboard.py:158:38: error[invalid-argument-type] Argument to bound method `async_save` is incorrect: Expected `dict[str, Any]`, found `dict[str, Any] | None` +homeassistant/components/luci/device_tracker.py:7:6: error[unresolved-import] Cannot resolve imported module `openwrt_luci_rpc` +homeassistant/components/lunatone/__init__.py:45:20: warning[possibly-missing-attribute] Attribute `device` may be missing on object of type `InfoData | None` +homeassistant/components/lunatone/__init__.py:50:16: warning[possibly-missing-attribute] Attribute `device` may be missing on object of type `InfoData | None` +homeassistant/components/lunatone/__init__.py:50:53: warning[possibly-missing-attribute] Attribute `device` may be missing on object of type `InfoData | None` +homeassistant/components/lupusec/alarm_control_panel.py:49:45: error[unresolved-attribute] Module `lupupy.devices` has no member `LupusecAlarm` +homeassistant/components/lupusec/alarm_control_panel.py:64:12: warning[possibly-missing-attribute] Attribute `is_standby` may be missing on object of type `Unknown | LupusecDevice` +homeassistant/components/lupusec/alarm_control_panel.py:66:14: warning[possibly-missing-attribute] Attribute `is_away` may be missing on object of type `Unknown | LupusecDevice` +homeassistant/components/lupusec/alarm_control_panel.py:68:14: warning[possibly-missing-attribute] Attribute `is_home` may be missing on object of type `Unknown | LupusecDevice` +homeassistant/components/lupusec/alarm_control_panel.py:70:14: warning[possibly-missing-attribute] Attribute `is_alarm_triggered` may be missing on object of type `Unknown | LupusecDevice` +homeassistant/components/lupusec/alarm_control_panel.py:78:9: warning[possibly-missing-attribute] Attribute `set_away` may be missing on object of type `Unknown | LupusecDevice` +homeassistant/components/lupusec/alarm_control_panel.py:82:9: warning[possibly-missing-attribute] Attribute `set_standby` may be missing on object of type `Unknown | LupusecDevice` +homeassistant/components/lupusec/alarm_control_panel.py:86:9: warning[possibly-missing-attribute] Attribute `set_home` may be missing on object of type `Unknown | LupusecDevice` +homeassistant/components/lupusec/binary_sensor.py:53:16: warning[possibly-missing-attribute] Attribute `is_on` may be missing on object of type `Unknown | LupusecDevice` +homeassistant/components/lupusec/switch.py:47:9: warning[possibly-missing-attribute] Attribute `switch_on` may be missing on object of type `Unknown | LupusecDevice` +homeassistant/components/lupusec/switch.py:51:9: warning[possibly-missing-attribute] Attribute `switch_off` may be missing on object of type `Unknown | LupusecDevice` +homeassistant/components/lupusec/switch.py:56:16: warning[possibly-missing-attribute] Attribute `is_on` may be missing on object of type `Unknown | LupusecDevice` +homeassistant/components/lutron/__init__.py:127:46: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `tuple[str, Keypad, Button, Led]`, found `tuple[Unknown, Unknown, Unknown, Unknown | None]` +homeassistant/components/lutron/event.py:77:60: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(LutronEntity, Any, LutronEvent, dict[Unknown, Unknown], /) -> None`, found `bound method Self@async_added_to_hass.handle_event(button: Button, _context: None, event: LutronEvent, _params: dict[Unknown, Unknown]) -> None` +homeassistant/components/lutron/switch.py:90:9: error[invalid-assignment] Invalid assignment to data descriptor attribute `state` on type `Led` with custom `__set__` method +homeassistant/components/lutron/switch.py:94:9: error[invalid-assignment] Invalid assignment to data descriptor attribute `state` on type `Led` with custom `__set__` method +homeassistant/components/lutron_caseta/entity.py:50:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, str | int]]` +homeassistant/components/lutron_caseta/light.py:169:29: error[invalid-argument-type] Argument to bound method `set_warm_dim` is incorrect: Expected `bool`, found `None | Unknown` +homeassistant/components/lw12wifi/light.py:8:8: error[unresolved-import] Cannot resolve imported module `lw12` +homeassistant/components/madvr/sensor.py:279:15: error[unresolved-attribute] Object of type `SensorEntityDescription` has no attribute `value_fn` +homeassistant/components/mailgun/notify.py:105:20: warning[possibly-missing-attribute] Attribute `send_mail` may be missing on object of type `Unknown | None | Client` +homeassistant/components/matrix/__init__.py:163:31: error[invalid-type-form] Variable of type `_SpecialForm` is not allowed in a type expression +homeassistant/components/matrix/__init__.py:181:37: error[invalid-type-form] Variable of type `_SpecialForm` is not allowed in a type expression +homeassistant/components/matrix/__init__.py:208:44: error[invalid-argument-type] Argument to bound method `add_event_callback` is incorrect: Expected `type[Event] | tuple[type[Event], None]`, found `tuple[, ]` +homeassistant/components/matrix/__init__.py:259:72: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `ReactionCommand`, found `str` +homeassistant/components/matrix/__init__.py:324:33: error[invalid-type-form] Variable of type `_SpecialForm` is not allowed in a type expression +homeassistant/components/matrix/__init__.py:325:15: error[invalid-type-form] Variable of type `_SpecialForm` is not allowed in a type expression +homeassistant/components/matrix/__init__.py:350:65: error[invalid-type-form] Variable of type `_SpecialForm` is not allowed in a type expression +homeassistant/components/matrix/__init__.py:361:67: error[invalid-type-form] Variable of type `_SpecialForm` is not allowed in a type expression +homeassistant/components/matrix/__init__.py:422:17: error[invalid-argument-type] Argument to bound method `restore_login` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/matrix/__init__.py:423:17: error[invalid-argument-type] Argument to bound method `restore_login` is incorrect: Expected `str`, found `dict[str, dict[str, Any] | list[Any] | str | ... omitted 3 union elements] | list[dict[str, Any] | list[Any] | str | ... omitted 3 union elements] | str | int | float` +homeassistant/components/matrix/__init__.py:462:28: error[invalid-type-form] Variable of type `_SpecialForm` is not allowed in a type expression +homeassistant/components/matrix/__init__.py:480:38: error[invalid-type-form] Variable of type `_SpecialForm` is not allowed in a type expression +homeassistant/components/matrix/__init__.py:496:55: error[invalid-type-form] Variable of type `_SpecialForm` is not allowed in a type expression +homeassistant/components/matrix/__init__.py:552:48: error[invalid-type-form] Variable of type `_SpecialForm` is not allowed in a type expression +homeassistant/components/matrix/__init__.py:590:43: error[invalid-type-form] Variable of type `_SpecialForm` is not allowed in a type expression +homeassistant/components/matter/button.py:63:65: error[invalid-argument-type] Argument is incorrect: Expected `uint`, found `Literal[15]` +homeassistant/components/matter/entity.py:142:25: error[no-matching-overload] No overload of bound method `get` matches arguments +homeassistant/components/matter/light.py:115:17: error[invalid-argument-type] Argument is incorrect: Expected `uint`, found `int` +homeassistant/components/matter/light.py:116:17: error[invalid-argument-type] Argument is incorrect: Expected `uint`, found `int` +homeassistant/components/matter/light.py:118:17: error[invalid-argument-type] Argument is incorrect: Expected `uint`, found `int` +homeassistant/components/matter/light.py:121:17: error[invalid-argument-type] Argument is incorrect: Expected `uint`, found `Literal[1]` +homeassistant/components/matter/light.py:122:17: error[invalid-argument-type] Argument is incorrect: Expected `uint`, found `Literal[1]` +homeassistant/components/matter/light.py:135:17: error[invalid-argument-type] Argument is incorrect: Expected `uint`, found `int` +homeassistant/components/matter/light.py:136:17: error[invalid-argument-type] Argument is incorrect: Expected `uint`, found `int` +homeassistant/components/matter/light.py:138:17: error[invalid-argument-type] Argument is incorrect: Expected `uint`, found `int` +homeassistant/components/matter/light.py:141:17: error[invalid-argument-type] Argument is incorrect: Expected `uint`, found `Literal[1]` +homeassistant/components/matter/light.py:142:17: error[invalid-argument-type] Argument is incorrect: Expected `uint`, found `Literal[1]` +homeassistant/components/matter/light.py:155:17: error[invalid-argument-type] Argument is incorrect: Expected `uint`, found `int` +homeassistant/components/matter/light.py:157:17: error[invalid-argument-type] Argument is incorrect: Expected `uint`, found `int` +homeassistant/components/matter/light.py:160:17: error[invalid-argument-type] Argument is incorrect: Expected `uint`, found `Literal[1]` +homeassistant/components/matter/light.py:161:17: error[invalid-argument-type] Argument is incorrect: Expected `uint`, found `Literal[1]` +homeassistant/components/matter/light.py:184:17: error[invalid-argument-type] Argument is incorrect: Expected `Nullable | uint`, found `int` +homeassistant/components/matter/number.py:147:17: error[invalid-argument-type] Argument is incorrect: Expected `uint`, found `int | @Todo` +homeassistant/components/matter/number.py:354:17: error[invalid-argument-type] Argument is incorrect: Expected `uint | None`, found `int` +homeassistant/components/matter/select.py:146:34: error[invalid-assignment] Object of type `Unknown | None` is not assignable to `SelectCluster` +homeassistant/components/matter/select.py:163:34: error[invalid-assignment] Object of type `Unknown | None` is not assignable to `SelectCluster` +homeassistant/components/matter/valve.py:63:60: error[invalid-argument-type] Argument is incorrect: Expected `uint | None`, found `int` +homeassistant/components/matter/water_heater.py:94:13: error[invalid-argument-type] Argument is incorrect: Expected `uint`, found `int` +homeassistant/components/matter/water_heater.py:96:13: error[invalid-argument-type] Argument is incorrect: Expected `int | None`, found `int | ` +homeassistant/components/matter/water_heater.py:129:13: error[invalid-assignment] Object of type `WaterHeaterBoostInfoStruct` is not assignable to `type[WaterHeaterBoostInfoStruct]` +homeassistant/components/matter/water_heater.py:130:13: error[invalid-argument-type] Argument is incorrect: Expected `uint`, found `Literal[3600]` +homeassistant/components/matter/water_heater.py:146:63: error[invalid-argument-type] Argument is incorrect: Expected `WaterHeaterBoostInfoStruct`, found `type[WaterHeaterBoostInfoStruct]` +homeassistant/components/medcom_ble/coordinator.py:46:50: error[invalid-argument-type] Argument to bound method `update_device` is incorrect: Expected `BLEDevice`, found `BLEDevice | None` +homeassistant/components/medcom_ble/sensor.py:96:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `Unknown | str | int | float | None` +homeassistant/components/media_player/__init__.py:1024:52: error[invalid-argument-type] Argument to bound method `async_add_executor_job` is incorrect: Expected `(...) -> Unknown`, found `object` +homeassistant/components/media_player/__init__.py:1042:52: error[invalid-argument-type] Argument to bound method `async_add_executor_job` is incorrect: Expected `(...) -> Unknown`, found `object` +homeassistant/components/media_player/__init__.py:1060:52: error[invalid-argument-type] Argument to bound method `async_add_executor_job` is incorrect: Expected `(...) -> Unknown`, found `object` +homeassistant/components/media_player/__init__.py:1075:52: error[invalid-argument-type] Argument to bound method `async_add_executor_job` is incorrect: Expected `(...) -> Unknown`, found `object` +homeassistant/components/media_player/__init__.py:1210:13: error[invalid-assignment] Invalid subscript assignment with key of type `str` and value of type `dict[Unknown | str, Unknown | Lock]` on object of type `OrderedDict[str, _CacheImage]` +homeassistant/components/media_player/__init__.py:1219:31: error[invalid-assignment] Cannot assign value of type `tuple[bytes | None, str | None]` to key of type `Never` on TypedDict `_CacheImage` +homeassistant/components/media_source/__init__.py:74:56: error[invalid-argument-type] Argument to function `_process_media_source_platform` is incorrect: Expected `MediaSourceProtocol`, found `` +homeassistant/components/mediaroom/media_player.py:8:6: error[unresolved-import] Cannot resolve imported module `pymediaroom` +homeassistant/components/melcloud/__init__.py:105:25: error[invalid-argument-type] Invalid argument to key "connections" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown | None]]` +homeassistant/components/melcloud/climate.py:84:38: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `AtaDevice`, found `Unknown | Device` +homeassistant/components/melcloud/climate.py:89:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `AtwDevice`, found `Unknown | Device` +homeassistant/components/melcloud/climate.py:91:25: warning[possibly-missing-attribute] Attribute `zones` may be missing on object of type `Unknown | Device` +homeassistant/components/melcloud/climate.py:262:12: error[unsupported-operator] Operator `not in` is not supported for types `str` and `None`, in comparing `str` with `Unknown | list[str] | None` +homeassistant/components/melcloud/climate.py:271:12: error[unsupported-operator] Operator `not in` is not supported for types `str` and `None`, in comparing `str` with `Unknown | list[str] | None` +homeassistant/components/melcloud/config_flow.py:50:25: error[invalid-argument-type] Argument to function `login` is incorrect: Expected `str`, found `str | None` +homeassistant/components/melcloud/sensor.py:136:25: warning[possibly-missing-attribute] Attribute `zones` may be missing on object of type `Unknown | Device` +homeassistant/components/melcloud/water_heater.py:37:40: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `AtwDevice`, found `Unknown | Device` +homeassistant/components/melissa/climate.py:150:25: warning[possibly-missing-attribute] Attribute `copy` may be missing on object of type `Unknown | None` +homeassistant/components/melissa/climate.py:151:13: warning[possibly-missing-attribute] Attribute `update` may be missing on object of type `Unknown | None` +homeassistant/components/message_bird/notify.py:7:8: error[unresolved-import] Cannot resolve imported module `messagebird` +homeassistant/components/message_bird/notify.py:8:6: error[unresolved-import] Cannot resolve imported module `messagebird.client` +homeassistant/components/meteo_france/__init__.py:67:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(() -> Awaitable[dict[str, Any]]) | None`, found `def _async_update_data_forecast_forecast() -> CoroutineType[Any, Any, Forecast]` +homeassistant/components/meteo_france/__init__.py:85:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(() -> Awaitable[dict[str, Any]]) | None`, found `def _async_update_data_rain() -> CoroutineType[Any, Any, Rain]` +homeassistant/components/meteo_france/__init__.py:96:18: error[unresolved-attribute] Object of type `dict[str, Any]` has no attribute `position` +homeassistant/components/meteo_france/__init__.py:109:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(() -> Awaitable[dict[str, Any]]) | None`, found `def _async_update_data_alert() -> CoroutineType[Any, Any, CurrentPhenomenons]` +homeassistant/components/meteo_france/sensor.py:284:27: error[unsupported-operator] Operator `*` is unsupported between objects of type `int | None | Any` and `float` +homeassistant/components/meteo_lt/weather.py:81:16: error[invalid-return-type] Return type does not match returned value: expected `int | None`, found `Unknown | int | float` +homeassistant/components/meteo_lt/weather.py:96:16: error[invalid-return-type] Return type does not match returned value: expected `int | None`, found `Unknown | int | float` +homeassistant/components/meteo_lt/weather.py:106:16: error[invalid-return-type] Return type does not match returned value: expected `int | None`, found `Unknown | int | float` +homeassistant/components/meteoalarm/binary_sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `meteoalertapi` +homeassistant/components/meteoclimatic/sensor.py:152:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, str | None]]` +homeassistant/components/meteoclimatic/sensor.py:152:35: warning[possibly-missing-attribute] Attribute `unique_id` may be missing on object of type `ConfigEntry[Any] | None` +homeassistant/components/meteoclimatic/weather.py:68:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, str | None]]` +homeassistant/components/meteoclimatic/weather.py:68:35: warning[possibly-missing-attribute] Attribute `unique_id` may be missing on object of type `ConfigEntry[Any] | None` +homeassistant/components/metoffice/__init__.py:72:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(() -> Awaitable[dict[str, Any]]) | None`, found `def async_update_hourly() -> CoroutineType[Any, Any, Forecast]` +homeassistant/components/metoffice/__init__.py:81:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(() -> Awaitable[dict[str, Any]]) | None`, found `def async_update_daily() -> CoroutineType[Any, Any, Forecast]` +homeassistant/components/metoffice/__init__.py:90:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(() -> Awaitable[dict[str, Any]]) | None`, found `def async_update_twice_daily() -> CoroutineType[Any, Any, Forecast]` +homeassistant/components/mfi/sensor.py:79:28: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/mfi/switch.py:67:28: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/microbees/binary_sensor.py:80:16: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `int | float` +homeassistant/components/microbees/climate.py:112:9: error[invalid-assignment] Object of type `Any | None` is not assignable to attribute `targetTemp` of type `int | float` +homeassistant/components/microbees/light.py:46:9: error[invalid-assignment] Object of type `list[int]` is not assignable to attribute `_attr_rgbw_color` of type `tuple[int, int, int, int] | None` +homeassistant/components/microbees/light.py:56:16: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `int` +homeassistant/components/microbees/switch.py:56:16: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `int` +homeassistant/components/mikrotik/coordinator.py:345:12: error[invalid-return-type] Return type does not match returned value: expected `Api`, found `type[Api]` +homeassistant/components/mill/climate.py:117:15: warning[possibly-missing-attribute] Attribute `set_heater_temp` may be missing on object of type `Unknown | Mill | Mill` +homeassistant/components/mill/climate.py:118:13: error[invalid-argument-type] Argument to bound method `set_heater_temp` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/mill/climate.py:125:19: warning[possibly-missing-attribute] Attribute `heater_control` may be missing on object of type `Unknown | Mill | Mill` +homeassistant/components/mill/climate.py:126:17: error[invalid-argument-type] Argument to bound method `heater_control` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/mill/climate.py:130:19: warning[possibly-missing-attribute] Attribute `heater_control` may be missing on object of type `Unknown | Mill | Mill` +homeassistant/components/mill/climate.py:131:17: error[invalid-argument-type] Argument to bound method `heater_control` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/mill/climate.py:178:19: warning[possibly-missing-attribute] Attribute `mac_address` may be missing on object of type `Unknown | Mill | Mill` +homeassistant/components/mill/climate.py:182:35: warning[possibly-missing-attribute] Attribute `url` may be missing on object of type `Unknown | Mill | Mill` +homeassistant/components/mill/climate.py:185:22: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | Mill | Mill` +homeassistant/components/mill/climate.py:186:28: warning[possibly-missing-attribute] Attribute `version` may be missing on object of type `Unknown | Mill | Mill` +homeassistant/components/mill/climate.py:195:15: warning[possibly-missing-attribute] Attribute `set_target_temperature` may be missing on object of type `Unknown | Mill | Mill` +homeassistant/components/mill/climate.py:203:19: warning[possibly-missing-attribute] Attribute `set_operation_mode_control_individually` may be missing on object of type `Unknown | Mill | Mill` +homeassistant/components/mill/climate.py:206:19: warning[possibly-missing-attribute] Attribute `set_operation_mode_off` may be missing on object of type `Unknown | Mill | Mill` +homeassistant/components/mill/entity.py:33:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, str | None]]` +homeassistant/components/mill/entity.py:43:27: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, Any].__getitem__(key: str, /) -> Any` cannot be called with key of type `Unknown | str | None` on object of type `dict[str, Any]` +homeassistant/components/mill/number.py:56:35: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/mill/number.py:63:15: warning[possibly-missing-attribute] Attribute `max_heating_power` may be missing on object of type `Unknown | Mill | Mill` +homeassistant/components/mill/number.py:63:71: error[invalid-argument-type] Argument to bound method `max_heating_power` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/mill/sensor.py:221:19: warning[possibly-missing-attribute] Attribute `mac_address` may be missing on object of type `Unknown | Mill | Mill` +homeassistant/components/mill/sensor.py:225:35: warning[possibly-missing-attribute] Attribute `url` may be missing on object of type `Unknown | Mill | Mill` +homeassistant/components/mill/sensor.py:228:22: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | Mill | Mill` +homeassistant/components/mill/sensor.py:229:28: warning[possibly-missing-attribute] Attribute `version` may be missing on object of type `Unknown | Mill | Mill` +homeassistant/components/min_max/sensor.py:257:57: error[invalid-assignment] Object of type `Event[dict[Unknown | str, Unknown | str | State | None]]` is not assignable to `Event[EventStateChangedData]` +homeassistant/components/mobile_app/device_tracker.py:70:16: error[invalid-return-type] Return type does not match returned value: expected `int | None`, found `Unknown | None | tuple[Any | None, Any | None]` +homeassistant/components/mobile_app/device_tracker.py:70:16: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None | dict[Unknown, Unknown] | dict[Unknown | str, Unknown | tuple[Any | None, Any | None] | None]` +homeassistant/components/mobile_app/device_tracker.py:77:26: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None | dict[Unknown, Unknown] | dict[Unknown | str, Unknown | tuple[Any | None, Any | None] | None]` +homeassistant/components/mobile_app/device_tracker.py:85:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `Unknown | tuple[Any | None, Any | None] | None` +homeassistant/components/mobile_app/device_tracker.py:85:16: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None | dict[Unknown, Unknown] | dict[Unknown | str, Unknown | tuple[Any | None, Any | None] | None]` +homeassistant/components/mobile_app/device_tracker.py:90:20: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None | dict[Unknown, Unknown] | dict[Unknown | str, Unknown | tuple[Any | None, Any | None] | None]` +homeassistant/components/mobile_app/device_tracker.py:98:20: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None | dict[Unknown, Unknown] | dict[Unknown | str, Unknown | tuple[Any | None, Any | None] | None]` +homeassistant/components/mobile_app/device_tracker.py:106:29: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None | dict[Unknown, Unknown] | dict[Unknown | str, Unknown | tuple[Any | None, Any | None] | None]` +homeassistant/components/mobile_app/device_tracker.py:113:20: error[invalid-return-type] Return type does not match returned value: expected `str | None`, found `(Unknown & ~AlwaysFalsy & ~Literal["home"]) | tuple[Any | None, Any | None]` +homeassistant/components/mobile_app/entity.py:83:28: error[invalid-argument-type] Argument to function `device_info` is incorrect: Expected `dict[Unknown, Unknown]`, found `Unknown | MappingProxyType[str, Any]` +homeassistant/components/mobile_app/webhook.py:171:23: error[unresolved-attribute] Module `voluptuous` has no member `humanize` +homeassistant/components/mobile_app/webhook.py:212:15: error[unresolved-attribute] Module `voluptuous` has no member `humanize` +homeassistant/components/mobile_app/webhook.py:674:23: error[unresolved-attribute] Module `voluptuous` has no member `humanize` +homeassistant/components/modbus/cover.py:100:34: error[invalid-argument-type] Argument to bound method `_set_attr_state` is incorrect: Expected `str | int`, found `Unknown | bool | None` +homeassistant/components/modbus/light.py:202:20: error[unsupported-operator] Operator `-` is unsupported between objects of type `int | None` and `int | None` +homeassistant/components/modbus/light.py:219:16: error[unsupported-operator] Operator `-` is unsupported between objects of type `int` and `int | None` +homeassistant/components/modbus/light.py:221:16: error[unsupported-operator] Operator `-` is unsupported between objects of type `int | None` and `int | None` +homeassistant/components/modern_forms/fan.py:144:49: error[invalid-argument-type] Argument to bound method `fan` is incorrect: Expected `str | None`, found `Unknown | bool` +homeassistant/components/moehlenhoff_alpha2/config_flow.py:29:13: error[unresolved-attribute] Object of type `object` has no attribute `ClientConnectorError` +homeassistant/components/mold_indicator/__init__.py:75:44: error[invalid-key] Unknown key "changes" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "changes" +homeassistant/components/motion_blinds/button.py:57:52: warning[possibly-missing-attribute] Attribute `Go_favorite_position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/button.py:77:52: warning[possibly-missing-attribute] Attribute `Set_favorite_position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:201:12: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:203:22: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:208:12: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:210:16: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:215:52: warning[possibly-missing-attribute] Attribute `Open` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:221:52: warning[possibly-missing-attribute] Attribute `Close` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:229:17: warning[possibly-missing-attribute] Attribute `Set_position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:245:17: warning[possibly-missing-attribute] Attribute `Set_position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:255:52: warning[possibly-missing-attribute] Attribute `Stop` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:277:12: warning[possibly-missing-attribute] Attribute `angle` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:279:23: warning[possibly-missing-attribute] Attribute `angle` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:284:12: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:286:16: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:291:52: warning[possibly-missing-attribute] Attribute `Set_angle` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:298:52: warning[possibly-missing-attribute] Attribute `Set_angle` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:306:52: warning[possibly-missing-attribute] Attribute `Set_angle` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:313:52: warning[possibly-missing-attribute] Attribute `Stop` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:348:12: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:349:16: warning[possibly-missing-attribute] Attribute `angle` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:351:27: warning[possibly-missing-attribute] Attribute `angle` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:353:22: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:358:12: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:359:16: warning[possibly-missing-attribute] Attribute `angle` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:361:20: warning[possibly-missing-attribute] Attribute `angle` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:363:16: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:368:52: warning[possibly-missing-attribute] Attribute `Open` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:375:52: warning[possibly-missing-attribute] Attribute `Close` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:382:12: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:386:21: warning[possibly-missing-attribute] Attribute `Set_angle` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:391:21: warning[possibly-missing-attribute] Attribute `Set_position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:402:12: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:406:21: warning[possibly-missing-attribute] Attribute `Set_angle` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:411:21: warning[possibly-missing-attribute] Attribute `Set_position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:437:12: warning[possibly-missing-attribute] Attribute `scaled_position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:440:22: warning[possibly-missing-attribute] Attribute `scaled_position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:445:12: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:449:20: warning[possibly-missing-attribute] Attribute `width` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:451:16: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:457:12: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:459:23: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:461:12: warning[possibly-missing-attribute] Attribute `width` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:462:38: warning[possibly-missing-attribute] Attribute `width` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:468:52: warning[possibly-missing-attribute] Attribute `Open` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:474:52: warning[possibly-missing-attribute] Attribute `Close` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:482:17: warning[possibly-missing-attribute] Attribute `Set_scaled_position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:493:17: warning[possibly-missing-attribute] Attribute `Set_position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/cover.py:501:52: warning[possibly-missing-attribute] Attribute `Stop` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/entity.py:55:23: warning[possibly-missing-attribute] Attribute `_gateway` may be missing on object of type `MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/entity.py:56:12: warning[possibly-missing-attribute] Attribute `firmware` may be missing on object of type `MotionGateway | MotionBlind | Unknown` +homeassistant/components/motion_blinds/entity.py:57:29: warning[possibly-missing-attribute] Attribute `firmware` may be missing on object of type `MotionGateway | MotionBlind | Unknown` +homeassistant/components/motion_blinds/entity.py:57:59: warning[possibly-missing-attribute] Attribute `protocol` may be missing on object of type `MotionGateway | MotionBlind | Unknown` +homeassistant/components/motion_blinds/entity.py:59:39: warning[possibly-missing-attribute] Attribute `protocol` may be missing on object of type `MotionGateway | MotionBlind | Unknown` +homeassistant/components/motion_blinds/entity.py:75:23: warning[possibly-missing-attribute] Attribute `blind_type` may be missing on object of type `MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/entity.py:78:28: warning[possibly-missing-attribute] Attribute `wireless_name` may be missing on object of type `MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/entity.py:84:23: warning[possibly-missing-attribute] Attribute `blind_type` may be missing on object of type `MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/entity.py:86:37: warning[possibly-missing-attribute] Attribute `_gateway` may be missing on object of type `MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/entity.py:87:28: warning[possibly-missing-attribute] Attribute `wireless_name` may be missing on object of type `MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/entity.py:115:41: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/entity.py:116:38: warning[possibly-missing-attribute] Attribute `angle` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/entity.py:123:52: warning[possibly-missing-attribute] Attribute `Update_trigger` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/entity.py:130:17: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/entity.py:135:17: warning[possibly-missing-attribute] Attribute `angle` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/entity.py:156:12: warning[possibly-missing-attribute] Attribute `position` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/entity.py:156:45: warning[possibly-missing-attribute] Attribute `angle` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/gateway.py:54:31: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `MotionMulticast`, found `Unknown | None` +homeassistant/components/motion_blinds/gateway.py:122:35: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `MotionMulticast`, found `AsyncMotionMulticast` +homeassistant/components/motion_blinds/sensor.py:68:16: warning[possibly-missing-attribute] Attribute `battery_level` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/sensor.py:73:39: warning[possibly-missing-attribute] Attribute `battery_voltage` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/sensor.py:90:12: warning[possibly-missing-attribute] Attribute `battery_level` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/sensor.py:92:16: warning[possibly-missing-attribute] Attribute `battery_level` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/sensor.py:98:12: warning[possibly-missing-attribute] Attribute `battery_voltage` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motion_blinds/sensor.py:99:48: warning[possibly-missing-attribute] Attribute `battery_voltage` may be missing on object of type `Unknown | MotionGateway | MotionBlind` +homeassistant/components/motioneye/__init__.py:403:13: error[unresolved-attribute] Module `json` has no member `decoder` +homeassistant/components/mpd/config_flow.py:39:13: error[unresolved-attribute] Unresolved attribute `timeout` on type `MPDClient`. +homeassistant/components/mpd/config_flow.py:40:13: error[unresolved-attribute] Unresolved attribute `idletimeout` on type `MPDClient`. +homeassistant/components/mpd/config_flow.py:45:31: error[unresolved-attribute] Object of type `MPDClient` has no attribute `password` +homeassistant/components/mpd/media_player.py:120:9: error[unresolved-attribute] Unresolved attribute `timeout` on type `MPDClient`. +homeassistant/components/mpd/media_player.py:121:9: error[unresolved-attribute] Unresolved attribute `idletimeout` on type `MPDClient`. +homeassistant/components/mpd/media_player.py:137:48: warning[possibly-missing-attribute] Attribute `timeout` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:144:27: warning[possibly-missing-attribute] Attribute `password` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:175:38: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:176:43: warning[possibly-missing-attribute] Attribute `currentsong` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:210:16: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/mpd/media_player.py:215:32: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/mpd/media_player.py:227:16: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/mpd/media_player.py:228:17: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/mpd/media_player.py:229:21: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/mpd/media_player.py:245:19: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/mpd/media_player.py:253:16: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/mpd/media_player.py:308:35: warning[possibly-missing-attribute] Attribute `commands` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:318:38: warning[possibly-missing-attribute] Attribute `readpicture` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:330:38: warning[possibly-missing-attribute] Attribute `albumart` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:384:44: warning[possibly-missing-attribute] Attribute `listplaylists` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:394:23: warning[possibly-missing-attribute] Attribute `setvol` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:403:21: warning[possibly-missing-attribute] Attribute `setvol` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:412:27: warning[possibly-missing-attribute] Attribute `setvol` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:418:23: warning[possibly-missing-attribute] Attribute `pause` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:420:23: warning[possibly-missing-attribute] Attribute `play` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:425:19: warning[possibly-missing-attribute] Attribute `pause` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:430:19: warning[possibly-missing-attribute] Attribute `stop` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:435:19: warning[possibly-missing-attribute] Attribute `next` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:440:19: warning[possibly-missing-attribute] Attribute `previous` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:471:23: warning[possibly-missing-attribute] Attribute `clear` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:472:23: warning[possibly-missing-attribute] Attribute `load` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:473:23: warning[possibly-missing-attribute] Attribute `play` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:475:23: warning[possibly-missing-attribute] Attribute `clear` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:477:23: warning[possibly-missing-attribute] Attribute `add` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:478:23: warning[possibly-missing-attribute] Attribute `play` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:493:23: warning[possibly-missing-attribute] Attribute `repeat` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:494:23: warning[possibly-missing-attribute] Attribute `single` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:496:23: warning[possibly-missing-attribute] Attribute `repeat` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:498:27: warning[possibly-missing-attribute] Attribute `single` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:500:27: warning[possibly-missing-attribute] Attribute `single` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:505:25: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsInt | SupportsIndex | SupportsTrunc`, found `Unknown | None` +homeassistant/components/mpd/media_player.py:510:19: warning[possibly-missing-attribute] Attribute `random` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:515:19: warning[possibly-missing-attribute] Attribute `stop` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:520:19: warning[possibly-missing-attribute] Attribute `play` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:526:19: warning[possibly-missing-attribute] Attribute `clear` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mpd/media_player.py:531:19: warning[possibly-missing-attribute] Attribute `seekcur` may be missing on object of type `Unknown | MPDClient` +homeassistant/components/mqtt/client.py:270:10: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/components/mqtt/client.py:270:18: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[ReceiveMessage]`? +homeassistant/components/mqtt/client.py:838:30: error[unresolved-attribute] Object of type `object` has no attribute `__name__` +homeassistant/components/mqtt/client.py:840:30: error[unresolved-attribute] Object of type `((ReceiveMessage, /) -> Coroutine[Any, Any, None] | None) & ~Top[partial[Unknown]]` has no attribute `__name__` +homeassistant/components/mqtt/config_flow.py:3376:65: error[no-matching-overload] No overload of bound method `__init__` matches arguments +homeassistant/components/mqtt/config_flow.py:4215:30: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, dict[str, Any]].__getitem__(key: str, /) -> dict[str, Any]` cannot be called with key of type `str | None` on object of type `dict[str, dict[str, Any]]` +homeassistant/components/mqtt/config_flow.py:4217:33: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, dict[str, Any]].__getitem__(key: str, /) -> dict[str, Any]` cannot be called with key of type `str | None` on object of type `dict[str, dict[str, Any]]` +homeassistant/components/mqtt/config_flow.py:4589:13: error[no-matching-overload] No overload of bound method `update` matches arguments +homeassistant/components/mqtt/config_flow.py:4590:13: error[no-matching-overload] No overload of bound method `update` matches arguments +homeassistant/components/mqtt/config_flow.py:4626:9: error[no-matching-overload] No overload of bound method `update` matches arguments +homeassistant/components/mqtt/config_flow.py:4638:13: error[no-matching-overload] No overload of bound method `update` matches arguments +homeassistant/components/mqtt/config_flow.py:4639:13: error[no-matching-overload] No overload of bound method `update` matches arguments +homeassistant/components/mqtt/debug_info.py:64:13: error[invalid-assignment] Invalid subscript assignment with key of type `str` and value of type `dict[Unknown | str, Unknown | int | deque[Unknown]]` on object of type `dict[str, SubscriptionDebugInfo]` +homeassistant/components/mqtt/debug_info.py:120:5: error[invalid-assignment] Invalid subscript assignment with key of type `tuple[str, str]` and value of type `dict[Unknown | str, Unknown | str | dict[str, Any]]` on object of type `dict[tuple[str, str], TriggerDebugInfo]` +homeassistant/components/mqtt/discovery.py:63:25: error[too-many-positional-arguments] Too many positional arguments to class `SignalTypeFormat`: expected 0, got 1 +homeassistant/components/mqtt/discovery.py:66:21: error[too-many-positional-arguments] Too many positional arguments to class `SignalTypeFormat`: expected 0, got 1 +homeassistant/components/mqtt/discovery.py:69:22: error[too-many-positional-arguments] Too many positional arguments to class `SignalTypeFormat`: expected 0, got 1 +homeassistant/components/mqtt/discovery.py:544:13: error[invalid-assignment] Invalid subscript assignment with key of type `tuple[str, str]` and value of type `dict[Unknown | str, Unknown | (() -> None) | deque[Unknown]]` on object of type `dict[tuple[str, str], PendingDiscovered]` +homeassistant/components/mqtt/entity.py:382:17: error[no-matching-overload] No overload of bound method `update` matches arguments +homeassistant/components/mqtt/entity.py:383:17: error[no-matching-overload] No overload of bound method `update` matches arguments +homeassistant/components/mqtt/entity.py:1733:47: error[invalid-key] Unknown key "changes" for TypedDict `_EventDeviceRegistryUpdatedData_Create`: Unknown key "changes" +homeassistant/components/mqtt/entity.py:1733:47: error[invalid-key] Unknown key "changes" for TypedDict `_EventDeviceRegistryUpdatedData_Remove`: Unknown key "changes" +homeassistant/components/mqtt/subscription.py:169:28: error[invalid-assignment] Implicit shadowing of function `async_unsubscribe_topics` +homeassistant/components/mqtt/valve.py:332:54: error[invalid-argument-type] Argument to bound method `_process_position_valve_update` is incorrect: Expected `str`, found `Unknown | str | bytes | ... omitted 6 union elements` +homeassistant/components/mqtt/valve.py:332:72: error[invalid-argument-type] Argument to bound method `_process_position_valve_update` is incorrect: Expected `str`, found `Unknown | str | bytes | ... omitted 6 union elements` +homeassistant/components/mqtt/valve.py:334:52: error[invalid-argument-type] Argument to bound method `_process_binary_valve_update` is incorrect: Expected `str`, found `Unknown | str | bytes | ... omitted 6 union elements` +homeassistant/components/mqtt_statestream/__init__.py:104:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]` +homeassistant/components/mqtt_statestream/__init__.py:104:34: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _state_publisher(evt: Event[EventStateChangedData]) -> CoroutineType[Any, Any, None]` +homeassistant/components/mqtt_statestream/__init__.py:104:52: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _event_filter(event_data: EventStateChangedData) -> bool` +homeassistant/components/msteams/notify.py:7:8: error[unresolved-import] Cannot resolve imported module `pymsteams` +homeassistant/components/music_assistant/media_player.py:672:39: warning[possibly-missing-attribute] Attribute `uri` may be missing on object of type `QueueItem | None` +homeassistant/components/music_assistant/media_player.py:673:37: warning[possibly-missing-attribute] Attribute `duration` may be missing on object of type `QueueItem | None` +homeassistant/components/mutesync/config_flow.py:41:12: error[invalid-return-type] Return type does not match returned value: expected `dict[str, Any]`, found `str` +homeassistant/components/mvglive/sensor.py:11:6: error[unresolved-import] Cannot resolve imported module `mvg` +homeassistant/components/mycroft/notify.py:7:6: error[unresolved-import] Cannot resolve imported module `mycroftapi` +homeassistant/components/mycroft/notify.py:40:13: error[missing-argument] No argument provided for required parameter `msg` of bound method `log` +homeassistant/components/mycroft/notify.py:40:25: error[invalid-argument-type] Argument to bound method `log` is incorrect: Expected `int`, found `Literal["Could not reach this instance of mycroft"]` +homeassistant/components/mysensors/gateway.py:327:20: warning[possibly-missing-attribute] Attribute `const` may be missing on object of type `Unknown | None` +homeassistant/components/mysensors/handler.py:40:16: warning[possibly-missing-attribute] Attribute `const` may be missing on object of type `Unknown | None` +homeassistant/components/mysensors/helpers.py:167:26: error[invalid-argument-type] Argument to function `validate_node` is incorrect: Expected `BaseAsyncGateway`, found `Unknown | None` +homeassistant/components/mysensors/helpers.py:169:13: warning[possibly-missing-attribute] Attribute `sensors` may be missing on object of type `Unknown | None` +homeassistant/components/mysensors/helpers.py:170:39: error[invalid-argument-type] Argument to function `validate_child` is incorrect: Expected `BaseAsyncGateway`, found `Unknown | None` +homeassistant/components/mystrom/sensor.py:63:29: error[invalid-assignment] Object of type `MyStromSwitch | MyStromBulb` is not assignable to `MyStromSwitch` +homeassistant/components/mystrom/sensor.py:91:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, str | None]]` +homeassistant/components/nad/media_player.py:5:6: error[unresolved-import] Cannot resolve imported module `nad_receiver` +homeassistant/components/nasweb/sensor.py:155:41: error[unsupported-operator] Operator `in` is not supported for types `Unknown` and `None`, in comparing `(Unknown & ~None) | str` with `list[str] | None` +homeassistant/components/neato/vacuum.py:298:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/components/neato/vacuum.py:299:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/components/neato/vacuum.py:300:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/components/neato/vacuum.py:301:16: error[invalid-return-type] Return type does not match returned value: expected `DeviceInfo`, found `DeviceInfo | None` +homeassistant/components/ness_alarm/alarm_control_panel.py:74:35: error[invalid-argument-type] Argument to bound method `disarm` is incorrect: Expected `str`, found `str | None` +homeassistant/components/ness_alarm/alarm_control_panel.py:86:34: error[invalid-argument-type] Argument to bound method `panic` is incorrect: Expected `str`, found `str | None` +homeassistant/components/netdata/sensor.py:7:6: error[unresolved-import] Cannot resolve imported module `netdata` +homeassistant/components/netdata/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `netdata.exceptions` +homeassistant/components/netgear/__init__.py:96:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(() -> Awaitable[dict[str, Any]]) | None`, found `def async_update_devices() -> CoroutineType[Any, Any, bool]` +homeassistant/components/netgear/config_flow.py:133:13: error[invalid-argument-type] Argument to bound method `async_show_form` is incorrect: Expected `Mapping[str, str] | None`, found `Unknown | dict[Unknown | str, Unknown | str | int]` +homeassistant/components/netgear_lte/__init__.py:76:32: error[unknown-argument] Argument `hostname` does not match any known parameter +homeassistant/components/netgear_lte/__init__.py:76:47: error[unknown-argument] Argument `websession` does not match any known parameter +homeassistant/components/netgear_lte/config_flow.py:66:13: error[unknown-argument] Argument `hostname` does not match any known parameter +homeassistant/components/netgear_lte/config_flow.py:67:13: error[unknown-argument] Argument `password` does not match any known parameter +homeassistant/components/netgear_lte/config_flow.py:68:13: error[unknown-argument] Argument `websession` does not match any known parameter +homeassistant/components/netio/switch.py:10:6: error[unresolved-import] Cannot resolve imported module `pynetio` +homeassistant/components/neurio_energy/sensor.py:8:8: error[unresolved-import] Cannot resolve imported module `neurio` +homeassistant/components/nexia/climate.py:170:45: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | int` +homeassistant/components/nexia/climate.py:368:17: error[unsupported-operator] Operator `-` is unsupported between objects of type `Any | None | int` and `(Any & ~AlwaysFalsy) | (int & ~AlwaysFalsy)` +homeassistant/components/nexia/climate.py:375:17: error[unsupported-operator] Operator `-` is unsupported between objects of type `(Any & ~AlwaysFalsy) | (int & ~AlwaysFalsy)` and `Any | None | int` +homeassistant/components/nexia/coordinator.py:44:16: error[invalid-return-type] Return type does not match returned value: expected `dict[str, Any]`, found `Unknown | dict[str, Any] | None` +homeassistant/components/nexia/entity.py:59:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, int | str]]` +homeassistant/components/nexia/entity.py:110:9: error[unsupported-operator] Operator `|=` is unsupported between objects of type `DeviceInfo & ~None` and `dict[Unknown | str, Unknown | set[Unknown | tuple[str, Unknown | str | int]] | str | tuple[str, Unknown | int | str]]` +homeassistant/components/nexia/scene.py:45:39: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `int` +homeassistant/components/nexia/switch.py:74:45: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | int` +homeassistant/components/nexia/switch.py:112:32: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[int, NexiaRoomIQHarmonizer].__getitem__(key: int, /) -> NexiaRoomIQHarmonizer` cannot be called with key of type `Unknown | str | int` on object of type `dict[int, NexiaRoomIQHarmonizer]` +homeassistant/components/nexia/switch.py:117:13: error[invalid-assignment] Invalid subscript assignment with key of type `Unknown | str | int` and value of type `NexiaRoomIQHarmonizer` on object of type `dict[int, NexiaRoomIQHarmonizer]` +homeassistant/components/nextbus/coordinator.py:118:29: error[invalid-assignment] Invalid subscript assignment with key of type `RouteStop` and value of type `Unknown | StopPrediction` on object of type `dict[RouteStop, dict[str, Any]]` +homeassistant/components/nibe_heatpump/__init__.py:105:9: error[call-non-callable] Object of type `object` is not callable +homeassistant/components/nice_go/coordinator.py:159:25: error[invalid-argument-type] Argument to bound method `authenticate_refresh` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/nightscout/__init__.py:39:14: error[unresolved-attribute] Object of type `ServerStatus` has no attribute `name` +homeassistant/components/nightscout/__init__.py:40:20: error[unresolved-attribute] Object of type `ServerStatus` has no attribute `version` +homeassistant/components/nightscout/config_flow.py:29:12: error[unresolved-attribute] Object of type `ServerStatus` has no attribute `settings` +homeassistant/components/nightscout/config_flow.py:37:22: error[unresolved-attribute] Object of type `ServerStatus` has no attribute `name` +homeassistant/components/niko_home_control/light.py:52:13: error[invalid-assignment] Object of type `str | int` is not assignable to attribute `_attr_brightness` of type `int | None` +homeassistant/components/niko_home_control/light.py:65:28: error[unsupported-operator] Operator `>` is not supported for types `str` and `int`, in comparing `str | int` with `Literal[0]` +homeassistant/components/niko_home_control/light.py:67:13: error[invalid-assignment] Object of type `str | int` is not assignable to attribute `_attr_brightness` of type `int | None` +homeassistant/components/niko_home_control/scene.py:36:15: warning[possibly-missing-attribute] Attribute `activate` may be missing on object of type `Unknown | NHCAction` +homeassistant/components/nilu/air_quality.py:8:6: error[unresolved-import] Cannot resolve imported module `niluclient` +homeassistant/components/nissan_leaf/__init__.py:12:6: error[unresolved-import] Cannot resolve imported module `pycarwings2` +homeassistant/components/nissan_leaf/__init__.py:13:6: error[unresolved-import] Cannot resolve imported module `pycarwings2.responses` +homeassistant/components/nmap_tracker/__init__.py:220:9: error[invalid-assignment] Object of type `dict[str | Unknown, str | None | Unknown]` is not assignable to attribute `_known_mac_addresses` of type `dict[str, str]` +homeassistant/components/nmap_tracker/__init__.py:249:17: error[invalid-argument-type] Argument to function `async_track_time_interval` is incorrect: Expected `timedelta`, found `Unknown | None | timedelta` +homeassistant/components/nmap_tracker/__init__.py:262:60: error[unsupported-operator] Operator `>` is not supported for types `datetime` and `timedelta`, in comparing `datetime` with `timedelta | datetime` +homeassistant/components/nmap_tracker/__init__.py:265:33: error[unsupported-operator] Operator `+` is unsupported between objects of type `Unknown | None` and `list[str | Unknown]` +homeassistant/components/nmap_tracker/__init__.py:272:13: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `str` +homeassistant/components/nmap_tracker/__init__.py:274:12: error[unsupported-operator] Operator `not in` is not supported for types `str` and `None`, in comparing `Literal["--reason"]` with `Unknown | None` +homeassistant/components/nmap_tracker/__init__.py:275:13: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `Literal[" --reason"]` +homeassistant/components/nmap_tracker/__init__.py:277:12: error[unsupported-operator] Operator `not in` is not supported for types `str` and `None`, in comparing `Literal["-v"]` with `Unknown | None` +homeassistant/components/nmap_tracker/__init__.py:278:13: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `Literal[" -v"]` +homeassistant/components/nmap_tracker/__init__.py:284:12: warning[possibly-missing-attribute] Attribute `locked` may be missing on object of type `Unknown | None | Lock` +homeassistant/components/nmap_tracker/__init__.py:291:20: error[invalid-context-manager] Object of type `Unknown | None | Lock` cannot be used with `async with` because the methods `__aenter__` and `__aexit__` are possibly missing +homeassistant/components/nmap_tracker/__init__.py:312:17: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `None` +homeassistant/components/nmap_tracker/__init__.py:314:17: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `None` +homeassistant/components/nmap_tracker/__init__.py:315:17: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `str | None` +homeassistant/components/nmap_tracker/__init__.py:318:17: error[invalid-argument-type] Argument is incorrect: Expected `datetime | None`, found `Literal[1]` +homeassistant/components/nmap_tracker/__init__.py:331:27: error[no-matching-overload] No overload of bound method `join` matches arguments +homeassistant/components/nmap_tracker/__init__.py:418:16: error[unsupported-operator] Operator `in` is not supported for types `Unknown` and `None`, in comparing `Unknown` with `Unknown | None` +homeassistant/components/nmap_tracker/__init__.py:430:50: error[invalid-argument-type] Argument to function `human_readable_name` is incorrect: Expected `str`, found `(Unknown & ~AlwaysFalsy) | str | None` +homeassistant/components/nmap_tracker/__init__.py:432:54: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `(Unknown & ~AlwaysFalsy) | str | None` +homeassistant/components/nmbs/sensor.py:272:19: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/noaa_tides/sensor.py:9:8: error[unresolved-import] Cannot resolve imported module `noaa_coops` +homeassistant/components/noaa_tides/sensor.py:75:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/nobo_hub/config_flow.py:169:38: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `dict[str, Any] | None` +homeassistant/components/notify_events/notify.py:76:61: error[invalid-argument-type] Argument to bound method `add_image_from_url` is incorrect: Expected `str`, found `None | Unknown` +homeassistant/components/notify_events/notify.py:76:72: error[invalid-argument-type] Argument to bound method `add_image_from_url` is incorrect: Expected `str`, found `None | Unknown` +homeassistant/components/notify_events/notify.py:78:60: error[invalid-argument-type] Argument to bound method `add_file_from_url` is incorrect: Expected `str`, found `None | Unknown` +homeassistant/components/notify_events/notify.py:78:71: error[invalid-argument-type] Argument to bound method `add_file_from_url` is incorrect: Expected `str`, found `None | Unknown` +homeassistant/components/notify_events/notify.py:82:46: error[invalid-argument-type] Argument to bound method `add_image_from_content` is incorrect: Expected `str`, found `None | Unknown` +homeassistant/components/notify_events/notify.py:82:57: error[invalid-argument-type] Argument to bound method `add_image_from_content` is incorrect: Expected `str`, found `None | Unknown` +homeassistant/components/notify_events/notify.py:85:68: error[invalid-argument-type] Argument to bound method `add_file_from_content` is incorrect: Expected `str`, found `None | Unknown` +homeassistant/components/notify_events/notify.py:85:79: error[invalid-argument-type] Argument to bound method `add_file_from_content` is incorrect: Expected `str`, found `None | Unknown` +homeassistant/components/notify_events/notify.py:91:57: error[invalid-argument-type] Argument to bound method `add_image` is incorrect: Expected `str`, found `None | Unknown` +homeassistant/components/notify_events/notify.py:91:68: error[invalid-argument-type] Argument to bound method `add_image` is incorrect: Expected `str`, found `None | Unknown` +homeassistant/components/notify_events/notify.py:93:56: error[invalid-argument-type] Argument to bound method `add_file` is incorrect: Expected `str`, found `None | Unknown` +homeassistant/components/notify_events/notify.py:93:67: error[invalid-argument-type] Argument to bound method `add_file` is incorrect: Expected `str`, found `None | Unknown` +homeassistant/components/nsw_fuel_station/__init__.py:64:13: error[invalid-argument-type] Argument is incorrect: Expected `dict[tuple[int, str], int | float]`, found `dict[tuple[Unknown | int | None, Unknown | str] | Unknown, Unknown | int | float]` +homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:166:16: error[invalid-return-type] Return type does not match returned value: expected `NswRuralFireServiceIncidentsFeedEntry | None`, found `Unknown | None | FeedEntry` +homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:249:31: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/nsw_rural_fire_service_feed/geo_location.py:250:32: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/nuheat/__init__.py:42:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/nuheat/__init__.py:44:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/nuki/binary_sensor.py:60:38: warning[possibly-missing-attribute] Attribute `is_door_sensor_activated` may be missing on object of type `Unknown | NukiDevice` +homeassistant/components/nuki/binary_sensor.py:65:16: warning[possibly-missing-attribute] Attribute `door_sensor_state` may be missing on object of type `Unknown | NukiDevice` +homeassistant/components/nuki/binary_sensor.py:70:16: warning[possibly-missing-attribute] Attribute `door_sensor_state_name` may be missing on object of type `Unknown | NukiDevice` +homeassistant/components/nuki/binary_sensor.py:92:16: warning[possibly-missing-attribute] Attribute `ring_action_state` may be missing on object of type `Unknown | NukiDevice` +homeassistant/components/nuki/binary_sensor.py:129:16: warning[possibly-missing-attribute] Attribute `battery_charging` may be missing on object of type `Unknown | NukiDevice` +homeassistant/components/nuki/sensor.py:47:16: warning[possibly-missing-attribute] Attribute `battery_charge` may be missing on object of type `Unknown | NukiDevice` +homeassistant/components/nws/__init__.py:76:21: error[invalid-argument-type] Argument to function `call_with_retry` is incorrect: Expected `(Any, Any, /) -> Awaitable[Any]`, found `bound method SimpleNWS.update_forecast(*, raise_no_data: bool = Literal[False]) -> CoroutineType[Any, Any, None]` +homeassistant/components/nws/__init__.py:94:21: error[invalid-argument-type] Argument to function `call_with_retry` is incorrect: Expected `(Any, Any, /) -> Awaitable[Any]`, found `bound method SimpleNWS.update_forecast_hourly(*, raise_no_data: bool = Literal[False]) -> CoroutineType[Any, Any, None]` +homeassistant/components/nws/__init__.py:133:9: error[invalid-argument-type] Argument is incorrect: Expected `TimestampDataUpdateCoordinator[None]`, found `TimestampDataUpdateCoordinator[dict[str, Any]]` +homeassistant/components/nws/__init__.py:134:9: error[invalid-argument-type] Argument is incorrect: Expected `TimestampDataUpdateCoordinator[None]`, found `TimestampDataUpdateCoordinator[dict[str, Any]]` +homeassistant/components/nws/config_flow.py:45:12: error[invalid-return-type] Return type does not match returned value: expected `dict[str, str]`, found `dict[str, str | None]` +homeassistant/components/nws/weather.py:323:31: error[invalid-argument-type] Argument to bound method `_forecast` is incorrect: Expected `list[dict[str, Any]]`, found `Unknown | list[dict[str, Any]] | None` +homeassistant/components/nws/weather.py:328:31: error[invalid-argument-type] Argument to bound method `_forecast` is incorrect: Expected `list[dict[str, Any]]`, found `Unknown | list[dict[str, Any]] | None` +homeassistant/components/nx584/alarm_control_panel.py:62:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/nx584/alarm_control_panel.py:108:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/nx584/binary_sensor.py:64:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/nx584/binary_sensor.py:157:20: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/oasa_telematics/sensor.py:9:8: error[unresolved-import] Cannot resolve imported module `oasatelematics` +homeassistant/components/oasa_telematics/sensor.py:120:34: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/oasa_telematics/sensor.py:121:33: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/obihai/connectivity.py:62:13: error[invalid-assignment] Object of type `PyObihai | None` is not assignable to attribute `pyobihai` of type `PyObihai` +homeassistant/components/obihai/connectivity.py:68:9: error[invalid-assignment] Object of type `dict[str, Any]` is not assignable to attribute `services` of type `list[Unknown]` +homeassistant/components/obihai/connectivity.py:69:9: error[invalid-assignment] Object of type `dict[str, Any]` is not assignable to attribute `line_services` of type `list[Unknown]` +homeassistant/components/obihai/connectivity.py:70:9: error[invalid-assignment] Object of type `dict[str, str]` is not assignable to attribute `call_direction` of type `list[Unknown]` +homeassistant/components/octoprint/config_flow.py:158:40: warning[possibly-missing-attribute] Attribute `upnp_uuid` may be missing on object of type `DiscoverySettings | None` +homeassistant/components/octoprint/sensor.py:31:9: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `(OctoprintPrinterInfo & ~AlwaysTruthy) | (PrinterState & ~AlwaysTruthy) | (PrinterFlags & ~AlwaysTruthy) | bool` +homeassistant/components/oem/climate.py:7:6: error[unresolved-import] Cannot resolve imported module `oemthermostat` +homeassistant/components/ohmconnect/sensor.py:87:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/ollama/ai_task.py:60:16: warning[possibly-missing-attribute] Attribute `content` may be missing on object of type `SystemContent | UserContent | AssistantContent | ToolResultContent` +homeassistant/components/ollama/entity.py:66:16: error[unresolved-attribute] Module `json` has no member `decoder` +homeassistant/components/ombi/__init__.py:5:8: error[unresolved-import] Cannot resolve imported module `pyombi` +homeassistant/components/ombi/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `pyombi` +homeassistant/components/ondilo_ico/coordinator.py:181:55: error[invalid-argument-type] Argument to bound method `get_last_pool_measures` is incorrect: Expected `int`, found `Unknown | str` +homeassistant/components/onedrive/backup.py:92:17: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@handle_backup_errors]` has no attribute `__name__` +homeassistant/components/onedrive/backup.py:100:17: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@handle_backup_errors]` has no attribute `__name__` +homeassistant/components/onewire/onewirehub.py:47:31: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 2 +homeassistant/components/onvif/camera.py:182:17: error[invalid-argument-type] Argument to function `async_aiohttp_proxy_stream` is incorrect: Expected `StreamReader`, found `StreamReader` +homeassistant/components/onvif/device.py:189:20: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/onvif/device.py:480:15: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/onvif/device.py:526:19: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/onvif/device.py:546:23: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/onvif/device.py:636:19: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/onvif/device.py:664:19: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/onvif/device.py:690:12: error[no-matching-overload] No overload of function `dirname` matches arguments +homeassistant/components/onvif/event.py:558:17: error[invalid-argument-type] Argument to bound method `create_notification_manager` is incorrect: Expected `str`, found `str | None` +homeassistant/components/open_router/ai_task.py:61:16: warning[possibly-missing-attribute] Attribute `content` may be missing on object of type `SystemContent | UserContent | AssistantContent | ToolResultContent` +homeassistant/components/open_router/entity.py:164:27: warning[possibly-missing-attribute] Attribute `function` may be missing on object of type `ChatCompletionMessageFunctionToolCall | ChatCompletionMessageCustomToolCall` +homeassistant/components/open_router/entity.py:165:50: warning[possibly-missing-attribute] Attribute `function` may be missing on object of type `ChatCompletionMessageFunctionToolCall | ChatCompletionMessageCustomToolCall` +homeassistant/components/open_router/entity.py:264:44: warning[possibly-missing-attribute] Attribute `attachments` may be missing on object of type `SystemContent | UserContent | AssistantContent | ToolResultContent` +homeassistant/components/open_router/entity.py:272:49: warning[possibly-missing-attribute] Attribute `attachments` may be missing on object of type `SystemContent | UserContent | AssistantContent | ToolResultContent` +homeassistant/components/open_router/entity.py:274:39: error[invalid-assignment] Invalid assignment to key "content" with declared type `str | Iterable[ChatCompletionContentPartTextParam]` on TypedDict `ChatCompletionDeveloperMessageParam`: value of type `list[Unknown | dict[Unknown | str, Unknown | str]]` +homeassistant/components/open_router/entity.py:274:39: error[invalid-assignment] Invalid assignment to key "content" with declared type `str | Iterable[ChatCompletionContentPartTextParam]` on TypedDict `ChatCompletionSystemMessageParam`: value of type `list[Unknown | dict[Unknown | str, Unknown | str]]` +homeassistant/components/open_router/entity.py:274:39: error[invalid-assignment] Invalid assignment to key "content" with declared type `str | Iterable[ChatCompletionContentPartTextParam | ChatCompletionContentPartImageParam | ChatCompletionContentPartInputAudioParam | File]` on TypedDict `ChatCompletionUserMessageParam`: value of type `list[Unknown | dict[Unknown | str, Unknown | str]]` +homeassistant/components/open_router/entity.py:274:39: error[invalid-assignment] Invalid assignment to key "content" with declared type `str | Iterable[ChatCompletionContentPartTextParam | ChatCompletionContentPartRefusalParam] | None` on TypedDict `ChatCompletionAssistantMessageParam`: value of type `list[Unknown | dict[Unknown | str, Unknown | str]]` +homeassistant/components/open_router/entity.py:274:39: error[invalid-assignment] Invalid assignment to key "content" with declared type `str | Iterable[ChatCompletionContentPartTextParam]` on TypedDict `ChatCompletionToolMessageParam`: value of type `list[Unknown | dict[Unknown | str, Unknown | str]]` +homeassistant/components/open_router/entity.py:274:39: error[invalid-assignment] Invalid assignment to key "content" with declared type `str | None` on TypedDict `ChatCompletionFunctionMessageParam`: value of type `list[Unknown | dict[Unknown | str, Unknown | str]]` +homeassistant/components/openai_conversation/ai_task.py:82:16: warning[possibly-missing-attribute] Attribute `content` may be missing on object of type `SystemContent | UserContent | AssistantContent | ToolResultContent` +homeassistant/components/openai_conversation/config_flow.py:135:17: error[invalid-argument-type] Argument to bound method `async_create_entry` is incorrect: Expected `Iterable[ConfigSubentryData] | None`, found `list[Unknown | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | bool | list[Unknown | str] | str] | None] | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | bool] | None]]` +homeassistant/components/openai_conversation/config_flow.py:497:17: error[invalid-argument-type] Argument to bound method `create` is incorrect: Expected `str | list[EasyInputMessageParam | Message | ResponseOutputMessageParam | ... omitted 22 union elements] | Omit`, found `list[Unknown | dict[Unknown | str, Unknown | str]]` +homeassistant/components/openai_conversation/config_flow.py:505:17: error[invalid-argument-type] Argument to bound method `create` is incorrect: Expected `ResponseTextConfigParam | Omit`, found `dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str | dict[Unknown, Unknown] | bool]]` +homeassistant/components/openai_conversation/config_flow.py:506:31: error[invalid-argument-type] Invalid argument to key "format" with declared type `ResponseFormatText | ResponseFormatTextJSONSchemaConfigParam | ResponseFormatJSONObject` on TypedDict `ResponseTextConfigParam`: value of type `dict[Unknown | str, Unknown | str | dict[Unknown, Unknown] | bool]` +homeassistant/components/openai_conversation/entity.py:233:29: error[invalid-argument-type] Invalid argument to key "summary" with declared type `Iterable[Summary]` on TypedDict `ResponseReasoningItemParam`: value of type `list[dict[Unknown | str, Unknown | str] | Unknown] | list[Unknown]` +homeassistant/components/openai_conversation/entity.py:390:13: error[unresolved-reference] Name `current_tool_call` used when not defined +homeassistant/components/openai_conversation/entity.py:392:13: error[unresolved-reference] Name `current_tool_call` used when not defined +homeassistant/components/openai_conversation/entity.py:396:28: error[unresolved-reference] Name `current_tool_call` used when not defined +homeassistant/components/openai_conversation/entity.py:397:35: error[unresolved-reference] Name `current_tool_call` used when not defined +homeassistant/components/openai_conversation/entity.py:398:46: error[unresolved-reference] Name `current_tool_call` used when not defined +homeassistant/components/openai_conversation/entity.py:506:37: error[invalid-assignment] Invalid assignment to key "include" with declared type `list[Literal["computer_call_output.output.image_url", "file_search_call.results", "message.input_image.image_url", "web_search_call.action.sources", "web_search_call.results", ... omitted 3 literals]] | None` on TypedDict `ResponseCreateParamsStreaming`: value of type `list[Unknown | str]` +homeassistant/components/openai_conversation/entity.py:592:44: warning[possibly-missing-attribute] Attribute `attachments` may be missing on object of type `SystemContent | UserContent | AssistantContent | ToolResultContent` +homeassistant/components/openai_conversation/entity.py:595:49: warning[possibly-missing-attribute] Attribute `attachments` may be missing on object of type `SystemContent | UserContent | AssistantContent | ToolResultContent` +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `ResponseFileSearchToolCallParam` - did you mean "type"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `ResponseComputerToolCallParam` - did you mean "type"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `ComputerCallOutput` - did you mean "type"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `ResponseFunctionWebSearchParam` - did you mean "type"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `ResponseFunctionToolCallParam` - did you mean "name"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `FunctionCallOutput` - did you mean "type"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `ResponseReasoningItemParam` - did you mean "type"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `ImageGenerationCall` - did you mean "type"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `ResponseCodeInterpreterToolCallParam` - did you mean "code"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `LocalShellCall` - did you mean "type"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `LocalShellCallOutput` - did you mean "type"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `ShellCall` - did you mean "type"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `ShellCallOutput` - did you mean "type"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `ApplyPatchCall` - did you mean "type"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `ApplyPatchCallOutput` - did you mean "type"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `McpListTools` - did you mean "tools"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `McpApprovalRequest` - did you mean "name"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `McpApprovalResponse` - did you mean "type"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `McpCall` - did you mean "name"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `ResponseCustomToolCallOutputParam` - did you mean "type"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `ResponseCustomToolCallParam` - did you mean "name"? +homeassistant/components/openai_conversation/entity.py:600:34: error[invalid-key] Unknown key "role" for TypedDict `ItemReference` - did you mean "type"? +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `LocalShellCallOutput`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `ComputerCallOutput`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `ResponseFunctionWebSearchParam`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `ResponseFunctionToolCallParam`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `FunctionCallOutput`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `ImageGenerationCall`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `ResponseCodeInterpreterToolCallParam`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `LocalShellCall`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `ResponseFileSearchToolCallParam`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `ShellCall`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `ShellCallOutput`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `ApplyPatchCall`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `ApplyPatchCallOutput`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `McpListTools`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `McpApprovalRequest`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `McpApprovalResponse`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `McpCall`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `ResponseCustomToolCallOutputParam`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `ResponseCustomToolCallParam`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `ItemReference`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:601:45: error[invalid-key] Unknown key "content" for TypedDict `ResponseComputerToolCallParam`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `ShellCallOutput`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `ResponseFileSearchToolCallParam`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `ResponseComputerToolCallParam`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `ComputerCallOutput`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `ResponseFunctionWebSearchParam`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `ResponseFunctionToolCallParam`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `FunctionCallOutput`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `ImageGenerationCall`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `ResponseCodeInterpreterToolCallParam`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `LocalShellCall`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `LocalShellCallOutput`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `ShellCall`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `ApplyPatchCall`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `ApplyPatchCallOutput`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `McpListTools`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `McpApprovalRequest`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `McpApprovalResponse`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `McpCall`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `ResponseCustomToolCallOutputParam`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `ResponseCustomToolCallParam`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:26: error[invalid-key] Unknown key "content" for TypedDict `ItemReference`: Unknown key "content" +homeassistant/components/openai_conversation/entity.py:603:39: error[invalid-assignment] Invalid assignment to key "content" with declared type `list[ResponseInputTextParam | ResponseInputImageParam | ResponseInputFileParam]` on TypedDict `Message`: value of type `list[Unknown | dict[Unknown | str, Unknown | str]]` +homeassistant/components/openai_conversation/entity.py:603:39: error[invalid-assignment] Invalid assignment to key "content" with declared type `Iterable[ResponseOutputTextParam | ResponseOutputRefusalParam]` on TypedDict `ResponseOutputMessageParam`: value of type `list[Unknown | dict[Unknown | str, Unknown | str]]` +homeassistant/components/openai_conversation/entity.py:603:39: error[invalid-assignment] Invalid assignment to key "content" with declared type `Iterable[Content]` on TypedDict `ResponseReasoningItemParam`: value of type `list[Unknown | dict[Unknown | str, Unknown | str]]` +homeassistant/components/openai_conversation/entity.py:603:39: error[invalid-assignment] Invalid assignment to key "content" with declared type `str | list[ResponseInputTextParam | ResponseInputImageParam | ResponseInputFileParam]` on TypedDict `EasyInputMessageParam`: value of type `list[Unknown | dict[Unknown | str, Unknown | str]]` +homeassistant/components/openevse/sensor.py:7:8: error[unresolved-import] Cannot resolve imported module `openevsewifi` +homeassistant/components/openhardwaremonitor/sensor.py:162:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/openhome/media_player.py:71:6: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/openhome/media_player.py:71:44: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/openhome/media_player.py:76:15: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/openhome/media_player.py:77:10: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/opensensemap/air_quality.py:8:6: error[unresolved-import] Cannot resolve imported module `opensensemap_api` +homeassistant/components/opensensemap/air_quality.py:9:6: error[unresolved-import] Cannot resolve imported module `opensensemap_api.exceptions` +homeassistant/components/openweathermap/coordinator.py:190:25: error[invalid-argument-type] Invalid argument to key "temperature" with declared type `None` on TypedDict `Forecast`: value of type `Decimal` +homeassistant/components/openweathermap/coordinator.py:191:41: error[invalid-argument-type] Invalid argument to key "native_apparent_temperature" with declared type `int | float | None` on TypedDict `Forecast`: value of type `Decimal` +homeassistant/components/openweathermap/coordinator.py:192:22: error[invalid-argument-type] Invalid argument to key "pressure" with declared type `None` on TypedDict `Forecast`: value of type `int` +homeassistant/components/openweathermap/coordinator.py:194:30: error[invalid-argument-type] Invalid argument to key "native_dew_point" with declared type `int | float | None` on TypedDict `Forecast`: value of type `Decimal | None` +homeassistant/components/openweathermap/coordinator.py:196:24: error[invalid-argument-type] Invalid argument to key "wind_speed" with declared type `None` on TypedDict `Forecast`: value of type `Decimal` +homeassistant/components/openweathermap/coordinator.py:197:36: error[invalid-argument-type] Invalid argument to key "native_wind_gust_speed" with declared type `int | float | None` on TypedDict `Forecast`: value of type `Decimal | None` +homeassistant/components/openweathermap/coordinator.py:210:25: error[invalid-argument-type] Invalid argument to key "temperature" with declared type `None` on TypedDict `Forecast`: value of type `Decimal` +homeassistant/components/openweathermap/coordinator.py:211:21: error[invalid-argument-type] Invalid argument to key "templow" with declared type `None` on TypedDict `Forecast`: value of type `Decimal` +homeassistant/components/openweathermap/coordinator.py:212:41: error[invalid-argument-type] Invalid argument to key "native_apparent_temperature" with declared type `int | float | None` on TypedDict `Forecast`: value of type `DailyTemperature` +homeassistant/components/openweathermap/coordinator.py:213:22: error[invalid-argument-type] Invalid argument to key "pressure" with declared type `None` on TypedDict `Forecast`: value of type `int` +homeassistant/components/openweathermap/coordinator.py:215:30: error[invalid-argument-type] Invalid argument to key "native_dew_point" with declared type `int | float | None` on TypedDict `Forecast`: value of type `Decimal` +homeassistant/components/openweathermap/coordinator.py:217:24: error[invalid-argument-type] Invalid argument to key "wind_speed" with declared type `None` on TypedDict `Forecast`: value of type `Decimal` +homeassistant/components/openweathermap/coordinator.py:218:36: error[invalid-argument-type] Invalid argument to key "native_wind_gust_speed" with declared type `int | float | None` on TypedDict `Forecast`: value of type `Decimal | None` +homeassistant/components/opple/light.py:8:6: error[unresolved-import] Cannot resolve imported module `pyoppleio.OppleLightDevice` +homeassistant/components/oru/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `oru` +homeassistant/components/orvibo/switch.py:8:6: error[unresolved-import] Cannot resolve imported module `orvibo.s20` +homeassistant/components/osoenergy/binary_sensor.py:86:49: error[invalid-argument-type] Argument is incorrect: Expected `OSOEnergy`, found `Unknown | OSOEnergyBinarySensorData` +homeassistant/components/osoenergy/sensor.py:181:49: error[invalid-argument-type] Argument is incorrect: Expected `OSOEnergy`, found `Unknown | OSOEnergySensorData` +homeassistant/components/osoenergy/water_heater.py:271:69: error[invalid-argument-type] Argument to bound method `set_profile` is incorrect: Expected `array[Unknown]`, found `list[Unknown | int]` +homeassistant/components/osoenergy/water_heater.py:289:69: error[invalid-argument-type] Argument to bound method `set_profile` is incorrect: Expected `array[Unknown]`, found `Unknown | list[int | float]` +homeassistant/components/osramlightify/light.py:9:6: error[unresolved-import] Cannot resolve imported module `lightify` +homeassistant/components/osramlightify/light.py:362:12: error[unsupported-operator] Operator `in` is not supported for types `Literal[ColorMode.COLOR_TEMP]` and `None`, in comparing `Literal[ColorMode.COLOR_TEMP]` with `set[ColorMode] | set[str] | None | Unknown` +homeassistant/components/osramlightify/light.py:365:12: error[unsupported-operator] Operator `in` is not supported for types `Literal[ColorMode.HS]` and `None`, in comparing `Literal[ColorMode.HS]` with `set[ColorMode] | set[str] | None | Unknown` +homeassistant/components/osramlightify/light.py:368:16: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `set[ColorMode] | set[str] | None | Unknown` +homeassistant/components/otbr/__init__.py:40:57: error[invalid-argument-type] Argument to function `async_register_firmware_info_provider` is incorrect: Expected `HardwareFirmwareInfoModule`, found `` +homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py:70:13: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `list[str | Unknown]` +homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py:73:20: error[unsupported-operator] Operator `not in` is not supported for types `str` and `None`, in comparing `str | Unknown` with `Unknown | list[Unknown | str] | list[str] | None` +homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py:137:12: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["drying"]` with `Unknown | list[Unknown | str] | list[str] | None` +homeassistant/components/overkiz/climate/atlantic_electrical_towel_dryer.py:175:14: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["drying"]` with `Unknown | list[Unknown | str] | list[str] | None` +homeassistant/components/ovo_energy/config_flow.py:66:25: error[invalid-argument-type] Argument to bound method `async_create_entry` is incorrect: Expected `str`, found `str | None` +homeassistant/components/ovo_energy/config_flow.py:111:21: error[invalid-argument-type] Argument to bound method `authenticate` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/ovo_energy/entity.py:40:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown | int | None]]` +homeassistant/components/ovo_energy/sensor.py:41:62: error[invalid-assignment] Object of type `Overload[(number: _SupportsRound1[_T@round], ndigits: None = None) -> _T@round, (number: _SupportsRound2[_T@round], ndigits: SupportsIndex) -> _T@round]` is not assignable to `(OVODailyUsage, /) -> StateType | datetime` +homeassistant/components/ovo_energy/sensor.py:180:46: error[invalid-argument-type] Argument is incorrect: Expected `OVODailyUsage`, found `DataUpdateCoordinator[OVODailyUsage]` +homeassistant/components/owntracks/__init__.py:148:9: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["topic"]` and value of type `Unknown` on object of type `JsonValueType` +homeassistant/components/owntracks/device_tracker.py:83:16: error[invalid-return-type] Return type does not match returned value: expected `int | None`, found `Unknown | None | tuple[Any | None, Any | None]` +homeassistant/components/owntracks/device_tracker.py:88:16: error[invalid-return-type] Return type does not match returned value: expected `dict[str, Any] | None`, found `Unknown | None | tuple[Any | None, Any | None]` +homeassistant/components/owntracks/device_tracker.py:93:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `Unknown | tuple[Any | None, Any | None] | None` +homeassistant/components/owntracks/device_tracker.py:100:20: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/owntracks/device_tracker.py:109:20: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/owntracks/device_tracker.py:116:16: error[invalid-return-type] Return type does not match returned value: expected `str | None`, found `Unknown | None | tuple[Any | None, Any | None]` +homeassistant/components/owntracks/device_tracker.py:121:16: error[invalid-return-type] Return type does not match returned value: expected `SourceType`, found `Unknown | tuple[Any | None, Any | None] | None` +homeassistant/components/owntracks/device_tracker.py:128:35: error[invalid-assignment] Invalid assignment to key "name" with declared type `str | None` on TypedDict `DeviceInfo`: value of type `Unknown | tuple[Any | None, Any | None] | None` +homeassistant/components/owntracks/messages.py:74:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `str` +homeassistant/components/owntracks/messages.py:76:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `str` +homeassistant/components/owntracks/messages.py:78:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `str` +homeassistant/components/owntracks/messages.py:80:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `str` +homeassistant/components/owntracks/messages.py:82:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `str` +homeassistant/components/panasonic_bluray/media_player.py:7:6: error[unresolved-import] Cannot resolve imported module `panacotta` +homeassistant/components/panasonic_viera/__init__.py:198:33: warning[possibly-missing-attribute] Attribute `upper` may be missing on object of type `Keys | str` +homeassistant/components/peco/__init__.py:73:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(() -> Awaitable[dict[str, Any]]) | None`, found `def async_update_outage_data() -> CoroutineType[Any, Any, PECOCoordinatorData]` +homeassistant/components/peco/__init__.py:103:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(() -> Awaitable[dict[str, Any]]) | None`, found `def async_update_meter_data() -> CoroutineType[Any, Any, bool]` +homeassistant/components/pencom/switch.py:8:6: error[unresolved-import] Cannot resolve imported module `pencompy.pencompy` +homeassistant/components/persistent_notification/__init__.py:54:43: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 2 +homeassistant/components/person/__init__.py:238:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventEntityRegistryUpdatedData]` +homeassistant/components/person/__init__.py:239:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method Self@async_load._entity_registry_updated(event: Event[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]) -> CoroutineType[Any, Any, None]` +homeassistant/components/person/__init__.py:240:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `bound method Self@async_load._entity_registry_filter(event_data: _EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update) -> bool` +homeassistant/components/pglab/__init__.py:48:38: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `str | bytes | bytearray` +homeassistant/components/pglab/__init__.py:69:36: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(str, str, int | None, bool | None, /) -> Coroutine[Any, Any, dict[Unknown, Unknown]]`, found `def mqtt_publish(topic: str, payload: str, qos: int, retain: bool) -> CoroutineType[Any, Any, None]` +homeassistant/components/pglab/__init__.py:69:66: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(dict[str, Any], /) -> Coroutine[Any, Any, dict[Unknown, Unknown]]`, found `def mqtt_unsubscribe(sub_state: dict[str, Any]) -> CoroutineType[Any, Any, None]` +homeassistant/components/pglab/cover.py:67:9: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | int]` is not assignable to attribute `_attr_translation_placeholders` of type `Mapping[str, str]` +homeassistant/components/pglab/entity.py:92:44: error[invalid-argument-type] Argument to bound method `set_on_state_callback` is incorrect: Expected `(str, /) -> None`, found `None` +homeassistant/components/pglab/switch.py:61:9: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | int]` is not assignable to attribute `_attr_translation_placeholders` of type `Mapping[str, str]` +homeassistant/components/philips_js/light.py:201:45: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/philips_js/light.py:237:43: error[invalid-argument-type] Argument to function `from_str` is incorrect: Expected `str`, found `str | None | Unknown` +homeassistant/components/philips_js/light.py:252:13: error[invalid-assignment] Object of type `int | float` is not assignable to attribute `_attr_brightness` of type `int | None` +homeassistant/components/philips_js/light.py:306:39: error[invalid-assignment] Invalid assignment to key "colorSettings" with declared type `AmbilightColorSettingsType` on TypedDict `AmbilightCurrentConfiguration`: value of type `dict[Unknown | str, Unknown | str | None | dict[Unknown | str, Unknown] | dict[Unknown | str, Unknown | int]]` +homeassistant/components/philips_js/light.py:307:20: error[invalid-key] Unknown key "speed" for TypedDict `AmbilightCurrentConfiguration`: Unknown key "speed" +homeassistant/components/philips_js/light.py:310:39: error[invalid-assignment] Invalid assignment to key "audioSettings" with declared type `AmbilightAudioSettingsType` on TypedDict `AmbilightCurrentConfiguration`: value of type `dict[Unknown | str, Unknown | str | None | dict[Unknown | str, Unknown] | dict[Unknown | str, Unknown | int]]` +homeassistant/components/philips_js/light.py:311:20: error[invalid-key] Unknown key "tuning" for TypedDict `AmbilightCurrentConfiguration`: Unknown key "tuning" +homeassistant/components/philips_js/light.py:321:28: error[invalid-argument-type] Invalid argument to key "menuSetting" with declared type `str` on TypedDict `AmbilightCurrentConfiguration`: value of type `str | None` +homeassistant/components/philips_js/media_player.py:443:47: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/philips_js/media_player.py:472:56: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/pi_hole/__init__.py:52:10: error[invalid-type-form] Variable of type `def Hole(*args, *, version=Literal[6], **kwargs) -> Unknown` is not allowed in a type expression +homeassistant/components/pi_hole/__init__.py:154:42: error[invalid-argument-type] Argument is incorrect: Expected `DataUpdateCoordinator[None]`, found `DataUpdateCoordinator[dict[str, Any]]` +homeassistant/components/pi_hole/__init__.py:207:15: warning[possibly-missing-attribute] Attribute `authenticate` may be missing on object of type `HoleV5 | HoleV6` +homeassistant/components/pi_hole/binary_sensor.py:28:28: error[invalid-type-form] Variable of type `def Hole(*args, *, version=Literal[6], **kwargs) -> Unknown` is not allowed in a type expression +homeassistant/components/pi_hole/binary_sensor.py:29:28: error[invalid-type-form] Variable of type `def Hole(*args, *, version=Literal[6], **kwargs) -> Unknown` is not allowed in a type expression +homeassistant/components/pi_hole/binary_sensor.py:72:14: error[invalid-type-form] Variable of type `def Hole(*args, *, version=Literal[6], **kwargs) -> Unknown` is not allowed in a type expression +homeassistant/components/pi_hole/config_flow.py:141:18: error[invalid-type-form] Variable of type `def Hole(*args, *, version=Literal[6], **kwargs) -> Unknown` is not allowed in a type expression +homeassistant/components/pi_hole/config_flow.py:145:23: warning[possibly-missing-attribute] Attribute `authenticate` may be missing on object of type `HoleV5 | HoleV6` +homeassistant/components/pi_hole/entity.py:21:14: error[invalid-type-form] Variable of type `def Hole(*args, *, version=Literal[6], **kwargs) -> Unknown` is not allowed in a type expression +homeassistant/components/pi_hole/sensor.py:150:14: error[invalid-type-form] Variable of type `def Hole(*args, *, version=Literal[6], **kwargs) -> Unknown` is not allowed in a type expression +homeassistant/components/pi_hole/update.py:24:34: error[invalid-type-form] Variable of type `def Hole(*args, *, version=Literal[6], **kwargs) -> Unknown` is not allowed in a type expression +homeassistant/components/pi_hole/update.py:25:31: error[invalid-type-form] Variable of type `def Hole(*args, *, version=Literal[6], **kwargs) -> Unknown` is not allowed in a type expression +homeassistant/components/pi_hole/update.py:26:27: error[invalid-type-form] Variable of type `def Hole(*args, *, version=Literal[6], **kwargs) -> Unknown` is not allowed in a type expression +homeassistant/components/pi_hole/update.py:94:14: error[invalid-type-form] Variable of type `def Hole(*args, *, version=Literal[6], **kwargs) -> Unknown` is not allowed in a type expression +homeassistant/components/picnic/__init__.py:30:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Any | None` +homeassistant/components/picnic/__init__.py:31:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Any | None` +homeassistant/components/picnic/config_flow.py:63:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/ping/helpers.py:113:20: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/ping/helpers.py:114:20: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/plant/__init__.py:409:16: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | None | deque[Unknown]` +homeassistant/components/plant/__init__.py:410:22: warning[possibly-missing-attribute] Attribute `popleft` may be missing on object of type `Unknown | None | deque[Unknown]` +homeassistant/components/plant/__init__.py:412:9: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | None | deque[Unknown]` +homeassistant/components/plex/media_browser.py:74:13: warning[possibly-missing-attribute] Attribute `thumbnail_cache` may be missing on object of type `None | PlexServer` +homeassistant/components/plex/media_browser.py:79:21: error[invalid-argument-type] Argument to function `get_proxy_image_url` is incorrect: Expected `str`, found `None | Unknown` +homeassistant/components/plex/media_browser.py:84:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | bool` +homeassistant/components/plex/media_browser.py:84:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | bool` +homeassistant/components/plex/media_browser.py:84:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | bool` +homeassistant/components/plex/media_browser.py:84:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | bool` +homeassistant/components/plex/media_browser.py:84:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | MediaClass | bool` +homeassistant/components/plex/media_browser.py:84:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | MediaClass | bool` +homeassistant/components/plex/media_browser.py:84:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[BrowseMedia] | None`, found `Unknown | MediaClass | bool` +homeassistant/components/plex/media_browser.py:84:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | MediaClass | bool` +homeassistant/components/plex/media_browser.py:84:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | MediaClass | bool` +homeassistant/components/plex/media_browser.py:84:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | MediaClass | bool` +homeassistant/components/plex/media_browser.py:84:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | MediaClass | bool` +homeassistant/components/plex/media_browser.py:89:19: warning[possibly-missing-attribute] Attribute `friendly_name` may be missing on object of type `None | PlexServer` +homeassistant/components/plex/media_browser.py:100:13: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | Sequence[BrowseMedia] | None` +homeassistant/components/plex/media_browser.py:103:24: warning[possibly-missing-attribute] Attribute `library` may be missing on object of type `None | PlexServer` +homeassistant/components/plex/media_browser.py:108:13: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | Sequence[BrowseMedia] | None` +homeassistant/components/plex/media_browser.py:109:9: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | Sequence[BrowseMedia] | None` +homeassistant/components/plex/media_browser.py:134:25: warning[possibly-missing-attribute] Attribute `playlists` may be missing on object of type `None | PlexServer` +homeassistant/components/plex/media_browser.py:142:17: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:145:32: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:145:32: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:145:32: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:145:32: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:145:32: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:145:32: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:145:32: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[BrowseMedia] | None`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:145:32: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:145:32: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:145:32: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:145:32: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:152:21: warning[possibly-missing-attribute] Attribute `lookup_media` may be missing on object of type `None | PlexServer` +homeassistant/components/plex/media_browser.py:176:26: warning[possibly-missing-attribute] Attribute `library` may be missing on object of type `None | PlexServer` +homeassistant/components/plex/media_browser.py:181:31: warning[possibly-missing-attribute] Attribute `library` may be missing on object of type `None | PlexServer` +homeassistant/components/plex/media_browser.py:204:17: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:210:17: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:213:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:213:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:213:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:213:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:213:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:213:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:213:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:213:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:213:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:213:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:213:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[BrowseMedia] | None`, found `Unknown | str | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:217:34: warning[possibly-missing-attribute] Attribute `library` may be missing on object of type `None | PlexServer` +homeassistant/components/plex/media_browser.py:219:21: warning[possibly-missing-attribute] Attribute `friendly_name` may be missing on object of type `None | PlexServer` +homeassistant/components/plex/media_browser.py:221:34: warning[possibly-missing-attribute] Attribute `library` may be missing on object of type `None | PlexServer` +homeassistant/components/plex/media_browser.py:251:17: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | MediaClass | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:253:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | MediaClass | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:253:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | MediaClass | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:253:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:253:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | MediaClass | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:253:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | MediaClass | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:253:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:253:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:253:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:253:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | MediaClass | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:253:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | MediaClass | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:253:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[BrowseMedia] | None`, found `Unknown | MediaClass | bool | list[Unknown]` +homeassistant/components/plex/media_browser.py:261:23: warning[possibly-missing-attribute] Attribute `library` may be missing on object of type `None | PlexServer` +homeassistant/components/plex/media_browser.py:373:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool` +homeassistant/components/plex/media_browser.py:373:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool` +homeassistant/components/plex/media_browser.py:373:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool` +homeassistant/components/plex/media_browser.py:373:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool` +homeassistant/components/plex/media_browser.py:373:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool` +homeassistant/components/plex/media_browser.py:373:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool` +homeassistant/components/plex/media_browser.py:373:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[BrowseMedia] | None`, found `Unknown | str | bool` +homeassistant/components/plex/media_browser.py:373:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | str | bool` +homeassistant/components/plex/media_browser.py:373:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | str | bool` +homeassistant/components/plex/media_browser.py:373:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | str | bool` +homeassistant/components/plex/media_browser.py:373:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool` +homeassistant/components/plex/media_player.py:204:26: warning[possibly-missing-attribute] Attribute `url` may be missing on object of type `Unknown | None` +homeassistant/components/plex/media_player.py:208:13: warning[possibly-missing-attribute] Attribute `proxyThroughServer` may be missing on object of type `Unknown | None` +homeassistant/components/plex/media_player.py:209:46: warning[possibly-missing-attribute] Attribute `protocolCapabilities` may be missing on object of type `Unknown | None` +homeassistant/components/plex/media_player.py:226:46: error[no-matching-overload] No overload of bound method `join` matches arguments +homeassistant/components/plex/media_player.py:392:28: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["playback"]` with `Unknown | None` +homeassistant/components/plex/media_player.py:412:28: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["playback"]` with `Unknown | None` +homeassistant/components/plex/media_player.py:422:17: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["playback"]` with `Unknown | None` +homeassistant/components/plex/media_player.py:441:33: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["playback"]` with `Unknown | None` +homeassistant/components/plex/media_player.py:453:28: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["playback"]` with `Unknown | None` +homeassistant/components/plex/media_player.py:458:28: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["playback"]` with `Unknown | None` +homeassistant/components/plex/media_player.py:463:28: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["playback"]` with `Unknown | None` +homeassistant/components/plex/media_player.py:468:28: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["playback"]` with `Unknown | None` +homeassistant/components/plex/media_player.py:473:28: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["playback"]` with `Unknown | None` +homeassistant/components/plex/media_player.py:478:28: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["playback"]` with `Unknown | None` +homeassistant/components/plex/media_player.py:485:33: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["playback"]` with `Unknown | None` +homeassistant/components/plex/models.py:48:31: warning[possibly-missing-attribute] Attribute `product` may be missing on object of type `Unknown | None` +homeassistant/components/plex/models.py:51:22: warning[possibly-missing-attribute] Attribute `state` may be missing on object of type `Unknown | None` +homeassistant/components/plex/server.py:218:31: warning[possibly-missing-attribute] Attribute `systemAccounts` may be missing on object of type `Unknown | None | PlexServer` +homeassistant/components/plex/server.py:243:25: warning[possibly-missing-attribute] Attribute `version` may be missing on object of type `Unknown | None | PlexServer` +homeassistant/components/plex/server.py:316:13: warning[possibly-missing-attribute] Attribute `clients` may be missing on object of type `Unknown | None | PlexServer` +homeassistant/components/plex/server.py:317:13: warning[possibly-missing-attribute] Attribute `sessions` may be missing on object of type `Unknown | None | PlexServer` +homeassistant/components/plex/server.py:348:16: error[unresolved-attribute] Module `plexapi` has no member `exceptions` +homeassistant/components/plex/server.py:355:13: error[unresolved-attribute] Module `plexapi` has no member `exceptions` +homeassistant/components/plex/server.py:403:27: warning[possibly-missing-attribute] Attribute `createToken` may be missing on object of type `Unknown | None | PlexServer` +homeassistant/components/plex/server.py:563:16: warning[possibly-missing-attribute] Attribute `friendlyName` may be missing on object of type `Unknown | None | PlexServer` +homeassistant/components/plex/server.py:568:16: warning[possibly-missing-attribute] Attribute `machineIdentifier` may be missing on object of type `Unknown | None | PlexServer` +homeassistant/components/plex/server.py:573:16: warning[possibly-missing-attribute] Attribute `_baseurl` may be missing on object of type `Unknown | None | PlexServer` +homeassistant/components/plex/server.py:578:16: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/plex/server.py:583:16: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/plex/server.py:588:16: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/plex/server.py:593:16: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/plex/server.py:598:16: warning[possibly-missing-attribute] Attribute `library` may be missing on object of type `Unknown | None | PlexServer` +homeassistant/components/plex/server.py:602:16: warning[possibly-missing-attribute] Attribute `playlist` may be missing on object of type `Unknown | None | PlexServer` +homeassistant/components/plex/server.py:606:16: warning[possibly-missing-attribute] Attribute `playlists` may be missing on object of type `Unknown | None | PlexServer` +homeassistant/components/plex/server.py:622:16: warning[possibly-missing-attribute] Attribute `fetchItem` may be missing on object of type `Unknown | None | PlexServer` +homeassistant/components/pocketcasts/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `pycketcasts` +homeassistant/components/powerwall/__init__.py:229:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(() -> Awaitable[dict[str, Any]]) | None`, found `bound method PowerwallDataManager.async_update_data() -> CoroutineType[Any, Any, PowerwallData]` +homeassistant/components/powerwall/__init__.py:236:43: error[invalid-assignment] Invalid assignment to key "coordinator" with declared type `DataUpdateCoordinator[PowerwallData] | None` on TypedDict `PowerwallRuntimeData`: value of type `DataUpdateCoordinator[dict[str, Any]]` +homeassistant/components/progettihwsw/binary_sensor.py:69:16: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, Any].__getitem__(key: str, /) -> Any` cannot be called with key of type `Unknown | int` on object of type `dict[str, Any]` +homeassistant/components/progettihwsw/switch.py:85:16: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, Any].__getitem__(key: str, /) -> Any` cannot be called with key of type `Unknown | int` on object of type `dict[str, Any]` +homeassistant/components/proliphix/climate.py:7:8: error[unresolved-import] Cannot resolve imported module `proliphix` +homeassistant/components/prometheus/__init__.py:152:21: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]` +homeassistant/components/prometheus/__init__.py:152:42: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method PrometheusMetrics.handle_state_changed_event(event: Event[EventStateChangedData]) -> None` +homeassistant/components/prometheus/__init__.py:154:9: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventEntityRegistryUpdatedData]` +homeassistant/components/prometheus/__init__.py:155:9: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method PrometheusMetrics.handle_entity_registry_updated(event: Event[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]) -> None` +homeassistant/components/prometheus/__init__.py:291:34: error[invalid-key] Unknown key "changes" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "changes" +homeassistant/components/proximity/coordinator.py:125:63: error[invalid-key] Unknown key "changes" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "changes" +homeassistant/components/proximity/coordinator.py:126:42: error[invalid-key] Unknown key "old_entity_id" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "old_entity_id" +homeassistant/components/proxmoxve/__init__.py:8:6: error[unresolved-import] Cannot resolve imported module `proxmoxer` +homeassistant/components/proxmoxve/common.py:7:6: error[unresolved-import] Cannot resolve imported module `proxmoxer` +homeassistant/components/proxmoxve/common.py:8:6: error[unresolved-import] Cannot resolve imported module `proxmoxer.core` +homeassistant/components/prusalink/config_flow.py:48:65: error[invalid-key] Unknown key "server" for TypedDict `VersionInfo`: Unknown key "server" +homeassistant/components/prusalink/config_flow.py:79:30: error[invalid-key] Unknown key "hostname" for TypedDict `VersionInfo`: Unknown key "hostname" +homeassistant/components/prusalink/coordinator.py:55:55: error[invalid-argument-type] Argument to bound method `_get_update_interval` is incorrect: Argument type `None` does not satisfy constraints (`PrinterStatus`, `LegacyPrinterStatus`, `JobInfo`) of type variable `T` +homeassistant/components/prusalink/coordinator.py:118:29: error[invalid-argument-type] Argument to class `PrusaLinkUpdateCoordinator` is incorrect: Expected `PrinterStatus | LegacyPrinterStatus | JobInfo`, found `PrinterInfo` +homeassistant/components/pulseaudio_loopback/switch.py:8:6: error[unresolved-import] Cannot resolve imported module `pulsectl` +homeassistant/components/pushbullet/notify.py:116:51: error[invalid-argument-type] Argument to bound method `_push_data` is incorrect: Expected `Pushbullet`, found `Device | Channel` +homeassistant/components/pushsafer/notify.py:88:57: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | None` +homeassistant/components/pushsafer/notify.py:136:23: error[not-iterable] Object of type `list[Unknown | str] | Unknown | None` may not be iterable +homeassistant/components/qbus/climate.py:108:12: error[unsupported-operator] Operator `not in` is not supported for types `str` and `None`, in comparing `str` with `list[str] | None` +homeassistant/components/qbus/climate.py:114:32: error[no-matching-overload] No overload of bound method `join` matches arguments +homeassistant/components/qrcode/image_processing.py:8:6: error[unresolved-import] Cannot resolve imported module `pyzbar` +homeassistant/components/qvr_pro/__init__.py:5:6: error[unresolved-import] Cannot resolve imported module `pyqvrpro` +homeassistant/components/qvr_pro/__init__.py:6:6: error[unresolved-import] Cannot resolve imported module `pyqvrpro.client` +homeassistant/components/qvr_pro/camera.py:7:6: error[unresolved-import] Cannot resolve imported module `pyqvrpro.client` +homeassistant/components/rachio/__init__.py:57:5: error[unresolved-attribute] Unresolved attribute `webhook_auth` on type `Rachio`. +homeassistant/components/rachio/__init__.py:65:5: error[unresolved-attribute] Unresolved attribute `webhook_url` on type `Rachio`. +homeassistant/components/rachio/device.py:285:15: warning[possibly-missing-attribute] Attribute `webhook_url` may be missing on object of type `Unknown | Rachio` +homeassistant/components/rachio/device.py:286:35: warning[possibly-missing-attribute] Attribute `webhook_auth` may be missing on object of type `Unknown | Rachio` +homeassistant/components/rachio/webhooks.py:99:20: warning[possibly-missing-attribute] Attribute `webhook_auth` may be missing on object of type `Unknown | Rachio` +homeassistant/components/rainbird/calendar.py:97:39: error[invalid-argument-type] Argument to bound method `timeline_tz` is incorrect: Expected `tzinfo`, found `tzinfo | None` +homeassistant/components/rainbird/number.py:67:62: error[invalid-argument-type] Argument to bound method `set_rain_delay` is incorrect: Expected `int`, found `int | float` +homeassistant/components/raincloud/__init__.py:6:6: error[unresolved-import] Cannot resolve imported module `raincloudy.core` +homeassistant/components/rainmachine/__init__.py:349:50: error[unresolved-attribute] Object of type `(ServiceCall, Controller, /) -> Coroutine[Any, Any, None]` has no attribute `__name__` +homeassistant/components/rainmachine/switch.py:125:42: error[unresolved-attribute] Object of type `(...) -> Awaitable[None]` has no attribute `__name__` +homeassistant/components/raspyrfm/switch.py:7:6: error[unresolved-import] Cannot resolve imported module `raspyrfm_client` +homeassistant/components/raspyrfm/switch.py:8:6: error[unresolved-import] Cannot resolve imported module `raspyrfm_client.device_implementations.controlunit.actions` +homeassistant/components/raspyrfm/switch.py:9:6: error[unresolved-import] Cannot resolve imported module `raspyrfm_client.device_implementations.controlunit.controlunit_constants` +homeassistant/components/raspyrfm/switch.py:12:6: error[unresolved-import] Cannot resolve imported module `raspyrfm_client.device_implementations.gateway.manufacturer.gateway_constants` +homeassistant/components/raspyrfm/switch.py:15:6: error[unresolved-import] Cannot resolve imported module `raspyrfm_client.device_implementations.manufacturer_constants` +homeassistant/components/recollect_waste/__init__.py:60:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(() -> Awaitable[dict[str, Any]]) | None`, found `def async_get_pickup_events() -> CoroutineType[Any, Any, list[PickupEvent]]` +homeassistant/components/recorder/core.py:284:13: error[call-non-callable] Object of type `object` is not callable +homeassistant/components/recorder/entity_registry.py:29:36: error[invalid-key] Unknown key "old_entity_id" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "old_entity_id" +homeassistant/components/recorder/entity_registry.py:52:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventEntityRegistryUpdatedData]` +homeassistant/components/recorder/entity_registry.py:53:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _async_entity_id_changed(event: Event[EventEntityRegistryUpdatedData]) -> None` +homeassistant/components/recorder/entity_registry.py:54:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def entity_registry_changed_filter(event_data: EventEntityRegistryUpdatedData) -> bool` +homeassistant/components/recorder/executor.py:55:19: error[invalid-argument-type] Argument to bound method `put` is incorrect: Expected `_WorkItem[Any]`, found `None` +homeassistant/components/recorder/history/__init__.py:911:53: error[unresolved-reference] Name `prev_state` used when not defined +homeassistant/components/recorder/history/__init__.py:927:49: error[unresolved-reference] Name `prev_state` used when not defined +homeassistant/components/recorder/migration.py:758:34: error[invalid-assignment] Object of type `list[dict[Unknown | str, Unknown | ForeignKeyConstraint] | Unknown]` is not assignable to `list[_FKAlterDict]` +homeassistant/components/recorder/statistics.py:555:13: error[invalid-assignment] Invalid subscript assignment with key of type `Any` and value of type `dict[Unknown | str, Unknown | int | float]` on object of type `dict[int, StatisticDataTimestamp]` +homeassistant/components/recorder/statistics.py:579:17: error[invalid-assignment] Invalid subscript assignment with key of type `Any` and value of type `dict[Unknown | str, Unknown | int | float]` on object of type `dict[int, StatisticDataTimestamp]` +homeassistant/components/recorder/statistics.py:2406:12: error[invalid-return-type] Return type does not match returned value: expected `list[StatisticsRow]`, found `list[dict[Unknown | str, Unknown | None | int | float] | Unknown]` +homeassistant/components/recorder/statistics.py:2423:12: error[invalid-return-type] Return type does not match returned value: expected `list[StatisticsRow]`, found `list[dict[Unknown | str, Unknown] | Unknown]` +homeassistant/components/recorder/statistics.py:2440:12: error[invalid-return-type] Return type does not match returned value: expected `list[StatisticsRow]`, found `list[dict[Unknown | str, Unknown] | Unknown]` +homeassistant/components/recorder/statistics.py:2458:12: error[invalid-return-type] Return type does not match returned value: expected `list[StatisticsRow]`, found `list[dict[Unknown | str, Unknown | None | int | float] | Unknown]` +homeassistant/components/recorder/util.py:386:10: error[unresolved-import] Cannot resolve imported module `MySQLdb.constants` +homeassistant/components/recorder/util.py:387:10: error[unresolved-import] Cannot resolve imported module `MySQLdb.converters` +homeassistant/components/recorder/util.py:587:16: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/recorder/util.py:587:38: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/recorder/util.py:593:24: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/recorder/util.py:593:48: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/recorder/util.py:601:16: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/recorder/util.py:601:45: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/recorder/util.py:607:24: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/recorder/util.py:607:55: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/recorder/util.py:614:10: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/recorder/util.py:615:6: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/recorder/util.py:643:16: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/recorder/util.py:643:36: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/recorder/util.py:653:14: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/recorder/util.py:654:10: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/recorder/util.py:664:16: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/recorder/util.py:664:43: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/recorder/util.py:674:14: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/recorder/util.py:675:10: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/recorder/util.py:684:10: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/recorder/util.py:688:6: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/recswitch/switch.py:8:6: error[unresolved-import] Cannot resolve imported module `pyrecswitch` +homeassistant/components/reddit/sensor.py:88:12: error[unresolved-attribute] Module `praw` has no member `exceptions` +homeassistant/components/reddit/sensor.py:156:16: error[unresolved-attribute] Module `praw` has no member `exceptions` +homeassistant/components/refoss/sensor.py:179:17: warning[possibly-missing-attribute] Attribute `get_value` may be missing on object of type `Unknown | BaseDevice` +homeassistant/components/refoss/switch.py:65:16: warning[possibly-missing-attribute] Attribute `is_on` may be missing on object of type `Unknown | BaseDevice` +homeassistant/components/refoss/switch.py:69:15: warning[possibly-missing-attribute] Attribute `async_turn_on` may be missing on object of type `Unknown | BaseDevice` +homeassistant/components/refoss/switch.py:74:15: warning[possibly-missing-attribute] Attribute `async_turn_off` may be missing on object of type `Unknown | BaseDevice` +homeassistant/components/refoss/switch.py:79:15: warning[possibly-missing-attribute] Attribute `async_toggle` may be missing on object of type `Unknown | BaseDevice` +homeassistant/components/rehlko/__init__.py:45:39: error[invalid-argument-type] Argument to bound method `set_refresh_token_callback` is incorrect: Expected `(str | None, /) -> Awaitable[None]`, found `def async_refresh_token_update(refresh_token: str) -> CoroutineType[Any, Any, None]` +homeassistant/components/rejseplanen/sensor.py:14:8: error[unresolved-import] Cannot resolve imported module `rjpl` +homeassistant/components/remember_the_milk/__init__.py:127:51: error[invalid-argument-type] Argument to bound method `set_token` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/remember_the_milk/__init__.py:135:13: error[invalid-argument-type] Argument to function `_create_instance` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/remote_rpi_gpio/binary_sensor.py:104:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/renson/fan.py:197:62: error[invalid-argument-type] Argument to bound method `get_field_value` is incorrect: Expected `str`, found `FieldEnum` +homeassistant/components/renson/fan.py:241:13: error[invalid-argument-type] Argument to bound method `set_pollution` is incorrect: Expected `bool`, found `str` +homeassistant/components/renson/fan.py:242:13: error[invalid-argument-type] Argument to bound method `set_pollution` is incorrect: Expected `bool`, found `int` +homeassistant/components/renson/fan.py:243:13: error[invalid-argument-type] Argument to bound method `set_pollution` is incorrect: Expected `bool`, found `int` +homeassistant/components/reolink/__init__.py:233:9: error[invalid-argument-type] Argument is incorrect: Expected `DataUpdateCoordinator[None]`, found `DataUpdateCoordinator[dict[str, Any]]` +homeassistant/components/reolink/__init__.py:234:9: error[invalid-argument-type] Argument is incorrect: Expected `DataUpdateCoordinator[None]`, found `DataUpdateCoordinator[dict[str, Any]]` +homeassistant/components/reolink/__init__.py:241:36: error[invalid-argument-type] Argument to function `register_callbacks` is incorrect: Expected `DataUpdateCoordinator[None]`, found `DataUpdateCoordinator[dict[str, Any]]` +homeassistant/components/reolink/select.py:464:13: error[invalid-assignment] Object of type `(list[str] & ~(() -> object)) | (((Host, int, /) -> list[str]) & ~(() -> object))` is not assignable to attribute `_attr_options` of type `list[str]` +homeassistant/components/reolink/update.py:111:42: error[invalid-argument-type] Argument to function `__init__` is incorrect: Expected `DataUpdateCoordinator[dict[str, Any]]`, found `DataUpdateCoordinator[None]` +homeassistant/components/repetier/__init__.py:9:8: error[unresolved-import] Cannot resolve imported module `pyrepetierng` +homeassistant/components/repetier/sensor.py:130:16: error[no-matching-overload] No overload of function `round` matches arguments +homeassistant/components/repetier/sensor.py:151:16: error[no-matching-overload] No overload of function `round` matches arguments +homeassistant/components/rest/data.py:56:13: error[invalid-assignment] Object of type `DigestAuthMiddleware | BasicAuth | tuple[str, str] | None` is not assignable to attribute `_auth` of type `BasicAuth | DigestAuthMiddleware | None` +homeassistant/components/rflink/__init__.py:278:43: error[invalid-argument-type] Argument to bound method `set_rflink_protocol` is incorrect: Expected `ProtocolBase | None`, found `Protocol` +homeassistant/components/rflink/entity.py:286:19: error[unresolved-attribute] Object of type `ProtocolBase | None` has no attribute `send_command_ack` +homeassistant/components/rflink/entity.py:292:13: error[unresolved-attribute] Object of type `ProtocolBase | None` has no attribute `send_command` +homeassistant/components/rfxtrx/__init__.py:192:38: error[unresolved-attribute] Object of type `RFXtrxEvent & ~ConnectionLost` has no attribute `data` +homeassistant/components/rfxtrx/__init__.py:234:41: error[unresolved-attribute] Object of type `RFXtrxEvent` has no attribute `data` +homeassistant/components/rfxtrx/__init__.py:239:39: error[unresolved-attribute] Object of type `RFXtrxEvent` has no attribute `data` +homeassistant/components/rfxtrx/__init__.py:276:31: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventDeviceRegistryUpdatedData]` +homeassistant/components/rfxtrx/__init__.py:276:65: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _updated_device(event: Event[EventDeviceRegistryUpdatedData]) -> None` +homeassistant/components/rfxtrx/cover.py:52:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `RFXtrxEvent`, found `RFXtrxEvent | None` +homeassistant/components/rfxtrx/cover.py:70:9: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `RFXtrxEvent` +homeassistant/components/rfxtrx/cover.py:104:36: warning[possibly-missing-attribute] Attribute `send_up05sec` may be missing on object of type `RollerTrolDevice | RfyDevice | LightingDevice` +homeassistant/components/rfxtrx/cover.py:106:36: warning[possibly-missing-attribute] Attribute `send_up2sec` may be missing on object of type `RollerTrolDevice | RfyDevice | LightingDevice` +homeassistant/components/rfxtrx/cover.py:115:36: warning[possibly-missing-attribute] Attribute `send_down05sec` may be missing on object of type `RollerTrolDevice | RfyDevice | LightingDevice` +homeassistant/components/rfxtrx/cover.py:117:36: warning[possibly-missing-attribute] Attribute `send_down2sec` may be missing on object of type `RollerTrolDevice | RfyDevice | LightingDevice` +homeassistant/components/rfxtrx/cover.py:132:36: warning[possibly-missing-attribute] Attribute `send_up2sec` may be missing on object of type `RollerTrolDevice | RfyDevice | LightingDevice` +homeassistant/components/rfxtrx/cover.py:134:36: warning[possibly-missing-attribute] Attribute `send_up05sec` may be missing on object of type `RollerTrolDevice | RfyDevice | LightingDevice` +homeassistant/components/rfxtrx/cover.py:139:36: warning[possibly-missing-attribute] Attribute `send_down2sec` may be missing on object of type `RollerTrolDevice | RfyDevice | LightingDevice` +homeassistant/components/rfxtrx/cover.py:141:36: warning[possibly-missing-attribute] Attribute `send_down05sec` may be missing on object of type `RollerTrolDevice | RfyDevice | LightingDevice` +homeassistant/components/rfxtrx/entity.py:73:57: error[unresolved-attribute] Object of type `RFXtrxEvent & ~AlwaysFalsy` has no attribute `data` +homeassistant/components/rfxtrx/sensor.py:265:34: error[unresolved-attribute] Object of type `RFXtrxEvent` has no attribute `values` +homeassistant/components/rfxtrx/sensor.py:305:31: error[invalid-argument-type] Argument to bound method `_apply_event` is incorrect: Expected `RFXtrxEvent`, found `RFXtrxEvent | None` +homeassistant/components/rfxtrx/sensor.py:312:17: error[unresolved-attribute] Object of type `RFXtrxEvent & ~AlwaysFalsy` has no attribute `values` +homeassistant/components/rfxtrx/sensor.py:321:47: error[unresolved-attribute] Object of type `RFXtrxEvent` has no attribute `values` +homeassistant/components/rfxtrx/siren.py:179:31: error[invalid-argument-type] Argument to bound method `_apply_event` is incorrect: Expected `ControlEvent`, found `RFXtrxEvent` +homeassistant/components/rfxtrx/siren.py:244:31: error[invalid-argument-type] Argument to bound method `_apply_event` is incorrect: Expected `SensorEvent`, found `RFXtrxEvent` +homeassistant/components/rfxtrx/switch.py:138:36: error[unresolved-attribute] Object of type `RFXtrxDevice` has no attribute `send_command` +homeassistant/components/rfxtrx/switch.py:140:36: error[unresolved-attribute] Object of type `RFXtrxDevice` has no attribute `send_on` +homeassistant/components/rfxtrx/switch.py:147:36: error[unresolved-attribute] Object of type `RFXtrxDevice` has no attribute `send_command` +homeassistant/components/rfxtrx/switch.py:149:36: error[unresolved-attribute] Object of type `RFXtrxDevice` has no attribute `send_off` +homeassistant/components/ring/camera.py:186:17: error[invalid-argument-type] Argument to function `async_aiohttp_proxy_stream` is incorrect: Expected `StreamReader`, found `StreamReader` +homeassistant/components/ring/entity.py:79:54: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@exception_wrap]` has no attribute `__name__` +homeassistant/components/ring/entity.py:190:16: error[invalid-return-type] Return type does not match returned value: expected `RingDevices`, found `Unknown | RingDevices | dict[str, Any]` +homeassistant/components/ring/switch.py:103:38: error[invalid-argument-type] Argument is incorrect: Expected `typing.Self`, found `RingSwitchEntityDescription[Any]` +homeassistant/components/ring/switch.py:124:57: error[invalid-argument-type] Argument is incorrect: Expected `typing.Self`, found `RingSwitchEntityDescription[RingDeviceT@RingSwitch]` +homeassistant/components/ripple/sensor.py:7:6: error[unresolved-import] Cannot resolve imported module `pyripple` +homeassistant/components/risco/config_flow.py:272:51: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +homeassistant/components/risco/config_flow.py:294:32: warning[possibly-missing-attribute] Attribute `values` may be missing on object of type `Unknown | int | dict[Unknown | str, Unknown | AlarmControlPanelState] | dict[Unknown | AlarmControlPanelState, Unknown | str]` +homeassistant/components/risco/config_flow.py:300:20: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +homeassistant/components/risco/config_flow.py:302:23: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | int | dict[Unknown | str, Unknown | AlarmControlPanelState] | dict[Unknown | AlarmControlPanelState, Unknown | str]` +homeassistant/components/risco/switch.py:57:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Zone`, found `Zone` +homeassistant/components/risco/switch.py:91:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Zone`, found `Zone` +homeassistant/components/roborock/entity.py:135:42: error[invalid-argument-type] Argument to function `__init__` is incorrect: Expected `DataUpdateCoordinator[dict[str, Any]]`, found `RoborockDataUpdateCoordinator` +homeassistant/components/roborock/entity.py:206:42: error[invalid-argument-type] Argument to function `__init__` is incorrect: Expected `DataUpdateCoordinator[dict[str, Any]]`, found `RoborockDataUpdateCoordinatorA01` +homeassistant/components/roborock/vacuum.py:200:16: error[invalid-return-type] Return type does not match returned value: expected `ServiceResponse`, found `dict[Unknown | str, Unknown | list[dict[Unknown | str, Unknown | int | str | dict[int, str]] | Unknown]]` +homeassistant/components/rocketchat/notify.py:8:6: error[unresolved-import] Cannot resolve imported module `rocketchat_API.APIExceptions.RocketExceptions` +homeassistant/components/rocketchat/notify.py:12:6: error[unresolved-import] Cannot resolve imported module `rocketchat_API.rocketchat` +homeassistant/components/roku/browse_media.py:252:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Literal[False, ""] | Unknown` +homeassistant/components/roku/helpers.py:31:16: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/roku/helpers.py:31:46: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/roku/helpers.py:35:15: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/roku/helpers.py:36:10: error[too-many-positional-arguments] Too many positional arguments: expected 1, got 2 +homeassistant/components/roomba/vacuum.py:200:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int]`, found `tuple[Unknown | int | float, Unknown]` +homeassistant/components/roon/media_browser.py:94:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | None` +homeassistant/components/roon/media_browser.py:94:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | None` +homeassistant/components/roon/media_browser.py:94:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | None` +homeassistant/components/roon/media_browser.py:94:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | None` +homeassistant/components/roon/media_browser.py:94:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool | None` +homeassistant/components/roon/media_browser.py:94:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool | None` +homeassistant/components/roon/media_browser.py:94:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[BrowseMedia] | None`, found `Unknown | str | bool | None` +homeassistant/components/roon/media_browser.py:94:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | str | bool | None` +homeassistant/components/roon/media_browser.py:94:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | str | bool | None` +homeassistant/components/roon/media_browser.py:94:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | str | bool | None` +homeassistant/components/roon/media_browser.py:94:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool | None` +homeassistant/components/roon/media_browser.py:154:9: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | Sequence[BrowseMedia] | None` +homeassistant/components/roon/media_player.py:207:59: error[invalid-argument-type] Argument to function `convert` is incorrect: Expected `(Unknown, /) -> Literal[0]`, found `` +homeassistant/components/roon/media_player.py:213:55: error[invalid-argument-type] Argument to function `convert` is incorrect: Expected `(Unknown, /) -> Literal[0]`, found `` +homeassistant/components/roon/media_player.py:237:68: error[invalid-argument-type] Argument to function `convert` is incorrect: Expected `(Unknown, /) -> Literal[0]`, found `` +homeassistant/components/roon/media_player.py:244:70: error[invalid-argument-type] Argument to function `convert` is incorrect: Expected `(Unknown, /) -> Literal[0]`, found `` +homeassistant/components/roon/server.py:88:16: warning[possibly-missing-attribute] Attribute `zones` may be missing on object of type `Unknown | None` +homeassistant/components/roon/server.py:105:9: warning[possibly-missing-attribute] Attribute `stop` may be missing on object of type `Unknown | None` +homeassistant/components/roon/server.py:124:31: warning[possibly-missing-attribute] Attribute `zones` may be missing on object of type `Unknown | None` +homeassistant/components/roon/server.py:127:20: warning[possibly-missing-attribute] Attribute `zones` may be missing on object of type `Unknown | None` +homeassistant/components/roon/server.py:144:20: warning[possibly-missing-attribute] Attribute `zones` may be missing on object of type `Unknown | None` +homeassistant/components/roon/server.py:149:21: warning[possibly-missing-attribute] Attribute `zones` may be missing on object of type `Unknown | None` +homeassistant/components/route_b_smart_meter/sensor.py:109:16: error[unresolved-attribute] Object of type `SensorEntityDescription` has no attribute `value_accessor` +homeassistant/components/russound_rio/entity.py:33:38: error[unresolved-attribute] Object of type `(...) -> Awaitable[None]` has no attribute `__name__` +homeassistant/components/russound_rnet/media_player.py:8:6: error[unresolved-import] Cannot resolve imported module `russound` +homeassistant/components/saj/sensor.py:10:8: error[unresolved-import] Cannot resolve imported module `pysaj` +homeassistant/components/saj/sensor.py:145:9: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/samsungtv/bridge.py:351:16: error[invalid-return-type] Return type does not match returned value: expected `Remote`, found `Remote | None` +homeassistant/components/samsungtv/bridge.py:428:20: error[invalid-argument-type] Argument to bound method `is_alive` is incorrect: Expected `SamsungTVWSAsyncConnection`, found `_RemoteT@SamsungTVWSBaseBridge` +homeassistant/components/samsungtv/bridge.py:428:20: error[invalid-argument-type] Argument to bound method `is_alive` is incorrect: Expected `SamsungTVEncryptedWSAsyncRemote`, found `_RemoteT@SamsungTVWSBaseBridge` +homeassistant/components/samsungtv/bridge.py:454:41: error[invalid-argument-type] Argument to bound method `is_alive` is incorrect: Expected `SamsungTVWSAsyncConnection`, found `_RemoteT@SamsungTVWSBaseBridge` +homeassistant/components/samsungtv/bridge.py:454:41: error[invalid-argument-type] Argument to bound method `is_alive` is incorrect: Expected `SamsungTVEncryptedWSAsyncRemote`, found `_RemoteT@SamsungTVWSBaseBridge` +homeassistant/components/samsungtv/bridge.py:472:23: error[invalid-argument-type] Argument to bound method `close` is incorrect: Expected `SamsungTVWSAsyncConnection`, found `_RemoteT@SamsungTVWSBaseBridge` +homeassistant/components/samsungtv/bridge.py:472:23: error[invalid-argument-type] Argument to bound method `close` is incorrect: Expected `SamsungTVEncryptedWSAsyncRemote`, found `_RemoteT@SamsungTVWSBaseBridge` +homeassistant/components/schluter/__init__.py:6:6: error[unresolved-import] Cannot resolve imported module `schluter.api` +homeassistant/components/schluter/__init__.py:7:6: error[unresolved-import] Cannot resolve imported module `schluter.authenticator` +homeassistant/components/scrape/sensor.py:157:42: error[invalid-argument-type] Argument to function `__init__` is incorrect: Expected `DataUpdateCoordinator[dict[str, Any]]`, found `ScrapeCoordinator` +homeassistant/components/screenlogic/__init__.py:66:37: error[invalid-argument-type] Argument to bound method `async_connect` is incorrect: Expected `(...) -> Unknown`, found `str | int` +homeassistant/components/screenlogic/binary_sensor.py:48:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12500]` +homeassistant/components/screenlogic/binary_sensor.py:55:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12500]` +homeassistant/components/screenlogic/binary_sensor.py:61:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12500]` +homeassistant/components/screenlogic/binary_sensor.py:67:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12500]` +homeassistant/components/screenlogic/binary_sensor.py:73:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12500]` +homeassistant/components/screenlogic/binary_sensor.py:89:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/binary_sensor.py:96:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/binary_sensor.py:104:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/binary_sensor.py:112:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/binary_sensor.py:120:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/binary_sensor.py:128:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/binary_sensor.py:136:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/binary_sensor.py:144:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/binary_sensor.py:151:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/binary_sensor.py:158:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/binary_sensor.py:165:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/binary_sensor.py:171:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/binary_sensor.py:178:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/climate.py:56:17: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12500]` +homeassistant/components/screenlogic/climate.py:207:36: error[invalid-argument-type] Argument to bound method `parse` is incorrect: Expected `str`, found `Any | None` +homeassistant/components/screenlogic/coordinator.py:101:50: error[invalid-argument-type] Argument to bound method `async_connect` is incorrect: Expected `(...) -> Unknown`, found `str | int` +homeassistant/components/screenlogic/entity.py:134:17: error[invalid-argument-type] Argument to bound method `async_subscribe_client` is incorrect: Expected `int`, found `Unknown | CODE` +homeassistant/components/screenlogic/entity.py:171:50: error[invalid-argument-type] Argument to bound method `async_set_circuit` is incorrect: Expected `int`, found `Unknown | str` +homeassistant/components/screenlogic/light.py:44:21: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12500]` +homeassistant/components/screenlogic/number.py:55:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/number.py:63:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/number.py:71:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/number.py:79:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/sensor.py:56:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12500]` +homeassistant/components/screenlogic/sensor.py:64:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12500]` +homeassistant/components/screenlogic/sensor.py:97:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12500]` +homeassistant/components/screenlogic/sensor.py:103:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12500]` +homeassistant/components/screenlogic/sensor.py:109:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/sensor.py:117:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/sensor.py:125:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/sensor.py:134:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/sensor.py:143:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/sensor.py:151:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/sensor.py:158:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/sensor.py:165:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/sensor.py:172:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/sensor.py:179:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/sensor.py:186:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/sensor.py:193:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/sensor.py:200:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/sensor.py:210:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/sensor.py:219:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/sensor.py:228:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/sensor.py:238:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/sensor.py:247:9: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12505]` +homeassistant/components/screenlogic/switch.py:51:21: error[invalid-argument-type] Argument is incorrect: Expected `CODE`, found `Unknown | Literal[12500]` +homeassistant/components/scsgate/__init__.py:6:6: error[unresolved-import] Cannot resolve imported module `scsgate.connection` +homeassistant/components/scsgate/__init__.py:7:6: error[unresolved-import] Cannot resolve imported module `scsgate.messages` +homeassistant/components/scsgate/__init__.py:8:6: error[unresolved-import] Cannot resolve imported module `scsgate.reactor` +homeassistant/components/scsgate/__init__.py:9:6: error[unresolved-import] Cannot resolve imported module `scsgate.tasks` +homeassistant/components/scsgate/cover.py:8:6: error[unresolved-import] Cannot resolve imported module `scsgate.tasks` +homeassistant/components/scsgate/light.py:8:6: error[unresolved-import] Cannot resolve imported module `scsgate.tasks` +homeassistant/components/scsgate/switch.py:8:6: error[unresolved-import] Cannot resolve imported module `scsgate.messages` +homeassistant/components/scsgate/switch.py:9:6: error[unresolved-import] Cannot resolve imported module `scsgate.tasks` +homeassistant/components/sendgrid/notify.py:8:6: error[unresolved-import] Cannot resolve imported module `sendgrid` +homeassistant/components/sensibo/select.py:132:13: error[invalid-argument-type] Argument to bound method `async_set_ac_state_property` is incorrect: Expected `str`, found `Unknown | str | dict[str, Any] | bool` +homeassistant/components/sensibo/select.py:134:13: error[invalid-argument-type] Argument to bound method `async_set_ac_state_property` is incorrect: Expected `dict[str, Any]`, found `Unknown | str | dict[str, Any] | bool` +homeassistant/components/sensibo/select.py:135:13: error[invalid-argument-type] Argument to bound method `async_set_ac_state_property` is incorrect: Expected `bool`, found `Unknown | str | dict[str, Any] | bool` +homeassistant/components/sensor/recorder.py:830:9: error[invalid-assignment] Invalid subscript assignment with key of type `str` and value of type `dict[Unknown | str, Unknown | StatisticMeanType | bool | None | str]` on object of type `dict[str, StatisticMetaData]` +homeassistant/components/serial_pm/sensor.py:7:6: error[unresolved-import] Cannot resolve imported module `pmsensor` +homeassistant/components/sesame/lock.py:7:8: error[unresolved-import] Cannot resolve imported module `pysesame2` +homeassistant/components/seventeentrack/sensor.py:42:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown | str | None]]` +homeassistant/components/seventeentrack/services.py:141:34: error[unresolved-attribute] Object of type `str & ~AlwaysFalsy` has no attribute `isoformat` +homeassistant/components/sharkiq/coordinator.py:74:19: error[unsupported-operator] Operator `-` is unsupported between objects of type `Unknown | datetime | None` and `timedelta` +homeassistant/components/sharkiq/vacuum.py:233:36: error[invalid-argument-type] Argument to bound method `async_set_property_value` is incorrect: Expected `str | int | Enum`, found `Unknown | PowerModes | None` +homeassistant/components/shell_command/__init__.py:73:24: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/shell_command/__init__.py:74:24: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/shell_command/__init__.py:80:47: error[invalid-argument-type] Argument to function `split` is incorrect: Expected `str | _ShlexInstream`, found `Any | None` +homeassistant/components/shell_command/__init__.py:85:24: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/shell_command/__init__.py:86:24: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/shelly/coordinator.py:203:15: error[invalid-argument-type] Argument to bound method `shutdown` is incorrect: Expected `BlockDevice`, found `_DeviceT@ShellyCoordinatorBase` +homeassistant/components/shelly/coordinator.py:203:15: error[invalid-argument-type] Argument to bound method `shutdown` is incorrect: Expected `RpcDevice`, found `_DeviceT@ShellyCoordinatorBase` +homeassistant/components/shelly/coordinator.py:214:19: error[invalid-argument-type] Argument to bound method `initialize` is incorrect: Expected `BlockDevice`, found `_DeviceT@ShellyCoordinatorBase` +homeassistant/components/shelly/coordinator.py:214:19: error[invalid-argument-type] Argument to bound method `initialize` is incorrect: Expected `RpcDevice`, found `_DeviceT@ShellyCoordinatorBase` +homeassistant/components/shelly/entity.py:642:42: warning[possibly-missing-attribute] Attribute `split` may be missing on object of type `str | None` +homeassistant/components/shelly/event.py:290:15: error[unresolved-attribute] Object of type `, ShellyRpcScriptEvent>` has no attribute `async_added_to_hass` +homeassistant/components/shelly/light.py:226:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int, int, int]`, found `tuple[@Todo, int]` +homeassistant/components/shelly/light.py:400:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int, int, int]`, found `tuple[@Todo, Unknown]` +homeassistant/components/shelly/utils.py:288:13: error[invalid-argument-type] Argument to bound method `extend` is incorrect: Expected `Iterable[IPv4Address]`, found `GeneratorType[IPv4Address | IPv6Address, None, None]` +homeassistant/components/shodan/sensor.py:8:8: error[unresolved-import] Cannot resolve imported module `shodan` +homeassistant/components/sia/hub.py:103:17: error[invalid-argument-type] Argument is incorrect: Expected `tuple[int, int]`, found `None | tuple[Literal[80], Literal[40]]` +homeassistant/components/sigfox/sensor.py:71:22: error[unresolved-attribute] Module `requests` has no member `auth` +homeassistant/components/sighthound/image_processing.py:141:44: error[invalid-argument-type] Argument to function `bbox_to_tf_style` is incorrect: Expected `int`, found `int | None` +homeassistant/components/sighthound/image_processing.py:141:63: error[invalid-argument-type] Argument to function `bbox_to_tf_style` is incorrect: Expected `int`, found `int | None` +homeassistant/components/simplefin/entity.py:43:16: error[invalid-return-type] Return type does not match returned value: expected `Account`, found `Unknown | Account | None` +homeassistant/components/simplisafe/__init__.py:246:9: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `typing.TypeVar | None` +homeassistant/components/simplisafe/__init__.py:247:9: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `str | None | UndefinedType`, found `typing.TypeVar | None` +homeassistant/components/simplisafe/alarm_control_panel.py:216:58: error[unresolved-attribute] Object of type `typing.TypeVar` has no attribute `name` +homeassistant/components/sinch/notify.py:7:6: error[unresolved-import] Cannot resolve imported module `clx.xms.api` +homeassistant/components/sinch/notify.py:8:6: error[unresolved-import] Cannot resolve imported module `clx.xms.client` +homeassistant/components/sinch/notify.py:9:6: error[unresolved-import] Cannot resolve imported module `clx.xms.exceptions` +homeassistant/components/sisyphus/__init__.py:6:6: error[unresolved-import] Cannot resolve imported module `sisyphus_control` +homeassistant/components/sisyphus/media_player.py:6:6: error[unresolved-import] Cannot resolve imported module `sisyphus_control` +homeassistant/components/sky_hub/device_tracker.py:7:6: error[unresolved-import] Cannot resolve imported module `pyskyqhub.skyq_hub` +homeassistant/components/skybeacon/sensor.py:9:6: error[unresolved-import] Cannot resolve imported module `pygatt` +homeassistant/components/skybeacon/sensor.py:10:6: error[unresolved-import] Cannot resolve imported module `pygatt.backends` +homeassistant/components/skybeacon/sensor.py:11:6: error[unresolved-import] Cannot resolve imported module `pygatt.exceptions` +homeassistant/components/skybell/camera.py:82:17: error[invalid-argument-type] Argument to function `async_aiohttp_proxy_stream` is incorrect: Expected `StreamReader`, found `StreamReader` +homeassistant/components/slimproto/media_player.py:120:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `(SlimEvent, /) -> None`, found `bound method Self@async_added_to_hass._on_slim_event(event: SlimEvent) -> CoroutineType[Any, Any, None]` +homeassistant/components/slimproto/media_player.py:121:17: error[invalid-argument-type] Argument to bound method `subscribe` is incorrect: Expected `EventType | tuple[EventType] | None`, found `tuple[Literal[EventType.PLAYER_UPDATED], Literal[EventType.PLAYER_CONNECTED], Literal[EventType.PLAYER_DISCONNECTED], Literal[EventType.PLAYER_NAME_RECEIVED], Literal[EventType.PLAYER_CLI_EVENT]]` +homeassistant/components/slimproto/media_player.py:128:31: warning[possibly-missing-attribute] Attribute `player_id` may be missing on object of type `Unknown | SlimClient | None` +homeassistant/components/slimproto/media_player.py:135:16: warning[possibly-missing-attribute] Attribute `connected` may be missing on object of type `Unknown | SlimClient | None` +homeassistant/components/slimproto/media_player.py:140:16: warning[possibly-missing-attribute] Attribute `powered` may be missing on object of type `Unknown | SlimClient | None` +homeassistant/components/slimproto/media_player.py:142:30: warning[possibly-missing-attribute] Attribute `state` may be missing on object of type `Unknown | SlimClient | None` +homeassistant/components/slimproto/media_player.py:147:35: warning[possibly-missing-attribute] Attribute `volume_level` may be missing on object of type `Unknown | SlimClient | None` +homeassistant/components/slimproto/media_player.py:148:38: warning[possibly-missing-attribute] Attribute `muted` may be missing on object of type `Unknown | SlimClient | None` +homeassistant/components/slimproto/media_player.py:149:9: error[invalid-assignment] Object of type `Unknown | int | float` is not assignable to attribute `_attr_media_position` of type `int | None` +homeassistant/components/slimproto/media_player.py:149:37: warning[possibly-missing-attribute] Attribute `elapsed_seconds` may be missing on object of type `Unknown | SlimClient | None` +homeassistant/components/slimproto/media_player.py:151:30: warning[possibly-missing-attribute] Attribute `current_media` may be missing on object of type `Unknown | SlimClient | None` +homeassistant/components/slimproto/media_player.py:169:15: warning[possibly-missing-attribute] Attribute `play` may be missing on object of type `Unknown | SlimClient | None` +homeassistant/components/slimproto/media_player.py:173:15: warning[possibly-missing-attribute] Attribute `pause` may be missing on object of type `Unknown | SlimClient | None` +homeassistant/components/slimproto/media_player.py:177:15: warning[possibly-missing-attribute] Attribute `stop` may be missing on object of type `Unknown | SlimClient | None` +homeassistant/components/slimproto/media_player.py:182:15: warning[possibly-missing-attribute] Attribute `volume_set` may be missing on object of type `Unknown | SlimClient | None` +homeassistant/components/slimproto/media_player.py:186:15: warning[possibly-missing-attribute] Attribute `mute` may be missing on object of type `Unknown | SlimClient | None` +homeassistant/components/slimproto/media_player.py:190:15: warning[possibly-missing-attribute] Attribute `power` may be missing on object of type `Unknown | SlimClient | None` +homeassistant/components/slimproto/media_player.py:194:15: warning[possibly-missing-attribute] Attribute `power` may be missing on object of type `Unknown | SlimClient | None` +homeassistant/components/slimproto/media_player.py:213:15: warning[possibly-missing-attribute] Attribute `play_url` may be missing on object of type `Unknown | SlimClient | None` +homeassistant/components/smarla/config_flow.py:37:24: warning[possibly-missing-attribute] Attribute `serialNumber` may be missing on object of type `Unknown | AuthToken | None` +homeassistant/components/smarttub/climate.py:85:33: error[unresolved-attribute] Object of type `SpaState` has no attribute `heater` +homeassistant/components/smarttub/climate.py:99:29: error[unresolved-attribute] Object of type `SpaState` has no attribute `heat_mode` +homeassistant/components/smarttub/climate.py:104:16: error[unresolved-attribute] Object of type `SpaState` has no attribute `water` +homeassistant/components/smarttub/climate.py:109:16: error[unresolved-attribute] Object of type `SpaState` has no attribute `set_temperature` +homeassistant/components/smarttub/sensor.py:127:16: error[unresolved-attribute] Object of type `SpaPrimaryFiltrationCycle` has no attribute `status` +homeassistant/components/smarttub/sensor.py:133:28: error[unresolved-attribute] Object of type `SpaPrimaryFiltrationCycle` has no attribute `duration` +homeassistant/components/smarttub/sensor.py:134:38: error[unresolved-attribute] Object of type `SpaPrimaryFiltrationCycle` has no attribute `last_updated` +homeassistant/components/smarttub/sensor.py:135:24: error[unresolved-attribute] Object of type `SpaPrimaryFiltrationCycle` has no attribute `mode` +homeassistant/components/smarttub/sensor.py:136:30: error[unresolved-attribute] Object of type `SpaPrimaryFiltrationCycle` has no attribute `start_hour` +homeassistant/components/smarttub/sensor.py:167:16: error[unresolved-attribute] Object of type `SpaSecondaryFiltrationCycle` has no attribute `status` +homeassistant/components/smarttub/sensor.py:173:38: error[unresolved-attribute] Object of type `SpaSecondaryFiltrationCycle` has no attribute `last_updated` +homeassistant/components/smarttub/sensor.py:174:24: error[unresolved-attribute] Object of type `SpaSecondaryFiltrationCycle` has no attribute `mode` +homeassistant/components/smhi/weather.py:121:26: warning[possibly-missing-attribute] Attribute `daily` may be missing on object of type `Unknown | SMHIForecastData | dict[str, Any]` +homeassistant/components/smhi/weather.py:139:26: warning[possibly-missing-attribute] Attribute `daily` may be missing on object of type `Unknown | SMHIForecastData | dict[str, Any]` +homeassistant/components/smhi/weather.py:167:28: error[missing-typed-dict-key] Missing required key 'datetime' in TypedDict `Forecast` constructor +homeassistant/components/smhi/weather.py:196:40: warning[possibly-missing-attribute] Attribute `daily` may be missing on object of type `Unknown | SMHIForecastData | dict[str, Any]` +homeassistant/components/smhi/weather.py:200:40: warning[possibly-missing-attribute] Attribute `hourly` may be missing on object of type `Unknown | SMHIForecastData | dict[str, Any]` +homeassistant/components/smhi/weather.py:204:40: warning[possibly-missing-attribute] Attribute `twice_daily` may be missing on object of type `Unknown | SMHIForecastData | dict[str, Any]` +homeassistant/components/smlight/update.py:187:20: error[invalid-assignment] Object of type `int` is not assignable to `MessageEvent` +homeassistant/components/smlight/update.py:188:9: error[invalid-assignment] Object of type `MessageEvent` is not assignable to attribute `_attr_update_percentage` of type `int | float | None` +homeassistant/components/snmp/device_tracker.py:113:17: error[invalid-argument-type] Argument to bound method `create` is incorrect: Expected `tuple[str, int]`, found `tuple[Unknown, Literal["161"]]` +homeassistant/components/snmp/device_tracker.py:119:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int | float`, found `tuple[Unknown, Literal["161"]]` +homeassistant/components/snmp/device_tracker.py:119:43: error[parameter-already-assigned] Multiple values provided for parameter `timeout` of bound method `__init__` +homeassistant/components/snmp/device_tracker.py:195:21: warning[possibly-missing-attribute] Attribute `prettyPrint` may be missing on object of type `(Integer32 & ~AlwaysFalsy) | (str & ~AlwaysFalsy) | (int & ~AlwaysFalsy)` +homeassistant/components/snmp/sensor.py:137:50: error[invalid-argument-type] Argument to bound method `create` is incorrect: Expected `tuple[str, int]`, found `tuple[Any | None, Any | None]` +homeassistant/components/snmp/sensor.py:141:42: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int | float`, found `tuple[Any | None, Any | None]` +homeassistant/components/snmp/sensor.py:141:56: error[parameter-already-assigned] Multiple values provided for parameter `timeout` of bound method `__init__` +homeassistant/components/snmp/sensor.py:246:17: warning[possibly-missing-attribute] Attribute `prettyPrint` may be missing on object of type `(Integer32 & ~AlwaysFalsy) | (int & ~AlwaysFalsy)` +homeassistant/components/snmp/switch.py:265:36: error[invalid-argument-type] Argument to function `get_cmd` is incorrect: Expected `SnmpEngine`, found `Unknown | SnmpEngine | UsmUserData | ... omitted 5 union elements` +homeassistant/components/snmp/switch.py:265:36: error[invalid-argument-type] Argument to function `get_cmd` is incorrect: Expected `CommunityData | UsmUserData`, found `Unknown | SnmpEngine | UsmUserData | ... omitted 5 union elements` +homeassistant/components/snmp/switch.py:265:36: error[invalid-argument-type] Argument to function `get_cmd` is incorrect: Expected `AbstractTransportTarget`, found `Unknown | SnmpEngine | UsmUserData | ... omitted 5 union elements` +homeassistant/components/snmp/switch.py:265:36: error[invalid-argument-type] Argument to function `get_cmd` is incorrect: Expected `ContextData`, found `Unknown | SnmpEngine | UsmUserData | ... omitted 5 union elements` +homeassistant/components/snmp/switch.py:265:36: error[invalid-argument-type] Argument to function `get_cmd` is incorrect: Expected `ObjectType`, found `Unknown | SnmpEngine | UsmUserData | ... omitted 5 union elements` +homeassistant/components/snmp/switch.py:273:17: warning[possibly-missing-attribute] Attribute `prettyPrint` may be missing on object of type `(Integer32 & ~AlwaysFalsy) | (int & ~AlwaysFalsy)` +homeassistant/components/snmp/switch.py:302:13: error[invalid-argument-type] Argument to function `set_cmd` is incorrect: Expected `SnmpEngine`, found `Unknown | SnmpEngine | UsmUserData | ... omitted 4 union elements` +homeassistant/components/snmp/switch.py:302:13: error[invalid-argument-type] Argument to function `set_cmd` is incorrect: Expected `CommunityData | UsmUserData`, found `Unknown | SnmpEngine | UsmUserData | ... omitted 4 union elements` +homeassistant/components/snmp/switch.py:302:13: error[invalid-argument-type] Argument to function `set_cmd` is incorrect: Expected `AbstractTransportTarget`, found `Unknown | SnmpEngine | UsmUserData | ... omitted 4 union elements` +homeassistant/components/snmp/switch.py:302:13: error[invalid-argument-type] Argument to function `set_cmd` is incorrect: Expected `ContextData`, found `Unknown | SnmpEngine | UsmUserData | ... omitted 4 union elements` +homeassistant/components/snmp/switch.py:302:13: error[invalid-argument-type] Argument to function `set_cmd` is incorrect: Expected `ObjectType`, found `Unknown | SnmpEngine | UsmUserData | ... omitted 4 union elements` +homeassistant/components/solaredge_local/sensor.py:12:6: error[unresolved-import] Cannot resolve imported module `solaredge_local` +homeassistant/components/solax/sensor.py:139:26: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `DataUpdateCoordinator[dict[str, Any]]`, found `SolaxDataUpdateCoordinator` +homeassistant/components/solax/sensor.py:156:16: warning[possibly-missing-attribute] Attribute `data` may be missing on object of type `Unknown | dict[str, Any]` +homeassistant/components/soma/cover.py:62:16: error[invalid-return-type] Return type does not match returned value: expected `int`, found `Unknown | int | float` +homeassistant/components/songpal/media_player.py:253:16: warning[possibly-missing-attribute] Attribute `macAddr` may be missing on object of type `Unknown | None` +homeassistant/components/songpal/media_player.py:253:41: warning[possibly-missing-attribute] Attribute `wirelessMacAddr` may be missing on object of type `Unknown | None` +homeassistant/components/songpal/media_player.py:259:12: warning[possibly-missing-attribute] Attribute `macAddr` may be missing on object of type `Unknown | None` +homeassistant/components/songpal/media_player.py:260:57: warning[possibly-missing-attribute] Attribute `macAddr` may be missing on object of type `Unknown | None` +homeassistant/components/songpal/media_player.py:261:12: warning[possibly-missing-attribute] Attribute `wirelessMacAddr` may be missing on object of type `Unknown | None` +homeassistant/components/songpal/media_player.py:262:57: warning[possibly-missing-attribute] Attribute `wirelessMacAddr` may be missing on object of type `Unknown | None` +homeassistant/components/songpal/media_player.py:269:24: warning[possibly-missing-attribute] Attribute `version` may be missing on object of type `Unknown | None` +homeassistant/components/songpal/media_player.py:394:22: warning[possibly-missing-attribute] Attribute `set_volume` may be missing on object of type `Unknown | None` +homeassistant/components/songpal/media_player.py:398:22: warning[possibly-missing-attribute] Attribute `set_volume` may be missing on object of type `Unknown | None` +homeassistant/components/songpal/media_player.py:402:22: warning[possibly-missing-attribute] Attribute `set_volume` may be missing on object of type `Unknown | None` +homeassistant/components/songpal/media_player.py:431:22: warning[possibly-missing-attribute] Attribute `set_mute` may be missing on object of type `Unknown | None` +homeassistant/components/sonos/__init__.py:115:5: error[invalid-assignment] Object of type `` is not assignable to attribute `EVENTS_MODULE` of type `None` +homeassistant/components/sonos/__init__.py:117:5: error[invalid-assignment] Object of type `Literal[False]` is not assignable to attribute `ZGT_EVENT_FALLBACK` of type `Literal[True]` +homeassistant/components/sonos/__init__.py:118:5: error[unresolved-attribute] Unresolved attribute `EVENT_CACHE_TIMEOUT` on type ``. +homeassistant/components/sonos/__init__.py:374:21: error[invalid-assignment] Invalid subscript assignment with key of type `Unknown` and value of type `SonosAlarms | SonosFavorites` on object of type `dict[str, SonosAlarms]` +homeassistant/components/sonos/__init__.py:374:21: error[invalid-assignment] Invalid subscript assignment with key of type `Unknown` and value of type `SonosAlarms | SonosFavorites` on object of type `dict[str, SonosFavorites]` +homeassistant/components/sonos/helpers.py:46:16: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/sonos/helpers.py:46:40: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/sonos/helpers.py:52:16: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/sonos/helpers.py:52:40: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/sonos/helpers.py:57:16: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/sonos/helpers.py:57:40: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/sonos/helpers.py:60:26: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/sonos/helpers.py:60:52: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/components/sonos/media_browser.py:259:21: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/sonos/media_browser.py:285:31: error[invalid-argument-type] Argument to function `can_expand` is incorrect: Expected `DidlObject`, found `str` +homeassistant/components/sonos/media_browser.py:304:21: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/sonos/media_browser.py:497:21: error[invalid-argument-type] Argument to function `get_thumbnail_url_full` is incorrect: Expected `MusicServiceItem | None`, found `DidlFavorite` +homeassistant/components/sonos/media_player.py:381:22: error[unresolved-attribute] Object of type `DidlFavorite` has no attribute `resource_meta_data` +homeassistant/components/sonos/media_player.py:487:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[str, str] | None`, found `dict[Unknown | str, Unknown | str | dict[str, Any]]` +homeassistant/components/sonos/speaker.py:131:13: error[invalid-assignment] Object of type `bound method Self@__init__.async_dispatch_event(event: Event) -> None` is not assignable to attribute `callback` on type `SubscriptionBase & ~AlwaysFalsy` +homeassistant/components/sonos/speaker.py:337:22: error[unresolved-attribute] Object of type `SubscriptionBase` has no attribute `event_listener` +homeassistant/components/sonos/speaker.py:356:31: error[unresolved-attribute] Module `asyncio` has no member `exceptions` +homeassistant/components/sonos/statistics.py:75:9: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["soco:from_didl_string"]` and value of type `_CacheInfo` on object of type `dict[str, dict[str, int | float]]` +homeassistant/components/sonos/statistics.py:76:9: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["soco:parse_event_xml"]` and value of type `_CacheInfo` on object of type `dict[str, dict[str, int | float]]` +homeassistant/components/sonos/switch.py:257:16: error[invalid-return-type] Return type does not match returned value: expected `Alarm`, found `Unknown | Alarm | None` +homeassistant/components/sony_projector/switch.py:8:8: error[unresolved-import] Cannot resolve imported module `pysdcp` +homeassistant/components/soundtouch/__init__.py:139:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/soundtouch/media_player.py:120:16: warning[possibly-missing-attribute] Attribute `actual` may be missing on object of type `Unknown | None` +homeassistant/components/soundtouch/media_player.py:136:16: warning[possibly-missing-attribute] Attribute `source` may be missing on object of type `Unknown | None` +homeassistant/components/soundtouch/media_player.py:141:16: warning[possibly-missing-attribute] Attribute `muted` may be missing on object of type `Unknown | None` +homeassistant/components/soundtouch/media_player.py:190:16: warning[possibly-missing-attribute] Attribute `image` may be missing on object of type `Unknown | None` +homeassistant/components/soundtouch/media_player.py:195:12: warning[possibly-missing-attribute] Attribute `station_name` may be missing on object of type `Unknown | None` +homeassistant/components/soundtouch/media_player.py:196:20: warning[possibly-missing-attribute] Attribute `station_name` may be missing on object of type `Unknown | None` +homeassistant/components/soundtouch/media_player.py:197:12: warning[possibly-missing-attribute] Attribute `artist` may be missing on object of type `Unknown | None` +homeassistant/components/soundtouch/media_player.py:198:23: warning[possibly-missing-attribute] Attribute `artist` may be missing on object of type `Unknown | None` +homeassistant/components/soundtouch/media_player.py:198:47: warning[possibly-missing-attribute] Attribute `track` may be missing on object of type `Unknown | None` +homeassistant/components/soundtouch/media_player.py:205:16: warning[possibly-missing-attribute] Attribute `duration` may be missing on object of type `Unknown | None` +homeassistant/components/soundtouch/media_player.py:210:16: warning[possibly-missing-attribute] Attribute `artist` may be missing on object of type `Unknown | None` +homeassistant/components/soundtouch/media_player.py:215:16: warning[possibly-missing-attribute] Attribute `track` may be missing on object of type `Unknown | None` +homeassistant/components/soundtouch/media_player.py:220:16: warning[possibly-missing-attribute] Attribute `album` may be missing on object of type `Unknown | None` +homeassistant/components/splunk/__init__.py:9:6: error[unresolved-import] Cannot resolve imported module `hass_splunk` +homeassistant/components/splunk/__init__.py:127:27: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]` +homeassistant/components/spotify/browse_media.py:331:21: error[invalid-assignment] Object of type `list[dict[Unknown | str, Unknown | str | None] | Unknown]` is not assignable to `list[ItemPayload]` +homeassistant/components/squeezebox/__init__.py:207:42: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/squeezebox/browse_media.py:162:43: error[invalid-argument-type] Argument to bound method `async_query` is incorrect: Expected `str`, found `Unknown | str | int` +homeassistant/components/squeezebox/browse_media.py:174:43: error[invalid-argument-type] Argument to bound method `async_query` is incorrect: Expected `str`, found `Unknown | str | int` +homeassistant/components/squeezebox/browse_media.py:266:20: warning[redundant-cast] Value is already of type `str` +homeassistant/components/squeezebox/browse_media.py:274:15: warning[redundant-cast] Value is already of type `str` +homeassistant/components/squeezebox/coordinator.py:46:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/squeezebox/media_player.py:422:27: error[not-iterable] Object of type `Unknown | list[str] | None` may not be iterable +homeassistant/components/squeezebox/media_player.py:581:50: error[invalid-argument-type] Argument to bound method `set_announce_volume` is incorrect: Expected `int | None`, found `int | float | None` +homeassistant/components/squeezebox/media_player.py:889:17: error[invalid-argument-type] Argument to function `safe_library_call` is incorrect: Expected `(...) -> Awaitable[Any]`, found `Unknown | (bound method Player.generate_image_url_from_track_id(track_id: int) -> str)` +homeassistant/components/squeezebox/switch.py:150:16: warning[redundant-cast] Value is already of type `bool` +homeassistant/components/ssdp/common.py:18:42: warning[possibly-missing-attribute] Attribute `scope_id` may be missing on object of type `IPv4Address | IPv6Address` +homeassistant/components/ssdp/scanner.py:63:28: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/components/ssdp/scanner.py:64:5: error[invalid-type-form] List literals are not allowed in this context in a type expression +homeassistant/components/ssdp/scanner.py:263:24: warning[possibly-missing-attribute] Attribute `scope_id` may be missing on object of type `IPv4Address | IPv6Address` +homeassistant/components/ssdp/scanner.py:268:25: warning[possibly-missing-attribute] Attribute `scope_id` may be missing on object of type `IPv4Address | IPv6Address` +homeassistant/components/ssdp/server.py:174:28: warning[possibly-missing-attribute] Attribute `scope_id` may be missing on object of type `IPv4Address | IPv6Address` +homeassistant/components/ssdp/server.py:179:29: warning[possibly-missing-attribute] Attribute `scope_id` may be missing on object of type `IPv4Address | IPv6Address` +homeassistant/components/starlingbank/sensor.py:9:6: error[unresolved-import] Cannot resolve imported module `starlingbank` +homeassistant/components/starlingbank/sensor.py:72:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/statsd/__init__.py:91:21: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]` +homeassistant/components/steam_online/config_flow.py:30:5: error[unresolved-attribute] Module `steam` has no member `api` +homeassistant/components/steam_online/config_flow.py:31:17: error[unresolved-attribute] Module `steam` has no member `api` +homeassistant/components/steam_online/config_flow.py:61:21: error[unresolved-attribute] Module `steam` has no member `api` +homeassistant/components/steam_online/config_flow.py:61:42: error[unresolved-attribute] Module `steam` has no member `api` +homeassistant/components/steam_online/config_flow.py:159:16: error[unresolved-attribute] Module `steam` has no member `api` +homeassistant/components/steam_online/config_flow.py:176:21: error[unresolved-attribute] Module `steam` has no member `api` +homeassistant/components/steam_online/config_flow.py:182:16: error[unresolved-attribute] Module `steam` has no member `api` +homeassistant/components/steam_online/coordinator.py:40:9: error[unresolved-attribute] Module `steam` has no member `api` +homeassistant/components/steam_online/coordinator.py:47:35: error[unresolved-attribute] Module `steam` has no member `api` +homeassistant/components/steam_online/coordinator.py:48:37: error[unresolved-attribute] Module `steam` has no member `api` +homeassistant/components/steam_online/coordinator.py:51:23: warning[possibly-missing-attribute] Attribute `GetOwnedGames` may be missing on object of type `(_interface_method & ~AlwaysFalsy) | Unknown` +homeassistant/components/steam_online/coordinator.py:57:20: warning[possibly-missing-attribute] Attribute `GetPlayerSummaries` may be missing on object of type `(_interface_method & ~AlwaysFalsy) | Unknown` +homeassistant/components/steam_online/coordinator.py:64:20: warning[possibly-missing-attribute] Attribute `GetSteamLevel` may be missing on object of type `(_interface_method & ~AlwaysFalsy) | Unknown` +homeassistant/components/steam_online/coordinator.py:73:17: error[unresolved-attribute] Module `steam` has no member `api` +homeassistant/components/steam_online/coordinator.py:73:38: error[unresolved-attribute] Module `steam` has no member `api` +homeassistant/components/stiebel_eltron/climate.py:169:36: error[invalid-argument-type] Argument to bound method `set_operation` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/stiebel_eltron/climate.py:182:36: error[invalid-argument-type] Argument to bound method `set_operation` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/stream/worker.py:389:13: error[invalid-assignment] Object of type `int | Unknown | Fraction | float` is not assignable to attribute `_part_start_dts` of type `int | float` +homeassistant/components/streamlabswater/__init__.py:49:45: error[invalid-argument-type] Argument to bound method `update_location` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/subaru/__init__.py:60:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `None` +homeassistant/components/subaru/config_flow.py:128:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `None` +homeassistant/components/supla/__init__.py:9:6: error[unresolved-import] Cannot resolve imported module `asyncpysupla` +homeassistant/components/swiss_hydrological_data/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `swisshydrodata` +homeassistant/components/swiss_hydrological_data/sensor.py:106:19: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/swiss_public_transport/coordinator.py:114:23: error[invalid-argument-type] Invalid argument to key "start" with declared type `str` on TypedDict `DataConnection`: value of type `Unknown | None` +homeassistant/components/swiss_public_transport/coordinator.py:115:29: error[invalid-argument-type] Invalid argument to key "destination" with declared type `str` on TypedDict `DataConnection`: value of type `Unknown | None` +homeassistant/components/swisscom/device_tracker.py:94:13: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/swisscom/device_tracker.py:95:13: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/swisscom/device_tracker.py:96:13: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/swisscom/device_tracker.py:106:37: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/switchbot/__init__.py:217:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `SwitchbotDevice`, found `Unknown | SwitchbotCeilingLight | SwitchbotCurtain | ... omitted 14 union elements` +homeassistant/components/switchbot/__init__.py:217:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `SwitchbotDevice`, found `Unknown | SwitchbotCeilingLight | SwitchbotCurtain | ... omitted 14 union elements` +homeassistant/components/switchbot/climate.py:75:16: error[unresolved-attribute] Object of type `SwitchbotDevice` has no attribute `min_temperature` +homeassistant/components/switchbot/climate.py:80:16: error[unresolved-attribute] Object of type `SwitchbotDevice` has no attribute `max_temperature` +homeassistant/components/switchbot/climate.py:85:16: error[unresolved-attribute] Object of type `SwitchbotDevice` has no attribute `preset_modes` +homeassistant/components/switchbot/climate.py:90:16: error[unresolved-attribute] Object of type `SwitchbotDevice` has no attribute `preset_mode` +homeassistant/components/switchbot/climate.py:96:13: error[unresolved-attribute] Object of type `SwitchbotDevice` has no attribute `hvac_mode` +homeassistant/components/switchbot/climate.py:104:25: error[unresolved-attribute] Object of type `SwitchbotDevice` has no attribute `hvac_modes` +homeassistant/components/switchbot/climate.py:111:13: error[unresolved-attribute] Object of type `SwitchbotDevice` has no attribute `hvac_action` +homeassistant/components/switchbot/climate.py:117:16: error[unresolved-attribute] Object of type `SwitchbotDevice` has no attribute `current_temperature` +homeassistant/components/switchbot/climate.py:122:16: error[unresolved-attribute] Object of type `SwitchbotDevice` has no attribute `target_temperature` +homeassistant/components/switchbot/climate.py:127:22: error[unresolved-attribute] Object of type `SwitchbotDevice` has no attribute `set_hvac_mode` +homeassistant/components/switchbot/climate.py:134:22: error[unresolved-attribute] Object of type `SwitchbotDevice` has no attribute `set_preset_mode` +homeassistant/components/switchbot/climate.py:140:22: error[unresolved-attribute] Object of type `SwitchbotDevice` has no attribute `set_target_temperature` +homeassistant/components/switchbot/const.py:144:5: error[invalid-assignment] Object of type `dict[Unknown | SwitchbotModel, Unknown | | | ... omitted 6 union elements]` is not assignable to `dict[SwitchbotModel, SwitchbotEncryptedDevice]` +homeassistant/components/switchbot/cover.py:117:71: error[invalid-argument-type] Argument to bound method `set_position` is incorrect: Expected `int`, found `Any | None` +homeassistant/components/switchbot/cover.py:200:71: error[invalid-argument-type] Argument to bound method `set_position` is incorrect: Expected `int`, found `Any | None` +homeassistant/components/switchbot/cover.py:286:71: error[invalid-argument-type] Argument to bound method `set_position` is incorrect: Expected `int`, found `Any | None` +homeassistant/components/switchbot/humidifier.py:27:66: error[invalid-assignment] Object of type `dict[Unknown | switchbot.const.evaporative_humidifier.HumidifierAction, Unknown | homeassistant.components.humidifier.const.HumidifierAction]` is not assignable to `dict[int, homeassistant.components.humidifier.const.HumidifierAction]` +homeassistant/components/switchbot/humidifier.py:109:16: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `HumidifierMode | None` +homeassistant/components/switchbot/light.py:64:64: error[unresolved-attribute] Object of type `SwitchbotBaseLight` has no attribute `color_modes` +homeassistant/components/switchbot/light.py:74:38: error[unsupported-operator] Operator `*` is unsupported between objects of type `int | None` and `float` +homeassistant/components/switchbot/light.py:106:16: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `bool | None` +homeassistant/components/switchbot/switch.py:110:35: error[too-many-positional-arguments] Too many positional arguments to bound method `is_on`: expected 1, got 2 +homeassistant/components/switchbot/switch.py:118:36: error[too-many-positional-arguments] Too many positional arguments to bound method `turn_on`: expected 1, got 2 +homeassistant/components/switchbot/switch.py:127:37: error[too-many-positional-arguments] Too many positional arguments to bound method `turn_off`: expected 1, got 2 +homeassistant/components/switchbot_cloud/climate.py:124:20: error[no-matching-overload] No overload of bound method `get` matches arguments +homeassistant/components/switchbot_cloud/climate.py:137:25: error[no-matching-overload] No overload of bound method `get` matches arguments +homeassistant/components/switchbot_cloud/entity.py:51:13: error[invalid-argument-type] Argument to bound method `send_command` is incorrect: Expected `str`, found `str | None | Unknown` +homeassistant/components/switchbot_cloud/entity.py:54:13: error[invalid-argument-type] Argument to bound method `send_command` is incorrect: Expected `dict[Unknown, Unknown] | str`, found `dict[Unknown, Unknown] | str | int` +homeassistant/components/switchbot_cloud/sensor.py:343:38: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Device`, found `Device | Remote` +homeassistant/components/switcher_kis/sensor.py:138:16: error[unresolved-attribute] Object of type `SensorEntityDescription` has no attribute `value_fn` +homeassistant/components/switchmate/switch.py:8:6: error[unresolved-import] Cannot resolve imported module `switchmate` +homeassistant/components/syncthing/__init__.py:48:12: error[unresolved-attribute] Module `aiosyncthing` has no member `exceptions` +homeassistant/components/syncthing/__init__.py:155:20: error[unresolved-attribute] Module `aiosyncthing` has no member `exceptions` +homeassistant/components/syncthing/__init__.py:174:16: error[unresolved-attribute] Module `aiosyncthing` has no member `exceptions` +homeassistant/components/syncthing/config_flow.py:36:12: error[unresolved-attribute] Module `aiosyncthing` has no member `exceptions` +homeassistant/components/syncthing/sensor.py:36:12: error[unresolved-attribute] Module `aiosyncthing` has no member `exceptions` +homeassistant/components/syncthing/sensor.py:111:16: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/syncthing/sensor.py:127:16: error[unresolved-attribute] Module `aiosyncthing` has no member `exceptions` +homeassistant/components/synology_dsm/entity.py:154:9: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `str` +homeassistant/components/synology_srm/device_tracker.py:7:8: error[unresolved-import] Cannot resolve imported module `synology_srm` +homeassistant/components/system_bridge/__init__.py:290:16: error[invalid-return-type] Return type does not match returned value: expected `ServiceResponse`, found `dict[Unknown | str, Unknown | int | list[dict[str, Any]]]` +homeassistant/components/system_bridge/data.py:24:20: error[invalid-assignment] Object of type `None` is not assignable to `Disks` +homeassistant/components/system_bridge/data.py:28:22: error[invalid-assignment] Object of type `None` is not assignable to `Memory` +homeassistant/components/system_bridge/data.py:30:22: error[invalid-assignment] Object of type `None` is not assignable to `System` +homeassistant/components/systemmonitor/coordinator.py:174:13: error[invalid-argument-type] Argument is incorrect: Expected `tuple[int | float, int | float, int | float]`, found `tuple[None, None, None] | tuple[int | float, int | float, int | float]` +homeassistant/components/tado/climate.py:340:31: error[unresolved-attribute] Module `PyTado` has no member `TadoZone` +homeassistant/components/tado/climate.py:813:20: error[unsupported-operator] Operator `in` is not supported for types `None` and `str`, in comparing `str | None` with `@Todo | str | list[Unknown]` +homeassistant/components/tado/coordinator.py:315:33: error[invalid-argument-type] Argument to bound method `_update_zone` is incorrect: Expected `int`, found `Unknown | None` +homeassistant/components/tami4/sensor.py:89:42: error[invalid-argument-type] Argument to function `__init__` is incorrect: Expected `DataUpdateCoordinator[dict[str, Any]]`, found `Tami4EdgeCoordinator` +homeassistant/components/tank_utility/sensor.py:9:6: error[unresolved-import] Cannot resolve imported module `tank_utility` +homeassistant/components/tank_utility/sensor.py:62:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/tank_utility/sensor.py:123:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/tapsaff/binary_sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `tapsaff` +homeassistant/components/tasmota/camera.py:103:24: error[unresolved-attribute] Object of type `object` has no attribute `Request` +homeassistant/components/tasmota/camera.py:104:10: error[unresolved-attribute] Object of type `object` has no attribute `StreamResponse` +homeassistant/components/tasmota/device_automation.py:61:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventDeviceRegistryUpdatedData]` +homeassistant/components/tasmota/device_automation.py:62:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def async_device_removed(event: Event[EventDeviceRegistryUpdatedData]) -> CoroutineType[Any, Any, None]` +homeassistant/components/tasmota/device_automation.py:63:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _async_device_removed_filter(event_data: EventDeviceRegistryUpdatedData) -> bool` +homeassistant/components/tautulli/entity.py:35:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, int | None | str]]` +homeassistant/components/tautulli/sensor.py:42:17: error[not-iterable] Object of type `PyTautulliApiHomeStats` is not iterable +homeassistant/components/tautulli/sensor.py:252:13: error[invalid-argument-type] Argument is incorrect: Expected `PyTautulliApiHomeStats`, found `Unknown | list[PyTautulliApiHomeStats] | None` +homeassistant/components/tautulli/sensor.py:253:13: error[invalid-argument-type] Argument is incorrect: Expected `PyTautulliApiActivity`, found `Unknown | PyTautulliApiActivity | None` +homeassistant/components/tautulli/sensor.py:278:28: error[not-iterable] Object of type `Unknown | list[PyTautulliApiSession] | None` may not be iterable +homeassistant/components/technove/number.py:46:48: error[invalid-argument-type] Argument to bound method `set_max_current` is incorrect: Expected `int`, found `int | float` +homeassistant/components/technove/number.py:93:60: error[invalid-argument-type] Argument is incorrect: Expected `TechnoVE`, found `Unknown | Station` +homeassistant/components/technove/number.py:98:56: error[invalid-argument-type] Argument is incorrect: Expected `TechnoVE`, found `Unknown | Station` +homeassistant/components/ted5000/sensor.py:132:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/telegram_bot/bot.py:455:50: warning[possibly-missing-attribute] Attribute `split` may be missing on object of type `@Todo | None` +homeassistant/components/telegram_bot/bot.py:491:47: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__name__` +homeassistant/components/tellstick/__init__.py:5:6: error[unresolved-import] Cannot resolve imported module `tellcore.constants` +homeassistant/components/tellstick/__init__.py:6:6: error[unresolved-import] Cannot resolve imported module `tellcore.telldus` +homeassistant/components/tellstick/__init__.py:7:6: error[unresolved-import] Cannot resolve imported module `tellcorenet` +homeassistant/components/tellstick/entity.py:6:6: error[unresolved-import] Cannot resolve imported module `tellcore.constants` +homeassistant/components/tellstick/entity.py:7:6: error[unresolved-import] Cannot resolve imported module `tellcore.library` +homeassistant/components/tellstick/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `tellcore` +homeassistant/components/tellstick/sensor.py:9:8: error[unresolved-import] Cannot resolve imported module `tellcore.constants` +homeassistant/components/template/binary_sensor.py:207:47: error[invalid-argument-type] Argument to bound method `add_template_attribute` is incorrect: Expected `Template`, found `Template | None` +homeassistant/components/template/binary_sensor.py:257:17: warning[possibly-missing-attribute] Attribute `total_seconds` may be missing on object of type `Unknown | None` +homeassistant/components/template/cover.py:314:13: error[invalid-assignment] Object of type `float` is not assignable to attribute `_position` of type `int | None` +homeassistant/components/template/cover.py:336:13: error[invalid-assignment] Object of type `float` is not assignable to attribute `_tilt_value` of type `int | None` +homeassistant/components/template/cover.py:463:13: error[unsupported-operator] Operator `|=` is unsupported between objects of type `None` and `int` +homeassistant/components/template/cover.py:522:13: error[unsupported-operator] Operator `|=` is unsupported between objects of type `None` and `int` +homeassistant/components/template/light.py:360:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int, int] | None`, found `Unknown | None | tuple[None | Unknown, None | Unknown, None | Unknown]` +homeassistant/components/template/light.py:365:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int, int, int] | None`, found `Unknown | None | tuple[None | Unknown, None | Unknown, None | Unknown, None | Unknown]` +homeassistant/components/template/light.py:370:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int, int, int, int] | None`, found `Unknown | None | tuple[None | Unknown, None | Unknown, None | Unknown, None | Unknown, None | Unknown]` +homeassistant/components/template/light.py:666:12: error[unsupported-operator] Operator `not in` is not supported for types `Unknown` and `None`, in comparing `Unknown` with `Unknown | None` +homeassistant/components/template/lock.py:311:45: warning[possibly-missing-attribute] Attribute `template` may be missing on object of type `Unknown | None` +homeassistant/components/template/sensor.py:242:35: error[invalid-argument-type] Argument to bound method `add_template_attribute` is incorrect: Expected `Template`, found `Template | None` +homeassistant/components/template/template_entity.py:141:28: error[invalid-argument-type] Argument to bound method `_default_update` is incorrect: Expected `str | TemplateError`, found `None` +homeassistant/components/template/template_entity.py:272:20: error[invalid-return-type] Return type does not match returned value: expected `dict[str, Any]`, found `(ScriptVariables & Top[dict[Unknown, Unknown]]) | dict[Unknown, Unknown]` +homeassistant/components/template/weather.py:449:41: error[invalid-argument-type] Argument to bound method `async_update_listeners` is incorrect: Expected `Iterable[Literal["daily", "hourly", "twice_daily"]] | None`, found `list[Unknown | str]` +homeassistant/components/tesla_fleet/climate.py:49:60: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Scope`, found `list[Scope]` +homeassistant/components/tesla_fleet/climate.py:55:30: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Scope`, found `list[Scope]` +homeassistant/components/tesla_fleet/climate.py:125:38: warning[possibly-missing-attribute] Attribute `auto_conditioning_start` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/climate.py:134:38: warning[possibly-missing-attribute] Attribute `auto_conditioning_stop` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/climate.py:137:34: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/tesla_fleet/climate.py:152:13: warning[possibly-missing-attribute] Attribute `set_temps` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/climate.py:176:13: warning[possibly-missing-attribute] Attribute `set_climate_keeper_mode` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/climate.py:177:37: warning[possibly-missing-attribute] Attribute `index` may be missing on object of type `Unknown | list[Unknown | str] | list[str] | None` +homeassistant/components/tesla_fleet/climate.py:181:27: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/tesla_fleet/climate.py:295:38: warning[possibly-missing-attribute] Attribute `set_cop_temp` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/climate.py:312:17: warning[possibly-missing-attribute] Attribute `set_cabin_overheat_protection` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/climate.py:316:17: warning[possibly-missing-attribute] Attribute `set_cabin_overheat_protection` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/climate.py:320:17: warning[possibly-missing-attribute] Attribute `set_cabin_overheat_protection` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/coordinator.py:184:17: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[Unknown, Unknown] | str | None` +homeassistant/components/tesla_fleet/coordinator.py:186:16: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["after"]` with `dict[Unknown, Unknown] | str | None` +homeassistant/components/tesla_fleet/coordinator.py:187:62: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["after"]` on object of type `str` +homeassistant/components/tesla_fleet/coordinator.py:187:62: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/tesla_fleet/coordinator.py:246:17: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[Unknown, Unknown] | str | None` +homeassistant/components/tesla_fleet/coordinator.py:248:16: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["after"]` with `dict[Unknown, Unknown] | str | None` +homeassistant/components/tesla_fleet/coordinator.py:249:62: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["after"]` on object of type `str` +homeassistant/components/tesla_fleet/coordinator.py:249:62: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/tesla_fleet/coordinator.py:309:17: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[Unknown, Unknown] | str | None` +homeassistant/components/tesla_fleet/coordinator.py:311:16: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal["after"]` with `dict[Unknown, Unknown] | str | None` +homeassistant/components/tesla_fleet/coordinator.py:312:62: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["after"]` on object of type `str` +homeassistant/components/tesla_fleet/coordinator.py:312:62: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/tesla_fleet/cover.py:84:13: warning[possibly-missing-attribute] Attribute `window_control` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/cover.py:93:13: warning[possibly-missing-attribute] Attribute `window_control` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/cover.py:124:38: warning[possibly-missing-attribute] Attribute `charge_port_door_open` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/cover.py:131:38: warning[possibly-missing-attribute] Attribute `charge_port_door_close` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/cover.py:157:38: warning[possibly-missing-attribute] Attribute `actuate_trunk` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/cover.py:186:42: warning[possibly-missing-attribute] Attribute `actuate_trunk` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/cover.py:194:42: warning[possibly-missing-attribute] Attribute `actuate_trunk` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/cover.py:231:38: warning[possibly-missing-attribute] Attribute `sun_roof_control` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/cover.py:238:38: warning[possibly-missing-attribute] Attribute `sun_roof_control` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/cover.py:245:38: warning[possibly-missing-attribute] Attribute `sun_roof_control` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/lock.py:58:38: warning[possibly-missing-attribute] Attribute `door_lock` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/lock.py:66:38: warning[possibly-missing-attribute] Attribute `door_unlock` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/lock.py:101:38: warning[possibly-missing-attribute] Attribute `charge_port_door_open` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/media_player.py:120:13: warning[possibly-missing-attribute] Attribute `adjust_volume` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/media_player.py:129:42: warning[possibly-missing-attribute] Attribute `media_toggle_playback` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/media_player.py:137:42: warning[possibly-missing-attribute] Attribute `media_toggle_playback` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/media_player.py:144:38: warning[possibly-missing-attribute] Attribute `media_next_track` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/media_player.py:149:38: warning[possibly-missing-attribute] Attribute `media_prev_track` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/number.py:169:67: error[invalid-argument-type] Argument is incorrect: Expected `VehicleFleet`, found `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/number.py:204:59: error[invalid-argument-type] Argument is incorrect: Expected `EnergySite`, found `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/select.py:152:42: warning[possibly-missing-attribute] Attribute `auto_conditioning_start` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/select.py:154:13: warning[possibly-missing-attribute] Attribute `remote_seat_heater_request` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/select.py:197:42: warning[possibly-missing-attribute] Attribute `auto_conditioning_start` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/select.py:199:13: warning[possibly-missing-attribute] Attribute `remote_steering_wheel_heat_level_request` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/select.py:230:30: warning[possibly-missing-attribute] Attribute `operation` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/select.py:261:13: warning[possibly-missing-attribute] Attribute `grid_import_export` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/switch.py:203:13: warning[possibly-missing-attribute] Attribute `grid_import_export` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/switch.py:214:13: warning[possibly-missing-attribute] Attribute `grid_import_export` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/switch.py:244:30: warning[possibly-missing-attribute] Attribute `storm_mode` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_fleet/switch.py:251:30: warning[possibly-missing-attribute] Attribute `storm_mode` may be missing on object of type `Unknown | VehicleFleet | EnergySite` +homeassistant/components/tesla_wall_connector/__init__.py:85:21: error[unresolved-attribute] Object of type `dict[Unknown, Unknown]` has no attribute `part_number` +homeassistant/components/tesla_wall_connector/__init__.py:86:26: error[unresolved-attribute] Object of type `dict[Unknown, Unknown]` has no attribute `firmware_version` +homeassistant/components/tesla_wall_connector/__init__.py:87:23: error[unresolved-attribute] Object of type `dict[Unknown, Unknown]` has no attribute `serial_number` +homeassistant/components/tesla_wall_connector/binary_sensor.py:80:16: error[unresolved-attribute] Object of type `BinarySensorEntityDescription` has no attribute `value_fn` +homeassistant/components/tesla_wall_connector/config_flow.py:36:38: error[unresolved-attribute] Object of type `dict[Unknown, Unknown]` has no attribute `serial_number` +homeassistant/components/tesla_wall_connector/config_flow.py:72:30: error[unresolved-attribute] Object of type `dict[Unknown, Unknown]` has no attribute `serial_number` +homeassistant/components/teslemetry/__init__.py:112:19: warning[possibly-missing-attribute] Attribute `create` may be missing on object of type `Unknown | Vehicles` +homeassistant/components/teslemetry/climate.py:117:34: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/teslemetry/climate.py:118:31: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/teslemetry/climate.py:154:37: warning[possibly-missing-attribute] Attribute `index` may be missing on object of type `Unknown | list[Unknown | str] | list[str] | None` +homeassistant/components/teslemetry/climate.py:158:27: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/teslemetry/climate.py:175:24: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/teslemetry/services.py:163:76: error[invalid-argument-type] Argument to bound method `set_scheduled_charging` is incorrect: Expected `int`, found `None | int` +homeassistant/components/teslemetry/services.py:223:17: error[invalid-argument-type] Argument to bound method `set_scheduled_departure` is incorrect: Expected `int`, found `None | int` +homeassistant/components/teslemetry/services.py:226:17: error[invalid-argument-type] Argument to bound method `set_scheduled_departure` is incorrect: Expected `int`, found `None | int` +homeassistant/components/teslemetry/services.py:256:17: error[invalid-argument-type] Argument to bound method `set_valet_mode` is incorrect: Expected `bool`, found `Unknown | None` +homeassistant/components/teslemetry/services.py:282:50: error[invalid-argument-type] Argument to bound method `speed_limit_activate` is incorrect: Expected `str | int`, found `Unknown | None` +homeassistant/components/teslemetry/services.py:286:52: error[invalid-argument-type] Argument to bound method `speed_limit_deactivate` is incorrect: Expected `str | int`, found `Unknown | None` +homeassistant/components/teslemetry/services.py:309:43: error[invalid-argument-type] Argument to bound method `time_of_use_settings` is incorrect: Expected `dict[str, Any]`, found `Unknown | None` +homeassistant/components/tessie/climate.py:135:43: warning[possibly-missing-attribute] Attribute `index` may be missing on object of type `list[Unknown] | list[str] | None` +homeassistant/components/tessie/climate.py:144:32: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/tfiac/climate.py:10:6: error[unresolved-import] Cannot resolve imported module `pytfiac` +homeassistant/components/thermopro/button.py:91:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `str | None` +homeassistant/components/thermoworks_smoke/sensor.py:13:8: error[unresolved-import] Cannot resolve imported module `thermoworks_smoke` +homeassistant/components/thingspeak/__init__.py:6:8: error[unresolved-import] Cannot resolve imported module `thingspeak` +homeassistant/components/thinkingcleaner/sensor.py:7:6: error[unresolved-import] Cannot resolve imported module `pythinkingcleaner` +homeassistant/components/thinkingcleaner/switch.py:9:6: error[unresolved-import] Cannot resolve imported module `pythinkingcleaner` +homeassistant/components/thread/diagnostics.py:32:26: error[unresolved-import] Module `pyroute2` has no member `NDB` +homeassistant/components/thread/diagnostics.py:93:9: error[invalid-assignment] Invalid subscript assignment with key of type `Unknown` and value of type `dict[Unknown | str, Unknown | bool]` on object of type `dict[str, Route]` +homeassistant/components/thread/diagnostics.py:106:40: error[invalid-assignment] Object of type `dict[Unknown, dict[Unknown | str, Unknown] | Unknown]` is not assignable to `dict[str, Neighbour]` +homeassistant/components/thread/diagnostics.py:120:26: error[unresolved-import] Module `pyroute2` has no member `NDB` +homeassistant/components/thread/diagnostics.py:179:18: error[invalid-assignment] Invalid subscript assignment with key of type `str & ~AlwaysFalsy` and value of type `dict[Unknown | str, Unknown | str | (list[str] & ~AlwaysFalsy) | ... omitted 3 union elements]` on object of type `dict[str, Router]` +homeassistant/components/thread/diagnostics.py:195:21: warning[possibly-missing-attribute] Attribute `update` may be missing on object of type `Unknown | str | (list[str] & ~AlwaysFalsy) | ... omitted 3 union elements` +homeassistant/components/thread/diagnostics.py:198:21: error[invalid-assignment] Cannot assign to a subscript on an object of type `str` +homeassistant/components/thread/diagnostics.py:198:21: error[invalid-assignment] Invalid subscript assignment with key of type `str` and value of type `Unknown` on object of type `list[str]` +homeassistant/components/thread/diagnostics.py:198:21: error[invalid-assignment] Invalid subscript assignment with key of type `str` and value of type `Unknown` on object of type `list[Unknown]` +homeassistant/components/thread/diagnostics.py:198:21: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/components/thread/diagnostics.py:200:36: warning[possibly-missing-attribute] Attribute `keys` may be missing on object of type `Unknown | str | (list[str] & ~AlwaysFalsy) | ... omitted 3 union elements` +homeassistant/components/tikteck/light.py:8:8: error[unresolved-import] Cannot resolve imported module `tikteck` +homeassistant/components/tikteck/light.py:73:9: error[invalid-assignment] Object of type `list[Unknown | int]` is not assignable to attribute `_attr_hs_color` of type `tuple[int | float, int | float] | None` +homeassistant/components/tmb/sensor.py:9:6: error[unresolved-import] Cannot resolve imported module `tmb` +homeassistant/components/tod/binary_sensor.py:172:28: error[invalid-argument-type] Argument to function `get_astral_event_date` is incorrect: Expected `str`, found `Unknown | time` +homeassistant/components/tod/binary_sensor.py:173:51: error[invalid-argument-type] Argument to function `get_astral_event_next` is incorrect: Expected `str`, found `Unknown | time` +homeassistant/components/tod/binary_sensor.py:188:28: error[invalid-argument-type] Argument to function `get_astral_event_date` is incorrect: Expected `str`, found `Unknown | time` +homeassistant/components/tod/binary_sensor.py:189:51: error[invalid-argument-type] Argument to function `get_astral_event_next` is incorrect: Expected `str`, found `Unknown | time` +homeassistant/components/tod/binary_sensor.py:194:32: error[invalid-argument-type] Argument to function `get_astral_event_next` is incorrect: Expected `str`, found `Unknown | time` +homeassistant/components/tod/binary_sensor.py:245:28: error[invalid-argument-type] Argument to function `get_astral_event_next` is incorrect: Expected `str`, found `Unknown | time` +homeassistant/components/tod/binary_sensor.py:256:28: error[invalid-argument-type] Argument to function `get_astral_event_next` is incorrect: Expected `str`, found `Unknown | time` +homeassistant/components/todoist/calendar.py:570:21: error[unsupported-operator] Operator `>` is not supported for types `None` and `datetime`, in comparing `datetime | None` with `datetime` +homeassistant/components/todoist/calendar.py:576:35: warning[possibly-missing-attribute] Attribute `date` may be missing on object of type `datetime | None` +homeassistant/components/todoist/calendar.py:579:20: error[unsupported-operator] Operator `<=` is not supported for types `None` and `datetime`, in comparing `datetime | None` with `datetime` +homeassistant/components/todoist/calendar.py:647:16: warning[possibly-missing-attribute] Attribute `date` may be missing on object of type `datetime | None` +homeassistant/components/todoist/calendar.py:647:45: warning[possibly-missing-attribute] Attribute `date` may be missing on object of type `datetime | None` +homeassistant/components/todoist/calendar.py:651:16: warning[possibly-missing-attribute] Attribute `date` may be missing on object of type `datetime | None` +homeassistant/components/todoist/calendar.py:651:45: warning[possibly-missing-attribute] Attribute `date` may be missing on object of type `datetime | None` +homeassistant/components/todoist/calendar.py:662:44: error[unsupported-operator] Operator `<` is not supported for types `datetime` and `None`, in comparing `datetime | None` with `datetime | None` +homeassistant/components/tomato/device_tracker.py:69:18: error[unresolved-attribute] Module `requests` has no member `auth` +homeassistant/components/tomato/device_tracker.py:125:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/tomato/device_tracker.py:133:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/tomorrowio/sensor.py:349:18: error[unsupported-operator] Operator `*` is unsupported between objects of type `float` and `(((int | float, /) -> int | float) & ~(() -> object)) | (int & ~(() -> object)) | (float & ~(() -> object))` +homeassistant/components/tomorrowio/weather.py:211:13: error[invalid-argument-type] Argument to function `_translate_condition` is incorrect: Expected `int | None`, found `int | str | float | None` +homeassistant/components/toon/__init__.py:113:9: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `set[tuple[str, str]] | None | UndefinedType`, found `set[Unknown | tuple[str, str | None, str]]` +homeassistant/components/toon/__init__.py:122:9: error[invalid-argument-type] Argument to bound method `async_get_or_create` is incorrect: Expected `tuple[str, str] | None | UndefinedType`, found `tuple[Literal["toon"], str | None]` +homeassistant/components/toon/climate.py:112:58: error[invalid-argument-type] Argument to bound method `set_current_setpoint` is incorrect: Expected `int | float`, found `Any | None` +homeassistant/components/toon/coordinator.py:153:20: error[invalid-return-type] Return type does not match returned value: expected `Status`, found `Unknown | Status | None` +homeassistant/components/toon/entity.py:26:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown | str | None]]` +homeassistant/components/toon/entity.py:28:19: warning[possibly-missing-attribute] Attribute `rpartition` may be missing on object of type `Unknown | str | None` +homeassistant/components/toon/entity.py:30:24: warning[possibly-missing-attribute] Attribute `rpartition` may be missing on object of type `Unknown | str | None` +homeassistant/components/toon/entity.py:43:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown | str | None, str]]` +homeassistant/components/toon/entity.py:46:24: error[invalid-argument-type] Invalid argument to key "via_device" with declared type `tuple[str, str]` on TypedDict `DeviceInfo`: value of type `tuple[Literal["toon"], Unknown | str | None, Literal["meter_adapter"]]` +homeassistant/components/toon/entity.py:63:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown | str | None, str]]` +homeassistant/components/toon/entity.py:66:24: error[invalid-argument-type] Invalid argument to key "via_device" with declared type `tuple[str, str]` on TypedDict `DeviceInfo`: value of type `tuple[Literal["toon"], Unknown | str | None, Literal["electricity"]]` +homeassistant/components/toon/entity.py:83:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown | str | None, str]]` +homeassistant/components/toon/entity.py:86:24: error[invalid-argument-type] Invalid argument to key "via_device" with declared type `tuple[str, str]` on TypedDict `DeviceInfo`: value of type `tuple[Literal["toon"], Unknown | str | None, Literal["electricity"]]` +homeassistant/components/toon/entity.py:103:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown | str | None, str]]` +homeassistant/components/toon/entity.py:106:24: error[invalid-argument-type] Invalid argument to key "via_device" with declared type `tuple[str, str]` on TypedDict `DeviceInfo`: value of type `tuple[Literal["toon"], Unknown | str | None, Literal["meter_adapter"]]` +homeassistant/components/toon/entity.py:124:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown | str | None, str]]` +homeassistant/components/toon/entity.py:131:24: error[invalid-argument-type] Invalid argument to key "via_device" with declared type `tuple[str, str]` on TypedDict `DeviceInfo`: value of type `tuple[Literal["toon"], Unknown | str | None]` +homeassistant/components/toon/entity.py:144:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown | str | None, str]]` +homeassistant/components/toon/entity.py:147:24: error[invalid-argument-type] Invalid argument to key "via_device" with declared type `tuple[str, str]` on TypedDict `DeviceInfo`: value of type `tuple[Literal["toon"], Unknown | str | None, Literal["boiler_module"]]` +homeassistant/components/totalconnect/alarm_control_panel.py:139:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[str, str] | None`, found `dict[Unknown | str, Unknown | None]` +homeassistant/components/totalconnect/alarm_control_panel.py:162:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[str, str] | None`, found `dict[Unknown | str, Unknown | None]` +homeassistant/components/totalconnect/alarm_control_panel.py:185:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[str, str] | None`, found `dict[Unknown | str, Unknown | None]` +homeassistant/components/totalconnect/alarm_control_panel.py:208:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[str, str] | None`, found `dict[Unknown | str, Unknown | None]` +homeassistant/components/totalconnect/alarm_control_panel.py:230:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[str, str] | None`, found `dict[Unknown | str, Unknown | None]` +homeassistant/components/totalconnect/alarm_control_panel.py:252:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[str, str] | None`, found `dict[Unknown | str, Unknown | None]` +homeassistant/components/totalconnect/binary_sensor.py:141:64: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | int` +homeassistant/components/totalconnect/binary_sensor.py:151:25: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | int` +homeassistant/components/totalconnect/button.py:55:61: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | int` +homeassistant/components/totalconnect/diagnostics.py:40:19: warning[possibly-missing-attribute] Attribute `_master_user` may be missing on object of type `Unknown | TotalConnectUser | None` +homeassistant/components/totalconnect/diagnostics.py:41:23: warning[possibly-missing-attribute] Attribute `_user_admin` may be missing on object of type `Unknown | TotalConnectUser | None` +homeassistant/components/totalconnect/diagnostics.py:42:25: warning[possibly-missing-attribute] Attribute `_config_admin` may be missing on object of type `Unknown | TotalConnectUser | None` +homeassistant/components/totalconnect/diagnostics.py:43:29: warning[possibly-missing-attribute] Attribute `security_problem` may be missing on object of type `Unknown | TotalConnectUser | None` +homeassistant/components/totalconnect/diagnostics.py:44:21: warning[possibly-missing-attribute] Attribute `_features` may be missing on object of type `Unknown | TotalConnectUser | None` +homeassistant/components/totalconnect/entity.py:32:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown | None]]` +homeassistant/components/touchline/climate.py:7:6: error[unresolved-import] Cannot resolve imported module `pytouchline_extended` +homeassistant/components/touchline_sl/climate.py:102:38: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `GlobalScheduleModel | LocalScheduleModel | None` +homeassistant/components/tplink/camera.py:228:17: error[invalid-argument-type] Argument to function `async_aiohttp_proxy_stream` is incorrect: Expected `StreamReader`, found `StreamReader` +homeassistant/components/tplink/entity.py:132:29: error[unresolved-attribute] Object of type `(...) -> Awaitable[None]` has no attribute `__name__` +homeassistant/components/tplink/entity.py:141:29: error[unresolved-attribute] Object of type `(...) -> Awaitable[None]` has no attribute `__name__` +homeassistant/components/tplink/entity.py:150:29: error[unresolved-attribute] Object of type `(...) -> Awaitable[None]` has no attribute `__name__` +homeassistant/components/tplink/entity.py:391:17: error[invalid-argument-type] Argument to function `replace` is incorrect: Argument type `_D@_description_for_feature & ~AlwaysFalsy` does not satisfy upper bound `DataclassInstance` of type variable `_DataclassT` +homeassistant/components/tplink_lte/__init__.py:11:8: error[unresolved-import] Cannot resolve imported module `tp_connected` +homeassistant/components/tplink_lte/notify.py:9:8: error[unresolved-import] Cannot resolve imported module `tp_connected` +homeassistant/components/traccar/device_tracker.py:129:9: error[invalid-assignment] Object of type `DeviceInfo` is not assignable to attribute `_attr_device_info` of type `None` +homeassistant/components/traccar/device_tracker.py:176:9: error[call-non-callable] Object of type `None` is not callable +homeassistant/components/traccar_server/coordinator.py:134:13: error[invalid-assignment] Invalid subscript assignment with key of type `Unknown` and value of type `dict[Unknown | str, Unknown | (DeviceModel & ~None) | GeofenceModel | None | dict[str, Any]]` on object of type `dict[int, TraccarServerCoordinatorDataDevice]` +homeassistant/components/traccar_server/helpers.py:37:23: error[invalid-key] Unknown key "geofenceIds" for TypedDict `DeviceModel`: Unknown key "geofenceIds" +homeassistant/components/tractive/__init__.py:62:14: error[unresolved-attribute] Module `aiotractive` has no member `tracker` +homeassistant/components/tractive/__init__.py:92:12: error[unresolved-attribute] Module `aiotractive` has no member `exceptions` +homeassistant/components/tractive/__init__.py:95:12: error[unresolved-attribute] Module `aiotractive` has no member `exceptions` +homeassistant/components/tractive/__init__.py:106:12: error[unresolved-attribute] Module `aiotractive` has no member `exceptions` +homeassistant/components/tractive/__init__.py:130:16: error[unresolved-attribute] Module `aiotractive` has no member `trackable_object` +homeassistant/components/tractive/__init__.py:199:15: error[unresolved-attribute] Module `aiotractive` has no member `trackable_object` +homeassistant/components/tractive/__init__.py:202:18: error[unresolved-attribute] Module `aiotractive` has no member `trackable_object` +homeassistant/components/tractive/__init__.py:206:43: error[unresolved-attribute] Module `aiotractive` has no member `tracker` +homeassistant/components/tractive/__init__.py:248:20: error[unresolved-attribute] Module `aiotractive` has no member `exceptions` +homeassistant/components/tractive/__init__.py:259:20: error[unresolved-attribute] Module `aiotractive` has no member `exceptions` +homeassistant/components/tractive/config_flow.py:32:14: error[unresolved-attribute] Module `aiotractive` has no member `api` +homeassistant/components/tractive/config_flow.py:35:12: error[unresolved-attribute] Module `aiotractive` has no member `exceptions` +homeassistant/components/tradfri/__init__.py:116:9: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | Gateway | (bound method APIFactory.request(api_commands, timeout=None) -> Unknown) | list[Unknown]` +homeassistant/components/tradfri/light.py:240:29: error[unsupported-operator] Operator `+` is unsupported between objects of type `Unknown | None` and `None | Unknown` +homeassistant/components/travisci/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `travispy` +homeassistant/components/travisci/sensor.py:9:6: error[unresolved-import] Cannot resolve imported module `travispy.errors` +homeassistant/components/tts/__init__.py:292:53: error[invalid-argument-type] Argument expression after ** must be a mapping type: Found `MediaSourceOptions | str` +homeassistant/components/tts/__init__.py:292:53: error[invalid-argument-type] Argument expression after ** must be a mapping type: Found `MediaSourceOptions | str` +homeassistant/components/tts/__init__.py:292:62: error[invalid-key] Unknown key "options" for TypedDict `ParsedMediaSourceStreamId`: Unknown key "options" +homeassistant/components/tts/__init__.py:293:41: error[invalid-key] Unknown key "message" for TypedDict `ParsedMediaSourceStreamId`: Unknown key "message" +homeassistant/components/tts/__init__.py:355:15: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/tts/__init__.py:356:16: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/tts/__init__.py:357:16: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/tts/__init__.py:371:41: error[invalid-argument-type] Argument to bound method `write` is incorrect: Expected `bytes | bytearray | memoryview[int]`, found `object` +homeassistant/components/tts/media_source.py:98:16: error[invalid-return-type] Return type does not match returned value: expected `ParsedMediaSourceId | ParsedMediaSourceStreamId`, found `dict[Unknown | str, Unknown]` +homeassistant/components/tts/media_source.py:122:12: error[invalid-return-type] Return type does not match returned value: expected `ParsedMediaSourceId | ParsedMediaSourceStreamId`, found `dict[Unknown | str, Unknown | MediaSourceOptions]` +homeassistant/components/tts/media_source.py:145:61: error[invalid-argument-type] Argument expression after ** must be a mapping type: Found `MediaSourceOptions | str` +homeassistant/components/tts/media_source.py:145:61: error[invalid-argument-type] Argument expression after ** must be a mapping type: Found `MediaSourceOptions | str` +homeassistant/components/tts/media_source.py:145:70: error[invalid-key] Unknown key "options" for TypedDict `ParsedMediaSourceStreamId`: Unknown key "options" +homeassistant/components/tts/media_source.py:146:49: error[invalid-key] Unknown key "message" for TypedDict `ParsedMediaSourceStreamId`: Unknown key "message" +homeassistant/components/tuya/alarm_control_panel.py:120:42: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceCategory`, found `str` +homeassistant/components/tuya/binary_sensor.py:427:51: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceCategory`, found `str` +homeassistant/components/tuya/button.py:82:44: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceCategory`, found `str` +homeassistant/components/tuya/climate.py:108:25: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[DeviceCategory, TuyaClimateEntityDescription].__getitem__(key: DeviceCategory, /) -> TuyaClimateEntityDescription` cannot be called with key of type `str` on object of type `dict[DeviceCategory, TuyaClimateEntityDescription]` +homeassistant/components/tuya/cover.py:209:43: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceCategory`, found `str` +homeassistant/components/tuya/diagnostics.py:50:8: warning[possibly-missing-attribute] Attribute `client` may be missing on object of type `Unknown | None | SharingMQ` +homeassistant/components/tuya/diagnostics.py:51:26: warning[possibly-missing-attribute] Attribute `client` may be missing on object of type `Unknown | None | SharingMQ` +homeassistant/components/tuya/diagnostics.py:106:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `str` +homeassistant/components/tuya/diagnostics.py:106:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `bool` +homeassistant/components/tuya/diagnostics.py:106:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/components/tuya/diagnostics.py:109:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `str` +homeassistant/components/tuya/diagnostics.py:109:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `bool` +homeassistant/components/tuya/diagnostics.py:109:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/components/tuya/diagnostics.py:113:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `str` +homeassistant/components/tuya/diagnostics.py:113:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `bool` +homeassistant/components/tuya/diagnostics.py:113:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/components/tuya/diagnostics.py:120:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `str` +homeassistant/components/tuya/diagnostics.py:120:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `bool` +homeassistant/components/tuya/diagnostics.py:120:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/components/tuya/diagnostics.py:160:13: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | str | None | bool | list[Unknown]` +homeassistant/components/tuya/event.py:98:43: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceCategory`, found `str` +homeassistant/components/tuya/humidifier.py:95:48: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceCategory`, found `str` +homeassistant/components/tuya/light.py:522:43: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceCategory`, found `str` +homeassistant/components/tuya/models.py:431:33: error[invalid-argument-type] Argument to bound method `from_json` is incorrect: Expected `str`, found `dict[str, Any] | str` +homeassistant/components/tuya/number.py:463:44: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceCategory`, found `str` +homeassistant/components/tuya/scene.py:61:41: error[invalid-argument-type] Argument to bound method `trigger_scene` is incorrect: Expected `str`, found `Unknown | int` +homeassistant/components/tuya/select.py:366:44: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceCategory`, found `str` +homeassistant/components/tuya/sensor.py:1750:44: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceCategory`, found `str` +homeassistant/components/tuya/siren.py:66:43: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceCategory`, found `str` +homeassistant/components/tuya/switch.py:947:45: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceCategory`, found `str` +homeassistant/components/tuya/valve.py:95:43: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `DeviceCategory`, found `str` +homeassistant/components/twilio_call/notify.py:63:28: error[unresolved-attribute] Module `urllib` has no member `parse` +homeassistant/components/twinkly/coordinator.py:97:13: error[invalid-argument-type] Argument is incorrect: Expected `bool`, found `Unknown | bool | None` +homeassistant/components/twitter/notify.py:13:6: error[unresolved-import] Cannot resolve imported module `TwitterAPI` +homeassistant/components/ubus/device_tracker.py:8:6: error[unresolved-import] Cannot resolve imported module `openwrt.ubus` +homeassistant/components/ukraine_alarm/config_flow.py:68:27: error[non-subscriptable] Cannot subscript object of type `ClientResponse` with no `__getitem__` method +homeassistant/components/ukraine_alarm/config_flow.py:103:46: error[invalid-argument-type] Argument to function `_find` is incorrect: Expected `list[dict[str, Any]]`, found `@Todo | list[dict[str, Any]] | None` +homeassistant/components/ukraine_alarm/config_flow.py:120:45: error[invalid-argument-type] Argument to function `_make_regions_object` is incorrect: Expected `list[dict[str, Any]]`, found `@Todo | list[dict[str, Any]] | None` +homeassistant/components/ukraine_alarm/coordinator.py:56:22: error[non-subscriptable] Cannot subscript object of type `ClientResponse` with no `__getitem__` method +homeassistant/components/unifi_direct/device_tracker.py:8:6: error[unresolved-import] Cannot resolve imported module `unifi_ap` +homeassistant/components/unifiled/light.py:8:6: error[unresolved-import] Cannot resolve imported module `unifiled` +homeassistant/components/unifiprotect/button.py:89:9: error[invalid-argument-type] Argument is incorrect: Expected `ButtonDeviceClass | None`, found `Literal["unifiprotect__chime_button"]` +homeassistant/components/unifiprotect/entity.py:202:17: error[invalid-assignment] Object of type `((Never, /) -> bool) | None` is not assignable to attribute `_async_get_ufp_enabled` of type `((ProtectAdoptableDeviceModel, /) -> bool) | None` +homeassistant/components/unifiprotect/migrate.py:46:36: error[invalid-assignment] Object of type `dict[str | Unknown, dict[Unknown | str, Unknown | dict[Unknown, Unknown]] | Unknown]` is not assignable to `dict[str, EntityUsage]` +homeassistant/components/upb/__init__.py:55:9: warning[possibly-missing-attribute] Attribute `add_callback` may be missing on object of type `Unknown | Element[Unknown] | None` +homeassistant/components/upc_connect/device_tracker.py:7:6: error[unresolved-import] Cannot resolve imported module `connect_box` +homeassistant/components/upc_connect/device_tracker.py:8:6: error[unresolved-import] Cannot resolve imported module `connect_box.exceptions` +homeassistant/components/upcloud/entity.py:75:13: error[unresolved-attribute] Object of type `Server` has no attribute `state` +homeassistant/components/upcloud/entity.py:75:33: error[unresolved-attribute] Object of type `Server` has no attribute `state` +homeassistant/components/usage_prediction/__init__.py:64:16: error[invalid-return-type] Return type does not match returned value: expected `EntityUsagePredictions`, found `object` +homeassistant/components/usgs_earthquakes_feed/geo_location.py:185:16: error[invalid-return-type] Return type does not match returned value: expected `UsgsEarthquakeHazardsProgramFeedEntry | None`, found `Unknown | None | FeedEntry` +homeassistant/components/usgs_earthquakes_feed/geo_location.py:264:31: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/usgs_earthquakes_feed/geo_location.py:265:32: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/utility_meter/sensor.py:383:9: error[invalid-assignment] Object of type `Unknown | None` is not assignable to attribute `entity_id` of type `str` +homeassistant/components/vasttrafik/sensor.py:8:8: error[unresolved-import] Cannot resolve imported module `vasttrafik` +homeassistant/components/vegehub/__init__.py:59:61: error[invalid-argument-type] Argument to function `get_webhook_handler` is incorrect: Expected `VegeHubCoordinator`, found `VegeHub` +homeassistant/components/vegehub/sensor.py:47:21: error[unresolved-attribute] Object of type `VegeHub` has no attribute `vegehub` +homeassistant/components/vegehub/sensor.py:50:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `VegeHubCoordinator`, found `VegeHub` +homeassistant/components/vegehub/sensor.py:56:12: error[unresolved-attribute] Object of type `VegeHub` has no attribute `vegehub` +homeassistant/components/vegehub/sensor.py:60:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `VegeHubCoordinator`, found `VegeHub` +homeassistant/components/vegehub/switch.py:37:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `VegeHubCoordinator`, found `VegeHub` +homeassistant/components/vegehub/switch.py:40:24: error[unresolved-attribute] Object of type `VegeHub` has no attribute `vegehub` +homeassistant/components/velbus/entity.py:84:38: error[unresolved-attribute] Object of type `(...) -> Awaitable[None]` has no attribute `__name__` +homeassistant/components/venstar/binary_sensor.py:46:22: error[not-iterable] Object of type `Unknown | None` may not be iterable +homeassistant/components/venstar/config_flow.py:46:12: error[invalid-return-type] Return type does not match returned value: expected `str`, found `Unknown | None` +homeassistant/components/vera/binary_sensor.py:26:30: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `VeraBinarySensor`, found `VeraDevice` +homeassistant/components/vera/climate.py:39:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `VeraThermostat`, found `VeraDevice` +homeassistant/components/vera/climate.py:114:16: error[invalid-return-type] Return type does not match returned value: expected `str`, found `Unknown | str | None` +homeassistant/components/vera/climate.py:124:46: error[invalid-argument-type] Argument to bound method `set_temperature` is incorrect: Expected `int | float`, found `Any | None` +homeassistant/components/vera/cover.py:28:23: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `VeraCurtain`, found `VeraDevice` +homeassistant/components/vera/cover.py:60:36: error[invalid-argument-type] Argument to bound method `set_level` is incorrect: Expected `int`, found `Any | None` +homeassistant/components/vera/light.py:35:23: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `VeraDimmer`, found `VeraDevice` +homeassistant/components/vera/light.py:74:40: error[invalid-argument-type] Argument to bound method `set_color` is incorrect: Expected `list[int]`, found `tuple[int, int, int]` +homeassistant/components/vera/lock.py:31:22: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `VeraLock`, found `VeraDevice` +homeassistant/components/vera/sensor.py:41:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `VeraSensor`, found `VeraDevice` +homeassistant/components/vera/switch.py:28:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `VeraSwitch`, found `VeraDevice` +homeassistant/components/versasense/__init__.py:5:8: error[unresolved-import] Cannot resolve imported module `pyversasense` +homeassistant/components/vesync/binary_sensor.py:69:9: error[missing-argument] No argument provided for required parameter `coordinator` of function `_setup_entities` +homeassistant/components/vesync/common.py:25:23: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `Never`, found `str` +homeassistant/components/vesync/diagnostics.py:89:9: warning[redundant-cast] Value is already of type `dict[str, Any]` +homeassistant/components/vesync/fan.py:125:17: warning[possibly-missing-attribute] Attribute `fan_levels` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/fan.py:132:20: warning[possibly-missing-attribute] Attribute `fan_levels` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/fan.py:141:33: error[not-iterable] Object of type `object` is not iterable +homeassistant/components/vesync/fan.py:196:26: warning[possibly-missing-attribute] Attribute `turn_off` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/fan.py:199:23: warning[possibly-missing-attribute] Attribute `message` may be missing on object of type `Unknown | ResponseInfo | None` +homeassistant/components/vesync/fan.py:206:26: warning[possibly-missing-attribute] Attribute `turn_on` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/fan.py:209:23: warning[possibly-missing-attribute] Attribute `message` may be missing on object of type `Unknown | ResponseInfo | None` +homeassistant/components/vesync/fan.py:214:26: warning[possibly-missing-attribute] Attribute `set_manual_mode` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/fan.py:217:23: warning[possibly-missing-attribute] Attribute `message` may be missing on object of type `Unknown | ResponseInfo | None` +homeassistant/components/vesync/fan.py:221:22: warning[possibly-missing-attribute] Attribute `set_fan_speed` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/fan.py:222:45: warning[possibly-missing-attribute] Attribute `fan_levels` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/fan.py:226:19: warning[possibly-missing-attribute] Attribute `message` may be missing on object of type `Unknown | ResponseInfo | None` +homeassistant/components/vesync/fan.py:240:19: warning[possibly-missing-attribute] Attribute `turn_on` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/fan.py:243:29: warning[possibly-missing-attribute] Attribute `set_auto_mode` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/fan.py:245:29: warning[possibly-missing-attribute] Attribute `set_sleep_mode` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/fan.py:247:29: warning[possibly-missing-attribute] Attribute `set_advanced_sleep_mode` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/fan.py:249:29: warning[possibly-missing-attribute] Attribute `set_pet_mode` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/fan.py:251:29: warning[possibly-missing-attribute] Attribute `set_turbo_mode` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/fan.py:253:29: warning[possibly-missing-attribute] Attribute `set_normal_mode` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/fan.py:255:38: warning[possibly-missing-attribute] Attribute `message` may be missing on object of type `Unknown | ResponseInfo | None` +homeassistant/components/vesync/fan.py:270:29: warning[possibly-missing-attribute] Attribute `turn_on` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/fan.py:272:42: warning[possibly-missing-attribute] Attribute `message` may be missing on object of type `Unknown | ResponseInfo | None` +homeassistant/components/vesync/fan.py:279:25: warning[possibly-missing-attribute] Attribute `turn_off` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/fan.py:281:38: warning[possibly-missing-attribute] Attribute `message` may be missing on object of type `Unknown | ResponseInfo | None` +homeassistant/components/vesync/fan.py:286:25: warning[possibly-missing-attribute] Attribute `toggle_oscillation` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/fan.py:288:38: warning[possibly-missing-attribute] Attribute `message` may be missing on object of type `Unknown | ResponseInfo | None` +homeassistant/components/vesync/humidifier.py:112:39: error[unresolved-attribute] Object of type `VeSyncBaseDevice[Unknown]` has no attribute `target_minmax` +homeassistant/components/vesync/humidifier.py:113:39: error[unresolved-attribute] Object of type `VeSyncBaseDevice[Unknown]` has no attribute `target_minmax` +homeassistant/components/vesync/humidifier.py:116:24: warning[possibly-missing-attribute] Attribute `mist_modes` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/humidifier.py:153:22: warning[possibly-missing-attribute] Attribute `set_humidity` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/humidifier.py:154:38: warning[possibly-missing-attribute] Attribute `message` may be missing on object of type `Unknown | ResponseInfo | None` +homeassistant/components/vesync/humidifier.py:162:22: warning[possibly-missing-attribute] Attribute `set_mode` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/humidifier.py:163:38: warning[possibly-missing-attribute] Attribute `message` may be missing on object of type `Unknown | ResponseInfo | None` +homeassistant/components/vesync/humidifier.py:167:19: warning[possibly-missing-attribute] Attribute `toggle_display` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/humidifier.py:177:25: warning[possibly-missing-attribute] Attribute `turn_on` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/humidifier.py:179:38: warning[possibly-missing-attribute] Attribute `message` may be missing on object of type `Unknown | ResponseInfo | None` +homeassistant/components/vesync/humidifier.py:185:25: warning[possibly-missing-attribute] Attribute `turn_off` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/humidifier.py:187:38: warning[possibly-missing-attribute] Attribute `message` may be missing on object of type `Unknown | ResponseInfo | None` +homeassistant/components/vesync/light.py:122:19: warning[possibly-missing-attribute] Attribute `set_color_temp` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/light.py:139:19: warning[possibly-missing-attribute] Attribute `set_brightness` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/light.py:147:15: warning[possibly-missing-attribute] Attribute `turn_on` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/light.py:151:15: warning[possibly-missing-attribute] Attribute `turn_off` may be missing on object of type `Unknown | VeSyncBaseDevice[Unknown]` +homeassistant/components/vesync/number.py:127:38: warning[possibly-missing-attribute] Attribute `message` may be missing on object of type `Unknown | ResponseInfo | None` +homeassistant/components/vesync/select.py:171:38: warning[possibly-missing-attribute] Attribute `message` may be missing on object of type `Unknown | ResponseInfo | None` +homeassistant/components/vesync/switch.py:136:38: warning[possibly-missing-attribute] Attribute `message` may be missing on object of type `Unknown | ResponseInfo | None` +homeassistant/components/vesync/switch.py:143:38: warning[possibly-missing-attribute] Attribute `message` may be missing on object of type `Unknown | ResponseInfo | None` +homeassistant/components/vicare/__init__.py:80:12: error[invalid-return-type] Return type does not match returned value: expected `PyViCare`, found `ViCareData` +homeassistant/components/vicare/binary_sensor.py:236:73: error[invalid-argument-type] Argument is incorrect: Expected `Device`, found `Device | HeatingDeviceWithComponent` +homeassistant/components/vicare/binary_sensor.py:237:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/vicare/button.py:107:54: error[invalid-argument-type] Argument is incorrect: Expected `Device`, found `Device | HeatingDeviceWithComponent` +homeassistant/components/vicare/button.py:108:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/vicare/climate.py:91:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `HeatingCircuit`, found `HeatingDeviceWithComponent` +homeassistant/components/vicare/climate.py:148:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/vicare/climate.py:152:47: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getPrograms` +homeassistant/components/vicare/climate.py:165:21: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getRoomTemperature` +homeassistant/components/vicare/climate.py:165:21: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getRoomTemperature` +homeassistant/components/vicare/climate.py:170:39: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getSupplyTemperature` +homeassistant/components/vicare/climate.py:181:21: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getActiveProgram` +homeassistant/components/vicare/climate.py:181:21: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getActiveProgram` +homeassistant/components/vicare/climate.py:185:49: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getCurrentDesiredTemperature` +homeassistant/components/vicare/climate.py:189:21: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getActiveMode` +homeassistant/components/vicare/climate.py:189:21: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getActiveMode` +homeassistant/components/vicare/climate.py:194:21: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getHeatingCurveSlope` +homeassistant/components/vicare/climate.py:199:21: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getHeatingCurveShift` +homeassistant/components/vicare/climate.py:203:52: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getModes` +homeassistant/components/vicare/climate.py:209:68: error[unresolved-attribute] Object of type `HeatingDeviceWithComponent` has no attribute `getActive` +homeassistant/components/vicare/climate.py:214:49: error[unresolved-attribute] Object of type `HeatingDeviceWithComponent` has no attribute `getActive` +homeassistant/components/vicare/climate.py:217:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/vicare/climate.py:243:9: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `setMode` +homeassistant/components/vicare/climate.py:281:13: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `setProgramTemperature` +homeassistant/components/vicare/climate.py:287:44: error[invalid-argument-type] Argument to function `to_ha_preset` is incorrect: Expected `str`, found `str | None` +homeassistant/components/vicare/climate.py:310:17: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `deactivateProgram` +homeassistant/components/vicare/climate.py:324:17: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `activateProgram` +homeassistant/components/vicare/climate.py:344:9: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `setMode` +homeassistant/components/vicare/fan.py:140:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/vicare/fan.py:143:37: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getVentilationModes` +homeassistant/components/vicare/fan.py:154:32: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getVentilationLevels` +homeassistant/components/vicare/fan.py:160:13: error[unresolved-attribute] Object of type `Device` has no attribute `getVentilationQuickmodes` +homeassistant/components/vicare/fan.py:160:13: error[unresolved-attribute] Object of type `Device` has no attribute `getVentilationQuickmodes` +homeassistant/components/vicare/fan.py:177:21: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getActiveVentilationMode` +homeassistant/components/vicare/fan.py:181:38: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getVentilationLevel` +homeassistant/components/vicare/fan.py:202:15: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getVentilationQuickmode` +homeassistant/components/vicare/fan.py:209:9: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `activateVentilationQuickmode` +homeassistant/components/vicare/fan.py:216:15: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getVentilationQuickmode` +homeassistant/components/vicare/fan.py:245:15: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getVentilationQuickmode` +homeassistant/components/vicare/fan.py:246:13: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `deactivateVentilationQuickmode` +homeassistant/components/vicare/fan.py:250:9: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `setVentilationLevel` +homeassistant/components/vicare/fan.py:256:9: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `activateVentilationMode` +homeassistant/components/vicare/number.py:439:21: error[invalid-argument-type] Argument is incorrect: Expected `Device`, found `Device | HeatingDeviceWithComponent` +homeassistant/components/vicare/number.py:443:63: error[invalid-argument-type] Argument to function `_get_value` is incorrect: Expected `HeatingDeviceWithComponent`, found `Device | HeatingDeviceWithComponent` +homeassistant/components/vicare/number.py:448:63: error[invalid-argument-type] Argument to function `_get_value` is incorrect: Expected `HeatingDeviceWithComponent`, found `Device | HeatingDeviceWithComponent` +homeassistant/components/vicare/number.py:453:62: error[invalid-argument-type] Argument to function `_get_value` is incorrect: Expected `HeatingDeviceWithComponent`, found `Device | HeatingDeviceWithComponent` +homeassistant/components/vicare/number.py:470:39: error[invalid-argument-type] Argument is incorrect: Expected `Device`, found `HeatingDeviceWithComponent` +homeassistant/components/vicare/sensor.py:1370:21: error[invalid-argument-type] Argument is incorrect: Expected `Device`, found `Device | HeatingDeviceWithComponent` +homeassistant/components/vicare/sensor.py:1375:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/vicare/utils.py:75:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/vicare/utils.py:103:16: error[unresolved-attribute] Object of type `Device` has no attribute `burners` +homeassistant/components/vicare/utils.py:114:16: error[unresolved-attribute] Object of type `Device` has no attribute `circuits` +homeassistant/components/vicare/utils.py:125:16: error[unresolved-attribute] Object of type `Device` has no attribute `compressors` +homeassistant/components/vicare/utils.py:136:16: error[unresolved-attribute] Object of type `Device` has no attribute `condensors` +homeassistant/components/vicare/utils.py:147:16: error[unresolved-attribute] Object of type `Device` has no attribute `evaporators` +homeassistant/components/vicare/water_heater.py:73:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `HeatingCircuit`, found `HeatingDeviceWithComponent` +homeassistant/components/vicare/water_heater.py:123:21: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getDomesticHotWaterStorageTemperature` +homeassistant/components/vicare/water_heater.py:128:21: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `getDomesticHotWaterDesiredTemperature` +homeassistant/components/vicare/water_heater.py:134:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/vicare/water_heater.py:146:13: error[unresolved-attribute] Object of type `Device | HeatingDeviceWithComponent` has no attribute `setDomesticHotWaterTemperature` +homeassistant/components/victron_remote_monitoring/coordinator.py:57:9: error[invalid-argument-type] Argument is incorrect: Expected `ForecastAggregations | None`, found `dict[Unknown, Unknown] | ForecastAggregations | None` +homeassistant/components/victron_remote_monitoring/coordinator.py:57:15: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Literal["records", "totals"], dict[Unknown, Unknown]].__getitem__(key: Literal["records", "totals"], /) -> dict[Unknown, Unknown]` cannot be called with key of type `Literal["solar_yield"]` on object of type `dict[Literal["records", "totals"], dict[Unknown, Unknown]]` +homeassistant/components/victron_remote_monitoring/coordinator.py:58:9: error[invalid-argument-type] Argument is incorrect: Expected `ForecastAggregations | None`, found `dict[Unknown, Unknown] | ForecastAggregations | None` +homeassistant/components/victron_remote_monitoring/coordinator.py:58:21: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Literal["records", "totals"], dict[Unknown, Unknown]].__getitem__(key: Literal["records", "totals"], /) -> dict[Unknown, Unknown]` cannot be called with key of type `Literal["consumption"]` on object of type `dict[Literal["records", "totals"], dict[Unknown, Unknown]]` +homeassistant/components/vilfo/config_flow.py:58:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/components/vilfo/config_flow.py:59:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/components/vilfo/config_flow.py:61:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/components/vilfo/config_flow.py:62:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/components/vivotek/camera.py:5:6: error[unresolved-import] Cannot resolve imported module `libpyvivotek` +homeassistant/components/vizio/config_flow.py:244:25: error[invalid-argument-type] Argument to function `validate_ha_config` is incorrect: Expected `str`, found `Any | None` +homeassistant/components/vizio/config_flow.py:343:17: error[invalid-argument-type] Argument to bound method `pair` is incorrect: Expected `int | str`, found `str | None` +homeassistant/components/vizio/config_flow.py:343:32: error[invalid-argument-type] Argument to bound method `pair` is incorrect: Expected `int | str`, found `str | None` +homeassistant/components/vizio/media_player.py:253:21: error[invalid-assignment] Object of type `Unknown | list[str] | dict[str, int | str] | None` is not assignable to attribute `_attr_sound_mode_list` of type `list[str] | None` +homeassistant/components/vizio/media_player.py:454:25: error[invalid-argument-type] Argument to bound method `launch_app` is incorrect: Expected `list[dict[str, str | list[str | dict[str, Any]]]]`, found `Unknown | list[dict[str, Any]] | None` +homeassistant/components/vlc/media_player.py:8:8: error[unresolved-import] Cannot resolve imported module `vlc` +homeassistant/components/voicerss/tts.py:196:46: error[invalid-argument-type] Argument to function `async_get_clientsession` is incorrect: Expected `HomeAssistant`, found `HomeAssistant | None | Unknown` +homeassistant/components/voip/assist_satellite.py:168:9: error[invalid-assignment] Object of type `Self@async_added_to_hass` is not assignable to attribute `protocol` on type `Unknown | VoIPDevice` +homeassistant/components/voip/devices.py:122:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventDeviceRegistryUpdatedData]` +homeassistant/components/voip/devices.py:123:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def async_device_removed(ev: Event[EventDeviceRegistryUpdatedData]) -> None` +homeassistant/components/voip/voip.py:58:16: error[invalid-return-type] Return type does not match returned value: expected `VoipDatagramProtocol`, found `PreRecordMessageProtocol` +homeassistant/components/voip/voip.py:68:5: error[unresolved-attribute] Object of type `VoipDatagramProtocol` has no attribute `_rtp_input` +homeassistant/components/voip/voip.py:69:5: error[unresolved-attribute] Object of type `VoipDatagramProtocol` has no attribute `_rtp_output` +homeassistant/components/voip/voip.py:71:5: error[unresolved-attribute] Unresolved attribute `rtcp_state` on type `VoipDatagramProtocol`. +homeassistant/components/voip/voip.py:72:8: error[unresolved-attribute] Object of type `VoipDatagramProtocol` has no attribute `rtcp_state` +homeassistant/components/voip/voip.py:74:9: error[unresolved-attribute] Object of type `VoipDatagramProtocol` has no attribute `rtcp_state` +homeassistant/components/voip/voip.py:74:44: error[unresolved-attribute] Object of type `VoipDatagramProtocol` has no attribute `disconnect` +homeassistant/components/volkszaehler/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `volkszaehler` +homeassistant/components/volkszaehler/sensor.py:9:6: error[unresolved-import] Cannot resolve imported module `volkszaehler.exceptions` +homeassistant/components/volvo/entity.py:88:52: error[unresolved-attribute] Object of type `EntityDescription` has no attribute `api_field` +homeassistant/components/volvo/entity.py:95:12: error[unresolved-attribute] Object of type `EntityDescription` has no attribute `api_field` +homeassistant/components/volvo/entity.py:97:17: error[unresolved-attribute] Object of type `EntityDescription` has no attribute `api_field` +homeassistant/components/w800rf32/__init__.py:6:8: error[unresolved-import] Cannot resolve imported module `W800rf32` +homeassistant/components/w800rf32/binary_sensor.py:8:8: error[unresolved-import] Cannot resolve imported module `W800rf32` +homeassistant/components/wallbox/coordinator.py:96:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/wallbox/coordinator.py:112:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/wallbox/coordinator.py:202:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/wallbox/coordinator.py:234:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/wallbox/coordinator.py:264:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/wallbox/coordinator.py:294:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/wallbox/coordinator.py:323:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/wallbox/coordinator.py:351:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/wallbox/coordinator.py:375:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/waterfurnace/__init__.py:9:6: error[unresolved-import] Cannot resolve imported module `waterfurnace.waterfurnace` +homeassistant/components/watergate/__init__.py:107:50: warning[possibly-missing-attribute] Attribute `state` may be missing on object of type `AutoShutOffReportData | TelemetryEventData | ValveEventData | ... omitted 3 union elements` +homeassistant/components/watergate/__init__.py:109:22: warning[possibly-missing-attribute] Attribute `errors` may be missing on object of type `AutoShutOffReportData | TelemetryEventData | ValveEventData | ... omitted 3 union elements` +homeassistant/components/watergate/__init__.py:111:17: warning[possibly-missing-attribute] Attribute `flow` may be missing on object of type `AutoShutOffReportData | TelemetryEventData | ValveEventData | ... omitted 3 union elements` +homeassistant/components/watergate/__init__.py:114:17: warning[possibly-missing-attribute] Attribute `pressure` may be missing on object of type `AutoShutOffReportData | TelemetryEventData | ValveEventData | ... omitted 3 union elements` +homeassistant/components/watergate/__init__.py:117:17: warning[possibly-missing-attribute] Attribute `temperature` may be missing on object of type `AutoShutOffReportData | TelemetryEventData | ValveEventData | ... omitted 3 union elements` +homeassistant/components/watergate/__init__.py:120:46: warning[possibly-missing-attribute] Attribute `ip` may be missing on object of type `AutoShutOffReportData | TelemetryEventData | ValveEventData | ... omitted 3 union elements` +homeassistant/components/watergate/__init__.py:121:51: warning[possibly-missing-attribute] Attribute `gateway` may be missing on object of type `AutoShutOffReportData | TelemetryEventData | ValveEventData | ... omitted 3 union elements` +homeassistant/components/watergate/__init__.py:122:50: warning[possibly-missing-attribute] Attribute `subnet` may be missing on object of type `AutoShutOffReportData | TelemetryEventData | ValveEventData | ... omitted 3 union elements` +homeassistant/components/watergate/__init__.py:123:48: warning[possibly-missing-attribute] Attribute `ssid` may be missing on object of type `AutoShutOffReportData | TelemetryEventData | ValveEventData | ... omitted 3 union elements` +homeassistant/components/watergate/__init__.py:124:48: warning[possibly-missing-attribute] Attribute `rssi` may be missing on object of type `AutoShutOffReportData | TelemetryEventData | ValveEventData | ... omitted 3 union elements` +homeassistant/components/watergate/__init__.py:126:51: warning[possibly-missing-attribute] Attribute `supply` may be missing on object of type `AutoShutOffReportData | TelemetryEventData | ValveEventData | ... omitted 3 union elements` +homeassistant/components/watergate/__init__.py:129:55: warning[possibly-missing-attribute] Attribute `type` may be missing on object of type `AutoShutOffReportData | TelemetryEventData | ValveEventData | ... omitted 3 union elements` +homeassistant/components/watergate/coordinator.py:59:43: error[invalid-argument-type] Argument is incorrect: Expected `DeviceState`, found `Unknown | DeviceState | None` +homeassistant/components/watergate/coordinator.py:59:50: error[invalid-argument-type] Argument is incorrect: Expected `TelemetryData`, found `Unknown | TelemetryData | None` +homeassistant/components/watergate/coordinator.py:59:61: error[invalid-argument-type] Argument is incorrect: Expected `NetworkingData`, found `Unknown | NetworkingData | None` +homeassistant/components/watson_tts/tts.py:5:6: error[unresolved-import] Cannot resolve imported module `ibm_cloud_sdk_core.authenticators` +homeassistant/components/watson_tts/tts.py:6:6: error[unresolved-import] Cannot resolve imported module `ibm_watson` +homeassistant/components/watttime/__init__.py:64:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(() -> Awaitable[dict[str, Any]]) | None`, found `def async_update_data() -> CoroutineType[Any, Any, RealTimeEmissionsResponseType]` +homeassistant/components/waze_travel_time/coordinator.py:71:13: error[invalid-argument-type] Argument to bound method `calc_routes` is incorrect: Expected `None | Literal["MOTORCYCLE", "TAXI"]`, found `str` +homeassistant/components/waze_travel_time/coordinator.py:91:17: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `str` with `Collection[str] | None` +homeassistant/components/waze_travel_time/coordinator.py:91:48: error[unsupported-operator] Operator `in` is not supported for types `str` and `None`, in comparing `Literal[""]` with `Collection[str] | None` +homeassistant/components/waze_travel_time/helpers.py:23:34: error[invalid-argument-type] Argument to bound method `calc_routes` is incorrect: Expected `str`, found `str | None` +homeassistant/components/waze_travel_time/helpers.py:23:51: error[invalid-argument-type] Argument to bound method `calc_routes` is incorrect: Expected `str`, found `str | None` +homeassistant/components/weather/__init__.py:703:46: error[no-matching-overload] No overload of bound method `__init__` matches arguments +homeassistant/components/weather/__init__.py:973:30: error[invalid-assignment] Object of type `set[Unknown | str]` is not assignable to `Iterable[Literal["daily", "hourly", "twice_daily"]] | None` +homeassistant/components/weather/__init__.py:974:30: error[not-iterable] Object of type `Iterable[Literal["daily", "hourly", "twice_daily"]] | None` may not be iterable +homeassistant/components/weatherflow/sensor.py:153:9: error[invalid-argument-type] Argument is incorrect: Expected `(WeatherFlowDevice, /) -> datetime | StateType`, found `def precipitation_raw_conversion_fn(raw_data: Enum) -> Unknown` +homeassistant/components/weatherflow/sensor.py:356:20: warning[possibly-missing-attribute] Attribute `last_report` may be missing on object of type `Unknown | WeatherFlowDevice` +homeassistant/components/weatherflow_cloud/coordinator.py:137:13: error[invalid-argument-type] Argument to bound method `register_callback` is incorrect: Expected `(str, /) -> None`, found `bound method Self@async_setup._handle_websocket_message(data) -> CoroutineType[Any, Any, None]` +homeassistant/components/weatherflow_cloud/coordinator.py:177:9: error[invalid-assignment] Invalid subscript assignment with key of type `int` and value of type `EventDataRapidWind | list[Unknown]` on object of type `dict[int, EventDataRapidWind | None]` +homeassistant/components/weatherflow_cloud/weather.py:120:16: error[invalid-return-type] Return type does not match returned value: expected `list[Forecast] | None`, found `list[dict[Unknown, Unknown] | Unknown]` +homeassistant/components/weatherflow_cloud/weather.py:125:16: error[invalid-return-type] Return type does not match returned value: expected `list[Forecast] | None`, found `list[dict[Unknown, Unknown] | Unknown]` +homeassistant/components/weatherkit/coordinator.py:73:17: error[invalid-argument-type] Argument to bound method `get_weather_data` is incorrect: Expected `list[DataSetType]`, found `list[DataSetType] | None` +homeassistant/components/webdav/backup.py:85:17: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@handle_backup_errors]` has no attribute `__name__` +homeassistant/components/webostv/media_player.py:128:51: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@cmd]` has no attribute `__name__` +homeassistant/components/webostv/media_player.py:134:29: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@cmd]` has no attribute `__name__` +homeassistant/components/webostv/media_player.py:145:29: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@cmd]` has no attribute `__name__` +homeassistant/components/websocket_api/commands.py:446:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]` +homeassistant/components/websocket_api/connection.py:282:27: error[unresolved-attribute] Module `voluptuous` has no member `humanize` +homeassistant/components/websocket_api/decorators.py:37:40: error[unresolved-attribute] Object of type `AsyncWebSocketCommandHandler` has no attribute `__name__` +homeassistant/components/websocket_api/decorators.py:142:19: error[non-subscriptable] Cannot subscript object of type `All` with no `__getitem__` method +homeassistant/components/websocket_api/decorators.py:144:19: warning[possibly-missing-attribute] Attribute `validators` may be missing on object of type `VolDictType | All` +homeassistant/components/websocket_api/http.py:117:23: warning[possibly-missing-attribute] Attribute `isEnabledFor` may be missing on object of type `Unknown | WebSocketAdapter | None` +homeassistant/components/websocket_api/http.py:148:17: warning[possibly-missing-attribute] Attribute `debug` may be missing on object of type `Unknown | WebSocketAdapter | None` +homeassistant/components/websocket_api/http.py:153:23: warning[possibly-missing-attribute] Attribute `closed` may be missing on object of type `Unknown | WebSocketResponse | None` +homeassistant/components/websocket_api/http.py:214:30: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `bytes`, found `str | bytes | dict[str, Any]` +homeassistant/components/websocket_api/http.py:216:13: warning[possibly-missing-attribute] Attribute `error` may be missing on object of type `Unknown | WebSocketAdapter | None` +homeassistant/components/websocket_api/http.py:243:17: error[invalid-argument-type] Argument to function `async_call_later` is incorrect: Expected `HomeAssistant`, found `Unknown | HomeAssistant | None` +homeassistant/components/websocket_api/http.py:280:9: warning[possibly-missing-attribute] Attribute `error` may be missing on object of type `Unknown | WebSocketAdapter | None` +homeassistant/components/websocket_api/http.py:317:23: warning[possibly-missing-attribute] Attribute `prepare` may be missing on object of type `Unknown | WebSocketResponse | None` +homeassistant/components/websocket_api/http.py:320:13: warning[possibly-missing-attribute] Attribute `debug` may be missing on object of type `Unknown | WebSocketAdapter | None` +homeassistant/components/websocket_api/http.py:324:20: error[invalid-return-type] Return type does not match returned value: expected `WebSocketResponse`, found `Unknown | WebSocketResponse | None` +homeassistant/components/websocket_api/http.py:326:13: warning[possibly-missing-attribute] Attribute `warning` may be missing on object of type `Unknown | WebSocketAdapter | None` +homeassistant/components/websocket_api/http.py:327:20: error[invalid-return-type] Return type does not match returned value: expected `WebSocketResponse`, found `Unknown | WebSocketResponse | None` +homeassistant/components/websocket_api/http.py:329:9: warning[possibly-missing-attribute] Attribute `debug` may be missing on object of type `Unknown | WebSocketAdapter | None` +homeassistant/components/websocket_api/http.py:332:22: warning[possibly-missing-attribute] Attribute `bus` may be missing on object of type `Unknown | HomeAssistant | None` +homeassistant/components/websocket_api/http.py:335:35: warning[possibly-missing-attribute] Attribute `bus` may be missing on object of type `Unknown | HomeAssistant | None` +homeassistant/components/websocket_api/http.py:339:18: warning[possibly-missing-attribute] Attribute `_writer` may be missing on object of type `Unknown | WebSocketResponse | None` +homeassistant/components/websocket_api/http.py:345:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `WebSocketAdapter`, found `Unknown | WebSocketAdapter | None` +homeassistant/components/websocket_api/http.py:345:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `HomeAssistant`, found `Unknown | HomeAssistant | None` +homeassistant/components/websocket_api/http.py:355:13: warning[possibly-missing-attribute] Attribute `debug` may be missing on object of type `Unknown | WebSocketAdapter | None` +homeassistant/components/websocket_api/http.py:361:13: warning[possibly-missing-attribute] Attribute `debug` may be missing on object of type `Unknown | WebSocketAdapter | None` +homeassistant/components/websocket_api/http.py:363:13: warning[possibly-missing-attribute] Attribute `exception` may be missing on object of type `Unknown | WebSocketAdapter | None` +homeassistant/components/websocket_api/http.py:381:16: error[invalid-return-type] Return type does not match returned value: expected `WebSocketResponse`, found `Unknown | WebSocketResponse | None` +homeassistant/components/websocket_api/http.py:393:25: warning[possibly-missing-attribute] Attribute `receive` may be missing on object of type `Unknown | WebSocketResponse | None` +homeassistant/components/websocket_api/http.py:418:13: warning[possibly-missing-attribute] Attribute `debug` may be missing on object of type `Unknown | WebSocketAdapter | None` +homeassistant/components/websocket_api/http.py:427:9: warning[possibly-missing-attribute] Attribute `data` may be missing on object of type `Unknown | HomeAssistant | None` +homeassistant/components/websocket_api/http.py:427:45: warning[possibly-missing-attribute] Attribute `data` may be missing on object of type `Unknown | HomeAssistant | None` +homeassistant/components/websocket_api/http.py:428:9: error[no-matching-overload] No overload of function `async_dispatcher_send` matches arguments +homeassistant/components/websocket_api/http.py:481:19: warning[possibly-missing-attribute] Attribute `closed` may be missing on object of type `Unknown | WebSocketResponse | None` +homeassistant/components/websocket_api/http.py:482:25: warning[possibly-missing-attribute] Attribute `receive` may be missing on object of type `Unknown | WebSocketResponse | None` +homeassistant/components/websocket_api/http.py:512:17: warning[possibly-missing-attribute] Attribute `debug` may be missing on object of type `Unknown | WebSocketAdapter | None` +homeassistant/components/websocket_api/http.py:540:23: warning[possibly-missing-attribute] Attribute `close` may be missing on object of type `Unknown | WebSocketResponse | None` +homeassistant/components/websocket_api/http.py:543:21: warning[possibly-missing-attribute] Attribute `debug` may be missing on object of type `Unknown | WebSocketAdapter | None` +homeassistant/components/websocket_api/http.py:547:21: warning[possibly-missing-attribute] Attribute `debug` may be missing on object of type `Unknown | WebSocketAdapter | None` +homeassistant/components/websocket_api/http.py:553:21: warning[possibly-missing-attribute] Attribute `warning` may be missing on object of type `Unknown | WebSocketAdapter | None` +homeassistant/components/websocket_api/http.py:558:21: warning[possibly-missing-attribute] Attribute `data` may be missing on object of type `Unknown | HomeAssistant | None` +homeassistant/components/websocket_api/http.py:561:17: error[no-matching-overload] No overload of function `async_dispatcher_send` matches arguments +homeassistant/components/wemo/__init__.py:92:27: error[unresolved-attribute] Module `pywemo` has no member `ssdp` +homeassistant/components/wemo/__init__.py:263:29: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/components/wemo/__init__.py:263:37: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`? +homeassistant/components/wemo/light.py:196:32: error[invalid-argument-type] Argument to bound method `turn_on` is incorrect: Expected `bool`, found `Unknown | int` +homeassistant/components/whirlpool/binary_sensor.py:76:16: error[unresolved-attribute] Object of type `BinarySensorEntityDescription` has no attribute `value_fn` +homeassistant/components/whirlpool/climate.py:88:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `int | float | None` +homeassistant/components/whirlpool/climate.py:93:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `int | float | None` +homeassistant/components/whirlpool/climate.py:98:44: error[invalid-argument-type] Argument to bound method `set_temp` is incorrect: Expected `int | float`, found `Any | None` +homeassistant/components/whirlpool/climate.py:104:16: error[invalid-return-type] Return type does not match returned value: expected `int`, found `int | None` +homeassistant/components/whirlpool/climate.py:112:28: error[invalid-assignment] Object of type `Mode | None` is not assignable to `Mode` +homeassistant/components/whirlpool/entity.py:48:9: error[invalid-assignment] Object of type `Unknown | bool | None` is not assignable to attribute `_attr_available` of type `bool` +homeassistant/components/whirlpool/sensor.py:179:9: error[invalid-argument-type] Argument is incorrect: Expected `(Appliance, /) -> str | None`, found `def washer_state(washer: Washer) -> str | None` +homeassistant/components/whirlpool/sensor.py:197:9: error[invalid-argument-type] Argument is incorrect: Expected `(Appliance, /) -> str | None`, found `def dryer_state(dryer: Dryer) -> str | None` +homeassistant/components/whirlpool/sensor.py:335:16: error[unresolved-attribute] Object of type `SensorEntityDescription` has no attribute `value_fn` +homeassistant/components/whirlpool/sensor.py:386:17: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `int | float`, found `int | None` +homeassistant/components/whirlpool/sensor.py:452:16: error[unresolved-attribute] Object of type `SensorEntityDescription` has no attribute `value_fn` +homeassistant/components/wiffi/entity.py:88:17: warning[possibly-missing-attribute] Attribute `endswith` may be missing on object of type `str | None` +homeassistant/components/wiffi/entity.py:93:16: warning[possibly-missing-attribute] Attribute `endswith` may be missing on object of type `str | None` +homeassistant/components/wiffi/entity.py:93:54: warning[possibly-missing-attribute] Attribute `endswith` may be missing on object of type `str | None` +homeassistant/components/wilight/parent_device.py:102:9: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/wilight/parent_device.py:103:9: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/wilight/parent_device.py:106:16: error[invalid-return-type] Return type does not match returned value: expected `PyWiLightDevice`, found `None` +homeassistant/components/wilight/switch.py:74:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[Any]`, found `list[Unknown]` +homeassistant/components/wirelesstag/__init__.py:7:6: error[unresolved-import] Cannot resolve imported module `wirelesstagpy` +homeassistant/components/wirelesstag/__init__.py:8:6: error[unresolved-import] Cannot resolve imported module `wirelesstagpy.exceptions` +homeassistant/components/wirelesstag/switch.py:103:16: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `Unknown | None` +homeassistant/components/wirelesstag/util.py:5:6: error[unresolved-import] Cannot resolve imported module `wirelesstagpy.sensortag` +homeassistant/components/wiz/__init__.py:110:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(() -> Awaitable[dict[str, Any]]) | None`, found `def _async_update() -> CoroutineType[Any, Any, int | float | None]` +homeassistant/components/wiz/__init__.py:142:34: error[invalid-argument-type] Argument is incorrect: Expected `DataUpdateCoordinator[int | float | None]`, found `DataUpdateCoordinator[dict[str, Any]]` +homeassistant/components/wiz/binary_sensor.py:79:12: warning[possibly-missing-attribute] Attribute `get_source` may be missing on object of type `Unknown | PilotParser | None` +homeassistant/components/wiz/config_flow.py:180:66: error[invalid-argument-type] Argument to function `name_from_bulb_type_and_mac` is incorrect: Expected `str`, found `str | None` +homeassistant/components/wiz/entity.py:31:31: error[invalid-assignment] Object of type `BulbType | None` is not assignable to `BulbType` +homeassistant/components/wiz/entity.py:34:25: error[invalid-argument-type] Invalid argument to key "connections" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown | str | None]]` +homeassistant/components/wiz/fan.py:37:8: warning[possibly-missing-attribute] Attribute `features` may be missing on object of type `BulbType | None` +homeassistant/components/wiz/fan.py:53:31: error[invalid-assignment] Object of type `Unknown | BulbType | None` is not assignable to `BulbType` +homeassistant/components/wiz/fan.py:68:9: error[invalid-assignment] Object of type `int | None` is not assignable to attribute `_attr_speed_count` of type `int` +homeassistant/components/wiz/fan.py:77:28: error[unsupported-operator] Operator `>` is not supported for types `None` and `int`, in comparing `Unknown | int | None` with `Literal[0]` +homeassistant/components/wiz/fan.py:77:28: warning[possibly-missing-attribute] Attribute `get_fan_state` may be missing on object of type `Unknown | PilotParser | None` +homeassistant/components/wiz/fan.py:79:36: error[invalid-argument-type] Argument to function `ranged_value_to_percentage` is incorrect: Expected `int | float`, found `Unknown | int | None` +homeassistant/components/wiz/fan.py:79:36: warning[possibly-missing-attribute] Attribute `get_fan_speed` may be missing on object of type `Unknown | PilotParser | None` +homeassistant/components/wiz/fan.py:82:24: warning[possibly-missing-attribute] Attribute `get_fan_mode` may be missing on object of type `Unknown | PilotParser | None` +homeassistant/components/wiz/fan.py:85:27: warning[possibly-missing-attribute] Attribute `get_fan_reverse` may be missing on object of type `Unknown | PilotParser | None` +homeassistant/components/wiz/light.py:63:8: warning[possibly-missing-attribute] Attribute `bulb_type` may be missing on object of type `BulbType | None` +homeassistant/components/wiz/light.py:76:31: error[invalid-assignment] Object of type `Unknown | BulbType | None` is not assignable to `BulbType` +homeassistant/components/wiz/light.py:92:48: warning[possibly-missing-attribute] Attribute `max` may be missing on object of type `KelvinRange | None` +homeassistant/components/wiz/light.py:93:48: warning[possibly-missing-attribute] Attribute `min` may be missing on object of type `KelvinRange | None` +homeassistant/components/wiz/light.py:104:27: warning[possibly-missing-attribute] Attribute `get_brightness` may be missing on object of type `Unknown | PilotParser | None` +homeassistant/components/wiz/light.py:107:27: warning[possibly-missing-attribute] Attribute `get_colortemp` may be missing on object of type `Unknown | PilotParser | None` +homeassistant/components/wiz/light.py:112:58: warning[possibly-missing-attribute] Attribute `get_rgbww` may be missing on object of type `Unknown | PilotParser | None` +homeassistant/components/wiz/light.py:116:57: warning[possibly-missing-attribute] Attribute `get_rgbw` may be missing on object of type `Unknown | PilotParser | None` +homeassistant/components/wiz/light.py:119:29: warning[possibly-missing-attribute] Attribute `get_scene` may be missing on object of type `Unknown | PilotParser | None` +homeassistant/components/wiz/number.py:78:13: warning[possibly-missing-attribute] Attribute `features` may be missing on object of type `BulbType | None` +homeassistant/components/wiz/sensor.py:82:35: warning[possibly-missing-attribute] Attribute `pilotResult` may be missing on object of type `Unknown | PilotParser | None` +homeassistant/components/wiz/sensor.py:94:22: warning[possibly-missing-attribute] Attribute `get_power` may be missing on object of type `Unknown | PilotParser | None` +homeassistant/components/wiz/switch.py:25:8: warning[possibly-missing-attribute] Attribute `bulb_type` may be missing on object of type `BulbType | None` +homeassistant/components/worldtidesinfo/sensor.py:58:8: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/worldtidesinfo/sensor.py:88:26: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/worldtidesinfo/sensor.py:89:42: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/worldtidesinfo/sensor.py:90:40: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/worldtidesinfo/sensor.py:91:41: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/worldtidesinfo/sensor.py:92:39: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/worldtidesinfo/sensor.py:93:27: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/worldtidesinfo/sensor.py:94:42: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/worldtidesinfo/sensor.py:95:40: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/worldtidesinfo/sensor.py:96:41: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/worldtidesinfo/sensor.py:97:39: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/wyoming/assist_satellite.py:357:24: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/wyoming/assist_satellite.py:358:24: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/components/xbox/browse_media.py:31:12: error[missing-argument] No argument provided for required parameter `cls` +homeassistant/components/xbox/browse_media.py:33:9: error[invalid-argument-type] Argument is incorrect: Expected `type`, found `Literal[MediaClass.APP]` +homeassistant/components/xbox/browse_media.py:33:9: error[parameter-already-assigned] Multiple values provided for parameter `cls` +homeassistant/components/xbox/browse_media.py:35:13: error[missing-argument] No argument provided for required parameter `cls` +homeassistant/components/xbox/browse_media.py:37:9: error[invalid-argument-type] Argument is incorrect: Expected `type`, found `Literal[MediaClass.GAME]` +homeassistant/components/xbox/browse_media.py:37:9: error[parameter-already-assigned] Multiple values provided for parameter `cls` +homeassistant/components/xeoma/camera.py:7:6: error[unresolved-import] Cannot resolve imported module `pyxeoma.xeoma` +homeassistant/components/xiaomi/camera.py:181:34: error[invalid-argument-type] Argument to bound method `open_camera` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/xiaomi/camera.py:188:17: error[invalid-argument-type] Argument to function `async_aiohttp_proxy_stream` is incorrect: Expected `StreamReader`, found `StreamReader` +homeassistant/components/xiaomi/device_tracker.py:118:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/xiaomi/device_tracker.py:156:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/xiaomi_ble/event.py:149:43: error[invalid-argument-type] Argument to function `replace` is incorrect: Argument type `Unknown | EventEntityDescription` does not satisfy upper bound `DataclassInstance` of type variable `_DataclassT` +homeassistant/components/xiaomi_miio/__init__.py:390:43: error[invalid-argument-type] Argument to function `_async_update_data_vacuum` is incorrect: Expected `RoborockVacuum`, found `AirHumidifierMiot | AirHumidifierMjjsq | AirHumidifier | ... omitted 11 union elements` +homeassistant/components/xiaomi_miio/air_quality.py:71:60: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Unknown | Device` +homeassistant/components/xiaomi_miio/air_quality.py:136:60: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Unknown | Device` +homeassistant/components/xiaomi_miio/air_quality.py:156:60: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Unknown | Device` +homeassistant/components/xiaomi_miio/air_quality.py:193:60: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Unknown | Device` +homeassistant/components/xiaomi_miio/config_flow.py:414:16: warning[possibly-missing-attribute] Attribute `startswith` may be missing on object of type `Unknown | None` +homeassistant/components/xiaomi_miio/config_flow.py:419:20: warning[possibly-missing-attribute] Attribute `startswith` may be missing on object of type `Unknown | None` +homeassistant/components/xiaomi_miio/config_flow.py:424:17: error[invalid-argument-type] Argument to bound method `async_create_entry` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/xiaomi_miio/device_tracker.py:68:34: warning[possibly-missing-attribute] Attribute `async_add_executor_job` may be missing on object of type `HomeAssistant | None` +homeassistant/components/xiaomi_miio/fan.py:566:13: warning[possibly-missing-attribute] Attribute `reset_filter` may be missing on object of type `Unknown | Device` +homeassistant/components/xiaomi_miio/fan.py:818:13: warning[possibly-missing-attribute] Attribute `reset_filter` may be missing on object of type `Unknown | Device` +homeassistant/components/xiaomi_miio/gateway.py:64:13: warning[possibly-missing-attribute] Attribute `model` may be missing on object of type `Unknown | None` +homeassistant/components/xiaomi_miio/gateway.py:65:13: warning[possibly-missing-attribute] Attribute `firmware_version` may be missing on object of type `Unknown | None` +homeassistant/components/xiaomi_miio/gateway.py:66:13: warning[possibly-missing-attribute] Attribute `hardware_version` may be missing on object of type `Unknown | None` +homeassistant/components/xiaomi_miio/gateway.py:72:52: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/xiaomi_miio/gateway.py:72:64: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/xiaomi_miio/remote.py:252:24: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `SupportsIndex`, found `Unknown | None` +homeassistant/components/xiaomi_miio/switch.py:891:47: warning[possibly-missing-attribute] Attribute `set_wifi_led` may be missing on object of type `AirConditioningCompanionV3 | ChuangmiPlug | PowerStrip` +homeassistant/components/xiaomi_miio/switch.py:900:48: warning[possibly-missing-attribute] Attribute `set_wifi_led` may be missing on object of type `AirConditioningCompanionV3 | ChuangmiPlug | PowerStrip` +homeassistant/components/xiaomi_tv/media_player.py:7:8: error[unresolved-import] Cannot resolve imported module `pymitv` +homeassistant/components/xmpp/notify.py:223:20: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/xmpp/notify.py:225:20: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/xmpp/notify.py:243:16: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/xmpp/notify.py:244:55: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/xmpp/notify.py:245:50: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/xmpp/notify.py:248:18: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/xmpp/notify.py:249:55: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/xmpp/notify.py:250:18: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/xmpp/notify.py:251:56: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/xmpp/notify.py:252:50: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/xmpp/notify.py:255:18: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/xmpp/notify.py:256:56: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/components/xmpp/notify.py:276:33: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/xmpp/notify.py:291:16: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/xmpp/notify.py:293:53: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/xmpp/notify.py:334:49: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +homeassistant/components/xs1/__init__.py:6:8: error[unresolved-import] Cannot resolve imported module `xs1_api_client` +homeassistant/components/xs1/climate.py:7:6: error[unresolved-import] Cannot resolve imported module `xs1_api_client.api_constants` +homeassistant/components/xs1/climate.py:8:6: error[unresolved-import] Cannot resolve imported module `xs1_api_client.device.actuator` +homeassistant/components/xs1/climate.py:9:6: error[unresolved-import] Cannot resolve imported module `xs1_api_client.device.sensor` +homeassistant/components/xs1/entity.py:5:6: error[unresolved-import] Cannot resolve imported module `xs1_api_client.device` +homeassistant/components/xs1/sensor.py:5:6: error[unresolved-import] Cannot resolve imported module `xs1_api_client.api_constants` +homeassistant/components/xs1/sensor.py:6:6: error[unresolved-import] Cannot resolve imported module `xs1_api_client.device.actuator` +homeassistant/components/xs1/sensor.py:7:6: error[unresolved-import] Cannot resolve imported module `xs1_api_client.device.sensor` +homeassistant/components/xs1/switch.py:7:6: error[unresolved-import] Cannot resolve imported module `xs1_api_client.api_constants` +homeassistant/components/xs1/switch.py:8:6: error[unresolved-import] Cannot resolve imported module `xs1_api_client.device.actuator` +homeassistant/components/yale/__init__.py:65:36: error[invalid-argument-type] Argument to bound method `async_setup` is incorrect: Expected `Config`, found `dict[Unknown | str, Unknown | Brand]` +homeassistant/components/yale/__init__.py:65:36: error[missing-typed-dict-key] Missing required key 'username' in TypedDict `Config` constructor +homeassistant/components/yale/__init__.py:65:36: error[missing-typed-dict-key] Missing required key 'password' in TypedDict `Config` constructor +homeassistant/components/yale/__init__.py:65:36: error[missing-typed-dict-key] Missing required key 'login_method' in TypedDict `Config` constructor +homeassistant/components/yale/__init__.py:65:36: error[missing-typed-dict-key] Missing required key 'access_token_cache_file' in TypedDict `Config` constructor +homeassistant/components/yale/__init__.py:65:36: error[missing-typed-dict-key] Missing required key 'install_id' in TypedDict `Config` constructor +homeassistant/components/yale/__init__.py:65:36: error[missing-typed-dict-key] Missing required key 'timeout' in TypedDict `Config` constructor +homeassistant/components/yale/binary_sensor.py:75:9: error[invalid-argument-type] Argument is incorrect: Expected `(YaleData, DoorbellDetail | LockDetail, /) -> Activity | None`, found `def retrieve_online_state(data: YaleData, detail: DoorbellDetail | LockDetail) -> bool` +homeassistant/components/yale/binary_sensor.py:103:12: warning[possibly-missing-attribute] Attribute `doorsense` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/yale/binary_sensor.py:106:12: warning[possibly-missing-attribute] Attribute `doorbell` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/yale/binary_sensor.py:130:46: error[invalid-argument-type] Argument to function `update_lock_detail_from_activity` is incorrect: Expected `LockDetail`, found `DoorbellDetail | LockDetail` +homeassistant/components/yale/binary_sensor.py:130:60: error[invalid-argument-type] Argument to function `update_lock_detail_from_activity` is incorrect: Expected `LockOperationActivity | DoorOperationActivity | BridgeOperationActivity`, found `Activity & ~AlwaysFalsy` +homeassistant/components/yale/binary_sensor.py:132:17: warning[possibly-missing-attribute] Attribute `set_online` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/yale/binary_sensor.py:135:46: error[invalid-argument-type] Argument to function `update_lock_detail_from_activity` is incorrect: Expected `LockDetail`, found `DoorbellDetail | LockDetail` +homeassistant/components/yale/binary_sensor.py:135:60: error[invalid-argument-type] Argument to function `update_lock_detail_from_activity` is incorrect: Expected `LockOperationActivity | DoorOperationActivity | BridgeOperationActivity`, found `Activity & ~AlwaysFalsy` +homeassistant/components/yale/binary_sensor.py:136:32: warning[possibly-missing-attribute] Attribute `bridge_is_online` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/yale/binary_sensor.py:137:28: warning[possibly-missing-attribute] Attribute `door_state` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/yale/camera.py:62:16: warning[possibly-missing-attribute] Attribute `has_subscription` may be missing on object of type `Unknown | Doorbell | Lock | KeypadDetail` +homeassistant/components/yale/camera.py:76:49: error[invalid-argument-type] Argument to function `update_doorbell_image_from_activity` is incorrect: Expected `DoorbellDetail`, found `DoorbellDetail | LockDetail` +homeassistant/components/yale/camera.py:76:63: error[invalid-argument-type] Argument to function `update_doorbell_image_from_activity` is incorrect: Expected `DoorbellImageCaptureActivity | DoorbellMotionActivity | BridgeOperationActivity`, found `Activity & ~AlwaysFalsy` +homeassistant/components/yale/camera.py:84:35: warning[possibly-missing-attribute] Attribute `image_url` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/yale/camera.py:88:31: warning[possibly-missing-attribute] Attribute `image_url` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/yale/data.py:47:40: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Exception`, found `` +homeassistant/components/yale/entity.py:59:21: warning[possibly-missing-attribute] Attribute `bridge` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/yale/entity.py:59:45: warning[possibly-missing-attribute] Attribute `bridge` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/yale/event.py:70:67: warning[possibly-missing-attribute] Attribute `doorbell` may be missing on object of type `(DoorbellDetail & ~AlwaysFalsy) | (LockDetail & ~AlwaysFalsy)` +homeassistant/components/yale/lock.py:47:12: warning[possibly-missing-attribute] Attribute `unlatch_supported` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/yale/lock.py:73:17: error[invalid-assignment] Object of type `Literal[LockStatus.JAMMED]` is not assignable to attribute `lock_status` on type `DoorbellDetail | LockDetail` +homeassistant/components/yale/lock.py:74:17: error[invalid-assignment] Object of type `Unknown` is not assignable to attribute `lock_status_datetime` on type `DoorbellDetail | LockDetail` +homeassistant/components/yale/lock.py:79:50: error[invalid-argument-type] Argument to function `update_lock_detail_from_activity` is incorrect: Expected `LockDetail`, found `DoorbellDetail | LockDetail` +homeassistant/components/yale/lock.py:79:64: error[invalid-argument-type] Argument to function `update_lock_detail_from_activity` is incorrect: Expected `LockOperationActivity | DoorOperationActivity | BridgeOperationActivity`, found `Unknown | DoorbellDingActivity | DoorbellMotionActivity | ... omitted 5 union elements` +homeassistant/components/yale/lock.py:89:32: warning[possibly-missing-attribute] Attribute `bridge_is_online` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/yale/lock.py:91:33: warning[possibly-missing-attribute] Attribute `lock_status` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/yale/lock.py:92:33: warning[possibly-missing-attribute] Attribute `lock_status` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/yale/lock.py:101:37: error[unresolved-attribute] Object of type `Activity & ~AlwaysFalsy` has no attribute `operated_by` +homeassistant/components/yale/lock.py:106:13: error[invalid-argument-type] Argument to function `get_latest_activity` is incorrect: Expected `LockOperationActivity | DoorOperationActivity | BridgeOperationActivity | None`, found `Activity | None` +homeassistant/components/yale/lock.py:106:45: error[invalid-argument-type] Argument to function `get_latest_activity` is incorrect: Expected `LockOperationActivity | DoorOperationActivity | BridgeOperationActivity | None`, found `Activity | None` +homeassistant/components/yale/lock.py:109:17: warning[possibly-missing-attribute] Attribute `set_online` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/yale/lock.py:110:46: error[invalid-argument-type] Argument to function `update_lock_detail_from_activity` is incorrect: Expected `LockDetail`, found `DoorbellDetail | LockDetail` +homeassistant/components/yale/lock.py:113:46: error[invalid-argument-type] Argument to function `update_lock_detail_from_activity` is incorrect: Expected `LockDetail`, found `DoorbellDetail | LockDetail` +homeassistant/components/yale/lock.py:113:54: error[invalid-argument-type] Argument to function `update_lock_detail_from_activity` is incorrect: Expected `LockOperationActivity | DoorOperationActivity | BridgeOperationActivity`, found `Activity & ~AlwaysFalsy` +homeassistant/components/yale/lock.py:128:22: warning[possibly-missing-attribute] Attribute `keypad` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/yale/sensor.py:94:48: error[invalid-argument-type] Argument is incorrect: Expected `LockDetail`, found `DoorbellDetail | LockDetail` +homeassistant/components/yale/sensor.py:98:22: warning[possibly-missing-attribute] Attribute `keypad` may be missing on object of type `DoorbellDetail | LockDetail` +homeassistant/components/yale/sensor.py:106:9: error[invalid-argument-type] Argument to class `YaleBatterySensor` is incorrect: Expected `LockDetail | KeypadDetail`, found `Doorbell` +homeassistant/components/yale/sensor.py:108:48: error[invalid-argument-type] Argument is incorrect: Expected `LockDetail`, found `DoorbellDetail | LockDetail` +homeassistant/components/yale/sensor.py:210:68: error[invalid-argument-type] Argument is incorrect: Expected `T@YaleBatterySensor`, found `DoorbellDetail | LockDetail` +homeassistant/components/yale/util.py:38:12: error[invalid-return-type] Return type does not match returned value: expected `Activity | None`, found `Literal[False]` +homeassistant/components/yamaha/media_player.py:157:12: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/yamaha/media_player.py:244:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/yamaha/media_player.py:369:16: error[unresolved-attribute] Module `rxv` has no member `exceptions` +homeassistant/components/yamaha_musiccast/config_flow.py:92:13: error[invalid-argument-type] Argument to bound method `check_yamaha_ssdp` is incorrect: Expected `str`, found `str | None` +homeassistant/components/yamaha_musiccast/entity.py:74:28: warning[possibly-missing-attribute] Attribute `values` may be missing on object of type `Unknown | dict[str, str] | None` +homeassistant/components/yamaha_musiccast/entity.py:77:44: error[invalid-assignment] Invalid assignment to key "via_device" with declared type `tuple[str, str]` on TypedDict `DeviceInfo`: value of type `tuple[Literal["yamaha_musiccast"], Unknown | str | None]` +homeassistant/components/yamaha_musiccast/media_player.py:364:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `str | None` +homeassistant/components/yamaha_musiccast/media_player.py:365:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | None` +homeassistant/components/yamaha_musiccast/media_player.py:366:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `str | None` +homeassistant/components/yamaha_musiccast/media_player.py:386:37: error[invalid-argument-type] Argument to bound method `extend` is incorrect: Expected `Iterable[BrowseMedia | Unknown]`, found `Unknown | Sequence[BrowseMedia] | None` +homeassistant/components/yamaha_musiccast/media_player.py:391:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `str | None` +homeassistant/components/yamaha_musiccast/media_player.py:392:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | None` +homeassistant/components/yamaha_musiccast/media_player.py:393:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `str | None` +homeassistant/components/yamaha_musiccast/number.py:65:35: error[invalid-argument-type] Argument to bound method `set` is incorrect: Expected `int`, found `int | float` +homeassistant/components/yandextts/tts.py:123:46: error[invalid-argument-type] Argument to function `async_get_clientsession` is incorrect: Expected `HomeAssistant`, found `HomeAssistant | None | Unknown` +homeassistant/components/yeelight/light.py:256:47: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@_async_cmd]` has no attribute `__name__` +homeassistant/components/yeelight/light.py:264:43: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@_async_cmd]` has no attribute `__name__` +homeassistant/components/yeelight/light.py:270:43: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@_async_cmd]` has no attribute `__name__` +homeassistant/components/yeelightsunflower/light.py:9:8: error[unresolved-import] Cannot resolve imported module `yeelightsunflower` +homeassistant/components/yi/camera.py:7:6: error[unresolved-import] Cannot resolve imported module `aioftp` +homeassistant/components/yi/camera.py:144:34: error[invalid-argument-type] Argument to bound method `open_camera` is incorrect: Expected `str`, found `Unknown | None` +homeassistant/components/yi/camera.py:151:17: error[invalid-argument-type] Argument to function `async_aiohttp_proxy_stream` is incorrect: Expected `StreamReader`, found `StreamReader` +homeassistant/components/yolink/switch.py:174:41: error[invalid-assignment] Object of type `None` is not assignable to `ClientRequest` +homeassistant/components/zabbix/__init__.py:15:6: error[unresolved-import] Cannot resolve imported module `zabbix_utils` +homeassistant/components/zabbix/__init__.py:16:6: error[unresolved-import] Cannot resolve imported module `zabbix_utils.exceptions` +homeassistant/components/zabbix/__init__.py:214:25: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]` +homeassistant/components/zabbix/__init__.py:214:46: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method Self@setup._event_listener(event: Event[EventStateChangedData]) -> None` +homeassistant/components/zabbix/sensor.py:10:6: error[unresolved-import] Cannot resolve imported module `zabbix_utils` +homeassistant/components/zamg/coordinator.py:51:9: error[invalid-assignment] Object of type `Unknown | dict[Unknown, Unknown] | None` is not assignable to attribute `data` of type `dict[Unknown, Unknown]` +homeassistant/components/zamg/coordinator.py:54:16: error[invalid-return-type] Return type does not match returned value: expected `ZamgData`, found `Unknown | dict[Unknown, Unknown] | None` +homeassistant/components/zamg/sensor.py:203:26: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `DataUpdateCoordinator[dict[str, Any]]`, found `ZamgDataUpdateCoordinator` +homeassistant/components/zamg/weather.py:47:26: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `DataUpdateCoordinator[dict[str, Any]]`, found `ZamgDataUpdateCoordinator` +homeassistant/components/zeroconf/discovery.py:487:13: error[invalid-argument-type] Argument to function `async_create_issue` is incorrect: Expected `dict[str, str] | None`, found `dict[Unknown | str, Unknown | None | str]` +homeassistant/components/zestimate/sensor.py:97:32: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsFloat | SupportsIndex`, found `Unknown | None` +homeassistant/components/zestimate/sensor.py:121:16: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/components/zeversolar/sensor.py:89:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `kWh | Watt` +homeassistant/components/zha/__init__.py:120:57: error[invalid-argument-type] Argument to function `async_register_firmware_info_provider` is incorrect: Expected `HardwareFirmwareInfoModule`, found `` +homeassistant/components/zha/alarm_control_panel.py:83:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `code_arm_required` +homeassistant/components/zha/alarm_control_panel.py:88:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_alarm_disarm` +homeassistant/components/zha/alarm_control_panel.py:94:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_alarm_arm_home` +homeassistant/components/zha/alarm_control_panel.py:100:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_alarm_arm_away` +homeassistant/components/zha/alarm_control_panel.py:106:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_alarm_arm_night` +homeassistant/components/zha/alarm_control_panel.py:112:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_alarm_trigger` +homeassistant/components/zha/api.py:108:13: error[invalid-argument-type] Argument to bound method `energy_scan` is incorrect: Expected `Channels`, found `Unknown | Literal[134215680]` +homeassistant/components/zha/binary_sensor.py:59:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `is_on` +homeassistant/components/zha/button.py:60:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_press` +homeassistant/components/zha/climate.py:96:51: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `hvac_modes` +homeassistant/components/zha/climate.py:99:13: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `hvac_mode` +homeassistant/components/zha/climate.py:102:13: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `hvac_action` +homeassistant/components/zha/climate.py:107:13: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `supported_features` +homeassistant/components/zha/climate.py:150:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `current_temperature` +homeassistant/components/zha/climate.py:155:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `fan_mode` +homeassistant/components/zha/climate.py:160:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `fan_modes` +homeassistant/components/zha/climate.py:165:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `preset_mode` +homeassistant/components/zha/climate.py:170:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `preset_modes` +homeassistant/components/zha/climate.py:175:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `target_temperature` +homeassistant/components/zha/climate.py:180:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `target_temperature_high` +homeassistant/components/zha/climate.py:185:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `target_temperature_low` +homeassistant/components/zha/climate.py:190:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `max_temp` +homeassistant/components/zha/climate.py:195:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `min_temp` +homeassistant/components/zha/climate.py:201:13: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `hvac_mode` +homeassistant/components/zha/climate.py:201:13: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `hvac_mode` +homeassistant/components/zha/climate.py:204:13: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `hvac_action` +homeassistant/components/zha/climate.py:211:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_set_fan_mode` +homeassistant/components/zha/climate.py:217:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_set_hvac_mode` +homeassistant/components/zha/climate.py:223:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_set_preset_mode` +homeassistant/components/zha/climate.py:229:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_set_temperature` +homeassistant/components/zha/config_flow.py:363:17: error[invalid-argument-type] Argument to bound method `probe` is incorrect: Expected `dict[str, Any]`, found `Unknown | dict[str, Any] | None` +homeassistant/components/zha/config_flow.py:897:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Mapping[str, str] | None`, found `dict[Unknown | str, Unknown | str | None]` +homeassistant/components/zha/cover.py:71:47: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `supported_features` +homeassistant/components/zha/cover.py:95:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `is_closed` +homeassistant/components/zha/cover.py:100:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `is_opening` +homeassistant/components/zha/cover.py:105:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `is_closing` +homeassistant/components/zha/cover.py:110:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `current_cover_position` +homeassistant/components/zha/cover.py:115:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `current_cover_tilt_position` +homeassistant/components/zha/cover.py:120:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_open_cover` +homeassistant/components/zha/cover.py:126:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_open_cover_tilt` +homeassistant/components/zha/cover.py:132:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_close_cover` +homeassistant/components/zha/cover.py:138:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_close_cover_tilt` +homeassistant/components/zha/cover.py:144:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_set_cover_position` +homeassistant/components/zha/cover.py:152:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_set_cover_tilt_position` +homeassistant/components/zha/cover.py:160:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_stop_cover` +homeassistant/components/zha/cover.py:166:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_stop_cover_tilt` +homeassistant/components/zha/cover.py:178:9: error[unresolved-attribute] Object of type `(PlatformEntity & ~Shade) | (GroupEntity & ~Shade)` has no attribute `restore_external_state_attributes` +homeassistant/components/zha/device_action.py:52:38: error[unresolved-attribute] Class `AllLEDEffectType` has no attribute `__getitem__` +homeassistant/components/zha/device_action.py:62:38: error[unresolved-attribute] Class `SingleLEDEffectType` has no attribute `__getitem__` +homeassistant/components/zha/device_action.py:99:49: error[unresolved-attribute] Class `AllLEDEffectType` has no attribute `__members__` +homeassistant/components/zha/device_action.py:108:49: error[unresolved-attribute] Class `SingleLEDEffectType` has no attribute `__members__` +homeassistant/components/zha/device_tracker.py:54:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `is_connected` +homeassistant/components/zha/device_tracker.py:62:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `battery_level` +homeassistant/components/zha/diagnostics.py:89:9: error[invalid-argument-type] Argument to bound method `energy_scan` is incorrect: Expected `Channels`, found `Unknown | Literal[134215680]` +homeassistant/components/zha/fan.py:55:45: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `supported_features` +homeassistant/components/zha/fan.py:75:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `preset_mode` +homeassistant/components/zha/fan.py:80:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `preset_modes` +homeassistant/components/zha/fan.py:85:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `default_on_percentage` +homeassistant/components/zha/fan.py:90:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `speed_range` +homeassistant/components/zha/fan.py:95:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `speed_count` +homeassistant/components/zha/fan.py:105:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_turn_on` +homeassistant/components/zha/fan.py:113:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_turn_off` +homeassistant/components/zha/fan.py:119:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_set_percentage` +homeassistant/components/zha/fan.py:125:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_set_preset_mode` +homeassistant/components/zha/fan.py:131:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `percentage` +homeassistant/components/zha/helpers.py:372:35: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | DeviceType` +homeassistant/components/zha/helpers.py:373:34: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | RxOnWhenIdle` +homeassistant/components/zha/helpers.py:374:31: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | Relationship` +homeassistant/components/zha/helpers.py:378:33: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | PermitJoins` +homeassistant/components/zha/helpers.py:388:35: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | RouteStatus` +homeassistant/components/zha/helpers.py:533:44: error[unresolved-attribute] Module `logging` has no member `handlers` +homeassistant/components/zha/helpers.py:542:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventEntityRegistryUpdatedData]` +homeassistant/components/zha/helpers.py:543:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method Self@__init__._handle_entity_registry_updated(event: Event[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]) -> CoroutineType[Any, Any, None]` +homeassistant/components/zha/helpers.py:603:27: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[tuple[Platform, str], PlatformEntity].__getitem__(key: tuple[Platform, str], /) -> PlatformEntity` cannot be called with key of type `tuple[str, str]` on object of type `dict[tuple[Platform, str], PlatformEntity]` +homeassistant/components/zha/helpers.py:615:65: error[invalid-argument-type] Argument to bound method `_async_get_or_create_group_proxy` is incorrect: Expected `GroupInfo`, found `Unknown | Group` +homeassistant/components/zha/helpers.py:701:67: error[invalid-argument-type] Argument to bound method `_async_get_or_create_device_proxy` is incorrect: Expected `Device`, found `Unknown | Device | None` +homeassistant/components/zha/helpers.py:821:12: error[unresolved-attribute] Object of type `ZHAEntity` has no attribute `zha_device` +homeassistant/components/zha/helpers.py:822:51: error[unresolved-attribute] Object of type `ZHAEntity` has no attribute `zha_device` +homeassistant/components/zha/helpers.py:823:33: error[unresolved-attribute] Object of type `ZHAEntity` has no attribute `zha_device` +homeassistant/components/zha/helpers.py:878:13: warning[possibly-missing-attribute] Attribute `ieee` may be missing on object of type `Unknown | Device | None` +homeassistant/components/zha/light.py:86:27: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `supported_color_modes` +homeassistant/components/zha/light.py:101:47: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `supported_features` +homeassistant/components/zha/light.py:124:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `is_on` +homeassistant/components/zha/light.py:129:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `brightness` +homeassistant/components/zha/light.py:135:13: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `min_mireds` +homeassistant/components/zha/light.py:142:13: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `max_mireds` +homeassistant/components/zha/light.py:148:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `xy_color` +homeassistant/components/zha/light.py:155:27: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `color_temp` +homeassistant/components/zha/light.py:162:12: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `color_mode` +homeassistant/components/zha/light.py:164:37: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `color_mode` +homeassistant/components/zha/light.py:169:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `effect_list` +homeassistant/components/zha/light.py:174:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `effect` +homeassistant/components/zha/light.py:184:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_turn_on` +homeassistant/components/zha/light.py:197:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_turn_off` +homeassistant/components/zha/light.py:210:9: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `restore_external_state_attributes` +homeassistant/components/zha/lock.py:95:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `is_locked` +homeassistant/components/zha/lock.py:100:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_lock` +homeassistant/components/zha/lock.py:106:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_unlock` +homeassistant/components/zha/lock.py:112:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_set_lock_user_code` +homeassistant/components/zha/lock.py:120:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_enable_lock_user_code` +homeassistant/components/zha/lock.py:126:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_disable_lock_user_code` +homeassistant/components/zha/lock.py:132:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_clear_lock_user_code` +homeassistant/components/zha/lock.py:138:9: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `restore_external_state_attributes` +homeassistant/components/zha/number.py:51:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `native_value` +homeassistant/components/zha/number.py:56:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `native_min_value` +homeassistant/components/zha/number.py:61:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `native_max_value` +homeassistant/components/zha/number.py:66:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `native_step` +homeassistant/components/zha/number.py:71:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `native_unit_of_measurement` +homeassistant/components/zha/number.py:76:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_set_native_value` +homeassistant/components/zha/radio_manager.py:429:27: warning[possibly-missing-attribute] Attribute `copy` may be missing on object of type `Unknown | dict[str, Any] | None` +homeassistant/components/zha/radio_manager.py:436:34: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | RadioType | None` +homeassistant/components/zha/repairs/network_settings_inconsistent.py:100:9: error[invalid-argument-type] Argument to function `async_create_issue` is incorrect: Expected `dict[str, str | int | float | None] | None`, found `dict[Unknown | str, Unknown | str | dict[str, Any]]` +homeassistant/components/zha/select.py:61:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `current_option` +homeassistant/components/zha/select.py:66:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_select_option` +homeassistant/components/zha/select.py:73:13: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `restore_external_state_attributes` +homeassistant/components/zha/sensor.py:123:16: error[unresolved-attribute] Object of type `~None` has no attribute `state_class` +homeassistant/components/zha/sensor.py:125:21: error[unresolved-attribute] Object of type `~None` has no attribute `state_class` +homeassistant/components/zha/sensor.py:128:16: error[unresolved-attribute] Object of type `~None` has no attribute `scale` +homeassistant/components/zha/sensor.py:129:36: error[unresolved-attribute] Object of type `~None` has no attribute `scale` +homeassistant/components/zha/sensor.py:131:16: error[unresolved-attribute] Object of type `~None` has no attribute `native_unit_of_measurement` +homeassistant/components/zha/sensor.py:133:21: error[unresolved-attribute] Object of type `~None` has no attribute `native_unit_of_measurement` +homeassistant/components/zha/sensor.py:136:16: error[unresolved-attribute] Object of type `~None` has no attribute `device_class` +homeassistant/components/zha/sensor.py:138:21: error[unresolved-attribute] Object of type `~None` has no attribute `device_class` +homeassistant/components/zha/sensor.py:149:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `native_value` +homeassistant/components/zha/siren.py:77:47: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `supported_features` +homeassistant/components/zha/siren.py:95:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `is_on` +homeassistant/components/zha/siren.py:100:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_turn_on` +homeassistant/components/zha/siren.py:110:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_turn_off` +homeassistant/components/zha/switch.py:52:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `is_on` +homeassistant/components/zha/switch.py:57:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_turn_on` +homeassistant/components/zha/switch.py:63:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_turn_off` +homeassistant/components/zha/update.py:123:42: error[invalid-argument-type] Argument to function `__init__` is incorrect: Expected `DataUpdateCoordinator[dict[str, Any]]`, found `ZHAFirmwareUpdateCoordinator` +homeassistant/components/zha/update.py:128:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `installed_version` +homeassistant/components/zha/update.py:136:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `in_progress` +homeassistant/components/zha/update.py:146:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `update_percentage` +homeassistant/components/zha/update.py:151:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `latest_version` +homeassistant/components/zha/update.py:160:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `release_summary` +homeassistant/components/zha/update.py:178:31: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `release_notes` +homeassistant/components/zha/update.py:183:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `release_url` +homeassistant/components/zha/update.py:192:19: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_install` +homeassistant/components/zha/websocket_api.py:383:36: error[unresolved-attribute] Object of type `Gateway` has no attribute `hass` +homeassistant/components/zha/websocket_api.py:392:36: error[unresolved-attribute] Object of type `Gateway` has no attribute `hass` +homeassistant/components/zha/websocket_api.py:420:50: error[invalid-argument-type] Argument to function `_get_entity_name` is incorrect: Expected `Gateway`, found `ZHAGatewayProxy` +homeassistant/components/zha/websocket_api.py:422:29: error[invalid-argument-type] Argument to function `_get_entity_original_name` is incorrect: Expected `Gateway`, found `ZHAGatewayProxy` +homeassistant/components/zha/websocket_api.py:426:29: warning[possibly-missing-attribute] Attribute `cluster_handlers` may be missing on object of type `PlatformEntity | GroupEntity` +homeassistant/components/zha/websocket_api.py:938:48: error[invalid-argument-type] Argument to function `async_binding_operation` is incorrect: Expected `ZDOCmd`, found `Unknown | Literal[33]` +homeassistant/components/zha/websocket_api.py:967:48: error[invalid-argument-type] Argument to function `async_binding_operation` is incorrect: Expected `ZDOCmd`, found `Unknown | Literal[34]` +homeassistant/components/zha/websocket_api.py:1048:13: error[unresolved-attribute] Object of type `ZDOCmd` has no attribute `name` +homeassistant/components/zhong_hong/climate.py:9:6: error[unresolved-import] Cannot resolve imported module `zhong_hong_hvac.hub` +homeassistant/components/zhong_hong/climate.py:10:6: error[unresolved-import] Cannot resolve imported module `zhong_hong_hvac.hvac` +homeassistant/components/zhong_hong/climate.py:200:20: error[invalid-return-type] Return type does not match returned value: expected `HVACMode`, found `Unknown | None | HVACMode` +homeassistant/components/ziggo_mediabox_xl/media_player.py:9:6: error[unresolved-import] Cannot resolve imported module `ziggo_mediabox_xl` +homeassistant/components/zimi/config_flow.py:47:25: error[invalid-assignment] Object of type `None` is not assignable to `ControlPoint` +homeassistant/components/zimi/light.py:101:22: error[unsupported-operator] Operator `*` is unsupported between objects of type `Unknown | int | None` and `Literal[255]` +homeassistant/components/zoneminder/__init__.py:7:6: error[unresolved-import] Cannot resolve imported module `zoneminder.zm` +homeassistant/components/zoneminder/binary_sensor.py:5:6: error[unresolved-import] Cannot resolve imported module `zoneminder.zm` +homeassistant/components/zoneminder/camera.py:7:6: error[unresolved-import] Cannot resolve imported module `zoneminder.monitor` +homeassistant/components/zoneminder/camera.py:8:6: error[unresolved-import] Cannot resolve imported module `zoneminder.zm` +homeassistant/components/zoneminder/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `zoneminder.monitor` +homeassistant/components/zoneminder/sensor.py:9:6: error[unresolved-import] Cannot resolve imported module `zoneminder.zm` +homeassistant/components/zoneminder/switch.py:9:6: error[unresolved-import] Cannot resolve imported module `zoneminder.monitor` +homeassistant/components/zoneminder/switch.py:10:6: error[unresolved-import] Cannot resolve imported module `zoneminder.zm` +homeassistant/components/zwave_js/discovery.py:1274:34: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/zwave_js/discovery.py:1279:34: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str`, found `Unknown | str | None` +homeassistant/components/zwave_js/sensor.py:676:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Driver`, found `Driver | None` +homeassistant/components/zwave_js/sensor.py:677:21: warning[possibly-missing-attribute] Attribute `controller` may be missing on object of type `Driver | None` +homeassistant/components/zwave_js/sensor.py:677:42: warning[possibly-missing-attribute] Attribute `controller` may be missing on object of type `Driver | None` +homeassistant/components/zwave_js/update.py:294:34: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str`, found `str | None` +homeassistant/components/zwave_me/climate.py:78:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `Unknown | str | int | float` +homeassistant/components/zwave_me/climate.py:83:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `Unknown | str` +homeassistant/components/zwave_me/climate.py:88:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `Unknown | str` +homeassistant/components/zwave_me/cover.py:86:12: error[unsupported-operator] Operator `>` is not supported for types `str` and `int`, in comparing `Unknown | str | int | float` with `Literal[95]` +homeassistant/components/zwave_me/cover.py:89:16: error[invalid-return-type] Return type does not match returned value: expected `int | None`, found `Unknown | str | int | float` +homeassistant/components/zwave_me/cover.py:103:16: error[unsupported-operator] Operator `<` is not supported for types `str` and `int`, in comparing `(Unknown & ~None) | str | int | float` with `Literal[5]` +homeassistant/components/zwave_me/fan.py:58:16: error[invalid-return-type] Return type does not match returned value: expected `int`, found `(Unknown & ~Literal[99]) | str | (int & ~Literal[99]) | float` +homeassistant/components/zwave_me/number.py:48:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `(Unknown & ~Literal[99]) | str | (int & ~Literal[99]) | float` +homeassistant/config.py:959:9: error[unknown-argument] Argument `translation_domain` does not match any known parameter of function `__new__` +homeassistant/config.py:960:9: error[unknown-argument] Argument `translation_placeholders` does not match any known parameter of function `__new__` +homeassistant/config_entries.py:199:31: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 2 +homeassistant/config_entries.py:207:6: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/config_entries.py:1251:17: error[invalid-argument-type] Argument to bound method `async_init` is incorrect: Expected `ConfigFlowContext | None`, found `ConfigFlowContext | dict[str, object]` +homeassistant/config_entries.py:3834:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventEntityRegistryUpdatedData]` +homeassistant/config_entries.py:3835:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method Self@async_setup._handle_entry_updated(event: Event[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]) -> None` +homeassistant/config_entries.py:3836:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _handle_entry_updated_filter(event_data: EventEntityRegistryUpdatedData) -> bool` +homeassistant/config_entries.py:3911:33: error[invalid-argument-type] Method `__getitem__` of type `(Overload[(key: Literal["action"], /) -> Literal["create", "remove"], (key: Literal["entity_id"], /) -> str]) | (Overload[(key: Literal["action"], /) -> Literal["update"], (key: Literal["entity_id"], /) -> str, (key: Literal["changes"], /) -> dict[str, Any], (key: Literal["old_entity_id"], /) -> str])` cannot be called with key of type `Literal["changes"]` on object of type `EventEntityRegistryUpdatedData` +homeassistant/config_entries.py:3912:12: error[invalid-argument-type] Method `__getitem__` of type `(Overload[(key: Literal["action"], /) -> Literal["create", "remove"], (key: Literal["entity_id"], /) -> str]) | (Overload[(key: Literal["action"], /) -> Literal["update"], (key: Literal["entity_id"], /) -> str, (key: Literal["changes"], /) -> dict[str, Any], (key: Literal["old_entity_id"], /) -> str])` cannot be called with key of type `Literal["changes"]` on object of type `EventEntityRegistryUpdatedData` +homeassistant/const.py:977:32: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/core.py:359:10: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:648:18: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:658:18: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:667:18: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:698:18: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:707:18: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:715:18: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:735:32: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:743:32: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:748:32: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:881:18: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:890:18: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:898:18: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:917:32: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:1026:24: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:1032:24: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:1037:24: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:1277:32: error[invalid-type-form] Variable of type `under_cached_property[Unknown]` is not allowed in a type expression +homeassistant/core.py:1378:32: error[invalid-type-form] Variable of type `under_cached_property[Unknown]` is not allowed in a type expression +homeassistant/core.py:1398:5: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:1398:13: error[invalid-type-form] List literals are not allowed in this context in a type expression +homeassistant/core.py:1398:14: error[invalid-argument-type] Argument to class `Event` is incorrect: Expected `Mapping[str, Any]`, found `typing.TypeVar` +homeassistant/core.py:1406:19: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/core.py:1406:27: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_DataT@_OneTimeListener]]`? +homeassistant/core.py:1504:13: error[invalid-argument-type] Argument to bound method `async_fire_internal` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_DataT@async_fire] | str` +homeassistant/core.py:1527:48: error[invalid-argument-type] Argument to function `_event_repr` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_DataT@async_fire_internal] | str` +homeassistant/core.py:1621:50: error[invalid-argument-type] Argument to bound method `_async_listen_filterable_job` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_DataT@async_listen] | str` +homeassistant/core.py:1687:13: error[invalid-argument-type] Argument to bound method `_async_listen_filterable_job` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_DataT@async_listen_once] | str` +homeassistant/core.py:1925:32: error[invalid-type-form] Variable of type `under_cached_property[Unknown]` is not allowed in a type expression +homeassistant/core.py:2079:45: error[unresolved-attribute] Module `asyncio` has no member `events` +homeassistant/core.py:2356:17: error[invalid-argument-type] Argument to bound method `async_fire_internal` is incorrect: Expected `EventType[dict[Unknown | str, Unknown | str | datetime | State | None]] | str`, found `EventType[EventStateReportedData]` +homeassistant/data_entry_flow.py:365:27: warning[redundant-cast] Value is already of type `Schema` +homeassistant/data_entry_flow.py:1016:16: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/data_entry_flow.py:1016:50: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/data_entry_flow.py:1031:15: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/data_entry_flow.py:1032:10: error[too-many-positional-arguments] Too many positional arguments: expected 2, got 3 +homeassistant/data_entry_flow.py:1063:21: error[invalid-argument-type] Argument to bound method `async_show_progress` is incorrect: Expected `Mapping[str, str] | None`, found `None | @Todo | (dict[str, str] & ~(() -> object)) | (((Any, /) -> dict[str, str]) & ~(() -> object))` +homeassistant/helpers/area_registry.py:90:32: error[invalid-type-form] Variable of type `cached_property[Unknown]` is not allowed in a type expression +homeassistant/helpers/area_registry.py:454:16: error[invalid-return-type] Return type does not match returned value: expected `AreasRegistryStoreData`, found `dict[Unknown | str, Unknown | list[dict[Unknown | str, Unknown | list[str] | str | None] | Unknown]]` +homeassistant/helpers/area_registry.py:455:22: error[invalid-argument-type] Invalid argument to key "areas" with declared type `list[_AreaStoreData]` on TypedDict `AreasRegistryStoreData`: value of type `list[dict[Unknown | str, Unknown | list[str] | str | None] | Unknown]` +homeassistant/helpers/area_registry.py:497:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventFloorRegistryUpdatedData]` +homeassistant/helpers/area_registry.py:498:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _removed_from_registry_filter(event_data: EventFloorRegistryUpdatedData | EventLabelRegistryUpdatedData) -> bool` +homeassistant/helpers/area_registry.py:499:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _handle_floor_registry_update(event: EventFloorRegistryUpdated) -> None` +homeassistant/helpers/area_registry.py:510:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventLabelRegistryUpdatedData]` +homeassistant/helpers/area_registry.py:511:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _removed_from_registry_filter(event_data: EventFloorRegistryUpdatedData | EventLabelRegistryUpdatedData) -> bool` +homeassistant/helpers/area_registry.py:512:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _handle_label_registry_update(event: EventLabelRegistryUpdated) -> None` +homeassistant/helpers/category_registry.py:230:16: error[invalid-return-type] Return type does not match returned value: expected `CategoryRegistryStoreData`, found `dict[Unknown | str, Unknown | dict[str | Unknown, list[dict[Unknown | str, Unknown | str | None] | Unknown] | Unknown]]` +homeassistant/helpers/category_registry.py:231:27: error[invalid-argument-type] Invalid argument to key "categories" with declared type `dict[str, list[_CategoryStoreData]]` on TypedDict `CategoryRegistryStoreData`: value of type `dict[str | Unknown, list[dict[Unknown | str, Unknown | str | None] | Unknown] | Unknown]` +homeassistant/helpers/condition.py:359:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[str, ConditionProtocol | None]`, found `tuple[str, ModuleType]` +homeassistant/helpers/condition.py:426:49: error[call-non-callable] Object of type `None` is not callable +homeassistant/helpers/condition.py:427:39: error[call-non-callable] Object of type `None` is not callable +homeassistant/helpers/config_validation.py:21:5: error[unresolved-import] Module `socket` has no member `_GLOBAL_DEFAULT_TIMEOUT` +homeassistant/helpers/debounce.py:43:20: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/debounce.py:43:28: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `tuple[()]`? +homeassistant/helpers/deprecation.py:44:25: error[unresolved-attribute] Object of type `(_ObjectT@deprecated_substitute, /) -> Any` has no attribute `__name__` +homeassistant/helpers/deprecation.py:158:24: error[unresolved-attribute] Object of type `(...) -> _T@deprecated_hass_argument` has no attribute `__name__` +homeassistant/helpers/deprecation.py:160:34: error[unresolved-attribute] Object of type `(...) -> _T@deprecated_hass_argument` has no attribute `__name__` +homeassistant/helpers/device_registry.py:1307:20: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | str]` is not assignable to `EventDeviceRegistryUpdatedData` +homeassistant/helpers/device_registry.py:1309:20: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | str | dict[str, Any]]` is not assignable to `EventDeviceRegistryUpdatedData` +homeassistant/helpers/device_registry.py:1456:13: error[invalid-argument-type] Argument to bound method `async_fire_internal` is incorrect: Expected `EventType[_EventDeviceRegistryUpdatedData_Remove] | str`, found `EventType[EventDeviceRegistryUpdatedData]` +homeassistant/helpers/device_registry.py:1832:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventLabelRegistryUpdatedData]` +homeassistant/helpers/device_registry.py:1833:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _label_removed_from_registry_filter(event_data: EventLabelRegistryUpdatedData) -> bool` +homeassistant/helpers/device_registry.py:1834:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _handle_label_registry_update(event: EventLabelRegistryUpdated) -> None` +homeassistant/helpers/device_registry.py:1861:36: error[invalid-argument-type] Method `__getitem__` of type `(Overload[(key: Literal["action"], /) -> Literal["create", "remove"], (key: Literal["entity_id"], /) -> str]) | (Overload[(key: Literal["action"], /) -> Literal["update"], (key: Literal["entity_id"], /) -> str, (key: Literal["changes"], /) -> dict[str, Any], (key: Literal["old_entity_id"], /) -> str])` cannot be called with key of type `Literal["changes"]` on object of type `EventEntityRegistryUpdatedData` +homeassistant/helpers/device_registry.py:1870:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventEntityRegistryUpdatedData]` +homeassistant/helpers/device_registry.py:1871:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _async_entity_registry_changed(event: Event[EventEntityRegistryUpdatedData]) -> None` +homeassistant/helpers/device_registry.py:1872:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def entity_registry_changed_filter(event_data: EventEntityRegistryUpdatedData) -> bool` +homeassistant/helpers/discovery.py:22:29: error[too-many-positional-arguments] Too many positional arguments to class `SignalTypeFormat`: expected 0, got 1 +homeassistant/helpers/discovery_flow.py:59:19: error[invalid-assignment] Object of type `dict[str, object]` is not assignable to `ConfigFlowContext` +homeassistant/helpers/dispatcher.py:30:5: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/helpers/dispatcher.py:33:9: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/dispatcher.py:41:34: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/helpers/dispatcher.py:55:13: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/helpers/dispatcher.py:72:18: error[too-many-positional-arguments] Too many positional arguments: expected 0, got 1 +homeassistant/helpers/dispatcher.py:73:13: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/helpers/dispatcher.py:94:34: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/helpers/dispatcher.py:110:13: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/helpers/dispatcher.py:119:18: error[too-many-positional-arguments] Too many positional arguments: expected 0, got 1 +homeassistant/helpers/dispatcher.py:131:34: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/helpers/dispatcher.py:142:34: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/helpers/dispatcher.py:149:13: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/helpers/dispatcher.py:163:13: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/helpers/dispatcher.py:164:6: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/dispatcher.py:186:34: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/helpers/dispatcher.py:199:34: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/helpers/dispatcher.py:221:34: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/helpers/dispatcher.py:234:18: error[too-many-positional-arguments] Too many positional arguments: expected 0, got 1 +homeassistant/helpers/entity.py:1312:23: error[call-non-callable] Object of type `object` is not callable +homeassistant/helpers/entity.py:1314:51: error[invalid-argument-type] Argument to bound method `async_add_executor_job` is incorrect: Expected `(...) -> Unknown`, found `object` +homeassistant/helpers/entity.py:1527:32: error[invalid-key] Unknown key "changes" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "changes" +homeassistant/helpers/entity.py:1576:31: error[invalid-key] Unknown key "changes" for TypedDict `_EventDeviceRegistryUpdatedData_Create`: Unknown key "changes" +homeassistant/helpers/entity.py:1576:31: error[invalid-key] Unknown key "changes" for TypedDict `_EventDeviceRegistryUpdatedData_Remove`: Unknown key "changes" +homeassistant/helpers/entity.py:1576:73: error[invalid-key] Unknown key "changes" for TypedDict `_EventDeviceRegistryUpdatedData_Create`: Unknown key "changes" +homeassistant/helpers/entity.py:1576:73: error[invalid-key] Unknown key "changes" for TypedDict `_EventDeviceRegistryUpdatedData_Remove`: Unknown key "changes" +homeassistant/helpers/entity_component.py:375:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `EntityPlatformModule | None`, found `ModuleType | None` +homeassistant/helpers/entity_registry.py:218:5: error[call-non-callable] Object of type `_MISSING_TYPE` is not callable +homeassistant/helpers/entity_registry.py:443:5: error[call-non-callable] Object of type `_MISSING_TYPE` is not callable +homeassistant/helpers/entity_registry.py:829:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventDeviceRegistryUpdatedData]` +homeassistant/helpers/entity_registry.py:830:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method Self@__init__.async_device_modified(event: Event[_EventDeviceRegistryUpdatedData_Create | _EventDeviceRegistryUpdatedData_Remove | _EventDeviceRegistryUpdatedData_Update]) -> None` +homeassistant/helpers/entity_registry.py:1060:13: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `None | str` +homeassistant/helpers/entity_registry.py:1063:13: error[invalid-argument-type] Argument is incorrect: Expected `ReadOnlyEntityOptionsType`, found `ReadOnlyDict[str, ReadOnlyDict[str, Any]] | @Todo | None` +homeassistant/helpers/entity_registry.py:1079:13: error[invalid-argument-type] Argument to bound method `async_fire_internal` is incorrect: Expected `EventType[_EventEntityRegistryUpdatedData_CreateRemove] | str`, found `EventType[EventEntityRegistryUpdatedData]` +homeassistant/helpers/entity_registry.py:1126:13: error[invalid-argument-type] Argument to bound method `async_fire_internal` is incorrect: Expected `EventType[_EventEntityRegistryUpdatedData_CreateRemove] | str`, found `EventType[EventEntityRegistryUpdatedData]` +homeassistant/helpers/entity_registry.py:1149:46: error[invalid-key] Unknown key "device" for TypedDict `_EventDeviceRegistryUpdatedData_Create` - did you mean "device_id"? +homeassistant/helpers/entity_registry.py:1149:46: error[invalid-key] Unknown key "device" for TypedDict `_EventDeviceRegistryUpdatedData_Update` - did you mean "device_id"? +homeassistant/helpers/entity_registry.py:1179:45: error[invalid-key] Unknown key "changes" for TypedDict `_EventDeviceRegistryUpdatedData_Create`: Unknown key "changes" +homeassistant/helpers/entity_registry.py:1179:45: error[invalid-key] Unknown key "changes" for TypedDict `_EventDeviceRegistryUpdatedData_Remove`: Unknown key "changes" +homeassistant/helpers/entity_registry.py:1193:56: error[invalid-key] Unknown key "changes" for TypedDict `_EventDeviceRegistryUpdatedData_Create`: Unknown key "changes" +homeassistant/helpers/entity_registry.py:1193:56: error[invalid-key] Unknown key "changes" for TypedDict `_EventDeviceRegistryUpdatedData_Remove`: Unknown key "changes" +homeassistant/helpers/entity_registry.py:1378:43: error[invalid-argument-type] Argument to bound method `async_fire_internal` is incorrect: Expected `EventType[_EventEntityRegistryUpdatedData_Update] | str`, found `EventType[EventEntityRegistryUpdatedData]` +homeassistant/helpers/entity_registry.py:1858:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventLabelRegistryUpdatedData]` +homeassistant/helpers/entity_registry.py:1859:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _removed_from_registry_filter(event_data: EventLabelRegistryUpdatedData | EventCategoryRegistryUpdatedData) -> bool` +homeassistant/helpers/entity_registry.py:1860:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _handle_label_registry_update(event: EventLabelRegistryUpdated) -> None` +homeassistant/helpers/entity_registry.py:1871:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventCategoryRegistryUpdatedData]` +homeassistant/helpers/entity_registry.py:1872:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _removed_from_registry_filter(event_data: EventLabelRegistryUpdatedData | EventCategoryRegistryUpdatedData) -> bool` +homeassistant/helpers/entity_registry.py:1873:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _handle_category_registry_update(event: EventCategoryRegistryUpdated) -> None` +homeassistant/helpers/entity_registry.py:1912:40: error[invalid-key] Unknown key "old_entity_id" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "old_entity_id" +homeassistant/helpers/entity_registry.py:1929:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventEntityRegistryUpdatedData]` +homeassistant/helpers/entity_registry.py:1930:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def cleanup_restored_states(event: Event[EventEntityRegistryUpdatedData]) -> None` +homeassistant/helpers/event.py:105:28: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:105:36: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_TypedDictT@_KeyedEventTracker]]`? +homeassistant/helpers/event.py:113:28: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:113:36: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_TypedDictT@_KeyedEventTracker]]`? +homeassistant/helpers/event.py:125:38: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:125:46: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_TypedDictT@_KeyedEventData]]`? +homeassistant/helpers/event.py:299:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]` +homeassistant/helpers/event.py:300:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def state_change_dispatcher(event: Event[EventStateChangedData]) -> None` +homeassistant/helpers/event.py:301:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def state_change_filter(event_data: EventStateChangedData) -> bool` +homeassistant/helpers/event.py:342:31: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:342:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_StateEventDataT@_async_dispatch_entity_id_event_soon]]`? +homeassistant/helpers/event.py:352:31: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:352:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_StateEventDataT@_async_dispatch_entity_id_event]]`? +homeassistant/helpers/event.py:372:31: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:372:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_StateEventDataT@_async_state_filter]]`? +homeassistant/helpers/event.py:437:10: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:437:18: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_TypedDictT@_remove_listener]]`? +homeassistant/helpers/event.py:438:31: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:438:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_TypedDictT@_remove_listener]]`? +homeassistant/helpers/event.py:474:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_TypedDictT@_async_track_event] | str` +homeassistant/helpers/event.py:501:31: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:501:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[EventEntityRegistryUpdatedData]]`? +homeassistant/helpers/event.py:525:31: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:525:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[EventEntityRegistryUpdatedData]]`? +homeassistant/helpers/event.py:568:31: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:568:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[EventDeviceRegistryUpdatedData]]`? +homeassistant/helpers/event.py:578:31: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:578:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[EventDeviceRegistryUpdatedData]]`? +homeassistant/helpers/event.py:622:31: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:622:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[EventStateChangedData]]`? +homeassistant/helpers/event.py:639:31: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:639:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[EventStateChangedData]]`? +homeassistant/helpers/event.py:689:31: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:689:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[EventStateChangedData]]`? +homeassistant/helpers/event.py:861:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]` +homeassistant/helpers/event.py:861:34: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `Unknown | ((Event[EventStateChangedData], /) -> Any)` +homeassistant/helpers/event.py:1447:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]` +homeassistant/helpers/event.py:1447:34: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def state_for_cancel_listener(event: Event[EventStateChangedData]) -> None` +homeassistant/helpers/event.py:1466:13: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:1466:21: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`? +homeassistant/helpers/event.py:1500:10: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:1500:18: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`? +homeassistant/helpers/event.py:1546:13: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:1546:21: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`? +homeassistant/helpers/event.py:1571:31: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:1571:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`? +homeassistant/helpers/event.py:1581:13: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:1581:21: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`? +homeassistant/helpers/event.py:1602:13: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:1602:21: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`? +homeassistant/helpers/event.py:1632:17: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:1632:25: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`? +homeassistant/helpers/event.py:1633:15: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:1633:23: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`? +homeassistant/helpers/event.py:1708:10: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:1708:18: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `tuple[()]`? +homeassistant/helpers/event.py:1805:10: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:1805:18: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`? +homeassistant/helpers/event.py:1807:40: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/event.py:1807:48: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`? +homeassistant/helpers/floor_registry.py:287:16: error[invalid-return-type] Return type does not match returned value: expected `FloorRegistryStoreData`, found `dict[Unknown | str, Unknown | list[dict[Unknown | str, Unknown | list[str] | str | None | int] | Unknown]]` +homeassistant/helpers/floor_registry.py:288:23: error[invalid-argument-type] Invalid argument to key "floors" with declared type `list[_FloorStoreData]` on TypedDict `FloorRegistryStoreData`: value of type `list[dict[Unknown | str, Unknown | list[str] | str | None | int] | Unknown]` +homeassistant/helpers/helper_integration.py:73:32: error[invalid-key] Unknown key "changes" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "changes" +homeassistant/helpers/helper_integration.py:81:60: error[invalid-key] Unknown key "changes" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "changes" +homeassistant/helpers/integration_platform.py:37:18: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/integration_platform.py:37:26: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `tuple[HomeAssistant, str, Any]`? +homeassistant/helpers/label_registry.py:250:16: error[invalid-return-type] Return type does not match returned value: expected `LabelRegistryStoreData`, found `dict[Unknown | str, Unknown | list[dict[Unknown | str, Unknown | str | None] | Unknown]]` +homeassistant/helpers/label_registry.py:251:23: error[invalid-argument-type] Invalid argument to key "labels" with declared type `list[_LabelStoreData]` on TypedDict `LabelRegistryStoreData`: value of type `list[dict[Unknown | str, Unknown | str | None] | Unknown]` +homeassistant/helpers/schema_config_entry_flow.py:258:40: error[invalid-assignment] Object of type `(((dict[str, Any], /) -> Coroutine[Any, Any, str | None]) & ~(() -> object)) | (str & ~(() -> object)) | None` is not assignable to `str | None` +homeassistant/helpers/script.py:153:25: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 3 +homeassistant/helpers/script.py:154:29: error[too-many-positional-arguments] Too many positional arguments to class `SignalTypeFormat`: expected 0, got 1 +homeassistant/helpers/service.py:920:18: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/service.py:921:9: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[ServiceCall]`? +homeassistant/helpers/service.py:1131:25: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/service.py:1169:25: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/singleton.py:68:32: error[invalid-await] `_Coro[_T@singleton] | _U@singleton` is not awaitable +homeassistant/helpers/singleton.py:83:12: error[invalid-return-type] Return type does not match returned value: expected `(_FuncType[_S@singleton], /) -> _FuncType[_S@singleton]`, found `Overload[(func: _FuncType[_Coro[_T@singleton]]) -> _FuncType[_Coro[_T@singleton]], (func: _FuncType[_U@singleton]) -> _FuncType[_U@singleton]]` +homeassistant/helpers/singleton.py:121:5: error[type-assertion-failure] Type `str` does not match asserted type `Unknown` +homeassistant/helpers/singleton.py:122:5: error[type-assertion-failure] Type `str` does not match asserted type `Unknown` +homeassistant/helpers/storage.py:391:12: error[unsupported-operator] Operator `not in` is not supported for types `str` and `int`, in comparing `Literal["minor_version"]` with `dict[str, Any] | Unknown | dict[str, JsonValueType] | ... omitted 5 union elements` +homeassistant/helpers/storage.py:392:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `str` +homeassistant/helpers/storage.py:392:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `int` +homeassistant/helpers/storage.py:392:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `float` +homeassistant/helpers/storage.py:392:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +homeassistant/helpers/storage.py:392:13: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["minor_version"]` and value of type `Literal[1]` on object of type `list[JsonValueType]` +homeassistant/helpers/storage.py:395:13: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> dict[str, Any] | list[Any] | str | ... omitted 3 union elements, (s: slice[Any, Any, Any], /) -> list[dict[str, Any] | list[Any] | str | ... omitted 3 union elements]]` cannot be called with key of type `Literal["version"]` on object of type `list[JsonValueType]` +homeassistant/helpers/storage.py:395:13: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["version"]` on object of type `str` +homeassistant/helpers/storage.py:395:13: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +homeassistant/helpers/storage.py:395:13: error[non-subscriptable] Cannot subscript object of type `float` with no `__getitem__` method +homeassistant/helpers/storage.py:395:13: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/helpers/storage.py:396:17: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> dict[str, Any] | list[Any] | str | ... omitted 3 union elements, (s: slice[Any, Any, Any], /) -> list[dict[str, Any] | list[Any] | str | ... omitted 3 union elements]]` cannot be called with key of type `Literal["minor_version"]` on object of type `list[JsonValueType]` +homeassistant/helpers/storage.py:396:17: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["minor_version"]` on object of type `str` +homeassistant/helpers/storage.py:396:17: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +homeassistant/helpers/storage.py:396:17: error[non-subscriptable] Cannot subscript object of type `float` with no `__getitem__` method +homeassistant/helpers/storage.py:396:17: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/helpers/storage.py:398:22: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["data"]` on object of type `str` +homeassistant/helpers/storage.py:398:22: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> dict[str, Any] | list[Any] | str | ... omitted 3 union elements, (s: slice[Any, Any, Any], /) -> list[dict[str, Any] | list[Any] | str | ... omitted 3 union elements]]` cannot be called with key of type `Literal["data"]` on object of type `list[JsonValueType]` +homeassistant/helpers/storage.py:398:22: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +homeassistant/helpers/storage.py:398:22: error[non-subscriptable] Cannot subscript object of type `float` with no `__getitem__` method +homeassistant/helpers/storage.py:398:22: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/helpers/storage.py:403:17: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> dict[str, Any] | list[Any] | str | ... omitted 3 union elements, (s: slice[Any, Any, Any], /) -> list[dict[str, Any] | list[Any] | str | ... omitted 3 union elements]]` cannot be called with key of type `Literal["version"]` on object of type `list[JsonValueType]` +homeassistant/helpers/storage.py:403:17: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["version"]` on object of type `str` +homeassistant/helpers/storage.py:403:17: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +homeassistant/helpers/storage.py:403:17: error[non-subscriptable] Cannot subscript object of type `float` with no `__getitem__` method +homeassistant/helpers/storage.py:403:17: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/helpers/storage.py:404:17: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> dict[str, Any] | list[Any] | str | ... omitted 3 union elements, (s: slice[Any, Any, Any], /) -> list[dict[str, Any] | list[Any] | str | ... omitted 3 union elements]]` cannot be called with key of type `Literal["minor_version"]` on object of type `list[JsonValueType]` +homeassistant/helpers/storage.py:404:17: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["minor_version"]` on object of type `str` +homeassistant/helpers/storage.py:404:17: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +homeassistant/helpers/storage.py:404:17: error[non-subscriptable] Cannot subscript object of type `float` with no `__getitem__` method +homeassistant/helpers/storage.py:404:17: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/helpers/storage.py:409:32: error[missing-argument] No argument provided for required parameter `old_data` of bound method `_async_migrate_func` +homeassistant/helpers/storage.py:409:57: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> dict[str, Any] | list[Any] | str | ... omitted 3 union elements, (s: slice[Any, Any, Any], /) -> list[dict[str, Any] | list[Any] | str | ... omitted 3 union elements]]` cannot be called with key of type `Literal["version"]` on object of type `list[JsonValueType]` +homeassistant/helpers/storage.py:409:57: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["version"]` on object of type `str` +homeassistant/helpers/storage.py:409:57: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +homeassistant/helpers/storage.py:409:57: error[non-subscriptable] Cannot subscript object of type `float` with no `__getitem__` method +homeassistant/helpers/storage.py:409:57: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/helpers/storage.py:409:74: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> dict[str, Any] | list[Any] | str | ... omitted 3 union elements, (s: slice[Any, Any, Any], /) -> list[dict[str, Any] | list[Any] | str | ... omitted 3 union elements]]` cannot be called with key of type `Literal["data"]` on object of type `list[JsonValueType]` +homeassistant/helpers/storage.py:409:74: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["data"]` on object of type `str` +homeassistant/helpers/storage.py:409:74: error[non-subscriptable] Cannot subscript object of type `float` with no `__getitem__` method +homeassistant/helpers/storage.py:409:74: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +homeassistant/helpers/storage.py:409:74: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/helpers/storage.py:413:25: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> dict[str, Any] | list[Any] | str | ... omitted 3 union elements, (s: slice[Any, Any, Any], /) -> list[dict[str, Any] | list[Any] | str | ... omitted 3 union elements]]` cannot be called with key of type `Literal["version"]` on object of type `list[JsonValueType]` +homeassistant/helpers/storage.py:413:25: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["version"]` on object of type `str` +homeassistant/helpers/storage.py:413:25: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +homeassistant/helpers/storage.py:413:25: error[non-subscriptable] Cannot subscript object of type `float` with no `__getitem__` method +homeassistant/helpers/storage.py:413:25: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/helpers/storage.py:413:42: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> dict[str, Any] | list[Any] | str | ... omitted 3 union elements, (s: slice[Any, Any, Any], /) -> list[dict[str, Any] | list[Any] | str | ... omitted 3 union elements]]` cannot be called with key of type `Literal["minor_version"]` on object of type `list[JsonValueType]` +homeassistant/helpers/storage.py:413:42: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["minor_version"]` on object of type `str` +homeassistant/helpers/storage.py:413:42: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +homeassistant/helpers/storage.py:413:42: error[non-subscriptable] Cannot subscript object of type `float` with no `__getitem__` method +homeassistant/helpers/storage.py:413:42: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/helpers/storage.py:413:65: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> dict[str, Any] | list[Any] | str | ... omitted 3 union elements, (s: slice[Any, Any, Any], /) -> list[dict[str, Any] | list[Any] | str | ... omitted 3 union elements]]` cannot be called with key of type `Literal["data"]` on object of type `list[JsonValueType]` +homeassistant/helpers/storage.py:413:65: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["data"]` on object of type `str` +homeassistant/helpers/storage.py:413:65: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +homeassistant/helpers/storage.py:413:65: error[non-subscriptable] Cannot subscript object of type `float` with no `__getitem__` method +homeassistant/helpers/storage.py:413:65: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/helpers/storage.py:416:24: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> dict[str, Any] | list[Any] | str | ... omitted 3 union elements, (s: slice[Any, Any, Any], /) -> list[dict[str, Any] | list[Any] | str | ... omitted 3 union elements]]` cannot be called with key of type `Literal["version"]` on object of type `list[JsonValueType]` +homeassistant/helpers/storage.py:416:24: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["version"]` on object of type `str` +homeassistant/helpers/storage.py:416:24: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +homeassistant/helpers/storage.py:416:24: error[non-subscriptable] Cannot subscript object of type `float` with no `__getitem__` method +homeassistant/helpers/storage.py:416:24: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/helpers/storage.py:418:30: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> dict[str, Any] | list[Any] | str | ... omitted 3 union elements, (s: slice[Any, Any, Any], /) -> list[dict[str, Any] | list[Any] | str | ... omitted 3 union elements]]` cannot be called with key of type `Literal["data"]` on object of type `list[JsonValueType]` +homeassistant/helpers/storage.py:418:30: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["data"]` on object of type `str` +homeassistant/helpers/storage.py:418:30: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +homeassistant/helpers/storage.py:418:30: error[non-subscriptable] Cannot subscript object of type `float` with no `__getitem__` method +homeassistant/helpers/storage.py:418:30: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +homeassistant/helpers/storage.py:419:35: error[invalid-argument-type] Argument to bound method `async_save` is incorrect: Argument type `Unknown | dict[str, Any] | list[Any] | ... omitted 4 union elements` does not satisfy upper bound `Mapping[str, Any] | Sequence[Any]` of type variable `_T` +homeassistant/helpers/storage.py:419:35: error[invalid-argument-type] Argument to bound method `async_save` is incorrect: Expected `_T@Store`, found `Unknown | dict[str, Any] | list[Any] | ... omitted 4 union elements` +homeassistant/helpers/target.py:328:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventEntityRegistryUpdatedData]` +homeassistant/helpers/target.py:331:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventDeviceRegistryUpdatedData]` +homeassistant/helpers/target.py:334:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventAreaRegistryUpdatedData]` +homeassistant/helpers/template/__init__.py:605:13: warning[possibly-missing-attribute] Attribute `loop` may be missing on object of type `Unknown | HomeAssistant | None` +homeassistant/helpers/template/__init__.py:1787:14: error[unresolved-attribute] Module `jinja2` has no member `filters` +homeassistant/helpers/template/__init__.py:1795:14: error[unresolved-attribute] Module `jinja2` has no member `filters` +homeassistant/helpers/template/__init__.py:2181:19: error[unresolved-attribute] Module `jinja2` has no member `nodes` +homeassistant/helpers/template/__init__.py:2428:23: error[unresolved-attribute] Module `jinja2` has no member `nodes` +homeassistant/helpers/template/__init__.py:2438:23: error[unresolved-attribute] Module `jinja2` has no member `nodes` +homeassistant/helpers/template/__init__.py:2447:23: error[unresolved-attribute] Module `jinja2` has no member `nodes` +homeassistant/helpers/trigger.py:358:13: error[too-many-positional-arguments] Too many positional arguments to class `HassJob`: expected 1, got 2 +homeassistant/helpers/trigger.py:358:21: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `tuple[dict[str, Any], Context | None]`? +homeassistant/helpers/trigger.py:476:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[str, TriggerProtocol]`, found `tuple[Unknown | str, ModuleType]` +homeassistant/helpers/update_coordinator.py:218:20: error[not-iterable] Object of type `GeneratorType[~None, None, None]` is not iterable +homeassistant/helpers/update_coordinator.py:360:13: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/helpers/update_coordinator.py:362:13: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/helpers/update_coordinator.py:421:31: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/helpers/update_coordinator.py:428:38: error[unresolved-attribute] Module `requests` has no member `exceptions` +homeassistant/loader.py:297:16: error[unresolved-import] Cannot resolve imported module `custom_components` +homeassistant/loader.py:979:20: error[invalid-return-type] Return type does not match returned value: expected `ComponentProtocol`, found `Unknown | ModuleType | ComponentProtocol` +homeassistant/loader.py:1057:20: error[invalid-return-type] Return type does not match returned value: expected `ComponentProtocol`, found `Unknown | ModuleType | ComponentProtocol` +homeassistant/loader.py:1084:16: error[invalid-return-type] Return type does not match returned value: expected `ComponentProtocol`, found `Unknown | ModuleType | ComponentProtocol` +homeassistant/loader.py:1487:9: error[invalid-argument-type] Argument to function `_resolve_integrations_dependencies` is incorrect: Expected `_ResolveDependenciesCacheProtocol`, found `dict[Unknown, Unknown]` +homeassistant/loader.py:1673:16: error[unresolved-import] Cannot resolve imported module `custom_components` +homeassistant/scripts/benchmark/__init__.py:39:32: error[unresolved-attribute] Object of type `_AbstractEventLoopPolicy` has no attribute `loop_name` +homeassistant/scripts/benchmark/__init__.py:56:16: error[unresolved-attribute] Object of type `_CallableT@benchmark` has no attribute `__name__` +homeassistant/setup.py:650:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _async_is_component_filter(event_data: EventComponentLoaded) -> bool` +homeassistant/util/__init__.py:153:28: error[unresolved-attribute] Object of type `((...) -> Unknown) & ~` has no attribute `__qualname__` +homeassistant/util/__init__.py:170:17: error[invalid-assignment] Object of type `dict[Unknown, Unknown]` is not assignable to attribute `_throttle` on type `~` +homeassistant/util/__init__.py:172:32: error[unresolved-attribute] Object of type `object` has no attribute `_throttle` +homeassistant/util/__init__.py:173:17: error[unresolved-attribute] Object of type `object` has no attribute `_throttle` +homeassistant/util/__init__.py:174:24: error[unresolved-attribute] Object of type `object` has no attribute `_throttle` +homeassistant/util/__init__.py:177:24: error[invalid-return-type] Return type does not match returned value: expected `((...) -> Unknown) | Coroutine[Unknown, Unknown, Unknown]`, found `CoroutineType[Any, Any, None] | None` +homeassistant/util/__init__.py:188:24: error[invalid-return-type] Return type does not match returned value: expected `((...) -> Unknown) | Coroutine[Unknown, Unknown, Unknown]`, found `CoroutineType[Any, Any, None] | None` +homeassistant/util/hass_dict.pyi:134:5: error[type-assertion-failure] Type `dict[str, int] | bool` does not match asserted type `dict[str, int] | Literal[True]` +homeassistant/util/hass_dict.pyi:138:5: error[type-assertion-failure] Type `dict[int, bool]` does not match asserted type `dict[int, bool] | dict[Unknown, Unknown]` +homeassistant/util/hass_dict.pyi:140:5: error[type-assertion-failure] Type `set[str]` does not match asserted type `set[str] | set[Unknown]` +homeassistant/util/hass_dict.pyi:146:5: error[type-assertion-failure] Type `dict[str, int]` does not match asserted type `dict[str, int | Unknown]` +homeassistant/util/hass_dict.pyi:147:5: error[type-assertion-failure] Type `int` does not match asserted type `int | Unknown` +homeassistant/util/hass_dict.pyi:149:5: error[type-assertion-failure] Type `dict[int, bool]` does not match asserted type `dict[int, bool] | dict[Unknown, Unknown]` +homeassistant/util/hass_dict.pyi:150:5: error[type-assertion-failure] Type `bool` does not match asserted type `bool | Unknown` +homeassistant/util/hass_dict.pyi:151:5: error[type-assertion-failure] Type `set[str]` does not match asserted type `set[str] | set[Unknown]` +homeassistant/util/hass_dict.pyi:170:5: error[type-assertion-failure] Type `dict[str, int]` does not match asserted type `Unknown` +homeassistant/util/hass_dict.pyi:171:5: error[type-assertion-failure] Type `dict[str, int] | int` does not match asserted type `dict[str, int] | Literal[2]` +homeassistant/util/hass_dict.pyi:174:5: error[type-assertion-failure] Type `int | str` does not match asserted type `int | Literal["Hello World"]` +homeassistant/util/hass_dict.pyi:176:5: error[type-assertion-failure] Type `dict[int, bool]` does not match asserted type `dict[int, bool] | dict[Unknown, Unknown]` +homeassistant/util/hass_dict.pyi:177:5: error[type-assertion-failure] Type `dict[int, bool] | int` does not match asserted type `dict[int, bool] | Literal[2]` +homeassistant/util/hass_dict.pyi:179:5: error[type-assertion-failure] Type `set[str]` does not match asserted type `set[str] | set[Unknown]` +homeassistant/util/hass_dict.pyi:181:5: error[type-assertion-failure] Type `Any | bool` does not match asserted type `Any | Literal[True]` +homeassistant/util/loop.py:69:21: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +homeassistant/util/loop.py:74:39: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +homeassistant/util/loop.py:85:21: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +homeassistant/util/loop.py:90:39: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +homeassistant/util/loop.py:97:44: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +homeassistant/util/loop.py:104:38: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +homeassistant/util/loop.py:123:13: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +homeassistant/util/loop.py:134:31: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +homeassistant/util/loop.py:143:13: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +homeassistant/util/loop.py:154:31: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +homeassistant/util/loop.py:160:40: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +homeassistant/util/loop.py:167:34: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +homeassistant/util/package.py:183:15: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/util/package.py:184:16: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/util/package.py:185:16: error[unresolved-attribute] Module `asyncio` has no member `subprocess` +homeassistant/util/signal_type.py:12:24: error[too-many-positional-arguments] Too many positional arguments to class `_SignalTypeBase`: expected 0, got 1 +homeassistant/util/signal_type.py:18:30: error[too-many-positional-arguments] Too many positional arguments to class `_SignalTypeBase`: expected 0, got 1 +homeassistant/util/signal_type.pyi:21:24: error[too-many-positional-arguments] Too many positional arguments to class `_SignalTypeBase`: expected 0, got 1 +homeassistant/util/signal_type.pyi:24:30: error[too-many-positional-arguments] Too many positional arguments to class `_SignalTypeBase`: expected 0, got 1 +homeassistant/util/signal_type.pyi:27:52: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/util/signal_type.pyi:52:15: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/util/signal_type.pyi:53:5: error[type-assertion-failure] Type `Unknown` does not match asserted type `SignalType[]` +homeassistant/util/signal_type.pyi:53:27: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/util/signal_type.pyi:61:20: error[too-many-positional-arguments] Too many positional arguments to class `SignalTypeFormat`: expected 0, got 1 +homeassistant/util/signal_type.pyi:63:5: error[type-assertion-failure] Type `Unknown` does not match asserted type `SignalTypeFormat[]` +homeassistant/util/signal_type.pyi:63:32: error[too-many-positional-arguments] Too many positional arguments to class `SignalTypeFormat`: expected 0, got 1 +homeassistant/util/signal_type.pyi:64:27: error[too-many-positional-arguments] Too many positional arguments to class `SignalType`: expected 0, got 1 +homeassistant/util/variance.py:41:43: error[unsupported-operator] Operator `-` is unsupported between objects of type `_R@ignore_variance` and `_R@ignore_variance` +homeassistant/util/yaml/loader.py:82:43: error[unresolved-attribute] Module `yaml` has no member `nodes` +Found 4793 diagnostics diff --git a/scripts/ty_benchmark/snapshots/isort_Pyrefly.txt b/scripts/ty_benchmark/snapshots/isort_Pyrefly.txt new file mode 100644 index 0000000000..cf070fa762 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/isort_Pyrefly.txt @@ -0,0 +1,20 @@ +ERROR isort/_vendored/tomli/_re.py:7:5-41: Could not find import of `tomli._parser` [missing-import] +ERROR isort/api.py:162:17-82: `Path | str` is not assignable to variable `extension` with type `str | None` [bad-assignment] +ERROR isort/api.py:206:33-45: `file_content` may be uninitialized [unbound-name] +ERROR isort/api.py:215:23-32: Argument `str | None` is not assignable to parameter `extension` with type `str` in function `isort.core.process` [bad-argument-type] +ERROR isort/api.py:574:12-15: `key` may be uninitialized [unbound-name] +ERROR isort/api.py:574:20-23: `key` may be uninitialized [unbound-name] +ERROR isort/api.py:575:22-25: `key` may be uninitialized [unbound-name] +ERROR isort/core.py:86:41-48: Argument `tuple[None]` is not assignable to parameter `*iterables` with type `Iterable[str]` in function `itertools.chain.__new__` [bad-argument-type] +ERROR isort/core.py:126:54-61: Argument `tuple[None]` is not assignable to parameter `*iterables` with type `Iterable[str]` in function `itertools.chain.__new__` [bad-argument-type] +ERROR isort/output.py:45:20-51: Expected an iterable, got `tuple[Literal['FUTURE']] | tuple[str, ...]` [not-iterable] +ERROR isort/output.py:534:34-42: Argument `list[Unknown] | Unknown | None` is not assignable to parameter `comments` with type `Sequence[str]` in function `isort.wrap.import_statement` [bad-argument-type] +ERROR isort/output.py:544:34-42: Argument `list[Unknown] | Unknown | None` is not assignable to parameter `comments` with type `Sequence[str]` in function `isort.wrap.import_statement` [bad-argument-type] +ERROR isort/output.py:552:38-46: Argument `list[Unknown] | Unknown | None` is not assignable to parameter `comments` with type `Sequence[str]` in function `isort.wrap.import_statement` [bad-argument-type] +ERROR isort/place.py:104:31-50: Module `importlib.machinery` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR isort/settings.py:495:40-61: `IMPORT_HEADING_PREFIX` may be uninitialized [unbound-name] +ERROR isort/settings.py:499:40-60: `IMPORT_FOOTER_PREFIX` may be uninitialized [unbound-name] +ERROR isort/settings.py:835:23-27: String literal used as condition. It's equivalent to `True` [redundant-condition] +ERROR isort/sorting.py:121:34-37: Expected a callable, got `None` [not-callable] + INFO Checking project configured at `/pyrefly.toml` + INFO 18 errors (18 suppressed) diff --git a/scripts/ty_benchmark/snapshots/isort_Pyright.txt b/scripts/ty_benchmark/snapshots/isort_Pyright.txt new file mode 100644 index 0000000000..eb676ad18a --- /dev/null +++ b/scripts/ty_benchmark/snapshots/isort_Pyright.txt @@ -0,0 +1,50 @@ +/isort/api.py + /isort/api.py:206:33 - error: "file_content" is possibly unbound (reportPossiblyUnboundVariable) + /isort/api.py:574:12 - error: "key" is possibly unbound (reportPossiblyUnboundVariable) +/isort/format.py + /isort/format.py:120:47 - error: "colorama" is possibly unbound (reportPossiblyUnboundVariable) + /isort/format.py:121:51 - error: "colorama" is possibly unbound (reportPossiblyUnboundVariable) + /isort/format.py:122:27 - error: "colorama" is possibly unbound (reportPossiblyUnboundVariable) + /isort/format.py:123:29 - error: "colorama" is possibly unbound (reportPossiblyUnboundVariable) + /isort/format.py:129:35 - error: "colorama" is possibly unbound (reportPossiblyUnboundVariable) + /isort/format.py:156:9 - error: "colorama" is possibly unbound (reportPossiblyUnboundVariable) +/isort/main.py + /isort/main.py:542:32 - error: Cannot access attribute "__members__" for class "Enum" +   Attribute "__members__" is unknown (reportAttributeAccessIssue) + /isort/main.py:543:50 - error: Cannot access attribute "__members__" for class "Enum" +   Attribute "__members__" is unknown (reportAttributeAccessIssue) + /isort/main.py:949:46 - error: Object of type "Enum" is not callable +   Attribute "__call__" is unknown (reportCallIssue) + /isort/main.py:951:46 - error: "__getitem__" method not defined on type "Enum" (reportIndexIssue) + /isort/main.py:960:25 - error: Argument of type "Enum" cannot be assigned to parameter "class_or_tuple" of type "_ClassInfo" in function "isinstance" +   Type "Enum" is not assignable to type "_ClassInfo" +     "Enum" is not assignable to "type" +     "Enum" is not assignable to "UnionType" +     "Enum" is not assignable to "tuple[_ClassInfo, ...]" (reportArgumentType) +/isort/output.py + /isort/output.py:491:69 - error: "from_import" is possibly unbound (reportPossiblyUnboundVariable) + /isort/output.py:534:34 - error: Argument of type "Any | list[Any] | None" cannot be assigned to parameter "comments" of type "Sequence[str]" in function "import_statement" +   Type "Any | list[Any] | None" is not assignable to type "Sequence[str]" +     "None" is not assignable to "Sequence[str]" (reportArgumentType) + /isort/output.py:544:34 - error: Argument of type "Any | list[Any] | None" cannot be assigned to parameter "comments" of type "Sequence[str]" in function "import_statement" +   Type "Any | list[Any] | None" is not assignable to type "Sequence[str]" +     "None" is not assignable to "Sequence[str]" (reportArgumentType) + /isort/output.py:552:38 - error: Argument of type "Any | list[Any] | None" cannot be assigned to parameter "comments" of type "Sequence[str]" in function "import_statement" +   Type "Any | list[Any] | None" is not assignable to type "Sequence[str]" +     "None" is not assignable to "Sequence[str]" (reportArgumentType) + /isort/output.py:665:20 - error: No overloads for "__new__" match the provided arguments (reportCallIssue) + /isort/output.py:665:36 - error: Argument of type "type[_LineWithComments]" cannot be assigned to parameter "cls" of type "type[Self@_LineWithComments]" in function "__new__" +   Type "type[_LineWithComments]" is not assignable to type "type[Self@_LineWithComments]" (reportArgumentType) +/isort/place.py + /isort/place.py:104:41 - error: "machinery" is not a known attribute of module "importlib" (reportAttributeAccessIssue) +/isort/settings.py + /isort/settings.py:711:16 - error: Type "((...) -> list[str]) | None" is not assignable to return type "(...) -> list[str]" +   Type "((...) -> list[str]) | None" is not assignable to type "(...) -> list[str]" +     Type "None" is not assignable to type "(...) -> list[str]" (reportReturnType) +/isort/wrap.py + /isort/wrap.py:16:24 - error: Variable not allowed in type expression (reportInvalidTypeForm) +/isort/wrap_modes.py + /isort/wrap_modes.py:13:33 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /isort/wrap_modes.py:14:52 - error: Object of type "Enum" is not callable +   Attribute "__call__" is unknown (reportCallIssue) +24 errors, 0 warnings, 0 informations diff --git a/scripts/ty_benchmark/snapshots/isort_mypy.txt b/scripts/ty_benchmark/snapshots/isort_mypy.txt new file mode 100644 index 0000000000..3ea7f0aa77 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/isort_mypy.txt @@ -0,0 +1,2 @@ +Success: no issues found in 39 source files +Warning: unused section(s) in pyproject.toml: module = ['importlib_metadata.*', 'tests.*'] diff --git a/scripts/ty_benchmark/snapshots/isort_ty.txt b/scripts/ty_benchmark/snapshots/isort_ty.txt new file mode 100644 index 0000000000..692eba4803 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/isort_ty.txt @@ -0,0 +1,17 @@ +isort/_vendored/tomli/_re.py:7:10: error[unresolved-import] Cannot resolve imported module `tomli._parser` +isort/core.py:86:27: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[None]`, found `TextIO` +isort/core.py:126:40: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[None]`, found `TextIO` +isort/output.py:534:25: error[invalid-argument-type] Argument to function `import_statement` is incorrect: Expected `Sequence[str]`, found `@Todo | None | list[Unknown]` +isort/output.py:544:25: error[invalid-argument-type] Argument to function `import_statement` is incorrect: Expected `Sequence[str]`, found `@Todo | None | list[Unknown]` +isort/output.py:552:29: error[invalid-argument-type] Argument to function `import_statement` is incorrect: Expected `Sequence[str]`, found `@Todo | None | list[Unknown]` +isort/place.py:104:31: error[unresolved-attribute] Module `importlib` has no member `machinery` +isort/settings.py:641:9: error[invalid-assignment] Property `_known_patterns` defined in `Self@known_patterns` is read-only +isort/settings.py:665:9: error[invalid-assignment] Property `_section_comments` defined in `Self@section_comments` is read-only +isort/settings.py:673:9: error[invalid-assignment] Property `_section_comments_end` defined in `Self@section_comments_end` is read-only +isort/settings.py:681:9: error[invalid-assignment] Property `_skips` defined in `Self@skips` is read-only +isort/settings.py:689:9: error[invalid-assignment] Property `_skip_globs` defined in `Self@skip_globs` is read-only +isort/settings.py:698:13: error[invalid-assignment] Property `_sorting_function` defined in `Self@sorting_function` is read-only +isort/settings.py:700:13: error[invalid-assignment] Property `_sorting_function` defined in `Self@sorting_function` is read-only +isort/settings.py:706:21: error[invalid-assignment] Property `_sorting_function` defined in `Self@sorting_function` is read-only +isort/wrap_modes.py:41:17: error[unresolved-attribute] Object of type `(...) -> str` has no attribute `__name__` +Found 16 diagnostics diff --git a/scripts/ty_benchmark/snapshots/jinja_Pyrefly.txt b/scripts/ty_benchmark/snapshots/jinja_Pyrefly.txt new file mode 100644 index 0000000000..b4a5c75056 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/jinja_Pyrefly.txt @@ -0,0 +1,67 @@ +ERROR src/jinja2/async_utils.py:93:45-55: No matching overload found for function `iter` called with arguments: (AsyncIterable[V] | Iterable[V]) [no-matching-overload] +ERROR src/jinja2/compiler.py:221:9-19: Object of class `object` has no attribute `symbols` [missing-attribute] +ERROR src/jinja2/compiler.py:222:16-18: Returned type `object` is not assignable to declared return type `Self@Frame` [bad-return] +ERROR src/jinja2/compiler.py:1257:27-43: `loop_filter_func` may be uninitialized [unbound-name] +ERROR src/jinja2/compiler.py:1280:31-50: `iteration_indicator` may be uninitialized [unbound-name] +ERROR src/jinja2/compiler.py:1287:34-53: `iteration_indicator` may be uninitialized [unbound-name] +ERROR src/jinja2/compiler.py:1534:17-32: Object of class `Expr` has no attribute `append` [missing-attribute] +ERROR src/jinja2/debug.py:78:6-19: Function declared to return `TracebackType`, but one or more paths are missing an explicit `return` [bad-return] +ERROR src/jinja2/environment.py:352:14-21: Attribute `filters` cannot depend on type variable `V`, which is not in the scope of class `Environment` [invalid-type-var] +ERROR src/jinja2/environment.py:352:14-21: Attribute `filters` cannot depend on type variable `K`, which is not in the scope of class `Environment` [invalid-type-var] +ERROR src/jinja2/environment.py:352:14-21: Attribute `filters` cannot depend on type variable `_T`, which is not in the scope of class `Environment` [invalid-type-var] +ERROR src/jinja2/environment.py:435:9-21: Object of class `object` has no attribute `overlayed` [missing-attribute] +ERROR src/jinja2/environment.py:436:9-21: Object of class `object` has no attribute `linked_to` [missing-attribute] +ERROR src/jinja2/environment.py:443:13-21: Object of class `object` has no attribute `cache` [missing-attribute] +ERROR src/jinja2/environment.py:445:13-21: Object of class `object` has no attribute `cache` [missing-attribute] +ERROR src/jinja2/environment.py:447:9-22: Object of class `object` has no attribute `extensions` [missing-attribute] +ERROR src/jinja2/environment.py:449:13-26: Object of class `object` has no attribute `extensions` [missing-attribute] +ERROR src/jinja2/environment.py:449:45-47: Argument `object` is not assignable to parameter `environment` with type `Environment` in function `jinja2.ext.Extension.bind` [bad-argument-type] +ERROR src/jinja2/environment.py:451:13-26: Object of class `object` has no attribute `extensions` [missing-attribute] +ERROR src/jinja2/environment.py:451:50-52: Argument `object` is not assignable to parameter `environment` with type `Environment` in function `load_extensions` [bad-argument-type] +ERROR src/jinja2/environment.py:454:13-24: Object of class `object` has no attribute `is_async` [missing-attribute] +ERROR src/jinja2/environment.py:456:42-44: Argument `object` is not assignable to parameter `environment` with type `Self@Environment` in function `_environment_config_check` [bad-argument-type] +ERROR src/jinja2/environment.py:813:61-65: `expr` may be uninitialized [unbound-name] +ERROR src/jinja2/environment.py:894:17-25: `zip_file` may be uninitialized [unbound-name] +ERROR src/jinja2/environment.py:928:37-70: `in` is not supported between `str` and `None` [not-iterable] +ERROR src/jinja2/environment.py:1084:38-59: Argument `(Template & Undefined) | (Undefined & list[Template | str]) | str` is not assignable to parameter `name` with type `Template | str` in function `Environment.get_template` [bad-argument-type] +ERROR src/jinja2/environment.py:1251:23-42: `object` is not assignable to `Template` [bad-assignment] +ERROR src/jinja2/environment.py:1548:20-39: Instance-only attribute `__name__` of class `TemplateModule` is not visible on the class [missing-attribute] +ERROR src/jinja2/environment.py:1617:35-45: No matching overload found for function `typing.IO.writelines` called with arguments: (Generator[bytes, None, None] | Self@TemplateStream) [no-matching-overload] +ERROR src/jinja2/environment.py:1620:34-40: No matching overload found for function `typing.IO.write` called with arguments: (bytes | str) [no-matching-overload] +ERROR src/jinja2/exceptions.py:43:23-27: `Undefined | str | None` is not assignable to variable `message` with type `str | None` [bad-assignment] +ERROR src/jinja2/ext.py:30:67-70: Function declared to return `str` but is missing an explicit `return` [bad-return] +ERROR src/jinja2/ext.py:96:9-23: Object of class `object` has no attribute `environment` [missing-attribute] +ERROR src/jinja2/ext.py:97:16-18: Returned type `object` is not assignable to declared return type `Self@Extension` [bad-return] +ERROR src/jinja2/ext.py:258:36-50: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR src/jinja2/ext.py:318:40-320:10: No matching overload found for function `typing.MutableMapping.update` called with arguments: (gettext=((str) -> str) | ((...) -> str), ngettext=((str, str, int) -> str) | ((...) -> str), pgettext=((str, str) -> str) | ((...) -> str) | None, npgettext=((str, str, str, int) -> str) | ((...) -> str) | None) [no-matching-overload] +ERROR src/jinja2/filters.py:40:31-34: Function declared to return `str` but is missing an explicit `return` [bad-return] +ERROR src/jinja2/filters.py:120:13-21: Cannot set item in `list[None]` [unsupported-operation] +ERROR src/jinja2/filters.py:169:48-61: `dict_items[tuple[str, Any], Unknown]` is not assignable to `Iterable[tuple[str, Any]]` [bad-assignment] +ERROR src/jinja2/filters.py:308:22-56: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR src/jinja2/filters.py:730:34-38: `unit` may be uninitialized [unbound-name] +ERROR src/jinja2/filters.py:1352:9-25: `+=` is not supported between `V` and `V` [unsupported-operation] +ERROR src/jinja2/filters.py:1354:12-14: Returned type `V | Unknown` is not assignable to declared return type `V` [bad-return] +ERROR src/jinja2/idtracking.py:90:9-16: Object of class `object` has no attribute `refs` [missing-attribute] +ERROR src/jinja2/idtracking.py:91:9-17: Object of class `object` has no attribute `loads` [missing-attribute] +ERROR src/jinja2/idtracking.py:92:9-18: Object of class `object` has no attribute `stores` [missing-attribute] +ERROR src/jinja2/idtracking.py:93:16-18: Returned type `object` is not assignable to declared return type `Self@Symbols` [bad-return] +ERROR src/jinja2/lexer.py:816:31-51: Type of yielded value `tuple[Literal[1], str | tuple[str, ...], str]` is not assignable to declared return type `tuple[int, str, str]` [invalid-yield] +ERROR src/jinja2/loaders.py:143:32-38: `bucket` may be uninitialized [unbound-name] +ERROR src/jinja2/loaders.py:144:13-19: `bucket` may be uninitialized [unbound-name] +ERROR src/jinja2/loaders.py:145:28-34: `bucket` may be uninitialized [unbound-name] +ERROR src/jinja2/loaders.py:331:29-43: `str` is not assignable to attribute `_archive` with type `None` [bad-assignment] +ERROR src/jinja2/meta.py:79:30-40: Argument `tuple[type[Extends], type[FromImport], type[Import], type[Include]]` is not assignable to parameter `node_type` with type `tuple[type[Extends], ...] | type[Extends]` in function `jinja2.nodes.Node.find_all` [bad-argument-type] +ERROR src/jinja2/parser.py:160:29-31: Argument `object` is not assignable to parameter `self` with type `Node` in function `jinja2.nodes.Node.__init__` [bad-argument-type] +ERROR src/jinja2/parser.py:161:16-18: Returned type `object` is not assignable to declared return type `InternalName` [bad-return] +ERROR src/jinja2/parser.py:429:21-30: `Expr` is not assignable to attribute `call` with type `Call` [bad-assignment] +ERROR src/jinja2/parser.py:679:16-20: `node` may be uninitialized [unbound-name] +ERROR src/jinja2/parser.py:885:9-917:33: `Expr | None` is not assignable to `None` (caused by inconsistent types when breaking cycles) [bad-assignment] +ERROR src/jinja2/runtime.py:82:20-23: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR src/jinja2/runtime.py:144:2-22: Class `Mapping` has no class attribute `register` [missing-attribute] +ERROR src/jinja2/runtime.py:423:14-23: Attribute `_iterable` cannot depend on type variable `V`, which is not in the scope of class `LoopContext` [invalid-type-var] +ERROR src/jinja2/runtime.py:424:14-23: Attribute `_iterator` cannot depend on type variable `V`, which is not in the scope of class `LoopContext` [invalid-type-var] +ERROR src/jinja2/sandbox.py:244:33-43: Cannot set item in `dict[str, ((n: int = 5, html: bool = True, min: int = 20, max: int = 100) -> str) | type[Cycler] | type[Joiner] | type[Namespace] | type[dict] | type[range]]` [unsupported-operation] +ERROR src/jinja2/utils.py:271:16-39: `>` is not supported between `int` and `None` [unsupported-operation] +ERROR src/jinja2/utils.py:431:2-29: Class `MutableMapping` has no class attribute `register` [missing-attribute] + INFO Checking project configured at `/pyrefly.toml` + INFO 65 errors (80 suppressed) diff --git a/scripts/ty_benchmark/snapshots/jinja_Pyright.txt b/scripts/ty_benchmark/snapshots/jinja_Pyright.txt new file mode 100644 index 0000000000..967d9c6803 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/jinja_Pyright.txt @@ -0,0 +1,114 @@ +/src/jinja2/async_utils.py + /src/jinja2/async_utils.py:91:25 - error: Cannot access attribute "__aiter__" for class "Iterable[V@auto_aiter]" +   Attribute "__aiter__" is unknown (reportAttributeAccessIssue) + /src/jinja2/async_utils.py:93:41 - error: No overloads for "iter" match the provided arguments (reportCallIssue) + /src/jinja2/async_utils.py:93:46 - error: Argument of type "AsyncIterable[V@auto_aiter] | Iterable[V@auto_aiter]" cannot be assigned to parameter "object" of type "_GetItemIterable[_T@iter]" in function "iter" +   Type "AsyncIterable[V@auto_aiter] | Iterable[V@auto_aiter]" is not assignable to type "_GetItemIterable[_T@iter]" +     "AsyncIterable[V@auto_aiter]" is incompatible with protocol "_GetItemIterable[_T@iter]" +       "__getitem__" is not present (reportArgumentType) +/src/jinja2/compiler.py + /src/jinja2/compiler.py:1257:27 - error: "loop_filter_func" is possibly unbound (reportPossiblyUnboundVariable) + /src/jinja2/compiler.py:1280:31 - error: "iteration_indicator" is possibly unbound (reportPossiblyUnboundVariable) + /src/jinja2/compiler.py:1287:34 - error: "iteration_indicator" is possibly unbound (reportPossiblyUnboundVariable) + /src/jinja2/compiler.py:1410:9 - error: Declaration "finalize" is obscured by a declaration of the same name (reportRedeclaration) + /src/jinja2/compiler.py:1424:24 - error: Type "None" is not assignable to declared type "(value: Any) -> Any" +   Type "None" is not assignable to type "(value: Any) -> Any" (reportAssignmentType) +/src/jinja2/debug.py + /src/jinja2/debug.py:78:6 - error: Function with declared return type "TracebackType" must return value on all code paths +   "None" is not assignable to "TracebackType" (reportReturnType) +/src/jinja2/environment.py + /src/jinja2/environment.py:711:9 - error: Overload 1 for "compile" overlaps overload 2 and returns an incompatible type (reportOverlappingOverload) + /src/jinja2/environment.py:823:9 - error: Parameter declaration "log_function" is obscured by a declaration of the same name (reportRedeclaration) + /src/jinja2/environment.py:894:17 - error: "zip_file" is possibly unbound (reportPossiblyUnboundVariable) + /src/jinja2/environment.py:901:9 - error: Parameter declaration "filter_func" is obscured by a declaration of the same name (reportRedeclaration) + /src/jinja2/environment.py:1617:17 - error: No overloads for "writelines" match the provided arguments (reportCallIssue) + /src/jinja2/environment.py:1617:36 - error: Argument of type "Generator[bytes, None, None] | Self@TemplateStream" cannot be assigned to parameter "lines" of type "Iterable[bytes]" in function "writelines" +   Type "Generator[bytes, None, None] | TemplateStream*" is not assignable to type "Iterable[bytes]" +     "TemplateStream*" is incompatible with protocol "Iterable[bytes]" +       "__iter__" is an incompatible type +         Type "() -> TemplateStream" is not assignable to type "() -> Iterator[_T_co@Iterable]" +           Function return type "TemplateStream" is incompatible with type "Iterator[_T_co@Iterable]" (reportArgumentType) + /src/jinja2/environment.py:1617:36 - error: Argument of type "Generator[bytes, None, None] | Self@TemplateStream" cannot be assigned to parameter "lines" of type "Iterable[ReadableBuffer]" in function "writelines" +   Type "Generator[bytes, None, None] | TemplateStream*" is not assignable to type "Iterable[ReadableBuffer]" +     "TemplateStream*" is incompatible with protocol "Iterable[ReadableBuffer]" +       "__iter__" is an incompatible type +         Type "() -> TemplateStream" is not assignable to type "() -> Iterator[_T_co@Iterable]" +           Function return type "TemplateStream" is incompatible with type "Iterator[_T_co@Iterable]" (reportArgumentType) + /src/jinja2/environment.py:1620:21 - error: No overloads for "write" match the provided arguments (reportCallIssue) + /src/jinja2/environment.py:1620:35 - error: Argument of type "bytes | str" cannot be assigned to parameter "s" of type "bytes" in function "write" +   Type "bytes | str" is not assignable to type "bytes" +     "str" is not assignable to "bytes" (reportArgumentType) + /src/jinja2/environment.py:1620:35 - error: Argument of type "bytes | str" cannot be assigned to parameter "buffer" of type "ReadableBuffer" in function "write" +   Type "bytes | str" is not assignable to type "ReadableBuffer" +     "str" is incompatible with protocol "Buffer" +       "__buffer__" is not present (reportArgumentType) +/src/jinja2/exceptions.py + /src/jinja2/exceptions.py:45:14 - error: "message" incorrectly overrides property of same name in class "TemplateError" (reportIncompatibleMethodOverride) +/src/jinja2/ext.py + /src/jinja2/ext.py:30:67 - error: Function with declared return type "str" must return value on all code paths +   "None" is not assignable to "str" (reportReturnType) +/src/jinja2/filters.py + /src/jinja2/filters.py:40:31 - error: Function with declared return type "str" must return value on all code paths +   "None" is not assignable to "str" (reportReturnType) + /src/jinja2/filters.py:120:13 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /src/jinja2/filters.py:120:13 - error: Argument of type "Any | Undefined" cannot be assigned to parameter "value" of type "None" in function "__setitem__" +   Type "Any | Undefined" is not assignable to type "None" +     "Undefined" is not assignable to "None" (reportArgumentType) + /src/jinja2/filters.py:169:48 - error: Type "dict_items[str, Any] | dict_items[tuple[str, Any], Unknown]" is not assignable to declared type "Iterable[tuple[str, Any]]" +   Type "dict_items[str, Any] | dict_items[tuple[str, Any], Unknown]" is not assignable to type "Iterable[tuple[str, Any]]" +     "dict_items[tuple[str, Any], Unknown]" is not assignable to "Iterable[tuple[str, Any]]" +       Type parameter "_T_co@Iterable" is covariant, but "tuple[tuple[str, Any], Unknown]" is not a subtype of "tuple[str, Any]" +         "tuple[tuple[str, Any], Unknown]" is not assignable to "tuple[str, Any]" +           Tuple entry 1 is incorrect type (reportAssignmentType) + /src/jinja2/filters.py:730:34 - error: "unit" is possibly unbound (reportPossiblyUnboundVariable) + /src/jinja2/filters.py:730:45 - error: "prefix" is possibly unbound (reportPossiblyUnboundVariable) + /src/jinja2/filters.py:803:19 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) + /src/jinja2/filters.py:905:12 - error: Operator ">=" not supported for "None" (reportOptionalOperand) + /src/jinja2/filters.py:907:18 - error: Operator "+" not supported for types "int" and "int | None" +   Operator "+" not supported for types "int" and "None" (reportOperatorIssue) + /src/jinja2/filters.py:1345:16 - error: Type "(Any) -> Any" is not assignable to declared type "(x: V@do_sum) -> V@do_sum" +   Type "(Any) -> Any" is not assignable to type "(x: V@do_sum) -> V@do_sum" +     Missing keyword parameter "x" +       Position-only parameter mismatch; parameter "x" is not position-only +       Position-only parameter mismatch; expected 1 but received 0 (reportAssignmentType) + /src/jinja2/filters.py:1352:9 - error: Operator "+=" not supported for types "V@do_sum" and "V@do_sum" +   Operator "+" not supported for types "object*" and "object*" (reportOperatorIssue) + /src/jinja2/filters.py:1730:16 - error: Type "(Any) -> Any" is not assignable to declared type "(item: Any) -> Any" +   Type "(Any) -> Any" is not assignable to type "(item: Any) -> Any" +     Missing keyword parameter "item" +       Position-only parameter mismatch; parameter "item" is not position-only +       Position-only parameter mismatch; expected 1 but received 0 (reportAssignmentType) + /src/jinja2/filters.py:1759:21 - error: Type "(Any) -> Any" is not assignable to declared type "(x: V@transfunc) -> V@transfunc" +   Type "(Any) -> Any" is not assignable to type "(x: V@transfunc) -> V@transfunc" +     Missing keyword parameter "x" +       Position-only parameter mismatch; parameter "x" is not position-only +       Position-only parameter mismatch; expected 1 but received 0 (reportAssignmentType) +/src/jinja2/loaders.py + /src/jinja2/loaders.py:143:32 - error: "bucket" is possibly unbound (reportPossiblyUnboundVariable) + /src/jinja2/loaders.py:144:13 - error: "bucket" is possibly unbound (reportPossiblyUnboundVariable) + /src/jinja2/loaders.py:145:28 - error: "bucket" is possibly unbound (reportPossiblyUnboundVariable) + /src/jinja2/loaders.py:374:9 - error: Declaration "up_to_date" is obscured by a declaration of the same name (reportRedeclaration) + /src/jinja2/loaders.py:399:26 - error: Type "None" is not assignable to declared type "() -> bool" +   Type "None" is not assignable to type "() -> bool" (reportAssignmentType) +/src/jinja2/nodes.py + /src/jinja2/nodes.py:217:25 - error: Argument of type "Iterator[Node]" cannot be assigned to parameter "iterable" of type "Iterable[Self@Node]" in function "extend" +   "Iterator[Node]" is not assignable to "Iterable[Self@Node]" +     Type parameter "_T_co@Iterable" is covariant, but "Node" is not a subtype of "Self@Node" +       Type "Node" is not assignable to type "Self@Node" (reportArgumentType) + /src/jinja2/nodes.py:228:25 - error: Argument of type "Iterator[Node]" cannot be assigned to parameter "iterable" of type "Iterable[Self@Node]" in function "extend" +   "Iterator[Node]" is not assignable to "Iterable[Self@Node]" +     Type parameter "_T_co@Iterable" is covariant, but "Node" is not a subtype of "Self@Node" +       Type "Node" is not assignable to type "Self@Node" (reportArgumentType) + /src/jinja2/nodes.py:237:25 - error: Argument of type "Iterator[Node]" cannot be assigned to parameter "iterable" of type "Iterable[Self@Node]" in function "extend" +   "Iterator[Node]" is not assignable to "Iterable[Self@Node]" +     Type parameter "_T_co@Iterable" is covariant, but "Node" is not a subtype of "Self@Node" +       Type "Node" is not assignable to type "Self@Node" (reportArgumentType) +/src/jinja2/runtime.py + /src/jinja2/runtime.py:144:14 - error: Cannot access attribute "register" for class "type[Mapping[_KT@Mapping, _VT_co@Mapping]]" +   Attribute "register" is unknown (reportAttributeAccessIssue) +/src/jinja2/utils.py + /src/jinja2/utils.py:91:28 - warning: TypeVar "F" appears only once in generic function signature +   Use "(...) -> Any" instead (reportInvalidTypeVarUse) + /src/jinja2/utils.py:431:21 - error: Cannot access attribute "register" for class "type[MutableMapping[_KT@MutableMapping, _VT@MutableMapping]]" +   Attribute "register" is unknown (reportAttributeAccessIssue) +44 errors, 1 warning, 0 informations diff --git a/scripts/ty_benchmark/snapshots/jinja_mypy.txt b/scripts/ty_benchmark/snapshots/jinja_mypy.txt new file mode 100644 index 0000000000..34f6095e7f --- /dev/null +++ b/scripts/ty_benchmark/snapshots/jinja_mypy.txt @@ -0,0 +1,7 @@ +src/jinja2/runtime.py:370: error: Unused "type: ignore" comment [unused-ignore] +src/jinja2/runtime.py:384: error: Unused "type: ignore" comment [unused-ignore] +src/jinja2/environment.py:1290: error: Unused "type: ignore" comment [unused-ignore] +src/jinja2/environment.py:1311: error: Unused "type: ignore" comment [unused-ignore] +src/jinja2/nativetypes.py:108: error: Unused "type: ignore" comment [unused-ignore] +src/jinja2/nativetypes.py:123: error: Unused "type: ignore" comment [unused-ignore] +Found 6 errors in 3 files (checked 25 source files) diff --git a/scripts/ty_benchmark/snapshots/jinja_ty.txt b/scripts/ty_benchmark/snapshots/jinja_ty.txt new file mode 100644 index 0000000000..7e835ee50f --- /dev/null +++ b/scripts/ty_benchmark/snapshots/jinja_ty.txt @@ -0,0 +1,24 @@ +src/jinja2/async_utils.py:68:22: warning[redundant-cast] Value is already of type `Awaitable[V@auto_await]` +src/jinja2/async_utils.py:91:16: error[call-non-callable] Object of type `object` is not callable +src/jinja2/debug.py:78:6: error[invalid-return-type] Function can implicitly return `None`, which is not assignable to return type `TracebackType` +src/jinja2/defaults.py:24:19: error[escape-character-in-forward-annotation] Type expressions cannot contain escape characters +src/jinja2/environment.py:307:27: error[escape-character-in-forward-annotation] Type expressions cannot contain escape characters +src/jinja2/environment.py:399:27: error[escape-character-in-forward-annotation] Type expressions cannot contain escape characters +src/jinja2/environment.py:1177:27: error[escape-character-in-forward-annotation] Type expressions cannot contain escape characters +src/jinja2/environment.py:1617:17: error[no-matching-overload] No overload of bound method `writelines` matches arguments +src/jinja2/exceptions.py:43:23: error[invalid-assignment] Object of type `str | Undefined | None` is not assignable to `str | None` +src/jinja2/filters.py:169:48: error[invalid-assignment] Object of type `dict_items[object, object]` is not assignable to `Iterable[tuple[str, Any]]` +src/jinja2/filters.py:1352:9: error[unsupported-operator] Operator `+=` is unsupported between objects of type `V@do_sum` and `Any | V@do_sum` +src/jinja2/lexer.py:667:40: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `str | int | Any` +src/jinja2/loaders.py:190:28: error[no-matching-overload] No overload of function `fspath` matches arguments +src/jinja2/loaders.py:639:25: error[no-matching-overload] No overload of function `fspath` matches arguments +src/jinja2/parser.py:429:9: error[invalid-assignment] Object of type `Expr` is not assignable to attribute `call` of type `Call` +src/jinja2/parser.py:1024:37: error[invalid-argument-type] Argument to bound method `extend` is incorrect: Expected `Iterable[Node]`, found `(Node & Top[list[Unknown]]) | list[Node]` +src/jinja2/runtime.py:144:2: error[unresolved-attribute] Class `Mapping` has no attribute `register` +src/jinja2/runtime.py:690:38: error[invalid-assignment] Object of type `(Unknown & ~(() -> object)) | bool | (((str | None, /) -> bool) & ~(() -> object))` is not assignable to `bool | None` +src/jinja2/runtime.py:770:40: error[invalid-argument-type] Argument to bound method `_invoke` is incorrect: Expected `bool`, found `@Todo | bool | None` +src/jinja2/runtime.py:948:14: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `Never` +src/jinja2/utils.py:100:23: error[unresolved-attribute] Object of type `F@internalcode` has no attribute `__code__` +src/jinja2/utils.py:431:2: error[unresolved-attribute] Class `MutableMapping` has no attribute `register` +src/jinja2/utils.py:472:16: error[invalid-return-type] Return type does not match returned value: expected `Self@copy`, found `LRUCache` +Found 23 diagnostics diff --git a/scripts/ty_benchmark/snapshots/pandas-stubs_Pyrefly.txt b/scripts/ty_benchmark/snapshots/pandas-stubs_Pyrefly.txt new file mode 100644 index 0000000000..b5d43f6049 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/pandas-stubs_Pyrefly.txt @@ -0,0 +1,19 @@ +ERROR pandas-stubs/core/arrays/categorical.pyi:114:9-21: Class member `Categorical.__contains__` overrides parent class `ExtensionArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas-stubs/core/arrays/categorical.pyi:116:9-20: Class member `Categorical.__getitem__` overrides parent class `ExtensionArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas-stubs/core/arrays/datetimelike.pyi:74:9-20: Class member `DatetimeLikeArrayMixin.__getitem__` overrides parent class `ExtensionArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas-stubs/core/arrays/interval.pyi:64:9-20: Class member `IntervalArray.__getitem__` overrides parent class `ExtensionArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas-stubs/core/arrays/sparse/array.pyi:64:9-20: Class member `SparseArray.__getitem__` overrides parent class `ExtensionArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas-stubs/core/frame.pyi:185:9-20: Class member `_iLocIndexerFrame.__getitem__` overrides parent class `_iLocIndexer` in an inconsistent manner [bad-param-name-override] +ERROR pandas-stubs/core/frame.pyi:204:9-20: Class member `_iLocIndexerFrame.__setitem__` overrides parent class `_iLocIndexer` in an inconsistent manner [bad-param-name-override] +ERROR pandas-stubs/core/frame.pyi:229:9-20: Class member `_LocIndexerFrame.__getitem__` overrides parent class `_LocIndexer` in an inconsistent manner [bad-param-name-override] +ERROR pandas-stubs/core/frame.pyi:284:9-20: Class member `_LocIndexerFrame.__setitem__` overrides parent class `_LocIndexer` in an inconsistent manner [bad-param-name-override] +ERROR pandas-stubs/core/frame.pyi:320:9-20: Class member `_iAtIndexerFrame.__getitem__` overrides parent class `_iAtIndexer` in an inconsistent manner [bad-param-name-override] +ERROR pandas-stubs/core/frame.pyi:321:9-20: Class member `_iAtIndexerFrame.__setitem__` overrides parent class `_iAtIndexer` in an inconsistent manner [bad-param-name-override] +ERROR pandas-stubs/core/frame.pyi:328:9-20: Class member `_AtIndexerFrame.__getitem__` overrides parent class `_AtIndexer` in an inconsistent manner [bad-param-name-override] +ERROR pandas-stubs/core/frame.pyi:339:9-20: Class member `_AtIndexerFrame.__setitem__` overrides parent class `_AtIndexer` in an inconsistent manner [bad-param-name-override] +ERROR pandas-stubs/core/groupby/generic.pyi:452:9-20: Class member `DataFrameGroupBy.__getattr__` overrides parent class `GroupBy` in an inconsistent manner [bad-param-name-override] +ERROR pandas-stubs/core/series.pyi:272:9-20: Class member `_iLocIndexerSeries.__getitem__` overrides parent class `_iLocIndexer` in an inconsistent manner [bad-param-name-override] +ERROR pandas-stubs/core/series.pyi:281:9-20: Class member `_iLocIndexerSeries.__setitem__` overrides parent class `_iLocIndexer` in an inconsistent manner [bad-param-name-override] +ERROR pandas-stubs/core/series.pyi:318:9-20: Class member `_LocIndexerSeries.__setitem__` overrides parent class `_LocIndexer` in an inconsistent manner [bad-param-name-override] + INFO Checking project configured at `/pyrefly.toml` + INFO 17 errors (108 suppressed) diff --git a/scripts/ty_benchmark/snapshots/pandas-stubs_Pyright.txt b/scripts/ty_benchmark/snapshots/pandas-stubs_Pyright.txt new file mode 100644 index 0000000000..4fd42411a6 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/pandas-stubs_Pyright.txt @@ -0,0 +1 @@ +0 errors, 0 warnings, 0 informations diff --git a/scripts/ty_benchmark/snapshots/pandas-stubs_mypy.txt b/scripts/ty_benchmark/snapshots/pandas-stubs_mypy.txt new file mode 100644 index 0000000000..c94277910c --- /dev/null +++ b/scripts/ty_benchmark/snapshots/pandas-stubs_mypy.txt @@ -0,0 +1 @@ +Success: no issues found in 178 source files diff --git a/scripts/ty_benchmark/snapshots/pandas-stubs_ty.txt b/scripts/ty_benchmark/snapshots/pandas-stubs_ty.txt new file mode 100644 index 0000000000..da15b85ea3 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/pandas-stubs_ty.txt @@ -0,0 +1,9 @@ +pandas-stubs/_typing.pyi:861:25: error[invalid-argument-type] Argument to class `ndarray` is incorrect: Expected `tuple[int, ...]`, found `typing.TypeVar` +pandas-stubs/_typing.pyi:861:44: error[invalid-argument-type] Argument to class `dtype` is incorrect: Expected `generic[Any]`, found `typing.TypeVar` +pandas-stubs/_typing.pyi:865:48: error[invalid-argument-type] Argument to class `dtype` is incorrect: Expected `generic[Any]`, found `typing.TypeVar` +pandas-stubs/_typing.pyi:877:53: error[invalid-argument-type] Argument to class `dtype` is incorrect: Expected `generic[Any]`, found `typing.TypeVar` +pandas-stubs/core/series.pyi:338:57: error[invalid-argument-type] Argument to class `IndexOpsMixin` is incorrect: Expected `str | bytes | int | ... omitted 12 union elements`, found `typing.TypeVar` +pandas-stubs/io/excel/_base.pyi:16:6: error[unresolved-import] Cannot resolve imported module `openpyxl.workbook.workbook` +pandas-stubs/io/excel/_base.pyi:20:6: error[unresolved-import] Cannot resolve imported module `xlrd.book` +Found 7 diagnostics +WARN Ignoring the `tool.ty` section in `/pyproject.toml` because `/ty.toml` takes precedence. diff --git a/scripts/ty_benchmark/snapshots/pandas_Pyrefly.txt b/scripts/ty_benchmark/snapshots/pandas_Pyrefly.txt new file mode 100644 index 0000000000..72c9ad7328 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/pandas_Pyrefly.txt @@ -0,0 +1,1642 @@ +ERROR pandas/_config/localization.py:172:31-42: `out_locales` may be uninitialized [unbound-name] +ERROR pandas/_config/localization.py:175:39-50: `out_locales` may be uninitialized [unbound-name] +ERROR pandas/_libs/sparse.pyi:43:9-18: Class member `BlockIndex.intersect` overrides parent class `SparseIndex` in an inconsistent manner [bad-param-name-override] +ERROR pandas/_libs/sparse.pyi:44:9-19: Class member `BlockIndex.make_union` overrides parent class `SparseIndex` in an inconsistent manner [bad-param-name-override] +ERROR pandas/_testing/__init__.py:167:8-21: No matching overload found for function `numpy.datetime64.__new__` called with arguments: (type[datetime64[_DT64ItemT_co]], Literal['NaT'], str) [no-matching-overload] +ERROR pandas/_testing/__init__.py:167:8-21: No matching overload found for function `numpy.timedelta64.__new__` called with arguments: (type[timedelta64[_TD64ItemT_co]], Literal['NaT'], str) [no-matching-overload] +ERROR pandas/_testing/__init__.py:507:25-39: Module `pandas.core.arrays` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/_testing/__init__.py:509:25-39: Module `pandas.core.arrays` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/_testing/_hypothesis.py:57:15-55: Argument `NaTType | datetime` is not assignable to parameter `min_value` with type `datetime` in function `hypothesis.strategies._internal.datetime.datetimes` [bad-argument-type] +ERROR pandas/_testing/_hypothesis.py:58:15-55: Argument `NaTType | datetime` is not assignable to parameter `max_value` with type `datetime` in function `hypothesis.strategies._internal.datetime.datetimes` [bad-argument-type] +ERROR pandas/_testing/_hypothesis.py:72:9-88:6: No matching overload found for function `map.__new__` called with arguments: (type[map[_S]], [T](thing: type[T]) -> SearchStrategy[T], list[type[BQuarterBegin] | type[BQuarterEnd] | type[BYearBegin] | type[BYearEnd] | type[BusinessMonthBegin] | type[BusinessMonthEnd] | type[MonthBegin] | type[MonthEnd] | type[QuarterBegin] | type[QuarterEnd] | type[YearBegin] | type[YearEnd]]) [no-matching-overload] +ERROR pandas/_testing/asserters.py:344:31-39: `mismatch` may be uninitialized [unbound-name] +ERROR pandas/_testing/asserters.py:345:51-59: `mismatch` may be uninitialized [unbound-name] +ERROR pandas/_testing/asserters.py:347:27-35: `mismatch` may be uninitialized [unbound-name] +ERROR pandas/_version.py:44:5-12: Object of class `VersioneerConfig` has no attribute `VCS` [missing-attribute] +ERROR pandas/_version.py:45:5-14: Object of class `VersioneerConfig` has no attribute `style` [missing-attribute] +ERROR pandas/_version.py:46:5-19: Object of class `VersioneerConfig` has no attribute `tag_prefix` [missing-attribute] +ERROR pandas/_version.py:47:5-25: Object of class `VersioneerConfig` has no attribute `parentdir_prefix` [missing-attribute] +ERROR pandas/_version.py:48:5-27: Object of class `VersioneerConfig` has no attribute `versionfile_source` [missing-attribute] +ERROR pandas/_version.py:49:5-16: Object of class `VersioneerConfig` has no attribute `verbose` [missing-attribute] +ERROR pandas/_version.py:101:16-23: Object of class `BaseException` has no attribute `errno` +Object of class `NoneType` has no attribute `errno` [missing-attribute] +ERROR pandas/_version.py:111:14-53: Object of class `str` has no attribute `decode` [missing-attribute] +ERROR pandas/compat/numpy/function.py:187:5-28: Implementation signature `(axis: ndarray[tuple[Any, ...], dtype[Any]] | AxisNoneT, args: Unknown, kwargs: Unknown) -> AxisNoneT | None` does not accept all arguments that overload signature `(axis: AxisNoneT, args: Unknown, kwargs: Unknown) -> AxisNoneT` accepts [inconsistent-overload] +ERROR pandas/compat/numpy/function.py:187:5-28: Overload return type `Literal['columns', 'index', 'rows'] | int | None` is not assignable to implementation return type `Literal['columns'] | None` [inconsistent-overload] +ERROR pandas/compat/pickle_compat.py:109:36-39: Expected 1 positional argument, got 3 in function `object.__new__` [bad-argument-count] +ERROR pandas/compat/pickle_compat.py:112:36-39: Expected 1 positional argument, got 3 in function `object.__new__` [bad-argument-count] +ERROR pandas/compat/pickle_compat.py:114:36-38: Expected 1 positional argument, got 4 in function `object.__new__` [bad-argument-count] +ERROR pandas/compat/pyarrow.py:11:29-43: Argument `str | Unknown | None` is not assignable to parameter `version` with type `str` in function `pandas.util.version.Version.__init__` [bad-argument-type] +ERROR pandas/conftest.py:765:29-40: Cannot index into `int` [bad-index] +ERROR pandas/conftest.py:766:30-42: Cannot index into `int` [bad-index] +ERROR pandas/conftest.py:767:39-43: Argument `list[int] | list[Unknown] | Unknown` is not assignable to parameter `tuples` with type `Iterable[tuple[Hashable, ...]]` in function `pandas.core.indexes.multi.MultiIndex.from_tuples` [bad-argument-type] +ERROR pandas/conftest.py:1479:12-1481:6: Returned type `NaTType | Timestamp` is not assignable to declared return type `Timestamp` [bad-return] +ERROR pandas/core/_numba/executor.py:48:22-54: Type `prange` is not iterable [not-iterable] +ERROR pandas/core/_numba/executor.py:52:22-54: Type `prange` is not iterable [not-iterable] +ERROR pandas/core/_numba/executor.py:78:22-51: Type `prange` is not iterable [not-iterable] +ERROR pandas/core/_numba/executor.py:103:22-51: Type `prange` is not iterable [not-iterable] +ERROR pandas/core/_numba/extensions.py:22:5-16: Could not import `NativeValue` from `numba.core.extending` [missing-module-attribute] +ERROR pandas/core/_numba/extensions.py:23:5-8: Could not import `box` from `numba.core.extending` [missing-module-attribute] +ERROR pandas/core/_numba/extensions.py:24:5-18: Could not import `lower_builtin` from `numba.core.extending` [missing-module-attribute] +ERROR pandas/core/_numba/extensions.py:29:5-19: Could not import `register_model` from `numba.core.extending` [missing-module-attribute] +ERROR pandas/core/_numba/extensions.py:31:5-16: Could not import `typeof_impl` from `numba.core.extending` [missing-module-attribute] +ERROR pandas/core/_numba/extensions.py:32:5-10: Could not import `unbox` from `numba.core.extending` [missing-module-attribute] +ERROR pandas/core/_numba/extensions.py:61:9-26: Object of class `Index` has no attribute `_numba_data` [missing-attribute] +ERROR pandas/core/_numba/extensions.py:64:13-30: Object of class `Index` has no attribute `_numba_data` [missing-attribute] +ERROR pandas/core/_numba/extensions.py:74:48-51: Expected a type form, got instance of `(iterable: Iterable[object], /) -> bool` [not-a-type] +ERROR pandas/core/_numba/extensions.py:259:29-33: Could not import `Dict` from `numba.typed` [missing-module-attribute] +ERROR pandas/core/_numba/extensions.py:574:28-36: Missing argument `obj` in function `pandas._libs.indexing.NDFrameIndexerBase.__init__` [missing-argument] +ERROR pandas/core/_numba/kernels/mean_.py:135:21-47: `num_consecutive_same_value` is uninitialized [unbound-name] +ERROR pandas/core/_numba/kernels/mean_.py:136:21-31: `prev_value` is uninitialized [unbound-name] +ERROR pandas/core/_numba/kernels/mean_.py:141:16-42: `num_consecutive_same_value` may be uninitialized [unbound-name] +ERROR pandas/core/_numba/kernels/mean_.py:142:26-36: `prev_value` may be uninitialized [unbound-name] +ERROR pandas/core/_numba/kernels/sum_.py:135:21-47: `num_consecutive_same_value` is uninitialized [unbound-name] +ERROR pandas/core/_numba/kernels/sum_.py:136:21-31: `prev_value` is uninitialized [unbound-name] +ERROR pandas/core/_numba/kernels/sum_.py:142:16-42: `num_consecutive_same_value` may be uninitialized [unbound-name] +ERROR pandas/core/_numba/kernels/sum_.py:143:26-36: `prev_value` may be uninitialized [unbound-name] +ERROR pandas/core/_numba/kernels/var_.py:144:21-47: `num_consecutive_same_value` is uninitialized [unbound-name] +ERROR pandas/core/_numba/kernels/var_.py:145:21-31: `prev_value` is uninitialized [unbound-name] +ERROR pandas/core/_numba/kernels/var_.py:149:29-55: `num_consecutive_same_value` may be uninitialized [unbound-name] +ERROR pandas/core/algorithms.py:214:16-22: Returned type `ExtensionArray & ArrayLikeT` is not assignable to declared return type `ArrayLikeT` [bad-return] +ERROR pandas/core/algorithms.py:257:12-18: Returned type `ExtensionArray | Index | NumpyExtensionArray | Series | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to declared return type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` [bad-return] +ERROR pandas/core/algorithms.py:469:16-29: Object of class `ndarray` has no attribute `unique` [missing-attribute] +ERROR pandas/core/algorithms.py:476:45-51: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `_get_hashtable_algo` [bad-argument-type] +ERROR pandas/core/algorithms.py:546:33-39: Argument `ExtensionArray | Index | SequenceNotStr[Unknown] | Series | ndarray[tuple[Any, ...], dtype[Any]] | range` is not assignable to parameter `values` with type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas.core.arrays.base.ExtensionArray.isin` [bad-argument-type] +ERROR pandas/core/algorithms.py:550:43-49: Argument `ExtensionArray | Index | SequenceNotStr[Unknown] | Series | ndarray[tuple[Any, ...], dtype[Any]] | range` is not assignable to parameter `values` with type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas.core.arrays.base.ExtensionArray.isin` [bad-argument-type] +ERROR pandas/core/algorithms.py:551:30-42: Object of class `SequenceNotStr` has no attribute `dtype` +Object of class `range` has no attribute `dtype` [missing-attribute] +ERROR pandas/core/algorithms.py:555:30-42: Object of class `SequenceNotStr` has no attribute `dtype` +Object of class `range` has no attribute `dtype` [missing-attribute] +ERROR pandas/core/algorithms.py:556:34-47: Object of class `SequenceNotStr` has no attribute `astype` +Object of class `range` has no attribute `astype` [missing-attribute] +ERROR pandas/core/algorithms.py:577:12-28: Object of class `bool` has no attribute `any` [missing-attribute] +ERROR pandas/core/algorithms.py:586:38-50: Argument `dtype[Any] | object` is not assignable to parameter `*dtypes` with type `dtype[Any]` in function `pandas.core.dtypes.cast.np_find_common_type` [bad-argument-type] +ERROR pandas/core/algorithms.py:587:18-31: Object of class `SequenceNotStr` has no attribute `astype` +Object of class `range` has no attribute `astype` [missing-attribute] +ERROR pandas/core/algorithms.py:591:27-33: Argument `ExtensionArray | Index | SequenceNotStr[Unknown] | Series | ndarray[tuple[Any, ...], dtype[Any]] | range | Unknown` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas._libs.hashtable.ismember` [bad-argument-type] +ERROR pandas/core/algorithms.py:855:32-67: `ExtensionArray | Index | Series | ndarray[tuple[Any, ...], dtype[Any]] | Unknown` is not assignable to upper bound `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` of type variable `ArrayLikeT` [bad-specialization] +ERROR pandas/core/algorithms.py:857:12-26: Returned type `tuple[ndarray[tuple[Any, ...], dtype[signedinteger[_32Bit | _64Bit]]] | ndarray[tuple[Any, ...], dtype[Any]] | Unknown, ExtensionArray | Index | Series | ndarray[tuple[Any, ...], dtype[Any]] | Unknown]` is not assignable to declared return type `tuple[ndarray[tuple[Any, ...], dtype[Any]], Index | ndarray[tuple[Any, ...], dtype[Any]]]` [bad-return] +ERROR pandas/core/algorithms.py:930:54-60: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `value_counts_arraylike` [bad-argument-type] +ERROR pandas/core/algorithms.py:951:36-57: No matching overload found for function `pandas.core.frame.DataFrame.sort_values` called with arguments: (ascending=bool) [no-matching-overload] +ERROR pandas/core/algorithms.py:954:27-37: Object of class `DatetimeArray` has no attribute `sum` +Object of class `PeriodArray` has no attribute `sum` [missing-attribute] +ERROR pandas/core/algorithms.py:956:12-18: Returned type `DataFrame | Series | Unknown` is not assignable to declared return type `Series` [bad-return] +ERROR pandas/core/apply.py:197:52-58: Expected argument after ** to be a mapping, got: Unknown | None in function `reconstruct_func` [bad-unpacking] +ERROR pandas/core/apply.py:210:12-17: `klass` may be uninitialized [unbound-name] +ERROR pandas/core/apply.py:379:57-60: Argument `(BaseWindow & NDFrame) | (DataFrameGroupBy & NDFrame) | (GroupBy[Unknown] & NDFrame) | (NDFrame & Resampler) | (NDFrame & SeriesGroupBy) | DataFrame | Series` is not assignable to parameter `obj` with type `DataFrame | Series` in function `Apply.normalize_dictlike_arg` [bad-argument-type] +ERROR pandas/core/apply.py:812:5-8: Class member `NDFrameApply.obj` overrides parent class `Apply` in an inconsistent manner [bad-override] +ERROR pandas/core/apply.py:868:5-8: Class member `FrameApply.obj` overrides parent class `NDFrameApply` in an inconsistent manner [bad-override] +ERROR pandas/core/apply.py:1125:17-27: Type `Materialization` is not iterable [not-iterable] +ERROR pandas/core/apply.py:1152:42-45: Argument `object` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR pandas/core/apply.py:1477:5-8: Class member `SeriesApply.obj` overrides parent class `NDFrameApply` in an inconsistent manner [bad-override] +ERROR pandas/core/apply.py:1589:5-8: Class member `GroupByApply.obj` overrides parent class `Apply` in an inconsistent manner [bad-override] +ERROR pandas/core/apply.py:1684:5-8: Class member `ResamplerWindowApply.obj` overrides parent class `GroupByApply` in an inconsistent manner [bad-override] +ERROR pandas/core/apply.py:1794:12-44: Returned type `tuple[bool, ((...) -> Unknown) | MutableMapping[Hashable, ((...) -> Unknown) | list[((...) -> Unknown) | str] | str] | MutableMapping[Hashable, list[((...) -> Unknown) | str]] | list[((...) -> Unknown) | str] | str, tuple[str, ...] | None, ndarray[tuple[Any, ...], dtype[signedinteger[_32Bit | _64Bit]]] | None]` is not assignable to declared return type `tuple[bool, ((...) -> Unknown) | MutableMapping[Hashable, ((...) -> Unknown) | list[((...) -> Unknown) | str] | str] | list[((...) -> Unknown) | str] | str, tuple[str, ...] | None, ndarray[tuple[Any, ...], dtype[signedinteger[_32Bit | _64Bit]]] | None]` [bad-return] +ERROR pandas/core/apply.py:2000:49-53: Argument `((...) -> Unknown) | MutableMapping[Hashable, ((...) -> Unknown) | list[((...) -> Unknown) | str] | str] | list[((...) -> Unknown) | str] | str` is not assignable to parameter `func` with type `dict[str, list[((...) -> Unknown) | str]]` in function `relabel_result` [bad-argument-type] +ERROR pandas/core/array_algos/take.py:244:8-12: `func` may be uninitialized [unbound-name] +ERROR pandas/core/array_algos/take.py:245:16-20: `func` may be uninitialized [unbound-name] +ERROR pandas/core/array_algos/take.py:258:8-12: `func` may be uninitialized [unbound-name] +ERROR pandas/core/array_algos/take.py:259:33-37: `func` may be uninitialized [unbound-name] +ERROR pandas/core/array_algos/take.py:303:16-32: Object of class `float` has no attribute `dtype` [missing-attribute] +ERROR pandas/core/array_algos/take.py:304:30-47: Object of class `float` has no attribute `astype` [missing-attribute] +ERROR pandas/core/array_algos/take.py:306:30-47: Object of class `float` has no attribute `astype` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:52:18-32: No attribute `utf8_length` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:56:41-54: No attribute `utf8_lower` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:59:41-54: No attribute `utf8_upper` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:63:22-45: No attribute `utf8_trim_whitespace` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:65:22-34: No attribute `utf8_trim` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:70:22-46: No attribute `utf8_ltrim_whitespace` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:72:22-35: No attribute `utf8_ltrim` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:77:22-46: No attribute `utf8_rtrim_whitespace` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:79:22-35: No attribute `utf8_rtrim` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:89:22-34: No attribute `utf8_lpad` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:91:22-34: No attribute `utf8_rpad` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:105:34-48: No attribute `utf8_center` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:115:19-33: No attribute `utf8_length` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:117:29-45: No attribute `greater_equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:122:29-39: No attribute `greater` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:126:29-38: No attribute `invert` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:127:20-43: No attribute `utf8_slice_codeunits` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:131:18-28: No attribute `if_else` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:146:13-36: No attribute `utf8_slice_codeunits` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:159:13-34: No attribute `utf8_replace_slice` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:184:16-42: No attribute `replace_substring_regex` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:184:57-77: No attribute `replace_substring` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:197:41-59: No attribute `utf8_capitalize` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:200:41-54: No attribute `utf8_title` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:203:41-57: No attribute `utf8_swapcase` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:206:23-37: No attribute `starts_with` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:207:19-42: No attribute `utf8_slice_codeunits` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:208:18-28: No attribute `if_else` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:212:21-33: No attribute `ends_with` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:213:19-42: No attribute `utf8_slice_codeunits` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:214:18-28: No attribute `if_else` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:221:22-36: No attribute `starts_with` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:226:26-36: No attribute `if_else` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:226:37-47: No attribute `is_null` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:228:26-40: No attribute `starts_with` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:231:30-36: No attribute `or_` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:231:45-59: No attribute `starts_with` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:238:22-34: No attribute `ends_with` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:243:26-36: No attribute `if_else` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:243:37-47: No attribute `is_null` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:245:26-38: No attribute `ends_with` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:248:30-36: No attribute `or_` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:248:45-57: No attribute `ends_with` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:252:18-34: No attribute `utf8_is_alnum` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:256:18-34: No attribute `utf8_is_alpha` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:260:18-36: No attribute `string_is_ascii` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:264:18-36: No attribute `utf8_is_decimal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:274:18-34: No attribute `utf8_is_digit` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:278:18-34: No attribute `utf8_is_lower` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:282:18-36: No attribute `utf8_is_numeric` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:286:18-34: No attribute `utf8_is_space` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:290:18-34: No attribute `utf8_is_title` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:294:18-34: No attribute `utf8_is_upper` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:309:27-51: No attribute `match_substring_regex` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:311:27-45: No attribute `match_substring` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:343:22-39: No attribute `find_substring` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:355:32-38: No attribute `add` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:355:46-60: No attribute `utf8_length` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:356:32-42: No attribute `if_else` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:356:43-50: No attribute `less` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:359:22-45: No attribute `utf8_slice_codeunits` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:360:22-39: No attribute `find_substring` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:361:21-33: No attribute `not_equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:362:29-35: No attribute `add` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_arrow_string_mixins.py:363:22-32: No attribute `if_else` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/_mixins.py:275:9-20: Class member `NDArrayBackedExtensionArray.__getitem__` overrides parent class `ExtensionArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/arrays/_mixins.py:347:16-26: Object of class `bool` has no attribute `any` [missing-attribute] +ERROR pandas/core/arrays/arrow/accessors.py:70:9-25: Method `__init__` inherited from class `ArrowAccessor` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR pandas/core/arrays/arrow/accessors.py:115:25-45: No attribute `list_value_length` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/accessors.py:163:23-38: No attribute `list_element` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/accessors.py:181:22-35: No attribute `list_slice` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/accessors.py:226:18-28: Module `pyarrow.compute` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/core/arrays/arrow/accessors.py:226:18-46: No attribute `list_value_length` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/accessors.py:227:21-31: Module `pyarrow.compute` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/core/arrays/arrow/accessors.py:227:21-44: No attribute `list_flatten` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/accessors.py:248:9-25: Method `__init__` inherited from class `ArrowAccessor` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR pandas/core/arrays/arrow/accessors.py:450:20-24: `name` may be uninitialized [unbound-name] +ERROR pandas/core/arrays/arrow/accessors.py:454:21-36: No attribute `struct_field` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:97:15-23: No attribute `equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:98:15-27: No attribute `not_equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:99:15-22: No attribute `less` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:100:15-25: No attribute `greater` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:101:15-28: No attribute `less_equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:102:15-31: No attribute `greater_equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:106:17-30: No attribute `and_kleene` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:107:31-44: No attribute `and_kleene` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:108:16-28: No attribute `or_kleene` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:109:30-42: No attribute `or_kleene` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:110:16-22: No attribute `xor` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:111:30-36: No attribute `xor` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:115:17-32: No attribute `bit_wise_and` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:116:31-46: No attribute `bit_wise_and` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:117:16-30: No attribute `bit_wise_or` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:118:30-44: No attribute `bit_wise_or` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:119:16-31: No attribute `bit_wise_xor` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:120:30-45: No attribute `bit_wise_xor` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:146:23-40: No attribute `divide_checked` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:149:33-45: No attribute `not_equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:149:46-57: No attribute `multiply` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:150:44-51: No attribute `less` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:151:21-36: No attribute `bit_wise_xor` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:154:26-36: No attribute `if_else` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:155:21-28: No attribute `and_` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:160:21-32: No attribute `subtract` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:167:23-32: No attribute `divide` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:168:22-30: No attribute `floor` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:172:16-30: No attribute `add_checked` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:173:30-44: No attribute `add_checked` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:174:16-35: No attribute `subtract_checked` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:175:30-49: No attribute `subtract_checked` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:176:16-35: No attribute `multiply_checked` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:177:30-49: No attribute `multiply_checked` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:178:33-42: No attribute `divide` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:179:34-43: No attribute `divide` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:186:16-32: No attribute `power_checked` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:187:30-46: No attribute `power_checked` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:377:27-37: No attribute `if_else` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:398:23-33: No attribute `if_else` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:398:34-42: No attribute `equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:399:23-33: No attribute `if_else` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:399:34-42: No attribute `equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:480:20-26: No attribute `lib` in module `pyarrow` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:488:20-26: No attribute `lib` in module `pyarrow` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:862:45-60: No attribute `bit_wise_not` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:869:45-54: No attribute `invert` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:873:45-62: No attribute `negate_checked` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:883:41-55: No attribute `abs_checked` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:907:20-26: No attribute `lib` in module `pyarrow` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:936:25-31: No attribute `lib` in module `pyarrow` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:936:58-64: No attribute `lib` in module `pyarrow` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:946:30-40: No attribute `if_else` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:977:34-61: No attribute `binary_join_element_wise` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:979:34-61: No attribute `binary_join_element_wise` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:984:49-55: `result` may be uninitialized [unbound-name] +ERROR pandas/core/arrays/arrow/array.py:990:31-41: No attribute `if_else` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:990:42-49: No attribute `less` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:991:26-42: No attribute `binary_repeat` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1002:27-37: No attribute `if_else` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1002:38-45: No attribute `less` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1003:22-38: No attribute `binary_repeat` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1007:17-27: No attribute `is_null` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1073:20-29: No attribute `is_nan` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1074:19-39: No attribute `replace_with_mask` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1109:9-21: Class member `ArrowExtensionArray.__contains__` overrides parent class `ExtensionArraySupportsAnyAll` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/arrays/arrow/array.py:1116:24-30: No attribute `any` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1116:31-40: No attribute `is_nan` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1284:18-39: No attribute `array_sort_indices` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1332:41-53: No attribute `drop_null` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1350:25-45: No attribute `fill_null_forward` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1354:25-46: No attribute `fill_null_backward` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1416:18-26: No attribute `is_in` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1502:41-49: No attribute `round` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1766:21-30: No attribute `unique` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1920:23-33: No attribute `is_null` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1921:16-22: No attribute `all` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1928:32-52: No attribute `fill_null_forward` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1929:32-53: No attribute `fill_null_backward` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1943:25-35: No attribute `if_else` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:1990:22-34: No attribute `not_equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2006:29-38: No attribute `stddev` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2007:31-46: No attribute `sqrt_checked` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2007:47-55: No attribute `count` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2008:24-41: No attribute `divide_checked` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2015:24-34: No attribute `is_null` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2026:44-53: No attribute `invert` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2039:24-38: No attribute `binary_join` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2148:12-22: No attribute `is_null` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2167:18-28: Module `pyarrow.compute` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/core/arrays/arrow/array.py:2167:18-46: No attribute `list_value_length` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2171:12-20: Object of class `bool` has no attribute `any` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2174:25-35: No attribute `if_else` in module `pyarrow.compute` [missing-attribute] + WARN pandas/core/arrays/arrow/array.py:2174:36-41: Unary `~` is not supported on `bool` [deprecated] +ERROR pandas/core/arrays/arrow/array.py:2179:43-53: Module `pyarrow.compute` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/core/arrays/arrow/array.py:2179:43-66: No attribute `list_flatten` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2295:18-25: No attribute `rank` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2303:20-30: No attribute `is_null` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2305:22-32: No attribute `if_else` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2308:26-33: No attribute `rank` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2316:22-31: No attribute `divide` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2316:32-38: No attribute `add` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2322:27-33: No attribute `max` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2324:27-35: No attribute `count` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2325:22-31: No attribute `divide` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2376:18-29: No attribute `quantile` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2380:26-34: No attribute `floor` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2421:15-30: No attribute `value_counts` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2423:13-21: No attribute `equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2423:43-49: No attribute `max` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2429:40-61: No attribute `array_sort_indices` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2468:24-45: No attribute `fill_null_backward` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2468:46-70: No attribute `pairwise_diff_checked` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2470:23-37: No attribute `add_checked` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2470:51-68: No attribute `divide_checked` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2471:45-56: No attribute `coalesce` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2520:20-30: No attribute `if_else` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2572:20-40: No attribute `replace_with_mask` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2688:41-65: No attribute `count_substring_regex` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2695:41-57: No attribute `binary_repeat` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2705:41-55: No attribute `binary_join` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2733:18-34: No attribute `extract_regex` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2736:47-62: No attribute `struct_field` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2740:31-46: No attribute `struct_field` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2751:17-33: No attribute `split_pattern` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2752:28-43: No attribute `list_flatten` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2754:39-49: Module `pyarrow.compute` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/core/arrays/arrow/array.py:2754:39-68: No attribute `array_sort_indices` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2755:19-39: No attribute `list_value_length` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2758:19-30: No attribute `index_in` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2802:26-50: No attribute `utf8_split_whitespace` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2804:44-66: No attribute `split_pattern_regex` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2806:44-60: No attribute `split_pattern` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2814:17-41: No attribute `utf8_split_whitespace` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2817:13-29: No attribute `split_pattern` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2929:18-25: No attribute `year` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2934:18-24: No attribute `day` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2939:18-32: No attribute `day_of_week` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2947:18-32: No attribute `day_of_year` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2954:18-25: No attribute `hour` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2958:18-33: No attribute `iso_calendar` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2963:18-33: No attribute `is_leap_year` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2968:18-26: No attribute `equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2968:27-33: No attribute `day` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2973:18-26: No attribute `equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2974:13-28: No attribute `days_between` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2975:17-34: No attribute `floor_temporal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2976:17-33: No attribute `ceil_temporal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2984:18-25: No attribute `and_` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2985:13-21: No attribute `equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2985:22-30: No attribute `month` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2986:13-21: No attribute `equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2986:22-28: No attribute `day` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2992:18-25: No attribute `and_` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2993:13-21: No attribute `equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2993:22-30: No attribute `month` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2994:13-21: No attribute `equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:2994:22-28: No attribute `day` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3000:18-26: No attribute `equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3001:13-30: No attribute `floor_temporal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3002:13-30: No attribute `floor_temporal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3008:18-26: No attribute `equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3009:13-28: No attribute `days_between` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3010:17-34: No attribute `floor_temporal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3011:17-33: No attribute `ceil_temporal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3019:18-33: No attribute `days_between` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3020:13-30: No attribute `floor_temporal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3021:13-29: No attribute `ceil_temporal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3030:14-28: No attribute `microsecond` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3031:20-31: No attribute `multiply` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3031:32-46: No attribute `millisecond` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3032:18-24: No attribute `add` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3037:18-27: No attribute `minute` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3042:18-26: No attribute `month` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3047:18-31: No attribute `nanosecond` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3052:18-28: No attribute `quarter` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3057:18-27: No attribute `second` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3084:18-35: No attribute `floor_temporal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3088:18-29: No attribute `strftime` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3156:18-29: No attribute `strftime` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3162:18-29: No attribute `strftime` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3197:22-40: No attribute `local_timestamp` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/array.py:3199:22-40: No attribute `assume_timezone` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/arrow/extension_types.py:171:5-30: No attribute `_hotfix_installed` in module `pyarrow` [missing-attribute] +ERROR pandas/core/arrays/base.py:1224:16-26: Object of class `bool` has no attribute `any` [missing-attribute] + WARN pandas/core/arrays/boolean.py:230:27-73: Redundant cast: `ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]]` is the same type as `ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]]` [redundant-cast] +ERROR pandas/core/arrays/boolean.py:259:24-34: Object of class `NoneType` has no attribute `shape` [missing-attribute] +ERROR pandas/core/arrays/boolean.py:262:12-24: Returned type `tuple[ndarray[tuple[int], dtype[Any]] | ndarray[tuple[Any, ...], dtype[Any]], ndarray[tuple[int] | tuple[Any, ...], dtype[Any]] | ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]] | ndarray[tuple[Any, ...], dtype[Any]] | None]` is not assignable to declared return type `tuple[ndarray[tuple[Any, ...], dtype[Any]], ndarray[tuple[Any, ...], dtype[Any]]]` [bad-return] +ERROR pandas/core/arrays/boolean.py:385:9-25: Class member `BooleanArray._coerce_to_array` overrides parent class `BaseMaskedArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/arrays/boolean.py:413:53-58: Argument `NAType | builtins.bool | numpy.bool[builtins.bool] | Unknown` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR pandas/core/arrays/boolean.py:417:54-59: Argument `NAType | builtins.bool | numpy.bool[builtins.bool] | Unknown` is not assignable to parameter `right` with type `NAType | builtins.bool | ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas.core.ops.mask_ops.kleene_or` [bad-argument-type] +ERROR pandas/core/arrays/boolean.py:419:55-60: Argument `NAType | builtins.bool | numpy.bool[builtins.bool] | Unknown` is not assignable to parameter `right` with type `NAType | builtins.bool | ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas.core.ops.mask_ops.kleene_and` [bad-argument-type] +ERROR pandas/core/arrays/boolean.py:422:55-60: Argument `NAType | builtins.bool | numpy.bool[builtins.bool] | Unknown` is not assignable to parameter `right` with type `NAType | builtins.bool | ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas.core.ops.mask_ops.kleene_xor` [bad-argument-type] +ERROR pandas/core/arrays/categorical.py:175:53-58: Argument `Hashable | Unknown` is not assignable to parameter `right` with type `ExtensionArray | Interval[Unknown] | Timedelta | Timestamp | bool | bytes | complex | complexfloating[Any, Unknown] | date | datetime | datetime64[date | int | None] | float | floating[Any] | int | integer[Any] | list[Unknown] | ndarray[tuple[Any, ...], dtype[Any]] | str | timedelta | timedelta64[int | timedelta | None]` in function `pandas.core.ops.invalid.invalid_comparison` [bad-argument-type] +ERROR pandas/core/arrays/categorical.py:373:5-11: Class member `Categorical._dtype` overrides parent class `NDArrayBackedExtensionArray` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/categorical.py:456:27-49: Object of class `ExtensionArray` has no attribute `_pa_array` +Object of class `ndarray` has no attribute `_pa_array` [missing-attribute] +ERROR pandas/core/arrays/categorical.py:458:27-58: Object of class `ExtensionArray` has no attribute `_pa_array` +Object of class `ndarray` has no attribute `_pa_array` [missing-attribute] +ERROR pandas/core/arrays/categorical.py:494:25-53: Object of class `ExtensionArray` has no attribute `_codes` +Object of class `ndarray` has no attribute `_codes` [missing-attribute] +ERROR pandas/core/arrays/categorical.py:538:9-29: Class member `Categorical._internal_fill_value` overrides parent class `NDArrayBackedExtensionArray` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/categorical.py:700:18-46: Object of class `ndarray` has no attribute `is_monotonic_increasing` [missing-attribute] +ERROR pandas/core/arrays/categorical.py:703:26-42: Object of class `ndarray` has no attribute `sort_values` [missing-attribute] +ERROR pandas/core/arrays/categorical.py:1655:9-25: Class member `Categorical._validate_scalar` overrides parent class `NDArrayBackedExtensionArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/arrays/categorical.py:2229:9-18: Class member `Categorical._box_func` overrides parent class `NDArrayBackedExtensionArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/arrays/categorical.py:2252:9-21: Class member `Categorical.__contains__` overrides parent class `NDArrayBackedExtensionArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/arrays/categorical.py:2989:9-31: Class member `CategoricalAccessor._delegate_property_get` overrides parent class `PandasDelegate` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/categorical.py:2992:9-31: Class member `CategoricalAccessor._delegate_property_set` overrides parent class `PandasDelegate` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/arrays/categorical.py:3142:35-52: Object of class `ExtensionArray` has no attribute `categories` +Object of class `ndarray` has no attribute `categories` [missing-attribute] +ERROR pandas/core/arrays/categorical.py:3142:61-73: Object of class `ExtensionArray` has no attribute `codes` +Object of class `ndarray` has no attribute `codes` [missing-attribute] +ERROR pandas/core/arrays/categorical.py:3146:17-29: Object of class `ExtensionArray` has no attribute `codes` +Object of class `ndarray` has no attribute `codes` [missing-attribute] +ERROR pandas/core/arrays/datetimelike.py:555:39-44: Argument `NaTType | Unknown` is not assignable to parameter `ts_input` with type `date | datetime | datetime64[date | int | None] | float | integer[Any] | str` in function `pandas._libs.tslibs.timestamps.Timestamp.__new__` [bad-argument-type] +ERROR pandas/core/arrays/datetimelike.py:714:16-32: Object of class `DatetimeLikeArrayMixin` has no attribute `categories` +Object of class `ExtensionArray` has no attribute `categories` +Object of class `ndarray` has no attribute `categories` [missing-attribute] +ERROR pandas/core/arrays/datetimelike.py:716:25-51: Object of class `DatetimeLikeArrayMixin` has no attribute `_internal_get_values` +Object of class `ExtensionArray` has no attribute `_internal_get_values` +Object of class `ndarray` has no attribute `_internal_get_values` [missing-attribute] +ERROR pandas/core/arrays/datetimelike.py:1998:9-13: Class member `TimelikeOps.freq` overrides parent class `DatetimeLikeArrayMixin` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/datetimelike.py:2038:22-27: `Day | Tick | Unknown | None` is not assignable to attribute `_freq` with type `None` [bad-assignment] +ERROR pandas/core/arrays/datetimelike.py:2337:21-25: `BaseOffset | Day | Tick | None` is not assignable to attribute `_freq` with type `None` [bad-assignment] +ERROR pandas/core/arrays/datetimes.py:295:5-11: Class member `DatetimeArray._dtype` overrides parent class `TimelikeOps` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/datetimes.py:295:5-11: Class member `DatetimeArray._dtype` overrides parent class `DatelikeOps` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/datetimes.py:410:9-24: Class member `DatetimeArray._generate_range` overrides parent class `TimelikeOps` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/datetimes.py:456:48-71: `NaTType | Timestamp | None` is not assignable to upper bound `Timestamp | None` of type variable `_TimestampNoneT1` [bad-specialization] +ERROR pandas/core/arrays/datetimes.py:456:48-71: `NaTType | Timestamp | None` is not assignable to upper bound `Timestamp | None` of type variable `_TimestampNoneT2` [bad-specialization] +ERROR pandas/core/arrays/datetimes.py:457:39-44: Argument `NaTType | Timestamp | None` is not assignable to parameter `start` with type `Timestamp` in function `_infer_tz_from_endpoints` [bad-argument-type] +ERROR pandas/core/arrays/datetimes.py:457:46-49: Argument `NaTType | Timestamp | None` is not assignable to parameter `end` with type `Timestamp` in function `_infer_tz_from_endpoints` [bad-argument-type] +ERROR pandas/core/arrays/datetimes.py:461:43-48: Argument `NaTType | Timestamp | None` is not assignable to parameter `ts` with type `Timestamp | None` in function `_maybe_localize_point` [bad-argument-type] +ERROR pandas/core/arrays/datetimes.py:462:41-44: Argument `NaTType | Timestamp | None` is not assignable to parameter `ts` with type `Timestamp | None` in function `_maybe_localize_point` [bad-argument-type] +ERROR pandas/core/arrays/datetimes.py:476:51-56: Argument `NaTType | Timestamp | None` is not assignable to parameter `start` with type `Timedelta | Timestamp | None` in function `pandas.core.arrays._ranges.generate_regular_range` [bad-argument-type] +ERROR pandas/core/arrays/datetimes.py:476:58-61: Argument `NaTType | Timestamp | None` is not assignable to parameter `end` with type `Timedelta | Timestamp | None` in function `pandas.core.arrays._ranges.generate_regular_range` [bad-argument-type] +ERROR pandas/core/arrays/datetimes.py:479:27-32: Argument `NaTType | Timestamp | None` is not assignable to parameter `start` with type `Timestamp | None` in function `_generate_range` [bad-argument-type] +ERROR pandas/core/arrays/datetimes.py:479:38-41: Argument `NaTType | Timestamp | None` is not assignable to parameter `end` with type `Timestamp | None` in function `_generate_range` [bad-argument-type] +ERROR pandas/core/arrays/datetimes.py:483:62-68: Object of class `NoneType` has no attribute `tz` [missing-attribute] +ERROR pandas/core/arrays/datetimes.py:501:51-60: Argument `Literal['NaT', 'infer', 'raise'] | ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]]` is not assignable to parameter `ambiguous` with type `Literal['raise'] | NaTType | builtins.bool` in function `pandas._libs.tslibs.nattype.NaTType.tz_localize` [bad-argument-type] +ERROR pandas/core/arrays/datetimes.py:501:51-60: Argument `Literal['NaT', 'infer', 'raise'] | ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]]` is not assignable to parameter `ambiguous` with type `Literal['NaT', 'raise'] | builtins.bool` in function `pandas._libs.tslibs.timestamps.Timestamp.tz_localize` [bad-argument-type] +ERROR pandas/core/arrays/datetimes.py:503:47-56: Argument `Literal['NaT', 'infer', 'raise'] | ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]]` is not assignable to parameter `ambiguous` with type `Literal['raise'] | NaTType | builtins.bool` in function `pandas._libs.tslibs.nattype.NaTType.tz_localize` [bad-argument-type] +ERROR pandas/core/arrays/datetimes.py:503:47-56: Argument `Literal['NaT', 'infer', 'raise'] | ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]]` is not assignable to parameter `ambiguous` with type `Literal['NaT', 'raise'] | builtins.bool` in function `pandas._libs.tslibs.timestamps.Timestamp.tz_localize` [bad-argument-type] +ERROR pandas/core/arrays/datetimes.py:511:32-42: Object of class `NoneType` has no attribute `_value` [missing-attribute] +ERROR pandas/core/arrays/datetimes.py:511:45-57: Object of class `NoneType` has no attribute `_value` [missing-attribute] +ERROR pandas/core/arrays/datetimes.py:512:19-31: Object of class `NoneType` has no attribute `_value` [missing-attribute] +ERROR pandas/core/arrays/datetimes.py:523:34-39: Argument `NaTType | Timestamp | None` is not assignable to parameter `ts_input` with type `date | datetime | datetime64[date | int | None] | float | integer[Any] | str` in function `pandas._libs.tslibs.timestamps.Timestamp.__new__` [bad-argument-type] +ERROR pandas/core/arrays/datetimes.py:524:32-35: Argument `NaTType | Timestamp | None` is not assignable to parameter `ts_input` with type `date | datetime | datetime64[date | int | None] | float | integer[Any] | str` in function `pandas._libs.tslibs.timestamps.Timestamp.__new__` [bad-argument-type] +ERROR pandas/core/arrays/datetimes.py:543:33-58: No matching overload found for function `numpy.datetime64.__new__` called with arguments: (type[datetime64[date | int | None]], signedinteger[_64Bit], Literal['ms', 'ns', 's', 'us']) [no-matching-overload] +ERROR pandas/core/arrays/datetimes.py:2891:21-36: Object of class `NoneType` has no attribute `normalize` [missing-attribute] +ERROR pandas/core/arrays/datetimes.py:2894:19-32: Object of class `NoneType` has no attribute `normalize` [missing-attribute] +ERROR pandas/core/arrays/datetimes.py:2896:12-22: Returned type `tuple[_TimestampNoneT1 | Unknown, _TimestampNoneT2 | Unknown]` is not assignable to declared return type `tuple[_TimestampNoneT1, _TimestampNoneT2]` [bad-return] +ERROR pandas/core/arrays/datetimes.py:2928:29-44: Unpacked keyword argument `bool | Unknown | None` is not assignable to parameter `ambiguous` with type `Literal['NaT', 'raise'] | bool` in function `pandas._libs.tslibs.timestamps.Timestamp.tz_localize` [bad-argument-type] +ERROR pandas/core/arrays/datetimes.py:2928:29-44: Unpacked keyword argument `bool | Unknown | None` is not assignable to parameter `nonexistent` with type `Literal['NaT', 'raise', 'shift_backward', 'shift_forward'] | timedelta` in function `pandas._libs.tslibs.timestamps.Timestamp.tz_localize` [bad-argument-type] +ERROR pandas/core/arrays/datetimes.py:2970:17-30: Object of class `NoneType` has no attribute `as_unit` [missing-attribute] +ERROR pandas/core/arrays/datetimes.py:2978:15-26: Object of class `NoneType` has no attribute `as_unit` [missing-attribute] +ERROR pandas/core/arrays/interval.py:293:17-21: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `intervals` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas._libs.interval.intervals_to_interval_bounds` [bad-argument-type] +ERROR pandas/core/arrays/interval.py:325:9-21: Object of class `IntervalMixin` has no attribute `_left` [missing-attribute] +ERROR pandas/core/arrays/interval.py:326:9-22: Object of class `IntervalMixin` has no attribute `_right` [missing-attribute] +ERROR pandas/core/arrays/interval.py:327:9-22: Object of class `IntervalMixin` has no attribute `_dtype` [missing-attribute] +ERROR pandas/core/arrays/interval.py:329:16-22: Returned type `IntervalMixin` is not assignable to declared return type `Self@IntervalArray` [bad-return] +ERROR pandas/core/arrays/interval.py:393:71-79: Object of class `Index` has no attribute `tz` [missing-attribute] +ERROR pandas/core/arrays/interval.py:396:37-45: Object of class `Index` has no attribute `tz` [missing-attribute] +ERROR pandas/core/arrays/interval.py:399:50-59: Object of class `Index` has no attribute `unit` [missing-attribute] +ERROR pandas/core/arrays/interval.py:399:63-73: Object of class `Index` has no attribute `unit` [missing-attribute] +ERROR pandas/core/arrays/interval.py:401:35-68: Object of class `ExtensionArray` has no attribute `_ensure_matching_resos` +Object of class `ndarray` has no attribute `_ensure_matching_resos` [missing-attribute] +ERROR pandas/core/arrays/interval.py:417:21-56: Object of class `ExtensionArray` has no attribute `base` [missing-attribute] +ERROR pandas/core/arrays/interval.py:419:21-56: Object of class `ExtensionArray` has no attribute `base` [missing-attribute] +ERROR pandas/core/arrays/interval.py:438:16-34: Returned type `tuple[ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]], ArrowExtensionArray | ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]], IntervalDtype]` is not assignable to declared return type `tuple[DatetimeArray | TimedeltaArray | ndarray[tuple[Any, ...], dtype[Any]], DatetimeArray | TimedeltaArray | ndarray[tuple[Any, ...], dtype[Any]], IntervalDtype]` [bad-return] +ERROR pandas/core/arrays/interval.py:826:9-20: Class member `IntervalArray.__getitem__` overrides parent class `ExtensionArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/arrays/interval.py:841:20-24: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `a` with type `_Buffer | _NestedSequence[bytes | complex | str] | _NestedSequence[_SupportsArray[dtype[Any]]] | _SupportsArray[dtype[Any]] | bytes | complex | str` in function `numpy._core.fromnumeric.ndim` [bad-argument-type] +ERROR pandas/core/arrays/interval.py:887:27-43: Object of class `ExtensionArray` has no attribute `categories` [missing-attribute] +ERROR pandas/core/arrays/interval.py:891:35-51: Object of class `ExtensionArray` has no attribute `categories` [missing-attribute] +ERROR pandas/core/arrays/interval.py:894:25-41: Object of class `ExtensionArray` has no attribute `categories` [missing-attribute] +ERROR pandas/core/arrays/interval.py:895:21-32: Object of class `ExtensionArray` has no attribute `codes` [missing-attribute] +ERROR pandas/core/arrays/interval.py:895:62-78: Object of class `ExtensionArray` has no attribute `categories` [missing-attribute] +ERROR pandas/core/arrays/interval.py:900:31-43: Object of class `ExtensionArray` has no attribute `closed` [missing-attribute] +ERROR pandas/core/arrays/interval.py:929:33-38: Argument `ExtensionArray | Interval[Unknown] | Unknown` is not assignable to parameter `iterable` with type `Iterable[Any]` in function `enumerate.__new__` [bad-argument-type] +ERROR pandas/core/arrays/interval.py:1147:80-86: Argument `str` is not assignable to parameter `closed` with type `Literal['both', 'left', 'neither', 'right'] | None` in function `IntervalArray._ensure_simple_new_inputs` [bad-argument-type] +ERROR pandas/core/arrays/interval.py:2195:16-22: Returned type `DataFrame | Unknown` is not assignable to declared return type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` [bad-return] +ERROR pandas/core/arrays/interval.py:2208:12-18: Returned type `ExtensionArray | list[Unknown] | ndarray[tuple[Any, ...], dtype[signedinteger[_64Bit]]] | ndarray[tuple[Any, ...], dtype[Any]] | range | tuple[Unknown, ...] | Unknown` is not assignable to declared return type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` [bad-return] +ERROR pandas/core/arrays/masked.py:156:60-65: Argument `Unknown | None` is not assignable to parameter `dtype` with type `ExtensionDtype | dtype[Any]` in function `BaseMaskedArray._coerce_to_array` [bad-argument-type] +ERROR pandas/core/arrays/masked.py:385:9-21: Class member `BaseMaskedArray.__contains__` overrides parent class `ExtensionArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/arrays/masked.py:1054:9-13: Class member `BaseMaskedArray.take` overrides parent class `ExtensionArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/arrays/numeric.py:295:9-25: Class member `NumericArray._coerce_to_array` overrides parent class `BaseMaskedArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/arrays/numpy_.py:106:5-11: Class member `NumpyExtensionArray._dtype` overrides parent class `NDArrayBackedExtensionArray` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/numpy_.py:285:9-25: Class member `NumpyExtensionArray._validate_scalar` overrides parent class `NDArrayBackedExtensionArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/arrays/period.py:222:5-11: Class member `PeriodArray._dtype` overrides parent class `DatelikeOps` in an inconsistent manner [bad-override] + WARN pandas/core/arrays/period.py:252:21-41: Redundant cast: `PeriodDtype` is the same type as `PeriodDtype` [redundant-cast] +ERROR pandas/core/arrays/period.py:362:16-45: Returned type `NaTType | Period` is not assignable to declared return type `Period` [bad-return] +ERROR pandas/core/arrays/period.py:829:20-43: Object of class `BaseOffset` has no attribute `_period_dtype_code` [missing-attribute] +ERROR pandas/core/arrays/period.py:917:17-40: Object of class `BaseOffset` has no attribute `_period_dtype_code` [missing-attribute] +ERROR pandas/core/arrays/period.py:1033:9-20: Class member `PeriodArray._add_offset` overrides parent class `DatelikeOps` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/arrays/period.py:1180:36-52: Argument `NaTType | Timedelta` is not assignable to parameter `delta` with type `timedelta` in function `pandas._libs.tslibs.offsets.delta_to_tick` [bad-argument-type] +ERROR pandas/core/arrays/period.py:1361:40-49: Object of class `Index` has no attribute `freq` [missing-attribute] +ERROR pandas/core/arrays/period.py:1370:12-35: Object of class `BaseOffset` has no attribute `_period_dtype_code` [missing-attribute] +ERROR pandas/core/arrays/period.py:1400:20-30: Object of class `NaTType` has no attribute `freq` +Object of class `NoneType` has no attribute `freq` [missing-attribute] +ERROR pandas/core/arrays/period.py:1402:20-28: Object of class `NaTType` has no attribute `freq` +Object of class `NoneType` has no attribute `freq` [missing-attribute] +ERROR pandas/core/arrays/period.py:1411:17-28: Object of class `NaTType` has no attribute `ordinal` +Object of class `NoneType` has no attribute `ordinal` [missing-attribute] +ERROR pandas/core/arrays/period.py:1411:47-58: Object of class `NaTType` has no attribute `ordinal` +Object of class `NoneType` has no attribute `ordinal` [missing-attribute] +ERROR pandas/core/arrays/period.py:1415:17-30: Object of class `NaTType` has no attribute `ordinal` [missing-attribute] +ERROR pandas/core/arrays/period.py:1415:32-45: Object of class `NaTType` has no attribute `ordinal` [missing-attribute] +ERROR pandas/core/arrays/period.py:1418:26-39: Object of class `NaTType` has no attribute `ordinal` +Object of class `NoneType` has no attribute `ordinal` [missing-attribute] +ERROR pandas/core/arrays/period.py:1418:41-52: Object of class `NaTType` has no attribute `ordinal` +Object of class `NoneType` has no attribute `ordinal` [missing-attribute] + WARN pandas/core/arrays/period.py:1447:24-53: Redundant cast: `int` is the same type as `int` [redundant-cast] + WARN pandas/core/arrays/period.py:1451:28-57: Redundant cast: `int` is the same type as `int` [redundant-cast] +ERROR pandas/core/arrays/period.py:1464:45-49: Argument `None` is not assignable to parameter `freq` with type `BaseOffset` in function `pandas._libs.tslibs.period.freq_to_dtype_code` [bad-argument-type] +ERROR pandas/core/arrays/period.py:1469:12-52: Returned type `tuple[ndarray[tuple[Any, ...], dtype[Any]], BaseOffset | Unknown | None]` is not assignable to declared return type `tuple[ndarray[tuple[Any, ...], dtype[Any]], BaseOffset]` [bad-return] +ERROR pandas/core/arrays/period.py:1474:5-1479:32: `int | None` is not assignable to `None` (caused by inconsistent types when breaking cycles) [bad-assignment] +ERROR pandas/core/arrays/sparse/accessor.py:76:24-42: Object of class `NoneType` has no attribute `array` [missing-attribute] +ERROR pandas/core/arrays/sparse/accessor.py:240:13-25: Argument `Unknown | None` is not assignable to parameter `ss` with type `Series` in function `pandas.core.arrays.sparse.scipy_sparse.sparse_series_to_coo` [bad-argument-type] +ERROR pandas/core/arrays/sparse/accessor.py:271:13-31: Object of class `NoneType` has no attribute `array` [missing-attribute] +ERROR pandas/core/arrays/sparse/accessor.py:272:19-37: Object of class `NoneType` has no attribute `index` [missing-attribute] +ERROR pandas/core/arrays/sparse/accessor.py:273:18-35: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR pandas/core/arrays/sparse/accessor.py:391:51-69: Object of class `NoneType` has no attribute `items` [missing-attribute] +ERROR pandas/core/arrays/sparse/accessor.py:392:16-41: Object of class `NoneType` has no attribute `_constructor` [missing-attribute] +ERROR pandas/core/arrays/sparse/accessor.py:393:25-43: Object of class `NoneType` has no attribute `index` [missing-attribute] +ERROR pandas/core/arrays/sparse/accessor.py:393:53-73: Object of class `NoneType` has no attribute `columns` [missing-attribute] +ERROR pandas/core/arrays/sparse/accessor.py:430:34-53: Object of class `NoneType` has no attribute `dtypes` [missing-attribute] +ERROR pandas/core/arrays/sparse/accessor.py:435:40-58: Object of class `NoneType` has no attribute `items` [missing-attribute] +ERROR pandas/core/arrays/sparse/accessor.py:446:67-85: Object of class `NoneType` has no attribute `shape` [missing-attribute] +ERROR pandas/core/arrays/sparse/accessor.py:464:62-80: Object of class `NoneType` has no attribute `items` [missing-attribute] +ERROR pandas/core/arrays/sparse/array.py:514:9-26: Object of class `object` has no attribute `_sparse_index` [missing-attribute] +ERROR pandas/core/arrays/sparse/array.py:515:9-27: Object of class `object` has no attribute `_sparse_values` [missing-attribute] +ERROR pandas/core/arrays/sparse/array.py:516:9-19: Object of class `object` has no attribute `_dtype` [missing-attribute] +ERROR pandas/core/arrays/sparse/array.py:517:16-19: Returned type `object` is not assignable to declared return type `Self@SparseArray` [bad-return] +ERROR pandas/core/arrays/sparse/array.py:844:34-44: Argument `object | Unknown | None` is not assignable to parameter `*arrays_and_dtypes` with type `_Buffer | _NestedSequence[bytes | complex | str] | _NestedSequence[_SupportsArray[dtype[Any]]] | _SupportsArray[dtype[Any]] | _SupportsDType[dtype[Any]] | bytes | complex | dtype[Any] | list[Any] | str | TypedDict[_DTypeDict] | tuple[Any, Any] | type[Any] | None` in function `numpy._core.multiarray.result_type` [bad-argument-type] +ERROR pandas/core/arrays/sparse/array.py:948:16-24: Object of class `ExtensionArray` has no attribute `any` [missing-attribute] +ERROR pandas/core/arrays/sparse/array.py:949:17-29: Cannot index into `ndarray[tuple[Any, ...], dtype[signedinteger[_64Bit]]]` [bad-index] +ERROR pandas/core/arrays/sparse/array.py:949:17-29: Cannot set item in `ndarray[tuple[Any, ...], dtype[signedinteger[_64Bit]]]` [unsupported-operation] +ERROR pandas/core/arrays/sparse/array.py:970:9-20: Class member `SparseArray.__getitem__` overrides parent class `ExtensionArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/arrays/sparse/array.py:1188:9-21: Class member `SparseArray.searchsorted` overrides parent class `ExtensionArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/arrays/sparse/array.py:1682:20-29: Returned type `ndarray[tuple[Any, ...], dtype[signedinteger[_32Bit]]]` is not assignable to declared return type `int` [bad-return] +ERROR pandas/core/arrays/sparse/array.py:1684:20-29: Returned type `ndarray[tuple[Any, ...], dtype[signedinteger[_32Bit]]]` is not assignable to declared return type `int` [bad-return] +ERROR pandas/core/arrays/sparse/array.py:1686:20-29: Returned type `ndarray[tuple[Any, ...], dtype[signedinteger[_32Bit]]]` is not assignable to declared return type `int` [bad-return] +ERROR pandas/core/arrays/sparse/array.py:1690:20-29: Returned type `ndarray[tuple[Any, ...], dtype[signedinteger[_32Bit]]]` is not assignable to declared return type `int` [bad-return] +ERROR pandas/core/arrays/sparse/array.py:1933:19-32: Object of class `ndarray` has no attribute `sp_index` [missing-attribute] +ERROR pandas/core/arrays/string_.py:646:26-32: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `values` with type `NumpyExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas.core.arrays.numpy_.NumpyExtensionArray.__init__` [bad-argument-type] +ERROR pandas/core/arrays/string_.py:689:9-25: Class member `StringArray._validate_scalar` overrides parent class `NumpyExtensionArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/arrays/string_.py:749:35-47: No matching overload found for function `numpy.ndarray.astype` called with arguments: (StringDtype) [no-matching-overload] +ERROR pandas/core/arrays/string_.py:838:16-56: Returned type `ExtensionArray` is not assignable to declared return type `Self@StringArray` [bad-return] + WARN pandas/core/arrays/string_.py:957:27-67: Redundant cast: `ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]]` is the same type as `ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]]` [redundant-cast] +ERROR pandas/core/arrays/string_arrow.py:245:9-29: Class member `ArrowStringArray._convert_bool_result` overrides parent class `ArrowExtensionArray` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/arrays/string_arrow.py:291:18-26: No attribute `is_in` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/string_arrow.py:329:5-13: Class member `ArrowStringArray._str_pad` overrides parent class `ArrowExtensionArray` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/string_arrow.py:330:5-15: Class member `ArrowStringArray._str_lower` overrides parent class `ArrowExtensionArray` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/string_arrow.py:331:5-15: Class member `ArrowStringArray._str_upper` overrides parent class `ArrowExtensionArray` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/string_arrow.py:332:5-15: Class member `ArrowStringArray._str_strip` overrides parent class `ArrowExtensionArray` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/string_arrow.py:333:5-16: Class member `ArrowStringArray._str_lstrip` overrides parent class `ArrowExtensionArray` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/string_arrow.py:334:5-16: Class member `ArrowStringArray._str_rstrip` overrides parent class `ArrowExtensionArray` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/string_arrow.py:338:5-13: Class member `ArrowStringArray._str_get` overrides parent class `ArrowExtensionArray` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/string_arrow.py:339:5-20: Class member `ArrowStringArray._str_capitalize` overrides parent class `ArrowExtensionArray` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/string_arrow.py:340:5-15: Class member `ArrowStringArray._str_title` overrides parent class `ArrowExtensionArray` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/string_arrow.py:341:5-18: Class member `ArrowStringArray._str_swapcase` overrides parent class `ArrowExtensionArray` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/string_arrow.py:342:5-23: Class member `ArrowStringArray._str_slice_replace` overrides parent class `ArrowExtensionArray` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/string_arrow.py:344:5-15: Class member `ArrowStringArray._str_slice` overrides parent class `ArrowExtensionArray` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/string_arrow.py:446:18-42: No attribute `count_substring_regex` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/string_arrow.py:493:23-33: No attribute `is_null` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/string_arrow.py:494:23-35: No attribute `or_kleene` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/string_arrow.py:494:41-53: No attribute `not_equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/string_arrow.py:496:23-35: No attribute `not_equal` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/arrays/timedeltas.py:243:9-23: Class member `TimedeltaArray._from_sequence` overrides parent class `TimelikeOps` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/arrays/timedeltas.py:250:52-57: Argument `ExtensionDtype | dtype[Any] | Unknown` is not assignable to parameter `dtype` with type `dtype[Any]` in function `pandas._libs.tslibs.np_datetime.astype_overflowsafe` [bad-argument-type] +ERROR pandas/core/arrays/timedeltas.py:276:52-57: Argument `ExtensionDtype | dtype[Any] | Unknown` is not assignable to parameter `dtype` with type `dtype[Any]` in function `pandas._libs.tslibs.np_datetime.astype_overflowsafe` [bad-argument-type] +ERROR pandas/core/arrays/timedeltas.py:284:9-24: Class member `TimedeltaArray._generate_range` overrides parent class `TimelikeOps` in an inconsistent manner [bad-override] +ERROR pandas/core/arrays/timedeltas.py:314:44-49: Argument `NaTType | Timedelta | None` is not assignable to parameter `start` with type `Timedelta | Timestamp | None` in function `pandas.core.arrays._ranges.generate_regular_range` [bad-argument-type] +ERROR pandas/core/arrays/timedeltas.py:314:51-54: Argument `NaTType | Timedelta | None` is not assignable to parameter `end` with type `Timedelta | Timestamp | None` in function `pandas.core.arrays._ranges.generate_regular_range` [bad-argument-type] +ERROR pandas/core/arrays/timedeltas.py:316:33-45: Object of class `NoneType` has no attribute `_value` [missing-attribute] +ERROR pandas/core/arrays/timedeltas.py:316:47-57: Object of class `NoneType` has no attribute `_value` [missing-attribute] +ERROR pandas/core/arrays/timedeltas.py:336:20-65: Returned type `datetime64[date | int | None] | timedelta64[int | timedelta | None]` is not assignable to declared return type `timedelta64[int | timedelta | None]` [bad-return] +ERROR pandas/core/arrays/timedeltas.py:470:9-20: Class member `TimedeltaArray._add_offset` overrides parent class `TimelikeOps` in an inconsistent manner [bad-param-name-override] + WARN pandas/core/arrays/timedeltas.py:545:20-50: Redundant cast: `NaTType | Timedelta` is the same type as `NaTType | Timedelta` [redundant-cast] +ERROR pandas/core/arrays/timedeltas.py:573:41-70: No matching overload found for function `pandas._libs.tslibs.offsets.to_offset` called with arguments: (NaTType | Timedelta) [no-matching-overload] +ERROR pandas/core/arrays/timedeltas.py:1140:54-58: Argument `Literal['D', 'M', 'W', 'Y', 'd', 'day', 'days', 'h', 'hour', 'hours', 'hr', 'm', 'micro', 'micros', 'microsecond', 'microseconds', 'milli', 'millis', 'millisecond', 'milliseconds', 'min', 'minute', 'minutes', 'ms', 'nano', 'nanos', 'nanosecond', 'nanoseconds', 'ns', 's', 'sec', 'second', 'seconds', 'us', 'w', 'y', 'µs'] | None` is not assignable to parameter `unit` with type `str` in function `_ints_to_td64ns` [bad-argument-type] +ERROR pandas/core/arrays/timedeltas.py:1147:20-30: Object of class `ExtensionArray` has no attribute `_mask` +Object of class `ndarray` has no attribute `_mask` [missing-attribute] +ERROR pandas/core/arrays/timedeltas.py:1148:20-30: Object of class `ExtensionArray` has no attribute `_data` +Object of class `ndarray` has no attribute `_data` [missing-attribute] +ERROR pandas/core/arrays/timedeltas.py:1152:42-46: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Unknown` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas._libs.tslibs.conversion.cast_from_unit_vectorized` [bad-argument-type] +ERROR pandas/core/arrays/timedeltas.py:1161:40-44: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas._libs.tslibs.np_datetime.astype_overflowsafe` [bad-argument-type] +ERROR pandas/core/base.py:198:20-45: `NDFrameT` is not subscriptable [unsupported-operation] +ERROR pandas/core/base.py:212:20-50: `NDFrameT` is not subscriptable [unsupported-operation] +ERROR pandas/core/base.py:236:20-33: `NDFrameT` is not subscriptable [unsupported-operation] +ERROR pandas/core/common.py:525:20-42: Expected *-unpacked P.args and **-unpacked P.kwargs [invalid-param-spec] +ERROR pandas/core/common.py:586:32-41: `old_value` may be uninitialized [unbound-name] +ERROR pandas/core/computation/align.py:176:28-35: `list[Unknown]` is not assignable to upper bound `(...) -> Any` of type variable `F` [bad-specialization] +ERROR pandas/core/computation/align.py:209:24-27: Expected 0 positional arguments, got 1 in function `object.__init__` [bad-argument-count] +ERROR pandas/core/computation/align.py:209:29-34: Unexpected keyword argument `dtype` in function `object.__init__` [unexpected-keyword] +ERROR pandas/core/computation/align.py:210:20-23: Expected 0 positional arguments, got 1 in function `object.__init__` [bad-argument-count] +ERROR pandas/core/computation/align.py:210:25-30: Unexpected keyword argument `dtype` in function `object.__init__` [unexpected-keyword] +ERROR pandas/core/computation/align.py:210:38-42: Unexpected keyword argument `name` in function `object.__init__` [unexpected-keyword] +ERROR pandas/core/computation/eval.py:175:35-38: `msg` may be uninitialized [unbound-name] +ERROR pandas/core/computation/expr.py:172:9-173:41: Argument `Generator[object, None, None]` is not assignable to parameter `iterable` with type `Iterable[Sequence[int | str | tuple[int, int]] | TokenInfo]` in function `tokenize.untokenize` [bad-argument-type] +ERROR pandas/core/computation/expr.py:241:22-250:18: `-` is not supported between `UnionType` and `frozenset[str]` [unsupported-operation] +ERROR pandas/core/computation/expr.py:241:22-250:18: `-` is not supported between `type` and `frozenset[str]` [unsupported-operation] +ERROR pandas/core/computation/expr.py:635:25-60: `str | Any | Unknown` is not assignable to attribute `assigner` with type `None` [bad-assignment] +ERROR pandas/core/computation/ops.py:79:20-38: Expected second argument to `super` to be a class object or instance, got `type[Constant] | type[Self@Term]` [invalid-argument] +ERROR pandas/core/computation/ops.py:477:32-38: Argument `Any | None` is not assignable to parameter `cls` with type `type` in function `issubclass` [bad-argument-type] +ERROR pandas/core/computation/ops.py:478:36-42: Argument `Any | None` is not assignable to parameter `cls` with type `type` in function `issubclass` [bad-argument-type] +ERROR pandas/core/computation/ops.py:512:18-22: Attribute `func` cannot depend on type variable `_T_co`, which is not in the scope of class `UnaryOp` [invalid-type-var] +ERROR pandas/core/computation/pytables.py:95:9-14: Class member `Term.value` overrides parent class `Term` in an inconsistent manner [bad-override] +ERROR pandas/core/computation/pytables.py:164:16-19: `res` may be uninitialized [unbound-name] +ERROR pandas/core/computation/pytables.py:244:41-61: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Any` is not assignable to parameter `a` with type `_Buffer | _NestedSequence[bytes | complex | str] | _NestedSequence[_SupportsArray[dtype[Any]]] | _SupportsArray[dtype[Any]] | bytes | complex | str` in function `numpy._core.numeric.flatnonzero` [bad-argument-type] +ERROR pandas/core/computation/pytables.py:564:5-13: Class member `PyTablesExpr._visitor` overrides parent class `Expr` in an inconsistent manner [bad-override] +ERROR pandas/core/computation/pytables.py:565:5-8: Class member `PyTablesExpr.env` overrides parent class `Expr` in an inconsistent manner [bad-override] +ERROR pandas/core/construction.py:348:24-35: Object of class `Sequence` has no attribute `copy` [missing-attribute] + WARN pandas/core/construction.py:351:20-38: Redundant cast: `ndarray[tuple[Any, ...], dtype[Any]]` is the same type as `ndarray[tuple[Any, ...], dtype[Any]]` [redundant-cast] +ERROR pandas/core/construction.py:585:51-55: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | object` is not assignable to parameter `value` with type `Interval[Unknown] | Timedelta | Timestamp | bool | bytes | complex | complexfloating[Any, Unknown] | date | datetime | datetime64[date | int | None] | float | floating[Any] | int | integer[Any] | str | timedelta | timedelta64[int | timedelta | None]` in function `pandas.core.dtypes.cast.construct_1d_arraylike_from_scalar` [bad-argument-type] +ERROR pandas/core/construction.py:605:24-30: No matching overload found for function `list.__init__` called with arguments: (ndarray[tuple[Any, ...], dtype[Any]] | object) [no-matching-overload] +ERROR pandas/core/construction.py:658:20-26: No matching overload found for function `list.__init__` called with arguments: (object) [no-matching-overload] + WARN pandas/core/construction.py:822:23-40: Redundant cast: `ndarray[tuple[Any, ...], dtype[Any]]` is the same type as `ndarray[tuple[Any, ...], dtype[Any]]` [redundant-cast] + WARN pandas/core/construction.py:834:23-40: Redundant cast: `ndarray[tuple[Any, ...], dtype[Any]]` is the same type as `ndarray[tuple[Any, ...], dtype[Any]]` [redundant-cast] +ERROR pandas/core/dtypes/cast.py:177:17-33: `NaTType | Timestamp` is not assignable to variable `value` with type `Interval[Unknown] | Timedelta | Timestamp | bool | bytes | complex | complexfloating[Any, Unknown] | date | datetime | datetime64[date | int | None] | float | floating[Any] | int | integer[Any] | str | timedelta | timedelta64[int | timedelta | None]` [bad-assignment] +ERROR pandas/core/dtypes/cast.py:179:17-33: `NaTType | Timedelta` is not assignable to variable `value` with type `Interval[Unknown] | Timedelta | Timestamp | bool | bytes | complex | complexfloating[Any, Unknown] | date | datetime | datetime64[date | int | None] | float | floating[Any] | int | integer[Any] | str | timedelta | timedelta64[int | timedelta | None]` [bad-assignment] +ERROR pandas/core/dtypes/cast.py:344:23-34: Object of class `ExtensionArray` has no attribute `iloc` [missing-attribute] +ERROR pandas/core/dtypes/cast.py:359:44-50: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `b` with type `_Buffer | _NestedSequence[bytes | complex | str] | _NestedSequence[_SupportsArray[dtype[Any]]] | _SupportsArray[dtype[Any]] | bytes | complex | str` in function `numpy._core.numeric.allclose` [bad-argument-type] +ERROR pandas/core/dtypes/cast.py:380:36-42: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `b` with type `_Buffer | _NestedSequence[bytes | complex | str] | _NestedSequence[_SupportsArray[dtype[Any]]] | _SupportsArray[dtype[Any]] | bytes | complex | str` in function `numpy._core.numeric.allclose` [bad-argument-type] +ERROR pandas/core/dtypes/cast.py:386:39-45: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `a2` with type `_Buffer | _NestedSequence[bytes | complex | str] | _NestedSequence[_SupportsArray[dtype[Any]]] | _SupportsArray[dtype[Any]] | bytes | complex | str` in function `numpy._core.numeric.array_equal` [bad-argument-type] +ERROR pandas/core/dtypes/cast.py:407:16-36: Returned type `ndarray[tuple[Any, ...], dtype[signedinteger[_64Bit]]] | Unknown` is not assignable to declared return type `NumpyIndexT` [bad-return] +ERROR pandas/core/dtypes/cast.py:409:16-37: Returned type `ndarray[tuple[Any, ...], dtype[unsignedinteger[_64Bit]]] | Unknown` is not assignable to declared return type `NumpyIndexT` [bad-return] +ERROR pandas/core/dtypes/cast.py:411:16-38: Returned type `ndarray[tuple[Any, ...], dtype[float64]] | Unknown` is not assignable to declared return type `NumpyIndexT` [bad-return] +ERROR pandas/core/dtypes/cast.py:500:42-46: Argument `float | Unknown | None` is not assignable to parameter `dtype` with type `_SupportsDType[dtype[datetime64[date | int | None]]] | _SupportsDType[dtype[timedelta64[int | timedelta | None]]] | dtype[datetime64[date | int | None]] | dtype[timedelta64[int | timedelta | None]] | str | type[datetime64[date | int | None]] | type[timedelta64[int | timedelta | None]]` in function `numpy._core.multiarray.datetime_data` [bad-argument-type] +ERROR pandas/core/dtypes/common.py:1681:28-45: Object of class `type` has no attribute `type` [missing-attribute] +ERROR pandas/core/dtypes/dtypes.py:329:35-47: Object of class `NoneType` has no attribute `dtype` [missing-attribute] +ERROR pandas/core/dtypes/dtypes.py:343:21-33: Object of class `NoneType` has no attribute `dtype` [missing-attribute] +ERROR pandas/core/dtypes/dtypes.py:344:17-29: Object of class `NoneType` has no attribute `dtype` [missing-attribute] +ERROR pandas/core/dtypes/dtypes.py:651:16-32: Returned type `Index | None` is not assignable to declared return type `Index` [bad-return] +ERROR pandas/core/dtypes/dtypes.py:806:43-45: Argument `tzinfo | None` is not assignable to parameter `tz` with type `tzinfo` in function `pandas._libs.tslibs.timezones.tz_standardize` [bad-argument-type] +ERROR pandas/core/dtypes/dtypes.py:972:30-88: No matching overload found for function `numpy._core.fromnumeric.amax` called with arguments: (list[ExtensionDtype | dtype[Any]]) [no-matching-overload] +ERROR pandas/core/dtypes/dtypes.py:1063:26-49: Object of class `BaseOffset` has no attribute `_period_dtype_code` [missing-attribute] +ERROR pandas/core/dtypes/dtypes.py:1066:9-16: Object of class `PeriodDtypeBase` has no attribute `_freq` [missing-attribute] +ERROR pandas/core/dtypes/dtypes.py:1067:16-17: Returned type `PeriodDtypeBase` is not assignable to declared return type `PeriodDtype` [bad-return] +ERROR pandas/core/dtypes/dtypes.py:1327:29-36: `ExtensionDtype | dtype[Any]` is not assignable to attribute `_subtype` with type `dtype[Any] | None` [bad-assignment] +ERROR pandas/core/dtypes/dtypes.py:1398:9-13: Class member `IntervalDtype.type` overrides parent class `PandasExtensionDtype` in an inconsistent manner [bad-override] +ERROR pandas/core/dtypes/inference.py:301:17-20: Argument `object` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR pandas/core/frame.py:664:5-9: Class member `DataFrame._mgr` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/frame.py:894:56-60: Argument `list[Unknown] | Unknown` is not assignable to parameter `value` with type `Interval[Unknown] | Timedelta | Timestamp | bool | bytes | complex | complexfloating[Any, Unknown] | date | datetime | datetime64[date | int | None] | float | floating[Any] | int | integer[Any] | str | timedelta | timedelta64[int | timedelta | None]` in function `pandas.core.dtypes.cast.construct_1d_arraylike_from_scalar` [bad-argument-type] +ERROR pandas/core/frame.py:900:21-25: Argument `list[Unknown] | Unknown` is not assignable to parameter `value` with type `Interval[Unknown] | Timedelta | Timestamp | bool | bytes | complex | complexfloating[Any, Unknown] | date | datetime | datetime64[date | int | None] | float | floating[Any] | int | integer[Any] | str | timedelta | timedelta64[int | timedelta | None]` in function `pandas.core.dtypes.cast.construct_2d_arraylike_from_scalar` [bad-argument-type] +ERROR pandas/core/frame.py:1678:17-21: Expected string literal "itertuple" [invalid-argument] +ERROR pandas/core/frame.py:2055:9-16: Overload return type `dict[Unknown, Unknown]` is not assignable to implementation return type `list[type[dict[Unknown, Unknown]]] | type[dict[Unknown, Unknown]]` [inconsistent-overload] +ERROR pandas/core/frame.py:2064:9-16: Overload return type `list[dict[Unknown, Unknown]]` is not assignable to implementation return type `list[type[dict[Unknown, Unknown]]] | type[dict[Unknown, Unknown]]` [inconsistent-overload] +ERROR pandas/core/frame.py:2185:16-61: Returned type `MutableMapping[Unknown, Unknown] | list[MutableMappingT]` is not assignable to declared return type `list[MutableMappingT] | MutableMappingT` [bad-return] +ERROR pandas/core/frame.py:2541:20-41: `in` is not supported between `Hashable` and `None` [not-iterable] +ERROR pandas/core/frame.py:2541:20-41: `in` is not supported between `str` and `None` [not-iterable] +ERROR pandas/core/frame.py:2541:20-41: `in` is not supported between `Unknown` and `None` [not-iterable] +ERROR pandas/core/frame.py:2541:20-41: `in` is not supported between `None` and `None` [not-iterable] +ERROR pandas/core/frame.py:2542:37-56: `None` is not subscriptable [unsupported-operation] +ERROR pandas/core/frame.py:2543:22-48: `in` is not supported between `int` and `None` [not-iterable] +ERROR pandas/core/frame.py:2544:37-61: `None` is not subscriptable [unsupported-operation] +ERROR pandas/core/frame.py:4106:9-20: Class member `DataFrame.__getitem__` overrides parent class `NDFrame` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/frame.py:4647:36-77: No matching overload found for function `numpy.lib._shape_base_impl.tile` called with arguments: (ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]], tuple[int, Literal[1]]) [no-matching-overload] +ERROR pandas/core/frame.py:5232:31-40: No matching overload found for function `frozenset.__new__` called with arguments: (type[frozenset[_T_co]], tuple[()] | tuple[Unknown] | Unknown | None) [no-matching-overload] +ERROR pandas/core/frame.py:5232:51-60: No matching overload found for function `frozenset.__new__` called with arguments: (type[frozenset[_T_co]], tuple[()] | tuple[Unknown] | Unknown | None) [no-matching-overload] +ERROR pandas/core/frame.py:7245:9-20: Class member `DataFrame.sort_values` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/frame.py:10189:37-42: Argument `list[Hashable]` is not assignable to parameter `level` with type `list[int]` in function `pandas.core.reshape.reshape.stack_v3` [bad-argument-type] +ERROR pandas/core/frame.py:10624:42-49: Argument `int | integer[Any]` is not assignable to parameter `periods` with type `Sequence[int] | int` in function `DataFrame.shift` [bad-argument-type] +ERROR pandas/core/frame.py:10628:37-44: Argument `int | integer[Any]` is not assignable to parameter `n` with type `int` in function `pandas.core.internals.managers.BaseBlockManager.diff` [bad-argument-type] +ERROR pandas/core/frame.py:10732:37-41: Argument `Unknown | None` is not assignable to parameter `func` with type `((...) -> Unknown) | MutableMapping[Hashable, ((...) -> Unknown) | list[((...) -> Unknown) | str] | str] | list[((...) -> Unknown) | str] | str` in function `pandas.core.apply.frame_apply` [bad-argument-type] +ERROR pandas/core/frame.py:11426:20-26: Returned type `DataFrame | Series` is not assignable to declared return type `DataFrame` [bad-return] +ERROR pandas/core/frame.py:12132:24-35: Object of class `ndarray` has no attribute `_reduce` [missing-attribute] +ERROR pandas/core/frame.py:12227:9-12: Class member `DataFrame.any` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/frame.py:12320:9-12: Class member `DataFrame.min` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/frame.py:12367:9-12: Class member `DataFrame.max` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/frame.py:12602:9-13: Class member `DataFrame.mean` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/frame.py:12649:9-15: Class member `DataFrame.median` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/frame.py:12698:9-12: Class member `DataFrame.sem` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/frame.py:12818:9-12: Class member `DataFrame.var` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/frame.py:12937:9-12: Class member `DataFrame.std` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/frame.py:13063:9-13: Class member `DataFrame.skew` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/frame.py:13183:9-13: Class member `DataFrame.kurt` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/frame.py:13311:9-15: Class member `DataFrame.cummin` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/frame.py:13320:16-67: Returned type `NDFrame` is not assignable to declared return type `Self@DataFrame` [bad-return] +ERROR pandas/core/frame.py:13323:9-15: Class member `DataFrame.cummax` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/frame.py:13332:16-67: Returned type `NDFrame` is not assignable to declared return type `Self@DataFrame` [bad-return] +ERROR pandas/core/frame.py:13335:9-15: Class member `DataFrame.cumsum` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/frame.py:13344:16-67: Returned type `NDFrame` is not assignable to declared return type `Self@DataFrame` [bad-return] +ERROR pandas/core/frame.py:13347:9-16: Class member `DataFrame.cumprod` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/frame.py:13356:16-68: Returned type `NDFrame` is not assignable to declared return type `Self@DataFrame` [bad-return] +ERROR pandas/core/frame.py:13917:45-48: `res` may be uninitialized [unbound-name] +ERROR pandas/core/frame.py:13917:55-58: `res` may be uninitialized [unbound-name] +ERROR pandas/core/frame.py:14223:5-22: Class member `DataFrame._info_axis_number` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/frame.py:14224:5-20: Class member `DataFrame._info_axis_name` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/generic.py:3553:38-39: Argument `complex | float` is not assignable to parameter `num` with type `float` in function `pandas.io.formats.format.EngFormatter.__call__` [bad-argument-type] +ERROR pandas/core/generic.py:4217:24-41: Returned type `ndarray[tuple[Any, ...], dtype[Any]] | Any` is not assignable to declared return type `Self@NDFrame` [bad-return] +ERROR pandas/core/generic.py:4230:28-37: `new_index` may be uninitialized [unbound-name] +ERROR pandas/core/generic.py:4592:13-25: `str` is not assignable to `Literal['columns', 'index', 'rows'] | int` [bad-assignment] +ERROR pandas/core/generic.py:4669:24-37: Object of class `ndarray` has no attribute `to_numpy` [missing-attribute] +ERROR pandas/core/generic.py:6086:27-73: No matching overload found for function `pandas.core.common.pipe` called with arguments: (Self@NDFrame, ((Self@NDFrame, ParamSpec(P)) -> T) | tuple[(...) -> T, str], *tuple[Any, ...], **dict[str, Any]) [no-matching-overload] + WARN pandas/core/generic.py:6523:20-34: Redundant cast: `Self@NDFrame` is the same type as `Self@NDFrame` [redundant-cast] +ERROR pandas/core/generic.py:7571:26-42: Object of class `NoneType` has no attribute `items` +Object of class `bool` has no attribute `items` [missing-attribute] +ERROR pandas/core/generic.py:7604:32-81: No matching overload found for function `NDFrame.replace` called with arguments: (dict[Unknown, Unknown] | list[Unknown] | tuple[Any, ...], dict[Unknown, Unknown] | list[Unknown] | tuple[Any, ...], inplace=bool, regex=builtins.bool | numpy.bool[builtins.bool]) [no-matching-overload] +ERROR pandas/core/generic.py:7621:31-46: `None` is not subscriptable [unsupported-operation] +ERROR pandas/core/generic.py:7622:36-51: Object of class `NoneType` has no attribute `keys` [missing-attribute] +ERROR pandas/core/generic.py:7636:65-81: Object of class `NoneType` has no attribute `items` [missing-attribute] +ERROR pandas/core/generic.py:7646:43-53: Argument `Unknown | None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR pandas/core/generic.py:7649:24-34: Argument `Unknown | None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR pandas/core/generic.py:7652:42-52: Argument `Unknown | None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR pandas/core/generic.py:7655:30-40: Argument `Unknown | None` is not assignable to parameter `src_list` with type `list[Any]` in function `pandas.core.internals.managers.BaseBlockManager.replace_list` [bad-argument-type] +ERROR pandas/core/generic.py:7658:27-32: Argument `builtins.bool | numpy.bool[builtins.bool]` is not assignable to parameter `regex` with type `builtins.bool` in function `pandas.core.internals.managers.BaseBlockManager.replace_list` [bad-argument-type] +ERROR pandas/core/generic.py:7686:46-51: Argument `builtins.bool | numpy.bool[builtins.bool]` is not assignable to parameter `regex` with type `builtins.bool` in function `pandas.core.array_algos.replace.should_use_regex` [bad-argument-type] + WARN pandas/core/generic.py:8122:28-44: Redundant cast: `Series` is the same type as `Series` [redundant-cast] +ERROR pandas/core/generic.py:9956:64-72: `res_cols` may be uninitialized [unbound-name] +ERROR pandas/core/groupby/generic.py:1133:17-22: Argument `list[ndarray[tuple[int], dtype[Unknown]] | ndarray[tuple[Any, ...], dtype[Any]] | ndarray[tuple[Any, ...], dtype[Unknown]]]` is not assignable to parameter `right_keys` with type `list[ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]]` in function `pandas.core.reshape.merge.get_join_indexers` [bad-argument-type] +ERROR pandas/core/groupby/generic.py:2258:19-23: `path` may be uninitialized [unbound-name] +ERROR pandas/core/groupby/groupby.py:712:24-49: `NDFrameT` is not subscriptable [unsupported-operation] +ERROR pandas/core/groupby/groupby.py:770:24-53: No matching overload found for function `pandas.core.common.pipe` called with arguments: (Self@BaseGroupBy, ((Self@BaseGroupBy, ParamSpec(P)) -> T) | tuple[(...) -> T, str], *tuple[Any, ...], **dict[str, Any]) [no-matching-overload] +ERROR pandas/core/groupby/groupby.py:1603:28-48: Returned type `object` is not assignable to declared return type `NDFrameT` [bad-return] + WARN pandas/core/groupby/groupby.py:1837:28-63: Redundant cast: `Literal['idxmax', 'idxmin']` is the same type as `Literal['idxmax', 'idxmin']` [redundant-cast] +ERROR pandas/core/groupby/groupby.py:1845:49-55: Argument `NDFrameT | Unknown` is not assignable to parameter `result` with type `NDFrameT` in function `GroupBy._wrap_transform_fast_result` [bad-argument-type] +ERROR pandas/core/groupby/groupby.py:1870:16-22: Returned type `NDFrameT | Unknown` is not assignable to declared return type `NDFrameT` [bad-return] +ERROR pandas/core/groupby/groupby.py:5212:18-24: `concat` may be uninitialized [unbound-name] +ERROR pandas/core/groupby/groupby.py:5618:54-65: `weights_arr` may be uninitialized [unbound-name] +ERROR pandas/core/groupby/groupby.py:5719:16-22: Returned type `Series | NDFrameT` is not assignable to declared return type `NDFrameT` [bad-return] +ERROR pandas/core/groupby/grouper.py:369:28-36: `NDFrameT` is not subscriptable [unsupported-operation] +ERROR pandas/core/groupby/grouper.py:656:47-54: `na_code` may be uninitialized [unbound-name] +ERROR pandas/core/groupby/grouper.py:657:34-41: `na_mask` may be uninitialized [unbound-name] +ERROR pandas/core/groupby/grouper.py:657:43-50: `na_code` may be uninitialized [unbound-name] +ERROR pandas/core/groupby/grouper.py:678:16-30: Returned type `tuple[ndarray[tuple[Any, ...], dtype[signedinteger[_32Bit | _64Bit]]] | ndarray[tuple[Any, ...], dtype[Any]], ExtensionArray | Index | ndarray[tuple[Any, ...], dtype[Any]]]` is not assignable to declared return type `tuple[ndarray[tuple[Any, ...], dtype[signedinteger[Any]]], ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]]` [bad-return] +ERROR pandas/core/groupby/grouper.py:871:30-43: `NDFrameT` is not subscriptable [unsupported-operation] +ERROR pandas/core/groupby/grouper.py:881:28-36: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR pandas/core/groupby/grouper.py:886:57-60: Argument `Index | Unknown | None` is not assignable to parameter `key` with type `Hashable` in function `pandas.core.generic.NDFrame._check_label_or_level_ambiguity` [bad-argument-type] +ERROR pandas/core/groupby/grouper.py:887:49-57: `NDFrameT` is not subscriptable [unsupported-operation] +ERROR pandas/core/groupby/grouper.py:892:32-36: Argument `Index | Unknown | None` is not assignable to parameter `element` with type `Hashable` in function `set.add` [bad-argument-type] +ERROR pandas/core/groupby/grouper.py:893:42-45: Argument `Index | Unknown | None` is not assignable to parameter `key` with type `Hashable` in function `pandas.core.generic.NDFrame._is_level_reference` [bad-argument-type] +ERROR pandas/core/groupby/numba_.py:116:18-42: Type `prange` is not iterable [not-iterable] +ERROR pandas/core/groupby/numba_.py:118:22-47: Type `prange` is not iterable [not-iterable] +ERROR pandas/core/groupby/numba_.py:176:18-42: Type `prange` is not iterable [not-iterable] +ERROR pandas/core/groupby/numba_.py:178:22-47: Type `prange` is not iterable [not-iterable] +ERROR pandas/core/groupby/ops.py:200:34-50: Object of class `FunctionType` has no attribute `__signatures__` [missing-attribute] +ERROR pandas/core/groupby/ops.py:502:32-38: `counts` may be uninitialized [unbound-name] +ERROR pandas/core/groupby/ops.py:680:31-40: `null_gaps` may be uninitialized [unbound-name] +ERROR pandas/core/indexers/utils.py:325:20-31: Object of class `Index` has no attribute `sum` [missing-attribute] +ERROR pandas/core/indexes/accessors.py:91:9-31: Class member `Properties._delegate_property_get` overrides parent class `PandasDelegate` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/accessors.py:175:9-31: Class member `ArrowTemporalProperties._delegate_property_get` overrides parent class `PandasDelegate` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/base.py:320:23-33: No matching overload found for function `type.__new__` called with arguments: (type[Unknown], **Unknown) [no-matching-overload] +ERROR pandas/core/indexes/base.py:545:32-38: No matching overload found for function `list.__init__` called with arguments: (memoryview[int] | Unknown | None) [no-matching-overload] +ERROR pandas/core/indexes/base.py:555:25-29: Argument `list[Unknown] | memoryview[int] | Unknown` is not assignable to parameter `tuples` with type `Iterable[tuple[Hashable, ...]]` in function `pandas.core.indexes.multi.MultiIndex.from_tuples` [bad-argument-type] +ERROR pandas/core/indexes/base.py:562:28-34: No matching overload found for function `list.__init__` called with arguments: (list[Unknown] | memoryview[int] | Unknown | None) [no-matching-overload] +ERROR pandas/core/indexes/base.py:660:9-21: Object of class `object` has no attribute `_data` [missing-attribute] +ERROR pandas/core/indexes/base.py:661:9-21: Object of class `object` has no attribute `_name` [missing-attribute] +ERROR pandas/core/indexes/base.py:662:9-22: Object of class `object` has no attribute `_cache` [missing-attribute] +ERROR pandas/core/indexes/base.py:663:9-31: Object of class `object` has no attribute `_reset_identity` [missing-attribute] +ERROR pandas/core/indexes/base.py:665:13-31: Object of class `object` has no attribute `_references` [missing-attribute] +ERROR pandas/core/indexes/base.py:667:13-31: Object of class `object` has no attribute `_references` [missing-attribute] +ERROR pandas/core/indexes/base.py:668:9-27: Object of class `object` has no attribute `_references` [missing-attribute] +ERROR pandas/core/indexes/base.py:670:16-22: Returned type `object` is not assignable to declared return type `Self@Index` [bad-return] +ERROR pandas/core/indexes/base.py:972:20-26: Argument `object` is not assignable to parameter `a` with type `_Buffer | _NestedSequence[bytes | complex | str] | _NestedSequence[_SupportsArray[dtype[Any]]] | _SupportsArray[dtype[Any]] | bytes | complex | str` in function `numpy._core.fromnumeric.ndim` [bad-argument-type] +ERROR pandas/core/indexes/base.py:1359:42-49: Argument `ndarray[tuple[Any, ...], dtype[signedinteger[_32Bit | _64Bit]]]` is not assignable to parameter `repeats` with type `Sequence[int] | int` in function `pandas.core.arrays.base.ExtensionArray.repeat` [bad-argument-type] +ERROR pandas/core/indexes/base.py:1831:16-25: Argument `list[Unknown | None] | Unknown | None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR pandas/core/indexes/base.py:1833:75-84: Argument `list[Unknown | None] | Unknown | None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR pandas/core/indexes/base.py:1837:31-41: Type `None` is not iterable [not-iterable] +ERROR pandas/core/indexes/base.py:1839:16-25: Returned type `list[Unknown | None] | Unknown | None` is not assignable to declared return type `list[Hashable]` [bad-return] +ERROR pandas/core/indexes/base.py:3737:48-60: Object of class `Index` has no attribute `codes` [missing-attribute] +ERROR pandas/core/indexes/base.py:3755:51-68: Object of class `Index` has no attribute `categories` [missing-attribute] +ERROR pandas/core/indexes/base.py:3757:57-69: Object of class `Index` has no attribute `codes` [missing-attribute] +ERROR pandas/core/indexes/base.py:3817:48-58: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Unknown` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas._libs.index.ExtensionEngine.get_indexer` [bad-argument-type] +ERROR pandas/core/indexes/base.py:3817:48-58: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Unknown` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas._libs.index.IndexEngine.get_indexer` [bad-argument-type] +ERROR pandas/core/indexes/base.py:4567:12-22: `join_index` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/base.py:4568:26-36: `join_index` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/base.py:4570:12-22: `join_index` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/base.py:4573:45-55: `join_index` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/base.py:4574:12-22: `join_index` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/base.py:4577:46-56: `join_index` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/base.py:4578:16-26: `join_index` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/base.py:4900:24-28: `lidx` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/base.py:4900:62-66: `lidx` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/base.py:4901:24-28: `ridx` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/base.py:4901:62-66: `ridx` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/base.py:4902:16-26: `join_index` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/base.py:5299:23-35: Object of class `object` has no attribute `to_numpy` [missing-attribute] +ERROR pandas/core/indexes/base.py:5310:25-30: No matching overload found for function `pandas.core.arrays.base.ExtensionArray.__getitem__` called with arguments: (ndarray[tuple[Any, ...], dtype[Any]] | object | Unknown) [no-matching-overload] +ERROR pandas/core/indexes/base.py:5310:25-30: No matching overload found for function `numpy.ndarray.__getitem__` called with arguments: (ndarray[tuple[Any, ...], dtype[Any]] | object | Unknown) [no-matching-overload] +ERROR pandas/core/indexes/base.py:6135:64-74: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Unknown` is not assignable to parameter `targets` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas._libs.index.ExtensionEngine.get_indexer_non_unique` [bad-argument-type] +ERROR pandas/core/indexes/base.py:6135:64-74: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Unknown` is not assignable to parameter `targets` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas._libs.index.IndexEngine.get_indexer_non_unique` [bad-argument-type] +ERROR pandas/core/indexes/category.py:186:5-10: Class member `CategoricalIndex._data` overrides parent class `NDArrayBackedExtensionIndex` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/category.py:198:11-32: Cannot index into `dict[int16 | int32 | int64 | int8, type[Int16Engine] | type[Int32Engine] | type[Int64Engine] | type[Int8Engine]]` [bad-index] +ERROR pandas/core/indexes/category.py:429:9-37: Class member `CategoricalIndex._maybe_cast_listlike_indexer` overrides parent class `NDArrayBackedExtensionIndex` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/indexes/datetimelike.py:93:5-10: Class member `DatetimeIndexOpsMixin._data` overrides parent class `NDArrayBackedExtensionIndex` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/datetimelike.py:188:39-46: Cannot instantiate `DatetimeIndexOpsMixin` because the following members are abstract: `_resolution_obj` [bad-instantiation] +ERROR pandas/core/indexes/datetimelike.py:200:42-52: Object of class `CategoricalIndex` has no attribute `asi8` +Object of class `Index` has no attribute `asi8` [missing-attribute] +ERROR pandas/core/indexes/datetimelike.py:276:12-16: `freq` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/datetimelike.py:276:48-52: `freq` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/datetimelike.py:277:23-27: `freq` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/datetimelike.py:279:23-27: `freq` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/datetimelike.py:367:58-62: `reso` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/datetimelike.py:367:64-70: `parsed` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/datetimelike.py:409:9-37: Class member `DatetimeIndexOpsMixin._maybe_cast_listlike_indexer` overrides parent class `NDArrayBackedExtensionIndex` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/indexes/datetimelike.py:428:5-10: Class member `DatetimeTimedeltaMixin._data` overrides parent class `DatetimeIndexOpsMixin` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/datetimelike.py:552:33-554:14: No matching overload found for function `pandas._libs.tslibs.offsets.to_offset` called with arguments: (NaTType | Timedelta) [no-matching-overload] +ERROR pandas/core/indexes/datetimelike.py:624:28-56: Type `Materialization` is not iterable [not-iterable] +ERROR pandas/core/indexes/datetimelike.py:807:45-61: `-` is not supported between `NaTType` and `BaseOffset` [unsupported-operation] +ERROR pandas/core/indexes/datetimelike.py:815:45-49: Argument `NaTType | Timedelta | Timestamp` is not assignable to parameter `dt` with type `datetime` in function `pandas._libs.tslibs.offsets.BaseOffset.is_on_offset` [bad-argument-type] +ERROR pandas/core/indexes/datetimelike.py:855:13-31: Object of class `NDArrayBackedExtensionArray` has no attribute `_freq` [missing-attribute] +ERROR pandas/core/indexes/datetimelike.py:856:16-22: Returned type `NDArrayBackedExtensionIndex` is not assignable to declared return type `Self@DatetimeTimedeltaMixin` [bad-return] +ERROR pandas/core/indexes/datetimes.py:267:5-10: Class member `DatetimeIndex._data` overrides parent class `DatetimeTimedeltaMixin` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/datetimes.py:380:16-44: `%` is not supported between `NaTType` and `timedelta` [unsupported-operation] +ERROR pandas/core/indexes/datetimes.py:546:22-36: Object of class `NaTType` has no attribute `start_time` [missing-attribute] +ERROR pandas/core/indexes/datetimes.py:546:38-50: Object of class `NaTType` has no attribute `end_time` [missing-attribute] +ERROR pandas/core/indexes/datetimes.py:579:16-28: Returned type `tuple[NaTType | Timestamp, Resolution]` is not assignable to declared return type `tuple[Timestamp, Resolution]` [bad-return] +ERROR pandas/core/indexes/extension.py:147:5-10: Class member `ExtensionIndex._data` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/extension.py:169:5-10: Class member `NDArrayBackedExtensionIndex._data` overrides parent class `ExtensionIndex` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/interval.py:242:5-10: Class member `IntervalIndex._data` overrides parent class `ExtensionIndex` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/interval.py:807:20-33: Returned type `signedinteger[_32Bit | _64Bit] | Unknown` is not assignable to declared return type `int | ndarray[tuple[Any, ...], dtype[Any]] | slice[Any, Any, Any]` [bad-return] +ERROR pandas/core/indexes/interval.py:1375:36-41: Argument `Unknown | None` is not assignable to parameter `value` with type `Interval[Unknown] | Timedelta | Timestamp | bool | bytes | complex | complexfloating[Any, Unknown] | date | datetime | datetime64[date | int | None] | float | floating[Any] | int | integer[Any] | str | timedelta | timedelta64[int | timedelta | None]` in function `pandas.core.dtypes.cast.maybe_box_datetimelike` [bad-argument-type] +ERROR pandas/core/indexes/interval.py:1376:34-37: Argument `Unknown | None` is not assignable to parameter `value` with type `Interval[Unknown] | Timedelta | Timestamp | bool | bytes | complex | complexfloating[Any, Unknown] | date | datetime | datetime64[date | int | None] | float | floating[Any] | int | integer[Any] | str | timedelta | timedelta64[int | timedelta | None]` in function `pandas.core.dtypes.cast.maybe_box_datetimelike` [bad-argument-type] +ERROR pandas/core/indexes/interval.py:1397:29-35: No matching overload found for function `pandas._libs.tslibs.offsets.to_offset` called with arguments: (Literal['D', 1] | Unknown) [no-matching-overload] +ERROR pandas/core/indexes/interval.py:1435:39-57: `+` is not supported between `Timedelta` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1435:39-57: `+` is not supported between `Timestamp` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1435:39-57: `+` is not supported between `bytes` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1435:39-57: `+` is not supported between `date` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1435:39-57: `+` is not supported between `datetime` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1435:39-57: `+` is not supported between `datetime64[date | int | None]` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1435:39-57: `+` is not supported between `str` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1435:39-57: `+` is not supported between `timedelta` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1435:39-57: `+` is not supported between `timedelta64[int | timedelta | None]` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1435:46-56: `*` is not supported between `Number` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1435:46-56: `*` is not supported between `None` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `Interval[bool]` and `Number` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `Interval[bool]` and `number[Any, complex | float | int]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `Interval[bool]` and `None` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `Interval[float]` and `Number` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `Interval[float]` and `number[Any, complex | float | int]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `Interval[float]` and `None` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `Interval[int]` and `Number` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `Interval[int]` and `number[Any, complex | float | int]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `Interval[int]` and `None` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `Interval[Unknown]` and `Number` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `Interval[Unknown]` and `number[Any, complex | float | int]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `Interval[Unknown]` and `None` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `Timedelta` and `Number` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `Timedelta` and `number[Any, complex | float | int]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `Timedelta` and `None` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `Timestamp` and `Number` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `Timestamp` and `number[Any, complex | float | int]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `Timestamp` and `None` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `complex` and `Number` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `complex` and `number[Any, complex | float | int]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `complex` and `None` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `complex128` and `Number` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `complex128` and `number[Any, complex | float | int]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `complex128` and `None` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `complexfloating[Any, Unknown]` and `Number` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `complexfloating[Any, Unknown]` and `number[Any, complex | float | int]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `complexfloating[Any, Unknown]` and `None` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `date` and `Number` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `date` and `number[Any, complex | float | int]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `date` and `None` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `datetime` and `Number` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `datetime` and `number[Any, complex | float | int]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `datetime` and `None` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `datetime64[date | int | None]` and `Number` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `datetime64[date | int | None]` and `number[Any, complex | float | int]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `datetime64[date | int | None]` and `None` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `float` and `Number` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `float` and `number[Any, complex | float | int]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `float` and `None` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `floating[Any]` and `Number` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `floating[Any]` and `number[Any, complex | float | int]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `floating[Any]` and `None` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `int` and `Number` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `int` and `number[Any, complex | float | int]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `int` and `None` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `timedelta` and `Number` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `timedelta` and `number[Any, complex | float | int]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `timedelta` and `None` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `timedelta64[int | timedelta | None]` and `Number` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `timedelta64[int | timedelta | None]` and `number[Any, complex | float | int]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:31-52: `//` is not supported between `timedelta64[int | timedelta | None]` and `None` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Interval[Unknown]` and `Interval[Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Interval[Unknown]` and `Timestamp` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Interval[Unknown]` and `bytes` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Interval[Unknown]` and `complex` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Interval[Unknown]` and `complexfloating[Any, Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Interval[Unknown]` and `date` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Interval[Unknown]` and `datetime` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Interval[Unknown]` and `datetime64[date | int | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Interval[Unknown]` and `floating[Any]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Interval[Unknown]` and `integer[Any]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Interval[Unknown]` and `str` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Interval[Unknown]` and `timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Interval[Unknown]` and `timedelta64[int | timedelta | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timedelta` and `Timestamp` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timedelta` and `bool` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timedelta` and `bytes` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timedelta` and `complex` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timedelta` and `complexfloating[Any, Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timedelta` and `date` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timedelta` and `datetime` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timedelta` and `datetime64[date | int | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timedelta` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timedelta` and `floating[Any]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timedelta` and `int` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timedelta` and `integer[Any]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timedelta` and `str` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timedelta` and `timedelta64[int | timedelta | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timestamp` and `Interval[Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timestamp` and `bool` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timestamp` and `bytes` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timestamp` and `complex` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timestamp` and `complexfloating[Any, Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timestamp` and `date` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timestamp` and `datetime64[date | int | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timestamp` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timestamp` and `floating[Any]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timestamp` and `int` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timestamp` and `integer[Any]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `Timestamp` and `str` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bool` and `Timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bool` and `Timestamp` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bool` and `bytes` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bool` and `date` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bool` and `datetime` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bool` and `str` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bool` and `timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bytes` and `Interval[Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bytes` and `Timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bytes` and `Timestamp` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bytes` and `bool` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bytes` and `bytes` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bytes` and `complex` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bytes` and `complexfloating[Any, Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bytes` and `date` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bytes` and `datetime` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bytes` and `datetime64[date | int | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bytes` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bytes` and `floating[Any]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bytes` and `int` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bytes` and `integer[Any]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bytes` and `str` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bytes` and `timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `bytes` and `timedelta64[int | timedelta | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complex` and `Interval[Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complex` and `Timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complex` and `Timestamp` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complex` and `bytes` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complex` and `date` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complex` and `datetime` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complex` and `datetime64[date | int | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complex` and `str` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complex` and `timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complex` and `timedelta64[int | timedelta | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complexfloating[Any, Unknown]` and `Interval[Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complexfloating[Any, Unknown]` and `Timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complexfloating[Any, Unknown]` and `Timestamp` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complexfloating[Any, Unknown]` and `bytes` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complexfloating[Any, Unknown]` and `date` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complexfloating[Any, Unknown]` and `datetime` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complexfloating[Any, Unknown]` and `datetime64[date | int | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complexfloating[Any, Unknown]` and `str` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complexfloating[Any, Unknown]` and `timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `complexfloating[Any, Unknown]` and `timedelta64[int | timedelta | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `date` and `Interval[Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `date` and `bool` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `date` and `bytes` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `date` and `complex` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `date` and `complexfloating[Any, Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `date` and `datetime64[date | int | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `date` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `date` and `floating[Any]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `date` and `int` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `date` and `integer[Any]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `date` and `str` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `date` and `timedelta64[int | timedelta | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime` and `Interval[Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime` and `bool` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime` and `bytes` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime` and `complex` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime` and `complexfloating[Any, Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime` and `date` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime` and `datetime64[date | int | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime` and `floating[Any]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime` and `int` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime` and `integer[Any]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime` and `str` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime` and `timedelta64[int | timedelta | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime64[date | int | None]` and `Interval[Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime64[date | int | None]` and `Timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime64[date | int | None]` and `Timestamp` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime64[date | int | None]` and `bytes` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime64[date | int | None]` and `complex` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime64[date | int | None]` and `complexfloating[Any, Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime64[date | int | None]` and `date` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime64[date | int | None]` and `datetime` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime64[date | int | None]` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime64[date | int | None]` and `floating[Any]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime64[date | int | None]` and `str` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `datetime64[date | int | None]` and `timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `float` and `Timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `float` and `Timestamp` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `float` and `bytes` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `float` and `date` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `float` and `datetime` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `float` and `datetime64[date | int | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `float` and `str` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `float` and `timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `float` and `timedelta64[int | timedelta | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `floating[Any]` and `Interval[Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `floating[Any]` and `Timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `floating[Any]` and `Timestamp` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `floating[Any]` and `bytes` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `floating[Any]` and `date` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `floating[Any]` and `datetime` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `floating[Any]` and `datetime64[date | int | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `floating[Any]` and `str` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `floating[Any]` and `timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `floating[Any]` and `timedelta64[int | timedelta | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `int` and `Timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `int` and `Timestamp` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `int` and `bytes` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `int` and `date` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `int` and `datetime` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `int` and `str` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `int` and `timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `integer[Any]` and `Interval[Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `integer[Any]` and `Timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `integer[Any]` and `Timestamp` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `integer[Any]` and `bytes` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `integer[Any]` and `date` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `integer[Any]` and `datetime` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `integer[Any]` and `str` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `integer[Any]` and `timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `str` and `Interval[Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `str` and `Timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `str` and `Timestamp` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `str` and `bool` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `str` and `bytes` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `str` and `complex` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `str` and `complexfloating[Any, Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `str` and `date` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `str` and `datetime` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `str` and `datetime64[date | int | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `str` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `str` and `floating[Any]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `str` and `int` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `str` and `integer[Any]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `str` and `str` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `str` and `timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `str` and `timedelta64[int | timedelta | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta` and `Interval[Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta` and `Timestamp` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta` and `bool` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta` and `bytes` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta` and `complex` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta` and `complexfloating[Any, Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta` and `date` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta` and `datetime` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta` and `datetime64[date | int | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta` and `floating[Any]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta` and `int` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta` and `integer[Any]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta` and `str` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta` and `timedelta64[int | timedelta | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta64[int | timedelta | None]` and `Interval[Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta64[int | timedelta | None]` and `Timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta64[int | timedelta | None]` and `Timestamp` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta64[int | timedelta | None]` and `bytes` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta64[int | timedelta | None]` and `complex` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta64[int | timedelta | None]` and `complexfloating[Any, Unknown]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta64[int | timedelta | None]` and `date` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta64[int | timedelta | None]` and `datetime` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta64[int | timedelta | None]` and `datetime64[date | int | None]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta64[int | timedelta | None]` and `float` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta64[int | timedelta | None]` and `floating[Any]` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta64[int | timedelta | None]` and `str` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1440:32-43: `-` is not supported between `timedelta64[int | timedelta | None]` and `timedelta` [unsupported-operation] +ERROR pandas/core/indexes/interval.py:1446:33-54: No matching overload found for function `numpy._core.function_base.linspace` called with arguments: (Interval[Unknown] | Timedelta | Timestamp | bool | bytes | complex | complexfloating[Any, Unknown] | date | datetime | datetime64[date | int | None] | float | floating[Any] | int | integer[Any] | str | timedelta | timedelta64[int | timedelta | None], Interval[Unknown] | Timedelta | Timestamp | bool | bytes | complex | complexfloating[Any, Unknown] | date | datetime | datetime64[date | int | None] | float | floating[Any] | int | integer[Any] | str | timedelta | timedelta64[int | timedelta | None], int) [no-matching-overload] +ERROR pandas/core/indexes/multi.py:321:9-22: Object of class `object` has no attribute `_cache` [missing-attribute] +ERROR pandas/core/indexes/multi.py:324:9-27: Object of class `object` has no attribute `_set_levels` [missing-attribute] +ERROR pandas/core/indexes/multi.py:325:9-26: Object of class `object` has no attribute `_set_codes` [missing-attribute] +ERROR pandas/core/indexes/multi.py:327:9-22: Object of class `object` has no attribute `_names` [missing-attribute] +ERROR pandas/core/indexes/multi.py:330:13-30: Object of class `object` has no attribute `_set_names` [missing-attribute] +ERROR pandas/core/indexes/multi.py:333:13-29: Object of class `object` has no attribute `sortorder` [missing-attribute] +ERROR pandas/core/indexes/multi.py:335:13-29: Object of class `object` has no attribute `sortorder` [missing-attribute] +ERROR pandas/core/indexes/multi.py:338:25-49: Object of class `object` has no attribute `_verify_integrity` [missing-attribute] +ERROR pandas/core/indexes/multi.py:339:13-26: Object of class `object` has no attribute `_codes` [missing-attribute] +ERROR pandas/core/indexes/multi.py:341:9-31: Object of class `object` has no attribute `_reset_identity` [missing-attribute] +ERROR pandas/core/indexes/multi.py:342:9-27: Object of class `object` has no attribute `_references` [missing-attribute] +ERROR pandas/core/indexes/multi.py:344:16-22: Returned type `object` is not assignable to declared return type `Self@MultiIndex` [bad-return] +ERROR pandas/core/indexes/multi.py:1589:9-19: Class member `MultiIndex._set_names` overrides parent class `Index` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/indexes/multi.py:1616:21-28: No matching overload found for function `list.__init__` called with arguments: (Unknown | None) [no-matching-overload] +ERROR pandas/core/indexes/multi.py:1707:16-21: Returned type `int | integer[Any] | Unknown` is not assignable to declared return type `int` [bad-return] +ERROR pandas/core/indexes/multi.py:2859:9-18: Class member `MultiIndex.sortlevel` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:3434:50-55: Argument `int | list[Hashable]` is not assignable to parameter `level` with type `int | list[int]` in function `MultiIndex._get_loc_level` [bad-argument-type] +ERROR pandas/core/indexes/multi.py:3539:17-3568:43: `ndarray[tuple[int], dtype[Any]] | Unknown | None` is not assignable to `None` (caused by inconsistent types when breaking cycles) [bad-assignment] +ERROR pandas/core/indexes/multi.py:4048:22-66: Illegal `super(type[MultiIndex], Index)` call: `Index` is not an instance or subclass of `type[MultiIndex]` [invalid-super-call] +ERROR pandas/core/indexes/multi.py:4090:20-38: Returned type `Index` is not assignable to declared return type `MultiIndex` [bad-return] +ERROR pandas/core/indexes/multi.py:4158:9-29: Class member `MultiIndex._validate_fill_value` overrides parent class `Index` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/indexes/multi.py:4291:5-12: Class member `MultiIndex.__add__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4292:5-13: Class member `MultiIndex.__radd__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4293:5-13: Class member `MultiIndex.__iadd__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4294:5-12: Class member `MultiIndex.__sub__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4295:5-13: Class member `MultiIndex.__rsub__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4297:5-12: Class member `MultiIndex.__pow__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4298:5-13: Class member `MultiIndex.__rpow__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4299:5-12: Class member `MultiIndex.__mul__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4300:5-13: Class member `MultiIndex.__rmul__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4301:5-17: Class member `MultiIndex.__floordiv__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4302:5-18: Class member `MultiIndex.__rfloordiv__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4303:5-16: Class member `MultiIndex.__truediv__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4304:5-17: Class member `MultiIndex.__rtruediv__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4305:5-12: Class member `MultiIndex.__mod__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4306:5-13: Class member `MultiIndex.__rmod__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4307:5-15: Class member `MultiIndex.__divmod__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4308:5-16: Class member `MultiIndex.__rdivmod__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4310:5-12: Class member `MultiIndex.__neg__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4311:5-12: Class member `MultiIndex.__pos__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4312:5-12: Class member `MultiIndex.__abs__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/multi.py:4313:5-15: Class member `MultiIndex.__invert__` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/period.py:165:5-10: Class member `PeriodIndex._data` overrides parent class `DatetimeIndexOpsMixin` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/period.py:243:34-38: Argument `Unknown | Self@PeriodIndex | None` is not assignable to parameter `data` with type `ExtensionArray | Index | Sequence[Period | str | None] | Series | ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas.core.arrays.period.period_array` [bad-argument-type] +ERROR pandas/core/indexes/period.py:518:16-22: Returned type `NaTType | Period` is not assignable to declared return type `Period` [bad-return] +ERROR pandas/core/indexes/period.py:530:17-26: Object of class `NaTType` has no attribute `asfreq` [missing-attribute] +ERROR pandas/core/indexes/period.py:530:52-61: Object of class `NaTType` has no attribute `asfreq` [missing-attribute] +ERROR pandas/core/indexes/range.py:246:9-22: Object of class `object` has no attribute `_range` [missing-attribute] +ERROR pandas/core/indexes/range.py:247:9-21: Object of class `object` has no attribute `_name` [missing-attribute] +ERROR pandas/core/indexes/range.py:248:9-22: Object of class `object` has no attribute `_cache` [missing-attribute] +ERROR pandas/core/indexes/range.py:249:9-31: Object of class `object` has no attribute `_reset_identity` [missing-attribute] +ERROR pandas/core/indexes/range.py:250:9-27: Object of class `object` has no attribute `_references` [missing-attribute] +ERROR pandas/core/indexes/range.py:251:16-22: Returned type `object` is not assignable to declared return type `Self@RangeIndex` [bad-return] +ERROR pandas/core/indexes/range.py:779:9-20: Class member `RangeIndex.sort_values` overrides parent class `Index` in an inconsistent manner [bad-override] +ERROR pandas/core/indexes/range.py:1129:24-28: `lidx` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/range.py:1129:62-66: `lidx` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/range.py:1130:24-28: `ridx` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/range.py:1130:62-66: `ridx` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/range.py:1131:16-26: `join_index` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/range.py:1184:9-16: Class member `RangeIndex._concat` overrides parent class `Index` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/indexes/range.py:1305:23-35: Object of class `object` has no attribute `to_numpy` [missing-attribute] +ERROR pandas/core/indexes/range.py:1582:12-16: `flip` may be uninitialized [unbound-name] +ERROR pandas/core/indexes/timedeltas.py:134:5-10: Class member `TimedeltaIndex._data` overrides parent class `DatetimeTimedeltaMixin` in an inconsistent manner [bad-override] +ERROR pandas/core/indexing.py:1430:23-28: No matching overload found for function `list.__init__` called with arguments: (object) [no-matching-overload] +ERROR pandas/core/indexing.py:1637:31-42: Object of class `ndarray` has no attribute `_reduce` [missing-attribute] +ERROR pandas/core/indexing.py:1638:31-42: Object of class `ndarray` has no attribute `_reduce` [missing-attribute] +ERROR pandas/core/indexing.py:2019:60-72: Cannot index into `Hashable` [bad-index] +ERROR pandas/core/indexing.py:2019:60-72: Cannot index into `slice[Any, Any, Any]` [bad-index] +ERROR pandas/core/indexing.py:2033:45-55: Argument `Hashable | slice[Any, Any, Any] | Unknown` is not assignable to parameter `loc` with type `int` in function `_iLocIndexer._setitem_single_column` [bad-argument-type] +ERROR pandas/core/indexing.py:2277:43-53: Argument `Any | None` is not assignable to parameter `dtype` with type `dtype[Any]` in function `pandas.core.dtypes.cast.maybe_promote` [bad-argument-type] +ERROR pandas/core/interchange/column.py:174:17-31: Object of class `str` has no attribute `itemsize` [missing-attribute] +ERROR pandas/core/internals/api.py:82:5-11: Class member `_DatetimeTZBlock.values` overrides parent class `DatetimeLikeBlock` in an inconsistent manner [bad-override] +ERROR pandas/core/internals/api.py:113:57-61: Argument `Unknown | None` is not assignable to parameter `ndim` with type `int` in function `pandas.core.internals.blocks.extract_pandas_array` [bad-argument-type] +ERROR pandas/core/internals/api.py:133:13-19: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[datetime64[date | int | None]]]` in function `pandas.core.arrays.datetimes.DatetimeArray._simple_new` [bad-argument-type] +ERROR pandas/core/internals/blocks.py:1204:29-46: Cannot index into `ExtensionArray` [bad-index] +ERROR pandas/core/internals/blocks.py:1339:13-17: `mask` may be uninitialized [unbound-name] +ERROR pandas/core/internals/blocks.py:1339:18-22: `mask` may be uninitialized [unbound-name] +ERROR pandas/core/internals/blocks.py:1342:32-36: `mask` may be uninitialized [unbound-name] +ERROR pandas/core/internals/blocks.py:1344:38-42: `mask` may be uninitialized [unbound-name] +ERROR pandas/core/internals/blocks.py:1614:5-11: Class member `EABackedBlock.values` overrides parent class `Block` in an inconsistent manner [bad-override] +ERROR pandas/core/internals/blocks.py:2136:5-11: Class member `NumpyBlock.values` overrides parent class `Block` in an inconsistent manner [bad-override] +ERROR pandas/core/internals/blocks.py:2166:5-11: Class member `NDArrayBackedExtensionBlock.values` overrides parent class `EABackedBlock` in an inconsistent manner [bad-override] +ERROR pandas/core/internals/blocks.py:2180:5-11: Class member `DatetimeLikeBlock.values` overrides parent class `NDArrayBackedExtensionBlock` in an inconsistent manner [bad-override] +ERROR pandas/core/internals/construction.py:243:22-36: Object of class `ExtensionArray` has no attribute `reshape` [missing-attribute] +ERROR pandas/core/internals/construction.py:254:29-35: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Unknown` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `_ensure_2d` [bad-argument-type] +ERROR pandas/core/internals/construction.py:286:39-45: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Unknown` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `_check_values_indices_shape_match` [bad-argument-type] +ERROR pandas/core/internals/construction.py:628:34-39: `index` may be uninitialized [unbound-name] +ERROR pandas/core/internals/construction.py:631:35-40: `index` may be uninitialized [unbound-name] +ERROR pandas/core/internals/construction.py:637:25-30: `index` may be uninitialized [unbound-name] +ERROR pandas/core/internals/construction.py:768:24-39: Returned type `tuple[list[ndarray[tuple[Any, ...], dtype[Any]]], Index]` is not assignable to declared return type `tuple[list[ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]], Index]` [bad-return] +ERROR pandas/core/internals/construction.py:776:16-31: Returned type `tuple[list[ndarray[tuple[Any, ...], dtype[Any]]], Index]` is not assignable to declared return type `tuple[list[ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]], Index]` [bad-return] +ERROR pandas/core/internals/construction.py:787:31-35: Argument `list[tuple[@_, ...]]` is not assignable to parameter `data` with type `list[list[Unknown] | tuple[Unknown, ...]]` in function `_list_to_arrays` [bad-argument-type] +ERROR pandas/core/internals/construction.py:829:31-66: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `object` with type `_NestedSequence[_SupportsArray[dtype[Any]]] | _SupportsArray[dtype[Any]]` in function `list.append` [bad-argument-type] +ERROR pandas/core/internals/construction.py:992:52-1000:22: No matching overload found for function `pandas._libs.lib.maybe_convert_objects` called with arguments: (ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]], convert_numeric=Literal[False], convert_non_numeric=Literal[True], convert_to_nullable_dtype=bool, dtype_if_all_nat=dtype[datetime64[date | int | None]]) [no-matching-overload] +ERROR pandas/core/internals/construction.py:1021:46-49: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `value` with type `list[Unknown] | ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas.core.dtypes.cast.maybe_cast_to_datetime` [bad-argument-type] +ERROR pandas/core/internals/managers.py:572:30-45: Cannot index into `ExtensionArray` [bad-index] +ERROR pandas/core/internals/managers.py:2278:9-12: `mgr` may be uninitialized [unbound-name] +ERROR pandas/core/internals/managers.py:2279:12-15: `mgr` may be uninitialized [unbound-name] +ERROR pandas/core/internals/managers.py:2305:9-12: `mgr` may be uninitialized [unbound-name] +ERROR pandas/core/internals/managers.py:2306:12-15: `mgr` may be uninitialized [unbound-name] +ERROR pandas/core/methods/describe.py:127:5-8: Class member `SeriesDescriber.obj` overrides parent class `NDFrameDescriberAbstract` in an inconsistent manner [bad-override] +ERROR pandas/core/methods/describe.py:149:5-8: Class member `DataFrameDescriber.obj` overrides parent class `NDFrameDescriberAbstract` in an inconsistent manner [bad-override] +ERROR pandas/core/methods/to_dict.py:76:5-12: Overload return type `dict[Unknown, Unknown]` is not assignable to implementation return type `list[type[dict[Unknown, Unknown]]] | type[dict[Unknown, Unknown]]` [inconsistent-overload] +ERROR pandas/core/methods/to_dict.py:86:5-12: Overload return type `list[dict[Unknown, Unknown]]` is not assignable to implementation return type `list[type[dict[Unknown, Unknown]]] | type[dict[Unknown, Unknown]]` [inconsistent-overload] +ERROR pandas/core/missing.py:269:26-32: `idxpos` may be uninitialized [unbound-name] +ERROR pandas/core/missing.py:608:24-28: Argument `str | Unknown | None` is not assignable to parameter `kind` with type `Literal['cubic', 'linear', 'nearest', 'nearest-up', 'next', 'previous', 'quadratic', 'slinear', 'zero'] | int` in function `scipy.interpolate._interpolate.interp1d.__init__` [bad-argument-type] +ERROR pandas/core/missing.py:608:41-51: Argument `Unknown | None` is not assignable to parameter `fill_value` with type `Literal['extrapolate'] | SequenceND[_CanArray[numpy.bool[builtins.bool] | floating[Any] | integer[Any]] | float] | _CanArrayND[numpy.bool[builtins.bool] | floating[Any] | integer[Any]] | numpy.bool[builtins.bool] | float | floating[Any] | integer[Any] | tuple[SequenceND[_CanArray[numpy.bool[builtins.bool] | floating[Any] | integer[Any]] | float] | _CanArrayND[numpy.bool[builtins.bool] | floating[Any] | integer[Any]] | numpy.bool[builtins.bool] | float | floating[Any] | integer[Any], SequenceND[_CanArray[numpy.bool[builtins.bool] | floating[Any] | integer[Any]] | float] | _CanArrayND[numpy.bool[builtins.bool] | floating[Any] | integer[Any]] | numpy.bool[builtins.bool] | float | floating[Any] | integer[Any]]` in function `scipy.interpolate._interpolate.interp1d.__init__` [bad-argument-type] +ERROR pandas/core/missing.py:613:28-38: `<=` is not supported between `None` and `Literal[0]` [unsupported-operation] +ERROR pandas/core/missing.py:617:53-58: Argument `Unknown | None` is not assignable to parameter `k` with type `Literal[1, 2, 3, 4, 5]` in function `scipy.interpolate._fitpack2.UnivariateSpline.__init__` [bad-argument-type] +ERROR pandas/core/nanops.py:140:30-37: Expected a callable, got `None` [not-callable] +ERROR pandas/core/nanops.py:1525:12-24: Object of class `int` has no attribute `astype` [missing-attribute] +ERROR pandas/core/ops/array_ops.py:126:48-57: Argument `ExtensionArray | ndarray[tuple[int], dtype[object_]] | ndarray[tuple[int], dtype[Any]] | Unknown` is not assignable to parameter `right` with type `ndarray[tuple[Any, ...], dtype[object_]]` in function `pandas._libs.ops.vec_compare` [bad-argument-type] +ERROR pandas/core/ops/array_ops.py:340:44-51: Argument `ndarray[tuple[Any, ...], dtype[Any]] | object` is not assignable to parameter `right` with type `ExtensionArray | Interval[Unknown] | Timedelta | Timestamp | bool | bytes | complex | complexfloating[Any, Unknown] | date | datetime | datetime64[date | int | None] | float | floating[Any] | int | integer[Any] | list[Unknown] | ndarray[tuple[Any, ...], dtype[Any]] | str | timedelta | timedelta64[int | timedelta | None]` in function `pandas.core.ops.invalid.invalid_comparison` [bad-argument-type] +ERROR pandas/core/ops/mask_ops.py:79:12-24: Returned type `tuple[ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]] | ndarray[tuple[Any, ...], dtype[Any]] | Unknown, ndarray[tuple[Any, ...], dtype[Any]] | Unknown | mask]` is not assignable to declared return type `tuple[ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]], ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]]]` [bad-return] +ERROR pandas/core/resample.py:141:5-13: Class member `Resampler._grouper` overrides parent class `BaseGroupBy` in an inconsistent manner [bad-override] +ERROR pandas/core/resample.py:341:28-51: No matching overload found for function `pandas.core.groupby.groupby.BaseGroupBy.pipe` called with arguments: (((Self@Resampler, ParamSpec(P)) -> T) | tuple[(...) -> T, str], *tuple[Any, ...], **dict[str, Any]) [no-matching-overload] +ERROR pandas/core/resample.py:442:45-49: Argument `Unknown | None` is not assignable to parameter `func` with type `((...) -> Unknown) | MutableMapping[Hashable, ((...) -> Unknown) | list[((...) -> Unknown) | str] | str] | list[((...) -> Unknown) | str] | str` in function `pandas.core.apply.ResamplerWindowApply.__init__` [bad-argument-type] +ERROR pandas/core/resample.py:1048:55-66: `final_index` may be uninitialized [unbound-name] +ERROR pandas/core/resample.py:1051:37-48: `final_index` may be uninitialized [unbound-name] +ERROR pandas/core/resample.py:2062:5-7: Class member `DatetimeIndexResampler.ax` overrides parent class `Resampler` in an inconsistent manner [bad-override] +ERROR pandas/core/resample.py:2110:9-18: Class member `DatetimeIndexResampler._upsample` overrides parent class `Resampler` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/resample.py:2264:34-2268:10: No matching overload found for function `_take_new_index` called with arguments: (NDFrame, ndarray[tuple[Any, ...], dtype[signedinteger[_32Bit | _64Bit]]], DatetimeIndex | PeriodIndex | TimedeltaIndex) [no-matching-overload] +ERROR pandas/core/resample.py:2477:31-48: `NaTType | Timestamp` is not assignable to attribute `origin` with type `Literal['end', 'end_day', 'epoch', 'start', 'start_day'] | Timestamp` [bad-assignment] +ERROR pandas/core/resample.py:2574:31-40: Argument `Unknown | None` is not assignable to parameter `freq` with type `BaseOffset | _NoDefault | str` in function `pandas.core.indexes.datetimes.DatetimeIndex.__new__` [bad-argument-type] +ERROR pandas/core/resample.py:2581:13-22: Argument `Unknown | None` is not assignable to parameter `freq` with type `BaseOffset` in function `_get_timestamp_range_edges` [bad-argument-type] +ERROR pandas/core/resample.py:2585:20-31: Argument `NaTType | Timedelta | None` is not assignable to parameter `offset` with type `Timedelta | None` in function `_get_timestamp_range_edges` [bad-argument-type] +ERROR pandas/core/resample.py:2637:12-26: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR pandas/core/resample.py:2637:52-72: Object of class `object` has no attribute `split` [missing-attribute] +ERROR pandas/core/resample.py:2757:21-32: Object of class `NoneType` has no attribute `n` [missing-attribute] +ERROR pandas/core/resample.py:2774:24-35: Argument `NaTType | Timedelta | None` is not assignable to parameter `offset` with type `Timedelta | None` in function `_get_period_range_edges` [bad-argument-type] +ERROR pandas/core/resample.py:2802:74-83: Argument `Literal[0] | numpy.bool[builtins.bool]` is not assignable to parameter `nat_count` with type `int` in function `_insert_nat_bin` [bad-argument-type] +ERROR pandas/core/resample.py:2893:22-58: `NaTType | Timestamp` is not assignable to variable `origin` with type `Literal['end', 'end_day', 'epoch', 'start', 'start_day'] | Timestamp` [bad-assignment] +ERROR pandas/core/resample.py:2909:21-52: `NaTType | Timestamp` is not assignable to variable `first` with type `Timestamp` [bad-assignment] +ERROR pandas/core/resample.py:2911:21-44: `NaTType | Timestamp` is not assignable to variable `first` with type `Timestamp` [bad-assignment] +ERROR pandas/core/resample.py:2913:16-38: `NaTType | Timestamp` is not assignable to variable `last` with type `Timestamp` [bad-assignment] +ERROR pandas/core/resample.py:3025:31-52: `*` is not supported between `signedinteger[_64Bit]` and `Tick` [unsupported-operation] +ERROR pandas/core/resample.py:3073:12-28: Returned type `tuple[NaTType | Timestamp, NaTType | Timestamp]` is not assignable to declared return type `tuple[Timestamp, Timestamp]` [bad-return] +ERROR pandas/core/resample.py:3147:12-21: Returned type `DatetimeIndex | PeriodIndex | TimedeltaIndex` is not assignable to declared return type `FreqIndexT` [bad-return] +ERROR pandas/core/reshape/melt.py:350:25-49: Cannot set item in `dict[Unknown, ndarray[tuple[Any, ...], dtype[Any]]]` [unsupported-operation] +ERROR pandas/core/reshape/merge.py:131:22-29: Cannot set item in `dict[type[bool] | type[complex128] | type[float64] | type[object_] | complex64 | float32 | int16 | int32 | int64 | int8 | longlong | uint16 | uint32 | uint64 | uint8, type[Complex128Factorizer] | type[Complex64Factorizer] | type[Float32Factorizer] | type[Float64Factorizer] | type[Int16Factorizer] | type[Int32Factorizer] | type[Int64Factorizer] | type[Int8Factorizer] | type[ObjectFactorizer] | type[UInt16Factorizer] | type[UInt32Factorizer] | type[UInt64Factorizer] | type[UInt8Factorizer]]` [unsupported-operation] +ERROR pandas/core/reshape/merge.py:133:22-29: Cannot set item in `dict[type[bool] | type[complex128] | type[float64] | type[object_] | complex64 | float32 | int16 | int32 | int64 | int8 | longlong | uint16 | uint32 | uint64 | uint8, type[Complex128Factorizer] | type[Complex64Factorizer] | type[Float32Factorizer] | type[Float64Factorizer] | type[Int16Factorizer] | type[Int32Factorizer] | type[Int64Factorizer] | type[Int8Factorizer] | type[ObjectFactorizer] | type[UInt16Factorizer] | type[UInt32Factorizer] | type[UInt64Factorizer] | type[UInt8Factorizer]]` [unsupported-operation] +ERROR pandas/core/reshape/merge.py:137:22-30: Cannot set item in `dict[type[bool] | type[complex128] | type[float64] | type[object_] | complex64 | float32 | int16 | int32 | int64 | int8 | longlong | uint16 | uint32 | uint64 | uint8, type[Complex128Factorizer] | type[Complex64Factorizer] | type[Float32Factorizer] | type[Float64Factorizer] | type[Int16Factorizer] | type[Int32Factorizer] | type[Int64Factorizer] | type[Int8Factorizer] | type[ObjectFactorizer] | type[UInt16Factorizer] | type[UInt32Factorizer] | type[UInt64Factorizer] | type[UInt8Factorizer]]` [unsupported-operation] +ERROR pandas/core/reshape/merge.py:139:22-30: Cannot set item in `dict[type[bool] | type[complex128] | type[float64] | type[object_] | complex64 | float32 | int16 | int32 | int64 | int8 | longlong | uint16 | uint32 | uint64 | uint8, type[Complex128Factorizer] | type[Complex64Factorizer] | type[Float32Factorizer] | type[Float64Factorizer] | type[Int16Factorizer] | type[Int32Factorizer] | type[Int64Factorizer] | type[Int8Factorizer] | type[ObjectFactorizer] | type[UInt16Factorizer] | type[UInt32Factorizer] | type[UInt64Factorizer] | type[UInt8Factorizer]]` [unsupported-operation] +ERROR pandas/core/reshape/merge.py:1199:35-65: Object of class `int` has no attribute `astype` [missing-attribute] +ERROR pandas/core/reshape/merge.py:1202:37-69: Object of class `int` has no attribute `astype` [missing-attribute] +ERROR pandas/core/reshape/merge.py:1285:9-1389:66: `Literal[False] | Unknown | None` is not assignable to `None` (caused by inconsistent types when breaking cycles) [bad-assignment] +ERROR pandas/core/reshape/merge.py:2152:12-16: `lidx` may be uninitialized [unbound-name] +ERROR pandas/core/reshape/merge.py:2152:18-22: `ridx` may be uninitialized [unbound-name] +ERROR pandas/core/reshape/merge.py:2434:41-54: Argument `list[Unknown | None] | Unknown | None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR pandas/core/reshape/merge.py:2438:24-54: `+` is not supported between `None` and `list[Unknown | None]` [unsupported-operation] +ERROR pandas/core/reshape/merge.py:2579:32-63: Object of class `ExtensionDtype` has no attribute `pyarrow_dtype` +Object of class `dtype` has no attribute `pyarrow_dtype` [missing-attribute] +ERROR pandas/core/reshape/merge.py:2920:32-39: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas._libs.hashtable.Factorizer.factorize` [bad-argument-type] +ERROR pandas/core/reshape/merge.py:2922:48-55: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas._libs.hashtable.Factorizer.hash_inner_join` [bad-argument-type] +ERROR pandas/core/reshape/merge.py:2925:36-43: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas._libs.hashtable.Factorizer.factorize` [bad-argument-type] +ERROR pandas/core/reshape/merge.py:2927:32-39: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas._libs.hashtable.Factorizer.factorize` [bad-argument-type] +ERROR pandas/core/reshape/merge.py:2928:32-39: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas._libs.hashtable.Factorizer.factorize` [bad-argument-type] +ERROR pandas/core/reshape/pivot.py:403:30-42: `values_multi` may be uninitialized [unbound-name] +ERROR pandas/core/reshape/pivot.py:592:25-34: Argument `list[Hashable | Unknown]` is not assignable to parameter `tuples` with type `Iterable[tuple[Hashable, ...]]` in function `pandas.core.indexes.multi.MultiIndex.from_tuples` [bad-argument-type] +ERROR pandas/core/reshape/tile.py:542:31-48: No matching overload found for function `pandas.core.array_algos.take.take_nd` called with arguments: (Categorical | IntervalIndex | Unknown, ndarray[tuple[Any, ...], dtype[signedinteger[_32Bit | _64Bit]]]) [no-matching-overload] +ERROR pandas/core/series.py:353:5-12: Class member `Series.hasnans` overrides parent class `IndexOpsMixin` in an inconsistent manner [bad-override] +ERROR pandas/core/series.py:358:5-9: Class member `Series._mgr` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/series.py:446:20-30: Argument `dtype[Any]` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR pandas/core/series.py:939:9-20: Class member `Series.__getitem__` overrides parent class `NDFrame` in an inconsistent manner [bad-param-name-override] +ERROR pandas/core/series.py:1561:26-54: No matching overload found for function `open` called with arguments: (PathLike[str] | WriteBuffer[str] | str, Literal['w'], encoding=Literal['utf-8']) [no-matching-overload] +ERROR pandas/core/series.py:1740:9-16: Overload return type `dict[Unknown, Unknown]` is not assignable to implementation return type `type[dict[Unknown, Unknown]]` [inconsistent-overload] +ERROR pandas/core/series.py:4642:32-36: Argument `dict[str, Unknown] | Unknown` is not assignable to parameter `func` with type `((...) -> Unknown) | MutableMapping[Hashable, ((...) -> Unknown) | list[((...) -> Unknown) | str] | str] | list[((...) -> Unknown) | str] | str` in function `pandas.core.apply.SeriesApply.__init__` [bad-argument-type] +ERROR pandas/core/series.py:5359:9-20: Class member `Series.rename_axis` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/series.py:6181:16-34: Returned type `NDFrame` is not assignable to declared return type `Series` [bad-return] +ERROR pandas/core/series.py:6537:5-22: Class member `Series._info_axis_number` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/series.py:6538:5-20: Class member `Series._info_axis_name` overrides parent class `NDFrame` in an inconsistent manner [bad-override] +ERROR pandas/core/series.py:8014:16-67: Returned type `NDFrame` is not assignable to declared return type `Self@Series` [bad-return] +ERROR pandas/core/series.py:8018:16-67: Returned type `NDFrame` is not assignable to declared return type `Self@Series` [bad-return] +ERROR pandas/core/series.py:8022:16-67: Returned type `NDFrame` is not assignable to declared return type `Self@Series` [bad-return] +ERROR pandas/core/series.py:8026:16-68: Returned type `NDFrame` is not assignable to declared return type `Self@Series` [bad-return] +ERROR pandas/core/sorting.py:294:29-33: `lift` may be uninitialized [unbound-name] +ERROR pandas/core/sorting.py:295:46-50: `lift` may be uninitialized [unbound-name] +ERROR pandas/core/sorting.py:367:23-28: Argument `ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `object` with type `_NestedSequence[bytes | complex | str] | bytes | complex | str` in function `list.append` [bad-argument-type] +ERROR pandas/core/sorting.py:428:16-432:10: Returned type `Series | ndarray[tuple[Any, ...], dtype[signedinteger[_32Bit | _64Bit]]] | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to declared return type `ndarray[tuple[Any, ...], dtype[signedinteger[_32Bit | _64Bit]]]` [bad-return] +ERROR pandas/core/sorting.py:429:13-22: Unexpected keyword argument `ascending` in function `pandas.core.series.Series.argsort` [unexpected-keyword] +ERROR pandas/core/sorting.py:431:13-24: Unexpected keyword argument `na_position` in function `pandas.core.series.Series.argsort` [unexpected-keyword] +ERROR pandas/core/strings/accessor.py:215:27-37: `Index` is not assignable to attribute `_index` with type `None` [bad-assignment] +ERROR pandas/core/strings/accessor.py:216:26-35: `Hashable` is not assignable to attribute `_name` with type `None` [bad-assignment] +ERROR pandas/core/strings/accessor.py:310:33-43: Module `pyarrow.compute` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/core/strings/accessor.py:310:33-61: No attribute `list_value_length` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/strings/accessor.py:311:27-37: Module `pyarrow.compute` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/core/strings/accessor.py:311:27-41: No attribute `max` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/strings/accessor.py:312:27-37: Module `pyarrow.compute` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/core/strings/accessor.py:312:27-41: No attribute `min` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/strings/accessor.py:321:25-35: Module `pyarrow.compute` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/core/strings/accessor.py:321:25-46: No attribute `list_slice` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/strings/accessor.py:331:21-31: Module `pyarrow.compute` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/core/strings/accessor.py:331:21-44: No attribute `list_flatten` in module `pyarrow.compute` [missing-attribute] +ERROR pandas/core/strings/accessor.py:923:21-48: Object of class `str` has no attribute `categories` [missing-attribute] +ERROR pandas/core/strings/accessor.py:1046:21-48: Object of class `str` has no attribute `categories` [missing-attribute] +ERROR pandas/core/strings/accessor.py:1066:21-48: Object of class `str` has no attribute `categories` [missing-attribute] +ERROR pandas/core/strings/accessor.py:3894:12-18: `result` may be uninitialized [unbound-name] +ERROR pandas/core/strings/object_array.py:229:20-45: Object of class `type` has no attribute `_from_sequence` [missing-attribute] + WARN pandas/core/tools/datetimes.py:533:27-65: Redundant cast: `int` is the same type as `int` [redundant-cast] +ERROR pandas/core/tools/datetimes.py:573:14-41: Object of class `NaTType` has no attribute `to_julian_date` [missing-attribute] +ERROR pandas/core/tools/datetimes.py:619:19-55: `//` is not supported between `Timedelta` and `NaTType` [unsupported-operation] +ERROR pandas/core/tools/datetimes.py:1056:45-49: `argc` may be uninitialized [unbound-name] +ERROR pandas/core/tools/datetimes.py:1058:39-43: `argc` may be uninitialized [unbound-name] +ERROR pandas/core/tools/datetimes.py:1062:22-34: `bool` is not assignable to variable `result` with type `Index | NaTType | Series | Timestamp` [bad-assignment] +ERROR pandas/core/tools/numeric.py:225:16-27: Object of class `ndarray` has no attribute `isna` [missing-attribute] +ERROR pandas/core/tools/numeric.py:226:18-31: Object of class `ndarray` has no attribute `dropna` [missing-attribute] +ERROR pandas/core/tools/numeric.py:262:67-75: No matching overload found for function `numpy._core.fromnumeric.amin` called with arguments: (ExtensionArray | ndarray[tuple[Any, ...], dtype[signedinteger[_64Bit]]] | ndarray[tuple[Any, ...], dtype[Any]] | Unknown) [no-matching-overload] +ERROR pandas/core/tools/numeric.py:278:38-59: Object of class `ExtensionDtype` has no attribute `itemsize` [missing-attribute] +ERROR pandas/core/tools/numeric.py:294:24-56: No matching overload found for function `numpy._core.multiarray._ConstructorEmpty.__call__` called with arguments: (tuple[Any, ...], dtype=ExtensionDtype | dtype[signedinteger[_64Bit]] | dtype[Any] | Unknown) [no-matching-overload] +ERROR pandas/core/util/numba_.py:79:8-23: Module `numba.extending` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/core/util/numba_.py:89:22-37: Module `numba.extending` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/core/window/ewm.py:913:47-55: Argument `Unknown | None` is not assignable to parameter `_grouper` with type `BaseGrouper` in function `pandas.core.window.rolling.BaseWindowGroupby.__init__` [bad-argument-type] +ERROR pandas/core/window/expanding.py:419:28-51: No matching overload found for function `pandas.core.window.rolling.RollingAndExpandingMixin.pipe` called with arguments: (((Self@Expanding, ParamSpec(P)) -> T) | tuple[(...) -> T, str], *tuple[Any, ...], **dict[str, Any]) [no-matching-overload] +ERROR pandas/core/window/numba_.py:67:18-43: Type `prange` is not iterable [not-iterable] +ERROR pandas/core/window/numba_.py:131:18-42: Type `prange` is not iterable [not-iterable] +ERROR pandas/core/window/numba_.py:229:18-43: Type `prange` is not iterable [not-iterable] +ERROR pandas/core/window/numba_.py:257:18-46: Type `prange` is not iterable [not-iterable] +ERROR pandas/core/window/numba_.py:323:22-44: Type `prange` is not iterable [not-iterable] +ERROR pandas/core/window/online.py:63:22-44: Type `prange` is not iterable [not-iterable] +ERROR pandas/core/window/rolling.py:419:47-58: Argument `Unknown | None` is not assignable to parameter `window_size` with type `int` in function `pandas.core.indexers.objects.BaseIndexer.__init__` [bad-argument-type] +ERROR pandas/core/window/rolling.py:1288:45-49: Argument `Unknown | None` is not assignable to parameter `func` with type `((...) -> Unknown) | MutableMapping[Hashable, ((...) -> Unknown) | list[((...) -> Unknown) | str] | str] | list[((...) -> Unknown) | str] | str` in function `pandas.core.apply.ResamplerWindowApply.__init__` [bad-argument-type] +ERROR pandas/core/window/rolling.py:1291:22-26: Expected a callable, got `None` [not-callable] +ERROR pandas/core/window/rolling.py:1616:24-53: No matching overload found for function `pandas.core.common.pipe` called with arguments: (Self@RollingAndExpandingMixin, ((Self@RollingAndExpandingMixin, ParamSpec(P)) -> T) | tuple[(...) -> T, str], *tuple[Any, ...], **dict[str, Any]) [no-matching-overload] +ERROR pandas/core/window/rolling.py:2004:37-79: `int | signedinteger[_64Bit]` is not assignable to attribute `_win_freq_i8` with type `int | None` [bad-assignment] +ERROR pandas/core/window/rolling.py:2347:28-51: No matching overload found for function `RollingAndExpandingMixin.pipe` called with arguments: (((Self@Rolling, ParamSpec(P)) -> T) | tuple[(...) -> T, str], *tuple[Any, ...], **dict[str, Any]) [no-matching-overload] +ERROR pandas/core/window/rolling.py:3494:25-31: Argument `BaseIndexer | int | Unknown | None` is not assignable to parameter `window_size` with type `BaseIndexer | int` in function `pandas.core.indexers.objects.GroupbyIndexer.__init__` [bad-argument-type] +ERROR pandas/io/clipboard/__init__.py:121:18-28: Could not find name `Foundation` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:122:45-55: Could not find name `Foundation` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:123:17-23: Could not find name `AppKit` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:124:36-42: Could not find name `AppKit` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:125:41-47: Could not find name `AppKit` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:129:17-23: Could not find name `AppKit` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:130:40-46: Could not find name `AppKit` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:137:12-24: Could not find name `QApplication` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:142:9-48: Could not find import of `qtpy.QtWidgets` [missing-import] +ERROR pandas/io/clipboard/__init__.py:147:13-49: Could not find import of `PyQt4.QtGui` [missing-import] +ERROR pandas/io/clipboard/__init__.py:155:14-27: Object of class `NoneType` has no attribute `clipboard` +Object of class `QCoreApplication` has no attribute `clipboard` [missing-attribute] +ERROR pandas/io/clipboard/__init__.py:159:14-27: Object of class `NoneType` has no attribute `clipboard` +Object of class `QCoreApplication` has no attribute `clipboard` [missing-attribute] +ERROR pandas/io/clipboard/__init__.py:330:15-21: Object of class `CheckedCall` has no attribute `f` [missing-attribute] +ERROR pandas/io/clipboard/__init__.py:332:64-70: Object of class `CheckedCall` has no attribute `f` [missing-attribute] +ERROR pandas/io/clipboard/__init__.py:336:17-23: Object of class `CheckedCall` has no attribute `f` [missing-attribute] +ERROR pandas/io/clipboard/__init__.py:340:12-19: Could not find name `HGLOBAL` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:340:21-27: Could not find name `LPVOID` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:340:29-34: Could not find name `DWORD` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:340:36-42: Could not find name `LPCSTR` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:340:44-47: Could not find name `INT` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:341:12-16: Could not find name `HWND` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:341:18-27: Could not find name `HINSTANCE` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:341:29-34: Could not find name `HMENU` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:341:36-40: Could not find name `BOOL` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:341:42-46: Could not find name `UINT` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:341:48-54: Could not find name `HANDLE` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:356:14-27: No attribute `windll` in module `ctypes` [missing-attribute] +ERROR pandas/io/clipboard/__init__.py:532:12-22: Could not find name `Foundation` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:532:24-30: Could not find name `AppKit` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:532:32-36: Could not find name `qtpy` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:532:38-43: Could not find name `PyQt4` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:532:45-50: Could not find name `PyQt5` [unknown-name] +ERROR pandas/io/clipboard/__init__.py:560:20-26: Could not find import of `AppKit` [missing-import] +ERROR pandas/io/clipboard/__init__.py:561:20-30: Could not find import of `Foundation` [missing-import] +ERROR pandas/io/clipboard/__init__.py:582:20-24: Could not find import of `qtpy` [missing-import] +ERROR pandas/io/clipboard/__init__.py:589:28-33: Could not find import of `PyQt4` [missing-import] +ERROR pandas/io/common.py:437:16-51: Expected a type form, got instance of `tuple[Any, ...]` [not-a-type] +ERROR pandas/io/common.py:874:24-30: Argument `BZ2File | GzipFile | IO[bytes] | LZMAFile | _BytesTarFile | _BytesZipFile | Unknown` is not assignable to parameter `object` with type `BaseBuffer` in function `list.append` [bad-argument-type] +ERROR pandas/io/common.py:902:54-60: Argument `BZ2File | BaseBuffer | GzipFile | IO[bytes] | IO[Any] | LZMAFile | _BytesTarFile | _BytesZipFile | Unknown` is not assignable to parameter `handle` with type `BaseBuffer | PathLike[str] | str` in function `_is_binary_mode` [bad-argument-type] +ERROR pandas/io/common.py:909:33-39: Argument `BZ2File | BaseBuffer | GzipFile | IO[bytes] | IO[Any] | LZMAFile | _BytesTarFile | _BytesZipFile | Unknown` is not assignable to parameter `buffer` with type `BaseBuffer` in function `_IOWrapper.__init__` [bad-argument-type] +ERROR pandas/io/common.py:1161:12-42: Returned type `tuple[_IOWrapper, Literal[True], list[_IOWrapper]]` is not assignable to declared return type `tuple[BaseBuffer | str, bool, list[BaseBuffer]]` [bad-return] +ERROR pandas/io/excel/_base.py:493:24-34: Argument `int | list[IntStrT] | str | None` is not assignable to parameter `sheet_name` with type `int | list[int] | list[str] | str | None` in function `ExcelFile.parse` [bad-argument-type] +ERROR pandas/io/excel/_base.py:496:23-32: Argument `Sequence[int] | int | str | None` is not assignable to parameter `index_col` with type `Sequence[int] | int | None` in function `ExcelFile.parse` [bad-argument-type] +ERROR pandas/io/excel/_base.py:520:12-16: Returned type `DataFrame | dict[int, DataFrame] | dict[str, DataFrame]` is not assignable to declared return type `DataFrame | dict[IntStrT, DataFrame]` [bad-return] +ERROR pandas/io/excel/_base.py:547:25-44: `IO[Unknown] & _WorkbookT` is not assignable to attribute `book` with type `_WorkbookT` [bad-assignment] +ERROR pandas/io/excel/_base.py:737:22-34: `list[int | list[str]]` is not assignable to variable `sheets` with type `list[int] | list[str]` [bad-assignment] +ERROR pandas/io/excel/_base.py:877:28-39: `control_row` may be uninitialized [unbound-name] +ERROR pandas/io/excel/_base.py:1174:16-35: Returned type `object` is not assignable to declared return type `Self@ExcelWriter` [bad-return] +ERROR pandas/io/excel/_base.py:1366:16-24: Returned type `tuple[Decimal | bool | date | datetime | float | int | str, str | None]` is not assignable to declared return type `tuple[bool | date | datetime | float | int | str, str | None]` [bad-return] +ERROR pandas/io/excel/_base.py:1577:76-80: `xlrd` may be uninitialized [unbound-name] +ERROR pandas/io/excel/_calamine.py:100:9-23: Class member `CalamineReader.get_sheet_data` overrides parent class `BaseExcelReader` in an inconsistent manner [bad-param-name-override] +ERROR pandas/io/excel/_odfreader.py:102:9-23: Class member `ODFReader.get_sheet_data` overrides parent class `BaseExcelReader` in an inconsistent manner [bad-param-name-override] +ERROR pandas/io/excel/_odfreader.py:215:33-43: Object of class `NaTType` has no attribute `time` [missing-attribute] +ERROR pandas/io/excel/_odfreader.py:246:34-71: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR pandas/io/excel/_odfreader.py:248:30-55: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR pandas/io/excel/_odswriter.py:68:23-46: Expected a type form, got instance of `() -> Unknown` [not-a-type] +ERROR pandas/io/excel/_openpyxl.py:614:9-23: Class member `OpenpyxlReader.get_sheet_data` overrides parent class `BaseExcelReader` in an inconsistent manner [bad-param-name-override] +ERROR pandas/io/excel/_pyxlsb.py:97:9-23: Class member `PyxlsbReader.get_sheet_data` overrides parent class `BaseExcelReader` in an inconsistent manner [bad-param-name-override] +ERROR pandas/io/excel/_xlrd.py:79:9-23: Class member `XlrdReader.get_sheet_data` overrides parent class `BaseExcelReader` in an inconsistent manner [bad-param-name-override] +ERROR pandas/io/formats/excel.py:252:21-24: Argument `dict[str, dict[str, bool | float | str | None] | dict[str, bool | str | None] | dict[str, str | None] | dict[str, dict[str, str | None]] | Unknown]` is not assignable to parameter `d` with type `dict[str, str | None]` in function `remove_none` [bad-argument-type] +ERROR pandas/io/formats/excel.py:253:16-19: Returned type `dict[str, dict[str, bool | float | str | None] | dict[str, bool | str | None] | dict[str, str | None] | dict[str, dict[str, str | None]] | Unknown]` is not assignable to declared return type `dict[str, dict[str, str]]` [bad-return] + WARN pandas/io/formats/format.py:237:28-43: Redundant cast: `int` is the same type as `int` [redundant-cast] +ERROR pandas/io/formats/format.py:422:5-12: Class member `DataFrameFormatter.__doc__` overrides parent class `object` in an inconsistent manner [bad-override] +ERROR pandas/io/formats/format.py:1052:1-16: Argument `(buf: PathLike[str] | WriteBuffer[str] | str | None, encoding: str | None = None) -> Generator[StringIO, None, None] | Generator[WriteBuffer[str], None, None]` is not assignable to parameter `func` with type `(buf: PathLike[str] | WriteBuffer[str] | str | None, encoding: str | None = None) -> Iterator[StringIO]` in function `contextlib.contextmanager` [bad-argument-type] +ERROR pandas/io/formats/format.py:1081:19-20: Type of yielded value `TextIOWrapper[_WrappedBuffer]` is not assignable to declared return type `StringIO` [invalid-yield] +ERROR pandas/io/formats/format.py:1159:9-15: Argument `DatetimeArray | ExtensionArray | TimedeltaArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `values` with type `DatetimeArray` in function `_Datetime64Formatter.__init__` [bad-argument-type] +ERROR pandas/io/formats/format.py:1159:9-15: Argument `DatetimeArray | ExtensionArray | TimedeltaArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `values` with type `TimedeltaArray` in function `_Timedelta64Formatter.__init__` [bad-argument-type] +ERROR pandas/io/formats/format.py:1266:35-47: Expected a callable, got `str` [not-callable] +ERROR pandas/io/formats/format.py:1384:42-76: Argument `str` is not assignable to parameter `object` with type `_NestedSequence[_SupportsArray[dtype[Any]]] | _SupportsArray[dtype[Any]]` in function `list.append` [bad-argument-type] +ERROR pandas/io/formats/format.py:1389:46-74: Argument `str` is not assignable to parameter `object` with type `_NestedSequence[_SupportsArray[dtype[Any]]] | _SupportsArray[dtype[Any]]` in function `list.append` [bad-argument-type] +ERROR pandas/io/formats/format.py:1391:46-75: Argument `str` is not assignable to parameter `object` with type `_NestedSequence[_SupportsArray[dtype[Any]]] | _SupportsArray[dtype[Any]]` in function `list.append` [bad-argument-type] +ERROR pandas/io/formats/format.py:1393:42-63: Argument `str` is not assignable to parameter `object` with type `_NestedSequence[_SupportsArray[dtype[Any]]] | _SupportsArray[dtype[Any]]` in function `list.append` [bad-argument-type] +ERROR pandas/io/formats/format.py:1495:5-11: Class member `_Datetime64Formatter.values` overrides parent class `_GenericArrayFormatter` in an inconsistent manner [bad-override] +ERROR pandas/io/formats/format.py:1522:5-11: Class member `_ExtensionArrayFormatter.values` overrides parent class `_GenericArrayFormatter` in an inconsistent manner [bad-override] +ERROR pandas/io/formats/format.py:1684:5-11: Class member `_Timedelta64Formatter.values` overrides parent class `_GenericArrayFormatter` in an inconsistent manner [bad-override] +ERROR pandas/io/formats/format.py:1729:18-30: Object of class `NaTType` has no attribute `_repr_base` +Object of class `Timedelta` has no attribute `_repr_base` [missing-attribute] +ERROR pandas/io/formats/html.py:463:28-40: `index_values` may be uninitialized [unbound-name] +ERROR pandas/io/formats/info.py:457:14-18: Class member `DataFrameInfo.data` overrides parent class `_BaseInfo` in an inconsistent manner [bad-override] +ERROR pandas/io/formats/info.py:530:14-18: Class member `SeriesInfo.data` overrides parent class `_BaseInfo` in an inconsistent manner [bad-override] +ERROR pandas/io/formats/info.py:788:14-18: Class member `_DataFrameTableBuilder.info` overrides parent class `_TableBuilderAbstract` in an inconsistent manner [bad-override] +ERROR pandas/io/formats/info.py:956:14-18: Class member `_DataFrameTableBuilderVerbose.info` overrides parent class `_TableBuilderVerboseMixin` in an inconsistent manner [bad-override] +ERROR pandas/io/formats/info.py:1024:14-18: Class member `_SeriesTableBuilder.info` overrides parent class `_TableBuilderAbstract` in an inconsistent manner [bad-override] +ERROR pandas/io/formats/info.py:1070:14-18: Class member `_SeriesTableBuilderVerbose.info` overrides parent class `_TableBuilderVerboseMixin` in an inconsistent manner [bad-override] +ERROR pandas/io/formats/printing.py:439:20-36: `+` is not supported between `tuple[str, ...]` and `LiteralString` [unsupported-operation] +ERROR pandas/io/formats/printing.py:448:20-35: `+` is not supported between `tuple[str, ...]` and `LiteralString` [unsupported-operation] +ERROR pandas/io/formats/printing.py:452:53-61: Argument `str | tuple[str, ...] | Unknown` is not assignable to parameter `value` with type `str` in function `_extend_line` [bad-argument-type] +ERROR pandas/io/formats/string.py:143:31-34: `idx` may be uninitialized [unbound-name] +ERROR pandas/io/formats/string.py:150:28-63: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR pandas/io/formats/style.py:2010:33-39: `result` may be uninitialized [unbound-name] +ERROR pandas/io/formats/style.py:3879:24-53: No matching overload found for function `pandas.core.common.pipe` called with arguments: (Self@Styler, ((Self@Styler, ParamSpec(P)) -> T) | tuple[(...) -> T, str], *tuple[Any, ...], **dict[str, Any]) [no-matching-overload] +ERROR pandas/io/formats/style.py:4236:9-17: `object` is not assignable to `float` [bad-assignment] +ERROR pandas/io/formats/style.py:4269:24-32: `-` is not supported between `Literal[0]` and `object` [unsupported-operation] +ERROR pandas/io/formats/style.py:4269:24-32: `-` is not supported between `float` and `object` [unsupported-operation] +ERROR pandas/io/formats/style.py:4269:34-43: `-` is not supported between `Literal[0]` and `object` [unsupported-operation] +ERROR pandas/io/formats/style.py:4269:34-43: `-` is not supported between `float` and `object` [unsupported-operation] +ERROR pandas/io/formats/style.py:4279:25-33: `-` is not supported between `Literal[0]` and `object` [unsupported-operation] +ERROR pandas/io/formats/style.py:4279:25-33: `-` is not supported between `float` and `object` [unsupported-operation] +ERROR pandas/io/formats/style.py:4280:25-34: `-` is not supported between `Literal[0]` and `object` [unsupported-operation] +ERROR pandas/io/formats/style.py:4280:25-34: `-` is not supported between `float` and `object` [unsupported-operation] +ERROR pandas/io/formats/style_render.py:959:28-42: `row_body_cells` may be uninitialized [unbound-name] +ERROR pandas/io/formats/style_render.py:1849:32-42: `last_label` is uninitialized [unbound-name] +ERROR pandas/io/formats/style_render.py:1855:33-43: `last_label` is uninitialized [unbound-name] +ERROR pandas/io/formats/style_render.py:2634:24-75: Argument `str | Unknown` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR pandas/io/formats/style_render.py:2637:17-83: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR pandas/io/formats/style_render.py:2641:17-2643:55: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR pandas/io/html.py:639:9-18: Class member `_BeautifulSoupHtml5LibFrameParser._parse_td` overrides parent class `_HtmlFrameParser` in an inconsistent manner [bad-param-name-override] +ERROR pandas/io/html.py:731:9-18: Class member `_LxmlFrameParser._parse_td` overrides parent class `_HtmlFrameParser` in an inconsistent manner [bad-param-name-override] +ERROR pandas/io/html.py:736:9-22: Class member `_LxmlFrameParser._parse_tables` overrides parent class `_HtmlFrameParser` in an inconsistent manner [bad-param-name-override] +ERROR pandas/io/json/_json.py:955:16-19: `obj` may be uninitialized [unbound-name] +ERROR pandas/io/json/_json.py:1025:38-46: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `dtype` with type `ExtensionDtype | Mapping[Hashable, ExtensionDtype | dtype[Any] | str | type[bool | complex | object | str]] | dtype[Any] | str | type[bool | complex | object | str] | None` in function `Parser.__init__` [bad-argument-type] +ERROR pandas/io/json/_json.py:1025:38-46: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `convert_axes` with type `bool` in function `Parser.__init__` [bad-argument-type] +ERROR pandas/io/json/_json.py:1025:38-46: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `convert_dates` with type `bool | list[str]` in function `Parser.__init__` [bad-argument-type] +ERROR pandas/io/json/_json.py:1025:38-46: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `keep_default_dates` with type `bool` in function `Parser.__init__` [bad-argument-type] +ERROR pandas/io/json/_json.py:1025:38-46: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `precise_float` with type `bool` in function `Parser.__init__` [bad-argument-type] +ERROR pandas/io/json/_json.py:1025:38-46: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `dtype_backend` with type `Literal['numpy_nullable', 'pyarrow'] | _NoDefault` in function `Parser.__init__` [bad-argument-type] +ERROR pandas/io/json/_json.py:1029:39-47: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `dtype` with type `ExtensionDtype | Mapping[Hashable, ExtensionDtype | dtype[Any] | str | type[bool | complex | object | str]] | dtype[Any] | str | type[bool | complex | object | str] | None` in function `Parser.__init__` [bad-argument-type] +ERROR pandas/io/json/_json.py:1029:39-47: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `convert_axes` with type `bool` in function `Parser.__init__` [bad-argument-type] +ERROR pandas/io/json/_json.py:1029:39-47: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `convert_dates` with type `bool | list[str]` in function `Parser.__init__` [bad-argument-type] +ERROR pandas/io/json/_json.py:1029:39-47: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `keep_default_dates` with type `bool` in function `Parser.__init__` [bad-argument-type] +ERROR pandas/io/json/_json.py:1029:39-47: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `precise_float` with type `bool` in function `Parser.__init__` [bad-argument-type] +ERROR pandas/io/json/_json.py:1029:39-47: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `dtype_backend` with type `Literal['numpy_nullable', 'pyarrow'] | _NoDefault` in function `Parser.__init__` [bad-argument-type] +ERROR pandas/io/json/_normalize.py:148:12-18: Returned type `list[dict[str, Any] | list[dict[str, Any]]]` is not assignable to declared return type `dict[str, Any] | list[dict[str, Any]]` [bad-return] +ERROR pandas/io/json/_normalize.py:578:32-41: Argument `int` is not assignable to parameter `object` with type `_NestedSequence[_SupportsArray[dtype[numpy.bool[builtins.bool] | integer[Any]]]] | _SupportsArray[dtype[numpy.bool[builtins.bool] | integer[Any]]]` in function `list.append` [bad-argument-type] +ERROR pandas/io/json/_table_schema.py:311:36-53: Object of class `Index` has no attribute `levels` [missing-attribute] +ERROR pandas/io/parsers/arrow_parser_wrapper.py:184:30-57: `+` is not supported between `list[str]` and `range` [unsupported-operation] +ERROR pandas/io/parsers/base_parser.py:432:20-21: Returned type `int | integer[Any]` is not assignable to declared return type `int` [bad-return] +ERROR pandas/io/parsers/c_parser_wrapper.py:137:45-71: `set[int]` is not assignable to upper bound `Sequence[Hashable]` of type variable `SequenceT` [bad-specialization] +ERROR pandas/io/parsers/c_parser_wrapper.py:147:45-150:18: `set[int]` is not assignable to upper bound `Sequence[Hashable]` of type variable `SequenceT` [bad-specialization] +ERROR pandas/io/parsers/c_parser_wrapper.py:240:42-65: `MultiIndex | list[Hashable]` is not assignable to upper bound `Sequence[Hashable]` of type variable `SequenceT` [bad-specialization] +ERROR pandas/io/parsers/python_parser.py:142:25-26: `list[str]` is not assignable to attribute `data` with type `Iterator[list[str]] | list[list[Interval[Unknown] | Timedelta | Timestamp | bool | bytes | complex | complexfloating[Any, Unknown] | date | datetime | datetime64[date | int | None] | float | floating[Any] | int | integer[Any] | str | timedelta | timedelta64[int | timedelta | None]]]` [bad-assignment] +ERROR pandas/io/parsers/python_parser.py:172:14-24: Class member `PythonParser.orig_names` overrides parent class `ParserBase` in an inconsistent manner [bad-override] +ERROR pandas/io/parsers/python_parser.py:428:48-83: Argument `set[Unknown] | Unknown` is not assignable to parameter `values` with type `ExtensionArray | Index | SequenceNotStr[Unknown] | Series | ndarray[tuple[Any, ...], dtype[Any]] | range` in function `pandas.core.algorithms.isin` [bad-argument-type] +ERROR pandas/io/parsers/python_parser.py:481:25-30: Cannot set item in `dict[Any, ndarray[tuple[Any, ...], dtype[Any]]]` [unsupported-operation] +ERROR pandas/io/parsers/python_parser.py:528:25-36: Unexpected keyword argument `true_values` in function `pandas.core.arrays.base.ExtensionArray._from_sequence_of_strings` [unexpected-keyword] +ERROR pandas/io/parsers/python_parser.py:529:25-37: Unexpected keyword argument `false_values` in function `pandas.core.arrays.base.ExtensionArray._from_sequence_of_strings` [unexpected-keyword] +ERROR pandas/io/parsers/python_parser.py:530:25-36: Unexpected keyword argument `none_values` in function `pandas.core.arrays.base.ExtensionArray._from_sequence_of_strings` [unexpected-keyword] +ERROR pandas/io/parsers/python_parser.py:1310:62-70: Argument `list[list[str]]` is not assignable to parameter `new_rows` with type `list[list[Interval[Unknown] | Timedelta | Timestamp | bool | bytes | complex | complexfloating[Any, Unknown] | date | datetime | datetime64[date | int | None] | float | floating[Any] | int | integer[Any] | str | timedelta | timedelta64[int | timedelta | None]]]` in function `PythonParser._remove_skipped_rows` [bad-argument-type] +ERROR pandas/io/parsers/python_parser.py:1320:49-57: Argument `list[Interval[Unknown] | Timedelta | Timestamp | bool | bytes | complex | complexfloating[Any, Unknown] | date | datetime | datetime64[date | int | None] | float | floating[Any] | int | integer[Any] | str | timedelta | timedelta64[int | timedelta | None]]` is not assignable to parameter `object` with type `list[str]` in function `list.append` [bad-argument-type] +ERROR pandas/io/parsers/python_parser.py:1325:58-66: Argument `list[list[str]]` is not assignable to parameter `new_rows` with type `list[list[Interval[Unknown] | Timedelta | Timestamp | bool | bytes | complex | complexfloating[Any, Unknown] | date | datetime | datetime64[date | int | None] | float | floating[Any] | int | integer[Any] | str | timedelta | timedelta64[int | timedelta | None]]]` in function `PythonParser._remove_skipped_rows` [bad-argument-type] +ERROR pandas/io/parsers/readers.py:310:5-13: Implementation signature `(filepath_or_buffer: PathLike[str] | ReadCsvBuffer[bytes] | ReadCsvBuffer[str] | str, *, sep: _NoDefault | str | None = _NoDefault.no_default, delimiter: _NoDefault | str | None = None, header: Literal['infer'] | Sequence[int] | int | None = 'infer', names: Sequence[Hashable] | _NoDefault | None = _NoDefault.no_default, index_col: Literal[False] | Hashable | Sequence[Hashable] | None = None, usecols: ((Unknown) -> bool) | ExtensionArray | Index | SequenceNotStr[Hashable] | Series | ndarray[tuple[Any, ...], dtype[Any]] | range | None = None, dtype: ExtensionDtype | Mapping[Hashable, ExtensionDtype | dtype[Any] | str | type[bool | complex | object | str]] | dtype[Any] | str | type[bool | complex | object | str] | None = None, engine: Literal['c', 'pyarrow', 'python', 'python-fwf'] | None = None, converters: Mapping[HashableT, (...) -> Unknown] | None = None, true_values: list[Unknown] | None = None, false_values: list[Unknown] | None = None, skipinitialspace: bool = False, skiprows: ((Hashable) -> bool) | int | list[int] | None = None, skipfooter: int = 0, nrows: int | None = None, na_values: Hashable | Iterable[Hashable] | Mapping[Hashable, Iterable[Hashable]] | None = None, keep_default_na: bool = True, na_filter: bool = True, skip_blank_lines: bool = True, parse_dates: Sequence[Hashable] | bool | None = None, date_format: dict[Hashable, str] | str | None = None, dayfirst: bool = False, cache_dates: bool = True, iterator: bool = False, chunksize: int | None = None, compression: Literal['bz2', 'gzip', 'infer', 'tar', 'xz', 'zip', 'zstd'] | dict[str, Any] | None = 'infer', thousands: str | None = None, decimal: str = '.', lineterminator: str | None = None, quotechar: str = '"', quoting: int = 0, doublequote: bool = True, escapechar: str | None = None, comment: str | None = None, encoding: str | None = None, encoding_errors: str | None = 'strict', dialect: Dialect | str | None = None, on_bad_lines: str = 'error', low_memory: bool = True, memory_map: bool = False, float_precision: Literal['high', 'legacy', 'round_trip'] | None = None, storage_options: dict[str, Any] | None = None, dtype_backend: Literal['numpy_nullable', 'pyarrow'] | _NoDefault = _NoDefault.no_default) -> DataFrame | TextFileReader` does not accept all arguments that overload signature `(filepath_or_buffer: PathLike[str] | ReadCsvBuffer[bytes] | ReadCsvBuffer[str] | str, *, iterator: Literal[True], chunksize: int | None = ..., **kwds: Unpack[TypedDict[_read_shared[HashableT]]]) -> TextFileReader` accepts [inconsistent-overload] +ERROR pandas/io/parsers/readers.py:320:5-13: Implementation signature `(filepath_or_buffer: PathLike[str] | ReadCsvBuffer[bytes] | ReadCsvBuffer[str] | str, *, sep: _NoDefault | str | None = _NoDefault.no_default, delimiter: _NoDefault | str | None = None, header: Literal['infer'] | Sequence[int] | int | None = 'infer', names: Sequence[Hashable] | _NoDefault | None = _NoDefault.no_default, index_col: Literal[False] | Hashable | Sequence[Hashable] | None = None, usecols: ((Unknown) -> bool) | ExtensionArray | Index | SequenceNotStr[Hashable] | Series | ndarray[tuple[Any, ...], dtype[Any]] | range | None = None, dtype: ExtensionDtype | Mapping[Hashable, ExtensionDtype | dtype[Any] | str | type[bool | complex | object | str]] | dtype[Any] | str | type[bool | complex | object | str] | None = None, engine: Literal['c', 'pyarrow', 'python', 'python-fwf'] | None = None, converters: Mapping[HashableT, (...) -> Unknown] | None = None, true_values: list[Unknown] | None = None, false_values: list[Unknown] | None = None, skipinitialspace: bool = False, skiprows: ((Hashable) -> bool) | int | list[int] | None = None, skipfooter: int = 0, nrows: int | None = None, na_values: Hashable | Iterable[Hashable] | Mapping[Hashable, Iterable[Hashable]] | None = None, keep_default_na: bool = True, na_filter: bool = True, skip_blank_lines: bool = True, parse_dates: Sequence[Hashable] | bool | None = None, date_format: dict[Hashable, str] | str | None = None, dayfirst: bool = False, cache_dates: bool = True, iterator: bool = False, chunksize: int | None = None, compression: Literal['bz2', 'gzip', 'infer', 'tar', 'xz', 'zip', 'zstd'] | dict[str, Any] | None = 'infer', thousands: str | None = None, decimal: str = '.', lineterminator: str | None = None, quotechar: str = '"', quoting: int = 0, doublequote: bool = True, escapechar: str | None = None, comment: str | None = None, encoding: str | None = None, encoding_errors: str | None = 'strict', dialect: Dialect | str | None = None, on_bad_lines: str = 'error', low_memory: bool = True, memory_map: bool = False, float_precision: Literal['high', 'legacy', 'round_trip'] | None = None, storage_options: dict[str, Any] | None = None, dtype_backend: Literal['numpy_nullable', 'pyarrow'] | _NoDefault = _NoDefault.no_default) -> DataFrame | TextFileReader` does not accept all arguments that overload signature `(filepath_or_buffer: PathLike[str] | ReadCsvBuffer[bytes] | ReadCsvBuffer[str] | str, *, iterator: bool = ..., chunksize: int, **kwds: Unpack[TypedDict[_read_shared[HashableT]]]) -> TextFileReader` accepts [inconsistent-overload] +ERROR pandas/io/parsers/readers.py:330:5-13: Implementation signature `(filepath_or_buffer: PathLike[str] | ReadCsvBuffer[bytes] | ReadCsvBuffer[str] | str, *, sep: _NoDefault | str | None = _NoDefault.no_default, delimiter: _NoDefault | str | None = None, header: Literal['infer'] | Sequence[int] | int | None = 'infer', names: Sequence[Hashable] | _NoDefault | None = _NoDefault.no_default, index_col: Literal[False] | Hashable | Sequence[Hashable] | None = None, usecols: ((Unknown) -> bool) | ExtensionArray | Index | SequenceNotStr[Hashable] | Series | ndarray[tuple[Any, ...], dtype[Any]] | range | None = None, dtype: ExtensionDtype | Mapping[Hashable, ExtensionDtype | dtype[Any] | str | type[bool | complex | object | str]] | dtype[Any] | str | type[bool | complex | object | str] | None = None, engine: Literal['c', 'pyarrow', 'python', 'python-fwf'] | None = None, converters: Mapping[HashableT, (...) -> Unknown] | None = None, true_values: list[Unknown] | None = None, false_values: list[Unknown] | None = None, skipinitialspace: bool = False, skiprows: ((Hashable) -> bool) | int | list[int] | None = None, skipfooter: int = 0, nrows: int | None = None, na_values: Hashable | Iterable[Hashable] | Mapping[Hashable, Iterable[Hashable]] | None = None, keep_default_na: bool = True, na_filter: bool = True, skip_blank_lines: bool = True, parse_dates: Sequence[Hashable] | bool | None = None, date_format: dict[Hashable, str] | str | None = None, dayfirst: bool = False, cache_dates: bool = True, iterator: bool = False, chunksize: int | None = None, compression: Literal['bz2', 'gzip', 'infer', 'tar', 'xz', 'zip', 'zstd'] | dict[str, Any] | None = 'infer', thousands: str | None = None, decimal: str = '.', lineterminator: str | None = None, quotechar: str = '"', quoting: int = 0, doublequote: bool = True, escapechar: str | None = None, comment: str | None = None, encoding: str | None = None, encoding_errors: str | None = 'strict', dialect: Dialect | str | None = None, on_bad_lines: str = 'error', low_memory: bool = True, memory_map: bool = False, float_precision: Literal['high', 'legacy', 'round_trip'] | None = None, storage_options: dict[str, Any] | None = None, dtype_backend: Literal['numpy_nullable', 'pyarrow'] | _NoDefault = _NoDefault.no_default) -> DataFrame | TextFileReader` does not accept all arguments that overload signature `(filepath_or_buffer: PathLike[str] | ReadCsvBuffer[bytes] | ReadCsvBuffer[str] | str, *, iterator: Literal[False] = ..., chunksize: None = ..., **kwds: Unpack[TypedDict[_read_shared[HashableT]]]) -> DataFrame` accepts [inconsistent-overload] +ERROR pandas/io/parsers/readers.py:340:5-13: Implementation signature `(filepath_or_buffer: PathLike[str] | ReadCsvBuffer[bytes] | ReadCsvBuffer[str] | str, *, sep: _NoDefault | str | None = _NoDefault.no_default, delimiter: _NoDefault | str | None = None, header: Literal['infer'] | Sequence[int] | int | None = 'infer', names: Sequence[Hashable] | _NoDefault | None = _NoDefault.no_default, index_col: Literal[False] | Hashable | Sequence[Hashable] | None = None, usecols: ((Unknown) -> bool) | ExtensionArray | Index | SequenceNotStr[Hashable] | Series | ndarray[tuple[Any, ...], dtype[Any]] | range | None = None, dtype: ExtensionDtype | Mapping[Hashable, ExtensionDtype | dtype[Any] | str | type[bool | complex | object | str]] | dtype[Any] | str | type[bool | complex | object | str] | None = None, engine: Literal['c', 'pyarrow', 'python', 'python-fwf'] | None = None, converters: Mapping[HashableT, (...) -> Unknown] | None = None, true_values: list[Unknown] | None = None, false_values: list[Unknown] | None = None, skipinitialspace: bool = False, skiprows: ((Hashable) -> bool) | int | list[int] | None = None, skipfooter: int = 0, nrows: int | None = None, na_values: Hashable | Iterable[Hashable] | Mapping[Hashable, Iterable[Hashable]] | None = None, keep_default_na: bool = True, na_filter: bool = True, skip_blank_lines: bool = True, parse_dates: Sequence[Hashable] | bool | None = None, date_format: dict[Hashable, str] | str | None = None, dayfirst: bool = False, cache_dates: bool = True, iterator: bool = False, chunksize: int | None = None, compression: Literal['bz2', 'gzip', 'infer', 'tar', 'xz', 'zip', 'zstd'] | dict[str, Any] | None = 'infer', thousands: str | None = None, decimal: str = '.', lineterminator: str | None = None, quotechar: str = '"', quoting: int = 0, doublequote: bool = True, escapechar: str | None = None, comment: str | None = None, encoding: str | None = None, encoding_errors: str | None = 'strict', dialect: Dialect | str | None = None, on_bad_lines: str = 'error', low_memory: bool = True, memory_map: bool = False, float_precision: Literal['high', 'legacy', 'round_trip'] | None = None, storage_options: dict[str, Any] | None = None, dtype_backend: Literal['numpy_nullable', 'pyarrow'] | _NoDefault = _NoDefault.no_default) -> DataFrame | TextFileReader` does not accept all arguments that overload signature `(filepath_or_buffer: PathLike[str] | ReadCsvBuffer[bytes] | ReadCsvBuffer[str] | str, *, iterator: bool = ..., chunksize: int | None = ..., **kwds: Unpack[TypedDict[_read_shared[HashableT]]]) -> DataFrame | TextFileReader` accepts [inconsistent-overload] +ERROR pandas/io/parsers/readers.py:877:5-15: Implementation signature `(filepath_or_buffer: PathLike[str] | ReadCsvBuffer[bytes] | ReadCsvBuffer[str] | str, *, sep: _NoDefault | str | None = _NoDefault.no_default, delimiter: _NoDefault | str | None = None, header: Literal['infer'] | Sequence[int] | int | None = 'infer', names: Sequence[Hashable] | _NoDefault | None = _NoDefault.no_default, index_col: Literal[False] | Hashable | Sequence[Hashable] | None = None, usecols: ((Unknown) -> bool) | ExtensionArray | Index | SequenceNotStr[Hashable] | Series | ndarray[tuple[Any, ...], dtype[Any]] | range | None = None, dtype: ExtensionDtype | Mapping[Hashable, ExtensionDtype | dtype[Any] | str | type[bool | complex | object | str]] | dtype[Any] | str | type[bool | complex | object | str] | None = None, engine: Literal['c', 'pyarrow', 'python', 'python-fwf'] | None = None, converters: Mapping[HashableT, (...) -> Unknown] | None = None, true_values: list[Unknown] | None = None, false_values: list[Unknown] | None = None, skipinitialspace: bool = False, skiprows: ((Hashable) -> bool) | int | list[int] | None = None, skipfooter: int = 0, nrows: int | None = None, na_values: Hashable | Iterable[Hashable] | Mapping[Hashable, Iterable[Hashable]] | None = None, keep_default_na: bool = True, na_filter: bool = True, skip_blank_lines: bool = True, parse_dates: Sequence[Hashable] | bool | None = None, date_format: dict[Hashable, str] | str | None = None, dayfirst: bool = False, cache_dates: bool = True, iterator: bool = False, chunksize: int | None = None, compression: Literal['bz2', 'gzip', 'infer', 'tar', 'xz', 'zip', 'zstd'] | dict[str, Any] | None = 'infer', thousands: str | None = None, decimal: str = '.', lineterminator: str | None = None, quotechar: str = '"', quoting: int = 0, doublequote: bool = True, escapechar: str | None = None, comment: str | None = None, encoding: str | None = None, encoding_errors: str | None = 'strict', dialect: Dialect | str | None = None, on_bad_lines: str = 'error', low_memory: bool = True, memory_map: bool = False, float_precision: Literal['high', 'legacy', 'round_trip'] | None = None, storage_options: dict[str, Any] | None = None, dtype_backend: Literal['numpy_nullable', 'pyarrow'] | _NoDefault = _NoDefault.no_default) -> DataFrame | TextFileReader` does not accept all arguments that overload signature `(filepath_or_buffer: PathLike[str] | ReadCsvBuffer[bytes] | ReadCsvBuffer[str] | str, *, iterator: Literal[True], chunksize: int | None = ..., **kwds: Unpack[TypedDict[_read_shared[HashableT]]]) -> TextFileReader` accepts [inconsistent-overload] +ERROR pandas/io/parsers/readers.py:887:5-15: Implementation signature `(filepath_or_buffer: PathLike[str] | ReadCsvBuffer[bytes] | ReadCsvBuffer[str] | str, *, sep: _NoDefault | str | None = _NoDefault.no_default, delimiter: _NoDefault | str | None = None, header: Literal['infer'] | Sequence[int] | int | None = 'infer', names: Sequence[Hashable] | _NoDefault | None = _NoDefault.no_default, index_col: Literal[False] | Hashable | Sequence[Hashable] | None = None, usecols: ((Unknown) -> bool) | ExtensionArray | Index | SequenceNotStr[Hashable] | Series | ndarray[tuple[Any, ...], dtype[Any]] | range | None = None, dtype: ExtensionDtype | Mapping[Hashable, ExtensionDtype | dtype[Any] | str | type[bool | complex | object | str]] | dtype[Any] | str | type[bool | complex | object | str] | None = None, engine: Literal['c', 'pyarrow', 'python', 'python-fwf'] | None = None, converters: Mapping[HashableT, (...) -> Unknown] | None = None, true_values: list[Unknown] | None = None, false_values: list[Unknown] | None = None, skipinitialspace: bool = False, skiprows: ((Hashable) -> bool) | int | list[int] | None = None, skipfooter: int = 0, nrows: int | None = None, na_values: Hashable | Iterable[Hashable] | Mapping[Hashable, Iterable[Hashable]] | None = None, keep_default_na: bool = True, na_filter: bool = True, skip_blank_lines: bool = True, parse_dates: Sequence[Hashable] | bool | None = None, date_format: dict[Hashable, str] | str | None = None, dayfirst: bool = False, cache_dates: bool = True, iterator: bool = False, chunksize: int | None = None, compression: Literal['bz2', 'gzip', 'infer', 'tar', 'xz', 'zip', 'zstd'] | dict[str, Any] | None = 'infer', thousands: str | None = None, decimal: str = '.', lineterminator: str | None = None, quotechar: str = '"', quoting: int = 0, doublequote: bool = True, escapechar: str | None = None, comment: str | None = None, encoding: str | None = None, encoding_errors: str | None = 'strict', dialect: Dialect | str | None = None, on_bad_lines: str = 'error', low_memory: bool = True, memory_map: bool = False, float_precision: Literal['high', 'legacy', 'round_trip'] | None = None, storage_options: dict[str, Any] | None = None, dtype_backend: Literal['numpy_nullable', 'pyarrow'] | _NoDefault = _NoDefault.no_default) -> DataFrame | TextFileReader` does not accept all arguments that overload signature `(filepath_or_buffer: PathLike[str] | ReadCsvBuffer[bytes] | ReadCsvBuffer[str] | str, *, iterator: bool = ..., chunksize: int, **kwds: Unpack[TypedDict[_read_shared[HashableT]]]) -> TextFileReader` accepts [inconsistent-overload] +ERROR pandas/io/parsers/readers.py:897:5-15: Implementation signature `(filepath_or_buffer: PathLike[str] | ReadCsvBuffer[bytes] | ReadCsvBuffer[str] | str, *, sep: _NoDefault | str | None = _NoDefault.no_default, delimiter: _NoDefault | str | None = None, header: Literal['infer'] | Sequence[int] | int | None = 'infer', names: Sequence[Hashable] | _NoDefault | None = _NoDefault.no_default, index_col: Literal[False] | Hashable | Sequence[Hashable] | None = None, usecols: ((Unknown) -> bool) | ExtensionArray | Index | SequenceNotStr[Hashable] | Series | ndarray[tuple[Any, ...], dtype[Any]] | range | None = None, dtype: ExtensionDtype | Mapping[Hashable, ExtensionDtype | dtype[Any] | str | type[bool | complex | object | str]] | dtype[Any] | str | type[bool | complex | object | str] | None = None, engine: Literal['c', 'pyarrow', 'python', 'python-fwf'] | None = None, converters: Mapping[HashableT, (...) -> Unknown] | None = None, true_values: list[Unknown] | None = None, false_values: list[Unknown] | None = None, skipinitialspace: bool = False, skiprows: ((Hashable) -> bool) | int | list[int] | None = None, skipfooter: int = 0, nrows: int | None = None, na_values: Hashable | Iterable[Hashable] | Mapping[Hashable, Iterable[Hashable]] | None = None, keep_default_na: bool = True, na_filter: bool = True, skip_blank_lines: bool = True, parse_dates: Sequence[Hashable] | bool | None = None, date_format: dict[Hashable, str] | str | None = None, dayfirst: bool = False, cache_dates: bool = True, iterator: bool = False, chunksize: int | None = None, compression: Literal['bz2', 'gzip', 'infer', 'tar', 'xz', 'zip', 'zstd'] | dict[str, Any] | None = 'infer', thousands: str | None = None, decimal: str = '.', lineterminator: str | None = None, quotechar: str = '"', quoting: int = 0, doublequote: bool = True, escapechar: str | None = None, comment: str | None = None, encoding: str | None = None, encoding_errors: str | None = 'strict', dialect: Dialect | str | None = None, on_bad_lines: str = 'error', low_memory: bool = True, memory_map: bool = False, float_precision: Literal['high', 'legacy', 'round_trip'] | None = None, storage_options: dict[str, Any] | None = None, dtype_backend: Literal['numpy_nullable', 'pyarrow'] | _NoDefault = _NoDefault.no_default) -> DataFrame | TextFileReader` does not accept all arguments that overload signature `(filepath_or_buffer: PathLike[str] | ReadCsvBuffer[bytes] | ReadCsvBuffer[str] | str, *, iterator: Literal[False] = ..., chunksize: None = ..., **kwds: Unpack[TypedDict[_read_shared[HashableT]]]) -> DataFrame` accepts [inconsistent-overload] +ERROR pandas/io/parsers/readers.py:907:5-15: Implementation signature `(filepath_or_buffer: PathLike[str] | ReadCsvBuffer[bytes] | ReadCsvBuffer[str] | str, *, sep: _NoDefault | str | None = _NoDefault.no_default, delimiter: _NoDefault | str | None = None, header: Literal['infer'] | Sequence[int] | int | None = 'infer', names: Sequence[Hashable] | _NoDefault | None = _NoDefault.no_default, index_col: Literal[False] | Hashable | Sequence[Hashable] | None = None, usecols: ((Unknown) -> bool) | ExtensionArray | Index | SequenceNotStr[Hashable] | Series | ndarray[tuple[Any, ...], dtype[Any]] | range | None = None, dtype: ExtensionDtype | Mapping[Hashable, ExtensionDtype | dtype[Any] | str | type[bool | complex | object | str]] | dtype[Any] | str | type[bool | complex | object | str] | None = None, engine: Literal['c', 'pyarrow', 'python', 'python-fwf'] | None = None, converters: Mapping[HashableT, (...) -> Unknown] | None = None, true_values: list[Unknown] | None = None, false_values: list[Unknown] | None = None, skipinitialspace: bool = False, skiprows: ((Hashable) -> bool) | int | list[int] | None = None, skipfooter: int = 0, nrows: int | None = None, na_values: Hashable | Iterable[Hashable] | Mapping[Hashable, Iterable[Hashable]] | None = None, keep_default_na: bool = True, na_filter: bool = True, skip_blank_lines: bool = True, parse_dates: Sequence[Hashable] | bool | None = None, date_format: dict[Hashable, str] | str | None = None, dayfirst: bool = False, cache_dates: bool = True, iterator: bool = False, chunksize: int | None = None, compression: Literal['bz2', 'gzip', 'infer', 'tar', 'xz', 'zip', 'zstd'] | dict[str, Any] | None = 'infer', thousands: str | None = None, decimal: str = '.', lineterminator: str | None = None, quotechar: str = '"', quoting: int = 0, doublequote: bool = True, escapechar: str | None = None, comment: str | None = None, encoding: str | None = None, encoding_errors: str | None = 'strict', dialect: Dialect | str | None = None, on_bad_lines: str = 'error', low_memory: bool = True, memory_map: bool = False, float_precision: Literal['high', 'legacy', 'round_trip'] | None = None, storage_options: dict[str, Any] | None = None, dtype_backend: Literal['numpy_nullable', 'pyarrow'] | _NoDefault = _NoDefault.no_default) -> DataFrame | TextFileReader` does not accept all arguments that overload signature `(filepath_or_buffer: PathLike[str] | ReadCsvBuffer[bytes] | ReadCsvBuffer[str] | str, *, iterator: bool = ..., chunksize: int | None = ..., **kwds: Unpack[TypedDict[_read_shared[HashableT]]]) -> DataFrame | TextFileReader` accepts [inconsistent-overload] +ERROR pandas/io/pytables.py:140:39-44: Could not import `Block` from `pandas.core.internals` [missing-module-attribute] +ERROR pandas/io/pytables.py:483:8-47: `<=` is not supported between `None` and `None` [unsupported-operation] +ERROR pandas/io/pytables.py:487:11-31: `>` is not supported between `None` and `Literal[1]` [unsupported-operation] +ERROR pandas/io/pytables.py:639:30-38: `None` is not subscriptable [unsupported-operation] +ERROR pandas/io/pytables.py:702:20-704:14: Returned type `list[None]` is not assignable to declared return type `list[str]` [bad-return] +ERROR pandas/io/pytables.py:1281:13-14: `s` may be uninitialized [unbound-name] +ERROR pandas/io/pytables.py:1285:16-17: `s` may be uninitialized [unbound-name] +ERROR pandas/io/pytables.py:1287:16-17: `s` may be uninitialized [unbound-name] +ERROR pandas/io/pytables.py:1659:20-40: Object of class `NoneType` has no attribute `rstrip` [missing-attribute] +ERROR pandas/io/pytables.py:1941:64-72: Argument `Unknown | None` is not assignable to parameter `encoding` with type `str` in function `HDFStore._create_storer` [bad-argument-type] +ERROR pandas/io/pytables.py:2017:16-21: `group` may be uninitialized [unbound-name] +ERROR pandas/io/pytables.py:2196:16-33: Object of class `NoneType` has no attribute `itemsize` [missing-attribute] +ERROR pandas/io/pytables.py:2254:41-49: Argument `Unknown | None` is not assignable to parameter `val_kind` with type `str` in function `_maybe_convert` [bad-argument-type] +ERROR pandas/io/pytables.py:2277:44-52: Unpacked keyword argument `Unknown | None` is not assignable to parameter `freq` with type `BaseOffset | _NoDefault | str` in function `pandas.core.indexes.datetimes.DatetimeIndex.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2277:44-52: Unpacked keyword argument `Unknown | None` is not assignable to parameter `ambiguous` with type `Literal['NaT', 'infer', 'raise'] | ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]]` in function `pandas.core.indexes.datetimes.DatetimeIndex.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2277:44-52: Unpacked keyword argument `Unknown | None` is not assignable to parameter `dayfirst` with type `bool` in function `pandas.core.indexes.datetimes.DatetimeIndex.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2277:44-52: Unpacked keyword argument `Unknown | None` is not assignable to parameter `yearfirst` with type `bool` in function `pandas.core.indexes.datetimes.DatetimeIndex.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2277:44-52: Unpacked keyword argument `Unknown | None` is not assignable to parameter `copy` with type `bool` in function `pandas.core.indexes.datetimes.DatetimeIndex.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2277:44-52: Unpacked keyword argument `Unknown | None` is not assignable to parameter `copy` with type `bool` in function `pandas.core.indexes.base.Index.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2277:44-52: Unpacked keyword argument `Unknown | None` is not assignable to parameter `tupleize_cols` with type `bool` in function `pandas.core.indexes.base.Index.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2288:21-29: Unpacked keyword argument `Unknown | None` is not assignable to parameter `freq` with type `BaseOffset | _NoDefault | str` in function `pandas.core.indexes.datetimes.DatetimeIndex.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2288:21-29: Unpacked keyword argument `Unknown | None` is not assignable to parameter `ambiguous` with type `Literal['NaT', 'infer', 'raise'] | ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]]` in function `pandas.core.indexes.datetimes.DatetimeIndex.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2288:21-29: Unpacked keyword argument `Unknown | None` is not assignable to parameter `dayfirst` with type `bool` in function `pandas.core.indexes.datetimes.DatetimeIndex.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2288:21-29: Unpacked keyword argument `Unknown | None` is not assignable to parameter `yearfirst` with type `bool` in function `pandas.core.indexes.datetimes.DatetimeIndex.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2288:21-29: Unpacked keyword argument `Unknown | None` is not assignable to parameter `copy` with type `bool` in function `pandas.core.indexes.datetimes.DatetimeIndex.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2288:21-29: Unpacked keyword argument `Unknown | None` is not assignable to parameter `copy` with type `bool` in function `pandas.core.indexes.base.Index.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2288:21-29: Unpacked keyword argument `Unknown | None` is not assignable to parameter `tupleize_cols` with type `bool` in function `pandas.core.indexes.base.Index.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2297:44-52: Unpacked keyword argument `Unknown | None` is not assignable to parameter `freq` with type `BaseOffset | _NoDefault | str` in function `pandas.core.indexes.datetimes.DatetimeIndex.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2297:44-52: Unpacked keyword argument `Unknown | None` is not assignable to parameter `ambiguous` with type `Literal['NaT', 'infer', 'raise'] | ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]]` in function `pandas.core.indexes.datetimes.DatetimeIndex.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2297:44-52: Unpacked keyword argument `Unknown | None` is not assignable to parameter `dayfirst` with type `bool` in function `pandas.core.indexes.datetimes.DatetimeIndex.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2297:44-52: Unpacked keyword argument `Unknown | None` is not assignable to parameter `yearfirst` with type `bool` in function `pandas.core.indexes.datetimes.DatetimeIndex.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2297:44-52: Unpacked keyword argument `Unknown | None` is not assignable to parameter `copy` with type `bool` in function `pandas.core.indexes.datetimes.DatetimeIndex.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2297:44-52: Unpacked keyword argument `Unknown | None` is not assignable to parameter `copy` with type `bool` in function `pandas.core.indexes.base.Index.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2297:44-52: Unpacked keyword argument `Unknown | None` is not assignable to parameter `tupleize_cols` with type `bool` in function `pandas.core.indexes.base.Index.__new__` [bad-argument-type] +ERROR pandas/io/pytables.py:2312:16-35: Object of class `NoneType` has no attribute `_v_attrs` [missing-attribute] +ERROR pandas/io/pytables.py:2316:16-38: Object of class `NoneType` has no attribute `description` [missing-attribute] +ERROR pandas/io/pytables.py:2329:20-33: No matching overload found for function `iter` called with arguments: (Unknown | None) [no-matching-overload] +ERROR pandas/io/pytables.py:2341:45-62: Object of class `NoneType` has no attribute `itemsize` [missing-attribute] +ERROR pandas/io/pytables.py:2645:71-84: No matching overload found for function `list.__init__` called with arguments: (Unknown | None) [no-matching-overload] +ERROR pandas/io/pytables.py:2700:12-28: Class `bool` has no class attribute `startswith` +Class `complex` has no class attribute `startswith` +Class `object` has no class attribute `startswith` +Object of class `ExtensionDtype` has no attribute `startswith` +Object of class `Mapping` has no attribute `startswith` +Object of class `dtype` has no attribute `startswith` [missing-attribute] +ERROR pandas/io/pytables.py:2702:48-53: Argument `ExtensionDtype | Mapping[Hashable, ExtensionDtype | dtype[Any] | str | type[bool | complex | object | str]] | dtype[Any] | str | type[bool] | type[complex] | type[object] | type[str] | Unknown` is not assignable to parameter `datetime64_dtype` with type `str` in function `_set_tz` [bad-argument-type] +ERROR pandas/io/pytables.py:2742:45-64: No matching overload found for function `numpy.ndarray.astype` called with arguments: (ExtensionDtype | Mapping[Hashable, ExtensionDtype | dtype[Any] | str | type[bool | complex | object | str]] | dtype[Any] | str | type[bool] | type[complex] | type[object] | type[str] | Unknown, copy=Literal[False]) [no-matching-overload] +ERROR pandas/io/pytables.py:2749:17-26: Argument `Categorical | DatetimeArray | ndarray[tuple[Any, ...], dtype[Any]] | Unknown` is not assignable to parameter `data` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `_unconvert_string_array` [bad-argument-type] +ERROR pandas/io/pytables.py:2841:20-31: Returned type `tuple[int, ...] | tuple[int, int, int]` is not assignable to declared return type `tuple[int, int, int]` [bad-return] +ERROR pandas/io/pytables.py:3086:31-34: Argument `ndarray[tuple[int], dtype[float64]] | Unknown` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[signedinteger[_64Bit]]]` in function `_set_tz` [bad-argument-type] +ERROR pandas/io/pytables.py:3092:20-25: Object of class `list` has no attribute `T` [missing-attribute] +ERROR pandas/io/pytables.py:3118:35-51: Argument `Unknown | None` is not assignable to parameter `obj` with type `ExtensionArray | Index | Series | ndarray[tuple[Any, ...], dtype[Any]]` in function `GenericFixed.write_array` [bad-argument-type] +ERROR pandas/io/pytables.py:3146:41-58: Argument `Unknown | None` is not assignable to parameter `obj` with type `ExtensionArray | Index | Series | ndarray[tuple[Any, ...], dtype[Any]]` in function `GenericFixed.write_array` [bad-argument-type] +ERROR pandas/io/pytables.py:3184:16-32: Cannot index into `Node` [bad-index] +ERROR pandas/io/pytables.py:3289:45-50: Argument `ExtensionArray | Index | Series | ndarray[tuple[Any, ...], dtype[Any]] | Any` is not assignable to parameter `value` with type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` in function `GenericFixed.write_array_empty` [bad-argument-type] +ERROR pandas/io/pytables.py:3333:41-46: Argument `ExtensionArray | Index | Series | ndarray[tuple[Any, ...], dtype[Any]] | Any` is not assignable to parameter `value` with type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` in function `GenericFixed.write_array_empty` [bad-argument-type] +ERROR pandas/io/pytables.py:3444:64-70: `_start` may be uninitialized [unbound-name] +ERROR pandas/io/pytables.py:3444:77-82: `_stop` may be uninitialized [unbound-name] +ERROR pandas/io/pytables.py:3666:24-32: Argument `Unknown | None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR pandas/io/pytables.py:3678:21-29: No matching overload found for function `int.__new__` called with arguments: (type[int], Unknown | None) [no-matching-overload] +ERROR pandas/io/pytables.py:4135:13-26: Cannot index into `list[Index]` [bad-index] +ERROR pandas/io/pytables.py:4136:40-43: Argument `int | Unknown | None` is not assignable to parameter `axis` with type `Literal['columns', 'index', 'rows'] | int` in function `pandas.core.generic.NDFrame._get_axis_name` [bad-argument-type] +ERROR pandas/io/pytables.py:4383:23-37: `process_filter` may be uninitialized [unbound-name] +ERROR pandas/io/pytables.py:4402:28-63: Cannot set item in `dict[str, int | str]` [unsupported-operation] +ERROR pandas/io/pytables.py:4598:24-40: Object of class `bool` has no attribute `all` [missing-attribute] +ERROR pandas/io/pytables.py:4930:22-28: Class member `AppendableMultiSeriesTable.levels` overrides parent class `AppendableSeriesTable` in an inconsistent manner [bad-override] +ERROR pandas/io/pytables.py:4945:5-11: Class member `GenericTable.levels` overrides parent class `AppendableFrameTable` in an inconsistent manner [bad-override] +ERROR pandas/io/pytables.py:5023:19-25: Class member `AppendableMultiFrameTable.levels` overrides parent class `AppendableFrameTable` in an inconsistent manner [bad-override] +ERROR pandas/io/pytables.py:5205:19-35: Object of class `ndarray` has no attribute `to_numpy` [missing-attribute] +ERROR pandas/io/pytables.py:5503:44-49: `ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to attribute `coordinates` with type `None` [bad-assignment] +ERROR pandas/io/pytables.py:5506:39-46: No matching overload found for function `Selection.generate` called with arguments: (ndarray[tuple[Any, ...], dtype[Any]] | Unknown | None) [no-matching-overload] +ERROR pandas/io/sas/sas_xport.py:491:32-33: `v` may be uninitialized [unbound-name] +ERROR pandas/io/sql.py:1036:20-35: Object of class `NoneType` has no attribute `copy` [missing-attribute] +ERROR pandas/io/sql.py:1045:38-50: Object of class `NoneType` has no attribute `columns` [missing-attribute] +ERROR pandas/io/sql.py:1051:38-48: Object of class `NoneType` has no attribute `items` [missing-attribute] +ERROR pandas/io/sql.py:1100:21-31: Argument `Unknown | None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR pandas/io/sql.py:1113:13-1128:55: `int | object | None` is not assignable to `None` (caused by inconsistent types when breaking cycles) [bad-assignment] +ERROR pandas/io/sql.py:1129:16-30: Returned type `int | object | None` is not assignable to declared return type `int | None` [bad-return] +ERROR pandas/io/sql.py:1217:23-39: Object of class `NoneType` has no attribute `index` [missing-attribute] +ERROR pandas/io/sql.py:1231:36-54: Object of class `NoneType` has no attribute `columns` [missing-attribute] +ERROR pandas/io/sql.py:1232:21-37: Object of class `NoneType` has no attribute `index` [missing-attribute] +ERROR pandas/io/sql.py:1236:47-63: Object of class `NoneType` has no attribute `index` [missing-attribute] +ERROR pandas/io/sql.py:1250:41-57: Object of class `NoneType` has no attribute `index` [missing-attribute] +ERROR pandas/io/sql.py:1254:18-36: Object of class `NoneType` has no attribute `columns` [missing-attribute] +ERROR pandas/io/sql.py:1254:55-70: Object of class `NoneType` has no attribute `iloc` [missing-attribute] +ERROR pandas/io/sql.py:1255:32-50: Object of class `NoneType` has no attribute `columns` [missing-attribute] +ERROR pandas/io/sql.py:1311:26-46: `None` is not subscriptable [unsupported-operation] +ERROR pandas/io/sql.py:1320:21-41: Cannot set item in `None` [unsupported-operation] +ERROR pandas/io/sql.py:1333:21-41: Cannot set item in `None` [unsupported-operation] +ERROR pandas/io/sql.py:1336:21-41: Cannot set item in `None` [unsupported-operation] +ERROR pandas/io/sql.py:1340:41-61: `None` is not subscriptable [unsupported-operation] +ERROR pandas/io/sql.py:1342:21-41: Cannot set item in `None` [unsupported-operation] +ERROR pandas/io/sql.py:1346:25-45: Cannot set item in `None` [unsupported-operation] +ERROR pandas/io/sql.py:1914:33-44: Class `bool` has no class attribute `items` +Class `complex` has no class attribute `items` +Class `object` has no class attribute `items` +Class `str` has no class attribute `items` +Object of class `ExtensionDtype` has no attribute `items` +Object of class `NoneType` has no attribute `items` +Object of class `dtype` has no attribute `items` +Object of class `str` has no attribute `items` [missing-attribute] +ERROR pandas/io/sql.py:1950:27-47: Object of class `NoneType` has no attribute `get_table_names` [missing-attribute] +ERROR pandas/io/sql.py:2060:16-30: Object of class `NoneType` has no attribute `has_table` [missing-attribute] +ERROR pandas/io/sql.py:2548:31-49: Object of class `NoneType` has no attribute `columns` [missing-attribute] +ERROR pandas/io/sql.py:2866:33-44: Class `bool` has no class attribute `items` +Class `complex` has no class attribute `items` +Class `object` has no class attribute `items` +Class `str` has no class attribute `items` +Object of class `ExtensionDtype` has no attribute `items` +Object of class `NoneType` has no attribute `items` +Object of class `dtype` has no attribute `items` +Object of class `str` has no attribute `items` [missing-attribute] +ERROR pandas/io/stata.py:2253:16-53: Returned type `bytes` is not assignable to declared return type `AnyStr` [bad-return] +ERROR pandas/io/stata.py:2254:12-48: `+` is not supported between `AnyStr` and `LiteralString` [unsupported-operation] +ERROR pandas/io/stata.py:2254:12-48: Returned type `bytes | str` is not assignable to declared return type `AnyStr` [bad-return] +ERROR pandas/io/stata.py:2710:43-46: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type] +ERROR pandas/io/stata.py:3844:5-14: Class member `StataWriterUTF8._encoding` overrides parent class `StataWriter117` in an inconsistent manner [bad-override] +ERROR pandas/io/xml.py:440:31-36: `elems` may be uninitialized [unbound-name] +ERROR pandas/io/xml.py:559:31-36: `elems` may be uninitialized [unbound-name] +ERROR pandas/plotting/_core.py:1096:26-57: No matching overload found for function `dict.__init__` called with arguments: (list[tuple[str, bool] | tuple[str, str] | tuple[str, None]], **dict[str, Unknown], **Unknown) [no-matching-overload] +ERROR pandas/plotting/_core.py:2218:20-26: `module` may be uninitialized [unbound-name] +ERROR pandas/plotting/_core.py:2221:20-26: `module` may be uninitialized [unbound-name] +ERROR pandas/plotting/_matplotlib/boxplot.py:278:9-19: Module `matplotlib.artist` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/boxplot.py:280:9-19: Module `matplotlib.artist` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/boxplot.py:282:9-19: Module `matplotlib.artist` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/boxplot.py:284:9-19: Module `matplotlib.artist` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/boxplot.py:338:14-19: `None` is not subscriptable [unsupported-operation] +ERROR pandas/plotting/_matplotlib/boxplot.py:338:27-29: Argument `list[Unknown | None] | list[Unknown] | tuple[Unknown, ...] | Unknown | None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR pandas/plotting/_matplotlib/converter.py:78:12-17: Returned type `list[tuple[type[Period], type[PeriodConverter]] | tuple[type[Timestamp], type[DatetimeConverter]] | tuple[type[date], type[DatetimeConverter]] | tuple[type[datetime], type[DatetimeConverter]] | tuple[type[datetime64], type[DatetimeConverter]] | tuple[type[time], type[TimeConverter]]]` is not assignable to declared return type `list[tuple[type, type[DateConverter]]]` [bad-return] +ERROR pandas/plotting/_matplotlib/converter.py:149:29-40: Object of class `NaTType` has no attribute `time` [missing-attribute] +ERROR pandas/plotting/_matplotlib/converter.py:157:9-16: Class member `TimeConverter.convert` overrides parent class `ConversionInterface` in an inconsistent manner [bad-param-name-override] +ERROR pandas/plotting/_matplotlib/converter.py:172:18-28: Module `matplotlib.ticker` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/converter.py:182:21-31: Module `matplotlib.ticker` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/converter.py:227:9-16: Class member `PeriodConverter.convert` overrides parent class `DateConverter` in an inconsistent manner [bad-param-name-override] +ERROR pandas/plotting/_matplotlib/converter.py:280:16-42: Object of class `NaTType` has no attribute `ordinal` [missing-attribute] +ERROR pandas/plotting/_matplotlib/converter.py:291:9-16: Class member `DatetimeConverter.convert` overrides parent class `DateConverter` in an inconsistent manner [bad-param-name-override] +ERROR pandas/plotting/_matplotlib/converter.py:795:9-20: Cannot set item in `Literal['']` [unsupported-operation] +ERROR pandas/plotting/_matplotlib/converter.py:796:9-29: Cannot set item in `Literal['']` [unsupported-operation] +ERROR pandas/plotting/_matplotlib/converter.py:803:13-26: Cannot set item in `Literal['']` [unsupported-operation] +ERROR pandas/plotting/_matplotlib/converter.py:810:9-35: Cannot set item in `Literal['']` [unsupported-operation] +ERROR pandas/plotting/_matplotlib/converter.py:813:9-32: Cannot set item in `Literal['']` [unsupported-operation] +ERROR pandas/plotting/_matplotlib/converter.py:814:9-29: Cannot set item in `Literal['']` [unsupported-operation] +ERROR pandas/plotting/_matplotlib/converter.py:821:9-29: Cannot set item in `Literal['']` [unsupported-operation] +ERROR pandas/plotting/_matplotlib/converter.py:822:9-29: Cannot set item in `Literal['']` [unsupported-operation] +ERROR pandas/plotting/_matplotlib/converter.py:829:9-29: Cannot set item in `Literal['']` [unsupported-operation] +ERROR pandas/plotting/_matplotlib/converter.py:839:9-28: Cannot set item in `Literal['']` [unsupported-operation] +ERROR pandas/plotting/_matplotlib/converter.py:865:9-20: Cannot set item in `Literal['']` [unsupported-operation] +ERROR pandas/plotting/_matplotlib/converter.py:866:9-29: Cannot set item in `Literal['']` [unsupported-operation] +ERROR pandas/plotting/_matplotlib/converter.py:872:13-26: Cannot set item in `Literal['']` [unsupported-operation] +ERROR pandas/plotting/_matplotlib/converter.py:877:9-29: Cannot set item in `Literal['']` [unsupported-operation] +ERROR pandas/plotting/_matplotlib/converter.py:887:9-28: Cannot set item in `Literal['']` [unsupported-operation] +ERROR pandas/plotting/_matplotlib/converter.py:910:5-27: Cannot set item in `Literal['']` [unsupported-operation] +ERROR pandas/plotting/_matplotlib/converter.py:932:30-40: Module `matplotlib.ticker` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/converter.py:950:5-9: Class member `TimeSeries_DateLocator.axis` overrides parent class `Locator` in an inconsistent manner [bad-override] +ERROR pandas/plotting/_matplotlib/converter.py:1013:16-30: Module `matplotlib.transforms` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/converter.py:1021:32-42: Module `matplotlib.ticker` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/converter.py:1036:5-9: Class member `TimeSeries_DateFormatter.axis` overrides parent class `Formatter` in an inconsistent manner [bad-override] +ERROR pandas/plotting/_matplotlib/converter.py:1097:37-47: Module `matplotlib.ticker` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/converter.py:1102:5-9: Class member `TimeSeries_TimedeltaFormatter.axis` overrides parent class `Formatter` in an inconsistent manner [bad-override] +ERROR pandas/plotting/_matplotlib/core.py:443:16-19: Returned type `list[tuple[Unknown]]` is not assignable to declared return type `bool | list[tuple[int, ...]]` [bad-return] +ERROR pandas/plotting/_matplotlib/core.py:698:33-41: Argument `type[bool]` is not assignable to parameter `object` with type `type[number] | str` in function `list.append` [bad-argument-type] +ERROR pandas/plotting/_matplotlib/core.py:709:33-65: Argument `list[str]` is not assignable to parameter `iterable` with type `Iterable[type[number]]` in function `list.extend` [bad-argument-type] +ERROR pandas/plotting/_matplotlib/core.py:1063:35-39: Function declared to return `bool`, but one or more paths are missing an explicit `return` [bad-return] +ERROR pandas/plotting/_matplotlib/core.py:1163:23-32: `NDFrameT` is not subscriptable [unsupported-operation] +ERROR pandas/plotting/_matplotlib/core.py:1164:20-48: `NDFrameT` is not subscriptable [unsupported-operation] +ERROR pandas/plotting/_matplotlib/core.py:1202:26-1205:14: No matching overload found for function `numpy.lib._shape_base_impl.tile` called with arguments: (list[Number | number[Any, complex | float | int]], tuple[int, int]) [no-matching-overload] +ERROR pandas/plotting/_matplotlib/core.py:1211:16-25: Returned type `tuple[Unknown, NDFrameT | Unknown]` is not assignable to declared return type `tuple[Any, NDFrameT]` [bad-return] +ERROR pandas/plotting/_matplotlib/core.py:1240:32-40: Module `matplotlib.axes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/core.py:1383:21-32: Module `matplotlib.patches` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/core.py:1575:40-42: Argument `Iterable[tuple[Hashable, Series]] | Iterator[tuple[Hashable, ndarray[tuple[Any, ...], dtype[Any]]]]` is not assignable to parameter `iterable` with type `Iterable[tuple[Hashable, Series]]` in function `enumerate.__new__` [bad-argument-type] +ERROR pandas/plotting/_matplotlib/core.py:1599:17-18: Argument `Series` is not assignable to parameter `y` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `LinePlot._plot` [bad-argument-type] +ERROR pandas/plotting/_matplotlib/core.py:1943:14-22: Class member `BarPlot.subplots` overrides parent class `MPLPlot` in an inconsistent manner [bad-override] +ERROR pandas/plotting/_matplotlib/core.py:1998:17-56: Cannot set item in `list[list[int]]` [unsupported-operation] +ERROR pandas/plotting/_matplotlib/misc.py:131:22-31: Module `matplotlib.lines` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/misc.py:192:18-29: Module `matplotlib.patches` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/misc.py:195:22-33: Module `matplotlib.patches` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/misc.py:416:27-42: Unpacked keyword argument `int | str` is not assignable to parameter `ymin` with type `float` in function `matplotlib.axes._axes.Axes.axvline` [bad-argument-type] +ERROR pandas/plotting/_matplotlib/misc.py:416:27-42: Unpacked keyword argument `int | str` is not assignable to parameter `ymax` with type `float` in function `matplotlib.axes._axes.Axes.axvline` [bad-argument-type] +ERROR pandas/plotting/_matplotlib/timeseries.py:294:12-16: Returned type `NDFrameT | Unknown` is not assignable to declared return type `NDFrameT` [bad-return] +ERROR pandas/plotting/_matplotlib/tools.py:82:12-21: Module `matplotlib.table` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/tools.py:85:19-28: Argument `Index | Unknown` is not assignable to parameter `rowLabels` with type `Sequence[str] | None` in function `matplotlib.table.table` [bad-argument-type] +ERROR pandas/plotting/_matplotlib/tools.py:86:19-28: Argument `Index | Unknown` is not assignable to parameter `colLabels` with type `Sequence[str] | None` in function `matplotlib.table.table` [bad-argument-type] +ERROR pandas/plotting/_matplotlib/tools.py:332:45-55: Module `matplotlib.ticker` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/tools.py:333:32-42: Module `matplotlib.ticker` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/tools.py:334:47-57: Module `matplotlib.ticker` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/plotting/_matplotlib/tools.py:335:34-44: Module `matplotlib.ticker` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR pandas/tseries/frequencies.py:300:16-65: Returned type `NaTType | Timestamp` is not assignable to declared return type `Timestamp` [bad-return] +ERROR pandas/tseries/holiday.py:262:13-76: `NaTType | Timestamp | None` is not assignable to attribute `start_date` with type `Timestamp | None` [bad-assignment] +ERROR pandas/tseries/holiday.py:264:25-82: `NaTType | Timestamp | None` is not assignable to attribute `end_date` with type `Timestamp | None` [bad-assignment] +ERROR pandas/tseries/holiday.py:325:48-58: Argument `Unknown | None` is not assignable to parameter `month` with type `SupportsIndex` in function `datetime.datetime.__new__` [bad-argument-type] +ERROR pandas/tseries/holiday.py:325:60-68: Argument `Unknown | None` is not assignable to parameter `day` with type `SupportsIndex` in function `datetime.datetime.__new__` [bad-argument-type] +ERROR pandas/tseries/holiday.py:332:39-49: Argument `NaTType | Timestamp` is not assignable to parameter `start_date` with type `Timestamp` in function `Holiday._reference_dates` [bad-argument-type] +ERROR pandas/tseries/holiday.py:332:51-59: Argument `NaTType | Timestamp` is not assignable to parameter `end_date` with type `Timestamp` in function `Holiday._reference_dates` [bad-argument-type] +ERROR pandas/tseries/holiday.py:344:36-346:14: No matching overload found for function `max` called with arguments: (Timestamp, NaTType | Timestamp) [no-matching-overload] +ERROR pandas/tseries/holiday.py:348:34-350:14: No matching overload found for function `min` called with arguments: (Timestamp, NaTType | Timestamp) [no-matching-overload] +ERROR pandas/tseries/holiday.py:380:43-53: Argument `Unknown | None` is not assignable to parameter `month` with type `SupportsIndex` in function `datetime.datetime.__new__` [bad-argument-type] +ERROR pandas/tseries/holiday.py:380:55-63: Argument `Unknown | None` is not assignable to parameter `day` with type `SupportsIndex` in function `datetime.datetime.__new__` [bad-argument-type] +ERROR pandas/tseries/holiday.py:384:41-51: Argument `Unknown | None` is not assignable to parameter `month` with type `SupportsIndex` in function `datetime.datetime.__new__` [bad-argument-type] +ERROR pandas/tseries/holiday.py:384:53-61: Argument `Unknown | None` is not assignable to parameter `day` with type `SupportsIndex` in function `datetime.datetime.__new__` [bad-argument-type] +ERROR pandas/tseries/holiday.py:525:27-32: Argument `NaTType | Timestamp | Unknown` is not assignable to parameter `ts_input` with type `date | datetime | datetime64[date | int | None] | float | integer[Any] | str` in function `pandas._libs.tslibs.timestamps.Timestamp.__new__` [bad-argument-type] +ERROR pandas/tseries/holiday.py:526:25-28: Argument `NaTType | Timestamp | Unknown` is not assignable to parameter `ts_input` with type `date | datetime | datetime64[date | int | None] | float | integer[Any] | str` in function `pandas._libs.tslibs.timestamps.Timestamp.__new__` [bad-argument-type] +ERROR pandas/tseries/holiday.py:539:27-62: `tuple[NaTType | Timestamp, NaTType | Timestamp, Series]` is not assignable to attribute `_cache` with type `tuple[Timestamp, Timestamp, Series] | None` [bad-assignment] +ERROR pandas/tseries/holiday.py:541:20-34: `None` is not subscriptable [unsupported-operation] +ERROR pandas/util/_validators.py:473:12-15: Returned type `int | integer[Any] | Any` is not assignable to declared return type `int` [bad-return] +ERROR typings/numba.pyi:20:7-23: Module `numba.core.types` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR typings/numba.pyi:21:12-28: Module `numba.core.types` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR typings/numba.pyi:24:21-35: No attribute `compiler` in module `numba` [missing-attribute] + INFO Checking project configured at `/pyrefly.toml` + INFO 1,575 errors (615 suppressed) diff --git a/scripts/ty_benchmark/snapshots/pandas_Pyright.txt b/scripts/ty_benchmark/snapshots/pandas_Pyright.txt new file mode 100644 index 0000000000..53a0adba6e --- /dev/null +++ b/scripts/ty_benchmark/snapshots/pandas_Pyright.txt @@ -0,0 +1,4981 @@ +/pandas/__init__.py + /pandas/__init__.py:17:25 - error: "_dependency" is possibly unbound (reportPossiblyUnboundVariable) +/pandas/_config/config.py + /pandas/_config/config.py:287:16 - error: "cb" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/_config/config.py:288:17 - error: "cb" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/_config/config.py:403:40 - error: "defval" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/_config/config.py:756:10 - error: "doc" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/_config/config.py:757:26 - error: "doc" is not a known attribute of "None" (reportOptionalMemberAccess) +/pandas/_config/localization.py + /pandas/_config/localization.py:172:31 - error: "out_locales" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/_config/localization.py:175:39 - error: "out_locales" is possibly unbound (reportPossiblyUnboundVariable) +/pandas/_libs/sparse.pyi + /pandas/_libs/sparse.pyi:29:5 - error: "indices" incorrectly overrides property of same name in class "SparseIndex" (reportIncompatibleMethodOverride) + /pandas/_libs/sparse.pyi:43:9 - error: Method "intersect" overrides class "SparseIndex" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "y_", override parameter is named "other" (reportIncompatibleMethodOverride) + /pandas/_libs/sparse.pyi:44:9 - error: Method "make_union" overrides class "SparseIndex" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "y_", override parameter is named "y" (reportIncompatibleMethodOverride) +/pandas/_libs/tslibs/timedeltas.pyi + /pandas/_libs/tslibs/timedeltas.pyi:89:5 - error: "min" overrides symbol of same name in class "timedelta" +   Variable is mutable so its type is invariant +     Override type "Timedelta" is not the same as base type "timedelta" (reportIncompatibleVariableOverride) + /pandas/_libs/tslibs/timedeltas.pyi:90:5 - error: "max" overrides symbol of same name in class "timedelta" +   Variable is mutable so its type is invariant +     Override type "Timedelta" is not the same as base type "timedelta" (reportIncompatibleVariableOverride) + /pandas/_libs/tslibs/timedeltas.pyi:91:5 - error: "resolution" overrides symbol of same name in class "timedelta" +   Variable is mutable so its type is invariant +     Override type "Timedelta" is not the same as base type "timedelta" (reportIncompatibleVariableOverride) +/pandas/_libs/tslibs/timestamps.pyi + /pandas/_libs/tslibs/timestamps.pyi:34:5 - error: "min" overrides symbol of same name in class "datetime" +   Variable is mutable so its type is invariant +     Override type "Timestamp" is not the same as base type "datetime" (reportIncompatibleVariableOverride) + /pandas/_libs/tslibs/timestamps.pyi:35:5 - error: "max" overrides symbol of same name in class "datetime" +   Variable is mutable so its type is invariant +     Override type "Timestamp" is not the same as base type "datetime" (reportIncompatibleVariableOverride) + /pandas/_libs/tslibs/timestamps.pyi:37:5 - error: "resolution" overrides symbol of same name in class "date" +   Variable is mutable so its type is invariant +     Override type "Timedelta" is not the same as base type "timedelta" (reportIncompatibleVariableOverride) +/pandas/_testing/__init__.py + /pandas/_testing/__init__.py:507:28 - error: "core" is not a known attribute of module "pandas" (reportAttributeAccessIssue) + /pandas/_testing/__init__.py:509:28 - error: "core" is not a known attribute of module "pandas" (reportAttributeAccessIssue) +/pandas/_testing/_io.py + /pandas/_testing/_io.py:84:21 - error: Argument of type "str | None" cannot be assigned to parameter "args" of type "StrPath" in function "__new__" +   Type "str | None" is not assignable to type "StrPath" +     Type "None" is not assignable to type "StrPath" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "PathLike[str]" +         "__fspath__" is not present (reportArgumentType) + /pandas/_testing/_io.py:85:27 - error: Argument of type "str | None" cannot be assigned to parameter "args" of type "StrPath" in function "__new__" +   Type "str | None" is not assignable to type "StrPath" +     Type "None" is not assignable to type "StrPath" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "PathLike[str]" +         "__fspath__" is not present (reportArgumentType) +/pandas/compat/pickle_compat.py + /pandas/compat/pickle_compat.py:109:36 - error: Expected 1 positional argument (reportCallIssue) + /pandas/compat/pickle_compat.py:112:36 - error: Expected 1 positional argument (reportCallIssue) + /pandas/compat/pickle_compat.py:114:36 - error: Expected 1 positional argument (reportCallIssue) +/pandas/core/_numba/extensions.py + /pandas/core/_numba/extensions.py:22:5 - error: "NativeValue" is unknown import symbol (reportAttributeAccessIssue) + /pandas/core/_numba/extensions.py:23:5 - error: "box" is unknown import symbol (reportAttributeAccessIssue) + /pandas/core/_numba/extensions.py:24:5 - error: "lower_builtin" is unknown import symbol (reportAttributeAccessIssue) + /pandas/core/_numba/extensions.py:29:5 - error: "register_model" is unknown import symbol (reportAttributeAccessIssue) + /pandas/core/_numba/extensions.py:31:5 - error: "typeof_impl" is unknown import symbol (reportAttributeAccessIssue) + /pandas/core/_numba/extensions.py:32:5 - error: "unbox" is unknown import symbol (reportAttributeAccessIssue) + /pandas/core/_numba/extensions.py:61:15 - error: Cannot assign to attribute "_numba_data" for class "Index" +   Attribute "_numba_data" is unknown (reportAttributeAccessIssue) + /pandas/core/_numba/extensions.py:64:19 - error: Cannot delete attribute "_numba_data" for class "Index" +   Attribute "_numba_data" is unknown (reportAttributeAccessIssue) + /pandas/core/_numba/extensions.py:74:48 - error: Expected class but received "(iterable: Iterable[object], /) -> bool" (reportGeneralTypeIssues) + /pandas/core/_numba/extensions.py:450:21 - error: Function declaration "series_binop_impl" is obscured by a declaration of the same name (reportRedeclaration) +/pandas/core/_numba/kernels/mean_.py + /pandas/core/_numba/kernels/mean_.py:135:21 - error: "num_consecutive_same_value" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/_numba/kernels/mean_.py:136:21 - error: "prev_value" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/_numba/kernels/mean_.py:141:16 - error: "num_consecutive_same_value" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/_numba/kernels/mean_.py:142:26 - error: "prev_value" is possibly unbound (reportPossiblyUnboundVariable) +/pandas/core/_numba/kernels/sum_.py + /pandas/core/_numba/kernels/sum_.py:135:21 - error: "num_consecutive_same_value" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/_numba/kernels/sum_.py:136:21 - error: "prev_value" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/_numba/kernels/sum_.py:142:16 - error: "num_consecutive_same_value" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/_numba/kernels/sum_.py:143:26 - error: "prev_value" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/_numba/kernels/sum_.py:209:13 - error: Argument of type "ndarray[_AnyShape, dtype[signedinteger[_64Bit]]]" cannot be assigned to parameter "nobs" of type "int" in function "add_sum" +   "ndarray[_AnyShape, dtype[signedinteger[_64Bit]]]" is not assignable to "int" (reportArgumentType) + /pandas/core/_numba/kernels/sum_.py:212:13 - error: Argument of type "ndarray[_AnyShape, dtype[signedinteger[_64Bit]]]" cannot be assigned to parameter "num_consecutive_same_value" of type "int" in function "add_sum" +   "ndarray[_AnyShape, dtype[signedinteger[_64Bit]]]" is not assignable to "int" (reportArgumentType) +/pandas/core/_numba/kernels/var_.py + /pandas/core/_numba/kernels/var_.py:120:21 - error: Argument of type "ndarray[_AnyShape, dtype[Any]] | float" cannot be assigned to parameter "prev_value" of type "float" in function "add_var" +   Type "ndarray[_AnyShape, dtype[Any]] | float" is not assignable to type "float" +     "ndarray[_AnyShape, dtype[Any]]" is not assignable to "float" (reportArgumentType) + /pandas/core/_numba/kernels/var_.py:144:21 - error: "num_consecutive_same_value" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/_numba/kernels/var_.py:145:21 - error: Argument of type "Unbound | ndarray[_AnyShape, dtype[Any]] | float" cannot be assigned to parameter "prev_value" of type "float" in function "add_var" +   Type "Unbound | ndarray[_AnyShape, dtype[Any]] | float" is not assignable to type "float" +     "ndarray[_AnyShape, dtype[Any]]" is not assignable to "float" (reportArgumentType) + /pandas/core/_numba/kernels/var_.py:145:21 - error: "prev_value" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/_numba/kernels/var_.py:149:29 - error: "num_consecutive_same_value" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/_numba/kernels/var_.py:217:13 - error: Argument of type "ndarray[_AnyShape, dtype[signedinteger[_64Bit]]]" cannot be assigned to parameter "nobs" of type "int" in function "add_var" +   "ndarray[_AnyShape, dtype[signedinteger[_64Bit]]]" is not assignable to "int" (reportArgumentType) + /pandas/core/_numba/kernels/var_.py:218:13 - error: Argument of type "ndarray[_AnyShape, dtype[Any]]" cannot be assigned to parameter "mean_x" of type "float" in function "add_var" +   "ndarray[_AnyShape, dtype[Any]]" is not assignable to "float" (reportArgumentType) + /pandas/core/_numba/kernels/var_.py:219:13 - error: Argument of type "ndarray[_AnyShape, dtype[Any]]" cannot be assigned to parameter "ssqdm_x" of type "float" in function "add_var" +   "ndarray[_AnyShape, dtype[Any]]" is not assignable to "float" (reportArgumentType) + /pandas/core/_numba/kernels/var_.py:220:13 - error: Argument of type "ndarray[_AnyShape, dtype[Any]]" cannot be assigned to parameter "compensation" of type "float" in function "add_var" +   "ndarray[_AnyShape, dtype[Any]]" is not assignable to "float" (reportArgumentType) + /pandas/core/_numba/kernels/var_.py:221:13 - error: Argument of type "ndarray[_AnyShape, dtype[signedinteger[_64Bit]]]" cannot be assigned to parameter "num_consecutive_same_value" of type "int" in function "add_var" +   "ndarray[_AnyShape, dtype[signedinteger[_64Bit]]]" is not assignable to "int" (reportArgumentType) + /pandas/core/_numba/kernels/var_.py:222:13 - error: Argument of type "ndarray[_AnyShape, dtype[Any]]" cannot be assigned to parameter "prev_value" of type "float" in function "add_var" +   "ndarray[_AnyShape, dtype[Any]]" is not assignable to "float" (reportArgumentType) +/pandas/core/algorithms.py + /pandas/core/algorithms.py:257:12 - error: Type "ndarray[_AnyShape, dtype[Any]] | NDArray[Unknown] | Index | Series | ExtensionArray | ndarray[Unknown, Unknown] | NumpyExtensionArray" is not assignable to return type "ArrayLike" +   Type "ndarray[_AnyShape, dtype[Any]] | NDArray[Unknown] | Index | Series | ExtensionArray | ndarray[Unknown, Unknown] | NumpyExtensionArray" is not assignable to type "ArrayLike" +     Type "Index" is not assignable to type "ArrayLike" +       "Index" is not assignable to "ExtensionArray" +       "Index" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportReturnType) + /pandas/core/algorithms.py:469:23 - error: Cannot access attribute "unique" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "unique" is unknown (reportAttributeAccessIssue) + /pandas/core/algorithms.py:476:45 - error: Argument of type "ArrayLike" cannot be assigned to parameter "values" of type "ndarray[_AnyShape, dtype[Any]]" in function "_get_hashtable_algo" +   Type "ArrayLike" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/algorithms.py:546:33 - error: Argument of type "ArrayLike | Index | Series" cannot be assigned to parameter "values" of type "ArrayLike" in function "isin" +   Type "ArrayLike | Index | Series" is not assignable to type "ArrayLike" +     Type "Index" is not assignable to type "ArrayLike" +       "Index" is not assignable to "ExtensionArray" +       "Index" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/algorithms.py:550:43 - error: Argument of type "ArrayLike | Index | Series" cannot be assigned to parameter "values" of type "ArrayLike" in function "isin" +   Type "ArrayLike | Index | Series" is not assignable to type "ArrayLike" +     Type "Index" is not assignable to type "ArrayLike" +       "Index" is not assignable to "ExtensionArray" +       "Index" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/algorithms.py:583:17 - error: Type "(a: Unknown, b: Unknown) -> ndarray[tuple[int], dtype[numpy.bool[builtins.bool]]]" is not assignable to declared type "(c: Unknown, v: Unknown) -> Unknown" +   Type "(a: Unknown, b: Unknown) -> ndarray[tuple[int], dtype[numpy.bool[builtins.bool]]]" is not assignable to type "(c: Unknown, v: Unknown) -> Unknown" +     Parameter name mismatch: "c" versus "a" +     Parameter name mismatch: "v" versus "b" (reportAssignmentType) + /pandas/core/algorithms.py:589:13 - error: Type "(arr: ndarray[_AnyShape, dtype[Any]], values: ndarray[_AnyShape, dtype[Any]]) -> NDArray[bool_]" is not assignable to declared type "(c: Unknown, v: Unknown) -> Unknown" +   Type "(arr: ndarray[_AnyShape, dtype[Any]], values: ndarray[_AnyShape, dtype[Any]]) -> NDArray[bool_]" is not assignable to type "(c: Unknown, v: Unknown) -> Unknown" +     Parameter name mismatch: "c" versus "arr" +     Parameter name mismatch: "v" versus "values" (reportAssignmentType) + /pandas/core/algorithms.py:820:23 - error: Type "tuple[_Array1D[signedinteger[_NBitIntP]] | ndarray[_AnyShape, dtype[Any]], DatetimeArray | ExtensionArray | TimedeltaArray]" is not assignable to return type "tuple[ndarray[_AnyShape, dtype[Any]], ndarray[_AnyShape, dtype[Any]] | Index]" +   Type "DatetimeArray | ExtensionArray | TimedeltaArray" is not assignable to type "ndarray[_AnyShape, dtype[Any]] | Index" +     Type "ExtensionArray" is not assignable to type "ndarray[_AnyShape, dtype[Any]] | Index" +       "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" +       "ExtensionArray" is not assignable to "Index" (reportReturnType) + /pandas/core/algorithms.py:838:46 - error: Argument of type "object | Any | float | Literal[0, False]" cannot be assigned to parameter "x" of type "ArrayLike" in function "where" +   Type "object | Any | float | Literal[0, False]" is not assignable to type "ArrayLike" +     Type "object" is not assignable to type "ArrayLike" +       "object" is incompatible with protocol "_Buffer" +         "__buffer__" is not present +       "object" is incompatible with protocol "_SupportsArray[dtype[Any]]" +         "__array__" is not present +       "object" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[Any]]]" +         "__len__" is not present + ... (reportArgumentType) + /pandas/core/algorithms.py:855:33 - error: Argument of type "AnyArrayLike | Any | Unknown | DatetimeArray | TimedeltaArray" cannot be assigned to parameter "values" of type "ArrayLikeT@_reconstruct_data" in function "_reconstruct_data" +   Type "AnyArrayLike | Any | Unknown | DatetimeArray | TimedeltaArray" is not assignable to constrained type variable "ArrayLikeT" (reportArgumentType) + /pandas/core/algorithms.py:890:21 - error: Cannot access attribute "value_counts" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "value_counts" is unknown (reportAttributeAccessIssue) + /pandas/core/algorithms.py:890:21 - error: Cannot access attribute "value_counts" for class "tuple[Series | Categorical | Unknown | ndarray[_AnyShape, dtype[Any]], IntervalArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]] | IntervalIndex | Index]" +   Attribute "value_counts" is unknown (reportAttributeAccessIssue) + /pandas/core/algorithms.py:930:54 - error: Argument of type "ArrayLike" cannot be assigned to parameter "values" of type "ndarray[_AnyShape, dtype[Any]]" in function "value_counts_arraylike" +   Type "ArrayLike" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/algorithms.py:951:18 - error: No overloads for "sort_values" match the provided arguments +   Argument types: (bool) (reportCallIssue) + /pandas/core/algorithms.py:954:34 - error: Cannot access attribute "sum" for class "DatetimeArray" +   Attribute "sum" is unknown (reportAttributeAccessIssue) + /pandas/core/algorithms.py:954:34 - error: Cannot access attribute "sum" for class "PeriodArray" +   Attribute "sum" is unknown (reportAttributeAccessIssue) + /pandas/core/algorithms.py:956:12 - error: Type "Any | Unknown | Series | DataFrame" is not assignable to return type "Series" +   Type "Any | Unknown | Series | DataFrame" is not assignable to type "Series" +     "DataFrame" is not assignable to "Series" (reportReturnType) + /pandas/core/algorithms.py:1062:32 - error: Argument of type "AnyArrayLike | tuple[AnyArrayLike, ndarray[_AnyShape, dtype[Any]]] | Any" cannot be assigned to parameter "values" of type "ArrayLikeT@_reconstruct_data" in function "_reconstruct_data" +   Type "AnyArrayLike | tuple[AnyArrayLike, ndarray[_AnyShape, dtype[Any]]] | Any" is not assignable to constrained type variable "ArrayLikeT" (reportArgumentType) + /pandas/core/algorithms.py:1740:38 - error: Argument of type "((x: Unknown) -> Unknown) | Series | Unknown" cannot be assigned to parameter "f" of type "(Any) -> Any" in function "map_infer" +   Type "((x: Unknown) -> Unknown) | Series | Unknown" is not assignable to type "(Any) -> Any" +     Type "Series" is not assignable to type "(Any) -> Any" (reportArgumentType) + /pandas/core/algorithms.py:1742:43 - error: Argument of type "((x: Unknown) -> Unknown) | Series | Unknown" cannot be assigned to parameter "f" of type "(Any) -> Any" in function "map_infer_mask" +   Type "((x: Unknown) -> Unknown) | Series | Unknown" is not assignable to type "(Any) -> Any" +     Type "Series" is not assignable to type "(Any) -> Any" (reportArgumentType) +/pandas/core/apply.py + /pandas/core/apply.py:197:52 - error: Argument expression after ** must be a mapping with a "str" key type (reportCallIssue) + /pandas/core/apply.py:210:12 - error: "klass" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/apply.py:396:20 - error: Type "object | Any" is not assignable to return type "DataFrame | Series" +   Type "object | Any" is not assignable to type "DataFrame | Series" +     Type "object" is not assignable to type "DataFrame | Series" +       "object" is not assignable to "DataFrame" +       "object" is not assignable to "Series" (reportReturnType) + /pandas/core/apply.py:452:46 - error: Argument of type "DataFrame | Series | DataFrameGroupBy | SeriesGroupBy | GroupBy[Unknown] | Unknown" cannot be assigned to parameter "colg" of type "Series | DataFrame" in function "include_axis" +   Type "DataFrame | Series | DataFrameGroupBy | SeriesGroupBy | GroupBy[Unknown] | Unknown" is not assignable to type "Series | DataFrame" +     Type "GroupBy[Unknown]" is not assignable to type "Series | DataFrame" +       "GroupBy[Unknown]" is not assignable to "Series" +       "GroupBy[Unknown]" is not assignable to "DataFrame" (reportArgumentType) + /pandas/core/apply.py:468:46 - error: Argument of type "DataFrame | Series | DataFrameGroupBy | SeriesGroupBy | GroupBy[Unknown] | Unknown" cannot be assigned to parameter "colg" of type "Series | DataFrame" in function "include_axis" +   Type "DataFrame | Series | DataFrameGroupBy | SeriesGroupBy | GroupBy[Unknown] | Unknown" is not assignable to type "Series | DataFrame" +     Type "GroupBy[Unknown]" is not assignable to type "Series | DataFrame" +       "GroupBy[Unknown]" is not assignable to "Series" +       "GroupBy[Unknown]" is not assignable to "DataFrame" (reportArgumentType) + /pandas/core/apply.py:699:16 - error: Type "object | Any" is not assignable to return type "DataFrame | Series" +   Type "object | Any" is not assignable to type "DataFrame | Series" +     Type "object" is not assignable to type "DataFrame | Series" +       "object" is not assignable to "DataFrame" +       "object" is not assignable to "Series" (reportReturnType) + /pandas/core/apply.py:774:21 - error: Argument of type "list[Unknown] | tuple[Unknown, ...] | dict[Unknown, Unknown] | list[AggFuncTypeBase]" cannot be assigned to parameter "value" of type "AggFuncTypeBase | list[AggFuncTypeBase]" in function "__setitem__" +   Type "list[Unknown] | tuple[Unknown, ...] | dict[Unknown, Unknown] | list[AggFuncTypeBase]" is not assignable to type "AggFuncTypeBase | list[AggFuncTypeBase]" +     Type "dict[Unknown, Unknown]" is not assignable to type "AggFuncTypeBase | list[AggFuncTypeBase]" +       Type "dict[Unknown, Unknown]" is not assignable to type "(...) -> Unknown" +       "dict[Unknown, Unknown]" is not assignable to "str" +       "dict[Unknown, Unknown]" is not assignable to "list[AggFuncTypeBase]" (reportArgumentType) + /pandas/core/apply.py:1477:5 - error: "obj" overrides symbol of same name in class "NDFrameApply" +   Variable is mutable so its type is invariant +     Override type "Series" is not the same as base type "DataFrame | Series" (reportIncompatibleVariableOverride) + /pandas/core/apply.py:1684:5 - error: "obj" overrides symbol of same name in class "GroupByApply" +   Variable is mutable so its type is invariant +     Override type "Resampler | BaseWindow" is not the same as base type "GroupBy[Unknown] | Resampler | BaseWindow" (reportIncompatibleVariableOverride) + /pandas/core/apply.py:1781:82 - error: Object of type "str" is not callable +   Attribute "__call__" is unknown (reportCallIssue) + /pandas/core/apply.py:2000:49 - error: Argument of type "AggFuncType" cannot be assigned to parameter "func" of type "dict[str, list[((...) -> Unknown) | str]]" in function "relabel_result" +   Type "AggFuncType" is not assignable to type "dict[str, list[((...) -> Unknown) | str]]" +     "str" is not assignable to "dict[str, list[((...) -> Unknown) | str]]" (reportArgumentType) +/pandas/core/array_algos/take.py + /pandas/core/array_algos/take.py:160:29 - error: Argument of type "Any | float | Unknown | object | datetime64[date | int | None] | timedelta64[timedelta | int | None] | bool | bool_ | int | integer[Any] | complex" cannot be assigned to parameter "fill_value" of type "float" in function "func" +   Type "Any | float | Unknown | object | datetime64[date | int | None] | timedelta64[timedelta | int | None] | bool | bool_ | int | integer[Any] | complex" is not assignable to type "float" +     "object" is not assignable to "float" (reportArgumentType) + /pandas/core/array_algos/take.py:244:8 - error: "func" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/array_algos/take.py:245:16 - error: "func" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/array_algos/take.py:276:12 - error: Type "None" is not assignable to declared type "(arr: Unknown, indexer: Unknown, out: Unknown, fill_value: float = np.nan) -> None" +   Type "None" is not assignable to type "(arr: Unknown, indexer: Unknown, out: Unknown, fill_value: float = np.nan) -> None" (reportAssignmentType) + /pandas/core/array_algos/take.py:279:16 - error: Type "Unknown | Any | None" is not assignable to declared type "(arr: Unknown, indexer: Unknown, out: Unknown, fill_value: float = np.nan) -> None" +   Type "Unknown | Any | None" is not assignable to type "(arr: Unknown, indexer: Unknown, out: Unknown, fill_value: float = np.nan) -> None" +     Type "None" is not assignable to type "(arr: Unknown, indexer: Unknown, out: Unknown, fill_value: float = np.nan) -> None" (reportAssignmentType) + /pandas/core/array_algos/take.py:303:27 - error: Cannot access attribute "dtype" for class "float" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /pandas/core/array_algos/take.py:304:41 - error: Cannot access attribute "astype" for class "float" +   Attribute "astype" is unknown (reportAttributeAccessIssue) + /pandas/core/array_algos/take.py:306:41 - error: Cannot access attribute "astype" for class "float" +   Attribute "astype" is unknown (reportAttributeAccessIssue) + /pandas/core/array_algos/take.py:538:43 - error: "any" is not a known attribute of "None" (reportOptionalMemberAccess) +/pandas/core/arrays/_arrow_string_mixins.py + /pandas/core/arrays/_arrow_string_mixins.py:56:41 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:56:44 - error: "utf8_lower" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:59:41 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:59:44 - error: "utf8_upper" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:63:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:63:25 - error: "utf8_trim_whitespace" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:65:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:65:25 - error: "utf8_trim" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:70:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:70:25 - error: "utf8_ltrim_whitespace" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:72:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:72:25 - error: "utf8_ltrim" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:77:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:77:25 - error: "utf8_rtrim_whitespace" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:79:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:79:25 - error: "utf8_rtrim" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:89:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:89:25 - error: "utf8_lpad" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:91:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:91:25 - error: "utf8_rpad" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:105:34 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:105:37 - error: "utf8_center" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:115:19 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:115:22 - error: "utf8_length" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:117:29 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:117:32 - error: "greater_equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:122:29 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:122:32 - error: "greater" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:126:29 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:126:32 - error: "invert" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:127:20 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:127:23 - error: "utf8_slice_codeunits" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:130:22 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:131:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:131:21 - error: "if_else" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:146:13 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:146:16 - error: "utf8_slice_codeunits" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:159:13 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:159:16 - error: "utf8_replace_slice" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:184:16 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:184:19 - error: "replace_substring_regex" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:184:57 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:184:60 - error: "replace_substring" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:197:41 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:197:44 - error: "utf8_capitalize" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:200:41 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:200:44 - error: "utf8_title" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:203:41 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:203:44 - error: "utf8_swapcase" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:206:23 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:206:26 - error: "starts_with" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:207:19 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:207:22 - error: "utf8_slice_codeunits" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:208:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:208:21 - error: "if_else" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:212:21 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:212:24 - error: "ends_with" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:213:19 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:213:22 - error: "utf8_slice_codeunits" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:214:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:214:21 - error: "if_else" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:221:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:221:25 - error: "starts_with" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:226:26 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:226:29 - error: "if_else" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:226:37 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:226:40 - error: "is_null" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:228:26 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:228:29 - error: "starts_with" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:231:30 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:231:33 - error: "or_" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:231:45 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:231:48 - error: "starts_with" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:238:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:238:25 - error: "ends_with" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:243:26 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:243:29 - error: "if_else" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:243:37 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:243:40 - error: "is_null" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:245:26 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:245:29 - error: "ends_with" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:248:30 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:248:33 - error: "or_" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:248:45 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:248:48 - error: "ends_with" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:309:27 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:309:30 - error: "match_substring_regex" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:311:27 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:311:30 - error: "match_substring" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:343:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:343:25 - error: "find_substring" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:350:49 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:355:32 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:355:35 - error: "add" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:355:46 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:355:49 - error: "utf8_length" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:356:32 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:356:35 - error: "if_else" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:356:43 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:356:46 - error: "less" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:359:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:359:25 - error: "utf8_slice_codeunits" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:360:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:360:25 - error: "find_substring" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:361:21 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:361:24 - error: "not_equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:361:42 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:362:29 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:362:32 - error: "add" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/_arrow_string_mixins.py:363:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/_arrow_string_mixins.py:363:25 - error: "if_else" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) +/pandas/core/arrays/_mixins.py + /pandas/core/arrays/_mixins.py:179:40 - error: Argument of type "Unknown | ndarray[_AnyShape, Unknown] | NumpyExtensionArray | Index | Series" cannot be assigned to parameter "values" of type "ndarray[_AnyShape, dtype[Any]]" in function "_from_backing_data" +   Type "Unknown | ndarray[_AnyShape, Unknown] | NumpyExtensionArray | Index | Series" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "Index" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/arrays/_mixins.py:186:32 - error: Cannot access attribute "dtype" for class "object" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/_mixins.py:188:59 - error: Cannot access attribute "_ndarray" for class "object" +   Attribute "_ndarray" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/_mixins.py:233:9 - error: Method "_concat_same_type" overrides class "NDArrayBacked" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Sequence[NDArrayBacked]", override parameter is type "Sequence[NDArrayBackedExtensionArray]" +     "Sequence[NDArrayBacked]" is not assignable to "Sequence[NDArrayBackedExtensionArray]" +       Type parameter "_T_co@Sequence" is covariant, but "NDArrayBacked" is not a subtype of "NDArrayBackedExtensionArray" +         "NDArrayBacked" is not assignable to "NDArrayBackedExtensionArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/_mixins.py:233:9 - error: Method "_concat_same_type" overrides class "ExtensionArray" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Sequence[ExtensionArray]", override parameter is type "Sequence[NDArrayBackedExtensionArray]" +     "Sequence[ExtensionArray]" is not assignable to "Sequence[NDArrayBackedExtensionArray]" +       Type parameter "_T_co@Sequence" is covariant, but "ExtensionArray" is not a subtype of "NDArrayBackedExtensionArray" +         "ExtensionArray" is not assignable to "NDArrayBackedExtensionArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/_mixins.py:252:16 - error: No overloads for "searchsorted" match the provided arguments (reportCallIssue) + /pandas/core/arrays/_mixins.py:252:70 - error: Argument of type "NumpySorter" cannot be assigned to parameter "sorter" of type "_ArrayLikeInt_co | None" in function "searchsorted" +   Type "NumpySorter" is not assignable to type "_ArrayLikeInt_co | None" +     Type "NBitBase" is not assignable to type "_ArrayLikeInt_co | None" +       "NBitBase" is incompatible with protocol "_SupportsArray[dtype[numpy.bool[builtins.bool] | integer[Any]]]" +         "__array__" is not present +       "NBitBase" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[numpy.bool[builtins.bool] | integer[Any]]]]" +         "__len__" is not present +         "__getitem__" is not present +         "__contains__" is not present + ... (reportArgumentType) + /pandas/core/arrays/_mixins.py:326:69 - error: Argument of type "ndarray[_AnyShape, dtype[Any]] | ExtensionArraySupportsAnyAll" cannot be assigned to parameter "mask" of type "NDArray[bool_] | None" in function "_pad_1d" +   Type "ndarray[_AnyShape, dtype[Any]] | ExtensionArraySupportsAnyAll" is not assignable to type "NDArray[bool_] | None" +     Type "ExtensionArraySupportsAnyAll" is not assignable to type "NDArray[bool_] | None" +       "ExtensionArraySupportsAnyAll" is not assignable to "ndarray[_AnyShape, dtype[bool_]]" +       "ExtensionArraySupportsAnyAll" is not assignable to "None" (reportArgumentType) +/pandas/core/arrays/arrow/accessors.py + /pandas/core/arrays/arrow/accessors.py:46:53 - error: "ArrowDtype" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:78:13 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:79:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:80:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:115:25 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:115:28 - error: "list_value_length" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/accessors.py:118:19 - error: "ArrowDtype" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:163:23 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:163:26 - error: "list_element" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/accessors.py:166:23 - error: "ArrowDtype" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:181:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:181:25 - error: "list_slice" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/accessors.py:184:23 - error: "ArrowDtype" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:226:18 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:226:21 - error: "compute" is not a known attribute of module "pyarrow" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/accessors.py:227:21 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:227:24 - error: "compute" is not a known attribute of module "pyarrow" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/accessors.py:228:58 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:231:19 - error: "ArrowDtype" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:257:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:297:18 - error: "ArrowDtype" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:429:50 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:450:20 - error: "name" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:454:21 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/accessors.py:454:24 - error: "struct_field" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/accessors.py:458:19 - error: "ArrowDtype" is possibly unbound (reportPossiblyUnboundVariable) +/pandas/core/arrays/arrow/array.py + /pandas/core/arrays/arrow/array.py:97:18 - error: "equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:98:18 - error: "not_equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:99:18 - error: "less" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:100:18 - error: "greater" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:101:18 - error: "less_equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:102:18 - error: "greater_equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:106:20 - error: "and_kleene" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:107:34 - error: "and_kleene" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:108:19 - error: "or_kleene" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:109:33 - error: "or_kleene" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:110:19 - error: "xor" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:111:33 - error: "xor" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:115:20 - error: "bit_wise_and" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:116:34 - error: "bit_wise_and" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:117:19 - error: "bit_wise_or" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:118:33 - error: "bit_wise_or" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:119:19 - error: "bit_wise_xor" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:120:33 - error: "bit_wise_xor" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:146:26 - error: "divide_checked" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:149:36 - error: "not_equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:149:49 - error: "multiply" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:150:47 - error: "less" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:151:24 - error: "bit_wise_xor" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:154:29 - error: "if_else" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:155:24 - error: "and_" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:160:24 - error: "subtract" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:167:26 - error: "divide" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:168:25 - error: "floor" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:172:19 - error: "add_checked" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:173:33 - error: "add_checked" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:174:19 - error: "subtract_checked" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:175:33 - error: "subtract_checked" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:176:19 - error: "multiply_checked" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:177:33 - error: "multiply_checked" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:178:36 - error: "divide" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:179:37 - error: "divide" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:186:19 - error: "power_checked" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:187:33 - error: "power_checked" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:229:26 - error: "ArrowDtype" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:230:22 - error: Cannot access attribute "pyarrow_dtype" for class "ExtensionDtype" +   Attribute "pyarrow_dtype" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:230:22 - error: Cannot access attribute "pyarrow_dtype" for class "str" +   Attribute "pyarrow_dtype" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:230:22 - error: Cannot access attribute "pyarrow_dtype" for class "dtype[Any]" +   Attribute "pyarrow_dtype" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:230:22 - error: Cannot access attribute "pyarrow_dtype" for class "type[str]" +   Attribute "pyarrow_dtype" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:230:22 - error: Cannot access attribute "pyarrow_dtype" for class "type[complex]" +   Attribute "pyarrow_dtype" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:230:22 - error: Cannot access attribute "pyarrow_dtype" for class "type[bool]" +   Attribute "pyarrow_dtype" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:230:22 - error: Cannot access attribute "pyarrow_dtype" for class "type[object]" +   Attribute "pyarrow_dtype" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:230:22 - error: "pyarrow_dtype" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/arrays/arrow/array.py:231:28 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:234:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:239:20 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:240:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:312:31 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:313:30 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:314:33 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:320:23 - error: "ArrowDtype" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:349:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:350:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:351:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:356:14 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:360:14 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:364:23 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:365:14 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:375:45 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:375:55 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:376:31 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:376:54 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:377:27 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:377:30 - error: "if_else" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:379:44 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:380:24 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:382:14 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:387:14 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:394:37 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:394:47 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:397:27 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:397:50 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:398:23 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:398:26 - error: "if_else" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:398:34 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:398:37 - error: "equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:399:23 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:399:26 - error: "if_else" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:399:34 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:399:37 - error: "equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:400:36 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:402:13 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:403:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:404:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:409:37 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:409:47 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:412:27 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:430:29 - error: Cannot access attribute "copy" for class "NAType" +   Attribute "copy" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:430:29 - error: Cannot access attribute "copy" for class "NaTType" +   Attribute "copy" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:430:29 - error: Cannot access attribute "copy" for class "Timestamp" +   Attribute "copy" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:430:29 - error: Cannot access attribute "copy" for class "Timedelta" +   Attribute "copy" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:436:23 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:438:23 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:445:12 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:448:32 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:449:12 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:452:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:454:18 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:456:29 - error: "ArrowDtype" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:456:40 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:461:18 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:463:25 - error: "ArrowDtype" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:463:36 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:465:18 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:467:25 - error: "ArrowDtype" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:467:36 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:471:14 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:471:45 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:473:14 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:473:45 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:475:14 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:475:48 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:477:14 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:477:48 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:480:20 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:480:23 - error: "lib" is not a known attribute of module "pyarrow" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:483:14 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:483:49 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:488:20 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:488:23 - error: "lib" is not a known attribute of module "pyarrow" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:493:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:493:48 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:519:30 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:537:30 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:540:25 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:545:31 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:551:31 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:556:25 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:582:33 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:582:43 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:594:30 - error: Cannot access attribute "__arrow_array__" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "__arrow_array__" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:594:30 - error: Cannot access attribute "__arrow_array__" for class "ExtensionArray" +   Attribute "__arrow_array__" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:601:21 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:602:24 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:613:21 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:622:40 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:646:28 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:661:73 - error: Argument of type "ndarray[_AnyShape, dtype[Any]] | Any | ExtensionArray | ndarray[Unknown, Unknown]" cannot be assigned to parameter "values" of type "Collection[Unknown]" in function "construct_1d_object_array_from_listlike" +   Type "ndarray[_AnyShape, dtype[Any]] | Any | ExtensionArray | ndarray[Unknown, Unknown]" is not assignable to type "Collection[Unknown]" +     "ExtensionArray" is incompatible with protocol "Collection[Unknown]" +       "__contains__" is an incompatible type +         Type "(item: object) -> (bool | bool_)" is not assignable to type "(x: object, /) -> bool" +           Function return type "bool | bool_" is incompatible with type "bool" (reportArgumentType) + /pandas/core/arrays/arrow/array.py:671:28 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:672:21 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:672:38 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:674:28 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:676:36 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:682:28 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:684:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:692:45 - error: Cannot access attribute "type" for class "ExtensionArray" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:692:45 - error: Cannot access attribute "type" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:693:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:694:37 - error: Cannot access attribute "dictionary_encode" for class "ExtensionArray" +   Attribute "dictionary_encode" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:694:37 - error: Cannot access attribute "dictionary_encode" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "dictionary_encode" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:699:41 - error: Cannot access attribute "cast" for class "ExtensionArray" +   Attribute "cast" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:699:41 - error: Cannot access attribute "cast" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "cast" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:700:25 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:700:54 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:701:24 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:701:52 - error: Cannot access attribute "type" for class "ExtensionArray" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:701:52 - error: Cannot access attribute "type" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:701:61 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:702:34 - error: Cannot access attribute "type" for class "ExtensionArray" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:702:34 - error: Cannot access attribute "type" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:706:33 - error: "ArrowDtype" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:715:9 - error: Method "__getitem__" overrides class "ExtensionArray" in an incompatible manner +   Return type mismatch: base method returns type "ExtensionArray", override returns type "Unknown | ArrowExtensionArray | NAType | NaTType | Timestamp | Timedelta" +     Type "Unknown | ArrowExtensionArray | NAType | NaTType | Timestamp | Timedelta" is not assignable to type "ExtensionArray" +       "NAType" is not assignable to "ExtensionArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/arrow/array.py:749:32 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:752:26 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:765:20 - error: Type "Unknown | tuple[Unknown, ...]" is not assignable to declared type "PositionalIndexer" +   Type "Unknown | tuple[Unknown, ...]" is not assignable to type "PositionalIndexer" +     Type "tuple[Unknown, ...]" is not assignable to type "PositionalIndexer" +       "tuple[Unknown, ...]" is not assignable to "int" +       "tuple[Unknown, ...]" is not assignable to "integer[Any]" +       "tuple[Unknown, ...]" is not assignable to "slice[Any, Any, Any]" +       "tuple[Unknown, ...]" is not assignable to "list[int]" +       "tuple[Unknown, ...]" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportAssignmentType) + /pandas/core/arrays/arrow/array.py:793:30 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:803:18 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:806:18 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:819:25 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:820:25 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:861:12 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:862:45 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:862:48 - error: "bit_wise_not" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:863:14 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:863:57 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:869:45 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:869:48 - error: "invert" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:873:45 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:873:48 - error: "negate_checked" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:874:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:883:41 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:883:44 - error: "abs_checked" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:897:30 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:907:20 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:907:23 - error: "lib" is not a known attribute of module "pyarrow" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:910:26 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:910:52 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:913:21 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:913:54 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:914:21 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:914:54 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:918:30 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:918:52 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:922:28 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:924:34 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:924:56 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:927:49 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:928:41 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:932:26 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:932:48 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:936:25 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:936:28 - error: "lib" is not a known attribute of module "pyarrow" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:936:58 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:936:61 - error: "lib" is not a known attribute of module "pyarrow" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:945:30 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:945:52 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:946:30 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:946:33 - error: "if_else" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:969:13 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:970:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:971:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:974:23 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:977:34 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:977:37 - error: "binary_join_element_wise" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:979:34 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:979:37 - error: "binary_join_element_wise" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:980:24 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:984:49 - error: "result" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:988:24 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:990:31 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:990:34 - error: "if_else" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:990:42 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:990:45 - error: "less" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:991:26 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:991:29 - error: "binary_repeat" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:994:13 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:995:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:996:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1000:20 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1002:27 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1002:30 - error: "if_else" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1002:38 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1002:41 - error: "less" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1003:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1003:25 - error: "binary_repeat" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1006:31 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1007:17 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1007:20 - error: "is_null" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1015:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1015:47 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1021:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1028:12 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1032:17 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1033:20 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1057:17 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1058:20 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1073:20 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1073:23 - error: "is_nan" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1074:19 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1074:22 - error: "replace_with_mask" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1074:52 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1116:24 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1116:27 - error: "any" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1116:31 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1116:34 - error: "is_nan" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1284:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1284:21 - error: "array_sort_indices" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1300:12 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1301:30 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1303:25 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1304:16 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1332:41 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1332:44 - error: "drop_null" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1350:25 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1350:28 - error: "fill_null_forward" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1354:25 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1354:28 - error: "fill_null_backward" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1356:20 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1394:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1400:17 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1402:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1416:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1416:21 - error: "is_in" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1416:53 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1447:12 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1459:17 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1466:30 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1502:41 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1502:44 - error: "round" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1520:35 - error: "ArrowDtype" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1523:17 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1523:52 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1528:16 - error: No overloads for "searchsorted" match the provided arguments (reportCallIssue) + /pandas/core/arrays/arrow/array.py:1528:81 - error: Argument of type "NumpySorter" cannot be assigned to parameter "sorter" of type "_ArrayLikeInt_co | None" in function "searchsorted" +   Type "NumpySorter" is not assignable to type "_ArrayLikeInt_co | None" +     Type "NBitBase" is not assignable to type "_ArrayLikeInt_co | None" +       "NBitBase" is incompatible with protocol "_SupportsArray[dtype[numpy.bool[builtins.bool] | integer[Any]]]" +         "__array__" is not present +       "NBitBase" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[numpy.bool[builtins.bool] | integer[Any]]]]" +         "__len__" is not present +         "__getitem__" is not present +         "__contains__" is not present + ... (reportArgumentType) + /pandas/core/arrays/arrow/array.py:1530:9 - error: Method "take" overrides class "ExtensionArray" in an incompatible manner +   Parameter "allow_fill" is missing in override +   Parameter "fill_value" is missing in override (reportIncompatibleMethodOverride) + /pandas/core/arrays/arrow/array.py:1601:33 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1639:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1651:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1672:12 - error: Invalid conditional operand of type "NDArray[bool_] | Unknown | NDFrame | Literal[True]" +   Method __bool__ for type "NDFrame" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) + /pandas/core/arrays/arrow/array.py:1672:49 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1678:12 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1678:46 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1685:14 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1685:43 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1691:14 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1692:16 - error: Invalid conditional operand of type "bool | NDArray[bool_] | NDFrame" +   Method __bool__ for type "NDFrame" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) + /pandas/core/arrays/arrow/array.py:1696:13 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1713:25 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1721:41 - error: Cannot access attribute "_pa_array" for class "NAType" +   Attribute "_pa_array" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1721:41 - error: Cannot access attribute "_pa_array" for class "NaTType" +   Attribute "_pa_array" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1721:41 - error: Cannot access attribute "_pa_array" for class "Timestamp" +   Attribute "_pa_array" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1721:41 - error: Cannot access attribute "_pa_array" for class "Timedelta" +   Attribute "_pa_array" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1739:12 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1739:45 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1741:14 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1743:14 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1745:27 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1747:27 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1748:31 - error: "ArrowDtype" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1766:21 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1766:24 - error: "unique" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1823:24 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1826:15 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1868:32 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1877:13 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1878:15 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1882:52 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1884:52 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1888:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1920:23 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1920:26 - error: "is_null" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1921:16 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1921:19 - error: "all" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1921:35 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1925:32 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1928:32 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1928:35 - error: "fill_null_forward" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1929:32 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1929:35 - error: "fill_null_backward" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1933:23 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1934:24 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1941:25 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1943:25 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1943:28 - error: "if_else" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1977:13 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1978:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1979:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1980:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1985:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1986:51 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1990:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1990:25 - error: "not_equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:1993:48 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1994:50 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1996:59 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:1999:54 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2001:54 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2005:17 - error: Function declaration "pyarrow_meth" is obscured by a declaration of the same name (reportRedeclaration) + /pandas/core/arrays/arrow/array.py:2011:13 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2011:44 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2069:28 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2077:46 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2079:43 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2082:38 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2084:38 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2086:39 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2087:34 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2088:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2090:18 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2091:38 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2092:18 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2094:38 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2097:38 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2128:31 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2139:38 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2140:26 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2142:26 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2148:12 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2148:15 - error: "is_null" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2150:36 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2227:34 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2233:17 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2236:20 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2242:52 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2261:29 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2262:20 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2284:27 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2286:27 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2287:22 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2295:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2295:21 - error: "rank" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2303:20 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2303:23 - error: "is_null" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2304:20 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2305:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2305:25 - error: "if_else" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2308:26 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2308:29 - error: "rank" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2314:42 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2315:38 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2316:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2316:25 - error: "divide" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2316:32 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2316:35 - error: "add" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2319:20 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2320:38 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2322:27 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2322:30 - error: "max" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2324:27 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2324:30 - error: "count" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2325:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2325:25 - error: "divide" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2329:9 - error: Method "_rank" overrides class "ExtensionArray" in an incompatible manner +   Return type mismatch: base method returns type "NDArray[float64]", override returns type "ArrowExtensionArray" +     "ArrowExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[float64]]" (reportIncompatibleMethodOverride) + /pandas/core/arrays/arrow/array.py:2367:12 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2372:34 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2374:34 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2376:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2376:21 - error: "quantile" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2378:12 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2379:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2380:26 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2380:29 - error: "floor" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2383:38 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2385:38 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2407:12 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2410:44 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2412:44 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2421:15 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2421:18 - error: "value_counts" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2423:13 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2423:16 - error: "equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2423:43 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2423:46 - error: "max" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2426:12 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2429:40 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2429:43 - error: "array_sort_indices" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2467:24 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2468:24 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2468:27 - error: "fill_null_backward" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2468:46 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2468:49 - error: "pairwise_diff_checked" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2469:27 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2470:23 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2470:26 - error: "add_checked" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2470:51 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2470:54 - error: "divide_checked" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2471:45 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2471:48 - error: "coalesce" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2494:60 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2520:20 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2520:23 - error: "if_else" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2521:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2525:35 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2525:45 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2527:36 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2538:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2564:37 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "ExtensionArray" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "str" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "bytes" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "date" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "datetime" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "timedelta" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "datetime64[date | int | None]" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "timedelta64[timedelta | int | None]" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "bool" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "int" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "float" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "Timestamp" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "Timedelta" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "Interval[Unknown]" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "complex" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "integer[Any]" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "floating[Any]" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2566:41 - error: Cannot access attribute "combine_chunks" for class "complexfloating[Any, Any]" +   Attribute "combine_chunks" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2567:31 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2567:52 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2572:20 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2572:23 - error: "replace_with_mask" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2573:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2575:37 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2577:39 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "ExtensionArray" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "str" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "bytes" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "date" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "datetime" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "timedelta" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "datetime64[date | int | None]" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "timedelta64[timedelta | int | None]" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "bool" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "int" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "float" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "Timestamp" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "Timedelta" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "Interval[Unknown]" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "complex" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "integer[Any]" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "floating[Any]" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2578:41 - error: Cannot access attribute "as_py" for class "complexfloating[Any, Any]" +   Attribute "as_py" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2582:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2639:12 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2641:14 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2661:25 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2688:41 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2688:44 - error: "count_substring_regex" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2695:41 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2695:44 - error: "binary_repeat" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2698:12 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2698:55 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2702:22 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2702:52 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2702:61 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2705:41 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2705:44 - error: "binary_join" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2710:41 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2715:41 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2720:41 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2725:41 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2733:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2733:21 - error: "extract_regex" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2736:47 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2736:50 - error: "struct_field" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2740:31 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2740:34 - error: "struct_field" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2746:41 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2751:17 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2751:20 - error: "split_pattern" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2752:28 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2752:31 - error: "list_flatten" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2754:39 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2754:42 - error: "compute" is not a known attribute of module "pyarrow" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2755:19 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2755:22 - error: "list_value_length" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2758:19 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2758:22 - error: "index_in" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2769:43 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2775:41 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2780:41 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2785:41 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2790:41 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2802:26 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2802:29 - error: "utf8_split_whitespace" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2804:44 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2804:47 - error: "split_pattern_regex" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2806:44 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2806:47 - error: "split_pattern" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2814:17 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2814:20 - error: "utf8_split_whitespace" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2817:13 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2817:16 - error: "split_pattern" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2823:41 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2830:41 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2837:27 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2842:13 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2845:22 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2852:13 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2855:22 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2862:13 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2865:22 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2872:13 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2875:22 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2882:13 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2885:22 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2892:13 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2895:22 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2902:13 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2905:22 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2916:18 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2920:12 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2924:18 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2929:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2929:21 - error: "year" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2934:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2934:21 - error: "day" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2939:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2939:21 - error: "day_of_week" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2947:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2947:21 - error: "day_of_year" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2954:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2954:21 - error: "hour" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2958:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2958:21 - error: "iso_calendar" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2963:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2963:21 - error: "is_leap_year" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2968:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2968:21 - error: "equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2968:27 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2968:30 - error: "day" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2973:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2973:21 - error: "equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2974:13 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2974:16 - error: "days_between" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2975:17 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2975:20 - error: "floor_temporal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2976:17 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2976:20 - error: "ceil_temporal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2984:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2984:21 - error: "and_" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2985:13 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2985:16 - error: "equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2985:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2985:25 - error: "month" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2986:13 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2986:16 - error: "equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2986:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2986:25 - error: "day" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2992:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2992:21 - error: "and_" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2993:13 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2993:16 - error: "equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2993:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2993:25 - error: "month" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2994:13 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2994:16 - error: "equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:2994:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:2994:25 - error: "day" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3000:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3000:21 - error: "equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3001:13 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3001:16 - error: "floor_temporal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3002:13 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3002:16 - error: "floor_temporal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3008:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3008:21 - error: "equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3009:13 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3009:16 - error: "days_between" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3010:17 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3010:20 - error: "floor_temporal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3011:17 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3011:20 - error: "ceil_temporal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3019:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3019:21 - error: "days_between" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3020:13 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3020:16 - error: "floor_temporal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3021:13 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3021:16 - error: "ceil_temporal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3030:14 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3030:17 - error: "microsecond" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3031:20 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3031:23 - error: "multiply" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3031:32 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3031:35 - error: "millisecond" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3032:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3032:21 - error: "add" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3037:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3037:21 - error: "minute" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3042:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3042:21 - error: "month" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3047:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3047:21 - error: "nanosecond" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3052:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3052:21 - error: "quarter" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3057:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3057:21 - error: "second" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3062:38 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3072:38 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3084:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3084:21 - error: "floor_temporal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3088:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3088:21 - error: "strftime" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3125:35 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3156:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3156:21 - error: "strftime" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3162:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3162:21 - error: "strftime" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3168:12 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3197:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3197:25 - error: "local_timestamp" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3199:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3199:25 - error: "assume_timezone" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/arrow/array.py:3210:38 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/arrow/array.py:3225:11 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) +/pandas/core/arrays/arrow/extension_types.py + /pandas/core/arrays/arrow/extension_types.py:171:13 - error: "_hotfix_installed" is not a known attribute of module "pyarrow" (reportAttributeAccessIssue) +/pandas/core/arrays/base.py + /pandas/core/arrays/base.py:517:12 - error: Invalid conditional operand of type "bool | NDArray[bool_] | NDFrame" +   Method __bool__ for type "NDFrame" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) + /pandas/core/arrays/base.py:943:16 - error: Type "NDArray[Any] | Any | int" is not assignable to return type "int" +   Type "NDArray[Any] | Any | int" is not assignable to type "int" +     "ndarray[_AnyShape, dtype[Any]]" is not assignable to "int" (reportReturnType) + /pandas/core/arrays/base.py:977:16 - error: Type "NDArray[Any] | Any | int" is not assignable to return type "int" +   Type "NDArray[Any] | Any | int" is not assignable to type "int" +     "ndarray[_AnyShape, dtype[Any]]" is not assignable to "int" (reportReturnType) + /pandas/core/arrays/base.py:1364:12 - error: Invalid conditional operand of type "bool | NDArray[bool_] | NDFrame" +   Method __bool__ for type "NDFrame" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) + /pandas/core/arrays/base.py:1462:16 - error: No overloads for "searchsorted" match the provided arguments (reportCallIssue) + /pandas/core/arrays/base.py:1462:58 - error: Argument of type "NumpySorter" cannot be assigned to parameter "sorter" of type "_ArrayLikeInt_co | None" in function "searchsorted" +   Type "NumpySorter" is not assignable to type "_ArrayLikeInt_co | None" +     Type "NBitBase" is not assignable to type "_ArrayLikeInt_co | None" +       "NBitBase" is incompatible with protocol "_SupportsArray[dtype[numpy.bool[builtins.bool] | integer[Any]]]" +         "__array__" is not present +       "NBitBase" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[numpy.bool[builtins.bool] | integer[Any]]]]" +         "__len__" is not present +         "__getitem__" is not present +         "__contains__" is not present + ... (reportArgumentType) + /pandas/core/arrays/base.py:1514:25 - error: Operator "|" not supported for types "ExtensionArray | ndarray[_AnyShape, dtype[Any]]" and "NDArray[numpy.bool[builtins.bool]] | Any | Unknown" +   Operator "|" not supported for types "ExtensionArray" and "NDArray[numpy.bool[builtins.bool]]" (reportOperatorIssue) +/pandas/core/arrays/boolean.py + /pandas/core/arrays/boolean.py:88:5 - error: "name" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/arrays/boolean.py:259:29 - error: "shape" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/arrays/boolean.py:262:20 - error: Type "tuple[ndarray[Unknown, Unknown] | _Array1D[Any], _Array[Unknown | tuple[int], Any] | NDArray[bool_] | ndarray[Unknown, Unknown] | NDArray[Any] | None]" is not assignable to return type "tuple[ndarray[_AnyShape, dtype[Any]], ndarray[_AnyShape, dtype[Any]]]" +   Type "_Array[Unknown | tuple[int], Any] | NDArray[bool_] | ndarray[Unknown, Unknown] | NDArray[Any] | None" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "None" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportReturnType) + /pandas/core/arrays/boolean.py:385:9 - error: Method "_coerce_to_array" overrides class "BaseMaskedArray" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "values", override parameter is named "value" (reportIncompatibleMethodOverride) +/pandas/core/arrays/categorical.py + /pandas/core/arrays/categorical.py:373:5 - error: "_dtype" overrides symbol of same name in class "NDArrayBacked" +   Variable is mutable so its type is invariant +     Override type "CategoricalDtype" is not the same as base type "DtypeObj" (reportIncompatibleVariableOverride) + /pandas/core/arrays/categorical.py:456:40 - error: Cannot access attribute "_pa_array" for class "ExtensionArray" +   Attribute "_pa_array" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:456:40 - error: Cannot access attribute "_pa_array" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "_pa_array" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:458:49 - error: Cannot access attribute "_pa_array" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "_pa_array" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:458:49 - error: Cannot access attribute "_pa_array" for class "ExtensionArray" +   Attribute "_pa_array" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:494:47 - error: Cannot access attribute "_codes" for class "RangeIndex" +   Attribute "_codes" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:494:47 - error: Cannot access attribute "_codes" for class "NDArray[Any]" +   Attribute "_codes" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:494:47 - error: Cannot access attribute "_codes" for class "ExtensionArray" +   Attribute "_codes" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:494:47 - error: Cannot access attribute "_codes" for class "Index" +   Attribute "_codes" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:700:23 - error: Cannot access attribute "is_monotonic_increasing" for class "float" +   Attribute "is_monotonic_increasing" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:700:23 - error: Cannot access attribute "is_monotonic_increasing" for class "Number" +   Attribute "is_monotonic_increasing" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:700:23 - error: Cannot access attribute "is_monotonic_increasing" for class "number[Any, int | float | complex]" +   Attribute "is_monotonic_increasing" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:700:23 - error: Cannot access attribute "is_monotonic_increasing" for class "int" +   Attribute "is_monotonic_increasing" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:700:23 - error: Cannot access attribute "is_monotonic_increasing" for class "ArrowExtensionArray" +   Attribute "is_monotonic_increasing" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:700:23 - error: Cannot access attribute "is_monotonic_increasing" for class "NAType" +   Attribute "is_monotonic_increasing" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:700:23 - error: Cannot access attribute "is_monotonic_increasing" for class "NaTType" +   Attribute "is_monotonic_increasing" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:700:23 - error: Cannot access attribute "is_monotonic_increasing" for class "Timestamp" +   Attribute "is_monotonic_increasing" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:700:23 - error: Cannot access attribute "is_monotonic_increasing" for class "Timedelta" +   Attribute "is_monotonic_increasing" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:700:23 - error: Cannot access attribute "is_monotonic_increasing" for class "BooleanArray" +   Attribute "is_monotonic_increasing" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:700:23 - error: Cannot access attribute "is_monotonic_increasing" for class "FloatingArray" +   Attribute "is_monotonic_increasing" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:700:23 - error: Cannot access attribute "is_monotonic_increasing" for class "IntegerArray" +   Attribute "is_monotonic_increasing" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:700:23 - error: Cannot access attribute "is_monotonic_increasing" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "is_monotonic_increasing" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:700:23 - error: Cannot access attribute "is_monotonic_increasing" for class "ExtensionArray" +   Attribute "is_monotonic_increasing" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:700:23 - error: Cannot access attribute "is_monotonic_increasing" for class "ndarray[_AnyShape, dtype[signedinteger[_64Bit]]]" +   Attribute "is_monotonic_increasing" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:700:23 - error: Cannot access attribute "is_monotonic_increasing" for class "NDArray[bool_]" +   Attribute "is_monotonic_increasing" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:702:29 - error: Cannot access attribute "copy" for class "float" +   Attribute "copy" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:702:29 - error: Cannot access attribute "copy" for class "Number" +   Attribute "copy" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:702:29 - error: Cannot access attribute "copy" for class "int" +   Attribute "copy" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:702:29 - error: Cannot access attribute "copy" for class "NAType" +   Attribute "copy" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:702:29 - error: Cannot access attribute "copy" for class "NaTType" +   Attribute "copy" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:702:29 - error: Cannot access attribute "copy" for class "Timestamp" +   Attribute "copy" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:702:29 - error: Cannot access attribute "copy" for class "Timedelta" +   Attribute "copy" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:703:31 - error: Cannot access attribute "sort_values" for class "float" +   Attribute "sort_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:703:31 - error: Cannot access attribute "sort_values" for class "Number" +   Attribute "sort_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:703:31 - error: Cannot access attribute "sort_values" for class "number[Any, int | float | complex]" +   Attribute "sort_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:703:31 - error: Cannot access attribute "sort_values" for class "int" +   Attribute "sort_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:703:31 - error: Cannot access attribute "sort_values" for class "ArrowExtensionArray" +   Attribute "sort_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:703:31 - error: Cannot access attribute "sort_values" for class "NAType" +   Attribute "sort_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:703:31 - error: Cannot access attribute "sort_values" for class "NaTType" +   Attribute "sort_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:703:31 - error: Cannot access attribute "sort_values" for class "Timestamp" +   Attribute "sort_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:703:31 - error: Cannot access attribute "sort_values" for class "Timedelta" +   Attribute "sort_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:703:31 - error: Cannot access attribute "sort_values" for class "BooleanArray" +   Attribute "sort_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:703:31 - error: Cannot access attribute "sort_values" for class "FloatingArray" +   Attribute "sort_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:703:31 - error: Cannot access attribute "sort_values" for class "IntegerArray" +   Attribute "sort_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:703:31 - error: Cannot access attribute "sort_values" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "sort_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:703:31 - error: Cannot access attribute "sort_values" for class "ExtensionArray" +   Attribute "sort_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:703:31 - error: Cannot access attribute "sort_values" for class "ndarray[_AnyShape, dtype[signedinteger[_64Bit]]]" +   Attribute "sort_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:703:31 - error: Cannot access attribute "sort_values" for class "NDArray[bool_]" +   Attribute "sort_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:1398:62 - error: Cannot access attribute "dtype" for class "list[Unknown]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:1655:9 - error: Method "_validate_scalar" overrides class "NDArrayBackedExtensionArray" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "fill_value" (reportIncompatibleMethodOverride) + /pandas/core/arrays/categorical.py:2229:9 - error: Method "_box_func" overrides class "NDArrayBackedExtensionArray" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "i" (reportIncompatibleMethodOverride) + /pandas/core/arrays/categorical.py:2611:9 - error: Method "_concat_same_type" overrides class "NDArrayBackedExtensionArray" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Sequence[NDArrayBackedExtensionArray]", override parameter is type "Sequence[Categorical]" +     "Sequence[NDArrayBackedExtensionArray]" is not assignable to "Sequence[Categorical]" +       Type parameter "_T_co@Sequence" is covariant, but "NDArrayBackedExtensionArray" is not a subtype of "Categorical" +         "NDArrayBackedExtensionArray" is not assignable to "Categorical" (reportIncompatibleMethodOverride) + /pandas/core/arrays/categorical.py:2638:16 - error: Type "Categorical" is not assignable to return type "Self@Categorical" +   Type "Categorical" is not assignable to type "Self@Categorical" (reportReturnType) + /pandas/core/arrays/categorical.py:3021:9 - error: Method "_delegate_method" overrides class "PandasDelegate" in an incompatible manner +   Return type mismatch: base method returns type "NoReturn", override returns type "Series | None" +     Type "Series | None" is not assignable to type "NoReturn" +       Type "Series" is not assignable to type "NoReturn" (reportIncompatibleMethodOverride) + /pandas/core/arrays/categorical.py:3142:42 - error: Cannot access attribute "categories" for class "ExtensionArray" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:3142:42 - error: Cannot access attribute "categories" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:3142:68 - error: Cannot access attribute "codes" for class "ExtensionArray" +   Attribute "codes" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:3142:68 - error: Cannot access attribute "codes" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "codes" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:3146:24 - error: Cannot access attribute "codes" for class "ExtensionArray" +   Attribute "codes" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/categorical.py:3146:24 - error: Cannot access attribute "codes" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "codes" is unknown (reportAttributeAccessIssue) +/pandas/core/arrays/datetimelike.py + /pandas/core/arrays/datetimelike.py:463:9 - error: Method "astype" overrides class "ExtensionArray" in an incompatible manner +   Return type mismatch: base method returns type "ndarray[_AnyShape, dtype[Any]]", override returns type "NDArray[object_] | ndarray[tuple[int, ...], dtype[Any]] | ExtensionArray | NDArray[int64] | NDArray[Any]" +     Type "NDArray[object_] | ndarray[tuple[int, ...], dtype[Any]] | ExtensionArray | NDArray[int64] | NDArray[Any]" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +       "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportIncompatibleMethodOverride) + /pandas/core/arrays/datetimelike.py:532:9 - error: Method "view" overrides class "NDArrayBackedExtensionArray" in an incompatible manner +   Override does not handle all overloads of base method (reportIncompatibleMethodOverride) + /pandas/core/arrays/datetimelike.py:684:46 - error: Cannot access attribute "dtype" for class "list[Unknown]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/datetimelike.py:714:22 - error: Cannot access attribute "categories" for class "DatetimeLikeArrayMixin*" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/datetimelike.py:714:22 - error: Cannot access attribute "categories" for class "ExtensionArray" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/datetimelike.py:714:22 - error: Cannot access attribute "categories" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/datetimelike.py:716:31 - error: Cannot access attribute "_internal_get_values" for class "DatetimeLikeArrayMixin*" +   Attribute "_internal_get_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/datetimelike.py:716:31 - error: Cannot access attribute "_internal_get_values" for class "ExtensionArray" +   Attribute "_internal_get_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/datetimelike.py:716:31 - error: Cannot access attribute "_internal_get_values" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "_internal_get_values" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/datetimelike.py:2028:9 - error: "freq" overrides symbol of same name in class "DatetimeLikeArrayMixin" +   Type "property" is not assignable to type "BaseOffset | None" +     "property" is not assignable to "BaseOffset" +     "property" is not assignable to "None" (reportIncompatibleVariableOverride) + /pandas/core/arrays/datetimelike.py:2375:9 - error: Method "_concat_same_type" overrides class "NDArrayBackedExtensionArray" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Sequence[NDArrayBackedExtensionArray]", override parameter is type "Sequence[TimelikeOps]" +     "Sequence[NDArrayBackedExtensionArray]" is not assignable to "Sequence[TimelikeOps]" +       Type parameter "_T_co@Sequence" is covariant, but "NDArrayBackedExtensionArray" is not a subtype of "TimelikeOps" +         "NDArrayBackedExtensionArray" is not assignable to "TimelikeOps" (reportIncompatibleMethodOverride) +/pandas/core/arrays/datetimes.py + /pandas/core/arrays/datetimes.py:174:7 - error: Base classes for class "DatetimeArray" define variable "freq" in incompatible way (reportIncompatibleVariableOverride) + /pandas/core/arrays/datetimes.py:295:5 - error: "_dtype" overrides symbol of same name in class "NDArrayBacked" +   Variable is mutable so its type is invariant +     Override type "dtype[datetime64[date | int | None]] | DatetimeTZDtype" is not the same as base type "DtypeObj" (reportIncompatibleVariableOverride) + /pandas/core/arrays/datetimes.py:456:49 - error: Argument of type "NaTType | Timestamp | Unknown" cannot be assigned to parameter "start" of type "_TimestampNoneT1@_maybe_normalize_endpoints" in function "_maybe_normalize_endpoints" +   Type "NaTType | Timestamp | Unknown" is not assignable to constrained type variable "_TimestampNoneT1" (reportArgumentType) + /pandas/core/arrays/datetimes.py:456:56 - error: Argument of type "NaTType | Timestamp | Unknown" cannot be assigned to parameter "end" of type "_TimestampNoneT2@_maybe_normalize_endpoints" in function "_maybe_normalize_endpoints" +   Type "NaTType | Timestamp | Unknown" is not assignable to constrained type variable "_TimestampNoneT2" (reportArgumentType) + /pandas/core/arrays/datetimes.py:483:66 - error: "tz" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/arrays/datetimes.py:501:51 - error: Argument of type "TimeAmbiguous" cannot be assigned to parameter "ambiguous" of type "bool | Literal['raise', 'NaT']" in function "tz_localize" +   Type "TimeAmbiguous" is not assignable to type "bool | Literal['raise', 'NaT']" +     Type "Literal['infer']" is not assignable to type "bool | Literal['raise', 'NaT']" +       "Literal['infer']" is not assignable to "bool" +       "Literal['infer']" is not assignable to type "Literal['raise']" +       "Literal['infer']" is not assignable to type "Literal['NaT']" (reportArgumentType) + /pandas/core/arrays/datetimes.py:503:47 - error: Argument of type "TimeAmbiguous" cannot be assigned to parameter "ambiguous" of type "bool | Literal['raise', 'NaT']" in function "tz_localize" +   Type "TimeAmbiguous" is not assignable to type "bool | Literal['raise', 'NaT']" +     Type "Literal['infer']" is not assignable to type "bool | Literal['raise', 'NaT']" +       "Literal['infer']" is not assignable to "bool" +       "Literal['infer']" is not assignable to type "Literal['raise']" +       "Literal['infer']" is not assignable to type "Literal['NaT']" (reportArgumentType) + /pandas/core/arrays/datetimes.py:511:36 - error: "_value" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/arrays/datetimes.py:511:51 - error: "_value" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/arrays/datetimes.py:512:25 - error: "_value" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/arrays/datetimes.py:523:34 - error: Argument of type "Timestamp | Unknown | None" cannot be assigned to parameter "ts_input" of type "integer[Any] | float | str | date | datetime | datetime64[date | int | None]" in function "__new__" +   Type "Timestamp | Unknown | None" is not assignable to type "integer[Any] | float | str | date | datetime | datetime64[date | int | None]" +     Type "None" is not assignable to type "integer[Any] | float | str | date | datetime | datetime64[date | int | None]" +       "None" is not assignable to "integer[Any]" +       "None" is not assignable to "float" +       "None" is not assignable to "str" +       "None" is not assignable to "date" +       "None" is not assignable to "datetime" +       "None" is not assignable to "datetime64[date | int | None]" (reportArgumentType) + /pandas/core/arrays/datetimes.py:524:32 - error: Argument of type "Timestamp | Unknown | None" cannot be assigned to parameter "ts_input" of type "integer[Any] | float | str | date | datetime | datetime64[date | int | None]" in function "__new__" +   Type "Timestamp | Unknown | None" is not assignable to type "integer[Any] | float | str | date | datetime | datetime64[date | int | None]" +     Type "None" is not assignable to type "integer[Any] | float | str | date | datetime | datetime64[date | int | None]" +       "None" is not assignable to "integer[Any]" +       "None" is not assignable to "float" +       "None" is not assignable to "str" +       "None" is not assignable to "date" +       "None" is not assignable to "datetime" +       "None" is not assignable to "datetime64[date | int | None]" (reportArgumentType) + /pandas/core/arrays/datetimes.py:543:20 - error: No overloads for "__new__" match the provided arguments (reportCallIssue) + /pandas/core/arrays/datetimes.py:543:34 - error: Argument of type "int | Unknown | int64" cannot be assigned to parameter "value" of type "bytes | str | date | None" in function "__new__" +   Type "int | Unknown | int64" is not assignable to type "bytes | str | date | None" +     Type "int" is not assignable to type "bytes | str | date | None" +       "int" is not assignable to "bytes" +       "int" is not assignable to "str" +       "int" is not assignable to "date" +       "int" is not assignable to "None" (reportArgumentType) + /pandas/core/arrays/datetimes.py:543:40 - error: Cannot access attribute "_value" for class "Period" +   Attribute "_value" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/datetimes.py:545:20 - error: Type "datetime64[date | int | None] | timedelta64[timedelta | int | None] | Unknown" is not assignable to return type "datetime64[date | int | None]" +   Type "datetime64[date | int | None] | timedelta64[timedelta | int | None] | Unknown" is not assignable to type "datetime64[date | int | None]" +     "timedelta64[timedelta | int | None]" is not assignable to "datetime64[date | int | None]" (reportReturnType) + /pandas/core/arrays/datetimes.py:545:26 - error: Cannot access attribute "as_unit" for class "Period" +   Attribute "as_unit" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/datetimes.py:827:26 - error: Operator "+" not supported for types "Self@DatetimeArray | NDArray[object_] | ndarray[tuple[int, ...], dtype[Any]] | ExtensionArray | NDArray[int64] | NDArray[Any] | PeriodArray" and "BaseOffset" +   Operator "+" not supported for types "ExtensionArray" and "BaseOffset" +   Operator "+" not supported for types "NDArray[int64]" and "BaseOffset" (reportOperatorIssue) + /pandas/core/arrays/datetimes.py:1341:62 - error: Argument of type "None" cannot be assigned to parameter "fill_value" of type "int" in function "_maybe_mask_results" +   "None" is not assignable to "int" (reportArgumentType) + /pandas/core/arrays/datetimes.py:1409:62 - error: Argument of type "None" cannot be assigned to parameter "fill_value" of type "int" in function "_maybe_mask_results" +   "None" is not assignable to "int" (reportArgumentType) + /pandas/core/arrays/datetimes.py:2397:16 - error: Type "Timedelta | NaTType | TimedeltaArray" is not assignable to return type "Timedelta" +   Type "Timedelta | NaTType | TimedeltaArray" is not assignable to type "Timedelta" +     "NaTType" is not assignable to "Timedelta" (reportReturnType) +/pandas/core/arrays/floating.py + /pandas/core/arrays/floating.py:178:5 - error: "name" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/arrays/floating.py:186:5 - error: "name" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) +/pandas/core/arrays/integer.py + /pandas/core/arrays/integer.py:228:5 - error: "name" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/arrays/integer.py:236:5 - error: "name" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/arrays/integer.py:244:5 - error: "name" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/arrays/integer.py:252:5 - error: "name" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/arrays/integer.py:260:5 - error: "name" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/arrays/integer.py:268:5 - error: "name" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/arrays/integer.py:276:5 - error: "name" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/arrays/integer.py:284:5 - error: "name" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) +/pandas/core/arrays/interval.py + /pandas/core/arrays/interval.py:293:17 - error: Argument of type "ArrayLike" cannot be assigned to parameter "intervals" of type "ndarray[_AnyShape, dtype[Any]]" in function "intervals_to_interval_bounds" +   Type "ArrayLike" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/arrays/interval.py:393:77 - error: Cannot access attribute "tz" for class "Index" +   Attribute "tz" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/interval.py:396:43 - error: Cannot access attribute "tz" for class "Index" +   Attribute "tz" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/interval.py:399:55 - error: Cannot access attribute "unit" for class "Index" +   Attribute "unit" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/interval.py:399:69 - error: Cannot access attribute "unit" for class "Index" +   Attribute "unit" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/interval.py:401:46 - error: Cannot access attribute "_ensure_matching_resos" for class "ExtensionArray" +   Attribute "_ensure_matching_resos" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/interval.py:401:46 - error: Cannot access attribute "_ensure_matching_resos" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "_ensure_matching_resos" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/interval.py:417:52 - error: Cannot access attribute "base" for class "ExtensionArray" +   Attribute "base" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/interval.py:419:52 - error: Cannot access attribute "base" for class "ExtensionArray" +   Attribute "base" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/interval.py:438:16 - error: Type "tuple[ArrayLike | ArrowExtensionArray, ArrayLike | ArrowExtensionArray, IntervalDtype]" is not assignable to return type "tuple[IntervalSide, IntervalSide, IntervalDtype]" +   Type "ArrayLike | ArrowExtensionArray" is not assignable to type "IntervalSide" +     Type "ExtensionArray" is not assignable to type "IntervalSide" +       "ExtensionArray" is not assignable to "DatetimeArray" +       "ExtensionArray" is not assignable to "TimedeltaArray" +       "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" +   Type "ArrayLike | ArrowExtensionArray" is not assignable to type "IntervalSide" +     Type "ExtensionArray" is not assignable to type "IntervalSide" +       "ExtensionArray" is not assignable to "DatetimeArray" (reportReturnType) + /pandas/core/arrays/interval.py:838:16 - error: Invalid conditional operand of type "bool | NDArray[bool_] | NDFrame" +   Method __bool__ for type "NDFrame" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) + /pandas/core/arrays/interval.py:840:29 - error: Argument of type "DTScalarOrNaT" cannot be assigned to parameter "left" of type "_OrderableT@Interval" in function "__init__" +   Type "DTScalarOrNaT" is not assignable to constrained type variable "_OrderableT" (reportArgumentType) + /pandas/core/arrays/interval.py:840:35 - error: Argument of type "DTScalarOrNaT | IntervalSide" cannot be assigned to parameter "right" of type "_OrderableT@Interval" in function "__init__" +   Type "DTScalarOrNaT | IntervalSide" is not assignable to constrained type variable "_OrderableT" (reportArgumentType) + /pandas/core/arrays/interval.py:1055:9 - error: Method "astype" overrides class "ExtensionArray" in an incompatible manner +   Return type mismatch: base method returns type "ndarray[_AnyShape, dtype[Any]]", override returns type "IntervalArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]]" +     Type "IntervalArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +       "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportIncompatibleMethodOverride) + /pandas/core/arrays/interval.py:1121:34 - error: Cannot access attribute "closed" for class "object" +   Attribute "closed" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/interval.py:1122:40 - error: Cannot access attribute "left" for class "object" +   Attribute "left" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/interval.py:1123:41 - error: Cannot access attribute "right" for class "object" +   Attribute "right" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/interval.py:1127:9 - error: Method "_concat_same_type" overrides class "ExtensionArray" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Sequence[ExtensionArray]", override parameter is type "Sequence[IntervalArray]" +     "Sequence[ExtensionArray]" is not assignable to "Sequence[IntervalArray]" +       Type parameter "_T_co@Sequence" is covariant, but "ExtensionArray" is not a subtype of "IntervalArray" +         "ExtensionArray" is not assignable to "IntervalArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/interval.py:1147:80 - error: Argument of type "str" cannot be assigned to parameter "closed" of type "IntervalClosedType | None" in function "_ensure_simple_new_inputs" +   Type "str" is not assignable to type "IntervalClosedType | None" +     "str" is not assignable to "None" +     "str" is not assignable to type "Literal['left']" +     "str" is not assignable to type "Literal['right']" +     "str" is not assignable to type "Literal['both']" +     "str" is not assignable to type "Literal['neither']" (reportArgumentType) + /pandas/core/arrays/interval.py:1179:12 - error: Invalid conditional operand of type "bool | NDArray[bool_] | NDFrame" +   Method __bool__ for type "NDFrame" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) + /pandas/core/arrays/interval.py:1801:50 - error: Argument of type "DTScalarOrNaT | Any" cannot be assigned to parameter "right" of type "_OrderableT@Interval" in function "__init__" +   Type "DTScalarOrNaT | Any" is not assignable to constrained type variable "_OrderableT" (reportArgumentType) + /pandas/core/arrays/interval.py:2195:16 - error: Type "Unknown | list[Unknown] | tuple[Unknown, *tuple[Unknown, ...]] | DataFrame" is not assignable to return type "ArrayLike" +   Type "Unknown | list[Unknown] | tuple[Unknown, *tuple[Unknown, ...]] | DataFrame" is not assignable to type "ArrayLike" +     Type "DataFrame" is not assignable to type "ArrayLike" +       "DataFrame" is not assignable to "ExtensionArray" +       "DataFrame" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportReturnType) + /pandas/core/arrays/interval.py:2208:12 - error: Type "ndarray[_AnyShape, dtype[signedinteger[_64Bit]]] | NDArray[Any] | NDArray[Unknown] | Unknown | list[Unknown] | tuple[Unknown, *tuple[Unknown, ...]] | tuple[Unknown, ...] | range | ExtensionArray" is not assignable to return type "ArrayLike" +   Type "ndarray[_AnyShape, dtype[signedinteger[_64Bit]]] | NDArray[Any] | NDArray[Unknown] | Unknown | list[Unknown] | tuple[Unknown, *tuple[Unknown, ...]] | tuple[Unknown, ...] | range | ExtensionArray" is not assignable to type "ArrayLike" +     Type "range" is not assignable to type "ArrayLike" +       "range" is not assignable to "ExtensionArray" +       "range" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportReturnType) +/pandas/core/arrays/masked.py + /pandas/core/arrays/masked.py:156:60 - error: Argument of type "Dtype | None" cannot be assigned to parameter "dtype" of type "DtypeObj" in function "_coerce_to_array" +   Type "Dtype | None" is not assignable to type "DtypeObj" +     Type "str" is not assignable to type "DtypeObj" +       "str" is not assignable to "dtype[Any]" +       "str" is not assignable to "ExtensionDtype" (reportArgumentType) + /pandas/core/arrays/masked.py:450:57 - error: Argument of type "object" cannot be assigned to parameter "fill_value" of type "Scalar" in function "shift" +   Type "object" is not assignable to type "Scalar" +     "object" is not assignable to "str" +     "object" is not assignable to "bytes" +     "object" is not assignable to "date" +     "object" is not assignable to "datetime" +     "object" is not assignable to "timedelta" +     "object" is not assignable to "datetime64[date | int | None]" +     "object" is not assignable to "timedelta64[timedelta | int | None]" + ... (reportArgumentType) + /pandas/core/arrays/masked.py:825:16 - error: Type "NDArray[bool_] | Unknown | None" is not assignable to return type "NDArray[bool_]" +   Type "NDArray[bool_] | Unknown | None" is not assignable to type "NDArray[bool_]" +     "None" is not assignable to "ndarray[_AnyShape, dtype[bool_]]" (reportReturnType) + /pandas/core/arrays/masked.py:1036:9 - error: Method "_concat_same_type" overrides class "ExtensionArray" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Sequence[ExtensionArray]", override parameter is type "Sequence[BaseMaskedArray]" +     "Sequence[ExtensionArray]" is not assignable to "Sequence[BaseMaskedArray]" +       Type parameter "_T_co@Sequence" is covariant, but "ExtensionArray" is not a subtype of "BaseMaskedArray" +         "ExtensionArray" is not assignable to "BaseMaskedArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/masked.py:1054:9 - error: Method "take" overrides class "ExtensionArray" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "indices", override parameter is named "indexer" (reportIncompatibleMethodOverride) + /pandas/core/arrays/masked.py:1065:48 - error: Invalid conditional operand of type "bool | NDArray[bool_] | NDFrame" +   Method __bool__ for type "NDFrame" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) + /pandas/core/arrays/masked.py:1083:12 - error: Invalid conditional operand of type "bool | NDArray[bool_] | NDFrame" +   Method __bool__ for type "NDFrame" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) + /pandas/core/arrays/masked.py:1088:33 - error: Argument of type "Unknown | ndarray[_AnyShape, Unknown] | NumpyExtensionArray | Index | Series" cannot be assigned to parameter "values" of type "ndarray[_AnyShape, dtype[Any]]" in function "_simple_new" +   Type "Unknown | ndarray[_AnyShape, Unknown] | NumpyExtensionArray | Index | Series" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "Index" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/arrays/masked.py:1088:41 - error: Argument of type "Unknown | Any | ndarray[_AnyShape, Unknown] | NumpyExtensionArray | Index | Series" cannot be assigned to parameter "mask" of type "NDArray[bool_]" in function "_simple_new" +   Type "Unknown | Any | ndarray[_AnyShape, Unknown] | NumpyExtensionArray | Index | Series" is not assignable to type "NDArray[bool_]" +     "Index" is not assignable to "ndarray[_AnyShape, dtype[bool_]]" (reportArgumentType) + /pandas/core/arrays/masked.py:1117:9 - error: Method "_rank" overrides class "ExtensionArray" in an incompatible manner +   Return type mismatch: base method returns type "NDArray[float64]", override returns type "IntegerArray | FloatingArray" +     Type "IntegerArray | FloatingArray" is not assignable to type "NDArray[float64]" +       "FloatingArray" is not assignable to "ndarray[_AnyShape, dtype[float64]]" (reportIncompatibleMethodOverride) + /pandas/core/arrays/masked.py:1264:16 - error: No overloads for "searchsorted" match the provided arguments (reportCallIssue) + /pandas/core/arrays/masked.py:1264:65 - error: Argument of type "NumpySorter" cannot be assigned to parameter "sorter" of type "_ArrayLikeInt_co | None" in function "searchsorted" +   Type "NumpySorter" is not assignable to type "_ArrayLikeInt_co | None" +     Type "NBitBase" is not assignable to type "_ArrayLikeInt_co | None" +       "NBitBase" is incompatible with protocol "_SupportsArray[dtype[numpy.bool[builtins.bool] | integer[Any]]]" +         "__array__" is not present +       "NBitBase" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[numpy.bool[builtins.bool] | integer[Any]]]]" +         "__len__" is not present +         "__getitem__" is not present +         "__contains__" is not present + ... (reportArgumentType) + /pandas/core/arrays/masked.py:1464:18 - error: Cannot access attribute "dtype" for class "object" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/masked.py:1469:49 - error: Cannot access attribute "_mask" for class "object" +   Attribute "_mask" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/masked.py:1473:23 - error: Cannot access attribute "_data" for class "object" +   Attribute "_data" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/masked.py:1473:36 - error: Cannot access attribute "_mask" for class "object" +   Attribute "_mask" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/masked.py:1515:16 - error: Type "tuple[Unknown, Unknown] | FloatingArray | BooleanArray | TimedeltaArray | | IntegerArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to return type "BaseMaskedArray" +   Type "tuple[Unknown, Unknown] | FloatingArray | BooleanArray | TimedeltaArray | | IntegerArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to type "BaseMaskedArray" +     "TimedeltaArray" is not assignable to "BaseMaskedArray" (reportReturnType) + /pandas/core/arrays/masked.py:1554:52 - error: Argument of type "numpy.bool[builtins.bool] | NDArray[numpy.bool[builtins.bool]]" cannot be assigned to parameter "mask" of type "ndarray[_AnyShape, dtype[Any]]" in function "_maybe_mask_result" +   Type "numpy.bool[builtins.bool] | NDArray[numpy.bool[builtins.bool]]" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "numpy.bool[builtins.bool]" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/arrays/masked.py:1923:9 - error: Method "_groupby_op" overrides class "ExtensionArray" in an incompatible manner +   Return type mismatch: base method returns type "ArrayLike", override returns type "ndarray[_AnyShape, dtype[Any]] | tuple[Unknown, Unknown] | FloatingArray | BooleanArray | TimedeltaArray | | IntegerArray" +     Type "ndarray[_AnyShape, dtype[Any]] | tuple[Unknown, Unknown] | FloatingArray | BooleanArray | TimedeltaArray | | IntegerArray" is not assignable to type "ArrayLike" +       Type "tuple[Unknown, Unknown]" is not assignable to type "ArrayLike" +         "tuple[Unknown, Unknown]" is not assignable to "ExtensionArray" +         "tuple[Unknown, Unknown]" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportIncompatibleMethodOverride) +/pandas/core/arrays/numeric.py + /pandas/core/arrays/numeric.py:295:9 - error: Method "_coerce_to_array" overrides class "BaseMaskedArray" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "values", override parameter is named "value" (reportIncompatibleMethodOverride) +/pandas/core/arrays/numpy_.py + /pandas/core/arrays/numpy_.py:106:5 - error: "_dtype" overrides symbol of same name in class "NDArrayBacked" +   Variable is mutable so its type is invariant +     Override type "NumpyEADtype" is not the same as base type "DtypeObj" (reportIncompatibleVariableOverride) + /pandas/core/arrays/numpy_.py:271:9 - error: Method "astype" overrides class "ExtensionArray" in an incompatible manner +   Return type mismatch: base method returns type "ndarray[_AnyShape, dtype[Any]]", override returns type "NumpyExtensionArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]]" +     Type "NumpyExtensionArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +       "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportIncompatibleMethodOverride) + /pandas/core/arrays/numpy_.py:285:9 - error: Method "_validate_scalar" overrides class "NDArrayBackedExtensionArray" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "fill_value" (reportIncompatibleMethodOverride) +/pandas/core/arrays/period.py + /pandas/core/arrays/period.py:222:5 - error: "_dtype" overrides symbol of same name in class "NDArrayBacked" +   Variable is mutable so its type is invariant +     Override type "PeriodDtype" is not the same as base type "DtypeObj" (reportIncompatibleVariableOverride) + /pandas/core/arrays/period.py:362:16 - error: Type "Period | NaTType" is not assignable to return type "Period" +   Type "Period | NaTType" is not assignable to type "Period" +     "NaTType" is not assignable to "Period" (reportReturnType) + /pandas/core/arrays/period.py:829:25 - error: Cannot access attribute "_period_dtype_code" for class "BaseOffset" +   Attribute "_period_dtype_code" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/period.py:917:22 - error: Cannot access attribute "_period_dtype_code" for class "BaseOffset" +   Attribute "_period_dtype_code" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/period.py:988:16 - error: No overloads for "searchsorted" match the provided arguments (reportCallIssue) + /pandas/core/arrays/period.py:988:62 - error: Argument of type "NumpySorter" cannot be assigned to parameter "sorter" of type "_ArrayLikeInt_co | None" in function "searchsorted" +   Type "NumpySorter" is not assignable to type "_ArrayLikeInt_co | None" +     Type "NBitBase" is not assignable to type "_ArrayLikeInt_co | None" +       "NBitBase" is incompatible with protocol "_SupportsArray[dtype[numpy.bool[builtins.bool] | integer[Any]]]" +         "__array__" is not present +       "NBitBase" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[numpy.bool[builtins.bool] | integer[Any]]]]" +         "__len__" is not present +         "__getitem__" is not present +         "__contains__" is not present + ... (reportArgumentType) + /pandas/core/arrays/period.py:1033:9 - error: Method "_add_offset" overrides class "DatetimeLikeArrayMixin" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "offset", override parameter is named "other" (reportIncompatibleMethodOverride) + /pandas/core/arrays/period.py:1180:36 - error: Argument of type "Timedelta | NaTType" cannot be assigned to parameter "delta" of type "timedelta" in function "delta_to_tick" +   Type "Timedelta | NaTType" is not assignable to type "timedelta" +     "NaTType" is not assignable to "timedelta" (reportArgumentType) + /pandas/core/arrays/period.py:1361:45 - error: Cannot access attribute "freq" for class "Index" +   Attribute "freq" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/period.py:1368:32 - error: Argument of type "ExtensionDtype | dtype[Any] | Unknown | dtype[Unknown]" cannot be assigned to parameter "dtype" of type "dtype[Any]" in function "py_get_unit_from_dtype" +   Type "ExtensionDtype | dtype[Any] | Unknown | dtype[Unknown]" is not assignable to type "dtype[Any]" +     "ExtensionDtype" is not assignable to "dtype[Any]" (reportArgumentType) + /pandas/core/arrays/period.py:1370:17 - error: Cannot access attribute "_period_dtype_code" for class "BaseOffset" +   Attribute "_period_dtype_code" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/period.py:1371:35 - error: Argument of type "ArrayLike | Unknown" cannot be assigned to parameter "stamps" of type "NDArray[int64]" in function "dt64arr_to_periodarr" +   Type "ArrayLike | Unknown" is not assignable to type "NDArray[int64]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[int64]]" (reportArgumentType) + /pandas/core/arrays/period.py:1411:21 - error: Cannot access attribute "ordinal" for class "NaTType" +   Attribute "ordinal" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/period.py:1411:51 - error: Cannot access attribute "ordinal" for class "NaTType" +   Attribute "ordinal" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/period.py:1415:23 - error: Cannot access attribute "ordinal" for class "NaTType" +   Attribute "ordinal" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/period.py:1415:38 - error: Cannot access attribute "ordinal" for class "NaTType" +   Attribute "ordinal" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/period.py:1418:32 - error: Cannot access attribute "ordinal" for class "NaTType" +   Attribute "ordinal" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/period.py:1418:45 - error: Cannot access attribute "ordinal" for class "NaTType" +   Attribute "ordinal" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/period.py:1464:45 - error: Argument of type "None" cannot be assigned to parameter "freq" of type "BaseOffset" in function "freq_to_dtype_code" +   "None" is not assignable to "BaseOffset" (reportArgumentType) + /pandas/core/arrays/period.py:1469:48 - error: Type "tuple[NDArray[signedinteger[_64Bit]], BaseOffset | Unknown | None]" is not assignable to return type "tuple[ndarray[_AnyShape, dtype[Any]], BaseOffset]" +   Type "BaseOffset | Unknown | None" is not assignable to type "BaseOffset" +     "None" is not assignable to "BaseOffset" (reportReturnType) +/pandas/core/arrays/sparse/accessor.py + /pandas/core/arrays/sparse/accessor.py:76:37 - error: "array" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/arrays/sparse/accessor.py:78:9 - error: Method "_delegate_method" overrides class "PandasDelegate" in an incompatible manner +   Return type mismatch: base method returns type "NoReturn", override returns type "Series | tuple[coo_matrix[Any], list[Unknown], list[Unknown]]" +     Type "Series | tuple[coo_matrix[Any], list[Unknown], list[Unknown]]" is not assignable to type "NoReturn" +       Type "Series" is not assignable to type "NoReturn" (reportIncompatibleMethodOverride) + /pandas/core/arrays/sparse/accessor.py:240:13 - error: Argument of type "Unknown | None" cannot be assigned to parameter "ss" of type "Series" in function "sparse_series_to_coo" +   Type "Unknown | None" is not assignable to type "Series" +     "None" is not assignable to "Series" (reportArgumentType) + /pandas/core/arrays/sparse/accessor.py:271:26 - error: "array" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/arrays/sparse/accessor.py:272:32 - error: "index" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/arrays/sparse/accessor.py:273:31 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/arrays/sparse/accessor.py:391:64 - error: "items" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/arrays/sparse/accessor.py:392:29 - error: "_constructor" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/arrays/sparse/accessor.py:393:38 - error: "index" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/arrays/sparse/accessor.py:393:66 - error: "columns" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/arrays/sparse/accessor.py:430:47 - error: "dtypes" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/arrays/sparse/accessor.py:435:53 - error: "items" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/arrays/sparse/accessor.py:446:80 - error: "shape" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/arrays/sparse/accessor.py:464:75 - error: "items" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/arrays/sparse/accessor.py:465:16 - error: Type "floating[Any]" is not assignable to return type "float" +   "floating[Any]" is not assignable to "float" (reportReturnType) +/pandas/core/arrays/sparse/array.py + /pandas/core/arrays/sparse/array.py:193:16 - error: Type "SparseArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to declared type "SparseArray" +   Type "SparseArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to type "SparseArray" +     "ExtensionArray" is not assignable to "SparseArray" (reportAssignmentType) + /pandas/core/arrays/sparse/array.py:194:17 - error: Type "SparseArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to declared type "SparseArray" +   Type "SparseArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to type "SparseArray" +     "ExtensionArray" is not assignable to "SparseArray" (reportAssignmentType) + /pandas/core/arrays/sparse/array.py:827:53 - error: Argument of type "ArrayLike | object" cannot be assigned to parameter "x" of type "ArrayLike" in function "where" +   Type "ArrayLike | object" is not assignable to type "ArrayLike" +     Type "object" is not assignable to type "ArrayLike" +       "object" is incompatible with protocol "_Buffer" +         "__buffer__" is not present +       "object" is incompatible with protocol "_SupportsArray[dtype[Any]]" +         "__array__" is not present +       "object" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[Any]]]" +         "__len__" is not present + ... (reportArgumentType) + /pandas/core/arrays/sparse/array.py:841:12 - error: Invalid conditional operand of type "bool | NDArray[bool_] | NDFrame" +   Method __bool__ for type "NDFrame" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) + /pandas/core/arrays/sparse/array.py:844:34 - error: Argument of type "object" cannot be assigned to parameter "arrays_and_dtypes" of type "ArrayLike | DTypeLike" in function "result_type" +   Type "object" is not assignable to type "ArrayLike | DTypeLike" +     "object" is incompatible with protocol "_Buffer" +       "__buffer__" is not present +     "object" is incompatible with protocol "_SupportsArray[dtype[Any]]" +       "__array__" is not present +     "object" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[Any]]]" +       "__len__" is not present +       "__getitem__" is not present + ... (reportArgumentType) + /pandas/core/arrays/sparse/array.py:862:16 - error: Type "Self@SparseArray | ExtensionArray | Unknown" is not assignable to return type "Self@SparseArray" +   Type "Self@SparseArray | ExtensionArray | Unknown" is not assignable to type "Self@SparseArray" (reportReturnType) + /pandas/core/arrays/sparse/array.py:862:20 - error: Cannot access attribute "_concat_same_type" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "_concat_same_type" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/sparse/array.py:862:38 - error: Argument of type "list[Self@SparseArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]]]" cannot be assigned to parameter "to_concat" of type "Sequence[Self@SparseArray]" in function "_concat_same_type" +   Type "Self@SparseArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to type "Self@SparseArray" +   Type "Self@SparseArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to type "Self@SparseArray" (reportArgumentType) + /pandas/core/arrays/sparse/array.py:862:38 - error: Argument of type "list[Self@SparseArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]]]" cannot be assigned to parameter "to_concat" of type "Sequence[ExtensionArray]" in function "_concat_same_type" +   Type "SparseArray* | ExtensionArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to type "ExtensionArray" +     "ndarray[_AnyShape, dtype[Any]]" is not assignable to "ExtensionArray" +   Type "SparseArray* | ExtensionArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to type "ExtensionArray" +     "ndarray[_AnyShape, dtype[Any]]" is not assignable to "ExtensionArray" (reportArgumentType) + /pandas/core/arrays/sparse/array.py:1064:34 - error: Argument of type "PositionalIndexer | tuple[int | EllipsisType, ...]" cannot be assigned to parameter "indices" of type "TakeIndexer" in function "take" +   Type "PositionalIndexer | tuple[int | EllipsisType, ...]" is not assignable to type "TakeIndexer" +     Type "int" is not assignable to type "TakeIndexer" +       "int" is not assignable to "Sequence[int]" +       "int" is not assignable to "Sequence[integer[Any]]" +       "int" is not assignable to "ndarray[_AnyShape, dtype[integer[Any]]]" (reportArgumentType) + /pandas/core/arrays/sparse/array.py:1188:9 - error: Method "searchsorted" overrides class "ExtensionArray" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "v" (reportIncompatibleMethodOverride) + /pandas/core/arrays/sparse/array.py:1198:16 - error: No overloads for "searchsorted" match the provided arguments (reportCallIssue) + /pandas/core/arrays/sparse/array.py:1198:81 - error: Argument of type "NumpySorter" cannot be assigned to parameter "sorter" of type "_ArrayLikeInt_co | None" in function "searchsorted" +   Type "NumpySorter" is not assignable to type "_ArrayLikeInt_co | None" +     Type "NBitBase" is not assignable to type "_ArrayLikeInt_co | None" +       "NBitBase" is incompatible with protocol "_SupportsArray[dtype[numpy.bool[builtins.bool] | integer[Any]]]" +         "__array__" is not present +       "NBitBase" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[numpy.bool[builtins.bool] | integer[Any]]]]" +         "__len__" is not present +         "__getitem__" is not present +         "__contains__" is not present + ... (reportArgumentType) + /pandas/core/arrays/sparse/array.py:1205:9 - error: Method "_concat_same_type" overrides class "ExtensionArray" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Sequence[ExtensionArray]", override parameter is type "Sequence[SparseArray]" +     "Sequence[ExtensionArray]" is not assignable to "Sequence[SparseArray]" +       Type parameter "_T_co@Sequence" is covariant, but "ExtensionArray" is not a subtype of "SparseArray" +         "ExtensionArray" is not assignable to "SparseArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/sparse/array.py:1257:9 - error: Method "astype" overrides class "ExtensionArray" in an incompatible manner +   Return type mismatch: base method returns type "ndarray[_AnyShape, dtype[Any]]", override returns type "SparseArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]]" +     Type "SparseArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +       "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportIncompatibleMethodOverride) + /pandas/core/arrays/sparse/array.py:1534:20 - error: Type "object | Any | float | Literal[0, False]" is not assignable to return type "Scalar" +   Type "object | Any | float | Literal[0, False]" is not assignable to type "Scalar" +     Type "object" is not assignable to type "Scalar" +       "object" is not assignable to "str" +       "object" is not assignable to "bytes" +       "object" is not assignable to "date" +       "object" is not assignable to "datetime" +       "object" is not assignable to "timedelta" +       "object" is not assignable to "datetime64[date | int | None]" + ... (reportReturnType) + /pandas/core/arrays/sparse/array.py:1538:24 - error: Type "object | Any | float | Literal[0, False]" is not assignable to return type "Scalar" +   Type "object | Any | float | Literal[0, False]" is not assignable to type "Scalar" +     Type "object" is not assignable to type "Scalar" +       "object" is not assignable to "str" +       "object" is not assignable to "bytes" +       "object" is not assignable to "date" +       "object" is not assignable to "datetime" +       "object" is not assignable to "timedelta" +       "object" is not assignable to "datetime64[date | int | None]" + ... (reportReturnType) + /pandas/core/arrays/sparse/array.py:1543:24 - error: Type "object | Any | float | Literal[0, False]" is not assignable to return type "Scalar" +   Type "object | Any | float | Literal[0, False]" is not assignable to type "Scalar" +     Type "object" is not assignable to type "Scalar" +       "object" is not assignable to "str" +       "object" is not assignable to "bytes" +       "object" is not assignable to "date" +       "object" is not assignable to "datetime" +       "object" is not assignable to "timedelta" +       "object" is not assignable to "datetime64[date | int | None]" + ... (reportReturnType) + /pandas/core/arrays/sparse/array.py:1662:24 - error: Type "object | Any | float | Literal[0, False]" is not assignable to return type "Scalar" +   Type "object | Any | float | Literal[0, False]" is not assignable to type "Scalar" +     Type "object" is not assignable to type "Scalar" +       "object" is not assignable to "str" +       "object" is not assignable to "bytes" +       "object" is not assignable to "date" +       "object" is not assignable to "datetime" +       "object" is not assignable to "timedelta" +       "object" is not assignable to "datetime64[date | int | None]" + ... (reportReturnType) + /pandas/core/arrays/sparse/array.py:1666:20 - error: Type "object | Any | float | Literal[0, False]" is not assignable to return type "Scalar" +   Type "object | Any | float | Literal[0, False]" is not assignable to type "Scalar" +     Type "object" is not assignable to type "Scalar" +       "object" is not assignable to "str" +       "object" is not assignable to "bytes" +       "object" is not assignable to "date" +       "object" is not assignable to "datetime" +       "object" is not assignable to "timedelta" +       "object" is not assignable to "datetime64[date | int | None]" + ... (reportReturnType) + /pandas/core/arrays/sparse/array.py:1682:20 - error: Type "ndarray[_AnyShape, dtype[int32]]" is not assignable to return type "int" +   "ndarray[_AnyShape, dtype[int32]]" is not assignable to "int" (reportReturnType) + /pandas/core/arrays/sparse/array.py:1684:20 - error: Type "ndarray[_AnyShape, dtype[int32]]" is not assignable to return type "int" +   "ndarray[_AnyShape, dtype[int32]]" is not assignable to "int" (reportReturnType) + /pandas/core/arrays/sparse/array.py:1686:20 - error: Type "ndarray[_AnyShape, dtype[int32]]" is not assignable to return type "int" +   "ndarray[_AnyShape, dtype[int32]]" is not assignable to "int" (reportReturnType) + /pandas/core/arrays/sparse/array.py:1690:20 - error: Type "ndarray[_AnyShape, dtype[int32]]" is not assignable to return type "int" +   "ndarray[_AnyShape, dtype[int32]]" is not assignable to "int" (reportReturnType) + /pandas/core/arrays/sparse/array.py:1915:8 - error: Invalid conditional operand of type "bool | NDArray[bool_] | NDFrame" +   Method __bool__ for type "NDFrame" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) + /pandas/core/arrays/sparse/array.py:1933:24 - error: Cannot access attribute "sp_index" for class "NDArray[bool_]" +   Attribute "sp_index" is unknown (reportAttributeAccessIssue) +/pandas/core/arrays/string_.py + /pandas/core/arrays/string_.py:334:20 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_.py:335:25 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_.py:335:40 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_.py:372:5 - error: "dtype" incorrectly overrides property of same name in class "ExtensionArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_.py:646:26 - error: Argument of type "ArrayLike" cannot be assigned to parameter "values" of type "ndarray[_AnyShape, dtype[Any]] | NumpyExtensionArray" in function "__init__" +   Type "ArrayLike" is not assignable to type "ndarray[_AnyShape, dtype[Any]] | NumpyExtensionArray" +     Type "ExtensionArray" is not assignable to type "ndarray[_AnyShape, dtype[Any]] | NumpyExtensionArray" +       "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" +       "ExtensionArray" is not assignable to "NumpyExtensionArray" (reportArgumentType) + /pandas/core/arrays/string_.py:689:9 - error: Method "_validate_scalar" overrides class "NumpyExtensionArray" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "fill_value", override parameter is named "value" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_.py:749:22 - error: No overloads for "astype" match the provided arguments (reportCallIssue) + /pandas/core/arrays/string_.py:749:36 - error: Argument of type "StringDtype" cannot be assigned to parameter "dtype" of type "DTypeLike" in function "astype" +   Type "StringDtype" is not assignable to type "DTypeLike" +     "StringDtype" is not assignable to "type[Any]" +     "StringDtype" is not assignable to "dtype[Any]" +     "StringDtype" is incompatible with protocol "_SupportsDType[dtype[Any]]" +       "dtype" is not present +     "StringDtype" is not assignable to "tuple[_DTypeLikeNested, _DTypeLikeNested]" +     "StringDtype" is not assignable to "list[Any]" +     "StringDtype" is not assignable to "_DTypeDict" + ... (reportArgumentType) + /pandas/core/arrays/string_.py:756:16 - error: Type "Self@StringArray | IntegerArray | FloatingArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to return type "StringArray" +   Type "StringArray* | IntegerArray | FloatingArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to type "StringArray" +     "ExtensionArray" is not assignable to "StringArray" (reportReturnType) + /pandas/core/arrays/string_.py:756:34 - error: Argument of type "ExtensionDtype" cannot be assigned to parameter "dtype" of type "StringDtype | None" in function "__init__" +   Type "ExtensionDtype" is not assignable to type "StringDtype | None" +     "ExtensionDtype" is not assignable to "StringDtype" +     "ExtensionDtype" is not assignable to "None" (reportArgumentType) + /pandas/core/arrays/string_.py:838:16 - error: Type "ExtensionArray" is not assignable to return type "Self@StringArray" +   Type "ExtensionArray" is not assignable to type "Self@StringArray" (reportReturnType) + /pandas/core/arrays/string_.py:858:9 - error: Method "astype" overrides class "ExtensionArray" in an incompatible manner +   Return type mismatch: base method returns type "ndarray[_AnyShape, dtype[Any]]", override returns type "StringArray | IntegerArray | FloatingArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]]" +     Type "StringArray | IntegerArray | FloatingArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +       "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_.py:1134:16 - error: Type "ndarray[_AnyShape, dtype[Any]] | Unknown | Self@StringArray | ExtensionArray | BooleanArray | IntegerArray" is not assignable to return type "Self@StringArray" +   Type "ndarray[_AnyShape, dtype[Any]] | Unknown | Self@StringArray | ExtensionArray | BooleanArray | IntegerArray" is not assignable to type "Self@StringArray" (reportReturnType) +/pandas/core/arrays/string_arrow.py + /pandas/core/arrays/string_arrow.py:83:7 - error: Base classes for class "ArrowStringArray" define method "_str_pad" in incompatible way +   Return type mismatch: base method returns type "Self@ArrowStringArrayMixin", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" is not assignable to type "ArrowStringArrayMixin" +       "ExtensionArray" is not assignable to "ArrowStringArrayMixin" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:83:7 - error: Base classes for class "ArrowStringArray" define method "_str_removeprefix" in incompatible way +   Return type mismatch: base method returns type "Self@ArrowStringArrayMixin", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" is not assignable to type "ArrowStringArrayMixin" +       "ExtensionArray" is not assignable to "ArrowStringArrayMixin" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:83:7 - error: Base classes for class "ArrowStringArray" define method "_str_removesuffix" in incompatible way +   Return type mismatch: base method returns type "Self@ArrowStringArrayMixin", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" is not assignable to type "ArrowStringArrayMixin" +       "ExtensionArray" is not assignable to "ArrowStringArrayMixin" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:83:7 - error: Base classes for class "ArrowStringArray" define method "_str_join" in incompatible way +   Return type mismatch: base method returns type "Self@ArrowExtensionArray", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" is not assignable to type "ArrowExtensionArray" +       "ExtensionArray" is not assignable to "ArrowExtensionArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:83:7 - error: Base classes for class "ArrowStringArray" define method "_str_partition" in incompatible way +   Return type mismatch: base method returns type "Self@ArrowExtensionArray", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" is not assignable to type "ArrowExtensionArray" +       "ExtensionArray" is not assignable to "ArrowExtensionArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:83:7 - error: Base classes for class "ArrowStringArray" define method "_str_rpartition" in incompatible way +   Return type mismatch: base method returns type "Self@ArrowExtensionArray", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" is not assignable to type "ArrowExtensionArray" +       "ExtensionArray" is not assignable to "ArrowExtensionArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:83:7 - error: Base classes for class "ArrowStringArray" define method "_str_encode" in incompatible way +   Return type mismatch: base method returns type "Self@ArrowExtensionArray", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" is not assignable to type "ArrowExtensionArray" +       "ExtensionArray" is not assignable to "ArrowExtensionArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:83:7 - error: Base classes for class "ArrowStringArray" define method "_str_extract" in incompatible way +   Return type mismatch: base method returns type "dict[str, Unknown] | Self@ArrowExtensionArray", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]] | list[Any | list[Any]]" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]] | list[Any | list[Any]]" is not assignable to type "dict[str, Unknown] | Self@ArrowExtensionArray" +       Type "ExtensionArray" is not assignable to type "dict[str, Unknown] | Self@ArrowExtensionArray" +         "ExtensionArray" is not assignable to "ArrowExtensionArray" +         "ExtensionArray" is not assignable to "dict[str, Unknown]" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:83:7 - error: Base classes for class "ArrowStringArray" define method "_str_findall" in incompatible way +   Return type mismatch: base method returns type "Self@ArrowExtensionArray", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" is not assignable to type "ArrowExtensionArray" +       "ExtensionArray" is not assignable to "ArrowExtensionArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:83:7 - error: Base classes for class "ArrowStringArray" define method "_str_index" in incompatible way +   Return type mismatch: base method returns type "Self@ArrowExtensionArray", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" is not assignable to type "ArrowExtensionArray" +       "ExtensionArray" is not assignable to "ArrowExtensionArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:83:7 - error: Base classes for class "ArrowStringArray" define method "_str_rindex" in incompatible way +   Return type mismatch: base method returns type "Self@ArrowExtensionArray", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" is not assignable to type "ArrowExtensionArray" +       "ExtensionArray" is not assignable to "ArrowExtensionArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:83:7 - error: Base classes for class "ArrowStringArray" define method "_str_split" in incompatible way +   Parameter 3 type mismatch: base parameter is type "int | None", override parameter is type "int" +   Return type mismatch: base method returns type "Self@ArrowExtensionArray", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" +     Type "int | None" is not assignable to type "int" +       "None" is not assignable to "int" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" is not assignable to type "ArrowExtensionArray" +       "ExtensionArray" is not assignable to "ArrowExtensionArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:83:7 - error: Base classes for class "ArrowStringArray" define method "_str_rsplit" in incompatible way +   Parameter 3 type mismatch: base parameter is type "int | None", override parameter is type "int" +     Type "int | None" is not assignable to type "int" +       "None" is not assignable to "int" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:83:7 - error: Base classes for class "ArrowStringArray" define method "_str_wrap" in incompatible way +   Return type mismatch: base method returns type "Self@ArrowExtensionArray", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" is not assignable to type "ArrowExtensionArray" +       "ExtensionArray" is not assignable to "ArrowExtensionArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:83:7 - error: Base classes for class "ArrowStringArray" define method "_str_zfill" in incompatible way +   Return type mismatch: base method returns type "Self@ArrowExtensionArray", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" is not assignable to type "ArrowExtensionArray" +       "ExtensionArray" is not assignable to "ArrowExtensionArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:83:7 - error: Base classes for class "ArrowStringArray" define method "take" in incompatible way +   Parameter "allow_fill" is missing in override +   Parameter "fill_value" is missing in override (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:83:7 - error: Base classes for class "ArrowStringArray" define method "_rank" in incompatible way +   Return type mismatch: base method returns type "NDArray[float64]", override returns type "Self@ArrowExtensionArray" +     "ArrowExtensionArray*" is not assignable to "ndarray[_AnyShape, dtype[float64]]" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:83:7 - error: Base classes for class "ArrowStringArray" define method "_str_map" in incompatible way +   Parameter 4 type mismatch: base parameter is type "Dtype | None", override parameter is type "NpDtype | None" +     Type "Dtype | None" is not assignable to type "NpDtype | None" +       Type "ExtensionDtype" is not assignable to type "NpDtype | None" +         "ExtensionDtype" is not assignable to "str" +         "ExtensionDtype" is not assignable to "dtype[Any]" +         Type "ExtensionDtype" is not assignable to type "type[str]" +         Type "ExtensionDtype" is not assignable to type "type[complex]" +         Type "ExtensionDtype" is not assignable to type "type[bool]" + ... (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:135:32 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:135:42 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:136:13 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:139:17 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:141:21 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:142:24 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:147:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:147:38 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:153:14 - error: "_dtype" overrides symbol of same name in class "ArrowExtensionArray" +   Variable is mutable so its type is invariant +     Override type "StringDtype" is not the same as base type "ArrowDtype" (reportIncompatibleVariableOverride) + /pandas/core/arrays/string_arrow.py:155:16 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:171:12 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:172:25 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:172:44 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:180:12 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:181:24 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:181:42 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:212:22 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:212:60 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:213:35 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:213:45 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:214:22 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:214:39 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:218:22 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:218:44 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:245:9 - error: Method "_convert_bool_result" overrides class "ArrowExtensionArray" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "result", override parameter is named "values" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:283:31 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:284:35 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:284:48 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:284:59 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:291:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:291:21 - error: "is_in" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/string_arrow.py:292:39 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:298:9 - error: Method "astype" overrides class "ExtensionArray" in an incompatible manner +   Return type mismatch: base method returns type "ndarray[_AnyShape, dtype[Any]]", override returns type "ArrowStringArray | BaseMaskedArray | ndarray[_AnyShape, dtype[Any]] | ExtensionArray" +     Type "ArrowStringArray | BaseMaskedArray | ndarray[_AnyShape, dtype[Any]] | ExtensionArray" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +       "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:306:40 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:316:20 - error: Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to declared type "(self: Self@ObjectStringArrayMixin) -> Unknown" +   Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to type "(self: Self@ObjectStringArrayMixin) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:317:20 - error: Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to declared type "(self: Self@ObjectStringArrayMixin) -> Unknown" +   Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to type "(self: Self@ObjectStringArrayMixin) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:318:22 - error: Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to declared type "(self: Self@ObjectStringArrayMixin) -> Unknown" +   Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to type "(self: Self@ObjectStringArrayMixin) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:319:20 - error: Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to declared type "(self: Self@ObjectStringArrayMixin) -> Unknown" +   Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to type "(self: Self@ObjectStringArrayMixin) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:320:20 - error: Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to declared type "(self: Self@ObjectStringArrayMixin) -> Unknown" +   Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to type "(self: Self@ObjectStringArrayMixin) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:321:22 - error: Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to declared type "(self: Self@ObjectStringArrayMixin) -> Unknown" +   Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to type "(self: Self@ObjectStringArrayMixin) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:322:20 - error: Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to declared type "(self: Self@ObjectStringArrayMixin) -> Unknown" +   Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to type "(self: Self@ObjectStringArrayMixin) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:323:20 - error: Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to declared type "(self: Self@ObjectStringArrayMixin) -> Unknown" +   Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to type "(self: Self@ObjectStringArrayMixin) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:324:20 - error: Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to declared type "(self: Self@ObjectStringArrayMixin) -> Unknown" +   Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to type "(self: Self@ObjectStringArrayMixin) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:326:16 - error: Type "(self: BaseStringArray, f: Unknown, na_value: Unknown | Literal[_NoDefault.no_default] = lib.no_default, dtype: Dtype | None = None, convert: bool = True) -> (ndarray[_AnyShape, dtype[Any]] | Unknown | BaseStringArray | ExtensionArray | BooleanArray | IntegerArray)" is not assignable to declared type "(self: Self@ObjectStringArrayMixin, f: Unknown, na_value: Unknown | Literal[_NoDefault.no_default] = lib.no_default, dtype: NpDtype | None = None, convert: bool = True) -> (NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]])" +   Type "(self: BaseStringArray, f: Unknown, na_value: Unknown | Literal[_NoDefault.no_default] = lib.no_default, dtype: Dtype | None = None, convert: bool = True) -> (ndarray[_AnyShape, dtype[Any]] | Unknown | BaseStringArray | ExtensionArray | BooleanArray | IntegerArray)" is not assignable to type "(self: Self@ObjectStringArrayMixin, f: Unknown, na_value: Unknown | Literal[_NoDefault.no_default] = lib.no_default, dtype: NpDtype | None = None, convert: bool = True) -> (NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]])" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "BaseStringArray" +       "ObjectStringArrayMixin*" is not assignable to "BaseStringArray" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:327:23 - error: Type "(self: ArrowStringArrayMixin, pat: str | tuple[str, ...], na: Scalar | Literal[_NoDefault.no_default] = lib.no_default) -> NoReturn" is not assignable to declared type "(self: Self@ObjectStringArrayMixin, pat: Unknown, na: Any = lib.no_default) -> Unknown" +   Type "(self: ArrowStringArrayMixin, pat: str | tuple[str, ...], na: Scalar | Literal[_NoDefault.no_default] = lib.no_default) -> NoReturn" is not assignable to type "(self: Self@ObjectStringArrayMixin, pat: Unknown, na: Any = lib.no_default) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:328:21 - error: Type "(self: ArrowStringArrayMixin, pat: str | tuple[str, ...], na: Scalar | Literal[_NoDefault.no_default] = lib.no_default) -> NoReturn" is not assignable to declared type "(self: Self@ObjectStringArrayMixin, pat: Unknown, na: Any = lib.no_default) -> Unknown" +   Type "(self: ArrowStringArrayMixin, pat: str | tuple[str, ...], na: Scalar | Literal[_NoDefault.no_default] = lib.no_default) -> NoReturn" is not assignable to type "(self: Self@ObjectStringArrayMixin, pat: Unknown, na: Any = lib.no_default) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:329:16 - error: Type "(self: ArrowStringArrayMixin, width: int, side: Literal['left', 'right', 'both'] = "left", fillchar: str = " ") -> ArrowStringArrayMixin" is not assignable to declared type "(self: Self@ObjectStringArrayMixin, width: int, side: Literal['left', 'right', 'both'] = "left", fillchar: str = " ") -> (NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]])" +   Type "(self: ArrowStringArrayMixin, width: int, side: Literal['left', 'right', 'both'] = "left", fillchar: str = " ") -> ArrowStringArrayMixin" is not assignable to type "(self: Self@ObjectStringArrayMixin, width: int, side: Literal['left', 'right', 'both'] = "left", fillchar: str = " ") -> (NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]])" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:330:18 - error: Type "(self: ArrowStringArrayMixin) -> ArrowStringArrayMixin" is not assignable to declared type "(self: Self@ObjectStringArrayMixin) -> Unknown" +   Type "(self: ArrowStringArrayMixin) -> ArrowStringArrayMixin" is not assignable to type "(self: Self@ObjectStringArrayMixin) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:331:18 - error: Type "(self: ArrowStringArrayMixin) -> ArrowStringArrayMixin" is not assignable to declared type "(self: Self@ObjectStringArrayMixin) -> Unknown" +   Type "(self: ArrowStringArrayMixin) -> ArrowStringArrayMixin" is not assignable to type "(self: Self@ObjectStringArrayMixin) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:332:18 - error: Type "(self: ArrowStringArrayMixin, to_strip: Unknown | None = None) -> ArrowStringArrayMixin" is not assignable to declared type "(self: Self@ObjectStringArrayMixin, to_strip: Unknown | None = None) -> Unknown" +   Type "(self: ArrowStringArrayMixin, to_strip: Unknown | None = None) -> ArrowStringArrayMixin" is not assignable to type "(self: Self@ObjectStringArrayMixin, to_strip: Unknown | None = None) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:333:19 - error: Type "(self: ArrowStringArrayMixin, to_strip: Unknown | None = None) -> ArrowStringArrayMixin" is not assignable to declared type "(self: Self@ObjectStringArrayMixin, to_strip: Unknown | None = None) -> Unknown" +   Type "(self: ArrowStringArrayMixin, to_strip: Unknown | None = None) -> ArrowStringArrayMixin" is not assignable to type "(self: Self@ObjectStringArrayMixin, to_strip: Unknown | None = None) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:334:19 - error: Type "(self: ArrowStringArrayMixin, to_strip: Unknown | None = None) -> ArrowStringArrayMixin" is not assignable to declared type "(self: Self@ObjectStringArrayMixin, to_strip: Unknown | None = None) -> Unknown" +   Type "(self: ArrowStringArrayMixin, to_strip: Unknown | None = None) -> ArrowStringArrayMixin" is not assignable to type "(self: Self@ObjectStringArrayMixin, to_strip: Unknown | None = None) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:335:25 - error: Type "(self: ArrowStringArrayMixin, suffix: str) -> ArrowStringArrayMixin" is not assignable to declared type "(self: Self@ObjectStringArrayMixin, suffix: str) -> (NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]])" +   Type "(self: ArrowStringArrayMixin, suffix: str) -> ArrowStringArrayMixin" is not assignable to type "(self: Self@ObjectStringArrayMixin, suffix: str) -> (NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]])" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:336:25 - error: Type "(self: ArrowStringArrayMixin, prefix: str) -> ArrowStringArrayMixin" is not assignable to declared type "(self: Self@ObjectStringArrayMixin, prefix: str) -> (NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]])" +   Type "(self: ArrowStringArrayMixin, prefix: str) -> ArrowStringArrayMixin" is not assignable to type "(self: Self@ObjectStringArrayMixin, prefix: str) -> (NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]])" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:337:17 - error: Type "(self: ArrowStringArrayMixin, sub: str, start: int = 0, end: int | None = None) -> Unknown" is not assignable to declared type "(self: Self@ObjectStringArrayMixin, sub: Unknown, start: int = 0, end: Unknown | None = None) -> Any" +   Type "(self: ArrowStringArrayMixin, sub: str, start: int = 0, end: int | None = None) -> Unknown" is not assignable to type "(self: Self@ObjectStringArrayMixin, sub: Unknown, start: int = 0, end: Unknown | None = None) -> Any" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:338:16 - error: Type "(self: ArrowStringArrayMixin, i: int) -> ArrowStringArrayMixin" is not assignable to declared type "(self: Self@ObjectStringArrayMixin, i: Unknown) -> Unknown" +   Type "(self: ArrowStringArrayMixin, i: int) -> ArrowStringArrayMixin" is not assignable to type "(self: Self@ObjectStringArrayMixin, i: Unknown) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:339:23 - error: Type "(self: ArrowStringArrayMixin) -> ArrowStringArrayMixin" is not assignable to declared type "(self: Self@ObjectStringArrayMixin) -> Unknown" +   Type "(self: ArrowStringArrayMixin) -> ArrowStringArrayMixin" is not assignable to type "(self: Self@ObjectStringArrayMixin) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:340:18 - error: Type "(self: ArrowStringArrayMixin) -> ArrowStringArrayMixin" is not assignable to declared type "(self: Self@ObjectStringArrayMixin) -> Unknown" +   Type "(self: ArrowStringArrayMixin) -> ArrowStringArrayMixin" is not assignable to type "(self: Self@ObjectStringArrayMixin) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:341:21 - error: Type "(self: ArrowStringArrayMixin) -> ArrowStringArrayMixin" is not assignable to declared type "(self: Self@ObjectStringArrayMixin) -> Unknown" +   Type "(self: ArrowStringArrayMixin) -> ArrowStringArrayMixin" is not assignable to type "(self: Self@ObjectStringArrayMixin) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:342:26 - error: Type "(self: ArrowStringArrayMixin, start: int | None = None, stop: int | None = None, repl: str | None = None) -> ArrowStringArrayMixin" is not assignable to declared type "(self: Self@ObjectStringArrayMixin, start: Unknown | None = None, stop: Unknown | None = None, repl: Unknown | None = None) -> Unknown" +   Type "(self: ArrowStringArrayMixin, start: int | None = None, stop: int | None = None, repl: str | None = None) -> ArrowStringArrayMixin" is not assignable to type "(self: Self@ObjectStringArrayMixin, start: Unknown | None = None, stop: Unknown | None = None, repl: Unknown | None = None) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:343:16 - error: Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to declared type "(self: Self@ObjectStringArrayMixin) -> Unknown" +   Type "(self: ArrowStringArrayMixin) -> Unknown" is not assignable to type "(self: Self@ObjectStringArrayMixin) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:344:18 - error: Type "(self: ArrowStringArrayMixin, start: int | None = None, stop: int | None = None, step: int | None = None) -> ArrowStringArrayMixin" is not assignable to declared type "(self: Self@ObjectStringArrayMixin, start: Unknown | None = None, stop: Unknown | None = None, step: Unknown | None = None) -> Unknown" +   Type "(self: ArrowStringArrayMixin, start: int | None = None, stop: int | None = None, step: int | None = None) -> ArrowStringArrayMixin" is not assignable to type "(self: Self@ObjectStringArrayMixin, start: Unknown | None = None, stop: Unknown | None = None, step: Unknown | None = None) -> Unknown" +     Parameter 1: type "Self@ObjectStringArrayMixin" is incompatible with type "ArrowStringArrayMixin" +       "ObjectStringArrayMixin*" is not assignable to "ArrowStringArrayMixin" (reportAssignmentType) + /pandas/core/arrays/string_arrow.py:368:9 - error: Method "_str_contains" overrides class "ArrowStringArrayMixin" in an incompatible manner +   Return type mismatch: base method returns type "NoReturn", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" is not assignable to type "NoReturn" +       Type "ExtensionArray" is not assignable to type "NoReturn" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:384:9 - error: Method "_str_match" overrides class "ArrowStringArrayMixin" in an incompatible manner +   Return type mismatch: base method returns type "NoReturn", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" is not assignable to type "NoReturn" +       Type "ExtensionArray" is not assignable to type "NoReturn" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:398:9 - error: Method "_str_fullmatch" overrides class "ArrowStringArrayMixin" in an incompatible manner +   Return type mismatch: base method returns type "NoReturn", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" is not assignable to type "NoReturn" +       Type "ExtensionArray" is not assignable to type "NoReturn" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:412:9 - error: Method "_str_replace" overrides class "ArrowStringArrayMixin" in an incompatible manner +   Return type mismatch: base method returns type "ArrowStringArrayMixin", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]] | ArrowStringArrayMixin" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]] | ArrowStringArrayMixin" is not assignable to type "ArrowStringArrayMixin" +       "ExtensionArray" is not assignable to "ArrowStringArrayMixin" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:437:9 - error: Method "_str_repeat" overrides class "ArrowExtensionArray" in an incompatible manner +   Return type mismatch: base method returns type "ArrowExtensionArray", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]] | * | ArrowExtensionArray" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]] | * | ArrowExtensionArray" is not assignable to type "ArrowExtensionArray" +       "ExtensionArray" is not assignable to "ArrowExtensionArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:443:9 - error: Method "_str_count" overrides class "ArrowExtensionArray" in an incompatible manner +   Return type mismatch: base method returns type "ArrowExtensionArray", override returns type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" +     Type "NDArray[Any] | Unknown | ExtensionArray | NDArray[object_ | number[Any, int | float | complex]]" is not assignable to type "ArrowExtensionArray" +       "ExtensionArray" is not assignable to "ArrowExtensionArray" (reportIncompatibleMethodOverride) + /pandas/core/arrays/string_arrow.py:446:18 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:446:21 - error: "count_substring_regex" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/string_arrow.py:493:23 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:493:26 - error: "is_null" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/string_arrow.py:494:23 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:494:26 - error: "or_kleene" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/string_arrow.py:494:41 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:494:44 - error: "not_equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/string_arrow.py:496:23 - error: "pc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:496:26 - error: "not_equal" is not a known attribute of module "pyarrow.compute" (reportAttributeAccessIssue) + /pandas/core/arrays/string_arrow.py:502:31 - error: Cannot access attribute "astype" for class "NAType" +   Attribute "astype" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/string_arrow.py:510:64 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/arrays/string_arrow.py:512:33 - error: "pa" is possibly unbound (reportPossiblyUnboundVariable) +/pandas/core/arrays/timedeltas.py + /pandas/core/arrays/timedeltas.py:243:9 - error: Method "_from_sequence" overrides class "ExtensionArray" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "scalars", override parameter is named "data" (reportIncompatibleMethodOverride) + /pandas/core/arrays/timedeltas.py:250:52 - error: Argument of type "DtypeObj | Unknown" cannot be assigned to parameter "dtype" of type "dtype[Any]" in function "astype_overflowsafe" +   Type "DtypeObj | Unknown" is not assignable to type "dtype[Any]" +     "ExtensionDtype" is not assignable to "dtype[Any]" (reportArgumentType) + /pandas/core/arrays/timedeltas.py:276:52 - error: Argument of type "DtypeObj | Unknown" cannot be assigned to parameter "dtype" of type "dtype[Any]" in function "astype_overflowsafe" +   Type "DtypeObj | Unknown" is not assignable to type "dtype[Any]" +     "ExtensionDtype" is not assignable to "dtype[Any]" (reportArgumentType) + /pandas/core/arrays/timedeltas.py:314:44 - error: Argument of type "NaTType | Timedelta | Unknown" cannot be assigned to parameter "start" of type "Timestamp | Timedelta | None" in function "generate_regular_range" +   Type "NaTType | Timedelta | Unknown" is not assignable to type "Timestamp | Timedelta | None" +     Type "NaTType" is not assignable to type "Timestamp | Timedelta | None" +       "NaTType" is not assignable to "Timestamp" +       "NaTType" is not assignable to "Timedelta" +       "NaTType" is not assignable to "None" (reportArgumentType) + /pandas/core/arrays/timedeltas.py:314:51 - error: Argument of type "NaTType | Timedelta | Unknown" cannot be assigned to parameter "end" of type "Timestamp | Timedelta | None" in function "generate_regular_range" +   Type "NaTType | Timedelta | Unknown" is not assignable to type "Timestamp | Timedelta | None" +     Type "NaTType" is not assignable to type "Timestamp | Timedelta | None" +       "NaTType" is not assignable to "Timestamp" +       "NaTType" is not assignable to "Timedelta" +       "NaTType" is not assignable to "None" (reportArgumentType) + /pandas/core/arrays/timedeltas.py:334:41 - error: Cannot access attribute "_value" for class "Period" +   Attribute "_value" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/timedeltas.py:336:20 - error: Type "datetime64[date | int | None] | timedelta64[timedelta | int | None] | Unknown" is not assignable to return type "timedelta64[timedelta | int | None]" +   Type "datetime64[date | int | None] | timedelta64[timedelta | int | None] | Unknown" is not assignable to type "timedelta64[timedelta | int | None]" +     "datetime64[date | int | None]" is not assignable to "timedelta64[timedelta | int | None]" (reportReturnType) + /pandas/core/arrays/timedeltas.py:336:26 - error: Cannot access attribute "as_unit" for class "Period" +   Attribute "as_unit" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/timedeltas.py:430:35 - error: Argument of type "Unknown | Any | ndarray[Unknown, dtype[Any]]" cannot be assigned to parameter "x" of type "timedelta64[timedelta | int | None]" in function "_box_func" +   Type "Unknown | Any | ndarray[Unknown, dtype[Any]]" is not assignable to type "timedelta64[timedelta | int | None]" +     "ndarray[Unknown, dtype[Any]]" is not assignable to "timedelta64[timedelta | int | None]" (reportArgumentType) + /pandas/core/arrays/timedeltas.py:470:9 - error: Method "_add_offset" overrides class "DatetimeLikeArrayMixin" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "offset", override parameter is named "other" (reportIncompatibleMethodOverride) + /pandas/core/arrays/timedeltas.py:822:69 - error: Argument of type "None" cannot be assigned to parameter "fill_value" of type "int" in function "_maybe_mask_results" +   "None" is not assignable to "int" (reportArgumentType) + /pandas/core/arrays/timedeltas.py:1140:54 - error: Argument of type "UnitChoices | None" cannot be assigned to parameter "unit" of type "str" in function "_ints_to_td64ns" +   Type "UnitChoices | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /pandas/core/arrays/timedeltas.py:1147:25 - error: Cannot access attribute "_mask" for class "TimedeltaArray" +   Attribute "_mask" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/timedeltas.py:1147:25 - error: Cannot access attribute "_mask" for class "ExtensionArray" +   Attribute "_mask" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/timedeltas.py:1147:25 - error: Cannot access attribute "_mask" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "_mask" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/timedeltas.py:1148:25 - error: Cannot access attribute "_data" for class "TimedeltaArray" +   Attribute "_data" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/timedeltas.py:1148:25 - error: Cannot access attribute "_data" for class "ExtensionArray" +   Attribute "_data" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/timedeltas.py:1148:25 - error: Cannot access attribute "_data" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "_data" is unknown (reportAttributeAccessIssue) + /pandas/core/arrays/timedeltas.py:1152:42 - error: Argument of type "ArrayLike | Unknown | TimedeltaArray" cannot be assigned to parameter "values" of type "ndarray[_AnyShape, dtype[Any]]" in function "cast_from_unit_vectorized" +   Type "ArrayLike | Unknown | TimedeltaArray" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/arrays/timedeltas.py:1161:40 - error: Argument of type "ArrayLike | TimedeltaArray" cannot be assigned to parameter "values" of type "ndarray[_AnyShape, dtype[Any]]" in function "astype_overflowsafe" +   Type "ArrayLike | TimedeltaArray" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) +/pandas/core/common.py + /pandas/core/common.py:586:32 - error: "old_value" is possibly unbound (reportPossiblyUnboundVariable) +/pandas/core/computation/eval.py + /pandas/core/computation/eval.py:175:35 - error: "msg" is possibly unbound (reportPossiblyUnboundVariable) +/pandas/core/computation/expressions.py + /pandas/core/computation/expressions.py:64:17 - error: "ne" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/computation/expressions.py:65:9 - error: "ne" is possibly unbound (reportPossiblyUnboundVariable) +/pandas/core/computation/pytables.py + /pandas/core/computation/pytables.py:95:9 - error: "value" incorrectly overrides property of same name in class "Term" +   Property method "fset" is missing in override (reportIncompatibleMethodOverride) + /pandas/core/computation/pytables.py:603:14 - error: "env" overrides symbol of same name in class "Expr" +   Variable is mutable so its type is invariant +     Override type "PyTablesScope" is not the same as base type "Scope" (reportIncompatibleVariableOverride) +/pandas/core/construction.py + /pandas/core/construction.py:585:51 - error: Argument of type "str | object | ndarray[_AnyShape, dtype[Any]] | Unknown | ExtensionArray | ndarray[Unknown, Unknown]" cannot be assigned to parameter "value" of type "Scalar" in function "construct_1d_arraylike_from_scalar" +   Type "str | object | ndarray[_AnyShape, dtype[Any]] | Unknown | ExtensionArray | ndarray[Unknown, Unknown]" is not assignable to type "Scalar" +     Type "object" is not assignable to type "Scalar" +       "object" is not assignable to "str" +       "object" is not assignable to "bytes" +       "object" is not assignable to "date" +       "object" is not assignable to "datetime" +       "object" is not assignable to "timedelta" +       "object" is not assignable to "datetime64[date | int | None]" + ... (reportArgumentType) + /pandas/core/construction.py:605:25 - error: Argument of type "object | ndarray[_AnyShape, dtype[Any]] | Unknown | ExtensionArray | ndarray[Unknown, Unknown]" cannot be assigned to parameter "iterable" of type "Iterable[_T@list]" in function "__init__" +   Type "object | ndarray[_AnyShape, dtype[Any]] | Unknown | ExtensionArray | ndarray[Unknown, Unknown]" is not assignable to type "Iterable[Any]" +     "object" is incompatible with protocol "Iterable[Any]" +       "__iter__" is not present (reportArgumentType) + /pandas/core/construction.py:658:21 - error: Argument of type "object | Unknown | ExtensionArray" cannot be assigned to parameter "iterable" of type "Iterable[_T@list]" in function "__init__" +   Type "object | Unknown | ExtensionArray" is not assignable to type "Iterable[Any]" +     "object" is incompatible with protocol "Iterable[Any]" +       "__iter__" is not present (reportArgumentType) +/pandas/core/dtypes/base.py + /pandas/core/dtypes/base.py:458:5 - error: "name" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) +/pandas/core/dtypes/cast.py + /pandas/core/dtypes/cast.py:177:17 - error: Type "Timestamp | NaTType" is not assignable to declared type "Scalar" +   Type "Timestamp | NaTType" is not assignable to type "Scalar" +     Type "NaTType" is not assignable to type "Scalar" +       "NaTType" is not assignable to "str" +       "NaTType" is not assignable to "bytes" +       "NaTType" is not assignable to "date" +       "NaTType" is not assignable to "datetime" +       "NaTType" is not assignable to "timedelta" +       "NaTType" is not assignable to "datetime64[date | int | None]" + ... (reportAssignmentType) + /pandas/core/dtypes/cast.py:179:17 - error: Type "Timedelta | NaTType" is not assignable to declared type "Scalar" +   Type "Timedelta | NaTType" is not assignable to type "Scalar" +     Type "NaTType" is not assignable to type "Scalar" +       "NaTType" is not assignable to "str" +       "NaTType" is not assignable to "bytes" +       "NaTType" is not assignable to "date" +       "NaTType" is not assignable to "datetime" +       "NaTType" is not assignable to "timedelta" +       "NaTType" is not assignable to "datetime64[date | int | None]" + ... (reportAssignmentType) + /pandas/core/dtypes/cast.py:344:30 - error: Cannot access attribute "iloc" for class "ExtensionArray" +   Attribute "iloc" is unknown (reportAttributeAccessIssue) + /pandas/core/dtypes/cast.py:359:44 - error: Argument of type "ndarray[_AnyShape, dtype[Any]] | ExtensionArray" cannot be assigned to parameter "b" of type "ArrayLike" in function "allclose" +   Type "ndarray[_AnyShape, dtype[Any]] | ExtensionArray" is not assignable to type "ArrayLike" +     Type "ExtensionArray" is not assignable to type "ArrayLike" +       "ExtensionArray" is incompatible with protocol "_Buffer" +         "__buffer__" is not present +       "ExtensionArray" is incompatible with protocol "_SupportsArray[dtype[Any]]" +         "__array__" is not present +       "ExtensionArray" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[Any]]]" +         "__reversed__" is not present + ... (reportArgumentType) + /pandas/core/dtypes/cast.py:380:36 - error: Argument of type "ArrayLike" cannot be assigned to parameter "b" of type "ArrayLike" in function "allclose" +   Type "pandas._typing.ArrayLike" is not assignable to type "numpy._typing._array_like.ArrayLike" +     Type "ExtensionArray" is not assignable to type "ArrayLike" +       "ExtensionArray" is incompatible with protocol "_Buffer" +         "__buffer__" is not present +       "ExtensionArray" is incompatible with protocol "_SupportsArray[dtype[Any]]" +         "__array__" is not present +       "ExtensionArray" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[Any]]]" +         "__reversed__" is not present + ... (reportArgumentType) + /pandas/core/dtypes/cast.py:386:39 - error: Argument of type "ArrayLike" cannot be assigned to parameter "a2" of type "ArrayLike" in function "array_equal" +   Type "pandas._typing.ArrayLike" is not assignable to type "numpy._typing._array_like.ArrayLike" +     Type "ExtensionArray" is not assignable to type "ArrayLike" +       "ExtensionArray" is incompatible with protocol "_Buffer" +         "__buffer__" is not present +       "ExtensionArray" is incompatible with protocol "_SupportsArray[dtype[Any]]" +         "__array__" is not present +       "ExtensionArray" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[Any]]]" +         "__reversed__" is not present + ... (reportArgumentType) + /pandas/core/dtypes/cast.py:497:29 - error: Type "dtype[Any] | dtype[datetime64[date | int | None]] | DatetimeTZDtype | dtype[object_ | Any]" is not assignable to declared type "dtype[Any]" +   Type "dtype[Any] | dtype[datetime64[date | int | None]] | DatetimeTZDtype | dtype[object_ | Any]" is not assignable to type "dtype[Any]" +     "DatetimeTZDtype" is not assignable to "dtype[Any]" (reportAssignmentType) + /pandas/core/dtypes/cast.py:500:42 - error: Argument of type "float" cannot be assigned to parameter "dtype" of type "_DTypeLike[datetime64[date | int | None]] | _DTypeLike[timedelta64[timedelta | int | None]] | str" in function "datetime_data" +   Type "float" is not assignable to type "_DTypeLike[datetime64[date | int | None]] | _DTypeLike[timedelta64[timedelta | int | None]] | str" +     "float" is not assignable to "str" +     Type "float" is not assignable to type "type[datetime64[date | int | None]]" +     "float" is not assignable to "dtype[datetime64[date | int | None]]" +     "float" is incompatible with protocol "_SupportsDType[dtype[datetime64[date | int | None]]]" +       "dtype" is not present +     Type "float" is not assignable to type "type[timedelta64[timedelta | int | None]]" +     "float" is not assignable to "dtype[timedelta64[timedelta | int | None]]" + ... (reportArgumentType) + /pandas/core/dtypes/cast.py:719:46 - error: Cannot access attribute "unit" for class "NaTType" +   Attribute "unit" is unknown (reportAttributeAccessIssue) + /pandas/core/dtypes/cast.py:1726:24 - error: Cannot access attribute "_hasna" for class "float" +   Attribute "_hasna" is unknown (reportAttributeAccessIssue) + /pandas/core/dtypes/cast.py:1726:24 - error: Cannot access attribute "_hasna" for class "int" +   Attribute "_hasna" is unknown (reportAttributeAccessIssue) + /pandas/core/dtypes/cast.py:1726:24 - error: Cannot access attribute "_hasna" for class "ndarray[Unknown, Unknown]" +   Attribute "_hasna" is unknown (reportAttributeAccessIssue) +/pandas/core/dtypes/common.py + /pandas/core/dtypes/common.py:1682:26 - error: No overloads for "__new__" match the provided arguments (reportCallIssue) + /pandas/core/dtypes/common.py:1682:35 - error: Argument of type "property | type[Unknown]" cannot be assigned to parameter "dtype" of type "type[object]" in function "__new__" +   Type "property | type[Unknown]" is not assignable to type "type[object]" +     Type "property" is not assignable to type "type[object]" (reportArgumentType) + /pandas/core/dtypes/common.py:1736:26 - error: Cannot access attribute "numpy_dtype" for class "dtype[Unknown]" +   Attribute "numpy_dtype" is unknown (reportAttributeAccessIssue) + /pandas/core/dtypes/common.py:1736:26 - error: Cannot access attribute "numpy_dtype" for class "ExtensionDtype" +   Attribute "numpy_dtype" is unknown (reportAttributeAccessIssue) +/pandas/core/dtypes/concat.py + /pandas/core/dtypes/concat.py:342:36 - error: Argument of type "ArrayLike | NDArray[Unknown]" cannot be assigned to parameter "codes" of type "ndarray[_AnyShape, dtype[Any]]" in function "_simple_new" +   Type "ArrayLike | NDArray[Unknown]" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) +/pandas/core/dtypes/dtypes.py + /pandas/core/dtypes/dtypes.py:222:5 - error: "name" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/dtypes/dtypes.py:222:12 - error: Type "Literal['category']" is not assignable to declared type "property" +   "Literal['category']" is not assignable to "property" (reportAssignmentType) + /pandas/core/dtypes/dtypes.py:223:5 - error: "type" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/dtypes/dtypes.py:224:5 - error: "kind" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/dtypes/dtypes.py:229:5 - error: "_supports_2d" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/dtypes/dtypes.py:229:20 - error: Type "Literal[False]" is not assignable to declared type "property" +   "Literal[False]" is not assignable to "property" (reportAssignmentType) + /pandas/core/dtypes/dtypes.py:230:5 - error: "_can_fast_transpose" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/dtypes/dtypes.py:230:27 - error: Type "Literal[False]" is not assignable to declared type "property" +   "Literal[False]" is not assignable to "property" (reportAssignmentType) + /pandas/core/dtypes/dtypes.py:329:42 - error: "dtype" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/dtypes/dtypes.py:343:28 - error: "dtype" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/dtypes/dtypes.py:344:24 - error: "dtype" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/dtypes/dtypes.py:432:47 - error: Cannot access attribute "categories" for class "object" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/dtypes/dtypes.py:436:45 - error: Cannot access attribute "categories" for class "object" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/dtypes/dtypes.py:437:36 - error: Cannot access attribute "ordered" for class "object" +   Attribute "ordered" is unknown (reportAttributeAccessIssue) + /pandas/core/dtypes/dtypes.py:440:43 - error: Cannot access attribute "ordered" for class "object" +   Attribute "ordered" is unknown (reportAttributeAccessIssue) + /pandas/core/dtypes/dtypes.py:441:23 - error: Cannot access attribute "categories" for class "object" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/dtypes/dtypes.py:449:27 - error: Cannot access attribute "categories" for class "object" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/dtypes/dtypes.py:458:45 - error: Cannot access attribute "categories" for class "object" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/dtypes/dtypes.py:767:5 - error: "_supports_2d" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/dtypes/dtypes.py:767:20 - error: Type "Literal[True]" is not assignable to declared type "property" +   "Literal[True]" is not assignable to "property" (reportAssignmentType) + /pandas/core/dtypes/dtypes.py:768:5 - error: "_can_fast_transpose" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/dtypes/dtypes.py:768:27 - error: Type "Literal[True]" is not assignable to declared type "property" +   "Literal[True]" is not assignable to "property" (reportAssignmentType) + /pandas/core/dtypes/dtypes.py:806:43 - error: Argument of type "tzinfo | None" cannot be assigned to parameter "tz" of type "tzinfo" in function "tz_standardize" +   Type "tzinfo | None" is not assignable to type "tzinfo" +     "None" is not assignable to "tzinfo" (reportArgumentType) + /pandas/core/dtypes/dtypes.py:972:24 - error: No overloads for "amax" match the provided arguments (reportCallIssue) + /pandas/core/dtypes/dtypes.py:972:31 - error: Argument of type "list[DtypeObj]" cannot be assigned to parameter "a" of type "ArrayLike" in function "amax" +   Type "list[DtypeObj]" is not assignable to type "ArrayLike" +     "list[DtypeObj]" is incompatible with protocol "_Buffer" +       "__buffer__" is not present +     "list[DtypeObj]" is incompatible with protocol "_SupportsArray[dtype[Any]]" +       "__array__" is not present +     "list[DtypeObj]" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[Any]]]" +       "__getitem__" is an incompatible type +         No overloaded function matches type "(index: int, /) -> (_T_co@_NestedSequence | _NestedSequence[_T_co@_NestedSequence])" + ... (reportArgumentType) + /pandas/core/dtypes/dtypes.py:1035:5 - error: "_supports_2d" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/dtypes/dtypes.py:1035:20 - error: Type "Literal[True]" is not assignable to declared type "property" +   "Literal[True]" is not assignable to "property" (reportAssignmentType) + /pandas/core/dtypes/dtypes.py:1036:5 - error: "_can_fast_transpose" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/dtypes/dtypes.py:1036:27 - error: Type "Literal[True]" is not assignable to declared type "property" +   "Literal[True]" is not assignable to "property" (reportAssignmentType) + /pandas/core/dtypes/dtypes.py:1063:31 - error: Cannot access attribute "_period_dtype_code" for class "BDay" +   Attribute "_period_dtype_code" is unknown (reportAttributeAccessIssue) + /pandas/core/dtypes/dtypes.py:1063:31 - error: Cannot access attribute "_period_dtype_code" for class "BaseOffset" +   Attribute "_period_dtype_code" is unknown (reportAttributeAccessIssue) + /pandas/core/dtypes/dtypes.py:1257:5 - error: "name" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/dtypes/dtypes.py:1257:12 - error: Type "Literal['interval']" is not assignable to declared type "property" +   "Literal['interval']" is not assignable to "property" (reportAssignmentType) + /pandas/core/dtypes/dtypes.py:1327:29 - error: Cannot assign to attribute "_subtype" for class "IntervalDtype*" +   Type "DtypeObj" is not assignable to type "dtype[Any] | None" +     Type "ExtensionDtype" is not assignable to type "dtype[Any] | None" +       "ExtensionDtype" is not assignable to "None" +       "ExtensionDtype" is not assignable to "dtype[Any]" (reportAttributeAccessIssue) + /pandas/core/dtypes/dtypes.py:1521:5 - error: "_supports_2d" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/dtypes/dtypes.py:1521:20 - error: Type "Literal[False]" is not assignable to declared type "property" +   "Literal[False]" is not assignable to "property" (reportAssignmentType) + /pandas/core/dtypes/dtypes.py:1522:5 - error: "_can_fast_transpose" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/dtypes/dtypes.py:1522:27 - error: Type "Literal[False]" is not assignable to declared type "property" +   "Literal[False]" is not assignable to "property" (reportAssignmentType) + /pandas/core/dtypes/dtypes.py:1608:5 - error: "type" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/dtypes/dtypes.py:1754:5 - error: "_is_immutable" incorrectly overrides property of same name in class "ExtensionDtype" (reportIncompatibleMethodOverride) + /pandas/core/dtypes/dtypes.py:1754:21 - error: Type "Literal[True]" is not assignable to declared type "property" +   "Literal[True]" is not assignable to "property" (reportAssignmentType) +/pandas/core/frame.py + /pandas/core/frame.py:894:56 - error: Argument of type "Unknown | DataFrame | list[Unknown]" cannot be assigned to parameter "value" of type "Scalar" in function "construct_1d_arraylike_from_scalar" +   Type "Unknown | DataFrame | list[Unknown]" is not assignable to type "Scalar" +     Type "DataFrame" is not assignable to type "Scalar" +       "DataFrame" is not assignable to "str" +       "DataFrame" is not assignable to "bytes" +       "DataFrame" is not assignable to "date" +       "DataFrame" is not assignable to "datetime" +       "DataFrame" is not assignable to "timedelta" +       "DataFrame" is not assignable to "datetime64[date | int | None]" + ... (reportArgumentType) + /pandas/core/frame.py:900:21 - error: Argument of type "Unknown | DataFrame | list[Unknown]" cannot be assigned to parameter "value" of type "Scalar" in function "construct_2d_arraylike_from_scalar" +   Type "Unknown | DataFrame | list[Unknown]" is not assignable to type "Scalar" +     Type "DataFrame" is not assignable to type "Scalar" +       "DataFrame" is not assignable to "str" +       "DataFrame" is not assignable to "bytes" +       "DataFrame" is not assignable to "date" +       "DataFrame" is not assignable to "datetime" +       "DataFrame" is not assignable to "timedelta" +       "DataFrame" is not assignable to "datetime64[date | int | None]" + ... (reportArgumentType) + /pandas/core/frame.py:2541:20 - error: Operator "in" not supported for types "Hashable | str | Any | Unknown" and "Unknown | None" +   Operator "in" not supported for types "Hashable" and "None" +   Operator "in" not supported for types "str" and "None" (reportOperatorIssue) + /pandas/core/frame.py:2542:37 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /pandas/core/frame.py:2543:22 - error: Operator "in" not supported for types "int" and "Unknown | None" +   Operator "in" not supported for types "int" and "None" (reportOperatorIssue) + /pandas/core/frame.py:2544:37 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /pandas/core/frame.py:4322:37 - error: Argument of type "int | integer[Any]" cannot be assigned to parameter "loc" of type "int | slice[Any, Any, Any] | ndarray[_AnyShape, dtype[Any]]" in function "_iset_item_mgr" +   Type "int | integer[Any]" is not assignable to type "int | slice[Any, Any, Any] | ndarray[_AnyShape, dtype[Any]]" +     Type "integer[Any]" is not assignable to type "int | slice[Any, Any, Any] | ndarray[_AnyShape, dtype[Any]]" +       "integer[Any]" is not assignable to "int" +       "integer[Any]" is not assignable to "slice[Any, Any, Any]" +       "integer[Any]" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/frame.py:4557:51 - error: Argument of type "Unknown | tuple[Unknown, ...]" cannot be assigned to parameter "index" of type "Index" in function "maybe_droplevels" +   Type "Unknown | tuple[Unknown, ...]" is not assignable to type "Index" +     "tuple[Unknown, ...]" is not assignable to "Index" (reportArgumentType) + /pandas/core/frame.py:4647:29 - error: No overloads for "tile" match the provided arguments (reportCallIssue) + /pandas/core/frame.py:4647:37 - error: Argument of type "ArrayLike" cannot be assigned to parameter "A" of type "ArrayLike" in function "tile" +   Type "pandas._typing.ArrayLike" is not assignable to type "numpy._typing._array_like.ArrayLike" +     Type "ExtensionArray" is not assignable to type "ArrayLike" +       "ExtensionArray" is incompatible with protocol "_Buffer" +         "__buffer__" is not present +       "ExtensionArray" is incompatible with protocol "_SupportsArray[dtype[Any]]" +         "__array__" is not present +       "ExtensionArray" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[Any]]]" +         "__reversed__" is not present + ... (reportArgumentType) + /pandas/core/frame.py:4716:18 - error: "_mgr" overrides symbol of same name in class "NDFrame" +   Variable is mutable so its type is invariant +     Override type "BlockManager" is not the same as base type "Manager" (reportIncompatibleVariableOverride) + /pandas/core/frame.py:5232:32 - error: Argument of type "tuple[Unknown] | tuple[()] | Unknown | None" cannot be assigned to parameter "iterable" of type "Iterable[_T_co@frozenset]" in function "__new__" +   Type "tuple[Unknown] | tuple[()] | Unknown | None" is not assignable to type "Iterable[Never]" +     "None" is incompatible with protocol "Iterable[Never]" +       "__iter__" is not present (reportArgumentType) + /pandas/core/frame.py:5232:32 - error: Argument of type "tuple[Unknown] | tuple[()] | Unknown | None" cannot be assigned to parameter "iterable" of type "Iterable[_T_co@frozenset]" in function "__new__" +   Type "tuple[Unknown] | tuple[()] | Unknown | None" is not assignable to type "Iterable[_T_co@frozenset]" +     "None" is incompatible with protocol "Iterable[_T_co@frozenset]" +       "__iter__" is not present (reportArgumentType) + /pandas/core/frame.py:5232:52 - error: Argument of type "tuple[Unknown] | tuple[()] | Unknown | None" cannot be assigned to parameter "iterable" of type "Iterable[_T_co@frozenset]" in function "__new__" +   Type "tuple[Unknown] | tuple[()] | Unknown | None" is not assignable to type "Iterable[Never]" +     "None" is incompatible with protocol "Iterable[Never]" +       "__iter__" is not present (reportArgumentType) + /pandas/core/frame.py:5232:52 - error: Argument of type "tuple[Unknown] | tuple[()] | Unknown | None" cannot be assigned to parameter "iterable" of type "Iterable[_T_co@frozenset]" in function "__new__" +   Type "tuple[Unknown] | tuple[()] | Unknown | None" is not assignable to type "Iterable[_T_co@frozenset]" +     "None" is incompatible with protocol "Iterable[_T_co@frozenset]" +       "__iter__" is not present (reportArgumentType) + /pandas/core/frame.py:6179:38 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /pandas/core/frame.py:6705:29 - error: Type "zip[tuple[Unknown, Unknown]]*" is not assignable to declared type "Iterable[tuple[Any, Any | None]]" +   "zip[tuple[Unknown, Unknown]]*" is incompatible with protocol "Iterable[tuple[Any, Any | None]]" +     "__iter__" is an incompatible type +       Type "() -> Self@zip[_T_co@zip]" is not assignable to type "() -> Iterator[_T_co@Iterable]" +         Function return type "Self@zip[_T_co@zip]" is incompatible with type "Iterator[_T_co@Iterable]" +           "zip[_T_co@zip]*" is incompatible with protocol "Iterator[_T_co@Iterable]" (reportAssignmentType) + /pandas/core/frame.py:7272:9 - error: Method "sort_values" overrides class "NDFrame" in an incompatible manner +   Override does not handle all overloads of base method (reportIncompatibleMethodOverride) + /pandas/core/frame.py:8201:51 - error: Argument of type "Axis" cannot be assigned to parameter "i" of type "int" in function "swaplevel" +   Type "Axis" is not assignable to type "int" +     "Literal['columns']" is not assignable to "int" (reportArgumentType) + /pandas/core/frame.py:8201:54 - error: Argument of type "Axis" cannot be assigned to parameter "j" of type "int" in function "swaplevel" +   Type "Axis" is not assignable to type "int" +     "Literal['columns']" is not assignable to "int" (reportArgumentType) + /pandas/core/frame.py:8204:55 - error: Argument of type "Axis" cannot be assigned to parameter "i" of type "int" in function "swaplevel" +   Type "Axis" is not assignable to type "int" +     "Literal['columns']" is not assignable to "int" (reportArgumentType) + /pandas/core/frame.py:8204:58 - error: Argument of type "Axis" cannot be assigned to parameter "j" of type "int" in function "swaplevel" +   Type "Axis" is not assignable to type "int" +     "Literal['columns']" is not assignable to "int" (reportArgumentType) + /pandas/core/frame.py:8973:9 - error: Method "compare" overrides class "NDFrame" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "NDFrame", override parameter is type "DataFrame" +     "NDFrame" is not assignable to "DataFrame" (reportIncompatibleMethodOverride) + /pandas/core/frame.py:8982:19 - error: Argument of type "DataFrame" cannot be assigned to parameter "other" of type "Self@DataFrame" in function "compare" +   Type "DataFrame" is not assignable to type "Self@DataFrame" (reportArgumentType) + /pandas/core/frame.py:9165:21 - error: Argument of type "Series | Hashable" cannot be assigned to parameter "result" of type "ExtensionArray" in function "maybe_downcast_to_dtype" +   Type "Series | Hashable" is not assignable to type "ExtensionArray" +     "Hashable" is not assignable to "ExtensionArray" (reportArgumentType) + /pandas/core/frame.py:10158:38 - error: Argument of type "IndexLabel" cannot be assigned to parameter "level" of type "int" in function "stack" +   Type "IndexLabel" is not assignable to type "int" +     "Hashable" is not assignable to "int" (reportArgumentType) + /pandas/core/frame.py:10624:42 - error: Argument of type "int | integer[Any]" cannot be assigned to parameter "periods" of type "int | Sequence[int]" in function "shift" +   Type "int | integer[Any]" is not assignable to type "int | Sequence[int]" +     Type "integer[Any]" is not assignable to type "int | Sequence[int]" +       "integer[Any]" is not assignable to "int" +       "integer[Any]" is not assignable to "Sequence[int]" (reportArgumentType) + /pandas/core/frame.py:10628:37 - error: Argument of type "integer[Any] | int" cannot be assigned to parameter "n" of type "int" in function "diff" +   Type "integer[Any] | int" is not assignable to type "int" +     "integer[Any]" is not assignable to "int" (reportArgumentType) + /pandas/core/frame.py:10732:37 - error: Argument of type "Unknown | None" cannot be assigned to parameter "func" of type "AggFuncType" in function "frame_apply" +   Type "Unknown | None" is not assignable to type "AggFuncType" +     Type "None" is not assignable to type "AggFuncType" +       Type "None" is not assignable to type "(...) -> Unknown" +       "None" is not assignable to "str" +       "None" is not assignable to "list[AggFuncTypeBase]" +       "None" is not assignable to "MutableMapping[Hashable, AggFuncTypeBase | list[AggFuncTypeBase]]" (reportArgumentType) + /pandas/core/frame.py:11024:29 - error: Cannot access attribute "__pandas_udf__" for class "FunctionType" +   Attribute "__pandas_udf__" is unknown (reportFunctionMemberAccess) + /pandas/core/frame.py:11133:16 - error: Type "Self@DataFrame | DataFrame | Series | Any" is not assignable to return type "DataFrame" +   Type "DataFrame* | DataFrame | Series | Any" is not assignable to type "DataFrame" +     "Series" is not assignable to "DataFrame" (reportReturnType) + /pandas/core/frame.py:11426:20 - error: Type "DataFrame | Series" is not assignable to return type "DataFrame" +   Type "DataFrame | Series" is not assignable to type "DataFrame" +     "Series" is not assignable to "DataFrame" (reportReturnType) + /pandas/core/frame.py:11939:20 - error: Type "DataFrame | Series | Self@DataFrame | Any" is not assignable to return type "Series" +   Type "DataFrame | Series | DataFrame* | Any" is not assignable to type "Series" +     "DataFrame" is not assignable to "Series" (reportReturnType) + /pandas/core/frame.py:13320:16 - error: Type "NDFrame" is not assignable to return type "Self@DataFrame" +   Type "NDFrame" is not assignable to type "Self@DataFrame" (reportReturnType) + /pandas/core/frame.py:13332:16 - error: Type "NDFrame" is not assignable to return type "Self@DataFrame" +   Type "NDFrame" is not assignable to type "Self@DataFrame" (reportReturnType) + /pandas/core/frame.py:13344:16 - error: Type "NDFrame" is not assignable to return type "Self@DataFrame" +   Type "NDFrame" is not assignable to type "Self@DataFrame" (reportReturnType) + /pandas/core/frame.py:13356:16 - error: Type "NDFrame" is not assignable to return type "Self@DataFrame" +   Type "NDFrame" is not assignable to type "Self@DataFrame" (reportReturnType) + /pandas/core/frame.py:13397:16 - error: Type "DataFrame | Series | Self@DataFrame | Any" is not assignable to return type "Series" +   Type "DataFrame | Series | DataFrame* | Any" is not assignable to type "Series" +     "DataFrame" is not assignable to "Series" (reportReturnType) + /pandas/core/frame.py:13710:16 - error: Type "DataFrame | Series | Self@DataFrame | Any" is not assignable to return type "DataFrame" +   Type "DataFrame | Series | DataFrame* | Any" is not assignable to type "DataFrame" +     "Series" is not assignable to "DataFrame" (reportReturnType) + /pandas/core/frame.py:13914:34 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /pandas/core/frame.py:13914:34 - error: Argument of type "NDArray[floating[Any]]" cannot be assigned to parameter "key" of type "_ToIndices" in function "__getitem__" +   Type "NDArray[floating[Any]]" is not assignable to type "_ToIndices" +     "ndarray[_AnyShape, dtype[floating[Any]]]" is incompatible with protocol "SupportsIndex" +       Could not bind method "__index__" because "ndarray[_AnyShape, dtype[floating[Any]]]" is not assignable to parameter "self" +         "ndarray[_AnyShape, dtype[floating[Any]]]" is not assignable to "ndarray[_AnyShape, dtype[integer[Any]]]" +           Type parameter "_DTypeT_co@ndarray" is covariant, but "dtype[floating[Any]]" is not a subtype of "dtype[integer[Any]]" +     "ndarray[_AnyShape, dtype[floating[Any]]]" is not assignable to "slice[Any, Any, Any]" +     "ndarray[_AnyShape, dtype[floating[Any]]]" is not assignable to "EllipsisType" +     "ndarray[_AnyShape, dtype[floating[Any]]]" is incompatible with protocol "_SupportsArray[dtype[numpy.bool[builtins.bool] | integer[Any]]]" (reportArgumentType) + /pandas/core/frame.py:14223:5 - error: "_info_axis_number" overrides symbol of same name in class "NDFrame" +   Variable is mutable so its type is invariant +     Override type "Literal[1]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /pandas/core/frame.py:14224:5 - error: "_info_axis_name" overrides symbol of same name in class "NDFrame" +   Variable is mutable so its type is invariant +     Override type "Literal['columns']" is not the same as base type "Literal['index', 'columns']" (reportIncompatibleVariableOverride) +/pandas/core/generic.py + /pandas/core/generic.py:849:13 - error: "__delitem__" method not defined on type "NDFrame*" (reportIndexIssue) + /pandas/core/generic.py:966:16 - error: Type "NDFrame | Unknown" is not assignable to return type "Scalar | Series | DataFrame" +   Type "NDFrame | Unknown" is not assignable to type "Scalar | Series | DataFrame" +     Type "NDFrame" is not assignable to type "Scalar | Series | DataFrame" +       "NDFrame" is not assignable to "str" +       "NDFrame" is not assignable to "bytes" +       "NDFrame" is not assignable to "date" +       "NDFrame" is not assignable to "datetime" +       "NDFrame" is not assignable to "timedelta" +       "NDFrame" is not assignable to "datetime64[date | int | None]" + ... (reportReturnType) + /pandas/core/generic.py:4176:13 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /pandas/core/generic.py:4176:13 - error: Argument of type "int | integer[Any] | _Array1D[Any] | Any | ndarray[_AnyShape, dtype[Any]] | Unknown | ndarray[_AnyShape, dtype[numpy.bool[builtins.bool]]] | ndarray[_AnyShape, dtype[signedinteger[Any]]] | slice[NDArray[intp] | intp, NDArray[intp] | intp, Any] | slice[Any, Any, Any] | None" cannot be assigned to parameter "value" of type "slice[Any, Any, Any]" in function "__setitem__" +   Type "int | integer[Any] | _Array1D[Any] | Any | ndarray[_AnyShape, dtype[Any]] | Unknown | ndarray[_AnyShape, dtype[numpy.bool[builtins.bool]]] | ndarray[_AnyShape, dtype[signedinteger[Any]]] | slice[NDArray[intp] | intp, NDArray[intp] | intp, Any] | slice[Any, Any, Any] | None" is not assignable to type "slice[Any, Any, Any]" +     "int" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /pandas/core/generic.py:4217:24 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /pandas/core/generic.py:4217:24 - error: Argument of type "int | integer[Any] | _Array1D[Any] | Any | ndarray[_AnyShape, dtype[Any]] | Unknown | ndarray[_AnyShape, dtype[numpy.bool[builtins.bool]]] | ndarray[_AnyShape, dtype[signedinteger[Any]]] | slice[NDArray[intp] | intp, NDArray[intp] | intp, Any] | slice[Any, Any, Any] | None" cannot be assigned to parameter "item" of type "SequenceIndexer" in function "__getitem__" +   Type "int | integer[Any] | _Array1D[Any] | Any | ndarray[_AnyShape, dtype[Any]] | Unknown | ndarray[_AnyShape, dtype[numpy.bool[builtins.bool]]] | ndarray[_AnyShape, dtype[signedinteger[Any]]] | slice[NDArray[intp] | intp, NDArray[intp] | intp, Any] | slice[Any, Any, Any] | None" is not assignable to type "SequenceIndexer" +     Type "int" is not assignable to type "SequenceIndexer" +       "int" is not assignable to "slice[Any, Any, Any]" +       "int" is not assignable to "list[int]" +       "int" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/generic.py:4217:24 - error: Type "Unknown | ndarray[_AnyShape, dtype[Any]]" is not assignable to return type "Self@NDFrame" +   Type "Unknown | ndarray[_AnyShape, dtype[Any]]" is not assignable to type "Self@NDFrame" (reportReturnType) + /pandas/core/generic.py:4219:41 - error: Argument of type "int | integer[Any] | _Array1D[Any] | Any | ndarray[_AnyShape, dtype[Any]] | Unknown | ndarray[_AnyShape, dtype[numpy.bool[builtins.bool]]] | ndarray[_AnyShape, dtype[signedinteger[Any]]] | slice[NDArray[intp] | intp, NDArray[intp] | intp, Any] | slice[Any, Any, Any] | None" cannot be assigned to parameter "loc" of type "int" in function "fast_xs" +   Type "int | integer[Any] | _Array1D[Any] | Any | ndarray[_AnyShape, dtype[Any]] | Unknown | ndarray[_AnyShape, dtype[numpy.bool[builtins.bool]]] | ndarray[_AnyShape, dtype[signedinteger[Any]]] | slice[NDArray[intp] | intp, NDArray[intp] | intp, Any] | slice[Any, Any, Any] | None" is not assignable to type "int" +     "integer[Any]" is not assignable to "int" (reportArgumentType) + /pandas/core/generic.py:4225:46 - error: Operator "+" not supported for types "int | integer[Any] | _Array1D[Any] | Any | ndarray[_AnyShape, dtype[Any]] | Unknown | ndarray[_AnyShape, dtype[numpy.bool[builtins.bool]]] | ndarray[_AnyShape, dtype[signedinteger[Any]]] | slice[NDArray[intp] | intp, NDArray[intp] | intp, Any] | slice[Any, Any, Any] | None" and "Literal[1]" +   Operator "+" not supported for types "None" and "Literal[1]" when expected type is "int | Incomplete | Unknown | ndarray[tuple[int], dtype[Any]] | ndarray[_AnyShape, dtype[Any]] | NDArray[signedinteger[Any]]" +   Operator "+" not supported for types "slice[NDArray[intp] | intp, NDArray[intp] | intp, Any]" and "Literal[1]" when expected type is "int | Incomplete | Unknown | ndarray[tuple[int], dtype[Any]] | ndarray[_AnyShape, dtype[Any]] | NDArray[signedinteger[Any]]" +   Operator "+" not supported for types "slice[Any, Any, Any]" and "Literal[1]" when expected type is "int | Incomplete | Unknown | ndarray[tuple[int], dtype[Any]] | ndarray[_AnyShape, dtype[Any]] | NDArray[signedinteger[Any]]" (reportOperatorIssue) + /pandas/core/generic.py:4230:28 - error: "new_index" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/generic.py:4291:25 - error: "__delitem__" method not defined on type "NDFrame*" (reportIndexIssue) + /pandas/core/generic.py:4592:13 - error: Type "str" is not assignable to declared type "Axis" +   Type "str" is not assignable to type "Axis" +     "str" is not assignable to "int" +     "str" is not assignable to type "Literal['index']" +     "str" is not assignable to type "Literal['columns']" +     "str" is not assignable to type "Literal['rows']" (reportAssignmentType) + /pandas/core/generic.py:4669:29 - error: Cannot access attribute "to_numpy" for class "NDArray[bool_]" +   Attribute "to_numpy" is unknown (reportAttributeAccessIssue) + /pandas/core/generic.py:6196:21 - error: "__setitem__" method not defined on type "NDFrame*" (reportIndexIssue) + /pandas/core/generic.py:7154:25 - error: "__setitem__" method not defined on type "NDFrame*" (reportIndexIssue) + /pandas/core/generic.py:7164:33 - error: "__setitem__" method not defined on type "NDFrame*" (reportIndexIssue) + /pandas/core/generic.py:7571:37 - error: Cannot access attribute "items" for class "bool" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /pandas/core/generic.py:7571:37 - error: Cannot access attribute "items" for class "bool_" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /pandas/core/generic.py:7571:37 - error: "items" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/generic.py:7604:20 - error: No overloads for "replace" match the provided arguments (reportCallIssue) + /pandas/core/generic.py:7604:75 - error: Argument of type "bool | bool_" cannot be assigned to parameter "regex" of type "bool" in function "replace" +   Type "bool | bool_" is not assignable to type "bool" +     "numpy.bool[builtins.bool]" is not assignable to "bool" (reportArgumentType) + /pandas/core/generic.py:7621:31 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /pandas/core/generic.py:7622:47 - error: "keys" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/generic.py:7636:76 - error: "items" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/generic.py:7646:43 - error: Argument of type "Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /pandas/core/generic.py:7649:24 - error: Argument of type "Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /pandas/core/generic.py:7652:42 - error: Argument of type "Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /pandas/core/generic.py:7655:30 - error: Argument of type "Unknown | None" cannot be assigned to parameter "src_list" of type "list[Any]" in function "replace_list" +   Type "Unknown | None" is not assignable to type "list[Any]" +     "None" is not assignable to "list[Any]" (reportArgumentType) + /pandas/core/generic.py:7658:27 - error: Argument of type "bool | bool_" cannot be assigned to parameter "regex" of type "bool" in function "replace_list" +   Type "bool | bool_" is not assignable to type "bool" +     "numpy.bool[builtins.bool]" is not assignable to "bool" (reportArgumentType) + /pandas/core/generic.py:7686:46 - error: Argument of type "bool | bool_" cannot be assigned to parameter "regex" of type "bool" in function "should_use_regex" +   Type "bool | bool_" is not assignable to type "bool" +     "numpy.bool[builtins.bool]" is not assignable to "bool" (reportArgumentType) + /pandas/core/generic.py:9805:12 - error: Invalid conditional operand of type "bool | NDArray[bool_] | NDFrame" +   Method __bool__ for type "NDFrame" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) + /pandas/core/generic.py:9809:16 - error: Type "tuple[NDFrame* | Series | Series* | Any | Unknown, Series, Index | Any | Unknown | None]" is not assignable to return type "tuple[Self@NDFrame, Series, Index | None]" +   Type "NDFrame* | Series | Series* | Any | Unknown" is not assignable to type "Self@NDFrame" (reportReturnType) + /pandas/core/generic.py:9956:64 - error: "res_cols" is possibly unbound (reportPossiblyUnboundVariable) +/pandas/core/groupby/generic.py + /pandas/core/groupby/generic.py:762:16 - error: Type "DataFrame | Series" is not assignable to return type "Series" +   Type "DataFrame | Series" is not assignable to type "Series" +     "DataFrame" is not assignable to "Series" (reportReturnType) + /pandas/core/groupby/generic.py:1042:51 - error: Cannot access attribute "_values" for class "Categorical" +   Attribute "_values" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/generic.py:1042:51 - error: Cannot access attribute "_values" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "_values" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/generic.py:1042:51 - error: Cannot access attribute "_values" for class "tuple[Series | Categorical | Unknown | ndarray[_AnyShape, dtype[Any]], IntervalArray | ExtensionArray | ndarray[_AnyShape, dtype[Any]] | IntervalIndex | Index]" +   Attribute "_values" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/generic.py:1309:16 - error: Type "Unknown | Series | DataFrame" is not assignable to return type "Series" +   Type "Unknown | Series | DataFrame" is not assignable to type "Series" +     "DataFrame" is not assignable to "Series" (reportReturnType) + /pandas/core/groupby/generic.py:1387:16 - error: Type "Unknown | Series | DataFrame" is not assignable to return type "Series" +   Type "Unknown | Series | DataFrame" is not assignable to type "Series" +     "DataFrame" is not assignable to "Series" (reportReturnType) + /pandas/core/groupby/generic.py:2451:20 - error: Invalid conditional operand of type "NDArray[bool_] | bool | bool_ | Unknown | NDFrame" +   Method __bool__ for type "NDFrame" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) + /pandas/core/groupby/generic.py:3045:16 - error: Type "Unknown | Series | DataFrame" is not assignable to return type "DataFrame" +   Type "Unknown | Series | DataFrame" is not assignable to type "DataFrame" +     "Series" is not assignable to "DataFrame" (reportReturnType) + /pandas/core/groupby/generic.py:3150:16 - error: Type "Unknown | Series | DataFrame" is not assignable to return type "DataFrame" +   Type "Unknown | Series | DataFrame" is not assignable to type "DataFrame" +     "Series" is not assignable to "DataFrame" (reportReturnType) +/pandas/core/groupby/groupby.py + /pandas/core/groupby/groupby.py:1603:28 - error: Type "object" is not assignable to return type "NDFrameT@GroupBy" +   Type "object" is not assignable to type "NDFrameT@GroupBy" (reportReturnType) + /pandas/core/groupby/groupby.py:1788:44 - error: Argument of type "NDFrameT@GroupBy | Any | Unknown" cannot be assigned to parameter "result" of type "Series | DataFrame" in function "_wrap_aggregated_output" +   Type "NDFrameT@GroupBy | Any | Unknown" is not assignable to type "Series | DataFrame" +     Type "NDFrameT@GroupBy" is not assignable to type "Series | DataFrame" +       "NDFrame*" is not assignable to "Series" +       "NDFrame*" is not assignable to "DataFrame" (reportArgumentType) + /pandas/core/groupby/groupby.py:1993:16 - error: Type "Unknown | Series | DataFrame" is not assignable to return type "NDFrameT@GroupBy" +   Type "Unknown | Series | DataFrame" is not assignable to type "NDFrameT@GroupBy" (reportReturnType) + /pandas/core/groupby/groupby.py:2051:16 - error: Type "Unknown | Series | DataFrame" is not assignable to return type "NDFrameT@GroupBy" +   Type "Unknown | Series | DataFrame" is not assignable to type "NDFrameT@GroupBy" (reportReturnType) + /pandas/core/groupby/groupby.py:2156:16 - error: Type "Unknown | Series | DataFrame" is not assignable to return type "NDFrameT@GroupBy" +   Type "Unknown | Series | DataFrame" is not assignable to type "NDFrameT@GroupBy" (reportReturnType) + /pandas/core/groupby/groupby.py:2357:16 - error: Type "DataFrame | Series | Unknown" is not assignable to return type "NDFrameT@GroupBy" +   Type "DataFrame | Series | Unknown" is not assignable to type "NDFrameT@GroupBy" (reportReturnType) + /pandas/core/groupby/groupby.py:2805:16 - error: Type "Unknown | Series | DataFrame" is not assignable to return type "NDFrameT@GroupBy" +   Type "Unknown | Series | DataFrame" is not assignable to type "NDFrameT@GroupBy" (reportReturnType) + /pandas/core/groupby/groupby.py:3057:16 - error: Type "DataFrame | Series | Unknown" is not assignable to return type "NDFrameT@GroupBy" +   Type "DataFrame | Series | Unknown" is not assignable to type "NDFrameT@GroupBy" (reportReturnType) + /pandas/core/groupby/groupby.py:3286:16 - error: Type "DataFrame | Series | Unknown" is not assignable to return type "NDFrameT@GroupBy" +   Type "DataFrame | Series | Unknown" is not assignable to type "NDFrameT@GroupBy" (reportReturnType) + /pandas/core/groupby/groupby.py:3354:16 - error: Type "DataFrame | Series | Unknown" is not assignable to return type "NDFrameT@GroupBy" +   Type "DataFrame | Series | Unknown" is not assignable to type "NDFrameT@GroupBy" (reportReturnType) + /pandas/core/groupby/groupby.py:3510:16 - error: Type "DataFrame | Unknown | Any" is not assignable to return type "NDFrameT@GroupBy" +   Type "DataFrame | Unknown | Any" is not assignable to type "NDFrameT@GroupBy" (reportReturnType) + /pandas/core/groupby/groupby.py:5212:18 - error: "concat" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/groupby/groupby.py:5618:54 - error: "weights_arr" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/groupby/groupby.py:5686:16 - error: Type "DataFrame | Series | Unknown" is not assignable to return type "NDFrameT@GroupBy" +   Type "DataFrame | Series | Unknown" is not assignable to type "NDFrameT@GroupBy" (reportReturnType) +/pandas/core/groupby/grouper.py + /pandas/core/groupby/grouper.py:545:47 - error: Cannot access attribute "categories" for class "Index" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:545:47 - error: Cannot access attribute "categories" for class "MultiIndex" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:545:47 - error: Cannot access attribute "categories" for class "BinGrouper" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:545:47 - error: Cannot access attribute "categories" for class "ExtensionArray" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:546:50 - error: Argument of type "Index | MultiIndex | BinGrouper | Series | ExtensionArray | Categorical" cannot be assigned to parameter "c" of type "Categorical" in function "recode_for_groupby" +   Type "Index | MultiIndex | BinGrouper | Series | ExtensionArray | Categorical" is not assignable to type "Categorical" +     "ExtensionArray" is not assignable to "Categorical" (reportArgumentType) + /pandas/core/groupby/grouper.py:623:30 - error: Cannot access attribute "categories" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:623:30 - error: Cannot access attribute "categories" for class "ndarray[Unknown, Unknown]" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:623:30 - error: Cannot access attribute "categories" for class "Index" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:623:30 - error: Cannot access attribute "categories" for class "MultiIndex" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:623:30 - error: Cannot access attribute "categories" for class "BinGrouper" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:623:30 - error: Cannot access attribute "categories" for class "ExtensionArray" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:626:26 - error: No overloads for "unique" match the provided arguments (reportCallIssue) + /pandas/core/groupby/grouper.py:626:46 - error: Argument of type "Unknown | ndarray[_AnyShape, dtype[Any]] | FrozenList | list[NDArray[intp]] | Any" cannot be assigned to parameter "values" of type "ndarray[_AnyShape, dtype[Any]] | Series" in function "unique" +   Type "Unknown | ndarray[_AnyShape, dtype[Any]] | FrozenList | list[NDArray[intp]] | Any" is not assignable to type "ndarray[_AnyShape, dtype[Any]] | Series" +     Type "list[NDArray[intp]]" is not assignable to type "ndarray[_AnyShape, dtype[Any]] | Series" +       "list[NDArray[intp]]" is not assignable to "ndarray[_AnyShape, dtype[Any]]" +       "list[NDArray[intp]]" is not assignable to "Series" (reportArgumentType) + /pandas/core/groupby/grouper.py:626:50 - error: Cannot access attribute "codes" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "codes" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:626:50 - error: Cannot access attribute "codes" for class "ndarray[Unknown, Unknown]" +   Attribute "codes" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:626:50 - error: Cannot access attribute "codes" for class "Index" +   Attribute "codes" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:626:50 - error: Cannot access attribute "codes" for class "ExtensionArray" +   Attribute "codes" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:635:31 - error: Cannot access attribute "isna" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "isna" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:635:31 - error: Cannot access attribute "isna" for class "ndarray[Unknown, Unknown]" +   Attribute "isna" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:635:31 - error: Cannot access attribute "isna" for class "BinGrouper" +   Attribute "isna" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:636:20 - error: No overloads for "any" match the provided arguments (reportCallIssue) + /pandas/core/groupby/grouper.py:636:27 - error: Argument of type "ndarray[_AnyShape, dtype[Any]] | ExtensionArraySupportsAnyAll | Series | NDArray[bool_] | Unknown" cannot be assigned to parameter "a" of type "ArrayLike | None" in function "any" +   Type "ndarray[_AnyShape, dtype[Any]] | ExtensionArraySupportsAnyAll | Series | NDArray[bool_] | Unknown" is not assignable to type "ArrayLike | None" +     Type "ExtensionArraySupportsAnyAll" is not assignable to type "ArrayLike | None" +       "ExtensionArraySupportsAnyAll" is incompatible with protocol "_Buffer" +         "__buffer__" is not present +       "ExtensionArraySupportsAnyAll" is incompatible with protocol "_SupportsArray[dtype[Any]]" +         "__array__" is not present +       "ExtensionArraySupportsAnyAll" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[Any]]]" +         "__reversed__" is not present + ... (reportArgumentType) + /pandas/core/groupby/grouper.py:645:59 - error: Argument of type "Unknown | ndarray[_AnyShape, dtype[Any]] | list[NDArray[intp]] | Any" cannot be assigned to parameter "values" of type "ArrayLike" in function "nunique_ints" +   Type "Unknown | ndarray[_AnyShape, dtype[Any]] | list[NDArray[intp]] | Any" is not assignable to type "ArrayLike" +     Type "list[NDArray[intp]]" is not assignable to type "ArrayLike" +       "list[NDArray[intp]]" is not assignable to "ExtensionArray" +       "list[NDArray[intp]]" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/groupby/grouper.py:645:63 - error: Cannot access attribute "codes" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "codes" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:645:63 - error: Cannot access attribute "codes" for class "ndarray[Unknown, Unknown]" +   Attribute "codes" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:645:63 - error: Cannot access attribute "codes" for class "Index" +   Attribute "codes" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:645:63 - error: Cannot access attribute "codes" for class "ExtensionArray" +   Attribute "codes" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:649:66 - error: Cannot access attribute "ordered" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "ordered" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:649:66 - error: Cannot access attribute "ordered" for class "ndarray[Unknown, Unknown]" +   Attribute "ordered" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:649:66 - error: Cannot access attribute "ordered" for class "Index" +   Attribute "ordered" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:649:66 - error: Cannot access attribute "ordered" for class "MultiIndex" +   Attribute "ordered" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:649:66 - error: Cannot access attribute "ordered" for class "BinGrouper" +   Attribute "ordered" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:649:66 - error: Cannot access attribute "ordered" for class "ExtensionArray" +   Attribute "ordered" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:651:25 - error: Cannot access attribute "codes" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "codes" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:651:25 - error: Cannot access attribute "codes" for class "ndarray[Unknown, Unknown]" +   Attribute "codes" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:651:25 - error: Cannot access attribute "codes" for class "Index" +   Attribute "codes" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:651:25 - error: Cannot access attribute "codes" for class "ExtensionArray" +   Attribute "codes" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/grouper.py:656:38 - error: Operator ">=" not supported for types "Unknown | ndarray[_AnyShape, dtype[Any]] | FrozenList | list[NDArray[intp]] | Any" and "int | Unbound" +   Operator ">=" not supported for types "FrozenList" and "int" when expected type is "ArrayLike" +   Operator ">=" not supported for types "list[NDArray[intp]]" and "int" when expected type is "ArrayLike" (reportOperatorIssue) + /pandas/core/groupby/grouper.py:656:47 - error: "na_code" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/groupby/grouper.py:656:56 - error: Operator "+" not supported for types "Unknown | ndarray[_AnyShape, dtype[Any]] | FrozenList | list[NDArray[intp]] | Any" and "Literal[1]" +   Operator "+" not supported for types "FrozenList" and "Literal[1]" when expected type is "ArrayLike" +   Operator "+" not supported for types "list[NDArray[intp]]" and "Literal[1]" when expected type is "ArrayLike" (reportOperatorIssue) + /pandas/core/groupby/grouper.py:657:34 - error: Argument of type "ndarray[_AnyShape, dtype[Any]] | ExtensionArraySupportsAnyAll | Series | NDArray[bool_] | Unknown | Unbound" cannot be assigned to parameter "condition" of type "ArrayLike" in function "where" +   Type "ndarray[_AnyShape, dtype[Any]] | ExtensionArraySupportsAnyAll | Series | NDArray[bool_] | Unknown | Unbound" is not assignable to type "ArrayLike" +     Type "ExtensionArraySupportsAnyAll" is not assignable to type "ArrayLike" +       "ExtensionArraySupportsAnyAll" is incompatible with protocol "_Buffer" +         "__buffer__" is not present +       "ExtensionArraySupportsAnyAll" is incompatible with protocol "_SupportsArray[dtype[Any]]" +         "__array__" is not present +       "ExtensionArraySupportsAnyAll" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[Any]]]" +         "__reversed__" is not present + ... (reportArgumentType) + /pandas/core/groupby/grouper.py:657:34 - error: "na_mask" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/groupby/grouper.py:657:43 - error: "na_code" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/groupby/grouper.py:659:20 - error: Type "tuple[NDArray[Any] | Unknown | FrozenList | list[NDArray[intp]] | Any, Categorical]" is not assignable to return type "tuple[NDArray[signedinteger[Any]], ArrayLike]" +   Type "NDArray[Any] | Unknown | FrozenList | list[NDArray[intp]] | Any" is not assignable to type "NDArray[signedinteger[Any]]" +     "list[NDArray[intp]]" is not assignable to "ndarray[_AnyShape, dtype[signedinteger[Any]]]" (reportReturnType) + /pandas/core/groupby/grouper.py:881:32 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/groupby/grouper.py:886:57 - error: Argument of type "Index | Unknown | Any | None" cannot be assigned to parameter "key" of type "Level" in function "_check_label_or_level_ambiguity" +   Type "Index | Unknown | Any | None" is not assignable to type "Level" +     "Index" is incompatible with protocol "Hashable" +       "__hash__" is an incompatible type +       "__hash__" is not defined as a ClassVar in protocol +         Type "None" is not assignable to type "() -> int" (reportArgumentType) + /pandas/core/groupby/grouper.py:892:32 - error: Argument of type "Index | Unknown | Any | None" cannot be assigned to parameter "element" of type "Hashable" in function "add" +   Type "Index | Unknown | Any | None" is not assignable to type "Hashable" +     "Index" is incompatible with protocol "Hashable" +       "__hash__" is an incompatible type +       "__hash__" is not defined as a ClassVar in protocol +         Type "None" is not assignable to type "() -> int" (reportArgumentType) + /pandas/core/groupby/grouper.py:893:42 - error: Argument of type "Index | Unknown | Any | None" cannot be assigned to parameter "key" of type "Level" in function "_is_level_reference" +   Type "Index | Unknown | Any | None" is not assignable to type "Level" +     "Index" is incompatible with protocol "Hashable" +       "__hash__" is an incompatible type +       "__hash__" is not defined as a ClassVar in protocol +         Type "None" is not assignable to type "() -> int" (reportArgumentType) +/pandas/core/groupby/ops.py + /pandas/core/groupby/ops.py:200:36 - error: Cannot access attribute "__signatures__" for class "FunctionType" +   Attribute "__signatures__" is unknown (reportFunctionMemberAccess) + /pandas/core/groupby/ops.py:502:32 - error: "counts" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/groupby/ops.py:503:33 - error: Cannot access attribute "any" for class "bool" +   Attribute "any" is unknown (reportAttributeAccessIssue) + /pandas/core/groupby/ops.py:680:31 - error: "null_gaps" is possibly unbound (reportPossiblyUnboundVariable) +/pandas/core/indexers/utils.py + /pandas/core/indexers/utils.py:325:28 - error: Cannot access attribute "sum" for class "Index" +   Attribute "sum" is unknown (reportAttributeAccessIssue) + /pandas/core/indexers/utils.py:413:12 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) +/pandas/core/indexes/accessors.py + /pandas/core/indexes/accessors.py:91:9 - error: Method "_delegate_property_get" overrides class "PandasDelegate" in an incompatible manner +   Return type mismatch: base method returns type "NoReturn", override returns type "Any | Series" +     Type "Any | Series" is not assignable to type "NoReturn" +       Type "Series" is not assignable to type "NoReturn" (reportIncompatibleMethodOverride) + /pandas/core/indexes/accessors.py:120:9 - error: Method "_delegate_method" overrides class "PandasDelegate" in an incompatible manner +   Return type mismatch: base method returns type "NoReturn", override returns type "Any | Series" +     Type "Any | Series" is not assignable to type "NoReturn" +       Type "Series" is not assignable to type "NoReturn" (reportIncompatibleMethodOverride) + /pandas/core/indexes/accessors.py:175:9 - error: Method "_delegate_property_get" overrides class "PandasDelegate" in an incompatible manner +   Return type mismatch: base method returns type "NoReturn", override returns type "Any | Series" +     Type "Any | Series" is not assignable to type "NoReturn" +       Type "Series" is not assignable to type "NoReturn" (reportIncompatibleMethodOverride) + /pandas/core/indexes/accessors.py:196:9 - error: Method "_delegate_method" overrides class "PandasDelegate" in an incompatible manner +   Return type mismatch: base method returns type "NoReturn", override returns type "Series" +     Type "Series" is not assignable to type "NoReturn" (reportIncompatibleMethodOverride) +/pandas/core/indexes/base.py + /pandas/core/indexes/base.py:506:24 - error: Type "RangeIndex | Index" is not assignable to return type "Self@Index" +   Type "RangeIndex | Index" is not assignable to type "Self@Index" (reportReturnType) + /pandas/core/indexes/base.py:545:33 - error: Argument of type "Series | Unknown | memoryview[Unknown] | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@list]" in function "__init__" +   Type "Series | Unknown | memoryview[Unknown] | None" is not assignable to type "Iterable[Unknown]" +     "None" is incompatible with protocol "Iterable[Unknown]" +       "__iter__" is not present (reportArgumentType) + /pandas/core/indexes/base.py:547:20 - error: Invalid conditional operand of type "list[Unknown] | bool | Series | Unknown | memoryview[Unknown] | None" +   Method __bool__ for type "Series" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) + /pandas/core/indexes/base.py:562:29 - error: Argument of type "Series | Unknown | memoryview[Unknown] | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@list]" in function "__init__" +   Type "Series | Unknown | memoryview[Unknown] | None" is not assignable to type "Iterable[Unknown]" +     "None" is incompatible with protocol "Iterable[Unknown]" +       "__iter__" is not present (reportArgumentType) + /pandas/core/indexes/base.py:584:16 - error: Type "DatetimeIndex | Index | TimedeltaIndex" is not assignable to return type "Self@Index" +   Type "DatetimeIndex | Index | TimedeltaIndex" is not assignable to type "Self@Index" (reportReturnType) + /pandas/core/indexes/base.py:1295:46 - error: Argument of type "Unknown | ndarray[_AnyShape, Unknown] | NumpyExtensionArray | Index | Series | ExtensionArray" cannot be assigned to parameter "values" of type "ArrayLike" in function "_simple_new" +   Type "Unknown | ndarray[_AnyShape, Unknown] | NumpyExtensionArray | Index | Series | ExtensionArray" is not assignable to type "ArrayLike" +     Type "Index" is not assignable to type "ArrayLike" +       "Index" is not assignable to "ExtensionArray" +       "Index" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/indexes/base.py:1359:42 - error: Argument of type "NDArray[intp]" cannot be assigned to parameter "repeats" of type "int | Sequence[int]" in function "repeat" +   Type "NDArray[intp]" is not assignable to type "int | Sequence[int]" +     "ndarray[_AnyShape, dtype[intp]]" is not assignable to "int" +     "ndarray[_AnyShape, dtype[intp]]" is not assignable to "Sequence[int]" (reportArgumentType) + /pandas/core/indexes/base.py:1518:16 - error: Type "ExtensionArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to return type "ndarray[_AnyShape, dtype[Any]]" +   Type "ExtensionArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportReturnType) + /pandas/core/indexes/base.py:1831:16 - error: Argument of type "Any | Unknown | list[Unknown | None] | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "Any | Unknown | list[Unknown | None] | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /pandas/core/indexes/base.py:1833:75 - error: Argument of type "Any | Unknown | list[Unknown | None] | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "Any | Unknown | list[Unknown | None] | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /pandas/core/indexes/base.py:1837:32 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) + /pandas/core/indexes/base.py:1839:16 - error: Type "Any | Unknown | list[Unknown | None] | None" is not assignable to return type "list[Hashable]" +   Type "Any | Unknown | list[Unknown | None] | None" is not assignable to type "list[Hashable]" +     "list[Unknown | None]" is not assignable to "list[Hashable]" +       Type parameter "_T@list" is invariant, but "Unknown | None" is not the same as "Hashable" +       Consider switching from "list" to "Sequence" which is covariant (reportReturnType) + /pandas/core/indexes/base.py:1874:16 - error: Type "list[Hashable]* | list[Unknown | None] | list[Hashable*] | list[int | str] | list[Hashable]" is not assignable to return type "list[Hashable]" +   Type "list[Hashable]* | list[Unknown | None] | list[Hashable*] | list[int | str] | list[Hashable]" is not assignable to type "list[Hashable]" +     "list[Unknown | None]" is not assignable to "list[Hashable]" +       Type parameter "_T@list" is invariant, but "Unknown | None" is not the same as "Hashable" +       Consider switching from "list" to "Sequence" which is covariant (reportReturnType) + /pandas/core/indexes/base.py:2045:20 - error: Type "MultiIndex* | Index* | MultiIndex" is not assignable to return type "Self@Index | None" +   Type "MultiIndex* | Index* | MultiIndex" is not assignable to type "Self@Index | None" +     Type "MultiIndex" is not assignable to type "Self@Index | None" +       Type "MultiIndex" is not assignable to type "Self@Index" +       "MultiIndex" is not assignable to "None" (reportReturnType) + /pandas/core/indexes/base.py:3182:44 - error: Argument of type "Index" cannot be assigned to parameter "other" of type "Self@Index" in function "_outer_indexer" +   Type "Index" is not assignable to type "Self@Index" (reportArgumentType) + /pandas/core/indexes/base.py:3338:63 - error: Argument of type "Index" cannot be assigned to parameter "other" of type "Self@Index" in function "_inner_indexer" +   Type "Index" is not assignable to type "Self@Index" (reportArgumentType) + /pandas/core/indexes/base.py:3576:27 - error: Cannot access attribute "set_names" for class "ExtensionArray" +   Attribute "set_names" is unknown (reportAttributeAccessIssue) + /pandas/core/indexes/base.py:3576:27 - error: Cannot access attribute "set_names" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "set_names" is unknown (reportAttributeAccessIssue) + /pandas/core/indexes/base.py:3737:55 - error: Cannot access attribute "codes" for class "Index" +   Attribute "codes" is unknown (reportAttributeAccessIssue) + /pandas/core/indexes/base.py:3755:58 - error: Cannot access attribute "categories" for class "Index" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/indexes/base.py:3757:64 - error: Cannot access attribute "codes" for class "Index" +   Attribute "codes" is unknown (reportAttributeAccessIssue) + /pandas/core/indexes/base.py:3817:48 - error: Argument of type "ArrayLike | Unknown" cannot be assigned to parameter "values" of type "ndarray[_AnyShape, dtype[Any]]" in function "get_indexer" +   Type "ArrayLike | Unknown" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/indexes/base.py:4567:23 - error: Cannot access attribute "names" for class "ExtensionArray" +   Attribute "names" is unknown (reportAttributeAccessIssue) + /pandas/core/indexes/base.py:4567:23 - error: Cannot access attribute "names" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "names" is unknown (reportAttributeAccessIssue) + /pandas/core/indexes/base.py:4568:37 - error: Cannot access attribute "set_names" for class "ExtensionArray" +   Attribute "set_names" is unknown (reportAttributeAccessIssue) + /pandas/core/indexes/base.py:4568:37 - error: Cannot access attribute "set_names" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "set_names" is unknown (reportAttributeAccessIssue) + /pandas/core/indexes/base.py:4578:16 - error: Type "tuple[ArrayLike | Self@Index | Index | Any | Unknown, NDArray[intp] | None, NDArray[intp] | None]" is not assignable to return type "tuple[Index, NDArray[intp] | None, NDArray[intp] | None]" +   Type "ArrayLike | Index* | Index | Any | Unknown" is not assignable to type "Index" +     "ExtensionArray" is not assignable to "Index" (reportReturnType) + /pandas/core/indexes/base.py:4872:50 - error: Argument of type "Index" cannot be assigned to parameter "other" of type "Self@Index" in function "_left_indexer_unique" +   Type "Index" is not assignable to type "Self@Index" (reportArgumentType) + /pandas/core/indexes/base.py:4874:61 - error: Argument of type "Index" cannot be assigned to parameter "other" of type "Self@Index" in function "_left_indexer" +   Type "Index" is not assignable to type "Self@Index" (reportArgumentType) + /pandas/core/indexes/base.py:4876:33 - error: Argument of type "Index" cannot be assigned to parameter "other" of type "Self@Index" in function "_wrap_join_result" +   Type "Index" is not assignable to type "Self@Index" (reportArgumentType) + /pandas/core/indexes/base.py:4887:33 - error: Argument of type "Index" cannot be assigned to parameter "other" of type "Self@Index" in function "_wrap_join_result" +   Type "Index" is not assignable to type "Self@Index" (reportArgumentType) + /pandas/core/indexes/base.py:4890:58 - error: Argument of type "Index" cannot be assigned to parameter "other" of type "Self@Index" in function "_inner_indexer" +   Type "Index" is not assignable to type "Self@Index" (reportArgumentType) + /pandas/core/indexes/base.py:4892:29 - error: Argument of type "Index" cannot be assigned to parameter "other" of type "Self@Index" in function "_wrap_join_result" +   Type "Index" is not assignable to type "Self@Index" (reportArgumentType) + /pandas/core/indexes/base.py:4895:58 - error: Argument of type "Index" cannot be assigned to parameter "other" of type "Self@Index" in function "_outer_indexer" +   Type "Index" is not assignable to type "Self@Index" (reportArgumentType) + /pandas/core/indexes/base.py:4897:29 - error: Argument of type "Index" cannot be assigned to parameter "other" of type "Self@Index" in function "_wrap_join_result" +   Type "Index" is not assignable to type "Self@Index" (reportArgumentType) + /pandas/core/indexes/base.py:5019:10 - error: Argument of type "property" cannot be assigned to parameter "docstrings" of type "str | ((...) -> Unknown) | None" in function "doc" +   Type "property" is not assignable to type "str | ((...) -> Unknown) | None" +     "property" is not assignable to "None" +     "property" is not assignable to "str" +     Type "property" is not assignable to type "(...) -> Unknown" (reportArgumentType) + /pandas/core/indexes/base.py:5391:29 - error: Argument of type "list[Index | Self@Index] | list[Self@Index]" cannot be assigned to parameter "to_concat" of type "list[Index]" in function "_concat" +   Type "list[Index | Self@Index] | list[Self@Index]" is not assignable to type "list[Index]" +     "list[Self@Index]" is not assignable to "list[Index]" +       Type parameter "_T@list" is invariant, but "Self@Index" is not the same as "Index" +       Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /pandas/core/indexes/base.py:5746:13 - error: Argument of type "ExtensionArray | ndarray[_AnyShape, dtype[Any]]" cannot be assigned to parameter "v" of type "ArrayLike" in function "searchsorted" +   Type "ExtensionArray | ndarray[_AnyShape, dtype[Any]]" is not assignable to type "ArrayLike" +     Type "ExtensionArray" is not assignable to type "ArrayLike" +       "ExtensionArray" is incompatible with protocol "_Buffer" +         "__buffer__" is not present +       "ExtensionArray" is incompatible with protocol "_SupportsArray[dtype[Any]]" +         "__array__" is not present +       "ExtensionArray" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[Any]]]" +         "__reversed__" is not present (reportArgumentType) + /pandas/core/indexes/base.py:5872:20 - error: Type "tuple[Index* | MultiIndex, NDArray[intp] | ndarray[_AnyShape, dtype[intp]]]" is not assignable to return type "Self@Index | tuple[Self@Index, ndarray[_AnyShape, dtype[Any]]]" +   Type "tuple[Index* | MultiIndex, NDArray[intp] | ndarray[_AnyShape, dtype[intp]]]" is not assignable to type "Self@Index | tuple[Self@Index, ndarray[_AnyShape, dtype[Any]]]" +     Type "tuple[Index* | MultiIndex, NDArray[intp] | ndarray[_AnyShape, dtype[intp]]]" is not assignable to type "Self@Index" +     "tuple[Index* | MultiIndex, NDArray[intp] | ndarray[_AnyShape, dtype[intp]]]" is not assignable to "tuple[Self@Index, ndarray[_AnyShape, dtype[Any]]]" +       Tuple entry 1 is incorrect type +         Type "Index* | MultiIndex" is not assignable to type "Self@Index" (reportReturnType) + /pandas/core/indexes/base.py:5874:20 - error: Type "Index* | MultiIndex" is not assignable to return type "Self@Index | tuple[Self@Index, ndarray[_AnyShape, dtype[Any]]]" +   Type "Index* | MultiIndex" is not assignable to type "Self@Index | tuple[Self@Index, ndarray[_AnyShape, dtype[Any]]]" +     Type "MultiIndex" is not assignable to type "Self@Index | tuple[Self@Index, ndarray[_AnyShape, dtype[Any]]]" +       Type "MultiIndex" is not assignable to type "Self@Index" +       "MultiIndex" is not assignable to "tuple[Self@Index, ndarray[_AnyShape, dtype[Any]]]" (reportReturnType) + /pandas/core/indexes/base.py:6135:64 - error: Argument of type "ArrayLike | Unknown" cannot be assigned to parameter "targets" of type "ndarray[_AnyShape, dtype[Any]]" in function "get_indexer_non_unique" +   Type "ArrayLike | Unknown" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/indexes/base.py:6186:69 - error: Argument of type "ArrayLike | Index" cannot be assigned to parameter "target" of type "Index" in function "_reindex_non_unique" +   Type "ArrayLike | Index" is not assignable to type "Index" +     "ExtensionArray" is not assignable to "Index" (reportArgumentType) + /pandas/core/indexes/base.py:6337:16 - error: Operator ">=" not supported for types "Unknown | ExtensionArray | NDArray[Any] | Any" and "Literal[0]" +   Operator ">=" not supported for types "ExtensionArray" and "Literal[0]" (reportOperatorIssue) +/pandas/core/indexes/category.py + /pandas/core/indexes/category.py:186:5 - error: "_data" overrides symbol of same name in class "NDArrayBackedExtensionIndex" +   Variable is mutable so its type is invariant +     Override type "Categorical" is not the same as base type "NDArrayBackedExtensionArray" (reportIncompatibleVariableOverride) + /pandas/core/indexes/category.py:187:5 - error: "_values" incorrectly overrides property of same name in class "Index" (reportIncompatibleMethodOverride) + /pandas/core/indexes/category.py:429:9 - error: Method "_maybe_cast_listlike_indexer" overrides class "Index" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "target", override parameter is named "values" (reportIncompatibleMethodOverride) +/pandas/core/indexes/datetimelike.py + /pandas/core/indexes/datetimelike.py:92:5 - error: "_can_hold_strings" incorrectly overrides property of same name in class "Index" (reportIncompatibleMethodOverride) + /pandas/core/indexes/datetimelike.py:92:25 - error: Type "Literal[False]" is not assignable to declared type "property" +   "Literal[False]" is not assignable to "property" (reportAssignmentType) + /pandas/core/indexes/datetimelike.py:93:5 - error: "_data" overrides symbol of same name in class "NDArrayBackedExtensionIndex" +   Variable is mutable so its type is invariant +     Override type "DatetimeArray | TimedeltaArray | PeriodArray" is not the same as base type "NDArrayBackedExtensionArray" (reportIncompatibleVariableOverride) + /pandas/core/indexes/datetimelike.py:139:10 - error: Argument of type "property" cannot be assigned to parameter "docstrings" of type "str | ((...) -> Unknown) | None" in function "doc" +   Type "property" is not assignable to type "str | ((...) -> Unknown) | None" +     "property" is not assignable to "None" +     "property" is not assignable to "str" +     Type "property" is not assignable to type "(...) -> Unknown" (reportArgumentType) + /pandas/core/indexes/datetimelike.py:156:10 - error: Argument of type "property" cannot be assigned to parameter "docstrings" of type "str | ((...) -> Unknown) | None" in function "doc" +   Type "property" is not assignable to type "str | ((...) -> Unknown) | None" +     "property" is not assignable to "None" +     "property" is not assignable to "str" +     Type "property" is not assignable to type "(...) -> Unknown" (reportArgumentType) + /pandas/core/indexes/datetimelike.py:200:48 - error: Cannot access attribute "asi8" for class "Index" +   Attribute "asi8" is unknown (reportAttributeAccessIssue) + /pandas/core/indexes/datetimelike.py:276:12 - error: "freq" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/indexes/datetimelike.py:276:48 - error: "freq" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/indexes/datetimelike.py:277:23 - error: "freq" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/indexes/datetimelike.py:367:58 - error: "reso" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/indexes/datetimelike.py:367:64 - error: "parsed" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/indexes/datetimelike.py:409:9 - error: Method "_maybe_cast_listlike_indexer" overrides class "Index" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "target", override parameter is named "keyarr" (reportIncompatibleMethodOverride) + /pandas/core/indexes/datetimelike.py:428:5 - error: "_data" overrides symbol of same name in class "DatetimeIndexOpsMixin" +   Variable is mutable so its type is invariant +     Override type "DatetimeArray | TimedeltaArray" is not the same as base type "DatetimeArray | TimedeltaArray | PeriodArray" (reportIncompatibleVariableOverride) + /pandas/core/indexes/datetimelike.py:527:10 - error: Argument of type "property" cannot be assigned to parameter "docstrings" of type "str | ((...) -> Unknown) | None" in function "doc" +   Type "property" is not assignable to type "str | ((...) -> Unknown) | None" +     "property" is not assignable to "None" +     "property" is not assignable to "str" +     Type "property" is not assignable to type "(...) -> Unknown" (reportArgumentType) + /pandas/core/indexes/datetimelike.py:552:24 - error: No overloads for "to_offset" match the provided arguments (reportCallIssue) + /pandas/core/indexes/datetimelike.py:553:17 - error: Argument of type "NaTType | Timedelta" cannot be assigned to parameter "freq" of type "timedelta | str" in function "to_offset" +   Type "NaTType | Timedelta" is not assignable to type "timedelta | str" +     Type "NaTType" is not assignable to type "timedelta | str" +       "NaTType" is not assignable to "timedelta" +       "NaTType" is not assignable to "str" (reportArgumentType) + /pandas/core/indexes/datetimelike.py:566:13 - error: Argument of type "ArrayLike | Unknown" cannot be assigned to parameter "values" of type "NDArray[datetime64[date | int | None]]" in function "_simple_new" +   Type "ArrayLike | Unknown" is not assignable to type "NDArray[datetime64[date | int | None]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[datetime64[date | int | None]]]" (reportArgumentType) + /pandas/core/indexes/datetimelike.py:566:13 - error: Argument of type "ArrayLike | Unknown" cannot be assigned to parameter "values" of type "NDArray[timedelta64[timedelta | int | None]]" in function "_simple_new" +   Type "ArrayLike | Unknown" is not assignable to type "NDArray[timedelta64[timedelta | int | None]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[timedelta64[timedelta | int | None]]]" (reportArgumentType) + /pandas/core/indexes/datetimelike.py:595:41 - error: Argument of type "DatetimeTimedeltaMixin" cannot be assigned to parameter "other" of type "Self@DatetimeTimedeltaMixin" in function "_can_fast_intersect" +   Type "DatetimeTimedeltaMixin" is not assignable to type "Self@DatetimeTimedeltaMixin" (reportArgumentType) + /pandas/core/indexes/datetimelike.py:797:37 - error: Argument of type "DTScalarOrNaT | int64 | datetime64[date | int | None] | timedelta64[timedelta | int | None]" cannot be assigned to parameter "x" of type "datetime64[date | int | None]" in function "_box_func" +   Type "DTScalarOrNaT | int64 | datetime64[date | int | None] | timedelta64[timedelta | int | None]" is not assignable to type "datetime64[date | int | None]" +     "NaTType" is not assignable to "datetime64[date | int | None]" (reportArgumentType) + /pandas/core/indexes/datetimelike.py:797:37 - error: Argument of type "DTScalarOrNaT | int64 | datetime64[date | int | None] | timedelta64[timedelta | int | None]" cannot be assigned to parameter "x" of type "timedelta64[timedelta | int | None]" in function "_box_func" +   Type "DTScalarOrNaT | int64 | datetime64[date | int | None] | timedelta64[timedelta | int | None]" is not assignable to type "timedelta64[timedelta | int | None]" +     "NaTType" is not assignable to "timedelta64[timedelta | int | None]" (reportArgumentType) + /pandas/core/indexes/datetimelike.py:807:45 - error: Operator "-" not supported for types "Timestamp | NaTType | Timedelta" and "BaseOffset" +   Operator "-" not supported for types "NaTType" and "BaseOffset" (reportOperatorIssue) + /pandas/core/indexes/datetimelike.py:815:45 - error: Argument of type "Timestamp | NaTType | Timedelta" cannot be assigned to parameter "dt" of type "datetime" in function "is_on_offset" +   Type "Timestamp | NaTType | Timedelta" is not assignable to type "datetime" +     "NaTType" is not assignable to "datetime" (reportArgumentType) + /pandas/core/indexes/datetimelike.py:822:30 - error: Cannot assign to attribute "_freq" for class "TimedeltaArray" +   Type "BaseOffset | None" is not assignable to type "Tick | Day | None" +     Type "BaseOffset" is not assignable to type "Tick | Day | None" +       "BaseOffset" is not assignable to "Tick" +       "BaseOffset" is not assignable to "Day" +       "BaseOffset" is not assignable to "None" (reportAttributeAccessIssue) + /pandas/core/indexes/datetimelike.py:822:52 - error: Argument of type "int | integer[Any] | list[int] | NDArray[integer[Any]]" cannot be assigned to parameter "loc" of type "int | slice[Any, Any, Any] | Sequence[int]" in function "_get_delete_freq" +   Type "int | integer[Any] | list[int] | NDArray[integer[Any]]" is not assignable to type "int | slice[Any, Any, Any] | Sequence[int]" +     Type "integer[Any]" is not assignable to type "int | slice[Any, Any, Any] | Sequence[int]" +       "integer[Any]" is not assignable to "int" +       "integer[Any]" is not assignable to "slice[Any, Any, Any]" +       "integer[Any]" is not assignable to "Sequence[int]" (reportArgumentType) + /pandas/core/indexes/datetimelike.py:830:34 - error: Cannot assign to attribute "_freq" for class "TimedeltaArray" +   Type "BaseOffset | Tick | None" is not assignable to type "Tick | Day | None" +     Type "BaseOffset" is not assignable to type "Tick | Day | None" +       "BaseOffset" is not assignable to "Tick" +       "BaseOffset" is not assignable to "Day" +       "BaseOffset" is not assignable to "None" (reportAttributeAccessIssue) + /pandas/core/indexes/datetimelike.py:855:26 - error: Cannot assign to attribute "_freq" for class "NDArrayBackedExtensionArray" +   Attribute "_freq" is unknown (reportAttributeAccessIssue) + /pandas/core/indexes/datetimelike.py:856:16 - error: Type "NDArrayBackedExtensionIndex" is not assignable to return type "Self@DatetimeTimedeltaMixin" +   Type "NDArrayBackedExtensionIndex" is not assignable to type "Self@DatetimeTimedeltaMixin" (reportReturnType) +/pandas/core/indexes/datetimes.py + /pandas/core/indexes/datetimes.py:267:5 - error: "_data" overrides symbol of same name in class "DatetimeTimedeltaMixin" +   Variable is mutable so its type is invariant +     Override type "DatetimeArray" is not the same as base type "DatetimeArray | TimedeltaArray" (reportIncompatibleVariableOverride) + /pandas/core/indexes/datetimes.py:268:5 - error: "_values" incorrectly overrides property of same name in class "Index" (reportIncompatibleMethodOverride) + /pandas/core/indexes/datetimes.py:380:16 - error: Operator "%" not supported for types "Timedelta | NaTType" and "timedelta" +   Operator "%" not supported for types "NaTType" and "timedelta" (reportOperatorIssue) + /pandas/core/indexes/datetimes.py:546:26 - error: Cannot access attribute "start_time" for class "NaTType" +   Attribute "start_time" is unknown (reportAttributeAccessIssue) + /pandas/core/indexes/datetimes.py:546:42 - error: Cannot access attribute "end_time" for class "NaTType" +   Attribute "end_time" is unknown (reportAttributeAccessIssue) + /pandas/core/indexes/datetimes.py:579:16 - error: Type "tuple[NaTType | Timestamp, Resolution]" is not assignable to return type "tuple[Timestamp, Resolution]" +   Type "NaTType | Timestamp" is not assignable to type "Timestamp" +     "NaTType" is not assignable to "Timestamp" (reportReturnType) + /pandas/core/indexes/datetimes.py:661:26 - error: Argument of type "Unknown | datetime | NaTType" cannot be assigned to parameter "ts_input" of type "integer[Any] | float | str | date | datetime | datetime64[date | int | None]" in function "__new__" +   Type "Unknown | datetime | NaTType" is not assignable to type "integer[Any] | float | str | date | datetime | datetime64[date | int | None]" +     Type "NaTType" is not assignable to type "integer[Any] | float | str | date | datetime | datetime64[date | int | None]" +       "NaTType" is not assignable to "integer[Any]" +       "NaTType" is not assignable to "float" +       "NaTType" is not assignable to "str" +       "NaTType" is not assignable to "date" +       "NaTType" is not assignable to "datetime" +       "NaTType" is not assignable to "datetime64[date | int | None]" (reportArgumentType) + /pandas/core/indexes/datetimes.py:808:34 - error: Argument of type "_Time | | Series | Unknown" cannot be assigned to parameter "time_obj" of type "time" in function "_time_to_micros" +   Type "_Time | | Series | Unknown" is not assignable to type "time" +     "Series" is not assignable to "time" (reportArgumentType) + /pandas/core/indexes/datetimes.py:851:40 - error: Argument of type "Unknown | time | Series" cannot be assigned to parameter "time_obj" of type "time" in function "_time_to_micros" +   Type "Unknown | time | Series" is not assignable to type "time" +     "Series" is not assignable to "time" (reportArgumentType) + /pandas/core/indexes/datetimes.py:852:38 - error: Argument of type "Unknown | time | Series" cannot be assigned to parameter "time_obj" of type "time" in function "_time_to_micros" +   Type "Unknown | time | Series" is not assignable to type "time" +     "Series" is not assignable to "time" (reportArgumentType) +/pandas/core/indexes/extension.py + /pandas/core/indexes/extension.py:66:22 - error: Type "cache_readonly" is not assignable to declared type "(self: Unknown, ...) -> Unknown" +   Type "cache_readonly" is not assignable to type "(self: Unknown, ...) -> Unknown" (reportAssignmentType) + /pandas/core/indexes/extension.py:86:22 - error: Type "property" is not assignable to declared type "(self: Unknown, ...) -> Unknown" +   Type "property" is not assignable to type "(self: Unknown, ...) -> Unknown" (reportAssignmentType) + /pandas/core/indexes/extension.py:147:5 - error: "_data" overrides symbol of same name in class "Index" +   Variable is mutable so its type is invariant +     Override type "IntervalArray | NDArrayBackedExtensionArray" is not the same as base type "ExtensionArray | ndarray[_AnyShape, dtype[Any]]" (reportIncompatibleVariableOverride) + /pandas/core/indexes/extension.py:169:5 - error: "_data" overrides symbol of same name in class "ExtensionIndex" +   Variable is mutable so its type is invariant +     Override type "NDArrayBackedExtensionArray" is not the same as base type "IntervalArray | NDArrayBackedExtensionArray" (reportIncompatibleVariableOverride) +/pandas/core/indexes/interval.py + /pandas/core/indexes/interval.py:242:5 - error: "_data" overrides symbol of same name in class "ExtensionIndex" +   Variable is mutable so its type is invariant +     Override type "IntervalArray" is not the same as base type "IntervalArray | NDArrayBackedExtensionArray" (reportIncompatibleVariableOverride) + /pandas/core/indexes/interval.py:243:5 - error: "_values" incorrectly overrides property of same name in class "Index" (reportIncompatibleMethodOverride) + /pandas/core/indexes/interval.py:244:5 - error: "_can_hold_strings" incorrectly overrides property of same name in class "Index" (reportIncompatibleMethodOverride) + /pandas/core/indexes/interval.py:244:25 - error: Type "Literal[False]" is not assignable to declared type "property" +   "Literal[False]" is not assignable to "property" (reportAssignmentType) + /pandas/core/indexes/interval.py:807:20 - error: Type "intp | Any | Unknown" is not assignable to return type "int | slice[Any, Any, Any] | ndarray[_AnyShape, dtype[Any]]" +   Type "intp | Any | Unknown" is not assignable to type "int | slice[Any, Any, Any] | ndarray[_AnyShape, dtype[Any]]" +     Type "intp" is not assignable to type "int | slice[Any, Any, Any] | ndarray[_AnyShape, dtype[Any]]" +       "signedinteger[_NBitIntP]" is not assignable to "int" +       "signedinteger[_NBitIntP]" is not assignable to "slice[Any, Any, Any]" +       "signedinteger[_NBitIntP]" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportReturnType) + /pandas/core/indexes/interval.py:1167:47 - error: Argument of type "Index" cannot be assigned to parameter "other" of type "IntervalIndex" in function "_intersection_unique" +   "Index" is not assignable to "IntervalIndex" (reportArgumentType) + /pandas/core/indexes/interval.py:1168:20 - error: Cannot access attribute "left" for class "Index" +   Attribute "left" is unknown (reportAttributeAccessIssue) + /pandas/core/indexes/interval.py:1168:45 - error: Cannot access attribute "right" for class "Index" +   Attribute "right" is unknown (reportAttributeAccessIssue) + /pandas/core/indexes/interval.py:1171:27 - error: Cannot access attribute "_intersection_unique" for class "Index" +   Attribute "_intersection_unique" is unknown (reportAttributeAccessIssue) + /pandas/core/indexes/interval.py:1174:51 - error: Argument of type "Index" cannot be assigned to parameter "other" of type "IntervalIndex" in function "_intersection_non_unique" +   "Index" is not assignable to "IntervalIndex" (reportArgumentType) + /pandas/core/indexes/interval.py:1375:36 - error: Argument of type "Unknown | None" cannot be assigned to parameter "value" of type "Scalar" in function "maybe_box_datetimelike" +   Type "Unknown | None" is not assignable to type "Scalar" +     Type "None" is not assignable to type "Scalar" +       "None" is not assignable to "str" +       "None" is not assignable to "bytes" +       "None" is not assignable to "date" +       "None" is not assignable to "datetime" +       "None" is not assignable to "timedelta" +       "None" is not assignable to "datetime64[date | int | None]" + ... (reportArgumentType) + /pandas/core/indexes/interval.py:1376:34 - error: Argument of type "Unknown | None" cannot be assigned to parameter "value" of type "Scalar" in function "maybe_box_datetimelike" +   Type "Unknown | None" is not assignable to type "Scalar" +     Type "None" is not assignable to type "Scalar" +       "None" is not assignable to "str" +       "None" is not assignable to "bytes" +       "None" is not assignable to "date" +       "None" is not assignable to "datetime" +       "None" is not assignable to "timedelta" +       "None" is not assignable to "datetime64[date | int | None]" + ... (reportArgumentType) + /pandas/core/indexes/interval.py:1397:20 - error: No overloads for "to_offset" match the provided arguments (reportCallIssue) + /pandas/core/indexes/interval.py:1397:30 - error: Argument of type "Unknown | Literal[1, 'D']" cannot be assigned to parameter "freq" of type "timedelta | str" in function "to_offset" +   Type "Unknown | Literal[1, 'D']" is not assignable to type "timedelta | str" +     Type "Literal[1]" is not assignable to type "timedelta | str" +       "Literal[1]" is not assignable to "timedelta" +       "Literal[1]" is not assignable to "str" (reportArgumentType) + /pandas/core/indexes/interval.py:1435:39 - error: Operator "+" not supported for types "Scalar" and "Unknown | Incomplete | float | floating[Unknown] | floating[Any]" +   Operator "+" not supported for types "str" and "float" +   Operator "+" not supported for types "str" and "floating[Unknown]" +   Operator "+" not supported for types "str" and "floating[Any]" +   Operator "+" not supported for types "bytes" and "float" +   Operator "+" not supported for types "bytes" and "floating[Unknown]" +   Operator "+" not supported for types "bytes" and "floating[Any]" +   Operator "+" not supported for types "date" and "float" +   Operator "+" not supported for types "date" and "floating[Unknown]" + ... (reportOperatorIssue) + /pandas/core/indexes/interval.py:1435:45 - error: Operator "*" not supported for types "Unknown | Number | number[Any, int | float | complex] | float | floating[Unknown] | floating[Any] | None" and "float" +   Operator "*" not supported for types "None" and "float" +   Operator "*" not supported for types "Number" and "float" (reportOperatorIssue) + /pandas/core/indexes/interval.py:1440:31 - error: Operator "-" not supported for types "Scalar" and "Scalar" +   Operator "-" not supported for types "str" and "str" +   Operator "-" not supported for types "str" and "bytes" +   Operator "-" not supported for types "str" and "date" +   Operator "-" not supported for types "str" and "datetime" +   Operator "-" not supported for types "str" and "timedelta" +   Operator "-" not supported for types "str" and "datetime64[date | int | None]" +   Operator "-" not supported for types "str" and "timedelta64[timedelta | int | None]" +   Operator "-" not supported for types "str" and "bool" + ... (reportOperatorIssue) + /pandas/core/indexes/interval.py:1440:31 - error: Operator "//" not supported for types "Unknown | timedelta | date | datetime | timedelta64[timedelta | int | None] | datetime64[date | int | None] | int | float | Interval[int] | complex | Incomplete | floating[Any] | complexfloating[Any, Any] | complex128 | Interval[float] | Timedelta | Timestamp | Interval[Unknown]" and "Unknown | Number | number[Any, int | float | complex] | None" +   Operator "//" not supported for types "timedelta" and "None" when expected type is "ConvertibleToInt" +   Operator "//" not supported for types "timedelta" and "Number" when expected type is "ConvertibleToInt" +   Operator "//" not supported for types "timedelta" and "number[Any, int | float | complex]" when expected type is "ConvertibleToInt" +   Operator "//" not supported for types "date" and "None" when expected type is "ConvertibleToInt" +   Operator "//" not supported for types "date" and "Number" when expected type is "ConvertibleToInt" +   Operator "//" not supported for types "date" and "number[Any, int | float | complex]" when expected type is "ConvertibleToInt" +   Operator "//" not supported for types "datetime" and "None" when expected type is "ConvertibleToInt" +   Operator "//" not supported for types "datetime" and "Number" when expected type is "ConvertibleToInt" + ... (reportOperatorIssue) + /pandas/core/indexes/interval.py:1446:22 - error: No overloads for "linspace" match the provided arguments (reportCallIssue) + /pandas/core/indexes/interval.py:1446:34 - error: Argument of type "Scalar" cannot be assigned to parameter "start" of type "_ArrayLikeComplex_co" in function "linspace" +   Type "Scalar" is not assignable to type "_ArrayLikeComplex_co" +     Type "bytes" is not assignable to type "_ArrayLikeComplex_co" +       "bytes" is incompatible with protocol "_SupportsArray[dtype[numpy.bool[builtins.bool] | number[Any, int | float | complex]]]" +         "__array__" is not present +       "bytes" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[numpy.bool[builtins.bool] | number[Any, int | float | complex]]]]" +         "__getitem__" is an incompatible type +           No overloaded function matches type "(index: int, /) -> (_T_co@_NestedSequence | _NestedSequence[_T_co@_NestedSequence])" +         "__contains__" is an incompatible type + ... (reportArgumentType) + /pandas/core/indexes/interval.py:1446:41 - error: Argument of type "Scalar" cannot be assigned to parameter "stop" of type "_ArrayLikeComplex_co" in function "linspace" +   Type "Scalar" is not assignable to type "_ArrayLikeComplex_co" +     Type "bytes" is not assignable to type "_ArrayLikeComplex_co" +       "bytes" is incompatible with protocol "_SupportsArray[dtype[numpy.bool[builtins.bool] | number[Any, int | float | complex]]]" +         "__array__" is not present +       "bytes" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[numpy.bool[builtins.bool] | number[Any, int | float | complex]]]]" +         "__getitem__" is an incompatible type +           No overloaded function matches type "(index: int, /) -> (_T_co@_NestedSequence | _NestedSequence[_T_co@_NestedSequence])" +         "__contains__" is an incompatible type + ... (reportArgumentType) + /pandas/core/indexes/interval.py:1449:22 - error: No overloads for "maybe_downcast_numeric" match the provided arguments (reportCallIssue) + /pandas/core/indexes/interval.py:1449:45 - error: Argument of type "ndarray[_AnyShape, dtype[Any]] | Unknown | TimedeltaIndex | DatetimeIndex" cannot be assigned to parameter "result" of type "ExtensionArray" in function "maybe_downcast_numeric" +   Type "ndarray[_AnyShape, dtype[Any]] | Unknown | TimedeltaIndex | DatetimeIndex" is not assignable to type "ExtensionArray" +     "DatetimeIndex" is not assignable to "ExtensionArray" (reportArgumentType) +/pandas/core/indexes/multi.py + /pandas/core/indexes/multi.py:128:7 - error: Base classes for class "MultiIndexUInt64Engine" define method "get_indexer" in incompatible way +   Parameter 2 name mismatch: base parameter is named "values", override parameter is named "target" (reportIncompatibleMethodOverride) + /pandas/core/indexes/multi.py:138:7 - error: Base classes for class "MultiIndexUInt32Engine" define method "get_indexer" in incompatible way +   Parameter 2 name mismatch: base parameter is named "values", override parameter is named "target" (reportIncompatibleMethodOverride) + /pandas/core/indexes/multi.py:148:7 - error: Base classes for class "MultiIndexUInt16Engine" define method "get_indexer" in incompatible way +   Parameter 2 name mismatch: base parameter is named "values", override parameter is named "target" (reportIncompatibleMethodOverride) + /pandas/core/indexes/multi.py:158:7 - error: Base classes for class "MultiIndexUInt8Engine" define method "get_indexer" in incompatible way +   Parameter 2 name mismatch: base parameter is named "values", override parameter is named "target" (reportIncompatibleMethodOverride) + /pandas/core/indexes/multi.py:168:7 - error: Base classes for class "MultiIndexPyIntEngine" define method "get_indexer" in incompatible way +   Parameter 2 name mismatch: base parameter is named "values", override parameter is named "target" (reportIncompatibleMethodOverride) + /pandas/core/indexes/multi.py:1477:9 - error: "_formatter_func" incorrectly overrides property of same name in class "Index" (reportIncompatibleMethodOverride) + /pandas/core/indexes/multi.py:1589:9 - error: Method "_set_names" overrides class "Index" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "values", override parameter is named "names" (reportIncompatibleMethodOverride) + /pandas/core/indexes/multi.py:1707:16 - error: Type "Any | int | integer[Any]" is not assignable to return type "int" +   Type "Any | int | integer[Any]" is not assignable to type "int" +     "integer[Any]" is not assignable to "int" (reportReturnType) + /pandas/core/indexes/multi.py:2859:9 - error: Method "sortlevel" overrides class "Index" in an incompatible manner +   Parameter 4 type mismatch: base parameter is type "Unknown | None", override parameter is type "bool" +     Type "Unknown | None" is not assignable to type "bool" +       "None" is not assignable to "bool" (reportIncompatibleMethodOverride) + /pandas/core/indexes/multi.py:3116:16 - error: Type "NDArray[signedinteger[Any]] | signedinteger[_NBitIntP] | ndarray[_AnyShape, dtype[intp]] | None" is not assignable to return type "int" +   Type "NDArray[signedinteger[Any]] | signedinteger[_NBitIntP] | ndarray[_AnyShape, dtype[intp]] | None" is not assignable to type "int" +     "ndarray[_AnyShape, dtype[intp]]" is not assignable to "int" (reportReturnType) + /pandas/core/indexes/multi.py:3244:12 - error: Invalid conditional operand of type "bool | NDArray[bool_] | NDFrame" +   Method __bool__ for type "NDFrame" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) + /pandas/core/indexes/multi.py:4158:9 - error: Method "_validate_fill_value" overrides class "Index" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "item" (reportIncompatibleMethodOverride) +/pandas/core/indexes/period.py + /pandas/core/indexes/period.py:165:5 - error: "_data" overrides symbol of same name in class "DatetimeIndexOpsMixin" +   Variable is mutable so its type is invariant +     Override type "PeriodArray" is not the same as base type "DatetimeArray | TimedeltaArray | PeriodArray" (reportIncompatibleVariableOverride) + /pandas/core/indexes/period.py:166:5 - error: "freq" incorrectly overrides property of same name in class "DatetimeIndexOpsMixin" (reportIncompatibleMethodOverride) + /pandas/core/indexes/period.py:167:5 - error: "dtype" incorrectly overrides property of same name in class "Index" (reportIncompatibleMethodOverride) + /pandas/core/indexes/period.py:243:34 - error: Argument of type "Self@PeriodIndex | Index | Series | Unknown | None" cannot be assigned to parameter "data" of type "AnyArrayLike | Sequence[Period | str | None]" in function "period_array" +   Type "Self@PeriodIndex | Index | Series | Unknown | None" is not assignable to type "AnyArrayLike | Sequence[Period | str | None]" +     Type "None" is not assignable to type "AnyArrayLike | Sequence[Period | str | None]" +       "None" is not assignable to "Sequence[Period | str | None]" +       "None" is not assignable to "ExtensionArray" +       "None" is not assignable to "ndarray[_AnyShape, dtype[Any]]" +       "None" is not assignable to "Index" +       "None" is not assignable to "Series" (reportArgumentType) + /pandas/core/indexes/period.py:518:16 - error: Type "Period | NaTType" is not assignable to return type "Period" +   Type "Period | NaTType" is not assignable to type "Period" +     "NaTType" is not assignable to "Period" (reportReturnType) + /pandas/core/indexes/period.py:530:20 - error: Cannot access attribute "asfreq" for class "NaTType" +   Attribute "asfreq" is unknown (reportAttributeAccessIssue) + /pandas/core/indexes/period.py:530:55 - error: Cannot access attribute "asfreq" for class "NaTType" +   Attribute "asfreq" is unknown (reportAttributeAccessIssue) +/pandas/core/indexes/range.py + /pandas/core/indexes/range.py:144:5 - error: "_values" incorrectly overrides property of same name in class "Index" (reportIncompatibleMethodOverride) + /pandas/core/indexes/range.py:808:9 - error: Method "sort_values" overrides class "Index" in an incompatible manner +   Override does not handle all overloads of base method (reportIncompatibleMethodOverride) + /pandas/core/indexes/range.py:1184:9 - error: Method "_concat" overrides class "Index" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "to_concat", override parameter is named "indexes" (reportIncompatibleMethodOverride) +/pandas/core/indexes/timedeltas.py + /pandas/core/indexes/timedeltas.py:134:5 - error: "_data" overrides symbol of same name in class "DatetimeTimedeltaMixin" +   Variable is mutable so its type is invariant +     Override type "TimedeltaArray" is not the same as base type "DatetimeArray | TimedeltaArray" (reportIncompatibleVariableOverride) +/pandas/core/indexing.py + /pandas/core/indexing.py:1430:24 - error: Argument of type "object" cannot be assigned to parameter "iterable" of type "Iterable[_T@list]" in function "__init__" +   "object" is incompatible with protocol "Iterable[_T@list]" +     "__iter__" is not present (reportArgumentType) + /pandas/core/indexing.py:1447:49 - error: Cannot access attribute "ndim" for class "list[Unknown]" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /pandas/core/indexing.py:1447:49 - error: Cannot access attribute "ndim" for class "object" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /pandas/core/indexing.py:1447:49 - error: Cannot access attribute "ndim" for class "tuple[Unknown, ...]" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /pandas/core/indexing.py:1539:69 - error: "Hashable" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /pandas/core/indexing.py:1546:28 - error: Argument of type "Unknown | Hashable | tuple[Unknown, ...] | tuple[()] | tuple[Unknown]" cannot be assigned to parameter "iterable" of type "Iterable[_T@list]" in function "__init__" +   Type "Unknown | Hashable | tuple[Unknown, ...] | tuple[()] | tuple[Unknown]" is not assignable to type "Iterable[_T@list]" +     "Hashable" is incompatible with protocol "Iterable[_T@list]" +       "__iter__" is not present (reportArgumentType) + /pandas/core/indexing.py:1637:35 - error: Cannot access attribute "_reduce" for class "NDArray[Unknown]" +   Attribute "_reduce" is unknown (reportAttributeAccessIssue) + /pandas/core/indexing.py:1638:35 - error: Cannot access attribute "_reduce" for class "NDArray[Unknown]" +   Attribute "_reduce" is unknown (reportAttributeAccessIssue) + /pandas/core/indexing.py:2019:60 - error: "__getitem__" method not defined on type "Hashable" (reportIndexIssue) + /pandas/core/indexing.py:2019:60 - error: "__getitem__" method not defined on type "slice[Any, Any, Any]" (reportIndexIssue) + /pandas/core/indexing.py:2033:45 - error: Argument of type "Hashable | slice[Any, Any, Any] | Unknown" cannot be assigned to parameter "loc" of type "int" in function "_setitem_single_column" +   Type "Hashable | slice[Any, Any, Any] | Unknown" is not assignable to type "int" +     "Hashable" is not assignable to "int" (reportArgumentType) +/pandas/core/interchange/dataframe.py + /pandas/core/interchange/dataframe.py:43:9 - error: Method "__dataframe__" overrides class "DataFrame" in an incompatible manner +   Return type mismatch: base method returns type "None", override returns type "PandasDataFrameXchg" +     "PandasDataFrameXchg" is not assignable to "None" (reportIncompatibleMethodOverride) +/pandas/core/internals/__init__.py + /pandas/core/internals/__init__.py:9:5 - warning: "Block" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /pandas/core/internals/__init__.py:11:5 - warning: "DatetimeTZBlock" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /pandas/core/internals/__init__.py:12:5 - warning: "ExtensionBlock" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) +/pandas/core/internals/api.py + /pandas/core/internals/api.py:82:5 - error: "values" overrides symbol of same name in class "DatetimeLikeBlock" +   Variable is mutable so its type is invariant +     Override type "DatetimeArray" is not the same as base type "DatetimeArray | TimedeltaArray" (reportIncompatibleVariableOverride) + /pandas/core/internals/api.py:113:57 - error: Argument of type "Unknown | None" cannot be assigned to parameter "ndim" of type "int" in function "extract_pandas_array" +   Type "Unknown | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /pandas/core/internals/api.py:133:13 - error: Argument of type "ArrayLike" cannot be assigned to parameter "values" of type "NDArray[datetime64[date | int | None]]" in function "_simple_new" +   Type "ArrayLike" is not assignable to type "NDArray[datetime64[date | int | None]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[datetime64[date | int | None]]]" (reportArgumentType) + /pandas/core/internals/api.py:165:12 - error: Type "Unknown | int | None" is not assignable to return type "int" +   Type "Unknown | int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportReturnType) +/pandas/core/internals/blocks.py + /pandas/core/internals/blocks.py:732:25 - error: Argument of type "Block" cannot be assigned to parameter "self" of type "Self@Block" in function "replace" +   Type "Block" is not assignable to type "Self@Block" (reportArgumentType) + /pandas/core/internals/blocks.py:879:16 - error: Type "list[Self@Block] | list[Block]" is not assignable to return type "list[Block]" +   Type "list[Self@Block] | list[Block]" is not assignable to type "list[Block]" +     "list[Self@Block]" is not assignable to "list[Block]" +       Type parameter "_T@list" is invariant, but "Self@Block" is not the same as "Block" +       Consider switching from "list" to "Sequence" which is covariant (reportReturnType) + /pandas/core/internals/blocks.py:1268:31 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /pandas/core/internals/blocks.py:1268:31 - error: Argument of type "tuple[slice[None, None, None], slice[int, int, None]]" cannot be assigned to parameter "item" of type "SequenceIndexer" in function "__getitem__" +   Type "tuple[slice[None, None, None], slice[int, int, None]]" is not assignable to type "SequenceIndexer" +     "tuple[slice[None, None, None], slice[int, int, None]]" is not assignable to "slice[Any, Any, Any]" +     "tuple[slice[None, None, None], slice[int, int, None]]" is not assignable to "list[int]" +     "tuple[slice[None, None, None], slice[int, int, None]]" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/internals/blocks.py:1339:13 - error: "mask" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/internals/blocks.py:1339:18 - error: "mask" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/internals/blocks.py:1342:32 - error: "mask" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/internals/blocks.py:1344:38 - error: "mask" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/internals/blocks.py:1614:5 - error: "values" overrides symbol of same name in class "Block" +   Variable is mutable so its type is invariant +     Override type "ExtensionArray" is not the same as base type "ndarray[_AnyShape, dtype[Any]] | ExtensionArray" (reportIncompatibleVariableOverride) + /pandas/core/internals/blocks.py:1740:29 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /pandas/core/internals/blocks.py:1740:29 - error: Argument of type "tuple[slice[None, None, None], slice[int, int, None]]" cannot be assigned to parameter "item" of type "SequenceIndexer" in function "__getitem__" +   Type "tuple[slice[None, None, None], slice[int, int, None]]" is not assignable to type "SequenceIndexer" +     "tuple[slice[None, None, None], slice[int, int, None]]" is not assignable to "slice[Any, Any, Any]" +     "tuple[slice[None, None, None], slice[int, int, None]]" is not assignable to "list[int]" +     "tuple[slice[None, None, None], slice[int, int, None]]" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/internals/blocks.py:1803:29 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /pandas/core/internals/blocks.py:1803:29 - error: Argument of type "tuple[slice[None, None, None], slice[int, int, None]]" cannot be assigned to parameter "item" of type "SequenceIndexer" in function "__getitem__" +   Type "tuple[slice[None, None, None], slice[int, int, None]]" is not assignable to type "SequenceIndexer" +     "tuple[slice[None, None, None], slice[int, int, None]]" is not assignable to "slice[Any, Any, Any]" +     "tuple[slice[None, None, None], slice[int, int, None]]" is not assignable to "list[int]" +     "tuple[slice[None, None, None], slice[int, int, None]]" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/internals/blocks.py:1932:9 - error: Method "iget" overrides class "Block" in an incompatible manner +   Return type mismatch: base method returns type "ndarray[_AnyShape, dtype[Any]]", override returns type "ExtensionArray | Any" +     Type "ExtensionArray | Any" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +       "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportIncompatibleMethodOverride) + /pandas/core/internals/blocks.py:2091:9 - error: Method "_unstack" overrides class "Block" in an incompatible manner +   Return type mismatch: base method returns type "tuple[list[Block], Unknown]", override returns type "tuple[list[ExtensionBlock], Unknown]" +     "tuple[list[ExtensionBlock], Unknown]" is not assignable to "tuple[list[Block], Unknown]" +       Tuple entry 1 is incorrect type +         "list[ExtensionBlock]" is not assignable to "list[Block]" +           Type parameter "_T@list" is invariant, but "ExtensionBlock" is not the same as "Block" +           Consider switching from "list" to "Sequence" which is covariant (reportIncompatibleMethodOverride) + /pandas/core/internals/blocks.py:2136:5 - error: "values" overrides symbol of same name in class "Block" +   Variable is mutable so its type is invariant +     Override type "ndarray[_AnyShape, dtype[Any]]" is not the same as base type "ndarray[_AnyShape, dtype[Any]] | ExtensionArray" (reportIncompatibleVariableOverride) + /pandas/core/internals/blocks.py:2166:5 - error: "values" overrides symbol of same name in class "EABackedBlock" +   Variable is mutable so its type is invariant +     Override type "NDArrayBackedExtensionArray" is not the same as base type "ExtensionArray" (reportIncompatibleVariableOverride) + /pandas/core/internals/blocks.py:2180:5 - error: "values" overrides symbol of same name in class "NDArrayBackedExtensionBlock" +   Variable is mutable so its type is invariant +     Override type "DatetimeArray | TimedeltaArray" is not the same as base type "NDArrayBackedExtensionArray" (reportIncompatibleVariableOverride) +/pandas/core/internals/construction.py + /pandas/core/internals/construction.py:243:29 - error: Cannot access attribute "reshape" for class "ExtensionArray" +   Attribute "reshape" is unknown (reportAttributeAccessIssue) + /pandas/core/internals/construction.py:254:29 - error: Argument of type "ndarray[_AnyShape, dtype[Any]] | ExtensionArray | Unknown" cannot be assigned to parameter "values" of type "ndarray[_AnyShape, dtype[Any]]" in function "_ensure_2d" +   Type "ndarray[_AnyShape, dtype[Any]] | ExtensionArray | Unknown" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/internals/construction.py:286:39 - error: Argument of type "ArrayLike | ndarray[tuple[int, int], dtype[Any]] | Any | Unknown | Series" cannot be assigned to parameter "values" of type "ndarray[_AnyShape, dtype[Any]]" in function "_check_values_indices_shape_match" +   Type "ArrayLike | ndarray[tuple[int, int], dtype[Any]] | Any | Unknown | Series" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/internals/construction.py:417:21 - error: Argument of type "object | Unknown" cannot be assigned to parameter "value" of type "Scalar" in function "construct_1d_arraylike_from_scalar" +   Type "object | Unknown" is not assignable to type "Scalar" +     Type "object" is not assignable to type "Scalar" +       "object" is not assignable to "str" +       "object" is not assignable to "bytes" +       "object" is not assignable to "date" +       "object" is not assignable to "datetime" +       "object" is not assignable to "timedelta" +       "object" is not assignable to "datetime64[date | int | None]" + ... (reportArgumentType) + /pandas/core/internals/construction.py:628:34 - error: "index" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/internals/construction.py:631:35 - error: "index" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/internals/construction.py:637:25 - error: "index" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/internals/construction.py:768:24 - error: Type "tuple[list[ndarray[_AnyShape, Unknown]], Index]" is not assignable to return type "tuple[list[ArrayLike], Index]" +   "list[ndarray[_AnyShape, Unknown]]" is not assignable to "list[ArrayLike]" +     Type parameter "_T@list" is invariant, but "ndarray[_AnyShape, Unknown]" is not the same as "ArrayLike" +     Consider switching from "list" to "Sequence" which is covariant (reportReturnType) + /pandas/core/internals/construction.py:776:16 - error: Type "tuple[list[ndarray[_AnyShape, Unknown]], Index]" is not assignable to return type "tuple[list[ArrayLike], Index]" +   "list[ndarray[_AnyShape, Unknown]]" is not assignable to "list[ArrayLike]" +     Type parameter "_T@list" is invariant, but "ndarray[_AnyShape, Unknown]" is not the same as "ArrayLike" +     Consider switching from "list" to "Sequence" which is covariant (reportReturnType) + /pandas/core/internals/construction.py:779:31 - error: Argument of type "Unknown | ndarray[Unknown, Unknown]" cannot be assigned to parameter "data" of type "list[tuple[Unknown, ...] | list[Unknown]]" in function "_list_to_arrays" +   Type "Unknown | ndarray[Unknown, Unknown]" is not assignable to type "list[tuple[Unknown, ...] | list[Unknown]]" +     "ndarray[Unknown, Unknown]" is not assignable to "list[tuple[Unknown, ...] | list[Unknown]]" (reportArgumentType) + /pandas/core/internals/construction.py:781:48 - error: Argument of type "Unknown | ndarray[Unknown, Unknown]" cannot be assigned to parameter "data" of type "list[dict[Unknown, Unknown]]" in function "_list_of_dict_to_arrays" +   Type "Unknown | ndarray[Unknown, Unknown]" is not assignable to type "list[dict[Unknown, Unknown]]" +     "ndarray[Unknown, Unknown]" is not assignable to "list[dict[Unknown, Unknown]]" (reportArgumentType) + /pandas/core/internals/construction.py:783:50 - error: Argument of type "Unknown | ndarray[Unknown, Unknown]" cannot be assigned to parameter "data" of type "list[Unknown]" in function "_list_of_series_to_arrays" +   Type "Unknown | ndarray[Unknown, Unknown]" is not assignable to type "list[Unknown]" +     "ndarray[Unknown, Unknown]" is not assignable to "list[Unknown]" (reportArgumentType) + /pandas/core/internals/construction.py:787:31 - error: Argument of type "list[tuple[Unknown | Any, ...]]" cannot be assigned to parameter "data" of type "list[tuple[Unknown, ...] | list[Unknown]]" in function "_list_to_arrays" +   "list[tuple[Unknown | Any, ...]]" is not assignable to "list[tuple[Unknown, ...] | list[Unknown]]" +     Type parameter "_T@list" is invariant, but "tuple[Unknown | Any, ...]" is not the same as "tuple[Unknown, ...] | list[Unknown]" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /pandas/core/internals/construction.py:941:16 - error: Invalid conditional operand of type "Index | bool | " +   Method __bool__ for type "Index" returns type "NoReturn" rather than "bool" +   Method __bool__ for type "" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) +/pandas/core/internals/managers.py + /pandas/core/internals/managers.py:235:18 - error: Cannot access attribute "_rebuild_blknos_and_blklocs" for class "BaseBlockManager*" +   Attribute "_rebuild_blknos_and_blklocs" is unknown (reportAttributeAccessIssue) + /pandas/core/internals/managers.py:246:18 - error: Cannot access attribute "_rebuild_blknos_and_blklocs" for class "BaseBlockManager*" +   Attribute "_rebuild_blknos_and_blklocs" is unknown (reportAttributeAccessIssue) + /pandas/core/internals/managers.py:572:30 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /pandas/core/internals/managers.py:572:30 - error: Argument of type "NDArray[intp] | list[ndarray[_AnyShape, dtype[intp]]]" cannot be assigned to parameter "item" of type "SequenceIndexer" in function "__getitem__" +   Type "NDArray[intp] | list[ndarray[_AnyShape, dtype[intp]]]" is not assignable to type "SequenceIndexer" +     Type "list[ndarray[_AnyShape, dtype[intp]]]" is not assignable to type "SequenceIndexer" +       "list[ndarray[_AnyShape, dtype[intp]]]" is not assignable to "slice[Any, Any, Any]" +       "list[ndarray[_AnyShape, dtype[intp]]]" is not assignable to "list[int]" +         Type parameter "_T@list" is invariant, but "ndarray[_AnyShape, dtype[intp]]" is not the same as "int" +         Consider switching from "list" to "Sequence" which is covariant +       "list[ndarray[_AnyShape, dtype[intp]]]" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/internals/managers.py:909:49 - error: Argument of type "slice[Any, Any, Any] | ndarray[_AnyShape, dtype[Any]] | NDArray[intp]" cannot be assigned to parameter "slicer" of type "slice[Any, Any, Any]" in function "getitem_block_columns" +   Type "slice[Any, Any, Any] | ndarray[_AnyShape, dtype[Any]] | NDArray[intp]" is not assignable to type "slice[Any, Any, Any]" +     "ndarray[_AnyShape, dtype[intp]]" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /pandas/core/internals/managers.py:918:44 - error: Argument of type "slice[Any, Any, Any] | ndarray[_AnyShape, dtype[Any]] | NDArray[intp]" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "slice[Any, Any, Any] | ndarray[_AnyShape, dtype[Any]] | NDArray[intp]" is not assignable to type "Iterable[Any]" +     "slice[Any, Any, Any]" is incompatible with protocol "Iterable[Any]" +       "__iter__" is not present (reportArgumentType) + /pandas/core/internals/managers.py:918:44 - error: Argument of type "slice[Any, Any, Any] | ndarray[_AnyShape, dtype[Any]] | NDArray[intp]" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "slice[Any, Any, Any] | ndarray[_AnyShape, dtype[Any]] | NDArray[intp]" is not assignable to type "Iterable[_T@enumerate]" +     "slice[Any, Any, Any]" is incompatible with protocol "Iterable[_T@enumerate]" +       "__iter__" is not present (reportArgumentType) + /pandas/core/internals/managers.py:927:25 - error: Argument of type "slice[Any, Any, Any] | ndarray[_AnyShape, dtype[Any]] | NDArray[intp]" cannot be assigned to parameter "indexer" of type "NDArray[intp]" in function "take_nd" +   Type "slice[Any, Any, Any] | ndarray[_AnyShape, dtype[Any]] | NDArray[intp]" is not assignable to type "NDArray[intp]" +     "slice[Any, Any, Any]" is not assignable to "ndarray[_AnyShape, dtype[intp]]" (reportArgumentType) + /pandas/core/internals/managers.py:1058:5 - error: "ndim" incorrectly overrides property of same name in class "BaseBlockManager" (reportIncompatibleMethodOverride) + /pandas/core/internals/managers.py:1058:12 - error: Type "Literal[2]" is not assignable to declared type "property" +   "Literal[2]" is not assignable to "property" (reportAssignmentType) + /pandas/core/internals/managers.py:1656:9 - error: Method "_equal_values" overrides class "BaseBlockManager" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "BaseBlockManager", override parameter is type "BlockManager" +     "BaseBlockManager" is not assignable to "BlockManager" (reportIncompatibleMethodOverride) + /pandas/core/internals/managers.py:1975:5 - error: "is_single_block" incorrectly overrides property of same name in class "BaseBlockManager" (reportIncompatibleMethodOverride) + /pandas/core/internals/managers.py:1975:23 - error: Type "Literal[True]" is not assignable to declared type "property" +   "Literal[True]" is not assignable to "property" (reportAssignmentType) + /pandas/core/internals/managers.py:2231:9 - error: Method "_equal_values" overrides class "BaseBlockManager" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "BaseBlockManager", override parameter is type "SingleBlockManager" +     "BaseBlockManager" is not assignable to "SingleBlockManager" (reportIncompatibleMethodOverride) + /pandas/core/internals/managers.py:2376:63 - error: Argument of type "tuple[Any, ...]" cannot be assigned to parameter "val" of type "int | slice[Any, Any, Any] | ndarray[_AnyShape, dtype[Any]]" in function "__init__" +   Type "tuple[Any, ...]" is not assignable to type "int | slice[Any, Any, Any] | ndarray[_AnyShape, dtype[Any]]" +     "tuple[Any, ...]" is not assignable to "int" +     "tuple[Any, ...]" is not assignable to "slice[Any, Any, Any]" +     "tuple[Any, ...]" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) +/pandas/core/missing.py + /pandas/core/missing.py:269:26 - error: "idxpos" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/missing.py:608:24 - error: Argument of type "Unknown | str | None" cannot be assigned to parameter "kind" of type "_Interp1dKind | int" in function "__init__" +   Type "Unknown | str | None" is not assignable to type "_Interp1dKind | int" +     Type "str" is not assignable to type "_Interp1dKind | int" +       "str" is not assignable to "int" +       "str" is not assignable to type "Literal['linear']" +       "str" is not assignable to type "Literal['nearest']" +       "str" is not assignable to type "Literal['nearest-up']" +       "str" is not assignable to type "Literal['zero']" +       "str" is not assignable to type "Literal['slinear']" + ... (reportArgumentType) + /pandas/core/missing.py:608:41 - error: Argument of type "Unknown | None" cannot be assigned to parameter "fill_value" of type "_Interp1dFillValue | Literal['extrapolate']" in function "__init__" +   Type "Unknown | None" is not assignable to type "_Interp1dFillValue | Literal['extrapolate']" +     Type "None" is not assignable to type "_Interp1dFillValue | Literal['extrapolate']" +       "None" is not assignable to "float" +       "None" is not assignable to "floating[Any]" +       "None" is not assignable to "integer[Any]" +       "None" is not assignable to "numpy.bool[builtins.bool]" +       "None" is incompatible with protocol "_CanArrayND[floating_co]" +         "__len__" is not present + ... (reportArgumentType) + /pandas/core/missing.py:613:12 - error: Invalid conditional operand of type "NDArray[bool_] | Unknown | NDFrame | Literal[True]" +   Method __bool__ for type "NDFrame" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) + /pandas/core/missing.py:613:28 - error: Operator "<=" not supported for "None" (reportOptionalOperand) + /pandas/core/missing.py:617:53 - error: Argument of type "Unknown | None" cannot be assigned to parameter "k" of type "_Degree" in function "__init__" +   Type "Unknown | None" is not assignable to type "_Degree" +     Type "None" is not assignable to type "_Degree" +       "None" is not assignable to "Literal[1]" +       "None" is not assignable to "Literal[2]" +       "None" is not assignable to "Literal[3]" +       "None" is not assignable to "Literal[4]" +       "None" is not assignable to "Literal[5]" (reportArgumentType) + /pandas/core/missing.py:873:12 - error: Type "Unknown | NDArray[bool_] | None" is not assignable to return type "NDArray[bool_]" +   Type "Unknown | NDArray[bool_] | None" is not assignable to type "NDArray[bool_]" +     "None" is not assignable to "ndarray[_AnyShape, dtype[bool_]]" (reportReturnType) +/pandas/core/nanops.py + /pandas/core/nanops.py:140:30 - error: Object of type "None" cannot be called (reportOptionalCall) + /pandas/core/nanops.py:183:16 - error: Type "numpy.bool[builtins.bool]" is not assignable to return type "bool" +   "numpy.bool[builtins.bool]" is not assignable to "bool" (reportReturnType) + /pandas/core/nanops.py:441:16 - error: Type "object | Any | float | Literal[0, False]" is not assignable to return type "Scalar | ndarray[_AnyShape, dtype[Any]]" +   Type "object | Any | float | Literal[0, False]" is not assignable to type "Scalar | ndarray[_AnyShape, dtype[Any]]" +     Type "object" is not assignable to type "Scalar | ndarray[_AnyShape, dtype[Any]]" +       "object" is not assignable to "str" +       "object" is not assignable to "bytes" +       "object" is not assignable to "date" +       "object" is not assignable to "datetime" +       "object" is not assignable to "timedelta" +       "object" is not assignable to "datetime64[date | int | None]" + ... (reportReturnType) + /pandas/core/nanops.py:443:16 - error: Type "object | Any | float | Literal[0, False]" is not assignable to return type "Scalar | ndarray[_AnyShape, dtype[Any]]" +   Type "object | Any | float | Literal[0, False]" is not assignable to type "Scalar | ndarray[_AnyShape, dtype[Any]]" +     Type "object" is not assignable to type "Scalar | ndarray[_AnyShape, dtype[Any]]" +       "object" is not assignable to "str" +       "object" is not assignable to "bytes" +       "object" is not assignable to "date" +       "object" is not assignable to "datetime" +       "object" is not assignable to "timedelta" +       "object" is not assignable to "datetime64[date | int | None]" + ... (reportReturnType) + /pandas/core/nanops.py:834:15 - error: Type "float | floating[Any]" is not assignable to declared type "float | ndarray[_AnyShape, dtype[Any]]" +   Type "float | floating[Any]" is not assignable to type "float | ndarray[_AnyShape, dtype[Any]]" +     Type "floating[Any]" is not assignable to type "float | ndarray[_AnyShape, dtype[Any]]" +       "floating[Any]" is not assignable to "float" +       "floating[Any]" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportAssignmentType) + /pandas/core/nanops.py:1297:12 - error: Type "NDArray[Any] | Any" is not assignable to return type "float" +   Type "NDArray[Any] | Any" is not assignable to type "float" +     "ndarray[_AnyShape, dtype[Any]]" is not assignable to "float" (reportReturnType) + /pandas/core/nanops.py:1416:12 - error: Type "NDArray[Any] | Any" is not assignable to return type "float" +   Type "NDArray[Any] | Any" is not assignable to type "float" +     "ndarray[_AnyShape, dtype[Any]]" is not assignable to "float" (reportReturnType) + /pandas/core/nanops.py:1525:18 - error: Cannot access attribute "astype" for class "int" +   Attribute "astype" is unknown (reportAttributeAccessIssue) +/pandas/core/ops/array_ops.py + /pandas/core/ops/array_ops.py:331:10 - error: Invalid conditional operand of type "bool | NDArray[bool_] | NDFrame" +   Method __bool__ for type "NDFrame" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) + /pandas/core/ops/array_ops.py:340:44 - error: Argument of type "ndarray[_AnyShape, dtype[Unknown]] | ndarray[Unknown, Unknown] | ExtensionArray | object | Timedelta | BaseOffset | Timestamp" cannot be assigned to parameter "right" of type "ArrayLike | Scalar | list[Unknown]" in function "invalid_comparison" +   Type "ndarray[_AnyShape, dtype[Unknown]] | ndarray[Unknown, Unknown] | ExtensionArray | object | Timedelta | BaseOffset | Timestamp" is not assignable to type "ArrayLike | Scalar | list[Unknown]" +     Type "object" is not assignable to type "ArrayLike | Scalar | list[Unknown]" +       "object" is not assignable to "ExtensionArray" +       "object" is not assignable to "ndarray[_AnyShape, dtype[Any]]" +       "object" is not assignable to "list[Unknown]" +       "object" is not assignable to "str" +       "object" is not assignable to "bytes" +       "object" is not assignable to "date" + ... (reportArgumentType) +/pandas/core/resample.py + /pandas/core/resample.py:178:27 - error: "_grouper" overrides symbol of same name in class "BaseGroupBy" +   Variable is mutable so its type is invariant +     Override type "BinGrouper" is not the same as base type "BaseGrouper" (reportIncompatibleVariableOverride) + /pandas/core/resample.py:1048:55 - error: "final_index" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/resample.py:1051:37 - error: "final_index" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/resample.py:2110:9 - error: Method "_upsample" overrides class "Resampler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "f", override parameter is named "method" (reportIncompatibleMethodOverride) + /pandas/core/resample.py:2477:31 - error: Cannot assign to attribute "origin" for class "TimeGrouper*" +   Type "Timestamp | NaTType" is not assignable to type "TimeGrouperOrigin" +     Type "NaTType" is not assignable to type "TimeGrouperOrigin" +       "NaTType" is not assignable to "Timestamp" +       "NaTType" is not assignable to "Literal['epoch']" +       "NaTType" is not assignable to "Literal['start']" +       "NaTType" is not assignable to "Literal['start_day']" +       "NaTType" is not assignable to "Literal['end']" +       "NaTType" is not assignable to "Literal['end_day']" (reportAttributeAccessIssue) + /pandas/core/resample.py:2574:31 - error: Argument of type "Unknown | None" cannot be assigned to parameter "freq" of type "Frequency | Literal[_NoDefault.no_default]" in function "__new__" +   Type "Unknown | None" is not assignable to type "Frequency | Literal[_NoDefault.no_default]" +     Type "None" is not assignable to type "Frequency | Literal[_NoDefault.no_default]" +       "None" is not assignable to "str" +       "None" is not assignable to "BaseOffset" +       "None" is not assignable to "Literal[_NoDefault.no_default]" (reportArgumentType) + /pandas/core/resample.py:2579:13 - error: Argument of type "Unknown | ExtensionArray | NDArray[Any] | Any" cannot be assigned to parameter "first" of type "Timestamp" in function "_get_timestamp_range_edges" +   Type "Unknown | ExtensionArray | NDArray[Any] | Any" is not assignable to type "Timestamp" +     "ExtensionArray" is not assignable to "Timestamp" (reportArgumentType) + /pandas/core/resample.py:2580:13 - error: Argument of type "Unknown | ExtensionArray | NDArray[Any] | Any" cannot be assigned to parameter "last" of type "Timestamp" in function "_get_timestamp_range_edges" +   Type "Unknown | ExtensionArray | NDArray[Any] | Any" is not assignable to type "Timestamp" +     "ExtensionArray" is not assignable to "Timestamp" (reportArgumentType) + /pandas/core/resample.py:2581:13 - error: Argument of type "Unknown | None" cannot be assigned to parameter "freq" of type "BaseOffset" in function "_get_timestamp_range_edges" +   Type "Unknown | None" is not assignable to type "BaseOffset" +     "None" is not assignable to "BaseOffset" (reportArgumentType) + /pandas/core/resample.py:2583:20 - error: Argument of type "str" cannot be assigned to parameter "closed" of type "Literal['right', 'left']" in function "_get_timestamp_range_edges" +   Type "str" is not assignable to type "Literal['right', 'left']" +     "str" is not assignable to type "Literal['right']" +     "str" is not assignable to type "Literal['left']" (reportArgumentType) + /pandas/core/resample.py:2585:20 - error: Argument of type "Timedelta | NaTType | None" cannot be assigned to parameter "offset" of type "Timedelta | None" in function "_get_timestamp_range_edges" +   Type "Timedelta | NaTType | None" is not assignable to type "Timedelta | None" +     Type "NaTType" is not assignable to type "Timedelta | None" +       "NaTType" is not assignable to "Timedelta" +       "NaTType" is not assignable to "None" (reportArgumentType) + /pandas/core/resample.py:2637:22 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/resample.py:2637:62 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/resample.py:2689:13 - error: Operator "+=" not supported for types "Unknown | ExtensionArray | NDArray[Any] | Any" and "Tick | Day" +   Operator "+" not supported for types "ExtensionArray" and "Tick" +   Operator "+" not supported for types "ExtensionArray" and "Day" (reportOperatorIssue) + /pandas/core/resample.py:2699:16 - error: No overloads for "searchsorted" match the provided arguments (reportCallIssue) + /pandas/core/resample.py:2699:49 - error: Argument of type "str" cannot be assigned to parameter "side" of type "Literal['left', 'right']" in function "searchsorted" +   Type "str" is not assignable to type "Literal['left', 'right']" +     "str" is not assignable to type "Literal['left']" +     "str" is not assignable to type "Literal['right']" (reportArgumentType) + /pandas/core/resample.py:2757:31 - error: "n" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/core/resample.py:2759:26 - error: Cannot access attribute "asfreq" for class "ExtensionArray" +   Attribute "asfreq" is unknown (reportAttributeAccessIssue) + /pandas/core/resample.py:2759:26 - error: Cannot access attribute "asfreq" for class "NDArray[Any]" +   Attribute "asfreq" is unknown (reportAttributeAccessIssue) + /pandas/core/resample.py:2760:24 - error: Cannot access attribute "asfreq" for class "ExtensionArray" +   Attribute "asfreq" is unknown (reportAttributeAccessIssue) + /pandas/core/resample.py:2760:24 - error: Cannot access attribute "asfreq" for class "NDArray[Any]" +   Attribute "asfreq" is unknown (reportAttributeAccessIssue) + /pandas/core/resample.py:2772:24 - error: Argument of type "str" cannot be assigned to parameter "closed" of type "Literal['right', 'left']" in function "_get_period_range_edges" +   Type "str" is not assignable to type "Literal['right', 'left']" +     "str" is not assignable to type "Literal['right']" +     "str" is not assignable to type "Literal['left']" (reportArgumentType) + /pandas/core/resample.py:2774:24 - error: Argument of type "Timedelta | NaTType | None" cannot be assigned to parameter "offset" of type "Timedelta | None" in function "_get_period_range_edges" +   Type "Timedelta | NaTType | None" is not assignable to type "Timedelta | None" +     Type "NaTType" is not assignable to type "Timedelta | None" +       "NaTType" is not assignable to "Timedelta" +       "NaTType" is not assignable to "None" (reportArgumentType) + /pandas/core/resample.py:2802:74 - error: Argument of type "bool_ | Literal[0]" cannot be assigned to parameter "nat_count" of type "int" in function "_insert_nat_bin" +   Type "bool_ | Literal[0]" is not assignable to type "int" +     "numpy.bool[builtins.bool]" is not assignable to "int" (reportArgumentType) + /pandas/core/resample.py:2893:22 - error: Type "Timestamp | NaTType" is not assignable to declared type "TimeGrouperOrigin" +   Type "Timestamp | NaTType" is not assignable to type "TimeGrouperOrigin" +     Type "NaTType" is not assignable to type "TimeGrouperOrigin" +       "NaTType" is not assignable to "Timestamp" +       "NaTType" is not assignable to "Literal['epoch']" +       "NaTType" is not assignable to "Literal['start']" +       "NaTType" is not assignable to "Literal['start_day']" +       "NaTType" is not assignable to "Literal['end']" +       "NaTType" is not assignable to "Literal['end_day']" (reportAssignmentType) + /pandas/core/resample.py:2909:21 - error: Type "Timestamp | NaTType" is not assignable to declared type "Timestamp" +   Type "Timestamp | NaTType" is not assignable to type "Timestamp" +     "NaTType" is not assignable to "Timestamp" (reportAssignmentType) + /pandas/core/resample.py:2911:21 - error: Type "Timestamp | NaTType" is not assignable to declared type "Timestamp" +   Type "Timestamp | NaTType" is not assignable to type "Timestamp" +     "NaTType" is not assignable to "Timestamp" (reportAssignmentType) + /pandas/core/resample.py:2913:16 - error: Type "Timestamp | NaTType" is not assignable to declared type "Timestamp" +   Type "Timestamp | NaTType" is not assignable to type "Timestamp" +     "NaTType" is not assignable to "Timestamp" (reportAssignmentType) + /pandas/core/resample.py:3025:31 - error: Operator "*" not supported for types "signedinteger[_64Bit] | int" and "Tick" +   Operator "*" not supported for types "signedinteger[_64Bit]" and "Tick" (reportOperatorIssue) + /pandas/core/resample.py:3073:12 - error: Type "tuple[NaTType | Timestamp, NaTType | Timestamp]" is not assignable to return type "tuple[Timestamp, Timestamp]" +   Type "NaTType | Timestamp" is not assignable to type "Timestamp" +     "NaTType" is not assignable to "Timestamp" +   Type "NaTType | Timestamp" is not assignable to type "Timestamp" +     "NaTType" is not assignable to "Timestamp" (reportReturnType) +/pandas/core/reshape/concat.py + /pandas/core/reshape/concat.py:802:17 - error: Argument of type "HashableT@_clean_keys_and_objs | Series | DataFrame | Unknown" cannot be assigned to parameter "key" of type "Series | DataFrame" in function "__getitem__" +   Type "HashableT@_clean_keys_and_objs | Series | DataFrame | Unknown" is not assignable to type "Series | DataFrame" +     Type "HashableT@_clean_keys_and_objs" is not assignable to type "Series | DataFrame" +       "Hashable*" is not assignable to "Series" +       "Hashable*" is not assignable to "DataFrame" (reportArgumentType) + /pandas/core/reshape/concat.py:802:17 - error: Argument of type "HashableT@_clean_keys_and_objs | Series | DataFrame | Unknown" cannot be assigned to parameter "key" of type "HashableT@_clean_keys_and_objs" in function "__getitem__" +   Type "HashableT@_clean_keys_and_objs | Series | DataFrame | Unknown" is not assignable to type "HashableT@_clean_keys_and_objs" (reportArgumentType) +/pandas/core/reshape/merge.py + /pandas/core/reshape/merge.py:2240:12 - error: Type "tuple[FrozenList | list[Unknown], FrozenList | list[Unknown], Any]" is not assignable to return type "tuple[FrozenList, FrozenList, FrozenList]" +   Type "FrozenList | list[Unknown]" is not assignable to type "FrozenList" +     "list[Unknown]" is not assignable to "FrozenList" +   Type "FrozenList | list[Unknown]" is not assignable to type "FrozenList" +     "list[Unknown]" is not assignable to "FrozenList" (reportReturnType) + /pandas/core/reshape/merge.py:2627:20 - error: Object of type "None" cannot be called (reportOptionalCall) + /pandas/core/reshape/merge.py:2638:20 - error: Object of type "None" cannot be called (reportOptionalCall) + /pandas/core/reshape/merge.py:2920:32 - error: Argument of type "ArrayLike" cannot be assigned to parameter "values" of type "ndarray[_AnyShape, dtype[Any]]" in function "factorize" +   Type "ArrayLike" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/reshape/merge.py:2922:48 - error: Argument of type "ArrayLike" cannot be assigned to parameter "values" of type "ndarray[_AnyShape, dtype[Any]]" in function "hash_inner_join" +   Type "ArrayLike" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/reshape/merge.py:2925:36 - error: Argument of type "ArrayLike" cannot be assigned to parameter "values" of type "ndarray[_AnyShape, dtype[Any]]" in function "factorize" +   Type "ArrayLike" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/reshape/merge.py:2927:32 - error: Argument of type "ArrayLike" cannot be assigned to parameter "values" of type "ndarray[_AnyShape, dtype[Any]]" in function "factorize" +   Type "ArrayLike" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/reshape/merge.py:2928:32 - error: Argument of type "ArrayLike" cannot be assigned to parameter "values" of type "ndarray[_AnyShape, dtype[Any]]" in function "factorize" +   Type "ArrayLike" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "ExtensionArray" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) +/pandas/core/reshape/pivot.py + /pandas/core/reshape/pivot.py:403:30 - error: "values_multi" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/reshape/pivot.py:412:12 - error: Type "DataFrame | Any | Unknown | Series" is not assignable to return type "DataFrame" +   Type "DataFrame | Any | Unknown | Series" is not assignable to type "DataFrame" +     "Series" is not assignable to "DataFrame" (reportReturnType) + /pandas/core/reshape/pivot.py:498:22 - error: Argument of type "DtypeObj | Unknown" cannot be assigned to parameter "iterable" of type "Iterable[_T@set]" in function "__init__" +   Type "DtypeObj | Unknown" is not assignable to type "Iterable[_T@set]" +     "ExtensionDtype" is incompatible with protocol "Iterable[_T@set]" +       "__iter__" is not present (reportArgumentType) + /pandas/core/reshape/pivot.py:592:26 - error: Argument of type "list[Unknown | Hashable]" cannot be assigned to parameter "tuples" of type "Iterable[tuple[Hashable, ...]]" in function "from_tuples" +   Type "Unknown | Hashable" is not assignable to type "tuple[Hashable, ...]" +     "Hashable" is not assignable to "tuple[Hashable, ...]" (reportArgumentType) +/pandas/core/reshape/tile.py + /pandas/core/reshape/tile.py:420:23 - error: Operator "-" not supported for types "Unknown | ExtensionArray | NDArray[Any] | Any" and "NaTType | Timedelta" +   Operator "-" not supported for types "ExtensionArray" and "NaTType" +   Operator "-" not supported for types "ExtensionArray" and "Timedelta" (reportOperatorIssue) + /pandas/core/reshape/tile.py:420:36 - error: Operator "+" not supported for types "Unknown | ExtensionArray | NDArray[Any] | Any" and "NaTType | Timedelta" +   Operator "+" not supported for types "ExtensionArray" and "NaTType" +   Operator "+" not supported for types "ExtensionArray" and "Timedelta" (reportOperatorIssue) + /pandas/core/reshape/tile.py:423:13 - error: Operator "-=" not supported for types "Unknown | ExtensionArray | NDArray[Any] | Any" and "Unknown | float" +   Operator "-" not supported for types "ExtensionArray" and "float" (reportOperatorIssue) + /pandas/core/reshape/tile.py:423:31 - error: Argument of type "Unknown | ExtensionArray | NDArray[Any] | Any" cannot be assigned to parameter "x" of type "SupportsAbs[_T@abs]" in function "abs" +   Type "Unknown | ExtensionArray | NDArray[Any] | Any" is not assignable to type "SupportsAbs[_T@abs]" +     "ExtensionArray" is incompatible with protocol "SupportsAbs[_T@abs]" +       "__abs__" is not present (reportArgumentType) + /pandas/core/reshape/tile.py:424:13 - error: Operator "+=" not supported for types "Unknown | ExtensionArray | NDArray[Any] | Any" and "Unknown | float" +   Operator "+" not supported for types "ExtensionArray" and "float" (reportOperatorIssue) + /pandas/core/reshape/tile.py:424:31 - error: Argument of type "Unknown | ExtensionArray | NDArray[Any] | Any" cannot be assigned to parameter "x" of type "SupportsAbs[_T@abs]" in function "abs" +   Type "Unknown | ExtensionArray | NDArray[Any] | Any" is not assignable to type "SupportsAbs[_T@abs]" +     "ExtensionArray" is incompatible with protocol "SupportsAbs[_T@abs]" +       "__abs__" is not present (reportArgumentType) + /pandas/core/reshape/tile.py:440:20 - error: No overloads for "linspace" match the provided arguments (reportCallIssue) + /pandas/core/reshape/tile.py:440:32 - error: Argument of type "Unknown | ExtensionArray | NDArray[Any] | Any" cannot be assigned to parameter "start" of type "_ArrayLikeComplex_co" in function "linspace" +   Type "Unknown | ExtensionArray | NDArray[Any] | Any" is not assignable to type "_ArrayLikeComplex_co" +     Type "ExtensionArray" is not assignable to type "_ArrayLikeComplex_co" +       "ExtensionArray" is incompatible with protocol "_SupportsArray[dtype[numpy.bool[builtins.bool] | number[Any, int | float | complex]]]" +         "__array__" is not present +       "ExtensionArray" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[numpy.bool[builtins.bool] | number[Any, int | float | complex]]]]" +         "__reversed__" is not present +         "count" is not present +         "index" is not present + ... (reportArgumentType) + /pandas/core/reshape/tile.py:440:36 - error: Argument of type "Unknown | ExtensionArray | NDArray[Any] | Any" cannot be assigned to parameter "stop" of type "_ArrayLikeComplex_co" in function "linspace" +   Type "Unknown | ExtensionArray | NDArray[Any] | Any" is not assignable to type "_ArrayLikeComplex_co" +     Type "ExtensionArray" is not assignable to type "_ArrayLikeComplex_co" +       "ExtensionArray" is incompatible with protocol "_SupportsArray[dtype[numpy.bool[builtins.bool] | number[Any, int | float | complex]]]" +         "__array__" is not present +       "ExtensionArray" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[numpy.bool[builtins.bool] | number[Any, int | float | complex]]]]" +         "__reversed__" is not present +         "count" is not present +         "index" is not present + ... (reportArgumentType) + /pandas/core/reshape/tile.py:441:15 - error: Operator "-" not supported for types "Unknown | ExtensionArray | NDArray[Any] | Any" and "Unknown | ExtensionArray | NDArray[Any] | Any" +   Operator "-" not supported for types "ExtensionArray" and "ExtensionArray" (reportOperatorIssue) + /pandas/core/reshape/tile.py:542:18 - error: No overloads for "take_nd" match the provided arguments (reportCallIssue) + /pandas/core/reshape/tile.py:542:32 - error: Argument of type "Categorical | IntervalIndex | Unknown" cannot be assigned to parameter "arr" of type "ExtensionArray" in function "take_nd" +   Type "Categorical | IntervalIndex | Unknown" is not assignable to type "ExtensionArray" +     "IntervalIndex" is not assignable to "ExtensionArray" (reportArgumentType) + /pandas/core/reshape/tile.py:602:21 - error: Type "(x: Any) -> (Any | Unknown | Literal[0])" is not assignable to declared type "((Any) -> Timestamp) | ((Any) -> Timedelta)" +   Type "(x: Any) -> (Any | Unknown | Literal[0])" is not assignable to type "((Any) -> Timestamp) | ((Any) -> Timedelta)" +     Type "(x: Any) -> (Any | Unknown | Literal[0])" is not assignable to type "(Any) -> Timestamp" +       Function return type "Any | Unknown | Literal[0]" is incompatible with type "Timestamp" +         Type "Any | Unknown | Literal[0]" is not assignable to type "Timestamp" +           "Literal[0]" is not assignable to "Timestamp" +     Type "(x: Any) -> (Any | Unknown | Literal[0])" is not assignable to type "(Any) -> Timedelta" +       Function return type "Any | Unknown | Literal[0]" is incompatible with type "Timedelta" +         Type "Any | Unknown | Literal[0]" is not assignable to type "Timedelta" + ... (reportAssignmentType) +/pandas/core/series.py + /pandas/core/series.py:353:5 - error: "hasnans" incorrectly overrides property of same name in class "IndexOpsMixin" (reportIncompatibleMethodOverride) + /pandas/core/series.py:491:47 - error: Argument of type "Collection[object] | object" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "Collection[object] | object" is not assignable to type "Sized" +     "object" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /pandas/core/series.py:498:39 - error: Argument of type "list[Index | ndarray[Unknown, Unknown] | SingleBlockManager | ExtensionArray | Collection[object] | object] | Index | ndarray[Unknown, Unknown] | SingleBlockManager | ExtensionArray | Collection[object] | object" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "list[Index | ndarray[Unknown, Unknown] | SingleBlockManager | ExtensionArray | Collection[object] | object] | Index | ndarray[Unknown, Unknown] | SingleBlockManager | ExtensionArray | Collection[object] | object" is not assignable to type "Sized" +     "object" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /pandas/core/series.py:1239:39 - error: Argument of type "int | Sequence[int]" cannot be assigned to parameter "repeats" of type "int" in function "repeat" +   Type "int | Sequence[int]" is not assignable to type "int" +     "Sequence[int]" is not assignable to "int" (reportArgumentType) + /pandas/core/series.py:1559:21 - error: Cannot access attribute "write" for class "str" +   Attribute "write" is unknown (reportAttributeAccessIssue) + /pandas/core/series.py:1559:21 - error: Cannot access attribute "write" for class "PathLike[str]" +   Attribute "write" is unknown (reportAttributeAccessIssue) + /pandas/core/series.py:1561:22 - error: No overloads for "open" match the provided arguments (reportCallIssue) + /pandas/core/series.py:1561:27 - error: Argument of type "FilePath | WriteBuffer[str]" cannot be assigned to parameter "file" of type "FileDescriptorOrPath" in function "open" +   Type "FilePath | WriteBuffer[str]" is not assignable to type "FileDescriptorOrPath" +     Type "WriteBuffer[str]" is not assignable to type "FileDescriptorOrPath" +       "WriteBuffer[str]" is not assignable to "int" +       "WriteBuffer[str]" is not assignable to "str" +       "WriteBuffer[str]" is not assignable to "bytes" +       "WriteBuffer[str]" is incompatible with protocol "PathLike[str]" +         "__fspath__" is not present +       "WriteBuffer[str]" is incompatible with protocol "PathLike[bytes]" + ... (reportArgumentType) + /pandas/core/series.py:2996:9 - error: Method "compare" overrides class "NDFrame" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "NDFrame", override parameter is type "Series" +     "NDFrame" is not assignable to "Series" (reportIncompatibleMethodOverride) + /pandas/core/series.py:3092:19 - error: Argument of type "Series" cannot be assigned to parameter "other" of type "Self@Series" in function "compare" +   Type "Series" is not assignable to type "Self@Series" (reportArgumentType) + /pandas/core/series.py:3368:14 - error: "_mgr" overrides symbol of same name in class "NDFrame" +   Variable is mutable so its type is invariant +     Override type "SingleBlockManager" is not the same as base type "Manager" (reportIncompatibleVariableOverride) + /pandas/core/series.py:4156:45 - error: Argument of type "Level" cannot be assigned to parameter "i" of type "int" in function "swaplevel" +   "Hashable" is not assignable to "int" (reportArgumentType) + /pandas/core/series.py:4156:48 - error: Argument of type "Level" cannot be assigned to parameter "j" of type "int" in function "swaplevel" +   "Hashable" is not assignable to "int" (reportArgumentType) + /pandas/core/series.py:4276:39 - error: Argument of type "Unknown | NDArray[int64]" cannot be assigned to parameter "repeats" of type "int" in function "repeat" +   Type "Unknown | NDArray[int64]" is not assignable to type "int" +     "ndarray[_AnyShape, dtype[int64]]" is not assignable to "int" (reportArgumentType) + /pandas/core/series.py:4642:32 - error: Argument of type "dict[str, Unknown] | Unknown" cannot be assigned to parameter "func" of type "AggFuncType" in function "__init__" +   Type "dict[str, Unknown] | Unknown" is not assignable to type "AggFuncType" +     Type "dict[str, Unknown]" is not assignable to type "AggFuncType" +       Type "dict[str, Unknown]" is not assignable to type "(...) -> Unknown" +       "dict[str, Unknown]" is not assignable to "str" +       "dict[str, Unknown]" is not assignable to "list[AggFuncTypeBase]" +       "dict[str, Unknown]" is not assignable to "MutableMapping[Hashable, AggFuncTypeBase | list[AggFuncTypeBase]]" +         Type parameter "_KT@MutableMapping" is invariant, but "str" is not the same as "Hashable" (reportArgumentType) + /pandas/core/series.py:5391:9 - error: Method "rename_axis" overrides class "NDFrame" in an incompatible manner +   Override does not handle all overloads of base method (reportIncompatibleMethodOverride) + /pandas/core/series.py:6181:16 - error: Type "NDFrame" is not assignable to return type "Series" +   "NDFrame" is not assignable to "Series" (reportReturnType) + /pandas/core/series.py:6376:20 - error: Cannot assign to attribute "index" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "index" is unknown (reportAttributeAccessIssue) + /pandas/core/series.py:6381:20 - error: Type "Unknown | ndarray[_AnyShape, dtype[Any]] | Self@Series" is not assignable to return type "Series | None" +   Type "Unknown | ndarray[_AnyShape, dtype[Any]] | Self@Series" is not assignable to type "Series | None" +     Type "ndarray[_AnyShape, dtype[Any]]" is not assignable to type "Series | None" +       "ndarray[_AnyShape, dtype[Any]]" is not assignable to "Series" +       "ndarray[_AnyShape, dtype[Any]]" is not assignable to "None" (reportReturnType) + /pandas/core/series.py:6537:5 - error: "_info_axis_number" overrides symbol of same name in class "NDFrame" +   Variable is mutable so its type is invariant +     Override type "Literal[0]" is not the same as base type "int" (reportIncompatibleVariableOverride) + /pandas/core/series.py:6538:5 - error: "_info_axis_name" overrides symbol of same name in class "NDFrame" +   Variable is mutable so its type is invariant +     Override type "Literal['index']" is not the same as base type "Literal['index', 'columns']" (reportIncompatibleVariableOverride) + /pandas/core/series.py:7383:16 - error: Type "ExtensionArray | NDArray[Any] | Any | Unknown" is not assignable to return type "bool" +   Type "ExtensionArray | NDArray[Any] | Any | Unknown" is not assignable to type "bool" +     "ExtensionArray" is not assignable to "bool" (reportReturnType) + /pandas/core/series.py:7403:16 - error: Type "ExtensionArray | NDArray[Any] | Any | Unknown" is not assignable to return type "bool" +   Type "ExtensionArray | NDArray[Any] | Any | Unknown" is not assignable to type "bool" +     "ExtensionArray" is not assignable to "bool" (reportReturnType) + /pandas/core/series.py:8014:16 - error: Type "NDFrame" is not assignable to return type "Self@Series" +   Type "NDFrame" is not assignable to type "Self@Series" (reportReturnType) + /pandas/core/series.py:8018:16 - error: Type "NDFrame" is not assignable to return type "Self@Series" +   Type "NDFrame" is not assignable to type "Self@Series" (reportReturnType) + /pandas/core/series.py:8022:16 - error: Type "NDFrame" is not assignable to return type "Self@Series" +   Type "NDFrame" is not assignable to type "Self@Series" (reportReturnType) + /pandas/core/series.py:8026:16 - error: Type "NDFrame" is not assignable to return type "Self@Series" +   Type "NDFrame" is not assignable to type "Self@Series" (reportReturnType) +/pandas/core/sorting.py + /pandas/core/sorting.py:294:29 - error: "lift" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/sorting.py:295:46 - error: "lift" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/sorting.py:429:13 - error: No parameter named "ascending" (reportCallIssue) + /pandas/core/sorting.py:431:13 - error: No parameter named "na_position" (reportCallIssue) + /pandas/core/sorting.py:663:44 - error: Operator "*" not supported for types "float" and "int | None" +   Operator "*" not supported for types "float" and "None" (reportOperatorIssue) + /pandas/core/sorting.py:667:13 - error: Argument of type "int | None" cannot be assigned to parameter "ngroups" of type "int" in function "groupsort_indexer" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) +/pandas/core/strings/accessor.py + /pandas/core/strings/accessor.py:310:36 - error: "compute" is not a known attribute of module "pyarrow" (reportAttributeAccessIssue) + /pandas/core/strings/accessor.py:311:30 - error: "compute" is not a known attribute of module "pyarrow" (reportAttributeAccessIssue) + /pandas/core/strings/accessor.py:312:30 - error: "compute" is not a known attribute of module "pyarrow" (reportAttributeAccessIssue) + /pandas/core/strings/accessor.py:321:28 - error: "compute" is not a known attribute of module "pyarrow" (reportAttributeAccessIssue) + /pandas/core/strings/accessor.py:331:24 - error: "compute" is not a known attribute of module "pyarrow" (reportAttributeAccessIssue) + /pandas/core/strings/accessor.py:379:53 - error: Argument of type "list[int]" cannot be assigned to parameter "tuples" of type "Iterable[tuple[Hashable, ...]]" in function "from_tuples" +   "list[int]" is not assignable to "Iterable[tuple[Hashable, ...]]" +     Type parameter "_T_co@Iterable" is covariant, but "int" is not a subtype of "tuple[Hashable, ...]" +       "int" is not assignable to "tuple[Hashable, ...]" (reportArgumentType) + /pandas/core/strings/accessor.py:388:32 - error: Cannot access attribute "index" for class "Index" +   Attribute "index" is unknown (reportAttributeAccessIssue) + /pandas/core/strings/accessor.py:396:37 - error: Cannot access attribute "dtype" for class "dict[int, ArrowExtensionArray]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /pandas/core/strings/accessor.py:396:37 - error: Cannot access attribute "dtype" for class "list[Unknown]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /pandas/core/strings/accessor.py:405:35 - error: Cannot access attribute "_constructor_expanddim" for class "Index" +   Attribute "_constructor_expanddim" is unknown (reportAttributeAccessIssue) + /pandas/core/strings/accessor.py:410:50 - error: No parameter named "index" (reportCallIssue) + /pandas/core/strings/accessor.py:411:29 - error: Cannot access attribute "__finalize__" for class "Index" +   Attribute "__finalize__" is unknown (reportAttributeAccessIssue) + /pandas/core/strings/accessor.py:923:38 - error: Cannot access attribute "categories" for class "Literal['category']" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/strings/accessor.py:1046:38 - error: Cannot access attribute "categories" for class "Literal['category']" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/strings/accessor.py:1066:38 - error: Cannot access attribute "categories" for class "Literal['category']" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/core/strings/accessor.py:1351:53 - error: Argument of type "Unknown | Literal[_NoDefault.no_default]" cannot be assigned to parameter "fill_value" of type "float" in function "_wrap_result" +   Type "Unknown | Literal[_NoDefault.no_default]" is not assignable to type "float" +     "Literal[_NoDefault.no_default]" is not assignable to "float" (reportArgumentType) + /pandas/core/strings/accessor.py:1440:53 - error: Argument of type "Unknown | Literal[_NoDefault.no_default]" cannot be assigned to parameter "fill_value" of type "float" in function "_wrap_result" +   Type "Unknown | Literal[_NoDefault.no_default]" is not assignable to type "float" +     "Literal[_NoDefault.no_default]" is not assignable to "float" (reportArgumentType) + /pandas/core/strings/accessor.py:1489:53 - error: Argument of type "Unknown | Literal[_NoDefault.no_default]" cannot be assigned to parameter "fill_value" of type "float" in function "_wrap_result" +   Type "Unknown | Literal[_NoDefault.no_default]" is not assignable to type "float" +     "Literal[_NoDefault.no_default]" is not assignable to "float" (reportArgumentType) + /pandas/core/strings/accessor.py:1668:33 - error: Cannot access attribute "array" for class "dict[int, ArrowExtensionArray]" +   Attribute "array" is unknown (reportAttributeAccessIssue) + /pandas/core/strings/accessor.py:1668:33 - error: Cannot access attribute "array" for class "list[Unknown]" +   Attribute "array" is unknown (reportAttributeAccessIssue) + /pandas/core/strings/accessor.py:1668:39 - error: Cannot access attribute "_str_replace" for class "ExtensionArray" +   Attribute "_str_replace" is unknown (reportAttributeAccessIssue) + /pandas/core/strings/accessor.py:2746:16 - error: Type "DataFrame | Unknown | dict[int, ArrowExtensionArray] | list[Unknown] | Index | MultiIndex | Series" is not assignable to return type "Series | Index" +   Type "DataFrame | Unknown | dict[int, ArrowExtensionArray] | list[Unknown] | Index | MultiIndex | Series" is not assignable to type "Series | Index" +     Type "DataFrame" is not assignable to type "Series | Index" +       "DataFrame" is not assignable to "Series" +       "DataFrame" is not assignable to "Index" (reportReturnType) + /pandas/core/strings/accessor.py:2808:16 - error: Type "DataFrame | Unknown | dict[int, ArrowExtensionArray] | list[Unknown] | Index | MultiIndex | Series" is not assignable to return type "Series | Index" +   Type "DataFrame | Unknown | dict[int, ArrowExtensionArray] | list[Unknown] | Index | MultiIndex | Series" is not assignable to type "Series | Index" +     Type "DataFrame" is not assignable to type "Series | Index" +       "DataFrame" is not assignable to "Series" +       "DataFrame" is not assignable to "Index" (reportReturnType) + /pandas/core/strings/accessor.py:3029:16 - error: Type "DataFrame | Unknown | dict[int, ArrowExtensionArray] | list[Unknown] | Index | MultiIndex | Series" is not assignable to return type "DataFrame | Series | Index" +   Type "DataFrame | Unknown | dict[int, ArrowExtensionArray] | list[Unknown] | Index | MultiIndex | Series" is not assignable to type "DataFrame | Series | Index" +     Type "dict[int, ArrowExtensionArray]" is not assignable to type "DataFrame | Series | Index" +       "dict[int, ArrowExtensionArray]" is not assignable to "DataFrame" +       "dict[int, ArrowExtensionArray]" is not assignable to "Series" +       "dict[int, ArrowExtensionArray]" is not assignable to "Index" (reportReturnType) + /pandas/core/strings/accessor.py:3894:12 - error: "result" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/strings/accessor.py:3991:36 - error: Operator "+" not supported for types "tuple[Hashable | Unknown] | Hashable | Unknown" and "tuple[int]" +   Operator "+" not supported for types "Hashable" and "tuple[int]" when expected type is "Iterable[Hashable | Unknown]" (reportOperatorIssue) +/pandas/core/tools/datetimes.py + /pandas/core/tools/datetimes.py:387:31 - error: Cannot access attribute "_dt_tz_convert" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "_dt_tz_convert" is unknown (reportAttributeAccessIssue) + /pandas/core/tools/datetimes.py:389:31 - error: Cannot access attribute "_dt_tz_localize" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "_dt_tz_localize" is unknown (reportAttributeAccessIssue) + /pandas/core/tools/datetimes.py:1035:22 - error: Type "DatetimeIndex | DatetimeArray | Index | Unknown | NDArray[Any]" is not assignable to declared type "Timestamp | NaTType | Series | Index" +   Type "DatetimeIndex | DatetimeArray | Index | Unknown | NDArray[Any]" is not assignable to type "Timestamp | NaTType | Series | Index" +     Type "DatetimeArray" is not assignable to type "Timestamp | NaTType | Series | Index" +       "DatetimeArray" is not assignable to "Timestamp" +       "DatetimeArray" is not assignable to "NaTType" +       "DatetimeArray" is not assignable to "Series" +       "DatetimeArray" is not assignable to "Index" (reportAssignmentType) + /pandas/core/tools/datetimes.py:1056:45 - error: "argc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/tools/datetimes.py:1058:22 - error: Type "DatetimeIndex | DatetimeArray | Index | Unknown | NDArray[Any]" is not assignable to declared type "Timestamp | NaTType | Series | Index" +   Type "DatetimeIndex | DatetimeArray | Index | Unknown | NDArray[Any]" is not assignable to type "Timestamp | NaTType | Series | Index" +     Type "DatetimeArray" is not assignable to type "Timestamp | NaTType | Series | Index" +       "DatetimeArray" is not assignable to "Timestamp" +       "DatetimeArray" is not assignable to "NaTType" +       "DatetimeArray" is not assignable to "Series" +       "DatetimeArray" is not assignable to "Index" (reportAssignmentType) + /pandas/core/tools/datetimes.py:1058:39 - error: "argc" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/core/tools/datetimes.py:1060:18 - error: Type "DTScalarOrNaT | Unknown | Any" is not assignable to declared type "Timestamp | NaTType | Series | Index" +   Type "DTScalarOrNaT | Unknown | Any" is not assignable to type "Timestamp | NaTType | Series | Index" +     Type "Period" is not assignable to type "Timestamp | NaTType | Series | Index" +       "Period" is not assignable to "Timestamp" +       "Period" is not assignable to "NaTType" +       "Period" is not assignable to "Series" +       "Period" is not assignable to "Index" (reportAssignmentType) + /pandas/core/tools/datetimes.py:1062:22 - error: Type "bool" is not assignable to declared type "Timestamp | NaTType | Series | Index" +   Type "bool" is not assignable to type "Timestamp | NaTType | Series | Index" +     "bool" is not assignable to "Timestamp" +     "bool" is not assignable to "NaTType" +     "bool" is not assignable to "Series" +     "bool" is not assignable to "Index" (reportAssignmentType) +/pandas/core/tools/numeric.py + /pandas/core/tools/numeric.py:225:16 - error: Type "ndarray[_AnyShape, dtype[Any]] | ExtensionArraySupportsAnyAll | Unknown" is not assignable to declared type "NDArray[bool_] | None" +   Type "ndarray[_AnyShape, dtype[Any]] | ExtensionArraySupportsAnyAll | Unknown" is not assignable to type "NDArray[bool_] | None" +     Type "ExtensionArraySupportsAnyAll" is not assignable to type "NDArray[bool_] | None" +       "ExtensionArraySupportsAnyAll" is not assignable to "ndarray[_AnyShape, dtype[bool_]]" +       "ExtensionArraySupportsAnyAll" is not assignable to "None" (reportAssignmentType) + /pandas/core/tools/numeric.py:225:23 - error: Cannot access attribute "isna" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "isna" is unknown (reportAttributeAccessIssue) + /pandas/core/tools/numeric.py:226:25 - error: Cannot access attribute "dropna" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "dropna" is unknown (reportAttributeAccessIssue) + /pandas/core/tools/numeric.py:262:61 - error: No overloads for "amin" match the provided arguments (reportCallIssue) + /pandas/core/tools/numeric.py:262:68 - error: Argument of type "ArrayLike | Unknown | ndarray[_AnyShape, dtype[signedinteger[_64Bit]]]" cannot be assigned to parameter "a" of type "ArrayLike" in function "amin" +   Type "ArrayLike | Unknown | ndarray[_AnyShape, dtype[signedinteger[_64Bit]]]" is not assignable to type "ArrayLike" +     Type "ExtensionArray" is not assignable to type "ArrayLike" +       "ExtensionArray" is incompatible with protocol "_Buffer" +         "__buffer__" is not present +       "ExtensionArray" is incompatible with protocol "_SupportsArray[dtype[Any]]" +         "__array__" is not present +       "ExtensionArray" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[Any]]]" +         "__reversed__" is not present + ... (reportArgumentType) + /pandas/core/tools/numeric.py:278:51 - error: Cannot access attribute "itemsize" for class "ExtensionDtype" +   Attribute "itemsize" is unknown (reportAttributeAccessIssue) + /pandas/core/tools/numeric.py:294:16 - error: No overloads for "__call__" match the provided arguments (reportCallIssue) + /pandas/core/tools/numeric.py:294:43 - error: Argument of type "dtype[Any] | ExtensionDtype | Unknown | dtype[signedinteger[_64Bit]]" cannot be assigned to parameter "dtype" of type "DTypeLike" in function "__call__" +   Type "dtype[Any] | ExtensionDtype | Unknown | dtype[signedinteger[_64Bit]]" is not assignable to type "DTypeLike" +     Type "ExtensionDtype" is not assignable to type "DTypeLike" +       "ExtensionDtype" is not assignable to "type[Any]" +       "ExtensionDtype" is not assignable to "dtype[Any]" +       "ExtensionDtype" is incompatible with protocol "_SupportsDType[dtype[Any]]" +         "dtype" is not present +       "ExtensionDtype" is not assignable to "tuple[_DTypeLikeNested, _DTypeLikeNested]" +       "ExtensionDtype" is not assignable to "list[Any]" + ... (reportArgumentType) + /pandas/core/tools/numeric.py:317:20 - error: Cannot access attribute "_constructor" for class "list[Unknown]" +   Attribute "_constructor" is unknown (reportAttributeAccessIssue) + /pandas/core/tools/numeric.py:317:20 - error: Cannot access attribute "_constructor" for class "tuple[Unknown, ...]" +   Attribute "_constructor" is unknown (reportAttributeAccessIssue) + /pandas/core/tools/numeric.py:317:41 - error: No parameter named "index" (reportCallIssue) + /pandas/core/tools/numeric.py:317:51 - error: Cannot access attribute "index" for class "Index" +   Attribute "index" is unknown (reportAttributeAccessIssue) + /pandas/core/tools/numeric.py:317:67 - error: Cannot access attribute "name" for class "list[Unknown]" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /pandas/core/tools/numeric.py:317:67 - error: Cannot access attribute "name" for class "tuple[Unknown, ...]" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /pandas/core/tools/numeric.py:323:39 - error: Cannot access attribute "name" for class "list[Unknown]" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /pandas/core/tools/numeric.py:323:39 - error: Cannot access attribute "name" for class "tuple[Unknown, ...]" +   Attribute "name" is unknown (reportAttributeAccessIssue) +/pandas/core/util/hashing.py + /pandas/core/util/hashing.py:303:40 - error: Cannot access attribute "real" for class "ndarray[_AnyShape, dtype[Any]]" +   No overloads for "__get__" match the provided arguments +   Argument of type "ndarray[_AnyShape, dtype[Any]]" cannot be assigned to parameter "obj" of type "None" in function "__get__" +     "ndarray[_AnyShape, dtype[Any]]" is not assignable to "None" (reportAttributeAccessIssue) + /pandas/core/util/hashing.py:304:40 - error: Cannot access attribute "imag" for class "ndarray[_AnyShape, dtype[Any]]" +   No overloads for "__get__" match the provided arguments +   Argument of type "ndarray[_AnyShape, dtype[Any]]" cannot be assigned to parameter "obj" of type "None" in function "__get__" +     "ndarray[_AnyShape, dtype[Any]]" is not assignable to "None" (reportAttributeAccessIssue) +/pandas/core/window/ewm.py + /pandas/core/window/ewm.py:100:18 - error: Argument of type "float | None" cannot be assigned to parameter "x" of type "ConvertibleToFloat" in function "__new__" +   Type "float | None" is not assignable to type "ConvertibleToFloat" +     Type "None" is not assignable to type "ConvertibleToFloat" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "None" is incompatible with protocol "SupportsFloat" +         "__float__" is not present +       "None" is incompatible with protocol "SupportsIndex" + ... (reportArgumentType) + /pandas/core/window/ewm.py:100:18 - error: Argument of type "float | None" cannot be assigned to parameter "x" of type "ConvertibleToFloat" in function "__new__" +   Type "float | None" is not assignable to type "ConvertibleToFloat" +     Type "None" is not assignable to type "ConvertibleToFloat" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "None" is incompatible with protocol "SupportsFloat" +         "__float__" is not present +       "None" is incompatible with protocol "SupportsIndex" (reportArgumentType) + /pandas/core/window/ewm.py:373:16 - error: Invalid conditional operand of type "numpy.bool[builtins.bool] | Series | builtins.bool" +   Method __bool__ for type "Series" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) + /pandas/core/window/ewm.py:913:47 - error: Argument of type "Unknown | None" cannot be assigned to parameter "_grouper" of type "BaseGrouper" in function "__init__" +   Type "Unknown | None" is not assignable to type "BaseGrouper" +     "None" is not assignable to "BaseGrouper" (reportArgumentType) +/pandas/core/window/rolling.py + /pandas/core/window/rolling.py:419:47 - error: Argument of type "Unknown | None" cannot be assigned to parameter "window_size" of type "int" in function "__init__" +   Type "Unknown | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /pandas/core/window/rolling.py:1463:28 - error: Argument of type "partial[ndarray[_AnyShape, dtype[Any]]]" cannot be assigned to parameter "func" of type "(ndarray[_AnyShape, dtype[Any]], int, int) -> ndarray[_AnyShape, dtype[Any]]" in function "_apply" +   Type "partial[ndarray[_AnyShape, dtype[Any]]]" is not assignable to type "(ndarray[_AnyShape, dtype[Any]], int, int) -> ndarray[_AnyShape, dtype[Any]]" +     Parameter 2: type "int" is incompatible with type "ndarray[_AnyShape, dtype[Any]]" +       "int" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/core/window/rolling.py:2004:37 - error: Cannot assign to attribute "_win_freq_i8" for class "Rolling*" +   Type "int64 | int" is not assignable to type "int | None" +     Type "int64" is not assignable to type "int | None" +       "signedinteger[_64Bit]" is not assignable to "int" +       "signedinteger[_64Bit]" is not assignable to "None" (reportAttributeAccessIssue) + /pandas/core/window/rolling.py:3494:25 - error: Argument of type "BaseIndexer | int | Unknown | None" cannot be assigned to parameter "window_size" of type "int | BaseIndexer" in function "__init__" +   Type "BaseIndexer | int | Unknown | None" is not assignable to type "int | BaseIndexer" +     Type "None" is not assignable to type "int | BaseIndexer" +       "None" is not assignable to "int" +       "None" is not assignable to "BaseIndexer" (reportArgumentType) +/pandas/io/clipboard/__init__.py + /pandas/io/clipboard/__init__.py:142:14 - error: Import "qtpy.QtWidgets" could not be resolved (reportMissingImports) + /pandas/io/clipboard/__init__.py:147:18 - error: Import "PyQt4.QtGui" could not be resolved (reportMissingImports) + /pandas/io/clipboard/__init__.py:560:20 - error: Import "AppKit" could not be resolved (reportMissingImports) + /pandas/io/clipboard/__init__.py:561:20 - error: Import "Foundation" could not be resolved (reportMissingImports) + /pandas/io/clipboard/__init__.py:582:20 - error: Import "qtpy" could not be resolved (reportMissingImports) + /pandas/io/clipboard/__init__.py:589:28 - error: Import "PyQt4" could not be resolved (reportMissingImports) +/pandas/io/common.py + /pandas/io/common.py:785:17 - error: Argument of type "str | BaseBuffer" cannot be assigned to parameter "filename" of type "StrOrBytesPath" in function "__init__" +   Type "str | BaseBuffer" is not assignable to type "StrOrBytesPath" +     Type "BaseBuffer" is not assignable to type "StrOrBytesPath" +       "BaseBuffer" is not assignable to "str" +       "BaseBuffer" is not assignable to "bytes" +       "BaseBuffer" is incompatible with protocol "PathLike[str]" +         "__fspath__" is not present +       "BaseBuffer" is incompatible with protocol "PathLike[bytes]" +         "__fspath__" is not present (reportArgumentType) + /pandas/io/common.py:786:22 - error: Argument of type "str" cannot be assigned to parameter "mode" of type "_ReadBinaryMode | _WriteBinaryMode" in function "__init__" +   Type "str" is not assignable to type "_ReadBinaryMode | _WriteBinaryMode" +     "str" is not assignable to type "Literal['']" +     "str" is not assignable to type "Literal['r']" +     "str" is not assignable to type "Literal['rb']" +     "str" is not assignable to type "Literal['w']" +     "str" is not assignable to type "Literal['wb']" +     "str" is not assignable to type "Literal['x']" +     "str" is not assignable to type "Literal['xb']" + ... (reportArgumentType) + /pandas/io/common.py:874:24 - error: Argument of type "GzipFile | BZ2File | IO[bytes] | _BytesZipFile | _BytesTarFile | LZMAFile | Any" cannot be assigned to parameter "object" of type "BaseBuffer" in function "append" +   Type "GzipFile | BZ2File | IO[bytes] | _BytesZipFile | _BytesTarFile | LZMAFile | Any" is not assignable to type "BaseBuffer" +     "GzipFile" is incompatible with protocol "BaseBuffer" +       "mode" is an incompatible type +         "object" is not assignable to "str" (reportArgumentType) + /pandas/io/common.py:902:54 - error: Argument of type "GzipFile | BZ2File | IO[bytes] | _BytesZipFile | _BytesTarFile | LZMAFile | Any | IO[Any] | BaseBuffer" cannot be assigned to parameter "handle" of type "FilePath | BaseBuffer" in function "_is_binary_mode" +   Type "GzipFile | BZ2File | IO[bytes] | _BytesZipFile | _BytesTarFile | LZMAFile | Any | IO[Any] | BaseBuffer" is not assignable to type "FilePath | BaseBuffer" +     Type "GzipFile" is not assignable to type "FilePath | BaseBuffer" +       "GzipFile" is not assignable to "str" +       "GzipFile" is incompatible with protocol "PathLike[str]" +         "__fspath__" is not present +       "GzipFile" is incompatible with protocol "BaseBuffer" +         "mode" is an incompatible type +           "object" is not assignable to "str" (reportArgumentType) + /pandas/io/common.py:909:33 - error: Argument of type "GzipFile | BZ2File | IO[bytes] | _BytesZipFile | _BytesTarFile | LZMAFile | Any | IO[Any] | BaseBuffer" cannot be assigned to parameter "buffer" of type "BaseBuffer" in function "__init__" +   Type "GzipFile | BZ2File | IO[bytes] | _BytesZipFile | _BytesTarFile | LZMAFile | Any | IO[Any] | BaseBuffer" is not assignable to type "BaseBuffer" +     "GzipFile" is incompatible with protocol "BaseBuffer" +       "mode" is an incompatible type +         "object" is not assignable to "str" (reportArgumentType) + /pandas/io/common.py:992:18 - error: Argument of type "str" cannot be assigned to parameter "mode" of type "Literal['w|', 'w|xz', 'w|zst']" in function "open" +   Type "str" is not assignable to type "Literal['w|', 'w|xz', 'w|zst']" +     "str" is not assignable to type "Literal['w|']" +     "str" is not assignable to type "Literal['w|xz']" +     "str" is not assignable to type "Literal['w|zst']" (reportArgumentType) + /pandas/io/common.py:993:21 - error: Argument of type "ReadBuffer[bytes] | WriteBuffer[bytes] | None" cannot be assigned to parameter "fileobj" of type "_Fileobj | None" in function "open" +   Type "ReadBuffer[bytes] | WriteBuffer[bytes] | None" is not assignable to type "_Fileobj | None" +     Type "ReadBuffer[bytes]" is not assignable to type "_Fileobj | None" +       "ReadBuffer[bytes]" is incompatible with protocol "_Fileobj" +         "write" is not present +         "close" is not present +       "ReadBuffer[bytes]" is not assignable to "None" (reportArgumentType) + /pandas/io/common.py:1049:13 - error: Argument of type "FilePath | ReadBuffer[bytes] | WriteBuffer[bytes]" cannot be assigned to parameter "file" of type "StrPath | _ZipReadableTellable" in function "__init__" +   Type "FilePath | ReadBuffer[bytes] | WriteBuffer[bytes]" is not assignable to type "StrPath | _ZipReadableTellable" +     Type "WriteBuffer[bytes]" is not assignable to type "StrPath | _ZipReadableTellable" +       "WriteBuffer[bytes]" is not assignable to "str" +       "WriteBuffer[bytes]" is incompatible with protocol "PathLike[str]" +         "__fspath__" is not present +       "WriteBuffer[bytes]" is incompatible with protocol "_ZipReadableTellable" +         "read" is not present (reportArgumentType) + /pandas/io/common.py:1049:19 - error: Argument of type "str" cannot be assigned to parameter "mode" of type "Literal['a']" in function "__init__" +   "str" is not assignable to type "Literal['a']" (reportArgumentType) + /pandas/io/common.py:1085:32 - error: Cannot access attribute "readable" for class "BaseBuffer" +   Attribute "readable" is unknown (reportAttributeAccessIssue) + /pandas/io/common.py:1095:32 - error: Cannot access attribute "writable" for class "BaseBuffer" +   Attribute "writable" is unknown (reportAttributeAccessIssue) + /pandas/io/common.py:1161:12 - error: Type "tuple[_IOWrapper, Literal[True], list[_IOWrapper]]" is not assignable to return type "tuple[str | BaseBuffer, bool, list[BaseBuffer]]" +   Type "_IOWrapper" is not assignable to type "str | BaseBuffer" +     "_IOWrapper" is not assignable to "str" +     "_IOWrapper" is incompatible with protocol "BaseBuffer" +       "mode" is not present +       "seek" is not present +       "tell" is not present +   "_IOWrapper" is incompatible with protocol "BaseBuffer" +     "mode" is not present (reportReturnType) +/pandas/io/excel/_base.py + /pandas/io/excel/_base.py:493:24 - error: Argument of type "str | int | list[IntStrT@read_excel] | None" cannot be assigned to parameter "sheet_name" of type "str | int | list[int] | list[str] | None" in function "parse" +   Type "str | int | list[IntStrT@read_excel] | None" is not assignable to type "str | int | list[int] | list[str] | None" +     Type "list[IntStrT@read_excel]" is not assignable to type "str | int | list[int] | list[str] | None" +       "list[IntStrT@read_excel]" is not assignable to "str" +       "list[IntStrT@read_excel]" is not assignable to "int" +       "list[IntStrT@read_excel]" is not assignable to "list[int]" +         Type parameter "_T@list" is invariant, but "IntStrT@read_excel" is not the same as "int" +         Consider switching from "list" to "Sequence" which is covariant +       "list[IntStrT@read_excel]" is not assignable to "list[str]" + ... (reportArgumentType) + /pandas/io/excel/_base.py:496:23 - error: Argument of type "int | str | Sequence[int] | None" cannot be assigned to parameter "index_col" of type "int | Sequence[int] | None" in function "parse" +   Type "int | str | Sequence[int] | None" is not assignable to type "int | Sequence[int] | None" +     Type "str" is not assignable to type "int | Sequence[int] | None" +       "str" is not assignable to "int" +       "str" is not assignable to "Sequence[int]" +         Type parameter "_T_co@Sequence" is covariant, but "str" is not a subtype of "int" +           "str" is not assignable to "int" +       "str" is not assignable to "None" (reportArgumentType) + /pandas/io/excel/_base.py:520:12 - error: Type "DataFrame | dict[str, DataFrame] | dict[int, DataFrame]" is not assignable to return type "DataFrame | dict[IntStrT@read_excel, DataFrame]" +   Type "DataFrame | dict[str, DataFrame] | dict[int, DataFrame]" is not assignable to type "DataFrame | dict[IntStrT@read_excel, DataFrame]" +     Type "dict[int, DataFrame]" is not assignable to type "DataFrame | dict[IntStrT@read_excel, DataFrame]" +       "dict[int, DataFrame]" is not assignable to "DataFrame" +       "dict[int, DataFrame]" is not assignable to "dict[IntStrT@read_excel, DataFrame]" +         Type parameter "_KT@dict" is invariant, but "int" is not the same as "IntStrT@read_excel" (reportReturnType) + /pandas/io/excel/_base.py:574:27 - error: Cannot access attribute "close" for class "object*" +   Attribute "close" is unknown (reportAttributeAccessIssue) + /pandas/io/excel/_base.py:578:27 - error: Cannot access attribute "release_resources" for class "object*" +   Attribute "release_resources" is unknown (reportAttributeAccessIssue) + /pandas/io/excel/_base.py:877:28 - error: "control_row" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/io/excel/_base.py:1174:16 - error: Type "ExcelWriter_t | Self@ExcelWriter[_WorkbookT@ExcelWriter]" is not assignable to return type "Self@ExcelWriter[_WorkbookT@ExcelWriter]" +   Type "ExcelWriter_t | Self@ExcelWriter[_WorkbookT@ExcelWriter]" is not assignable to type "Self@ExcelWriter[_WorkbookT@ExcelWriter]" (reportReturnType) + /pandas/io/excel/_base.py:1366:16 - error: Type "tuple[int | float | bool | Decimal | datetime | date | str, str | None]" is not assignable to return type "tuple[int | float | bool | str | datetime | date, str | None]" +   Type "int | float | bool | Decimal | datetime | date | str" is not assignable to type "int | float | bool | str | datetime | date" +     Type "Decimal" is not assignable to type "int | float | bool | str | datetime | date" +       "Decimal" is not assignable to "int" +       "Decimal" is not assignable to "float" +       "Decimal" is not assignable to "bool" +       "Decimal" is not assignable to "str" +       "Decimal" is not assignable to "datetime" +       "Decimal" is not assignable to "date" (reportReturnType) + /pandas/io/excel/_base.py:1577:76 - error: "xlrd" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/io/excel/_base.py:1582:37 - error: Argument of type "Book | Unknown | str | PathLike[Unknown] | ExcelFile" cannot be assigned to parameter "content_or_path" of type "FilePath | ReadBuffer[bytes]" in function "inspect_excel_format" +   Type "Book | Unknown | str | PathLike[Unknown] | ExcelFile" is not assignable to type "FilePath | ReadBuffer[bytes]" +     Type "Book" is not assignable to type "FilePath | ReadBuffer[bytes]" +       "Book" is not assignable to "str" +       "Book" is incompatible with protocol "PathLike[str]" +         "__fspath__" is not present +       "Book" is incompatible with protocol "ReadBuffer[bytes]" +         "mode" is not present +         "seek" is not present + ... (reportArgumentType) +/pandas/io/excel/_calamine.py + /pandas/io/excel/_calamine.py:100:9 - error: Method "get_sheet_data" overrides class "BaseExcelReader" in an incompatible manner +   Parameter 3 name mismatch: base parameter is named "rows", override parameter is named "file_rows_needed" (reportIncompatibleMethodOverride) +/pandas/io/excel/_odfreader.py + /pandas/io/excel/_odfreader.py:102:9 - error: Method "get_sheet_data" overrides class "BaseExcelReader" in an incompatible manner +   Parameter 3 name mismatch: base parameter is named "rows", override parameter is named "file_rows_needed" (reportIncompatibleMethodOverride) + /pandas/io/excel/_odfreader.py:153:30 - error: Argument of type "list[list[str]]" cannot be assigned to parameter "iterable" of type "Iterable[list[Scalar | NaTType]]" in function "extend" +   "list[list[str]]" is not assignable to "Iterable[list[Scalar | NaTType]]" +     Type parameter "_T_co@Iterable" is covariant, but "list[str]" is not a subtype of "list[Scalar | NaTType]" +       "list[str]" is not assignable to "list[Scalar | NaTType]" +         Type parameter "_T@list" is invariant, but "str" is not the same as "Scalar | NaTType" +         Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /pandas/io/excel/_odfreader.py:215:39 - error: Cannot access attribute "time" for class "NaTType" +   Attribute "time" is unknown (reportAttributeAccessIssue) +/pandas/io/excel/_odswriter.py + /pandas/io/excel/_odswriter.py:68:23 - error: Expected class but received "() -> Unknown" (reportGeneralTypeIssues) +/pandas/io/excel/_openpyxl.py + /pandas/io/excel/_openpyxl.py:614:9 - error: Method "get_sheet_data" overrides class "BaseExcelReader" in an incompatible manner +   Parameter 3 name mismatch: base parameter is named "rows", override parameter is named "file_rows_needed" (reportIncompatibleMethodOverride) +/pandas/io/excel/_pyxlsb.py + /pandas/io/excel/_pyxlsb.py:97:9 - error: Method "get_sheet_data" overrides class "BaseExcelReader" in an incompatible manner +   Parameter 3 name mismatch: base parameter is named "rows", override parameter is named "file_rows_needed" (reportIncompatibleMethodOverride) +/pandas/io/excel/_xlrd.py + /pandas/io/excel/_xlrd.py:79:9 - error: Method "get_sheet_data" overrides class "BaseExcelReader" in an incompatible manner +   Parameter 3 name mismatch: base parameter is named "rows", override parameter is named "file_rows_needed" (reportIncompatibleMethodOverride) +/pandas/io/excel/_xlsxwriter.py + /pandas/io/excel/_xlsxwriter.py:260:31 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) +/pandas/io/formats/excel.py + /pandas/io/formats/excel.py:623:30 - error: Cannot access attribute "_format_multi" for class "Index" +   Attribute "_format_multi" is unknown (reportAttributeAccessIssue) + /pandas/io/formats/excel.py:640:40 - error: Cannot access attribute "levels" for class "Index" +   Attribute "levels" is unknown (reportAttributeAccessIssue) + /pandas/io/formats/excel.py:640:56 - error: Cannot access attribute "codes" for class "Index" +   Attribute "codes" is unknown (reportAttributeAccessIssue) + /pandas/io/formats/excel.py:793:44 - error: Cannot access attribute "_format_multi" for class "Index" +   Attribute "_format_multi" is unknown (reportAttributeAccessIssue) + /pandas/io/formats/excel.py:800:35 - error: Cannot access attribute "levels" for class "Index" +   Attribute "levels" is unknown (reportAttributeAccessIssue) + /pandas/io/formats/excel.py:801:35 - error: Cannot access attribute "codes" for class "Index" +   Attribute "codes" is unknown (reportAttributeAccessIssue) +/pandas/io/formats/format.py + /pandas/io/formats/format.py:774:20 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /pandas/io/formats/format.py:774:40 - error: Argument of type "Unknown | str | int | integer[Any]" cannot be assigned to parameter "key" of type "str | int" in function "get" +   Type "Unknown | str | int | integer[Any]" is not assignable to type "str | int" +     Type "integer[Any]" is not assignable to type "str | int" +       "integer[Any]" is not assignable to "str" +       "integer[Any]" is not assignable to "int" (reportArgumentType) + /pandas/io/formats/format.py:1159:9 - error: Argument of type "ArrayLike | DatetimeArray | TimedeltaArray" cannot be assigned to parameter "values" of type "DatetimeArray" in function "__init__" +   Type "ArrayLike | DatetimeArray | TimedeltaArray" is not assignable to type "DatetimeArray" +     "ExtensionArray" is not assignable to "DatetimeArray" (reportArgumentType) + /pandas/io/formats/format.py:1159:9 - error: Argument of type "ArrayLike | DatetimeArray | TimedeltaArray" cannot be assigned to parameter "values" of type "TimedeltaArray" in function "__init__" +   Type "ArrayLike | DatetimeArray | TimedeltaArray" is not assignable to type "TimedeltaArray" +     "ExtensionArray" is not assignable to "TimedeltaArray" (reportArgumentType) + /pandas/io/formats/format.py:1160:16 - error: Argument of type "int | None" cannot be assigned to parameter "digits" of type "int" in function "__init__" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /pandas/io/formats/format.py:1266:35 - error: Object of type "str" is not callable +   Attribute "__call__" is unknown (reportCallIssue) +/pandas/io/formats/html.py + /pandas/io/formats/html.py:463:28 - error: "index_values" is possibly unbound (reportPossiblyUnboundVariable) +/pandas/io/formats/info.py + /pandas/io/formats/info.py:361:12 - error: Type "bool | str | None" is not assignable to return type "bool | str" +   Type "bool | str | None" is not assignable to type "bool | str" +     Type "None" is not assignable to type "bool | str" +       "None" is not assignable to "bool" +       "None" is not assignable to "str" (reportReturnType) + /pandas/io/formats/info.py:457:14 - error: "data" overrides symbol of same name in class "_BaseInfo" +   Variable is mutable so its type is invariant +     Override type "DataFrame" is not the same as base type "DataFrame | Series" (reportIncompatibleVariableOverride) + /pandas/io/formats/info.py:530:14 - error: "data" overrides symbol of same name in class "_BaseInfo" +   Variable is mutable so its type is invariant +     Override type "Series" is not the same as base type "DataFrame | Series" (reportIncompatibleVariableOverride) + /pandas/io/formats/info.py:591:30 - error: Argument of type "TextIO | WriteBuffer[str] | None" cannot be assigned to parameter "buf" of type "WriteBuffer[str]" in function "buffer_put_lines" +   Type "TextIO | WriteBuffer[str] | None" is not assignable to type "WriteBuffer[str]" +     "None" is incompatible with protocol "WriteBuffer[str]" +       "write" is not present +       "flush" is not present +       "mode" is not present +       "seek" is not present +       "seekable" is not present +       "tell" is not present (reportArgumentType) + /pandas/io/formats/info.py:788:14 - error: "info" overrides symbol of same name in class "_TableBuilderAbstract" +   Variable is mutable so its type is invariant +     Override type "DataFrameInfo" is not the same as base type "_BaseInfo" (reportIncompatibleVariableOverride) + /pandas/io/formats/info.py:945:7 - error: Base classes for class "_DataFrameTableBuilderVerbose" define variable "info" in incompatible way (reportIncompatibleVariableOverride) + /pandas/io/formats/info.py:1024:14 - error: "info" overrides symbol of same name in class "_TableBuilderAbstract" +   Variable is mutable so its type is invariant +     Override type "SeriesInfo" is not the same as base type "_BaseInfo" (reportIncompatibleVariableOverride) + /pandas/io/formats/info.py:1059:7 - error: Base classes for class "_SeriesTableBuilderVerbose" define variable "info" in incompatible way (reportIncompatibleVariableOverride) +/pandas/io/formats/printing.py + /pandas/io/formats/printing.py:261:25 - error: "get_ipython" is not exported from module "IPython" +   Import from "IPython.core.getipython" instead (reportPrivateImportUsage) + /pandas/io/formats/printing.py:439:20 - error: Operator "+" not supported for types "str | tuple[str, ...] | Unknown" and "LiteralString | Literal[',']" +   Operator "+" not supported for types "tuple[str, ...]" and "LiteralString" +   Operator "+" not supported for types "tuple[str, ...]" and "Literal[',']" (reportOperatorIssue) + /pandas/io/formats/printing.py:448:20 - error: Operator "+" not supported for types "str | tuple[str, ...] | Unknown" and "LiteralString | Literal[',']" +   Operator "+" not supported for types "tuple[str, ...]" and "LiteralString" +   Operator "+" not supported for types "tuple[str, ...]" and "Literal[',']" (reportOperatorIssue) + /pandas/io/formats/printing.py:452:53 - error: Argument of type "str | tuple[str, ...] | Unknown" cannot be assigned to parameter "value" of type "str" in function "_extend_line" +   Type "str | tuple[str, ...] | Unknown" is not assignable to type "str" +     "tuple[str, ...]" is not assignable to "str" (reportArgumentType) +/pandas/io/formats/string.py + /pandas/io/formats/string.py:143:31 - error: "idx" is possibly unbound (reportPossiblyUnboundVariable) +/pandas/io/formats/style.py + /pandas/io/formats/style.py:287:21 - error: Argument of type "str | None" cannot be assigned to parameter "decimal" of type "str" in function "format" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /pandas/io/formats/style.py:1197:26 - error: Argument of type "bool | None" cannot be assigned to parameter "sparse_index" of type "bool" in function "_render_latex" +   Type "bool | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /pandas/io/formats/style.py:1198:28 - error: Argument of type "bool | None" cannot be assigned to parameter "sparse_columns" of type "bool" in function "_render_latex" +   Type "bool | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /pandas/io/formats/style.py:1310:28 - error: Argument of type "bool | None" cannot be assigned to parameter "sparse_columns" of type "bool" in function "_render_typst" +   Type "bool | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /pandas/io/formats/style.py:1311:26 - error: Argument of type "bool | None" cannot be assigned to parameter "sparse_index" of type "bool" in function "_render_typst" +   Type "bool | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /pandas/io/formats/style.py:1476:26 - error: Argument of type "bool | None" cannot be assigned to parameter "sparse_index" of type "bool" in function "_render_html" +   Type "bool | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /pandas/io/formats/style.py:1477:28 - error: Argument of type "bool | None" cannot be assigned to parameter "sparse_columns" of type "bool" in function "_render_html" +   Type "bool | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /pandas/io/formats/style.py:1579:28 - error: Argument of type "bool | None" cannot be assigned to parameter "sparse_columns" of type "bool" in function "_render_string" +   Type "bool | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /pandas/io/formats/style.py:1580:26 - error: Argument of type "bool | None" cannot be assigned to parameter "sparse_index" of type "bool" in function "_render_string" +   Type "bool | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /pandas/io/formats/style.py:2010:33 - error: "result" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/io/formats/style.py:2132:37 - error: Argument of type "Subset | Unknown | None" cannot be assigned to parameter "slice_" of type "Subset" in function "non_reducing_slice" +   Type "Subset | Unknown | None" is not assignable to type "Subset" +     Type "None" is not assignable to type "Subset" +       "None" is not assignable to "slice[Any, Any, Any]" +       "None" is not assignable to "Sequence[Unknown]" +       "None" is not assignable to "Index" (reportArgumentType) + /pandas/io/formats/style.py:2704:25 - error: Expected mapping for dictionary unpack operator (reportGeneralTypeIssues) + /pandas/io/formats/style.py:2711:23 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /pandas/io/formats/style.py:2711:63 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /pandas/io/formats/style.py:3954:12 - error: No overloads for "amin" match the provided arguments (reportCallIssue) + /pandas/io/formats/style.py:3954:22 - error: Argument of type "Unknown | Sequence[Unknown] | ndarray[_AnyShape, dtype[Any]] | DataFrame | Series | None" cannot be assigned to parameter "a" of type "ArrayLike" in function "amin" +   Type "Unknown | Sequence[Unknown] | ndarray[_AnyShape, dtype[Any]] | DataFrame | Series | None" is not assignable to type "ArrayLike" +     Type "None" is not assignable to type "ArrayLike" +       "None" is incompatible with protocol "_Buffer" +         "__buffer__" is not present +       "None" is incompatible with protocol "_SupportsArray[dtype[Any]]" +         "__array__" is not present +       "None" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[Any]]]" +         "__len__" is not present + ... (reportArgumentType) + /pandas/io/formats/style.py:3955:12 - error: No overloads for "amax" match the provided arguments (reportCallIssue) + /pandas/io/formats/style.py:3955:22 - error: Argument of type "Unknown | Sequence[Unknown] | ndarray[_AnyShape, dtype[Any]] | DataFrame | Series | None" cannot be assigned to parameter "a" of type "ArrayLike" in function "amax" +   Type "Unknown | Sequence[Unknown] | ndarray[_AnyShape, dtype[Any]] | DataFrame | Series | None" is not assignable to type "ArrayLike" +     Type "None" is not assignable to type "ArrayLike" +       "None" is incompatible with protocol "_Buffer" +         "__buffer__" is not present +       "None" is incompatible with protocol "_SupportsArray[dtype[Any]]" +         "__array__" is not present +       "None" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[Any]]]" +         "__len__" is not present + ... (reportArgumentType) +/pandas/io/formats/style_render.py + /pandas/io/formats/style_render.py:144:71 - error: Argument of type "int | None" cannot be assigned to parameter "precision" of type "int" in function "_default_formatter" (reportArgumentType) + /pandas/io/formats/style_render.py:147:71 - error: Argument of type "int | None" cannot be assigned to parameter "precision" of type "int" in function "_default_formatter" (reportArgumentType) + /pandas/io/formats/style_render.py:150:71 - error: Argument of type "int | None" cannot be assigned to parameter "precision" of type "int" in function "_default_formatter" (reportArgumentType) + /pandas/io/formats/style_render.py:153:71 - error: Argument of type "int | None" cannot be assigned to parameter "precision" of type "int" in function "_default_formatter" (reportArgumentType) + /pandas/io/formats/style_render.py:156:71 - error: Argument of type "int | None" cannot be assigned to parameter "precision" of type "int" in function "_default_formatter" (reportArgumentType) + /pandas/io/formats/style_render.py:959:28 - error: "row_body_cells" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/io/formats/style_render.py:1849:32 - error: "last_label" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/io/formats/style_render.py:1855:33 - error: "last_label" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/io/formats/style_render.py:1992:43 - error: Argument of type "int | None" cannot be assigned to parameter "precision" of type "int" in function "_default_formatter" (reportArgumentType) +/pandas/io/html.py + /pandas/io/html.py:639:9 - error: Method "_parse_td" overrides class "_HtmlFrameParser" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "obj", override parameter is named "row" (reportIncompatibleMethodOverride) + /pandas/io/html.py:731:9 - error: Method "_parse_td" overrides class "_HtmlFrameParser" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "obj", override parameter is named "row" (reportIncompatibleMethodOverride) + /pandas/io/html.py:736:9 - error: Method "_parse_tables" overrides class "_HtmlFrameParser" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "attrs", override parameter is named "kwargs" (reportIncompatibleMethodOverride) +/pandas/io/json/_json.py + /pandas/io/json/_json.py:363:42 - error: Argument of type "NDFrame" cannot be assigned to parameter "data" of type "DataFrame | Series" in function "build_table_schema" +   Type "NDFrame" is not assignable to type "DataFrame | Series" +     "NDFrame" is not assignable to "DataFrame" +     "NDFrame" is not assignable to "Series" (reportArgumentType) + /pandas/io/json/_json.py:385:13 - error: "__setitem__" method not defined on type "NDFrame" (reportIndexIssue) + /pandas/io/json/_json.py:955:16 - error: "obj" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/io/json/_json.py:978:60 - error: Argument of type "str | _NoDefault" cannot be assigned to parameter "dtype_backend" of type "DtypeBackend | Literal['numpy', _NoDefault.no_default]" in function "arrow_table_to_pandas" +   Type "str | _NoDefault" is not assignable to type "DtypeBackend | Literal['numpy', _NoDefault.no_default]" +     Type "_NoDefault" is not assignable to type "DtypeBackend | Literal['numpy', _NoDefault.no_default]" +       "_NoDefault" is not assignable to "Literal['pyarrow']" +       "_NoDefault" is not assignable to "Literal['numpy_nullable']" +       "_NoDefault" is not assignable to "Literal['numpy']" +       "_NoDefault" is not assignable to type "NoDefault" (reportArgumentType) + /pandas/io/json/_json.py:1003:56 - error: Argument of type "str" cannot be assigned to parameter "dtype_backend" of type "DtypeBackend" in function "convert_dtypes" +   Type "str" is not assignable to type "DtypeBackend" +     "str" is not assignable to type "Literal['pyarrow']" +     "str" is not assignable to type "Literal['numpy_nullable']" (reportArgumentType) + /pandas/io/json/_json.py:1081:56 - error: Argument of type "str" cannot be assigned to parameter "dtype_backend" of type "DtypeBackend" in function "convert_dtypes" +   Type "str" is not assignable to type "DtypeBackend" +     "str" is not assignable to type "Literal['pyarrow']" +     "str" is not assignable to type "Literal['numpy_nullable']" (reportArgumentType) +/pandas/io/json/_normalize.py + /pandas/io/json/_normalize.py:481:16 - error: Invalid conditional operand of type "bool | NDArray[bool_] | NDFrame" +   Method __bool__ for type "NDFrame" returns type "NoReturn" rather than "bool" (reportGeneralTypeIssues) + /pandas/io/json/_normalize.py:615:37 - error: Argument of type "list[Unknown]" cannot be assigned to parameter "repeats" of type "int" in function "repeat" +   "list[Unknown]" is not assignable to "int" (reportArgumentType) +/pandas/io/parquet.py + /pandas/io/parquet.py:236:33 - error: Argument of type "ParquetCompressionOptions" cannot be assigned to parameter "compression" of type "str" in function "write_table" +   Type "ParquetCompressionOptions" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) +/pandas/io/parsers/arrow_parser_wrapper.py + /pandas/io/parsers/arrow_parser_wrapper.py:184:30 - error: Operator "+" not supported for types "list[str]" and "range | Unknown" +   Operator "+" not supported for types "list[str]" and "range" (reportOperatorIssue) + /pandas/io/parsers/arrow_parser_wrapper.py:201:43 - error: Cannot access attribute "get" for class "dtype[Any]" +   Attribute "get" is unknown (reportAttributeAccessIssue) + /pandas/io/parsers/arrow_parser_wrapper.py:201:43 - error: Cannot access attribute "get" for class "ExtensionDtype" +   Attribute "get" is unknown (reportAttributeAccessIssue) + /pandas/io/parsers/arrow_parser_wrapper.py:202:39 - error: Cannot access attribute "get" for class "dtype[Any]" +   Attribute "get" is unknown (reportAttributeAccessIssue) + /pandas/io/parsers/arrow_parser_wrapper.py:202:39 - error: Cannot access attribute "get" for class "ExtensionDtype" +   Attribute "get" is unknown (reportAttributeAccessIssue) + /pandas/io/parsers/arrow_parser_wrapper.py:203:63 - error: Cannot access attribute "get" for class "dtype[Any]" +   Attribute "get" is unknown (reportAttributeAccessIssue) + /pandas/io/parsers/arrow_parser_wrapper.py:203:63 - error: Cannot access attribute "get" for class "ExtensionDtype" +   Attribute "get" is unknown (reportAttributeAccessIssue) + /pandas/io/parsers/arrow_parser_wrapper.py:207:29 - error: "__delitem__" method not defined on type "dtype[Any]" (reportIndexIssue) + /pandas/io/parsers/arrow_parser_wrapper.py:207:29 - error: "__delitem__" method not defined on type "ExtensionDtype" (reportIndexIssue) +/pandas/io/parsers/base_parser.py + /pandas/io/parsers/base_parser.py:243:37 - error: Argument of type "int | integer[Any]" cannot be assigned to parameter "object" of type "tuple[Any, ...]" in function "insert" +   Type "int | integer[Any]" is not assignable to type "tuple[Any, ...]" +     "int" is not assignable to "tuple[Any, ...]" (reportArgumentType) + /pandas/io/parsers/base_parser.py:376:22 - error: Operator "|" not supported for types "Unknown | set[str] | set[Unknown] | dict[Unknown, Unknown]" and "Unknown | set[Unknown]" +   Operator "|" not supported for types "dict[Unknown, Unknown]" and "set[Unknown]" (reportOperatorIssue) + /pandas/io/parsers/base_parser.py:432:20 - error: Type "int | integer[Any]" is not assignable to return type "int" +   Type "int | integer[Any]" is not assignable to type "int" +     "integer[Any]" is not assignable to "int" (reportReturnType) +/pandas/io/parsers/c_parser_wrapper.py + /pandas/io/parsers/c_parser_wrapper.py:137:46 - error: Argument of type "set[int]" cannot be assigned to parameter "usecols" of type "SequenceT@_validate_usecols_names" in function "_validate_usecols_names" +   Type "set[int]" is not assignable to type "Sequence[Hashable]" +     "set[int]" is not assignable to "Sequence[Hashable]" (reportArgumentType) + /pandas/io/parsers/c_parser_wrapper.py:148:21 - error: Argument of type "set[int]" cannot be assigned to parameter "usecols" of type "SequenceT@_validate_usecols_names" in function "_validate_usecols_names" +   Type "set[int]" is not assignable to type "Sequence[Hashable]" +     "set[int]" is not assignable to "Sequence[Hashable]" (reportArgumentType) + /pandas/io/parsers/c_parser_wrapper.py:195:47 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) + /pandas/io/parsers/c_parser_wrapper.py:198:13 - error: Argument of type "Sequence[Hashable] | list[int] | list[Hashable] | list[Unknown] | None" cannot be assigned to parameter "names" of type "Sequence[Hashable]" in function "_set_noconvert_dtype_columns" +   Type "Sequence[Hashable] | list[int] | list[Hashable] | list[Unknown] | None" is not assignable to type "Sequence[Hashable]" +     "None" is not assignable to "Sequence[Hashable]" (reportArgumentType) + /pandas/io/parsers/c_parser_wrapper.py:217:52 - error: Argument of type "Sequence[Hashable] | list[int] | list[Hashable] | list[Unknown] | None" cannot be assigned to parameter "column_names" of type "list[str]" in function "_concatenate_chunks" +   Type "Sequence[Hashable] | list[int] | list[Hashable] | list[Unknown] | None" is not assignable to type "list[str]" +     "Sequence[Hashable]" is not assignable to "list[str]" (reportArgumentType) + /pandas/io/parsers/c_parser_wrapper.py:240:57 - error: Argument of type "list[Hashable] | MultiIndex" cannot be assigned to parameter "names" of type "SequenceT@_filter_usecols" in function "_filter_usecols" +   Type "list[Hashable] | MultiIndex" is not assignable to type "Sequence[Hashable]" +     Type "list[Hashable] | MultiIndex" is not assignable to type "Sequence[Hashable]" +       "MultiIndex" is not assignable to "Sequence[Hashable]" (reportArgumentType) + /pandas/io/parsers/c_parser_wrapper.py:289:51 - error: Argument of type "Sequence[Hashable] | list[int] | list[Hashable] | list[Unknown] | None" cannot be assigned to parameter "names" of type "SequenceT@_filter_usecols" in function "_filter_usecols" +   Type "Sequence[Hashable] | list[int] | list[Hashable] | list[Unknown] | None" is not assignable to type "Sequence[Hashable]" +     Type "Sequence[Hashable] | list[int] | list[Hashable] | list[Unknown] | None" is not assignable to type "Sequence[Hashable]" +       "None" is not assignable to "Sequence[Hashable]" (reportArgumentType) +/pandas/io/parsers/python_parser.py + /pandas/io/parsers/python_parser.py:174:27 - error: "orig_names" overrides symbol of same name in class "ParserBase" +   Variable is mutable so its type is invariant +     Override type "list[Hashable]" is not the same as base type "Sequence[Hashable] | None" (reportIncompatibleVariableOverride) +/pandas/io/pytables.py + /pandas/io/pytables.py:412:17 - error: Type "list[Term | Unknown] | Term | str | None" is not assignable to declared type "str | list[Unknown] | None" +   Type "list[Term | Unknown] | Term | str | None" is not assignable to type "str | list[Unknown] | None" +     Type "Term" is not assignable to type "str | list[Unknown] | None" +       "PyTablesExpr" is not assignable to "str" +       "PyTablesExpr" is not assignable to "list[Unknown]" +       "PyTablesExpr" is not assignable to "None" (reportAssignmentType) + /pandas/io/pytables.py:483:8 - error: Operator "<=" not supported for types "int | Unknown | None" and "int | Unknown | None" +   Operator "<=" not supported for types "None" and "None" +   Operator "<=" not supported for types "None" and "int" +   Operator "<=" not supported for types "int" and "None" (reportOperatorIssue) + /pandas/io/pytables.py:487:11 - error: Operator ">" not supported for "None" (reportOptionalOperand) + /pandas/io/pytables.py:639:30 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /pandas/io/pytables.py:1281:13 - error: "s" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/io/pytables.py:1285:16 - error: "s" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/io/pytables.py:1287:16 - error: "s" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/io/pytables.py:1411:20 - error: Argument of type "bool | None" cannot be assigned to parameter "dropna" of type "bool" in function "_write_to_group" +   Type "bool | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /pandas/io/pytables.py:1736:25 - error: Argument of type "TableIterator | Unknown" cannot be assigned to parameter "value" of type "DataFrame | Series" in function "append" +   Type "TableIterator | Unknown" is not assignable to type "DataFrame | Series" +     Type "TableIterator" is not assignable to type "DataFrame | Series" +       "TableIterator" is not assignable to "DataFrame" +       "TableIterator" is not assignable to "Series" (reportArgumentType) + /pandas/io/pytables.py:1742:38 - error: Argument of type "TableIterator | Unknown" cannot be assigned to parameter "value" of type "DataFrame | Series" in function "put" +   Type "TableIterator | Unknown" is not assignable to type "DataFrame | Series" +     Type "TableIterator" is not assignable to type "DataFrame | Series" +       "TableIterator" is not assignable to "DataFrame" +       "TableIterator" is not assignable to "Series" (reportArgumentType) + /pandas/io/pytables.py:1941:64 - error: Argument of type "Unknown | None" cannot be assigned to parameter "encoding" of type "str" in function "_create_storer" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /pandas/io/pytables.py:2017:16 - error: "group" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/io/pytables.py:2091:15 - error: Operator "<" not supported for types "Unknown | int | None" and "Unknown | int | None" +   Operator "<" not supported for types "None" and "int" +   Operator "<" not supported for types "None" and "None" +   Operator "<" not supported for types "int" and "None" (reportOperatorIssue) + /pandas/io/pytables.py:2092:50 - error: Argument of type "Unknown | int | None" cannot be assigned to parameter "arg2" of type "SupportsRichComparisonT@min" in function "min" +   Type "Unknown | int | None" is not assignable to type "SupportsRichComparison" +     Type "Unknown | int | None" is not assignable to type "SupportsRichComparison" +       Type "None" is not assignable to type "SupportsRichComparison" +         "None" is incompatible with protocol "SupportsDunderLT[Any]" +           "__lt__" is not present +         "None" is incompatible with protocol "SupportsDunderGT[Any]" +           "__gt__" is not present (reportArgumentType) + /pandas/io/pytables.py:2093:43 - error: "__getitem__" method not defined on type "bool" (reportIndexIssue) + /pandas/io/pytables.py:2196:25 - error: "itemsize" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/io/pytables.py:2237:35 - error: "cols" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/io/pytables.py:2254:41 - error: Argument of type "Unknown | None" cannot be assigned to parameter "val_kind" of type "str" in function "_maybe_convert" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /pandas/io/pytables.py:2329:16 - error: No overloads for "iter" match the provided arguments (reportCallIssue) + /pandas/io/pytables.py:2329:21 - error: Argument of type "Unknown | None" cannot be assigned to parameter "object" of type "_GetItemIterable[_T@iter]" in function "iter" +   Type "Unknown | None" is not assignable to type "_GetItemIterable[_T@iter]" +     "None" is incompatible with protocol "_GetItemIterable[_T@iter]" +       "__getitem__" is not present (reportArgumentType) + /pandas/io/pytables.py:2341:54 - error: "itemsize" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/io/pytables.py:2622:16 - error: Arguments missing for parameters "dflt", "dtype", "itemsize", "kind", "type" (reportCallIssue) + /pandas/io/pytables.py:2645:72 - error: Argument of type "Unknown | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@list]" in function "__init__" +   Type "Unknown | None" is not assignable to type "Iterable[_T@list]" +     "None" is incompatible with protocol "Iterable[_T@list]" +       "__iter__" is not present (reportArgumentType) + /pandas/io/pytables.py:2654:9 - error: Method "convert" overrides class "IndexCol" in an incompatible manner +   Return type mismatch: base method returns type "tuple[ndarray[_AnyShape, dtype[Any]], ndarray[_AnyShape, dtype[Any]]] | tuple[Index, Index]", override returns type "tuple[Unknown | None, ndarray[_AnyShape, dtype[Any]] | DatetimeArray | Categorical | Unknown]" +     Type "tuple[Unknown | None, ndarray[_AnyShape, dtype[Any]] | DatetimeArray | Categorical | Unknown]" is not assignable to type "tuple[ndarray[_AnyShape, dtype[Any]], ndarray[_AnyShape, dtype[Any]]] | tuple[Index, Index]" +       "tuple[Unknown | None, ndarray[_AnyShape, dtype[Any]] | DatetimeArray | Categorical | Unknown]" is not assignable to "tuple[ndarray[_AnyShape, dtype[Any]], ndarray[_AnyShape, dtype[Any]]]" +         Tuple entry 1 is incorrect type +           Type "Unknown | None" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +       "tuple[Unknown | None, ndarray[_AnyShape, dtype[Any]] | DatetimeArray | Categorical | Unknown]" is not assignable to "tuple[Index, Index]" +         Tuple entry 1 is incorrect type +           Type "Unknown | None" is not assignable to type "Index" (reportIncompatibleMethodOverride) + /pandas/io/pytables.py:2700:12 - error: Expected 1 more positional argument (reportCallIssue) + /pandas/io/pytables.py:2700:18 - error: Cannot access attribute "startswith" for class "ExtensionDtype" +   Attribute "startswith" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:2700:18 - error: Cannot access attribute "startswith" for class "dtype[Any]" +   Attribute "startswith" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:2700:18 - error: Cannot access attribute "startswith" for class "type[complex]" +   Attribute "startswith" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:2700:18 - error: Cannot access attribute "startswith" for class "type[bool]" +   Attribute "startswith" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:2700:18 - error: Cannot access attribute "startswith" for class "type[object]" +   Attribute "startswith" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:2700:18 - error: Cannot access attribute "startswith" for class "Mapping[Hashable, Dtype]" +   Attribute "startswith" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:2702:48 - error: Argument of type "DtypeArg | LiteralString" cannot be assigned to parameter "datetime64_dtype" of type "str" in function "_set_tz" +   Type "DtypeArg | LiteralString" is not assignable to type "str" +     "ExtensionDtype" is not assignable to "str" (reportArgumentType) + /pandas/io/pytables.py:2742:29 - error: No overloads for "astype" match the provided arguments (reportCallIssue) + /pandas/io/pytables.py:2742:46 - error: Argument of type "DtypeArg | LiteralString" cannot be assigned to parameter "dtype" of type "DTypeLike" in function "astype" +   Type "DtypeArg | LiteralString" is not assignable to type "DTypeLike" +     Type "ExtensionDtype" is not assignable to type "DTypeLike" +       "ExtensionDtype" is not assignable to "type[Any]" +       "ExtensionDtype" is not assignable to "dtype[Any]" +       "ExtensionDtype" is incompatible with protocol "_SupportsDType[dtype[Any]]" +         "dtype" is not present +       "ExtensionDtype" is not assignable to "tuple[_DTypeLikeNested, _DTypeLikeNested]" +       "ExtensionDtype" is not assignable to "list[Any]" + ... (reportArgumentType) + /pandas/io/pytables.py:2749:17 - error: Argument of type "DatetimeArray | NDArray[Any] | Categorical | Unknown" cannot be assigned to parameter "data" of type "ndarray[_AnyShape, dtype[Any]]" in function "_unconvert_string_array" +   Type "DatetimeArray | NDArray[Any] | Categorical | Unknown" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "Categorical" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/io/pytables.py:2778:16 - error: Arguments missing for parameters "dflt", "dtype", "itemsize", "kind", "shape", "type" (reportCallIssue) + /pandas/io/pytables.py:3086:31 - error: Argument of type "_Array1D[float64] | Any" cannot be assigned to parameter "values" of type "NDArray[int64]" in function "_set_tz" +   Type "_Array1D[float64] | Any" is not assignable to type "NDArray[int64]" +     "ndarray[tuple[int], dtype[float64]]" is not assignable to "ndarray[_AnyShape, dtype[int64]]" +       Type parameter "_DTypeT_co@ndarray" is covariant, but "dtype[float64]" is not a subtype of "dtype[int64]" +         "dtype[float64]" is not assignable to "dtype[int64]" +           Type parameter "_ScalarT_co@dtype" is covariant, but "float64" is not a subtype of "int64" (reportArgumentType) + /pandas/io/pytables.py:3092:24 - error: Cannot access attribute "T" for class "list[Unknown]" +   Attribute "T" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:3118:35 - error: Argument of type "Unknown | None" cannot be assigned to parameter "obj" of type "AnyArrayLike" in function "write_array" +   Type "Unknown | None" is not assignable to type "AnyArrayLike" +     Type "None" is not assignable to type "AnyArrayLike" +       "None" is not assignable to "ExtensionArray" +       "None" is not assignable to "ndarray[_AnyShape, dtype[Any]]" +       "None" is not assignable to "Index" +       "None" is not assignable to "Series" (reportArgumentType) + /pandas/io/pytables.py:3146:41 - error: Argument of type "Unknown | None" cannot be assigned to parameter "obj" of type "AnyArrayLike" in function "write_array" +   Type "Unknown | None" is not assignable to type "AnyArrayLike" +     Type "None" is not assignable to type "AnyArrayLike" +       "None" is not assignable to "ExtensionArray" +       "None" is not assignable to "ndarray[_AnyShape, dtype[Any]]" +       "None" is not assignable to "Index" +       "None" is not assignable to "Series" (reportArgumentType) + /pandas/io/pytables.py:3184:16 - error: "__getitem__" method not defined on type "Node" (reportIndexIssue) + /pandas/io/pytables.py:3253:12 - error: Operator "in" not supported for types "str" and "Node" (reportOperatorIssue) + /pandas/io/pytables.py:3289:45 - error: Argument of type "AnyArrayLike | Any" cannot be assigned to parameter "value" of type "ArrayLike" in function "write_array_empty" +   Type "AnyArrayLike | Any" is not assignable to type "ArrayLike" +     Type "Index" is not assignable to type "ArrayLike" +       "Index" is not assignable to "ExtensionArray" +       "Index" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/io/pytables.py:3333:41 - error: Argument of type "AnyArrayLike | Any" cannot be assigned to parameter "value" of type "ArrayLike" in function "write_array_empty" +   Type "AnyArrayLike | Any" is not assignable to type "ArrayLike" +     Type "Index" is not assignable to type "ArrayLike" +       "Index" is not assignable to "ExtensionArray" +       "Index" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/io/pytables.py:3349:36 - error: Cannot access attribute "values" for class "Node" +   Attribute "values" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:3409:31 - error: Cannot access attribute "block0_values" for class "Node" +   Attribute "block0_values" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:3444:64 - error: "_start" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/io/pytables.py:3444:77 - error: "_stop" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/io/pytables.py:3447:35 - error: Cannot access attribute "T" for class "list[Unknown]" +   Attribute "T" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:3516:5 - error: Declaration "levels" is obscured by a declaration of the same name (reportRedeclaration) + /pandas/io/pytables.py:3516:36 - error: Type "Literal[1]" is not assignable to declared type "list[Hashable]" +   "Literal[1]" is not assignable to "list[Hashable]" (reportAssignmentType) + /pandas/io/pytables.py:3635:16 - error: Type "int_" is not assignable to return type "int" +   "signedinteger[_NBitIntP]" is not assignable to "int" (reportReturnType) + /pandas/io/pytables.py:3640:16 - error: Operator "in" not supported for types "Literal['table']" and "Node" (reportOperatorIssue) + /pandas/io/pytables.py:3666:24 - error: Argument of type "Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /pandas/io/pytables.py:3678:22 - error: Argument of type "Unknown | None" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "Unknown | None" is not assignable to type "ConvertibleToInt" +     Type "None" is not assignable to type "ConvertibleToInt" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "None" is incompatible with protocol "SupportsInt" +         "__int__" is not present +       "None" is incompatible with protocol "SupportsIndex" + ... (reportArgumentType) + /pandas/io/pytables.py:3678:22 - error: Argument of type "Unknown | None" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "Unknown | None" is not assignable to type "ConvertibleToInt" +     Type "None" is not assignable to type "ConvertibleToInt" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "None" is incompatible with protocol "SupportsInt" +         "__int__" is not present +       "None" is incompatible with protocol "SupportsIndex" (reportArgumentType) + /pandas/io/pytables.py:4135:13 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /pandas/io/pytables.py:4135:13 - error: Argument of type "Unknown | AxisInt | None" cannot be assigned to parameter "s" of type "slice[Any, Any, Any]" in function "__getitem__" +   Type "Unknown | AxisInt | None" is not assignable to type "slice[Any, Any, Any]" +     "int" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /pandas/io/pytables.py:4136:40 - error: Argument of type "Unknown | AxisInt | None" cannot be assigned to parameter "axis" of type "Axis" in function "_get_axis_name" +   Type "Unknown | AxisInt | None" is not assignable to type "Axis" +     Type "None" is not assignable to type "Axis" +       "None" is not assignable to "int" +       "None" is not assignable to "Literal['index']" +       "None" is not assignable to "Literal['columns']" +       "None" is not assignable to "Literal['rows']" (reportArgumentType) + /pandas/io/pytables.py:4207:25 - error: Argument of type "Index" cannot be assigned to parameter "columns" of type "list[str]" in function "_maybe_convert_for_string_atom" +   "Index" is not assignable to "list[str]" (reportArgumentType) + /pandas/io/pytables.py:4215:45 - error: Cannot access attribute "tz" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "tz" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:4215:45 - error: Cannot access attribute "tz" for class "ExtensionArray" +   Attribute "tz" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:4215:45 - error: Cannot access attribute "tz" for class "ndarray[tuple[()], dtype[Any]]" +   Attribute "tz" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:4219:42 - error: Cannot access attribute "ordered" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "ordered" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:4219:42 - error: Cannot access attribute "ordered" for class "ExtensionArray" +   Attribute "ordered" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:4219:42 - error: Cannot access attribute "ordered" for class "ndarray[tuple[()], dtype[Any]]" +   Attribute "ordered" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:4221:54 - error: Cannot access attribute "categories" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:4221:54 - error: Cannot access attribute "categories" for class "ExtensionArray" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:4221:54 - error: Cannot access attribute "categories" for class "ndarray[tuple[()], dtype[Any]]" +   Attribute "categories" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:4383:23 - error: "process_filter" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/io/pytables.py:4563:28 - error: Argument of type "Unknown | None" cannot be assigned to parameter "fletcher32" of type "bool" in function "create_description" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /pandas/io/pytables.py:4598:37 - error: Cannot access attribute "all" for class "bool" +   Attribute "all" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:4768:9 - error: Method "read" overrides class "Fixed" in an incompatible manner +   Return type mismatch: base method returns type "Series | DataFrame", override returns type "DataFrame | None" +     Type "DataFrame | None" is not assignable to type "Series | DataFrame" +       Type "None" is not assignable to type "Series | DataFrame" +         "None" is not assignable to "Series" +         "None" is not assignable to "DataFrame" (reportIncompatibleMethodOverride) + /pandas/io/pytables.py:4895:9 - error: Method "read" overrides class "AppendableFrameTable" in an incompatible manner +   Return type mismatch: base method returns type "DataFrame | None", override returns type "Series" +     Type "Series" is not assignable to type "DataFrame | None" +       "Series" is not assignable to "None" +       "Series" is not assignable to "DataFrame" (reportIncompatibleMethodOverride) + /pandas/io/pytables.py:4910:15 - error: "set_index" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/io/pytables.py:4912:15 - error: "iloc" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/io/pytables.py:5038:17 - error: "set_index" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/io/pytables.py:5205:27 - error: Cannot access attribute "to_numpy" for class "ndarray[_AnyShape, dtype[Any]]" +   Attribute "to_numpy" is unknown (reportAttributeAccessIssue) + /pandas/io/pytables.py:5506:26 - error: No overloads for "generate" match the provided arguments (reportCallIssue) + /pandas/io/pytables.py:5506:40 - error: Argument of type "Unknown | NDArray[Any] | None" cannot be assigned to parameter "where" of type "None" in function "generate" +   Type "Unknown | NDArray[Any] | None" is not assignable to type "None" +     "ndarray[_AnyShape, dtype[Any]]" is not assignable to "None" (reportArgumentType) +/pandas/io/sas/sas_xport.py + /pandas/io/sas/sas_xport.py:491:32 - error: "v" is possibly unbound (reportPossiblyUnboundVariable) +/pandas/io/sql.py + /pandas/io/sql.py:1036:31 - error: "copy" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/io/sql.py:1045:43 - error: "columns" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/io/sql.py:1051:43 - error: "items" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/io/sql.py:1056:51 - error: Cannot access attribute "pyarrow_dtype" for class "dtype[Any]" +   Attribute "pyarrow_dtype" is unknown (reportAttributeAccessIssue) + /pandas/io/sql.py:1056:51 - error: Cannot access attribute "pyarrow_dtype" for class "ExtensionDtype" +   Attribute "pyarrow_dtype" is unknown (reportAttributeAccessIssue) + /pandas/io/sql.py:1100:21 - error: Argument of type "Unknown | DataFrame | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "Unknown | DataFrame | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /pandas/io/sql.py:1311:26 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /pandas/io/sql.py:1320:21 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /pandas/io/sql.py:1333:21 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /pandas/io/sql.py:1336:21 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /pandas/io/sql.py:1340:41 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /pandas/io/sql.py:1342:21 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /pandas/io/sql.py:1346:25 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /pandas/io/sql.py:1668:9 - error: Method "execute" overrides class "PandasSQL" in an incompatible manner +   Return type mismatch: base method returns type "None", override returns type "Unknown | CursorResult[Any]" +     Type "Unknown | CursorResult[Any]" is not assignable to type "None" +       "CursorResult[Any]" is not assignable to "None" (reportIncompatibleMethodOverride) + /pandas/io/sql.py:1679:20 - error: No overloads for "execute" match the provided arguments (reportCallIssue) + /pandas/io/sql.py:1679:37 - error: Argument of type "str | Select[Unknown] | TextClause | Delete" cannot be assigned to parameter "statement" of type "Executable" in function "execute" +   Type "str | Select[Unknown] | TextClause | Delete" is not assignable to type "Executable" +     "str" is not assignable to "Executable" (reportArgumentType) + /pandas/io/sql.py:1679:37 - error: Argument of type "str | Select[Unknown] | TextClause | Delete" cannot be assigned to parameter "statement" of type "str" in function "exec_driver_sql" +   Type "str | Select[Unknown] | TextClause | Delete" is not assignable to type "str" +     "Delete" is not assignable to "str" (reportArgumentType) + /pandas/io/sql.py:1914:39 - error: Cannot access attribute "items" for class "ExtensionDtype" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /pandas/io/sql.py:1914:39 - error: Cannot access attribute "items" for class "str" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /pandas/io/sql.py:1914:39 - error: Cannot access attribute "items" for class "dtype[Any]" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /pandas/io/sql.py:1914:39 - error: Cannot access attribute "items" for class "type[str]" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /pandas/io/sql.py:1914:39 - error: Cannot access attribute "items" for class "type[complex]" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /pandas/io/sql.py:1914:39 - error: Cannot access attribute "items" for class "type[bool]" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /pandas/io/sql.py:1914:39 - error: Cannot access attribute "items" for class "type[object]" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /pandas/io/sql.py:1914:39 - error: "items" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/io/sql.py:2548:42 - error: "columns" is not a known attribute of "None" (reportOptionalMemberAccess) + /pandas/io/sql.py:2866:39 - error: Cannot access attribute "items" for class "ExtensionDtype" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /pandas/io/sql.py:2866:39 - error: Cannot access attribute "items" for class "str" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /pandas/io/sql.py:2866:39 - error: Cannot access attribute "items" for class "dtype[Any]" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /pandas/io/sql.py:2866:39 - error: Cannot access attribute "items" for class "type[str]" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /pandas/io/sql.py:2866:39 - error: Cannot access attribute "items" for class "type[complex]" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /pandas/io/sql.py:2866:39 - error: Cannot access attribute "items" for class "type[bool]" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /pandas/io/sql.py:2866:39 - error: Cannot access attribute "items" for class "type[object]" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /pandas/io/sql.py:2866:39 - error: "items" is not a known attribute of "None" (reportOptionalMemberAccess) +/pandas/io/stata.py + /pandas/io/stata.py:1092:19 - error: No overloads for "get_handle" match the provided arguments (reportCallIssue) + /pandas/io/stata.py:1097:25 - error: Argument of type "CompressionDict | str | None" cannot be assigned to parameter "compression" of type "CompressionOptions" in function "get_handle" +   Type "CompressionDict | str | None" is not assignable to type "CompressionOptions" +     Type "str" is not assignable to type "CompressionOptions" +       "str" is not assignable to "dict[str, Any]" +       "str" is not assignable to "None" +       "str" is not assignable to type "Literal['infer']" +       "str" is not assignable to type "Literal['gzip']" +       "str" is not assignable to type "Literal['bz2']" +       "str" is not assignable to type "Literal['zip']" + ... (reportArgumentType) + /pandas/io/stata.py:2879:14 - error: No overloads for "get_handle" match the provided arguments (reportCallIssue) + /pandas/io/stata.py:2882:25 - error: Argument of type "CompressionDict | str | None" cannot be assigned to parameter "compression" of type "CompressionOptions" in function "get_handle" +   Type "CompressionDict | str | None" is not assignable to type "CompressionOptions" +     Type "str" is not assignable to type "CompressionOptions" +       "str" is not assignable to "dict[str, Any]" +       "str" is not assignable to "None" +       "str" is not assignable to type "Literal['infer']" +       "str" is not assignable to type "Literal['gzip']" +       "str" is not assignable to type "Literal['bz2']" +       "str" is not assignable to type "Literal['zip']" + ... (reportArgumentType) + /pandas/io/stata.py:3844:5 - error: "_encoding" overrides symbol of same name in class "StataWriter" +   Variable is mutable so its type is invariant +     Override type "Literal['utf-8']" is not the same as base type "Literal['latin-1', 'utf-8']" (reportIncompatibleVariableOverride) +/pandas/io/xml.py + /pandas/io/xml.py:46:22 - error: "etree" is unknown import symbol (reportAttributeAccessIssue) + /pandas/io/xml.py:440:31 - error: "elems" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/io/xml.py:559:31 - error: "elems" is possibly unbound (reportPossiblyUnboundVariable) +/pandas/plotting/_core.py + /pandas/plotting/_core.py:2218:20 - error: "module" is possibly unbound (reportPossiblyUnboundVariable) + /pandas/plotting/_core.py:2221:20 - error: "module" is possibly unbound (reportPossiblyUnboundVariable) +/pandas/plotting/_matplotlib/boxplot.py + /pandas/plotting/_matplotlib/boxplot.py:164:9 - error: Method "_get_colors" overrides class "MPLPlot" in an incompatible manner +   Return type mismatch: base method returns type "list[MatplotlibColor]", override returns type "None" +     "None" is not assignable to "list[MatplotlibColor]" (reportIncompatibleMethodOverride) + /pandas/plotting/_matplotlib/boxplot.py:278:13 - error: "artist" is not a known attribute of module "matplotlib" (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/boxplot.py:280:13 - error: "artist" is not a known attribute of module "matplotlib" (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/boxplot.py:282:13 - error: "artist" is not a known attribute of module "matplotlib" (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/boxplot.py:284:13 - error: "artist" is not a known attribute of module "matplotlib" (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/boxplot.py:338:14 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /pandas/plotting/_matplotlib/boxplot.py:338:27 - error: Argument of type "list[Unknown | None] | list[Unknown] | tuple[Unknown, ...] | Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "list[Unknown | None] | list[Unknown] | tuple[Unknown, ...] | Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) +/pandas/plotting/_matplotlib/converter.py + /pandas/plotting/_matplotlib/converter.py:157:9 - error: Method "convert" overrides class "ConversionInterface" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "obj", override parameter is named "value" (reportIncompatibleMethodOverride) + /pandas/plotting/_matplotlib/converter.py:227:9 - error: Method "convert" overrides class "DateConverter" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "value", override parameter is named "values" (reportIncompatibleMethodOverride) + /pandas/plotting/_matplotlib/converter.py:291:9 - error: Method "convert" overrides class "DateConverter" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "value", override parameter is named "values" (reportIncompatibleMethodOverride) + /pandas/plotting/_matplotlib/converter.py:342:9 - error: Method "axisinfo" overrides class "DateConverter" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "unit" +   Parameter 2 name mismatch: base parameter is named "unit", override parameter is named "axis" +   Parameter 3 mismatch: base parameter "axis" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) +/pandas/plotting/_matplotlib/core.py + /pandas/plotting/_matplotlib/core.py:111:24 - error: "colors" is not a known attribute of module "matplotlib" (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/core.py:541:23 - error: Cannot access attribute "right_ax" for class "Axes" +   Attribute "right_ax" is unknown (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/core.py:709:33 - error: Argument of type "list[str]" cannot be assigned to parameter "iterable" of type "Iterable[type[number[Any, int | float | complex]]]" in function "extend" +   Type "Literal['object']" is not assignable to type "type[number[Any, int | float | complex]]" +   Type "Literal['category']" is not assignable to type "type[number[Any, int | float | complex]]" +   Type "Literal['string']" is not assignable to type "type[number[Any, int | float | complex]]" (reportArgumentType) + /pandas/plotting/_matplotlib/core.py:718:21 - error: Cannot assign to attribute "data" for class "MPLPlot*" +   Type "DataFrame | Series | Any" is not assignable to type "DataFrame" +     "Series" is not assignable to "DataFrame" (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/core.py:745:24 - error: Cannot access attribute "right_ax" for class "Axes" +   Attribute "right_ax" is unknown (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/core.py:756:24 - error: Cannot access attribute "right_ax" for class "Axes" +   Attribute "right_ax" is unknown (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/core.py:903:21 - error: Operator "+=" not supported for types "list[str]" and "Iterator[Hashable]" +   Operator "+" not supported for types "list[str]" and "Iterator[Hashable]" (reportOperatorIssue) + /pandas/plotting/_matplotlib/core.py:912:27 - error: Argument of type "list[Artist | None]" cannot be assigned to parameter "handles" of type "Iterable[Artist | tuple[Artist, ...]]" in function "legend" +   "list[Artist | None]" is not assignable to "Iterable[Artist | tuple[Artist, ...]]" +     Type parameter "_T_co@Iterable" is covariant, but "Artist | None" is not a subtype of "Artist | tuple[Artist, ...]" +       Type "Artist | None" is not assignable to type "Artist | tuple[Artist, ...]" +         Type "None" is not assignable to type "Artist | tuple[Artist, ...]" +           "None" is not assignable to "Artist" +           "None" is not assignable to "tuple[Artist, ...]" (reportArgumentType) + /pandas/plotting/_matplotlib/core.py:912:36 - error: Argument of type "Unknown | list[Hashable | str] | list[str]" cannot be assigned to parameter "labels" of type "Iterable[str]" in function "legend" +   Type "Unknown | list[Hashable | str] | list[str]" is not assignable to type "Iterable[str]" +     "list[Hashable | str]" is not assignable to "Iterable[str]" +       Type parameter "_T_co@Iterable" is covariant, but "Hashable | str" is not a subtype of "str" +         Type "Hashable | str" is not assignable to type "str" +           "Hashable" is not assignable to "str" (reportArgumentType) + /pandas/plotting/_matplotlib/core.py:1063:35 - error: Function with declared return type "bool" must return value on all code paths +   "None" is not assignable to "bool" (reportReturnType) + /pandas/plotting/_matplotlib/core.py:1202:19 - error: No overloads for "tile" match the provided arguments (reportCallIssue) + /pandas/plotting/_matplotlib/core.py:1203:17 - error: Argument of type "list[Number | number[Any, int | float | complex]]" cannot be assigned to parameter "A" of type "ArrayLike" in function "tile" +   Type "list[Number | number[Any, int | float | complex]]" is not assignable to type "ArrayLike" +     "list[Number | number[Any, int | float | complex]]" is incompatible with protocol "_Buffer" +       "__buffer__" is not present +     "list[Number | number[Any, int | float | complex]]" is incompatible with protocol "_SupportsArray[dtype[Any]]" +       "__array__" is not present +     "list[Number | number[Any, int | float | complex]]" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[Any]]]" +       "__getitem__" is an incompatible type +         No overloaded function matches type "(index: int, /) -> (_T_co@_NestedSequence | _NestedSequence[_T_co@_NestedSequence])" + ... (reportArgumentType) + /pandas/plotting/_matplotlib/core.py:1211:21 - error: Type "tuple[Any | dict[Unknown, Unknown] | NDArray[Any] | NDArray[Unknown] | Unknown, NDFrameT@_parse_errorbars | Unknown | Series* | DataFrame* | NDFrame*]" is not assignable to return type "tuple[Any, NDFrameT@_parse_errorbars]" +   Type "NDFrameT@_parse_errorbars | Unknown | Series* | DataFrame* | NDFrame*" is not assignable to type "NDFrameT@_parse_errorbars" (reportReturnType) + /pandas/plotting/_matplotlib/core.py:1240:36 - error: "axes" is not a known attribute of module "matplotlib" (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/core.py:1375:52 - error: Argument of type "Any | Unknown | int | integer[Any] | None" cannot be assigned to parameter "c_values" of type "Series" in function "_are_valid_colors" +   Type "Any | Unknown | int | integer[Any] | None" is not assignable to type "Series" +     "int" is not assignable to "Series" (reportArgumentType) + /pandas/plotting/_matplotlib/core.py:1377:53 - error: Argument of type "Any | Unknown | int | integer[Any] | None" cannot be assigned to parameter "c_values" of type "Series" in function "_get_color_mapping" +   Type "Any | Unknown | int | integer[Any] | None" is not assignable to type "Series" +     "int" is not assignable to "Series" (reportArgumentType) + /pandas/plotting/_matplotlib/core.py:1378:51 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) + /pandas/plotting/_matplotlib/core.py:1378:51 - error: "int" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /pandas/plotting/_matplotlib/core.py:1378:51 - error: "integer[Any]" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /pandas/plotting/_matplotlib/core.py:1383:25 - error: "patches" is not a known attribute of module "matplotlib" (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/core.py:1389:13 - error: Argument of type "ArrayLike | Unknown" cannot be assigned to parameter "x" of type "ArrayLike | float" in function "scatter" +   Type "ArrayLike | Unknown" is not assignable to type "ArrayLike | float" +     Type "ExtensionArray" is not assignable to type "ArrayLike | float" +       "ExtensionArray" is not assignable to "float" +       "ExtensionArray" is incompatible with protocol "_Buffer" +         "__buffer__" is not present +       "ExtensionArray" is incompatible with protocol "_SupportsArray[dtype[Any]]" +         "__array__" is not present +       "ExtensionArray" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[Any]]]" + ... (reportArgumentType) + /pandas/plotting/_matplotlib/core.py:1395:15 - error: Argument of type "Unknown | Hashable | int" cannot be assigned to parameter "s" of type "ArrayLike | float | None" in function "scatter" +   Type "Unknown | Hashable | int" is not assignable to type "ArrayLike | float | None" +     Type "Hashable" is not assignable to type "ArrayLike | float | None" +       "Hashable" is not assignable to "float" +       "Hashable" is incompatible with protocol "_Buffer" +         "__buffer__" is not present +       "Hashable" is incompatible with protocol "_SupportsArray[dtype[Any]]" +         "__array__" is not present +       "Hashable" is incompatible with protocol "_NestedSequence[_SupportsArray[dtype[Any]]]" + ... (reportArgumentType) + /pandas/plotting/_matplotlib/core.py:1404:32 - error: Argument of type "NDArray[float64]" cannot be assigned to parameter "ticks" of type "Sequence[float] | Locator" in function "set_ticks" +   Type "NDArray[float64]" is not assignable to type "Sequence[float] | Locator" +     "ndarray[_AnyShape, dtype[float64]]" is not assignable to "Sequence[float]" +     "ndarray[_AnyShape, dtype[float64]]" is not assignable to "Locator" (reportArgumentType) + /pandas/plotting/_matplotlib/core.py:1445:21 - error: "colors" is not a known attribute of module "matplotlib" (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/core.py:1457:39 - error: Argument of type "Unknown | None" cannot be assigned to parameter "cmap" of type "str | Colormap" in function "get_cmap" +   Type "Unknown | None" is not assignable to type "str | Colormap" +     Type "None" is not assignable to type "str | Colormap" +       "None" is not assignable to "str" +       "None" is not assignable to "Colormap" (reportArgumentType) + /pandas/plotting/_matplotlib/core.py:1477:24 - error: "colors" is not a known attribute of module "matplotlib" (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/core.py:1479:24 - error: "colors" is not a known attribute of module "matplotlib" (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/core.py:1599:17 - error: Argument of type "Series | ndarray[_AnyShape, dtype[Any]]" cannot be assigned to parameter "y" of type "ndarray[_AnyShape, dtype[Any]]" in function "_plot" +   Type "Series | ndarray[_AnyShape, dtype[Any]]" is not assignable to type "ndarray[_AnyShape, dtype[Any]]" +     "Series" is not assignable to "ndarray[_AnyShape, dtype[Any]]" (reportArgumentType) + /pandas/plotting/_matplotlib/core.py:1599:17 - error: Argument of type "Series | ndarray[_AnyShape, dtype[Any]]" cannot be assigned to parameter "data" of type "Series" in function "_ts_plot" +   Type "Series | ndarray[_AnyShape, dtype[Any]]" is not assignable to type "Series" +     "ndarray[_AnyShape, dtype[Any]]" is not assignable to "Series" (reportArgumentType) + /pandas/plotting/_matplotlib/core.py:1960:33 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /pandas/plotting/_matplotlib/core.py:1960:33 - error: Argument of type "Hashable" cannot be assigned to parameter "s" of type "slice[Any, Any, Any]" in function "__getitem__" +   "Hashable" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /pandas/plotting/_matplotlib/core.py:2041:48 - error: Argument of type "BarContainer" cannot be assigned to parameter "handle" of type "Artist" in function "_append_legend_handles_labels" +   "BarContainer" is not assignable to "Artist" (reportArgumentType) +/pandas/plotting/_matplotlib/misc.py + /pandas/plotting/_matplotlib/misc.py:192:22 - error: "patches" is not a known attribute of module "matplotlib" (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/misc.py:195:26 - error: "patches" is not a known attribute of module "matplotlib" (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/misc.py:401:31 - error: Argument of type "list[MatplotlibColor]" cannot be assigned to parameter "iterable" of type "Iterable[SupportsRichComparisonT@sorted]" in function "sorted" +   "list[MatplotlibColor]" is not assignable to "Iterable[SupportsRichComparisonT@sorted]" +     Type parameter "_T_co@Iterable" is covariant, but "MatplotlibColor" is not a subtype of "SupportsRichComparisonT@sorted" +       Type "MatplotlibColor" is not assignable to type "SupportsRichComparison" +         Type "MatplotlibColor" is not assignable to type "SupportsRichComparison" +           Type "Sequence[float]" is not assignable to type "SupportsRichComparison" (reportArgumentType) +/pandas/plotting/_matplotlib/timeseries.py + /pandas/plotting/_matplotlib/timeseries.py:90:34 - error: Argument of type "str" cannot be assigned to parameter "freq" of type "BaseOffset" in function "_upsample_others" +   "str" is not assignable to "BaseOffset" (reportArgumentType) + /pandas/plotting/_matplotlib/timeseries.py:115:23 - error: Cannot access attribute "left_ax" for class "Axes" +   Attribute "left_ax" is unknown (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/timeseries.py:117:23 - error: Cannot access attribute "right_ax" for class "Axes" +   Attribute "right_ax" is unknown (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/timeseries.py:186:34 - error: Cannot access attribute "left_ax" for class "Axes" +   Attribute "left_ax" is unknown (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/timeseries.py:188:34 - error: Cannot access attribute "right_ax" for class "Axes" +   Attribute "right_ax" is unknown (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/timeseries.py:223:30 - error: Argument of type "Any | None" cannot be assigned to parameter "freq" of type "timedelta | BaseOffset | str" in function "_get_period_alias" +   Type "Any | None" is not assignable to type "timedelta | BaseOffset | str" +     Type "None" is not assignable to type "timedelta | BaseOffset | str" +       "None" is not assignable to "timedelta" +       "None" is not assignable to "BaseOffset" +       "None" is not assignable to "str" (reportArgumentType) + /pandas/plotting/_matplotlib/timeseries.py:357:23 - error: Argument of type "Any | str" cannot be assigned to parameter "freq" of type "BaseOffset" in function "decorate_axes" +   Type "Any | str" is not assignable to type "BaseOffset" +     "str" is not assignable to "BaseOffset" (reportArgumentType) + /pandas/plotting/_matplotlib/timeseries.py:360:26 - error: Cannot access attribute "left_ax" for class "Axes" +   Attribute "left_ax" is unknown (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/timeseries.py:360:35 - error: Argument of type "Any | str" cannot be assigned to parameter "freq" of type "BaseOffset" in function "decorate_axes" +   Type "Any | str" is not assignable to type "BaseOffset" +     "str" is not assignable to "BaseOffset" (reportArgumentType) + /pandas/plotting/_matplotlib/timeseries.py:362:26 - error: Cannot access attribute "right_ax" for class "Axes" +   Attribute "right_ax" is unknown (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/timeseries.py:362:36 - error: Argument of type "Any | str" cannot be assigned to parameter "freq" of type "BaseOffset" in function "decorate_axes" +   Type "Any | str" is not assignable to type "BaseOffset" +     "str" is not assignable to "BaseOffset" (reportArgumentType) +/pandas/plotting/_matplotlib/tools.py + /pandas/plotting/_matplotlib/tools.py:82:16 - error: "table" is not a known attribute of module "matplotlib" (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/tools.py:332:49 - error: "ticker" is not a known attribute of module "matplotlib" (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/tools.py:333:36 - error: "ticker" is not a known attribute of module "matplotlib" (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/tools.py:334:51 - error: "ticker" is not a known attribute of module "matplotlib" (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/tools.py:335:38 - error: "ticker" is not a known attribute of module "matplotlib" (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/tools.py:477:21 - error: Cannot access attribute "right_ax" for class "Axes" +   Attribute "right_ax" is unknown (reportAttributeAccessIssue) + /pandas/plotting/_matplotlib/tools.py:480:21 - error: Cannot access attribute "left_ax" for class "Axes" +   Attribute "left_ax" is unknown (reportAttributeAccessIssue) +/pandas/tseries/frequencies.py + /pandas/tseries/frequencies.py:204:22 - error: Cannot access attribute "tz" for class "Index" +   Attribute "tz" is unknown (reportAttributeAccessIssue) + /pandas/tseries/frequencies.py:206:42 - error: Cannot access attribute "tz" for class "Index" +   Attribute "tz" is unknown (reportAttributeAccessIssue) + /pandas/tseries/frequencies.py:300:16 - error: Type "Timestamp | NaTType" is not assignable to return type "Timestamp" +   Type "Timestamp | NaTType" is not assignable to type "Timestamp" +     "NaTType" is not assignable to "Timestamp" (reportReturnType) +/pandas/tseries/holiday.py + /pandas/tseries/holiday.py:261:27 - error: Cannot assign to attribute "start_date" for class "Holiday*" +   Type "Timestamp | NaTType | None" is not assignable to type "Timestamp | None" +     Type "NaTType" is not assignable to type "Timestamp | None" +       "NaTType" is not assignable to "Timestamp" +       "NaTType" is not assignable to "None" (reportAttributeAccessIssue) + /pandas/tseries/holiday.py:264:25 - error: Cannot assign to attribute "end_date" for class "Holiday*" +   Type "Timestamp | NaTType | None" is not assignable to type "Timestamp | None" +     Type "NaTType" is not assignable to type "Timestamp | None" +       "NaTType" is not assignable to "Timestamp" +       "NaTType" is not assignable to "None" (reportAttributeAccessIssue) + /pandas/tseries/holiday.py:325:48 - error: Argument of type "Unknown | None" cannot be assigned to parameter "month" of type "SupportsIndex" in function "__new__" +   Type "Unknown | None" is not assignable to type "SupportsIndex" +     "None" is incompatible with protocol "SupportsIndex" +       "__index__" is not present (reportArgumentType) + /pandas/tseries/holiday.py:325:60 - error: Argument of type "Unknown | None" cannot be assigned to parameter "day" of type "SupportsIndex" in function "__new__" +   Type "Unknown | None" is not assignable to type "SupportsIndex" +     "None" is incompatible with protocol "SupportsIndex" +       "__index__" is not present (reportArgumentType) + /pandas/tseries/holiday.py:332:39 - error: Argument of type "Timestamp | NaTType" cannot be assigned to parameter "start_date" of type "Timestamp" in function "_reference_dates" +   Type "Timestamp | NaTType" is not assignable to type "Timestamp" +     "NaTType" is not assignable to "Timestamp" (reportArgumentType) + /pandas/tseries/holiday.py:332:51 - error: Argument of type "Timestamp | NaTType" cannot be assigned to parameter "end_date" of type "Timestamp" in function "_reference_dates" +   Type "Timestamp | NaTType" is not assignable to type "Timestamp" +     "NaTType" is not assignable to "Timestamp" (reportArgumentType) + /pandas/tseries/holiday.py:380:43 - error: Argument of type "Unknown | None" cannot be assigned to parameter "month" of type "SupportsIndex" in function "__new__" +   Type "Unknown | None" is not assignable to type "SupportsIndex" +     "None" is incompatible with protocol "SupportsIndex" +       "__index__" is not present (reportArgumentType) + /pandas/tseries/holiday.py:380:55 - error: Argument of type "Unknown | None" cannot be assigned to parameter "day" of type "SupportsIndex" in function "__new__" +   Type "Unknown | None" is not assignable to type "SupportsIndex" +     "None" is incompatible with protocol "SupportsIndex" +       "__index__" is not present (reportArgumentType) + /pandas/tseries/holiday.py:384:41 - error: Argument of type "Unknown | None" cannot be assigned to parameter "month" of type "SupportsIndex" in function "__new__" +   Type "Unknown | None" is not assignable to type "SupportsIndex" +     "None" is incompatible with protocol "SupportsIndex" +       "__index__" is not present (reportArgumentType) + /pandas/tseries/holiday.py:384:53 - error: Argument of type "Unknown | None" cannot be assigned to parameter "day" of type "SupportsIndex" in function "__new__" +   Type "Unknown | None" is not assignable to type "SupportsIndex" +     "None" is incompatible with protocol "SupportsIndex" +       "__index__" is not present (reportArgumentType) + /pandas/tseries/holiday.py:413:20 - error: Type "MultiIndex | Index" is not assignable to return type "DatetimeIndex" +   Type "MultiIndex | Index" is not assignable to type "DatetimeIndex" +     "Index" is not assignable to "DatetimeIndex" (reportReturnType) + /pandas/tseries/holiday.py:413:40 - error: Object of type "None" cannot be called (reportOptionalCall) + /pandas/tseries/holiday.py:525:27 - error: Argument of type "Timestamp | NaTType | Unknown" cannot be assigned to parameter "ts_input" of type "integer[Any] | float | str | date | datetime | datetime64[date | int | None]" in function "__new__" +   Type "Timestamp | NaTType | Unknown" is not assignable to type "integer[Any] | float | str | date | datetime | datetime64[date | int | None]" +     Type "NaTType" is not assignable to type "integer[Any] | float | str | date | datetime | datetime64[date | int | None]" +       "NaTType" is not assignable to "integer[Any]" +       "NaTType" is not assignable to "float" +       "NaTType" is not assignable to "str" +       "NaTType" is not assignable to "date" +       "NaTType" is not assignable to "datetime" +       "NaTType" is not assignable to "datetime64[date | int | None]" (reportArgumentType) + /pandas/tseries/holiday.py:526:25 - error: Argument of type "Timestamp | NaTType | Unknown" cannot be assigned to parameter "ts_input" of type "integer[Any] | float | str | date | datetime | datetime64[date | int | None]" in function "__new__" +   Type "Timestamp | NaTType | Unknown" is not assignable to type "integer[Any] | float | str | date | datetime | datetime64[date | int | None]" +     Type "NaTType" is not assignable to type "integer[Any] | float | str | date | datetime | datetime64[date | int | None]" +       "NaTType" is not assignable to "integer[Any]" +       "NaTType" is not assignable to "float" +       "NaTType" is not assignable to "str" +       "NaTType" is not assignable to "date" +       "NaTType" is not assignable to "datetime" +       "NaTType" is not assignable to "datetime64[date | int | None]" (reportArgumentType) +/pandas/util/_decorators.py + /pandas/util/_decorators.py:377:31 - error: Cannot access attribute "_docstring_components" for class "FunctionType" +   Attribute "_docstring_components" is unknown (reportFunctionMemberAccess) +2180 errors, 3 warnings, 0 informations diff --git a/scripts/ty_benchmark/snapshots/pandas_mypy.txt b/scripts/ty_benchmark/snapshots/pandas_mypy.txt new file mode 100644 index 0000000000..94a8d480e2 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/pandas_mypy.txt @@ -0,0 +1 @@ +Success: no issues found in 340 source files diff --git a/scripts/ty_benchmark/snapshots/pandas_ty.txt b/scripts/ty_benchmark/snapshots/pandas_ty.txt new file mode 100644 index 0000000000..417ae2ef78 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/pandas_ty.txt @@ -0,0 +1,946 @@ +pandas/__init__.py:178:10: error[unresolved-import] Cannot resolve imported module `pandas._version_meson` +pandas/_testing/__init__.py:507:25: error[unresolved-attribute] Module `pandas.core` has no member `arrays` +pandas/_testing/__init__.py:509:25: error[unresolved-attribute] Module `pandas.core` has no member `arrays` +pandas/_version.py:44:5: error[unresolved-attribute] Unresolved attribute `VCS` on type `VersioneerConfig`. +pandas/_version.py:45:5: error[unresolved-attribute] Unresolved attribute `style` on type `VersioneerConfig`. +pandas/_version.py:46:5: error[unresolved-attribute] Unresolved attribute `tag_prefix` on type `VersioneerConfig`. +pandas/_version.py:47:5: error[unresolved-attribute] Unresolved attribute `parentdir_prefix` on type `VersioneerConfig`. +pandas/_version.py:48:5: error[unresolved-attribute] Unresolved attribute `versionfile_source` on type `VersioneerConfig`. +pandas/_version.py:49:5: error[unresolved-attribute] Unresolved attribute `verbose` on type `VersioneerConfig`. +pandas/_version.py:101:16: error[unresolved-attribute] Object of type `BaseException | None` has no attribute `errno` +pandas/_version.py:111:14: error[unresolved-attribute] Object of type `str` has no attribute `decode` +pandas/compat/__init__.py:50:5: error[unresolved-attribute] Unresolved attribute `__name__` on type `F@set_function_name`. +pandas/compat/__init__.py:51:5: error[unresolved-attribute] Unresolved attribute `__qualname__` on type `F@set_function_name`. +pandas/core/_numba/executor.py:48:22: error[not-iterable] Object of type `prange` is not iterable +pandas/core/_numba/executor.py:52:22: error[not-iterable] Object of type `prange` is not iterable +pandas/core/_numba/executor.py:78:22: error[not-iterable] Object of type `prange` is not iterable +pandas/core/_numba/executor.py:103:22: error[not-iterable] Object of type `prange` is not iterable +pandas/core/_numba/extensions.py:22:5: error[unresolved-import] Module `numba.core.extending` has no member `NativeValue` +pandas/core/_numba/extensions.py:23:5: error[unresolved-import] Module `numba.core.extending` has no member `box` +pandas/core/_numba/extensions.py:24:5: error[unresolved-import] Module `numba.core.extending` has no member `lower_builtin` +pandas/core/_numba/extensions.py:29:5: error[unresolved-import] Module `numba.core.extending` has no member `register_model` +pandas/core/_numba/extensions.py:31:5: error[unresolved-import] Module `numba.core.extending` has no member `typeof_impl` +pandas/core/_numba/extensions.py:32:5: error[unresolved-import] Module `numba.core.extending` has no member `unbox` +pandas/core/_numba/extensions.py:61:9: error[unresolved-attribute] Unresolved attribute `_numba_data` on type `Index`. +pandas/core/_numba/extensions.py:64:13: error[unresolved-attribute] Object of type `Index` has no attribute `_numba_data` +pandas/core/_numba/extensions.py:74:48: error[invalid-type-form] Variable of type `def any(iterable: Iterable[object], /) -> bool` is not allowed in a type expression +pandas/core/_numba/extensions.py:94:16: error[invalid-return-type] Return type does not match returned value: expected `Self@copy`, found `IndexType` +pandas/core/_numba/extensions.py:124:16: error[invalid-return-type] Return type does not match returned value: expected `Self@copy`, found `SeriesType` +pandas/core/_numba/extensions.py:299:67: error[unresolved-attribute] Module `numba` has no member `typed` +pandas/core/_numba/extensions.py:574:16: error[missing-argument] No argument provided for required parameter `obj` of bound method `__init__` +pandas/core/_numba/kernels/mean_.py:135:21: error[unresolved-reference] Name `num_consecutive_same_value` used when not defined +pandas/core/_numba/kernels/mean_.py:136:21: error[unresolved-reference] Name `prev_value` used when not defined +pandas/core/_numba/kernels/sum_.py:135:21: error[unresolved-reference] Name `num_consecutive_same_value` used when not defined +pandas/core/_numba/kernels/sum_.py:136:21: error[unresolved-reference] Name `prev_value` used when not defined +pandas/core/_numba/kernels/var_.py:144:21: error[unresolved-reference] Name `num_consecutive_same_value` used when not defined +pandas/core/_numba/kernels/var_.py:145:21: error[unresolved-reference] Name `prev_value` used when not defined +pandas/core/algorithms.py:214:16: error[invalid-return-type] Return type does not match returned value: expected `ArrayLikeT@_reconstruct_data`, found `ExtensionArray` +pandas/core/algorithms.py:469:16: warning[possibly-missing-attribute] Attribute `unique` may be missing on object of type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` +pandas/core/algorithms.py:476:45: error[invalid-argument-type] Argument to function `_get_hashtable_algo` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `(ExtensionArray & ~Index) | (ndarray[tuple[Any, ...], dtype[Any]] & ~Index)` +pandas/core/algorithms.py:546:33: error[invalid-argument-type] Argument to bound method `isin` is incorrect: Expected `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]`, found `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | @Todo | ... omitted 4 union elements` +pandas/core/algorithms.py:551:30: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | @Todo | ... omitted 4 union elements` +pandas/core/algorithms.py:555:30: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | @Todo | ... omitted 4 union elements` +pandas/core/algorithms.py:556:34: warning[possibly-missing-attribute] Attribute `astype` may be missing on object of type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | @Todo | ... omitted 4 union elements` +pandas/core/algorithms.py:558:21: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | @Todo | ... omitted 4 union elements` +pandas/core/algorithms.py:586:38: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | @Todo | ... omitted 4 union elements` +pandas/core/algorithms.py:587:18: warning[possibly-missing-attribute] Attribute `astype` may be missing on object of type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | @Todo | ... omitted 4 union elements` +pandas/core/algorithms.py:591:27: error[invalid-argument-type] Argument to function `ismember` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | @Todo | ... omitted 5 union elements` +pandas/core/algorithms.py:855:33: error[invalid-argument-type] Argument to function `_reconstruct_data` is incorrect: Argument type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Any | Index | Series` does not satisfy constraints (`ExtensionArray`, `ndarray[tuple[Any, ...], dtype[Any]]`) of type variable `ArrayLikeT` +pandas/core/algorithms.py:930:54: error[invalid-argument-type] Argument to function `value_counts_arraylike` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` +pandas/core/algorithms.py:1062:32: error[invalid-argument-type] Argument to function `_reconstruct_data` is incorrect: Argument type `Unknown | ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | ... omitted 3 union elements` does not satisfy constraints (`ExtensionArray`, `ndarray[tuple[Any, ...], dtype[Any]]`) of type variable `ArrayLikeT` +pandas/core/algorithms.py:1368:33: warning[possibly-missing-attribute] Attribute `is_integer` may be missing on object of type `int | float | integer[Any] | floating[Any]` +pandas/core/apply.py:197:50: error[invalid-argument-type] Argument expression after ** must be a mapping type: Found `Unknown | None` +pandas/core/apply.py:379:57: error[invalid-argument-type] Argument to bound method `normalize_dictlike_arg` is incorrect: Expected `DataFrame | Series`, found `(Unknown & NDFrame) | Series | DataFrame | ... omitted 5 union elements` +pandas/core/apply.py:2000:49: error[invalid-argument-type] Argument to function `relabel_result` is incorrect: Expected `dict[str, list[((...) -> Unknown) | str]]`, found `((...) -> Unknown) | str | list[((...) -> Unknown) | str] | MutableMapping[Hashable, ((...) -> Unknown) | str | list[((...) -> Unknown) | str]]` +pandas/core/array_algos/masked_accumulations.py:50:22: error[invalid-assignment] Object of type `iinfo[]` is not assignable to `iinfo[integer[Any]] | finfo[floating[Any]]` +pandas/core/array_algos/quantile.py:145:12: error[no-matching-overload] No overload of function `quantile` matches arguments +pandas/core/array_algos/quantile.py:218:16: error[no-matching-overload] No overload of function `quantile` matches arguments +pandas/core/array_algos/take.py:96:43: error[invalid-argument-type] Argument to function `maybe_promote` is incorrect: Expected `dtype[Any]`, found `ExtensionDtype | dtype[Any]` +pandas/core/array_algos/take.py:112:16: error[no-matching-overload] No overload of bound method `take` matches arguments +pandas/core/array_algos/take.py:303:16: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `Unknown | int | float` +pandas/core/array_algos/take.py:304:30: warning[possibly-missing-attribute] Attribute `astype` may be missing on object of type `Unknown | int | float` +pandas/core/array_algos/take.py:306:30: warning[possibly-missing-attribute] Attribute `astype` may be missing on object of type `Unknown | int | float` +pandas/core/arrays/_arrow_string_mixins.py:52:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_length` +pandas/core/arrays/_arrow_string_mixins.py:56:41: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_lower` +pandas/core/arrays/_arrow_string_mixins.py:59:41: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_upper` +pandas/core/arrays/_arrow_string_mixins.py:63:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_trim_whitespace` +pandas/core/arrays/_arrow_string_mixins.py:65:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_trim` +pandas/core/arrays/_arrow_string_mixins.py:70:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_ltrim_whitespace` +pandas/core/arrays/_arrow_string_mixins.py:72:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_ltrim` +pandas/core/arrays/_arrow_string_mixins.py:77:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_rtrim_whitespace` +pandas/core/arrays/_arrow_string_mixins.py:79:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_rtrim` +pandas/core/arrays/_arrow_string_mixins.py:89:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_lpad` +pandas/core/arrays/_arrow_string_mixins.py:91:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_rpad` +pandas/core/arrays/_arrow_string_mixins.py:105:34: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_center` +pandas/core/arrays/_arrow_string_mixins.py:115:19: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_length` +pandas/core/arrays/_arrow_string_mixins.py:117:29: error[unresolved-attribute] Module `pyarrow.compute` has no member `greater_equal` +pandas/core/arrays/_arrow_string_mixins.py:122:29: error[unresolved-attribute] Module `pyarrow.compute` has no member `greater` +pandas/core/arrays/_arrow_string_mixins.py:126:29: error[unresolved-attribute] Module `pyarrow.compute` has no member `invert` +pandas/core/arrays/_arrow_string_mixins.py:127:20: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_slice_codeunits` +pandas/core/arrays/_arrow_string_mixins.py:131:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else` +pandas/core/arrays/_arrow_string_mixins.py:146:13: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_slice_codeunits` +pandas/core/arrays/_arrow_string_mixins.py:159:13: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_replace_slice` +pandas/core/arrays/_arrow_string_mixins.py:184:16: error[unresolved-attribute] Module `pyarrow.compute` has no member `replace_substring_regex` +pandas/core/arrays/_arrow_string_mixins.py:184:57: error[unresolved-attribute] Module `pyarrow.compute` has no member `replace_substring` +pandas/core/arrays/_arrow_string_mixins.py:197:41: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_capitalize` +pandas/core/arrays/_arrow_string_mixins.py:200:41: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_title` +pandas/core/arrays/_arrow_string_mixins.py:203:41: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_swapcase` +pandas/core/arrays/_arrow_string_mixins.py:206:23: error[unresolved-attribute] Module `pyarrow.compute` has no member `starts_with` +pandas/core/arrays/_arrow_string_mixins.py:207:19: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_slice_codeunits` +pandas/core/arrays/_arrow_string_mixins.py:208:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else` +pandas/core/arrays/_arrow_string_mixins.py:212:21: error[unresolved-attribute] Module `pyarrow.compute` has no member `ends_with` +pandas/core/arrays/_arrow_string_mixins.py:213:19: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_slice_codeunits` +pandas/core/arrays/_arrow_string_mixins.py:214:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else` +pandas/core/arrays/_arrow_string_mixins.py:221:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `starts_with` +pandas/core/arrays/_arrow_string_mixins.py:226:26: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else` +pandas/core/arrays/_arrow_string_mixins.py:226:37: error[unresolved-attribute] Module `pyarrow.compute` has no member `is_null` +pandas/core/arrays/_arrow_string_mixins.py:228:26: error[unresolved-attribute] Module `pyarrow.compute` has no member `starts_with` +pandas/core/arrays/_arrow_string_mixins.py:231:30: error[unresolved-attribute] Module `pyarrow.compute` has no member `or_` +pandas/core/arrays/_arrow_string_mixins.py:231:45: error[unresolved-attribute] Module `pyarrow.compute` has no member `starts_with` +pandas/core/arrays/_arrow_string_mixins.py:238:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `ends_with` +pandas/core/arrays/_arrow_string_mixins.py:243:26: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else` +pandas/core/arrays/_arrow_string_mixins.py:243:37: error[unresolved-attribute] Module `pyarrow.compute` has no member `is_null` +pandas/core/arrays/_arrow_string_mixins.py:245:26: error[unresolved-attribute] Module `pyarrow.compute` has no member `ends_with` +pandas/core/arrays/_arrow_string_mixins.py:248:30: error[unresolved-attribute] Module `pyarrow.compute` has no member `or_` +pandas/core/arrays/_arrow_string_mixins.py:248:45: error[unresolved-attribute] Module `pyarrow.compute` has no member `ends_with` +pandas/core/arrays/_arrow_string_mixins.py:252:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_is_alnum` +pandas/core/arrays/_arrow_string_mixins.py:256:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_is_alpha` +pandas/core/arrays/_arrow_string_mixins.py:260:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `string_is_ascii` +pandas/core/arrays/_arrow_string_mixins.py:264:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_is_decimal` +pandas/core/arrays/_arrow_string_mixins.py:274:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_is_digit` +pandas/core/arrays/_arrow_string_mixins.py:278:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_is_lower` +pandas/core/arrays/_arrow_string_mixins.py:282:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_is_numeric` +pandas/core/arrays/_arrow_string_mixins.py:286:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_is_space` +pandas/core/arrays/_arrow_string_mixins.py:290:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_is_title` +pandas/core/arrays/_arrow_string_mixins.py:294:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_is_upper` +pandas/core/arrays/_arrow_string_mixins.py:309:27: error[unresolved-attribute] Module `pyarrow.compute` has no member `match_substring_regex` +pandas/core/arrays/_arrow_string_mixins.py:311:27: error[unresolved-attribute] Module `pyarrow.compute` has no member `match_substring` +pandas/core/arrays/_arrow_string_mixins.py:343:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `find_substring` +pandas/core/arrays/_arrow_string_mixins.py:355:32: error[unresolved-attribute] Module `pyarrow.compute` has no member `add` +pandas/core/arrays/_arrow_string_mixins.py:355:46: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_length` +pandas/core/arrays/_arrow_string_mixins.py:356:32: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else` +pandas/core/arrays/_arrow_string_mixins.py:356:43: error[unresolved-attribute] Module `pyarrow.compute` has no member `less` +pandas/core/arrays/_arrow_string_mixins.py:359:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_slice_codeunits` +pandas/core/arrays/_arrow_string_mixins.py:360:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `find_substring` +pandas/core/arrays/_arrow_string_mixins.py:361:21: error[unresolved-attribute] Module `pyarrow.compute` has no member `not_equal` +pandas/core/arrays/_arrow_string_mixins.py:362:29: error[unresolved-attribute] Module `pyarrow.compute` has no member `add` +pandas/core/arrays/_arrow_string_mixins.py:363:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else` +pandas/core/arrays/_mixins.py:135:20: error[invalid-return-type] Return type does not match returned value: expected `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]`, found `ndarray[tuple[Any, ...], type]` +pandas/core/arrays/arrow/accessors.py:115:25: error[unresolved-attribute] Module `pyarrow.compute` has no member `list_value_length` +pandas/core/arrays/arrow/accessors.py:163:23: error[unresolved-attribute] Module `pyarrow.compute` has no member `list_element` +pandas/core/arrays/arrow/accessors.py:181:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `list_slice` +pandas/core/arrays/arrow/accessors.py:226:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `list_value_length` +pandas/core/arrays/arrow/accessors.py:227:21: error[unresolved-attribute] Module `pyarrow.compute` has no member `list_flatten` +pandas/core/arrays/arrow/accessors.py:454:21: error[unresolved-attribute] Module `pyarrow.compute` has no member `struct_field` +pandas/core/arrays/arrow/array.py:97:15: error[unresolved-attribute] Module `pyarrow.compute` has no member `equal` +pandas/core/arrays/arrow/array.py:98:15: error[unresolved-attribute] Module `pyarrow.compute` has no member `not_equal` +pandas/core/arrays/arrow/array.py:99:15: error[unresolved-attribute] Module `pyarrow.compute` has no member `less` +pandas/core/arrays/arrow/array.py:100:15: error[unresolved-attribute] Module `pyarrow.compute` has no member `greater` +pandas/core/arrays/arrow/array.py:101:15: error[unresolved-attribute] Module `pyarrow.compute` has no member `less_equal` +pandas/core/arrays/arrow/array.py:102:15: error[unresolved-attribute] Module `pyarrow.compute` has no member `greater_equal` +pandas/core/arrays/arrow/array.py:106:17: error[unresolved-attribute] Module `pyarrow.compute` has no member `and_kleene` +pandas/core/arrays/arrow/array.py:107:31: error[unresolved-attribute] Module `pyarrow.compute` has no member `and_kleene` +pandas/core/arrays/arrow/array.py:108:16: error[unresolved-attribute] Module `pyarrow.compute` has no member `or_kleene` +pandas/core/arrays/arrow/array.py:109:30: error[unresolved-attribute] Module `pyarrow.compute` has no member `or_kleene` +pandas/core/arrays/arrow/array.py:110:16: error[unresolved-attribute] Module `pyarrow.compute` has no member `xor` +pandas/core/arrays/arrow/array.py:111:30: error[unresolved-attribute] Module `pyarrow.compute` has no member `xor` +pandas/core/arrays/arrow/array.py:115:17: error[unresolved-attribute] Module `pyarrow.compute` has no member `bit_wise_and` +pandas/core/arrays/arrow/array.py:116:31: error[unresolved-attribute] Module `pyarrow.compute` has no member `bit_wise_and` +pandas/core/arrays/arrow/array.py:117:16: error[unresolved-attribute] Module `pyarrow.compute` has no member `bit_wise_or` +pandas/core/arrays/arrow/array.py:118:30: error[unresolved-attribute] Module `pyarrow.compute` has no member `bit_wise_or` +pandas/core/arrays/arrow/array.py:119:16: error[unresolved-attribute] Module `pyarrow.compute` has no member `bit_wise_xor` +pandas/core/arrays/arrow/array.py:120:30: error[unresolved-attribute] Module `pyarrow.compute` has no member `bit_wise_xor` +pandas/core/arrays/arrow/array.py:146:23: error[unresolved-attribute] Module `pyarrow.compute` has no member `divide_checked` +pandas/core/arrays/arrow/array.py:149:33: error[unresolved-attribute] Module `pyarrow.compute` has no member `not_equal` +pandas/core/arrays/arrow/array.py:149:46: error[unresolved-attribute] Module `pyarrow.compute` has no member `multiply` +pandas/core/arrays/arrow/array.py:150:44: error[unresolved-attribute] Module `pyarrow.compute` has no member `less` +pandas/core/arrays/arrow/array.py:151:21: error[unresolved-attribute] Module `pyarrow.compute` has no member `bit_wise_xor` +pandas/core/arrays/arrow/array.py:154:26: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else` +pandas/core/arrays/arrow/array.py:155:21: error[unresolved-attribute] Module `pyarrow.compute` has no member `and_` +pandas/core/arrays/arrow/array.py:160:21: error[unresolved-attribute] Module `pyarrow.compute` has no member `subtract` +pandas/core/arrays/arrow/array.py:167:23: error[unresolved-attribute] Module `pyarrow.compute` has no member `divide` +pandas/core/arrays/arrow/array.py:168:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `floor` +pandas/core/arrays/arrow/array.py:172:16: error[unresolved-attribute] Module `pyarrow.compute` has no member `add_checked` +pandas/core/arrays/arrow/array.py:173:30: error[unresolved-attribute] Module `pyarrow.compute` has no member `add_checked` +pandas/core/arrays/arrow/array.py:174:16: error[unresolved-attribute] Module `pyarrow.compute` has no member `subtract_checked` +pandas/core/arrays/arrow/array.py:175:30: error[unresolved-attribute] Module `pyarrow.compute` has no member `subtract_checked` +pandas/core/arrays/arrow/array.py:176:16: error[unresolved-attribute] Module `pyarrow.compute` has no member `multiply_checked` +pandas/core/arrays/arrow/array.py:177:30: error[unresolved-attribute] Module `pyarrow.compute` has no member `multiply_checked` +pandas/core/arrays/arrow/array.py:178:33: error[unresolved-attribute] Module `pyarrow.compute` has no member `divide` +pandas/core/arrays/arrow/array.py:179:34: error[unresolved-attribute] Module `pyarrow.compute` has no member `divide` +pandas/core/arrays/arrow/array.py:186:16: error[unresolved-attribute] Module `pyarrow.compute` has no member `power_checked` +pandas/core/arrays/arrow/array.py:187:30: error[unresolved-attribute] Module `pyarrow.compute` has no member `power_checked` +pandas/core/arrays/arrow/array.py:377:27: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else` +pandas/core/arrays/arrow/array.py:398:23: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else` +pandas/core/arrays/arrow/array.py:398:34: error[unresolved-attribute] Module `pyarrow.compute` has no member `equal` +pandas/core/arrays/arrow/array.py:399:23: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else` +pandas/core/arrays/arrow/array.py:399:34: error[unresolved-attribute] Module `pyarrow.compute` has no member `equal` +pandas/core/arrays/arrow/array.py:862:45: error[unresolved-attribute] Module `pyarrow.compute` has no member `bit_wise_not` +pandas/core/arrays/arrow/array.py:869:45: error[unresolved-attribute] Module `pyarrow.compute` has no member `invert` +pandas/core/arrays/arrow/array.py:873:45: error[unresolved-attribute] Module `pyarrow.compute` has no member `negate_checked` +pandas/core/arrays/arrow/array.py:883:41: error[unresolved-attribute] Module `pyarrow.compute` has no member `abs_checked` +pandas/core/arrays/arrow/array.py:946:30: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else` +pandas/core/arrays/arrow/array.py:977:34: error[unresolved-attribute] Module `pyarrow.compute` has no member `binary_join_element_wise` +pandas/core/arrays/arrow/array.py:979:34: error[unresolved-attribute] Module `pyarrow.compute` has no member `binary_join_element_wise` +pandas/core/arrays/arrow/array.py:990:31: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else` +pandas/core/arrays/arrow/array.py:990:42: error[unresolved-attribute] Module `pyarrow.compute` has no member `less` +pandas/core/arrays/arrow/array.py:991:26: error[unresolved-attribute] Module `pyarrow.compute` has no member `binary_repeat` +pandas/core/arrays/arrow/array.py:1002:27: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else` +pandas/core/arrays/arrow/array.py:1002:38: error[unresolved-attribute] Module `pyarrow.compute` has no member `less` +pandas/core/arrays/arrow/array.py:1003:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `binary_repeat` +pandas/core/arrays/arrow/array.py:1007:17: error[unresolved-attribute] Module `pyarrow.compute` has no member `is_null` +pandas/core/arrays/arrow/array.py:1073:20: error[unresolved-attribute] Module `pyarrow.compute` has no member `is_nan` +pandas/core/arrays/arrow/array.py:1074:19: error[unresolved-attribute] Module `pyarrow.compute` has no member `replace_with_mask` +pandas/core/arrays/arrow/array.py:1116:24: error[unresolved-attribute] Module `pyarrow.compute` has no member `any` +pandas/core/arrays/arrow/array.py:1116:31: error[unresolved-attribute] Module `pyarrow.compute` has no member `is_nan` +pandas/core/arrays/arrow/array.py:1284:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `array_sort_indices` +pandas/core/arrays/arrow/array.py:1332:41: error[unresolved-attribute] Module `pyarrow.compute` has no member `drop_null` +pandas/core/arrays/arrow/array.py:1350:25: error[unresolved-attribute] Module `pyarrow.compute` has no member `fill_null_forward` +pandas/core/arrays/arrow/array.py:1354:25: error[unresolved-attribute] Module `pyarrow.compute` has no member `fill_null_backward` +pandas/core/arrays/arrow/array.py:1366:16: error[invalid-return-type] Return type does not match returned value: expected `Self@_pad_or_backfill`, found `ArrowExtensionArray` +pandas/core/arrays/arrow/array.py:1381:20: error[invalid-return-type] Return type does not match returned value: expected `Self@fillna`, found `ArrowExtensionArray` +pandas/core/arrays/arrow/array.py:1409:16: error[invalid-return-type] Return type does not match returned value: expected `Self@fillna`, found `ArrowExtensionArray` +pandas/core/arrays/arrow/array.py:1416:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `is_in` +pandas/core/arrays/arrow/array.py:1502:41: error[unresolved-attribute] Module `pyarrow.compute` has no member `round` +pandas/core/arrays/arrow/array.py:1749:22: error[unresolved-attribute] Object of type `ndarray[tuple[Any, ...], dtype[Any]]` has no attribute `to_numpy` +pandas/core/arrays/arrow/array.py:1766:21: error[unresolved-attribute] Module `pyarrow.compute` has no member `unique` +pandas/core/arrays/arrow/array.py:1920:23: error[unresolved-attribute] Module `pyarrow.compute` has no member `is_null` +pandas/core/arrays/arrow/array.py:1921:16: error[unresolved-attribute] Module `pyarrow.compute` has no member `all` +pandas/core/arrays/arrow/array.py:1928:32: error[unresolved-attribute] Module `pyarrow.compute` has no member `fill_null_forward` +pandas/core/arrays/arrow/array.py:1929:32: error[unresolved-attribute] Module `pyarrow.compute` has no member `fill_null_backward` +pandas/core/arrays/arrow/array.py:1943:25: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else` +pandas/core/arrays/arrow/array.py:1990:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `not_equal` +pandas/core/arrays/arrow/array.py:2006:29: error[unresolved-attribute] Module `pyarrow.compute` has no member `stddev` +pandas/core/arrays/arrow/array.py:2007:31: error[unresolved-attribute] Module `pyarrow.compute` has no member `sqrt_checked` +pandas/core/arrays/arrow/array.py:2007:47: error[unresolved-attribute] Module `pyarrow.compute` has no member `count` +pandas/core/arrays/arrow/array.py:2008:24: error[unresolved-attribute] Module `pyarrow.compute` has no member `divide_checked` +pandas/core/arrays/arrow/array.py:2015:24: error[unresolved-attribute] Module `pyarrow.compute` has no member `is_null` +pandas/core/arrays/arrow/array.py:2026:44: error[unresolved-attribute] Module `pyarrow.compute` has no member `invert` +pandas/core/arrays/arrow/array.py:2039:24: error[unresolved-attribute] Module `pyarrow.compute` has no member `binary_join` +pandas/core/arrays/arrow/array.py:2148:12: error[unresolved-attribute] Module `pyarrow.compute` has no member `is_null` +pandas/core/arrays/arrow/array.py:2167:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `list_value_length` +pandas/core/arrays/arrow/array.py:2174:25: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else` +pandas/core/arrays/arrow/array.py:2179:43: error[unresolved-attribute] Module `pyarrow.compute` has no member `list_flatten` +pandas/core/arrays/arrow/array.py:2295:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `rank` +pandas/core/arrays/arrow/array.py:2303:20: error[unresolved-attribute] Module `pyarrow.compute` has no member `is_null` +pandas/core/arrays/arrow/array.py:2305:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else` +pandas/core/arrays/arrow/array.py:2308:26: error[unresolved-attribute] Module `pyarrow.compute` has no member `rank` +pandas/core/arrays/arrow/array.py:2316:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `divide` +pandas/core/arrays/arrow/array.py:2316:32: error[unresolved-attribute] Module `pyarrow.compute` has no member `add` +pandas/core/arrays/arrow/array.py:2322:27: error[unresolved-attribute] Module `pyarrow.compute` has no member `max` +pandas/core/arrays/arrow/array.py:2324:27: error[unresolved-attribute] Module `pyarrow.compute` has no member `count` +pandas/core/arrays/arrow/array.py:2325:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `divide` +pandas/core/arrays/arrow/array.py:2376:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `quantile` +pandas/core/arrays/arrow/array.py:2380:26: error[unresolved-attribute] Module `pyarrow.compute` has no member `floor` +pandas/core/arrays/arrow/array.py:2421:15: error[unresolved-attribute] Module `pyarrow.compute` has no member `value_counts` +pandas/core/arrays/arrow/array.py:2423:13: error[unresolved-attribute] Module `pyarrow.compute` has no member `equal` +pandas/core/arrays/arrow/array.py:2423:43: error[unresolved-attribute] Module `pyarrow.compute` has no member `max` +pandas/core/arrays/arrow/array.py:2429:40: error[unresolved-attribute] Module `pyarrow.compute` has no member `array_sort_indices` +pandas/core/arrays/arrow/array.py:2468:24: error[unresolved-attribute] Module `pyarrow.compute` has no member `fill_null_backward` +pandas/core/arrays/arrow/array.py:2468:46: error[unresolved-attribute] Module `pyarrow.compute` has no member `pairwise_diff_checked` +pandas/core/arrays/arrow/array.py:2470:23: error[unresolved-attribute] Module `pyarrow.compute` has no member `add_checked` +pandas/core/arrays/arrow/array.py:2470:51: error[unresolved-attribute] Module `pyarrow.compute` has no member `divide_checked` +pandas/core/arrays/arrow/array.py:2471:45: error[unresolved-attribute] Module `pyarrow.compute` has no member `coalesce` +pandas/core/arrays/arrow/array.py:2520:20: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else` +pandas/core/arrays/arrow/array.py:2572:20: error[unresolved-attribute] Module `pyarrow.compute` has no member `replace_with_mask` +pandas/core/arrays/arrow/array.py:2688:41: error[unresolved-attribute] Module `pyarrow.compute` has no member `count_substring_regex` +pandas/core/arrays/arrow/array.py:2695:41: error[unresolved-attribute] Module `pyarrow.compute` has no member `binary_repeat` +pandas/core/arrays/arrow/array.py:2705:41: error[unresolved-attribute] Module `pyarrow.compute` has no member `binary_join` +pandas/core/arrays/arrow/array.py:2733:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `extract_regex` +pandas/core/arrays/arrow/array.py:2736:47: error[unresolved-attribute] Module `pyarrow.compute` has no member `struct_field` +pandas/core/arrays/arrow/array.py:2740:31: error[unresolved-attribute] Module `pyarrow.compute` has no member `struct_field` +pandas/core/arrays/arrow/array.py:2751:17: error[unresolved-attribute] Module `pyarrow.compute` has no member `split_pattern` +pandas/core/arrays/arrow/array.py:2752:28: error[unresolved-attribute] Module `pyarrow.compute` has no member `list_flatten` +pandas/core/arrays/arrow/array.py:2754:39: error[unresolved-attribute] Module `pyarrow.compute` has no member `array_sort_indices` +pandas/core/arrays/arrow/array.py:2755:19: error[unresolved-attribute] Module `pyarrow.compute` has no member `list_value_length` +pandas/core/arrays/arrow/array.py:2758:19: error[unresolved-attribute] Module `pyarrow.compute` has no member `index_in` +pandas/core/arrays/arrow/array.py:2802:26: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_split_whitespace` +pandas/core/arrays/arrow/array.py:2804:44: error[unresolved-attribute] Module `pyarrow.compute` has no member `split_pattern_regex` +pandas/core/arrays/arrow/array.py:2806:44: error[unresolved-attribute] Module `pyarrow.compute` has no member `split_pattern` +pandas/core/arrays/arrow/array.py:2814:17: error[unresolved-attribute] Module `pyarrow.compute` has no member `utf8_split_whitespace` +pandas/core/arrays/arrow/array.py:2817:13: error[unresolved-attribute] Module `pyarrow.compute` has no member `split_pattern` +pandas/core/arrays/arrow/array.py:2837:16: error[invalid-return-type] Return type does not match returned value: expected `Self@_str_zfill`, found `ArrowExtensionArray` +pandas/core/arrays/arrow/array.py:2929:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `year` +pandas/core/arrays/arrow/array.py:2934:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `day` +pandas/core/arrays/arrow/array.py:2939:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `day_of_week` +pandas/core/arrays/arrow/array.py:2947:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `day_of_year` +pandas/core/arrays/arrow/array.py:2954:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `hour` +pandas/core/arrays/arrow/array.py:2958:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `iso_calendar` +pandas/core/arrays/arrow/array.py:2963:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `is_leap_year` +pandas/core/arrays/arrow/array.py:2968:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `equal` +pandas/core/arrays/arrow/array.py:2968:27: error[unresolved-attribute] Module `pyarrow.compute` has no member `day` +pandas/core/arrays/arrow/array.py:2973:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `equal` +pandas/core/arrays/arrow/array.py:2974:13: error[unresolved-attribute] Module `pyarrow.compute` has no member `days_between` +pandas/core/arrays/arrow/array.py:2975:17: error[unresolved-attribute] Module `pyarrow.compute` has no member `floor_temporal` +pandas/core/arrays/arrow/array.py:2976:17: error[unresolved-attribute] Module `pyarrow.compute` has no member `ceil_temporal` +pandas/core/arrays/arrow/array.py:2984:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `and_` +pandas/core/arrays/arrow/array.py:2985:13: error[unresolved-attribute] Module `pyarrow.compute` has no member `equal` +pandas/core/arrays/arrow/array.py:2985:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `month` +pandas/core/arrays/arrow/array.py:2986:13: error[unresolved-attribute] Module `pyarrow.compute` has no member `equal` +pandas/core/arrays/arrow/array.py:2986:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `day` +pandas/core/arrays/arrow/array.py:2992:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `and_` +pandas/core/arrays/arrow/array.py:2993:13: error[unresolved-attribute] Module `pyarrow.compute` has no member `equal` +pandas/core/arrays/arrow/array.py:2993:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `month` +pandas/core/arrays/arrow/array.py:2994:13: error[unresolved-attribute] Module `pyarrow.compute` has no member `equal` +pandas/core/arrays/arrow/array.py:2994:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `day` +pandas/core/arrays/arrow/array.py:3000:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `equal` +pandas/core/arrays/arrow/array.py:3001:13: error[unresolved-attribute] Module `pyarrow.compute` has no member `floor_temporal` +pandas/core/arrays/arrow/array.py:3002:13: error[unresolved-attribute] Module `pyarrow.compute` has no member `floor_temporal` +pandas/core/arrays/arrow/array.py:3008:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `equal` +pandas/core/arrays/arrow/array.py:3009:13: error[unresolved-attribute] Module `pyarrow.compute` has no member `days_between` +pandas/core/arrays/arrow/array.py:3010:17: error[unresolved-attribute] Module `pyarrow.compute` has no member `floor_temporal` +pandas/core/arrays/arrow/array.py:3011:17: error[unresolved-attribute] Module `pyarrow.compute` has no member `ceil_temporal` +pandas/core/arrays/arrow/array.py:3019:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `days_between` +pandas/core/arrays/arrow/array.py:3020:13: error[unresolved-attribute] Module `pyarrow.compute` has no member `floor_temporal` +pandas/core/arrays/arrow/array.py:3021:13: error[unresolved-attribute] Module `pyarrow.compute` has no member `ceil_temporal` +pandas/core/arrays/arrow/array.py:3030:14: error[unresolved-attribute] Module `pyarrow.compute` has no member `microsecond` +pandas/core/arrays/arrow/array.py:3031:20: error[unresolved-attribute] Module `pyarrow.compute` has no member `multiply` +pandas/core/arrays/arrow/array.py:3031:32: error[unresolved-attribute] Module `pyarrow.compute` has no member `millisecond` +pandas/core/arrays/arrow/array.py:3032:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `add` +pandas/core/arrays/arrow/array.py:3037:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `minute` +pandas/core/arrays/arrow/array.py:3042:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `month` +pandas/core/arrays/arrow/array.py:3047:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `nanosecond` +pandas/core/arrays/arrow/array.py:3052:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `quarter` +pandas/core/arrays/arrow/array.py:3057:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `second` +pandas/core/arrays/arrow/array.py:3084:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `floor_temporal` +pandas/core/arrays/arrow/array.py:3088:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `strftime` +pandas/core/arrays/arrow/array.py:3156:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `strftime` +pandas/core/arrays/arrow/array.py:3162:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `strftime` +pandas/core/arrays/arrow/array.py:3197:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `local_timestamp` +pandas/core/arrays/arrow/array.py:3199:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `assume_timezone` +pandas/core/arrays/arrow/extension_types.py:171:5: error[unresolved-attribute] Unresolved attribute `_hotfix_installed` on type ``. +pandas/core/arrays/boolean.py:259:24: warning[possibly-missing-attribute] Attribute `shape` may be missing on object of type `@Todo | None` +pandas/core/arrays/boolean.py:262:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[ndarray[tuple[Any, ...], dtype[Any]], ndarray[tuple[Any, ...], dtype[Any]]]`, found `tuple[@Todo, @Todo | None]` +pandas/core/arrays/categorical.py:494:25: warning[possibly-missing-attribute] Attribute `_codes` may be missing on object of type `Unknown | RangeIndex | ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` +pandas/core/arrays/categorical.py:1397:21: error[no-matching-overload] No overload of function `find_common_type` matches arguments +pandas/core/arrays/categorical.py:2567:16: error[invalid-return-type] Return type does not match returned value: expected `Self@unique`, found `Categorical` +pandas/core/arrays/datetimelike.py:565:18: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `(Unknown & ~str) | Period | Timestamp | Timedelta | NaTType` +pandas/core/arrays/datetimelike.py:1315:20: error[invalid-return-type] Return type does not match returned value: expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `ndarray[tuple[int, ...], dtype[Any] | str]` +pandas/core/arrays/datetimelike.py:1582:16: error[invalid-return-type] Return type does not match returned value: expected `Self@_quantile`, found `DatetimeLikeArrayMixin` +pandas/core/arrays/datetimelike.py:2399:16: error[invalid-return-type] Return type does not match returned value: expected `Self@copy`, found `TimelikeOps` +pandas/core/arrays/datetimelike.py:2458:16: error[invalid-return-type] Return type does not match returned value: expected `Self@take`, found `TimelikeOps` +pandas/core/arrays/datetimelike.py:2476:36: error[invalid-argument-type] Argument to function `py_get_unit_from_dtype` is incorrect: Expected `dtype[Any]`, found `ExtensionDtype` +pandas/core/arrays/datetimes.py:483:62: warning[possibly-missing-attribute] Attribute `tz` may be missing on object of type `Timestamp | None` +pandas/core/arrays/datetimes.py:501:51: error[invalid-argument-type] Argument to bound method `tz_localize` is incorrect: Expected `bool | Literal["NaT", "raise"]`, found `Literal["NaT", "infer", "raise"] | @Todo` +pandas/core/arrays/datetimes.py:503:47: error[invalid-argument-type] Argument to bound method `tz_localize` is incorrect: Expected `bool | Literal["NaT", "raise"]`, found `Literal["NaT", "infer", "raise"] | @Todo` +pandas/core/arrays/datetimes.py:511:32: warning[possibly-missing-attribute] Attribute `_value` may be missing on object of type `Timestamp | None` +pandas/core/arrays/datetimes.py:511:45: warning[possibly-missing-attribute] Attribute `_value` may be missing on object of type `Timestamp | None` +pandas/core/arrays/datetimes.py:512:19: warning[possibly-missing-attribute] Attribute `_value` may be missing on object of type `Timestamp | None` +pandas/core/arrays/datetimes.py:523:34: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `integer[Any] | int | float | ... omitted 3 union elements`, found `Timestamp | None` +pandas/core/arrays/datetimes.py:524:32: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `integer[Any] | int | float | ... omitted 3 union elements`, found `Timestamp | None` +pandas/core/arrays/datetimes.py:561:45: error[invalid-argument-type] Argument to bound method `_from_value_and_reso` is incorrect: Expected `int`, found `datetime64[date | int | None]` +pandas/core/arrays/datetimes.py:590:21: error[invalid-type-form] Variable of type `property` is not allowed in a type expression +pandas/core/arrays/datetimes.py:639:25: error[invalid-type-form] Variable of type `property` is not allowed in a type expression +pandas/core/arrays/datetimes.py:2891:21: error[invalid-assignment] Object of type `Timestamp` is not assignable to `_TimestampNoneT1@_maybe_normalize_endpoints` +pandas/core/arrays/datetimes.py:2894:19: error[invalid-assignment] Object of type `Timestamp` is not assignable to `_TimestampNoneT2@_maybe_normalize_endpoints` +pandas/core/arrays/datetimes.py:2928:29: error[invalid-argument-type] Argument to bound method `tz_localize` is incorrect: Expected `bool | Literal["NaT", "raise"]`, found `Unknown | bool | None` +pandas/core/arrays/datetimes.py:2928:29: error[invalid-argument-type] Argument to bound method `tz_localize` is incorrect: Expected `Literal["NaT", "raise", "shift_backward", "shift_forward"] | timedelta`, found `Unknown | bool | None` +pandas/core/arrays/interval.py:293:17: error[invalid-argument-type] Argument to function `intervals_to_interval_bounds` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` +pandas/core/arrays/interval.py:393:71: warning[possibly-missing-attribute] Attribute `tz` may be missing on object of type `Index | Unknown` +pandas/core/arrays/interval.py:396:37: warning[possibly-missing-attribute] Attribute `tz` may be missing on object of type `Index | Unknown` +pandas/core/arrays/interval.py:399:50: warning[possibly-missing-attribute] Attribute `unit` may be missing on object of type `(Index & ~PeriodIndex) | (Unknown & ~PeriodIndex)` +pandas/core/arrays/interval.py:399:63: warning[possibly-missing-attribute] Attribute `unit` may be missing on object of type `Index | Unknown` +pandas/core/arrays/interval.py:401:35: warning[possibly-missing-attribute] Attribute `_ensure_matching_resos` may be missing on object of type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Unknown` +pandas/core/arrays/interval.py:840:35: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Argument type `Unknown | ndarray[tuple[Any, ...], dtype[Any]]` does not satisfy constraints (`int`, `int | float`, `Timestamp`, `Timedelta`) of type variable `_OrderableT` +pandas/core/arrays/interval.py:840:35: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | ndarray[tuple[Any, ...], dtype[Any]]` +pandas/core/arrays/interval.py:1001:16: error[invalid-return-type] Return type does not match returned value: expected `Interval[Unknown] | int | float`, found `Self@min` +pandas/core/arrays/interval.py:1018:16: error[invalid-return-type] Return type does not match returned value: expected `Interval[Unknown] | int | float`, found `Self@max` +pandas/core/arrays/interval.py:1801:50: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Argument type `Period | Timestamp | Timedelta | NaTType | ndarray[tuple[Any, ...], dtype[Any]]` does not satisfy constraints (`int`, `int | float`, `Timestamp`, `Timedelta`) of type variable `_OrderableT` +pandas/core/arrays/interval.py:1801:50: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int`, found `Period | Timestamp | Timedelta | NaTType | ndarray[tuple[Any, ...], dtype[Any]]` +pandas/core/arrays/masked.py:185:30: error[invalid-assignment] Object of type `ndarray[tuple[int, ...], type]` is not assignable to `ndarray[tuple[Any, ...], dtype[Any]]` +pandas/core/arrays/masked.py:441:16: error[invalid-return-type] Return type does not match returned value: expected `Self@ravel`, found `BaseMaskedArray` +pandas/core/arrays/masked.py:452:16: error[invalid-return-type] Return type does not match returned value: expected `Self@shift`, found `BaseMaskedArray` +pandas/core/arrays/masked.py:1424:16: error[invalid-return-type] Return type does not match returned value: expected `Self@_mode`, found `BaseMaskedArray` +pandas/core/arrays/numpy_.py:386:20: error[invalid-return-type] Return type does not match returned value: expected `Self@take`, found `NumpyExtensionArray` +pandas/core/arrays/numpy_.py:388:16: error[invalid-return-type] Return type does not match returned value: expected `Self@take`, found `NumpyExtensionArray` +pandas/core/arrays/period.py:829:20: error[unresolved-attribute] Object of type `BaseOffset` has no attribute `_period_dtype_code` +pandas/core/arrays/period.py:917:17: error[unresolved-attribute] Object of type `BaseOffset` has no attribute `_period_dtype_code` +pandas/core/arrays/period.py:933:16: error[invalid-return-type] Return type does not match returned value: expected `Self@asfreq`, found `PeriodArray` +pandas/core/arrays/period.py:1031:16: error[invalid-return-type] Return type does not match returned value: expected `Self@_addsub_int_array_or_scalar`, found `PeriodArray` +pandas/core/arrays/period.py:1102:16: error[invalid-return-type] Return type does not match returned value: expected `Self@_add_timedelta_arraylike`, found `PeriodArray` +pandas/core/arrays/period.py:1370:12: error[unresolved-attribute] Object of type `BaseOffset` has no attribute `_period_dtype_code` +pandas/core/arrays/period.py:1464:45: error[invalid-argument-type] Argument to function `freq_to_dtype_code` is incorrect: Expected `BaseOffset`, found `None` +pandas/core/arrays/period.py:1469:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[ndarray[tuple[Any, ...], dtype[Any]], BaseOffset]`, found `tuple[@Todo, BaseOffset | Unknown | None]` +pandas/core/arrays/sparse/accessor.py:76:24: warning[possibly-missing-attribute] Attribute `array` may be missing on object of type `Unknown | None` +pandas/core/arrays/sparse/accessor.py:240:13: error[invalid-argument-type] Argument to function `sparse_series_to_coo` is incorrect: Expected `Series`, found `Unknown | None` +pandas/core/arrays/sparse/accessor.py:271:13: warning[possibly-missing-attribute] Attribute `array` may be missing on object of type `Unknown | None` +pandas/core/arrays/sparse/accessor.py:272:19: warning[possibly-missing-attribute] Attribute `index` may be missing on object of type `Unknown | None` +pandas/core/arrays/sparse/accessor.py:273:18: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | None` +pandas/core/arrays/sparse/accessor.py:391:51: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `Unknown | None` +pandas/core/arrays/sparse/accessor.py:392:16: warning[possibly-missing-attribute] Attribute `_constructor` may be missing on object of type `Unknown | None` +pandas/core/arrays/sparse/accessor.py:393:25: warning[possibly-missing-attribute] Attribute `index` may be missing on object of type `Unknown | None` +pandas/core/arrays/sparse/accessor.py:393:53: warning[possibly-missing-attribute] Attribute `columns` may be missing on object of type `Unknown | None` +pandas/core/arrays/sparse/accessor.py:430:34: warning[possibly-missing-attribute] Attribute `dtypes` may be missing on object of type `Unknown | None` +pandas/core/arrays/sparse/accessor.py:435:40: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `Unknown | None` +pandas/core/arrays/sparse/accessor.py:446:67: warning[possibly-missing-attribute] Attribute `shape` may be missing on object of type `Unknown | None` +pandas/core/arrays/sparse/accessor.py:464:62: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `Unknown | None` +pandas/core/arrays/sparse/accessor.py:465:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `floating[Any]` +pandas/core/arrays/sparse/array.py:790:16: error[invalid-return-type] Return type does not match returned value: expected `Self@isna`, found `SparseArray` +pandas/core/arrays/sparse/array.py:948:16: warning[possibly-missing-attribute] Attribute `any` may be missing on object of type `Unknown | ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` +pandas/core/arrays/sparse/array.py:1078:42: error[invalid-argument-type] Argument to function `maybe_box_datetimelike` is incorrect: Expected `str | bytes | date | ... omitted 10 union elements`, found `ndarray[tuple[Any, ...], dtype[Any]]` +pandas/core/arrays/sparse/array.py:1095:16: error[invalid-return-type] Return type does not match returned value: expected `Self@take`, found `SparseArray` +pandas/core/arrays/sparse/array.py:1393:16: error[invalid-return-type] Return type does not match returned value: expected `Self@map`, found `SparseArray` +pandas/core/arrays/string_.py:225:23: error[invalid-type-form] Invalid subscript of object of type `property` in type expression +pandas/core/arrays/string_.py:548:16: error[invalid-return-type] Return type does not match returned value: expected `Self@view`, found `BaseStringArray` +pandas/core/arrays/string_arrow.py:291:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `is_in` +pandas/core/arrays/string_arrow.py:446:18: error[unresolved-attribute] Module `pyarrow.compute` has no member `count_substring_regex` +pandas/core/arrays/string_arrow.py:493:23: error[unresolved-attribute] Module `pyarrow.compute` has no member `is_null` +pandas/core/arrays/string_arrow.py:494:23: error[unresolved-attribute] Module `pyarrow.compute` has no member `or_kleene` +pandas/core/arrays/string_arrow.py:494:41: error[unresolved-attribute] Module `pyarrow.compute` has no member `not_equal` +pandas/core/arrays/string_arrow.py:496:23: error[unresolved-attribute] Module `pyarrow.compute` has no member `not_equal` +pandas/core/arrays/timedeltas.py:157:28: error[no-matching-overload] No overload of function `__new__` matches arguments +pandas/core/arrays/timedeltas.py:188:47: error[invalid-argument-type] Argument to bound method `_from_value_and_reso` is incorrect: Expected `signedinteger[_64Bit]`, found `timedelta64[timedelta | int | None]` +pandas/core/arrays/timedeltas.py:250:46: error[invalid-argument-type] Argument to function `astype_overflowsafe` is incorrect: Expected `dtype[Any]`, found `(Unknown & ~AlwaysTruthy & ~None) | dtype[Any] | ExtensionDtype` +pandas/core/arrays/timedeltas.py:276:46: error[invalid-argument-type] Argument to function `astype_overflowsafe` is incorrect: Expected `dtype[Any]`, found `(Unknown & ~AlwaysTruthy & ~None) | dtype[Any] | ExtensionDtype` +pandas/core/arrays/timedeltas.py:1147:20: error[unresolved-attribute] Object of type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` has no attribute `_mask` +pandas/core/arrays/timedeltas.py:1148:20: error[unresolved-attribute] Object of type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` has no attribute `_data` +pandas/core/arrays/timedeltas.py:1152:42: error[invalid-argument-type] Argument to function `cast_from_unit_vectorized` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Unknown` +pandas/core/arrays/timedeltas.py:1158:35: error[invalid-argument-type] Argument to function `is_supported_dtype` is incorrect: Expected `dtype[Any]`, found `ExtensionDtype | dtype[Any]` +pandas/core/arrays/timedeltas.py:1160:45: error[invalid-argument-type] Argument to function `get_supported_dtype` is incorrect: Expected `dtype[Any]`, found `ExtensionDtype | dtype[Any]` +pandas/core/arrays/timedeltas.py:1161:40: error[invalid-argument-type] Argument to function `astype_overflowsafe` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` +pandas/core/base.py:1265:20: error[call-non-callable] Object of type `object` is not callable +pandas/core/col.py:170:23: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +pandas/core/common.py:522:9: error[invalid-assignment] Invalid subscript assignment with key of type `object` and value of type `_T@pipe` on object of type `dict[str, Any]` +pandas/core/common.py:523:16: error[call-non-callable] Object of type `object` is not callable +pandas/core/computation/align.py:161:23: warning[possibly-missing-attribute] Attribute `value` may be missing on object of type `Unknown | list[Unknown]` +pandas/core/computation/align.py:162:24: warning[possibly-missing-attribute] Attribute `value` may be missing on object of type `Unknown | list[Unknown]` +pandas/core/computation/align.py:163:20: warning[possibly-missing-attribute] Attribute `value` may be missing on object of type `Unknown | list[Unknown]` +pandas/core/computation/align.py:163:51: warning[possibly-missing-attribute] Attribute `value` may be missing on object of type `Unknown | list[Unknown]` +pandas/core/computation/align.py:164:50: warning[possibly-missing-attribute] Attribute `value` may be missing on object of type `Unknown | list[Unknown]` +pandas/core/computation/align.py:165:31: warning[possibly-missing-attribute] Attribute `type` may be missing on object of type `Unknown | list[Unknown]` +pandas/core/computation/pytables.py:171:19: error[invalid-argument-type] Argument to bound method `ravel` is incorrect: Argument type `ndarray[tuple[object, ...], dtype[object]]` does not satisfy upper bound `ndarray[_ShapeT_co@ndarray, _DTypeT_co@ndarray]` of type variable `Self` +pandas/core/computation/pytables.py:624:30: warning[possibly-missing-attribute] Attribute `prune` may be missing on object of type `Unknown | None` +pandas/core/computation/pytables.py:631:27: warning[possibly-missing-attribute] Attribute `prune` may be missing on object of type `Unknown | None` +pandas/core/construction.py:585:51: error[invalid-argument-type] Argument to function `construct_1d_arraylike_from_scalar` is incorrect: Expected `str | bytes | date | ... omitted 10 union elements`, found `object` +pandas/core/construction.py:605:25: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Iterable[Unknown]`, found `~ExtensionArray & ~` +pandas/core/construction.py:658:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Iterable[Unknown]`, found `~ExtensionArray & ~` +pandas/core/dtypes/cast.py:197:23: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsFloat | SupportsIndex`, found `str | bytes | date | ... omitted 12 union elements` +pandas/core/dtypes/cast.py:199:21: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsInt | SupportsIndex | SupportsTrunc`, found `str | bytes | date | ... omitted 12 union elements` +pandas/core/dtypes/cast.py:344:23: error[unresolved-attribute] Object of type `ExtensionArray & ~ndarray[tuple[object, ...], dtype[object]]` has no attribute `iloc` +pandas/core/dtypes/cast.py:407:16: error[invalid-argument-type] Argument to bound method `astype` is incorrect: Expected `Index`, found `NumpyIndexT@maybe_upcast_numeric_to_64bit` +pandas/core/dtypes/cast.py:407:16: error[no-matching-overload] No overload of bound method `astype` matches arguments +pandas/core/dtypes/cast.py:409:16: error[invalid-argument-type] Argument to bound method `astype` is incorrect: Expected `Index`, found `NumpyIndexT@maybe_upcast_numeric_to_64bit` +pandas/core/dtypes/cast.py:409:16: error[no-matching-overload] No overload of bound method `astype` matches arguments +pandas/core/dtypes/cast.py:411:16: error[invalid-argument-type] Argument to bound method `astype` is incorrect: Expected `Index`, found `NumpyIndexT@maybe_upcast_numeric_to_64bit` +pandas/core/dtypes/cast.py:411:16: error[no-matching-overload] No overload of bound method `astype` matches arguments +pandas/core/dtypes/cast.py:445:21: error[no-matching-overload] No overload of function `__new__` matches arguments +pandas/core/dtypes/cast.py:728:23: error[no-matching-overload] No overload of function `__new__` matches arguments +pandas/core/dtypes/cast.py:1527:26: error[no-matching-overload] No overload of bound method `astype` matches arguments +pandas/core/dtypes/cast.py:1527:26: error[no-matching-overload] No overload of bound method `astype` matches arguments +pandas/core/dtypes/dtypes.py:329:35: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `Unknown | None` +pandas/core/dtypes/dtypes.py:343:21: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `Unknown | None` +pandas/core/dtypes/dtypes.py:344:17: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `Unknown | None` +pandas/core/dtypes/dtypes.py:452:34: error[unresolved-attribute] Object of type `~None` has no attribute `dtype` +pandas/core/dtypes/dtypes.py:455:33: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `~None` +pandas/core/dtypes/dtypes.py:472:37: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Iterable[Unknown]`, found `~None` +pandas/core/dtypes/dtypes.py:806:43: error[invalid-argument-type] Argument to function `tz_standardize` is incorrect: Expected `tzinfo`, found `tzinfo | None` +pandas/core/dtypes/dtypes.py:1363:39: error[invalid-type-form] Invalid subscript of object of type `property` in type expression +pandas/core/dtypes/dtypes.py:1398:23: error[invalid-type-form] Invalid subscript of object of type `property` in type expression +pandas/core/dtypes/dtypes.py:1548:23: error[invalid-type-form] Invalid subscript of object of type `property` in type expression +pandas/core/dtypes/inference.py:301:17: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `` +pandas/core/dtypes/missing.py:392:12: error[unsupported-operator] Unary operator `~` is unsupported for type `~bool` +pandas/core/frame.py:894:56: error[invalid-argument-type] Argument to function `construct_1d_arraylike_from_scalar` is incorrect: Expected `str | bytes | date | ... omitted 10 union elements`, found `(@Todo & ~BlockManager & ~None & ~Top[dict[Unknown, Unknown]] & ~ndarray[tuple[object, ...], dtype[object]] & ~Series & ~Index & ~ExtensionArray) | (list[Unknown] & ~BlockManager & ~ndarray[tuple[object, ...], dtype[object]] & ~Series & ~Index & ~ExtensionArray)` +pandas/core/frame.py:900:21: error[invalid-argument-type] Argument to function `construct_2d_arraylike_from_scalar` is incorrect: Expected `str | bytes | date | ... omitted 10 union elements`, found `(@Todo & ~BlockManager & ~None & ~Top[dict[Unknown, Unknown]] & ~ndarray[tuple[object, ...], dtype[object]] & ~Series & ~Index & ~ExtensionArray) | (list[Unknown] & ~BlockManager & ~ndarray[tuple[object, ...], dtype[object]] & ~Series & ~Index & ~ExtensionArray)` +pandas/core/frame.py:2378:21: warning[possibly-missing-attribute] Attribute `get_loc` may be missing on object of type `None | Index` +pandas/core/frame.py:2399:23: warning[possibly-missing-attribute] Attribute `drop` may be missing on object of type `None | Index` +pandas/core/frame.py:2401:37: error[invalid-argument-type] Argument to function `arrays_to_mgr` is incorrect: Expected `Index`, found `None | Index` +pandas/core/frame.py:2541:20: error[unsupported-operator] Operator `in` is not supported for types `Hashable` and `None`, in comparing `Hashable` with `Unknown | None` +pandas/core/frame.py:2542:37: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +pandas/core/frame.py:2543:22: error[unsupported-operator] Operator `in` is not supported for types `int` and `None`, in comparing `int` with `Unknown | None` +pandas/core/frame.py:2544:37: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +pandas/core/frame.py:5232:32: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | None | tuple[Unknown & ~None] | tuple[()]` +pandas/core/frame.py:5232:52: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | None | tuple[Unknown & ~None] | tuple[()]` +pandas/core/frame.py:10299:23: error[invalid-assignment] Object of type `Top[list[Unknown]] & ~AlwaysFalsy` is not assignable to `list[Hashable]` +pandas/core/frame.py:10614:43: error[unresolved-attribute] Object of type `int` has no attribute `is_integer` +pandas/core/frame.py:10732:32: error[invalid-argument-type] Argument to function `frame_apply` is incorrect: Expected `((...) -> Unknown) | str | list[((...) -> Unknown) | str] | MutableMapping[Hashable, ((...) -> Unknown) | str | list[((...) -> Unknown) | str]]`, found `Unknown | None` +pandas/core/frame.py:11024:22: error[unresolved-attribute] Object of type `object` has no attribute `apply` +pandas/core/frame.py:11426:20: error[invalid-return-type] Return type does not match returned value: expected `DataFrame`, found `Unknown | DataFrame | Series` +pandas/core/frame.py:11940:41: error[parameter-already-assigned] Multiple values provided for parameter `method` of bound method `corr` +pandas/core/frame.py:11940:56: error[invalid-argument-type] Argument to bound method `corr` is incorrect: Expected `int`, found `int | None` +pandas/core/frame.py:13843:22: error[no-matching-overload] No overload of bound method `quantile` matches arguments +pandas/core/generic.py:1070:55: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[Unknown]`, found `(Mapping[Any, Hashable] & ~(() -> object)) | (((Any, /) -> Hashable) & ~(() -> object))` +pandas/core/generic.py:3564:31: error[no-matching-overload] No overload of bound method `pop` matches arguments +pandas/core/generic.py:3565:32: error[no-matching-overload] No overload of bound method `pop` matches arguments +pandas/core/generic.py:4217:24: error[invalid-return-type] Return type does not match returned value: expected `Self@xs`, found `Unknown | ndarray[tuple[Any, ...], dtype[Any]]` +pandas/core/generic.py:4592:13: error[invalid-assignment] Object of type `Unknown | str` is not assignable to `int | Literal["columns", "index", "rows"]` +pandas/core/generic.py:6196:21: error[invalid-assignment] Cannot assign to a subscript on an object of type `Self@__setattr__` +pandas/core/generic.py:6523:16: warning[redundant-cast] Value is already of type `Self@astype` +pandas/core/generic.py:7154:25: error[invalid-assignment] Cannot assign to a subscript on an object of type `Self@fillna` +pandas/core/generic.py:7164:33: error[invalid-assignment] Cannot assign to a subscript on an object of type `Self@fillna` +pandas/core/generic.py:7571:26: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `Unknown | None | bool` +pandas/core/generic.py:7621:31: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +pandas/core/generic.py:7622:36: warning[possibly-missing-attribute] Attribute `keys` may be missing on object of type `Unknown | None` +pandas/core/generic.py:7636:65: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `Unknown | None` +pandas/core/generic.py:7646:43: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | None` +pandas/core/generic.py:7649:24: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | None` +pandas/core/generic.py:7652:42: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | None` +pandas/core/generic.py:7655:21: error[invalid-argument-type] Argument to bound method `replace_list` is incorrect: Expected `list[Any]`, found `Unknown | None` +pandas/core/generic.py:7655:21: error[invalid-argument-type] Argument to bound method `replace_list` is incorrect: Expected `list[Any]`, found `Unknown | None` +pandas/core/groupby/groupby.py:3510:16: error[invalid-return-type] Return type does not match returned value: expected `NDFrameT@GroupBy`, found `Unknown | DataFrame` +pandas/core/groupby/grouper.py:545:31: warning[possibly-missing-attribute] Attribute `categories` may be missing on object of type `(Unknown & ~ndarray[tuple[object, ...], dtype[object]]) | (Index & ~ndarray[tuple[object, ...], dtype[object]])` +pandas/core/groupby/grouper.py:546:50: error[invalid-argument-type] Argument to function `recode_for_groupby` is incorrect: Expected `Categorical`, found `(Unknown & ~ndarray[tuple[object, ...], dtype[object]]) | (Index & ~ndarray[tuple[object, ...], dtype[object]])` +pandas/core/groupby/grouper.py:623:26: warning[possibly-missing-attribute] Attribute `categories` may be missing on object of type `Unknown | Index | ndarray[tuple[Any, ...], dtype[Any]] | Categorical` +pandas/core/groupby/grouper.py:626:46: warning[possibly-missing-attribute] Attribute `codes` may be missing on object of type `Unknown | Index | ndarray[tuple[Any, ...], dtype[Any]] | Categorical` +pandas/core/groupby/grouper.py:635:27: warning[possibly-missing-attribute] Attribute `isna` may be missing on object of type `Unknown | Index | ndarray[tuple[Any, ...], dtype[Any]] | Categorical` +pandas/core/groupby/grouper.py:645:59: warning[possibly-missing-attribute] Attribute `codes` may be missing on object of type `Unknown | Index | ndarray[tuple[Any, ...], dtype[Any]] | Categorical` +pandas/core/groupby/grouper.py:649:62: warning[possibly-missing-attribute] Attribute `ordered` may be missing on object of type `Unknown | Index | ndarray[tuple[Any, ...], dtype[Any]] | Categorical` +pandas/core/groupby/grouper.py:651:21: warning[possibly-missing-attribute] Attribute `codes` may be missing on object of type `Unknown | Index | ndarray[tuple[Any, ...], dtype[Any]] | Categorical` +pandas/core/groupby/indexing.py:248:6: error[invalid-argument-type] Argument to function `doc` is incorrect: Expected `None | str | ((...) -> Unknown)`, found `property` +pandas/core/groupby/numba_.py:61:57: error[unresolved-attribute] Object of type `((...) -> Unknown) & (() -> object)` has no attribute `__name__` +pandas/core/groupby/numba_.py:116:18: error[not-iterable] Object of type `prange` is not iterable +pandas/core/groupby/numba_.py:118:22: error[not-iterable] Object of type `prange` is not iterable +pandas/core/groupby/numba_.py:176:18: error[not-iterable] Object of type `prange` is not iterable +pandas/core/groupby/numba_.py:178:22: error[not-iterable] Object of type `prange` is not iterable +pandas/core/indexes/base.py:428:11: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/indexes/base.py:440:24: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/indexes/base.py:441:23: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/indexes/base.py:545:33: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Iterable[Unknown]`, found `(Unknown & ~range & ~) | None` +pandas/core/indexes/base.py:562:29: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Iterable[Unknown]`, found `(Unknown & ~range & ~ & ~Top[list[Unknown]] & ~tuple[object, ...]) | None` +pandas/core/indexes/base.py:1831:16: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | FrozenList | list[Unknown | None] | None` +pandas/core/indexes/base.py:1833:75: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | FrozenList | list[Unknown | None] | None` +pandas/core/indexes/base.py:1839:16: error[invalid-return-type] Return type does not match returned value: expected `list[Hashable]`, found `Unknown | FrozenList | list[Unknown | None] | None` +pandas/core/indexes/base.py:1874:16: error[invalid-return-type] Return type does not match returned value: expected `list[Hashable]`, found `(Top[list[Unknown]] & ~AlwaysFalsy) | list[Hashable] | list[Unknown | None] | list[Unknown | (Hashable & ~None)]` +pandas/core/indexes/base.py:2896:16: error[invalid-return-type] Return type does not match returned value: expected `Self@drop_duplicates`, found `Index` +pandas/core/indexes/base.py:3737:48: error[unresolved-attribute] Object of type `Index` has no attribute `codes` +pandas/core/indexes/base.py:3755:51: error[unresolved-attribute] Object of type `Index` has no attribute `categories` +pandas/core/indexes/base.py:3757:57: error[unresolved-attribute] Object of type `Index` has no attribute `codes` +pandas/core/indexes/base.py:3817:48: error[invalid-argument-type] Argument to bound method `get_indexer` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `Unknown | ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` +pandas/core/indexes/base.py:3817:48: error[invalid-argument-type] Argument to bound method `get_indexer` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `Unknown | ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` +pandas/core/indexes/base.py:5019:10: error[invalid-argument-type] Argument to function `doc` is incorrect: Expected `None | str | ((...) -> Unknown)`, found `property` +pandas/core/indexes/base.py:5299:23: error[unresolved-attribute] Object of type `~slice[object, object, object]` has no attribute `to_numpy` +pandas/core/indexes/base.py:5310:18: error[no-matching-overload] No overload of bound method `__getitem__` matches arguments +pandas/core/indexes/base.py:5310:18: error[no-matching-overload] No overload of bound method `__getitem__` matches arguments +pandas/core/indexes/base.py:6135:64: error[invalid-argument-type] Argument to bound method `get_indexer_non_unique` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `Unknown | ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` +pandas/core/indexes/base.py:6135:64: error[invalid-argument-type] Argument to bound method `get_indexer_non_unique` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `Unknown | ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` +pandas/core/indexes/base.py:6464:16: error[no-matching-overload] No overload of bound method `__init__` matches arguments +pandas/core/indexes/datetimelike.py:139:10: error[invalid-argument-type] Argument to function `doc` is incorrect: Expected `None | str | ((...) -> Unknown)`, found `property` +pandas/core/indexes/datetimelike.py:156:10: error[invalid-argument-type] Argument to function `doc` is incorrect: Expected `None | str | ((...) -> Unknown)`, found `property` +pandas/core/indexes/datetimelike.py:200:42: warning[possibly-missing-attribute] Attribute `asi8` may be missing on object of type `(Any & Index) | CategoricalIndex | DatetimeIndexOpsMixin` +pandas/core/indexes/datetimelike.py:527:10: error[invalid-argument-type] Argument to function `doc` is incorrect: Expected `None | str | ((...) -> Unknown)`, found `property` +pandas/core/indexes/datetimelike.py:756:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[Self@_wrap_join_result, @Todo | None, @Todo | None]`, found `tuple[DatetimeTimedeltaMixin | Unknown, @Todo | None, @Todo | None]` +pandas/core/indexes/datetimelike.py:815:45: error[invalid-argument-type] Argument to bound method `is_on_offset` is incorrect: Expected `datetime`, found `Timestamp | NaTType | Timedelta` +pandas/core/indexes/datetimelike.py:823:16: error[invalid-return-type] Return type does not match returned value: expected `Self@delete`, found `DatetimeTimedeltaMixin` +pandas/core/indexes/datetimelike.py:855:13: error[invalid-assignment] Object of type `BaseOffset | None` is not assignable to attribute `_freq` on type `DatetimeArray | TimedeltaArray` +pandas/core/indexes/datetimes.py:609:29: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `integer[Any] | int | float | ... omitted 3 union elements`, found `Unknown | NaTType` +pandas/core/indexes/frozen.py:82:16: error[invalid-return-type] Return type does not match returned value: expected `Self@__radd__`, found `FrozenList` +pandas/core/indexes/frozen.py:92:16: error[invalid-return-type] Return type does not match returned value: expected `Self@__mul__`, found `FrozenList` +pandas/core/indexes/interval.py:670:43: warning[possibly-missing-attribute] Attribute `left` may be missing on object of type `Unknown | Index` +pandas/core/indexes/interval.py:671:44: warning[possibly-missing-attribute] Attribute `right` may be missing on object of type `Unknown | Index` +pandas/core/indexes/interval.py:686:50: warning[possibly-missing-attribute] Attribute `asi8` may be missing on object of type `(Unknown & ~Top[Interval[Unknown]]) | (Index & ~Top[Interval[Unknown]])` +pandas/core/indexes/interval.py:1375:36: error[invalid-argument-type] Argument to function `maybe_box_datetimelike` is incorrect: Expected `str | bytes | date | ... omitted 10 union elements`, found `Unknown | None` +pandas/core/indexes/interval.py:1376:34: error[invalid-argument-type] Argument to function `maybe_box_datetimelike` is incorrect: Expected `str | bytes | date | ... omitted 10 union elements`, found `Unknown | None` +pandas/core/indexes/interval.py:1397:20: error[no-matching-overload] No overload of function `to_offset` matches arguments +pandas/core/indexes/interval.py:1427:25: error[invalid-assignment] Object of type `object` is not assignable to `dtype[Any]` +pandas/core/indexes/interval.py:1435:46: error[unsupported-operator] Operator `*` is unsupported between objects of type `Unknown | None | Literal[1, "D"]` and `float` +pandas/core/indexes/interval.py:1440:32: error[unsupported-operator] Operator `-` is unsupported between objects of type `str | bytes | date | ... omitted 10 union elements` and `str | bytes | date | ... omitted 10 union elements` +pandas/core/indexes/multi.py:1393:16: error[invalid-return-type] Return type does not match returned value: expected `Self@copy`, found `MultiIndex` +pandas/core/indexes/multi.py:2256:40: error[unsupported-operator] Operator `>` is not supported for types `object` and `int`, in comparing `~None` with `Literal[0]` +pandas/core/indexes/multi.py:4484:9: error[no-matching-overload] No overload of function `tile` matches arguments +pandas/core/indexes/period.py:243:29: error[invalid-argument-type] Argument to function `period_array` is incorrect: Expected `Sequence[Period | str | None] | ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Index | Series`, found `Unknown | None` +pandas/core/indexes/range.py:817:20: error[invalid-return-type] Return type does not match returned value: expected `Self@sort_values | tuple[Self@sort_values, ndarray[tuple[Any, ...], dtype[Any]] | RangeIndex]`, found `RangeIndex | tuple[RangeIndex, ndarray[tuple[Any, ...], dtype[Any]]]` +pandas/core/indexes/range.py:1289:27: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsInt | SupportsIndex | SupportsTrunc`, found `~EllipsisType & ~slice[object, object, object]` +pandas/core/indexes/range.py:1305:23: error[unresolved-attribute] Object of type `~EllipsisType & ~slice[object, object, object]` has no attribute `to_numpy` +pandas/core/indexing.py:772:16: error[invalid-return-type] Return type does not match returned value: expected `Self@__call__`, found `_LocationIndexer` +pandas/core/indexing.py:1242:6: error[invalid-argument-type] Argument to function `doc` is incorrect: Expected `None | str | ((...) -> Unknown)`, found `property` +pandas/core/indexing.py:1430:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Iterable[Unknown]`, found `object` +pandas/core/indexing.py:1447:45: error[unsupported-operator] Operator `>` is not supported for types `object` and `int`, in comparing `object` with `Literal[1]` +pandas/core/indexing.py:1593:6: error[invalid-argument-type] Argument to function `doc` is incorrect: Expected `None | str | ((...) -> Unknown)`, found `property` +pandas/core/indexing.py:1785:36: error[invalid-argument-type] Argument to bound method `_validate_integer` is incorrect: Expected `int | integer[Any]`, found `object` +pandas/core/indexing.py:2019:60: error[non-subscriptable] Cannot subscript object of type `Hashable` with no `__getitem__` method +pandas/core/indexing.py:2033:45: error[invalid-argument-type] Argument to bound method `_setitem_single_column` is incorrect: Expected `int`, found `Hashable` +pandas/core/indexing.py:2381:32: error[index-out-of-bounds] Index 1 is out of bounds for tuple `tuple[(Unknown & slice[object, object, object]) | (Unknown & ndarray[tuple[object, ...], dtype[object]]) | (Unknown & Top[list[Unknown]]) | (Unknown & Index)]` with length 1 +pandas/core/indexing.py:2382:21: error[index-out-of-bounds] Index 1 is out of bounds for tuple `tuple[(Unknown & slice[object, object, object]) | (Unknown & ndarray[tuple[object, ...], dtype[object]]) | (Unknown & Top[list[Unknown]]) | (Unknown & Index)]` with length 1 +pandas/core/indexing.py:2384:49: error[index-out-of-bounds] Index 1 is out of bounds for tuple `tuple[(Unknown & slice[object, object, object]) | (Unknown & ndarray[tuple[object, ...], dtype[object]]) | (Unknown & Top[list[Unknown]]) | (Unknown & Index)]` with length 1 +pandas/core/indexing.py:2557:6: error[invalid-argument-type] Argument to function `doc` is incorrect: Expected `None | str | ((...) -> Unknown)`, found `property` +pandas/core/indexing.py:2607:6: error[invalid-argument-type] Argument to function `doc` is incorrect: Expected `None | str | ((...) -> Unknown)`, found `property` +pandas/core/internals/api.py:113:57: error[invalid-argument-type] Argument to function `extract_pandas_array` is incorrect: Expected `int`, found `Unknown | None` +pandas/core/internals/blocks.py:260:16: error[invalid-return-type] Return type does not match returned value: expected `Self@make_block_same_class`, found `Block` +pandas/core/internals/blocks.py:287:16: error[invalid-return-type] Return type does not match returned value: expected `Self@slice_block_columns`, found `Block` +pandas/core/internals/blocks.py:302:16: error[invalid-return-type] Return type does not match returned value: expected `Self@take_block_columns`, found `Block` +pandas/core/internals/blocks.py:315:16: error[invalid-return-type] Return type does not match returned value: expected `Self@getitem_block_columns`, found `Block` +pandas/core/internals/blocks.py:649:16: error[invalid-return-type] Return type does not match returned value: expected `Self@copy`, found `Block` +pandas/core/internals/blocks.py:2089:16: error[invalid-return-type] Return type does not match returned value: expected `Self@slice_block_rows`, found `ExtensionBlock` +pandas/core/internals/construction.py:286:39: error[invalid-argument-type] Argument to function `_check_values_indices_shape_match` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `Unknown | ndarray[tuple[Any, ...], dtype[Any]] | ExtensionArray` +pandas/core/internals/construction.py:1021:46: error[invalid-argument-type] Argument to function `maybe_cast_to_datetime` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]] | list[Unknown]`, found `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` +pandas/core/internals/managers.py:235:13: error[unresolved-attribute] Object of type `Self@blknos` has no attribute `_rebuild_blknos_and_blklocs` +pandas/core/internals/managers.py:246:13: error[unresolved-attribute] Object of type `Self@blklocs` has no attribute `_rebuild_blknos_and_blklocs` +pandas/core/internals/managers.py:762:16: error[invalid-return-type] Return type does not match returned value: expected `Self@consolidate`, found `BaseBlockManager` +pandas/core/internals/managers.py:1225:17: error[invalid-assignment] Invalid subscript assignment with key of type `Unknown | BlockPlacement` and value of type `ndarray[tuple[Any, ...], dtype[Any]]` on object of type `list[Unknown | None]` +pandas/core/internals/managers.py:1695:16: error[invalid-return-type] Return type does not match returned value: expected `Self@quantile`, found `BlockManager` +pandas/core/internals/managers.py:2108:20: error[invalid-return-type] Return type does not match returned value: expected `Self@get_rows_with_mask`, found `SingleBlockManager` +pandas/core/internals/managers.py:2122:16: error[invalid-return-type] Return type does not match returned value: expected `Self@get_rows_with_mask`, found `SingleBlockManager` +pandas/core/missing.py:608:19: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Literal["linear", "nearest", "nearest-up", "slinear", "zero", ... omitted 4 literals] | int`, found `Unknown | None | (str & ~Literal["polynomial"])` +pandas/core/missing.py:613:28: error[unsupported-operator] Operator `<=` is not supported for types `None` and `int`, in comparing `Unknown | None` with `Literal[0]` +pandas/core/missing.py:617:51: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Literal[1, 2, 3, 4, 5]`, found `Unknown | None` +pandas/core/nanops.py:82:26: error[unresolved-attribute] Object of type `F@__call__` has no attribute `__name__` +pandas/core/nanops.py:106:32: error[unresolved-attribute] Object of type `F@__call__` has no attribute `__name__` +pandas/core/nanops.py:657:20: error[invalid-return-type] Return type does not match returned value: expected `ndarray[tuple[Any, ...], dtype[Any]] | datetime64[date | int | None] | timedelta64[timedelta | int | None] | NaTType`, found `signedinteger[_64Bit]` +pandas/core/nanops.py:908:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[int | float | ndarray[tuple[Any, ...], dtype[Any]], int | float | ndarray[tuple[Any, ...], dtype[Any]]]`, found `tuple[floating[Any] | @Todo | int | float | ndarray[tuple[Any, ...], dtype[Any]], Unknown | int | float]` +pandas/core/nanops.py:1525:12: warning[possibly-missing-attribute] Attribute `astype` may be missing on object of type `@Todo | int` +pandas/core/nanops.py:1561:30: error[no-matching-overload] No overload of bound method `astype` matches arguments +pandas/core/nanops.py:1561:30: error[no-matching-overload] No overload of bound method `astype` matches arguments +pandas/core/nanops.py:1563:30: error[no-matching-overload] No overload of bound method `astype` matches arguments +pandas/core/nanops.py:1563:30: error[no-matching-overload] No overload of bound method `astype` matches arguments +pandas/core/ops/array_ops.py:340:44: error[invalid-argument-type] Argument to function `invalid_comparison` is incorrect: Expected `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | list[Unknown] | ... omitted 13 union elements`, found `~Top[list[Unknown]] | @Todo` +pandas/core/resample.py:442:45: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `((...) -> Unknown) | str | list[((...) -> Unknown) | str] | MutableMapping[Hashable, ((...) -> Unknown) | str | list[((...) -> Unknown) | str]]`, found `Unknown | None` +pandas/core/resample.py:2574:26: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | BaseOffset | _NoDefault`, found `Unknown | None` +pandas/core/resample.py:2574:26: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | BaseOffset | _NoDefault`, found `Unknown | None` +pandas/core/resample.py:2581:13: error[invalid-argument-type] Argument to function `_get_timestamp_range_edges` is incorrect: Expected `BaseOffset`, found `Unknown | None` +pandas/core/resample.py:2583:13: error[invalid-argument-type] Argument to function `_get_timestamp_range_edges` is incorrect: Expected `Literal["left", "right"]`, found `Unknown | Literal["left", "right"] | None` +pandas/core/resample.py:2637:12: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | None` +pandas/core/resample.py:2637:52: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | None` +pandas/core/resample.py:2757:21: warning[possibly-missing-attribute] Attribute `n` may be missing on object of type `Unknown | None` +pandas/core/resample.py:2772:17: error[invalid-argument-type] Argument to function `_get_period_range_edges` is incorrect: Expected `Literal["left", "right"]`, found `Unknown | Literal["left", "right"] | None` +pandas/core/resample.py:3147:12: error[invalid-return-type] Return type does not match returned value: expected `FreqIndexT@_asfreq_compat`, found `Unknown | DatetimeIndex | TimedeltaIndex` +pandas/core/reshape/concat.py:550:41: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `SupportsIndex`, found `Any | None | Literal[0]` +pandas/core/reshape/concat.py:550:47: error[unsupported-operator] Operator `+` is unsupported between objects of type `Any | None | Literal[0]` and `Literal[1]` +pandas/core/reshape/concat.py:802:17: error[invalid-argument-type] Method `__getitem__` of type `bound method Mapping[HashableT@_clean_keys_and_objs, Series | DataFrame].__getitem__(key: HashableT@_clean_keys_and_objs, /) -> Series | DataFrame` cannot be called with key of type `object` on object of type `Mapping[HashableT@_clean_keys_and_objs, Series | DataFrame]` +pandas/core/reshape/concat.py:843:16: warning[possibly-missing-attribute] Attribute `take` may be missing on object of type `(Unknown & ~None) | KeysView[object] | Index` +pandas/core/reshape/concat.py:848:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[list[Series | DataFrame], Index | None, set[int]]`, found `tuple[list[Unknown], Unknown | KeysView[object] | Index, set[Unknown]]` +pandas/core/reshape/concat.py:948:16: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | None | list[Unknown | None]` +pandas/core/reshape/concat.py:949:26: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | None | list[Unknown | None]` +pandas/core/reshape/concat.py:958:26: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | None | list[Unknown | None]` +pandas/core/reshape/concat.py:969:22: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | None | list[Unknown | None]` +pandas/core/reshape/merge.py:1649:25: warning[redundant-cast] Value is already of type `Hashable` +pandas/core/reshape/merge.py:1671:25: warning[redundant-cast] Value is already of type `Hashable` +pandas/core/reshape/merge.py:1954:16: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | (Hashable & ~None)` +pandas/core/reshape/merge.py:1954:33: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | (Hashable & ~None)` +pandas/core/reshape/merge.py:2434:41: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | None | list[Divergent]` +pandas/core/reshape/merge.py:2438:24: error[unsupported-operator] Operator `+` is unsupported between objects of type `Unknown | None | list[Divergent]` and `list[Unknown]` +pandas/core/reshape/merge.py:2920:32: error[invalid-argument-type] Argument to bound method `factorize` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `ndarray[tuple[Any, ...], dtype[Any]] | Unknown | ExtensionArray` +pandas/core/reshape/merge.py:2922:48: error[invalid-argument-type] Argument to bound method `hash_inner_join` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `ndarray[tuple[Any, ...], dtype[Any]] | Unknown | (ExtensionArray & ~BaseMaskedArray & ~ArrowExtensionArray)` +pandas/core/reshape/merge.py:2925:36: error[invalid-argument-type] Argument to bound method `factorize` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `ndarray[tuple[Any, ...], dtype[Any]] | Unknown | (ExtensionArray & ~BaseMaskedArray & ~ArrowExtensionArray)` +pandas/core/reshape/merge.py:2927:32: error[invalid-argument-type] Argument to bound method `factorize` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `ndarray[tuple[Any, ...], dtype[Any]] | Unknown | (ExtensionArray & ~BaseMaskedArray & ~ArrowExtensionArray)` +pandas/core/reshape/merge.py:2928:32: error[invalid-argument-type] Argument to bound method `factorize` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `ndarray[tuple[Any, ...], dtype[Any]] | Unknown | ExtensionArray` +pandas/core/reshape/pivot.py:253:17: error[invalid-argument-type] Argument to function `__internal_pivot_table` is incorrect: Expected `((...) -> Unknown) | str | MutableMapping[Hashable, ((...) -> Unknown) | str | list[((...) -> Unknown) | str]]`, found `object` +pandas/core/reshape/pivot.py:592:25: error[invalid-argument-type] Argument to bound method `from_tuples` is incorrect: Expected `Iterable[tuple[Hashable, ...]]`, found `list[Hashable]` +pandas/core/reshape/tile.py:542:18: error[no-matching-overload] No overload of function `take_nd` matches arguments +pandas/core/series.py:341:16: error[invalid-type-form] Invalid subscript of object of type `Accessor` in type expression +pandas/core/series.py:341:21: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:908:23: error[invalid-type-form] Invalid subscript of object of type `Accessor` in type expression +pandas/core/series.py:1432:27: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1444:17: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1445:23: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1453:10: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1458:37: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1460:17: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1461:23: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1476:37: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1477:17: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1478:23: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1486:10: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1559:17: error[call-non-callable] Object of type `object` is not callable +pandas/core/series.py:1570:15: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1574:10: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1579:17: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1581:15: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1590:17: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1592:15: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1596:10: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1603:17: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1604:15: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:1608:10: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:2835:43: error[unresolved-attribute] Object of type `int` has no attribute `is_integer` +pandas/core/series.py:4642:32: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `((...) -> Unknown) | str | list[((...) -> Unknown) | str] | MutableMapping[Hashable, ((...) -> Unknown) | str | list[((...) -> Unknown) | str]]`, found `(Unknown & ~None) | dict[str, Unknown]` +pandas/core/series.py:5073:20: error[no-matching-overload] No overload of bound method `_rename` matches arguments +pandas/core/series.py:5461:16: error[invalid-return-type] Return type does not match returned value: expected `Self@rename_axis | None`, found `Series | None` +pandas/core/series.py:5650:17: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:5652:30: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:5996:19: error[invalid-type-form] Invalid subscript of object of type `Accessor` in type expression +pandas/core/series.py:6471:15: error[invalid-type-form] Variable of type `Accessor` is not allowed in a type expression +pandas/core/series.py:6535:19: error[invalid-type-form] Invalid subscript of object of type `Accessor` in type expression +pandas/core/sorting.py:429:13: error[unknown-argument] Argument `ascending` does not match any known parameter of bound method `argsort` +pandas/core/sorting.py:431:13: error[unknown-argument] Argument `na_position` does not match any known parameter of bound method `argsort` +pandas/core/strings/accessor.py:134:21: error[unresolved-attribute] Object of type `F@forbid_nonstring_types` has no attribute `__name__` +pandas/core/strings/accessor.py:310:33: error[unresolved-attribute] Module `pyarrow` has no member `compute` +pandas/core/strings/accessor.py:311:27: error[unresolved-attribute] Module `pyarrow` has no member `compute` +pandas/core/strings/accessor.py:312:27: error[unresolved-attribute] Module `pyarrow` has no member `compute` +pandas/core/strings/accessor.py:321:25: error[unresolved-attribute] Module `pyarrow` has no member `compute` +pandas/core/strings/accessor.py:331:21: error[unresolved-attribute] Module `pyarrow` has no member `compute` +pandas/core/strings/accessor.py:396:30: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `(Unknown & & ) | dict[Unknown, ArrowExtensionArray | Unknown] | list[Unknown]` +pandas/core/strings/accessor.py:1411:20: warning[possibly-missing-attribute] Attribute `flags` may be missing on object of type `str | Pattern[Unknown]` +pandas/core/strings/accessor.py:1426:33: warning[possibly-missing-attribute] Attribute `flags` may be missing on object of type `str | Pattern[Unknown] | Pattern[str]` +pandas/core/strings/accessor.py:1431:38: warning[possibly-missing-attribute] Attribute `flags` may be missing on object of type `str | Pattern[Unknown] | Pattern[str]` +pandas/core/tools/datetimes.py:393:35: error[invalid-argument-type] Argument to function `is_supported_dtype` is incorrect: Expected `dtype[Any]`, found `(Any & ~DatetimeTZDtype) | None` +pandas/core/tools/datetimes.py:1062:22: error[invalid-assignment] Object of type `bool` is not assignable to `Timestamp | NaTType | Series | Index` +pandas/core/util/hashing.py:314:16: error[no-matching-overload] No overload of bound method `astype` matches arguments +pandas/core/util/numba_.py:79:8: error[unresolved-attribute] Module `numba` has no member `extending` +pandas/core/util/numba_.py:82:22: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__name__` +pandas/core/util/numba_.py:89:22: error[unresolved-attribute] Module `numba` has no member `extending` +pandas/core/window/ewm.py:913:38: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `BaseGrouper`, found `Unknown | None` +pandas/core/window/numba_.py:67:18: error[not-iterable] Object of type `prange` is not iterable +pandas/core/window/numba_.py:131:18: error[not-iterable] Object of type `prange` is not iterable +pandas/core/window/numba_.py:229:18: error[not-iterable] Object of type `prange` is not iterable +pandas/core/window/numba_.py:257:18: error[not-iterable] Object of type `prange` is not iterable +pandas/core/window/numba_.py:323:22: error[not-iterable] Object of type `prange` is not iterable +pandas/core/window/online.py:63:22: error[not-iterable] Object of type `prange` is not iterable +pandas/core/window/rolling.py:167:44: error[unsupported-operator] Operator `>` is not supported for types `int` and `None`, in comparing `(Unknown & ~None) | int` with `Unknown | None` +pandas/core/window/rolling.py:419:35: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int`, found `(Unknown & ~BaseIndexer) | None` +pandas/core/window/rolling.py:1139:43: error[unsupported-operator] Operator `<` is not supported for types `None` and `int`, in comparing `(Unknown & ~BaseIndexer) | None` with `Literal[0]` +pandas/core/window/rolling.py:1288:45: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `((...) -> Unknown) | str | list[((...) -> Unknown) | str] | MutableMapping[Hashable, ((...) -> Unknown) | str | list[((...) -> Unknown) | str]]`, found `Unknown | None` +pandas/core/window/rolling.py:1291:22: error[call-non-callable] Object of type `None` is not callable +pandas/core/window/rolling.py:2018:45: error[unsupported-operator] Operator `<` is not supported for types `None` and `int`, in comparing `(Unknown & ~BaseIndexer) | None` with `Literal[0]` +pandas/core/window/rolling.py:3494:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int | BaseIndexer`, found `(Unknown & BaseIndexer) | int | (Unknown & ~BaseIndexer) | None` +pandas/io/clipboard/__init__.py:121:18: error[unresolved-reference] Name `Foundation` used when not defined +pandas/io/clipboard/__init__.py:122:45: error[unresolved-reference] Name `Foundation` used when not defined +pandas/io/clipboard/__init__.py:123:17: error[unresolved-reference] Name `AppKit` used when not defined +pandas/io/clipboard/__init__.py:124:36: error[unresolved-reference] Name `AppKit` used when not defined +pandas/io/clipboard/__init__.py:125:41: error[unresolved-reference] Name `AppKit` used when not defined +pandas/io/clipboard/__init__.py:129:17: error[unresolved-reference] Name `AppKit` used when not defined +pandas/io/clipboard/__init__.py:130:40: error[unresolved-reference] Name `AppKit` used when not defined +pandas/io/clipboard/__init__.py:137:12: warning[unresolved-global] Invalid global declaration of `QApplication`: `QApplication` has no declarations or bindings in the global scope +pandas/io/clipboard/__init__.py:142:14: error[unresolved-import] Cannot resolve imported module `qtpy.QtWidgets` +pandas/io/clipboard/__init__.py:147:18: error[unresolved-import] Cannot resolve imported module `PyQt4.QtGui` +pandas/io/clipboard/__init__.py:155:14: warning[possibly-missing-attribute] Attribute `clipboard` may be missing on object of type `Unknown | QCoreApplication` +pandas/io/clipboard/__init__.py:159:14: warning[possibly-missing-attribute] Attribute `clipboard` may be missing on object of type `Unknown | QCoreApplication` +pandas/io/clipboard/__init__.py:330:15: error[unresolved-attribute] Object of type `Self@__call__` has no attribute `f` +pandas/io/clipboard/__init__.py:332:64: error[unresolved-attribute] Object of type `Self@__call__` has no attribute `f` +pandas/io/clipboard/__init__.py:336:17: error[unresolved-attribute] Object of type `Self@__setattr__` has no attribute `f` +pandas/io/clipboard/__init__.py:340:12: warning[unresolved-global] Invalid global declaration of `HGLOBAL`: `HGLOBAL` has no declarations or bindings in the global scope +pandas/io/clipboard/__init__.py:340:21: warning[unresolved-global] Invalid global declaration of `LPVOID`: `LPVOID` has no declarations or bindings in the global scope +pandas/io/clipboard/__init__.py:340:29: warning[unresolved-global] Invalid global declaration of `DWORD`: `DWORD` has no declarations or bindings in the global scope +pandas/io/clipboard/__init__.py:340:36: warning[unresolved-global] Invalid global declaration of `LPCSTR`: `LPCSTR` has no declarations or bindings in the global scope +pandas/io/clipboard/__init__.py:340:44: warning[unresolved-global] Invalid global declaration of `INT`: `INT` has no declarations or bindings in the global scope +pandas/io/clipboard/__init__.py:341:12: warning[unresolved-global] Invalid global declaration of `HWND`: `HWND` has no declarations or bindings in the global scope +pandas/io/clipboard/__init__.py:341:18: warning[unresolved-global] Invalid global declaration of `HINSTANCE`: `HINSTANCE` has no declarations or bindings in the global scope +pandas/io/clipboard/__init__.py:341:29: warning[unresolved-global] Invalid global declaration of `HMENU`: `HMENU` has no declarations or bindings in the global scope +pandas/io/clipboard/__init__.py:341:36: warning[unresolved-global] Invalid global declaration of `BOOL`: `BOOL` has no declarations or bindings in the global scope +pandas/io/clipboard/__init__.py:341:42: warning[unresolved-global] Invalid global declaration of `UINT`: `UINT` has no declarations or bindings in the global scope +pandas/io/clipboard/__init__.py:341:48: warning[unresolved-global] Invalid global declaration of `HANDLE`: `HANDLE` has no declarations or bindings in the global scope +pandas/io/clipboard/__init__.py:356:14: error[unresolved-attribute] Module `ctypes` has no member `windll` +pandas/io/clipboard/__init__.py:532:12: warning[unresolved-global] Invalid global declaration of `Foundation`: `Foundation` has no declarations or bindings in the global scope +pandas/io/clipboard/__init__.py:532:24: warning[unresolved-global] Invalid global declaration of `AppKit`: `AppKit` has no declarations or bindings in the global scope +pandas/io/clipboard/__init__.py:532:32: warning[unresolved-global] Invalid global declaration of `qtpy`: `qtpy` has no declarations or bindings in the global scope +pandas/io/clipboard/__init__.py:532:38: warning[unresolved-global] Invalid global declaration of `PyQt4`: `PyQt4` has no declarations or bindings in the global scope +pandas/io/clipboard/__init__.py:532:45: warning[unresolved-global] Invalid global declaration of `PyQt5`: `PyQt5` has no declarations or bindings in the global scope +pandas/io/clipboard/__init__.py:560:20: error[unresolved-import] Cannot resolve imported module `AppKit` +pandas/io/clipboard/__init__.py:561:20: error[unresolved-import] Cannot resolve imported module `Foundation` +pandas/io/clipboard/__init__.py:582:20: error[unresolved-import] Cannot resolve imported module `qtpy` +pandas/io/clipboard/__init__.py:589:28: error[unresolved-import] Cannot resolve imported module `PyQt4` +pandas/io/common.py:273:30: error[invalid-assignment] Object of type `object` is not assignable to `str | PathLike[str] | BaseBufferT@stringify_path` +pandas/io/common.py:274:12: error[no-matching-overload] No overload of function `_expand_user` matches arguments +pandas/io/common.py:770:26: error[no-matching-overload] No overload of bound method `__init__` matches arguments +pandas/io/common.py:802:29: warning[possibly-missing-attribute] Attribute `namelist` may be missing on object of type `Unknown | BytesIO | ZipFile` +pandas/io/common.py:804:30: warning[possibly-missing-attribute] Attribute `open` may be missing on object of type `Unknown | BytesIO | ZipFile` +pandas/io/common.py:829:25: warning[possibly-missing-attribute] Attribute `getnames` may be missing on object of type `Unknown | BytesIO | TarFile` +pandas/io/common.py:831:28: warning[possibly-missing-attribute] Attribute `extractfile` may be missing on object of type `Unknown | BytesIO | TarFile` +pandas/io/common.py:1027:9: warning[possibly-missing-attribute] Attribute `addfile` may be missing on object of type `Unknown | BytesIO | TarFile` +pandas/io/common.py:1057:23: warning[possibly-missing-attribute] Attribute `filename` may be missing on object of type `Unknown | BytesIO | ZipFile` +pandas/io/common.py:1058:29: warning[possibly-missing-attribute] Attribute `filename` may be missing on object of type `Unknown | BytesIO | ZipFile` +pandas/io/common.py:1067:9: warning[possibly-missing-attribute] Attribute `writestr` may be missing on object of type `Unknown | BytesIO | ZipFile` +pandas/io/common.py:1085:20: error[call-non-callable] Object of type `object` is not callable +pandas/io/common.py:1095:20: error[call-non-callable] Object of type `object` is not callable +pandas/io/common.py:1150:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `BaseBuffer`, found `mmap` +pandas/io/common.py:1161:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[str | BaseBuffer, bool, list[BaseBuffer]]`, found `tuple[_IOWrapper, Literal[True], list[BaseBuffer | _IOWrapper]]` +pandas/io/excel/_base.py:493:13: error[invalid-argument-type] Argument to bound method `parse` is incorrect: Expected `str | int | list[int] | list[str] | None`, found `str | int | list[IntStrT@read_excel] | None` +pandas/io/excel/_base.py:496:13: error[invalid-argument-type] Argument to bound method `parse` is incorrect: Expected `int | Sequence[int] | None`, found `int | str | Sequence[int] | None` +pandas/io/excel/_base.py:520:12: error[invalid-return-type] Return type does not match returned value: expected `DataFrame | dict[IntStrT@read_excel, DataFrame]`, found `DataFrame | dict[str, DataFrame] | dict[int, DataFrame]` +pandas/io/excel/_base.py:574:17: error[call-non-callable] Object of type `object` is not callable +pandas/io/excel/_base.py:578:17: error[call-non-callable] Object of type `object` is not callable +pandas/io/excel/_base.py:844:21: error[unsupported-operator] Operator `+=` is unsupported between objects of type `object` and `int` +pandas/io/excel/_base.py:846:20: error[unsupported-operator] Operator `>` is not supported for types `object` and `int` +pandas/io/excel/_base.py:852:17: error[invalid-assignment] Invalid subscript assignment with key of type `object` and value of type `list[Hashable]` on object of type `list[Unknown]` +pandas/io/excel/_base.py:852:57: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `object` on object of type `list[Unknown]` +pandas/io/excel/_base.py:855:54: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `object` on object of type `list[Unknown]` +pandas/io/excel/_base.py:1366:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[int | float | str | date, str | None]`, found `tuple[Unknown | int | float | Decimal | str, None | Unknown | str]` +pandas/io/excel/_odswriter.py:68:23: error[invalid-type-form] Variable of type `def OpenDocumentSpreadsheet() -> Unknown` is not allowed in a type expression +pandas/io/formats/excel.py:252:21: error[invalid-argument-type] Argument to function `remove_none` is incorrect: Expected `dict[str, str | None]`, found `dict[Unknown | str, Unknown | dict[str, bool | str | None] | dict[str, dict[str, str | None]] | dict[str, int | float | str | None] | dict[str, str | None]]` +pandas/io/formats/excel.py:253:16: error[invalid-return-type] Return type does not match returned value: expected `dict[str, dict[str, str]]`, found `dict[Unknown | str, Unknown | dict[str, bool | str | None] | dict[str, dict[str, str | None]] | dict[str, int | float | str | None] | dict[str, str | None]]` +pandas/io/formats/format.py:572:22: error[invalid-assignment] Object of type `(Sequence[str | int] & Top[Mapping[Unknown, object]] & ~int & ~str) | (Mapping[Hashable, str | int] & ~int & ~str)` is not assignable to `Mapping[Hashable, str | int]` +pandas/io/formats/format.py:1266:35: error[call-non-callable] Object of type `str` is not callable +pandas/io/formats/format.py:1729:18: error[unresolved-attribute] Object of type `Timedelta` has no attribute `_repr_base` +pandas/io/formats/info.py:462:44: error[invalid-argument-type] Argument to function `_get_dataframe_dtype_counts` is incorrect: Expected `DataFrame`, found `DataFrame | Series` +pandas/io/formats/info.py:474:16: error[invalid-return-type] Return type does not match returned value: expected `Iterable[ExtensionDtype | str | dtype[Any] | type]`, found `Unknown | dtype[Any] | ExtensionDtype` +pandas/io/formats/info.py:496:16: error[invalid-return-type] Return type does not match returned value: expected `Series`, found `Series | int` +pandas/io/formats/info.py:501:16: warning[possibly-missing-attribute] Attribute `sum` may be missing on object of type `Series | int` +pandas/io/formats/info.py:555:16: error[invalid-return-type] Return type does not match returned value: expected `list[int]`, found `list[int | Series]` +pandas/io/formats/info.py:577:16: error[invalid-return-type] Return type does not match returned value: expected `int`, found `Series | int` +pandas/io/formats/info.py:811:16: error[invalid-return-type] Return type does not match returned value: expected `DataFrame`, found `DataFrame | Series` +pandas/io/formats/info.py:816:16: error[unresolved-attribute] Object of type `_BaseInfo` has no attribute `ids` +pandas/io/formats/info.py:821:16: error[unresolved-attribute] Object of type `_BaseInfo` has no attribute `col_count` +pandas/io/formats/info.py:1034:16: error[invalid-return-type] Return type does not match returned value: expected `Series`, found `DataFrame | Series` +pandas/io/formats/printing.py:211:17: error[no-matching-overload] No overload of bound method `update` matches arguments +pandas/io/formats/printing.py:214:28: error[invalid-assignment] Object of type `list[object]` is not assignable to `Iterable[str] | None` +pandas/io/formats/printing.py:219:18: error[not-iterable] Object of type `Iterable[str] | None` may not be iterable +pandas/io/formats/printing.py:439:20: error[unsupported-operator] Operator `+` is unsupported between objects of type `Unknown | tuple[str, ...] | str` and `LiteralString` +pandas/io/formats/printing.py:448:20: error[unsupported-operator] Operator `+` is unsupported between objects of type `Unknown | tuple[str, ...] | str` and `LiteralString` +pandas/io/formats/printing.py:452:53: error[invalid-argument-type] Argument to function `_extend_line` is incorrect: Expected `str`, found `Unknown | tuple[str, ...] | str` +pandas/io/formats/style.py:2591:38: error[invalid-argument-type] Argument to bound method `set_table_styles` is incorrect: Expected `dict[Any, list[CSSDict]] | list[CSSDict] | None`, found `list[CSSDict] | list[Unknown | dict[Unknown | str, Unknown | str]] | list[Unknown]` +pandas/io/formats/style.py:2711:23: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +pandas/io/formats/style.py:2711:63: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +pandas/io/formats/style.py:2713:28: error[invalid-assignment] Object of type `list[dict[Unknown | str, Unknown | str | list[tuple[str, str | int | float]]] | Unknown]` is not assignable to `dict[Any, list[CSSDict]] | list[CSSDict] | None` +pandas/io/formats/style.py:2723:28: error[invalid-assignment] Object of type `list[dict[Unknown | str, Unknown | str | list[tuple[str, str | int | float]]] | Unknown]` is not assignable to `dict[Any, list[CSSDict]] | list[CSSDict] | None` +pandas/io/formats/style.py:2732:13: warning[possibly-missing-attribute] Attribute `extend` may be missing on object of type `(Unknown & ~None) | dict[Any, list[CSSDict]] | list[CSSDict]` +pandas/io/formats/style.py:2732:38: error[invalid-argument-type] Argument to bound method `extend` is incorrect: Expected `Iterable[CSSDict]`, found `dict[Any, list[CSSDict]] | list[CSSDict] | None` +pandas/io/formats/style.py:4022:41: error[invalid-argument-type] Argument to function `_validate_apply_axis_arg` is incorrect: Expected `NDFrame | Sequence[Unknown] | ndarray[tuple[Any, ...], dtype[Any]]`, found `bytes | (date & Iterable[object]) | (timedelta & Iterable[object]) | ... omitted 12 union elements` +pandas/io/formats/style.py:4025:42: error[invalid-argument-type] Argument to function `_validate_apply_axis_arg` is incorrect: Expected `NDFrame | Sequence[Unknown] | ndarray[tuple[Any, ...], dtype[Any]]`, found `bytes | (date & Iterable[object]) | (timedelta & Iterable[object]) | ... omitted 12 union elements` +pandas/io/formats/style.py:4234:20: error[invalid-assignment] Object of type `tuple[floating[Any], Literal["zero"]]` is not assignable to `int | float` +pandas/io/formats/style_render.py:1222:17: error[invalid-argument-type] Argument to function `_maybe_wrap_formatter` is incorrect: Expected `str | ((...) -> Unknown) | None`, found `object` +pandas/io/formats/style_render.py:1402:25: error[invalid-assignment] Object of type `dict[int | Unknown, object]` is not assignable to `str | ((...) -> Unknown) | dict[Any, str | ((...) -> Unknown) | None] | None` +pandas/io/formats/style_render.py:1409:17: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[Any, str | ((...) -> Unknown) | None] | str | ((...) -> Unknown) | None` +pandas/io/formats/style_render.py:1697:25: error[invalid-assignment] Object of type `dict[int | Unknown, object]` is not assignable to `str | ((...) -> Unknown) | dict[Any, str | ((...) -> Unknown) | None] | None` +pandas/io/formats/style_render.py:1704:17: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `dict[Any, str | ((...) -> Unknown) | None] | str | ((...) -> Unknown) | None` +pandas/io/formats/style_render.py:1849:32: error[unresolved-reference] Name `last_label` used when not defined +pandas/io/formats/style_render.py:1855:33: error[unresolved-reference] Name `last_label` used when not defined +pandas/io/formats/style_render.py:1878:12: error[invalid-return-type] Return type does not match returned value: expected `list[CSSDict]`, found `list[dict[Unknown | str, Unknown | str | list[tuple[str, str | int | float]]] | Unknown]` +pandas/io/formats/xml.py:449:14: error[unresolved-import] Cannot resolve imported module `lxml.etree` +pandas/io/formats/xml.py:511:14: error[unresolved-import] Cannot resolve imported module `lxml.etree` +pandas/io/formats/xml.py:523:14: error[unresolved-import] Cannot resolve imported module `lxml.etree` +pandas/io/html.py:784:14: error[unresolved-import] Cannot resolve imported module `lxml.etree` +pandas/io/json/_json.py:792:19: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `JsonReader[FrameSeriesStrT@JsonReader]`, found `JsonReader[str]` +pandas/io/json/_json.py:1025:38: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ExtensionDtype | str | dtype[Any] | ... omitted 3 union elements`, found `Unknown | bool | None | str | _NoDefault` +pandas/io/json/_json.py:1025:38: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | bool | None | str | _NoDefault` +pandas/io/json/_json.py:1025:38: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool | list[str]`, found `Unknown | bool | None | str | _NoDefault` +pandas/io/json/_json.py:1025:38: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | bool | None | str | _NoDefault` +pandas/io/json/_json.py:1025:38: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | bool | None | str | _NoDefault` +pandas/io/json/_json.py:1025:38: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Literal["numpy_nullable", "pyarrow"] | _NoDefault`, found `Unknown | bool | None | str | _NoDefault` +pandas/io/json/_json.py:1029:39: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ExtensionDtype | str | dtype[Any] | ... omitted 3 union elements`, found `Unknown | bool | None | str | _NoDefault` +pandas/io/json/_json.py:1029:39: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | bool | None | str | _NoDefault` +pandas/io/json/_json.py:1029:39: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool | list[str]`, found `Unknown | bool | None | str | _NoDefault` +pandas/io/json/_json.py:1029:39: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | bool | None | str | _NoDefault` +pandas/io/json/_json.py:1029:39: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | bool | None | str | _NoDefault` +pandas/io/json/_json.py:1029:39: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Literal["numpy_nullable", "pyarrow"] | _NoDefault`, found `Unknown | bool | None | str | _NoDefault` +pandas/io/json/_json.py:1222:36: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `Never`, found `Hashable` +pandas/io/json/_table_schema.py:311:36: warning[possibly-missing-attribute] Attribute `levels` may be missing on object of type `Unknown | Index` +pandas/io/parsers/arrow_parser_wrapper.py:184:30: error[unsupported-operator] Operator `+` is unsupported between objects of type `list[str | Unknown]` and `(Unknown & ~None) | range` +pandas/io/parsers/base_parser.py:489:39: error[no-matching-overload] No overload of function `maybe_convert_numeric` matches arguments +pandas/io/parsers/base_parser.py:529:33: error[no-matching-overload] No overload of function `maybe_convert_bool` matches arguments +pandas/io/parsers/base_parser.py:997:12: error[invalid-return-type] Return type does not match returned value: expected `SequenceT@evaluate_callable_usecols | set[int]`, found `(((Hashable, /) -> object) & ~(() -> object)) | (SequenceT@evaluate_callable_usecols & ~(() -> object))` +pandas/io/parsers/c_parser_wrapper.py:195:47: error[not-iterable] Object of type `Unknown | None | Sequence[Hashable]` may not be iterable +pandas/io/parsers/c_parser_wrapper.py:198:13: error[invalid-argument-type] Argument to bound method `_set_noconvert_dtype_columns` is incorrect: Expected `Sequence[Hashable]`, found `Unknown | None | Sequence[Hashable]` +pandas/io/parsers/c_parser_wrapper.py:217:52: error[invalid-argument-type] Argument to function `_concatenate_chunks` is incorrect: Expected `list[str]`, found `Unknown | None | Sequence[Hashable]` +pandas/io/parsers/c_parser_wrapper.py:240:57: error[invalid-argument-type] Argument to function `_filter_usecols` is incorrect: Argument type `list[Hashable] | MultiIndex` does not satisfy upper bound `Sequence[Hashable]` of type variable `SequenceT` +pandas/io/parsers/c_parser_wrapper.py:289:51: error[invalid-argument-type] Argument to function `_filter_usecols` is incorrect: Argument type `Unknown | None | Sequence[Hashable]` does not satisfy upper bound `Sequence[Hashable]` of type variable `SequenceT` +pandas/io/parsers/python_parser.py:142:13: error[invalid-assignment] Object of type `(ReadCsvBuffer[str] & Top[list[Unknown]]) | list[Unknown]` is not assignable to attribute `data` of type `Iterator[list[str]] | list[list[str | bytes | date | ... omitted 10 union elements]]` +pandas/io/parsers/python_parser.py:428:48: error[invalid-argument-type] Argument to function `isin` is incorrect: Expected `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Index | ... omitted 3 union elements`, found `Unknown | set[Unknown]` +pandas/io/parsers/python_parser.py:449:49: error[invalid-argument-type] Argument to function `map_infer_mask` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `Unknown | ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` +pandas/io/parsers/python_parser.py:528:25: error[unknown-argument] Argument `true_values` does not match any known parameter of bound method `_from_sequence_of_strings` +pandas/io/parsers/python_parser.py:529:25: error[unknown-argument] Argument `false_values` does not match any known parameter of bound method `_from_sequence_of_strings` +pandas/io/parsers/python_parser.py:530:25: error[unknown-argument] Argument `none_values` does not match any known parameter of bound method `_from_sequence_of_strings` +pandas/io/parsers/python_parser.py:736:48: error[invalid-argument-type] Argument to bound method `_handle_usecols` is incorrect: Expected `list[list[str | bytes | date | ... omitted 11 union elements]]`, found `list[Unknown | list[int]]` +pandas/io/parsers/python_parser.py:736:57: error[invalid-argument-type] Argument to bound method `_handle_usecols` is incorrect: Expected `list[str | bytes | date | ... omitted 11 union elements]`, found `Unknown | list[int]` +pandas/io/parsers/readers.py:1574:41: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `(@Todo & ~Literal[False] & ~_NoDefault) | None` +pandas/io/pytables.py:483:8: error[unsupported-operator] Operator `<=` is not supported for types `None` and `None`, in comparing `Unknown | None | int` with `Unknown | None | int` +pandas/io/pytables.py:487:11: error[unsupported-operator] Operator `>` is not supported for types `None` and `int`, in comparing `Unknown | None | int` with `Literal[1]` +pandas/io/pytables.py:639:30: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +pandas/io/pytables.py:702:20: error[invalid-return-type] Return type does not match returned value: expected `list[str]`, found `list[Unknown | None | str]` +pandas/io/pytables.py:1941:55: error[invalid-argument-type] Argument to bound method `_create_storer` is incorrect: Expected `str`, found `Unknown | None` +pandas/io/pytables.py:2091:15: error[unsupported-operator] Operator `<` is not supported for types `None` and `None`, in comparing `Unknown | None | Literal[0]` with `Unknown | None | Literal[0]` +pandas/io/pytables.py:2092:24: error[unsupported-operator] Operator `+` is unsupported between objects of type `Unknown | None | Literal[0]` and `int | None` +pandas/io/pytables.py:2092:50: error[invalid-argument-type] Argument to function `min` is incorrect: Argument type `Unknown | None | Literal[0]` does not satisfy upper bound `SupportsDunderLT[Any] | SupportsDunderGT[Any]` of type variable `SupportsRichComparisonT` +pandas/io/pytables.py:2196:16: warning[possibly-missing-attribute] Attribute `itemsize` may be missing on object of type `Unknown | None` +pandas/io/pytables.py:2254:41: error[invalid-argument-type] Argument to function `_maybe_convert` is incorrect: Expected `str`, found `Unknown | None` +pandas/io/pytables.py:2312:16: warning[possibly-missing-attribute] Attribute `_v_attrs` may be missing on object of type `Unknown | None` +pandas/io/pytables.py:2316:16: warning[possibly-missing-attribute] Attribute `description` may be missing on object of type `Unknown | None` +pandas/io/pytables.py:2329:16: error[no-matching-overload] No overload of function `iter` matches arguments +pandas/io/pytables.py:2341:45: warning[possibly-missing-attribute] Attribute `itemsize` may be missing on object of type `Unknown | None` +pandas/io/pytables.py:2645:72: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | None` +pandas/io/pytables.py:2700:12: warning[possibly-missing-attribute] Attribute `startswith` may be missing on object of type `(Unknown & ~None) | ExtensionDtype | str | ... omitted 3 union elements` +pandas/io/pytables.py:2702:48: error[invalid-argument-type] Argument to function `_set_tz` is incorrect: Expected `str`, found `(Unknown & ~None) | ExtensionDtype | str | ... omitted 3 union elements` +pandas/io/pytables.py:2749:17: error[invalid-argument-type] Argument to function `_unconvert_string_array` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `DatetimeArray | @Todo | ndarray[tuple[Any, ...], Unknown]` +pandas/io/pytables.py:2841:20: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int, int]`, found `tuple[int, ...]` +pandas/io/pytables.py:3118:35: error[invalid-argument-type] Argument to bound method `write_array` is incorrect: Expected `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Index | Series`, found `Unknown | None` +pandas/io/pytables.py:3146:41: error[invalid-argument-type] Argument to bound method `write_array` is incorrect: Expected `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Index | Series`, found `Unknown | None` +pandas/io/pytables.py:3184:16: error[non-subscriptable] Cannot subscript object of type `Node` with no `__getitem__` method +pandas/io/pytables.py:3289:45: error[invalid-argument-type] Argument to bound method `write_array_empty` is incorrect: Expected `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]`, found `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Index | Series | Unknown` +pandas/io/pytables.py:3333:41: error[invalid-argument-type] Argument to bound method `write_array_empty` is incorrect: Expected `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]`, found `(ExtensionArray & ~BaseStringArray) | (ndarray[tuple[Any, ...], dtype[Any]] & ~BaseStringArray) | (Index & ~BaseStringArray) | (Series & ~BaseStringArray) | (Unknown & ~BaseStringArray)` +pandas/io/pytables.py:3635:16: error[invalid-return-type] Return type does not match returned value: expected `int`, found `signedinteger[_64Bit]` +pandas/io/pytables.py:3666:24: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | None` +pandas/io/pytables.py:3678:22: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsInt | SupportsIndex | SupportsTrunc`, found `Unknown | None` +pandas/io/pytables.py:4135:13: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Index, (s: slice[Any, Any, Any], /) -> list[Index]]` cannot be called with key of type `int | Unknown | None` on object of type `list[Index]` +pandas/io/pytables.py:4136:40: error[invalid-argument-type] Argument to bound method `_get_axis_name` is incorrect: Expected `int | Literal["columns", "index", "rows"]`, found `int | Unknown | None` +pandas/io/pytables.py:4824:26: error[no-matching-overload] No overload of bound method `reshape` matches arguments +pandas/io/pytables.py:4824:26: error[no-matching-overload] No overload of bound method `reshape` matches arguments +pandas/io/pytables.py:5205:19: warning[possibly-missing-attribute] Attribute `to_numpy` may be missing on object of type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` +pandas/io/sas/sas7bdat.py:519:63: error[invalid-argument-type] Argument to bound method `_convert_header_text` is incorrect: Expected `bytes`, found `Unknown | str | bytes` +pandas/io/sql.py:1036:20: warning[possibly-missing-attribute] Attribute `copy` may be missing on object of type `Unknown | None | DataFrame` +pandas/io/sql.py:1045:38: warning[possibly-missing-attribute] Attribute `columns` may be missing on object of type `Unknown | DataFrame | None` +pandas/io/sql.py:1051:38: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `Unknown | DataFrame | None` +pandas/io/sql.py:1100:21: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | None | DataFrame` +pandas/io/sql.py:1217:23: warning[possibly-missing-attribute] Attribute `index` may be missing on object of type `Unknown | None | DataFrame` +pandas/io/sql.py:1231:36: warning[possibly-missing-attribute] Attribute `columns` may be missing on object of type `Unknown | None | DataFrame` +pandas/io/sql.py:1232:21: warning[possibly-missing-attribute] Attribute `index` may be missing on object of type `Unknown | None | DataFrame` +pandas/io/sql.py:1236:47: warning[possibly-missing-attribute] Attribute `index` may be missing on object of type `Unknown | None | DataFrame` +pandas/io/sql.py:1250:41: warning[possibly-missing-attribute] Attribute `index` may be missing on object of type `Unknown | None | DataFrame` +pandas/io/sql.py:1254:18: warning[possibly-missing-attribute] Attribute `columns` may be missing on object of type `Unknown | None | DataFrame` +pandas/io/sql.py:1254:55: warning[possibly-missing-attribute] Attribute `iloc` may be missing on object of type `Unknown | None | DataFrame` +pandas/io/sql.py:1255:32: warning[possibly-missing-attribute] Attribute `columns` may be missing on object of type `Unknown | None | DataFrame` +pandas/io/sql.py:1311:26: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +pandas/io/sql.py:1320:21: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +pandas/io/sql.py:1333:21: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +pandas/io/sql.py:1336:21: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +pandas/io/sql.py:1340:41: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +pandas/io/sql.py:1342:21: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +pandas/io/sql.py:1346:25: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +pandas/io/sql.py:1914:33: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `ExtensionDtype | str | dtype[Any] | ... omitted 4 union elements` +pandas/io/sql.py:2548:31: warning[possibly-missing-attribute] Attribute `columns` may be missing on object of type `Unknown | None | DataFrame` +pandas/io/sql.py:2866:33: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `ExtensionDtype | str | dtype[Any] | ... omitted 4 union elements` +pandas/io/stata.py:2253:16: error[invalid-return-type] Return type does not match returned value: expected `AnyStr@_pad_bytes`, found `bytes` +pandas/io/stata.py:2254:12: error[invalid-return-type] Return type does not match returned value: expected `AnyStr@_pad_bytes`, found `str` +pandas/io/stata.py:2915:21: error[invalid-argument-type] Argument to function `isfile` is incorrect: Expected `int | str | bytes | PathLike[str] | PathLike[bytes]`, found `str | (Unknown & PathLike[object]) | PathLike[str] | (WriteBuffer[bytes] & PathLike[object])` +pandas/io/stata.py:2918:35: error[invalid-argument-type] Argument to function `unlink` is incorrect: Expected `str | bytes | PathLike[str] | PathLike[bytes]`, found `str | (Unknown & PathLike[object]) | PathLike[str] | (WriteBuffer[bytes] & PathLike[object])` +pandas/io/xml.py:46:22: error[unresolved-import] Module `lxml` has no member `etree` +pandas/io/xml.py:545:14: error[unresolved-import] Cannot resolve imported module `lxml.etree` +pandas/io/xml.py:617:14: error[unresolved-import] Cannot resolve imported module `lxml.etree` +pandas/io/xml.py:655:14: error[unresolved-import] Cannot resolve imported module `lxml.etree` +pandas/plotting/_matplotlib/boxplot.py:278:9: error[unresolved-attribute] Module `matplotlib` has no member `artist` +pandas/plotting/_matplotlib/boxplot.py:280:9: error[unresolved-attribute] Module `matplotlib` has no member `artist` +pandas/plotting/_matplotlib/boxplot.py:282:9: error[unresolved-attribute] Module `matplotlib` has no member `artist` +pandas/plotting/_matplotlib/boxplot.py:284:9: error[unresolved-attribute] Module `matplotlib` has no member `artist` +pandas/plotting/_matplotlib/boxplot.py:338:14: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +pandas/plotting/_matplotlib/boxplot.py:338:27: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | None | list[Unknown | None]` +pandas/plotting/_matplotlib/converter.py:78:12: error[invalid-return-type] Return type does not match returned value: expected `list[tuple[type, type[DateConverter]]]`, found `list[Unknown | tuple[, ] | tuple[, ] | ... omitted 4 union elements]` +pandas/plotting/_matplotlib/converter.py:172:18: error[unresolved-attribute] Module `matplotlib` has no member `ticker` +pandas/plotting/_matplotlib/converter.py:182:21: error[unresolved-attribute] Module `matplotlib` has no member `ticker` +pandas/plotting/_matplotlib/converter.py:236:16: error[no-matching-overload] No overload of function `to_offset` matches arguments +pandas/plotting/_matplotlib/converter.py:841:12: error[invalid-return-type] Return type does not match returned value: expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `ndarray[tuple[int], list[Unknown | tuple[str, ] | tuple[str, ] | tuple[str, str]]]` +pandas/plotting/_matplotlib/converter.py:889:12: error[invalid-return-type] Return type does not match returned value: expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `ndarray[tuple[int], list[Unknown | tuple[str, ] | tuple[str, ] | tuple[str, str]]]` +pandas/plotting/_matplotlib/converter.py:912:12: error[invalid-return-type] Return type does not match returned value: expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `ndarray[tuple[int], list[Unknown | tuple[str, ] | tuple[str, ] | tuple[str, str]]]` +pandas/plotting/_matplotlib/converter.py:932:30: error[unresolved-attribute] Module `matplotlib` has no member `ticker` +pandas/plotting/_matplotlib/converter.py:1013:16: error[unresolved-attribute] Module `matplotlib` has no member `transforms` +pandas/plotting/_matplotlib/converter.py:1021:32: error[unresolved-attribute] Module `matplotlib` has no member `ticker` +pandas/plotting/_matplotlib/converter.py:1097:37: error[unresolved-attribute] Module `matplotlib` has no member `ticker` +pandas/plotting/_matplotlib/core.py:111:20: error[unresolved-attribute] Module `matplotlib` has no member `colors` +pandas/plotting/_matplotlib/core.py:541:20: error[invalid-return-type] Return type does not match returned value: expected `Axes`, found `object` +pandas/plotting/_matplotlib/core.py:745:21: error[unresolved-attribute] Object of type `object` has no attribute `yaxis` +pandas/plotting/_matplotlib/core.py:756:21: error[unresolved-attribute] Object of type `object` has no attribute `yaxis` +pandas/plotting/_matplotlib/core.py:1063:35: error[invalid-return-type] Function can implicitly return `None`, which is not assignable to return type `bool` +pandas/plotting/_matplotlib/core.py:1240:32: error[unresolved-attribute] Module `matplotlib` has no member `axes` +pandas/plotting/_matplotlib/core.py:1383:21: error[unresolved-attribute] Module `matplotlib` has no member `patches` +pandas/plotting/_matplotlib/core.py:1445:17: error[unresolved-attribute] Module `matplotlib` has no member `colors` +pandas/plotting/_matplotlib/core.py:1457:39: error[invalid-argument-type] Argument to bound method `get_cmap` is incorrect: Expected `str | Colormap`, found `Unknown | None` +pandas/plotting/_matplotlib/core.py:1477:20: error[unresolved-attribute] Module `matplotlib` has no member `colors` +pandas/plotting/_matplotlib/core.py:1479:20: error[unresolved-attribute] Module `matplotlib` has no member `colors` +pandas/plotting/_matplotlib/misc.py:131:22: error[unresolved-attribute] Module `matplotlib` has no member `lines` +pandas/plotting/_matplotlib/misc.py:192:18: error[unresolved-attribute] Module `matplotlib` has no member `patches` +pandas/plotting/_matplotlib/misc.py:195:22: error[unresolved-attribute] Module `matplotlib` has no member `patches` +pandas/plotting/_matplotlib/misc.py:416:27: error[invalid-argument-type] Argument to bound method `axvline` is incorrect: Expected `int | float`, found `Unknown | int | str` +pandas/plotting/_matplotlib/misc.py:416:27: error[invalid-argument-type] Argument to bound method `axvline` is incorrect: Expected `int | float`, found `Unknown | int | str` +pandas/plotting/_matplotlib/style.py:99:16: error[invalid-return-type] Return type does not match returned value: expected `dict[str, str | Sequence[int | float]] | list[str | Sequence[int | float]]`, found `dict[str, str | Sequence[int | float]] | (Sequence[str | Sequence[int | float]] & Top[dict[Unknown, Unknown]]) | (Sequence[int | float] & Top[dict[Unknown, Unknown]])` +pandas/plotting/_matplotlib/timeseries.py:120:38: error[invalid-argument-type] Argument to function `_replot_ax` is incorrect: Expected `Axes`, found `~None` +pandas/plotting/_matplotlib/timeseries.py:360:23: error[invalid-argument-type] Argument to function `decorate_axes` is incorrect: Expected `Axes`, found `object` +pandas/plotting/_matplotlib/timeseries.py:362:23: error[invalid-argument-type] Argument to function `decorate_axes` is incorrect: Expected `Axes`, found `object` +pandas/plotting/_matplotlib/tools.py:82:12: error[unresolved-attribute] Module `matplotlib` has no member `table` +pandas/plotting/_matplotlib/tools.py:332:45: error[unresolved-attribute] Module `matplotlib` has no member `ticker` +pandas/plotting/_matplotlib/tools.py:333:32: error[unresolved-attribute] Module `matplotlib` has no member `ticker` +pandas/plotting/_matplotlib/tools.py:334:47: error[unresolved-attribute] Module `matplotlib` has no member `ticker` +pandas/plotting/_matplotlib/tools.py:335:34: error[unresolved-attribute] Module `matplotlib` has no member `ticker` +pandas/plotting/_matplotlib/tools.py:477:18: error[unresolved-attribute] Object of type `object` has no attribute `get_lines` +pandas/plotting/_matplotlib/tools.py:480:18: error[unresolved-attribute] Object of type `object` has no attribute `get_lines` +pandas/tseries/holiday.py:325:48: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `SupportsIndex`, found `Unknown | None` +pandas/tseries/holiday.py:325:60: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `SupportsIndex`, found `Unknown | None` +pandas/tseries/holiday.py:380:43: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `SupportsIndex`, found `Unknown | None` +pandas/tseries/holiday.py:380:55: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `SupportsIndex`, found `Unknown | None` +pandas/tseries/holiday.py:384:41: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `SupportsIndex`, found `Unknown | None` +pandas/tseries/holiday.py:384:53: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `SupportsIndex`, found `Unknown | None` +pandas/tseries/holiday.py:413:40: error[call-non-callable] Object of type `None` is not callable +pandas/util/_decorators.py:64:28: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +pandas/util/_decorators.py:199:41: error[call-non-callable] Object of type `object` is not callable +pandas/util/_decorators.py:377:21: error[invalid-argument-type] Argument to bound method `extend` is incorrect: Expected `Iterable[str | ((...) -> Unknown)]`, found `object` +pandas/util/_exceptions.py:45:15: error[no-matching-overload] No overload of function `dirname` matches arguments +pandas/util/_print_versions.py:29:14: error[unresolved-import] Cannot resolve imported module `pandas._version_meson` +pandas/util/_validators.py:388:33: error[invalid-argument-type] Argument to function `validate_bool_kwarg` is incorrect: Argument type `object` does not satisfy constraints (`bool`, `int`, `None`) of type variable `BoolishNoneT` +typings/numba.pyi:20:7: error[unresolved-attribute] Module `numba.core.types` has no member `abstract` +typings/numba.pyi:21:12: error[unresolved-attribute] Module `numba.core.types` has no member `abstract` +typings/numba.pyi:24:21: error[unresolved-attribute] Module `numba` has no member `compiler` +Found 945 diagnostics diff --git a/scripts/ty_benchmark/snapshots/prefect_Pyrefly.txt b/scripts/ty_benchmark/snapshots/prefect_Pyrefly.txt new file mode 100644 index 0000000000..2ce82c21ed --- /dev/null +++ b/scripts/ty_benchmark/snapshots/prefect_Pyrefly.txt @@ -0,0 +1,162 @@ +ERROR src/prefect/concurrency/_leases.py:116:10-28: Cannot use `AsyncCancelScope` as a context manager [bad-context-manager] +ERROR src/prefect/concurrency/_leases.py:116:10-28: Cannot use `AsyncCancelScope` as a context manager [bad-context-manager] +ERROR src/prefect/events/actions.py:27:5-9: Class member `DoNothing.type` overrides parent class `Action` in an inconsistent manner [bad-override] +ERROR src/prefect/events/actions.py:63:5-9: Class member `RunDeployment.type` overrides parent class `DeploymentAction` in an inconsistent manner [bad-override] +ERROR src/prefect/events/actions.py:91:5-9: Class member `PauseDeployment.type` overrides parent class `DeploymentAction` in an inconsistent manner [bad-override] +ERROR src/prefect/events/actions.py:97:5-9: Class member `ResumeDeployment.type` overrides parent class `DeploymentAction` in an inconsistent manner [bad-override] +ERROR src/prefect/events/actions.py:103:5-9: Class member `ChangeFlowRunState.type` overrides parent class `Action` in an inconsistent manner [bad-override] +ERROR src/prefect/events/actions.py:122:5-9: Class member `CancelFlowRun.type` overrides parent class `Action` in an inconsistent manner [bad-override] +ERROR src/prefect/events/actions.py:128:5-9: Class member `ResumeFlowRun.type` overrides parent class `Action` in an inconsistent manner [bad-override] +ERROR src/prefect/events/actions.py:134:5-9: Class member `SuspendFlowRun.type` overrides parent class `Action` in an inconsistent manner [bad-override] +ERROR src/prefect/events/actions.py:140:5-9: Class member `CallWebhook.type` overrides parent class `Action` in an inconsistent manner [bad-override] +ERROR src/prefect/events/actions.py:153:5-9: Class member `SendNotification.type` overrides parent class `Action` in an inconsistent manner [bad-override] +ERROR src/prefect/events/actions.py:184:5-9: Class member `PauseWorkPool.type` overrides parent class `WorkPoolAction` in an inconsistent manner [bad-override] +ERROR src/prefect/events/actions.py:190:5-9: Class member `ResumeWorkPool.type` overrides parent class `WorkPoolAction` in an inconsistent manner [bad-override] +ERROR src/prefect/events/actions.py:226:5-9: Class member `PauseWorkQueue.type` overrides parent class `WorkQueueAction` in an inconsistent manner [bad-override] +ERROR src/prefect/events/actions.py:232:5-9: Class member `ResumeWorkQueue.type` overrides parent class `WorkQueueAction` in an inconsistent manner [bad-override] +ERROR src/prefect/events/actions.py:268:5-9: Class member `PauseAutomation.type` overrides parent class `AutomationAction` in an inconsistent manner [bad-override] +ERROR src/prefect/events/actions.py:274:5-9: Class member `ResumeAutomation.type` overrides parent class `AutomationAction` in an inconsistent manner [bad-override] +ERROR src/prefect/events/actions.py:280:5-9: Class member `DeclareIncident.type` overrides parent class `Action` in an inconsistent manner [bad-override] +ERROR src/prefect/events/cli/automations.py:173:52-54: Missing argument `self` in function `pydantic.main.BaseModel.model_dump_json` [missing-argument] +ERROR src/prefect/events/cli/automations.py:175:23-33: `automation` may be uninitialized [unbound-name] +ERROR src/prefect/events/cli/automations.py:176:42-43: Argument `Automation` is not assignable to parameter `obj` with type `type[BaseModel]` in function `no_really_json` [bad-argument-type] +ERROR src/prefect/events/cli/automations.py:176:54-64: `automation` may be uninitialized [unbound-name] +ERROR src/prefect/events/cli/automations.py:177:25-35: `automation` may be uninitialized [unbound-name] +ERROR src/prefect/events/cli/automations.py:178:41-51: `automation` may be uninitialized [unbound-name] +ERROR src/prefect/events/cli/automations.py:178:41-51: Argument `Automation` is not assignable to parameter `obj` with type `type[BaseModel]` in function `no_really_json` [bad-argument-type] +ERROR src/prefect/events/cli/automations.py:181:43-53: `automation` may be uninitialized [unbound-name] +ERROR src/prefect/events/cli/automations.py:184:30-40: `automation` may be uninitialized [unbound-name] +ERROR src/prefect/events/cli/automations.py:187:34-44: `automation` may be uninitialized [unbound-name] +ERROR src/prefect/events/cli/automations.py:241:44-54: `automation` may be uninitialized [unbound-name] +ERROR src/prefect/events/cli/automations.py:241:44-57: Object of class `NoneType` has no attribute `id` [missing-attribute] +ERROR src/prefect/events/cli/automations.py:242:65-75: `automation` may be uninitialized [unbound-name] +ERROR src/prefect/events/cli/automations.py:242:65-78: Object of class `NoneType` has no attribute `id` [missing-attribute] +ERROR src/prefect/events/cli/automations.py:296:43-53: `automation` may be uninitialized [unbound-name] +ERROR src/prefect/events/cli/automations.py:296:43-56: Object of class `NoneType` has no attribute `id` [missing-attribute] +ERROR src/prefect/events/cli/automations.py:297:64-74: `automation` may be uninitialized [unbound-name] +ERROR src/prefect/events/cli/automations.py:297:64-77: Object of class `NoneType` has no attribute `id` [missing-attribute] +ERROR src/prefect/events/cli/automations.py:359:44-46: Argument `str` is not assignable to parameter `automation_id` with type `UUID` in function `prefect.client.orchestration._automations.client.AutomationAsyncClient.delete_automation` [bad-argument-type] +ERROR src/prefect/events/cli/automations.py:429:33-42: Argument `str | None` is not assignable to parameter `__obj` with type `bytearray | bytes | memoryview[int] | str` in function `orjson.loads` [bad-argument-type] +ERROR src/prefect/events/cli/automations.py:434:19-23: `data` may be uninitialized [unbound-name] +ERROR src/prefect/events/cli/automations.py:434:52-56: `data` may be uninitialized [unbound-name] +ERROR src/prefect/events/cli/automations.py:435:28-32: `data` may be uninitialized [unbound-name] +ERROR src/prefect/events/cli/automations.py:436:21-25: `data` may be uninitialized [unbound-name] +ERROR src/prefect/events/cli/automations.py:437:28-32: `data` may be uninitialized [unbound-name] +ERROR src/prefect/events/cli/automations.py:439:29-33: `data` may be uninitialized [unbound-name] +ERROR src/prefect/events/clients.py:36:5-28: Could not import `PREFECT_API_AUTH_STRING` from `prefect.settings` [missing-module-attribute] +ERROR src/prefect/events/clients.py:37:5-20: Could not import `PREFECT_API_KEY` from `prefect.settings` [missing-module-attribute] +ERROR src/prefect/events/clients.py:38:5-20: Could not import `PREFECT_API_URL` from `prefect.settings` [missing-module-attribute] +ERROR src/prefect/events/clients.py:39:5-26: Could not import `PREFECT_CLOUD_API_URL` from `prefect.settings` [missing-module-attribute] +ERROR src/prefect/events/clients.py:40:5-23: Could not import `PREFECT_DEBUG_MODE` from `prefect.settings` [missing-module-attribute] +ERROR src/prefect/events/clients.py:41:5-40: Could not import `PREFECT_SERVER_ALLOW_EPHEMERAL_MODE` from `prefect.settings` [missing-module-attribute] +ERROR src/prefect/events/filters.py:75:23-81:6: `datetime` is not assignable to `DateTime` [bad-assignment] +ERROR src/prefect/events/filters.py:82:23-85:6: `datetime` is not assignable to `DateTime` [bad-assignment] +ERROR src/prefect/events/related.py:100:31-51: Argument `BoundMethod[PrefectClient, (self: PrefectClient, flow_run_id: UUID) -> Coroutine[Unknown, Unknown, FlowRun]]` is not assignable to parameter `client_method` with type `(UUID | str) -> Awaitable[ObjectBaseModel | None]` in function `_get_and_cache_related_object` [bad-argument-type] +ERROR src/prefect/events/related.py:123:35-51: Argument `BoundMethod[PrefectClient, (self: PrefectClient, flow_id: UUID) -> Coroutine[Unknown, Unknown, Flow]]` is not assignable to parameter `client_method` with type `(UUID | str) -> Awaitable[ObjectBaseModel | None]` in function `_get_and_cache_related_object` [bad-argument-type] +ERROR src/prefect/events/related.py:142:39-61: Argument `BoundMethod[PrefectClient, (self: PrefectClient, id: UUID) -> Coroutine[Unknown, Unknown, WorkQueue]]` is not assignable to parameter `client_method` with type `(UUID | str) -> Awaitable[ObjectBaseModel | None]` in function `_get_and_cache_related_object` [bad-argument-type] +ERROR src/prefect/events/related.py:153:39-60: Argument `BoundMethod[PrefectClient, (self: PrefectClient, work_pool_name: str) -> Coroutine[Unknown, Unknown, WorkPool]]` is not assignable to parameter `client_method` with type `(UUID | str) -> Awaitable[ObjectBaseModel | None]` in function `_get_and_cache_related_object` [bad-argument-type] +ERROR src/prefect/events/related.py:212:24-67: Cannot set item in `dict[str, tuple[dict[str, ObjectBaseModel | str | None], DateTime]]` [unsupported-operation] +ERROR src/prefect/events/schemas/automations.py:124:5-9: Class member `EventTrigger.type` overrides parent class `ResourceTrigger` in an inconsistent manner [bad-override] +ERROR src/prefect/events/schemas/automations.py:299:5-9: Class member `MetricTrigger.type` overrides parent class `ResourceTrigger` in an inconsistent manner [bad-override] +ERROR src/prefect/events/schemas/automations.py:329:5-9: Class member `CompositeTrigger.type` overrides parent class `Trigger` in an inconsistent manner [bad-override] +ERROR src/prefect/events/schemas/automations.py:345:5-9: Class member `CompoundTrigger.type` overrides parent class `CompositeTrigger` in an inconsistent manner [bad-override] +ERROR src/prefect/events/schemas/automations.py:382:5-9: Class member `SequenceTrigger.type` overrides parent class `CompositeTrigger` in an inconsistent manner [bad-override] +ERROR src/prefect/events/schemas/events.py:32:5-47: Could not import `PREFECT_EVENTS_MAXIMUM_LABELS_PER_RESOURCE` from `prefect.settings` [missing-module-attribute] +ERROR src/prefect/events/schemas/events.py:104:34-74: Could not import `PREFECT_EVENTS_MAXIMUM_RELATED_RESOURCES` from `prefect.settings` [missing-module-attribute] +ERROR src/prefect/events/schemas/events.py:119:50-122:6: `datetime` is not assignable to `DateTime` [bad-assignment] +ERROR src/prefect/events/worker.py:10:5-20: Could not import `PREFECT_API_KEY` from `prefect.settings` [missing-module-attribute] +ERROR src/prefect/events/worker.py:11:5-20: Could not import `PREFECT_API_URL` from `prefect.settings` [missing-module-attribute] +ERROR src/prefect/events/worker.py:12:5-26: Could not import `PREFECT_CLOUD_API_URL` from `prefect.settings` [missing-module-attribute] +ERROR src/prefect/events/worker.py:74:9-22: Class member `EventsWorker._prepare_item` overrides parent class `QueueService` in an inconsistent manner [bad-param-name-override] +ERROR src/prefect/events/worker.py:78:15-22: Class member `EventsWorker._handle` overrides parent class `QueueService` in an inconsistent manner [bad-param-name-override] +ERROR src/prefect/events/worker.py:100:9-17: Class member `EventsWorker.instance` overrides parent class `QueueService` in an inconsistent manner [bad-override] + WARN src/prefect/input/actions.py:46:34-53: `pydantic.main.BaseModel.json` is deprecated [deprecated] +ERROR src/prefect/input/run_input.py:252:30-46: No matching overload found for function `pydantic._internal._utils.deprecated_instance_property.__get__` called with arguments: (None, type[RunInput]) [no-matching-overload] +ERROR src/prefect/input/run_input.py:354:38-44: Argument `dict[Literal['description', 'response', 'schema'], str]` is not assignable to parameter `keyset` with type `dict[str, str]` in function `BaseRunInput.load` [bad-argument-type] +ERROR src/prefect/input/run_input.py:626:51-628:10: `type[AutomaticRunInput[Any]] | type[BaseModel]` is not assignable to `type[AutomaticRunInput[Any]]` [bad-assignment] +ERROR src/prefect/input/run_input.py:626:79-628:10: `BaseModel` is not assignable to upper bound `RunInput` of type variable `R` [bad-specialization] +ERROR src/prefect/server/models/artifacts.py:107:34-43: Argument `datetime` is not assignable to parameter `now` with type `DateTime | None` in function `_insert_into_artifact_collection` [bad-argument-type] +ERROR src/prefect/server/models/artifacts.py:112:13-22: Argument `datetime` is not assignable to parameter `now` with type `DateTime | None` in function `_insert_into_artifact` [bad-argument-type] +ERROR src/prefect/server/models/artifacts.py:449:12-36: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/artifacts.py:449:39-65: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/artifacts.py:534:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/block_documents.py:473:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/block_documents.py:664:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/block_schemas.py:264:13-41: Object of class `dict` has no attribute `replace` [missing-attribute] +ERROR src/prefect/server/models/block_schemas.py:268:30-54: Object of class `dict` has no attribute `replace` [missing-attribute] +ERROR src/prefect/server/models/block_schemas.py:303:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/block_types.py:200:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/block_types.py:221:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/concurrency_limits.py:153:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/concurrency_limits.py:165:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/concurrency_limits_v2.py:171:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/concurrency_limits_v2.py:192:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/concurrency_limits_v2.py:236:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/concurrency_limits_v2.py:284:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/concurrency_limits_v2.py:306:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/csrf_token.py:105:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/deployments.py:35:5-44: Could not import `PREFECT_API_SERVICES_SCHEDULER_MAX_RUNS` from `prefect.settings` [missing-module-attribute] +ERROR src/prefect/server/models/deployments.py:36:5-54: Could not import `PREFECT_API_SERVICES_SCHEDULER_MAX_SCHEDULED_TIME` from `prefect.settings` [missing-module-attribute] +ERROR src/prefect/server/models/deployments.py:37:5-44: Could not import `PREFECT_API_SERVICES_SCHEDULER_MIN_RUNS` from `prefect.settings` [missing-module-attribute] +ERROR src/prefect/server/models/deployments.py:38:5-54: Could not import `PREFECT_API_SERVICES_SCHEDULER_MIN_SCHEDULED_TIME` from `prefect.settings` [missing-module-attribute] +ERROR src/prefect/server/models/deployments.py:108:74-84: Argument `Deployment | DeploymentCreate` is not assignable to parameter `deployment` with type `Deployment` in function `with_system_labels_for_deployment` [bad-argument-type] +ERROR src/prefect/server/models/deployments.py:324:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/deployments.py:593:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/deployments.py:1041:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/deployments.py:1066:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/deployments.py:1093:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/deployments.py:1139:20-47: Cannot use `PrefectServerEventsClient` as a context manager [bad-context-manager] +ERROR src/prefect/server/models/deployments.py:1146:34-45: Argument `datetime` is not assignable to parameter `occurred` with type `DateTime` in function `prefect.server.models.events.deployment_status_event` [bad-argument-type] +ERROR src/prefect/server/models/deployments.py:1192:24-51: Cannot use `PrefectServerEventsClient` as a context manager [bad-context-manager] +ERROR src/prefect/server/models/deployments.py:1199:38-48: Argument `datetime` is not assignable to parameter `occurred` with type `DateTime` in function `prefect.server.models.events.deployment_status_event` [bad-argument-type] +ERROR src/prefect/server/models/events.py:23:30-75: Could not import `PREFECT_API_EVENTS_RELATED_RESOURCE_CACHE_TTL` from `prefect.settings` [missing-module-attribute] +ERROR src/prefect/server/models/flow_run_input.py:91:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/flow_run_states.py:79:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/flow_runs.py:47:5-45: Could not import `PREFECT_API_MAX_FLOW_RUN_GRAPH_ARTIFACTS` from `prefect.settings` [missing-module-attribute] +ERROR src/prefect/server/models/flow_runs.py:48:5-41: Could not import `PREFECT_API_MAX_FLOW_RUN_GRAPH_NODES` from `prefect.settings` [missing-module-attribute] +ERROR src/prefect/server/models/flow_runs.py:174:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/flow_runs.py:267:50-80: `flow_or_task_run_exists_clause` may be uninitialized [unbound-name] +ERROR src/prefect/server/models/flow_runs.py:276:29-59: `flow_or_task_run_exists_clause` may be uninitialized [unbound-name] +ERROR src/prefect/server/models/flow_runs.py:322:41-49: Argument `str` is not assignable to parameter `*attrs` with type `Literal['*'] | QueryableAttribute[Any]` in function `sqlalchemy.orm.strategy_options.load_only` [bad-argument-type] +ERROR src/prefect/server/models/flow_runs.py:504:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/flow_runs.py:582:15-46: Object of class `OrchestrationContext` has no attribute `validate_proposed_state` [missing-attribute] +ERROR src/prefect/server/models/flow_runs.py:611:15-20: Argument `DateTime | datetime` is not assignable to parameter `since` with type `DateTime` in function `prefect.server.database.query_components.BaseQueryComponents.flow_run_graph_v2` [bad-argument-type] +ERROR src/prefect/server/models/flow_runs.py:685:19-34: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/flows.py:83:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/flows.py:290:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/logs.py:113:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/saved_searches.py:146:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/task_run_states.py:74:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/task_runs.py:176:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/task_runs.py:462:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/task_runs.py:535:15-46: Object of class `OrchestrationContext` has no attribute `validate_proposed_state` [missing-attribute] +ERROR src/prefect/server/models/variables.py:123:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/variables.py:140:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/variables.py:154:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/variables.py:168:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/work_queues.py:88:35-75: Argument `uuid.UUID | None` is not assignable to parameter `work_queue_id` with type `uuid.UUID | prefect.server.utilities.database.UUID` in function `prefect.server.models.workers.read_work_queue` [bad-argument-type] +ERROR src/prefect/server/models/work_queues.py:282:15-30: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/work_queues.py:311:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/work_queues.py:342:30-46: Argument `datetime | None` is not assignable to parameter `scheduled_before` with type `DateTime | None` in function `prefect.server.database.query_components.BaseQueryComponents.get_scheduled_flow_runs_from_work_queues` [bad-argument-type] +ERROR src/prefect/server/models/work_queues.py:463:52-81: Argument `uuid.UUID | None` is not assignable to parameter `work_queue_id` with type `uuid.UUID | prefect.server.utilities.database.UUID` in function `read_work_queue` [bad-argument-type] +ERROR src/prefect/server/models/work_queues.py:571:26-36: Argument `datetime` is not assignable to parameter `occurred` with type `DateTime` in function `prefect.server.models.events.work_queue_status_event` [bad-argument-type] +ERROR src/prefect/server/models/work_queues.py:576:16-43: Cannot use `PrefectServerEventsClient` as a context manager [bad-context-manager] +ERROR src/prefect/server/models/work_queues.py:609:26-36: Argument `datetime` is not assignable to parameter `occurred` with type `DateTime` in function `prefect.server.models.events.work_queue_status_event` [bad-argument-type] +ERROR src/prefect/server/models/work_queues.py:614:16-43: Cannot use `PrefectServerEventsClient` as a context manager [bad-context-manager] +ERROR src/prefect/server/models/work_queues.py:628:22-32: Argument `datetime` is not assignable to parameter `occurred` with type `DateTime` in function `prefect.server.models.events.work_queue_status_event` [bad-argument-type] +ERROR src/prefect/server/models/work_queues.py:631:16-43: Cannot use `PrefectServerEventsClient` as a context manager [bad-context-manager] +ERROR src/prefect/server/models/workers.py:253:15-30: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/workers.py:263:17-25: Unexpected keyword argument `occurred` [unexpected-keyword] +ERROR src/prefect/server/models/workers.py:264:17-37: Unexpected keyword argument `pre_update_work_pool` [unexpected-keyword] +ERROR src/prefect/server/models/workers.py:265:17-26: Unexpected keyword argument `work_pool` [unexpected-keyword] +ERROR src/prefect/server/models/workers.py:289:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/workers.py:328:26-42: Argument `datetime | None` is not assignable to parameter `scheduled_before` with type `DateTime | None` in function `prefect.server.database.query_components.BaseQueryComponents.get_scheduled_flow_runs_from_work_pool` [bad-argument-type] +ERROR src/prefect/server/models/workers.py:329:25-40: Argument `datetime | None` is not assignable to parameter `scheduled_after` with type `DateTime | None` in function `prefect.server.database.query_components.BaseQueryComponents.get_scheduled_flow_runs_from_work_pool` [bad-argument-type] +ERROR src/prefect/server/models/workers.py:626:15-30: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/workers.py:672:12-18: Module `sqlalchemy.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR src/prefect/server/models/workers.py:755:55-81: Cannot set item in `dict[str, WorkerStatus | datetime]` [unsupported-operation] +ERROR src/prefect/server/models/workers.py:770:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/workers.py:799:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute] +ERROR src/prefect/server/models/workers.py:811:16-43: Cannot use `PrefectServerEventsClient` as a context manager [bad-context-manager] + INFO Checking project configured at `/pyrefly.toml` + INFO 159 errors (12 suppressed) diff --git a/scripts/ty_benchmark/snapshots/prefect_Pyright.txt b/scripts/ty_benchmark/snapshots/prefect_Pyright.txt new file mode 100644 index 0000000000..e2a5bdaff0 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/prefect_Pyright.txt @@ -0,0 +1,527 @@ +/src/prefect/events/actions.py + /src/prefect/events/actions.py:27:5 - error: "type" overrides symbol of same name in class "Action" +   Variable is mutable so its type is invariant +     Override type "Literal['do-nothing']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/actions.py:63:5 - error: "type" overrides symbol of same name in class "Action" +   Variable is mutable so its type is invariant +     Override type "Literal['run-deployment']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/actions.py:91:5 - error: "type" overrides symbol of same name in class "Action" +   Variable is mutable so its type is invariant +     Override type "Literal['pause-deployment']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/actions.py:97:5 - error: "type" overrides symbol of same name in class "Action" +   Variable is mutable so its type is invariant +     Override type "Literal['resume-deployment']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/actions.py:103:5 - error: "type" overrides symbol of same name in class "Action" +   Variable is mutable so its type is invariant +     Override type "Literal['change-flow-run-state']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/actions.py:122:5 - error: "type" overrides symbol of same name in class "Action" +   Variable is mutable so its type is invariant +     Override type "Literal['cancel-flow-run']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/actions.py:128:5 - error: "type" overrides symbol of same name in class "Action" +   Variable is mutable so its type is invariant +     Override type "Literal['resume-flow-run']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/actions.py:134:5 - error: "type" overrides symbol of same name in class "Action" +   Variable is mutable so its type is invariant +     Override type "Literal['suspend-flow-run']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/actions.py:140:5 - error: "type" overrides symbol of same name in class "Action" +   Variable is mutable so its type is invariant +     Override type "Literal['call-webhook']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/actions.py:153:5 - error: "type" overrides symbol of same name in class "Action" +   Variable is mutable so its type is invariant +     Override type "Literal['send-notification']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/actions.py:184:5 - error: "type" overrides symbol of same name in class "Action" +   Variable is mutable so its type is invariant +     Override type "Literal['pause-work-pool']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/actions.py:190:5 - error: "type" overrides symbol of same name in class "Action" +   Variable is mutable so its type is invariant +     Override type "Literal['resume-work-pool']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/actions.py:226:5 - error: "type" overrides symbol of same name in class "Action" +   Variable is mutable so its type is invariant +     Override type "Literal['pause-work-queue']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/actions.py:232:5 - error: "type" overrides symbol of same name in class "Action" +   Variable is mutable so its type is invariant +     Override type "Literal['resume-work-queue']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/actions.py:268:5 - error: "type" overrides symbol of same name in class "Action" +   Variable is mutable so its type is invariant +     Override type "Literal['pause-automation']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/actions.py:274:5 - error: "type" overrides symbol of same name in class "Action" +   Variable is mutable so its type is invariant +     Override type "Literal['resume-automation']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/actions.py:280:5 - error: "type" overrides symbol of same name in class "Action" +   Variable is mutable so its type is invariant +     Override type "Literal['declare-incident']" is not the same as base type "str" (reportIncompatibleVariableOverride) +/src/prefect/events/cli/automations.py + /src/prefect/events/cli/automations.py:173:33 - error: Argument missing for parameter "self" (reportCallIssue) + /src/prefect/events/cli/automations.py:175:23 - error: "automation" is possibly unbound (reportPossiblyUnboundVariable) + /src/prefect/events/cli/automations.py:176:42 - error: Argument of type "Automation" cannot be assigned to parameter "obj" of type "type[BaseModel]" in function "no_really_json" +   Type "Automation" is not assignable to type "type[BaseModel]" (reportArgumentType) + /src/prefect/events/cli/automations.py:177:25 - error: "automation" is possibly unbound (reportPossiblyUnboundVariable) + /src/prefect/events/cli/automations.py:178:41 - error: Argument of type "Automation" cannot be assigned to parameter "obj" of type "type[BaseModel]" in function "no_really_json" +   Type "Automation" is not assignable to type "type[BaseModel]" (reportArgumentType) + /src/prefect/events/cli/automations.py:181:43 - error: "automation" is possibly unbound (reportPossiblyUnboundVariable) + /src/prefect/events/cli/automations.py:184:30 - error: "automation" is possibly unbound (reportPossiblyUnboundVariable) + /src/prefect/events/cli/automations.py:187:34 - error: "automation" is possibly unbound (reportPossiblyUnboundVariable) + /src/prefect/events/cli/automations.py:241:55 - error: "id" is not a known attribute of "None" (reportOptionalMemberAccess) + /src/prefect/events/cli/automations.py:242:76 - error: "id" is not a known attribute of "None" (reportOptionalMemberAccess) + /src/prefect/events/cli/automations.py:296:54 - error: "id" is not a known attribute of "None" (reportOptionalMemberAccess) + /src/prefect/events/cli/automations.py:297:75 - error: "id" is not a known attribute of "None" (reportOptionalMemberAccess) + /src/prefect/events/cli/automations.py:359:44 - error: Argument of type "str" cannot be assigned to parameter "automation_id" of type "UUID" in function "delete_automation" +   "str" is not assignable to "UUID" (reportArgumentType) + /src/prefect/events/cli/automations.py:429:33 - error: Argument of type "str | None" cannot be assigned to parameter "__obj" of type "bytes | bytearray | memoryview[int] | str" in function "loads" +   Type "str | None" is not assignable to type "bytes | bytearray | memoryview[int] | str" +     Type "None" is not assignable to type "bytes | bytearray | memoryview[int] | str" +       "None" is not assignable to "bytes" +       "None" is not assignable to "bytearray" +       "None" is not assignable to "memoryview[int]" +       "None" is not assignable to "str" (reportArgumentType) +/src/prefect/events/clients.py + /src/prefect/events/clients.py:600:19 - error: Argument of type "datetime" cannot be assigned to parameter "since" of type "DateTime" in function "__init__" +   "datetime" is not assignable to "DateTime" (reportArgumentType) + /src/prefect/events/clients.py:601:19 - error: Argument of type "datetime" cannot be assigned to parameter "until" of type "DateTime" in function "__init__" +   "datetime" is not assignable to "DateTime" (reportArgumentType) +/src/prefect/events/filters.py + /src/prefect/events/filters.py:75:23 - error: Type "datetime" is not assignable to declared type "DateTime" +   "datetime" is not assignable to "DateTime" (reportAssignmentType) + /src/prefect/events/filters.py:82:23 - error: Type "datetime" is not assignable to declared type "DateTime" +   "datetime" is not assignable to "DateTime" (reportAssignmentType) +/src/prefect/events/related.py + /src/prefect/events/related.py:100:31 - error: Argument of type "(flow_run_id: UUID) -> CoroutineType[Any, Any, FlowRun]" cannot be assigned to parameter "client_method" of type "(UUID | str) -> Awaitable[ObjectBaseModel | None]" in function "_get_and_cache_related_object" +   Type "(flow_run_id: UUID) -> CoroutineType[Any, Any, FlowRun]" is not assignable to type "(UUID | str) -> Awaitable[ObjectBaseModel | None]" +     Parameter 1: type "UUID | str" is incompatible with type "UUID" +       Type "UUID | str" is not assignable to type "UUID" +         "str" is not assignable to "UUID" (reportArgumentType) + /src/prefect/events/related.py:123:35 - error: Argument of type "(flow_id: UUID) -> CoroutineType[Any, Any, Flow]" cannot be assigned to parameter "client_method" of type "(UUID | str) -> Awaitable[ObjectBaseModel | None]" in function "_get_and_cache_related_object" +   Type "(flow_id: UUID) -> CoroutineType[Any, Any, Flow]" is not assignable to type "(UUID | str) -> Awaitable[ObjectBaseModel | None]" +     Parameter 1: type "UUID | str" is incompatible with type "UUID" +       Type "UUID | str" is not assignable to type "UUID" +         "str" is not assignable to "UUID" (reportArgumentType) + /src/prefect/events/related.py:142:39 - error: Argument of type "(id: UUID) -> CoroutineType[Any, Any, WorkQueue]" cannot be assigned to parameter "client_method" of type "(UUID | str) -> Awaitable[ObjectBaseModel | None]" in function "_get_and_cache_related_object" +   Type "(id: UUID) -> CoroutineType[Any, Any, WorkQueue]" is not assignable to type "(UUID | str) -> Awaitable[ObjectBaseModel | None]" +     Parameter 1: type "UUID | str" is incompatible with type "UUID" +       Type "UUID | str" is not assignable to type "UUID" +         "str" is not assignable to "UUID" (reportArgumentType) + /src/prefect/events/related.py:153:39 - error: Argument of type "(work_pool_name: str) -> CoroutineType[Any, Any, WorkPool]" cannot be assigned to parameter "client_method" of type "(UUID | str) -> Awaitable[ObjectBaseModel | None]" in function "_get_and_cache_related_object" +   Type "(work_pool_name: str) -> CoroutineType[Any, Any, WorkPool]" is not assignable to type "(UUID | str) -> Awaitable[ObjectBaseModel | None]" +     Parameter 1: type "UUID | str" is incompatible with type "str" +       Type "UUID | str" is not assignable to type "str" +         "UUID" is not assignable to "str" (reportArgumentType) + /src/prefect/events/related.py:182:30 - error: Cannot access attribute "tags" for class "str" +   Attribute "tags" is unknown (reportAttributeAccessIssue) + /src/prefect/events/related.py:182:30 - error: Cannot access attribute "tags" for class "ObjectBaseModel" +   Attribute "tags" is unknown (reportAttributeAccessIssue) + /src/prefect/events/related.py:212:5 - error: Argument of type "tuple[ResourceCacheEntry | dict[str, Unknown], datetime]" cannot be assigned to parameter "value" of type "Tuple[ResourceCacheEntry, DateTime]" in function "__setitem__" +   "tuple[ResourceCacheEntry | dict[str, Unknown], datetime]" is not assignable to "Tuple[ResourceCacheEntry, DateTime]" +     Tuple entry 2 is incorrect type +       "datetime" is not assignable to "DateTime" (reportArgumentType) +/src/prefect/events/schemas/automations.py + /src/prefect/events/schemas/automations.py:86:28 - error: Cannot access attribute "trigger_type" for class "Trigger*" +   Attribute "trigger_type" is unknown (reportAttributeAccessIssue) + /src/prefect/events/schemas/automations.py:124:5 - error: "type" overrides symbol of same name in class "ResourceTrigger" +   Variable is mutable so its type is invariant +     Override type "Literal['event']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/schemas/automations.py:299:5 - error: "type" overrides symbol of same name in class "ResourceTrigger" +   Variable is mutable so its type is invariant +     Override type "Literal['metric']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/schemas/automations.py:329:5 - error: "type" overrides symbol of same name in class "Trigger" +   Variable is mutable so its type is invariant +     Override type "Literal['compound', 'sequence']" is not the same as base type "str" (reportIncompatibleVariableOverride) + /src/prefect/events/schemas/automations.py:345:5 - error: "type" overrides symbol of same name in class "CompositeTrigger" +   Variable is mutable so its type is invariant +     Override type "Literal['compound']" is not the same as base type "Literal['compound', 'sequence']" (reportIncompatibleVariableOverride) + /src/prefect/events/schemas/automations.py:382:5 - error: "type" overrides symbol of same name in class "CompositeTrigger" +   Variable is mutable so its type is invariant +     Override type "Literal['sequence']" is not the same as base type "Literal['compound', 'sequence']" (reportIncompatibleVariableOverride) +/src/prefect/events/schemas/events.py + /src/prefect/events/schemas/events.py:119:50 - error: Type "datetime" is not assignable to declared type "DateTime" +   "datetime" is not assignable to "DateTime" (reportAssignmentType) +/src/prefect/events/worker.py + /src/prefect/events/worker.py:64:6 - error: Argument of type "(self: Self@EventsWorker) -> CoroutineType[Any, Any, Unknown]" cannot be assigned to parameter "func" of type "(**_P@asynccontextmanager) -> AsyncIterator[_T_co@asynccontextmanager]" in function "asynccontextmanager" +   Type "(self: Self@EventsWorker) -> CoroutineType[Any, Any, Unknown]" is not assignable to type "(**_P@asynccontextmanager) -> AsyncIterator[_T_co@asynccontextmanager]" +     Function return type "CoroutineType[Any, Any, Unknown]" is incompatible with type "AsyncIterator[_T_co@asynccontextmanager]" +       "CoroutineType[Any, Any, Unknown]" is incompatible with protocol "AsyncIterator[_T_co@asynccontextmanager]" +         "__anext__" is not present +         "__aiter__" is not present (reportArgumentType) + /src/prefect/events/worker.py:74:9 - error: Method "_prepare_item" overrides class "QueueService" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "item", override parameter is named "event" (reportIncompatibleMethodOverride) + /src/prefect/events/worker.py:78:15 - error: Method "_handle" overrides class "QueueService" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "item", override parameter is named "event" (reportIncompatibleMethodOverride) + /src/prefect/events/worker.py:100:9 - error: Method "instance" overrides class "_QueueServiceBase" in an incompatible manner +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) +/src/prefect/input/run_input.py + /src/prefect/input/run_input.py:239:14 - error: Type of parameter "cls" must be a supertype of its class "type[BaseRunInput]" (reportGeneralTypeIssues) +/src/prefect/server/models/artifacts.py + /src/prefect/server/models/artifacts.py:107:34 - error: Argument of type "datetime" cannot be assigned to parameter "now" of type "DateTime | None" +   Type "datetime" is not assignable to type "DateTime | None" +     "datetime" is not assignable to "DateTime" +     "datetime" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/artifacts.py:112:13 - error: Argument of type "datetime" cannot be assigned to parameter "now" of type "DateTime | None" +   Type "datetime" is not assignable to type "DateTime | None" +     "datetime" is not assignable to "DateTime" +     "datetime" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/artifacts.py:449:28 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/artifacts.py:449:57 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/artifacts.py:534:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) +/src/prefect/server/models/block_documents.py + /src/prefect/server/models/block_documents.py:145:16 - error: Argument of type "dict[str, list[UUID]]" cannot be assigned to parameter "id" of type "BlockDocumentFilterId | None" in function "__init__" +   Type "dict[str, list[UUID]]" is not assignable to type "BlockDocumentFilterId | None" +     "dict[str, list[UUID]]" is not assignable to "BlockDocumentFilterId" +     "dict[str, list[UUID]]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/block_documents.py:256:18 - error: Argument of type "dict[str, list[str]]" cannot be assigned to parameter "name" of type "BlockDocumentFilterName | None" in function "__init__" +   Type "dict[str, list[str]]" is not assignable to type "BlockDocumentFilterName | None" +     "dict[str, list[str]]" is not assignable to "BlockDocumentFilterName" +     "dict[str, list[str]]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/block_documents.py:261:18 - error: Argument of type "dict[str, list[str]]" cannot be assigned to parameter "slug" of type "BlockTypeFilterSlug | None" in function "__init__" +   Type "dict[str, list[str]]" is not assignable to type "BlockTypeFilterSlug | None" +     "dict[str, list[str]]" is not assignable to "BlockTypeFilterSlug" +     "dict[str, list[str]]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/block_documents.py:427:50 - error: Argument of type "dict[str, list[UUID]]" cannot be assigned to parameter "id" of type "BlockSchemaFilterId | None" in function "__init__" +   Type "dict[str, list[UUID]]" is not assignable to type "BlockSchemaFilterId | None" +     "dict[str, list[UUID]]" is not assignable to "BlockSchemaFilterId" +     "dict[str, list[UUID]]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/block_documents.py:473:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/block_documents.py:664:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) +/src/prefect/server/models/block_schemas.py + /src/prefect/server/models/block_schemas.py:264:34 - error: Cannot access attribute "replace" for class "dict[str, Any]" +   Attribute "replace" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/block_schemas.py:268:47 - error: Cannot access attribute "replace" for class "dict[str, Any]" +   Attribute "replace" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/block_schemas.py:303:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) +/src/prefect/server/models/block_types.py + /src/prefect/server/models/block_types.py:200:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/block_types.py:221:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) +/src/prefect/server/models/concurrency_limits.py + /src/prefect/server/models/concurrency_limits.py:153:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/concurrency_limits.py:165:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) +/src/prefect/server/models/concurrency_limits_v2.py + /src/prefect/server/models/concurrency_limits_v2.py:171:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/concurrency_limits_v2.py:192:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/concurrency_limits_v2.py:236:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/concurrency_limits_v2.py:284:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/concurrency_limits_v2.py:306:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) +/src/prefect/server/models/csrf_token.py + /src/prefect/server/models/csrf_token.py:105:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) +/src/prefect/server/models/deployments.py + /src/prefect/server/models/deployments.py:108:74 - error: Argument of type "Deployment | DeploymentCreate" cannot be assigned to parameter "deployment" of type "Deployment" in function "with_system_labels_for_deployment" +   Type "Deployment | DeploymentCreate" is not assignable to type "Deployment" +     "DeploymentCreate" is not assignable to "Deployment" (reportArgumentType) + /src/prefect/server/models/deployments.py:324:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/deployments.py:593:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/deployments.py:1041:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/deployments.py:1066:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/deployments.py:1093:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/deployments.py:1146:34 - error: Argument of type "datetime" cannot be assigned to parameter "occurred" of type "DateTime" in function "deployment_status_event" +   "datetime" is not assignable to "DateTime" (reportArgumentType) + /src/prefect/server/models/deployments.py:1199:38 - error: Argument of type "datetime" cannot be assigned to parameter "occurred" of type "DateTime" in function "deployment_status_event" +   "datetime" is not assignable to "DateTime" (reportArgumentType) +/src/prefect/server/models/events.py + /src/prefect/server/models/events.py:52:18 - error: Argument of type "datetime" cannot be assigned to parameter "occurred" of type "DateTime" in function "__init__" +   "datetime" is not assignable to "DateTime" (reportArgumentType) + /src/prefect/server/models/events.py:54:18 - error: Argument of type "dict[str, str | None]" cannot be assigned to parameter "resource" of type "Resource" in function "__init__" (reportArgumentType) + /src/prefect/server/models/events.py:69:17 - error: Argument of type "RelatedResourceList" cannot be assigned to parameter "related" of type "list[RelatedResource]" in function "__init__" +   "List[Dict[str, str]]" is not assignable to "list[RelatedResource]" +     Type parameter "_T@list" is invariant, but "Dict[str, str]" is not the same as "RelatedResource" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /src/prefect/server/models/events.py:82:12 - error: Argument of type "UUID | None" cannot be assigned to parameter "id" of type "UUID" in function "__init__" +   Type "UUID | None" is not assignable to type "UUID" +     "None" is not assignable to "UUID" (reportArgumentType) + /src/prefect/server/models/events.py:356:18 - error: Argument of type "dict[str, str]" cannot be assigned to parameter "resource" of type "Resource" in function "__init__" (reportArgumentType) + /src/prefect/server/models/events.py:391:18 - error: Argument of type "dict[str, str]" cannot be assigned to parameter "resource" of type "Resource" in function "__init__" (reportArgumentType) + /src/prefect/server/models/events.py:396:17 - error: Argument of type "List[Dict[str, Any]]" cannot be assigned to parameter "related" of type "list[RelatedResource]" in function "__init__" +   "List[Dict[str, Any]]" is not assignable to "list[RelatedResource]" +     Type parameter "_T@list" is invariant, but "Dict[str, Any]" is not the same as "RelatedResource" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /src/prefect/server/models/events.py:413:18 - error: Argument of type "dict[str, str]" cannot be assigned to parameter "resource" of type "Resource" in function "__init__" (reportArgumentType) +/src/prefect/server/models/flow_run_input.py + /src/prefect/server/models/flow_run_input.py:91:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) +/src/prefect/server/models/flow_run_states.py + /src/prefect/server/models/flow_run_states.py:79:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) +/src/prefect/server/models/flow_runs.py + /src/prefect/server/models/flow_runs.py:174:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/flow_runs.py:251:26 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /src/prefect/server/models/flow_runs.py:252:26 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /src/prefect/server/models/flow_runs.py:267:50 - error: "flow_or_task_run_exists_clause" is possibly unbound (reportPossiblyUnboundVariable) + /src/prefect/server/models/flow_runs.py:276:29 - error: "flow_or_task_run_exists_clause" is possibly unbound (reportPossiblyUnboundVariable) + /src/prefect/server/models/flow_runs.py:322:42 - error: Argument of type "str" cannot be assigned to parameter "attrs" of type "_AttrType" in function "load_only" +   Type "str" is not assignable to type "_AttrType" +     "str" is not assignable to "QueryableAttribute[Any]" +     "str" is not assignable to type "Literal['*']" (reportArgumentType) + /src/prefect/server/models/flow_runs.py:419:39 - error: Argument of type "list[_TaskInput]" cannot be assigned to parameter "upstream_dependencies" of type "List[TaskRunResult]" in function "__init__" +   "list[_TaskInput]" is not assignable to "List[TaskRunResult]" +     Type parameter "_T@list" is invariant, but "_TaskInput" is not the same as "TaskRunResult" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /src/prefect/server/models/flow_runs.py:420:23 - error: Argument of type "TaskRunState | None" cannot be assigned to parameter "state" of type "State | None" in function "__init__" +   Type "TaskRunState | None" is not assignable to type "State | None" +     Type "TaskRunState" is not assignable to type "State | None" +       "TaskRunState" is not assignable to "State" +       "TaskRunState" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/flow_runs.py:504:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/flow_runs.py:582:15 - error: Argument missing for parameter "db" (reportCallIssue) + /src/prefect/server/models/flow_runs.py:582:23 - error: Cannot access attribute "validate_proposed_state" for class "OrchestrationContext[FlowRun, FlowRunPolicy]" +   Attribute "validate_proposed_state" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/flow_runs.py:611:15 - error: Argument of type "DateTime | datetime" cannot be assigned to parameter "since" of type "DateTime" +   Type "DateTime | datetime" is not assignable to type "DateTime" +     "datetime" is not assignable to "DateTime" (reportArgumentType) + /src/prefect/server/models/flow_runs.py:685:26 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) +/src/prefect/server/models/flows.py + /src/prefect/server/models/flows.py:83:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/flows.py:290:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) +/src/prefect/server/models/logs.py + /src/prefect/server/models/logs.py:113:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) +/src/prefect/server/models/saved_searches.py + /src/prefect/server/models/saved_searches.py:146:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) +/src/prefect/server/models/task_run_states.py + /src/prefect/server/models/task_run_states.py:74:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) +/src/prefect/server/models/task_runs.py + /src/prefect/server/models/task_runs.py:176:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/task_runs.py:462:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/task_runs.py:535:15 - error: Argument missing for parameter "db" (reportCallIssue) + /src/prefect/server/models/task_runs.py:535:23 - error: Cannot access attribute "validate_proposed_state" for class "OrchestrationContext[TaskRun, TaskRunPolicy]" +   Attribute "validate_proposed_state" is unknown (reportAttributeAccessIssue) +/src/prefect/server/models/task_workers.py + /src/prefect/server/models/task_workers.py:71:23 - error: Argument of type "datetime" cannot be assigned to parameter "timestamp" of type "DateTime" in function "__init__" +   "datetime" is not assignable to "DateTime" (reportArgumentType) +/src/prefect/server/models/variables.py + /src/prefect/server/models/variables.py:123:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/variables.py:140:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/variables.py:154:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/variables.py:168:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) +/src/prefect/server/models/work_queues.py + /src/prefect/server/models/work_queues.py:88:35 - error: Argument of type "UUID | None" cannot be assigned to parameter "work_queue_id" of type "uuid.UUID | prefect.server.utilities.database.UUID" +   Type "UUID | None" is not assignable to type "uuid.UUID | prefect.server.utilities.database.UUID" +     Type "None" is not assignable to type "uuid.UUID | prefect.server.utilities.database.UUID" +       "None" is not assignable to "UUID" +       "None" is not assignable to "UUID" (reportArgumentType) + /src/prefect/server/models/work_queues.py:282:22 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/work_queues.py:311:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/work_queues.py:342:30 - error: Argument of type "datetime | None" cannot be assigned to parameter "scheduled_before" of type "DateTime | None" +   Type "datetime | None" is not assignable to type "DateTime | None" +     Type "datetime" is not assignable to type "DateTime | None" +       "datetime" is not assignable to "DateTime" +       "datetime" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:403:19 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "operator" of type "Operator" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "Operator" +     "dict[str, list[str] | None]" is not assignable to "Operator" (reportArgumentType) + /src/prefect/server/models/work_queues.py:403:19 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "id" of type "FlowRunFilterId | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterId | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterId | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterId" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:403:19 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "name" of type "FlowRunFilterName | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterName | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterName | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterName" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:403:19 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "tags" of type "FlowRunFilterTags | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterTags | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterTags | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterTags" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:403:19 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "deployment_id" of type "FlowRunFilterDeploymentId | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterDeploymentId | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterDeploymentId | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterDeploymentId" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:403:19 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "work_queue_name" of type "FlowRunFilterWorkQueueName | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterWorkQueueName | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterWorkQueueName | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterWorkQueueName" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:403:19 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "flow_version" of type "FlowRunFilterFlowVersion | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterFlowVersion | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterFlowVersion | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterFlowVersion" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:403:19 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "start_time" of type "FlowRunFilterStartTime | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterStartTime | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterStartTime | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterStartTime" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:403:19 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "end_time" of type "FlowRunFilterEndTime | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterEndTime | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterEndTime | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterEndTime" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:403:19 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "expected_start_time" of type "FlowRunFilterExpectedStartTime | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterExpectedStartTime | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterExpectedStartTime | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterExpectedStartTime" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:403:19 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "next_scheduled_start_time" of type "FlowRunFilterNextScheduledStartTime | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterNextScheduledStartTime | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterNextScheduledStartTime | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterNextScheduledStartTime" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:403:19 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "parent_flow_run_id" of type "FlowRunFilterParentFlowRunId | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterParentFlowRunId | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterParentFlowRunId | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterParentFlowRunId" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:403:19 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "parent_task_run_id" of type "FlowRunFilterParentTaskRunId | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterParentTaskRunId | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterParentTaskRunId | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterParentTaskRunId" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:403:19 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "idempotency_key" of type "FlowRunFilterIdempotencyKey | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterIdempotencyKey | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterIdempotencyKey | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterIdempotencyKey" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:404:23 - error: Argument of type "dict[str, dict[str, list[StateType]]]" cannot be assigned to parameter "state" of type "FlowRunFilterState | None" in function "__init__" +   Type "dict[str, dict[str, list[StateType]]]" is not assignable to type "FlowRunFilterState | None" +     "dict[str, dict[str, list[StateType]]]" is not assignable to "FlowRunFilterState" +     "dict[str, dict[str, list[StateType]]]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:421:15 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "operator" of type "Operator" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "Operator" +     "dict[str, list[str] | None]" is not assignable to "Operator" (reportArgumentType) + /src/prefect/server/models/work_queues.py:421:15 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "id" of type "FlowRunFilterId | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterId | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterId | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterId" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:421:15 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "name" of type "FlowRunFilterName | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterName | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterName | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterName" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:421:15 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "tags" of type "FlowRunFilterTags | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterTags | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterTags | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterTags" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:421:15 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "deployment_id" of type "FlowRunFilterDeploymentId | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterDeploymentId | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterDeploymentId | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterDeploymentId" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:421:15 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "work_queue_name" of type "FlowRunFilterWorkQueueName | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterWorkQueueName | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterWorkQueueName | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterWorkQueueName" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:421:15 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "flow_version" of type "FlowRunFilterFlowVersion | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterFlowVersion | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterFlowVersion | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterFlowVersion" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:421:15 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "start_time" of type "FlowRunFilterStartTime | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterStartTime | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterStartTime | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterStartTime" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:421:15 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "end_time" of type "FlowRunFilterEndTime | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterEndTime | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterEndTime | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterEndTime" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:421:15 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "expected_start_time" of type "FlowRunFilterExpectedStartTime | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterExpectedStartTime | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterExpectedStartTime | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterExpectedStartTime" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:421:15 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "parent_flow_run_id" of type "FlowRunFilterParentFlowRunId | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterParentFlowRunId | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterParentFlowRunId | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterParentFlowRunId" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:421:15 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "parent_task_run_id" of type "FlowRunFilterParentTaskRunId | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterParentTaskRunId | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterParentTaskRunId | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterParentTaskRunId" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:421:15 - error: Argument of type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" cannot be assigned to parameter "idempotency_key" of type "FlowRunFilterIdempotencyKey | None" in function "__init__" +   Type "dict[str, list[str] | None] | dict[str, list[UUID] | bool | None]" is not assignable to type "FlowRunFilterIdempotencyKey | None" +     Type "dict[str, list[str] | None]" is not assignable to type "FlowRunFilterIdempotencyKey | None" +       "dict[str, list[str] | None]" is not assignable to "FlowRunFilterIdempotencyKey" +       "dict[str, list[str] | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:422:19 - error: Argument of type "dict[str, dict[str, list[StateType]]]" cannot be assigned to parameter "state" of type "FlowRunFilterState | None" in function "__init__" +   Type "dict[str, dict[str, list[StateType]]]" is not assignable to type "FlowRunFilterState | None" +     "dict[str, dict[str, list[StateType]]]" is not assignable to "FlowRunFilterState" +     "dict[str, dict[str, list[StateType]]]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:423:39 - error: Argument of type "dict[str, datetime | None]" cannot be assigned to parameter "next_scheduled_start_time" of type "FlowRunFilterNextScheduledStartTime | None" in function "__init__" +   Type "dict[str, datetime | None]" is not assignable to type "FlowRunFilterNextScheduledStartTime | None" +     "dict[str, datetime | None]" is not assignable to "FlowRunFilterNextScheduledStartTime" +     "dict[str, datetime | None]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:452:28 - error: Arguments missing for parameters "concurrency_limit", "filter" (reportCallIssue) + /src/prefect/server/models/work_queues.py:459:32 - error: Arguments missing for parameters "concurrency_limit", "filter" (reportCallIssue) + /src/prefect/server/models/work_queues.py:463:52 - error: Argument of type "UUID | None" cannot be assigned to parameter "work_queue_id" of type "uuid.UUID | prefect.server.utilities.database.UUID" +   Type "UUID | None" is not assignable to type "uuid.UUID | prefect.server.utilities.database.UUID" +     Type "None" is not assignable to type "uuid.UUID | prefect.server.utilities.database.UUID" +       "None" is not assignable to "UUID" +       "None" is not assignable to "UUID" (reportArgumentType) + /src/prefect/server/models/work_queues.py:491:59 - error: Argument of type "dict[str, list[str]]" cannot be assigned to parameter "name" of type "FlowRunFilterStateName | None" in function "__init__" +   Type "dict[str, list[str]]" is not assignable to type "FlowRunFilterStateName | None" +     "dict[str, list[str]]" is not assignable to "FlowRunFilterStateName" +     "dict[str, list[str]]" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/work_queues.py:571:26 - error: Argument of type "datetime" cannot be assigned to parameter "occurred" of type "DateTime" in function "work_queue_status_event" +   "datetime" is not assignable to "DateTime" (reportArgumentType) + /src/prefect/server/models/work_queues.py:609:26 - error: Argument of type "datetime" cannot be assigned to parameter "occurred" of type "DateTime" in function "work_queue_status_event" +   "datetime" is not assignable to "DateTime" (reportArgumentType) + /src/prefect/server/models/work_queues.py:628:22 - error: Argument of type "datetime" cannot be assigned to parameter "occurred" of type "DateTime" in function "work_queue_status_event" +   "datetime" is not assignable to "DateTime" (reportArgumentType) +/src/prefect/server/models/workers.py + /src/prefect/server/models/workers.py:77:20 - error: Arguments missing for parameters "concurrency_limit", "filter", "priority" (reportCallIssue) + /src/prefect/server/models/workers.py:253:22 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/workers.py:289:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/workers.py:328:26 - error: Argument of type "datetime | None" cannot be assigned to parameter "scheduled_before" of type "DateTime | None" +   Type "datetime | None" is not assignable to type "DateTime | None" +     Type "datetime" is not assignable to type "DateTime | None" +       "datetime" is not assignable to "DateTime" +       "datetime" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/workers.py:329:25 - error: Argument of type "datetime | None" cannot be assigned to parameter "scheduled_after" of type "DateTime | None" +   Type "datetime | None" is not assignable to type "DateTime | None" +     Type "datetime" is not assignable to type "DateTime | None" +       "datetime" is not assignable to "DateTime" +       "datetime" is not assignable to "None" (reportArgumentType) + /src/prefect/server/models/workers.py:626:22 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/workers.py:672:15 - error: "exc" is not a known attribute of module "sqlalchemy" (reportAttributeAccessIssue) + /src/prefect/server/models/workers.py:755:9 - error: Argument of type "int" cannot be assigned to parameter "value" of type "datetime | WorkerStatus" in function "__setitem__" +   Type "int" is not assignable to type "datetime | WorkerStatus" +     "int" is not assignable to "datetime" +     "int" is not assignable to "WorkerStatus" (reportArgumentType) + /src/prefect/server/models/workers.py:770:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) + /src/prefect/server/models/workers.py:799:19 - error: Cannot access attribute "rowcount" for class "Result[Any]" +   Attribute "rowcount" is unknown (reportAttributeAccessIssue) +174 errors, 0 warnings, 0 informations diff --git a/scripts/ty_benchmark/snapshots/prefect_mypy.txt b/scripts/ty_benchmark/snapshots/prefect_mypy.txt new file mode 100644 index 0000000000..b6f113f862 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/prefect_mypy.txt @@ -0,0 +1,2 @@ +src/prefect/events/cli/automations.py:429: error: Argument 1 to "loads" has incompatible type "str | None"; expected "bytes | bytearray | memoryview[int] | str" [arg-type] +Found 1 error in 1 file (checked 58 source files) diff --git a/scripts/ty_benchmark/snapshots/prefect_ty.txt b/scripts/ty_benchmark/snapshots/prefect_ty.txt new file mode 100644 index 0000000000..9cba4fde77 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/prefect_ty.txt @@ -0,0 +1,131 @@ +src/prefect/concurrency/_leases.py:116:10: error[invalid-context-manager] Object of type `AsyncCancelScope` cannot be used with `with` because it does not correctly implement `__exit__` +src/prefect/events/cli/automations.py:173:33: error[missing-argument] No argument provided for required parameter `self` of function `model_dump_json` +src/prefect/events/cli/automations.py:176:42: error[invalid-argument-type] Argument to function `no_really_json` is incorrect: Expected `type[BaseModel]`, found `Automation` +src/prefect/events/cli/automations.py:178:41: error[invalid-argument-type] Argument to function `no_really_json` is incorrect: Expected `type[BaseModel]`, found `Automation` +src/prefect/events/cli/automations.py:241:44: warning[possibly-missing-attribute] Attribute `id` may be missing on object of type `Automation | None` +src/prefect/events/cli/automations.py:242:65: warning[possibly-missing-attribute] Attribute `id` may be missing on object of type `Automation | None` +src/prefect/events/cli/automations.py:296:43: warning[possibly-missing-attribute] Attribute `id` may be missing on object of type `Automation | None` +src/prefect/events/cli/automations.py:297:64: warning[possibly-missing-attribute] Attribute `id` may be missing on object of type `Automation | None` +src/prefect/events/cli/automations.py:359:44: error[invalid-argument-type] Argument to bound method `delete_automation` is incorrect: Expected `UUID`, found `str & ~AlwaysFalsy` +src/prefect/events/cli/automations.py:429:33: error[invalid-argument-type] Argument to function `loads` is incorrect: Expected `bytes | bytearray | memoryview[int] | str`, found `str | None` +src/prefect/events/clients.py:389:23: warning[possibly-missing-attribute] Attribute `send` may be missing on object of type `ClientConnection | None` +src/prefect/events/clients.py:600:13: error[invalid-argument-type] Argument is incorrect: Expected `DateTime`, found `datetime` +src/prefect/events/clients.py:601:13: error[invalid-argument-type] Argument is incorrect: Expected `DateTime`, found `datetime` +src/prefect/events/clients.py:642:50: warning[possibly-missing-attribute] Attribute `recv` may be missing on object of type `ClientConnection | None` +src/prefect/events/related.py:100:17: error[invalid-argument-type] Argument to function `_get_and_cache_related_object` is incorrect: Expected `(UUID | str, /) -> Awaitable[ObjectBaseModel | None]`, found `bound method PrefectClient.read_flow_run(flow_run_id: UUID) -> CoroutineType[Any, Any, FlowRun]` +src/prefect/events/related.py:123:21: error[invalid-argument-type] Argument to function `_get_and_cache_related_object` is incorrect: Expected `(UUID | str, /) -> Awaitable[ObjectBaseModel | None]`, found `bound method PrefectClient.read_flow(flow_id: UUID) -> CoroutineType[Any, Any, Flow]` +src/prefect/events/related.py:142:25: error[invalid-argument-type] Argument to function `_get_and_cache_related_object` is incorrect: Expected `(UUID | str, /) -> Awaitable[ObjectBaseModel | None]`, found `bound method PrefectClient.read_work_queue(id: UUID) -> CoroutineType[Any, Any, WorkQueue]` +src/prefect/events/related.py:153:25: error[invalid-argument-type] Argument to function `_get_and_cache_related_object` is incorrect: Expected `(UUID | str, /) -> Awaitable[ObjectBaseModel | None]`, found `bound method PrefectClient.read_work_pool(work_pool_name: str) -> CoroutineType[Any, Any, WorkPool]` +src/prefect/events/related.py:182:25: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Iterable[Unknown]`, found `object` +src/prefect/events/related.py:212:5: error[invalid-assignment] Invalid subscript assignment with key of type `str` and value of type `tuple[dict[str, str | ObjectBaseModel | None] | dict[Unknown | str, Unknown | str | ObjectBaseModel | None], datetime]` on object of type `dict[str, tuple[dict[str, str | ObjectBaseModel | None], DateTime]]` +src/prefect/events/schemas/automations.py:86:23: error[call-non-callable] Object of type `object` is not callable +src/prefect/events/utilities.py:96:27: error[invalid-argument-type] Argument is incorrect: Expected `DateTime`, found `Any | dict[str, Any] | None` +src/prefect/events/utilities.py:96:27: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `Any | dict[str, Any] | None` +src/prefect/events/utilities.py:96:27: error[invalid-argument-type] Argument is incorrect: Expected `Resource`, found `Any | dict[str, Any] | None` +src/prefect/events/utilities.py:96:27: error[invalid-argument-type] Argument is incorrect: Expected `list[RelatedResource]`, found `Any | dict[str, Any] | None` +src/prefect/events/utilities.py:96:27: error[invalid-argument-type] Argument is incorrect: Expected `dict[str, Any]`, found `Any | dict[str, Any] | None` +src/prefect/events/utilities.py:96:27: error[invalid-argument-type] Argument is incorrect: Expected `UUID`, found `Any | dict[str, Any] | None` +src/prefect/events/utilities.py:96:27: error[invalid-argument-type] Argument is incorrect: Expected `UUID | None`, found `Any | dict[str, Any] | None` +src/prefect/input/actions.py:46:49: warning[deprecated] The function `json` is deprecated: The `json` method is deprecated; use `model_dump_json` instead. +src/prefect/server/models/artifacts.py:449:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/artifacts.py:449:39: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/artifacts.py:534:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/block_documents.py:145:13: error[invalid-argument-type] Argument is incorrect: Expected `BlockDocumentFilterId | None`, found `dict[str, list[Unknown | UUID]]` +src/prefect/server/models/block_documents.py:256:13: error[invalid-argument-type] Argument is incorrect: Expected `BlockDocumentFilterName | None`, found `dict[str, list[Unknown | str]]` +src/prefect/server/models/block_documents.py:261:13: error[invalid-argument-type] Argument is incorrect: Expected `BlockTypeFilterSlug | None`, found `dict[str, list[Unknown | str]]` +src/prefect/server/models/block_documents.py:427:47: error[invalid-argument-type] Argument is incorrect: Expected `BlockSchemaFilterId | None`, found `dict[str, list[UUID | Unknown]]` +src/prefect/server/models/block_documents.py:473:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/block_documents.py:664:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/block_schemas.py:264:13: error[unresolved-attribute] Object of type `dict[str, Any]` has no attribute `replace` +src/prefect/server/models/block_schemas.py:268:30: error[unresolved-attribute] Object of type `dict[str, Any]` has no attribute `replace` +src/prefect/server/models/block_schemas.py:303:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/block_types.py:200:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/block_types.py:221:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/concurrency_limits.py:153:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/concurrency_limits.py:165:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/concurrency_limits_v2.py:171:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/concurrency_limits_v2.py:192:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/concurrency_limits_v2.py:236:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/concurrency_limits_v2.py:284:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/concurrency_limits_v2.py:306:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/csrf_token.py:105:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/deployments.py:108:74: error[invalid-argument-type] Argument to function `with_system_labels_for_deployment` is incorrect: Expected `Deployment`, found `Deployment | DeploymentCreate` +src/prefect/server/models/deployments.py:324:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/deployments.py:593:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/deployments.py:1041:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/deployments.py:1066:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/deployments.py:1093:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/deployments.py:1146:25: error[invalid-argument-type] Argument to function `deployment_status_event` is incorrect: Expected `DateTime`, found `datetime` +src/prefect/server/models/deployments.py:1199:29: error[invalid-argument-type] Argument to function `deployment_status_event` is incorrect: Expected `DateTime`, found `datetime` +src/prefect/server/models/events.py:52:9: error[invalid-argument-type] Argument is incorrect: Expected `DateTime`, found `datetime` +src/prefect/server/models/events.py:54:9: error[invalid-argument-type] Argument is incorrect: Expected `Resource`, found `dict[Unknown | str, Unknown | str | None]` +src/prefect/server/models/events.py:69:9: error[invalid-argument-type] Argument is incorrect: Expected `list[RelatedResource]`, found `list[dict[str, str]]` +src/prefect/server/models/events.py:82:9: error[invalid-argument-type] Argument is incorrect: Expected `UUID`, found `UUID | None` +src/prefect/server/models/events.py:356:9: error[invalid-argument-type] Argument is incorrect: Expected `Resource`, found `dict[Unknown | str, Unknown | str]` +src/prefect/server/models/events.py:391:9: error[invalid-argument-type] Argument is incorrect: Expected `Resource`, found `dict[Unknown | str, Unknown | str]` +src/prefect/server/models/events.py:396:9: error[invalid-argument-type] Argument is incorrect: Expected `list[RelatedResource]`, found `list[dict[str, Any]]` +src/prefect/server/models/events.py:413:9: error[invalid-argument-type] Argument is incorrect: Expected `Resource`, found `dict[Unknown | str, Unknown | str]` +src/prefect/server/models/flow_run_input.py:91:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/flow_run_states.py:79:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/flow_runs.py:174:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/flow_runs.py:251:26: error[invalid-type-form] Variable of type `type[Flow]` is not allowed in a type expression +src/prefect/server/models/flow_runs.py:252:26: error[invalid-type-form] Variable of type `type[TaskRun]` is not allowed in a type expression +src/prefect/server/models/flow_runs.py:322:41: error[invalid-argument-type] Argument to function `load_only` is incorrect: Expected `Literal["*"] | QueryableAttribute[Any]`, found `str` +src/prefect/server/models/flow_runs.py:504:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/flow_runs.py:685:19: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/flows.py:83:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/flows.py:290:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/logs.py:113:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/saved_searches.py:146:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/task_run_states.py:74:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/task_runs.py:176:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/task_runs.py:462:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/task_workers.py:71:13: error[invalid-argument-type] Argument is incorrect: Expected `DateTime`, found `datetime` +src/prefect/server/models/variables.py:123:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/variables.py:140:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/variables.py:154:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/variables.py:168:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/work_queues.py:282:15: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/work_queues.py:311:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/work_queues.py:403:17: error[invalid-argument-type] Argument is incorrect: Expected `Operator`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:403:17: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterId | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:403:17: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterName | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:403:17: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterTags | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:403:17: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterDeploymentId | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:403:17: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterWorkQueueName | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:403:17: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterFlowVersion | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:403:17: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterStartTime | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:403:17: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterEndTime | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:403:17: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterExpectedStartTime | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:403:17: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterNextScheduledStartTime | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:403:17: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterParentFlowRunId | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:403:17: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterParentTaskRunId | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:403:17: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterIdempotencyKey | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:404:17: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterState | None`, found `dict[str, dict[str, list[Unknown | StateType]]]` +src/prefect/server/models/work_queues.py:421:13: error[invalid-argument-type] Argument is incorrect: Expected `Operator`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:421:13: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterId | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:421:13: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterName | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:421:13: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterTags | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:421:13: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterDeploymentId | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:421:13: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterWorkQueueName | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:421:13: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterFlowVersion | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:421:13: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterStartTime | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:421:13: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterEndTime | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:421:13: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterExpectedStartTime | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:421:13: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterParentFlowRunId | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:421:13: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterParentTaskRunId | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:421:13: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterIdempotencyKey | None`, found `dict[str, Unknown] | dict[str, Unknown | bool]` +src/prefect/server/models/work_queues.py:422:13: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterState | None`, found `dict[str, dict[str, list[Unknown | StateType]]]` +src/prefect/server/models/work_queues.py:423:13: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterNextScheduledStartTime | None`, found `dict[str, datetime | None]` +src/prefect/server/models/work_queues.py:491:54: error[invalid-argument-type] Argument is incorrect: Expected `FlowRunFilterStateName | None`, found `dict[Unknown | str, Unknown | list[Unknown | str]]` +src/prefect/server/models/work_queues.py:571:17: error[invalid-argument-type] Argument to function `work_queue_status_event` is incorrect: Expected `DateTime`, found `datetime` +src/prefect/server/models/work_queues.py:609:17: error[invalid-argument-type] Argument to function `work_queue_status_event` is incorrect: Expected `DateTime`, found `datetime` +src/prefect/server/models/work_queues.py:628:13: error[invalid-argument-type] Argument to function `work_queue_status_event` is incorrect: Expected `DateTime`, found `datetime` +src/prefect/server/models/workers.py:253:15: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/workers.py:289:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +src/prefect/server/models/workers.py:626:15: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/workers.py:672:12: error[unresolved-attribute] Module `sqlalchemy` has no member `exc` +src/prefect/server/models/workers.py:755:9: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["heartbeat_interval_seconds"]` and value of type `int` on object of type `dict[str, datetime | WorkerStatus]` +src/prefect/server/models/workers.py:770:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount` +src/prefect/server/models/workers.py:799:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount` +Found 130 diagnostics diff --git a/scripts/ty_benchmark/snapshots/pytorch_Pyrefly.txt b/scripts/ty_benchmark/snapshots/pytorch_Pyrefly.txt new file mode 100644 index 0000000000..b1f7dbde41 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/pytorch_Pyrefly.txt @@ -0,0 +1,21803 @@ +ERROR torch/__init__.py:291:5-51: Could not find import of `torch.version` [missing-import] +ERROR torch/__init__.py:1018:12-24: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/__init__.py:1025:26-40: Could not import `_initExtension` from `torch._C` [missing-module-attribute] +ERROR torch/__init__.py:1184:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/__init__.py:1197:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/__init__.py:1215:16-28: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/__init__.py:1308:5-32: No attribute `_set_default_tensor_type` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:1311:27-38: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/__init__.py:1361:5-26: No attribute `_set_default_dtype` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:1510:5-37: No attribute `_set_deterministic_algorithms` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:1517:12-44: No attribute `_get_deterministic_algorithms` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:1525:12-54: No attribute `_get_deterministic_algorithms_warn_only` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:1561:9-41: No attribute `_set_deterministic_algorithms` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:1563:9-41: No attribute `_set_deterministic_algorithms` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:1565:9-41: No attribute `_set_deterministic_algorithms` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:1578:8-40: No attribute `_get_deterministic_algorithms` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:1579:12-54: No attribute `_get_deterministic_algorithms_warn_only` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:1591:12-44: No attribute `_get_float32_matmul_precision` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:1657:5-37: No attribute `_set_float32_matmul_precision` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:1670:5-23: No attribute `_set_warnAlways` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:1677:12-30: No attribute `_get_warnAlways` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:1851:26-36: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/__init__.py:1917:16-27: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/__init__.py:1928:16-28: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/__init__.py:1939:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/__init__.py:1950:16-26: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/__init__.py:1961:16-26: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/__init__.py:1972:16-25: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/__init__.py:1983:16-27: No attribute `short` in module `torch` [missing-attribute] +ERROR torch/__init__.py:1994:16-26: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2005:16-26: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2016:16-30: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2027:16-29: No attribute `cdouble` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2038:16-28: No attribute `cfloat` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2049:16-28: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2060:16-27: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2071:16-28: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2082:16-30: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2093:16-30: No attribute `quint2x4` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2145:1-18: No attribute `_initExtension` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:2160:23-37: `segment_reduce` is uninitialized [unbound-name] +ERROR torch/__init__.py:2161:9-23: `segment_reduce` is uninitialized [unbound-name] +ERROR torch/__init__.py:2168:19-40: No attribute `_VariableFunctions` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:2171:21-42: No attribute `_VariableFunctions` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:2192:69-80: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2279:5-23: Could not import `version` from `torch` [missing-module-attribute] +ERROR torch/__init__.py:2296:1-15: No attribute `_init_names` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:2330:28-45: Could not find name `contiguous_format` [unknown-name] +ERROR torch/__init__.py:2336:21-42: No attribute `get_num_threads` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2479:13-35: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/__init__.py:2664:5-27: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:2771:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2875:48-60: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2880:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2883:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2886:30-55: No attribute `_get_accelerator` in module `torch._C` [missing-attribute] +ERROR torch/__init__.py:2922:5-39: No attribute `sym_constrain_range_for_size` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2978:16-31: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2978:41-54: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2980:16-31: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2980:41-52: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/__init__.py:2982:16-31: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:10:22-34: Could not import `ScriptObject` from `torch._C` [missing-module-attribute] +ERROR torch/_C/_distributed_c10d.pyi:191:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:339:51-63: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:343:45-57: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:348:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:349:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:585:41-53: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:586:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:590:37-49: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:591:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:595:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:606:34-46: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:608:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:691:45-57: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:779:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:780:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:793:29-41: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:795:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:808:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:815:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_c10d.pyi:835:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc.pyi:7:22-28: Could not import `Future` from `torch._C` [missing-module-attribute] +ERROR torch/_C/_distributed_rpc.pyi:47:56-68: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc.pyi:47:70-82: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc.pyi:72:33-45: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc.pyi:72:47-59: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc.pyi:73:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc.pyi:81:37-49: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc.pyi:81:51-63: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc.pyi:82:23-35: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc.pyi:87:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc.pyi:87:40-52: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc.pyi:98:45-57: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc.pyi:98:59-71: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc.pyi:99:23-35: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc.pyi:110:56-68: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc.pyi:110:70-82: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc.pyi:114:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc.pyi:115:44-56: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc.pyi:115:58-70: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc_testing.pyi:30:45-57: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc_testing.pyi:30:59-71: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_distributed_rpc_testing.pyi:31:23-35: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_C/_profiler.pyi:4:22-28: Could not import `device` from `torch._C` [missing-module-attribute] +ERROR torch/_C/_profiler.pyi:4:30-35: Could not import `dtype` from `torch._C` [missing-module-attribute] +ERROR torch/_C/_profiler.pyi:4:37-43: Could not import `layout` from `torch._C` [missing-module-attribute] +ERROR torch/_C_flatbuffer/__init__.pyi:2:22-38: Could not import `LiteScriptModule` from `torch._C` [missing-module-attribute] +ERROR torch/_C_flatbuffer/__init__.pyi:2:40-52: Could not import `ScriptModule` from `torch._C` [missing-module-attribute] +ERROR torch/_VF.py:25:19-46: No attribute `_VariableFunctions` in module `torch._C` [missing-attribute] +ERROR torch/__config__.py:9:12-33: No attribute `_show_config` in module `torch._C` [missing-attribute] +ERROR torch/__config__.py:17:12-31: No attribute `_cxx_flags` in module `torch._C` [missing-attribute] +ERROR torch/__config__.py:22:12-35: No attribute `_parallel_info` in module `torch._C` [missing-attribute] +ERROR torch/_awaits/__init__.py:14:14-29: No attribute `_Await` in module `torch._C` [missing-attribute] +ERROR torch/_classes.py:12:9-20: Class member `_ClassNamespace.__getattr__` overrides parent class `ModuleType` in an inconsistent manner [bad-param-name-override] +ERROR torch/_classes.py:13:17-58: No attribute `_get_custom_class_python_wrapper` in module `torch._C` [missing-attribute] +ERROR torch/_custom_op/autograd.py:53:12-33: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_custom_op/autograd.py:57:14-49: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute] +ERROR torch/_custom_op/autograd.py:113:18-53: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute] +ERROR torch/_custom_op/impl.py:113:9-53: No attribute `_dispatch_set_report_error_callback` in module `torch._C` [missing-attribute] +ERROR torch/_custom_op/impl.py:150:25-51: No attribute `_DispatchOperatorHandle` in module `torch._C` [missing-attribute] +ERROR torch/_custom_op/impl.py:216:18-41: No attribute `_dispatch_call_boxed` in module `torch._C` [missing-attribute] +ERROR torch/_custom_op/impl.py:246:12-61: No attribute `_dispatch_has_computed_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_custom_op/impl.py:341:12-52: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_custom_op/impl.py:356:16-56: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_custom_op/impl.py:374:12-52: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_custom_op/impl.py:376:19-59: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_custom_op/impl.py:384:12-52: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_custom_op/impl.py:396:12-52: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_custom_op/impl.py:484:12-45: No attribute `_dispatch_find_schema_or_throw` in module `torch._C` [missing-attribute] +ERROR torch/_custom_op/impl.py:691:24-40: Module `torch._custom_op` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_custom_op/impl.py:691:24-45: Module `torch._custom_op.impl` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_custom_op/impl.py:693:17-33: Module `torch._custom_op` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_custom_op/impl.py:693:17-38: Module `torch._custom_op.impl` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_custom_op/impl.py:706:13-25: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_custom_op/impl.py:713:5-49: No attribute `_dispatch_set_report_error_callback` in module `torch._C` [missing-attribute] +ERROR torch/_decomp/__init__.py:59:8-17: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_decomp/__init__.py:89:12-41: No attribute `_dispatch_has_kernel` in module `torch._C` [missing-attribute] +ERROR torch/_decomp/decompositions.py:144:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:162:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:168:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:170:50-59: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:177:12-27: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:193:12-23: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:193:24-35: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:200:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:212:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:219:19-30: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:219:31-42: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:226:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:229:9-20: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:236:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:245:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:261:22-32: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:276:26-35: No attribute `erf` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:277:23-32: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:284:27-37: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:285:21-34: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:294:19-32: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:301:24-33: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:307:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:316:18-29: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:317:19-30: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:347:17-28: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:348:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:349:9-18: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:349:20-29: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:357:16-26: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:359:16-25: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:364:26-37: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:365:17-32: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:366:16-29: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:367:19-34: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:368:16-29: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:369:19-35: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:370:16-29: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:402:11-24: No attribute `softmax` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:404:19-28: No attribute `all` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:405:13-29: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:406:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:420:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:431:13-22: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:433:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:436:21-31: No attribute `sign` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:462:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:465:9-20: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:499:19-30: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:500:18-34: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:501:18-31: No attribute `scatter` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:512:19-30: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:530:26-39: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:535:12-21: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:631:27-40: No attribute `maximum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:632:9-20: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:633:18-31: No attribute `maximum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:633:32-41: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:650:46-57: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:666:12-23: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:666:24-33: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:679:42-55: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:695:14-29: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:695:53-76: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:697:14-29: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:697:53-76: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:698:11-20: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:699:11-20: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:715:12-31: No attribute `slice_scatter` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:818:11-23: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:821:12-22: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:821:60-70: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:823:16-33: No attribute `logical_and` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:826:16-33: No attribute `logical_and` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:829:16-33: No attribute `logical_and` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:841:12-32: No attribute `select_scatter` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:850:12-34: No attribute `diagonal_scatter` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:854:59-70: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:865:65-76: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:868:45-54: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:883:65-76: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:885:32-41: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:885:52-61: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:897:25-37: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:897:45-56: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:976:33-77: Argument `tuple[int, int, int, int]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/_decomp/decompositions.py:1084:28-76: Argument `tuple[int, int, int, int]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/_decomp/decompositions.py:1112:16-34: No attribute `squeeze_copy` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1114:11-23: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1114:67-78: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1133:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1134:13-30: No attribute `logical_and` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1139:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1140:13-30: No attribute `logical_and` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1161:21-37: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1161:46-62: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1161:76-86: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1166:21-36: No attribute `rand_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1170:24-39: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1170:53-63: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1182:27-37: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1188:24-33: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1190:17-27: No attribute `amax` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1191:24-33: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1192:29-38: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1207:27-37: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1215:17-27: No attribute `amax` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1217:25-34: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1217:35-44: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1217:45-54: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1261:16-31: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1299:41-51: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1368:16-25: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1370:9-18: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1386:39-62: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1433:48-59: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1446:26-39: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_decomp/decompositions.py:1476:19-27: No attribute `mm` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1516:19-27: No attribute `mv` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1563:10-19: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1572:22-31: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1573:22-31: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1574:18-27: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1581:18-27: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1583:17-27: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1592:13-22: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1593:15-24: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1664:47-70: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1701:9-18: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1702:10-19: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1703:10-19: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1704:10-19: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1715:24-33: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1721:22-31: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1777:34-47: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1777:49-64: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1778:23-34: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1778:35-48: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1780:23-34: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1780:35-48: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1784:19-30: No attribute `rsqrt` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1801:9-28: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1802:9-31: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1829:42-65: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1831:60-83: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1833:52-75: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1872:19-28: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1878:24-33: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1908:28-42: No attribute `var_mean` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1911:16-27: No attribute `rsqrt` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1915:21-34: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1916:21-34: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1926:28-41: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:1938:23-33: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2152:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2153:29-40: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2243:12-43: Object of class `bool` has no attribute `to` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2243:13-28: No attribute `rand_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2243:50-61: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2253:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2255:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2258:29-48: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2260:36-49: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2273:20-39: No attribute `scalar_tensor` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2278:24-36: Module `torch._prims` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_decomp/decompositions.py:2280:20-32: Module `torch._prims` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_decomp/decompositions.py:2283:20-32: Module `torch._prims` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_decomp/decompositions.py:2287:16-27: No attribute `clone` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2327:54-65: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2332:37-48: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2424:18-29: No attribute `rsqrt` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2595:16-25: No attribute `div` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2598:16-25: No attribute `div` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2601:18-30: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2601:62-73: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2614:21-33: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2614:66-77: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2619:22-41: No attribute `scalar_tensor` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2622:19-32: No attribute `minimum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2638:16-26: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2650:20-37: No attribute `masked_fill` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2704:26-37: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2753:26-37: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2929:11-24: No attribute `minimum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2930:9-18: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2930:20-29: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2935:18-29: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:2944:25-40: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3062:26-38: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3062:52-65: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3063:64-75: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3177:29-52: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3222:12-24: No attribute `concat` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3271:11-20: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3272:18-27: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3308:11-20: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3320:14-25: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3321:14-25: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3398:21-34: No attribute `dropout` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3430:51-61: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3432:17-28: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3461:51-61: No attribute `relu` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3463:17-28: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3495:37-47: No attribute `relu` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3498:17-28: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3530:37-47: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3533:17-28: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3572:11-20: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3617:18-30: No attribute `concat` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3620:18-30: No attribute `concat` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3635:22-31: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3635:45-54: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3637:11-20: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3657:16-44: No attribute `_get_mkldnn_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3666:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3671:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3671:43-57: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3722:17-28: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3722:51-62: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3755:17-28: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3755:51-62: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3803:17-28: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3833:17-28: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3935:14-25: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3935:34-45: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3938:12-23: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3938:43-54: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3942:18-29: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3944:18-30: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3947:35-43: Object of class `bool` has no attribute `sum` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3972:13-25: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3976:22-33: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:3999:18-27: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4011:25-48: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4050:33-43: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4050:45-54: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4055:23-33: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4078:33-43: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4078:45-54: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4083:23-33: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4124:19-30: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4128:15-27: No attribute `gather` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4130:14-25: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4139:16-28: No attribute `gather` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4140:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4143:24-52: Object of class `bool` has no attribute `sum` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4207:20-32: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4208:15-26: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4209:15-26: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4212:18-30: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4213:18-30: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4231:19-28: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4235:49-60: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4235:70-82: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4238:16-28: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4241:12-26: No attribute `linspace` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4252:16-26: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4255:50-56: Argument `tuple[Literal[0], Literal[2]]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/_decomp/decompositions.py:4256:50-56: Argument `tuple[Literal[1], Literal[1]]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/_decomp/decompositions.py:4257:54-60: Argument `tuple[Literal[2], Literal[0]]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/_decomp/decompositions.py:4268:16-26: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4271:50-56: Argument `tuple[Literal[0], Literal[3]]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/_decomp/decompositions.py:4272:50-56: Argument `tuple[Literal[1], Literal[2]]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/_decomp/decompositions.py:4273:50-56: Argument `tuple[Literal[2], Literal[1]]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/_decomp/decompositions.py:4274:54-60: Argument `tuple[Literal[3], Literal[0]]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/_decomp/decompositions.py:4348:20-36: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4352:17-27: No attribute `fmod` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4353:58-68: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4354:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4362:20-31: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4368:20-31: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4387:16-33: No attribute `logical_and` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4388:22-39: No attribute `logical_and` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4388:49-66: No attribute `logical_and` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4391:13-25: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4392:13-25: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4402:13-24: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4403:35-46: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4403:61-72: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4571:16-25: No attribute `dot` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4573:16-24: No attribute `mv` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4575:16-29: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4575:30-38: No attribute `mm` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4575:39-54: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4577:16-24: No attribute `mm` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4709:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4710:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4723:14-25: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4724:14-25: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4733:23-34: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4738:47-57: No attribute `sign` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4738:71-82: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4742:47-57: No attribute `sign` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4742:71-82: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4747:17-28: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4748:17-28: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4754:27-38: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4760:23-34: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4807:19-31: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4824:19-31: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4825:16-27: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4878:24-36: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4885:16-33: No attribute `logical_and` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4957:12-22: No attribute `amin` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4959:12-22: No attribute `amax` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4974:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4975:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4975:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4976:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4989:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4990:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4990:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:4991:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5037:9-21: No attribute `gather` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5043:11-23: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5044:9-20: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5075:11-23: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5077:15-25: No attribute `amin` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5077:26-37: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5081:13-24: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5082:9-21: No attribute `gather` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5084:13-24: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5085:17-26: No attribute `any` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5091:9-20: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5128:9-32: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5179:35-58: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5201:14-23: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5215:12-21: No attribute `div` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5227:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5253:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5253:44-58: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5263:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5266:20-28: No attribute `ne` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5268:20-28: No attribute `eq` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5282:25-40: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5285:17-27: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5285:47-60: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5287:17-27: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5290:19-32: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5293:9-26: Object of class `bool` has no attribute `to` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5299:16-32: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5299:49-59: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5314:24-33: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5315:41-51: No attribute `sort` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5318:26-47: No attribute `constant_pad_nd` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5323:16-32: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5328:35-45: No attribute `sort` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5329:15-33: No attribute `searchsorted` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5330:20-31: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5332:15-30: Object of class `bool` has no attribute `logical_not` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5333:16-27: Object of class `bool` has no attribute `reshape` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5346:25-48: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions.py:5347:25-46: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:104:12-21: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:104:22-32: No attribute `diag` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:109:11-24: No attribute `minimum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:110:9-18: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:110:20-29: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:115:18-29: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:124:12-22: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:125:11-20: No attribute `var` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:126:11-20: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:128:16-26: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:173:9-18: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:174:10-19: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:175:10-19: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:176:10-19: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:182:19-35: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:186:42-51: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:192:20-36: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:194:20-31: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:198:40-49: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:202:18-34: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:204:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:248:18-29: No attribute `rsqrt` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:260:12-25: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:262:23-32: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:263:13-22: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:265:17-30: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:266:18-31: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:266:32-41: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:269:22-35: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:271:22-35: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:282:23-39: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:286:23-34: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_jvp.py:291:21-37: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_rng.py:33:36-49: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_rng.py:37:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_rng.py:52:19-40: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_rng.py:78:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_rng.py:79:28-40: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_rng.py:102:16-27: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_rng.py:106:39-51: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_rng.py:253:23-35: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_rng.py:255:23-38: No attribute `rand_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_rng.py:255:51-64: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_rng.py:260:23-35: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_rng.py:263:12-27: No attribute `rand_like` in module `torch` [missing-attribute] +ERROR torch/_decomp/decompositions_for_rng.py:263:40-53: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_dispatch/python.py:14:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_dispatch/python.py:19:24-57: No attribute `_DisablePythonDispatcher` in module `torch._C` [missing-attribute] +ERROR torch/_dispatch/python.py:20:28-60: No attribute `_EnablePythonDispatcher` in module `torch._C` [missing-attribute] +ERROR torch/_dispatch/python.py:21:23-50: No attribute `_EnablePreDispatch` in module `torch._C` [missing-attribute] +ERROR torch/_dispatch/python.py:57:13-60: No attribute `_dispatch_tls_is_dispatch_key_included` in module `torch._C` [missing-attribute] +ERROR torch/_dispatch/python.py:58:9-29: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_dispatch/python.py:60:12-57: No attribute `_functionalization_reapply_views_tls` in module `torch._C` [missing-attribute] +ERROR torch/_dispatch/python.py:62:9-41: No attribute `_disable_functionalization` in module `torch` [missing-attribute] +ERROR torch/_dispatch/python.py:67:13-44: No attribute `_enable_functionalization` in module `torch` [missing-attribute] +ERROR torch/_dispatch/python.py:74:25-44: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dispatch/python.py:126:20-47: No attribute `_is_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_dispatch/python.py:127:25-54: No attribute `_from_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_dispatch/python.py:183:30-50: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_dispatch/python.py:192:34-54: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/__init__.py:153:9-40: Module `torch._dynamo.compiled_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/__init__.py:160:9-27: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/_trace_wrapped_higher_order_op.py:35:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_dynamo/_trace_wrapped_higher_order_op.py:59:12-23: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_dynamo/_trace_wrapped_higher_order_op.py:121:6-19: Module `torch._export` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/_trace_wrapped_higher_order_op.py:139:22-42: No attribute `_TensorMeta` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/_trace_wrapped_higher_order_op.py:160:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_dynamo/_trace_wrapped_higher_order_op.py:171:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/_trace_wrapped_higher_order_op.py:215:40-56: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_dynamo/aot_compile.py:161:14-36: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/aot_compile.py:226:13-26: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/aot_compile.py:227:13-29: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/aot_compile.py:227:13-36: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/aot_compile_types.py:49:14-30: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/aot_compile_types.py:49:14-37: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/backends/common.py:73:20-22: Returned type `GraphModule` is not assignable to declared return type `(...) -> Any` [bad-return] +ERROR torch/_dynamo/backends/common.py:166:58-70: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/backends/common.py:170:12-24: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/backends/common.py:173:57-68: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/backends/common.py:177:12-25: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_dynamo/backends/cudagraphs.py:95:11-23: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/backends/cudagraphs.py:96:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/backends/cudagraphs.py:203:23-54: Module `torch._inductor.cudagraph_trees` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/backends/cudagraphs.py:267:26-42: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_dynamo/backends/debugging.py:101:19-36: Module `torch._dynamo.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/backends/debugging.py:224:12-28: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/backends/debugging.py:224:12-35: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/backends/debugging.py:226:10-26: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/backends/debugging.py:226:10-33: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/backends/debugging.py:229:16-32: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/backends/debugging.py:229:16-39: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/backends/debugging.py:372:27-37: No attribute `relu` in module `torch` [missing-attribute] +ERROR torch/_dynamo/backends/debugging.py:382:27-37: No attribute `relu` in module `torch` [missing-attribute] +ERROR torch/_dynamo/backends/debugging.py:394:27-37: No attribute `relu` in module `torch` [missing-attribute] +ERROR torch/_dynamo/backends/debugging.py:395:27-36: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/_dynamo/backends/distributed.py:191:15-28: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/backends/distributed.py:311:31-44: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/backends/distributed.py:319:35-48: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/backends/distributed.py:346:35-48: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/backends/distributed.py:576:20-29: Module `torch.fx.passes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/backends/torchxla.py:33:16-54: Could not find import of `torch_xla.core.dynamo_bridge` [missing-import] +ERROR torch/_dynamo/backends/tvm.py:83:9-39: Could not find import of `tvm` [missing-import] +ERROR torch/_dynamo/backends/tvm.py:118:9-44: Could not find import of `tvm` [missing-import] +ERROR torch/_dynamo/backends/tvm.py:164:20-36: No attribute `from_numpy` in module `torch` [missing-attribute] +ERROR torch/_dynamo/backends/tvm.py:165:16-34: Module `torch.utils.dlpack` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/backends/tvm.py:169:34-44: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_dynamo/bytecode_transformation.py:1364:21-37: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] + WARN torch/_dynamo/bytecode_transformation.py:1399:12-26: `types.CodeType.co_lnotab` is deprecated [deprecated] + WARN torch/_dynamo/bytecode_transformation.py:1399:30-44: `types.CodeType.co_lnotab` is deprecated [deprecated] + WARN torch/_dynamo/bytecode_transformation.py:1399:74-88: `types.CodeType.co_lnotab` is deprecated [deprecated] +ERROR torch/_dynamo/codegen.py:311:42-55: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_dynamo/compiled_autograd.py:91:12-34: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:167:28-39: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_dynamo/compiled_autograd.py:181:20-31: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_dynamo/compiled_autograd.py:192:20-31: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_dynamo/compiled_autograd.py:420:13-34: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:420:13-50: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:473:12-33: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/compiled_autograd.py:486:19-35: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:486:19-49: Module `torch._functorch._aot_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:486:19-66: Module `torch._functorch._aot_autograd.runtime_wrappers` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:604:28-39: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_dynamo/compiled_autograd.py:634:19-35: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:634:19-49: Module `torch._functorch._aot_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:634:19-66: Module `torch._functorch._aot_autograd.runtime_wrappers` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:689:21-32: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_dynamo/compiled_autograd.py:731:20-31: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_dynamo/compiled_autograd.py:783:30-39: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/_dynamo/compiled_autograd.py:849:13-29: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:1123:51-62: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_dynamo/compiled_autograd.py:1398:41-62: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:1398:41-75: Module `torch.fx.experimental.proxy_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:1521:17-33: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:1537:17-33: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:1551:9-25: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:1563:9-25: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:1573:5-21: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:1574:5-21: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:1575:5-21: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/compiled_autograd.py:1597:64-87: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_dynamo/convert_frame.py:289:27-48: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/convert_frame.py:296:13-47: No attribute `_PreserveDispatchKeyGuard` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/convert_frame.py:300:36-67: No attribute `is_inference_mode_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/convert_frame.py:304:17-62: No attribute `_is_default_mobile_cpu_allocator_set` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/convert_frame.py:307:27-50: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/convert_frame.py:311:22-51: No attribute `DisableTorchFunction` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/convert_frame.py:313:37-72: No attribute `_get_fp32_precision_getter` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/convert_frame.py:329:24-58: No attribute `_len_torch_function_stack` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/convert_frame.py:333:17-43: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/convert_frame.py:342:21-66: No attribute `_is_default_mobile_cpu_allocator_set` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/convert_frame.py:345:21-65: No attribute `_unset_default_mobile_cpu_allocator` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/convert_frame.py:347:26-55: No attribute `DisableTorchFunction` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/convert_frame.py:349:17-52: No attribute `_set_fp32_precision_setter` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/convert_frame.py:1034:23-69: `((...) -> Any) | GraphModule` is not assignable to variable `compiled_fn` with type `((...) -> Any) | None` [bad-assignment] +ERROR torch/_dynamo/convert_frame.py:1035:57-68: Argument `((...) -> Any) | None` is not assignable to parameter `compiled_fn` with type `(...) -> Any` in function `GraphRuntimeEnv.forward_callable` [bad-argument-type] +ERROR torch/_dynamo/convert_frame.py:1206:25-43: Argument `(gm: GraphModule, example_inputs: list[Tensor]) -> GraphModule` is not assignable to parameter `compiler_fn` with type `(GraphModule, list[Tensor]) -> CompiledFn` in function `compile_frame` [bad-argument-type] +ERROR torch/_dynamo/convert_frame.py:1870:13-20: Argument `WrapBackendDebug` is not assignable to parameter `compiler_fn` with type `(GraphModule, list[Tensor]) -> CompiledFn` in function `convert_frame` [bad-argument-type] +ERROR torch/_dynamo/create_parameter_op.py:43:35-46: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/create_parameter_op.py:43:56-68: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/create_parameter_op.py:47:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:69:12-31: Could not find import of `libfb.py.build_info` [missing-import] +ERROR torch/_dynamo/debug_utils.py:226:18-41: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:461:65-78: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:462:44-57: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:467:39-52: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:476:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:481:17-30: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:498:20-33: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:543:22-41: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/debug_utils.py:545:12-31: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/debug_utils.py:546:6-25: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/debug_utils.py:554:35-48: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:555:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:570:26-45: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/debug_utils.py:571:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:601:26-45: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/debug_utils.py:602:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:628:16-35: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/debug_utils.py:629:26-45: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/debug_utils.py:632:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:642:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:650:43-64: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:707:31-50: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/debug_utils.py:708:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:822:26-37: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:850:27-46: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/debug_utils.py:850:65-76: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:864:23-34: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_dynamo/debug_utils.py:864:67-78: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_dynamo/decorators.py:158:9-17: Class member `set_stance.__exit__` overrides parent class `_DecoratorContextManager` in an inconsistent manner [bad-param-name-override] +ERROR torch/_dynamo/decorators.py:823:12-18: Could not find import of `einops` [missing-import] +ERROR torch/_dynamo/device_interface.py:30:26-70: Could not import `_cuda_getCurrentRawStream` from `torch._C` [missing-module-attribute] +ERROR torch/_dynamo/device_interface.py:106:24-36: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:110:29-41: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:114:28-40: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:143:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:145:25-39: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:224:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:226:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:284:16-31: Could not find import of `triton.backends` [missing-import] +ERROR torch/_dynamo/device_interface.py:295:26-70: Could not import `_mtia_getCurrentRawStream` from `torch._C` [missing-module-attribute] +ERROR torch/_dynamo/device_interface.py:321:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:323:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:369:9-36: Class member `MtiaInterface.raise_if_triton_unavailable` overrides parent class `DeviceInterface` in an inconsistent manner [bad-param-name-override] +ERROR torch/_dynamo/device_interface.py:370:16-31: Could not find import of `triton.backends` [missing-import] +ERROR torch/_dynamo/device_interface.py:378:26-68: Could not import `_xpu_getCurrentRawStream` from `torch._C` [missing-module-attribute] +ERROR torch/_dynamo/device_interface.py:404:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:406:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:455:16-31: Could not find import of `triton.backends` [missing-import] +ERROR torch/_dynamo/device_interface.py:468:17-28: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:519:16-31: Could not find import of `triton.backends` [missing-import] +ERROR torch/_dynamo/device_interface.py:532:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:534:22-35: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:534:37-53: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:536:25-39: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:572:24-36: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:574:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:579:49-61: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/device_interface.py:580:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/eval_frame.py:210:49-81: Argument `WrapBackendDebug` is not assignable to parameter `compiler_fn` with type `(GraphModule, list[Tensor]) -> CompiledFn` in function `_create_wrapped_callback` [bad-argument-type] +ERROR torch/_dynamo/eval_frame.py:316:49-61: Argument `WrapBackendDebug` is not assignable to parameter `compiler_fn` with type `(GraphModule, list[Tensor]) -> CompiledFn` in function `_create_wrapped_callback` [bad-argument-type] +ERROR torch/_dynamo/eval_frame.py:357:12-28: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/eval_frame.py:410:44-67: Argument `BoundMethod[Module, (...) -> Any]` is not assignable to parameter `fn` with type `(...) -> Any` in function `DisableContext.__call__` [bad-argument-type] +ERROR torch/_dynamo/eval_frame.py:421:71-85: Argument `Module` is not assignable to parameter `fn` with type `(ParamSpec(@_)) -> @_` in function `torch._dynamo.external_utils.wrap_inline` [bad-argument-type] +ERROR torch/_dynamo/eval_frame.py:527:9-20: Class member `OptimizedModule.__setattr__` overrides parent class `Module` in an inconsistent manner [bad-param-name-override] +ERROR torch/_dynamo/eval_frame.py:868:26-46: No attribute `_is_tracing` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/eval_frame.py:876:39-52: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/eval_frame.py:914:21-40: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/eval_frame.py:940:21-40: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/eval_frame.py:1057:23-54: Module `torch._dynamo.compiled_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/eval_frame.py:1429:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/eval_frame.py:1464:13-20: Argument `WrapBackendDebug` is not assignable to parameter `compiler_fn` with type `(GraphModule, list[Tensor]) -> CompiledFn` in function `torch._dynamo.convert_frame.convert_frame` [bad-argument-type] +ERROR torch/_dynamo/eval_frame.py:1739:9-30: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/eval_frame.py:1954:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/eval_frame.py:2228:22-40: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/eval_frame.py:2345:13-20: Argument `WrapBackendDebug` is not assignable to parameter `compiler_fn` with type `(GraphModule, list[Tensor]) -> CompiledFn` in function `torch._dynamo.convert_frame.convert_frame_assert` [bad-argument-type] +ERROR torch/_dynamo/exc.py:388:35-43: Cannot index into `dict[type[AttributeError] | type[GeneratorExit] | type[IndexError] | type[KeyError] | type[LookupError] | type[NotImplementedError] | type[RuntimeError] | type[StopIteration] | type[TypeError], type[ObservedAttributeError] | type[ObservedGeneratorExit] | type[ObservedIndexError] | type[ObservedKeyError] | type[ObservedLookupError] | type[ObservedNotImplementedError] | type[ObservedRuntimeError] | type[ObservedTypeError] | type[ObservedUserStopIteration]]` [bad-index] +ERROR torch/_dynamo/functional_export.py:348:9-17: Class member `DynamoGraphTransformer.run_node` overrides parent class `Transformer` in an inconsistent manner [bad-param-name-override] +ERROR torch/_dynamo/functional_export.py:374:70-377:18: Cannot index into `Module` [bad-index] +ERROR torch/_dynamo/functional_export.py:381:55-384:18: Cannot index into `Module` [bad-index] +ERROR torch/_dynamo/functional_export.py:521:34-48: `tuple[Unknown, ...]` is not assignable to attribute `gm_inputs` with type `None` [bad-assignment] +ERROR torch/_dynamo/functional_export.py:535:9-20: Argument `pytreeify.InShuffle` is not assignable to parameter `f` with type `(...) -> Unknown` in function `torch.fx.experimental.proxy_tensor.make_fx` [bad-argument-type] +ERROR torch/_dynamo/functional_export.py:580:13-24: Argument `pytreeify.OutShuffle` is not assignable to parameter `f` with type `(...) -> Unknown` in function `torch.fx.experimental.proxy_tensor.make_fx` [bad-argument-type] +ERROR torch/_dynamo/functional_export.py:800:43-63: Module `torch._dynamo.source` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/graph_region_tracker.py:55:5-16: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/graph_region_tracker.py:155:9-30: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/graph_region_tracker.py:156:9-40: No attribute `is_inference_mode_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/graph_region_tracker.py:157:9-30: No attribute `get_num_threads` in module `torch` [missing-attribute] +ERROR torch/_dynamo/graph_region_tracker.py:158:9-68: No attribute `_get_cublas_allow_fp16_reduced_precision_reduction` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/graph_region_tracker.py:159:9-68: No attribute `_get_cublas_allow_bf16_reduced_precision_reduction` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/graph_region_tracker.py:160:9-32: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/graph_region_tracker.py:162:9-40: No attribute `_get_cublas_allow_tf32` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/graph_utils.py:87:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/guards.py:220:26-40: Could not import `DispatchKeySet` from `torch._C` [missing-module-attribute] +ERROR torch/_dynamo/guards.py:770:23-35: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/guards.py:783:23-39: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:852:25-65: No attribute `_dispatch_tls_local_include_set` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/guards.py:853:9-49: No attribute `_dispatch_tls_local_exclude_set` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/guards.py:1011:14-27: Module `torch.package` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:1818:24-40: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:2074:32-55: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/guards.py:2102:22-38: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:2102:22-50: Module `torch._functorch.pyfunctorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:2112:21-37: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:2112:21-51: Module `torch._functorch._aot_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:2112:21-57: Module `torch._functorch._aot_autograd.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:2114:13-29: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:2114:13-43: Module `torch._functorch._aot_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:2114:13-49: Module `torch._functorch._aot_autograd.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:2205:17-27: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_dynamo/guards.py:2206:17-29: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_dynamo/guards.py:2477:21-40: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:2771:20-39: Module `torch._inductor.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:2810:29-52: No attribute `_dispatch_keys` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/guards.py:2861:44-56: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/guards.py:2861:58-69: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/guards.py:3195:9-24: No attribute `Stream` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/guards.py:3199:17-43: Module `torch._C._distributed_c10d` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:3231:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/guards.py:3243:13-36: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/guards.py:3252:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/guards.py:3268:29-52: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/guards.py:3276:59-82: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/guards.py:3277:16-39: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/guards.py:3282:10-29: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:3283:16-35: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:3299:16-38: Module `torch.distributed.fsdp` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:3361:21-37: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_dynamo/guards.py:3362:21-31: Object of class `TensorWithFlatten` has no attribute `device` [missing-attribute] +ERROR torch/_dynamo/guards.py:3364:21-44: No attribute `_dispatch_keys` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/guards.py:3370:17-33: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_dynamo/guards.py:3373:17-40: No attribute `_dispatch_keys` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/guards.py:3395:30-53: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/guards.py:3398:30-49: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:3461:19-36: Module `torch._dynamo.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:3470:33-55: Module `torch.distributed.fsdp` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:3472:27-49: Module `torch.distributed.fsdp` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:3477:24-46: Module `torch.distributed.fsdp` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:3507:15-32: Module `torch._dynamo.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:3553:37-53: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:3776:23-40: Module `torch._dynamo.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:3788:23-40: Module `torch._dynamo.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/guards.py:3855:21-34: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/logging.py:52:16-22: Could not find import of `triton` [missing-import] +ERROR torch/_dynamo/output_graph.py:335:28-44: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:335:28-56: Module `torch._functorch.pyfunctorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:336:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:337:25-41: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:411:21-40: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:411:51-70: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:412:9-28: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:416:25-44: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:416:55-74: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:549:30-46: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:549:30-58: Module `torch._functorch.pyfunctorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:550:28-47: Module `torch.utils._device` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:553:16-32: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:671:44-84: No attribute `_is_torch_function_mode_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:802:14-33: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:807:16-47: Module `torch._dynamo.compiled_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:815:12-43: Module `torch._dynamo.compiled_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:818:21-37: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:818:21-51: Module `torch._functorch._aot_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:818:21-57: Module `torch._functorch._aot_autograd.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:820:13-29: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:820:13-43: Module `torch._functorch._aot_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:820:13-49: Module `torch._functorch._aot_autograd.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:995:65-86: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:998:31-57: No attribute `set_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:999:13-38: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:1002:31-57: No attribute `set_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:1003:13-38: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:1006:31-55: No attribute `set_autocast_dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:1007:13-37: No attribute `get_autocast_dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:1010:31-55: No attribute `set_autocast_dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:1011:13-37: No attribute `get_autocast_dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:1014:13-45: No attribute `set_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:1015:13-44: No attribute `is_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:1652:36-59: Module `torch._dynamo.variables` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:1659:39-62: Module `torch._dynamo.variables` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:1664:50-71: Module `torch._dynamo.codegen` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:1683:45-68: Module `torch._dynamo.variables` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:1942:24-45: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:1945:33-59: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:1951:37-63: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:1966:19-36: Module `torch._dynamo.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:2323:25-60: Module `torch._dynamo.graph_bytecode_inputs` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/output_graph.py:2591:66-84: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:2829:12-21: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:2844:16-25: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:2859:24-52: No attribute `_jit_resolve_packet` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:2872:12-21: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:3005:12-43: No attribute `is_inference_mode_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:3246:9-20: Class member `SubgraphTracer.create_node` overrides parent class `Tracer` in an inconsistent manner [bad-param-name-override] +ERROR torch/_dynamo/output_graph.py:3573:40-53: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:3595:42-58: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:3598:43-59: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:3598:61-77: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:3601:43-59: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:3601:61-77: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:3701:40-53: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:3721:42-58: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:3724:43-59: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:3724:61-77: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:3727:43-59: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/_dynamo/output_graph.py:3727:61-77: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/_dynamo/package.py:123:12-32: Module `torch._dynamo.guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/package.py:849:53-73: Module `torch._dynamo.guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/package.py:1014:9-14: Class member `InMemoryDynamoStore.write` overrides parent class `DynamoStore` in an inconsistent manner [bad-param-name-override] +ERROR torch/_dynamo/package.py:1058:9-14: Class member `DiskDynamoStore.write` overrides parent class `DynamoStore` in an inconsistent manner [bad-param-name-override] +ERROR torch/_dynamo/pgo.py:598:9-73: Could not find import of `torch._inductor.fb.remote_cache` [missing-import] +ERROR torch/_dynamo/polyfills/__init__.py:96:24-40: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_dynamo/polyfills/__init__.py:100:10-31: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/polyfills/__init__.py:362:14-32: No attribute `_foreach_sub` in module `torch` [missing-attribute] +ERROR torch/_dynamo/polyfills/__init__.py:363:14-32: No attribute `_foreach_mul` in module `torch` [missing-attribute] +ERROR torch/_dynamo/polyfills/__init__.py:364:12-31: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/_dynamo/polyfills/__init__.py:368:12-30: No attribute `_foreach_pow` in module `torch` [missing-attribute] +ERROR torch/_dynamo/polyfills/fx.py:4:22-39: Could not import `_fx_map_aggregate` from `torch._C` [missing-module-attribute] +ERROR torch/_dynamo/polyfills/fx.py:4:41-52: Could not import `_fx_map_arg` from `torch._C` [missing-module-attribute] +ERROR torch/_dynamo/polyfills/tensor.py:14:10-47: No attribute `DisableTorchFunctionSubclass` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/repro/after_aot.py:42:5-63: Could not find import of `triton.runtime.autotuner` [missing-import] +ERROR torch/_dynamo/repro/after_aot.py:43:5-47: Could not find import of `triton.runtime.jit` [missing-import] +ERROR torch/_dynamo/repro/after_aot.py:507:25-46: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/repro/after_aot.py:507:25-62: Module `torch.fx.experimental._backward_state` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/repro/after_aot.py:789:19-22: Argument `Module` is not assignable to parameter `f` with type `(...) -> Unknown` in function `torch.fx.experimental.proxy_tensor.make_fx` [bad-argument-type] +ERROR torch/_dynamo/repro/after_aot.py:792:5-27: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/repro/after_aot.py:883:14-40: Module `torch.utils._content_store` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/repro/after_aot.py:886:14-40: Module `torch.utils._content_store` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/repro/after_dynamo.py:231:42-67: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/repro/after_dynamo.py:474:63-66: Argument `Module` is not assignable to parameter `fn` with type `(...) -> Any` in function `torch._dynamo.eval_frame._NullDecorator.__call__` [bad-argument-type] +ERROR torch/_dynamo/repro/after_dynamo.py:481:55-58: Argument `Module` is not assignable to parameter `fn` with type `(...) -> Any` in function `torch._dynamo.eval_frame._NullDecorator.__call__` [bad-argument-type] +ERROR torch/_dynamo/repro/aoti.py:305:5-27: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/side_effects.py:724:26-50: Module `torch._dynamo.variables.torch_function` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/side_effects.py:958:22-46: Module `torch._dynamo.variables.torch_function` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/side_effects.py:967:24-48: Module `torch._dynamo.variables.torch_function` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/source.py:26:19-40: Could not import `device` from `torch` [missing-module-attribute] +ERROR torch/_dynamo/symbolic_convert.py:686:21-40: No attribute `_assert_async` in module `torch` [missing-attribute] +ERROR torch/_dynamo/symbolic_convert.py:699:26-47: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/symbolic_convert.py:699:26-63: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/symbolic_convert.py:711:34-53: No attribute `scalar_tensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/symbolic_convert.py:722:17-36: No attribute `_assert_async` in module `torch` [missing-attribute] +ERROR torch/_dynamo/symbolic_convert.py:1843:21-34: Module `torch.package` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/symbolic_convert.py:4176:26-39: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/symbolic_convert.py:4562:14-33: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/symbolic_convert.py:4564:13-32: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/symbolic_convert.py:4565:13-32: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/symbolic_convert.py:4566:13-32: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/symbolic_convert.py:5075:21-34: Module `torch.package` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/tensor_version_op.py:53:15-33: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/tensor_version_op.py:70:5-23: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/test_case.py:87:39-60: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/test_case.py:101:47-68: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/test_minifier_common.py:83:13-35: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/test_minifier_common.py:107:2-24: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/test_minifier_common.py:138:31-53: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/test_minifier_common.py:164:17-39: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/test_minifier_common.py:264:17-39: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/testing.py:116:20-36: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_dynamo/testing.py:383:14-25: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_dynamo/testing.py:384:14-25: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_dynamo/testing.py:425:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/testing.py:425:26-39: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_dynamo/testing.py:426:24-36: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/testing.py:441:22-33: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_dynamo/testing.py:441:53-66: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_dynamo/testing.py:445:22-33: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_dynamo/testing.py:447:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_dynamo/testing.py:448:12-28: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/_dynamo/testing.py:558:16-46: Could not find import of `torch_xla.core.xla_model` [missing-import] +ERROR torch/_dynamo/trace_rules.py:4036:5-30: Module `torch._dynamo.trace_rules` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/trace_rules.py:4037:5-30: Module `torch._dynamo.trace_rules` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/trace_rules.py:4038:5-30: Module `torch._dynamo.trace_rules` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/trace_rules.py:4039:5-30: Module `torch._dynamo.trace_rules` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/trace_rules.py:4040:5-30: Module `torch._dynamo.trace_rules` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:74:5-30: Could not import `_len_torch_function_stack` from `torch._C` [missing-module-attribute] +ERROR torch/_dynamo/utils.py:75:5-30: Could not import `_pop_torch_function_stack` from `torch._C` [missing-module-attribute] +ERROR torch/_dynamo/utils.py:76:5-34: Could not import `_push_on_torch_function_stack` from `torch._C` [missing-module-attribute] +ERROR torch/_dynamo/utils.py:740:23-36: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:857:5-22: No attribute `FloatTensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:857:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:857:40-51: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:858:5-23: No attribute `DoubleTensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:858:26-39: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:858:41-53: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:859:5-21: No attribute `HalfTensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:859:24-37: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:859:39-49: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:860:5-25: No attribute `BFloat16Tensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:860:28-42: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:861:5-21: No attribute `ByteTensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:861:24-35: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:862:5-21: No attribute `CharTensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:862:24-34: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:863:5-21: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:863:24-35: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:863:37-47: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:864:5-20: No attribute `IntTensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:864:23-34: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:864:36-45: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:865:5-22: No attribute `ShortTensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:865:25-36: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:865:38-49: No attribute `short` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:866:5-21: No attribute `BoolTensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:866:24-34: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:1077:58-87: Could not find name `_builtin_final_typing_classes` [unknown-name] +ERROR torch/_dynamo/utils.py:1626:8-30: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:1665:13-77: Could not find import of `torch._inductor.fb.remote_cache` [missing-import] +ERROR torch/_dynamo/utils.py:1680:22-35: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:1901:36-49: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:1944:36-49: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:2044:26-39: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:2161:41-52: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2170:13-24: No attribute `clone` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2185:24-40: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2186:20-43: No attribute `sparse_coo_tensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2193:29-45: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2193:47-63: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2199:20-50: No attribute `sparse_compressed_tensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2215:22-43: No attribute `empty_quantized` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2217:22-33: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2287:25-51: No attribute `_DisableFuncTorch` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/utils.py:2288:29-57: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:2290:21-32: No attribute `clone` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2293:30-41: No attribute `clone` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2297:14-42: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:2413:21-32: No attribute `clone` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2415:30-41: No attribute `clone` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2417:37-48: No attribute `clone` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2479:5-17: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2480:5-16: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2481:5-24: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2482:5-17: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2483:5-16: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2484:5-16: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2490:12-18: Could not find import of `triton` [missing-import] +ERROR torch/_dynamo/utils.py:2510:13-23: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2532:21-54: Module `torch.nested._internal.nested_int` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:2981:12-22: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2981:23-33: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:2981:34-46: No attribute `square` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:3011:71-81: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:3088:58-70: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:3101:29-39: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:3105:21-35: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:3106:34-45: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:3107:34-45: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:3117:36-49: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:3118:36-49: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:3119:16-30: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:3132:16-30: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:3136:34-47: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:3148:25-39: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:3178:46-59: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:3178:61-75: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:3211:29-51: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:3233:55-67: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:3251:13-28: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:3252:13-28: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:3325:27-53: Module `torch._dynamo.output_graph` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:3542:32-57: No attribute `_dispatch_pystub` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/utils.py:3980:16-31: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:4054:11-30: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:4055:13-32: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:4072:9-28: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:4133:12-24: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:4438:9-27: No attribute `Generator` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/utils.py:4439:9-32: No attribute `default_generator` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:4444:9-27: No attribute `Generator` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/utils.py:4445:9-32: No attribute `default_generator` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:4496:35-73: No attribute `_disabled_torch_function_impl` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/utils.py:4507:27-40: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:4557:14-45: Module `torch._dynamo.compiled_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:4612:8-39: Module `torch._dynamo.compiled_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:4690:17-35: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:4693:9-27: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:4697:12-34: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:4697:52-73: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:4708:12-43: No attribute `_get_function_stack_at` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/utils.py:4724:32-44: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:4724:49-61: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:4792:63-75: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:4793:12-27: No attribute `Stream` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/utils.py:4796:62-73: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:4797:12-26: No attribute `Event` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/utils.py:4890:55-86: No attribute `is_inference_mode_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/utils.py:4910:14-42: Module `torch._subclasses.meta_utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/utils.py:4936:9-27: Module `torch._C._profiler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:388:25-29: `None` is not assignable to attribute `_example` with type `SymInt | TensorWeakRef` [bad-assignment] +ERROR torch/_dynamo/variables/builder.py:398:20-24: Argument `None` is not assignable to parameter `source` with type `Source` in function `GraphArg.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/builder.py:399:22-37: Argument `BackwardState` is not assignable to parameter `_example` with type `SymInt | TensorWeakRef` in function `GraphArg.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/builder.py:534:21-56: Module `torch._subclasses.functional_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:539:64-74: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:667:13-59: Could not find import of `triton.runtime.autotuner` [missing-import] +ERROR torch/_dynamo/variables/builder.py:668:13-55: Could not find import of `triton.runtime.jit` [missing-import] +ERROR torch/_dynamo/variables/builder.py:690:13-693:14: Could not find import of `triton.tools.experimental_descriptor` [missing-import] +ERROR torch/_dynamo/variables/builder.py:695:13-72: Could not find import of `triton.tools.tensor_descriptor` [missing-import] +ERROR torch/_dynamo/variables/builder.py:738:17-23: Argument `list[LazyVariableTracker]` is not assignable to parameter `items` with type `list[VariableTracker]` in function `torch._dynamo.variables.lists.NamedTupleVariable.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/builder.py:846:34-39: Argument `list[LazyVariableTracker]` is not assignable to parameter `items` with type `list[VariableTracker]` in function `torch._dynamo.variables.dicts.SetVariable.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/builder.py:854:22-41: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:866:32-49: No attribute `DispatchKey` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:866:51-70: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:948:34-42: Object of class `NoneType` has no attribute `iinfo` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:972:40-59: Object of class `FunctionCtx` has no attribute `saved_tensors` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:1019:32-58: No attribute `_ImperativeEngine` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:1043:20-73: Class `VariableTracker` has no class attribute `create_with_source` +Object of class `NoneType` has no attribute `create_with_source` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:1063:32-44: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:1075:33-53: No attribute `_SDPAParams` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:1078:32-48: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:1078:32-60: Module `torch._functorch.pyfunctorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:1081:32-43: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:1112:32-52: No attribute `DispatchKeySet` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:1150:21-31: Object of class `_DynamicScalar` has no attribute `real` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:1156:26-36: Object of class `_DynamicScalar` has no attribute `real` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:1222:22-32: `new_symint` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/builder.py:1223:17-27: `new_symint` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/builder.py:1229:17-27: `new_symint` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/builder.py:1233:36-46: `new_symint` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/builder.py:1236:24-34: `new_symint` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/builder.py:1240:61-71: `new_symint` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/builder.py:1243:17-27: `new_symint` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/builder.py:1243:68-78: `new_symint` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/builder.py:1322:20-64: Class `VariableTracker` has no class attribute `create_with_source` +Object of class `NoneType` has no attribute `create_with_source` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:1341:17-22: Argument `DummyModule | ModuleType` is not assignable to parameter `value` with type `ModuleType` in function `torch._dynamo.variables.misc.PythonModuleVariable.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/builder.py:1347:47-66: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:1396:24-68: Class `VariableTracker` has no class attribute `create_with_source` +Object of class `NoneType` has no attribute `create_with_source` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:1448:34-39: Argument `type[Unknown] | Unknown` is not assignable to parameter `_example` with type `SymInt | TensorWeakRef` in function `GraphArg.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/builder.py:1498:30-35: Argument `type[Unknown] | Unknown` is not assignable to parameter `_example` with type `SymInt | TensorWeakRef` in function `GraphArg.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/builder.py:1568:17-23: Argument `list[LazyVariableTracker]` is not assignable to parameter `items` with type `list[VariableTracker]` in function `torch._dynamo.variables.lists.BaseListVariable.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/builder.py:1588:17-23: Argument `list[LazyVariableTracker]` is not assignable to parameter `items` with type `list[VariableTracker]` in function `torch._dynamo.variables.lists.BaseListVariable.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/builder.py:1606:17-23: Argument `list[LazyVariableTracker]` is not assignable to parameter `items` with type `list[VariableTracker]` in function `torch._dynamo.variables.dicts.FrozensetVariable.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/builder.py:1606:17-23: Argument `list[LazyVariableTracker]` is not assignable to parameter `items` with type `list[VariableTracker]` in function `torch._dynamo.variables.dicts.SetVariable.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/builder.py:1688:53-63: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:1765:17-22: Argument `list[Unknown]` is not assignable to parameter `_example` with type `SymInt | TensorWeakRef` in function `GraphArg.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/builder.py:1793:59-65: Argument `list[LazyVariableTracker]` is not assignable to parameter `items` with type `list[VariableTracker]` in function `torch._dynamo.variables.lists.BaseListVariable.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/builder.py:1924:34-55: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:1924:34-68: Module `torch.fx.experimental.proxy_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:1925:25-39: Object of class `_AttrProxy` has no attribute `get_base` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:1937:25-56: Object of class `FunctionType` has no attribute `__func__` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:1941:37-61: Type `object` is not iterable [not-iterable] +ERROR torch/_dynamo/variables/builder.py:1948:25-53: Object of class `FunctionType` has no attribute `__func__` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:1951:37-58: Type `object` is not iterable [not-iterable] +ERROR torch/_dynamo/variables/builder.py:2159:39-75: Module `torch.nested._internal.nested_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:2187:32-54: Object of class `NoneType` has no attribute `dtype` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:2191:69-91: Object of class `NoneType` has no attribute `dtype` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:2244:20-44: Module `torch.distributed.tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:2321:29-50: Object of class `VariableTracker` has no attribute `proxy` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:2367:74-86: `tensor_value` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/builder.py:2369:13-25: `tensor_value` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/builder.py:2376:18-30: `tensor_value` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/builder.py:2380:54-66: `tensor_value` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/builder.py:2397:13-25: `tensor_value` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/builder.py:2401:32-44: `tensor_value` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/builder.py:2472:25-47: No matching overload found for function `dict.__init__` called with arguments: (frozenset[str]) [no-matching-overload] +ERROR torch/_dynamo/variables/builder.py:2559:16-38: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:2575:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:2575:51-64: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:2580:12-31: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:2664:57-66: Object of class `VariableTracker` has no attribute `sym_num` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:2674:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:2741:37-42: `value` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/builder.py:2741:37-42: Argument `object` is not assignable to parameter `class_or_instance` with type `DataclassInstance | type[DataclassInstance]` in function `dataclasses.fields` [bad-argument-type] +ERROR torch/_dynamo/variables/builder.py:2757:17-44: No attribute `_is_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:2791:14-51: No attribute `DisableTorchFunctionSubclass` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:2864:17-40: Module `torch._dynamo.variables` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:2865:17-40: Module `torch._dynamo.variables` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:2910:22-59: No attribute `DisableTorchFunctionSubclass` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:2924:68-76: Unpacked keyword argument `bool` is not assignable to parameter `source` with type `Source | None` in function `wrap_to_fake_tensor_and_record` [bad-argument-type] +ERROR torch/_dynamo/variables/builder.py:3001:52-70: No attribute `Generator` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3006:30-56: No attribute `_DisableFuncTorch` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3010:32-42: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3055:38-48: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3078:35-47: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3090:35-46: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3103:43-54: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3115:39-50: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3131:13-41: Module `torch._functorch.predispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:3132:13-41: Module `torch._functorch.predispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:3155:13-54: No attribute `_are_functorch_transforms_active` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3156:13-32: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:3160:13-44: No attribute `_get_cudnn_sdp_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3161:13-44: No attribute `_get_flash_sdp_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3162:13-52: No attribute `_get_mem_efficient_sdp_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3163:13-43: No attribute `_get_math_sdp_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3164:13-51: No attribute `_get_overrideable_sdp_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3195:9-44: Module `torch._subclasses.functional_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:3380:12-48: Module `torch.nested._internal.nested_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:3418:27-54: Object of class `SymbolicContext` has no attribute `dynamic_sizes` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3419:29-58: Object of class `SymbolicContext` has no attribute `dynamic_strides` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3420:30-60: Object of class `SymbolicContext` has no attribute `constraint_sizes` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3421:32-64: Object of class `SymbolicContext` has no attribute `constraint_strides` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3423:27-54: Object of class `SymbolicContext` has no attribute `tensor_source` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3424:49-98: Object of class `SymbolicContext` has no attribute `shape_env_to_source_to_symbol_cache` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3436:49-84: Argument `Unknown | None` is not assignable to parameter `shape_env_to_source_to_symbol_cache` with type `dict[int, dict[str, Expr]]` in function `torch.fx.experimental.symbolic_shapes.StatefulSymbolicContext.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/builder.py:3454:49-84: Argument `Unknown | None` is not assignable to parameter `shape_env_to_source_to_symbol_cache` with type `dict[int, dict[str, Expr]]` in function `torch.fx.experimental.symbolic_shapes.StatefulSymbolicContext.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/builder.py:3520:21-43: No matching overload found for function `dict.__init__` called with arguments: (frozenset[str]) [no-matching-overload] +ERROR torch/_dynamo/variables/builder.py:3637:45-80: Argument `Unknown | None` is not assignable to parameter `shape_env_to_source_to_symbol_cache` with type `dict[int, dict[str, Expr]]` in function `torch.fx.experimental.symbolic_shapes.StatefulSymbolicContext.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/builder.py:3768:24-56: Class `SourcelessBuilder` has no class attribute `_type_handlers` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3775:32-70: No attribute `_HAS_DEFAULT_FACTORY_CLASS` in module `dataclasses` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3782:20-54: Expected a callable, got `None` [not-callable] +ERROR torch/_dynamo/variables/builder.py:3782:55-60: Expected 0 positional arguments, got 1 in function `torch._dynamo.variables.base.VariableTracker.__init__` [bad-argument-count] +ERROR torch/_dynamo/variables/builder.py:3787:19-62: Expected a callable, got `None` [not-callable] +ERROR torch/_dynamo/variables/builder.py:3787:47-61: Object of class `FunctionType` has no attribute `__self__` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3787:63-77: Object of class `FunctionType` has no attribute `__self__` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3787:63-77: Expected 0 positional arguments, got 1 in function `torch._dynamo.variables.base.VariableTracker.__init__` [bad-argument-count] +ERROR torch/_dynamo/variables/builder.py:3790:20-45: Expected a callable, got `None` [not-callable] +ERROR torch/_dynamo/variables/builder.py:3790:46-51: Expected 0 positional arguments, got 1 in function `torch._dynamo.variables.base.VariableTracker.__init__` [bad-argument-count] +ERROR torch/_dynamo/variables/builder.py:3792:32-49: No attribute `DispatchKey` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3792:51-70: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:3814:32-51: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:3824:32-55: Module `torch._dynamo.variables` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:3827:20-43: Module `torch._dynamo.variables` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:3861:27-68: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3865:18-22: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3865:26-3869:10: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3870:18-22: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3870:26-3872:10: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3873:18-23: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3873:27-3875:10: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3876:18-28: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3876:32-3878:10: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3879:18-41: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3879:54-58: Cannot index into `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [bad-index] +ERROR torch/_dynamo/variables/builder.py:3880:18-32: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3880:45-49: Cannot index into `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [bad-index] +ERROR torch/_dynamo/variables/builder.py:3881:18-32: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3881:45-49: Cannot index into `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [bad-index] +ERROR torch/_dynamo/variables/builder.py:3882:18-31: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3882:35-74: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3883:18-34: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3883:38-83: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3885:18-38: No attribute `DispatchKeySet` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builder.py:3885:42-3887:10: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3888:18-34: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:3888:18-46: Module `torch._functorch.pyfunctorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:3888:18-67: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3889:13-3891:14: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3894:18-49: Module `torch.distributions.constraints` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:3894:18-55: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3895:13-3897:14: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3899:18-49: Module `torch.distributions.constraints` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:3899:18-59: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3900:13-3902:14: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3904:18-49: Module `torch.distributions.constraints` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builder.py:3904:18-60: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builder.py:3905:13-3907:14: Cannot set item in `dict[type[set], (tx: Unknown, value: Unknown) -> SetVariable]` [unsupported-operation] +ERROR torch/_dynamo/variables/builtin.py:245:12-22: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builtin.py:246:12-22: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builtin.py:247:16-26: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builtin.py:247:36-47: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builtin.py:248:16-26: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builtin.py:248:36-47: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builtin.py:935:19-29: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builtin.py:936:18-29: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builtin.py:937:20-33: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builtin.py:1327:22-34: No attribute `select` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builtin.py:1724:60-72: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builtin.py:1750:65-76: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builtin.py:1760:38-51: No attribute `maximum` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builtin.py:1760:58-71: No attribute `minimum` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/builtin.py:2652:19-44: Module `torch._dynamo.trace_rules` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/builtin.py:2774:25-43: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/constant.py:127:55-65: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/constant.py:261:26-46: `in` is not supported between `Any` and `complex` [not-iterable] +ERROR torch/_dynamo/variables/constant.py:261:26-46: `in` is not supported between `Any` and `float` [not-iterable] +ERROR torch/_dynamo/variables/constant.py:261:26-46: `in` is not supported between `Any` and `int` [not-iterable] +ERROR torch/_dynamo/variables/ctx_manager.py:253:27-46: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:254:9-28: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:257:21-40: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:263:13-32: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:275:13-32: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:296:22-41: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:299:21-40: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:303:13-32: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:315:13-32: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:345:21-37: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:345:21-54: Module `torch._functorch.eager_transforms` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:347:25-41: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:347:25-58: Module `torch._functorch.eager_transforms` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:351:13-32: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:362:30-49: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:382:27-56: No attribute `_is_fwd_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/ctx_manager.py:383:9-39: No attribute `_set_fwd_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/ctx_manager.py:386:21-51: No attribute `_set_fwd_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/ctx_manager.py:390:13-43: No attribute `_set_fwd_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/ctx_manager.py:402:13-43: No attribute `_set_fwd_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/ctx_manager.py:430:13-39: No attribute `_enter_dual_level` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/ctx_manager.py:442:13-38: No attribute `_exit_dual_level` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/ctx_manager.py:472:22-41: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:473:43-62: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:476:13-32: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:487:30-49: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:526:9-20: Class member `CatchWarningsCtxManagerVariable.reconstruct` overrides parent class `ContextWrappingVariable` in an inconsistent manner [bad-param-name-override] +ERROR torch/_dynamo/variables/ctx_manager.py:564:22-41: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:567:43-62: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:570:13-29: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:570:13-41: Module `torch._functorch.predispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:582:13-29: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:582:13-41: Module `torch._functorch.predispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:603:29-50: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/ctx_manager.py:645:12-33: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/ctx_manager.py:647:34-60: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/ctx_manager.py:649:13-39: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/ctx_manager.py:664:44-75: No attribute `is_inference_mode_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/ctx_manager.py:676:30-61: No attribute `is_inference_mode_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/ctx_manager.py:703:21-42: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/ctx_manager.py:704:13-39: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/ctx_manager.py:710:17-43: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/ctx_manager.py:825:9-25: Class member `TorchFunctionDisableVariable.set_cleanup_hook` overrides parent class `ContextWrappingVariable` in an inconsistent manner [bad-param-name-override] +ERROR torch/_dynamo/variables/ctx_manager.py:898:30-68: No attribute `_set_deterministic_algorithms` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/ctx_manager.py:900:9-47: No attribute `_set_deterministic_algorithms` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/ctx_manager.py:919:17-35: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:951:17-35: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:955:13-31: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:959:34-52: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:961:13-31: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:1091:9-20: Class member `ProfilerContextVariable.reconstruct` overrides parent class `ContextWrappingVariable` in an inconsistent manner [bad-param-name-override] +ERROR torch/_dynamo/variables/ctx_manager.py:1367:29-47: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/ctx_manager.py:1368:29-47: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/functions.py:628:18-44: Module `torch._dynamo.side_effects` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/functions.py:645:22-48: Module `torch._dynamo.side_effects` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/functions.py:1839:34-47: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] + WARN torch/_dynamo/variables/functions.py:1981:13-38: `torch.distributed.distributed_c10d._reduce_scatter_base` is deprecated [deprecated] +ERROR torch/_dynamo/variables/functions.py:2446:9-17: Class member `DynamoTritonHOPifier.call_HOP` overrides parent class `TritonHOPifier` in an inconsistent manner [bad-param-name-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:98:24-57: Argument `list[bool] | None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR torch/_dynamo/variables/higher_order_ops.py:98:66-83: Argument `list[Any] | None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR torch/_dynamo/variables/higher_order_ops.py:189:17-38: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:315:40-79: No matching overload found for function `zip.__new__` called with arguments: (type[zip[_T_co]], VariableTracker | tuple[VariableTracker, ...], Unknown) [no-matching-overload] +ERROR torch/_dynamo/variables/higher_order_ops.py:315:59-78: Object of class `VariableTracker` has no attribute `items` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:349:55-74: Object of class `VariableTracker` has no attribute `items` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:362:13-32: Object of class `VariableTracker` has no attribute `items` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:494:17-35: Object of class `VariableTracker` has no attribute `proxy` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:532:23-33: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:560:33-61: Object of class `VariableTracker` has no attribute `supports_input_mutation` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:561:27-49: Object of class `VariableTracker` has no attribute `supports_aliasing` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:570:33-43: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:570:68-78: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:605:23-33: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:669:9-19: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:837:37-46: Object of class `NoneType` has no attribute `meta` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:846:37-46: Object of class `NoneType` has no attribute `meta` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:884:33-42: Object of class `NoneType` has no attribute `meta` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:885:28-37: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:907:25-32: `new_arg` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/higher_order_ops.py:1029:50-72: Object of class `tuple` has no attribute `values` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:1065:32-54: Object of class `tuple` has no attribute `values` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:1150:9-26: `prev_side_effects` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/higher_order_ops.py:1153:34-51: `prev_side_effects` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/higher_order_ops.py:1210:23-49: Module `torch._dynamo.output_graph` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/higher_order_ops.py:1314:49-55: Argument `SubgraphTracer | None` is not assignable to parameter `prior_tracer` with type `SubgraphTracer` in function `torch._dynamo.output_graph.OutputGraph.subtracer` [bad-argument-type] +ERROR torch/_dynamo/variables/higher_order_ops.py:1361:21-44: Object of class `tuple` has no attribute `append` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:1405:28-65: Object of class `Tracer` has no attribute `tracked_tensor_or_symint_vt` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:1410:44-60: Argument `tuple[Unknown, ...]` is not assignable to parameter `output` with type `VariableTracker` in function `validate_subgraph_output_types` [bad-argument-type] +ERROR torch/_dynamo/variables/higher_order_ops.py:1417:35-45: Object of class `object` has no attribute `as_proxy` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:1419:21-66: Object of class `Tracer` has no attribute `maybe_lift_tracked_freevar_to_input` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:1425:21-66: Object of class `Tracer` has no attribute `maybe_lift_tracked_freevar_to_input` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:1436:31-56: Object of class `Tracer` has no attribute `lifted_freevars` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:1603:29-37: Argument `Unknown | None` is not assignable to parameter `treespec` with type `TreeSpec` in function `OutputSpec.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/higher_order_ops.py:1648:29-37: Argument `Unknown | None` is not assignable to parameter `treespec` with type `TreeSpec` in function `OutputSpec.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/higher_order_ops.py:1747:9-23: Class member `CustomFunctionHigherOrderOperatorVariable._call_function` overrides parent class `TorchHigherOrderOperatorVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:1753:16-39: Module `torch._dynamo.variables` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/higher_order_ops.py:1755:13-36: Module `torch._dynamo.variables` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/higher_order_ops.py:1758:31-42: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/higher_order_ops.py:1892:13-31: Object of class `NoneType` has no attribute `epoch` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:1993:9-23: Class member `CallTorchbindHigherOrderVariable._call_function` overrides parent class `TorchHigherOrderOperatorVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:2261:14-26: Cannot use `None` as a context manager [bad-context-manager] +ERROR torch/_dynamo/variables/higher_order_ops.py:2261:14-26: Cannot use `None` as a context manager [bad-context-manager] +ERROR torch/_dynamo/variables/higher_order_ops.py:2615:26-86: Argument `tuple[Any, Any]` is not assignable to parameter `args` with type `list[VariableTracker]` in function `torch._dynamo.variables.base.VariableTracker.call_method` [bad-argument-type] +ERROR torch/_dynamo/variables/higher_order_ops.py:2677:9-23: Class member `PrintHigherOrderVariable._call_function` overrides parent class `TorchHigherOrderOperatorVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:2701:9-23: Class member `ExecutorchCallDelegateHigherOrderVariable._call_function` overrides parent class `TorchHigherOrderOperatorVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:2738:14-26: Cannot use `None` as a context manager [bad-context-manager] +ERROR torch/_dynamo/variables/higher_order_ops.py:2738:14-26: Cannot use `None` as a context manager [bad-context-manager] +ERROR torch/_dynamo/variables/higher_order_ops.py:2739:29-43: `lowered_module` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/higher_order_ops.py:2739:29-59: Object of class `object` has no attribute `original_module` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:2746:19-31: `lowered_node` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/higher_order_ops.py:2762:9-22: Class member `FunctorchHigherOrderVariable.call_function` overrides parent class `UserFunctionVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:2798:53-67: Argument `VariableTracker` is not assignable to parameter `ctx_manager_vt` with type `ContextWrappingVariable` in function `torch._dynamo.variables.ctx_manager.RepararametrizeModuleContextVariable.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/higher_order_ops.py:2880:9-23: Class member `WrapHigherOrderVariable._call_function` overrides parent class `TorchHigherOrderOperatorVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:2907:16-2915:10: Returned type `VariableTracker | None` is not assignable to declared return type `VariableTracker` [bad-return] +ERROR torch/_dynamo/variables/higher_order_ops.py:2924:9-22: Class member `WrapWithSetGradEnabledHigherOrderVariable.call_function` overrides parent class `TorchHigherOrderOperatorVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:3011:9-22: Class member `WrapWithAutocastHigherOrderVariable.call_function` overrides parent class `TorchHigherOrderOperatorVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:3168:16-3176:10: Returned type `VariableTracker | None` is not assignable to declared return type `VariableTracker` [bad-return] +ERROR torch/_dynamo/variables/higher_order_ops.py:3180:9-23: Class member `OutDtypeHigherOrderVariable._call_function` overrides parent class `TorchHigherOrderOperatorVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:3319:32-55: Module `torch._dynamo.variables` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/higher_order_ops.py:3322:22-45: Module `torch._dynamo.variables` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/higher_order_ops.py:3355:16-3363:10: Returned type `VariableTracker | None` is not assignable to declared return type `VariableTracker` [bad-return] +ERROR torch/_dynamo/variables/higher_order_ops.py:3378:33-56: Module `torch._dynamo.variables` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/higher_order_ops.py:3381:23-46: Module `torch._dynamo.variables` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/higher_order_ops.py:3409:16-3417:10: Returned type `VariableTracker | None` is not assignable to declared return type `VariableTracker` [bad-return] +ERROR torch/_dynamo/variables/higher_order_ops.py:3421:9-22: Class member `ExportTracepointHigherOrderVariable.call_function` overrides parent class `TorchHigherOrderOperatorVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:3444:9-23: Class member `RunWithRNGStateHigherOrderVariable._call_function` overrides parent class `TorchHigherOrderOperatorVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:3467:9-23: Class member `AutoFunctionalizeHigherOrderVariable._call_function` overrides parent class `TorchHigherOrderOperatorVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:3504:9-23: Class member `FlexAttentionBackwardHighOrderVariable._call_function` overrides parent class `TorchHigherOrderOperatorVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:3527:22-28: `p_args` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/higher_order_ops.py:3528:24-32: `p_kwargs` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/higher_order_ops.py:3542:9-23: Class member `TraceWrappedHigherOrderOperatorVariable._call_function` overrides parent class `TorchHigherOrderOperatorVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:3578:17-49: Argument `tuple[Any]` is not assignable to parameter `args` with type `list[VariableTracker]` in function `torch._dynamo.variables.base.VariableTracker.call_method` [bad-argument-type] +ERROR torch/_dynamo/variables/higher_order_ops.py:3580:56-67: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:3587:45-64: Object of class `VariableTracker` has no attribute `requires_grad` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:3591:21-53: Argument `tuple[Any]` is not assignable to parameter `args` with type `list[VariableTracker]` in function `torch._dynamo.variables.base.VariableTracker.call_method` [bad-argument-type] +ERROR torch/_dynamo/variables/higher_order_ops.py:3631:9-23: Class member `FlexAttentionHigherOrderVariable._call_function` overrides parent class `TorchHigherOrderOperatorVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:3654:44-78: No attribute `_flex_attention` in module `torch.nn.attention` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:3679:14-35: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/higher_order_ops.py:3679:14-48: Module `torch.fx.experimental.proxy_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/higher_order_ops.py:3708:9-22: Class member `AutogradFunctionApplyVariable.call_function` overrides parent class `VariableTracker` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:3754:22-48: Module `torch._dynamo.output_graph` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/higher_order_ops.py:3790:13-19: `fwd_fn` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/higher_order_ops.py:3791:13-21: `fwd_args` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/higher_order_ops.py:3814:22-48: Module `torch._dynamo.output_graph` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/higher_order_ops.py:3854:33-39: `fwd_fn` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/higher_order_ops.py:3854:33-39: Argument `UserFunctionVariable | UserMethodVariable` is not assignable to parameter `source_target` with type `((...) -> Any) | str | None` in function `torch._dynamo.output_graph.OutputGraph.subtracer` [bad-argument-type] +ERROR torch/_dynamo/variables/higher_order_ops.py:3860:21-27: `bwd_fn` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/higher_order_ops.py:3869:20-37: Module `torch._dynamo.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/higher_order_ops.py:3871:24-41: Module `torch._dynamo.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/higher_order_ops.py:3875:34-60: Module `torch._dynamo.output_graph` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/higher_order_ops.py:3909:29-35: `bwd_fn` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/higher_order_ops.py:4025:13-4029:81: `tuple[()] | tuple[Unknown]` is not assignable to `tuple[()]` (caused by inconsistent types when breaking cycles) [bad-assignment] +ERROR torch/_dynamo/variables/higher_order_ops.py:4056:18-4059:10: `dict[str, list[bool] | list[@_]]` is not assignable to variable `kwargs` with type `dict[str, VariableTracker]` [bad-assignment] +ERROR torch/_dynamo/variables/higher_order_ops.py:4156:16-4164:10: Returned type `VariableTracker | None` is not assignable to declared return type `VariableTracker` [bad-return] +ERROR torch/_dynamo/variables/higher_order_ops.py:4172:9-41: Class member `InvokeSubgraphHigherOrderVariable.install_subgraph_in_output_graph` overrides parent class `WrapHigherOrderVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:4199:24-43: Object of class `object` has no attribute `forward` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:4200:23-42: Object of class `object` has no attribute `forward` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:4267:16-4275:10: Returned type `VariableTracker | None` is not assignable to declared return type `VariableTracker` [bad-return] +ERROR torch/_dynamo/variables/higher_order_ops.py:4319:9-14: Class member `LocalMapWrappedHigherOrderVariable.build` overrides parent class `WrapHigherOrderVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/higher_order_ops.py:4364:50-69: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:4365:50-70: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:4368:31-51: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:4369:30-49: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:4370:36-61: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:4371:35-59: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:4372:28-45: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:4388:20-39: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:4389:26-45: Argument `object` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR torch/_dynamo/variables/higher_order_ops.py:4401:34-66: No matching overload found for function `zip.__new__` called with arguments: (type[zip[_T_co]], object, list[VariableTracker]) [no-matching-overload] +ERROR torch/_dynamo/variables/higher_order_ops.py:4437:35-54: Argument `object` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR torch/_dynamo/variables/higher_order_ops.py:4439:36-56: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:4507:33-53: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:4508:35-55: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:4533:31-51: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:4534:30-71: Cannot index into `object` [bad-index] +ERROR torch/_dynamo/variables/higher_order_ops.py:4535:36-61: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:4536:35-59: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:4537:28-45: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/higher_order_ops.py:4540:16-19: Returned type `VariableTracker | None` is not assignable to declared return type `VariableTracker` [bad-return] +ERROR torch/_dynamo/variables/lists.py:71:13-23: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/lists.py:1160:16-26: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/lists.py:1195:20-30: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/lists.py:1197:54-64: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/lists.py:1200:13-23: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/lists.py:1296:58-68: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:131:23-46: Object of class `NoneType` has no attribute `python_type` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:133:24-42: Argument `object | Unknown` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.TypeSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/misc.py:133:47-65: Object of class `NoneType` has no attribute `source` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:136:27-44: Object of class `NoneType` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:158:57-75: Argument `TypeSource | object | Unknown` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.TypeMROSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/misc.py:184:59-63: Argument `Self@SuperVariable` is not assignable to parameter `tx` with type `InstructionTranslator` in function `SuperVariable._resolved_getattr_and_source` [bad-argument-type] +ERROR torch/_dynamo/variables/misc.py:198:62-66: Argument `Self@SuperVariable` is not assignable to parameter `tx` with type `InstructionTranslator` in function `SuperVariable._resolved_getattr_and_source` [bad-argument-type] +ERROR torch/_dynamo/variables/misc.py:233:13-31: Object of class `NoneType` has no attribute `source` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:268:20-38: Object of class `NoneType` has no attribute `source` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:269:45-63: Argument `object | Unknown` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.TypeSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/misc.py:271:25-47: Object of class `NoneType` has no attribute `value_type` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:283:36-47: Argument `Unknown | None` is not assignable to parameter `obj` with type `VariableTracker` in function `torch._dynamo.variables.functions.UserMethodVariable.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/misc.py:304:65-76: Argument `Unknown | None` is not assignable to parameter `item` with type `VariableTracker` in function `torch._dynamo.side_effects.SideEffects.is_attribute_mutation` [bad-argument-type] +ERROR torch/_dynamo/variables/misc.py:319:17-28: Argument `Unknown | None` is not assignable to parameter `item` with type `VariableTracker` in function `torch._dynamo.side_effects.SideEffects.store_attr` [bad-argument-type] +ERROR torch/_dynamo/variables/misc.py:319:30-34: Argument `VariableTracker | Any` is not assignable to parameter `name` with type `str` in function `torch._dynamo.side_effects.SideEffects.store_attr` [bad-argument-type] +ERROR torch/_dynamo/variables/misc.py:326:20-52: Object of class `NoneType` has no attribute `call_method` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:331:20-51: Object of class `NoneType` has no attribute `call_method` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:336:20-53: Object of class `NoneType` has no attribute `call_method` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:341:20-52: Object of class `NoneType` has no attribute `call_method` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:345:25-38: Object of class `VariableTracker` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:347:17-28: Argument `Unknown | None` is not assignable to parameter `item` with type `VariableTracker` in function `torch._dynamo.side_effects.SideEffects.has_pending_mutation_of_attr` [bad-argument-type] +ERROR torch/_dynamo/variables/misc.py:350:21-32: Argument `Unknown | None` is not assignable to parameter `item` with type `VariableTracker` in function `torch._dynamo.side_effects.SideEffects.load_attr` [bad-argument-type] +ERROR torch/_dynamo/variables/misc.py:358:54-71: Object of class `NoneType` has no attribute `value` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:363:16-34: Object of class `NoneType` has no attribute `source` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:365:49-67: Argument `object | Unknown` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.GenericAttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/misc.py:366:46-56: `attr_value` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/misc.py:367:26-64: No attribute `_disabled_torch_function_impl` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:374:23-36: Object of class `VariableTracker` has no attribute `items` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:375:42-55: Object of class `VariableTracker` has no attribute `items` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:438:28-35: `ExceptionVariable` is not assignable to attribute `__context__` with type `ConstantVariable` [bad-assignment] +ERROR torch/_dynamo/variables/misc.py:475:30-33: Argument `VariableTracker` is not assignable to parameter `context` with type `ExceptionVariable` in function `ExceptionVariable.set_context` [bad-argument-type] +ERROR torch/_dynamo/variables/misc.py:486:34-37: `BuiltinVariable | ConstantVariable | ExceptionVariable | UserDefinedExceptionClassVariable | UserDefinedExceptionObjectVariable` is not assignable to attribute `__cause__` with type `ConstantVariable` [bad-assignment] +ERROR torch/_dynamo/variables/misc.py:565:9-22: Class member `DelayGraphBreakVariable.call_function` overrides parent class `UnknownVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/misc.py:575:30-46: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:594:60-71: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/misc.py:597:9-22: Class member `ComptimeVariable.call_function` overrides parent class `VariableTracker` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/misc.py:629:23-40: Object of class `VariableTracker` has no attribute `items` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:673:5-38: Object of class `FunctionType` has no attribute `_origin` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:791:37-52: Object of class `Signature` has no attribute `_parameters` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:819:32-43: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/misc.py:864:25-865:44: Class `VariableTracker` has no class attribute `create_with_source` +Object of class `NoneType` has no attribute `create_with_source` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:869:28-52: Expected a callable, got `None` [not-callable] +ERROR torch/_dynamo/variables/misc.py:869:53-57: Expected 0 positional arguments, got 1 in function `torch._dynamo.variables.base.VariableTracker.__init__` [bad-argument-count] +ERROR torch/_dynamo/variables/misc.py:933:13-17: Argument `None` is not assignable to parameter `cls_source` with type `Source` in function `torch._dynamo.side_effects.SideEffects.track_object_new` [bad-argument-type] +ERROR torch/_dynamo/variables/misc.py:946:12-22: Object of class `AutogradFunctionContextVariable` has no attribute `proxy` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:1002:16-42: Object of class `NoneType` has no attribute `tensors` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:1003:13-39: Object of class `NoneType` has no attribute `tensors` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:1005:13-39: Object of class `NoneType` has no attribute `tensors` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:1020:50-77: Object of class `object` has no attribute `needs_input_grad` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:1046:16-47: Module `torch._dynamo.compiled_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/misc.py:1083:9-22: Class member `LambdaVariable.call_function` overrides parent class `VariableTracker` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/misc.py:1145:9-22: Class member `GetAttrVariable.call_function` overrides parent class `VariableTracker` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/misc.py:1237:9-22: Class member `MethodWrapperVariable.call_function` overrides parent class `VariableTracker` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/misc.py:1272:29-61: `(self: type) -> MappingProxyType[str, Any]` is not subscriptable [unsupported-operation] +ERROR torch/_dynamo/variables/misc.py:1367:42-52: `attr_value` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/misc.py:1403:20-35: Object of class `InstructionTranslator` has no attribute `side_effects` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:1498:9-22: Class member `NumpyVariable.call_function` overrides parent class `VariableTracker` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/misc.py:1734:16-39: Object of class `NoneType` has no attribute `reconstruct` [missing-attribute] +ERROR torch/_dynamo/variables/misc.py:1737:47-51: bool literal cannot be used in annotations [invalid-annotation] +ERROR torch/_dynamo/variables/misc.py:1775:13-19: Returned type `None` is not assignable to declared return type `VariableTracker` [bad-return] +ERROR torch/_dynamo/variables/misc.py:1832:45-50: `cargs` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/misc.py:1832:54-61: `ckwargs` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/misc.py:2071:9-14: Class member `WeakRefVariable.build` overrides parent class `VariableTracker` in an inconsistent manner [bad-param-name-override] +ERROR torch/_dynamo/variables/misc.py:2087:9-22: Class member `WeakRefVariable.call_function` overrides parent class `VariableTracker` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/nn_module.py:210:57-68: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.GetItemSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/nn_module.py:237:39-50: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/nn_module.py:319:63-72: Unpacked keyword argument `AttrSource` is not assignable to parameter `source_fn` with type `((...) -> Any) | None` in function `torch._dynamo.variables.functions.UserMethodVariable.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/nn_module.py:383:45-51: `subobj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/nn_module.py:383:68-74: Argument `AttrSource | Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.NNModuleSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/nn_module.py:395:23-29: `subobj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/nn_module.py:402:21-27: `subobj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/nn_module.py:405:25-31: `subobj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/nn_module.py:407:21-27: `subobj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/nn_module.py:411:25-31: `subobj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/nn_module.py:413:21-27: `subobj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/nn_module.py:415:25-31: `subobj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/nn_module.py:416:53-59: `subobj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/nn_module.py:417:35-41: `subobj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/nn_module.py:417:55-61: `subobj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/nn_module.py:419:50-56: `subobj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/nn_module.py:419:73-79: Argument `AttrSource | Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.NNModuleSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/nn_module.py:423:107-113: `subobj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/nn_module.py:424:106-112: `subobj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/nn_module.py:426:79-85: `subobj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/nn_module.py:435:9-22: Class member `NNModuleVariable.call_function` overrides parent class `VariableTracker` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/nn_module.py:476:62-73: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/nn_module.py:508:26-65: Module `torch.ao.quantization.pt2e.export_utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/nn_module.py:621:23-36: Object of class `VariableTracker` has no attribute `items` [missing-attribute] +ERROR torch/_dynamo/variables/nn_module.py:630:53-64: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.GetItemSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/nn_module.py:697:57-68: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/nn_module.py:710:57-68: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/nn_module.py:718:57-68: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/nn_module.py:726:57-68: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/nn_module.py:734:57-68: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/nn_module.py:744:57-68: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/nn_module.py:747:57-68: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/nn_module.py:750:57-68: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/nn_module.py:841:45-56: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/nn_module.py:919:47-58: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/nn_module.py:1044:16-33: Object of class `object` has no attribute `cls_to_become` [missing-attribute] +ERROR torch/_dynamo/variables/nn_module.py:1058:20-32: Object of class `object` has no attribute `__call__` [missing-attribute] +ERROR torch/_dynamo/variables/nn_module.py:1059:24-38: Object of class `object` has no attribute `_call_impl` [missing-attribute] +ERROR torch/_dynamo/variables/nn_module.py:1072:24-84: Object of class `VariableTracker` has no attribute `len` [missing-attribute] +ERROR torch/_dynamo/variables/nn_module.py:1073:24-80: Object of class `VariableTracker` has no attribute `len` [missing-attribute] +ERROR torch/_dynamo/variables/nn_module.py:1074:24-79: Object of class `VariableTracker` has no attribute `len` [missing-attribute] +ERROR torch/_dynamo/variables/nn_module.py:1075:24-83: Object of class `VariableTracker` has no attribute `len` [missing-attribute] +ERROR torch/_dynamo/variables/nn_module.py:1089:70-73: Argument `object` is not assignable to parameter `mod` with type `Module` in function `record_nn_module_stack` [bad-argument-type] +ERROR torch/_dynamo/variables/script_object.py:65:37-55: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/sdpa.py:72:28-48: No attribute `_SDPAParams` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/streams.py:36:13-24: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/streams.py:55:37-49: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/streams.py:66:32-44: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/streams.py:73:41-53: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/streams.py:75:31-43: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/streams.py:81:40-51: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/streams.py:83:30-41: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/streams.py:202:43-55: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/streams.py:266:16-28: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/streams.py:284:16-28: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/streams.py:356:21-56: Module `torch._dynamo.graph_bytecode_inputs` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/streams.py:399:16-27: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:133:20-39: No attribute `TensorBase` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:268:16-35: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/tensor.py:275:30-49: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/tensor.py:402:13-31: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/tensor.py:402:13-46: No attribute `_get_data_attr` in module `torch._C._autograd` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:495:21-30: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:554:49-65: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:565:12-40: `_input_associated_real_value` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/tensor.py:573:23-45: Object of class `NoneType` has no attribute `make_guard` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:574:23-51: `_input_associated_real_value` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/tensor.py:827:18-41: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:840:41-53: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:904:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:933:27-40: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:943:22-46: Object of class `bool` has no attribute `as_python_constant` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:968:17-27: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:969:17-28: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:970:17-28: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:971:17-28: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:1039:17-29: No attribute `select` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:1059:22-35: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/tensor.py:1202:61-70: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:1212:61-70: No attribute `div` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:1215:61-70: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:1229:57-65: No attribute `eq` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:1232:57-66: No attribute `any` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:1368:29-61: Object of class `bool` has no attribute `as_python_constant` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:1459:21-40: No attribute `scalar_tensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:1467:16-37: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/tensor.py:1467:16-45: Module `torch.fx.experimental._config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/tensor.py:1590:9-20: Class member `NumpyNdarrayVariable.call_method` overrides parent class `TensorVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/tensor.py:1645:16-26: Object of class `NoneType` has no attribute `ndarray` [missing-attribute] +ERROR torch/_dynamo/variables/tensor.py:1716:43-54: Argument `Source | None` is not assignable to parameter `cls_source` with type `Source` in function `torch._dynamo.variables.torch_function.TensorWithTFOverrideVariable.from_tensor_var` [bad-argument-type] +ERROR torch/_dynamo/variables/tensor.py:1740:69-72: `var` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/tensor.py:1744:23-26: `var` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/tensor.py:1746:16-19: `var` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/torch.py:115:9-46: No attribute `DisableTorchFunctionSubclass` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:116:9-38: No attribute `DisableTorchFunction` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:117:9-25: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:117:9-30: Module `torch._functorch.vmap` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:118:9-25: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:118:9-42: Module `torch._functorch.eager_transforms` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:119:9-25: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:119:9-42: Module `torch._functorch.eager_transforms` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:120:9-25: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:120:9-42: Module `torch._functorch.eager_transforms` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:129:9-27: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:145:9-31: No attribute `_shape_as_tensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:161:5-36: No attribute `_get_cublas_allow_tf32` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:162:5-38: No attribute `_is_any_autocast_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:167:5-29: No attribute `get_autocast_dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:168:5-33: No attribute `get_autocast_gpu_dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:169:5-28: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:170:5-36: No attribute `is_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:171:5-34: No attribute `is_autocast_cpu_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:172:5-30: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:173:5-21: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:174:5-28: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:176:5-24: No attribute `promote_types` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:177:5-43: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:201:9-36: No attribute `_get_tracing_state` in module `torch._C` [missing-attribute] + WARN torch/_dynamo/variables/torch.py:205:9-50: `torch._dynamo.external_utils.is_compiling` is deprecated [deprecated] + WARN torch/_dynamo/variables/torch.py:206:9-34: `torch._utils.is_compiling` is deprecated [deprecated] +ERROR torch/_dynamo/variables/torch.py:219:5-28: No attribute `_dispatch_keys` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:220:5-45: No attribute `_dispatch_tls_local_include_set` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:221:5-45: No attribute `_dispatch_tls_local_exclude_set` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:233:9-19: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:234:9-24: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:235:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:236:9-25: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:237:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:238:9-19: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:260:20-51: Module `torch._dynamo.compiled_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:386:13-31: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:393:69-81: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:424:27-64: No attribute `DisableTorchFunctionSubclass` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:425:30-59: No attribute `DisableTorchFunction` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:429:49-86: No attribute `DisableTorchFunctionSubclass` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:431:28-44: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:431:28-49: Module `torch._functorch.vmap` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:437:28-44: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:437:28-61: Module `torch._functorch.eager_transforms` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:449:28-44: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:449:28-61: Module `torch._functorch.eager_transforms` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:453:27-43: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:453:27-60: Module `torch._functorch.eager_transforms` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] + WARN torch/_dynamo/variables/torch.py:543:17-42: `torch._utils.is_compiling` is deprecated [deprecated] + WARN torch/_dynamo/variables/torch.py:544:17-58: `torch._dynamo.external_utils.is_compiling` is deprecated [deprecated] +ERROR torch/_dynamo/variables/torch.py:557:30-53: No attribute `_dispatch_keys` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:570:27-50: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:570:51-71: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:571:27-50: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:572:29-49: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:615:63-76: No attribute `addcmul` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:621:19-50: No attribute `is_inference_mode_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:645:13-36: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:646:13-29: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:651:34-57: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:653:36-52: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:658:19-30: No attribute `numel` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:688:13-35: Module `torch.nn.modules.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:689:13-35: Module `torch.nn.modules.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:690:13-35: Module `torch.nn.modules.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:691:13-35: Module `torch.nn.modules.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:692:13-35: Module `torch.nn.modules.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:697:19-40: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:700:44-65: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:724:19-54: No attribute `_is_torch_function_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:733:19-59: No attribute `_is_torch_function_all_disabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:764:19-35: No attribute `from_numpy` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:793:21-36: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:816:26-38: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:840:19-32: No attribute `addcdiv` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:845:55-64: No attribute `div` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:848:55-64: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:851:53-62: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:855:19-29: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:860:61-72: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:866:19-39: No attribute `_foreach_lerp_` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:877:19-37: No attribute `_foreach_pow` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:902:21-41: No attribute `_SDPAParams` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:999:58-71: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:1037:19-40: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1037:19-56: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1043:21-42: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1043:21-58: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1050:19-40: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1050:19-56: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1056:21-42: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1056:21-58: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1061:19-40: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1061:19-56: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1067:21-42: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1067:21-58: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1072:19-40: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1072:19-56: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1076:21-42: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1076:21-58: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1083:19-40: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1083:19-56: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1098:17-38: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1098:17-54: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1101:19-40: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1101:19-56: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1105:21-42: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1105:21-58: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1112:19-40: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1112:19-56: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1117:21-42: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1117:21-58: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1123:19-40: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1123:19-56: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1128:21-42: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1128:21-58: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1134:19-40: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1134:19-56: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1145:17-38: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1145:17-54: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1148:19-37: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1158:19-38: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1165:17-36: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1168:19-35: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1168:19-47: Module `torch._functorch.pyfunctorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1174:17-33: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1174:17-45: Module `torch._functorch.pyfunctorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1177:19-31: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:1204:19-53: No attribute `_pop_torch_function_stack` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:1222:19-57: No attribute `_push_on_torch_function_stack` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:1235:19-53: No attribute `_len_torch_function_stack` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:1245:19-50: No attribute `_get_function_stack_at` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:1311:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:1313:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:1579:17-34: Module `torch._dynamo.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1581:17-34: Module `torch._dynamo.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1632:29-38: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/torch.py:1789:28-47: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1818:24-43: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1834:26-48: Module `torch.nn.modules.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1849:21-43: Module `torch.nn.modules.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:1861:26-48: Module `torch.nn.modules.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/torch.py:2057:53-72: No attribute `TensorBase` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch_function.py:209:13-51: No attribute `_push_on_torch_function_stack` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch_function.py:216:38-72: No attribute `_pop_torch_function_stack` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch_function.py:283:48-83: No attribute `_is_torch_function_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/torch_function.py:290:17-57: No attribute `_is_torch_function_all_disabled` in module `torch._C` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:26:8-20: Could not find import of `_collections` [missing-import] +ERROR torch/_dynamo/variables/user_defined.py:130:9-53: Could not find import of `_pytest.python_api` [missing-import] +ERROR torch/_dynamo/variables/user_defined.py:131:9-52: Could not find import of `_pytest.recwarn` [missing-import] +ERROR torch/_dynamo/variables/user_defined.py:157:5-10: Class member `UserDefinedClassVariable.value` overrides parent class `UserDefinedVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/user_defined.py:180:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:181:13-24: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:182:13-24: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:183:13-23: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:191:13-35: No attribute `FloatTensor` in module `torch.cuda` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:192:13-36: No attribute `DoubleTensor` in module `torch.cuda` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:193:13-34: No attribute `HalfTensor` in module `torch.cuda` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:194:13-38: No attribute `BFloat16Tensor` in module `torch.cuda` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:195:13-34: No attribute `ByteTensor` in module `torch.cuda` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:196:13-34: No attribute `CharTensor` in module `torch.cuda` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:197:13-33: No attribute `IntTensor` in module `torch.cuda` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:198:13-35: No attribute `ShortTensor` in module `torch.cuda` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:199:13-34: No attribute `LongTensor` in module `torch.cuda` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:200:13-25: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:201:13-24: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:233:16-28: Argument `set[((cls: type[object]) -> object) | Overload[[_T_co](cls: type[frozenset[_T_co]]) -> frozenset[_T_co], [_T_co](cls: type[frozenset[_T_co]], iterable: Iterable[_T_co], /) -> frozenset[_T_co]] | [_KT, _VT](cls: type[dict[_KT, _VT]], *args: Any, **kwargs: Any) -> dict[_KT, _VT] | [_T](cls: type[list[_T]]) -> list[_T] | [_T](cls: type[set[_T]]) -> set[_T] | [_T_co](cls: type[tuple[_T_co, ...]], iterable: Iterable[_T_co] = ..., /) -> tuple[_T_co, ...]]` is not assignable to parameter `self` with type `set[((cls: type[object]) -> object) | Overload[[_T_co](cls: type[frozenset[_T_co]]) -> frozenset[_T_co], [_T_co](cls: type[frozenset[_T_co]], iterable: Iterable[_T_co], /) -> frozenset[_T_co]] | [_KT, _VT](cls: type[dict[_KT, _VT]], *args: Any, **kwargs: Any) -> dict[_KT, _VT] | [_T](cls: type[list[_T]]) -> list[_T] | [_T](cls: type[set[((cls: type[object]) -> object) | Overload[[_T_co](cls: type[frozenset[_T_co]]) -> frozenset[_T_co], [_T_co](cls: type[frozenset[_T_co]], iterable: Iterable[_T_co], /) -> frozenset[_T_co]] | [_KT, _VT](cls: type[dict[_KT, _VT]], *args: Any, **kwargs: Any) -> dict[_KT, _VT] | [_T](cls: type[list[_T]]) -> list[_T] | [_T](cls: type[set[_T]]) -> set[_T] | [_T_co](cls: type[tuple[_T_co, ...]], iterable: Iterable[_T_co] = ..., /) -> tuple[_T_co, ...]]]) -> set[((cls: type[object]) -> object) | Overload[[_T_co](cls: type[frozenset[_T_co]]) -> frozenset[_T_co], [_T_co](cls: type[frozenset[_T_co]], iterable: Iterable[_T_co], /) -> frozenset[_T_co]] | [_KT, _VT](cls: type[dict[_KT, _VT]], *args: Any, **kwargs: Any) -> dict[_KT, _VT] | [_T](cls: type[list[_T]]) -> list[_T] | [_T](cls: type[set[_T]]) -> set[_T] | [_T_co](cls: type[tuple[_T_co, ...]], iterable: Iterable[_T_co] = ..., /) -> tuple[_T_co, ...]] | [_T_co](cls: type[tuple[_T_co, ...]], iterable: Iterable[_T_co] = ..., /) -> tuple[_T_co, ...]]` in function `set.union` [bad-argument-type] +ERROR torch/_dynamo/variables/user_defined.py:292:83-86: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:295:62-65: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:298:23-26: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:299:46-49: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:300:25-28: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:301:27-30: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:302:53-56: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:304:49-52: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:305:25-28: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:308:20-23: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:311:43-46: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:312:50-53: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:314:40-43: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:315:44-47: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:316:25-28: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:317:33-36: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:325:50-53: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:329:48-51: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:330:53-56: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:332:46-49: `obj` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:470:9-22: Class member `UserDefinedClassVariable.call_function` overrides parent class `UserDefinedVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/user_defined.py:511:17-30: Object of class `VariableTracker` has no attribute `items` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:517:16-44: Class `object` has no class attribute `__optional_keys__` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:548:30-40: `bound_args` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:549:24-34: `bound_args` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:563:25-35: `bound_args` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:567:28-38: `bound_args` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:568:26-36: `bound_args` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:681:33-46: Object of class `VariableTracker` has no attribute `items` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:682:35-66: Object of class `VariableTracker` has no attribute `keys_as_python_constant` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:715:34-60: Class `object` has no class attribute `_field_defaults` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:718:30-65: Argument `list[None]` is not assignable to parameter `iterable` with type `Iterable[VariableTracker]` in function `list.extend` [bad-argument-type] +ERROR torch/_dynamo/variables/user_defined.py:744:28-38: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:747:33-42: Object of class `VariableTracker` has no attribute `items` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:749:41-51: Argument `type[object]` is not assignable to parameter `class_or_instance` with type `DataclassInstance | type[DataclassInstance]` in function `dataclasses.fields` [bad-argument-type] +ERROR torch/_dynamo/variables/user_defined.py:750:51-62: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.DataclassFieldsSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/user_defined.py:752:26-61: Argument `list[None]` is not assignable to parameter `iterable` with type `Iterable[VariableTracker]` in function `list.extend` [bad-argument-type] +ERROR torch/_dynamo/variables/user_defined.py:808:25-36: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:814:39-51: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:842:41-52: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:851:25-35: Expected a callable, got `type[Never]` [not-callable] +ERROR torch/_dynamo/variables/user_defined.py:1147:45-55: Argument `object` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR torch/_dynamo/variables/user_defined.py:1208:21-34: Cannot index into `object` [bad-index] +ERROR torch/_dynamo/variables/user_defined.py:1211:36-46: Argument `object` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR torch/_dynamo/variables/user_defined.py:1246:9-22: Class member `UserDefinedObjectVariable.call_function` overrides parent class `UserDefinedVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/user_defined.py:1262:25-48: Module `torch.utils._contextlib` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/user_defined.py:1277:50-58: Object of class `object` has no attribute `mode` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:1291:35-46: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/user_defined.py:1293:34-45: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/user_defined.py:1298:37-52: Argument `Unknown | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/user_defined.py:1317:14-30: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/user_defined.py:1317:14-36: No attribute `utils` in module `torch._C._dynamo` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:1436:51-61: `new_source` may be uninitialized [unbound-name] +ERROR torch/_dynamo/variables/user_defined.py:1478:32-54: Object of class `object` has no attribute `_parameters` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:1479:32-51: Object of class `object` has no attribute `_buffers` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:1480:32-51: Object of class `object` has no attribute `_modules` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:1504:40-71: Object of class `UserDefinedObjectVariable` has no attribute `get_nn_module_stack_source` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:1551:20-40: Object of class `NoneType` has no attribute `items` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:1573:27-36: Argument `AttrSource | None` is not assignable to parameter `source_fn` with type `((...) -> Any) | None` in function `torch._dynamo.variables.functions.UserMethodVariable.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/user_defined.py:1689:57-68: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.UnspecializedParamBufferSource.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/user_defined.py:1695:20-36: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_dynamo/variables/user_defined.py:1695:20-42: No attribute `utils` in module `torch._C._dynamo` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:1804:29-39: Argument `object` is not assignable to parameter `class_or_instance` with type `DataclassInstance | type[DataclassInstance]` in function `dataclasses.fields` [bad-argument-type] +ERROR torch/_dynamo/variables/user_defined.py:1822:29-39: Argument `object` is not assignable to parameter `class_or_instance` with type `DataclassInstance | type[DataclassInstance]` in function `dataclasses.fields` [bad-argument-type] +ERROR torch/_dynamo/variables/user_defined.py:1854:9-32: Class member `FrozenDataClassVariable.method_setattr_standard` overrides parent class `UserDefinedObjectVariable` in an inconsistent manner [bad-override] +ERROR torch/_dynamo/variables/user_defined.py:1877:49-67: Object of class `object` has no attribute `forward` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:1903:13-28: Object of class `object` has no attribute `args` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:1940:9-68: Could not find import of `torchrec.sparse.jagged_tensor` [missing-import] +ERROR torch/_dynamo/variables/user_defined.py:1985:9-20: Class member `RemovableHandleVariable.call_method` overrides parent class `VariableTracker` in an inconsistent manner [bad-param-name-override] +ERROR torch/_dynamo/variables/user_defined.py:1988:52-60: Argument `Unknown | None` is not assignable to parameter `idx` with type `int` in function `torch._dynamo.side_effects.SideEffects.remove_hook` [bad-argument-type] +ERROR torch/_dynamo/variables/user_defined.py:2046:24-49: Object of class `NoneType` has no attribute `call_method` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:2059:12-37: Class `object` has no class attribute `__iter__` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:2063:20-53: Object of class `NoneType` has no attribute `unpack_var_sequence` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:2071:16-38: Object of class `NoneType` has no attribute `user_cls` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:2075:16-35: Object of class `NoneType` has no attribute `items` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:2078:16-59: Object of class `NoneType` has no attribute `install_dict_keys_match_guard` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:2081:16-57: Object of class `NoneType` has no attribute `install_dict_contains_guard` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:2109:21-23: Argument `dict[@_, @_]` is not assignable to parameter `items` with type `list[VariableTracker]` in function `torch._dynamo.variables.dicts.SetVariable.__init__` [bad-argument-type] +ERROR torch/_dynamo/variables/user_defined.py:2127:20-44: Object of class `NoneType` has no attribute `call_method` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:2131:16-47: Object of class `NoneType` has no attribute `as_python_constant` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:2138:20-52: Object of class `NoneType` has no attribute `unpack_var_sequence` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:2143:16-38: Object of class `NoneType` has no attribute `set_items` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:2147:16-34: Object of class `NoneType` has no attribute `items` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:2153:16-58: Object of class `NoneType` has no attribute `install_dict_keys_match_guard` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:2156:16-56: Object of class `NoneType` has no attribute `install_dict_contains_guard` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:2194:12-37: Class `object` has no class attribute `__iter__` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:2227:21-33: `None` is not subscriptable [unsupported-operation] +ERROR torch/_dynamo/variables/user_defined.py:2247:12-37: Class `object` has no class attribute `__iter__` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:2267:30-50: Class `object` has no class attribute `get` [missing-attribute] +ERROR torch/_dynamo/variables/user_defined.py:2273:36-2275:14: `LazyVariableTracker` is not assignable to attribute `generic_dict_vt` with type `ConstDictVariable` [bad-assignment] +ERROR torch/_export/__init__.py:133:14-33: Module `torch.export._trace` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/__init__.py:137:14-27: Module `torch._export` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/__init__.py:169:44-58: Module `torch._C._aoti` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/__init__.py:171:18-32: Module `torch._C._aoti` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/__init__.py:173:18-32: Module `torch._C._aoti` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/__init__.py:175:18-32: Module `torch._C._aoti` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/converter.py:54:35-66: No attribute `is_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:55:5-37: No attribute `set_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:63:5-37: No attribute `set_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:76:12-23: No attribute `Graph` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:76:31-40: No attribute `IValue` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:76:58-76: No attribute `ScriptModule` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:86:13-52: No attribute `_jit_pass_onnx_function_substitution` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:87:30-47: No attribute `_freeze_module` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:88:29-44: No attribute `ScriptModule` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:90:30-64: No attribute `_jit_onnx_list_model_parameters` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:95:21-58: No attribute `_propagate_and_assign_input_shapes` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:103:9-48: No attribute `_jit_pass_onnx_function_substitution` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:105:17-54: No attribute `_propagate_and_assign_input_shapes` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:111:5-27: No attribute `_jit_pass_onnx_lint` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:120:5-44: No attribute `_jit_pass_onnx_function_substitution` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:197:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:198:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:199:5-16: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:200:5-16: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:201:5-16: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:202:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:203:5-18: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:204:5-18: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:205:5-20: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:206:5-20: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:207:5-21: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:208:5-15: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:209:5-16: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:210:5-17: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:211:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:266:12-26: No attribute `Graph` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:267:17-31: No attribute `Block` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:284:34-48: No attribute `Block` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:335:34-48: No attribute `Graph` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:346:50-63: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:370:27-40: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:373:13-36: No attribute `FunctionSchema` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:373:39-60: No attribute `parse_schema` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:395:25-39: No attribute `Graph` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:395:41-55: No attribute `Block` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:398:38-52: No attribute `Block` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:469:60-78: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:473:48-61: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:525:42-56: No attribute `Graph` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:532:37-50: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:543:47-61: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:550:62-80: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:627:64-82: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:644:49-64: No attribute `ClassType` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:660:40-53: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:662:31-42: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:671:41-54: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:680:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:682:18-29: Module `torch._refs` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/converter.py:699:41-54: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:722:43-56: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:750:45-58: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:758:41-54: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:760:35-54: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:767:42-55: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:795:42-55: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:807:46-59: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:828:49-62: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:831:48-61: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:834:44-57: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:840:48-61: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:863:45-58: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:866:46-59: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:869:51-64: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:877:38-51: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:881:76-87: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:893:46-59: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:903:71-81: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:907:47-60: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:911:47-60: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:922:38-51: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:955:46-59: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:965:37-50: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1003:38-51: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1005:52-66: No attribute `ListType` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:1006:42-56: No attribute `ListType` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:1050:39-52: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1129:52-65: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1139:37-50: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1179:39-52: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1182:40-53: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1189:39-52: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1193:38-51: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1204:60-73: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1212:41-54: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1221:48-61: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1229:49-62: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1236:34-47: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1270:59-70: No attribute `clone` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:1333:25-39: No attribute `Graph` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1333:41-55: No attribute `Block` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1336:38-52: No attribute `Block` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1352:42-55: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1409:46-69: No attribute `ScriptFunction` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1412:42-65: No attribute `ScriptFunction` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1416:21-42: Object of class `bool` has no attribute `all` [missing-attribute] +ERROR torch/_export/converter.py:1471:42-65: No attribute `ScriptFunction` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1538:49-67: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_export/converter.py:1582:27-40: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/_export/converter.py:1604:44-62: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/assume_constant_result.py:18:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/assume_constant_result.py:18:36-48: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/autograd_function.py:24:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/class_method.py:21:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/cond_branch_class_method.py:39:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/cond_branch_nested_function.py:36:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/cond_branch_nonlocal_variables.py:51:32-44: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/cond_branch_nonlocal_variables.py:54:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/cond_closed_over_variable.py:20:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/cond_closed_over_variable.py:20:37-48: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/cond_operands.py:6:5-16: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/cond_operands.py:7:5-16: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/cond_operands.py:33:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/cond_operands.py:33:36-47: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/cond_predicate.py:20:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/constrain_as_size_example.py:15:16-27: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/constrain_as_size_example.py:18:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/constrain_as_value_example.py:21:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/constrain_as_value_example.py:21:34-45: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/decorator.py:22:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/decorator.py:22:36-47: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/dictionary.py:15:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/dictionary.py:15:36-48: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/dynamic_shape_assert.py:16:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/dynamic_shape_constructor.py:11:16-27: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/dynamic_shape_constructor.py:13:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/dynamic_shape_if_guard.py:17:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/dynamic_shape_map.py:17:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/dynamic_shape_map.py:17:36-47: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/dynamic_shape_round.py:15:5-16: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/dynamic_shape_slicing.py:13:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/dynamic_shape_view.py:15:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/fn_with_kwargs.py:20:5-16: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/fn_with_kwargs.py:21:6-17: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/fn_with_kwargs.py:21:22-33: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/fn_with_kwargs.py:22:7-18: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/fn_with_kwargs.py:22:23-34: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/fn_with_kwargs.py:25:14-25: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/fn_with_kwargs.py:26:15-26: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/fn_with_kwargs.py:27:15-26: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/list_contains.py:15:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/list_unpack.py:19:18-29: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/list_unpack.py:19:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/list_unpack.py:19:54-66: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/model_attr_mutation.py:12:27-38: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/model_attr_mutation.py:12:46-57: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/model_attr_mutation.py:15:17-28: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/model_attr_mutation.py:15:36-47: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/model_attr_mutation.py:22:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/nested_function.py:21:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/nested_function.py:21:36-47: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/null_context_manager.py:19:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/optional_input.py:11:28-39: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/optional_input.py:17:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/pytree_flatten.py:15:21-32: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/pytree_flatten.py:15:43-54: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/scalar_output.py:6:5-16: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/specialized_attribute.py:25:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/static_for_loop.py:14:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/static_if.py:12:24-34: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/static_if.py:16:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/tensor_setattr.py:10:26-37: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/tensor_setattr.py:13:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/type_reflection_method.py:20:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/unsupported_operator.py:15:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/examples/user_input_mutation.py:15:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_export/db/logging.py:43:33-40: Cannot index into `dict[type[TorchRuntimeError] | type[Unsupported] | type[UserError], str | None]` [bad-index] +ERROR torch/_export/non_strict_utils.py:172:51-69: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_export/non_strict_utils.py:312:54-67: No attribute `maximum` in module `torch` [missing-attribute] +ERROR torch/_export/non_strict_utils.py:321:39-52: No attribute `maximum` in module `torch` [missing-attribute] +ERROR torch/_export/non_strict_utils.py:363:70-83: No attribute `maximum` in module `torch` [missing-attribute] +ERROR torch/_export/non_strict_utils.py:368:70-83: No attribute `minimum` in module `torch` [missing-attribute] +ERROR torch/_export/non_strict_utils.py:415:15-28: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/non_strict_utils.py:647:25-46: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/non_strict_utils.py:647:25-54: Module `torch.fx.experimental._config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/non_strict_utils.py:660:12-30: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/non_strict_utils.py:660:12-43: Module `torch.utils._sympy.value_ranges` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/non_strict_utils.py:822:21-39: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_export/non_strict_utils.py:855:9-22: Module `torch._export` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/non_strict_utils.py:862:9-22: Module `torch._export` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/non_strict_utils.py:974:13-31: No attribute `ScriptObject` in module `torch` [missing-attribute] + WARN torch/_export/non_strict_utils.py:1030:21-59: `torch.distributed.distributed_c10d._reduce_scatter_base` is deprecated [deprecated] +ERROR torch/_export/non_strict_utils.py:1035:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_export/non_strict_utils.py:1044:24-35: Module `torch._refs` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/non_strict_utils.py:1050:38-53: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/_export/non_strict_utils.py:1052:34-46: No attribute `select` in module `torch` [missing-attribute] +ERROR torch/_export/non_strict_utils.py:1103:25-32: Index 0 out of range for tuple with 0 elements [bad-index] +ERROR torch/_export/pass_base.py:123:29-45: No attribute `dequantize` in module `torch` [missing-attribute] +ERROR torch/_export/pass_base.py:167:29-45: No attribute `dequantize` in module `torch` [missing-attribute] +ERROR torch/_export/pass_base.py:341:21-32: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_export/pass_base.py:348:21-33: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_export/passes/collect_tracepoints_pass.py:32:9-13: Class member `CollectTracepointsPass.call` overrides parent class `PassBase` in an inconsistent manner [bad-param-name-override] +ERROR torch/_export/passes/constant_folding.py:71:33-47: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_export/passes/constant_folding.py:112:9-17: Class member `ConstantFolder.run_node` overrides parent class `Interpreter` in an inconsistent manner [bad-param-name-override] +ERROR torch/_export/passes/constant_folding.py:162:17-26: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_export/passes/constant_folding.py:211:10-38: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/passes/constant_folding.py:251:10-38: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/passes/lift_constants_pass.py:37:56-75: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/passes/lift_constants_pass.py:43:44-62: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_export/passes/lift_constants_pass.py:46:49-67: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_export/passes/lift_constants_pass.py:58:28-46: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_export/passes/lift_constants_pass.py:73:49-67: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_export/passes/lift_constants_pass.py:88:49-67: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_export/passes/lift_constants_pass.py:234:41-60: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/passes/lift_constants_pass.py:256:42-60: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_export/passes/lift_constants_pass.py:322:47-68: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_export/passes/lift_constants_pass.py:392:33-51: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:21:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:26:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:29:24-35: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:32:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:33:16-27: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:34:19-30: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:35:16-26: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:50:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:51:23-36: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:72:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:74:23-36: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:76:19-42: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:85:21-45: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:106:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:108:23-36: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:110:19-42: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:122:21-45: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:139:26-37: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:144:49-60: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:156:6-27: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:165:28-49: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:231:26-37: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:231:39-51: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:240:23-47: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:512:9-32: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:523:9-32: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:601:25-48: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:612:25-48: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:629:34-52: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:636:29-40: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:637:29-41: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_set_grad_with_hop_pass.py:25:28-54: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_export/passes/replace_set_grad_with_hop_pass.py:41:40-66: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_export/passes/replace_set_grad_with_hop_pass.py:44:41-62: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py:18:24-47: No attribute `FunctionSchema` in module `torch._C` [missing-attribute] +ERROR torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py:25:38-61: No attribute `FunctionSchema` in module `torch._C` [missing-attribute] +ERROR torch/_export/serde/serialize.py:134:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:135:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:136:5-17: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:137:5-16: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:138:5-16: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:139:5-16: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:140:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:141:5-18: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:142:5-18: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:143:5-20: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:144:5-20: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:145:5-21: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:146:5-15: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:147:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:148:5-24: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:149:5-22: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:150:5-26: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:151:5-26: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:159:5-21: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:160:5-21: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:161:5-21: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:162:5-21: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:163:5-21: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:165:5-18: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:173:5-28: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:174:5-24: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:175:5-27: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:176:5-26: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:256:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:259:12-24: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:278:48-59: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:299:16-22: Object of class `Symbol` has no attribute `node` [missing-attribute] +ERROR torch/_export/serde/serialize.py:305:56-62: Object of class `Symbol` has no attribute `node` [missing-attribute] +ERROR torch/_export/serde/serialize.py:320:16-22: Object of class `Symbol` has no attribute `node` [missing-attribute] +ERROR torch/_export/serde/serialize.py:326:58-64: Object of class `Symbol` has no attribute `node` [missing-attribute] +ERROR torch/_export/serde/serialize.py:340:73-74: Argument `SymBool | bool` is not assignable to parameter `s` with type `Expr | SymBool | SymFloat | SymInt` in function `_print_sympy` [bad-argument-type] +ERROR torch/_export/serde/serialize.py:472:16-19: Returned type `int` is not assignable to declared return type `Expr` [bad-return] +ERROR torch/_export/serde/serialize.py:537:12-54: Module `torch._higher_order_ops.triton_kernel_wrap` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:541:5-51: Could not find import of `triton.runtime.autotuner` [missing-import] +ERROR torch/_export/serde/serialize.py:542:5-47: Could not find import of `triton.runtime.jit` [missing-import] +ERROR torch/_export/serde/serialize.py:545:14-56: Module `torch._higher_order_ops.triton_kernel_wrap` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:662:37-58: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_export/serde/serialize.py:816:20-62: Module `torch._higher_order_ops.triton_kernel_wrap` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:1201:45-63: No attribute `OptionalType` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1203:49-63: No attribute `ListType` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1205:46-64: No attribute `OptionalType` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1208:46-60: No attribute `BoolType` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1210:48-61: No attribute `IntType` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1212:48-63: No attribute `FloatType` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1214:48-64: No attribute `StringType` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1216:48-64: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1333:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1335:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1337:30-49: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1341:30-42: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1343:30-51: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1648:44-58: No attribute `ListType` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1649:47-63: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1687:47-65: No attribute `OptionalType` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1687:67-83: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1694:47-65: No attribute `OptionalType` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1694:67-83: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1701:46-60: No attribute `ListType` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1703:63-79: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:1891:42-76: No attribute `_get_max_operator_version` in module `torch._C` [missing-attribute] +ERROR torch/_export/serde/serialize.py:2040:42-45: Argument `Basic` is not assignable to parameter `expr_str` with type `str` in function `GraphModuleDeserializer._parse_sym_expr` [bad-argument-type] +ERROR torch/_export/serde/serialize.py:2045:60-63: Cannot set item in `dict[str, Symbol]` [unsupported-operation] +ERROR torch/_export/serde/serialize.py:2124:17-36: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:2285:39-55: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_export/serde/serialize.py:2300:16-58: Module `torch._higher_order_ops.triton_kernel_wrap` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2537:29-47: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2537:29-57: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2538:36-54: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2538:36-64: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2539:26-44: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2539:26-54: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2540:30-48: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2540:30-58: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2541:24-42: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2541:24-52: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2542:29-47: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2542:29-57: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2543:30-48: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2543:30-58: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2544:31-49: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2544:31-59: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2545:28-46: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2545:28-56: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2546:27-45: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2546:27-55: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2547:27-45: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2547:27-55: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2548:33-51: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2548:33-61: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2549:29-47: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2549:29-57: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2550:33-51: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2550:33-61: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2551:31-49: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2551:31-59: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2552:54-72: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2552:54-82: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2553:33-51: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2553:33-61: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2554:31-49: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2554:31-59: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2555:31-49: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2555:31-59: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2556:33-51: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2556:33-61: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2557:28-46: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2557:28-56: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2558:29-47: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:2558:29-57: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/serde/serialize.py:3101:51-85: No attribute `_get_max_operator_version` in module `torch._C` [missing-attribute] +ERROR torch/_export/serde/serialize.py:3180:9-16: Class member `EnumEncoder.default` overrides parent class `JSONEncoder` in an inconsistent manner [bad-param-name-override] +ERROR torch/_export/serde/serialize.py:3865:31-51: No attribute `FunctionSchema` in module `torch` [missing-attribute] +ERROR torch/_export/verifier.py:49:19-38: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_export/verifier.py:49:40-51: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_export/verifier.py:49:53-65: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_export/verifier.py:49:67-79: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_export/verifier.py:162:39-58: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/verifier.py:170:13-32: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/verifier.py:223:17-43: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_export/verifier.py:226:17-38: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/verifier.py:226:17-54: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/verifier.py:227:17-33: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/verifier.py:227:17-45: Module `torch._functorch.predispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/verifier.py:228:17-33: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/verifier.py:228:17-45: Module `torch._functorch.predispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/verifier.py:229:17-33: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/verifier.py:229:17-45: Module `torch._functorch.predispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/verifier.py:230:17-33: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/verifier.py:230:17-45: Module `torch._functorch.predispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/verifier.py:231:17-33: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/verifier.py:231:17-45: Module `torch._functorch.predispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_export/wrappers.py:8:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_export/wrappers.py:33:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_export/wrappers.py:296:48-78: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_export/wrappers.py:302:26-66: No attribute `_dispatch_tls_local_include_set` in module `torch._C` [missing-attribute] +ERROR torch/_export/wrappers.py:303:13-33: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_export/wrappers.py:306:13-53: No attribute `_dispatch_tls_local_exclude_set` in module `torch._C` [missing-attribute] +ERROR torch/_export/wrappers.py:307:15-38: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_export/wrappers.py:307:39-59: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_export/wrappers.py:310:14-45: No attribute `_ForceDispatchKeyGuard` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_activation_checkpointing/graph_info_provider.py:256:9-68: Could not find import of `matplotlib` [missing-import] +ERROR torch/_functorch/_activation_checkpointing/knapsack.py:34:9-66: Could not find import of `scipy.optimize` [missing-import] +ERROR torch/_functorch/_activation_checkpointing/knapsack.py:71:24-36: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_functorch/_activation_checkpointing/knapsack.py:72:47-57: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_functorch/_activation_checkpointing/knapsack.py:74:16-28: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_functorch/_activation_checkpointing/knapsack.py:74:44-57: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_functorch/_activation_checkpointing/knapsack.py:85:10-21: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_functorch/_activation_checkpointing/knapsack.py:86:50-63: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_functorch/_activation_checkpointing/knapsack.py:100:38-51: No attribute `maximum` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/aot_autograd_result.py:163:9-38: Module `torch._inductor.async_compile` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/aot_autograd_result.py:515:23-56: No attribute `_is_any_autocast_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/aot_autograd_result.py:634:28-50: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/aot_autograd_result.py:643:15-28: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/aot_autograd_result.py:647:19-32: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/aot_autograd_result.py:648:10-23: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/autograd_cache.py:105:9-73: Could not find import of `torch._inductor.fb.remote_cache` [missing-import] +ERROR torch/_functorch/_aot_autograd/autograd_cache.py:171:17-33: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/autograd_cache.py:171:17-40: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/autograd_cache.py:180:33-55: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/autograd_cache.py:256:8-30: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/autograd_cache.py:260:9-31: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/autograd_cache.py:264:23-36: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/autograd_cache.py:319:13-59: Could not find import of `triton.runtime.autotuner` [missing-import] +ERROR torch/_functorch/_aot_autograd/autograd_cache.py:340:29-50: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/autograd_cache.py:341:28-61: No attribute `_is_any_autocast_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/autograd_cache.py:408:9-23: Class member `AOTAutogradCachePickler._reduce_tensor` overrides parent class `FxGraphCachePickler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_functorch/_aot_autograd/autograd_cache.py:486:16-22: Could not find import of `triton` [missing-import] +ERROR torch/_functorch/_aot_autograd/autograd_cache.py:769:9-29: Class member `AOTAutogradCache._get_tmp_dir_for_key` overrides parent class `GuardedCache` in an inconsistent manner [bad-param-name-override] +ERROR torch/_functorch/_aot_autograd/autograd_cache.py:777:12-34: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/collect_metadata_analysis.py:190:30-51: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/collect_metadata_analysis.py:194:25-58: No attribute `_ExcludeDispatchKeyGuard` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/collect_metadata_analysis.py:195:13-36: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/collect_metadata_analysis.py:195:37-57: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/collect_metadata_analysis.py:497:45-57: Cannot index into `dict[StorageWeakRef, int]` [bad-index] +ERROR torch/_functorch/_aot_autograd/collect_metadata_analysis.py:706:24-35: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/collect_metadata_analysis.py:712:33-69: Module `torch.nested._internal.nested_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/collect_metadata_analysis.py:713:20-36: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/collect_metadata_analysis.py:713:20-43: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/collect_metadata_analysis.py:802:12-43: Module `torch._dynamo.compiled_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/collect_metadata_analysis.py:841:12-33: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/collect_metadata_analysis.py:842:37-58: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/frontend_utils.py:50:30-48: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/frontend_utils.py:71:35-48: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/frontend_utils.py:116:26-39: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/frontend_utils.py:156:16-44: `in` is not supported between `str` and `Module` [unsupported-operation] +ERROR torch/_functorch/_aot_autograd/frontend_utils.py:157:18-44: Cannot index into `Module` [bad-index] +ERROR torch/_functorch/_aot_autograd/frontend_utils.py:197:12-64: Returned type `tuple[list[Unknown | None], list[int]]` is not assignable to declared return type `tuple[list[Source] | None, list[int]]` [bad-return] +ERROR torch/_functorch/_aot_autograd/functional_utils.py:75:12-41: No attribute `_from_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/functional_utils.py:119:16-75: No attribute `_functionalize_are_all_mutations_hidden_from_autograd` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/functional_utils.py:133:16-86: No attribute `_functionalize_are_all_mutations_under_no_grad_or_inference_mode` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/functional_utils.py:149:16-65: No attribute `_functionalize_was_inductor_storage_resized` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/functional_utils.py:181:21-50: No attribute `_from_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/functional_utils.py:295:23-41: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/functional_utils.py:299:23-44: No attribute `view_as_complex` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/functional_utils.py:336:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/functional_utils.py:376:16-43: No attribute `_is_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:138:36-72: No attribute `_autocast_supported_devices` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:354:38-66: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:355:17-47: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:376:42-58: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:376:42-65: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:455:56-68: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:459:59-71: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:777:29-62: No attribute `_ExcludeDispatchKeyGuard` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:778:17-40: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:778:41-61: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:862:29-47: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:907:30-48: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:971:29-47: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1008:25-43: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1074:25-58: No attribute `_ExcludeDispatchKeyGuard` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1075:13-36: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1075:37-57: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1092:38-66: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1093:17-47: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1140:36-48: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:276:19-24: Argument `GraphModule` is not assignable to parameter `compiled_fn` with type `(...) -> Unknown` in function `torch._functorch._aot_autograd.runtime_wrappers.post_compile` [bad-argument-type] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:368:32-48: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:368:32-55: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:510:19-52: No attribute `_is_any_autocast_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1027:29-62: No attribute `_ExcludeDispatchKeyGuard` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1028:17-40: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1028:41-61: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1062:8-39: Module `torch._dynamo.compiled_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1065:17-33: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1065:17-47: Module `torch._functorch._aot_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1065:17-53: Module `torch._functorch._aot_autograd.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1067:9-25: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1067:9-39: Module `torch._functorch._aot_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1067:9-45: Module `torch._functorch._aot_autograd.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1124:12-28: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1124:12-35: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1487:32-48: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1487:32-55: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1574:19-52: No attribute `_is_any_autocast_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1578:19-44: No attribute `_DisableAutocast` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1599:25-41: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1599:25-48: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1601:24-40: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1601:24-47: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1669:16-32: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1669:16-39: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1819:61-86: No attribute `_DisableAutocast` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1943:16-47: Module `torch._dynamo.compiled_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:1952:17-26: Argument `GraphModule` is not assignable to parameter `bw_module` with type `(...) -> Unknown` in function `torch._functorch._aot_autograd.runtime_wrappers.AutogradLazyBackwardCompileInfo.__init__` [bad-argument-type] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:2069:19-52: No attribute `_is_any_autocast_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:2248:13-38: No attribute `_DisableAutocast` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:2249:16-49: No attribute `_is_any_autocast_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:2256:24-49: No attribute `_DisableAutocast` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/graph_compile.py:2287:31-44: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/input_output_analysis.py:77:61-84: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/input_output_analysis.py:306:23-36: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/input_output_analysis.py:330:8-30: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/logging_utils.py:51:27-40: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/logging_utils.py:64:35-48: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:236:8-39: Module `torch._dynamo.compiled_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:239:17-33: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:239:17-47: Module `torch._functorch._aot_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:239:17-53: Module `torch._functorch._aot_autograd.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:241:9-25: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:241:9-39: Module `torch._functorch._aot_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:241:9-45: Module `torch._functorch._aot_autograd.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:300:18-36: Module `torch._C._profiler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:352:28-49: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:355:21-47: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:362:21-47: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:465:13-39: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:492:9-20: Class member `FunctionalizedRngRuntimeWrapper.pre_compile` overrides parent class `InductorWrapper` in an inconsistent manner [bad-param-name-override] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:574:27-40: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:674:9-21: Class member `AOTDispatchSubclassWrapper.post_compile` overrides parent class `CompilerWrapper` in an inconsistent manner [bad-param-name-override] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:712:9-21: Class member `EffectTokensWrapper.post_compile` overrides parent class `CompilerWrapper` in an inconsistent manner [bad-param-name-override] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:1487:30-41: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:1592:13-32: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:1798:9-30: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:1811:26-41: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:1812:26-41: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:1827:10-38: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:1828:17-30: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:1828:34-45: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:1828:46-57: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:1897:17-36: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:1923:13-31: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:1925:9-27: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:1931:13-31: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:1933:13-31: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:1988:26-61: Module `torch._subclasses.functional_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:2096:30-45: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:2097:30-45: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:2288:25-43: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:2331:30-51: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:2355:25-33: Class member `CompiledFunctionBackward.backward` overrides parent class `Function` in an inconsistent manner [bad-param-name-override] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:2375:25-43: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:2442:31-56: No attribute `_DisableAutocast` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:2478:21-37: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/runtime_wrappers.py:2478:21-44: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/schemas.py:175:29-48: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/schemas.py:185:17-33: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/schemas.py:185:17-40: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/schemas.py:200:31-50: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/streams.py:20:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/utils.py:39:5-23: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/utils.py:97:9-34: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/utils.py:98:9-34: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/utils.py:99:9-33: No attribute `get_autocast_dtype` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/utils.py:100:9-33: No attribute `get_autocast_dtype` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/utils.py:101:9-40: No attribute `is_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/utils.py:131:15-40: No attribute `_DisableAutocast` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/utils.py:288:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/utils.py:289:50-62: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/utils.py:523:26-47: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/utils.py:523:26-60: Module `torch.fx.experimental.proxy_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/utils.py:525:21-42: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/utils.py:525:21-55: Module `torch.fx.experimental.proxy_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/_aot_autograd/utils.py:545:17-26: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_functorch/_aot_autograd/utils.py:563:12-30: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/aot_autograd.py:499:37-39: `dict[@_, @_]` is not assignable to attribute `decompositions` with type `Never` [bad-assignment] +ERROR torch/_functorch/aot_autograd.py:508:37-511:10: `dict[OpOverload[Ellipsis, Any] | str, ((...) -> Unknown) | dict[OpOverload[Ellipsis, Any], (...) -> Unknown]]` is not assignable to attribute `decompositions` with type `dict[OpOverload[Ellipsis, Any], (...) -> Unknown]` [bad-assignment] +ERROR torch/_functorch/aot_autograd.py:564:16-32: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/aot_autograd.py:564:16-39: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/aot_autograd.py:598:25-59: Cannot index into `list[InputAliasInfo]` [bad-index] +ERROR torch/_functorch/aot_autograd.py:785:21-25: Argument `None` is not assignable to parameter `fw_compiler` with type `(...) -> Unknown` in function `torch._functorch._aot_autograd.schemas.AOTConfig.__init__` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:786:21-25: Argument `None` is not assignable to parameter `bw_compiler` with type `(...) -> Unknown` in function `torch._functorch._aot_autograd.schemas.AOTConfig.__init__` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:788:22-26: Argument `None` is not assignable to parameter `partition_fn` with type `(...) -> Unknown` in function `torch._functorch._aot_autograd.schemas.AOTConfig.__init__` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:789:24-38: Argument `dict[Unknown, Unknown] | None` is not assignable to parameter `decompositions` with type `dict[OpOverload[Ellipsis, Any], (...) -> Unknown]` in function `torch._functorch._aot_autograd.schemas.AOTConfig.__init__` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:825:21-41: Argument `list[PlainAOTInput]` is not assignable to parameter `flat_args_descs` with type `list[AOTInput]` in function `create_aot_state` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:871:58-61: Argument `Module` is not assignable to parameter `gm` with type `GraphModule` in function `torch._dynamo.utils.assert_no_fake_params_or_buffers` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:881:33-70: Multiple values for argument `num_params_buffers` in function `aot_function` [bad-keyword-argument] +ERROR torch/_functorch/aot_autograd.py:962:28-71: Argument `Generator[BufferAOTInput, None, None]` is not assignable to parameter `iterable` with type `Iterable[ParamAOTInput]` in function `list.extend` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:965:9-79: Argument `Generator[PlainAOTInput, None, None]` is not assignable to parameter `iterable` with type `Iterable[ParamAOTInput]` in function `list.extend` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:970:27-40: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/aot_autograd.py:984:53-68: Argument `list[ParamAOTInput]` is not assignable to parameter `full_args_descs` with type `list[DifferentiableAOTInput]` in function `torch._functorch._aot_autograd.frontend_utils._try_get_metadata_from_dynamo` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:994:21-25: Argument `None` is not assignable to parameter `fw_compiler` with type `(...) -> Unknown` in function `torch._functorch._aot_autograd.schemas.AOTConfig.__init__` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:995:21-25: Argument `None` is not assignable to parameter `bw_compiler` with type `(...) -> Unknown` in function `torch._functorch._aot_autograd.schemas.AOTConfig.__init__` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:997:22-26: Argument `None` is not assignable to parameter `partition_fn` with type `(...) -> Unknown` in function `torch._functorch._aot_autograd.schemas.AOTConfig.__init__` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:1062:32-54: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/aot_autograd.py:1081:13-27: Argument `dict[Unknown, Unknown] | None` is not assignable to parameter `decompositions` with type `dict[Unknown, Unknown]` in function `prepare_aot_module_simplified` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:1083:13-39: Argument `BoxedDeviceIndex | None` is not assignable to parameter `boxed_forward_device_index` with type `BoxedDeviceIndex` in function `prepare_aot_module_simplified` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:1098:21-24: Argument `Module` is not assignable to parameter `mod` with type `GmWrapper | GraphModule` in function `torch._functorch._aot_autograd.autograd_cache.AOTAutogradCache.try_load` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:1139:20-31: Expected a callable, got `None` [not-callable] +ERROR torch/_functorch/aot_autograd.py:1152:20-31: Expected a callable, got `None` [not-callable] +ERROR torch/_functorch/aot_autograd.py:1155:5-22: Object of class `FunctionType` has no attribute `zero_grad` [missing-attribute] +ERROR torch/_functorch/aot_autograd.py:1156:5-29: Object of class `FunctionType` has no attribute `named_parameters` [missing-attribute] +ERROR torch/_functorch/aot_autograd.py:1157:5-26: Object of class `FunctionType` has no attribute `named_buffers` [missing-attribute] +ERROR torch/_functorch/aot_autograd.py:1169:12-19: Returned type `((runtime_args: list[Any]) -> Unknown) | ((*runtime_args: tuple[Any]) -> Unknown)` is not assignable to declared return type `Module` [bad-return] +ERROR torch/_functorch/aot_autograd.py:1174:14-32: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/aot_autograd.py:1177:5-20: Object of class `FunctionType` has no attribute `_boxed_call` [missing-attribute] +ERROR torch/_functorch/aot_autograd.py:1270:9-23: Argument `dict[Unknown, Unknown] | None` is not assignable to parameter `decompositions` with type `dict[Unknown, Unknown]` in function `prepare_aot_module_simplified` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:1272:9-13: Argument `None` is not assignable to parameter `boxed_forward_device_index` with type `BoxedDeviceIndex` in function `prepare_aot_module_simplified` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:1318:50-78: Default `(fx_g: Unknown, example_inputs: Unknown) -> Unknown` is not assignable to parameter `fw_compiler` with type `AOTDispatchCompiler | None` [bad-function-definition] +ERROR torch/_functorch/aot_autograd.py:1319:50-78: Default `(fx_g: Unknown, example_inputs: Unknown) -> Unknown` is not assignable to parameter `bw_compiler` with type `AOTDispatchCompiler | None` [bad-function-definition] +ERROR torch/_functorch/aot_autograd.py:1320:6-14: Expected a type form, got instance of `(obj: object, /) -> TypeIs[(...) -> object]` [not-a-type] +ERROR torch/_functorch/aot_autograd.py:1335:9-20: Argument `AOTDispatchCompiler | None` is not assignable to parameter `fw_compiler` with type `(...) -> Unknown` in function `torch._functorch._aot_autograd.graph_compile.aot_stage2_compile` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:1550:33-56: Argument `tuple[Any, ...]` is not assignable to parameter `params_and_buffers_flat` with type `list[Tensor]` in function `torch._functorch._aot_autograd.input_output_analysis.create_graph_signature` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:1644:33-43: Could not find name `aot_config` [unknown-name] +ERROR torch/_functorch/aot_autograd.py:1647:33-44: Could not find name `fw_metadata` [unknown-name] +ERROR torch/_functorch/aot_autograd.py:1710:21-25: Argument `None` is not assignable to parameter `fw_compiler` with type `(...) -> Unknown` in function `torch._functorch._aot_autograd.schemas.AOTConfig.__init__` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:1711:21-25: Argument `None` is not assignable to parameter `bw_compiler` with type `(...) -> Unknown` in function `torch._functorch._aot_autograd.schemas.AOTConfig.__init__` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:1713:22-26: Argument `None` is not assignable to parameter `partition_fn` with type `(...) -> Unknown` in function `torch._functorch._aot_autograd.schemas.AOTConfig.__init__` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:1714:24-38: Argument `dict[Unknown, Unknown] | None` is not assignable to parameter `decompositions` with type `dict[OpOverload[Ellipsis, Any], (...) -> Unknown]` in function `torch._functorch._aot_autograd.schemas.AOTConfig.__init__` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:1741:13-33: Argument `list[PlainAOTInput]` is not assignable to parameter `flat_args_descs` with type `list[AOTInput]` in function `create_aot_state` [bad-argument-type] +ERROR torch/_functorch/aot_autograd.py:1749:12-46: Returned type `tuple[(...) -> Unknown, ViewAndMutationMeta, TreeSpec, TreeSpec | None]` is not assignable to declared return type `tuple[GraphModule, ViewAndMutationMeta, TreeSpec, TreeSpec]` [bad-return] +ERROR torch/_functorch/autograd_function.py:48:12-53: No attribute `_are_functorch_transforms_active` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/autograd_function.py:49:20-36: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_functorch/autograd_function.py:280:20-39: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/autograd_function.py:336:20-53: No attribute `_ExcludeDispatchKeyGuard` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/autograd_function.py:337:17-40: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/autograd_function.py:337:41-61: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/compile_utils.py:23:12-23: Returned type `((...) -> Any) | str` is not assignable to declared return type `(...) -> Unknown` [bad-return] +ERROR torch/_functorch/compilers.py:48:29-60: No attribute `_jit_set_autocast_mode` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/compilers.py:52:9-40: No attribute `_jit_set_autocast_mode` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/compilers.py:82:34-46: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_functorch/compilers.py:93:9-43: No attribute `_jit_pass_remove_mutation` in module `torch._C` [missing-attribute] +ERROR torch/_functorch/compilers.py:99:12-13: Returned type `ScriptModule` is not assignable to declared return type `(...) -> Unknown` [bad-return] +ERROR torch/_functorch/compilers.py:122:12-16: Returned type `GraphModule` is not assignable to declared return type `(...) -> Unknown` [bad-return] +ERROR torch/_functorch/compilers.py:126:9-12: Class member `DebugInterpreter.run` overrides parent class `Interpreter` in an inconsistent manner [bad-override] +ERROR torch/_functorch/compilers.py:127:44-55: Argument `Module` is not assignable to parameter `gm` with type `GraphModule` in function `torch.fx.experimental.symbolic_shapes.bind_symbols` [bad-argument-type] +ERROR torch/_functorch/compilers.py:228:45-67: Argument `set[OpOverload[Ellipsis, Any] | OpOverloadPacket[Ellipsis, Any]]` is not assignable to parameter `aten_ops` with type `Sequence[OpOverloadPacket[Ellipsis, Any] | OperatorBase]` in function `torch._decomp.get_decompositions` [bad-argument-type] +ERROR torch/_functorch/compilers.py:273:33-41: Unpacked keyword argument `((joint_module: GraphModule, _joint_inputs: Unknown, compiler: str | Unknown = 'inductor', *, num_fwd_outputs: Unknown, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | dict[OperatorBase, (...) -> Unknown] | set[OpOverload[Ellipsis, Any] | OpOverloadPacket[Ellipsis, Any]] | Unknown` is not assignable to parameter `fw_compiler` with type `(...) -> Unknown` in function `torch._functorch.aot_autograd.aot_function` [bad-argument-type] +ERROR torch/_functorch/compilers.py:273:33-41: Unpacked keyword argument `((joint_module: GraphModule, _joint_inputs: Unknown, compiler: str | Unknown = 'inductor', *, num_fwd_outputs: Unknown, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | dict[OperatorBase, (...) -> Unknown] | set[OpOverload[Ellipsis, Any] | OpOverloadPacket[Ellipsis, Any]] | Unknown` is not assignable to parameter `bw_compiler` with type `((...) -> Unknown) | None` in function `torch._functorch.aot_autograd.aot_function` [bad-argument-type] +ERROR torch/_functorch/compilers.py:273:33-41: Unpacked keyword argument `((joint_module: GraphModule, _joint_inputs: Unknown, compiler: str | Unknown = 'inductor', *, num_fwd_outputs: Unknown, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | dict[OperatorBase, (...) -> Unknown] | set[OpOverload[Ellipsis, Any] | OpOverloadPacket[Ellipsis, Any]] | Unknown` is not assignable to parameter `partition_fn` with type `(...) -> Unknown` in function `torch._functorch.aot_autograd.aot_function` [bad-argument-type] +ERROR torch/_functorch/compilers.py:273:33-41: Unpacked keyword argument `((joint_module: GraphModule, _joint_inputs: Unknown, compiler: str | Unknown = 'inductor', *, num_fwd_outputs: Unknown, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | dict[OperatorBase, (...) -> Unknown] | set[OpOverload[Ellipsis, Any] | OpOverloadPacket[Ellipsis, Any]] | Unknown` is not assignable to parameter `decompositions` with type `dict[Unknown, Unknown] | None` in function `torch._functorch.aot_autograd.aot_function` [bad-argument-type] +ERROR torch/_functorch/compilers.py:273:33-41: Unpacked keyword argument `((joint_module: GraphModule, _joint_inputs: Unknown, compiler: str | Unknown = 'inductor', *, num_fwd_outputs: Unknown, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | dict[OperatorBase, (...) -> Unknown] | set[OpOverload[Ellipsis, Any] | OpOverloadPacket[Ellipsis, Any]] | Unknown` is not assignable to parameter `num_params_buffers` with type `int` in function `torch._functorch.aot_autograd.aot_function` [bad-argument-type] +ERROR torch/_functorch/compilers.py:273:33-41: Unpacked keyword argument `((joint_module: GraphModule, _joint_inputs: Unknown, compiler: str | Unknown = 'inductor', *, num_fwd_outputs: Unknown, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | dict[OperatorBase, (...) -> Unknown] | set[OpOverload[Ellipsis, Any] | OpOverloadPacket[Ellipsis, Any]] | Unknown` is not assignable to parameter `keep_inference_input_mutations` with type `bool` in function `torch._functorch.aot_autograd.aot_function` [bad-argument-type] +ERROR torch/_functorch/compilers.py:273:33-41: Unpacked keyword argument `((joint_module: GraphModule, _joint_inputs: Unknown, compiler: str | Unknown = 'inductor', *, num_fwd_outputs: Unknown, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | dict[OperatorBase, (...) -> Unknown] | set[OpOverload[Ellipsis, Any] | OpOverloadPacket[Ellipsis, Any]] | Unknown` is not assignable to parameter `inference_compiler` with type `((...) -> Unknown) | None` in function `torch._functorch.aot_autograd.aot_function` [bad-argument-type] +ERROR torch/_functorch/compilers.py:298:5-29: Could not find import of `foo` [missing-import] +ERROR torch/_functorch/compilers.py:319:30-41: No attribute `rand` in module `random` [missing-attribute] +ERROR torch/_functorch/compilers.py:323:21-30: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_functorch/compilers.py:324:21-32: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_functorch/compilers.py:325:21-32: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_functorch/compilers.py:326:21-31: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_functorch/compilers.py:327:21-30: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_functorch/compilers.py:328:21-32: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_functorch/compilers.py:332:29-42: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/_functorch/compilers.py:334:29-39: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/_functorch/compilers.py:419:33-49: Missing argument `num_fwd_outputs` in function `torch._functorch.partitioners.default_partition` [missing-argument] +ERROR torch/_functorch/compilers.py:424:21-40: Argument `(gm: Unknown, fw_args: Unknown) -> Unknown` is not assignable to parameter `fw_compiler` with type `AOTDispatchCompiler` in function `torch._functorch.aot_autograd.aot_module_simplified` [bad-argument-type] +ERROR torch/_functorch/compilers.py:425:21-41: Argument `(gm: Unknown, bw_args: Unknown) -> Unknown` is not assignable to parameter `bw_compiler` with type `AOTDispatchCompiler | None` in function `torch._functorch.aot_autograd.aot_module_simplified` [bad-argument-type] +ERROR torch/_functorch/compilers.py:427:24-46: Argument `dict[OperatorBase, (...) -> Unknown] | set[OpOverload[Ellipsis, Any] | OpOverloadPacket[Ellipsis, Any]]` is not assignable to parameter `decompositions` with type `dict[Unknown, Unknown] | None` in function `torch._functorch.aot_autograd.aot_module_simplified` [bad-argument-type] +ERROR torch/_functorch/eager_transforms.py:17:5-31: Could not import `_assert_wrapped_functional` from `torch._C._functorch` [missing-module-attribute] +ERROR torch/_functorch/eager_transforms.py:18:5-28: Could not import `_func_decrement_nesting` from `torch._C._functorch` [missing-module-attribute] +ERROR torch/_functorch/eager_transforms.py:19:5-28: Could not import `_func_increment_nesting` from `torch._C._functorch` [missing-module-attribute] +ERROR torch/_functorch/eager_transforms.py:24:5-41: Could not import `_propagate_functional_input_mutation` from `torch._C._functorch` [missing-module-attribute] +ERROR torch/_functorch/eager_transforms.py:87:40-45: Argument `Unknown | None` is not assignable to parameter `level` with type `int` in function `torch._C._functorch._unwrap_for_grad` [bad-argument-type] +ERROR torch/_functorch/eager_transforms.py:104:34-62: Missing argument `treespec` in function `torch.utils._pytree.tree_unflatten` [missing-argument] +ERROR torch/_functorch/eager_transforms.py:141:22-38: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_functorch/eager_transforms.py:142:10-41: Module `torch._dynamo.compiled_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/eager_transforms.py:152:9-25: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_functorch/eager_transforms.py:387:32-53: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_functorch/eager_transforms.py:406:34-37: `aux` may be uninitialized [unbound-name] +ERROR torch/_functorch/eager_transforms.py:603:35-48: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_functorch/eager_transforms.py:619:35-50: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/_functorch/eager_transforms.py:634:37-46: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_functorch/eager_transforms.py:661:41-54: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_functorch/eager_transforms.py:679:39-54: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/_functorch/eager_transforms.py:683:48-63: `stacked_results` may be uninitialized [unbound-name] +ERROR torch/_functorch/eager_transforms.py:686:20-35: `stacked_results` may be uninitialized [unbound-name] +ERROR torch/_functorch/eager_transforms.py:728:34-37: `aux` may be uninitialized [unbound-name] +ERROR torch/_functorch/eager_transforms.py:808:10-22: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_functorch/eager_transforms.py:980:19-35: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_functorch/eager_transforms.py:1128:75-78: `aux` may be uninitialized [unbound-name] +ERROR torch/_functorch/eager_transforms.py:1305:56-59: `aux` may be uninitialized [unbound-name] +ERROR torch/_functorch/eager_transforms.py:1402:20-45: Returned type `tuple[Unknown, tuple[Unknown, Unknown | None]]` is not assignable to declared return type `(...) -> Unknown` [bad-return] +ERROR torch/_functorch/eager_transforms.py:1403:16-34: Returned type `tuple[Unknown, Unknown]` is not assignable to declared return type `(...) -> Unknown` [bad-return] +ERROR torch/_functorch/eager_transforms.py:1423:31-40: Missing argument `mode` in function `torch._subclasses.functional_tensor.FunctionalTensor.__new__` [missing-argument] +ERROR torch/_functorch/eager_transforms.py:1424:9-39: No attribute `_mirror_autograd_meta_to` in module `torch` [missing-attribute] +ERROR torch/_functorch/eager_transforms.py:1448:12-39: No attribute `_is_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_functorch/functional_call.py:260:14-25: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_functorch/fx_minifier.py:27:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_functorch/fx_minifier.py:28:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_functorch/fx_minifier.py:66:23-46: Argument `Module | Tensor | Unknown` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR torch/_functorch/fx_minifier.py:140:26-35: Unexpected keyword argument `exists_ok` in function `os.makedirs` [unexpected-keyword] +ERROR torch/_functorch/fx_minifier.py:142:5-66: Could not find import of `torch_xla.stablehlo` [missing-import] +ERROR torch/_functorch/fx_minifier.py:223:37-45: Argument `Unknown | None` is not assignable to parameter `loc` with type `str` in function `torch.utils._content_store.ContentStoreWriter.__init__` [bad-argument-type] +ERROR torch/_functorch/fx_minifier.py:322:23-29: `output` may be uninitialized [unbound-name] +ERROR torch/_functorch/fx_minifier.py:326:13-19: `output` may be uninitialized [unbound-name] +ERROR torch/_functorch/fx_minifier.py:332:13-19: `output` may be uninitialized [unbound-name] +ERROR torch/_functorch/fx_minifier.py:432:47-51: Argument `list[Unknown] | tuple[Unknown, ...]` is not assignable to parameter `inps` with type `list[Tensor]` in function `ReproState.__init__` [bad-argument-type] +ERROR torch/_functorch/make_functional.py:79:32-48: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_functorch/make_functional.py:484:9-20: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_functorch/make_functional.py:572:25-36: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_functorch/make_functional.py:610:25-36: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_functorch/make_functional.py:612:25-36: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:156:17-26: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:394:30-43: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:436:29-42: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:450:17-28: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:458:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:533:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:534:22-44: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/partitioners.py:547:22-44: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/partitioners.py:552:12-34: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/partitioners.py:558:12-34: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/partitioners.py:569:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:570:18-40: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/partitioners.py:577:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:585:12-23: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:600:16-38: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/partitioners.py:661:16-38: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/partitioners.py:789:8-30: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/partitioners.py:843:8-30: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/partitioners.py:985:18-39: Module `torch.fx._lazy_graph_module` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/partitioners.py:986:18-39: Module `torch.fx._lazy_graph_module` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/partitioners.py:1187:16-25: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:1285:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:1325:36-48: Module `torch._prims` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/partitioners.py:1406:21-30: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:1411:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:1427:16-28: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:1429:47-59: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:1448:17-26: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:1455:24-36: Module `torch._prims` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/partitioners.py:1456:26-38: Module `torch._prims` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/partitioners.py:1477:21-33: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:1484:18-40: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/partitioners.py:2072:12-17: Could not find import of `pydot` [missing-import] +ERROR torch/_functorch/partitioners.py:2558:16-40: Could not find import of `matplotlib.pyplot` [missing-import] +ERROR torch/_functorch/partitioners.py:2662:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_functorch/partitioners.py:2670:35-47: No attribute `argmin` in module `torch` [missing-attribute] +ERROR torch/_functorch/predispatch.py:17:5-48: Could not import `_remove_batch_dim` from `torch._C._functorch` [missing-module-attribute] +ERROR torch/_functorch/predispatch.py:144:17-45: Object of class `NoneType` has no attribute `impl` [missing-attribute] +ERROR torch/_functorch/pyfunctorch.py:102:15-34: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/pyfunctorch.py:278:19-38: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/pyfunctorch.py:284:11-30: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/pyfunctorch.py:296:12-31: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/pyfunctorch.py:314:23-42: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_functorch/vmap.py:225:43-80: No matching overload found for function `zip.__new__` called with arguments: (type[zip[_T_co]], list[Any], list[int] | list[Any] | list[Never] | tuple[int, ...] | None) [no-matching-overload] +ERROR torch/_functorch/vmap.py:225:66-79: `flat_out_dims` may be uninitialized [unbound-name] +ERROR torch/_functorch/vmap.py:334:5-338:33: `TreeSpec | None` is not assignable to `None` (caused by inconsistent types when breaking cycles) [bad-assignment] +ERROR torch/_functorch/vmap.py:349:16-29: Argument `list[Any] | None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR torch/_functorch/vmap.py:351:35-48: Argument `list[Any] | None` is not assignable to parameter `iterable` with type `Iterable[Any]` in function `enumerate.__new__` [bad-argument-type] +ERROR torch/_functorch/vmap.py:352:28-37: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_functorch/vmap.py:481:13-32: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_guards.py:279:40-60: Module `torch._dynamo.guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/aoti_call_delegate.py:53:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/aoti_call_delegate.py:57:32-52: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/aoti_call_delegate.py:58:32-52: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/aoti_call_delegate.py:59:32-52: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/aoti_call_delegate.py:60:32-52: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/aoti_call_delegate.py:63:29-49: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:10:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:58:15-26: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:59:19-32: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:98:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:240:18-31: No attribute `movedim` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:243:22-32: No attribute `flip` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:295:40-53: No attribute `movedim` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:384:13-22: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:673:35-75: No attribute `_dispatch_tls_local_include_set` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:674:35-75: No attribute `_dispatch_tls_local_exclude_set` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:676:14-49: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:736:46-62: Argument `GraphModule` is not assignable to parameter `func` with type `(...) -> Unknown` in function `torch._functorch.apis.vmap` [bad-argument-type] +ERROR torch/_higher_order_ops/associative_scan.py:742:32-47: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:756:29-39: No attribute `tril` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:757:21-31: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:758:77-87: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:789:13-25: No attribute `select` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:807:31-42: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:808:31-42: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:809:32-43: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/associative_scan.py:909:9-20: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/auto_functionalize.py:12:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_higher_order_ops/auto_functionalize.py:32:32-52: No attribute `FunctionSchema` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/auto_functionalize.py:54:8-39: No attribute `is_inference_mode_enabled` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/auto_functionalize.py:84:16-32: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/auto_functionalize.py:173:29-39: No attribute `Type` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/auto_functionalize.py:251:29-39: No attribute `Type` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/auto_functionalize.py:359:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/auto_functionalize.py:401:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/auto_functionalize.py:444:72-86: No attribute `NoneType` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/auto_functionalize.py:450:61-77: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/auto_functionalize.py:454:12-58: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/auto_functionalize.py:460:13-33: No attribute `FunctionSchema` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/auto_functionalize.py:461:28-38: No attribute `Type` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/auto_functionalize.py:480:63-73: No attribute `Type` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/auto_functionalize.py:485:12-47: Module `torch._subclasses.functional_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/auto_functionalize.py:599:12-47: Module `torch._subclasses.functional_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/auto_functionalize.py:854:17-40: No attribute `FunctionSchema` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/base_hop.py:7:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_higher_order_ops/base_hop.py:87:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/base_hop.py:226:14-49: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/cond.py:12:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_higher_order_ops/cond.py:53:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/cond.py:247:15-32: Module `torch._dynamo.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/cond.py:308:35-75: No attribute `_dispatch_tls_local_include_set` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/cond.py:309:35-75: No attribute `_dispatch_tls_local_exclude_set` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/cond.py:312:14-49: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/cond.py:442:17-35: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/cond.py:442:17-48: Module `torch.utils._sympy.value_ranges` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/cond.py:567:20-30: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/cond.py:568:20-30: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/cond.py:654:16-35: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/cond.py:680:18-37: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/cond.py:708:20-31: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/effects.py:6:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_higher_order_ops/effects.py:24:6-31: Module `torch._library.custom_ops` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/effects.py:96:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/effects.py:130:12-24: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/effects.py:201:61-81: No attribute `FunctionSchema` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/effects.py:243:29-56: No attribute `_get_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/effects.py:244:13-43: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/executorch_call_delegate.py:33:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/executorch_call_delegate.py:37:38-58: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/executorch_call_delegate.py:38:38-58: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/executorch_call_delegate.py:39:38-58: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/executorch_call_delegate.py:40:38-58: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/executorch_call_delegate.py:76:35-55: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/executorch_call_delegate.py:102:10-43: No attribute `_ExcludeDispatchKeyGuard` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/executorch_call_delegate.py:103:9-32: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/executorch_call_delegate.py:103:33-53: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/executorch_call_delegate.py:116:24-47: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/executorch_call_delegate.py:116:56-72: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:8:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:97:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:138:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:172:25-38: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:172:57-70: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:172:76-89: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:176:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:177:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:178:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:179:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:193:27-38: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:196:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:228:13-36: No attribute `repeat_interleave` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:229:11-34: No attribute `repeat_interleave` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:252:19-28: No attribute `all` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:253:17-28: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:256:18-27: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:258:23-42: No attribute `_safe_softmax` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:329:35-44: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:331:52-61: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:359:10-31: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/flex_attention.py:359:10-44: Module `torch.fx.experimental.proxy_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/flex_attention.py:402:10-45: Module `torch._subclasses.functional_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/flex_attention.py:454:48-57: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:516:73-86: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:517:74-87: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:561:28-47: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:625:16-38: Returned type `tuple[(...) -> Unknown, GraphModule]` is not assignable to declared return type `tuple[(...) -> Unknown, (...) -> Unknown]` [bad-return] +ERROR torch/_higher_order_ops/flex_attention.py:658:14-49: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:789:12-33: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:797:43-52: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:798:43-52: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:799:43-52: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:800:43-52: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:864:17-33: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:864:56-79: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:882:11-34: No attribute `repeat_interleave` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:883:13-36: No attribute `repeat_interleave` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:901:22-31: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:902:22-33: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:910:18-27: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:919:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:920:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:921:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:922:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:950:23-34: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:951:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:965:16-25: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:966:18-27: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:978:27-36: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:979:29-38: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:1037:35-44: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:1040:52-61: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:1118:10-31: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/flex_attention.py:1118:10-44: Module `torch.fx.experimental.proxy_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/flex_attention.py:1142:10-45: Module `torch._subclasses.functional_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/flex_attention.py:1209:49-57: Argument `((...) -> Unknown) | GraphModule` is not assignable to parameter `inner_f` with type `(...) -> Unknown` in function `torch._subclasses.functional_tensor.BaseFunctionalizeAPI.functionalize` [bad-argument-type] +ERROR torch/_higher_order_ops/flex_attention.py:1210:52-63: Argument `GraphModule` is not assignable to parameter `inner_f` with type `(...) -> Unknown` in function `torch._subclasses.functional_tensor.BaseFunctionalizeAPI.functionalize` [bad-argument-type] +ERROR torch/_higher_order_ops/flex_attention.py:1277:18-34: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:1281:13-29: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:1281:52-75: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:1295:20-29: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/flex_attention.py:1296:22-31: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/hints_wrap.py:4:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_higher_order_ops/hints_wrap.py:65:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/invoke_subgraph.py:10:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_higher_order_ops/invoke_subgraph.py:81:61-76: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/invoke_subgraph.py:88:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/invoke_subgraph.py:187:23-36: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/invoke_subgraph.py:410:18-36: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/invoke_subgraph.py:443:21-52: No attribute `_ForceDispatchKeyGuard` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/invoke_subgraph.py:474:35-75: No attribute `_dispatch_tls_local_include_set` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/invoke_subgraph.py:475:35-75: No attribute `_dispatch_tls_local_exclude_set` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/invoke_subgraph.py:479:14-49: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/local_map.py:16:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_higher_order_ops/local_map.py:59:16-35: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/local_map.py:124:9-33: Module `torch.distributed.tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/local_map.py:124:9-40: Module `torch.distributed.tensor._utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/local_map.py:140:13-37: Module `torch.distributed.tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/local_map.py:140:13-44: Module `torch.distributed.tensor._utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/local_map.py:156:9-33: Module `torch.distributed.tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/local_map.py:156:9-40: Module `torch.distributed.tensor._utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/local_map.py:172:9-33: Module `torch.distributed.tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/local_map.py:172:9-40: Module `torch.distributed.tensor._utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/local_map.py:181:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/local_map.py:407:14-49: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/local_map.py:434:14-49: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/local_map.py:454:24-44: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/map.py:9:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_higher_order_ops/map.py:40:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/map.py:136:35-75: No attribute `_dispatch_tls_local_include_set` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/map.py:137:35-75: No attribute `_dispatch_tls_local_exclude_set` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/map.py:139:14-49: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/out_dtype.py:5:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_higher_order_ops/out_dtype.py:59:56-72: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/out_dtype.py:71:15-31: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/out_dtype.py:101:62-73: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/out_dtype.py:103:16-29: No attribute `_int_mm` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/out_dtype.py:110:29-40: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/out_dtype.py:112:30-40: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/out_dtype.py:113:30-40: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/out_dtype.py:120:52-62: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/out_dtype.py:121:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/out_dtype.py:140:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/out_dtype.py:150:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/partitioner.py:318:27-43: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/partitioner.py:328:38-46: Argument `GraphModule` is not assignable to parameter `func` with type `(...) -> Unknown` in function `torch._functorch.eager_transforms.functionalize` [bad-argument-type] +ERROR torch/_higher_order_ops/print.py:25:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/print.py:28:64-84: No attribute `FunctionSchema` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/print.py:61:16-36: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/print.py:79:19-39: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/print.py:80:19-39: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/run_const_graph.py:4:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_higher_order_ops/run_const_graph.py:22:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/scan.py:12:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_higher_order_ops/scan.py:69:30-53: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/scan.py:191:26-39: No attribute `movedim` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/scan.py:194:22-32: No attribute `flip` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/scan.py:242:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/scan.py:321:13-24: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/scan.py:329:13-28: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/scan.py:329:38-49: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/scan.py:467:14-49: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/scan.py:683:13-29: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/scan.py:773:14-24: No attribute `flip` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/scan.py:782:15-25: No attribute `flip` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/scan.py:869:18-37: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/scan.py:959:9-20: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:53:14-30: No attribute `IntType` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:54:16-34: No attribute `FloatType` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:55:14-33: No attribute `StringType` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:56:15-32: No attribute `BoolType` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:65:20-36: No attribute `AnyType` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:67:20-39: No attribute `SymIntType` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:69:20-40: No attribute `SymBoolType` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:70:16-44: No attribute `_jit_try_infer_type` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:80:20-37: No attribute `Argument` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:84:16-33: No attribute `Argument` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:146:29-52: No attribute `FunctionSchema` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:247:17-40: No attribute `FunctionSchema` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:252:25-42: No attribute `Argument` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:253:23-40: No attribute `Argument` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:274:13-22: Object of class `HopSchema` has no attribute `name` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:275:13-31: Object of class `HopSchema` has no attribute `overload_name` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:276:13-27: Object of class `HopSchema` has no attribute `arguments` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:277:13-25: Object of class `HopSchema` has no attribute `returns` [missing-attribute] +ERROR torch/_higher_order_ops/schema.py:286:11-34: No attribute `FunctionSchema` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/strict_mode.py:7:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_higher_order_ops/strict_mode.py:58:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/torchbind.py:6:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_higher_order_ops/torchbind.py:34:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/torchbind.py:37:32-52: No attribute `FunctionSchema` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/torchbind.py:41:32-50: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/torchbind.py:51:22-43: No attribute `parse_schema` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/torchbind.py:64:27-45: No attribute `ScriptMethod` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/torchbind.py:80:28-46: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/torchbind.py:84:37-55: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/torchbind.py:92:24-42: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/torchbind.py:114:24-42: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:20:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:36:5-39:6: Could not find import of `triton._C.libtriton.ir` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:54:9-79: Could not find import of `triton.runtime.autotuner` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:55:9-51: Could not find import of `triton.runtime.jit` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:240:12-18: Could not find import of `triton` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:241:12-30: Could not find import of `triton.runtime.jit` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:242:5-51: Could not find import of `triton.compiler.compiler` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:243:5-51: Could not find import of `triton.runtime.autotuner` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:244:5-47: Could not find import of `triton.runtime.jit` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:300:13-72: Could not find import of `triton.tools.tensor_descriptor` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:303:18-48: No attribute `_DisableTorchDispatch` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:306:31-42: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:312:18-48: No attribute `_DisableTorchDispatch` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:313:38-49: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:319:13-72: Could not find import of `triton.tools.tensor_descriptor` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:369:13-65: Could not find import of `triton.backends.compiler` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:397:17-56: Could not find import of `triton.backends` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:398:17-70: Could not find import of `triton.runtime.jit` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:412:17-87: Could not find import of `triton.runtime.jit` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:419:13-71: Could not find import of `triton._utils` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1019:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1045:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1080:13-17: Argument `list[((dict[str, int]) -> tuple[int, ...]) | tuple[Expr | SymInt | int, ...]]` is not assignable to parameter `grids` with type `list[((dict[str, int]) -> tuple[int, ...]) | tuple[Expr | int, ...]]` in function `torch._inductor.codegen.wrapper.user_defined_kernel_grid_fn_code` [bad-argument-type] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1095:17-1098:18: Could not find import of `triton.tools.experimental_descriptor` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1115:17-76: Could not find import of `triton.tools.tensor_descriptor` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1140:5-20: Cannot index into `Autotuner` [bad-index] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1140:5-20: Cannot index into `JITFunction` [bad-index] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1536:9-55: Could not find import of `triton.runtime.autotuner` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1569:21-43: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1580:21-43: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1650:9-39: Could not find import of `triton` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1651:9-85: Could not find import of `triton.runtime.autotuner` [missing-import] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1684:13-31: Object of class `Autotuner` has no attribute `fn` +Object of class `JITFunction` has no attribute `fn` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1695:41-64: Object of class `Autotuner` has no attribute `configs` +Object of class `JITFunction` has no attribute `configs` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1697:35-60: Object of class `Autotuner` has no attribute `arg_names` +Object of class `JITFunction` has no attribute `arg_names` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1700:27-45: Object of class `Autotuner` has no attribute `fn` +Object of class `JITFunction` has no attribute `fn` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1729:31-57: Object of class `Autotuner` has no attribute `perf_model` +Object of class `JITFunction` has no attribute `perf_model` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1730:39-73: Object of class `Autotuner` has no attribute `early_config_prune` +Object of class `JITFunction` has no attribute `early_config_prune` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1731:34-63: Object of class `Autotuner` has no attribute `configs_top_k` +Object of class `JITFunction` has no attribute `configs_top_k` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1762:45-68: Object of class `Autotuner` has no attribute `configs` +Object of class `JITFunction` has no attribute `configs` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1766:35-61: Object of class `Autotuner` has no attribute `perf_model` +Object of class `JITFunction` has no attribute `perf_model` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1767:43-77: Object of class `Autotuner` has no attribute `early_config_prune` +Object of class `JITFunction` has no attribute `early_config_prune` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1768:38-67: Object of class `Autotuner` has no attribute `configs_top_k` +Object of class `JITFunction` has no attribute `configs_top_k` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1773:19-37: Object of class `Autotuner` has no attribute `fn` +Object of class `JITFunction` has no attribute `fn` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1789:28-46: Object of class `Autotuner` has no attribute `fn` +Object of class `JITFunction` has no attribute `fn` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1801:45-68: Object of class `Autotuner` has no attribute `configs` +Object of class `JITFunction` has no attribute `configs` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1813:39-65: Object of class `Autotuner` has no attribute `perf_model` +Object of class `JITFunction` has no attribute `perf_model` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1814:47-81: Object of class `Autotuner` has no attribute `early_config_prune` +Object of class `JITFunction` has no attribute `early_config_prune` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1815:42-71: Object of class `Autotuner` has no attribute `configs_top_k` +Object of class `JITFunction` has no attribute `configs_top_k` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1820:23-41: Object of class `Autotuner` has no attribute `fn` +Object of class `JITFunction` has no attribute `fn` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1831:13-39: Object of class `Autotuner` has no attribute `perf_model` +Object of class `JITFunction` has no attribute `perf_model` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1832:16-50: Object of class `Autotuner` has no attribute `early_config_prune` +Object of class `JITFunction` has no attribute `early_config_prune` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1835:35-60: Object of class `Autotuner` has no attribute `arg_names` +Object of class `JITFunction` has no attribute `arg_names` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1840:17-51: Object of class `Autotuner` has no attribute `early_config_prune` +Object of class `JITFunction` has no attribute `early_config_prune` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1847:17-43: Object of class `Autotuner` has no attribute `perf_model` +Object of class `JITFunction` has no attribute `perf_model` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1851:17-46: Object of class `Autotuner` has no attribute `configs_top_k` +Object of class `JITFunction` has no attribute `configs_top_k` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1855:17-40: Object of class `Autotuner` has no attribute `configs` +Object of class `JITFunction` has no attribute `configs` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1878:67-85: Object of class `Autotuner` has no attribute `fn` +Object of class `JITFunction` has no attribute `fn` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1891:42-65: Object of class `Autotuner` has no attribute `configs` +Object of class `JITFunction` has no attribute `configs` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1920:42-64: Object of class `Autotuner` has no attribute `params` +Object of class `JITFunction` has no attribute `params` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1921:42-64: Object of class `Autotuner` has no attribute `params` +Object of class `JITFunction` has no attribute `params` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1926:42-60: Object of class `Autotuner` has no attribute `fn` +Object of class `JITFunction` has no attribute `fn` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:1927:42-60: Object of class `Autotuner` has no attribute `fn` +Object of class `JITFunction` has no attribute `fn` [missing-attribute] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:2109:20-42: Cannot index into `Autotuner` [bad-index] +ERROR torch/_higher_order_ops/triton_kernel_wrap.py:2109:20-42: Cannot index into `JITFunction` [bad-index] +ERROR torch/_higher_order_ops/utils.py:52:10-45: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:55:12-33: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:59:26-45: Module `torch._C._functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/utils.py:65:24-47: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:65:59-75: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:206:19-36: Module `torch._dynamo.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/utils.py:223:15-32: Module `torch._dynamo.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/utils.py:394:24-43: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/utils.py:396:26-45: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/utils.py:399:31-50: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/utils.py:401:30-49: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/utils.py:402:35-54: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/utils.py:458:23-33: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:459:20-39: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:473:18-45: No attribute `_is_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:478:34-63: No attribute `_from_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:528:16-43: No attribute `_is_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:529:21-50: No attribute `_from_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:555:17-33: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:688:32-43: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:828:13-29: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:858:12-29: No attribute `select_copy` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:1144:31-54: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:1145:31-54: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:1149:27-67: No attribute `_dispatch_tls_local_include_set` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:1151:27-67: No attribute `_dispatch_tls_local_exclude_set` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:1161:21-49: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/utils.py:1164:21-52: No attribute `_ForceDispatchKeyGuard` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/utils.py:1194:31-54: No attribute `FunctionSchema` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/while_loop.py:9:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_higher_order_ops/while_loop.py:55:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/while_loop.py:269:32-42: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/while_loop.py:270:31-41: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/while_loop.py:320:25-36: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/while_loop.py:341:17-30: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_higher_order_ops/while_loop.py:640:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/while_loop.py:716:14-49: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/while_loop.py:756:35-75: No attribute `_dispatch_tls_local_include_set` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/while_loop.py:757:35-75: No attribute `_dispatch_tls_local_exclude_set` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/while_loop.py:783:20-31: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/while_loop.py:783:42-53: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/while_loop.py:786:13-29: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/while_loop.py:796:13-22: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/while_loop.py:884:17-24: Argument `GraphModule` is not assignable to parameter `cond_fn` with type `(...) -> Unknown` in function `WhileLoopOp.__call__` [bad-argument-type] +ERROR torch/_higher_order_ops/while_loop.py:885:17-24: Argument `GraphModule` is not assignable to parameter `body_fn` with type `(...) -> Unknown` in function `WhileLoopOp.__call__` [bad-argument-type] +ERROR torch/_higher_order_ops/wrap.py:9:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_higher_order_ops/wrap.py:58:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_higher_order_ops/wrap.py:88:20-41: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_higher_order_ops/wrap.py:291:28-48: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_higher_order_ops/wrap.py:292:20-36: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:22:22-33: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:34:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:35:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:37:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:38:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:39:13-33: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:40:13-33: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:41:13-34: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:42:13-30: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:43:13-34: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:44:13-33: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:45:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:55:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:56:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:57:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:58:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:60:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:71:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:72:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:74:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:75:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:76:13-33: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:77:13-33: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:78:13-34: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:79:13-30: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:80:13-34: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:81:13-33: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:82:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:92:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:93:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:96:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:97:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:98:13-33: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:99:13-33: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:100:13-34: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:101:13-30: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:102:13-34: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:103:13-33: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:104:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:114:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:115:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:117:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:118:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:119:13-33: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:120:13-33: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:121:13-34: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:122:13-30: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:123:13-34: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:124:13-33: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:125:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:135:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:136:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:138:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:139:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:140:13-33: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:141:13-33: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:142:13-34: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:143:13-30: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:144:13-34: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:145:13-33: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:146:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:156:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:157:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:160:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:161:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:163:13-33: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:164:13-33: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:165:13-34: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:166:13-30: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:167:13-34: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:168:13-33: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:169:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:192:27-38: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/device_info.py:215:34-47: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/profile_analysis.py:358:14-25: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/profile_analysis.py:359:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/profile_analysis.py:360:12-21: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/profile_analysis.py:361:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/profile_analysis.py:362:14-25: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/profile_analysis.py:363:14-23: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/profile_analysis.py:364:13-23: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/profile_analysis.py:365:17-27: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/profile_analysis.py:366:17-31: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/profile_analysis.py:367:16-29: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/profile_analysis.py:368:16-28: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/profile_analysis.py:406:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/profile_analysis.py:418:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/profile_analysis.py:426:64-75: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/profile_analysis.py:440:24-38: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analysis/profile_analysis.py:442:24-37: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/analyze_preserves_zero_mask.py:20:41-52: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/analyze_preserves_zero_mask.py:51:51-62: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/analyze_preserves_zero_mask.py:79:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/analyze_preserves_zero_mask.py:117:35-46: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/analyze_preserves_zero_mask.py:131:31-44: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/analyze_preserves_zero_mask.py:131:46-59: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/analyze_preserves_zero_mask.py:139:27-38: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/aoti_eager.py:85:57-68: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/aoti_eager.py:86:18-29: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/aoti_eager.py:86:38-49: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/aoti_eager.py:86:57-67: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/aoti_eager.py:108:36-59: No attribute `_dispatch_keys` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/aoti_eager.py:146:35-46: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/aoti_eager.py:147:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/aoti_eager.py:153:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/aoti_eager.py:154:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/aoti_eager.py:161:36-48: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_inductor/aoti_eager.py:162:30-42: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_inductor/aoti_eager.py:195:17-28: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/aoti_eager.py:196:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/aoti_eager.py:197:17-29: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_inductor/aoti_eager.py:253:40-51: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/aoti_eager.py:255:40-52: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/aoti_eager.py:257:40-52: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_inductor/async_compile.py:285:13-33: Module `multiprocessing.util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/async_compile.py:375:17-42: Module `torch._inductor.codecache` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/async_compile.py:381:22-35: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/async_compile.py:403:45-67: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/async_compile.py:406:20-42: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/async_compile.py:422:31-53: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/async_compile.py:424:34-56: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/async_compile.py:585:25-50: Module `torch._inductor.codecache` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/async_compile.py:586:19-44: Module `torch._inductor.codecache` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/async_compile.py:621:25-50: Module `torch._inductor.codecache` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/async_compile.py:622:19-44: Module `torch._inductor.codecache` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/augmented_graph_helper.py:94:16-49: Module `torch._dynamo.graph_deduplication` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/autoheuristic/autoheuristic.py:97:12-34: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/autoheuristic/autoheuristic.py:100:29-51: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/autoheuristic/autoheuristic.py:102:12-34: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/autoheuristic/autoheuristic.py:123:12-34: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/autoheuristic/autoheuristic.py:143:12-34: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/autoheuristic/autoheuristic.py:264:13-35: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/autoheuristic/autoheuristic_utils.py:336:55-66: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/autoheuristic/autoheuristic_utils.py:338:17-30: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/autotune_process.py:362:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/autotune_process.py:363:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/autotune_process.py:364:12-31: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/autotune_process.py:365:14-33: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/autotune_process.py:654:13-36: Module `torch._inductor.runtime` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/autotune_process.py:654:13-54: Module `torch._inductor.runtime.triton_heuristics` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/autotune_process.py:751:30-41: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_inductor/autotune_process.py:753:23-36: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/bounds.py:185:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/bounds.py:186:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/bounds.py:193:9-19: Class member `ValueRangeAnalysis.index_expr` overrides parent class `DefaultHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/bounds.py:193:44-55: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/bounds.py:198:9-17: Class member `ValueRangeAnalysis.to_dtype` overrides parent class `SymPyValueRangeAnalysis` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/bounds.py:200:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/bounds.py:201:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/bounds.py:206:21-31: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/bounds.py:216:33-44: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/bounds.py:240:9-15: Class member `ValueRangeAnalysis.square` overrides parent class `DefaultHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/bounds.py:244:9-12: Class member `ValueRangeAnalysis.neg` overrides parent class `DefaultHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/bounds.py:251:9-17: Class member `ValueRangeAnalysis.truncdiv` overrides parent class `DefaultHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/bounds.py:259:9-12: Class member `ValueRangeAnalysis.sub` overrides parent class `DefaultHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/choices.py:38:5-46: Could not find import of `triton` [missing-import] +ERROR torch/_inductor/choices.py:95:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/choices.py:101:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/choices.py:107:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/choices.py:352:34-52: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/choices.py:352:34-60: Module `torch.utils._sympy.numbers` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/choices.py:391:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:183:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:186:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:186:26-37: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:224:29-41: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:229:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:242:20-23: Argument `list[int]` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/codegen/common.py:285:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:310:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:448:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:453:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:458:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:466:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:578:23-61: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:610:77-82: Argument `Sequence[Expr]` is not assignable to parameter `sizes` with type `Sequence[int]` in function `torch._inductor.ir.FlexibleLayout.contiguous_strides` [bad-argument-type] +ERROR torch/_inductor/codegen/common.py:631:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:631:47-58: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:632:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:632:21-32: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:633:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:633:20-31: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:637:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:638:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:639:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:640:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:641:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:642:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:643:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:644:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:645:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:646:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:647:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:657:15-26: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:662:16-26: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:672:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:678:16-27: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:696:58-69: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:705:21-31: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:750:76-87: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:767:13-32: No attribute `promote_types` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:771:69-80: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:777:66-77: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:806:66-77: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:808:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:824:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:828:61-72: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:832:72-83: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:871:44-55: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:879:40-53: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:887:52-65: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:891:67-80: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:895:66-79: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:899:61-74: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:903:51-62: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:907:31-42: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:912:47-58: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:920:40-51: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:924:39-50: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:928:40-51: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:935:39-50: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:941:40-51: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `add` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `sub` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `mul` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `floordiv` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `truediv` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `mod` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `pow` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `lshift` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `rshift` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `and_` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `or_` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `xor` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `eq` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `ne` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `lt` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `gt` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `le` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `ge` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `neg` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `identity` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `reciprocal` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `square` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `erfc` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `expm1` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `log10` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `log2` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `exp2` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `log1p` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `sigmoid` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `relu` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `floor_to_int` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `ceil_to_int` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `trunc_to_int` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `remainder` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:963:7-18: Field `round_to_int` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/codegen/common.py:977:57-68: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:981:9-20: Class member `OpOverrides.bitwise_not` overrides parent class `OpsHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/common.py:985:9-20: Class member `OpOverrides.logical_not` overrides parent class `OpsHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/common.py:989:9-20: Class member `OpOverrides.bitwise_and` overrides parent class `OpsHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/common.py:993:9-19: Class member `OpOverrides.bitwise_or` overrides parent class `OpsHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/common.py:997:9-20: Class member `OpOverrides.bitwise_xor` overrides parent class `OpsHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/common.py:1001:9-27: Class member `OpOverrides.bitwise_left_shift` overrides parent class `OpsHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/common.py:1005:9-28: Class member `OpOverrides.bitwise_right_shift` overrides parent class `OpsHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/common.py:1009:9-20: Class member `OpOverrides.int_truediv` overrides parent class `OpsHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/common.py:1019:9-26: Class member `OpOverrides.indirect_indexing` overrides parent class `OpsHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/common.py:1059:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:1060:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:1070:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:1083:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:1097:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:1121:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:1121:30-43: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:1579:58-69: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:1579:72-83: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:1617:24-80: Returned type `tuple[str, str, Expr]` is not assignable to declared return type `tuple[str, str, int]` [bad-return] +ERROR torch/_inductor/codegen/common.py:1642:19-31: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:1656:17-37: `Integer` is not assignable to variable `value` with type `int` [bad-assignment] +ERROR torch/_inductor/codegen/common.py:1658:34-39: Cannot index into `dict[Expr, str]` [bad-index] +ERROR torch/_inductor/codegen/common.py:1663:23-28: Cannot set item in `dict[Expr, str]` [unsupported-operation] +ERROR torch/_inductor/codegen/common.py:1675:68-88: Argument `dict_keys[Expr, str]` is not assignable to parameter `*iterables` with type `Iterable[str]` in function `itertools.chain.__new__` [bad-argument-type] +ERROR torch/_inductor/codegen/common.py:1690:45-56: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:1697:48-59: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:1744:49-54: Argument `Expr` is not assignable to parameter `size` with type `Symbol | str` in function `KernelArgs.wrap_size_arg` [bad-argument-type] +ERROR torch/_inductor/codegen/common.py:1746:59-64: Argument `Expr` is not assignable to parameter `sym` with type `Symbol` in function `torch._inductor.codegen.wrapper.PythonWrapperCodegen.ensure_size_computed` [bad-argument-type] +ERROR torch/_inductor/codegen/common.py:1789:30-35: Argument `Expr` is not assignable to parameter `object` with type `str` in function `list.append` [bad-argument-type] +ERROR torch/_inductor/codegen/common.py:1793:59-64: Argument `Expr` is not assignable to parameter `sym` with type `Symbol` in function `torch._inductor.codegen.wrapper.PythonWrapperCodegen.ensure_size_computed` [bad-argument-type] +ERROR torch/_inductor/codegen/common.py:1848:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:1880:9-20: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:1966:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:2038:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:2050:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:2184:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:2185:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:2202:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:2212:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:2227:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:2351:20-60: Returned type `list[Expr]` is not assignable to declared return type `Expr` [bad-return] +ERROR torch/_inductor/codegen/common.py:2385:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:2469:26-37: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:2476:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:2604:33-44: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:2701:9-26: Class member `CSEProxy.indirect_indexing` overrides parent class `DefaultHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/common.py:2715:57-67: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:2754:16-25: Returned type `Expr` is not assignable to declared return type `Symbol` [bad-return] +ERROR torch/_inductor/codegen/common.py:2812:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:2813:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:2822:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:2833:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/common.py:2845:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:143:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:144:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:147:27-38: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:148:5-18: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:149:5-16: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:150:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:151:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:152:5-15: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:153:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:154:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:155:5-16: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:156:5-16: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:157:5-24: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:158:5-22: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:161:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:162:5-18: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:163:5-16: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:164:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:165:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:166:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:167:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:168:5-24: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:169:5-22: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:177:17-30: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:184:21-31: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:185:35-46: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:212:21-31: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:213:40-51: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:226:28-38: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:255:37-47: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:331:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:723:52-63: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:764:9-12: Class member `CppOverrides.abs` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:768:9-12: Class member `CppOverrides.sin` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:772:9-12: Class member `CppOverrides.cos` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:776:9-12: Class member `CppOverrides.neg` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:780:9-12: Class member `CppOverrides.exp` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:793:9-12: Class member `CppOverrides.erf` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:801:9-15: Class member `CppOverrides.erfinv` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:805:9-13: Class member `CppOverrides.sqrt` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:809:9-14: Class member `CppOverrides.rsqrt` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:825:9-12: Class member `CppOverrides.tan` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:829:9-13: Class member `CppOverrides.tanh` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:833:9-16: Class member `CppOverrides.signbit` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:849:9-12: Class member `CppOverrides.log` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:853:9-14: Class member `CppOverrides.round` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:857:9-14: Class member `CppOverrides.floor` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:868:9-13: Class member `CppOverrides.ceil` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:872:9-14: Class member `CppOverrides.trunc` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:876:9-17: Class member `CppOverrides.truncdiv` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:881:9-13: Class member `CppOverrides.fmod` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:885:9-14: Class member `CppOverrides.isinf` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:889:9-14: Class member `CppOverrides.isnan` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:893:9-15: Class member `CppOverrides.lgamma` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:897:9-13: Class member `CppOverrides.acos` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:901:9-14: Class member `CppOverrides.acosh` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:905:9-13: Class member `CppOverrides.cosh` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:909:9-13: Class member `CppOverrides.sinh` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:913:9-13: Class member `CppOverrides.asin` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:917:9-14: Class member `CppOverrides.asinh` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:921:9-14: Class member `CppOverrides.atan2` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:925:9-13: Class member `CppOverrides.atan` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:929:9-14: Class member `CppOverrides.atanh` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:933:9-17: Class member `CppOverrides.copysign` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:937:9-14: Class member `CppOverrides.frexp` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:943:46-57: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:954:9-14: Class member `CppOverrides.hypot` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:966:9-18: Class member `CppOverrides.nextafter` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:986:9-16: Class member `CppOverrides.minimum` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:990:9-16: Class member `CppOverrides.maximum` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:994:9-14: Class member `CppOverrides.where` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1002:9-17: Class member `CppOverrides.constant` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1031:9-20: Class member `CppOverrides.logical_and` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1039:9-19: Class member `CppOverrides.logical_or` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1043:9-20: Class member `CppOverrides.logical_xor` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1047:9-20: Class member `CppOverrides.bitwise_and` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1051:9-20: Class member `CppOverrides.bitwise_not` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1055:9-19: Class member `CppOverrides.bitwise_or` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1059:9-20: Class member `CppOverrides.bitwise_xor` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1063:9-27: Class member `CppOverrides.bitwise_left_shift` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1083:9-28: Class member `CppOverrides.bitwise_right_shift` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1117:9-13: Class member `CppOverrides.sign` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1179:59-70: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1181:52-55: Argument `Expr | int` is not assignable to parameter `value` with type `bool | float | int` in function `torch._inductor.ops_handler.OpsHandler.constant` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp.py:1181:57-68: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1297:9-11: Class member `CppVecOverrides.eq` overrides parent class `CppOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1304:9-11: Class member `CppVecOverrides.ne` overrides parent class `CppOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1307:23-33: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1308:31-41: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1316:9-11: Class member `CppVecOverrides.lt` overrides parent class `CppOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1323:9-11: Class member `CppVecOverrides.gt` overrides parent class `CppOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1330:9-11: Class member `CppVecOverrides.le` overrides parent class `CppOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1337:9-11: Class member `CppVecOverrides.ge` overrides parent class `CppOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1344:9-13: Class member `CppVecOverrides.and_` overrides parent class `CppOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1455:58-69: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1465:9-12: Class member `CppVecOverrides.tan` overrides parent class `CppOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1469:9-13: Class member `CppVecOverrides.tanh` overrides parent class `CppOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1481:9-19: Class member `CppVecOverrides.reciprocal` overrides parent class `CppOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1517:9-17: Class member `CppVecOverrides.copysign` overrides parent class `CppOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1521:9-14: Class member `CppVecOverrides.atan2` overrides parent class `CppOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1525:9-14: Class member `CppVecOverrides.hypot` overrides parent class `CppOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1598:23-33: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1599:31-41: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1607:23-33: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1608:31-41: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1615:9-15: Class member `CppVecOverrides.square` overrides parent class `CppOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1621:23-33: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1622:31-41: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1646:9-17: Class member `CppVecOverrides.to_dtype` overrides parent class `CppOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:1648:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1649:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1650:13-24: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1651:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1652:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1653:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1654:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1655:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1656:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1657:13-32: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1658:13-30: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1665:52-63: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1700:29-39: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:1792:46-57: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2055:30-40: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2069:39-50: Argument `dict[Symbol, Unknown]` is not assignable to parameter `replacements` with type `dict[Expr, Any]` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp.py:2111:43-54: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2118:47-58: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2166:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2204:49-60: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2221:43-53: Argument `Literal[4096]` is not assignable to parameter `left` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.check_lt` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp.py:2224:60-70: Argument `Literal[4096]` is not assignable to parameter `right` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.check_leq` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp.py:2689:39-50: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2696:43-54: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2701:36-47: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2708:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2708:51-62: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2709:21-31: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2714:59-70: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2715:30-40: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2723:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2741:56-67: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2743:67-78: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2745:21-31: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2760:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2787:36-47: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2793:36-47: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2806:33-43: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2807:33-44: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2869:17-2874:22: `str | Unknown` is not assignable to `Buffer` (caused by inconsistent types when breaking cycles) [bad-assignment] +ERROR torch/_inductor/codegen/cpp.py:2923:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2946:33-44: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2950:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2986:47-58: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:2988:47-58: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3175:28-38: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3206:36-46: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3208:29-40: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3243:57-69: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3244:21-32: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3261:33-43: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3262:83-93: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3280:32-42: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3337:21-31: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3349:43-54: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3350:25-35: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3351:54-65: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3353:21-31: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3366:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3366:44-57: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3368:32-42: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3434:29-39: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3435:39-50: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3437:43-54: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3453:44-54: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3505:25-35: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3505:49-59: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3507:27-37: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3507:51-61: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3689:17-28: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3690:17-27: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3691:17-36: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3692:17-34: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3713:9-19: Class member `CppTile2DKernel.set_ranges` overrides parent class `CppVecKernel` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp.py:3739:62-73: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3747:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:3803:17-28: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:4049:66-77: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:4063:67-78: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:4075:60-71: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:4080:58-69: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:4091:71-82: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:4113:59-70: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:4151:29-40: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:4152:29-43: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:4153:29-42: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:4154:29-40: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:4158:29-40: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:4159:29-40: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:4168:47-58: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:4187:43-54: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:4218:67-78: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:4358:14-36: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/cpp.py:4584:47-61: Argument `Expr | None` is not assignable to parameter `var` with type `Symbol | None` in function `CppKernel.codegen_conditions` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp.py:4590:49-63: Argument `Expr | None` is not assignable to parameter `var` with type `Symbol | None` in function `CppKernel.codegen_conditions` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp.py:4607:33-47: Argument `Expr | None` is not assignable to parameter `iter_var` with type `Expr` in function `move_code_under_inner_loop` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp.py:4610:33-48: Argument `Expr | None` is not assignable to parameter `loop_end` with type `Expr` in function `move_code_under_inner_loop` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp.py:4695:43-55: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp.py:5200:59-65: Argument `Expr | Unknown` is not assignable to parameter `object` with type `int` in function `list.insert` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp.py:5206:29-48: Argument `list[int]` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp.py:5290:18-40: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/cpp_bmm_template.py:196:63-75: Argument `Symbol` is not assignable to parameter `idx` with type `int` in function `torch._inductor.codegen.cpp_template_kernel.CppTemplateKernel.select` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp_flex_attention_template.py:705:33-44: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_flex_attention_template.py:705:46-60: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_flex_attention_template.py:705:62-75: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_flex_attention_template.py:984:33-44: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:379:39-50: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:379:52-62: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:382:33-44: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:382:46-56: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:605:33-44: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:605:46-60: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:605:62-72: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:605:74-85: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:772:17-30: Module `torch._C._cpu` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:780:17-30: Module `torch._C._cpu` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:788:24-36: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:794:27-41: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:794:57-67: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:818:32-46: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:821:31-42: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:828:33-43: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:1254:25-26: Argument `Literal[0]` is not assignable to parameter `offset` with type `Expr` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:1354:57-68: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:1354:70-80: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:1401:34-45: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:1556:25-38: Module `torch._C._cpu` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:1559:25-38: Module `torch._C._cpu` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:1589:27-38: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:1589:57-68: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:1615:34-48: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:1616:34-44: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:1776:25-34: No attribute `eye` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:1782:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_gemm_template.py:1793:26-37: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_grouped_gemm_template.py:374:16-38: Cannot index into `bool` [bad-index] +ERROR torch/_inductor/codegen/cpp_grouped_gemm_template.py:415:25-38: Module `torch._C._cpu` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/cpp_grouped_gemm_template.py:418:25-38: Module `torch._C._cpu` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/cpp_grouped_gemm_template.py:491:27-38: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:96:33-44: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:96:46-56: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:97:42-53: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:98:41-52: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:99:41-51: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:113:47-58: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:113:60-70: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:114:52-63: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:114:65-75: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:229:18-29: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:230:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:231:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:232:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:256:17-28: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:347:21-32: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:352:21-35: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:353:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:358:21-31: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:359:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:364:21-35: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:365:22-32: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:366:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:367:23-34: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:376:21-35: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:377:22-32: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:378:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:379:23-34: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:385:21-32: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:390:21-35: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:391:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:396:21-31: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:397:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:402:21-35: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:403:22-32: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:404:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:405:23-34: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:414:21-35: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:415:22-32: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:416:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:417:23-34: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:423:21-32: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:424:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:425:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:426:23-34: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:431:21-32: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:432:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:433:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:434:23-34: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:963:45-56: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:963:58-68: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:978:34-47: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:978:75-86: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:989:21-31: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:990:22-32: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:991:22-33: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:992:23-34: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:998:21-35: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:999:22-32: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1000:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1001:23-34: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1007:21-35: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1008:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1014:21-34: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1015:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1021:21-32: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1022:22-32: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1023:22-33: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1024:23-34: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1281:33-44: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1281:46-56: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1289:37-51: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1290:43-53: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1290:55-66: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1330:33-44: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1330:46-56: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1338:34-44: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1338:72-83: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1348:21-31: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1349:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1407:36-46: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1430:21-35: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1431:22-33: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1432:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1433:23-34: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1681:21-35: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1682:22-33: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1683:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1684:23-34: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1955:31-45: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1956:37-47: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_micro_gemm.py:1956:49-60: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_template.py:117:13-32: Cannot index into `Iterable[Buffer]` [bad-index] +ERROR torch/_inductor/codegen/cpp_template_kernel.py:101:32-39: Cannot set item in `dict[Expr, str]` [unsupported-operation] +ERROR torch/_inductor/codegen/cpp_template_kernel.py:129:33-46: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_template_kernel.py:129:48-62: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_template_kernel.py:129:64-74: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_template_kernel.py:173:15-71: `Expr` is not assignable to variable `idx` with type `int` [bad-assignment] +ERROR torch/_inductor/codegen/cpp_template_kernel.py:173:45-48: Argument `int` is not assignable to parameter `idx` with type `Expr` in function `torch._inductor.ir.View.handle_negative_index` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp_template_kernel.py:207:59-70: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_template_kernel.py:211:46-58: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_template_kernel.py:219:45-56: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_template_kernel.py:224:46-58: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_template_kernel.py:322:24-30: Argument `Expr` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp_template_kernel.py:499:21-34: Argument `list[list[Any] | Unknown | None]` is not assignable to parameter `offsets` with type `list[Expr]` in function `CppTemplateKernel.store_grouped_gemm_pointwise_nodes` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp_template_kernel.py:530:33-46: Argument `list[list[Any] | Unknown | None]` is not assignable to parameter `offsets` with type `list[Expr]` in function `CppTemplateKernel.store_grouped_gemm_pointwise_nodes` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp_utils.py:32:5-18: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:33:5-18: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:34:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:35:5-16: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:36:5-16: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:37:5-16: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:38:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:39:5-17: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:40:5-17: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:41:5-17: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:42:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:43:5-15: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:44:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:45:5-20: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:46:5-20: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:47:5-21: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:48:5-24: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:49:5-22: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:50:5-26: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:51:5-26: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:55:5-18: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:56:5-18: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:57:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:58:5-16: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:59:5-16: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:60:5-16: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:61:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:62:5-17: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:63:5-17: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:64:5-17: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:65:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:66:5-17: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:67:5-17: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:68:5-15: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:69:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:70:5-20: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:71:5-20: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:72:5-21: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:73:5-24: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:74:5-22: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:75:5-26: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:76:5-26: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:88:5-18: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:148:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:257:26-27: Cannot set item in `dict[Expr, Any]` [unsupported-operation] +ERROR torch/_inductor/codegen/cpp_utils.py:274:27-57: Argument `Literal[0] | Symbol` is not assignable to parameter `object` with type `Expr` in function `list.append` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp_utils.py:462:11-22: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:482:19-29: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:483:27-37: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:484:22-33: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:489:57-70: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:517:24-35: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:517:37-47: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:518:17-28: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:518:30-41: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:520:17-30: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:520:32-45: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:539:29-40: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:540:49-60: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:541:42-53: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:542:41-52: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:543:58-69: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:545:29-40: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:554:29-40: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:555:49-60: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:556:42-53: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:557:41-52: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:558:59-70: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:559:49-60: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:568:29-40: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:592:36-47: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:593:35-46: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:594:37-48: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:595:62-73: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:602:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:603:45-56: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:607:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:618:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:619:45-56: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:620:36-47: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:622:75-86: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:624:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:636:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:637:45-56: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:639:60-71: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:640:41-52: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:642:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:674:45-56: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_utils.py:709:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:351:36-47: Argument `Basic` is not assignable to parameter `elem` with type `Symbol` in function `torch.utils._ordered_set.OrderedSet.add` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:360:16-32: Object of class `Symbol` has no attribute `is_integer` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:362:18-32: Object of class `Symbol` has no attribute `is_float` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:372:32-38: Argument `Expr | int` is not assignable to parameter `sym_or_exp` with type `Expr | Symbol` in function `codegen_symbol` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:1073:22-33: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:1078:21-34: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:1078:47-61: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:1316:17-26: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:1508:40-58: Argument `tuple[Symbol, GraphLowering]` is not assignable to parameter `elem` with type `tuple[str, GraphLowering]` in function `torch.utils._ordered_set.OrderedSet.add` [bad-argument-type] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:1993:21-31: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2012:9-25: Class member `CppWrapperCpu.codegen_subgraph` overrides parent class `PythonWrapperCodegen` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2082:38-48: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2122:17-32: No attribute `FloatType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2123:17-31: No attribute `BoolType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2124:17-33: No attribute `StringType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2125:17-27: No attribute `Type` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2126:17-36: No attribute `DeviceObjType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2133:37-53: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2136:39-52: No attribute `IntType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2139:39-55: No attribute `SymIntType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2143:39-55: No attribute `NumberType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2152:39-53: No attribute `ListType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2156:58-74: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2160:48-66: No attribute `OptionalType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2162:65-81: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2168:60-73: No attribute `IntType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2171:60-76: No attribute `SymIntType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2177:60-76: No attribute `NumberType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2202:41-59: No attribute `OptionalType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2208:36-49: No attribute `JitType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2210:40-56: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2218:42-58: No attribute `SymIntType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2220:42-56: No attribute `ListType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2221:47-63: No attribute `SymIntType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2230:31-47: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2230:49-63: No attribute `NoneType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2230:65-78: No attribute `IntType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2233:42-60: No attribute `OptionalType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2234:65-81: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2235:42-56: No attribute `ListType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2236:65-81: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2253:25-41: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2259:21-37: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2273:13-27: No attribute `BoolType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2274:13-32: No attribute `DeviceObjType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2275:13-28: No attribute `FloatType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2278:13-26: No attribute `IntType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2279:13-29: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2282:31-44: No attribute `JitType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2283:30-48: No attribute `OptionalType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2461:39-55: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2473:39-57: No attribute `OptionalType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2475:39-52: No attribute `IntType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2478:39-55: No attribute `SymIntType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2484:39-54: No attribute `FloatType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2486:39-53: No attribute `BoolType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2488:39-55: No attribute `StringType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2490:39-55: No attribute `NumberType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2494:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2497:38-49: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2499:38-50: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2501:38-57: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2512:33-47: No attribute `ListType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2564:37-50: No attribute `JitType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2578:41-59: No attribute `OptionalType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2597:41-57: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2766:30-48: No attribute `OptionalType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2768:32-48: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2770:33-46: No attribute `IntType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2770:48-64: No attribute `SymIntType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2773:21-35: No attribute `BoolType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2773:37-54: No attribute `SymBoolType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2773:56-70: No attribute `EnumType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2776:32-47: No attribute `FloatType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2778:32-48: No attribute `NumberType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2790:32-48: No attribute `StringType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2810:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2812:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2814:30-42: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2816:30-49: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2830:9-23: Class member `CppWrapperCpu.val_to_arg_str` overrides parent class `PythonWrapperCodegen` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2833:51-69: No attribute `OptionalType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2837:25-44: No attribute `DeviceObjType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2838:25-39: No attribute `ListType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2839:25-40: No attribute `TupleType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2845:34-50: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2857:30-48: No attribute `OptionalType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2863:42-56: No attribute `ListType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2863:58-73: No attribute `TupleType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2868:41-57: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2873:41-60: No attribute `DeviceObjType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2883:31-45: No attribute `ListType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2883:47-62: No attribute `TupleType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2895:41-57: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2901:41-59: No attribute `OptionalType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu.py:2913:30-46: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:571:9-24: Class member `CppWrapperCpuArrayRef.make_allocation` overrides parent class `CppWrapperCpu` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:858:35-53: No attribute `OptionalType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:859:52-68: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:862:52-68: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:873:22-33: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:878:21-34: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:878:47-61: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_gpu.py:14:19-39: Could not import `dtype` from `torch` [missing-module-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_gpu.py:750:60-71: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_mps.py:39:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cpp_wrapper_mps.py:84:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cuda_kernel.py:13:19-39: Could not import `dtype` from `torch` [missing-module-attribute] +ERROR torch/_inductor/codegen/cuda/cuda_kernel.py:303:66-83: Argument `Sequence[Expr | int]` is not assignable to parameter `*iterables` with type `Iterable[Expr]` in function `itertools.chain.__new__` [bad-argument-type] +ERROR torch/_inductor/codegen/cuda/cuda_kernel.py:387:23-48: Argument `int` is not assignable to parameter `count` with type `Expr` in function `torch._inductor.codegen.common.WorkspaceArg.__init__` [bad-argument-type] +ERROR torch/_inductor/codegen/cuda/cuda_kernel.py:483:16-19: Returned type `Expr` is not assignable to declared return type `str` [bad-return] +ERROR torch/_inductor/codegen/cuda/cuda_kernel.py:502:50-56: Argument `Expr | int` is not assignable to parameter `left` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.statically_known_leq` [bad-argument-type] +ERROR torch/_inductor/codegen/cuda/cuda_kernel.py:521:50-62: Argument `Expr | int` is not assignable to parameter `left` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.statically_known_leq` [bad-argument-type] +ERROR torch/_inductor/codegen/cuda/cuda_kernel.py:545:47-54: Argument `Expr | int` is not assignable to parameter `index` with type `Expr | list[Expr] | tuple[Expr, ...]` in function `torch._inductor.codegen.common.Kernel.rename_indexing` [bad-argument-type] +ERROR torch/_inductor/codegen/cuda/cuda_kernel.py:547:47-54: Argument `Expr | int` is not assignable to parameter `index` with type `Expr | list[Expr] | tuple[Expr, ...]` in function `torch._inductor.codegen.common.Kernel.rename_indexing` [bad-argument-type] +ERROR torch/_inductor/codegen/cuda/cuda_template.py:354:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cuda_template.py:355:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cuda_template.py:356:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cuda_template.py:357:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cuda_template.py:358:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cuda_template.py:359:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cuda_template.py:360:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cuda_template.py:361:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cuda_template.py:362:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cuda_template.py:363:9-28: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cuda_template.py:367:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cuda_template.py:368:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_cache.py:105:9-107:10: Could not find import of `torch._inductor.fb.cutlass_remote_cache` [missing-import] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py:52:5-57:6: Could not find import of `cutlass_library` [missing-import] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:11:5-49: Could not find import of `cutlass_library.gemm_operation` [missing-import] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:12:5-42: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:14:15-22: Could not find name `logging` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:104:34-45: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:105:36-47: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:106:31-40: Could not find name `LayoutTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:107:37-57: Could not find name `EpilogueFunctor3xTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:108:21-38: Could not find name `EpilogueFunctor3x` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:110:44-55: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:111:39-50: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:112:34-45: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:114:20-38: Could not find name `SubstituteTemplate` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:118:34-44: Could not find name `is_grouped` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:130:24-34: Could not find name `is_grouped` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:163:21-32: Could not find name `OpcodeClass` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:164:21-32: Could not find name `OpcodeClass` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:199:45-56: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:200:41-61: Could not find name `EpilogueFunctor3xTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:204:36-54: Could not find name `SubstituteTemplate` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:209:21-36: Could not find name `is_block_scaled` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:210:59-67: Could not find name `DataType` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:214:36-57: Object of class `EmitGemmUniversal3xInstanceWithEVT` has no attribute `epilogue_functor` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:217:17-32: Could not find name `is_block_scaled` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:218:55-63: Could not find name `DataType` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:226:17-28: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:228:41-52: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:229:6-27: Could not find name `ComplexTransformTag3x` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:232:17-28: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:234:41-52: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:235:6-27: Could not find name `ComplexTransformTag3x` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:237:38-57: Could not find name `EpilogueScheduleTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:239:37-48: Could not find name `OpcodeClass` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:241:21-41: Could not find name `EpilogueScheduleType` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:242:21-41: Could not find name `EpilogueScheduleType` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:244:27-37: Could not find name `is_grouped` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:245:66-85: Could not find name `to_grouped_schedule` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:246:21-39: Could not find name `KernelScheduleType` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:250:50-69: Could not find name `EpilogueScheduleTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:251:29-48: Could not find name `to_grouped_schedule` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:252:33-53: Could not find name `EpilogueScheduleType` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:255:66-85: Could not find name `to_grouped_schedule` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:256:21-39: Could not find name `KernelScheduleType` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:260:50-69: Could not find name `EpilogueScheduleTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:261:29-48: Could not find name `to_grouped_schedule` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:262:33-53: Could not find name `EpilogueScheduleType` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:265:65-76: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:266:65-76: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:269:28-37: Could not find name `LayoutTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:270:28-37: Could not find name `LayoutTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:275:32-44: Could not find name `DataTypeSize` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:276:32-44: Could not find name `DataTypeSize` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:285:30-41: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:286:28-39: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:287:29-40: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:288:28-39: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:330:21-35: Could not find name `MixedInputMode` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:331:21-35: Could not find name `MixedInputMode` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:332:21-35: Could not find name `MixedInputMode` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:338:36-44: Could not find name `DataType` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:339:35-43: Could not find name `DataType` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:339:66-74: Could not find name `DataType` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:361:30-41: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:363:32-41: Could not find name `LayoutTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:365:30-41: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:367:32-41: Could not find name `LayoutTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:369:40-51: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:370:38-52: Could not find name `OpcodeClassTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:371:37-51: Could not find name `OpcodeClassTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:391:40-57: Could not find name `KernelScheduleTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:400:32-51: Could not find name `ComplexTransformTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:401:32-51: Could not find name `ComplexTransformTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:402:35-51: Could not find name `MathOperationTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:406:41-52: Could not find name `DataTypeTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:407:39-55: Could not find name `TileSchedulerTag` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:411:20-38: Could not find name `SubstituteTemplate` [unknown-name] +ERROR torch/_inductor/codegen/cuda/cutlass_python_evt.py:60:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_python_evt.py:172:41-174:14: Cannot set item in `dict[str, Buffer | Expr | TensorBox | TorchBindObject]` [unsupported-operation] +ERROR torch/_inductor/codegen/cuda/cutlass_python_evt.py:297:18-35: Object of class `Expr` has no attribute `get_layout` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:32:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:32:59-70: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:32:72-83: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:33:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:34:6-16: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:34:18-32: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:34:34-53: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:34:55-65: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:160:20-45: Could not find import of `cutlass_library.generator` [missing-import] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:161:20-43: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:162:20-44: Could not find import of `cutlass_library.manifest` [missing-import] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:242:12-58: Could not find import of `cutlass_library.generator` [missing-import] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:243:12-56: Could not find import of `cutlass_library.manifest` [missing-import] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:298:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:299:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:300:5-24: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:306:18-29: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:312:23-34: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:314:25-35: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:316:25-39: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:324:27-38: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:329:12-27: Could not find import of `cutlass_library` [missing-import] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:331:23-34: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:336:25-35: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:338:25-39: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:340:25-35: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:342:25-36: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:344:25-36: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:346:25-44: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:353:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:354:15-26: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:370:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:371:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:376:23-33: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:376:35-49: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:377:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:378:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:382:24-37: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:382:39-53: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:382:55-66: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:382:68-87: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:383:29-40: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:384:25-35: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:385:29-40: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:396:33-44: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:402:24-34: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:402:36-50: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:404:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:406:26-37: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:406:39-49: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:406:51-70: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/cutlass_utils.py:408:25-36: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:658:16-54: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:674:16-54: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1003:16-65: Could not find import of `cutlass_library.gemm_operation` [missing-import] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1089:16-65: Could not find import of `cutlass_library.gemm_operation` [missing-import] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1090:16-54: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1321:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1322:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1372:16-54: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1391:16-54: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1477:9-20: Class member `CUTLASS3xGemmTemplate._render_evt` overrides parent class `CUTLASSGemmTemplate` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1483:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1484:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1530:16-54: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1571:16-54: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1743:16-54: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1758:16-54: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1792:16-54: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1805:16-54: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1822:16-54: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1859:16-65: Could not find import of `cutlass_library.gemm_operation` [missing-import] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1860:16-54: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/gemm_template.py:1885:16-54: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/serialization.py:69:9-62: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/serialization.py:131:9-45: Could not find import of `cutlass_library` [missing-import] +ERROR torch/_inductor/codegen/cuda/serialization.py:132:9-75: Could not find import of `cutlass_library.gemm_operation` [missing-import] +ERROR torch/_inductor/codegen/cuda/serialization.py:133:9-141:10: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/serialization.py:275:9-60: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/serialization.py:360:9-45: Could not find import of `cutlass_library` [missing-import] +ERROR torch/_inductor/codegen/cuda/serialization.py:361:9-88: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda/serialization.py:444:9-45: Could not find import of `cutlass_library` [missing-import] +ERROR torch/_inductor/codegen/cuda/serialization.py:445:9-449:10: Could not find import of `cutlass_library.library` [missing-import] +ERROR torch/_inductor/codegen/cuda_combined_scheduling.py:50:44-56: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cuda_combined_scheduling.py:92:9-17: Class member `CUDACombinedScheduling.group_fn` overrides parent class `BaseScheduling` in an inconsistent manner [bad-override] +ERROR torch/_inductor/codegen/cutedsl/_cutedsl_utils.py:3:8-28: Could not find import of `cutlass.cute` [missing-import] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:411:46-57: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:416:16-29: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:416:71-82: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:431:68-79: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:444:31-44: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:444:46-60: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:448:29-42: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:466:60-71: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:480:9-26: Class member `ModificationWrapperCuteDSL.indirect_indexing` overrides parent class `WrapperHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:23:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:23:48-59: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:25:18-31: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:25:33-47: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:26:16-29: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:39:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:40:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:41:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:42:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:43:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:44:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:45:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:46:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:47:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:48:9-28: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:49:9-26: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:81:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:147:57-68: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:182:9-12: Class member `CuteDSLOpOverrides.exp` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:189:9-13: Class member `CuteDSLOpOverrides.sqrt` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:194:9-12: Class member `CuteDSLOpOverrides.log` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:199:9-12: Class member `CuteDSLOpOverrides.cos` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:204:9-12: Class member `CuteDSLOpOverrides.sin` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:209:9-12: Class member `CuteDSLOpOverrides.erf` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:214:9-16: Class member `CuteDSLOpOverrides.maximum` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:218:9-16: Class member `CuteDSLOpOverrides.minimum` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:222:9-14: Class member `CuteDSLOpOverrides.where` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:262:9-12: Class member `CuteDSLOpOverrides.abs` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:269:23-36: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:273:28-41: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:273:43-57: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:273:59-72: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:283:9-12: Class member `CuteDSLOpOverrides.neg` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:292:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/debug_utils.py:11:19-39: Could not import `dtype` from `torch` [missing-module-attribute] +ERROR torch/_inductor/codegen/debug_utils.py:271:30-53: Module `torch._inductor.codegen` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/debug_utils.py:271:30-61: Module `torch._inductor.codegen.wrapper` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/halide.py:64:16-27: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:64:28-39: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:215:5-15: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:216:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:217:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:218:5-18: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:219:5-18: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:220:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:221:5-16: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:222:5-16: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:223:5-16: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:224:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:225:5-17: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:226:5-17: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:227:5-17: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:236:65-76: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:237:17-28: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:238:18-31: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:238:33-47: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:239:17-30: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:247:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:248:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:251:21-31: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:256:36-47: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:256:60-71: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:257:26-39: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:257:41-55: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:260:22-35: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:260:37-51: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:269:9-12: Class member `HalideOverrides.abs` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:273:9-12: Class member `HalideOverrides.exp` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:279:9-13: Class member `HalideOverrides.sqrt` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:283:9-16: Class member `HalideOverrides.minimum` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:291:9-16: Class member `HalideOverrides.maximum` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:299:9-14: Class member `HalideOverrides.where` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:305:9-12: Class member `HalideOverrides.cos` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:309:9-12: Class member `HalideOverrides.sin` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:313:9-15: Class member `HalideOverrides.lgamma` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:317:9-12: Class member `HalideOverrides.erf` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:321:9-13: Class member `HalideOverrides.cosh` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:325:9-13: Class member `HalideOverrides.sinh` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:329:9-13: Class member `HalideOverrides.acos` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:333:9-14: Class member `HalideOverrides.acosh` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:337:9-13: Class member `HalideOverrides.asin` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:341:9-14: Class member `HalideOverrides.asinh` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:345:9-14: Class member `HalideOverrides.atan2` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:349:9-13: Class member `HalideOverrides.atan` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:353:9-14: Class member `HalideOverrides.atanh` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:357:9-17: Class member `HalideOverrides.copysign` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:361:9-15: Class member `HalideOverrides.erfinv` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:365:9-14: Class member `HalideOverrides.hypot` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:369:9-18: Class member `HalideOverrides.nextafter` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:373:9-20: Class member `HalideOverrides.logical_and` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:381:9-19: Class member `HalideOverrides.logical_or` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:385:9-20: Class member `HalideOverrides.logical_xor` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:389:9-20: Class member `HalideOverrides.bitwise_and` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:393:9-20: Class member `HalideOverrides.bitwise_not` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:397:9-19: Class member `HalideOverrides.bitwise_or` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:401:9-20: Class member `HalideOverrides.bitwise_xor` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:405:9-27: Class member `HalideOverrides.bitwise_left_shift` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:409:9-28: Class member `HalideOverrides.bitwise_right_shift` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:429:9-14: Class member `HalideOverrides.rsqrt` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:434:9-12: Class member `HalideOverrides.tan` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:438:9-13: Class member `HalideOverrides.tanh` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:442:9-16: Class member `HalideOverrides.signbit` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:446:9-13: Class member `HalideOverrides.fmod` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:455:9-12: Class member `HalideOverrides.log` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:463:9-14: Class member `HalideOverrides.isinf` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:468:9-14: Class member `HalideOverrides.isnan` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:473:9-14: Class member `HalideOverrides.round` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:477:9-14: Class member `HalideOverrides.floor` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:492:9-13: Class member `HalideOverrides.sign` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:493:45-55: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:494:46-56: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:499:9-14: Class member `HalideOverrides.trunc` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:503:9-17: Class member `HalideOverrides.truncdiv` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:511:9-13: Class member `HalideOverrides.ceil` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:526:26-37: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:526:39-50: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:531:9-26: Class member `HalideOverrides.indirect_indexing` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:533:45-56: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:566:9-14: Class member `HalideOverrides.frexp` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:594:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:720:35-46: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:811:42-43: Argument `Literal[1]` is not assignable to parameter `divisor` with type `Expr` in function `torch._inductor.codegen.simd.IterationRangesRoot.lookup` [bad-argument-type] +ERROR torch/_inductor/codegen/halide.py:983:32-70: `list[tuple[list[Basic | Unknown], Expr | Unknown] | tuple[list[Symbol], Expr]]` is not assignable to variable `split_failed` with type `list[tuple[list[Symbol], Expr]]` [bad-assignment] +ERROR torch/_inductor/codegen/halide.py:1133:22-35: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:1133:37-51: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:1134:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:1199:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:1200:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:1299:9-13: Class member `HalideKernel.scan` overrides parent class `SIMDKernel` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/halide.py:1301:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/halide.py:1693:43-55: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/memory_planning.py:387:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/memory_planning.py:467:27-38: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/memory_planning.py:489:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:44:5-15: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:45:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:46:5-16: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:47:5-16: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:48:5-16: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:49:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:50:5-16: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:51:5-15: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:52:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:77:12-27: Object of class `Expr` has no attribute `is_integer` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:86:16-31: Object of class `Expr` has no attribute `is_integer` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:120:12-29: Object of class `Basic` has no attribute `is_integer` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:122:20-31: `<` is not supported between `Basic` and `Literal[0]` [unsupported-operation] +ERROR torch/_inductor/codegen/mps.py:127:82-90: Unary `-` is not supported on `Basic` [unsupported-operation] +ERROR torch/_inductor/codegen/mps.py:145:12-27: Object of class `Expr` has no attribute `is_integer` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:177:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:178:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:181:21-33: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:190:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:190:56-67: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:195:9-17: Class member `MetalOverrides.constant` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:195:55-66: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:199:45-56: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:207:9-15: Class member `MetalOverrides.masked` overrides parent class `OpOverrides` in an inconsistent manner [bad-override] +ERROR torch/_inductor/codegen/mps.py:210:22-26: Expected a callable, got `Expr` [not-callable] +ERROR torch/_inductor/codegen/mps.py:218:9-14: Class member `MetalOverrides.where` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:226:9-16: Class member `MetalOverrides.maximum` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:232:9-16: Class member `MetalOverrides.minimum` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:238:9-19: Class member `MetalOverrides.logical_or` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:242:9-20: Class member `MetalOverrides.logical_and` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:246:9-14: Class member `MetalOverrides.isnan` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:250:9-14: Class member `MetalOverrides.isinf` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:254:9-12: Class member `MetalOverrides.log` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:258:9-12: Class member `MetalOverrides.exp` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:262:9-12: Class member `MetalOverrides.abs` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:266:9-16: Class member `MetalOverrides.signbit` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:270:9-12: Class member `MetalOverrides.sin` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:278:9-12: Class member `MetalOverrides.cos` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:282:9-12: Class member `MetalOverrides.tan` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:286:9-13: Class member `MetalOverrides.asin` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:290:9-13: Class member `MetalOverrides.acos` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:294:9-13: Class member `MetalOverrides.atan` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:298:9-14: Class member `MetalOverrides.atan2` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:302:9-13: Class member `MetalOverrides.sqrt` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:306:9-12: Class member `MetalOverrides.neg` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:312:9-14: Class member `MetalOverrides.rsqrt` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:316:9-13: Class member `MetalOverrides.tanh` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:320:9-14: Class member `MetalOverrides.atanh` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:329:9-14: Class member `MetalOverrides.floor` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:333:9-13: Class member `MetalOverrides.sign` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:337:9-13: Class member `MetalOverrides.fmod` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:343:9-14: Class member `MetalOverrides.trunc` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:347:9-17: Class member `MetalOverrides.truncdiv` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:349:37-62: Object of class `NoneType` has no attribute `is_floating_point` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:350:37-62: Object of class `NoneType` has no attribute `is_floating_point` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:356:9-13: Class member `MetalOverrides.ceil` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:377:9-14: Class member `MetalOverrides.round` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/mps.py:486:35-46: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:495:22-35: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:495:37-51: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:500:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:537:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:543:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:550:39-49: Argument `int` is not assignable to parameter with type `Expr` [bad-argument-type] +ERROR torch/_inductor/codegen/mps.py:559:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:560:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:575:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:576:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:639:51-65: Argument `Expr | int` is not assignable to parameter `elem_count` with type `int | None` in function `MetalKernel._new_idxvar` [bad-argument-type] +ERROR torch/_inductor/codegen/mps.py:657:51-65: Argument `Expr | int` is not assignable to parameter `elem_count` with type `int | None` in function `MetalKernel._new_idxvar` [bad-argument-type] +ERROR torch/_inductor/codegen/mps.py:677:56-70: Argument `Expr | int` is not assignable to parameter `elem_count` with type `int | None` in function `MetalKernel._new_idxvar` [bad-argument-type] +ERROR torch/_inductor/codegen/mps.py:678:51-65: Argument `Expr | int` is not assignable to parameter `elem_count` with type `int | None` in function `MetalKernel._new_idxvar` [bad-argument-type] +ERROR torch/_inductor/codegen/mps.py:717:55-67: Argument `Min` is not assignable to parameter `elem_count` with type `int | None` in function `MetalKernel._new_idxvar` [bad-argument-type] +ERROR torch/_inductor/codegen/mps.py:722:27-40: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:725:50-62: Argument `Min` is not assignable to parameter `elem_count` with type `int | None` in function `MetalKernel._new_idxvar` [bad-argument-type] +ERROR torch/_inductor/codegen/mps.py:734:23-36: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:739:50-62: Argument `Min` is not assignable to parameter `elem_count` with type `int | None` in function `MetalKernel._new_idxvar` [bad-argument-type] +ERROR torch/_inductor/codegen/mps.py:753:23-36: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:882:24-73: No matching overload found for function `min` called with arguments: (Integer, int) [no-matching-overload] +ERROR torch/_inductor/codegen/mps.py:899:33-46: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/mps.py:959:42-43: Argument `Expr` is not assignable to parameter `sym` with type `Symbol` in function `torch._inductor.codegen.wrapper.PythonWrapperCodegen.ensure_size_computed` [bad-argument-type] +ERROR torch/_inductor/codegen/mps.py:1034:20-32: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/pallas.py:73:9-12: Class member `PallasKernelOverrides.sin` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:77:9-12: Class member `PallasKernelOverrides.cos` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:81:9-12: Class member `PallasKernelOverrides.tan` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:85:9-13: Class member `PallasKernelOverrides.sinh` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:89:9-13: Class member `PallasKernelOverrides.cosh` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:93:9-13: Class member `PallasKernelOverrides.tanh` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:97:9-13: Class member `PallasKernelOverrides.asin` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:101:9-13: Class member `PallasKernelOverrides.acos` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:105:9-13: Class member `PallasKernelOverrides.atan` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:109:9-12: Class member `PallasKernelOverrides.exp` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:121:9-12: Class member `PallasKernelOverrides.log` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:137:9-13: Class member `PallasKernelOverrides.sqrt` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:141:9-14: Class member `PallasKernelOverrides.rsqrt` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:145:9-12: Class member `PallasKernelOverrides.abs` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:149:9-12: Class member `PallasKernelOverrides.neg` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:153:9-14: Class member `PallasKernelOverrides.floor` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:157:9-13: Class member `PallasKernelOverrides.ceil` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:161:9-14: Class member `PallasKernelOverrides.trunc` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:165:9-14: Class member `PallasKernelOverrides.round` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:181:9-16: Class member `PallasKernelOverrides.maximum` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:185:9-16: Class member `PallasKernelOverrides.minimum` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:189:9-14: Class member `PallasKernelOverrides.where` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:195:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/pallas.py:196:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/pallas.py:204:45-56: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/pallas.py:215:9-17: Class member `PallasKernelOverrides.constant` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:215:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/pallas.py:218:21-31: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/pallas.py:275:9-20: Class member `PallasKernelOverrides.logical_and` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:279:9-19: Class member `PallasKernelOverrides.logical_or` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:283:9-20: Class member `PallasKernelOverrides.logical_not` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:287:9-20: Class member `PallasKernelOverrides.logical_xor` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:292:9-14: Class member `PallasKernelOverrides.atan2` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:296:9-14: Class member `PallasKernelOverrides.hypot` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:300:9-13: Class member `PallasKernelOverrides.fmod` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:317:9-13: Class member `PallasKernelOverrides.sign` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:321:9-16: Class member `PallasKernelOverrides.signbit` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:326:9-12: Class member `PallasKernelOverrides.erf` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:334:9-15: Class member `PallasKernelOverrides.erfinv` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:338:9-15: Class member `PallasKernelOverrides.lgamma` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:356:9-12: Class member `PallasKernelOverrides.fma` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:361:9-17: Class member `PallasKernelOverrides.copysign` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:365:9-18: Class member `PallasKernelOverrides.nextafter` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:373:9-14: Class member `PallasKernelOverrides.frexp` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:382:9-20: Class member `PallasKernelOverrides.bitwise_and` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:386:9-19: Class member `PallasKernelOverrides.bitwise_or` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:390:9-20: Class member `PallasKernelOverrides.bitwise_xor` overrides parent class `OpOverrides` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/pallas.py:724:53-56: Cannot index into `dict[Symbol, IterationRangesEntry]` [bad-index] +ERROR torch/_inductor/codegen/pallas.py:783:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/pallas.py:784:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/pallas.py:1150:43-55: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_template.py:18:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_template.py:19:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_template.py:20:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_template.py:21:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_template.py:22:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_template.py:23:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_template.py:24:9-30: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_template.py:25:9-28: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_template.py:26:9-30: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_template.py:27:9-26: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_tile_template.py:13:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_tile_template.py:14:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_tile_template.py:15:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_tile_template.py:16:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_tile_template.py:17:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_tile_template.py:18:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_tile_template.py:19:9-30: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_tile_template.py:20:9-28: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_tile_template.py:21:9-30: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_tile_template.py:22:9-26: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_universal_gemm_template.py:508:25-36: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/ck_universal_gemm_template.py:509:25-36: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/compile_command.py:23:9-37: Could not find import of `libfb.py` [missing-import] +ERROR torch/_inductor/codegen/rocm/rocm_benchmark_request.py:77:30-41: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/rocm_benchmark_request.py:79:23-36: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/rocm_kernel.py:195:23-48: Argument `int` is not assignable to parameter `count` with type `Expr` in function `torch._inductor.codegen.common.WorkspaceArg.__init__` [bad-argument-type] +ERROR torch/_inductor/codegen/rocm/rocm_utils.py:11:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/rocm_utils.py:12:5-26: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/rocm_utils.py:13:5-26: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/rocm_utils.py:14:5-24: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/rocm_utils.py:15:5-22: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/rocm/rocm_utils.py:16:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/simd.py:95:17-39: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/simd.py:351:45-48: Argument `Basic` is not assignable to parameter `object` with type `Expr` in function `list.append` [bad-argument-type] +ERROR torch/_inductor/codegen/simd.py:448:66-83: Argument `dict[Symbol, Expr]` is not assignable to parameter with type `dict[Expr, Expr]` [bad-argument-type] +ERROR torch/_inductor/codegen/simd.py:473:35-46: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/simd.py:476:49-60: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/simd.py:616:51-54: No matching overload found for function `dict.get` called with arguments: (Basic) [no-matching-overload] +ERROR torch/_inductor/codegen/simd.py:618:39-58: Argument `dict[Basic, Any]` is not assignable to parameter `replacements` with type `dict[Expr, Any]` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/codegen/simd.py:685:16-688:10: Returned type `list[list[Symbol]]` is not assignable to declared return type `list[Symbol]` [bad-return] +ERROR torch/_inductor/codegen/simd.py:686:30-36: Argument `Expr` is not assignable to parameter `lengths` with type `list[Expr]` in function `IterationRangesRoot.construct` [bad-argument-type] +ERROR torch/_inductor/codegen/simd.py:992:38-48: Argument `Basic | Unknown` is not assignable to parameter `expr` with type `Expr` in function `SIMDKernel.codegen_indexing` [bad-argument-type] +ERROR torch/_inductor/codegen/simd.py:1003:60-77: Argument `dict[Symbol, Expr]` is not assignable to parameter with type `dict[Expr, Expr]` [bad-argument-type] +ERROR torch/_inductor/codegen/simd.py:1013:47-50: Cannot index into `dict[Symbol, IterationRangesEntry]` [bad-index] +ERROR torch/_inductor/codegen/simd.py:1585:19-30: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/simd.py:1605:9-35: Class member `SIMDScheduling.benchmark_codegened_module` overrides parent class `BaseScheduling` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/codegen/simd.py:1660:17-39: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/simd.py:1782:47-52: Argument `tuple[Expr, ...]` is not assignable to parameter `numel` with type `Expr` in function `torch._inductor.codegen.simd_kernel_features.SIMDKernelFeatures.__init__` [bad-argument-type] +ERROR torch/_inductor/codegen/simd.py:1782:54-60: Argument `tuple[Expr, ...]` is not assignable to parameter `reduction_numel` with type `Expr` in function `torch._inductor.codegen.simd_kernel_features.SIMDKernelFeatures.__init__` [bad-argument-type] +ERROR torch/_inductor/codegen/simd.py:1800:12-34: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/simd.py:1817:19-30: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/simd.py:1817:31-42: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/simd.py:2287:60-65: Argument `tuple[Expr, ...]` is not assignable to parameter `numel` with type `Expr` in function `torch._inductor.codegen.simd_kernel_features.SIMDKernelFeatures.__init__` [bad-argument-type] +ERROR torch/_inductor/codegen/simd.py:2287:67-73: Argument `tuple[Expr, ...]` is not assignable to parameter `reduction_numel` with type `Expr` in function `torch._inductor.codegen.simd_kernel_features.SIMDKernelFeatures.__init__` [bad-argument-type] +ERROR torch/_inductor/codegen/simd.py:2673:27-36: Argument `list[int]` is not assignable to parameter `it` with type `Iterable[Expr]` in function `torch._inductor.utils.sympy_product` [bad-argument-type] +ERROR torch/_inductor/codegen/simd.py:2678:27-37: Argument `list[int]` is not assignable to parameter `it` with type `Iterable[Expr]` in function `torch._inductor.utils.sympy_product` [bad-argument-type] +ERROR torch/_inductor/codegen/simd.py:2703:28-48: Returned type `tuple[list[Expr], list[int]]` is not assignable to declared return type `tuple[list[int], list[int]]` [bad-return] +ERROR torch/_inductor/codegen/simd.py:2809:35-43: Argument `list[int]` is not assignable to parameter `pw_tiling` with type `Sequence[Expr]` in function `SIMDScheduling.create_tiling` [bad-argument-type] +ERROR torch/_inductor/codegen/simd.py:2809:45-54: Argument `list[int]` is not assignable to parameter `reduction_tiling` with type `Sequence[Expr]` in function `SIMDScheduling.create_tiling` [bad-argument-type] +ERROR torch/_inductor/codegen/simd.py:2812:46-54: Argument `list[int]` is not assignable to parameter `pw_tiling` with type `Sequence[Expr]` in function `SIMDScheduling.create_tiling` [bad-argument-type] +ERROR torch/_inductor/codegen/simd.py:2812:56-65: Argument `list[int]` is not assignable to parameter `reduction_tiling` with type `Sequence[Expr]` in function `SIMDScheduling.create_tiling` [bad-argument-type] +ERROR torch/_inductor/codegen/simd.py:2853:25-47: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/simd.py:2949:13-35: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/simd.py:3017:70-72: Argument `Expr | int` is not assignable to parameter `numerator` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.statically_known_multiple_of` [bad-argument-type] +ERROR torch/_inductor/codegen/simd.py:3027:24-34: Returned type `dict[str, Expr | FloorDiv | int]` is not assignable to declared return type `dict[str, Expr] | None` [bad-return] +ERROR torch/_inductor/codegen/simd.py:3049:35-50: Argument `Literal[1] | Unknown` is not assignable to parameter `reduction_numel` with type `Expr` in function `SIMDScheduling.get_first_compatible_tiling` [bad-argument-type] +ERROR torch/_inductor/codegen/simd_kernel_features.py:133:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/simd_kernel_features.py:149:20-31: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/simd_kernel_features.py:150:16-27: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/simd_kernel_features.py:357:46-52: Argument `list[list[Expr]]` is not assignable to parameter `lengths` with type `list[Expr]` in function `MemoryEstimator.make_flat_range` [bad-argument-type] +ERROR torch/_inductor/codegen/subgraph.py:97:44-56: Object of class `Expr` has no attribute `name` [missing-attribute] +ERROR torch/_inductor/codegen/subgraph.py:98:56-68: Object of class `Expr` has no attribute `name` [missing-attribute] +ERROR torch/_inductor/codegen/subgraph.py:373:31-42: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/triton_split_scan.py:92:16-37: Could not find import of `triton.language` [missing-import] +ERROR torch/_inductor/codegen/triton_split_scan.py:130:55-61: Argument `int` is not assignable to parameter `index` with type `Expr` in function `torch._inductor.codegen.simd.SIMDKernel.index_to_str` [bad-argument-type] +ERROR torch/_inductor/codegen/triton_utils.py:39:25-44: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/triton_utils.py:41:27-44: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/triton_utils.py:43:27-48: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/triton_utils.py:45:27-48: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/triton_utils.py:89:23-34: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/triton_utils.py:89:35-46: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/triton_utils.py:187:27-45: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/wrapper.py:25:19-39: Could not import `dtype` from `torch` [missing-module-attribute] +ERROR torch/_inductor/codegen/wrapper.py:78:12-18: Could not find import of `triton` [missing-import] +ERROR torch/_inductor/codegen/wrapper.py:91:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/wrapper.py:91:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/wrapper.py:267:12-18: Could not find import of `triton` [missing-import] +ERROR torch/_inductor/codegen/wrapper.py:568:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/wrapper.py:1148:19-32: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/wrapper.py:1155:14-36: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/wrapper.py:1233:34-59: Could not import `_cuda_getCurrentRawStream` from `torch._C` [missing-module-attribute] +ERROR torch/_inductor/codegen/wrapper.py:1289:28-32: Cannot index into `dict[str, str]` [bad-index] +ERROR torch/_inductor/codegen/wrapper.py:1323:54-70: Argument `Sequence[Expr | int]` is not assignable to parameter `shape` with type `Sequence[Expr]` in function `PythonWrapperCodegen.codegen_python_shape_tuple` [bad-argument-type] +ERROR torch/_inductor/codegen/wrapper.py:1920:16-38: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/wrapper.py:1940:56-61: Argument `Expr | Symbol | TensorBox | TorchBindObject` is not assignable to parameter `value` with type `TensorBox` in function `PythonWrapperCodegen.codegen_input_symbol_assignment` [bad-argument-type] +ERROR torch/_inductor/codegen/wrapper.py:1946:45-83: Argument `list[Iterable[Expr] | Sequence[Expr | int]]` is not assignable to parameter `iterable` with type `Iterable[Iterable[Expr]]` in function `itertools.chain.from_iterable` [bad-argument-type] +ERROR torch/_inductor/codegen/wrapper.py:2131:38-56: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/wrapper.py:2378:41-52: Argument `list[SymInt | int] | None` is not assignable to parameter `block_shape` with type `list[Expr] | None` in function `torch._inductor.codegen.common.TMADescriptorArg.__init__` [bad-argument-type] +ERROR torch/_inductor/codegen/wrapper.py:2462:45-48: Cannot set item in `dict[Symbol, Symbol]` [unsupported-operation] +ERROR torch/_inductor/codegen/wrapper.py:2465:45-64: Argument `dict[Symbol, Symbol]` is not assignable to parameter `replacements` with type `dict[Expr, Any]` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/codegen/wrapper.py:2480:40-53: No matching overload found for function `map.__new__` called with arguments: (type[map[_S]], BoundMethod[PythonPrinter, (self: PythonPrinter, expr: Expr, *, simplify: bool = True, p: bool = True) -> str], list[Expr | int]) [no-matching-overload] +ERROR torch/_inductor/codegen/wrapper.py:2482:45-58: No matching overload found for function `map.__new__` called with arguments: (type[map[_S]], BoundMethod[PythonPrinter, (self: PythonPrinter, expr: Expr, *, simplify: bool = True, p: bool = True) -> str], list[Expr | int]) [no-matching-overload] +ERROR torch/_inductor/codegen/wrapper.py:2757:69-72: Cannot index into `dict[Symbol, Expr]` [bad-index] +ERROR torch/_inductor/codegen/wrapper.py:3030:20-26: Could not find import of `triton` [missing-import] +ERROR torch/_inductor/codegen/wrapper.py:3091:12-34: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/codegen/wrapper.py:3796:9-25: Class member `SubgraphPythonWrapperCodegen.get_graph_inputs` overrides parent class `PythonWrapperCodegen` in an inconsistent manner [bad-override] +ERROR torch/_inductor/codegen/wrapper.py:3805:16-22: Returned type `dict[str, Expr | IRNode | Symbol | TorchBindObject] | dict[str, Expr | TensorBox | TorchBindObject]` is not assignable to declared return type `dict[str, Expr | TensorBox | TorchBindObject | None]` [bad-return] +ERROR torch/_inductor/codegen/wrapper_fxir.py:198:16-39: Returned type `dict[str, Expr | TensorBox | TorchBindObject]` is not assignable to declared return type `dict[str, Expr | TensorBox | TorchBindObject | None]` [bad-return] +ERROR torch/_inductor/codegen/wrapper_fxir.py:325:13-29: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/wrapper_fxir.py:398:39-46: Argument `Expr | TensorBox | TorchBindObject` is not assignable to parameter `node` with type `IRNode` in function `FxConverter._get_buffer` [bad-argument-type] +ERROR torch/_inductor/codegen/wrapper_fxir.py:466:20-47: Object of class `Basic` has no attribute `is_integer` [missing-attribute] +ERROR torch/_inductor/codegen/wrapper_fxir.py:473:36-52: Cannot set item in `dict[Expr, Proxy]` [unsupported-operation] +ERROR torch/_inductor/codegen/wrapper_fxir.py:488:25-31: Argument `Expr | int` is not assignable to parameter `sym_or_exp` with type `Expr | Symbol` in function `_codegen_symbol` [bad-argument-type] +ERROR torch/_inductor/codegen/wrapper_fxir.py:526:27-44: Argument `Sequence[Expr] | list[Expr]` is not assignable to parameter `count` with type `Expr` in function `torch._inductor.codegen.common.WorkspaceArg.__init__` [bad-argument-type] +ERROR torch/_inductor/codegen/wrapper_fxir.py:639:51-69: Argument `dict[Expr, Proxy]` is not assignable to parameter `env` with type `dict[Symbol, Any]` in function `torch.utils._sympy.interp.sympy_interp` [bad-argument-type] +ERROR torch/_inductor/codegen/wrapper_fxir.py:645:33-36: Argument `Basic` is not assignable to parameter `expr` with type `Expr` in function `FxConverter._sympy_interp` [bad-argument-type] +ERROR torch/_inductor/codegen/wrapper_fxir.py:687:13-32: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/wrapper_fxir.py:950:13-46: Could not find import of `triton.runtime` [missing-import] +ERROR torch/_inductor/codegen/wrapper_fxir.py:974:24-43: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/codegen/wrapper_fxir.py:1052:56-60: Argument `list[Expr | int]` is not assignable to parameter `shape` with type `Sequence[Expr]` in function `FxConverter._generate_sym_nodes` [bad-argument-type] +ERROR torch/_inductor/comm_analysis.py:72:26-36: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/comm_analysis.py:191:14-26: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/comm_analysis.py:247:15-37: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/comm_analysis.py:248:15-37: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/comm_analysis.py:457:20-31: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/comms.py:69:34-46: No attribute `median` in module `torch` [missing-attribute] +ERROR torch/_inductor/comms.py:70:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/comms.py:776:8-22: Module `importlib.util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/comms.py:1614:8-22: Module `importlib.util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/comms.py:2471:13-38: Module `torch._inductor.scheduler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/comms.py:2472:13-38: Module `torch._inductor.scheduler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/comms.py:2479:18-43: Module `torch._inductor.scheduler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/comms.py:2480:28-53: Module `torch._inductor.scheduler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/comms.py:2482:11-36: Module `torch._inductor.scheduler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:252:15-28: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:384:21-32: No attribute `equal` in module `torch` [missing-attribute] +ERROR torch/_inductor/compile_fx.py:649:47-60: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/compile_fx.py:785:29-57: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:835:22-35: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:886:21-37: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:886:21-44: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:944:12-28: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:944:12-35: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:1238:13-32: Module `torch._dynamo.repro` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:1238:13-42: Module `torch._dynamo.repro.after_aot` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:1342:25-43: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:1344:21-42: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:1346:29-50: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:1545:29-50: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:1548:29-50: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:1593:25-46: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:1596:21-42: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:1666:25-46: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:1668:29-50: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:1672:29-42: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:1677:29-50: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:1819:24-37: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:1840:12-31: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/compile_fx.py:1993:29-42: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:1996:9-22: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:2062:23-36: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:2150:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/compile_fx.py:2296:19-32: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:2421:5-26: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:2426:17-38: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:2470:16-22: Returned type `GraphModule` is not assignable to declared return type `((list[object]) -> Sequence[Tensor]) | Weights | list[str] | str` [bad-return] +ERROR torch/_inductor/compile_fx.py:2633:9-27: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:2636:9-30: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:2681:36-57: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_inductor/compile_fx.py:2717:13-26: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:2718:16-29: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:2754:49-67: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_inductor/compile_fx.py:2780:27-60: No attribute `_is_any_autocast_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/compile_fx.py:2782:17-42: No attribute `_DisableAutocast` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/compile_fx.py:2789:13-26: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx.py:2881:40-52: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/compile_fx.py:2893:62-81: Argument `list[IRNode]` is not assignable to parameter `*iterables` with type `Iterable[Expr | TensorBox | TorchBindObject]` in function `itertools.chain.__new__` [bad-argument-type] +ERROR torch/_inductor/compile_fx.py:2900:36-50: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/compile_fx.py:2959:29-47: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_inductor/compile_fx_ext.py:105:25-52: Module `torch._inductor.virtualized` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx_ext.py:193:31-44: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx_ext.py:197:9-32: Module `torch.testing._internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx_ext.py:197:9-45: Module `torch.testing._internal.common_utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx_ext.py:215:19-32: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx_ext.py:220:17-38: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx_ext.py:220:17-54: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx_ext.py:251:25-46: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx_ext.py:251:25-62: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx_ext.py:451:19-32: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx_ext.py:459:13-36: Module `torch.testing._internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx_ext.py:459:13-49: Module `torch.testing._internal.common_utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx_ext.py:520:37-50: Module `unittest.mock` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx_ext.py:537:33-46: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_fx_subproc.py:34:9-29: Class member `_SubprocessFxCompile._send_to_child_async` overrides parent class `_OutOfProcessFxCompile` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/compile_fx_subproc.py:88:9-32: Module `torch._inductor.metrics` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_worker/__main__.py:30:12-18: Could not find import of `triton` [missing-import] +ERROR torch/_inductor/compile_worker/subproc_pool.py:446:9-29: Module `multiprocessing.util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_worker/tracked_process_pool.py:81:24-42: Module `concurrent.futures` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/compile_worker/utils.py:42:5-31: No attribute `_initCrashHandler` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/config.py:291:16-41: Module `torch._inductor.scheduler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/config.py:292:15-40: Module `torch._inductor.scheduler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/config.py:301:16-41: Module `torch._inductor.scheduler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/config.py:302:15-40: Module `torch._inductor.scheduler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/config.py:393:20-45: Module `torch._inductor.scheduler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/config.py:394:19-44: Module `torch._inductor.scheduler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/config.py:639:20-42: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/config.py:643:20-42: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/config.py:1040:9-37: Could not find import of `libfb.py` [missing-import] +ERROR torch/_inductor/constant_folding.py:130:37-51: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/constant_folding.py:192:9-17: Class member `ConstantFolder.run_node` overrides parent class `Interpreter` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/constant_folding.py:242:17-26: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_inductor/constant_folding.py:253:28-49: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/constant_folding.py:312:10-38: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/constant_folding.py:342:10-38: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/cpp_builder.py:37:5-64: Could not find import of `triton.fb.build` [missing-import] +ERROR torch/_inductor/cpp_builder.py:39:5-44:6: Could not find import of `torch._inductor.fb.utils` [missing-import] +ERROR torch/_inductor/cpu_vec_isa.py:40:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:81:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:81:46-57: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:162:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:162:41-55: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:162:60-73: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:184:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:184:41-55: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:184:61-74: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:203:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:203:42-56: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:203:62-75: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:328:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:328:41-55: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:328:61-74: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:345:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:345:41-55: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:345:61-74: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:358:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:358:41-55: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:358:61-74: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/cpu_vec_isa.py:435:41-51: Cannot index into `dict[str, str]` [bad-index] +ERROR torch/_inductor/cudagraph_trees.py:104:9-61: Could not import `_cuda_CUDAAllocator_AllocatorState` from `torch._C` [missing-module-attribute] +ERROR torch/_inductor/cudagraph_trees.py:105:9-36: Could not import `_set_cached_tensors_enabled` from `torch._C` [missing-module-attribute] +ERROR torch/_inductor/cudagraph_trees.py:142:5-41: No attribute `_cuda_clearCublasWorkspaces` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:157:12-57: No attribute `_cuda_get_conv_benchmark_empty_cache` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:158:5-51: No attribute `_cudnn_set_conv_benchmark_empty_cache` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:162:9-55: No attribute `_cudnn_set_conv_benchmark_empty_cache` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:168:15-46: No attribute `_cuda_isHistoryEnabled` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:293:1-27: No attribute `_stash_obj_in_tls` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:294:1-27: No attribute `_stash_obj_in_tls` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:327:16-39: No attribute `_is_key_in_tls` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:328:16-40: No attribute `_get_obj_in_tls` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:539:22-49: No attribute `_storage_Use_Count` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:584:37-49: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:588:9-56: No attribute `_cuda_beginAllocateCurrentThreadToPool` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:592:13-45: No attribute `_cuda_endAllocateToPool` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:593:13-39: No attribute `_cuda_releasePool` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:846:16-38: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/cudagraph_trees.py:977:64-79: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:1080:13-33: No attribute `_foreach_copy_` in module `torch` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:1086:21-65: No attribute `_tensors_data_ptrs_at_indices_equal` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:1384:43-76: No attribute `_cuda_getCheckpointState` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:1438:13-40: No attribute `_add_cached_tensor` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:1629:17-47: No attribute `_remove_cached_tensor` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:1670:16-61: No attribute `_construct_storage_from_data_pointer` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:1697:50-65: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:1728:16-60: No attribute `_tensors_data_ptrs_at_indices_equal` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:1753:21-65: No attribute `_tensors_data_ptrs_at_indices_equal` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:1831:8-47: No attribute `_cuda_checkPoolLiveAllocations` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:1932:9-45: No attribute `_set_cached_tensors_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:2023:20-38: Module `torch._environment` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/cudagraph_trees.py:2091:15-37: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/cudagraph_trees.py:2190:30-52: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/cudagraph_trees.py:2503:17-55: No attribute `_set_storage_access_error_msg` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:2531:17-52: No attribute `_free_And_Remove_DeleterFn` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:2536:17-64: No attribute `_set_storage_data_ptr_access_error_msg` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:2570:9-46: No attribute `_cuda_setCheckpointPoolState` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:2580:13-59: No attribute `_cuda_cudaCachingAllocator_raw_delete` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_trees.py:2590:24-54: No attribute `_has_Standard_Deleter` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/cudagraph_utils.py:139:8-30: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/cudagraph_utils.py:172:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/cudagraph_utils.py:175:29-41: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/cudagraph_utils.py:180:33-45: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/cudagraph_utils.py:182:44-56: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/cudagraph_utils.py:200:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/cudagraph_utils.py:209:8-30: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/cudagraph_utils.py:235:8-30: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/cudagraph_utils.py:338:9-31: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/cudagraph_utils.py:340:11-33: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/debug.py:553:16-38: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/debug.py:560:27-49: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/debug.py:561:18-40: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/debug.py:657:30-73: Argument `list[int]` is not assignable to parameter `size` with type `Sequence[Expr]` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/debug.py:658:32-77: Argument `list[int]` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/debug.py:659:32-38: Argument `int` is not assignable to parameter `offset` with type `Expr` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/debug.py:855:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/debug.py:1232:20-41: Module `torch._dynamo.testing` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/decomposition.py:195:16-26: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:211:39-53: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:230:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:277:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:292:20-29: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:304:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:313:19-28: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:333:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:351:33-44: No attribute `numel` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:351:53-64: No attribute `numel` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:359:20-29: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:434:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:435:13-24: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:435:48-59: No attribute `atan2` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:446:10-29: No attribute `scalar_tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:447:11-22: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:448:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:448:24-35: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:482:20-39: No attribute `promote_types` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:511:41-47: Object of class `float` has no attribute `view` +Object of class `int` has no attribute `view` [missing-attribute] +ERROR torch/_inductor/decomposition.py:512:14-27: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:533:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:533:24-35: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:538:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:538:24-35: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:547:22-32: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:548:16-25: No attribute `any` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:558:22-32: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:559:16-25: No attribute `all` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:570:12-24: No attribute `narrow` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:584:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:607:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:608:22-34: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:609:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:612:20-39: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:612:42-63: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:618:25-46: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:619:18-28: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:631:26-39: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:633:18-28: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:651:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:652:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:653:20-39: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:653:42-63: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:659:25-46: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:681:23-33: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:686:23-34: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:752:37-48: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:754:64-77: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:756:64-77: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:760:32-45: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:778:21-33: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:780:43-66: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:846:41-61: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/decomposition.py:911:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:921:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:923:24-37: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:925:13-22: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:926:30-41: No attribute `round` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:926:62-71: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:927:18-29: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:928:21-34: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:928:51-62: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:939:17-32: No attribute `index_put` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:962:18-29: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:965:20-29: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:992:16-31: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:995:22-37: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:998:22-38: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:1017:18-29: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:1061:9-33: Module `torch._inductor.lowering` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/decomposition.py:1064:26-37: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:1064:38-48: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:1124:63-74: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:1160:25-40: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:1165:18-29: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:1166:21-32: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:1186:29-40: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:1186:42-53: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:1189:11-23: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:1190:15-33: No attribute `searchsorted` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:1191:49-60: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/decomposition.py:1193:12-23: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_inductor/dependencies.py:215:41-58: Argument `dict_keys[Expr, Expr]` is not assignable to parameter `iterable` with type `Iterable[Symbol]` in function `tuple.__new__` [bad-argument-type] +ERROR torch/_inductor/dependencies.py:227:69-80: Argument `dict[Symbol, Expr]` is not assignable to parameter with type `dict[Expr, Expr]` [bad-argument-type] +ERROR torch/_inductor/dependencies.py:565:9-18: Class member `_RecordLoadStoreInner.load_seed` overrides parent class `MockHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/dependencies.py:577:9-19: Class member `_RecordLoadStoreInner.index_expr` overrides parent class `MockHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/dependencies.py:577:61-72: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dependencies.py:585:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dependencies.py:635:26-34: Argument `list[int]` is not assignable to parameter `object` with type `Sequence[Expr]` in function `list.append` [bad-argument-type] +ERROR torch/_inductor/dependencies.py:636:37-56: No matching overload found for function `map.__new__` called with arguments: (type[map[_S]], (Expr) -> Symbol, list[int]) [no-matching-overload] +ERROR torch/_inductor/dependencies.py:721:13-50: Argument `tuple[Unknown, None, None, None]` is not assignable to parameter `boundaries` with type `tuple[str, Expr, Expr, Expr]` in function `_RecordLoadStoreInner.bucketize` [bad-argument-type] +ERROR torch/_inductor/dependencies.py:731:18-36: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/dependencies.py:814:9-26: Class member `FreeSymbolsOpsHandler.indirect_indexing` overrides parent class `DefaultHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/dependencies.py:825:9-14: Class member `FreeSymbolsOpsHandler.frexp` overrides parent class `DefaultHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/dependencies.py:840:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dependencies.py:841:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/distributed_autotune.py:73:25-50: Module `torch._inductor.scheduler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/distributed_autotune.py:129:12-30: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/distributed_autotune.py:312:16-41: Module `torch._inductor.scheduler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/distributed_autotune.py:363:16-41: Module `torch._inductor.scheduler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/dtype_propagation.py:22:24-35: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:34:27-38: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:39:20-31: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:41:20-31: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:44:16-35: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/dtype_propagation.py:66:36-55: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/dtype_propagation.py:68:28-47: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/dtype_propagation.py:110:19-42: Module `torch._inductor.codegen` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/dtype_propagation.py:110:19-49: Module `torch._inductor.codegen.common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/dtype_propagation.py:124:74-84: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:138:10-21: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:142:46-57: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:142:62-73: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:148:52-63: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:148:68-79: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:152:46-57: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:156:67-78: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:157:16-27: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:162:10-21: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:174:57-68: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:178:45-56: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:178:61-72: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:181:26-37: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:181:39-50: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:191:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:192:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:194:10-21: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:199:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:199:53-64: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:200:10-21: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:204:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:208:42-53: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:212:46-57: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:216:42-53: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:220:42-53: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:226:10-21: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:227:16-27: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:230:42-53: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:231:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:234:41-52: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:235:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:243:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:243:40-51: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:244:10-21: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:261:35-46: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:265:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:271:41-52: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:271:57-68: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:275:50-61: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:282:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:285:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:289:43-54: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:293:42-53: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:293:58-69: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:297:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:301:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:301:50-61: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:303:37-48: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:307:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:311:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:315:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:323:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:327:10-21: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:331:45-56: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:335:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:341:42-53: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:341:58-69: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:345:42-53: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:345:58-69: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:349:47-58: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:353:47-58: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:359:16-27: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:362:42-53: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:364:16-29: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:368:47-60: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:373:45-56: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:387:42-53: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/dtype_propagation.py:399:11-38: Field `where` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/dtype_propagation.py:399:11-38: Field `mul` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/dtype_propagation.py:399:11-38: Field `truediv` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/dtype_propagation.py:399:11-38: Field `pow` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/dtype_propagation.py:399:11-38: Field `mod` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/dtype_propagation.py:399:11-38: Field `indirect_indexing` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/dtype_propagation.py:399:11-38: Field `floor` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/dtype_propagation.py:399:11-38: Field `int_truediv` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/dtype_propagation.py:399:11-38: Field `fmod` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/dtype_propagation.py:399:11-38: Field `frexp` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/dtype_propagation.py:399:11-38: Field `trunc` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/dtype_propagation.py:399:11-38: Field `rshift` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/dtype_propagation.py:399:11-38: Field `round` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/dtype_propagation.py:399:11-38: Field `truncdiv` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/dtype_propagation.py:399:11-38: Field `floordiv` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/dtype_propagation.py:399:11-38: Field `lshift` has inconsistent types inherited from multiple base classes [inconsistent-inheritance] +ERROR torch/_inductor/freezing.py:31:18-34: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/freezing.py:31:18-47: Module `torch._functorch.aot_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/freezing.py:108:27-40: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/freezing.py:171:10-38: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/freezing.py:174:14-27: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/freezing.py:185:22-37: Module `torch._dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/freezing.py:185:22-44: Module `torch._dispatch.python` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/freezing.py:194:10-38: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/freezing.py:202:18-33: Module `torch._dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/freezing.py:202:18-40: Module `torch._dispatch.python` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/freezing.py:223:22-41: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/freezing.py:279:43-62: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_inductor/freezing.py:287:39-58: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/b2b_gemm.py:447:9-17: No attribute `mm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/b2b_gemm.py:447:40-48: No attribute `mm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/b2b_gemm.py:449:9-17: No attribute `mm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/b2b_gemm.py:449:43-51: No attribute `mm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/b2b_gemm.py:515:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/b2b_gemm.py:515:44-56: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/b2b_gemm.py:527:8-26: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/b2b_gemm.py:528:8-26: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/b2b_gemm.py:529:8-26: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/b2b_gemm.py:532:6-24: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/b2b_gemm.py:590:18-27: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/binary_folding.py:19:39-52: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/binary_folding.py:19:54-68: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/binary_folding.py:29:51-64: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/binary_folding.py:154:13-23: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/binary_folding.py:159:13-23: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/binary_folding.py:160:13-23: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/binary_folding.py:165:13-23: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/binary_folding.py:170:21-31: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/binary_folding.py:171:21-31: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/binary_folding.py:214:57-70: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/binary_folding.py:214:72-86: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/binary_folding.py:268:57-70: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/binary_folding.py:268:72-86: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/binary_folding.py:310:18-46: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/binary_folding.py:311:32-44: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/control_dependencies.py:52:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_inductor/fx_passes/ddp_fusion.py:65:12-22: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/ddp_fusion.py:65:30-40: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/ddp_fusion.py:131:12-22: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/ddp_fusion.py:131:30-40: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/ddp_fusion.py:442:27-37: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/decompose_mem_bound_mm.py:230:16-25: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/decompose_mem_bound_mm.py:255:13-22: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/decompose_mem_bound_mm.py:277:16-25: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/efficient_conv_bn_eval.py:44:27-43: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/efficient_conv_bn_eval.py:49:21-36: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/efficient_conv_bn_eval.py:54:19-35: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/efficient_conv_bn_eval.py:61:20-31: No attribute `rsqrt` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/efficient_conv_bn_eval.py:109:27-43: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/efficient_conv_bn_eval.py:112:21-36: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/efficient_conv_bn_eval.py:115:19-35: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/efficient_conv_bn_eval.py:122:20-31: No attribute `rsqrt` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/efficient_conv_bn_eval.py:166:9-21: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/fx_passes/efficient_conv_bn_eval.py:167:9-21: No attribute `conv1d` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/efficient_conv_bn_eval.py:168:9-21: No attribute `conv2d` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/efficient_conv_bn_eval.py:169:9-21: No attribute `conv3d` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/efficient_conv_bn_eval.py:170:9-31: No attribute `conv_transpose1d` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/efficient_conv_bn_eval.py:171:9-31: No attribute `conv_transpose2d` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/efficient_conv_bn_eval.py:172:9-31: No attribute `conv_transpose3d` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/freezing_patterns.py:51:5-30: Module `torch._inductor.fx_passes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/freezing_patterns.py:51:5-45: Module `torch._inductor.fx_passes.binary_folding` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/freezing_patterns.py:65:5-30: Module `torch._inductor.fx_passes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/freezing_patterns.py:65:5-45: Module `torch._inductor.fx_passes.binary_folding` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/freezing_patterns.py:78:9-29: No attribute `_has_mkldnn` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/fx_passes/freezing_patterns.py:93:8-28: No attribute `_has_mkldnn` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/fx_passes/freezing_patterns.py:133:29-40: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/freezing_patterns.py:134:31-42: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/freezing_patterns.py:154:16-26: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/freezing_patterns.py:160:52-66: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/freezing_patterns.py:200:17-26: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/freezing_patterns.py:201:17-26: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/freezing_patterns.py:224:17-26: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/freezing_patterns.py:246:17-26: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/freezing_patterns.py:272:17-26: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/freezing_patterns.py:273:17-26: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:26:9-21: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:48:9-21: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:70:9-21: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:92:9-21: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:111:19-32: No attribute `softmax` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:131:19-32: No attribute `softmax` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:134:19-32: No attribute `dropout` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:158:18-31: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:159:19-32: No attribute `softmax` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:160:19-32: No attribute `dropout` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:161:34-47: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:191:18-31: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:192:19-32: No attribute `softmax` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:193:34-47: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:218:18-31: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:219:19-32: No attribute `softmax` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:220:19-32: No attribute `dropout` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:221:34-47: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:247:18-31: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:248:19-32: No attribute `softmax` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:249:34-47: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:273:12-24: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:294:9-21: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:313:19-28: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:315:12-21: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:336:10-22: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:366:18-28: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:368:12-25: No attribute `softmax` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:399:14-26: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:431:18-28: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:435:13-26: No attribute `softmax` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:468:20-32: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:469:17-27: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:476:25-35: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:477:13-24: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:479:20-31: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:512:20-32: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:513:17-27: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:520:25-35: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:521:13-24: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:523:20-31: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:531:18-28: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:532:17-28: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:553:18-28: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:557:13-26: No attribute `softmax` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:589:13-25: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:621:13-25: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:659:13-25: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:703:20-29: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:707:23-33: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:708:40-50: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:709:19-28: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:749:39-49: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:750:39-50: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:820:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:823:31-42: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:824:31-42: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:826:34-45: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:828:31-43: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:835:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:842:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:844:35-46: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:848:19-30: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:848:32-42: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:851:50-61: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:852:49-59: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:854:50-61: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:855:49-59: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:861:58-69: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:862:57-67: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:1071:21-31: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:1098:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/fuse_attention.py:1102:42-55: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:26:12-64: Could not find import of `deeplearning.fbgemm.fbgemm_gpu.fb.inductor_lowerings` [missing-import] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:69:58-69: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:74:18-29: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:75:29-40: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:76:20-32: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:88:18-27: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:89:29-38: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:90:20-29: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:91:29-38: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:241:37-48: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:244:38-49: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:457:33-44: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:460:33-44: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:529:17-26: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:531:49-58: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:533:17-32: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:535:56-71: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:540:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:542:52-61: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:544:21-32: No attribute `addmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:547:51-62: No attribute `addmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:554:21-29: No attribute `mm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:557:51-59: No attribute `mm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:668:17-28: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:672:17-28: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:676:17-32: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:678:54-69: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:683:21-30: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:686:45-54: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:693:21-32: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:697:21-36: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:699:58-73: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:703:21-34: No attribute `baddbmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:709:49-62: No attribute `baddbmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:723:45-57: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:809:17-28: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:814:21-32: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:821:21-32: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:837:21-30: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:844:21-30: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:848:21-30: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:855:21-30: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:861:21-30: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:868:21-30: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:874:21-30: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:881:21-30: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:885:17-29: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:892:20-32: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:950:17-28: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:973:17-29: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:975:47-59: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:1087:17-28: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:1099:17-29: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:1101:47-59: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:1116:26-36: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:1122:26-39: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:1134:26-38: No attribute `detach` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:1140:26-42: No attribute `nan_to_num` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/group_batch_fusion.py:1146:26-37: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:73:10-38: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/joint_graph.py:170:10-38: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/joint_graph.py:172:41-52: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:278:17-27: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:290:9-32: Class member `UniformValueConstantFolder.insertable_tensor_check` overrides parent class `ConstantFolder` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/fx_passes/joint_graph.py:363:13-22: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:382:10-38: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/joint_graph.py:422:60-83: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:427:17-28: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:428:17-29: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:429:17-29: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:430:17-29: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:472:35-48: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:572:9-24: Module `torch.fx.passes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/joint_graph.py:572:9-49: Module `torch.fx.passes.graph_transform_observer` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/joint_graph.py:645:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:689:50-61: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:689:71-82: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:693:15-28: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:693:30-44: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:693:46-59: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:693:61-74: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:816:16-24: No attribute `mm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:911:19-38: No attribute `scalar_tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:912:20-31: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:915:16-26: No attribute `amax` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:941:19-38: No attribute `scalar_tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:942:20-31: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/joint_graph.py:945:16-26: No attribute `amax` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/memory_estimator.py:20:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/memory_estimator.py:147:41-63: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/memory_estimator.py:150:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/memory_estimator.py:205:9-209:76: `int` is not assignable to `int` (caused by inconsistent types when breaking cycles) [bad-assignment] +ERROR torch/_inductor/fx_passes/memory_estimator.py:329:34-46: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/memory_estimator.py:388:34-56: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/micro_pipeline_tp.py:459:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/micro_pipeline_tp.py:526:32-42: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/misc_patterns.py:34:17-31: No attribute `randperm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/misc_patterns.py:35:16-31: No attribute `index_add` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/misc_patterns.py:38:17-31: No attribute `randperm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/misc_patterns.py:51:10-21: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/misc_patterns.py:51:44-55: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/misc_patterns.py:59:17-31: No attribute `randperm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/misc_patterns.py:63:17-31: No attribute `randperm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/misc_patterns.py:71:10-21: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/misc_patterns.py:110:30-55: Module `torch.fx.operator_schemas` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:42:4-24: No attribute `_has_mkldnn` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:293:26-40: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:295:28-41: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:441:51-62: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:481:38-52: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:484:49-60: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:531:38-52: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:534:49-60: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:602:25-35: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:610:21-31: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:614:21-31: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:618:21-31: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:871:28-42: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:871:44-57: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1037:18-28: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1135:62-76: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1141:62-75: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1175:39-53: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1176:43-57: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1181:39-52: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1182:43-56: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1234:39-52: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1235:43-56: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1239:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1240:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1247:71-84: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1255:21-37: No attribute `has_mkl` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1277:39-53: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1278:43-57: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1283:39-52: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1284:43-56: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1463:21-35: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1464:21-34: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1470:68-81: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1507:13-25: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1508:13-25: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/fx_passes/mkldnn_fusion.py:1513:12-28: No attribute `has_mkl` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/fx_passes/node_runtime_estimation.py:106:10-38: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/node_runtime_estimation.py:159:5-24: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/numeric_utils.py:61:16-30: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/numeric_utils.py:90:16-30: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/overlap_scheduling.py:71:12-41: Module `torch._inductor.comm_analysis` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/overlap_scheduling.py:83:12-36: Module `torch.utils.flop_counter` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/overlap_scheduling.py:100:13-36: Module `torch._inductor.runtime` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/overlap_scheduling.py:100:13-49: Module `torch._inductor.runtime.benchmarking` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/overlap_scheduling.py:116:29-53: Module `torch._inductor.fx_utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/overlap_scheduling.py:139:24-43: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/overlap_scheduling.py:172:30-55: Module `torch._inductor.codecache` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/overlap_scheduling.py:173:12-37: Module `torch._inductor.codecache` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/overlap_scheduling.py:376:23-52: Module `torch._inductor.comm_analysis` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/overlap_scheduling.py:381:27-56: Module `torch._inductor.comm_analysis` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/overlap_scheduling.py:471:42-54: No attribute `median` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/overlap_scheduling.py:472:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/overlap_scheduling.py:627:58-67: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/overlap_scheduling.py:851:16-38: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/pad_mm.py:69:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:70:17-30: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:70:43-53: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:70:66-80: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:72:19-32: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:72:45-56: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:114:9-31: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/pad_mm.py:137:12-21: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:217:56-67: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:225:18-32: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:251:24-49: Module `torch._inductor.codecache` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/pad_mm.py:252:12-37: Module `torch._inductor.codecache` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/pad_mm.py:279:40-50: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:279:69-80: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:284:26-39: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:351:11-33: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/pad_mm.py:365:38-60: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/pad_mm.py:366:22-44: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/pad_mm.py:375:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:377:32-54: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/pad_mm.py:381:18-32: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:405:13-49: Module `torch._inductor.runtime.benchmarking` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/pad_mm.py:443:17-27: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:455:12-34: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/pad_mm.py:458:12-34: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/pad_mm.py:467:35-57: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/pad_mm.py:494:26-37: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:495:24-40: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:497:24-40: No attribute `randn_like` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:555:29-45: No attribute `randn_like` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:604:13-35: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/pad_mm.py:724:8-30: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/pad_mm.py:883:31-42: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:884:31-42: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:886:31-42: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:887:31-42: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pad_mm.py:889:31-42: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:96:9-24: Module `torch.fx.passes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/post_grad.py:96:9-49: Module `torch.fx.passes.graph_transform_observer` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/post_grad.py:119:8-28: No attribute `_has_mkldnn` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:398:24-35: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:398:46-57: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:398:66-78: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:407:17-36: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:597:24-35: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:597:46-57: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:597:66-78: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:613:17-36: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:691:8-28: No attribute `_has_mkldnn` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:705:10-21: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:867:70-82: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:868:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:881:50-61: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:903:12-27: Module `torch._inductor.kernel` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/post_grad.py:930:17-28: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:934:15-27: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:1049:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:1117:41-52: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:1677:54-64: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:1677:66-76: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:1782:49-61: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:1812:37-49: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:1839:45-57: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/post_grad.py:2001:9-31: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/post_grad.py:2002:13-35: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/pre_grad.py:392:8-29: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pre_grad.py:573:29-43: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pre_grad.py:574:29-41: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pre_grad.py:575:29-41: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pre_grad.py:647:32-41: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pre_grad.py:647:43-55: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pre_grad.py:691:21-31: No attribute `relu` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pre_grad.py:691:33-43: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pre_grad.py:696:57-66: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pre_grad.py:721:38-47: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pre_grad.py:769:16-28: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pre_grad.py:770:12-24: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pre_grad.py:809:60-69: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pre_grad.py:810:60-72: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pre_grad.py:866:16-28: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pre_grad.py:867:12-24: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/pre_grad.py:877:12-24: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:77:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:78:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:79:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:80:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:81:9-28: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:115:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:115:37-51: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:121:22-36: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:367:29-42: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:367:44-58: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:434:33-43: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:434:45-56: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:434:58-71: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:434:73-87: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:473:29-42: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:473:44-58: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:680:29-42: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:680:44-58: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:724:38-49: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:724:51-61: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1111:24-38: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1112:29-39: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1113:29-39: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1114:29-39: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1115:33-47: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1140:24-38: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1141:33-43: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1142:33-47: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1379:47-60: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1381:26-39: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1381:41-55: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1396:29-42: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1404:29-42: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1425:66-79: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1456:26-39: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1456:41-55: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1545:26-39: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1545:41-55: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1563:33-46: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1584:26-39: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1584:41-55: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1599:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1698:25-39: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1708:41-54: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1710:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1710:37-51: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1731:11-24: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1733:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1733:37-51: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1737:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1748:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1830:26-39: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1830:41-55: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1863:53-63: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1900:11-24: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1926:26-39: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1926:41-55: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:1954:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2057:25-39: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2069:11-24: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2074:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2074:37-51: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2116:11-24: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2124:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2124:37-51: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2157:11-24: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2188:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2253:10-23: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2253:25-39: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2283:30-44: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2295:10-23: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2295:25-39: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2297:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2348:10-23: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2348:25-39: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2358:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2387:10-23: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2387:25-39: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2389:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2419:46-59: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2760:72-85: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2913:33-43: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2913:45-56: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2913:58-71: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2913:73-87: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2917:33-44: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2917:64-74: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2922:33-44: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2922:64-74: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2958:41-52: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2958:54-64: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2963:41-52: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2963:54-64: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2968:41-52: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:2968:54-64: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:3021:43-56: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:3021:58-72: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:3025:52-66: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:3284:34-45: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:3284:47-57: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:3288:49-60: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:3288:62-72: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:3363:43-56: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:3363:58-72: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:3364:52-66: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:3746:17-26: No attribute `eye` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:3748:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:3762:21-32: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:3764:31-40: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:3768:27-36: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/quantization.py:3848:55-78: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/reinplace.py:722:13-59: Could not find import of `triton.runtime.autotuner` [missing-import] +ERROR torch/_inductor/fx_passes/reinplace.py:723:13-55: Could not find import of `triton.runtime.jit` [missing-import] +ERROR torch/_inductor/fx_passes/reinplace.py:785:26-50: Module `torch._inductor.fx_utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/replace_random.py:62:40-51: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/replace_random.py:63:56-67: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/replace_random.py:88:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/replace_random.py:139:11-22: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:37:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:42:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:56:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:95:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:100:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:114:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:123:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:128:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:143:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:182:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:187:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:202:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:36:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:41:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:55:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:92:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:97:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:111:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:119:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:124:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:140:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:180:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:185:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:201:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:38:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:43:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:59:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:100:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:105:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:119:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:129:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:134:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:152:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:196:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:201:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:217:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:36:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:41:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:56:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:94:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:99:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:114:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:122:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:127:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:144:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:185:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:190:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:207:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:40:82-105: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:45:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:60:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:64:101-114: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:104:82-105: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:109:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:124:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:136:82-105: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:141:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:158:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:162:101-114: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:205:82-105: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:210:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:227:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:38:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:43:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:60:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:102:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:107:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:122:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:220:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:225:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:244:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:289:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:294:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:311:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:416:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:421:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:439:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:483:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:488:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:504:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:42:82-105: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:47:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:64:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:68:101-114: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:112:82-105: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:117:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:132:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:146:82-105: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:151:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:170:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:174:101-114: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:221:82-105: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:226:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:243:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:38:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:43:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:62:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:77:101-114: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:107:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:112:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:129:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:179:101-114: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:242:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:247:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:268:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:286:101-114: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:316:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:321:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:340:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:395:101-114: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py:72:101-114: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py:162:101-114: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:43:82-105: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:48:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:64:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:68:101-114: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:112:82-105: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:117:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:131:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:146:82-105: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:151:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:169:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:173:101-114: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:220:82-105: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:225:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:241:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:36:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:41:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:57:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:95:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:100:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:116:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:206:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:211:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:230:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:272:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:277:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:296:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:36:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:41:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:57:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:97:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:102:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:118:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:218:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:223:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:242:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:286:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:291:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:310:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:36:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:41:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:56:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:95:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:100:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:115:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:212:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:217:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:236:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:279:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:284:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:303:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:38:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:43:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:60:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:102:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:107:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:122:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:132:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:137:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:155:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:197:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:202:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:218:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:36:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:41:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:56:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:94:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:99:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:114:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:122:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:127:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:143:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:181:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:186:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:202:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:39:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:44:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:60:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:103:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:108:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:122:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:133:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:138:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:155:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:198:80-103: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:203:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:218:84-107: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:129:23-35: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:268:25-37: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:298:13-25: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:309:26-35: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:309:37-49: No attribute `concat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:353:32-41: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:359:13-22: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:370:25-36: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:442:17-30: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:446:17-30: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:470:13-26: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:483:25-36: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:506:13-24: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:531:13-25: No attribute `detach` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:734:32-41: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:734:43-54: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:807:34-46: No attribute `cumsum` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:807:47-59: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:859:41-50: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:859:52-63: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:866:65-74: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:888:41-52: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:941:34-46: No attribute `cumsum` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:941:47-59: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:978:41-50: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:978:52-63: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1021:29-40: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1044:29-44: No attribute `unflatten` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1054:29-42: No attribute `movedim` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1064:29-42: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1077:25-36: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1091:25-34: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1095:58-67: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1107:37-46: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1114:25-38: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1116:58-71: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1134:41-50: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1134:52-63: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1223:44-53: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1229:41-52: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1261:13-26: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1278:13-26: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1302:31-44: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1306:13-25: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1309:44-56: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1330:13-25: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1343:19-30: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1343:32-41: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1348:10-21: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1348:23-32: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1354:10-21: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1354:23-32: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1359:71-83: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1379:9-22: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1398:10-21: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1398:23-32: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1407:10-21: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1407:23-32: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1416:10-21: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1416:23-32: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1502:9-18: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1521:31-40: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1609:9-18: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1626:31-40: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:1791:24-46: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/split_cat.py:2142:16-26: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2154:17-30: No attribute `permute` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2157:50-63: No attribute `permute` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2164:13-26: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2166:46-59: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2188:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2203:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2220:48-60: No attribute `narrow` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2342:9-18: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2360:24-46: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/split_cat.py:2366:31-40: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2391:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2425:9-18: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2433:71-83: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2437:24-46: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/split_cat.py:2442:31-40: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2469:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2473:54-63: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2503:13-26: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2506:46-59: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2516:13-26: No attribute `permute` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2519:46-59: No attribute `permute` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2543:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2556:13-26: No attribute `permute` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2559:46-59: No attribute `permute` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2599:9-20: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2612:24-46: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/split_cat.py:2618:33-44: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2638:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2672:9-20: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2680:71-83: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2684:24-46: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/split_cat.py:2689:33-44: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2712:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2716:54-63: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2754:74-87: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2770:9-20: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2781:67-78: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2783:24-46: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_passes/split_cat.py:2794:38-51: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2834:33-44: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2838:75-86: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2844:40-53: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2865:25-36: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2869:67-78: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_passes/split_cat.py:2876:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_utils.py:125:30-43: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/fx_utils.py:150:28-53: Module `torch._inductor.fx_passes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_utils.py:150:28-63: Module `torch._inductor.fx_passes.reinplace` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_utils.py:206:20-45: Module `torch._inductor.fx_passes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_utils.py:206:20-55: Module `torch._inductor.fx_passes.reinplace` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/fx_utils.py:261:12-33: No attribute `_has_storage` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/fx_utils.py:325:18-42: Module `torch.utils.flop_counter` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/graph.py:22:19-25: Could not import `device` from `torch` [missing-module-attribute] +ERROR torch/_inductor/graph.py:145:5-57: Could not find import of `torch._inductor.fb.utils` [missing-import] +ERROR torch/_inductor/graph.py:152:76-87: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/graph.py:159:16-27: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/graph.py:165:16-27: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/graph.py:167:16-29: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/graph.py:179:20-41: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/graph.py:290:13-55: Module `torch._higher_order_ops.triton_kernel_wrap` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/graph.py:298:16-28: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/graph.py:418:24-45: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/graph.py:470:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/graph.py:487:40-52: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/graph.py:575:16-28: Returned type `tuple[list[Integer], list[Integer]]` is not assignable to declared return type `tuple[list[Expr], list[Expr]]` [bad-return] +ERROR torch/_inductor/graph.py:592:20-57: Returned type `list[int]` is not assignable to declared return type `Sequence[Expr]` [bad-return] +ERROR torch/_inductor/graph.py:592:47-56: Cannot index into `dict[str, list[int]]` [bad-index] +ERROR torch/_inductor/graph.py:607:23-41: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/graph.py:630:46-58: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/graph.py:637:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/graph.py:907:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/graph.py:924:20-50: Returned type `Expr | TensorBox | TorchBindObject` is not assignable to declared return type `Buffer | TensorBox | TorchBindObject | None` [bad-return] +ERROR torch/_inductor/graph.py:947:46-57: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/graph.py:959:24-64: Object of class `Expr` has no attribute `get_dtype` [missing-attribute] +ERROR torch/_inductor/graph.py:963:20-60: Object of class `Expr` has no attribute `get_dtype` [missing-attribute] +ERROR torch/_inductor/graph.py:978:20-60: Object of class `Expr` has no attribute `get_numel` [missing-attribute] +ERROR torch/_inductor/graph.py:1005:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/graph.py:1106:66-78: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/graph.py:1114:14-42: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/graph.py:1151:20-23: Returned type `TorchBindObject` is not assignable to declared return type `Expr | TensorBox | None` [bad-return] +ERROR torch/_inductor/graph.py:1161:34-49: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_inductor/graph.py:1165:17-29: Module `torch._prims` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/graph.py:1171:20-23: Returned type `GeneratorState` is not assignable to declared return type `Expr | TensorBox | None` [bad-return] +ERROR torch/_inductor/graph.py:1192:71-76: Argument `Sequence[Expr | int] | list[Expr]` is not assignable to parameter `size` with type `Sequence[Expr]` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/graph.py:1192:78-85: Argument `Sequence[Expr | int] | list[Expr]` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/graph.py:1200:71-76: Argument `Sequence[Expr | int] | list[Expr]` is not assignable to parameter `size` with type `Sequence[Expr]` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/graph.py:1200:78-85: Argument `Sequence[Expr | int] | list[Expr]` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/graph.py:1204:37-43: Cannot set item in `dict[str, Expr | TensorBox | TorchBindObject]` [unsupported-operation] +ERROR torch/_inductor/graph.py:1225:16-22: Returned type `ShapeAsConstantBuffer | TensorBox` is not assignable to declared return type `Expr | TensorBox | None` [bad-return] +ERROR torch/_inductor/graph.py:1256:31-43: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/graph.py:1275:34-46: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/graph.py:1310:38-63: Module `torch.fx.operator_schemas` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/graph.py:1373:30-51: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/graph.py:1460:24-42: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/graph.py:1471:13-24: `Expr | TensorBox | TorchBindObject` is not assignable to `IRNode` [bad-assignment] +ERROR torch/_inductor/graph.py:1475:48-66: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/graph.py:1547:23-65: Module `torch._higher_order_ops.triton_kernel_wrap` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/graph.py:1568:25-42: No attribute `Argument` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/graph.py:1748:29-48: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/graph.py:1763:48-67: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_inductor/graph.py:1818:28-48: No attribute `_has_mkldnn` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/graph.py:1836:32-48: No attribute `has_mkl` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/graph.py:1851:68-74: Object of class `Mapping` has no attribute `meta` +Object of class `NoneType` has no attribute `meta` +Object of class `OpOverload` has no attribute `meta` +Object of class `Sequence` has no attribute `meta` +Object of class `SymBool` has no attribute `meta` +Object of class `SymFloat` has no attribute `meta` +Object of class `SymInt` has no attribute `meta` +Object of class `bool` has no attribute `meta` +Object of class `complex` has no attribute `meta` +Object of class `float` has no attribute `meta` +Object of class `int` has no attribute `meta` +Object of class `range` has no attribute `meta` +Object of class `slice` has no attribute `meta` +Object of class `str` has no attribute `meta` +Object of class `tuple` has no attribute `meta` [missing-attribute] +ERROR torch/_inductor/graph.py:2129:23-65: Module `torch._higher_order_ops.triton_kernel_wrap` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/graph.py:2143:66-77: No attribute `clone` in module `torch` [missing-attribute] +ERROR torch/_inductor/graph.py:2215:35-48: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/graph.py:2286:22-50: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/graph.py:2500:17-50: Object of class `Expr` has no attribute `get_numel` [missing-attribute] +ERROR torch/_inductor/graph.py:2501:21-53: Object of class `Expr` has no attribute `get_size` [missing-attribute] +ERROR torch/_inductor/index_propagation.py:60:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/index_propagation.py:72:24-35: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_inductor/index_propagation.py:94:57-68: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/index_propagation.py:98:58-69: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/index_propagation.py:104:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/index_propagation.py:105:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/index_propagation.py:120:23-42: No attribute `promote_types` in module `torch` [missing-attribute] +ERROR torch/_inductor/index_propagation.py:125:23-42: No attribute `promote_types` in module `torch` [missing-attribute] +ERROR torch/_inductor/index_propagation.py:130:23-42: No attribute `promote_types` in module `torch` [missing-attribute] +ERROR torch/_inductor/index_propagation.py:139:23-42: No attribute `promote_types` in module `torch` [missing-attribute] +ERROR torch/_inductor/index_propagation.py:147:23-42: No attribute `promote_types` in module `torch` [missing-attribute] +ERROR torch/_inductor/index_propagation.py:156:23-42: No attribute `promote_types` in module `torch` [missing-attribute] +ERROR torch/_inductor/index_propagation.py:174:23-42: No attribute `promote_types` in module `torch` [missing-attribute] +ERROR torch/_inductor/index_propagation.py:179:23-42: No attribute `promote_types` in module `torch` [missing-attribute] +ERROR torch/_inductor/index_propagation.py:234:57-68: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/index_propagation.py:338:9-26: Class member `IndexPropagation.indirect_indexing` overrides parent class `DefaultHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/inductor_prims.py:25:29-38: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_inductor/inductor_prims.py:59:12-22: No attribute `amax` in module `torch` [missing-attribute] +ERROR torch/_inductor/inductor_prims.py:60:18-27: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_inductor/inductor_prims.py:60:28-37: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_inductor/inductor_prims.py:66:20-33: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/_inductor/inductor_prims.py:68:11-20: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_inductor/inductor_prims.py:72:27-40: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/_inductor/inductor_prims.py:74:11-20: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_inductor/inductor_prims.py:90:41-54: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/inductor_prims.py:96:35-48: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/_inductor/inductor_prims.py:115:11-20: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_inductor/inductor_prims.py:178:14-26: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_inductor/inductor_prims.py:179:44-55: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/inductor_prims.py:187:29-39: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/inductor_prims.py:199:26-37: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/inductor_prims.py:206:14-26: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_inductor/inductor_prims.py:207:44-55: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/invert_expr_analysis.py:120:27-28: Argument `Literal[1]` is not assignable to parameter `original_expr` with type `Expr` in function `Term.__init__` [bad-argument-type] +ERROR torch/_inductor/invert_expr_analysis.py:149:22-23: Argument `Basic` is not assignable to parameter `a` with type `Expr | int` in function `static_eq` [bad-argument-type] +ERROR torch/_inductor/invert_expr_analysis.py:150:20-28: Returned type `tuple[Basic, Basic]` is not assignable to declared return type `tuple[Expr | int | None, Expr | int | None]` [bad-return] +ERROR torch/_inductor/invert_expr_analysis.py:159:26-27: Argument `Basic` is not assignable to parameter `a` with type `Expr | int` in function `static_eq` [bad-argument-type] +ERROR torch/_inductor/invert_expr_analysis.py:159:48-57: Argument `Basic` is not assignable to parameter `a` with type `Expr | int` in function `static_eq` [bad-argument-type] +ERROR torch/_inductor/invert_expr_analysis.py:161:24-42: Returned type `tuple[FloorDiv, Basic]` is not assignable to declared return type `tuple[Expr | int | None, Expr | int | None]` [bad-return] +ERROR torch/_inductor/invert_expr_analysis.py:164:24-28: Argument `Basic` is not assignable to parameter `a` with type `Expr | int` in function `static_eq` [bad-argument-type] +ERROR torch/_inductor/invert_expr_analysis.py:165:20-33: Returned type `tuple[None, Basic]` is not assignable to declared return type `tuple[Expr | int | None, Expr | int | None]` [bad-return] +ERROR torch/_inductor/ir.py:132:12-18: Could not find import of `triton` [missing-import] +ERROR torch/_inductor/ir.py:243:34-38: Argument `IRNode | Symbol | TensorBox | dict[str, TensorBox] | int | object | None` is not assignable to parameter `nodes` with type `IRNode | Sequence[IRNode | Symbol | TensorBox | dict[str, TensorBox] | int | None] | Symbol | TensorBox | dict[str, TensorBox] | int | None` in function `_check_tensorbox` [bad-argument-type] +ERROR torch/_inductor/ir.py:371:28-29: Argument `Expr` is not assignable to parameter `x` with type `int` in function `torch._dynamo.utils.identity` [bad-argument-type] +ERROR torch/_inductor/ir.py:373:18-57: `list[Expr]` is not assignable to variable `stride` with type `list[int] | tuple[int, ...]` [bad-assignment] +ERROR torch/_inductor/ir.py:373:52-56: Argument `list[Expr | int]` is not assignable to parameter `sizes` with type `Sequence[int]` in function `FlexibleLayout.contiguous_strides` [bad-argument-type] +ERROR torch/_inductor/ir.py:380:13-32: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:397:34-46: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:401:24-36: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:409:32-44: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:429:29-41: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:464:50-53: Argument `Expr | int` is not assignable to parameter `left` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.statically_known_leq` [bad-argument-type] +ERROR torch/_inductor/ir.py:489:50-52: Argument `SymInt | int` is not assignable to parameter `left` with type `Expr | int` in function `torch._inductor.sizevars.SizeVarAllocator.statically_known_equals` [bad-argument-type] +ERROR torch/_inductor/ir.py:494:38-45: Argument `Sequence[SymInt | int]` is not assignable to parameter `strides1` with type `Sequence[Expr | int]` in function `significant_strides_equal` [bad-argument-type] +ERROR torch/_inductor/ir.py:501:13-26: Cannot set item in `list[Expr]` [unsupported-operation] +ERROR torch/_inductor/ir.py:613:21-42: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/ir.py:623:25-46: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/ir.py:658:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:661:43-54: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:729:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:732:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:830:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:845:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:853:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:926:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:927:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:959:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:966:16-27: Returned type `Sequence[Expr | int]` is not assignable to declared return type `Sequence[Expr]` [bad-return] +ERROR torch/_inductor/ir.py:969:16-27: Returned type `Sequence[Expr | int]` is not assignable to declared return type `Sequence[Expr]` [bad-return] +ERROR torch/_inductor/ir.py:1051:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1057:63-74: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1093:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1110:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1134:21-46: Argument `Expr` is not assignable to parameter with type `Sequence[Expr]` [bad-argument-type] +ERROR torch/_inductor/ir.py:1152:33-44: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1219:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1234:16-37: Returned type `Sequence[Expr | int]` is not assignable to declared return type `Sequence[Expr]` [bad-return] +ERROR torch/_inductor/ir.py:1269:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1286:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1287:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1288:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1297:67-73: Argument `Sequence[Expr | int]` is not assignable to parameter `it` with type `Iterable[Expr]` in function `torch._inductor.utils.sympy_product` [bad-argument-type] +ERROR torch/_inductor/ir.py:1339:44-64: Argument `Integer | int` is not assignable to parameter with type `int` [bad-argument-type] +ERROR torch/_inductor/ir.py:1339:44-64: Argument `Integer | int` is not assignable to parameter `reduction_numel_hint` with type `int` in function `inner_reduction_splits` [bad-argument-type] +ERROR torch/_inductor/ir.py:1436:20-34: Argument `Sequence[Expr]` is not assignable to parameter `vars` with type `Sequence[Symbol]` in function `torch._inductor.sizevars.SizeVarAllocator.stride_hints` [bad-argument-type] +ERROR torch/_inductor/ir.py:1436:40-56: No matching overload found for function `list.__init__` called with arguments: (dict_keys[Expr, Expr]) [no-matching-overload] +ERROR torch/_inductor/ir.py:1447:17-37: Argument `Integer | int` is not assignable to parameter with type `int` [bad-argument-type] +ERROR torch/_inductor/ir.py:1447:17-37: Argument `Integer | int` is not assignable to parameter `reduction_numel_hint` with type `int` in function `inner_reduction_splits` [bad-argument-type] +ERROR torch/_inductor/ir.py:1447:39-49: Argument `Integer | int` is not assignable to parameter with type `int` [bad-argument-type] +ERROR torch/_inductor/ir.py:1447:39-49: Argument `Integer | int` is not assignable to parameter `numel_hint` with type `int` in function `inner_reduction_splits` [bad-argument-type] +ERROR torch/_inductor/ir.py:1451:17-37: Argument `Integer | int` is not assignable to parameter with type `int` [bad-argument-type] +ERROR torch/_inductor/ir.py:1451:17-37: Argument `Integer | int` is not assignable to parameter `reduction_numel_hint` with type `int` in function `inner_reduction_splits` [bad-argument-type] +ERROR torch/_inductor/ir.py:1451:39-49: Argument `Integer | int` is not assignable to parameter with type `int` [bad-argument-type] +ERROR torch/_inductor/ir.py:1451:39-49: Argument `Integer | int` is not assignable to parameter `numel_hint` with type `int` in function `inner_reduction_splits` [bad-argument-type] +ERROR torch/_inductor/ir.py:1459:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1481:17-68: Argument `list[Expr]` is not assignable to parameter `stride` with type `Sequence[int] | None` in function `_fixed_indexer` [bad-argument-type] +ERROR torch/_inductor/ir.py:1490:50-56: Argument `list[Expr | int]` is not assignable to parameter with type `Sequence[Expr]` [bad-argument-type] +ERROR torch/_inductor/ir.py:1490:59-70: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1502:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1503:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1504:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1523:33-43: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1613:39-44: Argument `Expr | int` is not assignable to parameter `split` with type `int` in function `_maybe_increase_split` [bad-argument-type] +ERROR torch/_inductor/ir.py:1635:17-27: Argument `list[Expr]` is not assignable to parameter `new_ranges` with type `list[Integer]` in function `Reduction.create_multilayer_existing_ranges` [bad-argument-type] +ERROR torch/_inductor/ir.py:1636:17-37: Argument `list[Expr]` is not assignable to parameter `new_reduction_ranges` with type `list[Integer]` in function `Reduction.create_multilayer_existing_ranges` [bad-argument-type] +ERROR torch/_inductor/ir.py:1689:47-87: `Expr | int` is not assignable to attribute `_split_size` with type `int | None` [bad-assignment] +ERROR torch/_inductor/ir.py:1711:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1719:24-35: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1726:24-35: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1743:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1822:13-31: `Symbol` is not assignable to `Sequence[Symbol]` [bad-assignment] +ERROR torch/_inductor/ir.py:1830:47-62: Argument `Expr | int` is not assignable to parameter `size` with type `int` in function `torch._inductor.utils.dtype_from_size` [bad-argument-type] +ERROR torch/_inductor/ir.py:1833:36-51: Argument `Expr | int` is not assignable to parameter `expr` with type `Expr` in function `torch._inductor.ops_handler.OpsHandler.index_expr` [bad-argument-type] +ERROR torch/_inductor/ir.py:1873:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1874:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1875:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1894:34-47: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1894:49-63: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1895:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1913:40-66: Argument `list[Expr | int]` is not assignable to parameter with type `Sequence[Expr]` [bad-argument-type] +ERROR torch/_inductor/ir.py:1937:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1938:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1939:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1973:13-29: Argument `list[Expr | int]` is not assignable to parameter `new_ranges` with type `list[Expr]` in function `Reduction.create_multilayer_helper` [bad-argument-type] +ERROR torch/_inductor/ir.py:1974:13-25: Argument `list[FloorDiv]` is not assignable to parameter `new_reduction_ranges` with type `list[Integer]` in function `Reduction.create_multilayer_helper` [bad-argument-type] +ERROR torch/_inductor/ir.py:1983:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1984:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:1985:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2034:16-22: Returned type `Expr | Unknown` is not assignable to declared return type `int` [bad-return] +ERROR torch/_inductor/ir.py:2036:12-19: Returned type `(index: Sequence[int]) -> int` is not assignable to declared return type `(Sequence[Expr]) -> Expr` [bad-return] +ERROR torch/_inductor/ir.py:2047:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2048:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2053:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2104:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2105:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2106:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2123:21-27: Argument `Sequence[Expr]` is not assignable to parameter `ranges` with type `Sequence[Integer]` in function `MultiOutputReduction.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:2124:21-37: Argument `Sequence[Expr]` is not assignable to parameter `reduction_ranges` with type `Sequence[Integer]` in function `MultiOutputReduction.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:2142:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2143:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2262:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2269:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2270:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2326:13-29: Argument `list[Expr | Integer | int]` is not assignable to parameter `ranges` with type `list[Integer]` in function `WelfordReduction.create` [bad-argument-type] +ERROR torch/_inductor/ir.py:2327:13-25: Argument `list[FloorDiv]` is not assignable to parameter `reduction_ranges` with type `list[Integer]` in function `WelfordReduction.create` [bad-argument-type] +ERROR torch/_inductor/ir.py:2353:13-20: Argument `list[Expr | int]` is not assignable to parameter `reduction_ranges` with type `list[Integer]` in function `WelfordReduction.create` [bad-argument-type] +ERROR torch/_inductor/ir.py:2369:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2418:16-27: Returned type `Sequence[Expr | int]` is not assignable to declared return type `Sequence[Expr]` [bad-return] +ERROR torch/_inductor/ir.py:2433:52-55: Argument `Sequence[Expr | int]` is not assignable to parameter `index` with type `Sequence[Expr]` in function `torch._inductor.dependencies.extract_free_symbols` [bad-argument-type] +ERROR torch/_inductor/ir.py:2438:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2439:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2520:29-36: Argument `(index: Sequence[Expr], scan_index: Sequence[Expr]) -> list[Expr]` is not assignable to parameter `reindex` with type `(Sequence[Expr | int], Sequence[Expr | int]) -> Sequence[Expr | int]` in function `Scan.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:2520:29-36: Argument `(index: Sequence[Expr], scan_index: Sequence[Expr]) -> list[Expr]` is not assignable to parameter `reindex` with type `(Sequence[Expr | int], Sequence[Expr | int]) -> Sequence[Expr | int]` in function `SplitScan.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:2537:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2538:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2577:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2625:16-27: Returned type `Sequence[Expr | int]` is not assignable to declared return type `Sequence[Expr]` [bad-return] +ERROR torch/_inductor/ir.py:2645:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2646:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2782:21-33: Argument `Sequence[Integer | int]` is not assignable to parameter `order` with type `Sequence[int]` in function `Buffer.freeze_layout_with_stride_order` [bad-argument-type] +ERROR torch/_inductor/ir.py:2786:21-34: Argument `Sequence[Integer | int]` is not assignable to parameter `exact_strides` with type `Sequence[int]` in function `Buffer.freeze_layout_with_exact_strides` [bad-argument-type] +ERROR torch/_inductor/ir.py:2807:41-53: Argument `Sequence[Integer | int]` is not assignable to parameter `order` with type `Sequence[int]` in function `Layout.is_stride_ordered` [bad-argument-type] +ERROR torch/_inductor/ir.py:2860:24-35: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2866:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2916:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:2943:17-28: Cannot set item in `list[Expr | int]` [unsupported-operation] +ERROR torch/_inductor/ir.py:2945:17-28: Argument `Expr | None` is not assignable to parameter `size` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.is_size_one_or_false` [bad-argument-type] +ERROR torch/_inductor/ir.py:2978:21-31: No matching overload found for function `list.__init__` called with arguments: (Sequence[Expr | int]) [no-matching-overload] +ERROR torch/_inductor/ir.py:2985:40-48: Argument `Sequence[Expr | int]` is not assignable to parameter `size` with type `Sequence[Expr]` in function `ExpandView.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:3032:41-45: Argument `list[int]` is not assignable to parameter `dims` with type `list[Expr]` in function `PermuteView.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:3039:46-55: Argument `list[Expr]` is not assignable to parameter `dims` with type `Sequence[int]` in function `PermuteView._map_neg_dims` [bad-argument-type] +ERROR torch/_inductor/ir.py:3043:17-24: Cannot index into `Sequence[Expr]` [bad-index] +ERROR torch/_inductor/ir.py:3049:20-21: Cannot index into `dict[Expr, int]` [bad-index] +ERROR torch/_inductor/ir.py:3055:21-29: Cannot index into `Sequence[Expr]` [bad-index] +ERROR torch/_inductor/ir.py:3123:16-33: Returned type `tuple[list[Expr], (index: Sequence[Expr]) -> tuple[Expr]]` is not assignable to declared return type `tuple[list[int], (Sequence[Expr]) -> tuple[Expr]]` [bad-return] +ERROR torch/_inductor/ir.py:3198:61-73: Argument `(index: Any) -> tuple[int, ...]` is not assignable to parameter `reindex` with type `(Sequence[Expr]) -> Sequence[Expr]` in function `View.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:3214:51-59: Argument `list[Expr]` is not assignable to parameter `sizes` with type `Sequence[int]` in function `FlexibleLayout.contiguous_strides` [bad-argument-type] +ERROR torch/_inductor/ir.py:3248:52-60: Argument `Sequence[Expr | int]` is not assignable to parameter `old_size` with type `Sequence[Expr]` in function `View._dynamic_reshape_indexer` [bad-argument-type] +ERROR torch/_inductor/ir.py:3248:62-70: Argument `Sequence[Expr | int]` is not assignable to parameter `new_size` with type `Sequence[Expr]` in function `View._dynamic_reshape_indexer` [bad-argument-type] +ERROR torch/_inductor/ir.py:3251:35-43: Argument `Sequence[Expr | int]` is not assignable to parameter `it` with type `Iterable[Expr]` in function `torch._inductor.utils.sympy_product` [bad-argument-type] +ERROR torch/_inductor/ir.py:3252:53-61: Argument `Sequence[Expr | int]` is not assignable to parameter `old_size` with type `Sequence[Expr]` in function `View._dynamic_reshape_indexer` [bad-argument-type] +ERROR torch/_inductor/ir.py:3253:59-67: Argument `Sequence[Expr | int]` is not assignable to parameter `new_size` with type `Sequence[Expr]` in function `View._dynamic_reshape_indexer` [bad-argument-type] +ERROR torch/_inductor/ir.py:3255:16-23: Returned type `(Sequence[Expr]) -> Sequence[Expr]` is not assignable to declared return type `(Sequence[_T]) -> Sequence[_V]` [bad-return] +ERROR torch/_inductor/ir.py:3322:53-54: Argument `Literal[1]` is not assignable to parameter `right` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.check_equals` [bad-argument-type] +ERROR torch/_inductor/ir.py:3327:53-54: Argument `Literal[1]` is not assignable to parameter `right` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.check_equals` [bad-argument-type] +ERROR torch/_inductor/ir.py:3344:40-52: Argument `dict[Symbol, Expr]` is not assignable to parameter `replacements` with type `dict[Expr, Any]` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/ir.py:3373:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3380:24-35: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3440:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3443:43-54: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3463:24-35: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3499:79-84: Argument `int` is not assignable to parameter `right` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.evaluate_max` [bad-argument-type] +ERROR torch/_inductor/ir.py:3504:46-51: Argument `int` is not assignable to parameter `right` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.evaluate_min` [bad-argument-type] +ERROR torch/_inductor/ir.py:3514:19-59: `Expr` is not assignable to variable `val` with type `int | None` [bad-assignment] +ERROR torch/_inductor/ir.py:3514:45-48: Argument `int` is not assignable to parameter `idx` with type `Expr` in function `View.handle_negative_index` [bad-argument-type] +ERROR torch/_inductor/ir.py:3515:26-29: Argument `int | None` is not assignable to parameter `x` with type `Expr` in function `clamp` [bad-argument-type] +ERROR torch/_inductor/ir.py:3517:17-50: `Expr | int` is not assignable to variable `start` with type `int` [bad-assignment] +ERROR torch/_inductor/ir.py:3517:38-46: Argument `Expr` is not assignable to parameter `upper` with type `int` in function `clamp_wrap` [bad-argument-type] +ERROR torch/_inductor/ir.py:3518:15-57: `Expr | int` is not assignable to variable `end` with type `int` [bad-assignment] +ERROR torch/_inductor/ir.py:3518:38-46: Argument `Expr` is not assignable to parameter `upper` with type `int` in function `clamp_wrap` [bad-argument-type] +ERROR torch/_inductor/ir.py:3578:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3579:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3584:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3597:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3598:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3609:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3616:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3617:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3625:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3649:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3657:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3680:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3681:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3688:56-60: Argument `Sequence[Expr]` is not assignable to parameter `sizes` with type `Sequence[int]` in function `FlexibleLayout.contiguous_strides` [bad-argument-type] +ERROR torch/_inductor/ir.py:3741:29-41: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3746:20-39: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3774:60-81: No matching overload found for function `list.__init__` called with arguments: (Iterator[Expr]) [no-matching-overload] +ERROR torch/_inductor/ir.py:3804:13-37: Cannot set item in `list[int]` [unsupported-operation] +ERROR torch/_inductor/ir.py:3810:21-62: Argument `bool` is not assignable to parameter `orig_expr` with type `Basic` in function `torch.fx.experimental.symbolic_shapes.ShapeEnv.evaluate_expr` [bad-argument-type] +ERROR torch/_inductor/ir.py:3824:65-76: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:3849:50-54: Argument `Sequence[Expr]` is not assignable to parameter `*iterables` with type `Iterable[int]` in function `itertools.chain.__new__` [bad-argument-type] +ERROR torch/_inductor/ir.py:3861:53-54: Argument `Basic` is not assignable to parameter `symbol` with type `Symbol` in function `torch.fx.experimental.symbolic_shapes.ShapeEnv.is_unbacked_symint` [bad-argument-type] +ERROR torch/_inductor/ir.py:3904:23-76: Argument `Sequence[int]` is not assignable to parameter `value` with type `Sequence[Expr]` in function `FlexibleLayout.stride` [bad-argument-type] +ERROR torch/_inductor/ir.py:3904:41-52: Argument `Sequence[Expr]` is not assignable to parameter `in_strides` with type `Sequence[int]` in function `Layout._pad_strides` [bad-argument-type] +ERROR torch/_inductor/ir.py:3941:9-21: Class member `Layout.storage_size` overrides parent class `OutputSpec` in an inconsistent manner [bad-override] +ERROR torch/_inductor/ir.py:3960:31-40: Argument `Sequence[Expr]` is not assignable to parameter `size` with type `Sequence[int]` in function `_fixed_indexer` [bad-argument-type] +ERROR torch/_inductor/ir.py:3960:42-53: Argument `Sequence[Expr]` is not assignable to parameter `stride` with type `Sequence[int] | None` in function `_fixed_indexer` [bad-argument-type] +ERROR torch/_inductor/ir.py:3997:16-23: Returned type `list[None]` is not assignable to declared return type `list[Expr]` [bad-return] +ERROR torch/_inductor/ir.py:4013:46-65: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:4025:29-48: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:4027:31-53: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:4029:31-54: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:4083:42-51: Argument `Sequence[Expr]` is not assignable to parameter `sizes` with type `Sequence[int]` in function `FlexibleLayout.stride_ordered` [bad-argument-type] +ERROR torch/_inductor/ir.py:4085:44-54: Argument `Sequence[Expr]` is not assignable to parameter `in_strides` with type `Sequence[int]` in function `Layout._pad_strides` [bad-argument-type] +ERROR torch/_inductor/ir.py:4091:13-23: Argument `Sequence[Expr] | Sequence[int]` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:4101:44-54: Argument `Sequence[Expr | int]` is not assignable to parameter `in_strides` with type `Sequence[int]` in function `Layout._pad_strides` [bad-argument-type] +ERROR torch/_inductor/ir.py:4107:13-23: Argument `Sequence[Expr | int] | Sequence[int]` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:4113:37-72: `list[Expr]` is not assignable to `Sequence[int]` [bad-assignment] +ERROR torch/_inductor/ir.py:4113:55-64: Argument `Sequence[Expr]` is not assignable to parameter `sizes` with type `Sequence[int]` in function `FlexibleLayout.fill_ordered` [bad-argument-type] +ERROR torch/_inductor/ir.py:4120:13-23: Argument `Sequence[int]` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:4126:40-49: Argument `Sequence[Expr]` is not assignable to parameter `sizes` with type `Sequence[int]` in function `FlexibleLayout.same_ordered` [bad-argument-type] +ERROR torch/_inductor/ir.py:4128:44-54: Argument `Sequence[Expr]` is not assignable to parameter `in_strides` with type `Sequence[int]` in function `Layout._pad_strides` [bad-argument-type] +ERROR torch/_inductor/ir.py:4133:13-23: Argument `Sequence[Expr] | Sequence[int]` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:4143:45-4145:18: Cannot set item in `dict[tuple[str, bool], Symbol]` [unsupported-operation] +ERROR torch/_inductor/ir.py:4159:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:4160:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:4166:51-55: Argument `Sequence[Expr]` is not assignable to parameter `sizes` with type `Sequence[int]` in function `FlexibleLayout.fill_ordered` [bad-argument-type] +ERROR torch/_inductor/ir.py:4166:57-69: Argument `Sequence[Integer | int]` is not assignable to parameter `order` with type `Sequence[int]` in function `FlexibleLayout.fill_ordered` [bad-argument-type] +ERROR torch/_inductor/ir.py:4168:57-61: Argument `Sequence[Expr]` is not assignable to parameter `sizes` with type `Sequence[int]` in function `FlexibleLayout.contiguous_strides` [bad-argument-type] +ERROR torch/_inductor/ir.py:4266:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:4276:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:4395:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:4402:24-35: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:4423:16-32: Returned type `Expr` is not assignable to declared return type `int` [bad-return] +ERROR torch/_inductor/ir.py:4444:9-38: Class member `Buffer.freeze_layout_with_same_order` overrides parent class `IRNode` in an inconsistent manner [bad-override] +ERROR torch/_inductor/ir.py:4448:9-41: Class member `Buffer.freeze_layout_with_exact_strides` overrides parent class `IRNode` in an inconsistent manner [bad-override] +ERROR torch/_inductor/ir.py:4539:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:4551:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:4637:17-38: Argument `Sequence[Expr | int]` is not assignable to parameter `size` with type `Sequence[Expr]` in function `Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:4775:57-64: Argument `Sequence[Expr | int] | Sequence[Expr]` is not assignable to parameter `vars` with type `Sequence[Symbol]` in function `torch._inductor.sizevars.SizeVarAllocator.stride_hints` [bad-argument-type] +ERROR torch/_inductor/ir.py:4928:22-38: `Sequence[Symbol] | Sequence[int]` is not assignable to variable `x_vars` with type `Sequence[Symbol]` [bad-assignment] +ERROR torch/_inductor/ir.py:4928:31-37: Argument `Sequence[Symbol]` is not assignable to parameter with type `Sequence[int]` [bad-argument-type] +ERROR torch/_inductor/ir.py:4934:70-78: Argument `list[int]` is not assignable to parameter `sizes` with type `Sequence[Expr]` in function `torch._inductor.codegen.common.index_prevent_reordering` [bad-argument-type] +ERROR torch/_inductor/ir.py:4946:13-23: Argument `list[Expr] | Any` is not assignable to parameter `x_vars` with type `Sequence[Symbol]` in function `simplify_and_reorder` [bad-argument-type] +ERROR torch/_inductor/ir.py:4947:13-25: Argument `list[Expr] | Unknown` is not assignable to parameter `support_vars` with type `Sequence[Symbol]` in function `simplify_and_reorder` [bad-argument-type] +ERROR torch/_inductor/ir.py:4948:13-23: Argument `list[Expr] | Any` is not assignable to parameter `sizes` with type `Sequence[int]` in function `simplify_and_reorder` [bad-argument-type] +ERROR torch/_inductor/ir.py:4957:13-24: Argument `list[Expr] | Any` is not assignable to parameter `x_vars` with type `Sequence[Symbol]` in function `simplify_and_reorder` [bad-argument-type] +ERROR torch/_inductor/ir.py:4957:26-38: Argument `list[Expr] | Unknown` is not assignable to parameter `support_vars` with type `Sequence[Symbol]` in function `simplify_and_reorder` [bad-argument-type] +ERROR torch/_inductor/ir.py:4957:40-51: Argument `list[Expr] | Any` is not assignable to parameter `sizes` with type `Sequence[int]` in function `simplify_and_reorder` [bad-argument-type] +ERROR torch/_inductor/ir.py:4962:13-24: Argument `list[int]` is not assignable to parameter `*argsizes` with type `Sequence[Expr]` in function `torch._inductor.dependencies.index_vars_no_squeeze` [bad-argument-type] +ERROR torch/_inductor/ir.py:4963:13-26: Argument `list[int]` is not assignable to parameter `*argsizes` with type `Sequence[Expr]` in function `torch._inductor.dependencies.index_vars_no_squeeze` [bad-argument-type] +ERROR torch/_inductor/ir.py:4968:27-36: Argument `list[Symbol]` is not assignable to parameter with type `Sequence[int]` [bad-argument-type] +ERROR torch/_inductor/ir.py:4968:54-65: Argument `list[Symbol]` is not assignable to parameter with type `Sequence[int]` [bad-argument-type] +ERROR torch/_inductor/ir.py:4973:16-50: Returned type `tuple[tuple[list[int], list[int]], LoopBody]` is not assignable to declared return type `tuple[tuple[list[Expr], list[Expr]], LoopBody | None]` [bad-return] +ERROR torch/_inductor/ir.py:5003:60-65: Argument `Sequence[int]` is not assignable to parameter `sizes` with type `Sequence[Expr]` in function `torch._inductor.scheduler.pick_loop_order` [bad-argument-type] +ERROR torch/_inductor/ir.py:5030:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:5301:36-68: Module `torch._inductor.select_algorithm` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/ir.py:5325:21-53: Module `torch._inductor.select_algorithm` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/ir.py:5338:21-53: Module `torch._inductor.select_algorithm` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/ir.py:5383:42-46: Argument `None` is not assignable to parameter `index` with type `Expr` in function `torch._inductor.ops_handler.OpsHandler.store` [bad-argument-type] +ERROR torch/_inductor/ir.py:5563:34-47: Argument `Expr` is not assignable to parameter `object` with type `int` in function `list.append` [bad-argument-type] +ERROR torch/_inductor/ir.py:5576:40-83: `list[Expr]` is not assignable to `Sequence[int]` [bad-assignment] +ERROR torch/_inductor/ir.py:5576:74-82: Argument `list[Expr]` is not assignable to parameter `sizes` with type `Sequence[int]` in function `FlexibleLayout.contiguous_strides` [bad-argument-type] +ERROR torch/_inductor/ir.py:5592:37-77: `tuple[Expr | int, ...]` is not assignable to variable `output_stride` with type `Sequence[int]` [bad-assignment] +ERROR torch/_inductor/ir.py:5601:61-80: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:5602:64-86: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:5606:29-69: `tuple[Expr | int, ...]` is not assignable to variable `output_stride` with type `Sequence[int]` [bad-assignment] +ERROR torch/_inductor/ir.py:5619:24-37: Argument `Sequence[int]` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:5631:52-66: Argument `Expr` is not assignable to parameter `end` with type `int` in function `SliceView.create` [bad-argument-type] +ERROR torch/_inductor/ir.py:5998:31-52: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/ir.py:5998:72-87: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:6017:32-50: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/ir.py:6089:35-54: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:6092:35-57: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:6097:17-73: Argument `tuple[Expr | int, ...]` is not assignable to parameter `stride` with type `Sequence[int]` in function `Buffer.freeze_layout_with_same_order` [bad-argument-type] +ERROR torch/_inductor/ir.py:6110:53-63: Argument `Sequence[Expr]` is not assignable to parameter `vars` with type `Sequence[Symbol]` in function `torch._inductor.sizevars.SizeVarAllocator.offset_var` [bad-argument-type] +ERROR torch/_inductor/ir.py:6139:47-48: Argument `(Boolean & IRNode) | (Expr & IRNode) | (IRNode & int)` is not assignable to parameter `expr` with type `Expr` in function `ShapeAsConstantBuffer.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:6145:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:6233:39-52: Argument `Sequence[Expr | int] | None` is not assignable to parameter `exact_strides` with type `Sequence[Integer | int] | None` in function `as_storage_and_layout` [bad-argument-type] +ERROR torch/_inductor/ir.py:6246:56-69: Argument `Sequence[Expr | int]` is not assignable to parameter `strides` with type `Sequence[SymInt | int]` in function `try_match_insignificant_strides` [bad-argument-type] +ERROR torch/_inductor/ir.py:6320:21-45: Module `torch._inductor.lowering` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/ir.py:6332:27-40: Argument `Sequence[Expr | int] | None` is not assignable to parameter `exact_strides` with type `Sequence[Integer | int] | None` in function `as_storage_and_layout` [bad-argument-type] +ERROR torch/_inductor/ir.py:6338:17-41: Module `torch._inductor.lowering` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/ir.py:6340:55-68: Argument `Sequence[Expr | int]` is not assignable to parameter `strides` with type `Sequence[SymInt | int]` in function `try_match_insignificant_strides` [bad-argument-type] +ERROR torch/_inductor/ir.py:6381:54-66: Argument `Sequence[Expr]` is not assignable to parameter `sizes` with type `Sequence[int]` in function `FlexibleLayout.contiguous_strides` [bad-argument-type] +ERROR torch/_inductor/ir.py:6389:50-62: Argument `Sequence[Expr]` is not assignable to parameter `sizes` with type `Sequence[int]` in function `FlexibleLayout.contiguous_strides` [bad-argument-type] +ERROR torch/_inductor/ir.py:6614:49-60: Argument `dict[Symbol, @_]` is not assignable to parameter `replacements` with type `dict[Expr, Any]` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/ir.py:6687:44-56: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:6688:18-29: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:6688:30-41: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:6692:23-34: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:6693:22-29: Argument `list[int]` is not assignable to parameter `size` with type `Sequence[Expr]` in function `Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:6925:40-52: Object of class `Expr` has no attribute `name` [missing-attribute] +ERROR torch/_inductor/ir.py:6926:52-64: Object of class `Expr` has no attribute `name` [missing-attribute] +ERROR torch/_inductor/ir.py:6928:28-40: Object of class `Expr` has no attribute `name` [missing-attribute] +ERROR torch/_inductor/ir.py:6958:9-55: Could not find import of `triton.runtime.autotuner` [missing-import] +ERROR torch/_inductor/ir.py:7158:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:7431:40-52: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:7465:17-23: Argument `Sequence[Expr | int] | None` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:7507:50-62: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:7560:50-62: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:7599:37-49: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:7626:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:7657:17-28: Argument `Boolean` is not assignable to parameter `x` with type `Expr` in function `torch._inductor.codegen.wrapper.PythonWrapperCodegen.codegen_cpp_sizevar` [bad-argument-type] +ERROR torch/_inductor/ir.py:7665:17-28: Argument `Boolean` is not assignable to parameter `x` with type `Expr` in function `torch._inductor.codegen.wrapper.PythonWrapperCodegen.codegen_python_sizevar` [bad-argument-type] +ERROR torch/_inductor/ir.py:7760:48-65: No attribute `Argument` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/ir.py:7762:38-52: No attribute `ListType` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:7797:32-44: Module `torch._prims` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/ir.py:7869:43-55: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:7938:32-48: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:7938:50-64: No attribute `ListType` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:7938:66-79: No attribute `JitType` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:7941:41-57: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:7941:59-73: No attribute `NoneType` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:7947:44-60: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:7955:42-56: No attribute `ListType` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:7956:47-63: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:7966:42-60: No attribute `OptionalType` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:7967:47-63: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:7985:42-55: No attribute `IntType` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:8065:30-43: No attribute `JitType` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:8066:34-52: No attribute `OptionalType` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:8068:38-54: No attribute `NumberType` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:8156:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:8285:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:8287:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:8346:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:8419:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:8464:24-35: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:8724:32-51: Argument `Sequence[Expr | int]` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:8858:26-86: Argument `list[Expr | int]` is not assignable to parameter `size` with type `Sequence[Expr]` in function `Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:8859:28-8861:22: Argument `list[Expr | int]` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:8902:29-37: Argument `Expr` is not assignable to parameter `object` with type `ShapeAsConstantBuffer` in function `list.append` [bad-argument-type] +ERROR torch/_inductor/ir.py:9089:37-47: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:9112:51-54: Argument `Expr | int` is not assignable to parameter `left` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.check_equals` [bad-argument-type] +ERROR torch/_inductor/ir.py:9112:56-59: Argument `Expr | int` is not assignable to parameter `right` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.check_equals` [bad-argument-type] +ERROR torch/_inductor/ir.py:9165:30-83: Argument `list[Expr | int]` is not assignable to parameter `size` with type `Sequence[Expr]` in function `Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:9166:32-87: Argument `list[Expr | int]` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:9189:36-55: Argument `Sequence[Expr | int]` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/ir.py:9280:36-54: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:9288:52-70: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:9291:31-49: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:9292:35-53: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_inductor/ir.py:9318:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/jagged_lowerings.py:52:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/jagged_lowerings.py:53:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/jagged_lowerings.py:60:24-65:14: Argument `tuple[str, Expr, Unknown, Expr | int]` is not assignable to parameter `boundaries` with type `tuple[str, Expr, Expr, Expr]` in function `torch._inductor.ops_handler.OpsHandler.bucketize` [bad-argument-type] +ERROR torch/_inductor/jagged_lowerings.py:97:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/jagged_lowerings.py:101:9-23: Argument `int | Unknown` is not assignable to parameter `size` with type `Expr` in function `torch._inductor.ops_handler.OpsHandler.indirect_indexing` [bad-argument-type] +ERROR torch/_inductor/jagged_lowerings.py:106:42-53: Argument `Expr | int` is not assignable to parameter `size` with type `Expr` in function `torch._inductor.ops_handler.OpsHandler.indirect_indexing` [bad-argument-type] +ERROR torch/_inductor/kernel/bmm.py:122:31-40: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/bmm.py:124:5-14: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/bmm.py:130:5-18: No attribute `baddbmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/bmm.py:188:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/bmm.py:189:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/conv.py:326:5-22: No attribute `convolution` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/conv.py:334:9-22: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/conv.py:334:23-36: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/conv.py:335:12-24: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/conv.py:383:9-15: Argument `Sequence[int]` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/kernel/custom_op.py:188:27-38: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/custom_op.py:354:16-41: Module `torch._library.custom_ops` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/kernel/flex/common.py:56:42-55: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/common.py:206:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/common.py:207:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/common.py:216:13-33: Argument `list[Expr] | list[int]` is not assignable to parameter `size` with type `Sequence[Expr]` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/kernel/flex/common.py:266:15-27: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/common.py:289:16-26: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:148:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:149:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:150:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:151:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:162:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:163:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:164:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:165:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:293:15-28: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:299:15-28: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:439:60-78: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/kernel/flex/flex_attention.py:656:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:657:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:658:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:659:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:690:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:691:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:692:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:693:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_attention.py:890:60-78: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/kernel/flex/flex_cpu.py:97:19-30: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_cpu.py:102:19-30: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_cpu.py:103:19-30: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_cpu.py:104:23-34: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_cpu.py:105:24-35: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_cpu.py:122:19-30: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_cpu.py:123:19-30: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_cpu.py:124:23-34: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_cpu.py:125:24-35: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_cpu.py:165:17-27: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_cpu.py:241:34-45: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_cpu.py:241:47-61: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_cpu.py:241:63-76: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_decoding.py:234:15-28: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_decoding.py:240:15-28: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_decoding.py:246:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/flex/flex_decoding.py:247:9-22: Argument `list[int | Unknown]` is not assignable to parameter `size` with type `Sequence[Expr]` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/kernel/flex/flex_flash_attention.py:234:15-28: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:66:12-18: Could not find import of `triton` [missing-import] +ERROR torch/_inductor/kernel/mm.py:926:30-38: No attribute `mm` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:928:5-13: No attribute `mm` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:935:5-16: No attribute `addmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:939:5-18: No attribute `_int_mm` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:943:5-37: No attribute `_sparse_semi_structured_mm` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:950:5-21: No attribute `_scaled_mm` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:955:32-42: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:955:44-55: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:965:16-27: No attribute `addmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:966:12-23: No attribute `addmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:1005:18-31: No attribute `permute` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:1007:14-23: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:1007:58-71: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:1008:19-28: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:1085:12-20: No attribute `mm` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:1089:12-23: No attribute `addmm` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:1118:30-43: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:1119:37-50: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:1119:52-66: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:1150:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:1151:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:1262:13-35: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/kernel/mm.py:1295:16-38: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/kernel/mm.py:1313:30-52: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/kernel/mm.py:1336:46-57: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:1356:60-71: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:1520:13-19: Argument `list[Expr | int]` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/kernel/mm.py:1537:42-43: Argument `Expr` is not assignable to parameter `m` with type `int` in function `torch._inductor.utils.use_cutlass_template` [bad-argument-type] +ERROR torch/_inductor/kernel/mm.py:1537:48-49: Argument `Expr` is not assignable to parameter `k` with type `int` in function `torch._inductor.utils.use_cutlass_template` [bad-argument-type] +ERROR torch/_inductor/kernel/mm.py:1716:26-39: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:1781:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm.py:1877:22-44: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/kernel/mm.py:1883:22-44: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/kernel/mm.py:1897:26-48: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/kernel/mm_common.py:48:18-31: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm_common.py:48:33-47: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm_common.py:141:13-32: Module `torch.utils._triton` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/kernel/mm_common.py:159:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm_common.py:160:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm_common.py:161:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm_common.py:162:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm_common.py:163:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm_grouped.py:572:13-23: Argument `list[int | Unknown]` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/kernel/mm_grouped.py:581:5-22: No attribute `_grouped_mm` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm_grouped.py:589:5-29: No attribute `_scaled_grouped_mm` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm_grouped.py:633:20-34: No attribute `linspace` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm_grouped.py:641:20-34: No attribute `linspace` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm_grouped.py:649:20-34: No attribute `linspace` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm_grouped.py:668:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm_grouped.py:833:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm_grouped.py:865:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel/mm_grouped.py:872:30-44: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel_inputs.py:31:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel_inputs.py:85:25-37: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel_inputs.py:156:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel_inputs.py:165:38-49: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel_inputs.py:178:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel_inputs.py:220:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/kernel_inputs.py:275:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/lookup_table/choices.py:43:33-45: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/loop_body.py:644:9-18: Class member `CaptureIndexing.load_seed` overrides parent class `WrapperHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/loop_body.py:672:9-19: Class member `CaptureIndexing.index_expr` overrides parent class `WrapperHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/loop_body.py:679:9-21: Class member `CaptureIndexing.check_bounds` overrides parent class `WrapperHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/loop_body.py:690:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/loop_body.py:734:9-15: Class member `CaptureIndexing.masked` overrides parent class `WrapperHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/loop_body.py:745:9-13: Class member `CaptureIndexing.scan` overrides parent class `WrapperHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/loop_body.py:767:9-14: Class member `CaptureIndexing.frexp` overrides parent class `WrapperHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/loop_body.py:772:9-26: Class member `CaptureIndexing.indirect_indexing` overrides parent class `WrapperHandler` in an inconsistent manner [bad-param-name-override] + WARN torch/_inductor/lowering.py:34:5-10: `check` is deprecated [deprecated] +ERROR torch/_inductor/lowering.py:185:15-27: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/lowering.py:189:15-27: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/lowering.py:191:15-27: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/lowering.py:241:8-19: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:242:8-18: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:243:8-19: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:244:8-19: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:245:8-19: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:246:8-21: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:247:8-21: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:248:8-21: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:249:8-23: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:250:8-23: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:251:9-24: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:252:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:253:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:295:20-31: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:326:49-61: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:365:21-31: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:639:22-36: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:639:38-51: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:650:25-35: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:754:56-67: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:812:48-59: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:827:43-54: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:834:20-31: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:836:20-31: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:848:38-49: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:856:37-49: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:864:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:926:54-65: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1052:42-52: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1054:53-63: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1060:42-52: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1062:53-63: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1274:58-62: Argument `Expr | Unknown` is not assignable to parameter `step` with type `int` in function `torch._inductor.ir.SliceView.create` [bad-argument-type] +ERROR torch/_inductor/lowering.py:1294:9-17: Argument `Symbol | None` is not assignable to parameter `unbacked_size_symbol` with type `Symbol` in function `torch._inductor.ir.DynamicSliceSize.__init__` [bad-argument-type] +ERROR torch/_inductor/lowering.py:1297:9-13: Argument `Expr | Unknown` is not assignable to parameter `step` with type `Symbol | int` in function `torch._inductor.ir.DynamicSliceSize.__init__` [bad-argument-type] +ERROR torch/_inductor/lowering.py:1314:13-24: Argument `Symbol | None` is not assignable to parameter `unbacked_offset_symbol` with type `Symbol` in function `torch._inductor.ir.DynamicSelectStorageOffset.__init__` [bad-argument-type] +ERROR torch/_inductor/lowering.py:1315:13-18: Argument `int | Unknown` is not assignable to parameter `index` with type `Symbol` in function `torch._inductor.ir.DynamicSelectStorageOffset.__init__` [bad-argument-type] +ERROR torch/_inductor/lowering.py:1316:13-34: Argument `Expr` is not assignable to parameter `base_offset` with type `Symbol | int` in function `torch._inductor.ir.DynamicSelectStorageOffset.__init__` [bad-argument-type] +ERROR torch/_inductor/lowering.py:1327:5-19: Cannot set item in `list[Expr]` [unsupported-operation] +ERROR torch/_inductor/lowering.py:1385:44-55: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1391:33-44: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1393:58-69: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1395:55-66: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1451:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1456:29-43: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1457:33-46: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1458:33-46: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1475:68-81: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1477:28-41: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1478:41-54: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1479:33-44: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1480:51-62: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1496:27-37: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1532:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1534:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1546:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1559:28-41: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1560:41-54: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1561:33-46: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1562:51-64: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1563:43-56: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1584:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1586:29-43: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1587:33-46: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1588:33-46: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1597:44-57: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1600:68-81: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1623:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1625:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1632:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1638:72-85: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1639:43-56: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1662:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1664:29-43: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1665:33-46: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1666:33-46: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1682:31-73: Argument `tuple[()] | tuple[Literal[0]]` is not assignable to parameter with type `Sequence[Expr]` [bad-argument-type] +ERROR torch/_inductor/lowering.py:1683:41-83: Argument `tuple[()] | tuple[Literal[0]]` is not assignable to parameter with type `Sequence[Expr]` [bad-argument-type] +ERROR torch/_inductor/lowering.py:1684:27-40: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1685:43-56: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1686:32-45: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1687:53-66: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1689:68-81: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1710:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1712:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1725:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1733:31-73: Argument `tuple[()] | tuple[Literal[0]]` is not assignable to parameter with type `Sequence[Expr]` [bad-argument-type] +ERROR torch/_inductor/lowering.py:1734:41-83: Argument `tuple[()] | tuple[Literal[0]]` is not assignable to parameter with type `Sequence[Expr]` [bad-argument-type] +ERROR torch/_inductor/lowering.py:1735:27-40: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1736:43-56: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1737:32-45: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1738:53-66: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1739:43-56: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1755:31-41: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:1755:43-54: No attribute `uint8` in module `torch` [missing-attribute] + WARN torch/_inductor/lowering.py:1883:5-10: `torch._prims_common.check` is deprecated [deprecated] +ERROR torch/_inductor/lowering.py:2098:8-15: `<` is not supported between `Basic` and `Literal[0]` [unsupported-operation] +ERROR torch/_inductor/lowering.py:2099:9-29: `+=` is not supported between `Basic` and `int` [unsupported-operation] +ERROR torch/_inductor/lowering.py:2100:12-36: `<=` is not supported between `Literal[0]` and `Basic` [unsupported-operation] +ERROR torch/_inductor/lowering.py:2155:19-39: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:2288:32-43: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:2307:57-68: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:2308:61-72: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:2311:47-58: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:2343:56-68: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:2358:56-68: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:2418:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:2446:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:2449:24-28: Argument `list[int]` is not assignable to parameter `size` with type `Sequence[Expr]` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/lowering.py:2449:81-87: Argument `int` is not assignable to parameter `offset` with type `Expr` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/lowering.py:2456:47-58: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:2475:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:2478:24-28: Argument `list[int]` is not assignable to parameter `size` with type `Sequence[Expr]` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/lowering.py:2478:81-87: Argument `int` is not assignable to parameter `offset` with type `Expr` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/lowering.py:2485:47-58: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:2486:28-31: Argument `int` is not assignable to parameter `expr` with type `Expr` in function `torch._inductor.ops_handler.OpsHandler.index_expr` [bad-argument-type] +ERROR torch/_inductor/lowering.py:2486:33-44: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:2487:28-32: Argument `int` is not assignable to parameter `expr` with type `Expr` in function `torch._inductor.ops_handler.OpsHandler.index_expr` [bad-argument-type] +ERROR torch/_inductor/lowering.py:2487:34-45: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:2506:12-2511:6: Returned type `tuple[str, Expr, int | Unknown, Expr | int]` is not assignable to declared return type `tuple[str, Expr, Expr, Expr]` [bad-return] +ERROR torch/_inductor/lowering.py:2515:12-46: Returned type `tuple[str, Expr | int]` is not assignable to declared return type `tuple[str, Expr]` [bad-return] +ERROR torch/_inductor/lowering.py:2551:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:2551:49-60: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:2644:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:2644:49-60: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3013:15-27: Module `torch._prims` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/lowering.py:3014:15-27: Module `torch._prims` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/lowering.py:3015:15-27: Module `torch._prims` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/lowering.py:3199:42-53: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3200:39-50: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3234:44-55: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3243:57-68: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3250:55-66: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3257:69-80: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3259:37-48: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3289:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3291:33-46: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3294:26-37: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3296:26-49: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3322:50-61: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3323:43-54: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3335:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3346:20-35: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3357:20-36: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3359:31-42: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3470:37-50: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3473:26-49: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3474:65-75: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3486:21-32: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3498:61-71: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3514:37-50: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3543:37-50: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3576:33-46: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3578:36-59: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3579:24-36: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3627:21-31: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3706:27-38: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3706:40-51: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3706:53-63: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3706:65-76: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3713:27-37: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3713:39-50: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3958:40-50: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3958:52-63: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3971:56-66: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3971:68-79: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:3980:31-34: Argument `list[int]` is not assignable to parameter `sizes` with type `Sequence[Expr]` in function `view` [bad-argument-type] +ERROR torch/_inductor/lowering.py:4003:27-30: Argument `list[int]` is not assignable to parameter `sizes` with type `Sequence[Expr]` in function `view` [bad-argument-type] +ERROR torch/_inductor/lowering.py:4064:26-36: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4065:55-65: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4124:14-25: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4125:9-30: Object of class `NoneType` has no attribute `type` [missing-attribute] +ERROR torch/_inductor/lowering.py:4204:27-30: Argument `list[int]` is not assignable to parameter `sizes` with type `Sequence[Expr]` in function `view` [bad-argument-type] +ERROR torch/_inductor/lowering.py:4207:25-28: Argument `list[int]` is not assignable to parameter `sizes` with type `Sequence[Expr]` in function `view` [bad-argument-type] +ERROR torch/_inductor/lowering.py:4210:29-32: Argument `list[int]` is not assignable to parameter `sizes` with type `Sequence[Expr]` in function `view` [bad-argument-type] +ERROR torch/_inductor/lowering.py:4227:32-62: Argument `Literal[1] | Unknown` is not assignable to parameter `size` with type `Expr` in function `torch._inductor.ops_handler.OpsHandler.indirect_indexing` [bad-argument-type] +ERROR torch/_inductor/lowering.py:4317:31-44: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4319:46-59: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4320:44-57: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4321:29-40: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4493:46-57: Cannot set item in `dict[str, list[int]]` [unsupported-operation] +ERROR torch/_inductor/lowering.py:4566:27-38: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4567:44-55: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4573:27-38: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4574:30-41: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4600:53-66: Argument `int | Unknown` is not assignable to parameter `low` with type `Expr` in function `range_mask` [bad-argument-type] +ERROR torch/_inductor/lowering.py:4708:21-31: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4709:61-72: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4741:19-30: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4789:42-52: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4798:9-36: Module `torch._inductor.virtualized` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/lowering.py:4811:71-82: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4816:15-26: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4966:41-85: No matching overload found for function `max` called with arguments: (Literal[0], FloorDiv) [no-matching-overload] +ERROR torch/_inductor/lowering.py:4970:41-85: No matching overload found for function `max` called with arguments: (Literal[0], FloorDiv) [no-matching-overload] +ERROR torch/_inductor/lowering.py:4986:52-63: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4990:66-77: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4993:66-77: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4995:60-71: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4996:60-71: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4998:56-67: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:4999:56-67: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5000:66-77: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5001:65-76: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5006:57-68: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5007:57-68: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5011:72-83: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5016:72-83: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5029:61-74: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5065:52-63: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5066:45-56: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5069:52-63: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5070:45-56: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5169:67-78: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5194:25-36: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5269:25-36: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5286:27-38: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5342:15-26: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5379:50-61: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5380:50-61: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5382:32-45: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5382:74-87: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5386:37-48: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5450:23-34: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5677:56-67: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5742:41-85: No matching overload found for function `max` called with arguments: (Literal[0], FloorDiv) [no-matching-overload] +ERROR torch/_inductor/lowering.py:5746:41-85: No matching overload found for function `max` called with arguments: (Literal[0], FloorDiv) [no-matching-overload] +ERROR torch/_inductor/lowering.py:5769:44-55: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5770:44-55: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5771:42-53: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5772:42-53: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5773:49-60: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5774:49-60: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5779:44-55: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5783:43-54: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5785:54-65: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5786:54-65: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5787:57-68: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5788:56-67: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5797:66-77: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5800:66-77: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5802:60-71: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5803:60-71: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5805:56-67: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5806:56-67: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5807:66-77: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5808:65-76: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5813:57-68: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5814:57-68: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5829:72-83: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5836:72-83: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5851:72-85: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5939:57-68: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5940:48-59: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5942:29-40: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5953:64-75: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5963:48-59: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5967:50-61: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5980:52-63: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5985:48-59: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5990:49-60: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:5994:58-69: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6006:58-69: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6025:76-87: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6032:76-87: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6039:76-87: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6055:59-72: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6149:55-66: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6214:25-38: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6214:40-54: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6215:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6291:51-62: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6526:15-42: Module `torch._inductor.ops_handler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/lowering.py:6533:28-55: Module `torch._inductor.virtualized` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/lowering.py:6599:17-28: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6617:17-28: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6641:17-28: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6694:32-43: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6697:47-58: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6717:32-43: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6720:47-58: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6733:17-28: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6741:21-31: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6771:52-63: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6774:52-63: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6793:43-54: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6796:49-57: Argument `Literal[1] | Unknown` is not assignable to parameter `left` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.statically_known_lt` [bad-argument-type] +ERROR torch/_inductor/lowering.py:6796:59-70: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6796:71-82: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6800:42-53: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6805:29-39: Argument `list[int]` is not assignable to parameter `sizes` with type `Sequence[Expr]` in function `view` [bad-argument-type] +ERROR torch/_inductor/lowering.py:6821:38-49: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6880:27-37: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6886:27-37: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6892:27-37: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6898:27-37: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6910:56-66: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6914:51-61: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6915:51-61: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6916:51-61: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6917:56-66: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6918:51-61: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:6919:51-61: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:7180:25-48: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:7181:25-46: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:7184:25-44: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:7186:25-47: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:7203:33-44: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:7228:54-65: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/lowering.py:7229:43-54: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_ir.py:181:37-83: `list[Expr]` is not assignable to `list[int] | tuple[int, ...]` [bad-assignment] +ERROR torch/_inductor/mkldnn_ir.py:189:25-71: `list[Expr]` is not assignable to variable `output_stride` with type `list[int] | tuple[int, ...]` [bad-assignment] +ERROR torch/_inductor/mkldnn_ir.py:276:55-66: Argument `list[Expr]` is not assignable to parameter `sizes` with type `Sequence[int]` in function `torch._inductor.ir.FlexibleLayout.contiguous_strides` [bad-argument-type] +ERROR torch/_inductor/mkldnn_ir.py:676:29-42: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_ir.py:676:44-58: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_ir.py:843:59-70: Argument `list[Expr]` is not assignable to parameter `sizes` with type `Sequence[int]` in function `torch._inductor.ir.FlexibleLayout.contiguous_strides` [bad-argument-type] +ERROR torch/_inductor/mkldnn_ir.py:1051:29-42: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_ir.py:1051:44-58: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_ir.py:1174:29-42: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_ir.py:1174:44-58: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_ir.py:1282:47-55: Argument `Sequence[Expr]` is not assignable to parameter `sizes` with type `Sequence[int]` in function `torch._inductor.ir.FlexibleLayout.contiguous_strides` [bad-argument-type] +ERROR torch/_inductor/mkldnn_ir.py:1283:47-55: Argument `Sequence[Expr]` is not assignable to parameter `sizes` with type `Sequence[int]` in function `torch._inductor.ir.FlexibleLayout.contiguous_strides` [bad-argument-type] +ERROR torch/_inductor/mkldnn_ir.py:1291:21-32: Argument `Sequence[Expr] | list[Expr | int] | list[int]` is not assignable to parameter `size` with type `Sequence[Expr]` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/mkldnn_ir.py:1292:21-34: Argument `list[Expr] | list[int] | Unknown` is not assignable to parameter `stride` with type `Sequence[Expr] | None` in function `torch._inductor.ir.Layout.__init__` [bad-argument-type] +ERROR torch/_inductor/mkldnn_ir.py:1352:59-70: Argument `list[Expr]` is not assignable to parameter `sizes` with type `Sequence[int]` in function `torch._inductor.ir.FlexibleLayout.contiguous_strides` [bad-argument-type] +ERROR torch/_inductor/mkldnn_lowerings.py:60:33-42: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:60:55-66: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:68:33-42: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:68:55-66: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:141:21-37: Argument `list[Expr | int]` is not assignable to parameter `sizes` with type `Sequence[Expr]` in function `torch._inductor.lowering.view` [bad-argument-type] +ERROR torch/_inductor/mkldnn_lowerings.py:199:8-28: No attribute `_has_mkldnn` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:344:29-45: Argument `list[Expr | int]` is not assignable to parameter `sizes` with type `Sequence[Expr]` in function `torch._inductor.lowering.view` [bad-argument-type] +ERROR torch/_inductor/mkldnn_lowerings.py:406:29-45: Argument `list[Expr | int]` is not assignable to parameter `sizes` with type `Sequence[Expr]` in function `torch._inductor.lowering.view` [bad-argument-type] +ERROR torch/_inductor/mkldnn_lowerings.py:409:29-45: Argument `list[Expr | int]` is not assignable to parameter `sizes` with type `Sequence[Expr]` in function `torch._inductor.lowering.view` [bad-argument-type] +ERROR torch/_inductor/mkldnn_lowerings.py:557:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:557:45-58: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:561:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:561:42-53: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:619:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:619:45-58: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:623:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:623:42-53: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:628:38-51: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:628:53-67: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:629:43-56: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:629:58-72: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:681:50-60: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:681:62-81: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:687:29-45: Argument `list[Expr | int]` is not assignable to parameter `sizes` with type `Sequence[Expr]` in function `torch._inductor.lowering.view` [bad-argument-type] +ERROR torch/_inductor/mkldnn_lowerings.py:691:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:691:49-62: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:708:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:708:43-54: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:713:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:713:46-57: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:729:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:729:43-54: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:733:36-47: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:738:69-80: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:740:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:740:53-64: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:757:25-36: No attribute `equal` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:758:25-41: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:781:29-42: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:782:29-43: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:783:29-40: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:784:29-39: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:805:57-70: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:835:55-68: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:835:70-84: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:836:50-64: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:837:65-78: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:844:35-48: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:856:44-58: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:869:47-58: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:869:60-70: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:877:68-81: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:880:52-63: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:882:55-68: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:886:58-71: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:904:46-57: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:904:59-69: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1001:29-45: Argument `list[Expr | int]` is not assignable to parameter `sizes` with type `Sequence[Expr]` in function `torch._inductor.lowering.view` [bad-argument-type] +ERROR torch/_inductor/mkldnn_lowerings.py:1002:31-48: Argument `list[Expr | int]` is not assignable to parameter `sizes` with type `Sequence[Expr]` in function `torch._inductor.lowering.view` [bad-argument-type] +ERROR torch/_inductor/mkldnn_lowerings.py:1006:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1006:49-62: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1019:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1019:43-54: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1025:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1025:43-54: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1031:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1031:46-57: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1041:36-47: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1045:69-80: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1047:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1047:53-64: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1051:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1052:21-35: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1053:42-55: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1053:57-71: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1083:25-36: No attribute `equal` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1084:25-41: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1108:29-42: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1109:29-43: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1110:29-40: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1111:29-39: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1142:57-70: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1163:55-68: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1163:70-84: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1164:50-64: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1165:65-78: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1170:49-62: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1170:64-78: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1171:44-58: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1172:57-70: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1179:35-48: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1194:44-58: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1207:47-58: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1207:60-70: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1215:68-81: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1218:52-63: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1220:55-68: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1224:58-71: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1227:62-73: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1231:39-50: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/mkldnn_lowerings.py:1301:12-28: No attribute `has_mkl` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:88:63-74: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:128:51-62: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:139:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:140:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:149:41-52: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:163:40-51: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:169:41-52: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:175:41-52: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:181:45-56: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:181:69-80: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:240:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:241:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:269:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:281:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:296:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:722:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:722:30-43: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:836:9-14: Class member `NoopHandler.frexp` overrides parent class `DefaultHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/ops_handler.py:848:9-26: Class member `NoopHandler.indirect_indexing` overrides parent class `DefaultHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/ops_handler.py:945:9-14: Class member `MockHandler.frexp` overrides parent class `DefaultHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/ops_handler.py:963:9-26: Class member `MockHandler.indirect_indexing` overrides parent class `DefaultHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/ops_handler.py:1002:16-70: Returned type `Expr` is not assignable to declared return type `Symbol` [bad-return] +ERROR torch/_inductor/ops_handler.py:1017:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:1018:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:1107:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:1138:41-53: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:1141:43-54: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/ops_handler.py:1141:59-77: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/optimize_indexing.py:29:17-28: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_inductor/optimize_indexing.py:29:29-40: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/optimize_indexing.py:53:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/optimize_indexing.py:54:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/optimize_indexing.py:55:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/optimize_indexing.py:92:15-26: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/optimize_indexing.py:108:33-44: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/output_code.py:137:8-41: No attribute `_debug_has_internal_overlap` in module `torch` [missing-attribute] +ERROR torch/_inductor/output_code.py:165:19-50: Module `torch._inductor.cudagraph_trees` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/output_code.py:421:36-57: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/output_code.py:561:72-87: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_inductor/output_code.py:604:13-34: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/output_code.py:605:17-38: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/output_code.py:609:17-38: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/output_code.py:611:21-42: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/output_code.py:614:13-34: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/output_code.py:805:13-40: Module `torch._inductor.cpp_builder` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/output_code.py:806:16-43: Module `torch._inductor.cpp_builder` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/output_code.py:827:37-53: `GraphModule` is not assignable to attribute `current_callable` with type `((...) -> Any) | None` [bad-assignment] +ERROR torch/_inductor/package/package.py:129:22-36: Module `torch._C._aoti` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/package/package.py:135:14-28: Module `torch._C._aoti` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/pattern_matcher.py:298:17-36: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/pattern_matcher.py:309:40-61: Argument `GraphModule` is not assignable to parameter `fn` with type `ReplaceFn | SearchFn` in function `TraceFn.__call__` [bad-argument-type] +ERROR torch/_inductor/pattern_matcher.py:1155:17-25: Class member `Replacer.run_node` overrides parent class `Interpreter` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/pattern_matcher.py:1482:31-50: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/pattern_matcher.py:1581:12-43: No attribute `is_inference_mode_enabled` in module `torch` [missing-attribute] +ERROR torch/_inductor/pattern_matcher.py:1658:25-56: Module `torch._inductor.pattern_matcher` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/pattern_matcher.py:1659:28-59: Module `torch._inductor.pattern_matcher` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/pattern_matcher.py:1803:45-57: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/pattern_matcher.py:1803:59-70: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/pattern_matcher.py:2312:13-21: Class member `CopyGraph.run_node` overrides parent class `Transformer` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/quantized_lowerings.py:24:5-30: No attribute `_weight_int8pack_mm` in module `torch` [missing-attribute] +ERROR torch/_inductor/quantized_lowerings.py:65:34-48: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/quantized_lowerings.py:65:50-63: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/quantized_lowerings.py:65:65-76: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/quantized_lowerings.py:66:37-47: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/quantized_lowerings.py:110:34-48: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/quantized_lowerings.py:110:50-63: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/quantized_lowerings.py:110:65-76: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_inductor/quantized_lowerings.py:111:37-48: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/quantized_lowerings.py:114:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/quantized_lowerings.py:114:44-55: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/quantized_lowerings.py:149:35-53: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/quantized_lowerings.py:153:20-33: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/_inductor/quantized_lowerings.py:153:55-66: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/remote_cache.py:26:12-17: Could not find import of `redis` [missing-import] +ERROR torch/_inductor/remote_cache.py:361:20-51: Could not find import of `torch._inductor.fb.remote_cache` [missing-import] +ERROR torch/_inductor/remote_gemm_autotune_cache.py:16:9-82: Could not find import of `torch._inductor.fb.remote_gemm_autotune_cache` [missing-import] +ERROR torch/_inductor/runtime/autotune_cache.py:71:28-47: Module `torch.utils._triton` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/runtime/autotune_cache.py:374:13-77: Could not find import of `torch._inductor.fb.remote_cache` [missing-import] +ERROR torch/_inductor/runtime/autotune_cache.py:514:12-37: Module `torch._inductor.codecache` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/runtime/autotune_cache.py:528:9-73: Could not find import of `torch._inductor.fb.remote_cache` [missing-import] +ERROR torch/_inductor/runtime/benchmarking.py:65:8-30: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/runtime/benchmarking.py:106:64-76: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/benchmarking.py:107:35-47: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/benchmarking.py:136:37-49: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/benchmarking.py:167:35-47: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/benchmarking.py:170:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/benchmarking.py:182:44-56: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/benchmarking.py:195:35-47: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/benchmarking.py:247:13-48: Could not find import of `triton.testing` [missing-import] +ERROR torch/_inductor/runtime/benchmarking.py:377:18-29: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/benchmarking.py:377:61-70: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/caching/implementations.py:342:5-53: Could not find import of `torch._inductor.runtime.caching.fb.implementations` [missing-import] +ERROR torch/_inductor/runtime/debug_utils.py:29:13-35: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/runtime/debug_utils.py:110:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/debug_utils.py:111:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/debug_utils.py:114:9-28: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/hints.py:39:12-18: Could not find import of `triton` [missing-import] +ERROR torch/_inductor/runtime/hints.py:40:12-36: Could not find import of `triton.backends.compiler` [missing-import] +ERROR torch/_inductor/runtime/hints.py:41:12-36: Could not find import of `triton.compiler.compiler` [missing-import] +ERROR torch/_inductor/runtime/hints.py:45:9-61: Could not find import of `triton.backends.compiler` [missing-import] +ERROR torch/_inductor/runtime/hints.py:67:9-61: Could not find import of `triton.compiler.compiler` [missing-import] +ERROR torch/_inductor/runtime/runtime_utils.py:170:9-49: Could not find import of `triton.runtime.cache` [missing-import] +ERROR torch/_inductor/runtime/runtime_utils.py:175:13-53: Could not find import of `triton.runtime.cache` [missing-import] +ERROR torch/_inductor/runtime/runtime_utils.py:192:39-50: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/runtime_utils.py:205:12-28: Could not find import of `jax.numpy` [missing-import] +ERROR torch/_inductor/runtime/runtime_utils.py:208:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/runtime_utils.py:209:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/runtime_utils.py:210:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/runtime_utils.py:211:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/runtime_utils.py:212:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/runtime_utils.py:213:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/runtime_utils.py:214:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/runtime_utils.py:215:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/runtime_utils.py:216:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/runtime_utils.py:217:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/runtime_utils.py:218:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/runtime_utils.py:219:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/runtime_utils.py:226:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/runtime/static_cuda_launcher.py:134:30-49: Could not import `_StaticCudaLauncher` from `torch._C` [missing-module-attribute] +ERROR torch/_inductor/runtime/static_cuda_launcher.py:238:30-49: Could not import `_StaticCudaLauncher` from `torch._C` [missing-module-attribute] +ERROR torch/_inductor/runtime/triton_compat.py:10:12-18: Could not find import of `triton` [missing-import] +ERROR torch/_inductor/runtime/triton_compat.py:16:12-33: Could not find import of `triton.language` [missing-import] +ERROR torch/_inductor/runtime/triton_compat.py:17:5-30: Could not find import of `triton` [missing-import] +ERROR torch/_inductor/runtime/triton_compat.py:18:5-47: Could not find import of `triton.compiler` [missing-import] +ERROR torch/_inductor/runtime/triton_compat.py:19:5-56: Could not find import of `triton.runtime.autotuner` [missing-import] +ERROR torch/_inductor/runtime/triton_compat.py:20:5-64: Could not find import of `triton.runtime.jit` [missing-import] +ERROR torch/_inductor/runtime/triton_compat.py:23:9-56: Could not find import of `triton.runtime.autotuner` [missing-import] +ERROR torch/_inductor/runtime/triton_compat.py:30:9-55: Could not find import of `triton.compiler.compiler` [missing-import] +ERROR torch/_inductor/runtime/triton_compat.py:35:9-55: Could not find import of `triton.backends.compiler` [missing-import] +ERROR torch/_inductor/runtime/triton_compat.py:50:9-52: Could not find import of `triton.language.extra` [missing-import] +ERROR torch/_inductor/runtime/triton_compat.py:66:9-51: Could not find import of `triton.language.standard` [missing-import] +ERROR torch/_inductor/runtime/triton_compat.py:86:9-33: Could not find import of `triton` [missing-import] +ERROR torch/_inductor/scheduler.py:132:35-64: Argument `Sequence[Expr | int]` is not assignable to parameter `it` with type `Iterable[Expr]` in function `torch._inductor.utils.sympy_product` [bad-argument-type] +ERROR torch/_inductor/scheduler.py:136:35-74: Argument `Sequence[Expr | int]` is not assignable to parameter `it` with type `Iterable[Expr]` in function `torch._inductor.utils.sympy_product` [bad-argument-type] +ERROR torch/_inductor/scheduler.py:147:25-31: Argument `Unknown | None` is not assignable to parameter `left` with type `Expr | int` in function `torch._inductor.sizevars.SizeVarAllocator.statically_known_equals` [bad-argument-type] +ERROR torch/_inductor/scheduler.py:151:20-36: Returned type `tuple[Unknown, Unknown | None]` is not assignable to declared return type `tuple[Expr, Expr]` [bad-return] +ERROR torch/_inductor/scheduler.py:462:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/scheduler.py:473:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/scheduler.py:559:35-53: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/scheduler.py:563:37-55: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/scheduler.py:706:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/scheduler.py:754:42-65: Module `torch._inductor.codegen` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/scheduler.py:754:42-70: Module `torch._inductor.codegen.simd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/scheduler.py:862:39-62: Module `torch._inductor.codegen` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/scheduler.py:862:39-67: Module `torch._inductor.codegen.simd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/scheduler.py:985:16-28: Module `torch._prims` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/scheduler.py:1040:23-53: `Expr | TensorBox | TorchBindObject` is not assignable to variable `buf` with type `Buffer | TensorBox | TorchBindObject` [bad-assignment] +ERROR torch/_inductor/scheduler.py:1221:37-62: Module `torch._inductor.codecache` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/scheduler.py:1222:12-37: Module `torch._inductor.codecache` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/scheduler.py:1989:29-41: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/scheduler.py:2001:9-21: Class member `FusedSchedulerNode.add_fake_dep` overrides parent class `BaseSchedulerNode` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/scheduler.py:2131:9-13: Class member `ForeachKernelSchedulerNode.fuse` overrides parent class `FusedSchedulerNode` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/scheduler.py:2420:9-21: Class member `GroupedSchedulerNode.add_fake_dep` overrides parent class `BaseSchedulerNode` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/scheduler.py:2594:29-41: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/scheduler.py:2615:47-59: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/scheduler.py:2754:12-34: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/scheduler.py:2792:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/scheduler.py:2796:47-59: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/scheduler.py:2961:52-54: Cannot set item in `dict[Symbol, Unknown | None]` [unsupported-operation] +ERROR torch/_inductor/scheduler.py:2968:56-58: Cannot set item in `dict[Symbol, Unknown | None]` [unsupported-operation] +ERROR torch/_inductor/scheduler.py:3127:16-38: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/scheduler.py:3165:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/scheduler.py:3439:43-55: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/scheduler.py:3474:33-65: Module `torch._inductor.select_algorithm` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/scheduler.py:3481:21-39: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/scheduler.py:3607:9-60: Could not find import of `triton.compiler.errors` [missing-import] +ERROR torch/_inductor/scheduler.py:3667:33-65: Module `torch._inductor.select_algorithm` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/scheduler.py:3722:43-61: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/scheduler.py:4203:49-64: Argument `int` is not assignable to parameter `left` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.statically_known_gt` [bad-argument-type] +ERROR torch/_inductor/scheduler.py:4461:17-70: Argument `Expr` is not assignable to parameter `object` with type `Literal[-20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25] | bool` in function `list.append` [bad-argument-type] +ERROR torch/_inductor/scheduler.py:4465:52-72: Argument `int` is not assignable to parameter `expr` with type `Expr` in function `torch._inductor.invert_expr_analysis.generate_inverse_formula` [bad-argument-type] +ERROR torch/_inductor/scheduler.py:4628:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/scheduler.py:4884:74-85: Argument `Expr` is not assignable to parameter `new_range` with type `int` in function `SchedulerNode.expand_dimension_for_pointwise_node` [bad-argument-type] +ERROR torch/_inductor/scheduler.py:5158:31-39: Object of class `Expr` has no attribute `data` [missing-attribute] +ERROR torch/_inductor/scheduler.py:5186:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/scheduler.py:5207:44-56: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/scheduler.py:5252:32-50: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/scheduler.py:5272:17-39: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/scheduler.py:5597:17-29: Argument `list[Expr | IRNode | TorchBindObject]` is not assignable to parameter `output_nodes` with type `list[IRNode]` in function `torch._inductor.ir.GraphPartitionSignature.__init__` [bad-argument-type] +ERROR torch/_inductor/scheduler.py:5812:20-42: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/scheduler.py:5866:17-49: Object of class `NoneType` has no attribute `type` [missing-attribute] +ERROR torch/_inductor/scheduler.py:5868:24-57: Object of class `NoneType` has no attribute `index` [missing-attribute] +ERROR torch/_inductor/scheduler.py:5872:21-54: Argument `object | Unknown` is not assignable to parameter `device_idx` with type `int` in function `torch._inductor.codegen.wrapper.PythonWrapperCodegen.codegen_device_guard_enter` [bad-argument-type] +ERROR torch/_inductor/scheduler.py:5879:21-53: Object of class `NoneType` has no attribute `type` [missing-attribute] +ERROR torch/_inductor/scheduler.py:5901:73-85: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/scheduler.py:5907:54-66: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/scheduler.py:6018:25-49: Object of class `NoneType` has no attribute `type` [missing-attribute] +ERROR torch/_inductor/scheduler.py:6084:34-58: Object of class `NoneType` has no attribute `type` [missing-attribute] +ERROR torch/_inductor/scheduler.py:6120:9-60: Could not find import of `triton.compiler.errors` [missing-import] +ERROR torch/_inductor/scheduler.py:6210:44-56: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/select_algorithm.py:314:31-44: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/select_algorithm.py:314:46-60: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/select_algorithm.py:318:29-42: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/select_algorithm.py:328:19-32: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/select_algorithm.py:332:9-26: Class member `ModificationWrapper.indirect_indexing` overrides parent class `WrapperHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/select_algorithm.py:1221:33-54: `tuple[@_, ...]` is not assignable to variable `val_shape` with type `tuple[str] | None` [bad-assignment] +ERROR torch/_inductor/select_algorithm.py:1298:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/select_algorithm.py:1740:17-39: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/select_algorithm.py:1962:26-37: `Sequence[Expr]` is not assignable to variable `call_sizes` with type `Sequence[Symbol] | None` [bad-assignment] +ERROR torch/_inductor/select_algorithm.py:1968:13-23: Argument `Sequence[Symbol] | None` is not assignable to parameter `call_sizes` with type `Sequence[Symbol]` in function `TritonTemplate.generate_and_load` [bad-argument-type] +ERROR torch/_inductor/select_algorithm.py:2021:32-51: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/select_algorithm.py:2024:23-34: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/select_algorithm.py:2058:17-27: Argument `Sequence[Symbol] | None` is not assignable to parameter `exprs` with type `Iterable[Expr | int]` in function `torch._inductor.sizevars.SizeVarAllocator.size_hints` [bad-argument-type] +ERROR torch/_inductor/select_algorithm.py:2336:13-29: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/select_algorithm.py:2745:13-45: Module `torch._inductor.autotune_process` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/select_algorithm.py:2798:20-38: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/select_algorithm.py:2799:17-35: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/select_algorithm.py:3177:23-41: Module `concurrent.futures` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/select_algorithm.py:3178:29-47: Module `concurrent.futures` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/select_algorithm.py:3320:31-50: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/select_algorithm.py:3321:28-35: Argument `tuple[Expr | int, ...]` is not assignable to parameter `strides` with type `list[int] | tuple[int, ...]` in function `torch._prims_common.compute_required_storage_length` [bad-argument-type] +ERROR torch/_inductor/select_algorithm.py:3321:37-51: Argument `Expr | int` is not assignable to parameter `storage_offset` with type `int` in function `torch._prims_common.compute_required_storage_length` [bad-argument-type] +ERROR torch/_inductor/select_algorithm.py:3327:32-43: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_inductor/select_algorithm.py:3338:21-37: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/select_algorithm.py:3345:27-46: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/select_algorithm.py:3352:28-39: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_inductor/select_algorithm.py:3362:22-38: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/select_algorithm.py:3451:21-72: Could not find import of `triton.runtime.autotuner` [missing-import] +ERROR torch/_inductor/select_algorithm.py:3682:31-63: Module `torch._inductor.select_algorithm` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/select_algorithm.py:3685:35-67: Module `torch._inductor.select_algorithm` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/select_algorithm.py:3790:35-67: Module `torch._inductor.select_algorithm` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/select_algorithm.py:3794:25-57: Module `torch._inductor.select_algorithm` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/select_algorithm.py:4000:13-35: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/shape_propagation.py:20:63-74: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/shape_propagation.py:65:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/shape_propagation.py:84:52-63: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/shape_propagation.py:102:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/shape_propagation.py:103:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/shape_propagation.py:118:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/shape_propagation.py:119:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/shape_propagation.py:132:45-56: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/sizevars.py:158:28-165:10: No matching overload found for function `typing.MutableMapping.update` called with arguments: (dict[Expr, ValueRanges[Expr]]) [no-matching-overload] +ERROR torch/_inductor/sizevars.py:168:30-33: Cannot set item in `dict[Symbol, ValueRanges[Unknown]]` [unsupported-operation] +ERROR torch/_inductor/sizevars.py:430:33-66: Argument `dict[Symbol, Expr]` is not assignable to parameter `replacements` with type `dict[Expr, Any]` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/sizevars.py:438:20-41: Argument `Equality` is not assignable to parameter `expr` with type `Expr` in function `SizeVarAllocator.check` [bad-argument-type] +ERROR torch/_inductor/sizevars.py:439:16-20: Returned type `Expr` is not assignable to declared return type `None` [bad-return] +ERROR torch/_inductor/sizevars.py:446:20-41: Argument `Equality` is not assignable to parameter `expr` with type `Expr` in function `SizeVarAllocator.check` [bad-argument-type] +ERROR torch/_inductor/sizevars.py:447:33-66: Argument `dict[Symbol, Expr]` is not assignable to parameter `replacements` with type `dict[Expr, Any]` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/sizevars.py:450:20-41: Argument `LessThan` is not assignable to parameter `expr` with type `Expr` in function `SizeVarAllocator.check` [bad-argument-type] +ERROR torch/_inductor/sizevars.py:453:20-41: Argument `StrictLessThan` is not assignable to parameter `expr` with type `Expr` in function `SizeVarAllocator.check` [bad-argument-type] +ERROR torch/_inductor/sizevars.py:492:16-496:10: Returned type `Basic | Unknown` is not assignable to declared return type `bool` [bad-return] +ERROR torch/_inductor/sizevars.py:594:37-62: Argument `dict[Symbol, int] | Unknown` is not assignable to parameter `replacements` with type `dict[Expr, Any]` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/sizevars.py:596:33-48: Argument `dict[Symbol, Integer] | Unknown` is not assignable to parameter `replacements` with type `dict[Expr, Any]` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/sizevars.py:613:51-60: No matching overload found for function `dict.get` called with arguments: (Basic, None) [no-matching-overload] +ERROR torch/_inductor/sizevars.py:933:17-23: Argument `Basic` is not assignable to parameter `expr` with type `Expr | int` in function `SizeVarAllocator.size_hint` [bad-argument-type] +ERROR torch/_inductor/sizevars.py:1029:16-26: `%` is not supported between `Basic` and `Basic` [unsupported-operation] +ERROR torch/_inductor/sizevars.py:1201:9-19: Class member `SimplifyIndexing.index_expr` overrides parent class `WrapperHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/sizevars.py:1204:9-21: Class member `SimplifyIndexing.check_bounds` overrides parent class `WrapperHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/standalone_compile.py:186:18-34: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/standalone_compile.py:186:18-41: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/standalone_compile.py:210:23-36: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/standalone_compile.py:211:18-31: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/standalone_compile.py:377:19-32: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/standalone_compile.py:414:15-28: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/standalone_compile.py:416:9-22: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/standalone_compile.py:419:9-25: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/standalone_compile.py:419:9-32: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/subgraph_lowering.py:134:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/subgraph_lowering.py:135:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/subgraph_lowering.py:149:9-20: Class member `TracingOpsHandler.placeholder` overrides parent class `WrapperHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/template_heuristics/triton.py:46:5-46: Could not find import of `triton` [missing-import] +ERROR torch/_inductor/template_heuristics/triton.py:635:21-42: Argument `int` is not assignable to parameter with type `Integer` [bad-argument-type] +ERROR torch/_inductor/template_heuristics/triton.py:635:44-65: Argument `int` is not assignable to parameter with type `Integer` [bad-argument-type] +ERROR torch/_inductor/template_heuristics/triton.py:635:67-88: Argument `int` is not assignable to parameter with type `Integer` [bad-argument-type] +ERROR torch/_inductor/template_heuristics/triton.py:775:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:780:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:911:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:912:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:913:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:914:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:915:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:916:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:917:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:918:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:919:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:923:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:924:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:925:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:926:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:927:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:928:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:929:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:930:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:931:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:932:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:933:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:934:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:938:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:939:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:940:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:941:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:942:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:943:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:944:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:945:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:946:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:950:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:951:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:952:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:953:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:954:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:955:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:956:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:957:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:958:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:981:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1002:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1024:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1084:44-57: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1189:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1190:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1191:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1192:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1193:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1194:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1195:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1196:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1197:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1358:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1366:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1386:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1429:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1430:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1431:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1432:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1433:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1434:14-28: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1435:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1436:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1437:14-27: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1479:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1487:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1507:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1648:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1679:36-47: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1684:22-35: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/template_heuristics/triton.py:1684:37-51: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/test_operators.py:9:61-70: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_inductor/tiling_utils.py:137:30-39: Argument `int` is not assignable to parameter `expr` with type `Expr` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:137:41-59: Argument `dict[Basic, Any]` is not assignable to parameter `replacements` with type `dict[Expr, Any]` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:160:23-24: Cannot set item in `dict[Symbol, int]` [unsupported-operation] +ERROR torch/_inductor/tiling_utils.py:162:23-24: Cannot set item in `dict[Symbol, int]` [unsupported-operation] +ERROR torch/_inductor/tiling_utils.py:162:37-38: Argument `Basic` is not assignable to parameter `v` with type `Expr | int` in function `get_hint` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:164:36-45: Argument `dict[Symbol, int]` is not assignable to parameter `replacements` with type `dict[Expr, Any]` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:169:19-20: Cannot set item in `dict[Symbol, int]` [unsupported-operation] +ERROR torch/_inductor/tiling_utils.py:171:41-50: Argument `dict[Symbol, int]` is not assignable to parameter `replacements` with type `dict[Expr, Any]` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:178:19-20: Cannot set item in `dict[Symbol, int]` [unsupported-operation] +ERROR torch/_inductor/tiling_utils.py:198:23-24: Cannot set item in `dict[Symbol, int]` [unsupported-operation] +ERROR torch/_inductor/tiling_utils.py:200:23-24: Cannot set item in `dict[Symbol, int]` [unsupported-operation] +ERROR torch/_inductor/tiling_utils.py:200:37-38: Argument `Basic` is not assignable to parameter `v` with type `Expr | int` in function `get_hint` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:202:36-45: Argument `dict[Symbol, int]` is not assignable to parameter `replacements` with type `dict[Expr, Any]` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:204:19-20: Cannot set item in `dict[Symbol, int]` [unsupported-operation] +ERROR torch/_inductor/tiling_utils.py:206:41-50: Argument `dict[Symbol, int]` is not assignable to parameter `replacements` with type `dict[Expr, Any]` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:211:23-24: Cannot set item in `dict[Symbol, int]` [unsupported-operation] +ERROR torch/_inductor/tiling_utils.py:214:35-44: Argument `dict[Symbol, int]` is not assignable to parameter `replacements` with type `dict[Expr, Any]` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:216:19-20: Cannot set item in `dict[Symbol, int]` [unsupported-operation] +ERROR torch/_inductor/tiling_utils.py:300:44-60: `tuple[Expr, ...]` is not assignable to attribute `pointwise_numel` with type `Expr` [bad-assignment] +ERROR torch/_inductor/tiling_utils.py:301:38-54: `tuple[Expr, ...]` is not assignable to attribute `red_numel` with type `Expr` [bad-assignment] +ERROR torch/_inductor/tiling_utils.py:310:34-59: Module `torch._inductor.scheduler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/tiling_utils.py:327:17-40: Module `torch._inductor.codegen` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/tiling_utils.py:327:17-45: Module `torch._inductor.codegen.simd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/tiling_utils.py:328:21-32: Argument `tuple[tuple[Expr, ...], ...]` is not assignable to parameter `groups` with type `Iterable[Expr]` in function `torch._inductor.codegen.simd.SIMDKernel.prepare_split_iteration_lengths` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:500:35-51: `tuple[Expr, ...]` is not assignable to `Expr` [bad-assignment] +ERROR torch/_inductor/tiling_utils.py:501:29-45: `tuple[Expr, ...]` is not assignable to `Expr` [bad-assignment] +ERROR torch/_inductor/tiling_utils.py:518:30-55: Module `torch._inductor.scheduler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/tiling_utils.py:551:13-36: Module `torch._inductor.codegen` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/tiling_utils.py:551:13-41: Module `torch._inductor.codegen.simd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/tiling_utils.py:556:13-36: Module `torch._inductor.codegen` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/tiling_utils.py:556:13-41: Module `torch._inductor.codegen.simd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/tiling_utils.py:575:47-54: Argument `dict[Symbol, Expr]` is not assignable to parameter `replacements` with type `dict[Expr, Any]` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:578:48-55: Argument `dict[Symbol, Expr]` is not assignable to parameter `replacements` with type `dict[Expr, Any]` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:600:9-15: Argument `dict[Expr, Expr]` is not assignable to parameter `var_ranges` with type `dict[Symbol, int]` in function `FusedNormalizedReadsWrites.__init__` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:615:32-35: No matching overload found for function `dict.get` called with arguments: (Basic) [no-matching-overload] +ERROR torch/_inductor/tiling_utils.py:621:12-623:6: Returned type `Expr | int` is not assignable to declared return type `int` [bad-return] +ERROR torch/_inductor/tiling_utils.py:630:12-632:6: Returned type `Expr | int` is not assignable to declared return type `int | None` [bad-return] +ERROR torch/_inductor/tiling_utils.py:712:63-73: Argument `dict[Symbol, int]` is not assignable to parameter `var_ranges` with type `dict[Expr, int]` in function `find_coalesced_var` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:717:67-77: Argument `dict[Symbol, int]` is not assignable to parameter `var_ranges` with type `dict[Expr, int]` in function `find_broadcast_var` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:732:30-49: Cannot index into `dict[Symbol, int]` [bad-index] +ERROR torch/_inductor/tiling_utils.py:732:30-49: Cannot set item in `dict[Symbol, int]` [unsupported-operation] +ERROR torch/_inductor/tiling_utils.py:738:30-46: Argument `dict[Symbol, int]` is not assignable to parameter `coalesced_by_var` with type `dict[Expr, int]` in function `CoalesceVarAnalysis.__init__` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:756:60-69: Argument `dict[Basic, int]` is not assignable to parameter `replacements` with type `dict[Expr, Any]` in function `torch._inductor.utils.sympy_subs` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:762:24-48: Object of class `Expr` has no attribute `is_integer` [missing-attribute] +ERROR torch/_inductor/tiling_utils.py:767:57-70: Argument `int` is not assignable to parameter `left` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.statically_known_lt` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:767:83-84: Cannot index into `dict[Symbol, int]` [bad-index] +ERROR torch/_inductor/tiling_utils.py:775:54-70: Argument `Literal[8]` is not assignable to parameter `left` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.statically_known_lt` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:776:57-58: Cannot index into `dict[Symbol, int]` [bad-index] +ERROR torch/_inductor/tiling_utils.py:780:27-28: Cannot index into `dict[Expr, dict[int, int]]` [bad-index] +ERROR torch/_inductor/tiling_utils.py:784:30-46: Argument `dict[Symbol, int]` is not assignable to parameter `coalesced_by_var` with type `dict[Expr, int]` in function `CoalesceVarAnalysis.__init__` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:800:30-46: Argument `dict[Symbol, int]` is not assignable to parameter `coalesced_by_var` with type `dict[Expr, int]` in function `CoalesceVarAnalysis.__init__` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:810:26-42: Argument `dict[Symbol, int]` is not assignable to parameter `coalesced_by_var` with type `dict[Expr, int]` in function `CoalesceVarAnalysis.__init__` [bad-argument-type] +ERROR torch/_inductor/tiling_utils.py:813:35-49: Argument `Expr` is not assignable to parameter `var` with type `Symbol` in function `VarTiling.__init__` [bad-argument-type] +ERROR torch/_inductor/utils.py:164:23-44: No matching overload found for function `map.__new__` called with arguments: (type[map[object]], (v: Expr) -> bool, tuple[Basic, ...] | tuple[Expr, ...]) [no-matching-overload] +ERROR torch/_inductor/utils.py:175:9-13: Class member `align.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/_inductor/utils.py:177:20-38: Returned type `int` is not assignable to declared return type `Expr | None` [bad-return] +ERROR torch/_inductor/utils.py:211:13-24: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:211:48-61: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:247:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:251:11-21: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:319:13-24: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:319:48-57: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:395:9-46: Could not find import of `torchvision.ops` [missing-import] +ERROR torch/_inductor/utils.py:397:9-55: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/utils.py:408:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:408:66-78: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:410:16-28: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:412:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:415:16-28: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:446:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:550:12-21: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:611:15-27: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:614:12-24: No attribute `median` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:938:55-66: Argument `Sequence[Expr]` is not assignable to parameter `shape` with type `Iterable[int]` in function `stringify_shape` [bad-argument-type] +ERROR torch/_inductor/utils.py:939:56-69: Argument `Sequence[Expr]` is not assignable to parameter `shape` with type `Iterable[int]` in function `stringify_shape` [bad-argument-type] +ERROR torch/_inductor/utils.py:1053:73-93: Argument `Basic` is not assignable to parameter `expr` with type `Expr` in function `sympy_str_mul` [bad-argument-type] +ERROR torch/_inductor/utils.py:1076:57-79: No matching overload found for function `map.__new__` called with arguments: (type[map[_S]], (expr: Expr) -> str, tuple[Basic, ...]) [no-matching-overload] +ERROR torch/_inductor/utils.py:1146:20-31: Returned type `Expr` is not assignable to declared return type `Symbol` [bad-return] +ERROR torch/_inductor/utils.py:1209:17-39: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:1231:61-73: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1233:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1241:29-41: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1263:29-52: Module `torch._inductor.runtime` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:1263:29-70: Module `torch._inductor.runtime.triton_heuristics` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:1268:29-52: Module `torch._inductor.runtime` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:1268:29-70: Module `torch._inductor.runtime.triton_heuristics` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:1390:20-70: Returned type `Basic` is not assignable to declared return type `bool` [bad-return] +ERROR torch/_inductor/utils.py:1390:44-48: Argument `Expr | SymInt` is not assignable to parameter `orig_expr` with type `Basic` in function `torch.fx.experimental.symbolic_shapes.ShapeEnv.evaluate_expr` [bad-argument-type] +ERROR torch/_inductor/utils.py:1411:19-57: No matching overload found for function `sorted` called with arguments: (list[tuple[int, Expr | int | Unknown]], key=(tuple[int, Expr]) -> SupportsAllComparisons) [no-matching-overload] +ERROR torch/_inductor/utils.py:1417:27-38: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1420:17-29: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1422:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1671:44-56: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1672:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1675:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1721:16-54: No attribute `_get_sm_carveout_experimental` in module `torch._C` [missing-attribute] +ERROR torch/_inductor/utils.py:1727:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1738:15-19: Argument `int` is not assignable to parameter `count` with type `Expr` in function `torch._inductor.codegen.common.WorkspaceArg.__init__` [bad-argument-type] +ERROR torch/_inductor/utils.py:1746:49-60: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1782:22-35: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1782:37-51: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1782:53-66: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1784:26-39: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1784:41-55: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1784:57-70: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1784:72-83: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1786:31-50: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1786:52-69: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1824:62-72: Argument `Expr | int` is not assignable to parameter `numerator` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.statically_known_multiple_of` [bad-argument-type] +ERROR torch/_inductor/utils.py:1853:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1864:26-39: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1864:41-55: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1864:57-76: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1865:43-56: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1877:58-59: Argument `Expr | int` is not assignable to parameter `left` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.statically_known_geq` [bad-argument-type] +ERROR torch/_inductor/utils.py:1903:21-40: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:1904:13-22: Argument `Expr | int` is not assignable to parameter `left` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.statically_known_geq` [bad-argument-type] +ERROR torch/_inductor/utils.py:1952:16-30: Module `importlib.util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:1996:22-36: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2036:22-35: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2036:37-51: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2036:53-64: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2227:29-42: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2227:44-58: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2227:60-73: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2285:33-46: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2316:38-49: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2316:51-61: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2317:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2317:37-51: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2317:53-63: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2317:65-76: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2543:12-25: Module `unittest.mock` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:2601:24-36: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2607:46-57: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2612:16-27: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2614:16-29: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2629:19-40: No attribute `get_num_threads` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2642:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2651:5-78: Could not find import of `triton.testing` [missing-import] +ERROR torch/_inductor/utils.py:2658:22-35: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2658:37-51: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2658:53-66: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2665:22-35: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2665:37-51: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2669:46-59: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2671:40-53: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2673:22-35: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2673:37-51: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:2687:5-45: Could not find import of `triton.testing` [missing-import] +ERROR torch/_inductor/utils.py:2693:5-38: Could not find import of `triton.runtime` [missing-import] +ERROR torch/_inductor/utils.py:2954:14-30: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:2954:14-37: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:3037:57-68: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3038:17-31: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3041:26-37: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3041:39-49: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3047:17-28: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3048:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3078:60-70: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3078:72-83: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3142:23-36: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:3159:10-23: Module `unittest.mock` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:3224:13-33: No attribute `_foreach_copy_` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3239:14-30: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3240:12-28: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3294:15-26: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3294:27-38: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3334:15-28: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:3344:27-40: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:3369:9-73: Could not find import of `torch._inductor.fb.remote_cache` [missing-import] +ERROR torch/_inductor/utils.py:3400:24-35: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3406:41-52: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3410:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3459:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3468:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3497:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3497:48-59: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3500:19-32: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3500:34-48: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3504:16-29: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3571:23-36: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:3589:8-22: Module `importlib.util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:3592:12-36: Could not find import of `triton.backends.compiler` [missing-import] +ERROR torch/_inductor/utils.py:3593:12-36: Could not find import of `triton.compiler.compiler` [missing-import] +ERROR torch/_inductor/utils.py:3639:9-54: Could not find import of `libfb.py.parutil` [missing-import] +ERROR torch/_inductor/utils.py:3660:9-31: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:3662:11-33: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:3665:35-46: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3669:9-13: Argument `int` is not assignable to parameter `left` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.statically_known_lt` [bad-argument-type] +ERROR torch/_inductor/utils.py:3670:49-53: Argument `int` is not assignable to parameter `left` with type `Expr` in function `torch._inductor.sizevars.SizeVarAllocator.statically_known_geq` [bad-argument-type] +ERROR torch/_inductor/utils.py:3671:16-27: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:3673:16-27: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/utils.py:4021:30-48: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:4022:16-34: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:4026:9-27: Module `torch._inductor.ir` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/utils.py:4033:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_inductor/virtualized.py:180:20-31: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_inductor/virtualized.py:182:20-31: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_inductor/virtualized.py:342:9-26: Class member `OpsWrapper.indirect_indexing` overrides parent class `DefaultHandler` in an inconsistent manner [bad-param-name-override] +ERROR torch/_inductor/wrapper_benchmark.py:179:17-45: Module `torch.autograd.profiler_util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/wrapper_benchmark.py:189:13-41: Module `torch.autograd.profiler_util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_inductor/wrapper_benchmark.py:199:13-41: Module `torch.autograd.profiler_util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_jit_internal.py:47:22-38: Could not import `_Await` from `torch._C` [missing-module-attribute] +ERROR torch/_jit_internal.py:47:40-57: Could not import `Future` from `torch._C` [missing-module-attribute] +ERROR torch/_jit_internal.py:132:24-47: No attribute `ScriptFunction` in module `torch._C` [missing-attribute] +ERROR torch/_jit_internal.py:1239:19-43: Module `torch._C._jit_tree_views` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_jit_internal.py:1311:24-45: Module `torch.jit.annotations` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_jit_internal.py:1314:32-51: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/_jit_internal.py:1330:13-41: No attribute `_jit_get_emit_hooks` in module `torch._C` [missing-attribute] +ERROR torch/_jit_internal.py:1331:5-33: No attribute `_jit_set_emit_hooks` in module `torch._C` [missing-attribute] +ERROR torch/_jit_internal.py:1335:9-37: No attribute `_jit_set_emit_hooks` in module `torch._C` [missing-attribute] +ERROR torch/_jit_internal.py:1341:22-50: No attribute `_jit_get_emit_hooks` in module `torch._C` [missing-attribute] +ERROR torch/_jit_internal.py:1342:9-37: No attribute `_jit_set_emit_hooks` in module `torch._C` [missing-attribute] +ERROR torch/_jit_internal.py:1345:9-37: No attribute `_jit_set_emit_hooks` in module `torch._C` [missing-attribute] +ERROR torch/_lazy/extract_compiled_graph.py:106:28-40: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_lazy/extract_compiled_graph.py:107:20-32: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_lazy/extract_compiled_graph.py:112:29-41: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_lazy/extract_compiled_graph.py:135:32-44: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_lazy/extract_compiled_graph.py:163:49-61: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:15:5-36: No attribute `_cudnn_init_dropout_state` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:16:5-17: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:17:5-26: No attribute `bartlett_window` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:18:5-26: No attribute `blackman_window` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:19:5-34: No attribute `_empty_affine_quantized` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:20:5-24: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:21:5-14: No attribute `eye` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:22:5-15: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:23:5-20: No attribute `from_file` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:24:5-22: No attribute `hann_window` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:25:5-25: No attribute `hamming_window` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:26:5-24: No attribute `kaiser_window` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:27:5-19: No attribute `linspace` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:28:5-19: No attribute `logspace` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:29:5-15: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:30:5-24: No attribute `scalar_tensor` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:31:5-15: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:32:5-18: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:33:5-16: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:34:5-19: No attribute `randperm` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:35:5-16: No attribute `range` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:36:5-31: No attribute `_efficientzerotensor` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:37:5-16: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:38:5-23: No attribute `tril_indices` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:39:5-23: No attribute `triu_indices` in module `torch` [missing-attribute] +ERROR torch/_lazy/tensor_factory_functions.py:48:5-17: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_library/autograd.py:32:17-34: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_library/autograd.py:39:14-43: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute] +ERROR torch/_library/autograd.py:49:14-43: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute] +ERROR torch/_library/autograd.py:110:12-30: No attribute `is_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/_library/autograd.py:110:37-58: No attribute `_any_requires_grad` in module `torch._C` [missing-attribute] +ERROR torch/_library/autograd.py:241:12-42: No attribute `_get_autograd_fallback_mode` in module `torch._C` [missing-attribute] +ERROR torch/_library/autograd.py:243:9-39: No attribute `_set_autograd_fallback_mode` in module `torch._C` [missing-attribute] +ERROR torch/_library/autograd.py:246:9-39: No attribute `_set_autograd_fallback_mode` in module `torch._C` [missing-attribute] +ERROR torch/_library/custom_ops.py:32:29-35: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_library/custom_ops.py:45:29-35: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_library/custom_ops.py:58:29-35: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_library/custom_ops.py:194:33-39: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_library/custom_ops.py:371:29-56: No attribute `_dispatch_key_for_device` in module `torch._C` [missing-attribute] +ERROR torch/_library/custom_ops.py:606:54-60: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_library/custom_ops.py:609:22-37: No attribute `parse_schema` in module `torch._C` [missing-attribute] +ERROR torch/_library/custom_ops.py:621:19-25: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_library/custom_ops.py:649:31-86: No attribute `_dispatch_get_computed_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_library/custom_ops.py:682:28-55: No attribute `_dispatch_key_for_device` in module `torch._C` [missing-attribute] +ERROR torch/_library/custom_ops.py:683:36-50: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_library/custom_ops.py:845:31-54: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_library/custom_ops.py:846:17-37: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_library/custom_ops.py:847:17-40: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_library/custom_ops.py:847:41-61: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_library/custom_ops.py:848:18-51: No attribute `_ExcludeDispatchKeyGuard` in module `torch._C` [missing-attribute] +ERROR torch/_library/custom_ops.py:866:37-50: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_library/effects.py:51:12-44: No attribute `_get_operation_overload` in module `torch._C` [missing-attribute] +ERROR torch/_library/effects.py:54:22-42: No attribute `_get_schema` in module `torch._C` [missing-attribute] +ERROR torch/_library/effects.py:56:41-56: No attribute `ClassType` in module `torch` [missing-attribute] +ERROR torch/_library/fake_class_registry.py:16:69-87: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_library/fake_class_registry.py:65:26-46: No attribute `FunctionSchema` in module `torch` [missing-attribute] +ERROR torch/_library/fake_class_registry.py:79:34-52: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_library/fake_class_registry.py:141:26-44: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_library/fake_class_registry.py:155:30-48: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_library/fake_class_registry.py:214:27-46: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_library/fake_class_registry.py:238:37-57: No attribute `FunctionSchema` in module `torch` [missing-attribute] +ERROR torch/_library/fake_class_registry.py:239:38-56: No attribute `ScriptMethod` in module `torch` [missing-attribute] +ERROR torch/_library/fake_class_registry.py:326:9-50: No attribute `_get_custom_class_python_wrapper` in module `torch._C` [missing-attribute] +ERROR torch/_library/fake_class_registry.py:368:14-32: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_library/fake_class_registry.py:382:43-61: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/_library/fake_impl.py:50:16-62: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_library/fake_impl.py:59:16-62: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_library/fake_impl.py:224:5-26: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_library/fake_impl.py:224:5-42: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_library/fake_profile.py:27:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_library/fake_profile.py:28:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_library/fake_profile.py:29:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_library/fake_profile.py:65:20-39: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_library/fake_profile.py:277:20-32: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_library/infer_schema.py:9:19-25: Could not import `device` from `torch` [missing-module-attribute] +ERROR torch/_library/infer_schema.py:9:27-32: Could not import `dtype` from `torch` [missing-module-attribute] +ERROR torch/_library/infer_schema.py:132:37-58: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_library/infer_schema.py:185:50-62: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_library/infer_schema.py:187:44-55: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_library/opaque_object.py:23:36-57: Second argument to NewType is invalid [invalid-argument] +ERROR torch/_library/opaque_object.py:26:41-62: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_library/opaque_object.py:84:12-40: No attribute `_make_opaque_object` in module `torch._C` [missing-attribute] +ERROR torch/_library/opaque_object.py:87:32-53: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_library/opaque_object.py:108:35-56: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_library/opaque_object.py:113:42-63: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_library/opaque_object.py:119:12-47: No attribute `_get_opaque_object_payload` in module `torch._C` [missing-attribute] +ERROR torch/_library/opaque_object.py:122:32-53: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_library/opaque_object.py:141:35-56: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_library/opaque_object.py:146:42-63: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_library/opaque_object.py:152:5-40: No attribute `_set_opaque_object_payload` in module `torch._C` [missing-attribute] +ERROR torch/_library/opaque_object.py:177:5-35: No attribute `_register_opaque_type` in module `torch._C` [missing-attribute] +ERROR torch/_library/opaque_object.py:187:12-47: No attribute `_is_opaque_type_registered` in module `torch._C` [missing-attribute] +ERROR torch/_library/triton.py:244:25-60: Module `torch._subclasses.functional_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_library/triton.py:357:5-51: Could not find import of `triton.runtime.autotuner` [missing-import] +ERROR torch/_library/triton.py:358:5-47: Could not find import of `triton.runtime.jit` [missing-import] +ERROR torch/_library/utils.py:100:31-51: No attribute `FunctionSchema` in module `torch` [missing-attribute] +ERROR torch/_library/utils.py:102:41-57: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_library/utils.py:106:41-57: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/_library/utils.py:109:33-47: Module `torchgen.model` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_library/utils.py:126:27-50: No attribute `FunctionSchema` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:141:16-27: No attribute `ListType` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:141:28-41: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:142:19-30: No attribute `ListType` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:142:31-46: No attribute `OptionalType` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:142:47-60: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:143:19-34: No attribute `OptionalType` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:143:35-46: No attribute `ListType` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:143:47-60: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:144:19-34: No attribute `OptionalType` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:144:35-46: No attribute `ListType` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:144:47-62: No attribute `OptionalType` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:144:63-76: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:150:19-32: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:150:49-64: No attribute `OptionalType` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:150:65-78: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:210:13-30: No attribute `FunctionSchema` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:211:21-32: No attribute `Argument` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:299:34-62: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_library/utils.py:300:25-44: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_library/utils.py:309:13-36: No attribute `_dispatch_keys` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:309:44-64: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:316:33-50: No attribute `FunctionSchema` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:320:36-53: No attribute `FunctionSchema` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:330:28-45: No attribute `FunctionSchema` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:341:34-51: No attribute `FunctionSchema` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:347:24-40: No attribute `DeviceObjType` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:403:8-50: No attribute `_any_output_is_alias_to_input_or_output` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:442:17-28: No attribute `equal` in module `torch` [missing-attribute] +ERROR torch/_library/utils.py:488:8-54: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:492:13-38: Module `torch._library.custom_ops` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_library/utils.py:495:12-58: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:502:12-58: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:511:33-50: No attribute `FunctionSchema` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:524:5-11: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:525:5-11: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:526:5-11: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:527:5-11: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:535:6-12: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:542:15-21: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:551:20-26: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_library/utils.py:555:24-36: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/_linalg_utils.py:13:28-44: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/_linalg_utils.py:27:18-31: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_linalg_utils.py:27:33-46: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_linalg_utils.py:27:48-61: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_linalg_utils.py:29:12-25: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_linalg_utils.py:42:12-24: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_linalg_utils.py:67:13-23: No attribute `flip` in module `torch` [missing-attribute] +ERROR torch/_linalg_utils.py:68:13-23: No attribute `flip` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:24:11-23: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:25:12-24: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:25:25-41: No attribute `diag_embed` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:25:52-64: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:117:22-31: No attribute `eye` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:132:15-28: No attribute `addcmul` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:153:11-26: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:157:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:216:34-46: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:217:20-32: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:240:11-31: No attribute `cholesky_solve` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:318:25-40: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:318:42-58: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:320:29-44: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:320:46-62: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:532:12-31: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_lobpcg.py:610:17-30: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:610:41-54: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:656:17-27: No attribute `prod` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:656:28-40: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:660:14-25: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:661:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:667:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:681:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:723:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:724:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:725:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:790:48-57: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:794:18-27: Type `bool` is not iterable [not-iterable] +ERROR torch/_lobpcg.py:853:14-26: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:896:14-26: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:1014:12-23: No attribute `numel` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:1026:14-25: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:1030:16-27: No attribute `numel` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:1034:18-29: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:1043:20-31: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:1049:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:1051:16-28: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:1082:14-26: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:1116:20-31: No attribute `numel` in module `torch` [missing-attribute] +ERROR torch/_lobpcg.py:1125:27-36: No attribute `eye` in module `torch` [missing-attribute] +ERROR torch/_logging/_internal.py:1149:24-54: Could not find import of `torch.version` [missing-import] +ERROR torch/_lowrank.py:65:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_lowrank.py:278:19-30: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_lowrank.py:285:15-38: No attribute `sparse_coo_tensor` in module `torch` [missing-attribute] +ERROR torch/_lowrank.py:289:21-31: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:99:9-24: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:99:26-36: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:100:9-21: No attribute `cfloat` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:100:23-34: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:101:9-22: No attribute `cdouble` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:101:24-36: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:123:12-25: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:140:13-36: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:150:26-49: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:151:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:162:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:177:24-34: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:213:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:213:49-72: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:221:14-25: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:222:15-26: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:222:65-76: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:234:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:234:49-72: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:279:50-73: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:379:65-88: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:392:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:399:11-21: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:404:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:415:11-21: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:425:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:437:11-21: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:446:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:454:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:474:42-65: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:484:49-72: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:512:45-78: No attribute `_debug_has_internal_overlap` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:552:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:568:31-41: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:568:59-70: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:584:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:593:30-40: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:593:58-69: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:613:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:628:30-40: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:628:58-69: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:645:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:652:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:653:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:654:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:655:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:656:9-28: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:661:49-59: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:661:61-80: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:675:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:676:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:677:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:678:13-32: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:696:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:696:49-72: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:740:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:744:27-50: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:770:44-54: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:786:44-54: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:799:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:804:5-26: No attribute `_resize_output_` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:805:22-33: No attribute `angle` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:832:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:943:23-34: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:943:36-48: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:943:50-62: No attribute `cfloat` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:943:64-77: No attribute `cdouble` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1042:39-62: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1072:16-32: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1099:54-65: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1148:12-31: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1165:45-56: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1179:10-29: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1185:52-61: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1186:50-59: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1226:12-31: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1279:10-29: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1289:39-48: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1293:37-46: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1318:25-34: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1341:14-33: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1369:29-40: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1454:10-29: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1460:44-55: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1581:15-34: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1588:11-30: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1594:45-56: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1595:43-54: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1660:20-33: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1662:20-39: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1668:30-49: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1674:22-38: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1674:54-70: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1675:20-36: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1693:46-57: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1781:12-31: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1868:24-34: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1979:24-34: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1989:14-30: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:1990:14-30: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2105:24-34: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2183:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2221:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2221:49-72: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2232:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2232:49-72: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2238:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2261:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2261:41-51: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2262:13-29: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2267:39-50: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2280:30-43: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2281:33-46: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2281:48-62: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2404:21-31: Cannot index into `int` [bad-index] +ERROR torch/_meta_registrations.py:2406:21-32: Cannot index into `int` [bad-index] +ERROR torch/_meta_registrations.py:2409:21-30: Cannot index into `int` [bad-index] +ERROR torch/_meta_registrations.py:2416:35-45: Cannot index into `int` [bad-index] +ERROR torch/_meta_registrations.py:2416:47-58: Cannot index into `int` [bad-index] +ERROR torch/_meta_registrations.py:2416:76-85: Cannot index into `int` [bad-index] +ERROR torch/_meta_registrations.py:2431:12-31: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_meta_registrations.py:2431:62-81: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2455:20-39: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2456:53-76: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2457:20-43: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2458:16-39: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2504:4-24: No attribute `_has_mkldnn` in module `torch._C` [missing-attribute] +ERROR torch/_meta_registrations.py:2526:29-48: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2528:33-55: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2538:8-24: No attribute `has_mkl` in module `torch._C` [missing-attribute] +ERROR torch/_meta_registrations.py:2587:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2588:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2589:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2590:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2591:13-32: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2598:16-39: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2599:16-35: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2600:16-38: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2654:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2655:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2656:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2657:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2658:13-32: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2691:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2692:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2693:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2694:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2695:13-32: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2734:25-44: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2739:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2751:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2751:40-53: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2751:55-69: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2755:24-35: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2758:35-46: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2802:29-40: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2802:42-54: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2802:56-68: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2802:70-82: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2850:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:2968:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3000:29-40: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3000:42-54: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3000:56-68: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3000:70-82: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3156:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3190:21-44: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3192:25-44: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3200:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3251:52-63: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3257:52-63: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3322:48-59: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3357:53-63: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3371:12-31: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3374:15-25: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3388:33-43: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3388:45-54: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3388:56-66: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3388:68-78: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3391:32-42: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3391:44-54: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3624:17-33: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3641:20-30: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3645:20-30: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3655:54-65: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3662:20-31: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3674:15-26: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3682:20-31: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3689:15-26: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3698:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3698:36-49: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3698:51-65: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3702:20-31: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3713:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3713:36-49: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3713:51-65: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3717:20-31: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3728:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3728:36-49: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3728:51-65: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3732:20-31: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3856:26-37: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3860:62-73: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3865:39-53: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3871:65-76: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3873:56-67: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3886:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3897:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3897:36-49: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3897:51-65: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3902:20-30: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3957:16-32: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3960:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3960:47-70: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3980:27-37: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3980:39-48: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3984:27-37: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:3984:39-48: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4026:27-38: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4026:55-65: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4085:16-26: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4125:45-55: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4293:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4314:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4321:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4321:36-52: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4333:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4353:24-34: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4353:36-47: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4367:14-30: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4367:51-74: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4403:29-42: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4403:62-76: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4404:28-41: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4521:25-44: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4792:25-44: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4797:27-50: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4868:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4900:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4906:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4908:19-30: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4987:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4992:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:4994:19-30: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5082:67-89: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5089:27-49: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5096:48-59: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5099:36-58: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5100:44-66: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5190:67-89: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5197:27-49: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5203:50-72: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5217:25-38: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5217:58-71: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5284:22-38: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5284:60-83: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5287:17-33: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5287:54-77: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5325:22-38: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5330:17-33: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5341:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5354:18-34: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5360:15-26: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5402:17-40: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5406:18-31: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5407:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5424:17-40: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5428:18-31: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5429:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5486:28-38: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5486:57-66: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5526:28-38: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5526:57-66: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5658:17-33: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5659:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5661:15-26: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5672:22-33: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5678:22-33: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5687:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5687:38-48: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5688:18-29: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5688:40-50: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5690:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5690:39-51: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5691:18-29: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5691:40-52: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5712:15-31: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5719:15-26: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5747:18-29: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5749:15-26: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5754:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5754:34-44: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5755:14-25: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5755:36-46: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5790:18-29: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5792:15-26: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5797:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5797:34-44: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5798:14-25: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5798:36-46: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5835:14-30: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5836:14-30: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5837:14-30: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5859:17-33: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5860:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5866:15-26: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5894:14-34: No attribute `empty_permuted` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5900:14-34: No attribute `empty_permuted` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5906:14-34: No attribute `empty_permuted` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:5991:11-22: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6001:18-29: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6003:15-26: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6010:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6010:34-44: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6011:14-25: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6011:36-46: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6044:14-34: No attribute `empty_permuted` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6050:14-34: No attribute `empty_permuted` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6056:14-34: No attribute `empty_permuted` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6068:21-32: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6099:14-30: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6100:14-30: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6101:14-30: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6138:17-33: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6140:21-32: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6142:19-30: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6147:21-32: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6148:41-52: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6158:22-33: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6164:22-33: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6171:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6171:38-48: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6172:18-29: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6172:40-50: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6174:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6174:39-51: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6175:18-29: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6175:40-52: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6209:18-34: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6210:16-32: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6211:18-34: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6244:11-22: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6255:18-29: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6257:15-26: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6262:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6262:34-44: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6263:14-25: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6263:36-46: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6302:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6311:22-38: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6312:20-36: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6313:22-38: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6320:21-32: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6323:21-32: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6335:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6340:13-32: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6341:13-30: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6342:13-34: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6343:13-34: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6344:13-35: No attribute `float4_e2m1fn_x2` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6391:34-54: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6392:38-58: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6395:34-53: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6396:38-57: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6403:34-47: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6403:69-82: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6409:33-52: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6453:34-47: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6453:69-82: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6505:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6516:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6532:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6539:13-32: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6540:13-30: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6541:13-34: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6542:13-34: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6543:13-35: No attribute `float4_e2m1fn_x2` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6547:26-48: No attribute `float4_e2m1fn_x2` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6679:41-54: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6680:41-54: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6687:41-54: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6689:41-54: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6700:37-50: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6700:75-88: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6731:37-50: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6731:75-88: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6762:37-50: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6762:75-88: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6803:41-61: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6805:41-61: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6811:35-55: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6821:41-60: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6823:41-54: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6825:41-60: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6827:41-54: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6853:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6867:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6907:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6907:47-57: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6908:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6909:43-53: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:6976:25-48: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7043:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7043:36-52: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7043:65-76: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7110:17-33: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7110:61-84: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7111:10-26: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7111:45-68: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7112:10-26: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7112:45-68: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7159:14-25: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7167:52-63: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7201:14-25: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7205:14-25: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7208:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7208:59-70: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7242:40-51: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7250:18-30: No attribute `jagged` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7251:18-31: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7252:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7268:69-80: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7281:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7304:63-74: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7307:35-58: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7331:18-34: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7334:15-31: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7362:16-35: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_meta_registrations.py:7362:66-85: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7367:24-47: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7369:24-43: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7370:47-70: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7371:20-43: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7372:47-68: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7373:20-41: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7423:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7425:15-26: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7425:45-56: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7426:23-46: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7455:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7531:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7537:9-25: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7538:9-25: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7539:9-25: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7540:9-25: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7623:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7623:43-54: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7625:16-32: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7626:46-69: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7629:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7634:23-33: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7634:35-51: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7634:53-68: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7708:24-37: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7708:39-53: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7708:55-68: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7708:70-83: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7749:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7752:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7756:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7756:45-55: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7767:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7778:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7788:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7825:15-34: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7829:15-26: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7841:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7855:21-42: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7855:69-88: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7862:28-42: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7862:62-76: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7928:31-44: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7928:66-79: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7930:34-54: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7931:38-58: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7936:30-50: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:7937:34-54: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:8022:31-42: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:8037:43-57: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:8051:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:8074:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:8078:30-44: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:8097:27-37: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:8103:11-27: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:8103:65-88: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:8154:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_meta_registrations.py:8400:29-49: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_meta_registrations.py:8402:12-58: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:9:5-8: Could not import `add` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:10:5-12: Could not import `arctan2` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:11:5-16: Could not import `bitwise_and` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:12:5-37: Could not import `bitwise_left_shift` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:13:5-15: Could not import `bitwise_or` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:14:5-39: Could not import `bitwise_right_shift` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:15:5-16: Could not import `bitwise_xor` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:16:5-13: Could not import `copysign` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:17:5-11: Could not import `divide` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:18:5-16: Could not import `eq` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:19:5-16: Could not import `float_power` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:20:5-17: Could not import `floor_divide` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:21:5-9: Could not import `fmax` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:22:5-9: Could not import `fmin` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:23:5-9: Could not import `fmod` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:24:5-8: Could not import `gcd` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:25:5-12: Could not import `greater` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:26:5-18: Could not import `greater_equal` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:27:5-14: Could not import `heaviside` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:28:5-10: Could not import `hypot` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:29:5-8: Could not import `lcm` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:30:5-10: Could not import `ldexp` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:31:5-9: Could not import `less` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:32:5-15: Could not import `less_equal` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:33:5-14: Could not import `logaddexp` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:34:5-15: Could not import `logaddexp2` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:35:5-16: Could not import `logical_and` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:36:5-15: Could not import `logical_or` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:37:5-16: Could not import `logical_xor` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:38:5-12: Could not import `maximum` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:39:5-12: Could not import `minimum` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:40:5-13: Could not import `multiply` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:41:5-14: Could not import `nextafter` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:42:5-14: Could not import `not_equal` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:43:5-17: Could not import `pow` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:44:5-14: Could not import `remainder` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:45:5-21: Could not import `remainder` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:46:5-13: Could not import `subtract` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:47:5-16: Could not import `true_divide` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:60:24-34: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:61:27-40: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:61:55-68: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:67:22-33: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:69:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_binary_ufuncs_impl.py:74:14-26: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:11:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:12:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:13:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:14:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:15:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:16:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:17:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:18:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:19:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:20:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:21:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:22:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:23:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:24:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:25:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:27:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:28:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:29:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:30:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:31:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:32:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:33:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:34:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:35:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:36:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:37:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:38:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:39:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:40:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:41:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:43:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:44:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:45:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:46:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:47:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:48:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:49:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:50:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:51:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:52:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:53:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:54:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:55:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:56:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:57:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:59:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:60:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:61:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:62:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:63:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:64:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:65:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:66:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:67:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:68:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:69:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:70:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:71:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:72:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:73:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:75:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:76:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:77:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:78:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:79:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:80:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:81:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:82:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:83:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:84:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:85:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:86:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:87:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:88:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:89:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:91:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:92:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:93:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:94:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:95:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:96:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:97:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:98:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:99:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:100:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:101:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:102:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:103:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:104:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:105:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:107:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:108:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:109:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:110:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:111:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:112:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:113:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:114:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:115:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:116:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:117:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:118:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:119:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:120:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:121:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:123:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:124:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:125:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:126:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:127:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:128:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:129:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:130:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:131:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:132:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:133:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:134:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:135:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:136:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:137:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:139:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:140:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:141:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:142:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:143:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:144:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:145:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:146:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:147:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:148:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:149:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:150:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:151:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:152:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:153:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:155:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:156:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:157:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:158:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:159:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:160:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:161:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:162:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:163:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:164:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:165:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:166:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:167:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:168:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:169:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:171:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:172:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:173:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:174:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:175:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:176:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:177:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:178:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:179:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:180:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:181:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:182:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:183:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:184:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:185:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:187:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:188:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:189:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:190:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:191:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:192:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:193:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:194:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:195:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:196:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:197:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:198:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:199:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:200:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:201:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:203:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:204:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:205:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:206:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:207:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:208:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:209:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:210:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:211:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:212:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:213:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:214:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:215:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:216:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:217:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:219:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:220:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:221:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:222:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:223:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:224:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:225:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:226:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:227:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:228:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:229:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:230:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:231:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:232:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:233:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:237:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:238:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:239:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:240:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:241:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:242:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:243:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:244:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:245:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:246:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:247:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:248:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:249:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:250:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:251:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:253:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:254:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:255:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:256:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:257:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:258:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:259:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:260:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:261:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:262:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:263:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:264:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:265:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:266:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:267:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:269:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:270:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:271:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:272:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:273:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:274:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:275:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:276:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:277:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:278:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:279:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:280:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:281:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:282:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:283:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:285:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:286:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:287:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:288:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:289:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:290:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:291:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:292:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:293:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:294:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:295:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:296:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:297:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:298:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:299:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:301:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:302:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:303:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:304:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:305:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:306:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:307:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:308:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:309:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:310:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:311:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:312:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:313:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:314:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:315:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:317:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:318:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:319:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:320:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:321:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:322:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:323:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:324:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:325:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:326:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:327:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:328:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:329:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:330:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:331:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:333:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:334:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:335:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:336:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:337:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:338:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:339:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:340:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:341:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:342:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:343:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:344:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:345:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:346:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:347:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:349:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:350:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:351:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:352:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:353:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:354:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:355:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:356:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:357:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:358:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:359:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:360:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:361:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:362:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:363:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:365:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:366:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:367:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:368:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:369:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:370:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:371:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:372:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:373:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:374:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:375:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:376:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:377:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:378:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:379:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:381:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:382:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:383:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:384:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:385:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:386:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:387:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:388:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:389:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:390:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:391:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:392:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:393:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:394:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:395:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:397:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:398:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:399:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:400:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:401:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:402:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:403:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:404:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:405:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:406:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:407:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:408:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:409:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:410:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:411:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:413:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:414:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:415:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:416:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:417:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:418:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:419:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:420:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:421:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:422:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:423:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:424:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:425:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:426:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:427:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:429:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:430:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:431:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:432:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:433:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:434:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:435:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:436:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:437:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:438:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:439:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:440:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:441:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:442:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:443:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:445:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:446:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:447:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:448:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:449:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:450:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:451:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:452:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:453:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:454:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:455:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:456:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:457:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:458:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:459:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:463:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:464:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:465:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:466:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:467:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:468:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:469:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:470:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:471:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:472:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:473:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:474:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:475:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:476:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:477:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:479:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:480:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:481:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:482:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:483:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:484:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:485:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:486:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:487:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:488:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:489:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:490:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:491:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:492:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:493:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:495:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:496:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:497:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:498:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:499:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:500:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:501:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:502:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:503:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:504:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:505:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:506:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:507:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:508:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:509:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:511:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:512:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:513:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:514:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:515:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:516:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:517:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:518:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:519:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:520:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:521:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:522:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:523:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:524:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:525:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:527:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:528:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:529:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:530:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:531:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:532:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:533:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:534:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:535:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:536:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:537:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:538:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:539:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:540:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:541:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:543:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:544:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:545:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:546:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:547:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:548:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:549:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:550:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:551:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:552:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:553:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:554:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:555:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:556:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:557:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:559:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:560:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:561:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:562:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:563:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:564:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:565:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:566:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:567:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:568:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:569:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:570:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:571:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:572:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:573:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:575:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:576:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:577:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:578:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:579:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:580:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:581:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:582:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:583:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:584:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:585:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:586:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:587:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:588:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:589:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:591:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:592:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:593:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:594:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:595:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:596:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:597:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:598:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:599:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:600:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:601:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:602:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:603:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:604:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:605:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:607:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:608:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:609:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:610:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:611:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:612:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:613:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:614:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:615:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:616:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:617:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:618:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:619:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:620:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:621:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:623:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:624:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:625:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:626:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:627:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:628:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:629:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:630:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:631:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:632:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:633:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:634:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:635:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:636:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:637:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:639:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:640:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:641:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:642:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:643:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:644:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:645:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:646:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:647:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:648:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:649:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:650:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:651:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:652:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:653:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:655:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:656:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:657:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:658:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:659:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:660:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:661:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:662:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:663:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:664:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:665:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:666:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:667:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:668:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:669:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:671:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:672:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:673:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:674:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:675:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:676:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:677:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:678:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:679:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:680:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:681:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:682:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:683:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:684:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:685:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:689:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:690:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:691:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:692:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:693:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:694:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:695:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:696:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:697:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:698:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:699:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:700:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:701:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:702:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:703:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:705:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:706:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:707:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:708:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:709:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:710:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:711:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:712:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:713:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:714:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:715:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:716:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:717:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:718:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:719:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:721:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:722:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:723:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:724:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:725:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:726:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:727:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:728:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:729:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:730:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:731:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:732:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:733:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:734:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:735:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:737:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:738:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:739:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:740:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:741:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:742:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:743:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:744:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:745:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:746:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:747:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:748:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:749:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:750:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:751:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:753:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:754:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:755:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:756:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:757:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:758:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:759:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:760:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:761:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:762:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:763:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:764:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:765:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:766:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:767:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:769:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:770:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:771:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:772:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:773:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:774:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:775:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:776:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:777:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:778:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:779:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:780:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:781:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:782:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:783:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:785:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:786:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:787:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:788:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:789:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:790:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:791:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:792:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:793:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:794:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:795:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:796:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:797:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:798:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:799:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:801:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:802:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:803:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:804:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:805:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:806:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:807:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:808:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:809:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:810:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:811:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:812:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:813:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:814:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:815:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:817:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:818:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:819:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:820:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:821:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:822:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:823:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:824:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:825:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:826:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:827:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:828:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:829:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:830:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:831:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:833:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:834:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:835:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:836:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:837:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:838:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:839:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:840:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:841:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:842:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:843:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:844:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:845:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:846:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:847:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:849:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:850:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:851:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:852:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:853:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:854:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:855:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:856:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:857:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:858:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:859:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:860:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:861:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:862:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:863:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:865:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:866:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:867:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:868:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:869:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:870:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:871:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:872:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:873:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:874:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:875:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:876:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:877:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:878:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:879:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:881:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:882:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:883:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:884:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:885:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:886:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:887:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:888:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:889:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:890:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:891:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:892:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:893:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:894:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:895:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:897:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:898:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:899:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:900:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:901:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:902:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:903:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:904:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:905:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:906:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:907:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:908:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:909:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:910:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:911:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:915:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:916:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:917:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:918:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:919:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:920:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:921:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:922:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:923:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:924:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:925:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:926:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:927:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:928:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:929:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:931:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:932:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:933:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:934:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:935:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:936:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:937:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:938:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:939:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:940:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:941:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:942:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:943:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:944:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:945:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:947:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:948:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:949:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:950:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:951:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:952:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:953:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:954:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:955:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:956:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:957:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:958:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:959:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:960:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:961:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:963:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:964:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:965:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:966:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:967:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:968:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:969:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:970:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:971:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:972:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:973:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:974:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:975:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:976:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:977:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:979:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:980:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:981:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:982:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:983:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:984:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:985:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:986:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:987:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:988:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:989:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:990:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:991:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:992:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:993:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:995:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:996:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:997:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:998:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:999:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1000:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1001:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1002:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1003:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1004:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1005:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1006:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1007:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1008:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1009:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1011:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1012:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1013:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1014:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1015:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1016:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1017:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1018:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1019:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1020:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1021:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1022:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1023:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1024:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1025:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1027:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1028:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1029:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1030:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1031:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1032:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1033:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1034:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1035:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1036:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1037:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1038:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1039:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1040:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1041:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1043:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1044:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1045:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1046:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1047:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1048:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1049:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1050:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1051:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1052:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1053:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1054:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1055:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1056:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1057:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1059:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1060:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1061:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1062:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1063:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1064:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1065:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1066:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1067:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1068:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1069:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1070:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1071:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1072:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1073:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1075:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1076:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1077:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1078:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1079:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1080:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1081:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1082:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1083:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1084:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1085:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1086:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1087:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1088:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1089:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1091:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1092:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1093:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1094:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1095:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1096:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1097:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1098:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1099:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1100:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1101:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1102:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1103:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1104:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1105:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1107:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1108:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1109:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1110:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1111:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1112:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1113:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1114:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1115:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1116:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1117:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1118:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1119:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1120:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1121:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1123:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1124:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1125:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1126:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1127:13-28: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1128:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1129:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1130:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1131:13-25: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1132:13-25: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1133:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1134:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1135:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1136:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1137:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1144:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1145:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1145:24-37: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1146:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1146:24-37: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1147:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1147:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1148:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1148:26-41: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1149:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1149:27-43: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1150:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1150:22-35: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1151:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1151:23-36: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1152:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1152:23-36: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1153:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1153:23-36: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1154:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1154:21-34: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1155:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1155:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1156:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1156:22-35: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1157:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1157:22-35: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1158:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1158:21-34: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1160:5-18: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1161:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1161:24-37: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1162:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1162:24-37: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1163:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1163:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1164:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1164:26-41: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1165:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1165:27-43: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1166:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1166:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1167:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1167:23-36: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1168:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1168:23-36: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1169:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1169:23-36: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1170:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1170:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1171:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1171:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1172:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1172:22-35: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1173:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1173:22-35: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1174:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1174:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1176:5-18: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1177:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1177:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1178:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1178:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1179:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1179:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1180:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1180:26-42: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1181:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1181:27-43: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1182:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1182:22-35: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1183:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1183:23-36: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1184:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1184:23-36: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1185:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1185:23-36: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1186:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1186:21-34: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1187:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1187:22-35: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1188:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1188:22-35: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1189:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1189:22-35: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1190:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1190:21-34: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1192:5-20: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1193:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1193:24-39: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1194:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1194:24-39: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1195:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1195:24-40: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1196:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1196:26-41: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1197:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1197:27-43: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1198:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1198:22-37: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1199:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1199:23-38: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1200:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1200:23-39: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1201:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1201:23-39: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1202:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1202:21-36: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1203:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1203:22-37: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1204:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1204:22-38: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1205:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1205:22-38: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1206:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1206:21-36: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1208:5-21: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1209:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1209:24-40: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1210:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1210:24-40: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1211:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1211:24-40: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1212:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1212:26-42: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1213:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1213:27-43: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1214:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1214:22-38: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1215:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1215:23-39: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1216:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1216:23-39: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1217:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1217:23-39: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1218:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1218:21-37: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1219:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1219:22-38: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1220:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1220:22-38: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1221:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1221:22-38: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1222:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1222:21-37: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1224:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1225:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1225:24-37: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1226:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1226:24-37: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1227:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1227:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1228:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1228:26-41: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1229:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1229:27-43: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1230:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1230:22-33: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1231:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1231:23-35: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1232:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1232:23-35: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1233:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1233:23-35: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1234:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1234:21-32: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1235:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1235:22-33: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1236:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1236:22-33: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1237:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1237:22-33: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1238:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1238:21-32: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1240:5-17: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1241:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1241:24-37: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1242:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1242:24-37: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1243:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1243:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1244:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1244:26-41: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1245:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1245:27-43: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1246:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1246:22-34: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1247:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1247:23-35: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1248:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1248:23-35: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1249:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1249:23-35: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1250:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1250:21-32: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1251:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1251:22-33: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1252:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1252:22-33: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1253:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1253:22-33: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1254:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1254:21-33: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1256:5-17: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1257:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1257:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1258:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1258:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1259:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1259:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1260:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1260:26-42: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1261:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1261:27-43: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1262:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1262:22-34: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1263:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1263:23-35: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1264:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1264:23-35: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1265:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1265:23-35: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1266:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1266:21-32: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1267:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1267:22-33: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1268:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1268:22-33: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1269:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1269:22-33: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1270:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1270:21-33: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1272:5-17: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1273:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1273:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1274:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1274:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1275:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1275:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1276:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1276:26-42: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1277:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1277:27-43: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1278:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1278:22-34: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1279:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1279:23-35: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1280:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1280:23-35: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1281:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1281:23-35: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1282:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1282:21-34: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1283:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1283:22-35: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1284:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1284:22-35: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1285:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1285:22-35: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1286:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1286:21-33: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1288:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1289:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1289:24-37: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1290:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1290:24-37: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1291:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1291:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1292:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1292:26-41: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1293:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1293:27-43: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1294:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1294:22-33: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1295:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1295:23-34: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1296:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1296:23-34: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1297:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1297:23-36: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1298:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1298:21-31: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1299:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1299:22-33: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1300:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1300:22-33: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1301:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1301:22-33: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1302:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1302:21-31: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1304:5-16: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1305:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1305:24-37: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1306:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1306:24-37: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1307:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1307:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1308:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1308:26-41: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1309:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1309:27-43: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1310:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1310:22-33: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1311:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1311:23-34: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1312:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1312:23-34: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1313:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1313:23-36: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1314:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1314:21-32: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1315:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1315:22-33: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1316:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1316:22-33: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1317:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1317:22-33: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1318:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1318:21-32: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1320:5-16: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1321:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1321:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1322:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1322:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1323:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1323:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1324:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1324:26-42: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1325:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1325:27-43: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1326:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1326:22-33: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1327:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1327:23-34: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1328:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1328:23-34: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1329:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1329:23-36: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1330:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1330:21-32: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1331:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1331:22-33: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1332:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1332:22-33: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1333:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1333:22-33: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1334:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1334:21-32: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1336:5-16: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1337:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1337:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1338:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1338:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1339:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1339:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1340:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1340:26-42: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1341:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1341:27-43: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1342:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1342:22-33: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1343:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1343:23-34: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1344:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1344:23-34: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1345:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1345:23-36: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1346:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1346:21-32: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1347:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1347:22-33: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1348:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1348:22-33: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1349:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1349:22-33: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1350:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1350:21-32: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1352:5-15: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1353:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1353:24-37: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1354:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1354:24-37: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1355:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1355:24-37: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1356:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1356:26-41: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1357:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1357:27-43: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1358:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1358:22-33: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1359:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1359:23-35: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1360:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1360:23-35: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1361:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1361:23-35: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1362:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1362:21-31: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1363:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1363:22-33: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1364:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1364:22-33: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1365:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1365:22-33: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1366:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_casting_dicts.py:1366:21-31: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:87:19-29: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:93:19-30: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:99:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:105:19-30: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:114:19-30: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:120:19-31: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:126:19-31: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:132:19-31: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:141:19-32: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:147:19-32: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:153:19-32: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:159:19-34: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:165:19-35: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:171:19-29: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:278:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:397:23-36: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:399:23-36: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:404:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:404:24-40: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:405:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:405:24-39: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:406:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:406:24-39: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:410:21-32: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes.py:418:36-48: `DefaultDTypes` is not assignable to attribute `_default_dtypes` with type `None` [bad-assignment] +ERROR torch/_numpy/_dtypes_impl.py:35:56-67: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:36:58-69: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:37:54-65: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:43:17-27: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:78:18-28: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:123:15-25: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:124:24-34: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:125:14-25: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:126:23-34: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:127:16-29: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:128:25-38: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:129:18-34: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:147:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:150:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:151:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:152:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:153:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:154:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:157:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:158:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:159:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:162:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:163:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:174:16-31: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:197:52-65: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:198:14-29: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_dtypes_impl.py:209:17-28: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:40:12-19: Object of class `object` has no attribute `clone` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:46:39-50: Default `Literal['same_kind']` is not assignable to parameter `casting` with type `CastingModes | None` [bad-function-definition] +ERROR torch/_numpy/_funcs_impl.py:49:45-54: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:50:5-14: Object of class `object` has no attribute `copy_` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:95:21-30: Object of class `NoneType` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:106:78-89: Default `Literal['same_kind']` is not assignable to parameter `casting` with type `CastingModes | None` [bad-function-definition] +ERROR torch/_numpy/_funcs_impl.py:111:12-21: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:119:39-50: Default `Literal['same_kind']` is not assignable to parameter `casting` with type `CastingModes | None` [bad-function-definition] +ERROR torch/_numpy/_funcs_impl.py:130:39-50: Default `Literal['same_kind']` is not assignable to parameter `casting` with type `CastingModes | None` [bad-function-definition] +ERROR torch/_numpy/_funcs_impl.py:134:12-24: No attribute `vstack` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:144:39-50: Default `Literal['same_kind']` is not assignable to parameter `casting` with type `CastingModes | None` [bad-function-definition] +ERROR torch/_numpy/_funcs_impl.py:148:12-24: No attribute `hstack` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:155:39-50: Default `Literal['same_kind']` is not assignable to parameter `casting` with type `CastingModes | None` [bad-function-definition] +ERROR torch/_numpy/_funcs_impl.py:161:12-24: No attribute `dstack` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:168:39-50: Default `Literal['same_kind']` is not assignable to parameter `casting` with type `CastingModes | None` [bad-function-definition] +ERROR torch/_numpy/_funcs_impl.py:175:12-30: No attribute `column_stack` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:184:39-50: Default `Literal['same_kind']` is not assignable to parameter `casting` with type `CastingModes | None` [bad-function-definition] +ERROR torch/_numpy/_funcs_impl.py:191:12-23: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:196:12-20: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:197:19-30: Object of class `object` has no attribute `flatten` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:198:18-32: Object of class `object` has no attribute `flatten` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:199:16-24: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:269:8-16: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:271:17-29: `>` is not supported between `object` and `Literal[1]` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:276:8-16: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:282:8-16: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:288:12-22: No attribute `kron` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:292:12-24: No attribute `vander` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:312:12-26: No attribute `linspace` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:325:12-21: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:325:22-34: `/` is not supported between `ArrayLike` and `ArrayLike` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:326:15-24: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:327:12-26: No attribute `logspace` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:328:9-18: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:329:9-18: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:346:12-26: No attribute `logspace` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:375:18-31: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:375:35-51: Object of class `object` has no attribute `is_complex` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:381:9-17: `>` is not supported between `complex` and `Literal[0]` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:9-17: `>` is not supported between `None` and `Literal[0]` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:22-34: `>` is not supported between `bool` and `complex` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:22-34: `>` is not supported between `bool` and `None` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:22-34: `>` is not supported between `complex` and `bool` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:22-34: `>` is not supported between `complex` and `complex` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:22-34: `>` is not supported between `complex` and `float` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:22-34: `>` is not supported between `complex` and `int` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:22-34: `>` is not supported between `complex` and `None` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:22-34: `>` is not supported between `float` and `complex` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:22-34: `>` is not supported between `float` and `None` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:22-34: `>` is not supported between `int` and `complex` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:22-34: `>` is not supported between `int` and `None` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:40-48: `<` is not supported between `complex` and `Literal[0]` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:40-48: `<` is not supported between `None` and `Literal[0]` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:53-65: `<` is not supported between `bool` and `complex` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:53-65: `<` is not supported between `bool` and `None` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:53-65: `<` is not supported between `complex` and `bool` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:53-65: `<` is not supported between `complex` and `complex` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:53-65: `<` is not supported between `complex` and `float` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:53-65: `<` is not supported between `complex` and `int` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:53-65: `<` is not supported between `complex` and `None` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:53-65: `<` is not supported between `float` and `complex` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:53-65: `<` is not supported between `float` and `None` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:53-65: `<` is not supported between `int` and `complex` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:381:53-65: `<` is not supported between `int` and `None` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:383:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:385:14-26: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:402:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:416:14-30: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:433:17-33: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:436:12-22: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:448:14-29: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:463:12-22: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:473:14-29: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:488:12-23: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:498:14-30: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:546:35-48: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:549:17-30: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:552:14-28: No attribute `corrcoef` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:555:28-41: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:576:27-40: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:579:17-30: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:582:14-23: No attribute `cov` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:585:28-41: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:615:8-15: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:615:21-28: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:619:9-19: No attribute `flip` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:625:9-28: No attribute `conj_physical` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:633:8-15: Object of class `object` has no attribute `numel` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:635:13-24: Object of class `object` has no attribute `new_empty` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:640:12-26: No attribute `bincount` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:652:8-23: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:652:27-37: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:653:21-33: Object of class `object` has no attribute `to` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:653:34-44: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:656:18-29: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:658:18-29: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:666:12-18: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:670:18-25: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:675:16-23: Object of class `object` has no attribute `numel` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:677:16-23: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:684:32-39: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:685:12-18: Object of class `object` has no attribute `view` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:691:28-34: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:693:49-55: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:694:12-22: No attribute `flip` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:698:12-24: No attribute `flipud` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:702:12-24: No attribute `fliplr` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:706:45-51: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:707:12-23: No attribute `rot90` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:714:12-30: No attribute `broadcast_to` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:732:15-24: Object of class `object` has no attribute `reshape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:749:54-57: Default `type[int]` is not assignable to parameter `dtype` with type `DTypeLike | None` [bad-function-definition] +ERROR torch/_numpy/_funcs_impl.py:757:15-26: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:759:15-27: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:765:13-19: Cannot set item in `tuple[()]` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:773:12-22: No attribute `tril` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:777:12-22: No attribute `triu` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:783:12-30: No attribute `tril_indices` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:789:12-30: No attribute `triu_indices` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:793:8-16: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:796:12-30: No attribute `tril_indices` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:796:31-40: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:796:45-54: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:800:8-16: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:803:12-30: No attribute `triu_indices` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:803:31-40: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:803:45-54: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:816:14-24: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:817:12-22: No attribute `tril` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:827:12-25: No attribute `isclose` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:834:12-26: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:843:24-35: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:843:42-53: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:865:8-20: Object of class `object` has no attribute `is_complex` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:866:14-30: No attribute `nan_to_num` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:866:31-37: Object of class `object` has no attribute `real` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:867:14-30: No attribute `nan_to_num` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:867:31-37: Object of class `object` has no attribute `imag` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:870:16-32: No attribute `nan_to_num` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:893:12-32: No attribute `take_along_dim` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:902:9-20: Object of class `object` has no attribute `type` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:902:21-28: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:905:8-21: Object of class `object` has no attribute `numel` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:906:18-31: Object of class `object` has no attribute `numel` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:910:8-21: Object of class `object` has no attribute `numel` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:913:5-11: Object of class `object` has no attribute `put_` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:923:14-27: No attribute `scatter` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:935:15-26: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:940:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:971:12-25: No attribute `nonzero` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:975:12-26: No attribute `argwhere` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:979:12-25: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:988:12-23: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:992:12-35: No attribute `repeat_interleave` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:998:12-22: No attribute `tile` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1010:9-18: Object of class `object` has no attribute `flatten` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1020:16-27: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1032:47-53: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1033:47-53: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1034:12-26: No attribute `diagonal` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1045:14-28: No attribute `diagonal` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1062:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1068:12-21: No attribute `eye` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1072:12-22: No attribute `diag` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1076:12-26: No attribute `diagflat` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1080:11-23: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1085:12-20: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1089:9-18: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1092:31-39: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1096:8-14: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1098:8-17: Object of class `object` has no attribute `numel` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1099:9-25: Object of class `object` has no attribute `fill_diagonal_` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1102:8-16: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1103:15-28: Object of class `object` has no attribute `unsqueeze` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1107:8-14: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1108:16-23: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1108:29-36: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1112:20-30: Object of class `object` has no attribute `diagonal` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1113:24-43: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1116:26-33: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1117:19-31: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1120:13-45: Cannot set item in `ArrayLike` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1120:48-66: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1124:9-15: Cannot set item in `ArrayLike` [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1124:18-35: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1139:24-37: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1140:24-34: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1144:17-30: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1146:17-28: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1151:14-24: No attribute `vdot` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1154:28-41: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1156:28-38: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1174:24-34: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1176:17-28: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1184:18-30: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1187:28-38: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1194:24-37: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1194:43-51: Object of class `object` has no attribute `is_cpu` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1194:55-63: Object of class `object` has no attribute `is_cpu` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1195:24-34: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1199:17-30: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1201:17-28: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1206:14-25: No attribute `inner` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1209:28-41: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1211:28-38: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1216:12-23: No attribute `outer` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1226:47-53: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1227:47-53: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1230:9-23: No attribute `moveaxis` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1231:9-23: No attribute `moveaxis` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1243:10-21: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1273:13-16: `cp0` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1273:29-31: `b2` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1274:13-16: `cp1` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1274:30-32: `b2` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1275:13-16: `cp2` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1279:13-16: `cp0` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1279:29-31: `b2` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1279:34-36: `a2` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1280:13-16: `cp1` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1280:24-26: `a2` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1280:39-41: `b2` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1281:13-16: `cp2` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1284:13-16: `cp0` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1284:25-27: `a2` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1285:13-16: `cp1` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1285:24-26: `a2` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1286:13-16: `cp2` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1288:12-26: No attribute `moveaxis` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1330:31-44: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1332:24-37: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1334:37-48: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1334:50-60: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1334:62-73: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1334:75-86: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1336:24-35: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1356:50-58: `Literal['auto', False] | Unknown` is not assignable to attribute `strategy` with type `Literal['auto'] | None` [bad-assignment] +ERROR torch/_numpy/_funcs_impl.py:1366:33-43: `sublistout` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1370:35-45: `subscripts` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1374:50-62: `old_strategy` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1375:49-60: `old_enabled` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:1398:14-24: No attribute `sort` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1404:12-25: No attribute `argsort` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1410:8-15: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1411:62-69: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1413:12-30: No attribute `searchsorted` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1420:49-55: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1421:59-65: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1422:12-26: No attribute `moveaxis` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1426:47-53: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1427:47-53: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1428:12-26: No attribute `swapaxes` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1438:9-15: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1455:12-18: Object of class `object` has no attribute `view` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1460:49-55: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1463:12-22: No attribute `roll` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1473:18-27: Object of class `object` has no attribute `squeeze` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1478:26-35: Object of class `object` has no attribute `squeeze` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1480:22-31: Object of class `object` has no attribute `squeeze` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1487:12-21: Object of class `object` has no attribute `reshape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1499:37-43: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1500:14-18: Argument `Unknown | None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR torch/_numpy/_funcs_impl.py:1501:16-23: `None` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1502:12-21: Object of class `object` has no attribute `permute` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1506:12-25: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1516:45-51: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1526:22-29: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1527:23-36: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1527:46-58: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1528:19-37: No attribute `broadcast_to` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1531:22-29: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1532:23-35: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1532:45-56: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1533:18-36: No attribute `broadcast_to` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1535:12-22: No attribute `diff` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1542:14-25: No attribute `angle` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1549:12-22: No attribute `sinc` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1554:9-15: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1575:25-40: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1580:34-41: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1588:21-31: No attribute `diff` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1591:16-39: Object of class `bool` has no attribute `all` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1611:13-20: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1616:13-21: Object of class `object` has no attribute `double` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1617:17-30: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1620:12-19: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1626:15-31: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1629:60-70: Object of class `float` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1638:35-51: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1638:54-70: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1640:19-30: Cannot index into `float` [bad-index] +ERROR torch/_numpy/_funcs_impl.py:1641:19-28: Cannot index into `float` [bad-index] +ERROR torch/_numpy/_funcs_impl.py:1653:21-37: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1653:44-60: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1653:67-83: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1661:50-58: Cannot index into `float` [bad-index] +ERROR torch/_numpy/_funcs_impl.py:1663:35-51: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1663:54-70: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1668:50-59: Cannot index into `float` [bad-index] +ERROR torch/_numpy/_funcs_impl.py:1670:35-51: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1670:54-70: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1683:23-31: Cannot index into `float` [bad-index] +ERROR torch/_numpy/_funcs_impl.py:1684:23-31: Cannot index into `float` [bad-index] +ERROR torch/_numpy/_funcs_impl.py:1690:21-37: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1690:44-60: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1690:67-83: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1702:23-32: Cannot index into `float` [bad-index] +ERROR torch/_numpy/_funcs_impl.py:1703:23-32: Cannot index into `float` [bad-index] +ERROR torch/_numpy/_funcs_impl.py:1709:21-37: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1709:44-60: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1709:67-83: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/_funcs_impl.py:1730:8-27: Object of class `object` has no attribute `is_floating_point` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1731:18-29: No attribute `round` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1732:10-22: Object of class `object` has no attribute `is_complex` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1734:18-31: No attribute `complex` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1735:13-24: No attribute `round` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1735:25-31: Object of class `object` has no attribute `real` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1736:13-24: No attribute `round` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1736:25-31: Object of class `object` has no attribute `imag` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1749:12-28: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1755:21-32: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1755:33-40: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1757:12-21: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1757:22-28: Object of class `object` has no attribute `imag` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1758:12-18: Object of class `object` has no attribute `real` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1758:22-30: Object of class `bool` has no attribute `all` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1762:12-22: No attribute `real` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1766:8-20: Object of class `object` has no attribute `is_complex` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1767:16-22: Object of class `object` has no attribute `imag` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1768:12-28: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1772:8-24: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1773:16-22: Object of class `object` has no attribute `imag` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1774:12-28: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1774:38-48: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1778:8-24: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1779:16-22: Object of class `object` has no attribute `imag` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1780:12-27: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1780:37-47: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1784:12-28: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1788:16-32: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1792:12-26: No attribute `isneginf` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1796:12-26: No attribute `isposinf` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1819:12-32: No attribute `hamming_window` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1824:12-29: No attribute `hann_window` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1829:12-31: No attribute `kaiser_window` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1834:12-33: No attribute `blackman_window` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1839:12-33: No attribute `bartlett_window` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1848:6-19: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1848:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1848:36-49: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1849:12-27: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1849:29-45: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1852:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1853:5-18: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1854:5-18: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1855:5-20: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1856:5-21: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1864:13-20: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1885:23-25: Default `Literal[10]` is not assignable to parameter `bins` with type `ArrayLike` [bad-function-definition] +ERROR torch/_numpy/_funcs_impl.py:1894:32-45: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1897:21-28: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1897:50-57: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1898:39-52: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1900:13-21: Object of class `object` has no attribute `double` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1903:49-56: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1906:12-21: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1908:20-40: `int` is not assignable to variable `bins` with type `ArrayLike` [bad-assignment] +ERROR torch/_numpy/_funcs_impl.py:1908:35-39: Argument `ArrayLike` is not assignable to parameter `a` with type `SupportsIndex` in function `_operator.index` [bad-argument-type] +ERROR torch/_numpy/_funcs_impl.py:1910:47-54: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1913:16-31: No attribute `histogram` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1915:16-31: No attribute `histogram` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1941:17-21: Argument `int | Unknown` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type] +ERROR torch/_numpy/_funcs_impl.py:1988:17-30: Object of class `object` has no attribute `flatten` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1993:17-26: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:1994:17-38: `tuple[@_, ...]` is not assignable to variable `range` with type `ArrayLike | None` [bad-assignment] +ERROR torch/_numpy/_funcs_impl.py:2000:12-29: No attribute `histogramdd` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2003:68-79: `bins_dtypes` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:2016:8-15: Object of class `object` has no attribute `numel` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2018:22-29: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2020:8-15: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2020:19-29: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2021:17-27: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2023:10-28: Object of class `object` has no attribute `is_complex` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2024:14-25: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2024:26-39: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2025:37-52: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2026:23-29: Object of class `object` has no attribute `real` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2026:54-60: Object of class `object` has no attribute `imag` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2028:17-32: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2028:56-72: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2030:10-35: Object of class `object` has no attribute `is_floating_point` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2031:20-33: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2031:35-48: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2031:50-63: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2032:18-29: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2038:20-31: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2038:33-43: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2038:45-56: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2038:58-69: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2038:71-82: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2040:18-29: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2045:18-23: `dtype` may be uninitialized [unbound-name] +ERROR torch/_numpy/_funcs_impl.py:2053:46-57: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2056:17-35: No attribute `broadcast_to` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2056:48-58: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2057:17-27: No attribute `flip` in module `torch` [missing-attribute] +ERROR torch/_numpy/_funcs_impl.py:2059:43-59: Argument `tuple[@_, ...]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/_numpy/_getlimits.py:10:12-23: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_numpy/_getlimits.py:15:12-23: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:165:28-38: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:165:40-51: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:165:53-64: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:165:66-77: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:166:29-40: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:176:61-71: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:202:21-44: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:203:30-40: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:218:51-61: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:323:26-43: No attribute `conjugate` in module `torch._numpy._ufuncs` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:324:31-48: No attribute `conjugate` in module `torch._numpy._ufuncs` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:349:9-13: `ivar` may be uninitialized [unbound-name] +ERROR torch/_numpy/_ndarray.py:349:15-19: `rvar` may be uninitialized [unbound-name] +ERROR torch/_numpy/_ndarray.py:349:27-32: `plain` may be uninitialized [unbound-name] +ERROR torch/_numpy/_ndarray.py:349:34-36: `fn` may be uninitialized [unbound-name] +ERROR torch/_numpy/_ndarray.py:402:16-27: No attribute `real` in module `torch._numpy._funcs` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:410:16-27: No attribute `imag` in module `torch._numpy._funcs` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:434:16-26: Object of class `object` has no attribute `clone` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:438:16-29: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:468:26-50: Class `_Unspecified` has no class attribute `unspecified` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:468:57-81: Class `_Unspecified` has no class attribute `unspecified` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:469:21-45: Class `_Unspecified` has no class attribute `unspecified` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:471:24-48: Class `_Unspecified` has no class attribute `unspecified` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:500:20-33: No attribute `equal` in module `torch._numpy._ufuncs` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:503:21-31: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:545:16-32: No attribute `transpose` in module `torch._numpy._funcs` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:549:16-30: No attribute `reshape` in module `torch._numpy._funcs` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:553:9-22: No attribute `copyto` in module `torch._numpy._funcs` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:553:29-40: No attribute `sort` in module `torch._numpy._funcs` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:563:20-30: Object of class `ndarray` has no attribute `ravel` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:575:22-32: No attribute `flip` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:586:32-77: Cannot instantiate `Sequence` because the following members are abstract: `__len__` [bad-instantiation] +ERROR torch/_numpy/_ndarray.py:586:33-76: Expected 0 positional arguments, got 1 in function `object.__init__` [bad-argument-count] +ERROR torch/_numpy/_ndarray.py:611:12-23: No attribute `take` in module `torch._numpy._funcs` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:612:11-21: No attribute `put` in module `torch._numpy._funcs` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:659:19-30: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ndarray.py:716:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_numpy/_normalizations.py:41:24-42: Could not import `NotImplementedType` from `typing` [missing-module-attribute] +ERROR torch/_numpy/_normalizations.py:106:29-38: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR torch/_numpy/_normalizations.py:122:29-38: Object of class `NoneType` has no attribute `name` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:68:50-54: Default `None` is not assignable to parameter `axis` with type `AxisLike` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:68:80-85: Default `Literal[False]` is not assignable to parameter `keepdims` with type `KeepDims` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:69:12-27: Object of class `object` has no attribute `count_nonzero` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:75:22-26: Default `None` is not assignable to parameter `axis` with type `AxisLike` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:78:26-31: Default `Literal[False]` is not assignable to parameter `keepdims` with type `KeepDims` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:80:8-20: Object of class `object` has no attribute `is_complex` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:81:56-63: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:85:8-15: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:85:19-29: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:87:13-17: Object of class `object` has no attribute `to` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:87:18-29: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:89:12-24: No attribute `argmax` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:95:22-26: Default `None` is not assignable to parameter `axis` with type `AxisLike` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:98:26-31: Default `Literal[False]` is not assignable to parameter `keepdims` with type `KeepDims` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:100:8-20: Object of class `object` has no attribute `is_complex` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:101:56-63: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:105:8-15: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:105:19-29: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:107:13-17: Object of class `object` has no attribute `to` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:107:18-29: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:109:12-24: No attribute `argmin` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:115:22-26: Default `None` is not assignable to parameter `axis` with type `AxisLike` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:117:26-31: Default `Literal[False]` is not assignable to parameter `keepdims` with type `KeepDims` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:123:12-21: No attribute `any` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:129:22-26: Default `None` is not assignable to parameter `axis` with type `AxisLike` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:131:26-31: Default `Literal[False]` is not assignable to parameter `keepdims` with type `KeepDims` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:137:12-21: No attribute `all` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:143:22-26: Default `None` is not assignable to parameter `axis` with type `AxisLike` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:145:26-31: Default `Literal[False]` is not assignable to parameter `keepdims` with type `KeepDims` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:149:8-20: Object of class `object` has no attribute `is_complex` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:150:54-61: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:152:12-18: Object of class `object` has no attribute `amax` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:161:22-26: Default `None` is not assignable to parameter `axis` with type `AxisLike` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:163:26-31: Default `Literal[False]` is not assignable to parameter `keepdims` with type `KeepDims` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:167:8-20: Object of class `object` has no attribute `is_complex` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:168:54-61: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:170:12-18: Object of class `object` has no attribute `amin` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:179:22-26: Default `None` is not assignable to parameter `axis` with type `AxisLike` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:181:26-31: Default `Literal[False]` is not assignable to parameter `keepdims` with type `KeepDims` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:183:12-18: Object of class `object` has no attribute `amax` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:183:27-33: Object of class `object` has no attribute `amin` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:189:22-26: Default `None` is not assignable to parameter `axis` with type `AxisLike` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:192:26-31: Default `Literal[False]` is not assignable to parameter `keepdims` with type `KeepDims` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:196:47-58: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:198:17-27: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:202:12-17: Object of class `object` has no attribute `sum` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:208:22-26: Default `None` is not assignable to parameter `axis` with type `AxisLike` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:211:26-31: Default `Literal[False]` is not assignable to parameter `keepdims` with type `KeepDims` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:217:17-27: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:221:12-18: Object of class `object` has no attribute `prod` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:230:22-26: Default `None` is not assignable to parameter `axis` with type `AxisLike` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:233:26-31: Default `Literal[False]` is not assignable to parameter `keepdims` with type `KeepDims` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:237:35-42: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:240:14-20: Object of class `object` has no attribute `mean` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:248:22-26: Default `None` is not assignable to parameter `axis` with type `AxisLike` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:252:26-31: Default `Literal[False]` is not assignable to parameter `keepdims` with type `KeepDims` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:257:35-42: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:266:22-26: Default `None` is not assignable to parameter `axis` with type `AxisLike` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:270:26-31: Default `Literal[False]` is not assignable to parameter `keepdims` with type `KeepDims` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:275:35-42: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:288:22-26: Default `None` is not assignable to parameter `axis` with type `AxisLike` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:292:17-27: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:295:17-24: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:305:22-26: Default `None` is not assignable to parameter `axis` with type `AxisLike` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:309:17-27: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:312:17-24: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:326:26-30: Default `None` is not assignable to parameter `weights` with type `ArrayLike` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:333:16-31: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:333:32-39: Object of class `object` has no attribute `numel` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:335:16-23: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:336:17-25: Object of class `object` has no attribute `double` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:339:12-19: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:339:23-36: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:344:16-28: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:348:16-29: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:348:36-49: Cannot index into `object` [bad-index] +ERROR torch/_numpy/_reductions_impl.py:354:23-41: No attribute `broadcast_to` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:354:52-58: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:354:73-86: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:359:24-63: No matching overload found for function `sum` called with arguments: (Unknown, Unknown | None, dtype=Unknown) [no-matching-overload] +ERROR torch/_numpy/_reductions_impl.py:359:25-36: `*` is not supported between `ArrayLike` and `ArrayLike` [unsupported-operation] +ERROR torch/_numpy/_reductions_impl.py:360:19-54: No matching overload found for function `sum` called with arguments: (ArrayLike | Unknown, Unknown | None, dtype=Unknown) [no-matching-overload] +ERROR torch/_numpy/_reductions_impl.py:365:53-59: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:369:20-38: No attribute `broadcast_to` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:379:22-26: Default `None` is not assignable to parameter `axis` with type `AxisLike` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:383:26-31: Default `Literal[False]` is not assignable to parameter `keepdims` with type `KeepDims` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:394:12-19: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:396:13-17: Object of class `object` has no attribute `to` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:399:8-15: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:399:19-32: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:400:13-17: Object of class `object` has no attribute `to` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:400:18-31: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:403:13-22: Object of class `object` has no attribute `flatten` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:404:13-22: Object of class `object` has no attribute `flatten` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:405:16-20: `tuple[Literal[0]]` is not assignable to variable `axis` with type `AxisLike` [bad-assignment] +ERROR torch/_numpy/_reductions_impl.py:407:49-55: Object of class `object` has no attribute `ndim` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:414:33-40: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:416:12-26: No attribute `quantile` in module `torch` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:422:22-26: Default `None` is not assignable to parameter `axis` with type `AxisLike` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:426:26-31: Default `Literal[False]` is not assignable to parameter `keepdims` with type `KeepDims` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:431:43-50: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:432:13-17: Object of class `object` has no attribute `to` [missing-attribute] +ERROR torch/_numpy/_reductions_impl.py:433:10-19: `/` is not supported between `ArrayLike` and `float` [unsupported-operation] +ERROR torch/_numpy/_reductions_impl.py:437:9-11: Argument `float | Unknown` is not assignable to parameter `q` with type `ArrayLike` in function `quantile` [bad-argument-type] +ERROR torch/_numpy/_reductions_impl.py:451:26-31: Default `Literal[False]` is not assignable to parameter `keepdims` with type `KeepDims` [bad-function-definition] +ERROR torch/_numpy/_reductions_impl.py:455:9-24: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ufuncs.py:24:18-36: No attribute `broadcast_to` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ufuncs.py:82:43-54: Default `Literal['same_kind']` is not assignable to parameter `casting` with type `CastingModes | None` [bad-function-definition] +ERROR torch/_numpy/_ufuncs.py:95:28-43: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ufuncs.py:128:39-50: Default `Literal['same_kind']` is not assignable to parameter `casting` with type `CastingModes | None` [bad-function-definition] +ERROR torch/_numpy/_ufuncs.py:156:39-50: Default `Literal['same_kind']` is not assignable to parameter `casting` with type `CastingModes | None` [bad-function-definition] +ERROR torch/_numpy/_ufuncs.py:167:18-33: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ufuncs.py:170:18-33: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ufuncs.py:173:10-25: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ufuncs.py:180:20-33: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ufuncs.py:182:28-41: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_numpy/_ufuncs.py:198:39-50: Default `Literal['same_kind']` is not assignable to parameter `casting` with type `CastingModes | None` [bad-function-definition] +ERROR torch/_numpy/_ufuncs.py:303:43-54: Default `Literal['same_kind']` is not assignable to parameter `casting` with type `CastingModes | None` [bad-function-definition] +ERROR torch/_numpy/_unary_ufuncs_impl.py:9:5-21: Could not import `absolute` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:10:5-11: Could not import `arccos` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:11:5-12: Could not import `arccosh` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:12:5-11: Could not import `arcsin` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:13:5-12: Could not import `arcsinh` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:14:5-11: Could not import `arctan` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:15:5-12: Could not import `arctanh` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:16:5-16: Could not import `bitwise_not` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:17:5-26: Could not import `bitwise_not` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:18:5-9: Could not import `ceil` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:19:5-31: Could not import `conj_physical` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:20:5-8: Could not import `cos` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:21:5-9: Could not import `cosh` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:22:5-12: Could not import `deg2rad` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:23:5-23: Could not import `deg2rad` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:24:5-8: Could not import `exp` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:25:5-9: Could not import `exp2` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:26:5-10: Could not import `expm1` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:27:5-10: Could not import `floor` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:28:5-13: Could not import `isfinite` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:29:5-10: Could not import `isinf` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:30:5-10: Could not import `isnan` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:31:5-8: Could not import `log` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:32:5-10: Could not import `log10` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:33:5-10: Could not import `log1p` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:34:5-9: Could not import `log2` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:35:5-16: Could not import `logical_not` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:36:5-13: Could not import `negative` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:37:5-12: Could not import `rad2deg` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:38:5-23: Could not import `rad2deg` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:39:5-15: Could not import `reciprocal` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:40:5-17: Could not import `round` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:41:5-18: Could not import `round` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:42:5-9: Could not import `sign` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:43:5-12: Could not import `signbit` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:44:5-8: Could not import `sin` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:45:5-9: Could not import `sinh` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:46:5-9: Could not import `sqrt` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:47:5-11: Could not import `square` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:48:5-8: Could not import `tan` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:49:5-9: Could not import `tanh` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:50:5-10: Could not import `trunc` from `torch` [missing-module-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:56:12-21: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:65:19-29: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_numpy/_unary_ufuncs_impl.py:67:12-26: No attribute `absolute` in module `torch` [missing-attribute] +ERROR torch/_numpy/_util.py:177:18-33: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/_numpy/_util.py:218:25-48: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_numpy/_util.py:219:68-81: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_numpy/linalg.py:44:16-37: No attribute `_LinAlgError` in module `torch._C` [missing-attribute] +ERROR torch/_numpy/linalg.py:147:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_numpy/linalg.py:147:24-35: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_numpy/linalg.py:161:36-47: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_numpy/linalg.py:169:66-71: Default `Literal[False]` is not assignable to parameter `keepdims` with type `KeepDims` [bad-function-definition] +ERROR torch/_numpy/linalg.py:216:50-67: Object of class `bool` has no attribute `all` [missing-attribute] +ERROR torch/_numpy/linalg.py:234:55-77: Object of class `bool` has no attribute `all` [missing-attribute] +ERROR torch/_numpy/random.py:70:33-48: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/_numpy/random.py:88:14-25: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_numpy/random.py:107:14-25: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_numpy/random.py:114:14-25: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_numpy/random.py:123:14-25: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_numpy/random.py:139:12-26: No attribute `randperm` in module `torch` [missing-attribute] +ERROR torch/_numpy/random.py:152:14-27: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/_numpy/random.py:160:8-15: Object of class `object` has no attribute `numel` [missing-attribute] +ERROR torch/_numpy/random.py:161:13-25: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_numpy/random.py:177:13-28: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/_numpy/random.py:177:34-41: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/_numpy/random.py:180:17-28: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_numpy/random.py:180:29-36: Object of class `object` has no attribute `dtype` [missing-attribute] +ERROR torch/_numpy/random.py:181:12-17: Object of class `object` has no attribute `sum` [missing-attribute] +ERROR torch/_numpy/random.py:185:15-32: No attribute `multinomial` in module `torch` [missing-attribute] +ERROR torch/_numpy/random.py:190:15-25: `ArrayLike` is not subscriptable [unsupported-operation] +ERROR torch/_numpy/testing/utils.py:24:26-32: Could not import `arange` from `torch._numpy` [missing-module-attribute] +ERROR torch/_numpy/testing/utils.py:24:57-62: Could not import `empty` from `torch._numpy` [missing-module-attribute] +ERROR torch/_numpy/testing/utils.py:24:64-71: Could not import `float32` from `torch._numpy` [missing-module-attribute] +ERROR torch/_numpy/testing/utils.py:24:73-77: Could not import `intp` from `torch._numpy` [missing-module-attribute] +ERROR torch/_numpy/testing/utils.py:84:20-23: Expected a callable, got `str` [not-callable] +ERROR torch/_numpy/testing/utils.py:91:12-20: No attribute `isnan` in module `torch._numpy` [missing-attribute] +ERROR torch/_numpy/testing/utils.py:95:12-23: No attribute `isfinite` in module `torch._numpy` [missing-attribute] +ERROR torch/_numpy/testing/utils.py:99:12-20: No attribute `isinf` in module `torch._numpy` [missing-attribute] +ERROR torch/_numpy/testing/utils.py:221:30-34: Could not import `imag` from `torch._numpy` [missing-module-attribute] +ERROR torch/_numpy/testing/utils.py:221:36-48: Could not import `iscomplexobj` from `torch._numpy` [missing-module-attribute] +ERROR torch/_numpy/testing/utils.py:221:50-58: Could not import `isscalar` from `torch._numpy` [missing-module-attribute] +ERROR torch/_numpy/testing/utils.py:221:69-73: Could not import `real` from `torch._numpy` [missing-module-attribute] +ERROR torch/_numpy/testing/utils.py:221:75-82: Could not import `signbit` from `torch._numpy` [missing-module-attribute] +ERROR torch/_numpy/testing/utils.py:401:30-34: Could not import `imag` from `torch._numpy` [missing-module-attribute] +ERROR torch/_numpy/testing/utils.py:401:36-48: Could not import `iscomplexobj` from `torch._numpy` [missing-module-attribute] +ERROR torch/_numpy/testing/utils.py:401:59-63: Could not import `real` from `torch._numpy` [missing-module-attribute] +ERROR torch/_numpy/testing/utils.py:452:33-43: No attribute `float64` in module `torch._numpy` [missing-attribute] +ERROR torch/_numpy/testing/utils.py:578:51-56: Could not import `bool_` from `torch._numpy` [missing-module-attribute] +ERROR torch/_numpy/testing/utils.py:578:63-68: Could not import `isnan` from `torch._numpy` [missing-module-attribute] +ERROR torch/_numpy/testing/utils.py:578:70-73: Could not import `max` from `torch._numpy` [missing-module-attribute] +ERROR torch/_numpy/testing/utils.py:610:12-30: Object of class `bool` has no attribute `all` [missing-attribute] +ERROR torch/_numpy/testing/utils.py:696:43-61: No attribute `unsignedinteger` in module `torch._numpy` [missing-attribute] +ERROR torch/_numpy/testing/utils.py:698:21-31: No attribute `minimum` in module `torch._numpy` [missing-attribute] +ERROR torch/_numpy/testing/utils.py:929:44-50: Could not import `float_` from `torch._numpy` [missing-module-attribute] +ERROR torch/_numpy/testing/utils.py:929:64-70: Could not import `number` from `torch._numpy` [missing-module-attribute] +ERROR torch/_numpy/testing/utils.py:1231:9-10: `d` may be uninitialized [unbound-name] +ERROR torch/_numpy/testing/utils.py:1302:16-26: No attribute `isclose` in module `torch._numpy` [missing-attribute] +ERROR torch/_numpy/testing/utils.py:1906:9-17: Class member `clear_and_catch_warnings.__exit__` overrides parent class `catch_warnings` in an inconsistent manner [bad-override] +ERROR torch/_numpy/testing/utils.py:2166:17-35: Object of class `suppress_warnings` has no attribute `_orig_showmsg` [missing-attribute] +ERROR torch/_numpy/testing/utils.py:2176:12-21: `signature` may be uninitialized [unbound-name] +ERROR torch/_numpy/testing/utils.py:2178:29-38: `signature` may be uninitialized [unbound-name] +ERROR torch/_numpy/testing/utils.py:2182:13-31: Object of class `suppress_warnings` has no attribute `_orig_showmsg` [missing-attribute] +ERROR torch/_numpy/testing/utils.py:2306:12-18: Could not find import of `pytest` [missing-import] +ERROR torch/_numpy/testing/utils.py:2440:15-55: Object of class `NoneType` has no attribute `rsplit` [missing-attribute] +ERROR torch/_ops.py:26:22-76: Could not import `_dispatch_is_included_in_alias` from `torch._C` [missing-module-attribute] +ERROR torch/_ops.py:26:78-89: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_ops.py:118:20-51: No attribute `_dispatch_is_alias_key` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:225:9-60: No attribute `_dispatch_get_backend_keyset_from_autograd` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:240:13-54: No attribute `_dispatch_autogradother_backends` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:254:8-47: No attribute `_dispatch_has_backend_fallback` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:295:37-67: No attribute `_dispatch_keyset_full` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:326:20-41: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_ops.py:331:22-57: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:363:16-38: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_ops.py:366:21-37: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_ops.py:366:21-44: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_ops.py:393:24-47: No attribute `_dispatch_keys` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:440:24-62: No attribute `_disabled_torch_dispatch_impl` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:486:23-70: No attribute `_dispatch_tls_is_dispatch_key_excluded` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:578:15-55: No attribute `_dispatch_tls_local_include_set` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:580:29-52: No attribute `_dispatch_keys` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:581:25-65: No attribute `_dispatch_tls_local_exclude_set` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:624:9-39: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:625:9-39: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:633:24-54: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:637:26-56: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:654:9-57: No attribute `_dispatch_tls_set_dispatch_key_included` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:695:9-57: No attribute `_dispatch_tls_set_dispatch_key_included` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:708:40-70: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:710:40-70: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:719:20-50: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:722:28-58: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:773:17-40: No attribute `FunctionSchema` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:786:45-54: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_ops.py:821:26-58: No attribute `_DispatchOperatorHandle` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:822:16-55: No attribute `_dispatch_find_schema_or_throw` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:841:26-49: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:855:14-60: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:857:51-74: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:858:16-66: No attribute `_dispatch_has_kernel_for_any_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:868:41-87: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:880:14-60: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:920:29-57: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_ops.py:928:22-50: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_ops.py:942:25-72: No attribute `_dispatch_tls_is_dispatch_key_excluded` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:1030:16-62: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:1031:24-81: No attribute `_dispatch_kernel_for_dispatch_key_is_fallthrough` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:1091:32-62: No attribute `_dispatch_keyset_full` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:1107:16-73: No attribute `_dispatch_kernel_for_dispatch_key_is_fallthrough` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:1139:36-56: No attribute `FunctionSchema` in module `torch` [missing-attribute] +ERROR torch/_ops.py:1140:37-52: No attribute `ClassType` in module `torch` [missing-attribute] +ERROR torch/_ops.py:1188:28-48: No attribute `_get_schema` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:1217:26-58: No attribute `_get_operation_overload` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:1226:22-42: No attribute `_get_schema` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:1271:34-83: No attribute `_maybe_call_torch_function_for_op_packet` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:1288:17-64: No attribute `_check_schema_allow_fake_script_object` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:1353:9-20: Class member `_OpNamespace.__getattr__` overrides parent class `ModuleType` in an inconsistent manner [bad-param-name-override] +ERROR torch/_ops.py:1391:26-53: No attribute `_jit_get_operation` in module `torch._C` [missing-attribute] +ERROR torch/_ops.py:1395:9-28: Module `torch.jit._builtins` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_prims/__init__.py:12:22-41: Could not import `_get_default_device` from `torch._C` [missing-module-attribute] +ERROR torch/_prims/__init__.py:228:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:229:28-40: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:237:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:261:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:263:12-31: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:273:29-38: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:299:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:308:18-39: No attribute `parse_schema` in module `torch._C` [missing-attribute] +ERROR torch/_prims/__init__.py:310:41-50: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:345:35-44: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:348:35-44: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:451:21-31: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:454:25-48: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:525:15-24: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:532:15-25: No attribute `acos` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:539:15-26: No attribute `acosh` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:546:15-25: No attribute `asin` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:553:15-26: No attribute `asinh` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:560:15-25: No attribute `atan` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:567:15-26: No attribute `atanh` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:574:15-24: No attribute `cos` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:581:15-25: No attribute `cosh` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:602:15-23: No attribute `i0` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:630:15-32: No attribute `bitwise_not` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:647:12-26: No attribute `copysign` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:647:27-36: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:659:15-25: No attribute `ceil` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:676:15-35: No attribute `_conj_physical` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:683:46-65: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:683:68-89: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:685:25-46: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:686:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:702:16-35: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:714:15-26: No attribute `clone` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:722:15-28: No attribute `digamma` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:729:15-24: No attribute `erf` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:757:15-24: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:788:15-25: No attribute `fill` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:794:15-26: No attribute `floor` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:806:15-25: No attribute `imag` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:812:15-29: No attribute `isfinite` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:819:15-27: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:826:15-24: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:833:15-26: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:840:15-25: No attribute `log2` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:847:15-26: No attribute `log10` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:859:15-25: No attribute `real` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:865:15-31: No attribute `reciprocal` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:879:15-24: No attribute `neg` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:886:15-26: No attribute `round` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:893:15-26: No attribute `rsqrt` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:900:15-25: No attribute `sign` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:907:15-28: No attribute `signbit` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:914:15-24: No attribute `sin` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:921:15-25: No attribute `sinh` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:935:15-25: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:942:15-24: No attribute `tan` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:949:15-25: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:956:15-26: No attribute `trunc` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:967:15-24: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:974:15-26: No attribute `atan2` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:981:15-32: No attribute `bitwise_and` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:988:15-31: No attribute `bitwise_or` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:995:15-32: No attribute `bitwise_xor` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1016:16-25: No attribute `div` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1019:16-33: No attribute `true_divide` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1031:15-23: No attribute `eq` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1038:15-25: No attribute `fmax` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1045:15-25: No attribute `fmin` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1052:15-25: No attribute `fmod` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1060:15-24: No attribute `gcd` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1068:15-23: No attribute `ge` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1075:15-23: No attribute `gt` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1082:15-26: No attribute `hypot` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1103:15-23: No attribute `le` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1110:15-23: No attribute `lt` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1156:15-24: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1163:15-23: No attribute `ne` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1170:15-30: No attribute `nextafter` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1177:15-24: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1184:15-30: No attribute `remainder` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1192:15-39: No attribute `bitwise_left_shift` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1199:15-40: No attribute `bitwise_right_shift` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1208:15-24: No attribute `sub` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1240:12-28: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1246:12-28: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1524:5-23: No attribute `_set_conj` in module `torch._C` [missing-attribute] +ERROR torch/_prims/__init__.py:1535:15-25: No attribute `conj` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1648:15-28: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1673:12-25: No attribute `permute` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1714:55-66: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1718:47-58: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1775:15-39: No attribute `as_strided_scatter` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1846:12-21: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1879:49-72: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1897:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1897:46-67: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1907:15-25: No attribute `flip` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1938:15-26: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1947:58-69: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1950:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1953:8-27: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_prims/__init__.py:1961:50-61: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1972:14-30: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1989:11-20: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1994:43-55: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:1997:37-49: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2004:35-47: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2038:10-25: Module `torch._dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_prims/__init__.py:2038:10-32: Module `torch._dispatch.python` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_prims/__init__.py:2056:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2061:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2062:17-27: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2065:16-27: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2067:16-27: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2088:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2093:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2094:17-27: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2097:16-27: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2099:16-27: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2162:12-31: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2173:11-30: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2297:15-24: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2306:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2322:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2329:19-29: No attribute `prod` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2332:16-26: No attribute `prod` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2344:12-21: No attribute `var` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2355:15-25: No attribute `amax` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2361:15-25: No attribute `amin` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2378:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2379:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2387:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2400:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2401:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2405:12-24: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2422:33-44: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2422:54-66: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2429:33-44: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2429:54-66: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2431:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2451:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2452:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2467:15-34: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2476:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2477:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2522:15-35: No attribute `empty_permuted` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2531:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2532:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2543:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2544:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2548:12-22: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2575:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2576:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2590:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2591:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2595:12-27: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2622:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2623:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2633:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2634:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2731:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2732:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2734:25-40: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2755:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2756:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2758:25-40: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2760:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2790:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2791:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2792:25-40: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2803:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2804:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2805:25-40: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2807:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2858:12-26: No attribute `_fft_r2c` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2898:12-26: No attribute `_fft_c2c` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2938:12-26: No attribute `_fft_c2r` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2960:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2960:36-52: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2960:65-76: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_prims/__init__.py:2967:15-26: No attribute `frexp` in module `torch` [missing-attribute] +ERROR torch/_prims/context.py:115:9-27: Class member `TorchRefsMode.__torch_function__` overrides parent class `TorchFunctionMode` in an inconsistent manner [bad-param-name-override] +ERROR torch/_prims/debug_prims.py:40:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims/debug_prims.py:41:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/rng_prims.py:7:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/_prims/rng_prims.py:52:12-22: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_prims/rng_prims.py:58:12-22: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_prims/rng_prims.py:66:13-32: No attribute `scalar_tensor` in module `torch` [missing-attribute] +ERROR torch/_prims/rng_prims.py:66:53-64: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_prims/rng_prims.py:84:16-26: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_prims/rng_prims.py:101:16-26: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_prims/rng_prims.py:120:29-39: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/_prims/rng_prims.py:130:15-24: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_prims/rng_prims.py:138:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims/rng_prims.py:159:20-36: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_prims/rng_prims.py:223:20-36: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_prims/rng_prims.py:323:20-36: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute] +ERROR torch/_prims_common/__init__.py:48:30-40: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:68:40-52: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:73:5-17: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:380:5-28: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:381:5-26: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:382:5-24: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:383:5-27: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:387:43-62: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:397:20-39: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:403:25-48: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:405:25-44: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:407:25-47: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:432:34-53: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:582:30-53: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:587:34-53: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:903:52-64: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:904:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:908:12-24: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1091:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1092:5-17: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1093:5-17: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1094:5-17: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1095:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1096:5-16: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1097:5-16: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1098:5-16: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1100:26-39: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1100:41-55: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1100:57-72: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1101:20-35: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1101:37-52: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1101:54-70: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1104:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1105:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1106:21-31: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1109:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1110:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1114:35-46: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1115:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1119:27-38: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1120:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1124:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1125:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1129:26-37: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1137:5-21: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1137:23-36: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1138:5-20: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1138:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1139:5-20: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1139:22-35: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1143:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1143:20-35: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1144:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1144:21-36: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1145:5-18: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1145:20-35: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1146:5-18: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1146:20-36: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1150:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1150:53-64: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1154:40-51: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1154:56-67: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1158:26-37: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1163:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1165:17-27: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1177:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1182:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1184:17-27: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1197:33-44: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1205:16-26: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1207:16-26: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1209:16-39: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1212:44-67: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1228:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1278:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1279:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1280:15-26: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1287:40-51: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1288:40-51: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1291:27-38: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1292:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1295:26-37: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1317:10-20: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1318:10-21: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1318:23-33: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1319:10-21: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1320:10-21: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1321:10-21: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1322:10-23: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1322:25-39: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1323:10-23: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1324:10-23: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1325:10-25: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1326:10-25: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1327:10-26: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1347:26-38: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1349:19-32: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1375:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1375:58-69: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1452:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1452:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1453:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1453:20-33: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1454:5-20: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1454:22-37: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1458:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1458:50-61: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1463:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1463:21-34: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1464:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1464:20-33: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1465:5-18: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1465:20-33: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1466:5-20: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1466:22-38: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1467:5-20: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1467:22-38: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1471:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1471:46-58: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1471:63-74: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1539:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1539:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1651:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1680:13-36: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1689:56-79: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1692:24-34: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1695:24-34: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1703:28-51: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1713:20-30: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1713:32-42: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1716:53-63: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1724:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1725:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1725:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:1744:24-34: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2033:49-68: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2034:20-33: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2035:16-39: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2038:16-35: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2038:56-78: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2040:12-35: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2069:19-29: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2072:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2096:38-49: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2096:55-66: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2097:44-67: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2101:46-58: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2104:40-52: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2104:58-70: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2105:46-59: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2119:15-62: No attribute `_dispatch_tls_is_dispatch_key_excluded` in module `torch._C` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2120:13-33: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2122:9-57: No attribute `_dispatch_tls_set_dispatch_key_excluded` in module `torch._C` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2123:13-33: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2125:18-34: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2126:16-32: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2128:9-57: No attribute `_dispatch_tls_set_dispatch_key_excluded` in module `torch._C` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2129:13-33: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2166:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2167:22-34: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2173:47-58: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2174:51-62: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_prims_common/__init__.py:2175:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_prims_common/wrappers.py:32:55-66: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/wrappers.py:38:51-62: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/wrappers.py:44:49-60: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/wrappers.py:49:45-56: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_prims_common/wrappers.py:191:29-48: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_prims_common/wrappers.py:433:14-49: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute] +ERROR torch/_prims_common/wrappers.py:450:12-33: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_prims_common/wrappers.py:486:24-36: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_prims_common/wrappers.py:490:20-31: Object of class `object` has no attribute `item` [missing-attribute] +ERROR torch/_python_dispatcher.py:75:20-39: No attribute `_dispatch_library` in module `torch._C` [missing-attribute] +ERROR torch/_refs/__init__.py:394:17-38: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_refs/__init__.py:394:17-46: Module `torch.fx.experimental._config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_refs/__init__.py:751:12-28: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:767:15-24: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:767:25-36: No attribute `floor` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:767:37-46: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:767:52-62: No attribute `sign` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:768:12-21: No attribute `sub` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:788:31-41: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:794:16-32: No attribute `logical_or` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:794:39-49: No attribute `real` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:794:61-71: No attribute `imag` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:796:16-25: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:797:12-28: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:797:38-48: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:811:12-28: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:811:38-48: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:825:12-28: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:825:38-48: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:843:16-26: No attribute `imag` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:844:12-27: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:844:37-47: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:885:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:906:16-25: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:906:26-35: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:908:13-23: No attribute `amax` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:908:24-34: No attribute `real` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:909:13-30: No attribute `masked_fill` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:911:44-57: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:913:14-23: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:913:24-33: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:934:18-29: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:937:18-29: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:947:24-34: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:967:19-29: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1018:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1049:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1049:35-44: No attribute `sin` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1330:20-30: No attribute `fill` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1334:20-30: No attribute `exp2` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1355:17-33: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1357:17-30: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1420:24-36: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1443:14-64: Object of class `bool` has no attribute `logical_and` [missing-attribute] +ERROR torch/_refs/__init__.py:1443:15-28: No attribute `signbit` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1443:35-48: No attribute `signbit` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1443:65-75: No attribute `fmod` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1502:12-36: No attribute `frexp` in module `torch.return_types` [missing-attribute] +ERROR torch/_refs/__init__.py:1536:21-29: No attribute `eq` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1537:21-37: No attribute `logical_or` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1537:38-46: No attribute `lt` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1537:58-69: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1538:22-33: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1539:14-25: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1621:43-66: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1622:43-66: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1644:32-42: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1644:44-55: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1646:43-54: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1647:43-54: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1649:9-18: No attribute `gcd` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1651:9-20: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1652:11-20: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1671:12-22: No attribute `real` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1671:29-39: No attribute `real` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1672:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1673:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1674:16-33: No attribute `logical_and` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1675:9-26: No attribute `logical_not` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1675:27-41: No attribute `isfinite` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1675:42-52: No attribute `real` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1675:59-69: No attribute `real` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1675:76-86: No attribute `real` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1679:24-34: No attribute `real` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1680:20-31: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1681:33-42: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1681:43-52: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1681:61-70: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1683:24-35: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1684:40-51: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1684:52-61: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1687:20-31: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1690:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1690:48-59: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1690:60-69: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1705:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1706:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1707:16-33: No attribute `logical_and` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1707:34-45: No attribute `isinf` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1709:21-32: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1709:33-43: No attribute `exp2` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1710:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1820:12-21: No attribute `sub` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1903:11-22: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1903:23-31: No attribute `eq` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1903:42-51: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1903:55-64: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1904:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1904:24-35: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:1997:19-30: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2005:19-30: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2060:23-33: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2074:42-61: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2074:64-85: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2104:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2106:22-34: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2107:29-48: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2120:33-54: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2133:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2134:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2137:29-48: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2152:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2155:29-48: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2158:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2169:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2172:29-48: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2188:29-48: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2211:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2216:61-82: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2259:14-30: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2278:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2355:45-68: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2373:14-31: No attribute `logical_not` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2373:32-41: No attribute `any` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2373:42-59: No attribute `logical_not` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2375:19-30: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2376:34-45: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2388:37-47: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2395:19-30: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2396:51-62: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2407:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2414:21-32: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2450:12-21: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2466:21-32: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2587:13-22: No attribute `var` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2588:13-23: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2656:21-35: No attribute `var_mean` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2657:13-23: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2723:20-31: No attribute `outer` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2723:58-73: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2725:20-36: No attribute `logical_or` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2727:17-28: No attribute `outer` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2727:55-70: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2740:28-39: No attribute `outer` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2742:42-53: No attribute `outer` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2825:12-22: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2854:21-44: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2857:24-47: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:2981:16-35: No attribute `conj_physical` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3044:14-25: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3052:38-48: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3072:34-53: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3072:56-79: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3075:26-47: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3083:12-23: No attribute `clone` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3097:17-38: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_refs/__init__.py:3097:17-46: Module `torch.fx.experimental._config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_refs/__init__.py:3289:24-38: No attribute `var_mean` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3292:12-23: No attribute `rsqrt` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3300:13-28: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3329:22-35: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3334:24-38: No attribute `var_mean` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3337:12-23: No attribute `rsqrt` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3339:27-40: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3345:29-42: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3371:12-25: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3372:12-25: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3454:2-30: Module `torch._subclasses.fake_impls` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_refs/__init__.py:3503:19-30: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3593:22-32: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3623:40-58: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3700:19-29: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3815:16-27: No attribute `clone` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3829:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3854:21-32: No attribute `clone` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3981:20-36: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:3986:20-36: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4032:39-46: Cannot index into `Iterable[int]` [bad-index] +ERROR torch/_refs/__init__.py:4046:20-30: No attribute `roll` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4046:31-44: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4053:23-33: Cannot index into `Iterable[int]` [bad-index] +ERROR torch/_refs/__init__.py:4055:21-29: Cannot index into `Iterable[int]` [bad-index] +ERROR torch/_refs/__init__.py:4057:28-38: No attribute `roll` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4057:43-52: Cannot index into `Iterable[int]` [bad-index] +ERROR torch/_refs/__init__.py:4057:56-63: Cannot index into `Iterable[int]` [bad-index] +ERROR torch/_refs/__init__.py:4058:16-26: No attribute `roll` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4063:11-18: Cannot index into `Iterable[int]` [bad-index] +ERROR torch/_refs/__init__.py:4066:21-30: Cannot index into `Iterable[int]` [bad-index] +ERROR torch/_refs/__init__.py:4067:11-23: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4068:32-42: No attribute `fmod` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4094:16-31: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4094:32-42: No attribute `flip` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4096:16-26: No attribute `flip` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4098:16-31: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4098:32-42: No attribute `flip` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4100:38-61: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4124:15-24: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4128:12-21: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4136:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4192:13-26: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4192:44-62: No attribute `tensor_split` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4198:34-57: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4250:17-36: No attribute `scalar_tensor` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4264:53-69: No attribute `index_copy` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4274:23-39: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4290:34-57: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4311:16-32: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4398:41-51: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4548:16-32: No attribute `diag_embed` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4550:16-35: No attribute `diagonal_copy` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4648:13-24: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4650:13-22: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4658:15-27: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4658:61-72: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4659:15-27: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4660:59-70: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4666:12-24: Object of class `bool` has no attribute `reshape` [missing-attribute] +ERROR torch/_refs/__init__.py:4701:16-27: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4702:17-28: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4705:20-29: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4708:12-21: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4750:12-27: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4781:12-25: No attribute `permute` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4802:23-46: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4812:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4822:10-22: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4825:16-30: Object of class `bool` has no attribute `unsqueeze` [missing-attribute] +ERROR torch/_refs/__init__.py:4826:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4835:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4846:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4905:16-28: No attribute `gather` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4917:16-28: No attribute `gather` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4923:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4924:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4924:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4928:20-39: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4928:42-65: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4931:26-47: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4937:25-48: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4939:27-49: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4943:30-49: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4948:12-31: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4963:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4964:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4964:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4984:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4985:22-34: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:4993:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5009:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5010:22-34: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5022:12-31: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5036:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5037:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5037:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5045:17-40: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5047:12-22: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5049:27-37: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5064:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5065:22-34: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5074:12-22: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5076:40-50: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5089:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5090:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5090:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5098:17-40: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5100:12-22: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5102:26-36: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5117:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5118:22-34: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5127:12-22: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5129:39-49: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5145:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5146:22-34: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5154:12-22: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5168:29-48: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5178:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5180:22-34: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5183:20-39: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5183:42-63: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5189:25-46: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5190:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5205:12-32: No attribute `empty_permuted` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5223:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5224:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5224:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5231:14-26: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5269:17-28: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5269:50-73: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5279:17-28: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5300:15-26: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5306:9-19: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5337:13-24: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5338:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5355:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5357:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5357:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5366:48-61: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5372:44-57: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5376:13-36: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5386:26-49: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5387:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5418:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5430:11-22: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5446:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5448:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5448:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5453:17-40: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5476:13-36: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5481:18-31: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5634:14-27: No attribute `permute` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5646:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5648:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5648:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5657:13-36: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5658:14-26: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5669:43-54: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5670:28-39: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5670:41-53: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5670:55-66: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5671:19-30: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5673:12-23: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5682:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5683:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5683:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5697:19-30: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5700:15-27: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5701:15-27: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5704:19-32: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5705:16-23: Object of class `bool` has no attribute `to` [missing-attribute] +ERROR torch/_refs/__init__.py:5705:33-56: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5707:15-25: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5715:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5727:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5728:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5728:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5737:48-60: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5754:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5755:22-34: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5759:20-39: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5759:42-63: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5761:9-25: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5778:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5779:22-34: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5783:20-39: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5783:42-63: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5785:12-27: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5787:40-50: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5802:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5803:22-34: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5807:20-39: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5807:42-63: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5809:12-27: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5811:39-49: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5825:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5827:22-34: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5851:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5852:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5852:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5859:48-60: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5873:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5883:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5906:39-77: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/_refs/__init__.py:5959:9-18: No attribute `all` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5959:19-32: No attribute `isclose` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:5990:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6016:12-21: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6016:22-32: No attribute `diag` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6042:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6043:11-23: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6059:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6060:11-23: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6095:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6096:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6102:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6102:32-43: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6115:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6115:26-36: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6116:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6116:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6126:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6130:46-59: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6132:17-28: No attribute `floor` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6132:34-44: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6133:17-28: No attribute `floor` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6142:12-23: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6143:10-19: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6143:45-54: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6175:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6175:26-36: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6176:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6176:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6186:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6195:46-59: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6197:17-28: No attribute `floor` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6197:34-44: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6198:17-28: No attribute `floor` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6206:12-23: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6207:10-19: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6207:45-54: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6225:47-59: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6226:17-28: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6226:47-58: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6229:16-32: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6234:13-24: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6234:57-68: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6248:13-24: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6251:23-38: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6251:48-58: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6254:19-30: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6257:19-30: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6266:21-32: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6290:29-38: No attribute `tan` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6290:50-65: No attribute `rand_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6313:19-34: No attribute `rand_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6319:15-26: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6321:19-30: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6321:52-61: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6344:12-23: No attribute `floor` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6344:24-35: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6344:37-52: No attribute `rand_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6365:12-21: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6365:28-44: No attribute `randn_like` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6390:40-53: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6416:17-40: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6417:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6503:24-33: No attribute `dot` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6505:24-34: No attribute `vdot` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6507:20-30: No attribute `vdot` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6521:16-25: No attribute `dot` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6525:20-30: No attribute `vdot` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6527:20-29: No attribute `dot` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6529:16-25: No attribute `dot` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6543:12-24: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6544:11-26: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6545:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6695:16-39: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6697:16-27: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6699:16-26: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6701:25-48: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6702:29-40: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6703:20-32: No attribute `cfloat` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6704:31-43: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6705:20-33: No attribute `cdouble` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6706:31-41: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6707:20-31: No attribute `chalf` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6721:20-43: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6732:30-49: No attribute `promote_types` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6735:30-43: No attribute `cdouble` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6746:17-28: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6761:16-35: No attribute `scalar_tensor` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6766:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6768:14-25: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6813:12-24: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_refs/__init__.py:6844:41-64: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:40:47-58: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:42:46-65: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:42:68-89: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:50:48-62: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:52:40-50: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:54:40-51: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:56:46-59: No attribute `cdouble` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:58:44-56: No attribute `cfloat` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:60:42-57: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:62:40-50: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:64:44-56: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:66:42-53: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:68:40-50: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:70:38-47: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:72:40-50: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:74:42-53: No attribute `short` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:82:23-36: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:82:38-51: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:82:53-66: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:116:14-27: No attribute `complex` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:117:25-34: No attribute `cos` in module `torch` [missing-attribute] +ERROR torch/_refs/_conversions.py:118:25-34: No attribute `sin` in module `torch` [missing-attribute] +ERROR torch/_refs/fft.py:59:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/fft.py:59:56-68: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_refs/fft.py:60:6-17: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/fft.py:67:17-40: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/fft.py:69:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_refs/fft.py:69:37-50: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_refs/fft.py:73:30-43: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_refs/fft.py:115:12-33: No attribute `constant_pad_nd` in module `torch` [missing-attribute] +ERROR torch/_refs/fft.py:139:17-27: No attribute `conj` in module `torch` [missing-attribute] +ERROR torch/_refs/fft.py:171:32-42: No attribute `conj` in module `torch` [missing-attribute] +ERROR torch/_refs/fft.py:586:12-22: No attribute `roll` in module `torch` [missing-attribute] +ERROR torch/_refs/fft.py:593:12-22: No attribute `roll` in module `torch` [missing-attribute] +ERROR torch/_refs/linalg/__init__.py:39:39-50: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/linalg/__init__.py:39:62-73: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/linalg/__init__.py:84:11-23: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_refs/linalg/__init__.py:97:12-26: No attribute `diagonal` in module `torch` [missing-attribute] +ERROR torch/_refs/linalg/__init__.py:136:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/linalg/__init__.py:157:16-25: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_refs/linalg/__init__.py:157:26-34: No attribute `ne` in module `torch` [missing-attribute] +ERROR torch/_refs/linalg/__init__.py:165:30-39: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_refs/linalg/__init__.py:179:17-26: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_refs/linalg/__init__.py:189:17-26: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_refs/linalg/__init__.py:214:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/linalg/__init__.py:228:19-25: Index 1 out of range for tuple with 1 elements [bad-index] +ERROR torch/_refs/linalg/__init__.py:230:79-85: Index 1 out of range for tuple with 1 elements [bad-index] +ERROR torch/_refs/linalg/__init__.py:252:51-57: Index 1 out of range for tuple with 1 elements [bad-index] +ERROR torch/_refs/linalg/__init__.py:253:22-31: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_refs/linalg/__init__.py:256:42-57: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/_refs/linalg/__init__.py:270:27-37: No attribute `amax` in module `torch` [missing-attribute] +ERROR torch/_refs/linalg/__init__.py:270:56-66: No attribute `amin` in module `torch` [missing-attribute] +ERROR torch/_refs/linalg/__init__.py:276:51-57: Index 1 out of range for tuple with 1 elements [bad-index] +ERROR torch/_refs/linalg/__init__.py:280:42-57: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/_refs/linalg/__init__.py:302:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:94:50-63: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:116:16-32: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:130:9-26: No attribute `logical_not` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:191:15-26: No attribute `expm1` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:193:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:213:16-32: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:259:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:259:60-71: No attribute `expm1` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:277:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:277:24-32: No attribute `le` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:346:12-35: No attribute `native_group_norm` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:368:12-35: No attribute `native_layer_norm` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:392:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:392:24-32: No attribute `gt` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:392:43-52: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:409:16-26: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:429:19-30: No attribute `expm1` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:431:20-31: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:440:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:455:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:497:15-26: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:497:27-36: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:499:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:510:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:510:24-33: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:528:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:528:24-33: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:528:50-60: No attribute `sign` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:547:16-25: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:549:16-26: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:598:12-21: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:629:16-25: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:631:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:641:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:666:12-27: No attribute `clamp_min` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:687:12-21: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:701:20-35: No attribute `clamp_min` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:702:21-32: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:703:19-30: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:727:19-32: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:728:27-35: No attribute `eq` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:746:27-46: No attribute `scalar_tensor` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:748:9-28: No attribute `scalar_tensor` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:752:22-33: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:765:23-35: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:772:19-31: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:776:12-25: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:781:16-25: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:784:16-25: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:784:34-43: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:824:20-36: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:826:20-36: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:828:20-35: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:856:13-26: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:857:14-27: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:863:16-29: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:893:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:911:16-26: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:934:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:966:40-63: No attribute `pairwise_distance` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:1002:29-52: No attribute `pairwise_distance` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:1013:20-33: No attribute `minimum` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:1014:12-27: No attribute `clamp_min` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:1044:28-39: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:1078:31-41: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:1081:31-40: No attribute `erf` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:1111:16-25: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:1113:33-42: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:1117:22-31: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:1117:57-66: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:1163:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:1194:12-30: No attribute `tensor_split` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:1196:16-29: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:1223:15-23: No attribute `mm` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:1224:20-30: No attribute `diag` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:1225:13-23: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:1225:24-35: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_refs/nn/functional/__init__.py:1228:9-27: No attribute `triu_indices` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:70:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:71:9-20: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:73:9-20: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:73:33-42: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:73:47-58: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:88:21-34: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:122:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:124:9-18: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:125:9-20: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:125:22-32: No attribute `erfc` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:140:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:140:39-50: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:141:12-21: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:141:22-39: No attribute `true_divide` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:141:46-55: No attribute `sub` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:167:11-22: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:167:23-31: No attribute `eq` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:167:42-51: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:167:55-66: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:168:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:168:24-35: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:179:15-27: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:180:12-21: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:180:22-34: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:193:17-26: No attribute `erf` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:211:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_refs/special/__init__.py:221:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_size_docs.py:4:22-47: Could not import `_add_docstr` from `torch._C` [missing-module-attribute] +ERROR torch/_size_docs.py:8:24-37: No attribute `Size` in module `torch._C` [missing-attribute] +ERROR torch/_sources.py:8:22-33: Could not import `ErrorReport` from `torch._C` [missing-module-attribute] +ERROR torch/_storage_docs.py:5:22-47: Could not import `_add_docstr` from `torch._C` [missing-module-attribute] +ERROR torch/_streambase.py:11:19-31: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_streambase.py:19:18-29: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_core.py:116:18-28: No attribute `real` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_core.py:117:18-28: No attribute `imag` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_core.py:117:59-75: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_core.py:121:16-29: No attribute `complex` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_core.py:121:30-39: Object of class `ComplexTensor` has no attribute `real` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_core.py:121:41-50: Object of class `ComplexTensor` has no attribute `imag` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:65:49-61: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:199:14-24: No attribute `prod` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:199:25-34: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:200:15-24: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:200:25-36: No attribute `angle` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:201:18-27: No attribute `cos` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:202:18-27: No attribute `sin` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:217:14-27: No attribute `cumprod` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:217:28-37: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:218:15-27: No attribute `cumsum` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:218:28-39: No attribute `angle` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:219:18-27: No attribute `cos` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:220:18-27: No attribute `sin` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:230:14-25: No attribute `hypot` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:237:12-23: No attribute `atan2` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:243:15-26: No attribute `acosh` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:246:19-32: No attribute `signbit` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:247:26-35: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:247:59-68: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:253:16-27: No attribute `asinh` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:262:15-26: No attribute `atanh` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:286:9-18: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:286:46-55: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:304:9-19: No attribute `cosh` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:304:25-34: No attribute `cos` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:305:9-19: No attribute `sinh` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:305:25-34: No attribute `sin` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:312:15-25: No attribute `sinh` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:322:9-19: No attribute `sinh` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:322:25-34: No attribute `cos` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:323:9-19: No attribute `cosh` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:323:25-34: No attribute `sin` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:330:15-25: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:343:10-20: No attribute `cosh` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:343:28-37: No attribute `cos` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:344:13-23: No attribute `sinh` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:347:14-23: No attribute `sin` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:356:10-19: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:357:14-23: No attribute `cos` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:358:14-23: No attribute `sin` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:367:10-19: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:368:14-23: No attribute `cos` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:369:14-23: No attribute `sin` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:376:10-19: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:376:20-29: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:377:10-21: No attribute `angle` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:391:12-21: No attribute `any` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:391:44-53: No attribute `any` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:397:12-21: No attribute `any` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:397:44-53: No attribute `any` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:404:12-20: No attribute `eq` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:404:50-58: No attribute `eq` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:411:12-20: No attribute `ne` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:411:50-58: No attribute `ne` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:417:12-23: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:417:30-41: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:423:12-23: No attribute `isinf` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:423:30-41: No attribute `isinf` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:429:12-26: No attribute `isfinite` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:429:33-47: No attribute `isfinite` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:440:16-25: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:441:17-26: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:449:19-30: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:450:19-30: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:451:19-30: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:452:19-30: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:510:13-33: No attribute `masked_scatter` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:511:13-33: No attribute `masked_scatter` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:521:13-24: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:522:13-24: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:532:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:538:16-31: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:544:13-28: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:545:13-28: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:552:44-55: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:597:13-22: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:598:13-22: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:607:16-25: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:620:21-31: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:620:32-41: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:621:29-40: No attribute `angle` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:623:29-38: No attribute `cos` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:624:29-38: No attribute `sin` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:634:22-33: No attribute `rsqrt` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:634:34-43: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:635:34-45: No attribute `angle` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:637:30-39: No attribute `cos` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:638:30-39: No attribute `sin` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:648:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:652:34-42: No attribute `mm` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:686:12-29: No attribute `logical_not` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:692:12-23: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:697:37-46: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:727:12-21: No attribute `all` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:728:9-22: No attribute `isclose` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:735:9-20: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:736:9-20: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:752:30-45: No attribute `_neg_view` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:835:12-21: No attribute `var` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:835:50-59: No attribute `var` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:845:14-31: No attribute `scatter_add` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:846:14-31: No attribute `scatter_add` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:890:12-34: No attribute `diagonal_scatter` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:893:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:893:43-54: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/aten.py:894:27-38: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:25:5-21: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:25:23-36: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:26:5-20: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:26:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:27:5-20: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:27:22-35: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:34:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:34:20-33: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:35:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:35:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:36:5-20: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:36:22-37: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:61:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:67:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:72:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:81:22-41: No attribute `promote_types` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:85:53-66: No attribute `asarray` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:167:21-37: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:185:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:185:50-61: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/common.py:237:44-55: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/complex_tensor/_ops/prims.py:18:56-67: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:42:10-29: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_impls.py:129:19-38: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:143:64-83: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:184:19-47: Argument `list[Unknown]` is not assignable to parameter `run_impl_check` with type `((OpOverload[Ellipsis, Any]) -> bool) | OpOverload[Ellipsis, Any]` in function `register_op_impl` [bad-argument-type] +ERROR torch/_subclasses/fake_impls.py:187:5-18: Type `None` is not iterable [not-iterable] +ERROR torch/_subclasses/fake_impls.py:192:13-58: Argument `Literal['torch.compile doesn\'t support named tensors']` is not assignable to parameter `func` with type `OpOverload[Ellipsis, Any]` in function `torch._subclasses.fake_tensor.UnsupportedOperatorException.__init__` [bad-argument-type] +ERROR torch/_subclasses/fake_impls.py:201:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:205:28-40: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:215:5-18: Type `None` is not iterable [not-iterable] +ERROR torch/_subclasses/fake_impls.py:234:5-18: Type `None` is not iterable [not-iterable] +ERROR torch/_subclasses/fake_impls.py:239:28-40: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:272:79-83: Argument `None` is not assignable to parameter `orig_not_implemented_exception` with type `RuntimeError` in function `torch._subclasses.fake_tensor.run_fallback_kernel` [bad-argument-type] +ERROR torch/_subclasses/fake_impls.py:293:18-27: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:361:68-80: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:558:18-29: Module `torch._refs` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_impls.py:569:18-29: Module `torch._refs` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_impls.py:602:9-30: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_impls.py:602:9-38: Module `torch.fx.experimental._config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_impls.py:616:38-47: Expected 2 positional arguments, got 3 in function `torch._prims_common.infer_size` [bad-argument-count] +ERROR torch/_subclasses/fake_impls.py:619:41-64: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:622:52-75: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:629:8-29: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_impls.py:629:8-37: Module `torch.fx.experimental._config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_impls.py:634:16-27: Module `torch._refs` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_impls.py:644:41-64: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:745:35-38: `nnz` may be uninitialized [unbound-name] +ERROR torch/_subclasses/fake_impls.py:745:56-59: `nnz` may be uninitialized [unbound-name] +ERROR torch/_subclasses/fake_impls.py:745:68-79: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:940:32-41: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:949:50-60: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:949:62-73: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:954:5-18: Type `None` is not iterable [not-iterable] +ERROR torch/_subclasses/fake_impls.py:977:12-67: No attribute `_dispatch_has_computed_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:1025:5-18: Type `None` is not iterable [not-iterable] +ERROR torch/_subclasses/fake_impls.py:1062:5-18: Type `None` is not iterable [not-iterable] +ERROR torch/_subclasses/fake_impls.py:1072:5-18: Type `None` is not iterable [not-iterable] +ERROR torch/_subclasses/fake_impls.py:1096:9-62: Argument `Literal['torch.compile does not support strided NestedTensor']` is not assignable to parameter `func` with type `OpOverload[Ellipsis, Any]` in function `torch._subclasses.fake_tensor.UnsupportedOperatorException.__init__` [bad-argument-type] +ERROR torch/_subclasses/fake_impls.py:1101:5-1113:6: Argument `list[Unknown]` is not assignable to parameter `run_impl_check` with type `((OpOverload[Ellipsis, Any]) -> bool) | OpOverload[Ellipsis, Any]` in function `register_op_impl` [bad-argument-type] +ERROR torch/_subclasses/fake_impls.py:1119:19-80: Argument `list[OpOverload[Ellipsis, Any]]` is not assignable to parameter `run_impl_check` with type `((OpOverload[Ellipsis, Any]) -> bool) | OpOverload[Ellipsis, Any]` in function `register_op_impl` [bad-argument-type] +ERROR torch/_subclasses/fake_impls.py:1121:5-14: Type `None` is not iterable [not-iterable] +ERROR torch/_subclasses/fake_impls.py:1140:32-61: No attribute `_select_conv_backend` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:1142:32-61: No attribute `_select_conv_backend` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:1166:23-69: No attribute `_conv_determine_backend_memory_format` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:1184:44-63: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:1345:15-27: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:1399:43-66: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:1405:43-62: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:1413:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:1417:35-58: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:1426:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_impls.py:1430:35-54: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:88:10-29: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:162:11-40: No attribute `_unset_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:162:41-71: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:167:13-40: No attribute `_set_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:203:20-46: Object of class `type` has no attribute `__tensor_flatten__` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:211:36-63: No attribute `_is_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:212:25-70: No attribute `_functionalization_reapply_views_tls` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:213:21-40: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:216:21-40: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:236:36-63: No attribute `_is_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:237:25-70: No attribute `_functionalization_reapply_views_tls` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:238:21-40: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:241:21-40: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:247:42-62: No attribute `_SchemaInfo` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:248:12-32: No attribute `_SchemaInfo` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:260:22-35: Module `torch._decomp` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:277:25-38: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:283:16-43: No attribute `_is_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:370:35-48: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:395:62-74: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:441:17-28: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:441:30-41: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:441:43-54: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:441:56-66: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:441:68-81: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:485:31-42: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:491:33-46: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:507:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:509:33-53: No attribute `DispatchKeySet` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:527:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:531:13-24: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:533:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:543:19-57: No attribute `_meta_in_tls_dispatch_include` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:546:10-40: No attribute `_DisableTorchDispatch` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:550:14-48: No attribute `_PreserveDispatchKeyGuard` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:551:13-55: No attribute `_set_meta_in_tls_dispatch_include` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:561:12-53: No attribute `_should_allow_numbers_as_tensors` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:655:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:677:29-49: No attribute `DispatchKeySet` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:681:17-47: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:685:25-37: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:687:20-32: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:692:25-37: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:727:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:731:33-53: No attribute `DispatchKeySet` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:741:13-52: No attribute `_set_throw_on_mutable_data_ptr` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:743:13-62: No attribute `_set_warn_deprecated_on_mutable_data_ptr` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:746:47-59: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:746:66-78: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:768:17-55: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:773:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:777:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:818:17-30: Module `torch._export` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:840:24-36: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:885:31-58: No attribute `_get_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:886:13-43: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:904:16-28: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:924:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:971:34-50: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:971:34-57: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:1000:29-41: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1020:12-20: Object of class `FakeTensor` has no attribute `dim` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1021:20-29: Object of class `FakeTensor` has no attribute `item` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1022:14-22: Object of class `FakeTensor` has no attribute `dim` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1037:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1040:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1041:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1042:29-48: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1065:48-58: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1096:35-48: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1334:26-56: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1394:13-40: No attribute `_get_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1394:41-71: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1409:42-73: No attribute `_only_lift_cpu_tensors` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1410:13-48: No attribute `_set_only_lift_cpu_tensors` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1415:13-47: No attribute `_ensureCUDADeviceGuardSet` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1417:32-61: No attribute `_unset_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1425:13-40: No attribute `_set_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1430:9-17: Class member `FakeTensorMode.__exit__` overrides parent class `TorchDispatchMode` in an inconsistent manner [bad-param-name-override] +ERROR torch/_subclasses/fake_tensor.py:1446:17-44: No attribute `_set_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1448:17-52: No attribute `_set_only_lift_cpu_tensors` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1581:22-43: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:1581:22-56: Module `torch.fx.experimental.proxy_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:1586:13-36: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1589:13-41: No attribute `_get_default_device` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1592:13-44: No attribute `is_inference_mode_enabled` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1648:12-21: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1651:12-21: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1664:25-35: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1665:25-35: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1672:12-21: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1690:29-75: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1691:26-46: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1875:25-51: No attribute `_dispatch_key_set` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:1876:19-45: No attribute `_dispatch_key_set` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:2031:21-40: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:2041:13-31: No attribute `_set_conj` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:2043:13-30: No attribute `_set_neg` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:2210:20-36: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:2210:20-43: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:2229:24-40: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:2229:24-47: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:2244:16-32: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:2244:16-39: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:2305:16-32: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:2305:16-39: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:2469:17-26: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:2470:17-26: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:2526:40-61: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:2528:24-37: Object of class `object` has no attribute `real_tensor` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:2635:24-40: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:2635:24-47: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:2883:46-55: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:2894:54-65: Object of class `object` has no attribute `fake_mode` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:2917:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:2975:15-35: Module `torch._dynamo.source` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:3008:12-21: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:3124:18-39: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:3124:18-52: Module `torch.fx.experimental.proxy_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_tensor.py:3149:8-17: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:3160:23-39: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:3188:17-33: Object of class `object` has no attribute `_typed_storage` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:3236:20-39: No attribute `TensorBase` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:3253:18-55: No attribute `DisableTorchFunctionSubclass` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:3257:48-60: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:3266:16-28: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_tensor.py:3397:16-35: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_utils.py:28:12-33: No attribute `_has_storage` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_utils.py:31:9-30: No attribute `_has_storage` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_utils.py:44:16-37: No attribute `_has_storage` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_utils.py:130:57-70: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_utils.py:157:22-33: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_utils.py:191:8-29: No attribute `_has_storage` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/fake_utils.py:197:5-17: Module `torch._prims` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_utils.py:240:20-48: Module `torch._subclasses.fake_impls` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/fake_utils.py:242:17-26: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_utils.py:243:17-26: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_utils.py:244:17-26: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_subclasses/fake_utils.py:276:58-67: `fake_args` may be uninitialized [unbound-name] +ERROR torch/_subclasses/fake_utils.py:276:69-80: `fake_kwargs` may be uninitialized [unbound-name] +ERROR torch/_subclasses/functional_tensor.py:13:22-76: Could not import `_functionalization_reapply_views_tls` from `torch._C` [missing-module-attribute] +ERROR torch/_subclasses/functional_tensor.py:66:17-47: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:75:28-81: No attribute `_additional_keys_to_prop_for_wrapper_tensors` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:76:9-29: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:102:16-43: No attribute `_is_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:121:53-76: No attribute `_dispatch_keys` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:146:9-48: No attribute `_set_throw_on_mutable_data_ptr` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:150:13-26: Module `torch._export` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/functional_tensor.py:151:17-48: No attribute `is_inference_mode_enabled` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:152:17-39: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/functional_tensor.py:194:29-58: No attribute `_from_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:197:25-54: No attribute `_from_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:216:20-47: No attribute `_is_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:221:24-51: No attribute `_to_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:228:46-76: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:239:16-45: No attribute `_from_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:242:16-48: No attribute `_is_functional_tensor_base` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:245:9-37: No attribute `_functionalize_replace` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:248:9-43: No attribute `_functionalize_commit_update` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:251:9-34: No attribute `_functionalize_sync` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:254:9-64: No attribute `_functionalize_mark_mutation_hidden_from_autograd` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:265:31-61: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:282:46-56: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:283:46-58: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:284:50-64: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:285:46-57: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:286:48-61: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:287:47-60: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:288:46-56: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:289:46-59: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:290:45-56: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:291:46-57: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:302:21-30: Object of class `FunctionalTensor` has no attribute `item` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:313:26-56: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:340:38-58: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:342:21-51: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:344:20-47: No attribute `_get_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:345:17-47: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:355:9-17: Class member `FunctionalTensorMode.__exit__` overrides parent class `TorchDispatchMode` in an inconsistent manner [bad-param-name-override] +ERROR torch/_subclasses/functional_tensor.py:429:17-46: No attribute `_dispatch_has_kernel` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:441:48-75: No attribute `_is_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:456:19-65: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:457:26-46: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:475:24-70: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:476:30-50: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:489:23-70: No attribute `_dispatch_tls_is_dispatch_key_included` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:490:13-33: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:492:23-70: No attribute `_dispatch_tls_is_dispatch_key_excluded` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:493:13-33: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:497:13-53: No attribute `_dispatch_tls_local_include_set` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:498:15-38: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:498:39-59: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:501:13-53: No attribute `_dispatch_tls_local_exclude_set` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:502:17-37: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:525:18-49: No attribute `_ForceDispatchKeyGuard` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:550:33-60: No attribute `_get_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:551:29-59: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:568:29-49: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:580:21-53: No attribute `_disable_functionalization` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:583:23-70: No attribute `_dispatch_tls_is_dispatch_key_included` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:584:13-33: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:586:23-70: No attribute `_dispatch_tls_is_dispatch_key_excluded` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:587:13-33: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:606:13-22: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:609:18-41: Module `torch.utils._mode_utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/functional_tensor.py:624:32-62: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:646:28-55: No attribute `_is_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:649:16-45: No attribute `_from_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:652:25-58: No attribute `_ExcludeDispatchKeyGuard` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:653:13-36: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:653:37-57: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:712:20-39: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/functional_tensor.py:719:16-35: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/functional_tensor.py:771:16-49: No attribute `_ExcludeDispatchKeyGuard` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:772:13-36: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:772:37-57: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:776:9-37: No attribute `_functionalize_replace` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:779:9-43: No attribute `_functionalize_commit_update` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:782:9-34: No attribute `_functionalize_sync` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:785:9-64: No attribute `_functionalize_mark_mutation_hidden_from_autograd` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:822:9-37: No attribute `_functionalize_replace` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:825:9-43: No attribute `_functionalize_commit_update` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:828:9-34: No attribute `_functionalize_sync` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:831:9-64: No attribute `_functionalize_mark_mutation_hidden_from_autograd` in module `torch` [missing-attribute] +ERROR torch/_subclasses/functional_tensor.py:836:16-45: No attribute `_from_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:85:16-22: Object of class `Tensor` has no attribute `grad` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:177:56-72: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:180:41-53: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:182:9-25: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:183:9-25: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:184:9-25: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:185:9-25: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:292:25-52: No attribute `_is_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:311:45-62: Object of class `TensorWithFlatten` has no attribute `untyped_storage` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:343:21-50: No attribute `_from_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:347:33-78: No attribute `_functionalization_reapply_views_tls` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:355:33-52: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:360:17-33: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:360:17-45: Module `torch._functorch.pyfunctorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:433:45-61: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:433:63-79: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:438:45-61: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:438:63-79: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:443:45-61: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:443:63-79: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:448:45-61: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:448:63-79: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:462:17-35: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:582:68-80: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:587:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:607:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:608:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:626:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:626:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:721:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:721:45-56: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:721:58-70: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:835:19-837:30: Object of class `Tensor` has no attribute `untyped_storage` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:836:25-36: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:836:51-62: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:858:32-44: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:864:17-36: Module `torch._C._functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:902:20-60: No attribute `_dispatch_tls_local_exclude_set` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:903:13-33: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:937:18-31: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:939:17-38: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:939:17-54: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:976:24-37: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:978:17-38: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:978:17-54: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:986:20-39: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1000:17-38: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1000:17-54: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1002:30-43: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1034:21-42: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1034:21-58: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1037:25-38: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1059:33-54: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1059:33-70: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1090:20-29: Object of class `Tensor` has no attribute `shape` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1094:20-30: Object of class `Tensor` has no attribute `stride` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1096:61-71: Object of class `Tensor` has no attribute `stride` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1107:21-34: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1108:33-54: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1108:33-70: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1110:14-35: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1110:14-51: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1119:17-38: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1119:17-54: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1127:33-54: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1127:33-70: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1132:26-47: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1132:26-63: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1188:17-38: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1188:17-54: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1273:25-46: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1273:25-62: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1369:29-42: Object of class `Tensor` has no attribute `_coalesced_` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1373:37-53: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1373:55-71: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1381:37-53: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1381:55-71: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1435:33-52: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1444:45-64: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1483:34-50: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1483:34-62: Module `torch._functorch.pyfunctorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1492:49-75: No attribute `_DisableFuncTorch` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1499:38-54: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1499:38-66: Module `torch._functorch.pyfunctorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1503:41-60: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1535:41-60: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1569:25-52: No attribute `_to_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1598:25-45: Module `torch._dynamo.source` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1603:40-51: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1603:65-76: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1616:35-82: No attribute `_dispatch_tls_is_dispatch_key_excluded` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1617:25-45: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1619:21-69: No attribute `_dispatch_tls_set_dispatch_key_excluded` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1620:25-45: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1623:28-38: Object of class `Tensor` has no attribute `dtype` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1626:64-82: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1629:33-54: No attribute `view_as_complex` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1635:64-73: Object of class `Tensor` has no attribute `view` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1678:41-50: Object of class `Tensor` has no attribute `view` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1678:51-61: Object of class `Tensor` has no attribute `shape` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1687:25-43: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1689:25-73: No attribute `_dispatch_tls_set_dispatch_key_excluded` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1690:29-49: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1720:37-56: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1732:49-68: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1756:25-36: Object of class `Tensor` has no attribute `is_nested` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1758:29-37: Object of class `Tensor` has no attribute `stride` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1759:33-49: Object of class `Tensor` has no attribute `storage_offset` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1763:50-67: Object of class `Tensor` has no attribute `untyped_storage` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1766:36-49: Object of class `Tensor` has no attribute `real_tensor` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1768:33-50: Object of class `Tensor` has no attribute `untyped_storage` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1768:54-83: Object of class `object` has no attribute `untyped_storage` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1812:33-39: Object of class `Tensor` has no attribute `set_` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1816:44-57: Object of class `Tensor` has no attribute `real_tensor` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1818:37-55: Object of class `object` has no attribute `set_` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1831:21-27: Object of class `Tensor` has no attribute `grad` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1839:17-35: No attribute `_set_conj` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1841:17-34: No attribute `_set_neg` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1855:17-34: Object of class `Tensor` has no attribute `untyped_storage` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1866:17-34: Object of class `Tensor` has no attribute `nested_int_memo` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1866:37-48: Object of class `Tensor` has no attribute `fake_mode` [missing-attribute] +ERROR torch/_subclasses/meta_utils.py:1948:38-53: Module `torch._dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1948:38-60: Module `torch._dispatch.python` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1952:21-37: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/meta_utils.py:1952:21-49: Module `torch._functorch.pyfunctorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_subclasses/schema_check_mode.py:19:18-42: No attribute `_SchemaArgument` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/schema_check_mode.py:20:17-40: No attribute `_SchemaArgType` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/schema_check_mode.py:21:14-34: No attribute `_SchemaInfo` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/schema_check_mode.py:84:24-35: No attribute `equal` in module `torch` [missing-attribute] +ERROR torch/_subclasses/schema_check_mode.py:86:24-38: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/_subclasses/schema_check_mode.py:92:38-54: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_subclasses/schema_check_mode.py:93:37-53: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_subclasses/schema_check_mode.py:105:24-42: No attribute `_overlaps` in module `torch._C` [missing-attribute] +ERROR torch/_subclasses/schema_check_mode.py:135:34-50: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_subclasses/schema_check_mode.py:142:25-144:17: Object of class `NoneType` has no attribute `kwargs` [missing-attribute] +ERROR torch/_subclasses/schema_check_mode.py:208:39-210:22: No matching overload found for function `zip.__new__` called with arguments: (type[zip[_T_co]], list[Any], list[Any], list[Unknown] | None) [no-matching-overload] +ERROR torch/_tensor.py:34:44-57: No attribute `TensorBase` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:85:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:86:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:87:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:88:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:89:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:90:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:91:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:92:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:93:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:94:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:95:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:96:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:97:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:98:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:99:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:110:14-33: No attribute `TensorBase` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:143:16-28: Object of class `Tensor` has no attribute `is_leaf` [missing-attribute] +ERROR torch/_tensor.py:160:17-31: Object of class `Tensor` has no attribute `is_sparse` [missing-attribute] +ERROR torch/_tensor.py:161:20-31: Object of class `Tensor` has no attribute `device` [missing-attribute] +ERROR torch/_tensor.py:164:25-46: No attribute `_has_storage` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:165:25-36: Object of class `Tensor` has no attribute `device` [missing-attribute] +ERROR torch/_tensor.py:165:45-83: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:167:50-63: Object of class `Tensor` has no attribute `data_ptr` [missing-attribute] +ERROR torch/_tensor.py:169:30-40: Object of class `Tensor` has no attribute `clone` [missing-attribute] +ERROR torch/_tensor.py:181:20-37: Object of class `Tensor` has no attribute `is_quantized` [missing-attribute] +ERROR torch/_tensor.py:184:31-44: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:185:31-44: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:187:24-36: Object of class `Tensor` has no attribute `qscheme` [missing-attribute] +ERROR torch/_tensor.py:187:42-65: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:189:29-41: Object of class `Tensor` has no attribute `qscheme` [missing-attribute] +ERROR torch/_tensor.py:190:29-41: Object of class `Tensor` has no attribute `q_scale` [missing-attribute] +ERROR torch/_tensor.py:191:29-46: Object of class `Tensor` has no attribute `q_zero_point` [missing-attribute] +ERROR torch/_tensor.py:193:26-38: Object of class `Tensor` has no attribute `qscheme` [missing-attribute] +ERROR torch/_tensor.py:194:25-49: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:195:25-63: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:198:29-41: Object of class `Tensor` has no attribute `qscheme` [missing-attribute] +ERROR torch/_tensor.py:199:29-54: Object of class `Tensor` has no attribute `q_per_channel_scales` [missing-attribute] +ERROR torch/_tensor.py:200:29-59: Object of class `Tensor` has no attribute `q_per_channel_zero_points` [missing-attribute] +ERROR torch/_tensor.py:201:29-52: Object of class `Tensor` has no attribute `q_per_channel_axis` [missing-attribute] +ERROR torch/_tensor.py:205:52-64: Object of class `Tensor` has no attribute `qscheme` [missing-attribute] +ERROR torch/_tensor.py:212:35-45: Object of class `Tensor` has no attribute `dtype` [missing-attribute] +ERROR torch/_tensor.py:215:25-44: Object of class `Tensor` has no attribute `storage_offset` [missing-attribute] +ERROR torch/_tensor.py:216:25-34: Object of class `Tensor` has no attribute `size` [missing-attribute] +ERROR torch/_tensor.py:217:25-36: Object of class `Tensor` has no attribute `stride` [missing-attribute] +ERROR torch/_tensor.py:230:34-48: Object of class `Tensor` has no attribute `new_empty` [missing-attribute] +ERROR torch/_tensor.py:241:38-57: Object of class `Tensor` has no attribute `storage_offset` [missing-attribute] +ERROR torch/_tensor.py:241:61-70: Object of class `Tensor` has no attribute `size` [missing-attribute] +ERROR torch/_tensor.py:241:74-85: Object of class `Tensor` has no attribute `stride` [missing-attribute] +ERROR torch/_tensor.py:243:24-36: Object of class `Tensor` has no attribute `is_conj` [missing-attribute] +ERROR torch/_tensor.py:245:24-35: Object of class `Tensor` has no attribute `is_neg` [missing-attribute] +ERROR torch/_tensor.py:249:16-25: Object of class `Tensor` has no attribute `grad` [missing-attribute] +ERROR torch/_tensor.py:250:35-57: Object of class `object` has no attribute `__deepcopy__` [missing-attribute] +ERROR torch/_tensor.py:316:27-47: Object of class `Tensor` has no attribute `untyped_storage` [missing-attribute] +ERROR torch/_tensor.py:318:49-59: Object of class `Tensor` has no attribute `dtype` [missing-attribute] +ERROR torch/_tensor.py:335:12-23: Object of class `Tensor` has no attribute `device` [missing-attribute] +ERROR torch/_tensor.py:336:17-38: No attribute `_has_storage` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:337:17-28: Object of class `Tensor` has no attribute `device` [missing-attribute] +ERROR torch/_tensor.py:337:37-75: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:343:26-34: Object of class `Tensor` has no attribute `cpu` [missing-attribute] +ERROR torch/_tensor.py:346:30-40: Object of class `Tensor` has no attribute `dtype` [missing-attribute] +ERROR torch/_tensor.py:346:46-57: Object of class `Tensor` has no attribute `device` [missing-attribute] +ERROR torch/_tensor.py:348:12-23: Object of class `Tensor` has no attribute `device` [missing-attribute] +ERROR torch/_tensor.py:357:17-27: Object of class `Tensor` has no attribute `dtype` [missing-attribute] +ERROR torch/_tensor.py:358:23-32: Object of class `Tensor` has no attribute `size` [missing-attribute] +ERROR torch/_tensor.py:359:17-28: Object of class `Tensor` has no attribute `stride` [missing-attribute] +ERROR torch/_tensor.py:363:12-29: Object of class `Tensor` has no attribute `is_quantized` [missing-attribute] +ERROR torch/_tensor.py:370:23-36: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:372:16-28: Object of class `Tensor` has no attribute `qscheme` [missing-attribute] +ERROR torch/_tensor.py:372:34-57: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:374:21-44: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:375:21-33: Object of class `Tensor` has no attribute `q_scale` [missing-attribute] +ERROR torch/_tensor.py:376:21-38: Object of class `Tensor` has no attribute `q_zero_point` [missing-attribute] +ERROR torch/_tensor.py:378:18-30: Object of class `Tensor` has no attribute `qscheme` [missing-attribute] +ERROR torch/_tensor.py:379:17-41: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:380:17-55: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:386:21-45: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:387:21-46: Object of class `Tensor` has no attribute `q_per_channel_scales` [missing-attribute] +ERROR torch/_tensor.py:388:21-51: Object of class `Tensor` has no attribute `q_per_channel_zero_points` [missing-attribute] +ERROR torch/_tensor.py:389:21-44: Object of class `Tensor` has no attribute `q_per_channel_axis` [missing-attribute] +ERROR torch/_tensor.py:393:75-87: Object of class `Tensor` has no attribute `qscheme` [missing-attribute] +ERROR torch/_tensor.py:400:27-37: Object of class `Tensor` has no attribute `dtype` [missing-attribute] +ERROR torch/_tensor.py:403:17-36: Object of class `Tensor` has no attribute `storage_offset` [missing-attribute] +ERROR torch/_tensor.py:404:23-32: Object of class `Tensor` has no attribute `size` [missing-attribute] +ERROR torch/_tensor.py:405:17-28: Object of class `Tensor` has no attribute `stride` [missing-attribute] +ERROR torch/_tensor.py:411:14-28: Object of class `Tensor` has no attribute `is_sparse` [missing-attribute] +ERROR torch/_tensor.py:412:16-27: Object of class `Tensor` has no attribute `layout` [missing-attribute] +ERROR torch/_tensor.py:412:31-47: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:415:22-35: Object of class `Tensor` has no attribute `_indices` [missing-attribute] +ERROR torch/_tensor.py:415:39-51: Object of class `Tensor` has no attribute `_values` [missing-attribute] +ERROR torch/_tensor.py:415:55-64: Object of class `Tensor` has no attribute `size` [missing-attribute] +ERROR torch/_tensor.py:415:68-85: Object of class `Tensor` has no attribute `is_coalesced` [missing-attribute] +ERROR torch/_tensor.py:422:14-25: Object of class `Tensor` has no attribute `layout` [missing-attribute] +ERROR torch/_tensor.py:423:13-29: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:424:13-29: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:425:13-29: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:426:13-29: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:428:32-48: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:428:50-66: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:430:21-38: Object of class `Tensor` has no attribute `crow_indices` [missing-attribute] +ERROR torch/_tensor.py:431:21-37: Object of class `Tensor` has no attribute `col_indices` [missing-attribute] +ERROR torch/_tensor.py:435:21-38: Object of class `Tensor` has no attribute `ccol_indices` [missing-attribute] +ERROR torch/_tensor.py:436:21-37: Object of class `Tensor` has no attribute `row_indices` [missing-attribute] +ERROR torch/_tensor.py:443:21-32: Object of class `Tensor` has no attribute `values` [missing-attribute] +ERROR torch/_tensor.py:444:21-30: Object of class `Tensor` has no attribute `size` [missing-attribute] +ERROR torch/_tensor.py:448:14-28: Object of class `Tensor` has no attribute `is_nested` [missing-attribute] +ERROR torch/_tensor.py:457:17-28: Object of class `Tensor` has no attribute `values` [missing-attribute] +ERROR torch/_tensor.py:458:17-41: Object of class `Tensor` has no attribute `_nested_tensor_size` [missing-attribute] +ERROR torch/_tensor.py:459:17-44: Object of class `Tensor` has no attribute `_nested_tensor_strides` [missing-attribute] +ERROR torch/_tensor.py:460:17-52: Object of class `Tensor` has no attribute `_nested_tensor_storage_offsets` [missing-attribute] +ERROR torch/_tensor.py:467:34-69: Module `torch._subclasses.functional_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_tensor.py:506:16-26: Object of class `Tensor` has no attribute `dtype` [missing-attribute] +ERROR torch/_tensor.py:508:27-47: Object of class `Tensor` has no attribute `untyped_storage` [missing-attribute] +ERROR torch/_tensor.py:530:17-36: Object of class `Tensor` has no attribute `storage_offset` [missing-attribute] +ERROR torch/_tensor.py:531:23-32: Object of class `Tensor` has no attribute `size` [missing-attribute] +ERROR torch/_tensor.py:532:17-28: Object of class `Tensor` has no attribute `stride` [missing-attribute] +ERROR torch/_tensor.py:551:16-28: Object of class `Tensor` has no attribute `is_leaf` [missing-attribute] +ERROR torch/_tensor.py:556:13-22: Object of class `Tensor` has no attribute `set_` [missing-attribute] +ERROR torch/_tensor.py:702:16-28: Object of class `Tensor` has no attribute `grad_fn` [missing-attribute] +ERROR torch/_tensor.py:703:17-49: Object of class `object` has no attribute `_register_hook_dict` [missing-attribute] +ERROR torch/_tensor.py:757:12-24: Object of class `Tensor` has no attribute `grad_fn` [missing-attribute] +ERROR torch/_tensor.py:804:14-28: No attribute `_add_docstr` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:805:9-22: No attribute `TensorBase` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:822:15-29: No attribute `_add_docstr` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:823:9-22: No attribute `TensorBase` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:883:20-30: Object of class `Tensor` has no attribute `copy_` [missing-attribute] +ERROR torch/_tensor.py:889:12-20: Object of class `Tensor` has no attribute `dim` [missing-attribute] +ERROR torch/_tensor.py:892:20-29: Object of class `Tensor` has no attribute `flip` [missing-attribute] +ERROR torch/_tensor.py:936:29-48: No attribute `_lu_with_info` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:1065:20-46: No attribute `split_with_sizes` in module `torch._VF` [missing-attribute] +ERROR torch/_tensor.py:1115:16-37: No attribute `_VariableFunctions` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:1119:16-31: Object of class `Tensor` has no attribute `reciprocal` [missing-attribute] +ERROR torch/_tensor.py:1122:20-33: No attribute `TensorBase` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:1127:15-34: No attribute `TensorBase` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:1131:13-26: No attribute `TensorBase` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:1136:9-22: No attribute `TensorBase` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:1141:16-31: No attribute `remainder` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:1146:12-20: Object of class `Tensor` has no attribute `dim` [missing-attribute] +ERROR torch/_tensor.py:1146:36-48: Object of class `Tensor` has no attribute `is_meta` [missing-attribute] +ERROR torch/_tensor.py:1154:16-25: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:1160:16-34: No attribute `floor_divide` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:1164:16-34: No attribute `floor_divide` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:1170:16-40: No attribute `bitwise_left_shift` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:1176:16-41: No attribute `bitwise_right_shift` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:1180:16-28: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:1182:15-28: No attribute `TensorBase` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:1183:15-28: No attribute `TensorBase` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:1184:15-28: No attribute `TensorBase` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:1189:12-20: Object of class `Tensor` has no attribute `dim` [missing-attribute] +ERROR torch/_tensor.py:1191:12-39: No attribute `_get_tracing_state` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:1200:16-26: Object of class `Tensor` has no attribute `shape` [missing-attribute] +ERROR torch/_tensor.py:1211:12-20: Object of class `Tensor` has no attribute `dim` [missing-attribute] +ERROR torch/_tensor.py:1213:12-39: No attribute `_get_tracing_state` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:1222:21-32: Object of class `Tensor` has no attribute `unbind` [missing-attribute] +ERROR torch/_tensor.py:1240:17-29: Object of class `Tensor` has no attribute `is_cuda` [missing-attribute] +ERROR torch/_tensor.py:1240:34-48: Object of class `Tensor` has no attribute `is_sparse` [missing-attribute] +ERROR torch/_tensor.py:1252:20-30: Object of class `Tensor` has no attribute `numpy` [missing-attribute] +ERROR torch/_tensor.py:1254:20-30: Object of class `Tensor` has no attribute `numpy` [missing-attribute] +ERROR torch/_tensor.py:1266:16-32: No attribute `from_numpy` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:1304:16-28: Object of class `Tensor` has no attribute `is_cuda` [missing-attribute] +ERROR torch/_tensor.py:1306:80-89: Object of class `Tensor` has no attribute `type` [missing-attribute] +ERROR torch/_tensor.py:1310:12-26: Object of class `Tensor` has no attribute `is_sparse` [missing-attribute] +ERROR torch/_tensor.py:1312:71-80: Object of class `Tensor` has no attribute `type` [missing-attribute] +ERROR torch/_tensor.py:1323:37-47: Object of class `Tensor` has no attribute `dtype` [missing-attribute] +ERROR torch/_tensor.py:1324:20-37: Object of class `Tensor` has no attribute `element_size` [missing-attribute] +ERROR torch/_tensor.py:1325:23-33: Object of class `Tensor` has no attribute `shape` [missing-attribute] +ERROR torch/_tensor.py:1326:12-30: Object of class `Tensor` has no attribute `is_contiguous` [missing-attribute] +ERROR torch/_tensor.py:1331:51-62: Object of class `Tensor` has no attribute `stride` [missing-attribute] +ERROR torch/_tensor.py:1332:20-33: Object of class `Tensor` has no attribute `data_ptr` [missing-attribute] +ERROR torch/_tensor.py:1332:39-49: Object of class `Tensor` has no attribute `numel` [missing-attribute] +ERROR torch/_tensor.py:1391:41-51: Object of class `Tensor` has no attribute `names` [missing-attribute] +ERROR torch/_tensor.py:1529:16-30: Object of class `Tensor` has no attribute `to_sparse` [missing-attribute] +ERROR torch/_tensor.py:1532:52-71: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:1584:12-26: Object of class `Tensor` has no attribute `is_sparse` [missing-attribute] +ERROR torch/_tensor.py:1586:56-65: Object of class `Tensor` has no attribute `type` [missing-attribute] +ERROR torch/_tensor.py:1597:50-69: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:1703:14-45: No attribute `DisableTorchFunctionSubclass` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:1710:26-58: No attribute `_disabled_torch_dispatch_impl` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:1768:12-24: Object of class `Tensor` has no attribute `is_conj` [missing-attribute] +ERROR torch/_tensor.py:1770:12-23: Object of class `Tensor` has no attribute `layout` [missing-attribute] +ERROR torch/_tensor.py:1770:27-40: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_tensor.py:1776:13-24: Object of class `Tensor` has no attribute `device` [missing-attribute] +ERROR torch/_tensor.py:1777:17-28: Object of class `Tensor` has no attribute `device` [missing-attribute] +ERROR torch/_tensor.py:1781:30-41: Object of class `Tensor` has no attribute `device` [missing-attribute] +ERROR torch/_tensor.py:1789:14-25: Object of class `Tensor` has no attribute `device` [missing-attribute] +ERROR torch/_tensor.py:1815:14-25: Object of class `Tensor` has no attribute `device` [missing-attribute] +ERROR torch/_tensor.py:1818:12-23: Object of class `Tensor` has no attribute `device` [missing-attribute] +ERROR torch/_tensor.py:1819:20-29: Could not find import of `torch_xla` [missing-import] +ERROR torch/_tensor.py:1820:20-56: Could not find import of `torch_xla.utils.dlpack` [missing-import] +ERROR torch/_tensor.py:1835:20-33: No attribute `_to_dlpack` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:1837:16-39: No attribute `_to_dlpack_versioned` in module `torch._C` [missing-attribute] +ERROR torch/_tensor.py:1845:18-29: Object of class `Tensor` has no attribute `device` [missing-attribute] +ERROR torch/_tensor.py:1850:45-59: Object of class `Tensor` has no attribute `is_pinned` [missing-attribute] +ERROR torch/_tensor.py:1858:14-25: Object of class `Tensor` has no attribute `device` [missing-attribute] +ERROR torch/_tensor.py:1861:20-29: Could not find import of `torch_xla` [missing-import] +ERROR torch/_tensor_docs.py:5:22-47: Could not import `_add_docstr` from `torch._C` [missing-module-attribute] +ERROR torch/_tensor_docs.py:10:24-43: No attribute `TensorBase` in module `torch._C` [missing-attribute] +ERROR torch/_tensor_str.py:119:9-20: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:125:14-26: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:152:48-59: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:154:35-54: No attribute `masked_select` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:155:30-44: No attribute `isfinite` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:177:29-39: No attribute `ceil` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:271:26-37: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:355:9-26: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:356:9-30: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:357:9-28: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:358:9-30: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:401:20-29: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:411:16-27: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:413:16-27: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:417:8-27: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_tensor_str.py:445:29-57: No attribute `_get_default_device` in module `torch._C` [missing-attribute] +ERROR torch/_tensor_str.py:462:9-22: No attribute `cdouble` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:462:26-49: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:462:55-67: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:462:73-85: No attribute `cfloat` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:465:9-32: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:467:9-20: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:468:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:506:9-25: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:507:9-25: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:508:9-25: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:509:9-25: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:521:17-33: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:522:17-33: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:523:17-33: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:524:17-33: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:526:32-48: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:526:50-66: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:579:31-54: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:580:34-60: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:585:31-55: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:586:34-61: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:587:34-72: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:605:10-37: No attribute `_is_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:607:27-56: No attribute `_from_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:614:30-53: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:628:34-57: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:640:39-52: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:645:23-36: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/_tensor_str.py:695:13-32: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_tensor_str.py:698:8-27: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_tensor_str.py:703:13-32: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_tensor_str.py:707:8-27: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_tensor_str.py:708:16-35: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_tensor_str.py:713:8-27: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_tensor_str.py:715:8-27: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_tensor_str.py:722:27-55: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_tensor_str.py:723:17-43: No attribute `_DisableFuncTorch` in module `torch._C` [missing-attribute] +ERROR torch/_torch_docs.py:7:22-47: Could not import `_add_docstr` from `torch._C` [missing-module-attribute] +ERROR torch/_torch_docs.py:220:5-14: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:244:5-19: No attribute `absolute` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:253:5-15: No attribute `acos` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:280:5-17: No attribute `arccos` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:289:5-16: No attribute `acosh` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:320:5-18: No attribute `arccosh` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:329:5-20: No attribute `index_add` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:338:5-21: No attribute `index_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:347:5-23: No attribute `index_reduce` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:356:5-14: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:404:5-17: No attribute `addbmm` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:459:5-18: No attribute `addcdiv` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:508:5-18: No attribute `addcmul` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:548:5-16: No attribute `addmm` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:608:5-18: No attribute `adjoint` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:635:5-19: No attribute `sspaddmm` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:658:5-14: No attribute `smm` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:672:5-16: No attribute `addmv` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:719:5-15: No attribute `addr` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:766:5-19: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:800:5-14: No attribute `all` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:861:5-14: No attribute `any` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:922:5-16: No attribute `angle` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:951:5-21: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:994:5-20: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1047:5-15: No attribute `asin` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1074:5-17: No attribute `arcsin` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1083:5-16: No attribute `asinh` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1110:5-18: No attribute `arcsinh` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1119:5-15: No attribute `atan` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1146:5-17: No attribute `arctan` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1155:5-16: No attribute `atan2` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1187:5-18: No attribute `arctan2` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1195:5-16: No attribute `atanh` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1227:5-18: No attribute `arctanh` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1236:5-18: No attribute `asarray` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1348:5-18: No attribute `baddbmm` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1404:5-20: No attribute `bernoulli` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1462:5-19: No attribute `bincount` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1506:5-22: No attribute `bitwise_not` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1527:5-14: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1573:5-22: No attribute `bitwise_and` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1597:5-21: No attribute `bitwise_or` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1621:5-22: No attribute `bitwise_xor` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1645:5-29: No attribute `bitwise_left_shift` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1674:5-30: No attribute `bitwise_right_shift` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1705:5-23: No attribute `broadcast_to` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1727:5-16: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1787:5-17: No attribute `hstack` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1818:5-17: No attribute `vstack` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1854:5-17: No attribute `dstack` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1888:5-23: No attribute `tensor_split` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:1952:5-16: No attribute `chunk` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2005:5-23: No attribute `unsafe_chunk` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2022:5-23: No attribute `unsafe_split` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2039:5-17: No attribute `hsplit` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2092:5-17: No attribute `vsplit` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2134:5-17: No attribute `dsplit` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2185:5-19: No attribute `can_cast` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2206:5-19: No attribute `corrcoef` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2253:5-14: No attribute `cov` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2333:5-14: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2381:5-17: No attribute `concat` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2390:5-22: No attribute `concatenate` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2399:5-15: No attribute `ceil` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2430:5-15: No attribute `real` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2452:5-15: No attribute `imag` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2477:5-23: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2506:5-26: No attribute `view_as_complex` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2540:5-21: No attribute `reciprocal` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2572:5-19: No attribute `cholesky` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2654:5-25: No attribute `cholesky_solve` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2719:5-27: No attribute `cholesky_inverse` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2775:5-16: No attribute `clone` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2802:5-16: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2845:5-15: No attribute `clip` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2854:5-23: No attribute `column_stack` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2890:5-18: No attribute `complex` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2921:5-16: No attribute `polar` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2964:5-24: No attribute `conj_physical` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:2996:5-15: No attribute `conj` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3026:5-23: No attribute `resolve_conj` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3051:5-22: No attribute `resolve_neg` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3077:5-19: No attribute `copysign` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3135:5-14: No attribute `cos` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3162:5-15: No attribute `cosh` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3195:5-16: No attribute `cross` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3254:5-23: No attribute `logcumsumexp` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3282:5-17: No attribute `cummax` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3314:5-17: No attribute `cummin` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3346:5-18: No attribute `cumprod` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3385:5-17: No attribute `cumsum` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3417:5-24: No attribute `count_nonzero` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3444:5-21: No attribute `dequantize` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3464:5-15: No attribute `diag` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3525:5-21: No attribute `diag_embed` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3589:5-19: No attribute `diagflat` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3637:5-19: No attribute `diagonal` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3702:5-27: No attribute `diagonal_scatter` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3756:5-29: No attribute `as_strided_scatter` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3799:5-15: No attribute `diff` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3839:5-18: No attribute `digamma` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3848:5-15: No attribute `dist` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3882:5-14: No attribute `div` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3950:5-17: No attribute `divide` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3959:5-14: No attribute `dot` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:3989:5-15: No attribute `vdot` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4038:5-13: No attribute `eq` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4066:5-16: No attribute `equal` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4090:5-14: No attribute `erf` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4099:5-15: No attribute `erfc` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4108:5-17: No attribute `erfinv` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4117:5-14: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4142:5-15: No attribute `exp2` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4151:5-16: No attribute `expm1` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4160:5-14: No attribute `eye` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4190:5-16: No attribute `floor` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4221:5-23: No attribute `floor_divide` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4261:5-15: No attribute `fmod` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4312:5-15: No attribute `frac` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4329:5-16: No attribute `frexp` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4361:5-21: No attribute `from_numpy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4392:5-21: No attribute `frombuffer` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4466:5-20: No attribute `from_file` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4506:5-18: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4542:5-20: No attribute `unflatten` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4575:5-17: No attribute `gather` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4614:5-14: No attribute `gcd` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4645:5-13: No attribute `ge` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4674:5-24: No attribute `greater_equal` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4683:5-19: No attribute `gradient` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4810:5-16: No attribute `geqrf` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4846:5-16: No attribute `inner` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4907:5-16: No attribute `outer` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4937:5-14: No attribute `ger` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4950:5-28: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4968:5-26: No attribute `get_num_threads` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4977:5-34: No attribute `get_num_interop_threads` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:4987:5-13: No attribute `gt` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5016:5-18: No attribute `greater` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5025:5-22: No attribute `hash_tensor` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5079:5-16: No attribute `histc` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5111:5-20: No attribute `histogram` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5156:5-22: No attribute `histogramdd` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5248:1-18: No attribute `histogramdd` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5251:5-16: No attribute `hypot` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5280:5-13: No attribute `i0` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5289:5-17: No attribute `igamma` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5298:5-18: No attribute `igammac` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5307:5-23: No attribute `index_select` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5350:5-18: No attribute `inverse` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5359:5-15: No attribute `isin` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5391:5-16: No attribute `isinf` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5416:5-19: No attribute `isposinf` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5436:5-19: No attribute `isneginf` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5456:5-18: No attribute `isclose` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5491:5-19: No attribute `isfinite` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5514:5-16: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5536:5-17: No attribute `isreal` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5557:5-28: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5581:5-21: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5605:5-26: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5614:5-36: No attribute `is_inference_mode_enabled` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5623:5-23: No attribute `is_inference` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5642:5-18: No attribute `is_conj` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5654:5-21: No attribute `is_nonzero` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5690:5-15: No attribute `kron` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5750:5-19: No attribute `kthvalue` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5799:5-14: No attribute `lcm` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5830:5-16: No attribute `ldexp` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5864:5-13: No attribute `le` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5894:5-21: No attribute `less_equal` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5903:5-15: No attribute `lerp` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5942:5-17: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:5967:5-19: No attribute `linspace` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6015:5-14: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6044:5-16: No attribute `log10` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6076:5-16: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6106:5-15: No attribute `log2` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6138:5-20: No attribute `logaddexp` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6172:5-21: No attribute `logaddexp2` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6191:5-16: No attribute `xlogy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6200:5-22: No attribute `logical_and` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6232:5-22: No attribute `logical_not` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6259:5-21: No attribute `logical_or` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6291:5-22: No attribute `logical_xor` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6323:5-19: No attribute `logspace` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6377:5-20: No attribute `logsumexp` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6411:5-13: No attribute `lt` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6440:5-20: No attribute `lu_unpack` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6490:5-15: No attribute `less` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6499:5-19: No attribute `lu_solve` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6544:5-24: No attribute `masked_select` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6582:5-23: No attribute `matrix_power` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6591:5-21: No attribute `matrix_exp` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6600:5-14: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6685:5-18: No attribute `maximum` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6712:5-15: No attribute `fmax` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6744:5-15: No attribute `amax` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6787:5-17: No attribute `argmax` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6839:5-19: No attribute `argwhere` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6876:5-15: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6944:5-18: No attribute `nanmean` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:6990:5-17: No attribute `median` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7065:5-20: No attribute `nanmedian` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7122:5-19: No attribute `quantile` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7194:5-22: No attribute `nanquantile` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7234:5-14: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7309:5-18: No attribute `minimum` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7336:5-15: No attribute `fmin` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7368:5-15: No attribute `amin` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7411:5-18: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7475:5-17: No attribute `argmin` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7512:5-13: No attribute `mm` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7558:5-16: No attribute `hspmm` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7577:5-17: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7661:5-15: No attribute `mode` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7700:5-14: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7748:5-19: No attribute `multiply` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7757:5-22: No attribute `multinomial` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7812:5-13: No attribute `mv` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7841:5-19: No attribute `mvlgamma` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7850:5-18: No attribute `movedim` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7897:5-19: No attribute `moveaxis` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7937:5-19: No attribute `swapdims` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:7970:5-19: No attribute `swapaxes` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8003:5-17: No attribute `narrow` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8037:5-22: No attribute `narrow_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8084:5-21: No attribute `nan_to_num` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8121:5-13: No attribute `ne` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8150:5-20: No attribute `not_equal` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8159:5-14: No attribute `neg` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8186:5-19: No attribute `negative` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8195:5-20: No attribute `nextafter` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8221:5-18: No attribute `nonzero` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8303:5-17: No attribute `normal` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8397:5-16: No attribute `numel` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8419:5-15: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8450:5-20: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8483:5-16: No attribute `orgqr` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8492:5-16: No attribute `ormqr` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8536:5-18: No attribute `permute` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8556:5-18: No attribute `poisson` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8587:5-20: No attribute `polygamma` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8596:5-19: No attribute `positive` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8618:5-14: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8694:5-22: No attribute `float_power` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8736:5-15: No attribute `prod` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8786:5-24: No attribute `promote_types` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8809:5-13: No attribute `qr` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8893:5-18: No attribute `rad2deg` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8918:5-18: No attribute `deg2rad` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8943:5-20: No attribute `heaviside` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:8980:5-15: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9015:5-20: No attribute `rand_like` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9041:5-18: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9089:5-23: No attribute `randint_like` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9120:5-16: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9176:5-21: No attribute `randn_like` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9202:5-19: No attribute `randperm` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9231:5-17: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9286:5-16: No attribute `range` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9328:5-17: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9378:5-16: No attribute `ravel` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9399:5-20: No attribute `remainder` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9444:5-17: No attribute `renorm` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9482:5-18: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9515:5-22: No attribute `result_type` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9537:5-20: No attribute `row_stack` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9546:5-16: No attribute `round` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9602:5-16: No attribute `rsqrt` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9630:5-18: No attribute `scatter` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9639:5-22: No attribute `scatter_add` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9648:5-25: No attribute `scatter_reduce` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9685:5-17: No attribute `select` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9711:5-25: No attribute `select_scatter` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9742:5-24: No attribute `slice_scatter` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9787:5-29: No attribute `set_flush_denormal` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9815:5-26: No attribute `set_num_threads` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9828:5-34: No attribute `set_num_interop_threads` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9842:5-18: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9851:5-16: No attribute `logit` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9860:5-15: No attribute `sign` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9887:5-18: No attribute `signbit` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9915:5-14: No attribute `sgn` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9948:5-14: No attribute `sin` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9976:5-15: No attribute `sinc` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:9985:5-15: No attribute `sinh` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10018:5-15: No attribute `sort` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10083:5-18: No attribute `argsort` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10124:5-16: No attribute `msort` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10155:5-35: No attribute `sparse_compressed_tensor` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10228:5-28: No attribute `sparse_csr_tensor` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10289:5-28: No attribute `sparse_csc_tensor` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10352:5-28: No attribute `sparse_bsr_tensor` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10420:5-28: No attribute `sparse_bsc_tensor` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10487:5-28: No attribute `sparse_coo_tensor` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10585:5-15: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10612:5-17: No attribute `square` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10635:5-18: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10685:5-14: No attribute `std` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10740:5-19: No attribute `std_mean` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10797:5-14: No attribute `sub` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10829:5-19: No attribute `subtract` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10838:5-14: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10895:5-17: No attribute `nansum` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:10945:5-14: No attribute `svd` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11080:5-12: No attribute `t` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11119:5-15: No attribute `flip` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11153:5-17: No attribute `fliplr` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11186:5-17: No attribute `flipud` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11219:5-15: No attribute `roll` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11268:5-16: No attribute `rot90` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11307:5-15: No attribute `take` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11329:5-25: No attribute `take_along_dim` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11366:5-14: No attribute `tan` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11394:5-15: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11423:5-18: No attribute `softmax` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11432:5-15: No attribute `topk` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11478:5-16: No attribute `trace` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11497:5-20: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11547:5-27: No attribute `triangular_solve` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11621:5-15: No attribute `tril` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11681:5-23: No attribute `tril_indices` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11738:5-15: No attribute `triu` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11806:5-23: No attribute `triu_indices` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11863:5-22: No attribute `true_divide` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11872:5-16: No attribute `trunc` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11899:5-42: No attribute `fake_quantize_per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11940:5-43: No attribute `fake_quantize_per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:11994:5-14: No attribute `fix` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12003:5-20: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12034:5-14: No attribute `var` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12089:5-19: No attribute `var_mean` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12145:5-16: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12175:5-21: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12208:5-16: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12246:5-21: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12288:5-24: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12331:5-25: No attribute `empty_permuted` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12384:5-15: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12412:5-20: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12453:5-14: No attribute `det` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12462:5-16: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12529:5-17: No attribute `logdet` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12577:5-18: No attribute `slogdet` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12586:5-19: No attribute `pinverse` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12595:5-22: No attribute `hann_window` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12642:5-25: No attribute `hamming_window` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12759:5-26: No attribute `bartlett_window` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12808:5-26: No attribute `blackman_window` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12854:5-24: No attribute `kaiser_window` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12897:5-17: No attribute `vander` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12944:5-17: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:12967:5-23: No attribute `combinations` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13013:5-20: No attribute `trapezoid` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13124:5-16: No attribute `trapz` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13133:5-31: No attribute `cumulative_trapezoid` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13222:5-28: No attribute `repeat_interleave` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13292:5-15: No attribute `tile` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13335:5-30: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13371:5-38: No attribute `quantize_per_tensor_dynamic` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13401:5-31: No attribute `quantize_per_channel` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13435:5-31: No attribute `quantized_batch_norm` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13480:5-31: No attribute `quantized_max_pool1d` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13511:5-31: No attribute `quantized_max_pool2d` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13548:5-17: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13581:5-17: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13601:5-17: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13623:5-17: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13639:5-17: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13660:5-17: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13681:5-16: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13711:5-16: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13736:5-16: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13758:5-16: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13779:5-16: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13796:5-16: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13818:5-20: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13842:5-20: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13861:5-20: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13879:5-20: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13898:5-20: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13915:5-20: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13932:5-20: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13956:5-20: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13972:5-20: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:13989:5-20: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14004:5-24: No attribute `_assert_async` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14024:5-23: No attribute `searchsorted` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14107:5-20: No attribute `bucketize` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14159:5-28: No attribute `view_as_real_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14167:5-31: No attribute `view_as_complex_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14175:5-26: No attribute `as_strided_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14183:5-24: No attribute `diagonal_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14191:5-22: No attribute `expand_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14199:5-23: No attribute `permute_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14207:5-22: No attribute `select_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14215:5-22: No attribute `detach_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14223:5-21: No attribute `slice_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14231:5-21: No attribute `split_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14239:5-32: No attribute `split_with_sizes_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14247:5-23: No attribute `squeeze_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14255:5-17: No attribute `t_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14263:5-25: No attribute `transpose_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14271:5-25: No attribute `unsqueeze_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14279:5-23: No attribute `indices_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14287:5-22: No attribute `values_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14295:5-28: No attribute `crow_indices_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14303:5-27: No attribute `col_indices_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14311:5-22: No attribute `unbind_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14319:5-20: No attribute `view_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14327:5-22: No attribute `unfold_copy` in module `torch` [missing-attribute] +ERROR torch/_torch_docs.py:14335:5-21: No attribute `alias_copy` in module `torch` [missing-attribute] +ERROR torch/_utils.py:76:13-51: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/_utils.py:78:27-38: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_utils.py:79:34-45: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/_utils.py:137:45-57: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_utils.py:188:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_utils.py:208:8-21: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_utils.py:211:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_utils.py:212:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_utils.py:213:34-46: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_utils.py:250:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/_utils.py:290:28-44: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/_utils.py:291:17-55: No attribute `_validate_sparse_coo_tensor_args` in module `torch` [missing-attribute] +ERROR torch/_utils.py:299:17-33: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_utils.py:300:17-33: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/_utils.py:301:17-33: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_utils.py:302:17-33: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/_utils.py:306:33-49: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_utils.py:306:51-67: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_utils.py:316:17-62: No attribute `_validate_sparse_compressed_tensor_args` in module `torch` [missing-attribute] +ERROR torch/_utils.py:341:18-34: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/_utils.py:348:18-41: No attribute `sparse_coo_tensor` in module `torch` [missing-attribute] +ERROR torch/_utils.py:355:9-25: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/_utils.py:356:9-25: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/_utils.py:357:9-25: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/_utils.py:358:9-25: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/_utils.py:361:18-48: No attribute `sparse_compressed_tensor` in module `torch` [missing-attribute] +ERROR torch/_utils.py:376:12-42: No attribute `_nested_view_from_buffer` in module `torch` [missing-attribute] +ERROR torch/_utils.py:388:14-30: No attribute `from_numpy` in module `torch` [missing-attribute] +ERROR torch/_utils.py:398:12-31: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/_utils.py:438:19-42: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/_utils.py:440:18-47: No attribute `_empty_affine_quantized` in module `torch` [missing-attribute] +ERROR torch/_utils.py:447:22-46: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/_utils.py:447:48-86: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/_utils.py:450:27-51: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/_utils.py:451:26-38: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_utils.py:451:53-65: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/_utils.py:452:31-43: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_utils.py:453:40-50: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/_utils.py:456:26-38: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_utils.py:456:53-64: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_utils.py:457:31-43: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/_utils.py:458:40-51: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/_utils.py:460:18-59: No attribute `_empty_per_channel_affine_quantized` in module `torch` [missing-attribute] +ERROR torch/_utils.py:572:12-24: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/_utils.py:586:20-32: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/_utils.py:589:19-31: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/_utils.py:608:12-24: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/_utils.py:627:15-27: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/_utils.py:630:14-26: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/_utils.py:787:27-65: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/_utils.py:805:23-61: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/_utils.py:858:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_utils.py:860:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_utils.py:890:9-27: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/_utils.py:901:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/_utils.py:905:16-27: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_utils.py:907:16-27: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/_utils.py:908:19-29: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/_utils.py:912:16-27: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/_utils.py:973:33-62: No attribute `_unset_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/_utils.py:974:13-43: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/_utils.py:980:17-44: No attribute `_set_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/_utils.py:1063:17-31: Module `importlib.util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_utils.py:1064:18-32: Module `importlib.util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/_utils_internal.py:230:9-41: Could not find import of `triton.testing` [missing-import] +ERROR torch/_vmap_internals.py:110:36-56: No attribute `_add_batch_dim` in module `torch` [missing-attribute] +ERROR torch/_vmap_internals.py:142:17-40: No attribute `_remove_batch_dim` in module `torch` [missing-attribute] +ERROR torch/_vmap_internals.py:150:13-36: No attribute `_remove_batch_dim` in module `torch` [missing-attribute] +ERROR torch/_vmap_internals.py:227:22-58: No attribute `_vmapmode_increment_nesting` in module `torch._C` [missing-attribute] +ERROR torch/_vmap_internals.py:244:13-49: No attribute `_vmapmode_decrement_nesting` in module `torch._C` [missing-attribute] +ERROR torch/_weights_only_unpickler.py:180:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/_weights_only_unpickler.py:182:25-37: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/_weights_only_unpickler.py:213:9-32: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/_weights_only_unpickler.py:214:9-35: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/_weights_only_unpickler.py:215:9-33: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/_weights_only_unpickler.py:216:9-36: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/_weights_only_unpickler.py:217:9-47: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/accelerator/__init__.py:96:59-71: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/accelerator/__init__.py:122:16-52: No attribute `_accelerator_getAccelerator` in module `torch._C` [missing-attribute] +ERROR torch/accelerator/__init__.py:134:12-48: No attribute `_accelerator_getDeviceIndex` in module `torch._C` [missing-attribute] + WARN torch/accelerator/__init__.py:137:22-140:24: `current_device_index` is deprecated [deprecated] + WARN torch/accelerator/__init__.py:142:1-19: `current_device_index` is deprecated [deprecated] +ERROR torch/accelerator/__init__.py:165:5-41: No attribute `_accelerator_setDeviceIndex` in module `torch._C` [missing-attribute] + WARN torch/accelerator/__init__.py:168:18-171:20: `set_device_index` is deprecated [deprecated] + WARN torch/accelerator/__init__.py:173:1-15: `set_device_index` is deprecated [deprecated] +ERROR torch/accelerator/__init__.py:187:52-64: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/accelerator/__init__.py:199:12-43: No attribute `_accelerator_getStream` in module `torch._C` [missing-attribute] +ERROR torch/accelerator/__init__.py:202:24-36: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/accelerator/__init__.py:210:5-36: No attribute `_accelerator_setStream` in module `torch._C` [missing-attribute] +ERROR torch/accelerator/__init__.py:237:5-44: No attribute `_accelerator_synchronizeDevice` in module `torch._C` [missing-attribute] +ERROR torch/accelerator/__init__.py:270:29-65: No attribute `_accelerator_exchangeDevice` in module `torch._C` [missing-attribute] +ERROR torch/accelerator/__init__.py:274:13-54: No attribute `_accelerator_maybeExchangeDevice` in module `torch._C` [missing-attribute] +ERROR torch/accelerator/_utils.py:9:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/accelerator/_utils.py:11:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/accelerator/memory.py:29:12-56: No attribute `_accelerator_isAllocatorInitialized` in module `torch._C` [missing-attribute] +ERROR torch/accelerator/memory.py:31:5-37: No attribute `_accelerator_emptyCache` in module `torch._C` [missing-attribute] +ERROR torch/accelerator/memory.py:95:12-56: No attribute `_accelerator_isAllocatorInitialized` in module `torch._C` [missing-attribute] +ERROR torch/accelerator/memory.py:98:13-49: No attribute `_accelerator_getDeviceStats` in module `torch._C` [missing-attribute] +ERROR torch/accelerator/memory.py:201:12-55: No attribute `_accelerator_resetAccumulatedStats` in module `torch._C` [missing-attribute] +ERROR torch/accelerator/memory.py:218:12-48: No attribute `_accelerator_resetPeakStats` in module `torch._C` [missing-attribute] +ERROR torch/accelerator/memory.py:236:12-47: No attribute `_accelerator_getMemoryInfo` in module `torch._C` [missing-attribute] +ERROR torch/amp/autocast_mode.py:37:12-43: No attribute `_is_autocast_available` in module `torch._C` [missing-attribute] +ERROR torch/amp/autocast_mode.py:234:13-37: No attribute `get_autocast_dtype` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:236:12-31: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/amp/autocast_mode.py:247:36-50: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:247:52-65: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:249:36-74: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/amp/autocast_mode.py:268:13-44: No attribute `is_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:288:40-54: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:306:44-58: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:318:12-31: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/amp/autocast_mode.py:322:35-66: No attribute `is_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:323:21-46: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:324:31-55: No attribute `get_autocast_dtype` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:325:9-35: No attribute `set_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:327:9-41: No attribute `autocast_increment_nesting` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:328:9-41: No attribute `set_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:333:12-52: No attribute `_is_torch_function_mode_enabled` in module `torch._C` [missing-attribute] +ERROR torch/amp/autocast_mode.py:338:21-42: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/amp/autocast_mode.py:338:21-55: Module `torch.fx.experimental.proxy_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/amp/autocast_mode.py:352:12-31: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/amp/autocast_mode.py:356:12-44: No attribute `autocast_decrement_nesting` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:357:13-39: No attribute `clear_autocast_cache` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:358:9-35: No attribute `set_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:359:9-33: No attribute `set_autocast_dtype` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:360:9-41: No attribute `set_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:365:12-52: No attribute `_is_torch_function_mode_enabled` in module `torch._C` [missing-attribute] +ERROR torch/amp/autocast_mode.py:370:21-42: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/amp/autocast_mode.py:370:21-55: Module `torch.fx.experimental.proxy_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/amp/autocast_mode.py:379:12-31: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/amp/autocast_mode.py:389:8-48: No attribute `_is_torch_function_mode_enabled` in module `torch._C` [missing-attribute] +ERROR torch/amp/autocast_mode.py:399:8-48: No attribute `_is_torch_function_mode_enabled` in module `torch._C` [missing-attribute] +ERROR torch/amp/autocast_mode.py:411:37-50: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:474:26-50: No attribute `get_autocast_dtype` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:476:42-67: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/amp/autocast_mode.py:479:32-57: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:28:40-52: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:30:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:171:52-64: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:173:23-33: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:173:62-75: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:174:32-42: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:175:50-61: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:241:15-27: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:252:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:252:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:260:65-78: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:267:48-61: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:280:21-69: No attribute `_amp_foreach_non_finite_check_and_unscale_` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:338:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:341:21-31: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:341:47-60: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:529:13-37: No attribute `_amp_update_scale_` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:683:27-37: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:683:53-66: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:684:21-31: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/amp/grad_scaler.py:684:47-60: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/qat/modules/conv_fused.py:85:35-46: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/qat/modules/conv_fused.py:138:23-33: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/qat/modules/conv_fused.py:150:25-41: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/qat/modules/conv_fused.py:152:25-36: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/qat/modules/conv_fused.py:197:21-32: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/qat/modules/conv_fused.py:219:27-37: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/qat/modules/conv_fused.py:229:25-37: No attribute `square` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/qat/modules/conv_fused.py:232:25-35: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/qat/modules/conv_fused.py:243:27-37: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/qat/modules/linear_fused.py:56:35-46: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/qat/modules/linear_fused.py:114:23-33: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/qat/modules/linear_fused.py:124:25-41: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/qat/modules/linear_fused.py:126:25-36: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py:41:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py:41:30-41: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py:46:41-52: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py:51:43-56: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/quantized/modules/bn_relu.py:57:9-23: Class member `BNReLU2d.from_reference` overrides parent class `BatchNorm2d` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/intrinsic/quantized/modules/bn_relu.py:106:9-23: Class member `BNReLU3d.from_reference` overrides parent class `BatchNorm3d` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:36:68-79: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:52:9-23: Class member `LinearReLU.from_reference` overrides parent class `Linear` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:78:75-86: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:108:25-36: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:119:9-23: Class member `LinearLeakyReLU.from_reference` overrides parent class `Linear` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:153:68-79: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:174:25-36: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:183:9-23: Class member `LinearTanh.from_reference` overrides parent class `Linear` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/qat/dynamic/modules/linear.py:32:29-41: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/nn/qat/modules/embedding_ops.py:57:44-82: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/nn/qat/modules/embedding_ops.py:91:34-72: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/nn/qat/modules/embedding_ops.py:176:44-82: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/nn/qat/modules/embedding_ops.py:214:34-72: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] + WARN torch/ao/nn/quantizable/modules/activation.py:190:20-49: `torch.ao.quantization.quantize.prepare` is deprecated [deprecated] +ERROR torch/ao/nn/quantizable/modules/activation.py:400:35-46: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/activation.py:406:42-52: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/activation.py:407:72-82: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/activation.py:429:71-82: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/activation.py:435:52-62: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/activation.py:445:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/activation.py:446:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/activation.py:448:50-56: Argument `tuple[Literal[0], Literal[1]]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/ao/nn/quantizable/modules/activation.py:450:64-70: Argument `tuple[Literal[0], Literal[1]]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/ao/nn/quantizable/modules/activation.py:487:27-52: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/activation.py:497:17-26: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/activation.py:502:27-52: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/activation.py:512:17-26: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/activation.py:515:46-52: Argument `tuple[Literal[0], Literal[1]]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/ao/nn/quantizable/modules/activation.py:517:60-66: Argument `tuple[Literal[0], Literal[1]]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/ao/nn/quantizable/modules/activation.py:523:31-40: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/activation.py:531:35-45: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/activation.py:553:23-32: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/rnn.py:99:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/rnn.py:99:48-60: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/rnn.py:100:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/rnn.py:100:46-58: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/rnn.py:141:19-29: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/rnn.py:149:13-24: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/rnn.py:150:13-24: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/rnn.py:155:17-42: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/rnn.py:158:17-42: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/rnn.py:255:25-36: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/rnn.py:334:22-31: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/rnn.py:371:13-23: Argument `Unknown | None` is not assignable to parameter `input_dim` with type `int` in function `_LSTMLayer.__init__` [bad-argument-type] +ERROR torch/ao/nn/quantizable/modules/rnn.py:372:13-24: Argument `Unknown | None` is not assignable to parameter `hidden_dim` with type `int` in function `_LSTMLayer.__init__` [bad-argument-type] +ERROR torch/ao/nn/quantizable/modules/rnn.py:373:13-17: Argument `Unknown | None` is not assignable to parameter `bias` with type `bool` in function `_LSTMLayer.__init__` [bad-argument-type] +ERROR torch/ao/nn/quantizable/modules/rnn.py:374:13-24: Argument `Unknown | None` is not assignable to parameter `batch_first` with type `bool` in function `_LSTMLayer.__init__` [bad-argument-type] +ERROR torch/ao/nn/quantizable/modules/rnn.py:375:13-26: Argument `Unknown | None` is not assignable to parameter `bidirectional` with type `bool` in function `_LSTMLayer.__init__` [bad-argument-type] +ERROR torch/ao/nn/quantizable/modules/rnn.py:515:21-32: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/rnn.py:519:23-34: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/rnn.py:524:25-50: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/rnn.py:550:21-32: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantizable/modules/rnn.py:551:21-32: No attribute `stack` in module `torch` [missing-attribute] + WARN torch/ao/nn/quantizable/modules/rnn.py:590:24-57: `torch.ao.quantization.quantize.prepare_qat` is deprecated [deprecated] + WARN torch/ao/nn/quantizable/modules/rnn.py:593:24-53: `torch.ao.quantization.quantize.prepare` is deprecated [deprecated] +ERROR torch/ao/nn/quantized/dynamic/modules/linear.py:42:69-80: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/linear.py:52:41-52: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/linear.py:61:43-56: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/linear.py:74:41-52: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/linear.py:112:13-36: Module `torch.ao.nn.qat.dynamic` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/nn/quantized/dynamic/modules/linear.py:134:26-37: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/linear.py:134:39-52: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/linear.py:139:21-32: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/linear.py:141:23-36: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:41:17-28: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:105:15-26: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:157:24-35: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:157:68-79: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:158:24-35: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:158:63-74: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:159:24-35: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:159:50-61: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:160:24-35: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:160:50-61: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:161:29-40: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:162:28-53: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:163:62-73: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:165:28-53: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:166:62-73: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:328:34-45: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:372:35-46: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:372:48-61: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:425:29-40: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:449:31-44: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:546:21-32: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:842:21-32: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:957:71-82: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:965:28-39: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:965:75-86: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:966:28-39: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:966:75-86: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:971:21-32: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:971:74-85: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:972:21-32: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:972:75-86: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:973:21-32: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:974:25-50: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:975:57-68: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:977:25-50: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:978:57-68: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:981:21-32: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:1060:35-46: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:1060:48-61: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:1093:25-36: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:1223:78-89: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:1234:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:1299:21-32: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:1340:66-77: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:1349:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/functional.py:184:11-23: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/functional.py:227:23-35: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/functional.py:231:24-35: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/functional.py:256:11-23: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/functional.py:299:23-35: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/functional.py:303:24-35: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/functional.py:328:11-23: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/functional.py:375:23-35: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/functional.py:379:24-35: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/functional.py:580:18-47: No attribute `_empty_affine_quantized` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/functional.py:583:9-21: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/ao/nn/quantized/functional.py:586:18-30: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/ao/nn/quantized/functional.py:588:18-30: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/ao/nn/quantized/functional.py:599:16-28: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/ao/nn/quantized/functional.py:600:12-24: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/ao/nn/quantized/functional.py:656:12-24: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/ao/nn/quantized/functional.py:672:12-23: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/__init__.py:111:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/__init__.py:114:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/__init__.py:116:23-33: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/__init__.py:123:16-41: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:71:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:73:44-56: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:144:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:146:44-56: No attribute `tensor` in module `torch` [missing-attribute] + WARN torch/ao/nn/quantized/modules/activation.py:251:21-50: `torch.ao.quantization.quantize.convert` is deprecated [deprecated] +ERROR torch/ao/nn/quantized/modules/activation.py:266:22-54: No attribute `_choose_qparams_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:267:22-47: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:267:64-76: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:272:22-54: No attribute `_choose_qparams_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:276:22-47: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:276:64-76: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:301:13-24: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:301:47-58: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:302:14-39: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:302:74-86: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:323:30-42: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:329:19-44: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:330:52-64: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:341:30-42: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:347:19-44: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/activation.py:348:52-64: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/batchnorm.py:16:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/batchnorm.py:18:44-56: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/conv.py:99:19-48: No attribute `_empty_affine_quantized` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/conv.py:103:19-30: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/conv.py:107:13-24: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/conv.py:109:23-34: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/conv.py:163:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/conv.py:164:46-58: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/conv.py:250:45-56: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/conv.py:269:49-60: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/conv.py:325:9-23: Class member `_ConvNd.from_reference` overrides parent class `WeightedQuantizedModule` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/quantized/modules/conv.py:435:9-24: Class member `Conv1d.set_weight_bias` overrides parent class `_ConvNd` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/quantized/modules/conv.py:567:9-24: Class member `Conv2d.set_weight_bias` overrides parent class `_ConvNd` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/quantized/modules/conv.py:698:9-24: Class member `Conv3d.set_weight_bias` overrides parent class `_ConvNd` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/quantized/modules/conv.py:815:45-56: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/conv.py:835:53-64: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/conv.py:960:9-24: Class member `ConvTranspose1d.set_weight_bias` overrides parent class `_ConvTransposeNd` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/quantized/modules/conv.py:1083:9-24: Class member `ConvTranspose2d.set_weight_bias` overrides parent class `_ConvTransposeNd` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/quantized/modules/conv.py:1208:9-24: Class member `ConvTranspose3d.set_weight_bias` overrides parent class `_ConvTransposeNd` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:16:61-73: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:19:27-39: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:19:41-55: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:20:22-32: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:20:55-66: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:21:27-38: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:21:61-72: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:22:18-59: No attribute `_empty_per_channel_affine_quantized` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:37:27-39: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:37:41-55: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:46:27-39: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:46:41-55: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:131:15-27: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:139:22-32: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:139:55-66: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:140:27-38: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:140:61-72: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:141:23-64: No attribute `_empty_per_channel_affine_quantized` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:146:23-35: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:161:26-40: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:226:40-78: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:232:25-37: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:232:50-64: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:297:15-27: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:313:26-40: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:370:40-78: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:376:25-37: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:376:50-64: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/embedding_ops.py:400:9-23: Class member `EmbeddingBag.from_reference` overrides parent class `Embedding` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/quantized/modules/functional_modules.py:51:13-22: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/functional_modules.py:58:13-22: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/functional_modules.py:66:13-22: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/functional_modules.py:73:13-22: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/functional_modules.py:81:13-22: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/functional_modules.py:88:13-22: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/functional_modules.py:96:13-25: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/functional_modules.py:123:13-22: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/functional_modules.py:129:13-22: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/functional_modules.py:135:13-22: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/functional_modules.py:141:13-22: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/functional_modules.py:147:13-22: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/functional_modules.py:153:13-22: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/functional_modules.py:160:13-25: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/functional_modules.py:200:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/functional_modules.py:201:46-58: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:21:30-41: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:24:26-37: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:25:18-47: No attribute `_empty_affine_quantized` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:26:56-67: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:28:28-41: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:29:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:29:44-55: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:34:26-37: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:36:28-41: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:43:26-37: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:45:28-41: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:86:26-37: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:149:69-80: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:159:20-31: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:159:52-63: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:161:21-32: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:162:23-52: No attribute `_empty_affine_quantized` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:163:75-86: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:165:23-36: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:166:23-34: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:166:70-81: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:223:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:224:46-58: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:337:25-36: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/linear.py:346:9-23: Class member `Linear.from_reference` overrides parent class `WeightedQuantizedModule` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/quantized/modules/normalization.py:46:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/normalization.py:48:44-56: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/normalization.py:120:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/normalization.py:122:44-56: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/normalization.py:184:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/normalization.py:186:44-56: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/normalization.py:253:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/normalization.py:255:44-56: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/normalization.py:322:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/normalization.py:324:44-56: No attribute `tensor` in module `torch` [missing-attribute] + WARN torch/ao/nn/quantized/modules/rnn.py:55:21-50: `torch.ao.quantization.quantize.convert` is deprecated [deprecated] +ERROR torch/ao/nn/quantized/modules/utils.py:34:18-29: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:34:31-43: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:34:45-57: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:35:16-27: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:48:18-29: No attribute `clone` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:49:18-29: No attribute `clone` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:50:14-27: No attribute `minimum` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:50:28-41: No attribute `maximum` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:52:29-55: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:52:57-80: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:53:19-58: No attribute `_make_per_tensor_quantized_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:57:9-36: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:58:9-33: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:59:9-47: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:61:19-59: No attribute `_make_per_channel_quantized_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:71:29-55: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:71:57-80: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:72:19-44: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:73:52-63: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:76:31-58: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:76:60-84: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:78:19-45: No attribute `quantize_per_channel` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:80:25-37: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:81:22-33: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:83:13-24: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:86:30-68: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:87:19-45: No attribute `quantize_per_channel` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:89:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/modules/utils.py:90:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/conv.py:86:9-16: Class member `Conv1d.forward` overrides parent class `Conv1d` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/quantized/reference/modules/conv.py:151:9-16: Class member `Conv2d.forward` overrides parent class `Conv2d` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/quantized/reference/modules/conv.py:216:9-16: Class member `Conv3d.forward` overrides parent class `Conv3d` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/quantized/reference/modules/conv.py:312:9-16: Class member `ConvTranspose1d.forward` overrides parent class `ConvTranspose1d` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/quantized/reference/modules/conv.py:393:9-16: Class member `ConvTranspose2d.forward` overrides parent class `ConvTranspose2d` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/quantized/reference/modules/conv.py:475:9-16: Class member `ConvTranspose3d.forward` overrides parent class `ConvTranspose3d` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/quantized/reference/modules/linear.py:29:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/linear.py:30:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/linear.py:39:9-16: Class member `Linear.forward` overrides parent class `Linear` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:75:28-51: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:76:26-38: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:103:17-40: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:104:17-41: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:113:26-38: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:113:52-63: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:120:26-38: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:120:49-58: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:123:38-62: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:128:30-42: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:128:55-64: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:134:40-52: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:134:62-71: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:196:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:203:19-36: No attribute `rnn_tanh_cell` in module `torch._VF` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:212:19-36: No attribute `rnn_relu_cell` in module `torch._VF` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:287:21-32: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:294:15-28: No attribute `lstm_cell` in module `torch._VF` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:362:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:368:15-27: No attribute `gru_cell` in module `torch._VF` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:431:28-51: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:432:26-38: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:453:17-40: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:454:17-41: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:461:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:462:56-67: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:467:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:468:61-70: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:471:38-62: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:474:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:475:59-68: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:481:40-52: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:481:62-71: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:599:23-34: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:606:23-34: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:638:22-30: No attribute `lstm` in module `torch._VF` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:650:22-30: No attribute `lstm` in module `torch._VF` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:787:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:801:22-29: No attribute `gru` in module `torch._VF` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/rnn.py:813:22-29: No attribute `gru` in module `torch._VF` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:16:28-51: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:17:26-38: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:22:30-43: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:26:13-36: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:27:13-37: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:28:13-51: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:33:13-25: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:34:13-24: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:35:13-27: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:36:13-25: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:41:22-31: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:47:22-34: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:47:50-61: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:54:22-34: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:58:17-41: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:59:17-55: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:65:26-38: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:65:53-62: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:71:36-48: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:71:58-67: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:76:33-45: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:76:57-68: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:79:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:79:60-69: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:82:32-44: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:82:54-63: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:194:21-34: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:195:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:202:35-46: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:203:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:204:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:205:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:210:9-21: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:210:23-34: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:211:9-20: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:211:22-32: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:212:9-21: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:212:23-34: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:214:26-49: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:215:29-41: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:215:43-54: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:215:56-68: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:231:9-33: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:232:9-47: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:235:29-41: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:235:43-54: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:235:56-68: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:256:21-34: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:257:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:265:35-46: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:266:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:267:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:268:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:272:9-21: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:272:23-34: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:273:9-20: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:273:22-32: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:274:9-21: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:274:23-34: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:279:26-49: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:280:29-41: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:280:43-54: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:280:56-68: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:291:9-33: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:292:9-47: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:295:29-41: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:295:43-54: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:295:56-68: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:311:21-34: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:312:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:317:24-37: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:321:26-49: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:322:29-41: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:322:43-54: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:322:56-68: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:323:22-47: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:328:9-33: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:329:9-47: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:331:29-41: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:331:43-54: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:331:56-70: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:331:72-84: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:332:22-48: No attribute `quantize_per_channel` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:341:21-34: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:342:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:353:9-32: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:354:9-33: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:355:9-47: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:384:21-34: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:385:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:394:9-32: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:395:9-33: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:396:9-47: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:426:30-54: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/nn/quantized/reference/modules/utils.py:436:30-56: No attribute `quantize_per_channel` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/dynamic/linear.py:32:15-26: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/dynamic/linear.py:36:21-32: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/dynamic/linear.py:45:20-31: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/dynamic/linear.py:45:57-68: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/dynamic/linear.py:49:19-48: No attribute `_empty_affine_quantized` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/dynamic/linear.py:50:71-82: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/dynamic/linear.py:169:22-51: `*` is not supported between `Module` and `Module` [unsupported-operation] +ERROR torch/ao/nn/sparse/quantized/dynamic/linear.py:169:22-51: `*` is not supported between `Module` and `Tensor` [unsupported-operation] +ERROR torch/ao/nn/sparse/quantized/dynamic/linear.py:173:25-36: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/dynamic/linear.py:176:24-33: No attribute `any` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/linear.py:17:66-77: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/linear.py:20:21-32: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/linear.py:23:14-43: No attribute `_empty_affine_quantized` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/linear.py:24:52-63: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/linear.py:116:15-26: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/linear.py:120:21-32: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/linear.py:129:20-31: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/linear.py:129:57-68: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/linear.py:133:19-48: No attribute `_empty_affine_quantized` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/linear.py:134:71-82: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/linear.py:165:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/linear.py:166:46-58: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/linear.py:249:25-36: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/nn/sparse/quantized/linear.py:252:24-33: No attribute `any` in module `torch` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite.py:86:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite.py:166:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite.py:182:22-34: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite.py:367:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite.py:446:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite.py:468:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite.py:500:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] + WARN torch/ao/ns/_numeric_suite.py:508:5-12: `torch.ao.quantization.quantize.prepare` is deprecated [deprecated] + WARN torch/ao/ns/_numeric_suite.py:512:5-12: `torch.ao.quantization.quantize.prepare` is deprecated [deprecated] +ERROR torch/ao/ns/_numeric_suite.py:559:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite_fx.py:231:40-47: Cannot index into `object` [bad-index] +ERROR torch/ao/ns/_numeric_suite_fx.py:231:58-65: Cannot index into `object` [bad-index] +ERROR torch/ao/ns/_numeric_suite_fx.py:254:30-44: Module `torch.ao.ns.fx` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/ns/_numeric_suite_fx.py:254:30-50: Module `torch.ao.ns.fx.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/ns/_numeric_suite_fx.py:312:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite_fx.py:336:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite_fx.py:404:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite_fx.py:443:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite_fx.py:476:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite_fx.py:548:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite_fx.py:583:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite_fx.py:652:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite_fx.py:678:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite_fx.py:721:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite_fx.py:772:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/_numeric_suite_fx.py:1096:33-66: Module `torch.ao.quantization.quantize_fx` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] + WARN torch/ao/ns/_numeric_suite_fx.py:1096:33-77: `torch.ao.quantization.quantize_fx.convert_fx` is deprecated [deprecated] +ERROR torch/ao/ns/fx/graph_passes.py:227:9-34: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/graph_passes.py:228:52-64: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/graph_passes.py:292:25-41: No attribute `dequantize` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/graph_passes.py:315:35-48: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/graph_passes.py:647:43-54: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:63:13-29: No attribute `avg_pool1d` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:67:13-25: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:71:13-25: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:92:13-22: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:97:13-22: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:101:13-22: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:110:13-23: No attribute `relu` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:127:13-26: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:241:13-23: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:264:13-28: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:268:13-24: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:272:13-26: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:276:13-23: No attribute `sort` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:280:13-36: No attribute `repeat_interleave` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:284:13-22: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:288:13-23: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:292:13-22: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:296:13-28: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:300:13-26: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:304:13-24: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:308:13-24: No attribute `chunk` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:324:13-25: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:356:13-25: No attribute `narrow` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:379:36-72: Argument `tuple[((...) -> Unknown) | tuple[(...) -> Unknown, tuple[(...) -> Unknown, (...) -> Unknown]] | Unknown, type[Module]]` is not assignable to parameter `object` with type `tuple[(...) -> Unknown, (...) -> Unknown]` in function `list.append` [bad-argument-type] +ERROR torch/ao/ns/fx/mappings.py:384:36-70: Argument `tuple[((...) -> Unknown) | tuple[(...) -> Unknown, tuple[(...) -> Unknown, (...) -> Unknown]] | Unknown, type[Module]]` is not assignable to parameter `object` with type `tuple[(...) -> Unknown, (...) -> Unknown]` in function `list.append` [bad-argument-type] +ERROR torch/ao/ns/fx/mappings.py:389:36-86: Argument `tuple[((...) -> Unknown) | tuple[(...) -> Unknown, tuple[(...) -> Unknown, (...) -> Unknown]] | Unknown, type[Module]]` is not assignable to parameter `object` with type `tuple[(...) -> Unknown, (...) -> Unknown]` in function `list.append` [bad-argument-type] +ERROR torch/ao/ns/fx/mappings.py:497:9-18: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:507:9-18: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:509:9-18: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:510:9-18: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:542:9-19: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:544:9-22: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:547:9-34: No attribute `adaptive_avg_pool1d` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:560:9-25: No attribute `avg_pool1d` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:561:9-21: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:562:9-21: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:563:9-18: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:564:9-20: No attribute `chunk` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:565:9-20: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:566:9-22: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:567:9-24: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:568:9-18: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:569:9-19: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:570:9-18: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:571:9-21: No attribute `narrow` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:572:9-32: No attribute `repeat_interleave` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:573:9-19: No attribute `sort` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:574:9-22: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:575:9-20: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:576:9-24: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/mappings.py:726:9-34: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/n_shadows_utils.py:29:5-14: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/n_shadows_utils.py:32:5-14: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/n_shadows_utils.py:409:55-66: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/n_shadows_utils.py:539:37-70: Module `torch.ao.quantization.quantize_fx` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] + WARN torch/ao/ns/fx/n_shadows_utils.py:539:37-81: `torch.ao.quantization.quantize_fx.prepare_fx` is deprecated [deprecated] +ERROR torch/ao/ns/fx/n_shadows_utils.py:1053:33-59: No attribute `quantize_per_channel` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/n_shadows_utils.py:1059:37-62: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/n_shadows_utils.py:1139:22-36: Module `torch.ao.ns.fx` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/ns/fx/n_shadows_utils.py:1139:22-42: Module `torch.ao.ns.fx.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/ns/fx/n_shadows_utils.py:1336:30-41: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/n_shadows_utils.py:1342:29-39: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/pattern_utils.py:115:21-34: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/utils.py:149:45-58: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/utils.py:206:32-57: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/utils.py:341:25-34: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/utils.py:342:28-37: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/utils.py:460:24-35: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/utils.py:460:51-62: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/utils.py:483:17-28: No attribute `log10` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/utils.py:499:12-22: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/utils.py:525:13-22: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/utils.py:526:13-22: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/utils.py:529:13-22: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/ns/fx/utils.py:530:13-24: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:156:28-44: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:157:48-63: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:177:36-54: No attribute `index_select` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:181:37-53: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:182:65-80: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:351:25-43: No attribute `index_select` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py:103:39-54: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py:214:42-57: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/benchmarks/evaluate_disk_savings.py:108:14-26: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/benchmarks/evaluate_disk_savings.py:108:69-81: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/benchmarks/evaluate_forward_time.py:98:14-26: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/benchmarks/evaluate_forward_time.py:98:69-81: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/benchmarks/evaluate_model_metrics.py:87:14-26: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/benchmarks/evaluate_model_metrics.py:87:69-81: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:64:16-31: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:72:24-34: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:83:20-36: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:83:49-59: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:90:23-33: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:103:25-35: No attribute `sort` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:142:25-35: No attribute `sort` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:173:25-34: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:185:25-40: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:187:25-41: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:204:21-32: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/lightning/tests/test_callbacks.py:127:20-29: No attribute `all` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/lightning/tests/test_callbacks.py:132:13-27: Module `importlib.util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/pruning/_experimental/data_sparsifier/lightning/tests/test_callbacks.py:222:20-29: No attribute `all` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/lightning/tests/test_callbacks.py:231:20-29: No attribute `all` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/lightning/tests/test_callbacks.py:280:13-27: Module `importlib.util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] + WARN torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py:97:9-38: `torch.ao.quantization.quantize.prepare` is deprecated [deprecated] + WARN torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py:98:9-38: `torch.ao.quantization.quantize.convert` is deprecated [deprecated] + WARN torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py:105:9-38: `torch.ao.quantization.quantize.prepare` is deprecated [deprecated] + WARN torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py:106:9-38: `torch.ao.quantization.quantize.convert` is deprecated [deprecated] +ERROR torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py:127:56-72: No attribute `dequantize` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py:146:34-60: No attribute `quantize_per_channel` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/FPGM_pruner.py:66:21-32: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/FPGM_pruner.py:73:20-29: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/FPGM_pruner.py:73:30-39: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/FPGM_pruner.py:84:25-40: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/FPGM_pruner.py:86:25-41: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/FPGM_pruner.py:95:20-30: No attribute `topk` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:188:21-34: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:200:21-34: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:248:17-27: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:248:51-61: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/prune_functions.py:52:27-39: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/prune_functions.py:53:43-58: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/prune_functions.py:58:25-34: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/prune_functions.py:60:25-37: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/prune_functions.py:61:28-43: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/prune_functions.py:207:24-35: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/prune_functions.py:341:22-34: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/prune_functions.py:342:56-66: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/prune_functions.py:349:35-47: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/_experimental/pruner/prune_functions.py:430:30-39: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/sparsifier/base_sparsifier.py:129:34-44: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/sparsifier/base_sparsifier.py:222:39-54: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py:40:21-37: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:99:20-30: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:123:20-30: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:126:25-41: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:129:25-40: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:148:25-35: No attribute `topk` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:178:20-30: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:182:25-41: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:186:23-33: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:197:25-35: No attribute `topk` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:231:25-40: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:233:25-41: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:249:31-47: No attribute `logical_or` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/__init__.py:217:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/__init__.py:224:18-31: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_correct_bias.py:147:30-40: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_equalize.py:149:23-33: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_equalize.py:150:31-47: No attribute `reciprocal` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_equalize.py:162:23-36: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_equalize.py:163:31-44: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_equalize.py:270:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:57:36-48: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:58:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:62:36-48: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:63:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:66:12-23: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:68:24-35: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:77:52-64: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:77:76-87: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:78:48-60: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:78:72-83: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:79:50-62: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:79:74-85: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:81:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:82:29-39: No attribute `log2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:83:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:83:51-62: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:83:63-76: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:157:9-16: Class member `_LearnableFakeQuantize.forward` overrides parent class `FakeQuantizeBase` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:170:17-44: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:171:17-43: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:179:33-60: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:179:62-86: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:180:21-70: No attribute `_fake_quantize_learnable_per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/_learnable_fake_quantize.py:190:21-69: No attribute `_fake_quantize_learnable_per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:104:11-23: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:111:11-23: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:123:5-18: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:128:5-15: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:148:9-18: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:150:9-18: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:155:52-62: No attribute `relu` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:168:30-42: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:474:30-39: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:625:9-34: No attribute `adaptive_avg_pool1d` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:638:9-25: No attribute `avg_pool1d` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:639:9-21: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:640:9-21: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:641:9-20: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:642:9-22: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:643:9-19: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:644:9-21: No attribute `narrow` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:645:9-32: No attribute `repeat_interleave` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:646:9-24: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:647:9-22: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:648:9-20: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_common_operator_config_utils.py:649:9-24: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_qnnpack_pt2e.py:14:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_qnnpack_pt2e.py:15:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_qnnpack_pt2e.py:16:18-29: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/_qnnpack_pt2e.py:17:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/backend_config.py:105:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/backend_config.py:188:17-28: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/backend_config.py:193:22-33: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/backend_config.py:194:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/backend_config.py:195:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/backend_config.py:196:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/backend_config.py:222:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/backend_config.py:226:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/backend_config.py:230:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/backend_config.py:245:27-38: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/backend_config.py:252:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/backend_config.py:259:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/backend_config.py:382:34-70: Module `torch.ao.quantization.backend_config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/quantization/backend_config/backend_config.py:382:34-76: Module `torch.ao.quantization.backend_config.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/quantization/backend_config/executorch.py:41:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:42:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:43:18-29: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:44:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:48:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:49:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:53:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:54:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:55:18-29: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:56:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:61:11-22: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:66:11-22: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:74:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:76:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:81:17-30: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:82:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:83:18-31: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:84:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:89:17-28: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:90:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:91:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:315:9-18: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:317:9-18: No attribute `sub` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:319:9-18: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:324:18-28: No attribute `relu` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:371:9-20: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:372:9-22: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:373:9-19: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:374:9-22: No attribute `permute` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:375:9-27: No attribute `permute_copy` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:376:9-22: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:421:30-39: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:426:30-42: No attribute `concat` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/executorch.py:431:30-47: No attribute `concatenate` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:33:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:34:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:35:18-29: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:36:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:40:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:41:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:45:17-30: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:46:18-31: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:47:18-31: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:48:16-29: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:52:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:53:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:54:18-29: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:55:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:60:17-30: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:61:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:62:18-31: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:63:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:68:17-28: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:69:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:70:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:74:17-28: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:75:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/fbgemm.py:76:18-32: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:42:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:43:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:44:18-29: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:45:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:49:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:50:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:54:17-30: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:55:18-31: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:56:18-31: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:57:16-29: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:61:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:62:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:63:18-29: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:64:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:72:17-30: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:73:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:74:18-31: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:75:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:84:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:85:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:86:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:87:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:91:17-28: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:92:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:93:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:97:17-28: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:98:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/native.py:99:18-32: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:39:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:40:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:41:18-29: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:42:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:46:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:47:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:51:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:52:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:53:18-29: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:54:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:59:17-28: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:60:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:61:18-29: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:65:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:66:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:67:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:68:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:184:6-15: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:267:6-15: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:370:6-15: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:463:6-15: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/onednn.py:588:5-15: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:27:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:28:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:29:18-29: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:30:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:34:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:35:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:39:17-30: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:40:18-31: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:41:18-31: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:42:16-29: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:46:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:47:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:48:18-29: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:49:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:54:17-30: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:55:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:56:18-31: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:57:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:62:17-28: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:63:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:64:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:68:17-28: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:69:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:70:18-32: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:86:11-22: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:91:11-22: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/qnnpack.py:101:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/tensorrt.py:34:21-32: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/tensorrt.py:35:22-33: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/tensorrt.py:36:22-33: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/tensorrt.py:37:20-31: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/tensorrt.py:40:21-32: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/tensorrt.py:41:22-33: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/tensorrt.py:45:30-41: No attribute `addmm` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/tensorrt.py:57:30-39: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:30:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:31:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:32:18-29: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:33:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:37:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:38:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:42:17-30: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:43:18-31: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:44:18-31: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:45:16-29: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:49:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:50:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:51:18-29: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:52:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:57:17-30: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:58:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:59:18-31: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:60:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:65:17-28: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:66:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:67:18-30: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:71:17-28: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:72:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/backend_config/x86.py:73:18-32: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_fake_quantize.py:27:18-31: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_fake_quantize.py:27:34-60: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_fake_quantize.py:48:23-36: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_fake_quantize.py:55:22-34: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_fake_quantize.py:56:27-39: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_fake_quantize.py:57:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_fake_quantize.py:59:35-47: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_fake_quantize.py:60:36-48: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_fake_quantize.py:82:20-31: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_fake_quantize.py:103:35-51: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_fake_quantize.py:109:21-32: No attribute `floor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_fake_quantize.py:111:16-25: No attribute `all` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_fake_quantize.py:111:26-34: No attribute `ge` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_fake_quantize.py:113:19-28: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_fake_quantize.py:142:25-36: No attribute `floor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_fake_quantize.py:146:17-28: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_loss.py:43:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_loss.py:57:23-34: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_loss.py:58:17-30: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_loss.py:65:26-35: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_loss.py:66:35-44: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_optimization.py:33:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_optimization.py:33:30-41: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_optimization.py:36:18-31: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_optimization.py:36:34-60: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_optimization.py:47:23-35: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_optimization.py:190:12-21: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_optimization.py:196:22-34: No attribute `vstack` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_optimization.py:197:22-34: No attribute `vstack` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/adaround_optimization.py:205:57-69: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/linear.py:63:34-49: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/linear.py:126:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/linear.py:141:52-69: No attribute `FloatTensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/linear.py:166:66-83: No attribute `FloatTensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/observer.py:25:36-48: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/observer.py:30:24-36: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/observer.py:31:24-36: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/observer.py:58:17-26: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/observer.py:76:22-34: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/observer.py:80:28-40: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/observer.py:81:26-35: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/observer.py:84:30-39: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/observer.py:84:49-61: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/observer.py:88:36-46: No attribute `sort` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/observer.py:123:31-43: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/observer.py:124:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/observer.py:133:9-16: Class member `APoTObserver.forward` overrides parent class `ObserverBase` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/quantization/experimental/observer.py:137:28-41: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/observer.py:139:23-32: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/observer.py:141:23-32: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/observer.py:154:16-40: Could not find import of `matplotlib.pyplot` [missing-import] +ERROR torch/ao/quantization/experimental/qconfig.py:12:38-64: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/qconfig.py:12:72-84: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/qconfig.py:19:38-64: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/qconfig.py:19:72-83: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/qconfig.py:31:55-66: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/qconfig.py:36:59-71: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/qconfig.py:37:55-66: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/qconfig.py:49:55-66: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/qconfig.py:54:59-71: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/qconfig.py:55:55-66: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/quantizer.py:43:18-30: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/experimental/quantizer.py:84:18-34: No attribute `from_numpy` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:50:31-44: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:52:9-36: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:53:9-33: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:54:9-47: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:58:30-43: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:59:24-50: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:59:52-75: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:62:35-48: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:63:24-50: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:63:52-79: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:66:33-46: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:67:23-61: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:92:52-64: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:92:76-87: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:93:50-62: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:93:74-85: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:182:50-62: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:190:16-27: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:193:28-39: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:204:32-43: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:206:32-41: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:207:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:207:65-76: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:208:44-56: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:228:9-16: Class member `FakeQuantize.forward` overrides parent class `FakeQuantizeBase` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/quantization/fake_quantize.py:244:21-59: No attribute `fake_quantize_per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:253:21-58: No attribute `fake_quantize_per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:404:52-64: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:404:76-86: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:405:50-62: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:405:74-84: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:424:16-53: No attribute `fused_moving_avg_obs_fake_quant` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:445:11-23: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:446:13-36: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:457:11-22: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:458:13-39: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:471:11-23: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:494:11-22: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:495:13-40: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:505:13-51: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:506:11-23: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:519:13-51: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:521:11-25: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:529:11-23: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:530:13-36: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:542:11-23: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:554:11-22: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:555:13-39: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:565:11-22: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:566:13-40: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:576:11-22: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:577:13-39: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:589:15-26: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fake_quantize.py:590:17-44: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:14:20-31: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:14:33-43: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:14:45-57: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:14:59-70: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:14:72-83: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:15:18-35: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:15:37-56: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:18:9-20: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:18:29-40: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:21:14-25: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:21:39-50: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:57:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:74:24-37: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:74:39-53: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:75:26-39: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:76:23-36: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:83:12-23: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:84:9-20: No attribute `round` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:95:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:97:24-37: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:97:39-53: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:98:26-39: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:99:23-36: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:103:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:121:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:153:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:155:24-37: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:155:39-53: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:156:26-39: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:165:23-36: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:169:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:188:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:220:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:249:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:251:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:284:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:301:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:303:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:306:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:307:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:327:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:329:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:362:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:364:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:367:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:381:16-32: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:404:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:406:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:441:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:456:67-78: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:472:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:473:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:474:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:485:24-37: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:510:67-78: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:526:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:527:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:528:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:539:24-37: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:548:17-43: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:554:77-88: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:557:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:558:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:559:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:568:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:568:33-45: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:568:69-80: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:569:18-29: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:575:77-88: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:577:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:577:33-45: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:577:69-80: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:578:18-29: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:605:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:624:24-37: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:624:39-53: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:625:26-39: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:626:23-36: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:640:11-22: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:641:9-20: No attribute `round` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:655:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:657:24-37: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:657:39-53: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:658:26-39: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:659:23-36: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:666:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:687:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:689:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:724:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:752:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:754:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:761:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:765:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:780:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:796:24-37: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:800:17-27: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:809:19-35: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:820:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:823:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:823:36-48: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:823:72-83: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:824:21-32: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:840:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:856:15-25: No attribute `amin` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:857:15-25: No attribute `amax` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:858:19-28: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:858:38-54: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:859:19-28: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:859:38-54: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:860:11-22: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:860:23-36: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:871:18-29: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:876:18-29: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:878:21-34: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:878:51-62: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:893:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:905:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:908:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:908:36-48: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:908:72-83: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:909:21-32: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:936:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:975:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:978:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:994:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:995:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:995:33-46: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1028:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1029:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1029:33-46: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1033:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1052:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1068:8-19: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1093:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1124:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1144:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1146:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1146:33-46: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1182:14-25: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1182:36-47: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1197:28-41: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1198:32-45: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1199:33-44: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1200:42-53: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1201:27-40: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1210:16-27: No attribute `round` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1212:13-24: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1214:16-33: No attribute `logical_and` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1249:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1262:54-65: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1267:59-70: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_decomposed.py:1268:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:39:5-28: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:39:30-54: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:40:5-31: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:40:33-60: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:65:15-27: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:66:17-40: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:73:28-51: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:73:53-79: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:89:35-47: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:110:73-85: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:112:35-48: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:120:44-56: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:136:28-37: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:136:38-47: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:137:28-37: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:137:38-47: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:167:15-26: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:168:17-40: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:180:24-47: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:180:49-75: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:191:35-47: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:233:16-28: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:241:26-36: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:246:26-42: No attribute `nan_to_num` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:285:11-23: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:285:33-59: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:288:11-22: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:288:32-59: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:492:55-67: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:566:21-30: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:566:39-55: No attribute `reciprocal` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:575:21-30: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:588:19-28: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:640:21-30: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:640:39-55: No attribute `reciprocal` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:651:21-30: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:654:12-26: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:672:19-28: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:854:69-78: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:871:43-55: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:960:51-60: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_equalize.py:981:9-23: Module `torch.ao.ns.fx` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/quantization/fx/_equalize.py:981:9-29: Module `torch.ao.ns.fx.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:58:9-22: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:59:9-19: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:111:9-34: No attribute `adaptive_avg_pool1d` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:122:9-25: No attribute `avg_pool1d` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:123:9-21: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:124:9-21: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:125:9-20: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:126:9-22: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:127:9-19: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:131:9-30: No attribute `channel_shuffle` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:159:9-21: No attribute `narrow` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:160:9-24: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:161:9-32: No attribute `repeat_interleave` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:162:9-22: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:163:9-20: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:164:9-24: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:196:9-18: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:363:26-37: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:363:39-50: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:366:10-22: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:366:24-35: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:370:10-23: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:370:25-38: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:377:10-22: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:377:24-35: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:380:10-22: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:380:24-35: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:383:10-22: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:383:24-35: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:402:5-14: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:405:5-14: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:406:5-17: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:410:5-14: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:412:5-14: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:421:39-60: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:440:36-57: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:584:53-78: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:592:72-82: No attribute `relu` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:664:53-78: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:861:47-80: No attribute `quantize_per_tensor_dynamic` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:866:39-52: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:867:40-52: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:867:54-65: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:945:13-38: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:946:13-39: No attribute `quantize_per_channel` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:1072:47-80: No attribute `quantize_per_tensor_dynamic` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:1078:39-52: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:1079:40-52: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:1079:54-65: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:1154:9-18: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:1156:9-18: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:1157:9-21: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:1227:40-65: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_lower_to_native_backend.py:1232:35-48: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/detector.py:503:9-41: Class member `DynamicStaticDetector.determine_observer_insert_points` overrides parent class `DetectorBase` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/quantization/fx/_model_report/detector.py:955:9-41: Class member `InputWeightEqualizationDetector.determine_observer_insert_points` overrides parent class `DetectorBase` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/quantization/fx/_model_report/detector.py:1059:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/detector.py:1060:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/detector.py:1072:21-34: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/detector.py:1074:40-53: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/detector.py:1076:48-61: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/detector.py:1077:31-40: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/detector.py:1078:31-40: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/detector.py:1178:17-27: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/detector.py:1178:44-54: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/detector.py:1481:9-41: Class member `OutlierDetector.determine_observer_insert_points` overrides parent class `DetectorBase` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/quantization/fx/_model_report/model_report.py:378:27-53: No matching overload found for function `sum` called with arguments: (bool) [no-matching-overload] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:56:26-37: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:60:61-73: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:61:54-66: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:62:54-66: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:66:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:67:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:70:49-61: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:71:58-70: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:72:60-72: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:73:51-63: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:95:36-49: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:98:25-34: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:99:25-34: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:137:13-26: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:139:32-45: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:141:40-53: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:142:23-32: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:143:23-32: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:171:13-26: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:178:29-41: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:181:29-43: No attribute `quantile` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:190:30-42: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:191:35-47: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:199:14-26: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:212:27-43: No attribute `nan_to_num` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:221:47-63: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:224:45-61: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:228:38-54: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:239:22-38: No attribute `nan_to_num` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:257:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:259:40-52: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:272:47-59: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:273:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:274:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:275:24-36: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:276:24-36: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:277:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:278:43-55: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:279:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/_model_report/model_report_visualizer.py:19:12-36: Could not find import of `matplotlib.pyplot` [missing-import] +ERROR torch/ao/quantization/fx/convert.py:77:5-17: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:78:5-16: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:79:5-17: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:80:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:81:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:82:5-17: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:83:5-16: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:84:5-16: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:85:5-22: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:86:5-24: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:90:5-28: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:91:5-31: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:101:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:126:9-40: Expected a callable, got `Tensor` [not-callable] +ERROR torch/ao/quantization/fx/convert.py:156:32-45: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:267:27-38: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:267:40-50: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:352:19-32: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:358:65-78: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:361:72-83: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:376:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:419:9-21: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:420:9-20: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:421:9-21: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:422:9-26: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:423:9-28: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:443:27-53: No attribute `quantize_per_channel` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:448:27-52: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:482:23-56: No attribute `quantize_per_tensor_dynamic` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:500:19-32: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:513:28-39: Argument `((...) -> Unknown) | None` is not assignable to parameter `target` with type `((...) -> Any) | str` in function `torch.fx.graph.Graph.create_node` [bad-argument-type] +ERROR torch/ao/quantization/fx/convert.py:551:21-34: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:716:22-55: Module `torch.ao.quantization.quantize_fx` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] + WARN torch/ao/quantization/fx/convert.py:751:35-45: `torch.ao.quantization.quantize_fx.convert_fx` is deprecated [deprecated] +ERROR torch/ao/quantization/fx/convert.py:768:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/convert.py:1284:54-60: Cannot index into `Module` [bad-index] +ERROR torch/ao/quantization/fx/graph_module.py:136:39-60: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/fx/graph_module.py:179:40-61: No attribute `ScriptObject` in module `torch._C` [missing-attribute] + WARN torch/ao/quantization/fx/lstm_utils.py:114:16-26: `torch.ao.quantization.quantize_fx.prepare_fx` is deprecated [deprecated] +ERROR torch/ao/quantization/fx/lstm_utils.py:122:18-27: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/lstm_utils.py:123:18-27: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/lstm_utils.py:124:18-27: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/lstm_utils.py:125:18-27: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/lstm_utils.py:126:18-27: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/lstm_utils.py:130:18-27: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/lstm_utils.py:131:18-27: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/lstm_utils.py:132:18-27: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/lstm_utils.py:133:18-27: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/lstm_utils.py:134:18-27: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/lstm_utils.py:135:18-27: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/lstm_utils.py:136:18-27: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/lstm_utils.py:137:18-27: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/lstm_utils.py:143:31-40: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/lstm_utils.py:144:29-38: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/lstm_utils.py:146:33-42: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/lstm_utils.py:147:29-38: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/lstm_utils.py:211:31-56: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:90:39-49: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:92:5-17: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:93:5-16: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:94:5-17: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:95:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:96:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:97:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:98:5-16: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:99:5-16: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:100:5-22: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:101:5-24: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:104:67-78: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:233:53-64: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:253:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:362:32-45: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:388:35-47: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:388:49-60: No attribute `uint8` in module `torch` [missing-attribute] + WARN torch/ao/quantization/fx/prepare.py:470:5-12: `torch.ao.quantization.quantize.convert` is deprecated [deprecated] +ERROR torch/ao/quantization/fx/prepare.py:487:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:621:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:623:30-43: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:624:37-50: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:627:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:746:6-17: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:821:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:927:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:929:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:933:49-60: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:993:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:1155:9-20: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:1227:41-52: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:1238:50-61: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:1287:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:1678:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:1854:32-43: Object of class `NoneType` has no attribute `target` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:1855:73-84: Argument `((...) -> Any) | object | str` is not assignable to parameter `element` with type `str` in function `set.add` [bad-argument-type] +ERROR torch/ao/quantization/fx/prepare.py:1888:51-61: Object of class `NoneType` has no attribute `users` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:1918:41-52: Object of class `NoneType` has no attribute `target` [missing-attribute] +ERROR torch/ao/quantization/fx/prepare.py:1922:45-56: Argument `((...) -> Any) | object | str` is not assignable to parameter `element` with type `str` in function `set.add` [bad-argument-type] +ERROR torch/ao/quantization/fx/qconfig_mapping_utils.py:274:51-62: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/qconfig_mapping_utils.py:275:53-64: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/qconfig_mapping_utils.py:276:49-60: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/qconfig_mapping_utils.py:277:53-64: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/qconfig_mapping_utils.py:284:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/qconfig_mapping_utils.py:286:45-58: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/qconfig_mapping_utils.py:287:45-58: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/qconfig_mapping_utils.py:290:18-29: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/qconfig_mapping_utils.py:297:37-48: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/utils.py:150:17-30: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/utils.py:152:19-30: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/utils.py:268:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/utils.py:281:14-26: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/utils.py:399:27-38: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/utils.py:402:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/utils.py:410:29-44: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/utils.py:413:29-44: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/utils.py:417:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/utils.py:422:18-29: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/fx/utils.py:512:23-47: Module `torch.ao.quantization.fx` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/quantization/fx/utils.py:512:23-64: Module `torch.ao.quantization.fx.quantize_handler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/quantization/fx/utils.py:537:23-47: Module `torch.ao.quantization.fx` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/quantization/fx/utils.py:537:23-64: Module `torch.ao.quantization.fx.quantize_handler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/quantization/observer.py:232:15-27: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:233:17-40: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:238:13-24: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:238:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:252:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:254:13-36: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:255:13-39: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:256:13-37: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:257:13-40: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:258:13-51: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:266:13-24: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:267:13-25: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:268:13-27: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:269:13-25: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:270:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:271:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:272:13-24: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:273:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:274:13-30: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:275:13-32: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:276:13-25: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:311:19-31: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:311:33-44: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:311:45-58: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:369:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:369:69-81: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:374:23-32: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:374:42-58: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:375:23-32: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:375:42-58: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:378:17-27: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:378:54-67: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:379:22-33: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:379:60-71: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:382:29-55: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:383:32-59: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:385:27-36: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:387:21-30: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:388:31-43: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:388:45-56: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:396:32-44: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:398:30-68: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:400:21-32: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:400:58-73: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:408:21-30: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:409:38-49: No attribute `round` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:409:74-83: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:410:26-37: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:416:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:419:26-38: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:422:32-70: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:423:30-42: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:509:15-27: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:510:17-40: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:515:13-24: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:515:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:546:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:547:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:549:29-55: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:551:31-43: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:558:9-16: Class member `MinMaxObserver.forward` overrides parent class `UniformQuantizationObserverBase` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/quantization/observer.py:564:36-49: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:565:19-28: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:566:19-28: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:583:28-40: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:584:28-40: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:636:15-27: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:637:17-40: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:641:13-24: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:641:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:676:32-45: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:678:40-53: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:720:15-27: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:721:17-41: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:726:13-24: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:726:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:752:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:753:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:755:29-56: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:757:31-43: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:763:9-16: Class member `PerChannelMinMaxObserver.forward` overrides parent class `UniformQuantizationObserverBase` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/quantization/observer.py:781:13-26: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:783:32-45: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:785:40-53: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:786:23-32: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:787:23-32: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:889:24-34: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:892:24-34: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:929:15-27: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:930:17-41: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:934:13-24: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:934:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:973:13-26: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:975:32-45: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:977:40-53: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1019:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1019:30-42: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1020:17-40: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1025:13-24: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1025:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1052:43-54: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1053:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1054:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1055:31-42: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1087:19-31: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1094:28-39: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1095:13-22: No attribute `div` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1101:26-37: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1102:13-22: No attribute `div` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1108:16-27: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1114:13-23: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1119:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1119:47-59: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1126:32-44: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1143:17-26: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1144:16-28: No attribute `cumsum` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1207:13-27: No attribute `linspace` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1215:36-50: No attribute `linspace` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1220:13-28: No attribute `bucketize` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1230:28-42: No attribute `bincount` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1252:25-34: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1289:9-16: Class member `HistogramObserver.forward` overrides parent class `UniformQuantizationObserverBase` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/quantization/observer.py:1293:24-37: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1304:28-41: No attribute `aminmax` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1314:23-32: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1315:23-32: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1320:32-43: No attribute `histc` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1359:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1359:74-86: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1394:54-64: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1395:48-60: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1397:54-64: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1398:48-60: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1441:15-27: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1442:17-40: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1455:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1455:67-78: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1456:44-56: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1456:77-86: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1460:9-16: Class member `FixedQParamsObserver.forward` overrides parent class `ObserverBase` in an inconsistent manner [bad-param-name-override] +ERROR torch/ao/quantization/observer.py:1493:15-28: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1504:23-46: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1506:19-30: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1506:31-44: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1552:30-42: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1585:30-43: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1615:26-38: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1839:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1844:22-33: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:1845:27-38: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:2070:11-22: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:2070:32-58: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:2077:11-22: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:2078:13-39: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:2093:11-22: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:2093:32-59: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:2101:11-22: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:2102:13-40: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:2112:11-23: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:2122:11-23: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:2122:33-71: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:2129:11-25: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:2129:35-73: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:2138:46-58: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/observer.py:2141:44-56: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/_numeric_debugger.py:112:26-39: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/_numeric_debugger.py:112:47-60: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/export_utils.py:66:27-38: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/export_utils.py:69:17-46: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `torch.ao.quantization.pt2e.utils._get_aten_graph_module_for_pattern` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/export_utils.py:73:17-45: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `torch.ao.quantization.pt2e.utils._get_aten_graph_module_for_pattern` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/export_utils.py:78:17-45: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `torch.ao.quantization.pt2e.utils._get_aten_graph_module_for_pattern` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/export_utils.py:82:17-46: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `torch.ao.quantization.pt2e.utils._get_aten_graph_module_for_pattern` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/export_utils.py:140:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/export_utils.py:141:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/export_utils.py:142:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/export_utils.py:143:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/export_utils.py:144:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/export_utils.py:150:9-33: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `torch.ao.quantization.pt2e.utils._get_aten_graph_module_for_pattern` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/export_utils.py:155:9-32: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `torch.ao.quantization.pt2e.utils._get_aten_graph_module_for_pattern` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/graph_utils.py:32:6-15: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/graph_utils.py:33:6-15: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/lowering.py:31:20-33: Module `torch._export` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/quantization/pt2e/prepare.py:326:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/prepare.py:423:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/prepare.py:476:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/prepare.py:509:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:51:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:51:58-69: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:52:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:52:63-72: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:54:36-48: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:54:60-71: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:55:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:55:65-74: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:57:31-42: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:81:12-44: Returned type `_WrapperModule` is not assignable to declared return type `(...) -> Unknown` [bad-return] +ERROR torch/ao/quantization/pt2e/qat_utils.py:102:23-33: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:110:21-37: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:125:12-48: Returned type `_WrapperModule` is not assignable to declared return type `(...) -> Unknown` [bad-return] +ERROR torch/ao/quantization/pt2e/qat_utils.py:144:23-33: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:165:12-61: Returned type `_WrapperModule` is not assignable to declared return type `(...) -> Unknown` [bad-return] +ERROR torch/ao/quantization/pt2e/qat_utils.py:184:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:222:23-33: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:236:25-41: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:261:12-58: Returned type `_WrapperModule` is not assignable to declared return type `(...) -> Unknown` [bad-return] +ERROR torch/ao/quantization/pt2e/qat_utils.py:315:12-65: Returned type `_WrapperModule` is not assignable to declared return type `(...) -> Unknown` [bad-return] +ERROR torch/ao/quantization/pt2e/qat_utils.py:596:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:596:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:596:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:596:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:596:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:596:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:596:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:596:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:596:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:596:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:596:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:596:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:596:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:596:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:598:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:598:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:598:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:598:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:598:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:598:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:598:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:598:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:598:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:598:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:598:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:598:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:598:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:598:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:601:25-49: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:601:25-49: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:601:25-49: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:601:25-49: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:601:25-49: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:601:25-49: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:601:25-49: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:601:25-49: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:601:25-49: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:601:25-49: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:601:25-49: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:601:25-49: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:601:25-49: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:601:25-49: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation] +ERROR torch/ao/quantization/pt2e/qat_utils.py:656:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:657:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:658:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:659:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:660:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:661:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:662:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:667:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:668:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:669:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:670:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:671:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:672:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:673:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:903:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:904:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:905:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:906:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:907:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:908:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:913:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:914:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:915:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:916:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:917:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/qat_utils.py:918:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:85:21-32: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:86:31-42: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:91:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:99:53-64: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:105:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:111:77-87: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:168:14-25: No attribute `round` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:169:29-40: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:172:13-24: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:173:27-37: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:177:21-32: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:178:31-42: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:183:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:189:53-64: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:275:21-32: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:276:31-42: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:281:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:307:53-64: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:318:13-24: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:324:77-87: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:370:21-32: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:371:21-32: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:375:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:381:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:387:74-84: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:445:21-32: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:446:21-32: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:448:13-24: No attribute `round` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:448:76-87: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:449:13-24: No attribute `round` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:449:76-87: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:453:69-79: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:502:12-23: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:503:21-32: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:508:16-27: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:509:26-36: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:527:9-20: No attribute `round` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:528:20-31: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:531:9-20: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:532:20-30: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:553:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:553:69-82: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:568:14-29: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:572:15-30: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:573:23-33: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:593:12-27: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:594:21-32: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:595:41-52: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:596:16-31: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:623:9-22: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:623:48-58: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:624:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:624:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:625:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:625:30-39: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:626:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:626:36-45: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:627:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:627:35-44: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:628:9-22: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:628:48-58: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:629:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:629:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:630:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:630:30-39: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:631:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:631:36-45: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:632:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:632:35-44: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:633:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:633:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:634:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:634:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:635:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:635:30-39: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:636:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:636:36-45: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:637:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:637:35-44: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:641:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:641:35-46: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:644:9-20: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:644:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:645:9-22: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:645:48-58: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:646:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:646:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:647:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:647:30-39: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:648:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:648:36-45: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:649:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:649:35-44: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:650:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:650:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:654:9-22: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:654:54-64: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:655:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:655:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:656:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:656:30-39: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:657:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:657:36-45: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:658:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:658:35-44: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:659:9-22: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:659:54-64: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:660:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:660:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:661:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:661:30-39: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:662:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:662:36-45: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:663:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:663:35-44: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:664:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:664:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:665:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:665:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:666:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:666:30-39: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:667:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:667:36-45: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:668:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:668:35-44: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:672:9-22: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:672:54-64: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:673:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:673:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:674:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:674:30-39: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:675:9-22: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:675:54-64: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:676:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:676:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:677:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:677:30-39: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:678:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:678:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:679:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:679:30-39: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:680:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:680:36-45: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:681:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:681:35-44: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:685:9-22: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:685:54-64: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:686:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:686:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:687:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:687:30-39: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:688:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:688:36-45: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:689:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:689:35-44: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:690:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:690:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:691:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:691:30-39: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:692:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:692:36-45: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:693:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:693:35-44: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:697:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:697:39-50: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:698:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:698:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:699:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:699:30-39: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:700:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:700:36-45: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:701:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:701:35-44: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:705:9-22: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:705:54-64: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:706:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:706:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:707:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:707:30-39: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:708:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:708:36-45: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:709:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:709:35-44: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:713:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:713:39-50: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:714:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:714:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:715:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:715:30-39: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:722:9-22: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:722:54-64: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:723:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:723:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:724:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:724:30-39: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:733:13-58: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:734:13-64: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:737:53-64: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:737:65-78: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:741:53-64: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:741:65-78: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:746:13-50: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:747:13-56: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:753:13-50: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:754:13-56: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:760:13-52: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:761:13-58: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:765:13-47: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:766:13-53: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:770:13-54: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:771:13-60: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:777:13-54: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:778:13-64: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:782:13-56: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:783:13-66: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:787:13-55: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:788:13-65: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:794:13-57: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/representation/rewrite.py:795:13-67: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type] +ERROR torch/ao/quantization/pt2e/utils.py:364:10-23: Module `torch._export` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/quantization/pt2e/utils.py:475:46-57: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/pt2e/utils.py:517:50-61: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/qconfig.py:181:52-65: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/qconfig.py:182:48-61: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/qconfig.py:189:52-65: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/qconfig.py:190:48-61: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/qconfig.py:348:15-26: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/qconfig.py:355:15-26: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/qconfig.py:361:45-58: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/qconfig.py:366:45-58: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/qconfig.py:496:15-26: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/qconfig.py:508:15-26: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/qconfig.py:516:52-65: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/qconfig.py:517:48-61: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/qconfig.py:521:52-64: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/qconfig_mapping.py:54:5-18: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/qconfig_mapping.py:59:5-15: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantization_mappings.py:211:21-35: Module `torch.nn.quantizable` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/quantization/quantization_mappings.py:211:42-56: Module `torch.nn.quantizable` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/quantization/quantize.py:61:18-32: Module `torch.nn.quantizable` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/quantization/quantize.py:62:32-46: Module `torch.nn.quantizable` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/quantization/quantize.py:65:9-23: Module `torch.nn.quantizable` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/quantization/quantize.py:65:30-42: Module `torch.nn.quantized` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/quantization/quantize.py:66:9-23: Module `torch.nn.quantizable` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/quantization/quantize.py:66:44-56: Module `torch.nn.quantized` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/ao/quantization/quantize.py:377:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize.py:471:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] + WARN torch/ao/quantization/quantize.py:477:5-12: `prepare` is deprecated [deprecated] + WARN torch/ao/quantization/quantize.py:479:5-12: `convert` is deprecated [deprecated] +ERROR torch/ao/quantization/quantize.py:485:37-48: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantize.py:515:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize.py:517:21-32: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantize.py:526:23-36: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantize.py:535:23-35: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantize.py:540:23-37: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantize.py:549:21-32: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantize.py:551:23-36: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantize.py:553:23-35: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantize.py:555:23-37: No attribute `quint4x2` in module `torch` [missing-attribute] + WARN torch/ao/quantization/quantize.py:570:5-12: `convert` is deprecated [deprecated] +ERROR torch/ao/quantization/quantize.py:590:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] + WARN torch/ao/quantization/quantize.py:600:5-12: `convert` is deprecated [deprecated] + WARN torch/ao/quantization/quantize.py:601:5-12: `prepare` is deprecated [deprecated] +ERROR torch/ao/quantization/quantize.py:619:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] + WARN torch/ao/quantization/quantize.py:623:5-16: `prepare_qat` is deprecated [deprecated] + WARN torch/ao/quantization/quantize.py:625:5-12: `convert` is deprecated [deprecated] +ERROR torch/ao/quantization/quantize.py:666:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize.py:800:43-55: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantize_fx.py:237:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_fx.py:393:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_fx.py:507:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_fx.py:624:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_fx.py:675:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_fx.py:727:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:58:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:60:15-45: No attribute `_jit_pass_fold_convbn` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:75:15-50: No attribute `_jit_pass_insert_observers` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:97:5-30: No attribute `_jit_pass_inline` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:99:15-73: No attribute `_jit_pass_insert_observer_method_for_ondevice_ptq` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:110:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:115:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:133:15-54: No attribute `_jit_pass_insert_quant_dequant` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:144:19-52: No attribute `_jit_pass_quant_finalize` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:151:5-44: No attribute `_jit_pass_constant_propagation` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:152:5-27: No attribute `_jit_pass_dce` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:169:15-71: No attribute `_jit_pass_insert_quant_dequant_for_ondevice_ptq` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:172:15-65: No attribute `_jit_pass_quant_finalize_for_ondevice_ptq` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:183:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:194:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:245:5-44: No attribute `_jit_pass_constant_propagation` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:246:5-27: No attribute `_jit_pass_dce` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:303:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_jit.py:356:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_pt2e.py:93:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_pt2e.py:171:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantize_pt2e.py:238:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/ao/quantization/quantizer/embedding_quantizer.py:29:15-26: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/embedding_quantizer.py:30:17-55: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/quantizer.py:38:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/quantizer.py:46:14-27: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/quantizer.py:70:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/quantizer.py:75:14-27: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/quantizer.py:105:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/quantizer.py:108:14-27: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/x86_inductor_quantizer.py:194:17-26: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/x86_inductor_quantizer.py:205:17-30: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/x86_inductor_quantizer.py:211:17-29: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/x86_inductor_quantizer.py:300:15-26: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/x86_inductor_quantizer.py:303:17-40: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/x86_inductor_quantizer.py:318:15-25: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/x86_inductor_quantizer.py:321:17-44: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/x86_inductor_quantizer.py:346:15-28: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer.py:59:14-24: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer.py:60:12-22: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer.py:61:11-21: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer.py:82:18-27: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer.py:134:15-25: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer.py:137:17-40: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer.py:144:9-36: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer.py:144:60-86: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer.py:157:30-56: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer.py:162:15-25: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:125:9-32: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:126:9-35: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:141:9-32: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:142:9-35: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:159:9-35: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:160:9-36: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:177:35-46: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:510:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:511:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:512:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:513:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:514:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:515:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:516:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:521:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:522:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:523:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:524:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:525:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:526:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:527:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:761:38-51: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:1026:55-64: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:1139:28-40: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xpu_inductor_quantizer.py:32:15-25: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xpu_inductor_quantizer.py:35:17-40: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xpu_inductor_quantizer.py:47:15-25: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/quantizer/xpu_inductor_quantizer.py:50:17-44: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:106:5-20: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:107:5-28: No attribute `repeat_interleave` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:108:5-18: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:109:5-18: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:110:5-16: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:111:5-14: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:112:5-15: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:113:5-20: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:114:5-14: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:117:5-15: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:182:23-46: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:182:61-87: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:187:9-33: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:188:9-47: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:189:9-36: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:202:9-21: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:202:23-34: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:203:9-20: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:203:22-32: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:204:9-21: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:204:23-34: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:205:9-23: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:205:25-36: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:206:9-23: No attribute `quint2x4` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:206:25-36: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:207:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:207:22-33: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:208:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:208:21-31: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:209:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:209:23-35: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:210:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:210:22-33: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:211:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:211:22-33: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:212:9-26: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:212:28-45: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:213:9-28: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:213:30-49: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:231:19-42: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:235:23-50: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:236:23-47: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:298:9-21: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:299:9-20: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:300:9-21: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:301:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:302:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:303:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:304:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:305:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:306:9-26: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:307:9-28: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:325:9-21: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:326:9-20: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:327:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:328:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:336:42-54: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:336:56-67: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:344:9-21: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:345:9-20: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:346:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:347:9-23: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:348:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:349:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:350:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:351:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:352:9-26: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:353:9-28: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:361:38-50: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:361:52-63: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:361:65-76: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:361:78-88: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:370:30-42: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:370:44-55: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:373:26-37: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:373:39-49: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:396:9-21: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:397:9-20: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:398:9-23: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:399:9-21: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:400:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:401:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:402:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:403:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:404:9-26: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:405:9-28: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:415:24-37: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:418:34-47: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:452:12-21: No attribute `any` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:462:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:473:22-34: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:473:36-47: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:487:22-33: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:487:35-45: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:492:24-36: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:492:38-49: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:501:22-33: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:501:35-45: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:506:24-36: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:506:38-49: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:511:24-36: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:511:38-49: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:513:23-35: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:515:23-34: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:661:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:664:14-27: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:664:30-53: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:678:16-28: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:678:65-77: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:682:19-28: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:682:38-54: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:683:19-28: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:683:38-54: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:686:13-23: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:686:50-62: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:687:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:687:56-67: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:690:19-45: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:690:60-87: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:691:23-32: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:693:17-26: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:694:22-33: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:694:35-47: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:702:21-59: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:704:17-28: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:704:49-64: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:712:17-26: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:713:34-45: No attribute `round` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:713:70-79: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:714:22-33: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:720:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:723:22-34: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:726:23-61: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:727:26-38: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:731:21-33: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:731:50-61: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:815:9-21: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:815:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/ao/quantization/utils.py:820:20-32: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/autograd/__init__.py:74:16-26: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/autograd/__init__.py:103:24-34: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/autograd/__init__.py:135:33-51: No attribute `is_same_size` in module `torch` [missing-attribute] +ERROR torch/autograd/__init__.py:220:25-35: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/autograd/__init__.py:230:25-40: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/autograd/__init__.py:230:60-81: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/autograd/__init__.py:316:8-49: No attribute `_are_functorch_transforms_active` in module `torch._C` [missing-attribute] +ERROR torch/autograd/__init__.py:535:18-34: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/autograd/__init__.py:570:8-31: No attribute `_autograd_init` in module `torch._C` [missing-attribute] +ERROR torch/autograd/__init__.py:607:5-43: No attribute `_register_py_class_for_device` in module `torch._C` [missing-attribute] +ERROR torch/autograd/__init__.py:610:29-64: No attribute `_is_multithreading_enabled` in module `torch._C` [missing-attribute] +ERROR torch/autograd/__init__.py:611:1-21: No attribute `_add_docstr` in module `torch._C` [missing-attribute] +ERROR torch/autograd/__init__.py:615:26-58: No attribute `_is_view_replay_enabled` in module `torch._C` [missing-attribute] +ERROR torch/autograd/__init__.py:616:1-21: No attribute `_add_docstr` in module `torch._C` [missing-attribute] +ERROR torch/autograd/anomaly_mode.py:80:21-45: No attribute `is_anomaly_enabled` in module `torch` [missing-attribute] +ERROR torch/autograd/anomaly_mode.py:82:31-65: No attribute `is_anomaly_check_nan_enabled` in module `torch` [missing-attribute] +ERROR torch/autograd/anomaly_mode.py:91:9-34: No attribute `set_anomaly_enabled` in module `torch` [missing-attribute] +ERROR torch/autograd/anomaly_mode.py:94:9-34: No attribute `set_anomaly_enabled` in module `torch` [missing-attribute] +ERROR torch/autograd/anomaly_mode.py:115:21-45: No attribute `is_anomaly_enabled` in module `torch` [missing-attribute] +ERROR torch/autograd/anomaly_mode.py:116:31-65: No attribute `is_anomaly_check_nan_enabled` in module `torch` [missing-attribute] +ERROR torch/autograd/anomaly_mode.py:117:9-34: No attribute `set_anomaly_enabled` in module `torch` [missing-attribute] +ERROR torch/autograd/anomaly_mode.py:123:9-34: No attribute `set_anomaly_enabled` in module `torch` [missing-attribute] +ERROR torch/autograd/forward_ad.py:33:17-43: No attribute `_enter_dual_level` in module `torch._C` [missing-attribute] +ERROR torch/autograd/forward_ad.py:60:5-30: No attribute `_exit_dual_level` in module `torch._C` [missing-attribute] +ERROR torch/autograd/forward_ad.py:128:12-32: No attribute `_make_dual` in module `torch._VF` [missing-attribute] +ERROR torch/autograd/forward_ad.py:168:20-42: No attribute `_unpack_dual` in module `torch._VF` [missing-attribute] +ERROR torch/autograd/forward_ad.py:215:24-53: No attribute `_is_fwd_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/autograd/forward_ad.py:223:9-39: No attribute `_set_fwd_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/autograd/forward_ad.py:229:9-39: No attribute `_set_fwd_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/autograd/function.py:297:25-41: No attribute `_FunctionBase` in module `torch._C` [missing-attribute] +ERROR torch/autograd/function.py:350:5-21: No attribute `_FunctionBase` in module `torch._C` [missing-attribute] +ERROR torch/autograd/function.py:580:16-57: No attribute `_are_functorch_transforms_active` in module `torch._C` [missing-attribute] +ERROR torch/autograd/function.py:582:20-36: Module `torch._functorch.utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/autograd/function.py:612:16-37: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/autograd/function.py:754:42-56: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/autograd/functional.py:248:23-39: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/autograd/functional.py:351:45-66: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/autograd/functional.py:451:13-29: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/autograd/functional.py:555:35-51: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/autograd/functional.py:772:34-50: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/autograd/functional.py:838:41-57: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/autograd/functional.py:842:21-32: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/autograd/functional.py:1083:45-66: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/autograd/functional.py:1193:26-42: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/autograd/functional.py:1198:45-66: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/autograd/grad_mode.py:76:16-35: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/autograd/grad_mode.py:81:21-42: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/autograd/grad_mode.py:136:21-42: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/autograd/grad_mode.py:137:9-35: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/autograd/grad_mode.py:140:9-35: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/autograd/grad_mode.py:185:21-42: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/autograd/grad_mode.py:187:9-35: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/autograd/grad_mode.py:190:9-35: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/autograd/grad_mode.py:194:9-35: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/autograd/grad_mode.py:197:9-35: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/autograd/grad_mode.py:280:16-35: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/autograd/grad_mode.py:290:40-63: No attribute `_InferenceMode` in module `torch._C` [missing-attribute] +ERROR torch/autograd/grad_mode.py:304:20-43: No attribute `_InferenceMode` in module `torch._C` [missing-attribute] +ERROR torch/autograd/grad_mode.py:332:21-56: No attribute `_is_multithreading_enabled` in module `torch._C` [missing-attribute] +ERROR torch/autograd/grad_mode.py:333:9-45: No attribute `_set_multithreading_enabled` in module `torch._C` [missing-attribute] +ERROR torch/autograd/grad_mode.py:340:9-45: No attribute `_set_multithreading_enabled` in module `torch._C` [missing-attribute] +ERROR torch/autograd/grad_mode.py:372:21-53: No attribute `_is_view_replay_enabled` in module `torch._C` [missing-attribute] +ERROR torch/autograd/grad_mode.py:373:9-42: No attribute `_set_view_replay_enabled` in module `torch._C` [missing-attribute] +ERROR torch/autograd/grad_mode.py:380:9-42: No attribute `_set_view_replay_enabled` in module `torch._C` [missing-attribute] +ERROR torch/autograd/grad_mode.py:420:9-27: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/autograd/gradcheck.py:38:9-25: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:39:9-25: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:40:9-25: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:41:9-25: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:46:63-79: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:62:55-68: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:76:60-73: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:104:22-38: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:107:15-25: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:107:59-69: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:109:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:118:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:126:13-36: No attribute `sparse_coo_tensor` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:133:29-45: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:133:47-63: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:138:29-45: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:138:47-63: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:142:50-66: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:189:31-47: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:192:33-49: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:193:25-63: No attribute `_convert_indices_from_csr_to_coo` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:197:33-49: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:198:25-63: No attribute `_convert_indices_from_csr_to_coo` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:202:33-49: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:206:17-55: No attribute `_convert_indices_from_csr_to_coo` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:210:23-35: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:212:21-32: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:213:25-36: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:213:37-47: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:220:33-49: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:224:17-55: No attribute `_convert_indices_from_csr_to_coo` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:228:23-35: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:230:21-32: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:231:25-36: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:231:37-47: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:559:52-68: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:752:63-76: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:837:22-40: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:908:21-37: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:942:34-47: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:942:64-80: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1004:16-24: No attribute `ne` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1019:23-39: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1111:29-40: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1120:21-37: No attribute `randn_like` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1122:21-32: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1125:33-44: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1133:16-30: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1163:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1168:21-37: No attribute `randn_like` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1171:17-28: No attribute `stack` in module `torch` [missing-attribute] + WARN torch/autograd/gradcheck.py:1179:22-26: `torch._vmap_internals.vmap` is deprecated [deprecated] +ERROR torch/autograd/gradcheck.py:1179:32-43: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1190:12-26: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1207:13-29: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1215:58-71: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1239:20-34: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1239:39-55: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1271:52-68: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1287:61-77: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1304:28-42: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1335:13-29: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1363:13-32: Module `torch._C._functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/autograd/gradcheck.py:1376:21-40: Module `torch._C._functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/autograd/gradcheck.py:1442:32-42: No attribute `real` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1442:65-75: No attribute `imag` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1675:21-40: No attribute `promote_types` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1678:12-26: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1682:17-33: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1683:16-29: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1684:19-34: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1685:16-29: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1694:20-36: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1700:13-23: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1705:15-38: No attribute `sparse_coo_tensor` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1707:25-41: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1707:43-59: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1714:13-23: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1719:15-45: No attribute `sparse_compressed_tensor` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1729:15-25: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1802:21-35: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1826:13-28: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:1831:14-26: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/autograd/gradcheck.py:2248:22-34: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/autograd/graph.py:175:41-60: Module `torch._C._functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/autograd/graph.py:228:28-50: No attribute `_FunctionBase` in module `torch._C` [missing-attribute] +ERROR torch/autograd/graph.py:256:5-32: No attribute `_increment_version` in module `torch._C` [missing-attribute] +ERROR torch/autograd/graph.py:335:9-27: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/autograd/graph.py:340:9-27: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/autograd/graph.py:387:56-68: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/autograd/graph.py:390:22-33: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/autograd/graph.py:399:43-55: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/autograd/graph.py:430:13-31: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/autograd/graph.py:432:9-27: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/autograd/graph.py:437:13-31: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/autograd/graph.py:439:13-31: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/autograd/graph.py:446:12-65: No attribute `_set_warn_on_accumulate_grad_stream_mismatch` in module `torch._C` [missing-attribute] +ERROR torch/autograd/graph.py:539:22-53: No attribute `_current_graph_task_id` in module `torch._C` [missing-attribute] +ERROR torch/autograd/graph.py:554:33-67: No attribute `_will_engine_execute_node` in module `torch._C` [missing-attribute] +ERROR torch/autograd/graph.py:579:18-49: No attribute `_current_graph_task_id` in module `torch._C` [missing-attribute] +ERROR torch/autograd/graph.py:625:13-48: Module `torch._subclasses.functional_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/autograd/graph.py:640:13-48: Module `torch._subclasses.functional_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/autograd/graph.py:842:16-47: No attribute `_current_autograd_node` in module `torch._C` [missing-attribute] +ERROR torch/autograd/profiler.py:12:22-51: Could not import `_get_privateuse1_backend_name` from `torch._C` [missing-module-attribute] +ERROR torch/autograd/profiler.py:818:18-55: No attribute `DisableTorchFunctionSubclass` in module `torch._C` [missing-attribute] +ERROR torch/autograd/profiler.py:856:18-55: No attribute `DisableTorchFunctionSubclass` in module `torch._C` [missing-attribute] +ERROR torch/autograd/profiler.py:1094:28-46: No attribute `_demangle` in module `torch._C` [missing-attribute] +ERROR torch/autograd/profiler_legacy.py:81:13-31: Module `torch._C._profiler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/autograd/profiler_util.py:975:21-39: No attribute `_demangle` in module `torch._C` [missing-attribute] +ERROR torch/autograd/variable.py:3:22-59: Could not import `_ImperativeEngine` from `torch._C` [missing-module-attribute] +ERROR torch/backends/__init__.py:59:9-20: Class member `PropModule.__getattr__` overrides parent class `ModuleType` in an inconsistent manner [bad-param-name-override] +ERROR torch/backends/__init__.py:70:13-48: No attribute `_set_fp32_precision_setter` in module `torch._C` [missing-attribute] +ERROR torch/backends/__init__.py:78:20-55: No attribute `_get_fp32_precision_getter` in module `torch._C` [missing-attribute] +ERROR torch/backends/__init__.py:84:19-54: No attribute `_get_fp32_precision_getter` in module `torch._C` [missing-attribute] +ERROR torch/backends/__init__.py:86:9-44: No attribute `_set_fp32_precision_setter` in module `torch._C` [missing-attribute] +ERROR torch/backends/__init__.py:103:16-51: No attribute `_get_fp32_precision_getter` in module `torch._C` [missing-attribute] +ERROR torch/backends/__init__.py:110:16-51: No attribute `_set_fp32_precision_setter` in module `torch._C` [missing-attribute] +ERROR torch/backends/_coreml/preprocess.py:87:31-52: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/backends/_nnapi/prepare.py:68:17-33: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/backends/_nnapi/prepare.py:175:24-36: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/backends/_nnapi/prepare.py:175:54-65: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/backends/_nnapi/serializer.py:1022:21-32: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/backends/_nnapi/serializer.py:1849:40-63: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/backends/_nnapi/serializer.py:1850:32-44: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/backends/_nnapi/serializer.py:1853:40-51: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/backends/_nnapi/serializer.py:1854:31-70: No attribute `_make_per_tensor_quantized_tensor` in module `torch` [missing-attribute] +ERROR torch/backends/_nnapi/serializer.py:1855:56-67: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/backends/_nnapi/serializer.py:1861:20-45: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/backends/_nnapi/serializer.py:1861:71-83: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/backends/_nnapi/serializer.py:1900:33-44: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/backends/_nnapi/serializer.py:2030:40-63: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/backends/_nnapi/serializer.py:2031:32-44: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/backends/_nnapi/serializer.py:2034:40-51: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/backends/_nnapi/serializer.py:2035:31-70: No attribute `_make_per_tensor_quantized_tensor` in module `torch` [missing-attribute] +ERROR torch/backends/_nnapi/serializer.py:2036:56-67: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/backends/_nnapi/serializer.py:2043:20-45: No attribute `quantize_per_tensor` in module `torch` [missing-attribute] +ERROR torch/backends/_nnapi/serializer.py:2043:71-83: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/backends/cpu/__init__.py:21:12-40: No attribute `_get_cpu_capability` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:46:12-30: No attribute `_has_cuda` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:77:9-41: No attribute `_cufft_get_plan_cache_size` in module `torch` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:83:9-45: No attribute `_cufft_get_plan_cache_max_size` in module `torch` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:83:47-83: No attribute `_cufft_set_plan_cache_max_size` in module `torch` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:87:16-45: No attribute `_cufft_clear_plan_cache` in module `torch` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:156:20-51: No attribute `_get_cublas_allow_tf32` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:159:17-76: No attribute `_get_cublas_allow_fp16_reduced_precision_reduction` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:164:17-76: No attribute `_get_cublas_allow_fp16_reduced_precision_reduction` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:169:17-76: No attribute `_get_cublas_allow_bf16_reduced_precision_reduction` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:174:17-76: No attribute `_get_cublas_allow_bf16_reduced_precision_reduction` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:178:20-64: No attribute `_get_cublas_allow_fp16_accumulation` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:180:20-55: No attribute `_get_fp32_precision_getter` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:185:20-51: No attribute `_set_cublas_allow_tf32` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:190:20-79: No attribute `_set_cublas_allow_fp16_reduced_precision_reduction` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:198:20-79: No attribute `_set_cublas_allow_bf16_reduced_precision_reduction` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:203:20-64: No attribute `_set_cublas_allow_fp16_accumulation` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:205:20-55: No attribute `_set_fp32_precision_setter` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:210:16-39: No attribute `_LinalgBackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:211:17-40: No attribute `_LinalgBackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:212:14-37: No attribute `_LinalgBackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:218:31-54: No attribute `_LinalgBackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:219:6-29: No attribute `_LinalgBackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:268:9-47: No attribute `_set_linalg_preferred_backend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:269:30-53: No attribute `_LinalgBackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:270:9-47: No attribute `_set_linalg_preferred_backend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:274:12-50: No attribute `_get_linalg_preferred_backend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:278:16-37: No attribute `_BlasBackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:279:15-36: No attribute `_BlasBackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:280:16-37: No attribute `_BlasBackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:281:17-38: No attribute `_BlasBackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:282:18-39: No attribute `_BlasBackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:283:11-32: No attribute `_BlasBackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:289:31-52: No attribute `_BlasBackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:290:6-27: No attribute `_BlasBackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:323:9-45: No attribute `_set_blas_preferred_backend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:324:30-51: No attribute `_BlasBackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:325:9-45: No attribute `_set_blas_preferred_backend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:329:12-48: No attribute `_get_blas_preferred_backend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:333:16-39: No attribute `_ROCmFABackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:334:17-40: No attribute `_ROCmFABackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:335:11-34: No attribute `_ROCmFABackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:340:22-47: Could not import `_SDPAParams` from `torch._C` [missing-module-attribute] +ERROR torch/backends/cuda/__init__.py:340:49-74: Could not import `_SDPBackend` from `torch._C` [missing-module-attribute] +ERROR torch/backends/cuda/__init__.py:344:31-54: No attribute `_ROCmFABackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:345:6-29: No attribute `_ROCmFABackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:374:9-48: No attribute `_set_rocm_fa_preferred_backend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:375:30-53: No attribute `_ROCmFABackend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:376:9-48: No attribute `_set_rocm_fa_preferred_backend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:380:12-51: No attribute `_get_rocm_fa_preferred_backend` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:394:12-43: No attribute `_get_flash_sdp_enabled` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:403:5-32: No attribute `_set_sdp_use_flash` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:412:12-51: No attribute `_get_mem_efficient_sdp_enabled` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:421:5-40: No attribute `_set_sdp_use_mem_efficient` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:430:12-42: No attribute `_get_math_sdp_enabled` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:439:5-31: No attribute `_set_sdp_use_math` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:448:5-53: No attribute `_set_math_sdp_allow_fp16_bf16_reduction` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:457:12-60: No attribute `_get_math_sdp_allow_fp16_bf16_reduction` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:470:12-50: No attribute `_is_flash_attention_available` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:490:12-45: No attribute `_can_use_flash_attention` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:510:12-53: No attribute `_can_use_mem_efficient_attention` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:530:12-45: No attribute `_can_use_cudnn_attention` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:539:12-43: No attribute `_get_cudnn_sdp_enabled` in module `torch._C` [missing-attribute] +ERROR torch/backends/cuda/__init__.py:548:5-32: No attribute `_set_sdp_use_cudnn` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:102:5-15: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:103:5-16: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:104:5-17: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:110:12-31: No attribute `_has_cudnn` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:114:12-39: No attribute `_get_cudnn_enabled` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:147:9-36: No attribute `_get_cudnn_enabled` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:148:9-38: No attribute `_get_cudnn_benchmark` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:149:41-81: No attribute `_cuda_get_cudnn_benchmark_limit` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:150:9-42: No attribute `_get_cudnn_deterministic` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:151:9-39: No attribute `_get_cudnn_allow_tf32` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:152:9-44: No attribute `_get_fp32_precision_getter` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:155:9-36: No attribute `_set_cudnn_enabled` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:157:9-38: No attribute `_set_cudnn_benchmark` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:159:9-49: No attribute `_cuda_set_cudnn_benchmark_limit` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:161:9-42: No attribute `_set_cudnn_deterministic` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:163:9-39: No attribute `_set_cudnn_allow_tf32` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:165:9-44: No attribute `_set_fp32_precision_setter` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:204:27-54: No attribute `_get_cudnn_enabled` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:204:56-83: No attribute `_set_cudnn_enabled` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:206:9-42: No attribute `_get_cudnn_deterministic` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:206:44-77: No attribute `_set_cudnn_deterministic` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:209:9-38: No attribute `_get_cudnn_benchmark` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:209:40-69: No attribute `_set_cudnn_benchmark` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:214:13-53: No attribute `_cuda_get_cudnn_benchmark_limit` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:215:13-53: No attribute `_cuda_set_cudnn_benchmark_limit` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:218:9-39: No attribute `_get_cudnn_allow_tf32` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/__init__.py:218:41-71: No attribute `_set_cudnn_allow_tf32` in module `torch._C` [missing-attribute] +ERROR torch/backends/cudnn/rnn.py:64:29-40: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/backends/cudnn/rnn.py:65:28-40: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/backends/cusparselt/__init__.py:51:12-36: No attribute `_has_cusparselt` in module `torch._C` [missing-attribute] +ERROR torch/backends/kleidiai/__init__.py:7:12-34: No attribute `_has_kleidiai` in module `torch._C` [missing-attribute] +ERROR torch/backends/miopen/__init__.py:12:19-49: No attribute `_get_miopen_immediate` in module `torch._C` [missing-attribute] +ERROR torch/backends/miopen/__init__.py:14:9-39: No attribute `_set_miopen_immediate` in module `torch._C` [missing-attribute] +ERROR torch/backends/miopen/__init__.py:44:9-39: No attribute `_get_miopen_immediate` in module `torch._C` [missing-attribute] +ERROR torch/backends/miopen/__init__.py:44:41-71: No attribute `_set_miopen_immediate` in module `torch._C` [missing-attribute] +ERROR torch/backends/mkl/__init__.py:7:12-28: No attribute `has_mkl` in module `torch._C` [missing-attribute] +ERROR torch/backends/mkl/__init__.py:50:14-31: Module `torch._C._verbose` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/backends/mkl/__init__.py:57:9-26: Module `torch._C._verbose` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/backends/mkldnn/__init__.py:19:12-32: No attribute `_has_mkldnn` in module `torch._C` [missing-attribute] +ERROR torch/backends/mkldnn/__init__.py:70:14-31: Module `torch._C._verbose` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/backends/mkldnn/__init__.py:77:9-26: Module `torch._C._verbose` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/backends/mkldnn/__init__.py:85:9-37: No attribute `_get_mkldnn_enabled` in module `torch._C` [missing-attribute] +ERROR torch/backends/mkldnn/__init__.py:86:9-43: No attribute `_get_mkldnn_deterministic` in module `torch._C` [missing-attribute] +ERROR torch/backends/mkldnn/__init__.py:87:9-40: No attribute `_get_onednn_allow_tf32` in module `torch._C` [missing-attribute] +ERROR torch/backends/mkldnn/__init__.py:88:9-44: No attribute `_get_fp32_precision_getter` in module `torch._C` [missing-attribute] +ERROR torch/backends/mkldnn/__init__.py:91:9-37: No attribute `_set_mkldnn_enabled` in module `torch._C` [missing-attribute] +ERROR torch/backends/mkldnn/__init__.py:93:9-43: No attribute `_set_mkldnn_deterministic` in module `torch._C` [missing-attribute] +ERROR torch/backends/mkldnn/__init__.py:95:9-40: No attribute `_set_onednn_allow_tf32` in module `torch._C` [missing-attribute] +ERROR torch/backends/mkldnn/__init__.py:97:9-44: No attribute `_set_fp32_precision_setter` in module `torch._C` [missing-attribute] +ERROR torch/backends/mkldnn/__init__.py:119:27-55: No attribute `_get_mkldnn_enabled` in module `torch._C` [missing-attribute] +ERROR torch/backends/mkldnn/__init__.py:119:57-85: No attribute `_set_mkldnn_enabled` in module `torch._C` [missing-attribute] +ERROR torch/backends/mkldnn/__init__.py:121:9-43: No attribute `_get_mkldnn_deterministic` in module `torch._C` [missing-attribute] +ERROR torch/backends/mkldnn/__init__.py:121:45-79: No attribute `_set_mkldnn_deterministic` in module `torch._C` [missing-attribute] +ERROR torch/backends/mkldnn/__init__.py:124:9-40: No attribute `_get_onednn_allow_tf32` in module `torch._C` [missing-attribute] +ERROR torch/backends/mkldnn/__init__.py:124:42-73: No attribute `_set_onednn_allow_tf32` in module `torch._C` [missing-attribute] +ERROR torch/backends/mps/__init__.py:25:12-29: No attribute `_has_mps` in module `torch._C` [missing-attribute] +ERROR torch/backends/mps/__init__.py:31:12-38: No attribute `_mps_is_available` in module `torch._C` [missing-attribute] +ERROR torch/backends/mps/__init__.py:37:12-46: No attribute `_mps_is_on_macos_or_newer` in module `torch._C` [missing-attribute] +ERROR torch/backends/mps/__init__.py:43:12-46: No attribute `_mps_is_on_macos_or_newer` in module `torch._C` [missing-attribute] +ERROR torch/backends/mps/__init__.py:49:12-34: No attribute `_mps_get_name` in module `torch._C` [missing-attribute] +ERROR torch/backends/mps/__init__.py:60:12-40: No attribute `_mps_get_core_count` in module `torch._C` [missing-attribute] +ERROR torch/backends/nnpack/__init__.py:13:12-35: No attribute `_nnpack_available` in module `torch` [missing-attribute] +ERROR torch/backends/nnpack/__init__.py:18:19-47: No attribute `_get_nnpack_enabled` in module `torch._C` [missing-attribute] +ERROR torch/backends/nnpack/__init__.py:19:5-33: No attribute `_set_nnpack_enabled` in module `torch._C` [missing-attribute] +ERROR torch/backends/openmp/__init__.py:7:12-31: No attribute `has_openmp` in module `torch._C` [missing-attribute] +ERROR torch/backends/quantized/__init__.py:34:33-54: No attribute `_get_qengine` in module `torch._C` [missing-attribute] +ERROR torch/backends/quantized/__init__.py:37:9-30: No attribute `_set_qengine` in module `torch._C` [missing-attribute] +ERROR torch/backends/quantized/__init__.py:42:20-48: No attribute `_supported_qengines` in module `torch._C` [missing-attribute] +ERROR torch/backends/quantized/__init__.py:54:9-20: Class member `QuantizedEngine.__getattr__` overrides parent class `ModuleType` in an inconsistent manner [bad-param-name-override] +ERROR torch/backends/xnnpack/__init__.py:10:16-44: No attribute `_is_xnnpack_enabled` in module `torch._C` [missing-attribute] +ERROR torch/backends/xnnpack/__init__.py:21:9-20: Class member `XNNPACKEngine.__getattr__` overrides parent class `ModuleType` in an inconsistent manner [bad-param-name-override] +ERROR torch/contrib/_tensorboard_vis.py:13:5-52: Could not find import of `tensorflow.core.framework` [missing-import] +ERROR torch/contrib/_tensorboard_vis.py:14:5-47: Could not find import of `tensorflow.core.util` [missing-import] +ERROR torch/contrib/_tensorboard_vis.py:15:5-67: Could not find import of `tensorflow.python.summary.writer.writer` [missing-import] +ERROR torch/contrib/_tensorboard_vis.py:37:26-53: No attribute `GraphExecutorState` in module `torch._C` [missing-attribute] +ERROR torch/cpu/__init__.py:12:16-33: Could not import `device` from `torch` [missing-module-attribute] +ERROR torch/cpu/__init__.py:33:12-25: Module `torch._C._cpu` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cpu/__init__.py:38:12-25: Module `torch._C._cpu` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cpu/__init__.py:43:12-25: Module `torch._C._cpu` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cpu/__init__.py:49:12-25: Module `torch._C._cpu` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cpu/__init__.py:54:12-25: Module `torch._C._cpu` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cpu/__init__.py:59:12-25: Module `torch._C._cpu` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cpu/__init__.py:64:12-25: Module `torch._C._cpu` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cpu/amp/autocast_mode.py:34:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/cpu/amp/autocast_mode.py:34:34-48: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/cpu/amp/autocast_mode.py:45:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/cpu/amp/autocast_mode.py:45:30-44: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/cpu/amp/autocast_mode.py:48:12-31: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cpu/amp/autocast_mode.py:58:12-31: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cpu/amp/autocast_mode.py:64:12-31: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cpu/amp/autocast_mode.py:69:12-31: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cuda/__init__.py:26:19-36: Could not import `device` from `torch` [missing-module-attribute] +ERROR torch/cuda/__init__.py:151:19-38: No attribute `_has_magma` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:184:16-45: No attribute `_cuda_getDeviceCount` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:216:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:216:35-49: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:238:5-25: No attribute `_cuda_sleep` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:242:5-38: No attribute `_cuda_busy_wait_for_flag` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:246:5-30: No attribute `_cuda_clear_flag` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:378:20-45: No attribute `AcceleratorError` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:379:20-45: No attribute `OutOfMemoryError` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:424:9-28: No attribute `_cuda_init` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:584:9-33: No attribute `_cuda_setDevice` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:648:12-46: No attribute `_cuda_canDeviceAccessPeer` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:730:5-29: No attribute `_cuda_setStream` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:1059:9-38: No attribute `_cuda_getDeviceCount` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:1072:18-45: No attribute `_cuda_getArchFlags` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:1095:12-36: No attribute `_cuda_getDevice` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:1108:16-42: No attribute `_cuda_synchronize` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:1121:12-38: No attribute `_cuda_ipc_collect` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:1134:18-49: No attribute `_cuda_getCurrentStream` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:1152:18-49: No attribute `_cuda_getDefaultStream` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:1178:18-54: No attribute `_cuda_getStreamFromExternal` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:1189:12-47: No attribute `_cuda_getCurrentBlasHandle` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:1216:5-39: No attribute `_cuda_set_sync_debug_mode` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:1222:12-46: No attribute `_cuda_get_sync_debug_mode` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:1232:5-49: Could not find import of `pynvml` [missing-import] +ERROR torch/cuda/__init__.py:1452:41-53: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1452:59-71: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1459:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1461:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1465:28-40: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1465:45-63: No attribute `Generator` in module `torch._C` [missing-attribute] +ERROR torch/cuda/__init__.py:1478:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1496:51-63: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1570:16-27: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1581:16-28: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1592:16-27: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1603:16-26: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1614:16-26: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1625:16-25: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1636:16-27: No attribute `short` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1647:16-26: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1658:16-26: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1669:16-30: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1680:16-29: No attribute `cdouble` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1691:16-28: No attribute `cfloat` in module `torch` [missing-attribute] +ERROR torch/cuda/__init__.py:1738:18-32: Module `importlib.util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cuda/_device_limits.py:2:22-27: Could not import `dtype` from `torch._C` [missing-module-attribute] +ERROR torch/cuda/_device_limits.py:15:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/cuda/_device_limits.py:47:25-38: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/cuda/_device_limits.py:49:27-40: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/cuda/_device_limits.py:51:27-40: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/cuda/_device_limits.py:85:25-38: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/cuda/_device_limits.py:87:27-41: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/cuda/_device_limits.py:90:27-40: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/cuda/_device_limits.py:92:27-37: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/cuda/_device_limits.py:94:27-40: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/cuda/_sanitizer.py:473:13-33: No attribute `FunctionSchema` in module `torch` [missing-attribute] +ERROR torch/cuda/_sanitizer.py:474:21-35: No attribute `Argument` in module `torch` [missing-attribute] +ERROR torch/cuda/_sanitizer.py:514:17-37: No attribute `FunctionSchema` in module `torch` [missing-attribute] +ERROR torch/cuda/_sanitizer.py:538:23-43: No attribute `FunctionSchema` in module `torch` [missing-attribute] +ERROR torch/cuda/_sanitizer.py:558:9-37: No attribute `_activate_gpu_trace` in module `torch._C` [missing-attribute] +ERROR torch/cuda/_utils.py:519:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/cuda/_utils.py:520:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/cuda/amp/autocast_mode.py:35:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/cuda/amp/autocast_mode.py:35:34-47: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/cuda/amp/autocast_mode.py:46:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/cuda/amp/autocast_mode.py:46:30-43: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/cuda/amp/autocast_mode.py:49:12-31: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cuda/amp/autocast_mode.py:59:12-31: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cuda/amp/autocast_mode.py:65:12-31: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cuda/amp/autocast_mode.py:70:12-31: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cuda/gds.py:52:5-34: No attribute `_gds_register_buffer` in module `torch._C` [missing-attribute] +ERROR torch/cuda/gds.py:69:5-36: No attribute `_gds_deregister_buffer` in module `torch._C` [missing-attribute] +ERROR torch/cuda/gds.py:126:23-52: No attribute `_gds_register_handle` in module `torch._C` [missing-attribute] +ERROR torch/cuda/gds.py:136:9-40: No attribute `_gds_deregister_handle` in module `torch._C` [missing-attribute] +ERROR torch/cuda/gds.py:152:9-35: No attribute `_gds_load_storage` in module `torch._C` [missing-attribute] +ERROR torch/cuda/gds.py:167:9-35: No attribute `_gds_save_storage` in module `torch._C` [missing-attribute] +ERROR torch/cuda/graphs.py:42:5-35: Could not import `_cuda_isCurrentStreamCapturing` from `torch._C` [missing-module-attribute] +ERROR torch/cuda/graphs.py:43:5-15: Could not import `_CUDAGraph` from `torch._C` [missing-module-attribute] +ERROR torch/cuda/graphs.py:44:5-23: Could not import `_graph_pool_handle` from `torch._C` [missing-module-attribute] +ERROR torch/cuda/graphs.py:69:17-36: No attribute `_CUDAGraph` in module `torch._C` [missing-attribute] +ERROR torch/cuda/graphs.py:368:8-33: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/cuda/graphs.py:368:40-71: No attribute `is_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/cuda/graphs.py:400:23-42: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cuda/graphs.py:434:27-46: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cuda/graphs.py:443:29-45: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/cuda/graphs.py:464:33-52: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cuda/graphs.py:479:13-29: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/cuda/graphs.py:520:32-51: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cuda/graphs.py:563:33-52: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cuda/graphs.py:565:20-39: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/cuda/jiterator.py:88:16-66: No attribute `_cuda_jiterator_compile_and_launch_kernel` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:143:5-43: Could not import `_cuda_beginAllocateCurrentThreadToPool` from `torch._C` [missing-module-attribute] +ERROR torch/cuda/memory.py:144:5-30: Could not import `_cuda_beginAllocateToPool` from `torch._C` [missing-module-attribute] +ERROR torch/cuda/memory.py:145:5-24: Could not import `_cuda_CUDAAllocator` from `torch._C` [missing-module-attribute] +ERROR torch/cuda/memory.py:146:5-28: Could not import `_cuda_endAllocateToPool` from `torch._C` [missing-module-attribute] +ERROR torch/cuda/memory.py:147:5-22: Could not import `_cuda_releasePool` from `torch._C` [missing-module-attribute] +ERROR torch/cuda/memory.py:148:5-13: Could not import `_MemPool` from `torch._C` [missing-module-attribute] +ERROR torch/cuda/memory.py:154:12-44: No attribute `_cuda_cudaHostAllocator` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:159:5-30: No attribute `_cuda_lock_mutex` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:163:9-36: No attribute `_cuda_unlock_mutex` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:199:16-61: No attribute `_cuda_cudaCachingAllocator_raw_alloc` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:216:5-51: No attribute `_cuda_cudaCachingAllocator_raw_delete` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:222:9-51: No attribute `_cuda_cudaCachingAllocator_enable` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:249:5-37: No attribute `_cuda_setMemoryFraction` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:265:12-44: No attribute `_cuda_getMemoryFraction` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:280:9-34: No attribute `_cuda_emptyCache` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:393:12-38: No attribute `_cuda_memoryStats` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:413:12-54: No attribute `_cuda_resetAccumulatedMemoryStats` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:432:12-47: No attribute `_cuda_resetPeakMemoryStats` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:508:12-42: No attribute `_cuda_hostMemoryStats` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:517:12-58: No attribute `_cuda_resetAccumulatedHostMemoryStats` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:526:12-51: No attribute `_cuda_resetPeakHostMemoryStats` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:685:12-41: No attribute `_cuda_memorySnapshot` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:832:9-53: Could not find import of `pynvml` [missing-import] +ERROR torch/cuda/memory.py:1228:9-32: No attribute `_cuda_memorySnapshot` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:1316:12-46: No attribute `_cuda_getAllocatorBackend` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:1322:35-63: No attribute `_cuda_CUDAAllocator` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:1358:27-57: No attribute `_cuda_customAllocator` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:1372:5-42: No attribute `_cuda_changeCurrentAllocator` in module `torch._C` [missing-attribute] +ERROR torch/cuda/memory.py:1381:27-54: No attribute `_cuda_getAllocator` in module `torch._C` [missing-attribute] +ERROR torch/cuda/nccl.py:46:11-33: No attribute `_nccl_version` in module `torch._C` [missing-attribute] +ERROR torch/cuda/nccl.py:50:14-43: No attribute `_nccl_version_suffix` in module `torch._C` [missing-attribute] +ERROR torch/cuda/nccl.py:58:12-36: No attribute `_nccl_unique_id` in module `torch._C` [missing-attribute] +ERROR torch/cuda/nccl.py:62:12-36: No attribute `_nccl_init_rank` in module `torch._C` [missing-attribute] +ERROR torch/cuda/nccl.py:77:5-30: No attribute `_nccl_all_reduce` in module `torch._C` [missing-attribute] +ERROR torch/cuda/nccl.py:122:5-26: No attribute `_nccl_reduce` in module `torch._C` [missing-attribute] +ERROR torch/cuda/nccl.py:129:5-29: No attribute `_nccl_broadcast` in module `torch._C` [missing-attribute] +ERROR torch/cuda/nccl.py:140:5-30: No attribute `_nccl_all_gather` in module `torch._C` [missing-attribute] +ERROR torch/cuda/nccl.py:152:5-34: No attribute `_nccl_reduce_scatter` in module `torch._C` [missing-attribute] +ERROR torch/cuda/random.py:24:43-55: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/cuda/random.py:36:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/cuda/random.py:38:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/cuda/random.py:53:48-60: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/cuda/random.py:63:14-40: No attribute `_DisableFuncTorch` in module `torch._C` [missing-attribute] +ERROR torch/cuda/random.py:66:55-78: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/cuda/random.py:68:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/cuda/random.py:70:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/cuda/streams.py:14:14-38: No attribute `_CudaStreamBase` in module `torch._C` [missing-attribute] +ERROR torch/cuda/streams.py:109:32-48: Object of class `Stream` has no attribute `cuda_stream` [missing-attribute] +ERROR torch/cuda/streams.py:117:22-38: Object of class `Stream` has no attribute `cuda_stream` [missing-attribute] +ERROR torch/cuda/streams.py:117:40-51: Object of class `Stream` has no attribute `device` [missing-attribute] +ERROR torch/cuda/streams.py:120:45-56: Object of class `Stream` has no attribute `device` [missing-attribute] +ERROR torch/cuda/streams.py:120:71-87: Object of class `Stream` has no attribute `cuda_stream` [missing-attribute] +ERROR torch/cuda/streams.py:130:20-36: Object of class `Stream` has no attribute `cuda_stream` [missing-attribute] +ERROR torch/cuda/streams.py:156:13-36: No attribute `_CudaEventBase` in module `torch._C` [missing-attribute] +ERROR torch/cuda/streams.py:255:32-47: Object of class `Event` has no attribute `cuda_event` [missing-attribute] +ERROR torch/cuda/streams.py:258:12-27: Object of class `Event` has no attribute `cuda_event` [missing-attribute] +ERROR torch/cuda/tunable.py:437:13-24: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:439:22-33: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:462:20-31: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:463:20-31: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:465:20-30: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:466:20-30: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:474:17-27: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:476:22-32: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:479:17-27: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:481:22-32: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:485:17-27: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:487:22-32: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:490:17-27: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:492:22-32: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:507:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:523:16-27: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:524:16-27: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:531:13-23: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:533:18-28: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:536:13-23: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:538:18-28: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:551:18-31: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:552:17-30: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:553:19-32: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:554:21-35: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:555:17-27: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:556:33-49: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:557:32-47: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:558:26-45: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:559:24-41: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:560:28-49: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:561:28-49: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:635:51-62: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:641:9-17: No attribute `mm` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:656:51-62: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:673:9-18: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:680:53-64: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:706:17-27: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:708:22-32: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:711:17-27: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:713:22-32: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:716:22-34: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:717:22-34: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:721:13-29: No attribute `_scaled_mm` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:728:17-27: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:730:22-32: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:732:13-29: No attribute `_scaled_mm` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:741:51-62: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/cuda/tunable.py:744:16-26: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/distributed/__init__.py:29:27-46: No attribute `_c10d_init` in module `torch._C` [missing-attribute] +ERROR torch/distributed/__init__.py:33:13-32: No attribute `_DistError` in module `torch._C` [missing-attribute] +ERROR torch/distributed/__init__.py:34:20-46: No attribute `_DistBackendError` in module `torch._C` [missing-attribute] +ERROR torch/distributed/__init__.py:35:20-46: No attribute `_DistNetworkError` in module `torch._C` [missing-attribute] +ERROR torch/distributed/__init__.py:36:18-42: No attribute `_DistStoreError` in module `torch._C` [missing-attribute] +ERROR torch/distributed/__init__.py:37:19-48: No attribute `_DistQueueEmptyError` in module `torch._C` [missing-attribute] +ERROR torch/distributed/__init__.py:119:23-61: No attribute `_meta_in_tls_dispatch_include` in module `torch._C` [missing-attribute] +ERROR torch/distributed/__init__.py:121:9-51: No attribute `_set_meta_in_tls_dispatch_include` in module `torch._C` [missing-attribute] +ERROR torch/distributed/__init__.py:125:13-55: No attribute `_set_meta_in_tls_dispatch_include` in module `torch._C` [missing-attribute] + WARN torch/distributed/__init__.py:139:9-25: `_all_gather_base` is deprecated [deprecated] + WARN torch/distributed/__init__.py:145:9-29: `_reduce_scatter_base` is deprecated [deprecated] +ERROR torch/distributed/_composable/checkpoint_activation.py:70:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_composable/replicate.py:105:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_composable/replicate.py:194:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_composable/replicate.py:199:54-66: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_composable/replicate_with_fsdp.py:64:41-52: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/_composable/replicate_with_fsdp.py:89:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_composable/replicate_with_fsdp.py:166:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_composable/replicate_with_fsdp.py:171:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_composable/replicate_with_fsdp.py:352:14-39: No attribute `_get_accelerator` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_dist2.py:45:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_dist2.py:69:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_dist2.py:86:9-21: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_dist2.py:90:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_dist2.py:100:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_dist2.py:130:24-36: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_dist2.py:151:14-26: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:96:12-23: Module `torch.distributed.tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/_functional_collectives.py:211:15-24: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:211:25-36: No attribute `chunk` in module `torch` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:244:15-24: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:244:25-36: No attribute `chunk` in module `torch` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:278:23-34: No attribute `chunk` in module `torch` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:279:16-25: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:318:23-34: No attribute `chunk` in module `torch` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:319:16-25: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:423:27-38: No attribute `chunk` in module `torch` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:424:27-36: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:443:8-54: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:444:21-38: No attribute `DispatchKey` in module `torch` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:845:8-35: No attribute `_get_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:845:36-66: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:848:8-55: No attribute `_dispatch_tls_is_dispatch_key_included` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:849:9-29: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:890:16-42: Module `torch._C._distributed_c10d` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/_functional_collectives.py:893:9-35: Module `torch._C._distributed_c10d` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/_functional_collectives.py:896:9-35: Module `torch._C._distributed_c10d` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/_functional_collectives.py:917:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:921:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:925:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:939:13-29: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_functional_collectives.py:1062:36-45: No attribute `Tag` in module `torch` [missing-attribute] + WARN torch/distributed/_functional_collectives.py:1216:5-47: `_all_gather_base` is deprecated [deprecated] + WARN torch/distributed/_functional_collectives.py:1217:5-55: `_reduce_scatter_base` is deprecated [deprecated] +ERROR torch/distributed/_local_tensor/__init__.py:68:19-23: Could not import `Size` from `torch` [missing-module-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:69:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:69:35-49: Could not import `DispatchKeySet` from `torch._C` [missing-module-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:69:51-63: Could not import `ScriptObject` from `torch._C` [missing-module-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:252:20-31: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:307:45-54: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:320:27-50: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:321:8-31: No attribute `_dispatch_keys` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:321:39-59: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:322:55-75: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:323:8-31: No attribute `_dispatch_keys` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:323:39-59: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:324:55-75: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:435:16-51: No attribute `_get_constant_bool_symnode` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:439:16-51: No attribute `_get_constant_bool_symnode` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:444:16-51: No attribute `_get_constant_bool_symnode` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:449:16-51: No attribute `_get_constant_bool_symnode` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:454:16-51: No attribute `_get_constant_bool_symnode` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:568:16-28: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:609:61-72: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:730:5-17: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:731:5-16: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:732:5-17: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:892:21-31: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:952:24-43: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:952:46-69: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:965:24-43: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:965:46-69: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:994:20-31: No attribute `equal` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:1269:36-54: No attribute `Generator` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:1334:27-53: Object of class `bool` has no attribute `nonzero` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:1489:59-70: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:1499:60-71: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:1512:55-66: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:1734:29-41: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:1735:39-51: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/__init__.py:1736:20-31: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/_c10d.py:8:22-34: Could not import `ScriptObject` from `torch._C` [missing-module-attribute] +ERROR torch/distributed/_local_tensor/_c10d.py:126:27-36: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/_c10d.py:197:27-36: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/_c10d.py:271:14-27: No attribute `minimum` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/_c10d.py:273:14-27: No attribute `maximum` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/_c10d.py:275:14-31: No attribute `bitwise_and` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/_c10d.py:277:14-30: No attribute `bitwise_or` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/_c10d.py:279:14-31: No attribute `bitwise_xor` in module `torch` [missing-attribute] +ERROR torch/distributed/_local_tensor/_c10d.py:513:32-41: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_serialization.py:63:31-47: No attribute `frombuffer` in module `torch` [missing-attribute] +ERROR torch/distributed/_serialization.py:65:31-42: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/_serialization.py:84:16-28: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/_serialization.py:84:57-68: No attribute `uint8` in module `torch` [missing-attribute] + WARN torch/distributed/_shard/api.py:183:20-34: `torch.distributed._shard.sharded_tensor.api.ShardedTensor.reshard` is deprecated [deprecated] +ERROR torch/distributed/_shard/checkpoint/__init__.py:19:54-82: Module `torch.distributed.checkpoint` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/_shard/common_op_utils.py:64:14-51: No attribute `DisableTorchFunctionSubclass` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/__init__.py:30:12-25: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/__init__.py:33:19-42: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/__init__.py:85:12-25: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/__init__.py:88:19-42: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/__init__.py:139:12-25: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/__init__.py:142:19-42: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/__init__.py:195:12-25: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/__init__.py:198:19-42: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/__init__.py:249:12-25: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/__init__.py:252:19-42: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/__init__.py:305:12-25: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/__init__.py:308:19-42: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/_common.py:47:18-25: Index 0 out of range for tuple with 0 elements [bad-index] +ERROR torch/distributed/_shard/sharded_tensor/_ops/_common.py:97:14-21: Index 0 out of range for tuple with 0 elements [bad-index] +ERROR torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:11:25-35: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:11:46-58: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:13:25-36: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:13:47-59: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:17:23-33: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:18:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:21:12-23: No attribute `equal` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:71:19-30: No attribute `equal` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:73:23-34: No attribute `equal` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:76:19-33: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:78:23-37: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/init.py:128:5-20: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/init.py:129:5-21: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/init.py:130:5-21: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/init.py:131:5-20: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/init.py:132:5-20: No attribute `rand_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/init.py:133:5-21: No attribute `randn_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/init.py:153:14-21: Index 0 out of range for tuple with 0 elements [bad-index] +ERROR torch/distributed/_shard/sharded_tensor/_ops/init.py:159:29-44: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/init.py:160:29-45: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/init.py:161:29-45: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/init.py:162:29-44: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/init.py:163:29-44: No attribute `rand_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/init.py:164:29-45: No attribute `randn_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py:10:19-58: No attribute `_has_compatible_shallow_copy_type` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:44:15-22: Index 0 out of range for tuple with 0 elements [bad-index] +ERROR torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:48:10-22: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:52:15-27: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:54:15-27: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:61:12-19: Index 0 out of range for tuple with 0 elements [bad-index] +ERROR torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:160:57-78: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:202:15-22: Index 0 out of range for tuple with 0 elements [bad-index] +ERROR torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:218:10-47: No attribute `DisableTorchFunctionSubclass` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:85:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:98:21-44: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:158:40-53: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:252:16-29: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:255:23-46: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:263:22-35: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:266:29-52: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:373:40-52: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:380:20-32: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:382:20-32: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:387:28-40: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:390:16-28: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:397:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:455:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:465:20-31: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:511:29-50: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:527:30-51: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:528:34-57: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:569:23-44: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:585:30-51: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:586:34-57: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:594:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:596:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:602:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:636:25-37: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:640:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:642:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:643:25-35: Object of class `ShardedTensor` has no attribute `dtype` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:647:36-47: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:649:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:652:29-41: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:665:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:668:12-26: Object of class `NoneType` has no attribute `type` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:672:16-31: Object of class `NoneType` has no attribute `index` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:678:25-37: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:682:53-74: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:905:27-50: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:979:40-53: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/api.py:1360:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/metadata.py:20:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/metadata.py:20:40-63: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/metadata.py:21:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/metadata.py:21:42-55: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/metadata.py:23:20-39: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/metadata.py:23:56-79: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/metadata.py:29:29-52: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/metadata.py:31:31-50: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/metadata.py:33:31-52: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/metadata.py:59:29-52: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/metadata.py:61:29-48: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/metadata.py:63:29-50: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/metadata.py:77:27-50: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/metadata.py:92:11-21: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/metadata.py:92:38-48: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/reshard.py:43:14-24: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/reshard.py:84:14-24: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/reshard.py:135:22-33: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/reshard.py:153:14-24: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/reshard.py:206:26-38: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/reshard.py:211:27-39: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/reshard.py:241:20-29: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/utils.py:58:11-21: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/utils.py:77:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/utils.py:91:12-22: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/utils.py:116:18-28: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/utils.py:138:42-55: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/utils.py:192:23-46: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharded_tensor/utils.py:325:43-53: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/api.py:60:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/api.py:171:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:78:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:126:27-50: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:166:39-62: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:175:32-43: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:62:14-21: Index 0 out of range for tuple with 0 elements [bad-index] + WARN torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:75:16-53: `torch.distributed._shard.sharded_tensor.api.ShardedTensor._init_from_local_tensor` is deprecated [deprecated] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:151:24-39: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:159:12-27: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:185:24-33: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:186:14-25: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:220:35-47: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:255:31-40: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:256:23-32: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:257:9-18: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:257:19-28: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:262:24-33: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:263:23-33: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:271:25-36: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:277:9-18: No attribute `div` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:277:19-28: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:298:18-29: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:347:19-30: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:157:12-21: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:160:17-26: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:163:12-21: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:166:17-26: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:282:9-18: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:291:9-25: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:191:12-21: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:194:17-26: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:197:12-21: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:200:17-26: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:365:22-31: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:367:34-43: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:370:28-37: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:388:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:388:72-82: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:398:9-18: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:411:9-25: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:422:27-36: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:423:17-25: No attribute `ne` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:426:27-36: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:435:16-25: No attribute `div` in module `torch` [missing-attribute] +ERROR torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:467:34-45: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:26:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:35:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:55:24-35: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:59:14-25: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:81:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:110:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:218:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:255:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:414:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:418:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:424:17-33: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:430:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:438:20-31: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:440:20-31: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:445:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:451:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:461:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:467:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:507:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:534:11-21: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:535:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:542:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:562:27-38: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:602:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:644:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_state_dict_utils.py:703:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:124:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:125:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:437:11-23: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:447:11-23: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:451:11-23: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:461:11-23: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:499:18-34: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:541:22-33: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:745:22-33: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:767:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:801:32-41: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:823:16-25: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:824:16-28: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:831:12-24: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:939:17-28: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:939:47-59: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:999:15-25: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1005:13-25: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1018:22-33: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1056:20-31: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1092:22-33: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1243:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1255:29-38: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1257:29-39: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1273:28-39: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1336:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1390:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1407:9-25: No attribute `_scaled_mm` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1434:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1453:29-38: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1455:29-39: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1576:11-22: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1584:12-23: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1585:12-22: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1586:12-23: No attribute `short` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1587:12-21: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1588:12-23: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1589:12-22: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1590:12-23: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1591:12-24: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1592:12-27: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1593:12-27: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1594:13-29: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1595:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1596:13-24: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1597:13-25: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1598:13-25: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1599:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1600:13-30: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1601:13-32: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1602:13-34: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1603:13-34: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1608:18-29: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1712:9-35: Module `torch._C._distributed_c10d` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/_symmetric_memory/__init__.py:1735:15-31: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1760:9-35: Module `torch._C._distributed_c10d` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/_symmetric_memory/__init__.py:1795:9-35: Module `torch._C._distributed_c10d` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/_symmetric_memory/__init__.py:1921:17-40: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:1928:16-35: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/_symmetric_memory/__init__.py:1930:16-28: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:2001:41-53: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/__init__.py:2012:51-63: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_symmetric_memory/_nvshmem_triton.py:181:5-64: Could not find import of `triton.runtime.jit` [missing-import] +ERROR torch/distributed/_symmetric_memory/_nvshmem_triton.py:223:12-18: Could not find import of `triton` [missing-import] +ERROR torch/distributed/_symmetric_memory/_nvshmem_triton.py:224:5-47: Could not find import of `triton.runtime.jit` [missing-import] +ERROR torch/distributed/_symmetric_memory/_nvshmem_triton.py:247:12-18: Could not find import of `triton` [missing-import] +ERROR torch/distributed/_symmetric_memory/_nvshmem_triton.py:248:12-33: Could not find import of `triton.language` [missing-import] +ERROR torch/distributed/_symmetric_memory/_nvshmem_triton.py:249:5-37: Could not find import of `triton.language` [missing-import] +ERROR torch/distributed/_tools/fsdp2_mem_tracker.py:107:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/fsdp2_mem_tracker.py:109:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/ilp_utils.py:83:10-22: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/mem_tracker.py:121:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/mem_tracker.py:122:51-63: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/mem_tracker.py:131:53-65: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/mem_tracker.py:180:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/mem_tracker.py:219:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/mem_tracker.py:240:20-32: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/mem_tracker.py:268:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/mem_tracker.py:279:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/mem_tracker.py:376:35-47: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/mem_tracker.py:377:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/mem_tracker.py:378:35-47: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/mem_tracker.py:550:15-27: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/mem_tracker.py:923:19-26: Index 0 out of range for tuple with 0 elements [bad-index] +ERROR torch/distributed/_tools/memory_tracker.py:75:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_tools/mod_tracker.py:91:16-47: No attribute `_current_graph_task_id` in module `torch._C` [missing-attribute] +ERROR torch/distributed/_tools/runtime_estimator.py:128:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/runtime_estimator.py:129:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/runtime_estimator.py:130:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/runtime_estimator.py:131:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/runtime_estimator.py:132:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/runtime_estimator.py:190:31-46: No attribute `rand_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/runtime_estimator.py:192:31-46: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/sac_estimator.py:398:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/_tools/sac_estimator.py:426:22-31: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/_comm_hooks/default_hooks.py:66:24-37: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/_comm_hooks/default_hooks.py:81:27-65: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/distributed/algorithms/_comm_hooks/default_hooks.py:136:11-22: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/_comm_hooks/default_hooks.py:170:56-69: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/_comm_hooks/default_hooks.py:191:56-70: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py:68:9-21: Class member `_OverlappedStandardOptimizer.register_ddp` overrides parent class `OverlappedOptimizer` in an inconsistent manner [bad-param-name-override] +ERROR torch/distributed/algorithms/_quantization/quantization.py:9:18-29: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/_quantization/quantization.py:9:30-43: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/_quantization/quantization.py:10:18-29: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/_quantization/quantization.py:10:30-43: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/_quantization/quantization.py:28:12-23: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/_quantization/quantization.py:61:28-41: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/_quantization/quantization.py:65:30-43: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/_quantization/quantization.py:71:28-41: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:58:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:82:16-44: Module `torch.distributed._functional_collectives` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:113:27-40: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:134:27-41: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:158:46-59: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:197:46-60: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py:20:20-32: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py:45:19-31: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:30:31-44: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:30:46-60: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:37:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:74:21-30: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:430:46-57: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:469:9-18: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:471:14-26: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:489:45-56: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:492:45-56: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:511:27-38: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:554:21-32: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:564:9-18: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:598:13-22: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:617:13-22: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:753:46-57: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:786:28-39: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:793:24-35: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:808:5-17: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:819:9-21: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:839:9-21: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:8:9-20: No attribute `round` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:9:9-20: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:9:35-46: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:14:23-36: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:19:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:21:19-30: No attribute `round` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:22:9-20: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:22:35-46: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:27:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:28:9-25: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:36:9-25: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:78:15-32: No attribute `FloatTensor` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:107:41-57: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:108:72-85: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:159:17-61: Argument `tuple[Literal[0], int | Unknown]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:173:15-26: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:203:41-57: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:204:72-85: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:214:13-26: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/join.py:75:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/join.py:284:31-42: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/join.py:293:16-26: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/join.py:337:16-26: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/join.py:342:21-32: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/algorithms/model_averaging/utils.py:40:19-28: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/autograd/__init__.py:16:27-55: No attribute `_dist_autograd_init` in module `torch._C` [missing-attribute] +ERROR torch/distributed/benchmarks/benchmark_ddp_rpc.py:71:31-40: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/benchmarks/benchmark_ddp_rpc.py:115:20-36: No attribute `ByteTensor` in module `torch` [missing-attribute] +ERROR torch/distributed/benchmarks/benchmark_ddp_rpc.py:156:23-39: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/distributed/benchmarks/benchmark_ddp_rpc.py:168:30-46: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/distributed/benchmarks/benchmark_ddp_rpc.py:169:22-38: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/distributed/c10d_logger.py:66:28-43: Module `torch.cuda.nccl` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/checkpoint/_consolidate_hf_safetensors.py:138:32-43: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_experimental/checkpoint_reader.py:149:30-41: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_experimental/checkpoint_reader.py:154:30-46: No attribute `frombuffer` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_experimental/staging.py:158:40-52: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_fsspec_filesystem.py:11:1-34: Could not find import of `fsspec.core` [missing-import] +ERROR torch/distributed/checkpoint/_fsspec_filesystem.py:23:5-42: Could not find import of `fsspec` [missing-import] +ERROR torch/distributed/checkpoint/_fsspec_filesystem.py:47:14-26: Object of class `NoneType` has no attribute `open` [missing-attribute] +ERROR torch/distributed/checkpoint/_fsspec_filesystem.py:72:9-23: Object of class `NoneType` has no attribute `rename` [missing-attribute] +ERROR torch/distributed/checkpoint/_fsspec_filesystem.py:75:9-25: Object of class `NoneType` has no attribute `makedirs` [missing-attribute] +ERROR torch/distributed/checkpoint/_fsspec_filesystem.py:90:16-30: Object of class `NoneType` has no attribute `exists` [missing-attribute] +ERROR torch/distributed/checkpoint/_fsspec_filesystem.py:93:9-19: Object of class `NoneType` has no attribute `rm` [missing-attribute] +ERROR torch/distributed/checkpoint/_fsspec_filesystem.py:98:16-26: Object of class `NoneType` has no attribute `ls` [missing-attribute] +ERROR torch/distributed/checkpoint/_fsspec_filesystem.py:152:19-31: `torch.distributed.checkpoint._fsspec_filesystem.FileSystem` is not assignable to attribute `fs` with type `torch.distributed.checkpoint.filesystem.FileSystem` [bad-assignment] +ERROR torch/distributed/checkpoint/_fsspec_filesystem.py:163:19-31: `torch.distributed.checkpoint._fsspec_filesystem.FileSystem` is not assignable to attribute `fs` with type `torch.distributed.checkpoint.filesystem.FileSystem` [bad-assignment] +ERROR torch/distributed/checkpoint/_hf_utils.py:26:12-25: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_hf_utils.py:27:12-25: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_hf_utils.py:28:12-25: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_hf_utils.py:29:11-21: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_hf_utils.py:30:11-22: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_hf_utils.py:31:12-23: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_hf_utils.py:32:12-23: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_hf_utils.py:33:12-23: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_hf_utils.py:34:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_hf_utils.py:54:12-22: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_hf_utils.py:55:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_hf_utils.py:92:35-46: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_hf_utils.py:96:17-40: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:42:12-22: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:43:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:112:30-41: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:125:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:186:47-58: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:199:11-23: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:224:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:254:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:254:52-63: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:255:21-37: No attribute `frombuffer` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:255:49-60: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:269:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:297:17-28: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:297:38-49: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:301:15-26: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:301:41-52: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:319:43-54: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:323:21-32: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:323:49-60: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/_pg_transport.py:335:20-36: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/default_planner.py:359:9-20: Class member `DefaultLoadPlanner.finish_plan` overrides parent class `LoadPlanner` in an inconsistent manner [bad-param-name-override] +ERROR torch/distributed/checkpoint/default_planner.py:618:21-31: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/examples/async_checkpointing_example.py:75:9-19: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/examples/async_checkpointing_example.py:76:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/examples/async_checkpointing_example.py:78:7-16: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/examples/fsdp_checkpoint_example.py:33:11-21: No attribute `rand` in module `torch` [missing-attribute] + WARN torch/distributed/checkpoint/examples/fsdp_checkpoint_example.py:77:9-32: `torch.distributed.checkpoint.state_dict_saver.save_state_dict` is deprecated [deprecated] + WARN torch/distributed/checkpoint/examples/fsdp_checkpoint_example.py:96:9-32: `torch.distributed.checkpoint.state_dict_loader.load_state_dict` is deprecated [deprecated] +ERROR torch/distributed/checkpoint/examples/stateful_example.py:39:16-26: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/filesystem.py:145:26-38: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/filesystem.py:187:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/filesystem.py:342:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/filesystem.py:390:35-73: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/distributed/checkpoint/format_utils.py:110:26-42: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/format_utils.py:148:9-28: Class member `BroadcastingTorchSaveReader.prepare_global_plan` overrides parent class `StorageReader` in an inconsistent manner [bad-param-name-override] +ERROR torch/distributed/checkpoint/hf_storage.py:348:34-44: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/hf_storage.py:353:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/hf_storage.py:354:43-53: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/hf_storage.py:361:33-43: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/hf_storage.py:361:59-69: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/hf_storage.py:367:57-67: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/hf_storage.py:378:31-41: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/metadata.py:30:14-24: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/metadata.py:31:12-22: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/metadata.py:47:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/metadata.py:47:48-71: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/metadata.py:49:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/metadata.py:49:42-55: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/metadata.py:53:20-39: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/metadata.py:53:56-79: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/metadata.py:60:29-52: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/metadata.py:62:31-50: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/metadata.py:64:31-52: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/metadata.py:90:29-52: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/metadata.py:92:29-48: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/metadata.py:94:29-50: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/metadata.py:108:27-50: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/metadata.py:116:11-21: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/metadata.py:160:22-32: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/metadata.py:185:48-58: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/optimizer.py:106:23-35: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/optimizer.py:108:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/optimizer.py:112:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/optimizer.py:190:29-39: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/optimizer.py:193:27-37: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/optimizer.py:205:53-73: Argument `Unknown | None` is not assignable to parameter `a` with type `Sequence[int]` in function `torch.distributed.checkpoint.utils._element_wise_sub` [bad-argument-type] +ERROR torch/distributed/checkpoint/optimizer.py:207:43-53: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/optimizer.py:326:50-60: No attribute `Size` in module `torch` [missing-attribute] + WARN torch/distributed/checkpoint/optimizer.py:351:5-20: `torch.distributed.checkpoint.state_dict_loader.load_state_dict` is deprecated [deprecated] +ERROR torch/distributed/checkpoint/planner.py:54:11-21: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner.py:93:19-29: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner.py:98:22-32: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner.py:101:14-24: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:144:17-27: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:150:17-27: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:151:15-25: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:179:22-32: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:179:41-51: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:198:15-25: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:207:15-25: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:232:22-32: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:234:25-35: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:235:17-27: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:245:22-32: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:247:25-35: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:248:17-27: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:343:22-32: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:343:41-51: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:399:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:402:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:404:32-48: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:420:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:429:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:432:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/planner_helpers.py:434:22-38: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/quantized_hf_storage.py:35:23-34: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/quantized_hf_storage.py:35:37-50: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/quantized_hf_storage.py:49:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/quantized_hf_storage.py:55:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/quantized_hf_storage.py:156:28-38: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/quantized_hf_storage.py:176:37-50: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/staging.py:193:40-52: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/staging.py:353:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/staging.py:353:32-44: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/state_dict.py:586:12-24: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/state_dict.py:587:28-40: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/state_dict.py:635:30-46: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/state_dict.py:644:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/state_dict_loader.py:213:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/checkpoint/state_dict_loader.py:362:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/checkpoint/state_dict_saver.py:180:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/checkpoint/state_dict_saver.py:292:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/checkpoint/state_dict_saver.py:296:12-24: No attribute `device` in module `torch` [missing-attribute] + WARN torch/distributed/checkpoint/state_dict_saver.py:368:17-49: `torch.distributed.checkpoint.staging.AsyncStager.synchronize_staging` is deprecated [deprecated] +ERROR torch/distributed/checkpoint/state_dict_saver.py:394:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/checkpoint/utils.py:337:17-27: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/utils.py:342:12-22: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/checkpoint/utils.py:355:28-38: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/collective_utils.py:193:20-37: Expression `exception_list[0]` has type `tuple[int, Exception]`, expected `BaseException` or `None` [bad-raise] +ERROR torch/distributed/collective_utils.py:291:16-31: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/distributed/collective_utils.py:294:19-35: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/collective_utils.py:297:25-37: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/distributed/collective_utils.py:297:62-74: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/distributed/collective_utils.py:307:16-31: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/distributed/collective_utils.py:311:26-42: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/collective_utils.py:318:21-38: No attribute `hash_tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/collective_utils.py:323:16-31: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/distributed/collective_utils.py:340:8-22: Module `importlib.util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/collective_utils.py:349:16-31: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/distributed/debug/_frontend.py:217:5-19: Class member `_IPv6HTTPServer.address_family` overrides parent class `ThreadingHTTPServer` in an inconsistent manner [bad-override] +ERROR torch/distributed/device_mesh.py:198:13-41: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/device_mesh.py:209:44-53: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/distributed/device_mesh.py:211:26-38: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/device_mesh.py:211:65-74: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/distributed/device_mesh.py:290:31-59: Object of class `bool` has no attribute `nonzero` [missing-attribute] +ERROR torch/distributed/device_mesh.py:310:25-58: Object of class `bool` has no attribute `nonzero` [missing-attribute] +ERROR torch/distributed/device_mesh.py:432:51-63: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/device_mesh.py:949:24-36: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/device_mesh.py:949:70-79: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/distributed/device_mesh.py:974:40-49: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/distributed/device_mesh.py:976:22-34: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/device_mesh.py:976:61-70: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/distributed/device_mesh.py:1362:14-26: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/device_mesh.py:1363:24-36: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributed/device_mesh.py:1363:59-68: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:24:22-55: Could not import `_DistStoreError` from `torch._C` [missing-module-attribute] +ERROR torch/distributed/distributed_c10d.py:384:27-52: No attribute `_get_accelerator` in module `torch._C` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:836:10-22: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:846:69-81: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:894:16-28: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:913:12-24: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:914:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:1203:17-30: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:1203:50-65: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:1203:71-87: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:1361:5-31: Module `torch._C._distributed_c10d` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/distributed_c10d.py:1410:55-67: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:1421:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:1424:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:1436:35-47: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:1523:12-24: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:1524:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:1557:8-20: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:1558:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:1561:8-20: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:1562:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:1586:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:1696:9-34: Module `torch._dynamo.trace_rules` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/distributed_c10d.py:1720:21-33: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:2009:20-46: Module `torch._C._distributed_c10d` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/distributed_c10d.py:2182:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:2187:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:2337:35-47: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:2486:18-36: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:2526:18-36: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:2638:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:2740:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:2903:18-36: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:2987:18-36: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3067:45-63: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3145:23-39: No attribute `ByteTensor` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3149:24-50: Module `torch._C._distributed_c10d` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/distributed_c10d.py:3155:22-38: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3164:24-50: Module `torch._C._distributed_c10d` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/distributed_c10d.py:3241:27-38: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3242:27-37: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3252:31-42: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3253:45-56: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3263:30-41: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3357:27-38: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3358:27-37: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3372:35-46: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3373:49-60: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3394:30-41: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3404:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3491:27-36: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3507:25-34: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3522:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3604:27-38: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3605:33-43: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3628:15-26: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3653:34-45: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3664:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3754:31-40: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3756:31-42: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3757:37-47: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3772:29-38: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3776:19-30: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3786:38-49: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3896:27-39: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3896:51-61: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3901:21-32: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3902:39-50: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3912:23-35: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:3912:47-57: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:4008:38-56: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:4010:53-71: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:4100:14-32: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:4105:14-32: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:4232:39-57: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:4236:38-56: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:4419:38-56: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:4421:53-71: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:4753:17-35: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:4755:18-36: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:4878:38-56: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:4881:38-56: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:4933:14-39: No attribute `_get_accelerator` in module `torch._C` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:4938:23-35: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:4944:23-35: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:5050:17-43: Module `torch._C._distributed_c10d` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/distributed_c10d.py:5194:45-57: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:5260:49-61: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:5293:25-37: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:5383:25-37: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:5898:55-67: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:5900:55-67: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/distributed_c10d.py:6081:26-38: No attribute `device` in module `torch` [missing-attribute] + WARN torch/distributed/elastic/metrics/api.py:172:17-31: `publish_metric` is deprecated [deprecated] + WARN torch/distributed/elastic/metrics/api.py:175:17-31: `publish_metric` is deprecated [deprecated] + WARN torch/distributed/elastic/metrics/api.py:178:17-31: `publish_metric` is deprecated [deprecated] +ERROR torch/distributed/elastic/rendezvous/etcd_store.py:86:9-12: Class member `EtcdStore.add` overrides parent class `Store` in an inconsistent manner [bad-param-name-override] +ERROR torch/distributed/elastic/rendezvous/etcd_store.py:124:9-13: Class member `EtcdStore.wait` overrides parent class `Store` in an inconsistent manner [bad-param-name-override] +ERROR torch/distributed/elastic/utils/data/elastic_distributed_sampler.py:73:13-28: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/distributed/elastic/utils/data/elastic_distributed_sampler.py:77:13-27: No attribute `randperm` in module `torch` [missing-attribute] +ERROR torch/distributed/elastic/utils/store.py:18:18-42: No attribute `_DistStoreError` in module `torch._C` [missing-attribute] +ERROR torch/distributed/examples/memory_tracker_example.py:32:12-23: Could not find import of `torchvision` [missing-import] +ERROR torch/distributed/examples/memory_tracker_example.py:37:9-19: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_common_utils.py:64:32-44: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_common_utils.py:78:34-46: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_common_utils.py:132:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_common_utils.py:137:39-50: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_common_utils.py:501:24-35: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_common_utils.py:503:24-47: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_common_utils.py:509:59-72: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_common_utils.py:528:62-74: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_common_utils.py:534:9-47: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/distributed/fsdp/_common_utils.py:538:8-49: Module `torch.distributed._functional_collectives` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/fsdp/_exec_order_utils.py:200:44-55: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_exec_order_utils.py:200:57-69: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_exec_order_utils.py:201:26-37: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_exec_order_utils.py:219:20-61: Module `torch.distributed._functional_collectives` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/fsdp/_exec_order_utils.py:245:20-61: Module `torch.distributed._functional_collectives` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/fsdp/_flat_param.py:185:25-35: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:329:31-41: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:330:29-39: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:331:20-30: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:334:20-30: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:378:22-32: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:518:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:521:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:522:35-46: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:678:22-32: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:805:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:808:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:877:21-34: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:891:17-30: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:896:16-25: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:909:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:910:35-46: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:970:20-61: Module `torch.distributed._functional_collectives` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/fsdp/_flat_param.py:1107:13-26: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:1145:74-84: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:1162:16-26: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:1472:17-28: No attribute `chunk` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:1573:25-36: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:1573:46-57: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:1597:33-44: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:1755:28-40: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:1834:17-38: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:1845:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:2407:25-35: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:2642:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:2649:16-57: Module `torch.distributed._functional_collectives` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/fsdp/_flat_param.py:2778:41-52: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:2788:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:2792:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:2792:74-86: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_flat_param.py:2797:9-19: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fsdp_extensions.py:48:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_api.py:50:27-38: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_api.py:51:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_api.py:52:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_api.py:79:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_api.py:80:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:25:32-43: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:28:46-57: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:56:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:57:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:59:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:71:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:72:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:78:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:187:9-29: No attribute `_foreach_copy_` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:209:5-32: No attribute `split_with_sizes_copy` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:232:5-21: No attribute `_chunk_cat` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:240:32-44: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:241:24-36: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:242:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:254:21-32: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:256:24-35: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:333:35-46: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:337:9-29: No attribute `_foreach_copy_` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:388:17-33: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:394:35-46: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:395:44-55: No attribute `uint8` in module `torch` [missing-attribute] + WARN torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:400:8-34: `torch._dynamo.external_utils.is_compiling` is deprecated [deprecated] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:437:26-37: No attribute `chunk` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:443:17-26: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:451:28-40: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:453:26-37: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:454:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:455:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:458:24-36: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:465:5-16: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:466:5-16: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:468:14-25: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:513:22-33: No attribute `chunk` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:514:34-43: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:610:32-48: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:626:21-33: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:679:22-33: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:679:54-65: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:680:46-57: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:684:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:688:36-47: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:703:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:719:42-55: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:719:57-71: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_common.py:109:40-50: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_common.py:109:73-83: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_common.py:111:12-22: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_common.py:117:19-30: No attribute `chunk` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_common.py:124:42-52: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_common.py:125:6-16: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_common.py:129:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_common.py:163:43-54: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_common.py:170:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_common.py:173:16-39: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_common.py:181:12-43: No attribute `_current_graph_task_id` in module `torch._C` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_init.py:71:14-39: No attribute `_get_accelerator` in module `torch._C` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_init.py:76:48-60: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_init.py:78:16-28: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_init.py:80:12-24: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_init.py:214:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:136:20-49: No attribute `_from_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:137:18-47: No attribute `_from_functional_tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:138:10-43: No attribute `_ExcludeDispatchKeyGuard` in module `torch._C` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:139:9-32: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:139:33-53: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:186:38-48: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:199:17-28: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:200:27-38: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:201:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:202:17-27: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:203:19-29: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:205:32-42: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:206:32-42: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:228:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:243:43-54: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:263:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:468:39-50: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:470:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:476:13-24: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:476:25-35: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:535:27-43: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:602:39-55: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param.py:797:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:61:33-45: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:93:16-28: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:93:30-42: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:107:21-32: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:112:21-32: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:117:21-32: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:123:27-38: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:124:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:132:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:173:35-46: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:213:43-54: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:216:53-64: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:422:65-76: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:570:21-572:30: Argument `ProcessGroup | None` is not assignable to parameter `reduce_scatter_group` with type `ProcessGroup` in function `torch.distributed.fsdp._fully_shard._fsdp_collectives.foreach_reduce` [bad-argument-type] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:608:17-58: Object of class `NoneType` has no attribute `synchronize` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:713:16-37: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:886:13-35: Module `torch._dynamo.comptime` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_state.py:55:41-52: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_state.py:92:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_state.py:145:17-55: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fsdp_state.py:342:16-37: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fully_shard.py:189:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/fsdp/_fully_shard/_fully_shard.py:524:43-54: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:353:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:565:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:802:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:817:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:830:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:833:15-27: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:843:44-56: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:843:63-75: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:855:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:905:37-49: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:910:55-67: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:967:37-49: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:981:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:1020:37-49: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:1034:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:1064:37-49: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:1067:6-18: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:1086:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_init_utils.py:1144:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_limiter_utils.py:15:40-51: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_limiter_utils.py:18:35-46: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_limiter_utils.py:22:45-56: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_limiter_utils.py:28:36-47: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:105:12-22: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:106:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:223:37-67: Object of class `NoneType` has no attribute `type` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:364:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:703:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:762:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:764:9-22: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:766:14-27: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:767:13-24: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:835:12-24: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:835:52-64: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:1191:19-31: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:1191:59-70: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:1368:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:1382:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:1442:24-35: No attribute `equal` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:1486:32-42: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:1573:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_optim_utils.py:1659:23-32: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_runtime_utils.py:151:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_runtime_utils.py:280:21-33: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_runtime_utils.py:281:25-37: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_runtime_utils.py:1440:12-33: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_runtime_utils.py:1446:8-49: Module `torch.distributed._functional_collectives` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/fsdp/_runtime_utils.py:1487:12-33: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_runtime_utils.py:1496:8-49: Module `torch.distributed._functional_collectives` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/fsdp/_runtime_utils.py:1513:8-49: Module `torch.distributed._functional_collectives` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/fsdp/_runtime_utils.py:1544:25-37: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_runtime_utils.py:1545:21-33: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_runtime_utils.py:1546:25-37: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_runtime_utils.py:1554:8-49: Module `torch.distributed._functional_collectives` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/fsdp/_runtime_utils.py:1582:46-57: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_runtime_utils.py:1618:11-22: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_runtime_utils.py:1636:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_runtime_utils.py:1637:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_runtime_utils.py:1651:16-39: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_shard_utils.py:36:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/_shard_utils.py:87:27-50: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/api.py:221:27-38: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/api.py:222:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/api.py:223:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/sharded_grad_scaler.py:27:9-47: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/distributed/fsdp/sharded_grad_scaler.py:43:40-52: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/sharded_grad_scaler.py:184:15-27: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/sharded_grad_scaler.py:200:65-78: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/sharded_grad_scaler.py:207:48-61: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/sharded_grad_scaler.py:209:63-76: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/sharded_grad_scaler.py:210:63-76: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/sharded_grad_scaler.py:221:21-69: No attribute `_amp_foreach_non_finite_check_and_unscale_` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/sharded_grad_scaler.py:254:21-31: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/sharded_grad_scaler.py:255:30-43: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/sharded_grad_scaler.py:286:13-33: No attribute `_foreach_copy_` in module `torch` [missing-attribute] +ERROR torch/distributed/fsdp/sharded_grad_scaler.py:367:17-41: No attribute `_amp_update_scale_` in module `torch` [missing-attribute] + WARN torch/distributed/launch.py:207:5-9: `main` is deprecated [deprecated] +ERROR torch/distributed/nn/__init__.py:6:4-25: Module `torch.distributed.rpc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/nn/api/remote_module.py:13:19-25: Could not import `device` from `torch` [missing-module-attribute] +ERROR torch/distributed/nn/api/remote_module.py:13:27-32: Could not import `dtype` from `torch` [missing-module-attribute] +ERROR torch/distributed/nn/api/remote_module.py:118:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/nn/api/remote_module.py:484:45-57: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/nn/functional.py:259:13-29: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/nn/functional.py:281:18-34: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/nn/functional.py:336:13-29: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/nn/functional.py:346:18-34: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/nn/functional.py:351:28-44: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/nn/functional.py:353:18-27: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/distributed/nn/functional.py:353:28-39: No attribute `stack` in module `torch` [missing-attribute] + WARN torch/distributed/nn/functional.py:362:9-30: `torch.distributed.distributed_c10d._all_gather_base` is deprecated [deprecated] +ERROR torch/distributed/nn/functional.py:377:18-29: No attribute `empty` in module `torch` [missing-attribute] + WARN torch/distributed/nn/functional.py:380:13-38: `torch.distributed.distributed_c10d._reduce_scatter_base` is deprecated [deprecated] +ERROR torch/distributed/nn/functional.py:414:13-24: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/nn/functional.py:442:18-29: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/nn/functional.py:462:45-68: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/nn/jit/instantiator.py:20:22-41: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/nn/jit/instantiator.py:21:10-26: Module `torch.jit._state` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/nn/jit/instantiator.py:97:33-52: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/optim/apply_optimizer_in_backward.py:13:34-50: Module `torch.utils.weak` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/optim/apply_optimizer_in_backward.py:14:25-41: Module `torch.utils.weak` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/optim/functional_adadelta.py:77:32-48: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adadelta.py:84:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adadelta.py:85:43-59: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adadelta.py:86:46-67: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adadelta.py:88:42-58: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adadelta.py:89:46-67: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adagrad.py:69:24-39: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adagrad.py:70:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adagrad.py:91:32-48: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adam.py:82:23-39: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adam.py:89:29-41: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adam.py:90:32-48: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adam.py:91:38-59: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adam.py:93:35-51: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adam.py:94:38-59: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adam.py:97:43-59: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adam.py:98:42-63: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adam.py:150:32-48: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adam.py:157:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adam.py:159:40-56: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adam.py:160:46-67: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adam.py:163:43-59: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adam.py:164:46-67: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adam.py:168:51-67: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adam.py:169:50-71: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamax.py:85:32-48: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamax.py:92:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamax.py:94:40-56: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamax.py:95:46-67: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamax.py:98:40-56: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamax.py:99:46-67: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamw.py:78:23-39: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamw.py:86:29-41: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamw.py:88:32-48: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamw.py:89:38-59: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamw.py:92:35-51: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamw.py:93:38-59: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamw.py:97:43-59: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamw.py:98:42-63: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamw.py:151:32-48: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamw.py:158:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamw.py:160:40-56: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamw.py:161:46-67: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamw.py:164:43-59: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamw.py:165:46-67: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamw.py:169:51-67: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_adamw.py:170:50-71: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_rmsprop.py:84:32-48: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_rmsprop.py:91:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_rmsprop.py:92:43-59: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_rmsprop.py:93:46-67: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_rmsprop.py:96:52-68: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_rmsprop.py:97:50-71: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_rmsprop.py:100:45-61: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_rmsprop.py:101:50-71: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_rprop.py:75:32-48: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_rprop.py:82:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_rprop.py:83:37-53: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_rprop.py:84:46-67: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/functional_rprop.py:86:42-57: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/named_optimizer.py:72:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/optim/named_optimizer.py:304:21-37: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/optimizer.py:189:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/optim/optimizer.py:194:56-66: Module `torch.jit._state` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:35:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:77:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:77:28-40: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:101:25-41: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:102:28-44: No attribute `ByteTensor` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:109:25-41: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:112:28-39: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:113:48-59: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:175:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:407:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:535:27-39: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:536:24-35: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:558:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:573:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:828:15-27: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:1164:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:1350:30-41: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:1353:30-41: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.py:1392:26-37: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.pyi:19:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.pyi:52:35-47: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/optim/zero_redundancy_optimizer.pyi:84:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/_IR.py:503:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/_IR.py:1122:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/_backward.py:196:13-28: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/_backward.py:418:16-25: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/_schedule_visualizer.py:350:12-36: Could not find import of `matplotlib.pyplot` [missing-import] +ERROR torch/distributed/pipelining/_schedule_visualizer.py:351:5-45: Could not find import of `matplotlib.patches` [missing-import] +ERROR torch/distributed/pipelining/microbatch.py:52:28-40: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/microbatch.py:143:28-46: No attribute `tensor_split` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/microbatch.py:146:25-43: No attribute `tensor_split` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/microbatch.py:148:9-27: No attribute `tensor_split` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/microbatch.py:153:9-27: No attribute `tensor_split` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/microbatch.py:164:28-43: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/microbatch.py:203:21-39: No attribute `tensor_split` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/microbatch.py:211:19-35: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/microbatch.py:503:31-49: No attribute `tensor_split` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/microbatch.py:504:21-32: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/microbatch.py:527:35-44: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/schedules.py:626:39-60: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/schedules.py:644:34-52: No attribute `tensor_split` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/schedules.py:1621:21-42: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/schedules.py:1642:34-52: No attribute `tensor_split` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/stage.py:103:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/stage.py:108:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/stage.py:128:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/stage.py:935:23-34: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/stage.py:935:64-77: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/stage.py:936:23-35: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/stage.py:937:57-70: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/stage.py:1021:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/stage.py:1295:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/stage.py:1349:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/pipelining/stage.py:1458:37-53: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/remote_device.py:25:50-62: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/remote_device.py:32:48-60: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/remote_device.py:34:38-50: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/remote_device.py:59:24-36: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/remote_device.py:79:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/remote_device.py:95:25-37: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/__init__.py:28:27-45: No attribute `_rpc_init` in module `torch._C` [missing-attribute] +ERROR torch/distributed/rpc/__init__.py:34:9-34: Module `torch._C._distributed_rpc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/rpc/__init__.py:127:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/rpc/_testing/__init__.py:8:27-54: No attribute `_faulty_agent_init` in module `torch._C` [missing-attribute] +ERROR torch/distributed/rpc/api.py:649:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/rpc/api.py:650:22-41: Module `torch.jit._builtins` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/rpc/api.py:676:17-36: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/rpc/api.py:705:22-41: Module `torch.jit._builtins` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/rpc/api.py:733:17-36: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/rpc/api.py:827:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/rpc/api.py:921:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/rpc/api.py:931:26-44: Module `torch._C._profiler` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/rpc/api.py:948:17-36: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/rpc/backend_registry.py:168:40-52: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/backend_registry.py:168:54-66: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/backend_registry.py:168:75-87: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/backend_registry.py:255:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/backend_registry.py:260:29-41: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/backend_registry.py:267:41-53: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/backend_registry.py:267:55-67: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/internal.py:68:16-24: Module `torch.distributed.rpc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/rpc/options.py:9:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/options.py:14:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/options.py:15:14-26: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/options.py:26:11-23: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/options.py:26:25-37: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/options.py:27:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/options.py:27:41-53: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/options.py:28:23-35: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/options.py:28:37-49: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/options.py:30:16-28: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/options.py:30:33-45: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/options.py:41:56-68: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/rpc/rref_proxy.py:27:24-45: No attribute `ScriptModule` in module `torch._C` [missing-attribute] +ERROR torch/distributed/rpc/server_process_global_profiler.py:164:17-47: Module `torch.autograd.profiler_legacy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/rpc/server_process_global_profiler.py:180:32-60: Module `torch.autograd.profiler_util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/run.py:754:32-70: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:138:25-35: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:153:43-53: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:363:25-35: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:475:16-37: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:490:33-44: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:491:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:559:55-64: Object of class `DTensor` has no attribute `ndim` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:736:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:928:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1044:11-21: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1061:32-45: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1062:20-39: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/tensor/_api.py:1070:19-29: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1073:21-31: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1073:46-57: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1075:37-60: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1111:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1112:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1112:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1142:9-19: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1154:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1155:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1155:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1185:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1199:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1200:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1200:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1231:9-19: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1245:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1246:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1246:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1276:9-19: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1289:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1290:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1290:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1320:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1333:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1334:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1334:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_api.py:1361:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_collective_utils.py:35:21-37: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_collective_utils.py:40:9-18: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_collective_utils.py:57:15-26: No attribute `chunk` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_dispatch.py:163:16-64: No attribute `_get_dtensor_allow_implicit_replication` in module `torch._C` [missing-attribute] +ERROR torch/distributed/tensor/_dispatch.py:167:16-64: No attribute `_set_dtensor_allow_implicit_replication` in module `torch._C` [missing-attribute] +ERROR torch/distributed/tensor/_dispatch.py:181:16-62: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/distributed/tensor/_dispatch.py:182:33-53: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/distributed/tensor/_dispatch.py:248:43-58: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_dispatch.py:287:36-47: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_dispatch.py:290:36-48: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_dispatch.py:332:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_dispatch.py:575:54-55: Argument `DTensorSpec | object | None` is not assignable to parameter `spec` with type `DTensorSpec | Sequence[DTensorSpec | None] | None` in function `OpDispatcher.wrap` [bad-argument-type] +ERROR torch/distributed/tensor/_dtensor_spec.py:62:12-22: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_dtensor_spec.py:64:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_dtensor_spec.py:510:24-34: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_op_schema.py:34:5-32: Could not import `_DTensor_OpSchema_post_init` from `torch._C` [missing-module-attribute] +ERROR torch/distributed/tensor/_op_schema.py:35:5-47: Could not import `_DTensor_OpSchema_recompute_comparison_key` from `torch._C` [missing-module-attribute] +ERROR torch/distributed/tensor/_op_schema.py:75:12-31: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_op_schema.py:412:35-51: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_op_schema.py:419:35-49: No attribute `ListType` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_op_schema.py:426:49-65: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_common_rules.py:212:9-19: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_conv_ops.py:54:9-19: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_conv_ops.py:97:13-23: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_mask_buffer.py:20:20-31: No attribute `equal` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_math_ops.py:912:57-67: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_math_ops.py:1058:57-67: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_matrix_ops.py:114:20-30: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_matrix_ops.py:1095:31-41: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:482:5-23: No attribute `broadcast_to` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:484:5-18: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:485:5-18: No attribute `movedim` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:488:5-18: No attribute `permute` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:491:5-16: No attribute `ravel` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:493:5-18: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:494:5-18: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:495:5-15: No attribute `tile` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:496:5-20: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:497:5-20: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:499:5-26: No attribute `view_as_complex` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:500:5-23: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:756:48-61: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:758:24-37: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:761:23-36: No attribute `squeeze` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:770:27-40: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:779:29-44: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:785:27-40: No attribute `permute` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:791:25-40: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:793:56-77: No attribute `view_as_complex` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/_view_ops.py:794:53-71: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/utils.py:224:19-29: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/utils.py:224:44-54: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_ops/utils.py:239:12-22: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_random.py:127:47-58: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_random.py:131:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_random.py:131:54-66: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_random.py:132:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_random.py:138:47-58: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_random.py:142:23-35: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_random.py:142:50-62: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_random.py:143:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_random.py:157:32-44: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_random.py:177:54-69: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_random.py:213:24-49: Argument `bool` is not assignable to parameter `iterable` with type `Iterable[object]` in function `all` [bad-argument-type] +ERROR torch/distributed/tensor/_random.py:243:54-69: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_random.py:448:49-61: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_random.py:453:12-24: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_redistribute.py:849:33-44: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_redistribute.py:850:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_sharding_prop.py:273:38-50: Argument `list[DTensorSpec | None] | tuple[*Sequence[DTensorSpec | None]]` is not assignable to parameter `iterable` with type `Iterable[DTensorSpec | None]` in function `enumerate.__new__` [bad-argument-type] +ERROR torch/distributed/tensor/_sharding_prop.py:365:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/tensor/_shards_wrapper.py:50:17-27: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_shards_wrapper.py:55:22-32: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_shards_wrapper.py:58:33-43: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_shards_wrapper.py:58:59-69: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_shards_wrapper.py:76:25-35: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_shards_wrapper.py:79:25-35: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_shards_wrapper.py:87:13-23: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_shards_wrapper.py:124:22-31: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_shards_wrapper.py:208:63-84: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_shards_wrapper.py:222:14-30: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_shards_wrapper.py:229:69-81: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_shards_wrapper.py:252:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_shards_wrapper.py:260:37-47: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_shards_wrapper.py:339:20-30: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_shards_wrapper.py:340:20-31: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_tp_conv.py:47:23-39: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_tp_conv.py:48:22-38: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_tp_conv.py:62:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_tp_conv.py:64:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_tp_conv.py:66:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_tp_conv.py:75:23-39: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_tp_conv.py:76:22-38: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_tp_conv.py:91:41-50: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_tp_conv.py:96:40-49: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_tp_conv.py:101:41-50: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_tp_conv.py:104:40-49: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_tp_conv.py:203:34-48: Argument `tuple[Literal[0], Unknown]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/distributed/tensor/_tp_conv.py:207:34-48: Argument `tuple[Unknown, Literal[0]]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/distributed/tensor/_tp_conv.py:211:34-56: Argument `tuple[Unknown, Unknown]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/distributed/tensor/_utils.py:261:30-74: No attribute `_DTensor_compute_global_tensor_info` in module `torch._C` [missing-attribute] +ERROR torch/distributed/tensor/_utils.py:329:12-22: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_utils.py:330:6-16: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_utils.py:365:23-35: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_utils.py:367:13-29: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_utils.py:375:20-31: No attribute `equal` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_utils.py:383:16-26: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_utils.py:440:25-35: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/_utils.py:449:12-22: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/debug/__init__.py:29:12-65: No attribute `_get_DTensor_sharding_propagator_cache_stats` in module `torch._C` [missing-attribute] +ERROR torch/distributed/tensor/debug/__init__.py:47:5-54: No attribute `_clear_DTensor_sharding_propagator_cache` in module `torch._C` [missing-attribute] +ERROR torch/distributed/tensor/debug/_visualize_sharding.py:74:12-22: Could not find import of `matplotlib` [missing-import] +ERROR torch/distributed/tensor/examples/comm_mode_features_example.py:72:13-25: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/comm_mode_features_example.py:76:15-25: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/comm_mode_features_example.py:90:13-25: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/comm_mode_features_example.py:98:15-28: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/comm_mode_features_example.py:704:13-24: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/convnext_example.py:31:64-87: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/convnext_example.py:33:36-46: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/convnext_example.py:34:34-45: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/convnext_example.py:37:32-55: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/convnext_example.py:44:23-33: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/convnext_example.py:55:58-81: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/convnext_example.py:65:42-52: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/convnext_example.py:92:65-88: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/convnext_example.py:101:48-71: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/convnext_example.py:140:39-53: No attribute `linspace` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/convnext_example.py:204:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/convnext_example.py:206:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/convnext_example.py:206:44-54: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/flex_attention_cp.py:63:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/flex_attention_cp.py:70:9-19: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/flex_attention_cp.py:149:16-27: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:52:62-72: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:67:25-35: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:95:30-37: Index 0 out of range for tuple with 0 elements [bad-index] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:98:56-63: Index 0 out of range for tuple with 0 elements [bad-index] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:113:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:117:37-47: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:131:14-26: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:138:25-35: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:142:26-36: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:144:20-31: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:187:12-23: No attribute `equal` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:206:14-26: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:212:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:215:9-19: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:217:14-24: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:220:26-36: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:222:20-31: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:262:12-23: No attribute `equal` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:275:14-26: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:283:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:296:13-24: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:298:18-29: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:302:30-40: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:326:18-30: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:327:35-46: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:363:20-31: No attribute `equal` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/torchrec_sharding_example.py:367:61-71: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/visualize_sharding_example.py:32:9-17: Module `torch.distributed.tensor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/tensor/examples/visualize_sharding_example.py:33:9-17: Module `torch.distributed.tensor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/tensor/examples/visualize_sharding_example.py:38:5-15: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/visualize_sharding_example.py:50:5-15: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/visualize_sharding_example.py:66:5-15: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/examples/visualize_sharding_example.py:86:5-15: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:135:12-21: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:147:27-40: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:148:27-40: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:210:26-39: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:211:26-39: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:431:23-32: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:505:19-32: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:506:18-34: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:507:16-32: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:508:18-34: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:526:23-32: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:577:27-43: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:578:25-41: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:579:27-43: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:618:24-33: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:1096:30-48: No attribute `index_select` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:1106:37-55: No attribute `index_select` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:1288:9-15: Class member `_ContextParallel._apply` overrides parent class `ParallelStyle` in an inconsistent manner [bad-param-name-override] +ERROR torch/distributed/tensor/experimental/_context_parallel/_attention.py:1625:39-57: No attribute `index_select` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py:31:13-24: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py:32:13-24: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py:64:18-29: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py:67:18-29: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:80:72-84: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:169:30-42: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:170:32-41: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:173:34-47: No attribute `argsort` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:183:23-35: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:255:16-27: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:282:21-33: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:289:21-33: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:298:26-35: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:300:30-43: No attribute `argsort` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:358:40-50: No attribute `sort` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:361:46-56: No attribute `flip` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:364:26-37: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:365:13-25: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:375:29-39: No attribute `sort` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:468:19-31: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:474:34-47: No attribute `argsort` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:480:53-65: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_func_map.py:266:58-62: Argument `Sequence[Placement] | object | None` is not assignable to parameter `placements` with type `Sequence[Placement] | None` in function `torch.distributed.tensor._api.DTensor.from_local` [bad-argument-type] +ERROR torch/distributed/tensor/experimental/_register_sharding.py:116:41-54: No attribute `IntType` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_register_sharding.py:117:42-60: No attribute `OptionalType` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_register_sharding.py:118:63-76: No attribute `IntType` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/experimental/_tp_transform.py:87:45-57: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/api.py:70:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/distributed/tensor/parallel/fsdp.py:31:40-50: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/fsdp.py:31:52-62: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/fsdp.py:44:13-23: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/fsdp.py:47:54-64: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/fsdp.py:47:66-76: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/fsdp.py:49:13-23: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/fsdp.py:52:46-56: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/fsdp.py:52:58-68: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/fsdp.py:368:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:121:16-30: Returned type `object` is not assignable to declared return type `TensorMeta` [bad-return] +ERROR torch/distributed/tensor/parallel/loss.py:130:27-37: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:134:53-76: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:138:17-27: No attribute `amax` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:143:22-31: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:143:32-41: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:147:25-34: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:195:24-35: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:208:18-28: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:234:19-30: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:243:22-34: No attribute `gather` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:248:14-25: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:259:16-28: No attribute `gather` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:260:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:263:24-52: Object of class `bool` has no attribute `sum` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:363:18-28: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:373:19-30: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:374:18-34: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:384:17-29: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:412:20-32: No attribute `gather` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:415:19-30: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/parallel/loss.py:421:26-35: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/placement_types.py:31:13-34: Module `torch._C._distributed` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/tensor/placement_types.py:71:28-39: No attribute `chunk` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/placement_types.py:188:18-34: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/placement_types.py:235:22-31: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/placement_types.py:491:21-42: Module `torch._C._distributed` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/tensor/placement_types.py:605:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/placement_types.py:637:26-38: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/placement_types.py:674:23-32: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/placement_types.py:675:27-40: No attribute `argsort` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/placement_types.py:676:28-46: No attribute `index_select` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/placement_types.py:696:26-38: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/placement_types.py:715:17-38: Module `torch._C._distributed` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/tensor/placement_types.py:773:15-36: Module `torch._C._distributed` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/tensor/placement_types.py:862:28-38: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/tensor/placement_types.py:909:13-47: `None` is not subscriptable [unsupported-operation] +ERROR torch/distributed/utils.py:47:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/distributed/utils.py:60:16-39: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/distributed/utils.py:87:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/utils.py:93:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributed/utils.py:167:48-58: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributed/utils.py:176:16-57: Module `torch.distributed._functional_collectives` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/utils.py:196:16-57: Module `torch.distributed._functional_collectives` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/distributed/utils.py:261:20-32: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/distributions/bernoulli.py:69:27-37: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/bernoulli.py:76:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/bernoulli.py:113:30-40: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/bernoulli.py:116:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/bernoulli.py:119:20-35: No attribute `bernoulli` in module `torch` [missing-attribute] +ERROR torch/distributions/bernoulli.py:133:18-30: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributions/bernoulli.py:141:17-28: No attribute `logit` in module `torch` [missing-attribute] +ERROR torch/distributions/bernoulli.py:145:16-27: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/bernoulli.py:145:28-37: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/beta.py:49:45-57: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributions/beta.py:56:45-56: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/distributions/beta.py:66:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/beta.py:91:23-34: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/distributions/beta.py:101:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributions/beta.py:109:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributions/beta.py:119:16-28: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/beta.py:119:34-46: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/beta.py:119:52-64: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/binomial.py:89:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/binomial.py:130:30-40: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/binomial.py:133:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/binomial.py:136:20-34: No attribute `binomial` in module `torch` [missing-attribute] +ERROR torch/distributions/binomial.py:143:27-39: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/binomial.py:144:27-39: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/binomial.py:145:29-41: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/binomial.py:153:34-45: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/binomial.py:153:46-55: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/binomial.py:153:57-66: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/distributions/binomial.py:168:18-27: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/binomial.py:176:18-30: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributions/categorical.py:82:74-84: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/categorical.py:88:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/categorical.py:89:37-47: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/categorical.py:118:30-40: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/categorical.py:123:16-26: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/distributions/categorical.py:136:16-26: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/distributions/categorical.py:143:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/categorical.py:144:41-51: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/categorical.py:145:28-38: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/categorical.py:147:22-39: No attribute `multinomial` in module `torch` [missing-attribute] +ERROR torch/distributions/categorical.py:159:20-31: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/distributions/categorical.py:160:18-29: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/distributions/categorical.py:166:18-30: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributions/categorical.py:166:49-59: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/distributions/cauchy.py:47:27-37: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/cauchy.py:54:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/cauchy.py:63:16-26: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/distributions/cauchy.py:73:16-26: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/distributions/cauchy.py:77:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/cauchy.py:94:16-26: No attribute `atan` in module `torch` [missing-attribute] +ERROR torch/distributions/cauchy.py:97:16-25: No attribute `tan` in module `torch` [missing-attribute] +ERROR torch/distributions/constraints.py:152:9-14: Class member `_Dependent.check` overrides parent class `Constraint` in an inconsistent manner [bad-param-name-override] +ERROR torch/distributions/constraints.py:521:16-25: No attribute `all` in module `torch` [missing-attribute] +ERROR torch/distributions/constraints.py:539:9-14: Class member `_Multinomial.check` overrides parent class `Constraint` in an inconsistent manner [bad-param-name-override] +ERROR torch/distributions/constraints.py:582:13-24: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/distributions/constraints.py:597:16-26: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/distributions/constraints.py:600:19-29: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/distributions/constraints.py:614:16-29: No attribute `isclose` in module `torch` [missing-attribute] +ERROR torch/distributions/constraints.py:674:16-25: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributions/constraints.py:704:16-27: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:85:27-37: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:94:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:109:16-25: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:110:13-21: No attribute `le` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:110:50-58: No attribute `gt` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:114:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:117:29-44: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:123:32-43: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:124:13-21: No attribute `le` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:124:50-66: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:126:32-43: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:127:13-21: No attribute `ge` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:127:50-65: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:129:20-29: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:130:13-22: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:130:23-34: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:130:49-58: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:131:13-24: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:132:13-21: No attribute `le` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:133:13-24: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:134:13-22: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:136:13-22: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:138:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:144:13-24: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:144:39-48: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:147:51-60: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:148:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:152:16-26: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:157:48-57: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:159:19-28: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:159:29-40: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:159:55-64: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:160:13-22: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:162:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:173:30-40: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:176:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:178:13-23: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:182:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:184:13-23: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:201:13-22: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:201:43-52: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:205:26-37: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:206:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:207:13-21: No attribute `le` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:208:13-29: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:209:13-24: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:209:25-33: No attribute `ge` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:209:47-62: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:214:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:217:17-28: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:218:19-30: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:220:16-25: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:220:39-50: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:225:22-33: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:226:22-31: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:240:24-33: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:241:13-21: No attribute `le` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:241:47-55: No attribute `gt` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:243:26-37: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:244:54-69: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:246:20-29: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:247:13-22: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:248:13-22: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:248:23-32: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:249:28-37: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:249:53-62: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/distributions/continuous_bernoulli.py:250:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/dirichlet.py:19:12-33: No attribute `_dirichlet_grad` in module `torch` [missing-attribute] +ERROR torch/distributions/dirichlet.py:27:13-36: No attribute `_sample_dirichlet` in module `torch` [missing-attribute] +ERROR torch/distributions/dirichlet.py:77:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/dirichlet.py:94:13-24: No attribute `xlogy` in module `torch` [missing-attribute] +ERROR torch/distributions/dirichlet.py:95:15-27: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/dirichlet.py:96:15-27: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/dirichlet.py:126:13-25: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/dirichlet.py:127:15-27: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/dirichlet.py:128:26-39: No attribute `digamma` in module `torch` [missing-attribute] +ERROR torch/distributions/dirichlet.py:129:45-58: No attribute `digamma` in module `torch` [missing-attribute] +ERROR torch/distributions/dirichlet.py:138:37-49: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/distribution.py:49:22-32: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/distribution.py:49:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/distribution.py:50:22-32: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/distribution.py:50:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/distribution.py:77:24-42: No attribute `_is_all_true` in module `torch` [missing-attribute] +ERROR torch/distributions/distribution.py:109:30-40: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/distribution.py:116:30-40: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/distribution.py:168:44-54: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/distribution.py:176:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/distribution.py:193:28-38: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/distribution.py:265:16-25: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/distribution.py:267:53-63: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/distribution.py:267:70-80: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/distribution.py:277:41-51: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/distribution.py:278:28-38: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/distribution.py:279:16-26: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/distribution.py:323:16-34: No attribute `_is_all_true` in module `torch` [missing-attribute] +ERROR torch/distributions/exponential.py:42:16-32: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributions/exponential.py:58:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/exponential.py:63:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/exponential.py:69:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/exponential.py:81:20-29: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/exponential.py:84:17-28: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/exponential.py:87:22-31: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/exponential.py:95:17-26: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/fishersnedecor.py:48:27-37: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/fishersnedecor.py:55:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/fishersnedecor.py:66:44-67: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributions/fishersnedecor.py:78:44-67: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributions/fishersnedecor.py:87:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/fishersnedecor.py:93:16-27: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/distributions/fishersnedecor.py:106:44-53: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/fishersnedecor.py:107:28-39: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/gamma.py:16:12-33: No attribute `_standard_gamma` in module `torch` [missing-attribute] +ERROR torch/distributions/gamma.py:66:27-37: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/gamma.py:73:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/gamma.py:80:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/gamma.py:86:17-28: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/distributions/gamma.py:91:17-32: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/distributions/gamma.py:95:13-24: No attribute `xlogy` in module `torch` [missing-attribute] +ERROR torch/distributions/gamma.py:96:15-26: No attribute `xlogy` in module `torch` [missing-attribute] +ERROR torch/distributions/gamma.py:98:15-27: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/gamma.py:104:15-24: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/gamma.py:105:15-27: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/gamma.py:106:44-57: No attribute `digamma` in module `torch` [missing-attribute] +ERROR torch/distributions/gamma.py:115:16-28: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/gamma.py:115:48-57: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:55:27-37: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:62:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:70:36-46: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:72:13-23: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:79:19-32: No attribute `isclose` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:79:53-65: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:80:21-32: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:81:22-37: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:83:29-44: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:84:25-36: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:84:52-63: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:88:29-40: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:94:19-32: No attribute `isclose` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:94:53-65: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:95:21-32: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:96:22-37: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:98:26-37: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:99:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:102:16-27: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:102:29-38: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:105:16-25: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:111:19-32: No attribute `isclose` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:111:48-64: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:112:21-32: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:112:42-57: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:113:16-27: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:114:51-62: No attribute `expm1` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:116:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:125:21-32: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:127:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:133:21-32: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:136:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:139:15-24: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:140:16-34: No attribute `broadcast_to` in module `torch` [missing-attribute] +ERROR torch/distributions/generalized_pareto.py:150:17-28: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/geometric.py:70:27-37: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/geometric.py:90:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/geometric.py:105:16-32: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributions/geometric.py:119:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/geometric.py:121:16-27: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/distributions/geometric.py:123:16-43: No attribute `_get_tracing_state` in module `torch._C` [missing-attribute] +ERROR torch/distributions/geometric.py:125:21-31: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/distributions/geometric.py:135:43-66: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributions/gumbel.py:45:17-28: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/distributions/gumbel.py:50:17-32: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/distributions/gumbel.py:51:17-32: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/distributions/gumbel.py:56:43-58: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/distributions/half_cauchy.py:59:16-26: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/distributions/half_cauchy.py:68:16-32: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributions/half_cauchy.py:77:17-32: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/distributions/half_cauchy.py:81:20-31: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/half_cauchy.py:89:9-13: Class member `HalfCauchy.icdf` overrides parent class `TransformedDistribution` in an inconsistent manner [bad-param-name-override] +ERROR torch/distributions/half_normal.py:63:16-32: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributions/half_normal.py:73:20-31: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/half_normal.py:81:9-13: Class member `HalfNormal.icdf` overrides parent class `TransformedDistribution` in an inconsistent manner [bad-param-name-override] +ERROR torch/distributions/independent.py:5:19-23: Could not import `Size` from `torch` [missing-module-attribute] +ERROR torch/distributions/independent.py:72:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/independent.py:113:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/independent.py:116:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/inverse_gamma.py:74:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/inverse_gamma.py:85:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:145:12-27: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:225:50-63: No attribute `digamma` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:226:50-63: No attribute `digamma` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:227:42-55: No attribute `digamma` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:258:36-47: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:259:37-48: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:303:10-22: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:303:42-54: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:304:48-61: No attribute `digamma` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:316:10-19: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:322:27-38: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:337:24-33: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:421:28-48: No attribute `_infer_size` in module `torch._C` [missing-attribute] +ERROR torch/distributions/kl.py:429:18-34: No attribute `diag_embed` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:454:28-48: No attribute `_infer_size` in module `torch._C` [missing-attribute] +ERROR torch/distributions/kl.py:523:11-22: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:588:27-36: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:598:43-55: No attribute `square` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:598:76-85: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:601:24-36: No attribute `square` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:602:15-27: No attribute `square` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:610:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:611:9-18: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:612:13-21: No attribute `ge` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:613:13-21: No attribute `le` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:615:9-24: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:631:29-38: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:646:10-19: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:658:16-25: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:689:9-18: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:704:15-24: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:754:16-25: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:778:10-19: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:787:10-19: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:789:44-53: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:791:21-30: No attribute `erf` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:850:10-19: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:876:11-22: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:879:12-23: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:880:9-18: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:881:13-21: No attribute `ge` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:882:13-21: No attribute `le` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:884:9-24: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:918:25-34: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/kl.py:918:53-62: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/kumaraswamy.py:21:17-29: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/kumaraswamy.py:21:38-50: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/kumaraswamy.py:21:56-68: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/kumaraswamy.py:22:16-25: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/kumaraswamy.py:61:13-28: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/distributions/kumaraswamy.py:62:13-28: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/distributions/kumaraswamy.py:95:72-81: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/distributions/kumaraswamy.py:102:14-27: No attribute `digamma` in module `torch` [missing-attribute] +ERROR torch/distributions/kumaraswamy.py:106:15-24: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/kumaraswamy.py:107:15-24: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/laplace.py:60:27-37: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/laplace.py:67:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/laplace.py:74:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/laplace.py:76:17-28: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/distributions/laplace.py:77:12-39: No attribute `_get_tracing_state` in module `torch._C` [missing-attribute] +ERROR torch/distributions/laplace.py:79:17-27: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/distributions/laplace.py:80:55-66: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/laplace.py:86:51-62: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/laplace.py:91:17-26: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/laplace.py:91:45-54: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/distributions/laplace.py:96:56-67: No attribute `expm1` in module `torch` [missing-attribute] +ERROR torch/distributions/laplace.py:102:56-67: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/laplace.py:105:20-29: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/lkj_cholesky.py:80:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/lkj_cholesky.py:83:18-30: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributions/lkj_cholesky.py:88:18-27: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributions/lkj_cholesky.py:96:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/lkj_cholesky.py:106:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/lkj_cholesky.py:114:20-31: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/distributions/lkj_cholesky.py:120:13-23: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/distributions/lkj_cholesky.py:122:15-26: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/distributions/lkj_cholesky.py:123:22-33: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/distributions/lkj_cholesky.py:123:38-47: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/distributions/lkj_cholesky.py:124:14-30: No attribute `diag_embed` in module `torch` [missing-attribute] +ERROR torch/distributions/lkj_cholesky.py:140:17-29: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributions/lkj_cholesky.py:142:32-41: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/distributions/lkj_cholesky.py:146:23-35: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/lkj_cholesky.py:147:21-35: No attribute `mvlgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/lowrank_multivariate_normal.py:24:9-21: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/distributions/lowrank_multivariate_normal.py:143:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/lowrank_multivariate_normal.py:181:13-25: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/distributions/lowrank_multivariate_normal.py:190:29-41: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/distributions/lowrank_multivariate_normal.py:192:13-29: No attribute `diag_embed` in module `torch` [missing-attribute] +ERROR torch/distributions/lowrank_multivariate_normal.py:208:13-29: No attribute `diag_embed` in module `torch` [missing-attribute] +ERROR torch/distributions/lowrank_multivariate_normal.py:214:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/mixture_same_family.py:110:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/mixture_same_family.py:142:16-25: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/distributions/mixture_same_family.py:150:25-34: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/distributions/mixture_same_family.py:153:25-34: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/distributions/mixture_same_family.py:159:9-12: Class member `MixtureSameFamily.cdf` overrides parent class `Distribution` in an inconsistent manner [bad-param-name-override] +ERROR torch/distributions/mixture_same_family.py:164:16-25: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/distributions/mixture_same_family.py:166:9-17: Class member `MixtureSameFamily.log_prob` overrides parent class `Distribution` in an inconsistent manner [bad-param-name-override] +ERROR torch/distributions/mixture_same_family.py:171:24-41: No attribute `log_softmax` in module `torch` [missing-attribute] +ERROR torch/distributions/mixture_same_family.py:174:16-31: No attribute `logsumexp` in module `torch` [missing-attribute] +ERROR torch/distributions/mixture_same_family.py:176:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/mixture_same_family.py:192:29-39: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/mixture_same_family.py:195:17-27: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/mixture_same_family.py:195:52-62: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/mixture_same_family.py:198:23-35: No attribute `gather` in module `torch` [missing-attribute] +ERROR torch/distributions/mixture_same_family.py:211:15-25: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/mixture_same_family.py:213:15-25: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/multinomial.py:83:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/multinomial.py:109:30-40: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/multinomial.py:112:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/multinomial.py:113:24-34: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/multinomial.py:115:13-23: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/multinomial.py:123:42-57: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/distributions/multinomial.py:127:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributions/multinomial.py:130:35-47: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/multinomial.py:133:26-35: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/multinomial.py:134:19-31: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/multinomial.py:143:45-68: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributions/multinomial.py:144:27-39: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/multinomial.py:145:28-40: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/multivariate_normal.py:27:12-24: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/distributions/multivariate_normal.py:82:32-42: No attribute `flip` in module `torch` [missing-attribute] +ERROR torch/distributions/multivariate_normal.py:83:13-28: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/distributions/multivariate_normal.py:83:29-39: No attribute `flip` in module `torch` [missing-attribute] +ERROR torch/distributions/multivariate_normal.py:84:10-19: No attribute `eye` in module `torch` [missing-attribute] +ERROR torch/distributions/multivariate_normal.py:199:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/multivariate_normal.py:224:16-28: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/distributions/multivariate_normal.py:230:16-38: No attribute `cholesky_inverse` in module `torch` [missing-attribute] +ERROR torch/distributions/multivariate_normal.py:250:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/negative_binomial.py:77:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/negative_binomial.py:94:35-44: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/negative_binomial.py:102:28-41: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/distributions/negative_binomial.py:113:30-40: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/negative_binomial.py:121:18-27: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/negative_binomial.py:125:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/negative_binomial.py:128:20-33: No attribute `poisson` in module `torch` [missing-attribute] +ERROR torch/distributions/negative_binomial.py:139:14-26: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/negative_binomial.py:140:15-27: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/negative_binomial.py:141:15-27: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/normal.py:64:27-37: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/normal.py:71:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/normal.py:78:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/normal.py:81:20-32: No attribute `normal` in module `torch` [missing-attribute] +ERROR torch/distributions/normal.py:83:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/normal.py:109:17-26: No attribute `erf` in module `torch` [missing-attribute] +ERROR torch/distributions/normal.py:113:40-52: No attribute `erfinv` in module `torch` [missing-attribute] +ERROR torch/distributions/normal.py:116:52-61: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/normal.py:124:45-54: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/one_hot_categorical.py:63:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/one_hot_categorical.py:101:30-40: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/one_hot_categorical.py:104:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/one_hot_categorical.py:105:24-34: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/one_hot_categorical.py:122:18-27: No attribute `eye` in module `torch` [missing-attribute] +ERROR torch/distributions/one_hot_categorical.py:140:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/poisson.py:58:27-37: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/poisson.py:65:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/poisson.py:71:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/poisson.py:74:20-33: No attribute `poisson` in module `torch` [missing-attribute] +ERROR torch/distributions/poisson.py:84:17-26: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/poisson.py:88:16-25: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/relaxed_bernoulli.py:70:27-37: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/relaxed_bernoulli.py:77:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/relaxed_bernoulli.py:101:30-40: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/relaxed_bernoulli.py:104:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/relaxed_bernoulli.py:108:13-23: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/distributions/relaxed_categorical.py:63:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/relaxed_categorical.py:76:30-40: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/relaxed_categorical.py:87:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/relaxed_categorical.py:90:13-23: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/distributions/relaxed_categorical.py:101:21-36: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/distributions/studentT.py:45:42-65: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributions/studentT.py:55:41-64: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/distributions/studentT.py:79:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/studentT.py:88:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/studentT.py:99:17-28: No attribute `rsqrt` in module `torch` [missing-attribute] +ERROR torch/distributions/studentT.py:110:15-27: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/studentT.py:111:15-27: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/studentT.py:113:41-52: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/studentT.py:117:13-25: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/studentT.py:119:15-27: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/studentT.py:125:16-29: No attribute `digamma` in module `torch` [missing-attribute] +ERROR torch/distributions/studentT.py:125:53-66: No attribute `digamma` in module `torch` [missing-attribute] +ERROR torch/distributions/transformed_distribution.py:112:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/transformed_distribution.py:141:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/transformed_distribution.py:154:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:370:20-36: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:505:19-29: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:506:20-30: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:509:25-35: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:510:26-36: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:630:13-24: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:631:12-23: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:631:24-37: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:651:17-28: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:720:16-27: No attribute `atanh` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:831:22-37: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:833:22-31: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:873:13-23: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:874:15-26: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:882:28-40: Object of class `int` has no attribute `sqrt` [missing-attribute] +ERROR torch/distributions/transforms.py:884:17-26: No attribute `eye` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:891:24-36: No attribute `cumsum` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:1005:14-25: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:1005:34-45: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:1126:16-25: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:1137:16-25: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:1160:20-29: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:1222:16-27: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:1230:16-27: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/distributions/transforms.py:1242:16-27: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/distributions/uniform.py:67:27-37: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/uniform.py:74:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/uniform.py:86:45-55: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/uniform.py:88:16-26: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/distributions/uniform.py:96:16-25: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/uniform.py:96:40-49: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/uniform.py:109:16-25: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/utils.py:49:46-69: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/distributions/utils.py:55:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributions/utils.py:66:8-35: No attribute `_get_tracing_state` in module `torch._C` [missing-attribute] +ERROR torch/distributions/utils.py:68:16-28: No attribute `normal` in module `torch` [missing-attribute] +ERROR torch/distributions/utils.py:69:13-24: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributions/utils.py:70:13-23: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/distributions/utils.py:72:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributions/utils.py:97:16-29: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/distributions/utils.py:123:11-22: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/distributions/utils.py:136:16-25: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/utils.py:136:40-51: No attribute `log1p` in module `torch` [missing-attribute] +ERROR torch/distributions/utils.py:137:12-21: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/utils.py:192:12-39: No attribute `_get_tracing_state` in module `torch._C` [missing-attribute] +ERROR torch/distributions/utils.py:194:14-26: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributions/utils.py:210:11-22: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/distributions/utils.py:211:12-39: No attribute `_get_tracing_state` in module `torch._C` [missing-attribute] +ERROR torch/distributions/utils.py:217:42-52: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/utils.py:218:14-26: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributions/von_mises.py:88:14-25: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/von_mises.py:94:12-23: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/distributions/von_mises.py:94:39-49: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/distributions/von_mises.py:97:13-23: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/distributions/von_mises.py:99:13-22: No attribute `cos` in module `torch` [missing-attribute] +ERROR torch/distributions/von_mises.py:103:12-22: Object of class `bool` has no attribute `any` [missing-attribute] +ERROR torch/distributions/von_mises.py:105:17-28: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/von_mises.py:141:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/von_mises.py:147:41-50: No attribute `cos` in module `torch` [missing-attribute] +ERROR torch/distributions/von_mises.py:157:28-40: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/distributions/von_mises.py:161:38-50: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/distributions/von_mises.py:167:19-42: Object of class `int` has no attribute `sqrt` [missing-attribute] +ERROR torch/distributions/von_mises.py:173:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/von_mises.py:176:35-45: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/von_mises.py:187:13-24: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/distributions/weibull.py:50:13-28: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/distributions/weibull.py:75:29-38: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/weibull.py:75:39-51: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/weibull.py:88:13-22: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/weibull.py:88:23-35: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/weibull.py:89:15-24: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/distributions/weibull.py:89:29-41: No attribute `lgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/weibull.py:95:15-24: No attribute `log` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:22:12-25: No attribute `digamma` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:24:11-23: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:30:24-35: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:106:27-37: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:107:23-35: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:148:19-31: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:158:23-33: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:176:19-31: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:203:20-29: No attribute `eye` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:208:16-36: No attribute `cholesky_solve` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:230:47-57: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:238:16-34: No attribute `tril_indices` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:239:28-39: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:240:13-23: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:248:37-47: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:260:39-66: No attribute `_get_tracing_state` in module `torch._C` [missing-attribute] +ERROR torch/distributions/wishart.py:262:24-34: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:270:12-39: No attribute `_get_tracing_state` in module `torch._C` [missing-attribute] +ERROR torch/distributions/wishart.py:274:26-37: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:312:15-29: No attribute `mvlgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:314:15-35: No attribute `cholesky_solve` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:331:15-29: No attribute `mvlgamma` in module `torch` [missing-attribute] +ERROR torch/distributions/wishart.py:347:13-27: No attribute `mvlgamma` in module `torch` [missing-attribute] +ERROR torch/export/__init__.py:300:17-38: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/__init__.py:300:17-54: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/__init__.py:302:17-34: Module `torch._dynamo.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/__init__.py:303:17-38: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/__init__.py:303:17-54: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_draft_export.py:386:9-25: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_draft_export.py:386:9-32: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_leakage_detection_utils.py:41:28-49: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_leakage_detection_utils.py:41:28-65: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_safeguard.py:21:13-39: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/export/_safeguard.py:25:25-49: No attribute `is_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/export/_safeguard.py:29:20-47: No attribute `_get_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/export/_safeguard.py:29:48-78: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/export/_trace.py:190:11-27: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:190:11-34: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:193:9-25: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:193:9-32: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:194:15-31: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:194:15-38: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:196:9-25: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:196:9-32: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:200:16-32: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:200:16-39: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:828:16-32: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:828:16-39: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:829:16-29: Module `torch._export` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:843:20-33: Module `torch._export` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:1502:22-55: No attribute `_jit_texpr_fuser_enabled` in module `torch._C` [missing-attribute] +ERROR torch/export/_trace.py:1503:5-42: No attribute `_jit_set_texpr_fuser_enabled` in module `torch._C` [missing-attribute] +ERROR torch/export/_trace.py:1507:9-46: No attribute `_jit_set_texpr_fuser_enabled` in module `torch._C` [missing-attribute] +ERROR torch/export/_trace.py:1525:9-12: Argument `Module` is not assignable to parameter `f` with type `(...) -> Unknown` in function `_export_to_torch_ir` [bad-argument-type] +ERROR torch/export/_trace.py:1728:24-64: No attribute `_is_torch_function_mode_enabled` in module `torch._C` [missing-attribute] +ERROR torch/export/_trace.py:1806:29-50: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/export/_trace.py:1810:21-47: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/export/_trace.py:2015:30-48: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:2176:28-41: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:2181:23-36: Module `torch._export` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:2211:20-33: Module `torch._export` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:2261:23-36: Module `torch._export` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_trace.py:2443:5-18: Module `torch._export` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_unlift.py:694:18-36: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_unlift.py:694:18-45: Module `torch.utils._sympy.printers` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/_unlift.py:860:32-47: Module `torch.fx._utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/dynamic_shapes.py:572:28-48: Module `torch._dynamo.source` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/dynamic_shapes.py:573:33-54: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/dynamic_shapes.py:573:33-70: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/dynamic_shapes.py:912:13-33: Module `torch.export._unlift` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/dynamic_shapes.py:1353:24-35: Object of class `Basic` has no attribute `name` [missing-attribute] +ERROR torch/export/exported_program.py:158:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:159:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:160:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:161:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:162:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:163:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:164:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:165:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:166:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:167:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:168:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:169:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:179:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:180:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:181:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:182:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:183:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:184:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:185:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:186:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:187:5-25: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:214:12-32: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:215:40-60: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:217:29-49: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/export/exported_program.py:1705:36-56: Module `torch._dynamo.source` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/exported_program.py:1709:18-39: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/exported_program.py:1709:18-55: Module `torch.fx.experimental.symbolic_shapes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/graph_signature.py:564:23-35: Could not import `ScriptObject` from `torch` [missing-module-attribute] +ERROR torch/export/passes/__init__.py:12:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/export/passes/__init__.py:29:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/export/passes/__init__.py:30:25-37: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/export/pt2_archive/_package.py:494:37-58: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/export/pt2_archive/_package.py:504:35-56: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/export/pt2_archive/_package.py:543:28-49: No attribute `_pickle_save` in module `torch._C` [missing-attribute] +ERROR torch/export/pt2_archive/_package.py:723:32-46: Module `torch._C._aoti` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/pt2_archive/_package.py:789:18-34: No attribute `frombuffer` in module `torch` [missing-attribute] +ERROR torch/export/pt2_archive/_package.py:798:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/export/pt2_archive/_package.py:879:33-49: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/export/pt2_archive/_package.py:935:39-55: No attribute `as_strided` in module `torch` [missing-attribute] +ERROR torch/export/pt2_archive/_package.py:949:43-68: No attribute `_pickle_load_obj` in module `torch._C` [missing-attribute] +ERROR torch/export/pt2_archive/_package.py:1023:27-52: Module `torch._inductor.codecache` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/pt2_archive/_package.py:1037:9-23: Module `torch._C._aoti` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/export/pt2_archive/_package_weights.py:125:35-46: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/export/unflatten.py:84:35-53: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/export/unflatten.py:125:21-39: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/export/unflatten.py:450:56-77: No attribute `ScriptObject` in module `torch._C` [missing-attribute] +ERROR torch/export/unflatten.py:1771:58-76: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/functional.py:10:22-33: Could not import `_add_docstr` from `torch._C` [missing-module-attribute] +ERROR torch/functional.py:108:18-29: Module `torch._refs` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/functional.py:110:20-30: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/functional.py:111:16-26: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/functional.py:115:22-33: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/functional.py:938:43-57: No attribute `unique_dim` in module `torch._VF` [missing-attribute] +ERROR torch/functional.py:946:43-57: No attribute `_unique2` in module `torch` [missing-attribute] +ERROR torch/functional.py:1770:24-37: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/functional.py:1826:24-42: No attribute `frobenius_norm` in module `torch._VF` [missing-attribute] +ERROR torch/functional.py:1885:38-48: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/functional.py:1945:30-40: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/functional.py:1955:17-27: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/functional.py:1962:17-27: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/functional.py:1973:42-52: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/functional.py:1979:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/functional.py:1979:58-69: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/functional.py:1980:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/functional.py:1980:58-69: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/functional.py:2128:12-31: No attribute `_lu_with_info` in module `torch` [missing-attribute] +ERROR torch/futures/__init__.py:20:14-29: No attribute `Future` in module `torch._C` [missing-attribute] +ERROR torch/futures/__init__.py:30:57-69: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/futures/__init__.py:47:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/futures/__init__.py:313:9-30: No attribute `_collect_all` in module `torch._C` [missing-attribute] +ERROR torch/futures/__init__.py:313:41-56: No attribute `Future` in module `torch._C` [missing-attribute] +ERROR torch/futures/__init__.py:334:20-41: No attribute `_collect_all` in module `torch._C` [missing-attribute] +ERROR torch/futures/__init__.py:334:52-67: No attribute `Future` in module `torch._C` [missing-attribute] +ERROR torch/fx/_graph_pickler.py:101:30-43: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/_graph_pickler.py:250:33-61: Module `torch._subclasses.meta_utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/_graph_pickler.py:278:68-80: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/fx/_graph_pickler.py:317:16-39: Module `torch._dynamo.variables` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/_graph_pickler.py:324:21-44: Module `torch._dynamo.variables` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/_graph_pickler.py:358:27-54: Module `torch.fx._lazy_graph_module` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/_graph_pickler.py:557:20-26: Could not find import of `einops` [missing-import] +ERROR torch/fx/_graph_pickler.py:599:42-55: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/_graph_pickler.py:601:42-55: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/_symbolic_trace.py:44:19-37: No attribute `ScriptObject` in module `torch` [missing-attribute] + WARN torch/fx/_symbolic_trace.py:188:13-25: `types.CodeType.co_lnotab` is deprecated [deprecated] + WARN torch/fx/_symbolic_trace.py:206:13-25: `types.CodeType.co_lnotab` is deprecated [deprecated] +ERROR torch/fx/experimental/_dynamism.py:94:37-42: Argument `tuple[Never] | tuple[float | int, ...]` is not assignable to parameter `iterable` with type `Iterable[Never]` in function `enumerate.__new__` [bad-argument-type] +ERROR torch/fx/experimental/graph_gradual_typechecker.py:164:26-35: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/graph_gradual_typechecker.py:247:26-41: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/graph_gradual_typechecker.py:253:20-35: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/graph_gradual_typechecker.py:282:26-39: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/graph_gradual_typechecker.py:600:26-39: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/graph_gradual_typechecker.py:770:27-36: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/graph_gradual_typechecker.py:812:27-40: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/merge_matmul.py:111:61-73: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/merge_matmul.py:143:47-56: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/merge_matmul.py:149:13-25: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/meta_tracer.py:13:12-23: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/meta_tracer.py:47:5-15: No attribute `relu` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/meta_tracer.py:50:5-16: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/meta_tracer.py:51:5-14: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_generator.py:155:26-35: No attribute `bmm` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_generator.py:332:26-36: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_generator.py:333:26-37: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_generator.py:498:26-38: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_generator.py:606:26-38: No attribute `cumsum` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_generator.py:974:26-36: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_generator.py:989:26-38: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1047:26-34: No attribute `ne` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1049:26-35: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1053:48-57: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1123:26-39: No attribute `flatten` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1259:26-38: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1337:26-39: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:128:58-66: `new_dims` may be uninitialized [unbound-name] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:218:13-37: Cannot set item in `list[None]` [unsupported-operation] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:230:13-37: Cannot set item in `list[None]` [unsupported-operation] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:655:77-79: Argument `DVar` is not assignable to parameter `dim` with type `list[DVar]` in function `is_dim_div_by_target` [bad-argument-type] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:662:71-85: Argument `Prod` is not assignable to parameter `dim` with type `list[DVar]` in function `is_dim_div_by_target` [bad-argument-type] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:673:50-68: Argument `Prod` is not assignable to parameter `dim` with type `list[DVar]` in function `is_dim_div_by_target` [bad-argument-type] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:686:50-72: Argument `Prod` is not assignable to parameter `dim` with type `list[DVar]` in function `is_dim_div_by_target` [bad-argument-type] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:794:38-54: Cannot index into `dict[Constraint, (...) -> Unknown]` [bad-index] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:951:56-73: Argument `Prod` is not assignable to parameter `dim` with type `list[DVar]` in function `is_target_div_by_dim` [bad-argument-type] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:1180:32-46: Object of class `Constraint` has no attribute `lhs` [missing-attribute] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:1181:32-46: Object of class `Constraint` has no attribute `rhs` [missing-attribute] +ERROR torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:1229:17-1231:18: Argument `DGreatestUpperBound` is not assignable to parameter `object` with type `BinConstraintD | BinConstraintT` in function `list.append` [bad-argument-type] +ERROR torch/fx/experimental/normalize.py:131:9-18: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/normalize.py:132:9-18: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/normalize.py:133:9-18: No attribute `sub` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/normalize.py:134:9-18: No attribute `div` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/normalize.py:135:9-27: No attribute `floor_divide` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/normalize.py:136:9-24: No attribute `remainder` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/normalize.py:137:9-17: No attribute `eq` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/normalize.py:138:9-17: No attribute `ne` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/normalize.py:139:9-17: No attribute `lt` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/normalize.py:140:9-17: No attribute `le` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/normalize.py:141:9-17: No attribute `gt` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/normalize.py:142:9-17: No attribute `ge` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/optimization.py:165:5-15: No attribute `relu` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/optimization.py:166:5-20: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/optimization.py:167:5-18: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/optimization.py:197:41-57: Cannot index into `dict[type[BatchNorm2d] | type[Conv2d] | type[Linear], ((a: Unknown, _: Unknown) -> MkldnnBatchNorm) | type[MkldnnConv2d] | type[MkldnnLinear]]` [bad-index] +ERROR torch/fx/experimental/optimization.py:197:71-82: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/optimization.py:375:54-65: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/optimization.py:378:55-67: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:105:21-39: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:106:30-48: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:128:5-15: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:144:38-48: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:531:47-53: No matching overload found for function `dict.get` called with arguments: (Expr) [no-matching-overload] +ERROR torch/fx/experimental/proxy_tensor.py:544:60-63: Argument `Basic` is not assignable to parameter `expr` with type `Expr` in function `_build_proxy_for_sym_expr` [bad-argument-type] +ERROR torch/fx/experimental/proxy_tensor.py:614:24-43: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:873:23-28: `Proxy` is not assignable to attribute `proxy` with type `Never` [bad-assignment] +ERROR torch/fx/experimental/proxy_tensor.py:905:20-51: Object of class `_ProxyTensor` has no attribute `force` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:952:18-32: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:952:34-47: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:1073:8-17: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:1190:9-18: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:1382:13-55: Module `torch._higher_order_ops.triton_kernel_wrap` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/proxy_tensor.py:1383:13-55: Module `torch._higher_order_ops.triton_kernel_wrap` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/proxy_tensor.py:1411:53-65: No attribute `Tag` in module `torch._C` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:1496:12-33: Module `torch.fx._lazy_graph_module` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/proxy_tensor.py:1533:20-51: Object of class `_ProxyTensor` has no attribute `force` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:1569:22-42: No attribute `_TensorMeta` in module `torch._C` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:1599:22-42: No attribute `_TensorMeta` in module `torch._C` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:1616:17-43: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:1623:24-50: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:1632:13-29: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/proxy_tensor.py:1632:13-41: Module `torch._functorch.predispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/proxy_tensor.py:1633:13-29: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/proxy_tensor.py:1633:13-41: Module `torch._functorch.predispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/proxy_tensor.py:1634:13-29: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/proxy_tensor.py:1634:13-41: Module `torch._functorch.predispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/proxy_tensor.py:1635:13-29: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/proxy_tensor.py:1635:13-41: Module `torch._functorch.predispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/proxy_tensor.py:1636:13-29: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/proxy_tensor.py:1636:13-34: Module `torch._functorch.vmap` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/proxy_tensor.py:1670:14-34: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:1679:26-56: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:1693:22-42: No attribute `_TensorMeta` in module `torch._C` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:1707:51-81: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:1711:9-17: Class member `ProxyTorchDispatchMode.__exit__` overrides parent class `TorchDispatchMode` in an inconsistent manner [bad-param-name-override] +ERROR torch/fx/experimental/proxy_tensor.py:1733:22-42: No attribute `_TensorMeta` in module `torch._C` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:1777:21-52: Object of class `_ProxyTensor` has no attribute `force` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:1787:17-48: Object of class `_ProxyTensor` has no attribute `force` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:1998:17-48: No attribute `is_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:1999:5-37: No attribute `set_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:2003:9-41: No attribute `set_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:2215:13-2222:33: `Module | _AttrProxy` is not assignable to `Module` (caused by inconsistent types when breaking cycles) [bad-assignment] +ERROR torch/fx/experimental/proxy_tensor.py:2334:47-60: Module `torch._decomp` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/proxy_tensor.py:2537:36-54: No attribute `ScriptObject` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:2611:31-44: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/proxy_tensor.py:2707:12-40: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/proxy_tensor.py:2723:9-39: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:2725:12-39: No attribute `_get_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:2725:40-70: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:2754:32-62: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:2813:17-44: No attribute `_get_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/fx/experimental/proxy_tensor.py:2813:45-75: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/fx/experimental/schema_type_annotation.py:110:38-66: No attribute `_jit_try_infer_type` in module `torch._C` [missing-attribute] +ERROR torch/fx/experimental/shape_inference/infer_shape.py:53:30-41: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/sym_node.py:986:64-80: Object of class `Expr` has no attribute `is_integer` [missing-attribute] +ERROR torch/fx/experimental/sym_node.py:1306:13-34: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/sym_node.py:1306:13-43: Module `torch.fx.experimental.sym_node` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/symbolic_shapes.py:326:9-30: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/symbolic_shapes.py:326:9-40: Module `torch.fx.experimental.recording` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/symbolic_shapes.py:327:9-30: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/symbolic_shapes.py:327:9-39: Module `torch.fx.experimental.sym_node` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/symbolic_shapes.py:339:9-34: Module `torch._logging.structured` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/symbolic_shapes.py:502:13-20: Object of class `object` has no attribute `dim` [missing-attribute] +ERROR torch/fx/experimental/symbolic_shapes.py:502:26-33: Object of class `object` has no attribute `dim` [missing-attribute] +ERROR torch/fx/experimental/symbolic_shapes.py:502:48-57: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/fx/experimental/symbolic_shapes.py:502:63-72: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/fx/experimental/symbolic_shapes.py:508:25-34: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/fx/experimental/symbolic_shapes.py:508:36-45: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/fx/experimental/symbolic_shapes.py:509:45-54: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/fx/experimental/symbolic_shapes.py:509:60-69: Object of class `object` has no attribute `shape` [missing-attribute] +ERROR torch/fx/experimental/symbolic_shapes.py:810:16-812:10: Returned type `bool | None` is not assignable to declared return type `bool` [bad-return] +ERROR torch/fx/experimental/symbolic_shapes.py:864:48-52: Argument `list[Basic | Unknown] | list[Basic]` is not assignable to parameter `args` with type `list[Expr]` in function `_sympy_from_args` [bad-argument-type] +ERROR torch/fx/experimental/symbolic_shapes.py:940:26-41: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/symbolic_shapes.py:958:40-50: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/symbolic_shapes.py:1211:21-62: No matching overload found for function `typing.MutableMapping.update` called with arguments: (dict[Symbol, tuple[KeyEntry, ...]]) [no-matching-overload] +ERROR torch/fx/experimental/symbolic_shapes.py:1219:17-1225:10: No matching overload found for function `typing.MutableMapping.update` called with arguments: (dict[Symbol, tuple[KeyEntry, ...]]) [no-matching-overload] +ERROR torch/fx/experimental/symbolic_shapes.py:1227:13-29: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/symbolic_shapes.py:1228:13-29: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/symbolic_shapes.py:1229:13-29: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/symbolic_shapes.py:1230:13-29: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/symbolic_shapes.py:1232:21-1238:14: No matching overload found for function `typing.MutableMapping.update` called with arguments: (dict[Symbol, tuple[KeyEntry, ...]]) [no-matching-overload] +ERROR torch/fx/experimental/symbolic_shapes.py:1239:17-1249:10: No matching overload found for function `typing.MutableMapping.update` called with arguments: (dict[Symbol, tuple[KeyEntry, ...]]) [no-matching-overload] +ERROR torch/fx/experimental/symbolic_shapes.py:1256:11-12: Cannot set item in `dict[str, Unknown]` [unsupported-operation] +ERROR torch/fx/experimental/symbolic_shapes.py:1295:31-36: Argument `Integer | Symbol` is not assignable to parameter `s` with type `Symbol` in function `_symint_wrap` [bad-argument-type] +ERROR torch/fx/experimental/symbolic_shapes.py:1299:11-19: Cannot set item in `dict[str, Unknown]` [unsupported-operation] +ERROR torch/fx/experimental/symbolic_shapes.py:1299:11-19: Cannot set item in `dict[str, Unknown]` [unsupported-operation] +ERROR torch/fx/experimental/symbolic_shapes.py:1309:24-32: Argument `Integer | Symbol` is not assignable to parameter `element` with type `Symbol` in function `set.remove` [bad-argument-type] +ERROR torch/fx/experimental/symbolic_shapes.py:1321:11-16: Cannot set item in `dict[str, Unknown]` [unsupported-operation] +ERROR torch/fx/experimental/symbolic_shapes.py:1329:12-13: Returned type `dict[str, Unknown]` is not assignable to declared return type `dict[Symbol, tuple[KeyEntry, ...]]` [bad-return] +ERROR torch/fx/experimental/symbolic_shapes.py:1452:8-29: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/symbolic_shapes.py:1452:8-37: Module `torch.fx.experimental._config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/symbolic_shapes.py:2091:9-27: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/symbolic_shapes.py:2091:9-37: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/symbolic_shapes.py:2092:9-27: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/symbolic_shapes.py:2092:9-37: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/symbolic_shapes.py:2093:9-27: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/symbolic_shapes.py:2093:9-37: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/symbolic_shapes.py:2339:16-23: `>` is not supported between `Basic` and `Literal[1]` [unsupported-operation] +ERROR torch/fx/experimental/symbolic_shapes.py:2341:18-25: `<` is not supported between `Basic` and `Literal[0]` [unsupported-operation] +ERROR torch/fx/experimental/symbolic_shapes.py:2354:9-25: `Expr` is not assignable to `list[Expr]` [bad-assignment] +ERROR torch/fx/experimental/symbolic_shapes.py:2355:9-25: `Expr` is not assignable to `list[Expr]` [bad-assignment] +ERROR torch/fx/experimental/symbolic_shapes.py:2652:9-21: Class member `SymExprPrinter._print_Float` overrides parent class `PythonPrinter` in an inconsistent manner [bad-override] +ERROR torch/fx/experimental/symbolic_shapes.py:2940:64-2945:10: `set[type[Application] | type[FloorDiv] | type[Mod] | type[PythonMod]]` is not assignable to attribute `_supported_sympy_functions` with type `set[Function]` [bad-assignment] +ERROR torch/fx/experimental/symbolic_shapes.py:3029:16-20: Returned type `_SympyT | Unknown` is not assignable to declared return type `_SympyT` [bad-return] +ERROR torch/fx/experimental/symbolic_shapes.py:3032:18-36: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/symbolic_shapes.py:3032:18-46: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/symbolic_shapes.py:3077:55-56: Cannot index into `defaultdict[Symbol, set[Expr]]` [bad-index] +ERROR torch/fx/experimental/symbolic_shapes.py:3078:50-51: Argument `Basic` is not assignable to parameter `s` with type `Symbol` in function `DimConstraints.rewrite_with_congruences` [bad-argument-type] +ERROR torch/fx/experimental/symbolic_shapes.py:3079:55-56: Cannot index into `defaultdict[Symbol, set[Expr]]` [bad-index] +ERROR torch/fx/experimental/symbolic_shapes.py:3090:51-52: Argument `Basic` is not assignable to parameter `element` with type `Symbol` in function `set.add` [bad-argument-type] +ERROR torch/fx/experimental/symbolic_shapes.py:3091:43-44: Cannot index into `dict[Symbol, set[Boolean]]` [bad-index] +ERROR torch/fx/experimental/symbolic_shapes.py:3134:38-59: Module `sympy.ntheory.modular` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/experimental/symbolic_shapes.py:3452:33-39: Argument `dict[str, Expr | Unknown]` is not assignable to parameter `c` with type `Mapping[str, int]` in function `_check_same_range` [bad-argument-type] +ERROR torch/fx/experimental/symbolic_shapes.py:4016:16-68: Object of class `Expr` has no attribute `node` [missing-attribute] +ERROR torch/fx/experimental/symbolic_shapes.py:4016:25-62: Argument `SymInt` is not assignable to parameter with type `Symbol` [bad-argument-type] +ERROR torch/fx/experimental/symbolic_shapes.py:4029:27-39: No matching overload found for function `typing.MutableMapping.update` called with arguments: (dict[Boolean, BooleanAtom]) [no-matching-overload] +ERROR torch/fx/experimental/symbolic_shapes.py:4038:32-41: No matching overload found for function `dict.pop` called with arguments: (Boolean, None) [no-matching-overload] +ERROR torch/fx/experimental/symbolic_shapes.py:4758:16-22: Returned type `list[Expr | None]` is not assignable to declared return type `list[Expr]` [bad-return] +ERROR torch/fx/experimental/symbolic_shapes.py:5074:50-53: Cannot set item in `dict[Symbol, Integer]` [unsupported-operation] +ERROR torch/fx/experimental/symbolic_shapes.py:5132:47-63: Cannot set item in `dict[Symbol, Integer]` [unsupported-operation] +ERROR torch/fx/experimental/symbolic_shapes.py:5135:47-5137:18: Cannot set item in `dict[Symbol, Integer]` [unsupported-operation] +ERROR torch/fx/experimental/symbolic_shapes.py:6000:61-65: Argument `And` is not assignable to parameter `expr` with type `Expr` in function `ShapeGuardPythonPrinter.doprint` [bad-argument-type] +ERROR torch/fx/experimental/symbolic_shapes.py:6258:49-58: No matching overload found for function `dict.get` called with arguments: (Basic, None) [no-matching-overload] +ERROR torch/fx/experimental/symbolic_shapes.py:6398:33-80: No matching overload found for function `typing.MutableMapping.update` called with arguments: (dict[Boolean, BooleanAtom]) [no-matching-overload] +ERROR torch/fx/experimental/symbolic_shapes.py:6417:17-18: Argument `object` is not assignable to parameter `k` with type `Symbol` in function `_SymbolInfo.__new__` [bad-argument-type] +ERROR torch/fx/experimental/symbolic_shapes.py:6418:31-34: No matching overload found for function `dict.get` called with arguments: (object) [no-matching-overload] +ERROR torch/fx/experimental/symbolic_shapes.py:6419:36-39: No matching overload found for function `dict.get` called with arguments: (object) [no-matching-overload] +ERROR torch/fx/experimental/symbolic_shapes.py:6491:24-38: `%` is not supported between `Basic` and `Basic` [unsupported-operation] +ERROR torch/fx/experimental/symbolic_shapes.py:6567:28-34: No matching overload found for function `max` called with arguments: (Integer, Literal[2]) [no-matching-overload] +ERROR torch/fx/experimental/symbolic_shapes.py:6636:52-53: Cannot index into `dict[Symbol, CapturedTraceback]` [bad-index] +ERROR torch/fx/experimental/symbolic_shapes.py:6795:47-48: Argument `Basic` is not assignable to parameter `symbol` with type `Symbol` in function `ShapeEnv._update_var_to_range` [bad-argument-type] +ERROR torch/fx/experimental/symbolic_shapes.py:7584:50-59: Argument `Basic` is not assignable to parameter `a` with type `SymBool` in function `ShapeEnv._log_suppressed_dde` [bad-argument-type] +ERROR torch/fx/experimental/symbolic_shapes.py:7585:32-46: Returned type `bool` is not assignable to declared return type `Basic` [bad-return] +ERROR torch/fx/experimental/symbolic_shapes.py:7599:43-49: No matching overload found for function `max` called with arguments: (Literal[2], Integer) [no-matching-overload] +ERROR torch/fx/experimental/symbolic_shapes.py:7705:39-86: No matching overload found for function `typing.MutableMapping.update` called with arguments: (dict[Boolean, BooleanAtom]) [no-matching-overload] +ERROR torch/fx/experimental/symbolic_shapes.py:7717:47-48: Cannot index into `Counter[Symbol]` [bad-index] +ERROR torch/fx/experimental/symbolic_shapes.py:7717:47-48: Cannot set item in `Counter[Symbol]` [unsupported-operation] +ERROR torch/fx/experimental/symbolic_shapes.py:7722:55-56: Cannot index into `Counter[Symbol]` [bad-index] +ERROR torch/fx/experimental/symbolic_shapes.py:7783:20-65: Returned type `Basic` is not assignable to declared return type `bool` [bad-return] +ERROR torch/fx/experimental/symbolic_shapes.py:7821:53-61: No matching overload found for function `typing.MutableMapping.setdefault` called with arguments: (Basic | None, list[@_]) [no-matching-overload] +ERROR torch/fx/experimental/symbolic_shapes.py:7822:31-81: No matching overload found for function `typing.MutableMapping.update` called with arguments: (dict[Boolean, BooleanAtom]) [no-matching-overload] +ERROR torch/fx/experimental/symbolic_shapes.py:7855:34-51: Object of class `Symbol` has no attribute `is_integer` [missing-attribute] +ERROR torch/fx/experimental/symbolic_shapes.py:7855:56-71: Object of class `Expr` has no attribute `is_integer` [missing-attribute] +ERROR torch/fx/experimental/symbolic_shapes.py:7976:9-22: Class member `_PythonMsgPrinter._print_Symbol` overrides parent class `PythonPrinter` in an inconsistent manner [bad-param-name-override] +ERROR torch/fx/experimental/symbolic_shapes.py:7999:21-81: No matching overload found for function `str.join` called with arguments: (Generator[object, None, None]) [no-matching-overload] +ERROR torch/fx/experimental/symbolic_shapes.py:7999:59-65: Object of class `Basic` has no attribute `name` [missing-attribute] +ERROR torch/fx/experimental/symbolic_shapes.py:8020:25-31: Object of class `Basic` has no attribute `name` [missing-attribute] +ERROR torch/fx/experimental/validator.py:387:47-58: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/validator.py:389:25-36: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/validator.py:391:25-37: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/validator.py:393:25-35: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/validator.py:397:51-62: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/validator.py:398:25-38: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/validator.py:402:55-66: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/validator.py:405:55-66: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/validator.py:435:54-65: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/fx/experimental/validator.py:438:55-66: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/fx/graph.py:23:22-44: Could not import `_fx_map_arg` from `torch._C` [missing-module-attribute] +ERROR torch/fx/graph.py:23:46-55: Could not import `_NodeIter` from `torch._C` [missing-module-attribute] +ERROR torch/fx/graph.py:89:64-76: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/fx/graph.py:476:48-60: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/fx/graph.py:684:21-37: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/fx/graph.py:685:21-37: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/fx/graph.py:964:9-24: Class member `_PyTreeCodeGen.process_outputs` overrides parent class `CodeGen` in an inconsistent manner [bad-param-name-override] +ERROR torch/fx/graph.py:1328:46-66: Object of class `object` has no attribute `meta` [missing-attribute] +ERROR torch/fx/graph.py:2072:12-25: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/graph.py:2073:29-51: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/interpreter.py:573:17-31: Class member `TransformerTracer.is_leaf_module` overrides parent class `Tracer` in an inconsistent manner [bad-param-name-override] +ERROR torch/fx/node.py:12:22-39: Could not import `_fx_map_aggregate` from `torch._C` [missing-module-attribute] +ERROR torch/fx/node.py:12:41-52: Could not import `_fx_map_arg` from `torch._C` [missing-module-attribute] +ERROR torch/fx/node.py:12:54-63: Could not import `_NodeBase` from `torch._C` [missing-module-attribute] +ERROR torch/fx/node.py:37:5-16: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/fx/node.py:39:5-17: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/fx/node.py:40:5-24: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/fx/node.py:41:5-17: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/fx/node.py:83:5-31: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/fx/node.py:92:5-24: No attribute `_assert_async` in module `torch` [missing-attribute] +ERROR torch/fx/node.py:328:9-33: Object of class `Node` has no attribute `_update_args_kwargs` [missing-attribute] +ERROR torch/fx/node.py:341:24-36: Object of class `Node` has no attribute `_erased` [missing-attribute] +ERROR torch/fx/node.py:342:22-32: Object of class `Node` has no attribute `_prev` [missing-attribute] +ERROR torch/fx/node.py:343:22-32: Object of class `Node` has no attribute `_next` [missing-attribute] +ERROR torch/fx/node.py:363:16-26: Object of class `Node` has no attribute `_next` [missing-attribute] +ERROR torch/fx/node.py:374:16-26: Object of class `Node` has no attribute `_prev` [missing-attribute] +ERROR torch/fx/node.py:425:9-33: Object of class `Node` has no attribute `_update_args_kwargs` [missing-attribute] +ERROR torch/fx/node.py:448:9-33: Object of class `Node` has no attribute `_update_args_kwargs` [missing-attribute] +ERROR torch/fx/node.py:640:21-37: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/fx/node.py:641:21-37: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/fx/node.py:738:17-27: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/fx/node.py:739:17-28: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/fx/node.py:740:17-30: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/fx/node.py:741:17-31: No attribute `randperm` in module `torch` [missing-attribute] +ERROR torch/fx/node.py:742:17-32: No attribute `rand_like` in module `torch` [missing-attribute] +ERROR torch/fx/node.py:743:17-33: No attribute `randn_like` in module `torch` [missing-attribute] +ERROR torch/fx/node.py:744:17-35: No attribute `randint_like` in module `torch` [missing-attribute] +ERROR torch/fx/node.py:745:17-29: No attribute `normal` in module `torch` [missing-attribute] +ERROR torch/fx/node.py:746:17-30: No attribute `poisson` in module `torch` [missing-attribute] +ERROR torch/fx/node.py:747:17-32: No attribute `bernoulli` in module `torch` [missing-attribute] +ERROR torch/fx/node.py:748:17-34: No attribute `multinomial` in module `torch` [missing-attribute] +ERROR torch/fx/operator_schemas.py:61:19-32: No attribute `nonzero` in module `torch` [missing-attribute] +ERROR torch/fx/operator_schemas.py:73:15-27: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/fx/operator_schemas.py:74:15-27: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/fx/operator_schemas.py:78:16-29: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/fx/operator_schemas.py:89:48-64: No attribute `JitType` in module `torch._C` [missing-attribute] +ERROR torch/fx/operator_schemas.py:99:16-39: No attribute `FunctionSchema` in module `torch._C` [missing-attribute] +ERROR torch/fx/operator_schemas.py:155:16-39: No attribute `FunctionSchema` in module `torch._C` [missing-attribute] +ERROR torch/fx/operator_schemas.py:233:19-38: Module `torch.jit._builtins` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/operator_schemas.py:237:19-57: No attribute `_jit_get_schemas_for_operator` in module `torch._C` [missing-attribute] +ERROR torch/fx/operator_schemas.py:328:51-62: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/fx/passes/_tensorify_python_scalars.py:94:2-25: Module `torch.fx._compatibility` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/passes/_tensorify_python_scalars.py:157:25-35: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/fx/passes/_tensorify_python_scalars.py:160:25-36: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/fx/passes/_tensorify_python_scalars.py:163:25-38: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/fx/passes/_tensorify_python_scalars.py:296:46-56: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/fx/passes/dialect/common/cse_pass.py:45:2-25: Module `torch.fx._compatibility` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/passes/dialect/common/cse_pass.py:50:2-25: Module `torch.fx._compatibility` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/passes/graph_drawer.py:18:12-17: Could not find import of `pydot` [missing-import] +ERROR torch/fx/passes/graph_drawer.py:349:21-44: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/fx/passes/graph_drawer.py:350:21-47: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/fx/passes/graph_drawer.py:361:21-45: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/fx/passes/graph_drawer.py:362:21-48: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/fx/passes/graph_drawer.py:363:21-59: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/fx/passes/graph_manipulation.py:106:31-60: No attribute `_empty_affine_quantized` in module `torch` [missing-attribute] +ERROR torch/fx/passes/graph_manipulation.py:110:31-43: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/fx/passes/operator_support.py:28:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/fx/passes/operator_support.py:29:30-41: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/fx/passes/operator_support.py:191:44-55: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/fx/passes/regional_inductor.py:178:10-28: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/fx/passes/reinplace.py:64:9-17: Class member `_FunctionalizationMetadataProp.run_node` overrides parent class `Interpreter` in an inconsistent manner [bad-param-name-override] +ERROR torch/fx/passes/reinplace.py:546:67-83: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/fx/passes/reinplace.py:567:24-57: No attribute `_debug_has_internal_overlap` in module `torch` [missing-attribute] +ERROR torch/fx/passes/runtime_assert.py:149:72-82: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/fx/passes/shape_prop.py:25:12-22: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/fx/passes/shape_prop.py:26:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/fx/passes/shape_prop.py:29:29-48: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/fx/passes/shape_prop.py:55:13-36: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/fx/passes/shape_prop.py:56:13-32: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/fx/passes/shape_prop.py:57:13-35: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/fx/passes/shape_prop.py:71:24-47: No attribute `per_tensor_affine` in module `torch` [missing-attribute] +ERROR torch/fx/passes/shape_prop.py:71:49-75: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute] +ERROR torch/fx/passes/shape_prop.py:75:13-37: No attribute `per_channel_affine` in module `torch` [missing-attribute] +ERROR torch/fx/passes/shape_prop.py:76:13-51: No attribute `per_channel_affine_float_qparams` in module `torch` [missing-attribute] +ERROR torch/fx/passes/shape_prop.py:77:13-40: No attribute `per_channel_symmetric` in module `torch` [missing-attribute] +ERROR torch/fx/passes/split_module.py:285:9-35: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/fx/passes/split_module.py:329:31-57: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute] +ERROR torch/fx/passes/split_module.py:422:28-38: Cannot index into `set[int]` [bad-index] +ERROR torch/fx/passes/split_module.py:424:22-33: Cannot index into `set[int]` [bad-index] +ERROR torch/fx/passes/split_module.py:524:22-34: Cannot index into `set[int]` [bad-index] +ERROR torch/fx/proxy.py:19:22-56: Could not import `_fx_map_aggregate` from `torch._C` [missing-module-attribute] +ERROR torch/fx/proxy.py:19:58-80: Could not import `_fx_map_arg` from `torch._C` [missing-module-attribute] +ERROR torch/fx/proxy.py:173:41-47: Argument `((...) -> Any) | str` is not assignable to parameter `target` with type `(...) -> Unknown` in function `torch.fx.operator_schemas.check_for_mutable_operation` [bad-argument-type] +ERROR torch/fx/proxy.py:296:55-59: Default `None` is not assignable to parameter `proxy_factory_fn` with type `(Node) -> Proxy` [bad-function-definition] +ERROR torch/fx/proxy.py:313:47-52: Argument `tuple[*Sequence[Unknown]]` is not assignable to parameter `args` with type `tuple[Mapping[str, Unknown] | Node | OpOverload[Ellipsis, Any] | Sequence[Unknown] | SymBool | SymFloat | SymInt | Tensor | bool | complex | float | int | range | slice[Any, Any, Any] | str | tuple[Unknown, ...] | Unknown | None, ...]` in function `TracerBase.create_node` [bad-argument-type] +ERROR torch/fx/proxy.py:407:25-411:14: No matching overload found for function `range.__new__` called with arguments: (type[range], Mapping[str, Unknown] | Node | OpOverload[Ellipsis, Any] | Sequence[Unknown] | SymBool | SymFloat | SymInt | Tensor | bool | complex | float | int | range | slice[Any, Any, Any] | str | tuple[Unknown, ...] | Unknown | None, Mapping[str, Unknown] | Node | OpOverload[Ellipsis, Any] | Sequence[Unknown] | SymBool | SymFloat | SymInt | Tensor | bool | complex | float | int | range | slice[Any, Any, Any] | str | tuple[Unknown, ...] | Unknown | None, Mapping[str, Unknown] | Node | OpOverload[Ellipsis, Any] | Sequence[Unknown] | SymBool | SymFloat | SymInt | Tensor | bool | complex | float | int | range | slice[Any, Any, Any] | str | tuple[Unknown, ...] | Unknown | None) [no-matching-overload] +ERROR torch/fx/proxy.py:560:16-25: Returned type `Proxy` is not assignable to declared return type `dict[Unknown, Unknown]` [bad-return] +ERROR torch/fx/proxy.py:658:36-57: No attribute `ScriptMethod` in module `torch._C` [missing-attribute] +ERROR torch/fx/proxy.py:709:14-34: Cannot use `None` as a context manager [bad-context-manager] +ERROR torch/fx/proxy.py:709:14-34: Cannot use `None` as a context manager [bad-context-manager] +ERROR torch/fx/proxy.py:727:9-13: Class member `Attribute.node` overrides parent class `Proxy` in an inconsistent manner [bad-override] + WARN torch/hub.py:885:16-32: `_legacy_zip_load` is deprecated [deprecated] +ERROR torch/jit/__init__.py:117:12-36: No attribute `_export_opnames` in module `torch._C` [missing-attribute] +ERROR torch/jit/__init__.py:121:9-30: No attribute `JITException` in module `torch._C` [missing-attribute] +ERROR torch/jit/__init__.py:259:16-35: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/__init__.py:284:5-35: No attribute `_jit_set_llga_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/__init__.py:289:12-38: No attribute `_jit_llga_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/__init__.py:294:8-26: No attribute `_jit_init` in module `torch._C` [missing-attribute] +ERROR torch/jit/_async.py:99:12-25: No attribute `fork` in module `torch._C` [missing-attribute] +ERROR torch/jit/_async.py:112:12-25: No attribute `wait` in module `torch._C` [missing-attribute] +ERROR torch/jit/_await.py:13:12-31: No attribute `_awaitable` in module `torch._C` [missing-attribute] +ERROR torch/jit/_await.py:18:12-36: No attribute `_awaitable_wait` in module `torch._C` [missing-attribute] +ERROR torch/jit/_await.py:23:12-38: No attribute `_awaitable_nowait` in module `torch._C` [missing-attribute] +ERROR torch/jit/_builtins.py:23:5-17: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/jit/_builtins.py:104:6-26: No attribute `_infer_size` in module `torch._C` [missing-attribute] +ERROR torch/jit/_builtins.py:114:6-33: No attribute `_get_tracing_state` in module `torch._C` [missing-attribute] +ERROR torch/jit/_builtins.py:115:6-34: No attribute `_get_cpu_capability` in module `torch._C` [missing-attribute] +ERROR torch/jit/_builtins.py:121:6-26: No attribute `unique_dim` in module `torch._VF` [missing-attribute] +ERROR torch/jit/_builtins.py:123:6-28: No attribute `nuclear_norm` in module `torch._VF` [missing-attribute] +ERROR torch/jit/_builtins.py:124:6-30: No attribute `frobenius_norm` in module `torch._VF` [missing-attribute] +ERROR torch/jit/_decomposition_utils.py:6:52-66: No attribute `Graph` in module `torch._C` [missing-attribute] +ERROR torch/jit/_decomposition_utils.py:12:5-52: No attribute `_jit_register_decomposition_for_schema` in module `torch._C` [missing-attribute] +ERROR torch/jit/_decompositions.py:87:9-34: No attribute `_jit_pass_inline` in module `torch._C` [missing-attribute] +ERROR torch/jit/_decompositions.py:90:13-40: No attribute `_jit_pass_peephole` in module `torch._C` [missing-attribute] +ERROR torch/jit/_decompositions.py:91:13-52: No attribute `_jit_pass_constant_propagation` in module `torch._C` [missing-attribute] +ERROR torch/jit/_freeze.py:117:33-56: No attribute `_freeze_module` in module `torch._C` [missing-attribute] +ERROR torch/jit/_freeze.py:174:9-49: No attribute `_jit_pass_optimize_frozen_graph` in module `torch._C` [missing-attribute] +ERROR torch/jit/_freeze.py:180:9-49: No attribute `_jit_pass_optimize_frozen_graph` in module `torch._C` [missing-attribute] +ERROR torch/jit/_freeze.py:232:5-46: No attribute `_jit_pass_optimize_for_inference` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:10:19-56: No attribute `_get_graph_executor_optimize` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:11:5-42: No attribute `_set_graph_executor_optimize` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:15:9-46: No attribute `_set_graph_executor_optimize` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:28:20-49: No attribute `_jit_can_fuse_on_cpu` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:29:20-49: No attribute `_jit_can_fuse_on_gpu` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:30:29-62: No attribute `_jit_texpr_fuser_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:31:25-54: No attribute `_jit_nvfuser_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:32:22-48: No attribute `_jit_llga_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:34:9-47: No attribute `_jit_override_can_fuse_on_cpu` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:35:9-47: No attribute `_jit_override_can_fuse_on_gpu` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:36:9-46: No attribute `_jit_set_texpr_fuser_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:37:9-42: No attribute `_jit_set_nvfuser_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:38:9-39: No attribute `_jit_set_llga_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:40:34-70: No attribute `_jit_set_profiling_executor` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:41:30-67: No attribute `_get_graph_executor_optimize` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:42:9-47: No attribute `_jit_override_can_fuse_on_cpu` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:43:9-47: No attribute `_jit_override_can_fuse_on_gpu` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:44:9-46: No attribute `_jit_set_texpr_fuser_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:45:9-42: No attribute `_jit_set_nvfuser_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:46:9-39: No attribute `_jit_set_llga_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:48:9-47: No attribute `_jit_override_can_fuse_on_cpu` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:49:9-47: No attribute `_jit_override_can_fuse_on_gpu` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:50:9-46: No attribute `_jit_set_texpr_fuser_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:51:9-42: No attribute `_jit_set_nvfuser_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:52:9-39: No attribute `_jit_set_llga_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:54:34-70: No attribute `_jit_set_profiling_executor` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:55:30-67: No attribute `_get_graph_executor_optimize` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:56:9-47: No attribute `_jit_override_can_fuse_on_cpu` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:57:9-47: No attribute `_jit_override_can_fuse_on_gpu` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:58:9-46: No attribute `_jit_set_texpr_fuser_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:59:9-42: No attribute `_jit_set_nvfuser_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:60:9-39: No attribute `_jit_set_llga_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:62:9-47: No attribute `_jit_override_can_fuse_on_cpu` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:63:9-47: No attribute `_jit_override_can_fuse_on_gpu` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:64:9-46: No attribute `_jit_set_texpr_fuser_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:65:9-42: No attribute `_jit_set_nvfuser_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:66:9-39: No attribute `_jit_set_llga_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:76:9-47: No attribute `_jit_override_can_fuse_on_cpu` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:77:9-47: No attribute `_jit_override_can_fuse_on_gpu` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:78:9-46: No attribute `_jit_set_texpr_fuser_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:79:9-42: No attribute `_jit_set_nvfuser_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:80:9-39: No attribute `_jit_set_llga_enabled` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:83:33-72: No attribute `_last_executed_optimized_graph` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:108:26-39: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/jit/_fuser.py:160:12-45: No attribute `_jit_set_fusion_strategy` in module `torch._C` [missing-attribute] +ERROR torch/jit/_ir_utils.py:10:29-43: No attribute `Graph` in module `torch._C` [missing-attribute] +ERROR torch/jit/_ir_utils.py:11:29-42: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/jit/_ir_utils.py:11:44-58: No attribute `Block` in module `torch._C` [missing-attribute] +ERROR torch/jit/_ir_utils.py:31:11-25: No attribute `Graph` in module `torch._C` [missing-attribute] +ERROR torch/jit/_ir_utils.py:31:47-60: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/jit/_ir_utils.py:31:62-76: No attribute `Block` in module `torch._C` [missing-attribute] +ERROR torch/jit/_logging.py:6:14-42: No attribute `_logging_set_logger` in module `torch._C` [missing-attribute] +ERROR torch/jit/_logging.py:7:17-39: No attribute `LockingLogger` in module `torch._C` [missing-attribute] +ERROR torch/jit/_logging.py:8:19-43: No attribute `AggregationType` in module `torch._C` [missing-attribute] +ERROR torch/jit/_logging.py:9:14-33: No attribute `NoopLogger` in module `torch._C` [missing-attribute] +ERROR torch/jit/_monkeytype_config.py:19:5-53: Could not find import of `monkeytype` [missing-import] +ERROR torch/jit/_passes/_property_propagation.py:11:19-29: Could not import `TensorType` from `torch` [missing-module-attribute] +ERROR torch/jit/_passes/_property_propagation.py:12:22-27: Could not import `Graph` from `torch._C` [missing-module-attribute] +ERROR torch/jit/_passes/_property_propagation.py:26:32-50: No attribute `ClassType` in module `torch._C` [missing-attribute] +ERROR torch/jit/_recursive.py:58:20-38: Module `torch.jit.frontend` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_recursive.py:59:24-58: No attribute `_jit_script_class_compile` in module `torch._C` [missing-attribute] +ERROR torch/jit/_recursive.py:128:5-17: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/jit/_recursive.py:129:5-17: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/jit/_recursive.py:130:5-16: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/jit/_recursive.py:131:5-18: No attribute `qscheme` in module `torch` [missing-attribute] +ERROR torch/jit/_recursive.py:154:21-45: Module `torch._C._jit_tree_views` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_recursive.py:189:29-63: No attribute `ConcreteModuleTypeBuilder` in module `torch._C` [missing-attribute] +ERROR torch/jit/_recursive.py:224:31-52: Module `torch.jit.annotations` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_recursive.py:227:29-50: No attribute `InferredType` in module `torch._C` [missing-attribute] +ERROR torch/jit/_recursive.py:229:31-52: Module `torch.jit.annotations` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_recursive.py:230:29-50: No attribute `InferredType` in module `torch._C` [missing-attribute] +ERROR torch/jit/_recursive.py:232:29-57: No attribute `_jit_try_infer_type` in module `torch._C` [missing-attribute] +ERROR torch/jit/_recursive.py:277:33-60: No attribute `ConcreteModuleType` in module `torch._C` [missing-attribute] +ERROR torch/jit/_recursive.py:292:12-31: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_recursive.py:364:27-55: No attribute `_jit_try_infer_type` in module `torch._C` [missing-attribute] +ERROR torch/jit/_recursive.py:389:23-51: No attribute `_jit_try_infer_type` in module `torch._C` [missing-attribute] +ERROR torch/jit/_recursive.py:423:41-68: No attribute `ConcreteModuleType` in module `torch._C` [missing-attribute] +ERROR torch/jit/_recursive.py:424:27-54: No attribute `ConcreteModuleType` in module `torch._C` [missing-attribute] +ERROR torch/jit/_recursive.py:526:18-51: No attribute `_create_object_with_type` in module `torch._C` [missing-attribute] +ERROR torch/jit/_recursive.py:568:18-51: No attribute `_create_module_with_type` in module `torch._C` [missing-attribute] +ERROR torch/jit/_recursive.py:594:40-62: No attribute `InterfaceType` in module `torch._C` [missing-attribute] +ERROR torch/jit/_recursive.py:635:9-39: No attribute `_run_emit_module_hook` in module `torch._C` [missing-attribute] +ERROR torch/jit/_recursive.py:781:17-38: Module `torch.jit.annotations` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_recursive.py:802:23-63: No attribute `_replace_overloaded_method_decl` in module `torch._C` [missing-attribute] +ERROR torch/jit/_recursive.py:1006:33-52: No attribute `ModuleDict` in module `torch._C` [missing-attribute] +ERROR torch/jit/_recursive.py:1008:40-67: No attribute `ConcreteModuleType` in module `torch._C` [missing-attribute] +ERROR torch/jit/_recursive.py:1024:10-29: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_recursive.py:1061:5-24: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_script.py:64:18-41: No attribute `ScriptFunction` in module `torch._C` [missing-attribute] +ERROR torch/jit/_script.py:236:26-45: No attribute `ModuleDict` in module `torch._C` [missing-attribute] +ERROR torch/jit/_script.py:325:21-41: Module `torch.jit._recursive` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_script.py:401:44-70: No attribute `PyTorchFileReader` in module `torch._C` [missing-attribute] +ERROR torch/jit/_script.py:406:10-34: No attribute `CompilationUnit` in module `torch._C` [missing-attribute] +ERROR torch/jit/_script.py:407:18-57: No attribute `_import_ir_module_from_package` in module `torch._C` [missing-attribute] +ERROR torch/jit/_script.py:548:13-24: Class member `ScriptModule.__getattr__` overrides parent class `Module` in an inconsistent manner [bad-param-name-override] +ERROR torch/jit/_script.py:553:13-24: Class member `ScriptModule.__setattr__` overrides parent class `Module` in an inconsistent manner [bad-param-name-override] +ERROR torch/jit/_script.py:593:19-45: No attribute `_parse_source_def` in module `torch._C` [missing-attribute] +ERROR torch/jit/_script.py:679:17-39: No attribute `ParameterDict` in module `torch._C` [missing-attribute] +ERROR torch/jit/_script.py:682:17-36: No attribute `BufferDict` in module `torch._C` [missing-attribute] +ERROR torch/jit/_script.py:699:35-62: No attribute `ConcreteModuleType` in module `torch._C` [missing-attribute] +ERROR torch/jit/_script.py:705:37-56: No attribute `ModuleDict` in module `torch._C` [missing-attribute] +ERROR torch/jit/_script.py:717:38-59: No attribute `ScriptMethod` in module `torch._C` [missing-attribute] +ERROR torch/jit/_script.py:889:20-40: Module `torch.jit._recursive` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_script.py:892:20-40: Module `torch.jit._recursive` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_script.py:1188:16-36: Module `torch.jit._recursive` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_script.py:1189:18-38: Module `torch.jit._recursive` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_script.py:1250:14-42: No attribute `_jit_script_compile` in module `torch._C` [missing-attribute] +ERROR torch/jit/_script.py:1262:16-36: Module `torch.jit._recursive` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_script.py:1513:19-37: Module `torch.jit.frontend` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_script.py:1523:26-47: Module `torch.jit.annotations` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_script.py:1533:10-47: No attribute `_jit_script_compile_overload` in module `torch._C` [missing-attribute] +ERROR torch/jit/_script.py:1652:25-63: No attribute `_jit_script_interface_compile` in module `torch._C` [missing-attribute] +ERROR torch/jit/_script.py:1663:19-37: No attribute `CallStack` in module `torch._C` [missing-attribute] +ERROR torch/jit/_script.py:1668:19-43: No attribute `CompilationUnit` in module `torch._C` [missing-attribute] +ERROR torch/jit/_script.pyi:53:18-41: No attribute `ScriptFunction` in module `torch._C` [missing-attribute] +ERROR torch/jit/_script.pyi:129:9-20: Class member `ScriptModule.__getattr__` overrides parent class `Module` in an inconsistent manner [bad-param-name-override] +ERROR torch/jit/_script.pyi:130:9-20: Class member `ScriptModule.__setattr__` overrides parent class `Module` in an inconsistent manner [bad-param-name-override] +ERROR torch/jit/_script.pyi:140:24-35: No attribute `Graph` in module `torch` [missing-attribute] +ERROR torch/jit/_script.pyi:142:32-43: No attribute `Graph` in module `torch` [missing-attribute] +ERROR torch/jit/_script.pyi:205:6-22: No attribute `ScriptDict` in module `torch` [missing-attribute] +ERROR torch/jit/_script.pyi:213:6-22: No attribute `ScriptList` in module `torch` [missing-attribute] +ERROR torch/jit/_serialization.py:190:10-34: No attribute `CompilationUnit` in module `torch._C` [missing-attribute] +ERROR torch/jit/_serialization.py:192:22-47: No attribute `import_ir_module` in module `torch._C` [missing-attribute] +ERROR torch/jit/_serialization.py:201:22-59: No attribute `import_ir_module_from_buffer` in module `torch._C` [missing-attribute] +ERROR torch/jit/_serialization.py:219:24-36: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/jit/_serialization.py:220:64-76: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/jit/_serialization.py:235:32-67: No attribute `_load_jit_module_from_file` in module `torch._C` [missing-attribute] +ERROR torch/jit/_serialization.py:237:32-68: No attribute `_load_jit_module_from_bytes` in module `torch._C` [missing-attribute] +ERROR torch/jit/_serialization.py:284:9-34: No attribute `_save_jit_module` in module `torch._C` [missing-attribute] +ERROR torch/jit/_serialization.py:286:13-47: No attribute `_save_jit_module_to_bytes` in module `torch._C` [missing-attribute] +ERROR torch/jit/_serialization.py:315:12-53: No attribute `_get_module_info_from_flatbuffer` in module `torch._C` [missing-attribute] +ERROR torch/jit/_shape_functions.py:1190:12-35: No attribute `ScriptFunction` in module `torch._C` [missing-attribute] +ERROR torch/jit/_shape_functions.py:1200:9-34: No attribute `_jit_pass_inline` in module `torch._C` [missing-attribute] +ERROR torch/jit/_shape_functions.py:1203:13-40: No attribute `_jit_pass_peephole` in module `torch._C` [missing-attribute] +ERROR torch/jit/_shape_functions.py:1204:13-52: No attribute `_jit_pass_constant_propagation` in module `torch._C` [missing-attribute] +ERROR torch/jit/_state.py:62:14-38: No attribute `CompilationUnit` in module `torch._C` [missing-attribute] +ERROR torch/jit/_trace.py:39:12-33: No attribute `_jit_flatten` in module `torch._C` [missing-attribute] +ERROR torch/jit/_trace.py:40:14-37: No attribute `_jit_unflatten` in module `torch._C` [missing-attribute] +ERROR torch/jit/_trace.py:127:49-70: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/jit/_trace.py:140:23-56: No attribute `_create_graph_by_tracing` in module `torch._C` [missing-attribute] +ERROR torch/jit/_trace.py:164:63-84: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/jit/_trace.py:171:42-63: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/jit/_trace.py:202:33-42: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/jit/_trace.py:263:23-32: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/jit/_trace.py:270:44-65: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/jit/_trace.py:276:44-65: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/jit/_trace.py:350:35-59: No attribute `CompilationUnit` in module `torch._C` [missing-attribute] +ERROR torch/jit/_trace.py:386:33-64: No attribute `_jit_pass_canonicalize` in module `torch._C` [missing-attribute] +ERROR torch/jit/_trace.py:387:13-38: No attribute `_jit_pass_inline` in module `torch._C` [missing-attribute] +ERROR torch/jit/_trace.py:388:13-55: No attribute `_jit_pass_erase_shape_information` in module `torch._C` [missing-attribute] +ERROR torch/jit/_trace.py:391:35-66: No attribute `_jit_pass_canonicalize` in module `torch._C` [missing-attribute] +ERROR torch/jit/_trace.py:392:13-38: No attribute `_jit_pass_inline` in module `torch._C` [missing-attribute] +ERROR torch/jit/_trace.py:393:13-55: No attribute `_jit_pass_erase_shape_information` in module `torch._C` [missing-attribute] +ERROR torch/jit/_trace.py:530:37-50: No attribute `cdouble` in module `torch` [missing-attribute] +ERROR torch/jit/_trace.py:531:36-49: No attribute `cdouble` in module `torch` [missing-attribute] +ERROR torch/jit/_trace.py:610:1-33: No attribute `_tracer_warn_use_python` in module `torch._C` [missing-attribute] +ERROR torch/jit/_trace.py:625:10-29: Module `torch._jit_internal` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_trace.py:626:34-54: Module `torch.jit._recursive` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_trace.py:627:16-36: Module `torch.jit._recursive` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/_trace.py:664:20-34: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/jit/_trace.py:760:18-64: No attribute `_create_function_from_trace_with_dict` in module `torch._C` [missing-attribute] +ERROR torch/jit/_trace.py:770:18-54: No attribute `_create_function_from_trace` in module `torch._C` [missing-attribute] +ERROR torch/jit/_trace.py:1263:12-32: No attribute `_is_tracing` in module `torch._C` [missing-attribute] +ERROR torch/jit/_trace.py:1310:17-47: No attribute `_jit_is_script_object` in module `torch._C` [missing-attribute] +ERROR torch/jit/_trace.py:1329:25-45: Module `torch.jit._recursive` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/frontend.py:156:29-49: No attribute `ErrorReport` in module `torch._C` [missing-attribute] +ERROR torch/jit/frontend.py:272:14-34: No attribute `ErrorReport` in module `torch._C` [missing-attribute] +ERROR torch/jit/frontend.py:435:29-56: No attribute `parse_type_comment` in module `torch._C` [missing-attribute] +ERROR torch/jit/frontend.py:436:16-53: No attribute `merge_type_from_type_comment` in module `torch._C` [missing-attribute] +ERROR torch/jit/generate_bytecode.py:3:22-50: Could not import `_compile_graph_to_code_table` from `torch._C` [missing-module-attribute] +ERROR torch/jit/generate_bytecode.py:3:52-77: Could not import `_generate_upgraders_graph` from `torch._C` [missing-module-attribute] +ERROR torch/jit/mobile/__init__.py:47:22-57: No attribute `_load_for_lite_interpreter` in module `torch._C` [missing-attribute] +ERROR torch/jit/mobile/__init__.py:49:22-69: No attribute `_load_for_lite_interpreter_from_buffer` in module `torch._C` [missing-attribute] +ERROR torch/jit/mobile/__init__.py:78:12-42: No attribute `_export_operator_list` in module `torch._C` [missing-attribute] +ERROR torch/jit/mobile/__init__.py:108:16-52: No attribute `_get_model_bytecode_version` in module `torch._C` [missing-attribute] +ERROR torch/jit/mobile/__init__.py:141:16-58: No attribute `_get_mobile_model_contained_types` in module `torch._C` [missing-attribute] +ERROR torch/jit/mobile/__init__.py:167:16-45: No attribute `_backport_for_mobile` in module `torch._C` [missing-attribute] +ERROR torch/jit/mobile/__init__.py:173:16-57: No attribute `_backport_for_mobile_from_buffer` in module `torch._C` [missing-attribute] +ERROR torch/jit/mobile/__init__.py:196:16-55: No attribute `_backport_for_mobile_to_buffer` in module `torch._C` [missing-attribute] +ERROR torch/jit/mobile/__init__.py:198:16-67: No attribute `_backport_for_mobile_from_buffer_to_buffer` in module `torch._C` [missing-attribute] +ERROR torch/jit/mobile/__init__.py:241:16-48: No attribute `_get_model_ops_and_info` in module `torch._C` [missing-attribute] +ERROR torch/jit/quantized.py:59:37-47: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/jit/quantized.py:89:43-53: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/jit/quantized.py:96:40-50: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/jit/supported_ops.py:66:38-57: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/jit/supported_ops.py:74:23-61: No attribute `_jit_get_schemas_for_operator` in module `torch._C` [missing-attribute] +ERROR torch/jit/supported_ops.py:112:16-35: Module `torch.jit._builtins` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/supported_ops.py:117:27-65: No attribute `_jit_get_schemas_for_operator` in module `torch._C` [missing-attribute] +ERROR torch/jit/supported_ops.py:127:30-49: Module `torch.jit._builtins` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/jit/supported_ops.py:166:23-61: No attribute `_jit_get_schemas_for_operator` in module `torch._C` [missing-attribute] +ERROR torch/jit/supported_ops.py:184:23-61: No attribute `_jit_get_schemas_for_operator` in module `torch._C` [missing-attribute] +ERROR torch/jit/supported_ops.py:274:19-57: No attribute `_jit_get_schemas_for_operator` in module `torch._C` [missing-attribute] +ERROR torch/jit/unsupported_tensor_ops.py:14:14-26: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/library.py:101:33-59: No attribute `_dispatch_library` in module `torch._C` [missing-attribute] +ERROR torch/library.py:155:29-38: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/library.py:247:16-36: No attribute `DispatchKeySet` in module `torch` [missing-attribute] +ERROR torch/library.py:247:55-75: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/library.py:346:16-62: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/library.py:718:27-55: No attribute `_parse_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/library.py:764:12-45: No attribute `_dispatch_key_for_device` in module `torch._C` [missing-attribute] +ERROR torch/library.py:782:36-61: Module `torch._library.custom_ops` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/library.py:837:42-67: Module `torch._library.custom_ops` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/library.py:897:42-67: Module `torch._library.custom_ops` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/library.py:928:35-55: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/library.py:929:35-55: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/library.py:932:27-50: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/library.py:933:13-33: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/library.py:934:13-36: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute] +ERROR torch/library.py:934:37-57: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/library.py:935:14-47: No attribute `_ExcludeDispatchKeyGuard` in module `torch._C` [missing-attribute] +ERROR torch/library.py:1051:42-67: Module `torch._library.custom_ops` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/library.py:1101:42-67: Module `torch._library.custom_ops` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/library.py:1215:42-67: Module `torch._library.custom_ops` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/library.py:1306:42-67: Module `torch._library.custom_ops` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/library.py:1420:42-67: Module `torch._library.custom_ops` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/library.py:1480:24-49: No attribute `_dispatch_pystub` in module `torch._C` [missing-attribute] +ERROR torch/library.py:1528:50-67: No attribute `DispatchKey` in module `torch` [missing-attribute] +ERROR torch/library.py:1529:6-34: No attribute `_SafeKernelFunction` in module `torch._C` [missing-attribute] +ERROR torch/library.py:1594:28-48: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/library.py:1598:12-67: No attribute `_dispatch_get_computed_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/masked/_ops.py:295:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:296:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:300:48-61: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:305:48-61: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:335:48-61: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:359:32-44: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:359:54-65: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:362:32-44: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:362:54-65: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:365:32-44: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:365:54-67: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:371:36-48: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:371:58-71: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:424:16-28: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:426:16-28: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:428:12-35: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:429:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:430:14-29: No attribute `is_signed` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:430:49-60: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:431:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:431:33-44: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:433:12-35: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:434:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:435:14-30: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:436:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:437:14-29: No attribute `is_signed` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:437:49-60: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:438:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:438:33-44: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:440:12-35: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:441:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:442:14-29: No attribute `is_signed` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:442:49-60: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:443:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:443:33-44: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:454:20-43: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:455:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:456:16-28: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:460:32-55: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:460:68-79: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:461:16-28: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:535:28-44: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:561:25-34: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:562:23-34: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:565:25-34: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:586:30-41: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:604:18-41: No attribute `sparse_coo_tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:609:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:610:20-29: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:616:14-37: No attribute `sparse_coo_tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:705:24-36: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:720:29-43: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:720:45-58: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:721:40-51: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:733:12-35: No attribute `sparse_coo_tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:780:32-44: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:792:32-41: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:795:21-33: No attribute `cumsum` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:795:34-44: No attribute `diff` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:813:26-37: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:815:28-40: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:818:12-35: No attribute `sparse_csr_tensor` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:860:23-36: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:861:16-27: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:862:25-41: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:864:25-41: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:905:29-42: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:905:44-60: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:905:62-78: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:922:27-40: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:923:20-38: No attribute `broadcast_to` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:923:75-85: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:924:29-45: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:925:20-46: No attribute `_sparse_broadcast_to` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:927:35-51: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:930:20-46: No attribute `_sparse_broadcast_to` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:936:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:938:30-46: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:939:31-44: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:944:36-52: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:948:23-39: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:952:26-36: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1059:28-44: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1061:17-28: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1062:17-27: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1063:17-27: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1064:17-28: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1065:17-28: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1069:56-67: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1075:17-28: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1076:17-27: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1077:17-27: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1078:17-28: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1079:17-28: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1081:25-36: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1084:29-42: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1085:16-25: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1086:31-47: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1088:13-22: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1090:31-47: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1091:16-37: No attribute `_sparse_csr_sum` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1112:28-44: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1114:17-28: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1115:17-27: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1116:17-27: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1117:17-28: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1118:17-28: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1122:56-67: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1128:17-28: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1129:17-27: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1130:17-27: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1131:17-28: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1132:17-28: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1134:25-36: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1137:29-42: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1144:31-47: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1151:13-23: No attribute `prod` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1153:31-47: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1168:16-38: No attribute `_sparse_csr_prod` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1189:29-42: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1190:16-28: No attribute `cumsum` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1209:29-42: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1210:16-29: No attribute `cumprod` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1241:29-42: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1242:16-26: No attribute `amax` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1243:31-47: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1251:13-23: No attribute `amax` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1253:31-47: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1259:13-23: No attribute `amax` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1291:29-42: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1292:16-26: No attribute `amin` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1293:31-47: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1301:13-23: No attribute `amin` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1303:31-47: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1309:13-23: No attribute `amin` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1335:29-42: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1336:16-28: No attribute `argmax` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1361:29-42: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1362:16-28: No attribute `argmin` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1403:24-37: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1408:17-27: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1408:47-58: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1420:26-42: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1428:13-23: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1459:16-39: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1461:32-43: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1463:29-42: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1464:18-33: No attribute `nanmedian` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1467:35-46: No attribute `isnan` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1492:29-42: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1493:16-31: No attribute `logsumexp` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1552:24-37: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1552:58-71: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1555:16-31: No attribute `logaddexp` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1587:29-42: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1621:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1624:25-38: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1625:24-37: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1630:17-27: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1630:47-58: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1644:23-35: No attribute `divide` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1645:13-27: No attribute `subtract` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1666:21-35: No attribute `subtract` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1667:21-34: No attribute `maximum` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1668:18-30: No attribute `divide` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1670:22-32: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1752:29-42: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1772:29-42: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1792:29-42: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1814:29-42: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1817:17-30: No attribute `maximum` in module `torch` [missing-attribute] +ERROR torch/masked/_ops.py:1819:16-28: No attribute `divide` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:76:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:90:22-38: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:92:24-40: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:94:24-37: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:107:28-44: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:135:28-44: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:165:48-64: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:214:46-57: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:368:30-40: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:434:31-46: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:434:57-67: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:436:31-46: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:436:57-67: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:451:31-46: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:451:57-67: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:468:31-46: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:485:31-46: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:498:31-46: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:507:31-46: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:519:20-35: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:542:22-32: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/_ops_refs.py:547:44-56: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/binary.py:107:24-40: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/binary.py:124:23-46: No attribute `sparse_coo_tensor` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/binary.py:126:26-42: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/binary.py:145:23-46: No attribute `sparse_csr_tensor` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/binary.py:156:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:47:32-48: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:51:34-50: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:58:41-49: No attribute `eq` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:59:37-51: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:108:24-40: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:108:42-58: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:185:27-43: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:189:54-66: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:190:29-45: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:192:54-66: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:205:32-45: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:205:47-63: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:205:65-81: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:207:27-43: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:212:29-45: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:219:26-36: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:222:27-40: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:223:30-43: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:224:30-43: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:225:30-40: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:226:30-40: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:227:30-41: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:228:30-41: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:229:30-41: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:266:12-20: Object of class `MaskedTensor` has no attribute `dim` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:298:14-51: No attribute `DisableTorchFunctionSubclass` in module `torch._C` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:356:16-27: Object of class `MaskedTensor` has no attribute `layout` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:356:31-47: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:359:16-27: Object of class `MaskedTensor` has no attribute `layout` [missing-attribute] +ERROR torch/masked/maskedtensor/core.py:359:31-47: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/reductions.py:23:16-25: No attribute `all` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/reductions.py:24:12-21: No attribute `all` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/reductions.py:37:16-25: No attribute `any` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/reductions.py:59:71-80: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/reductions.py:66:44-56: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/reductions.py:69:27-36: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/reductions.py:78:46-55: No attribute `any` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/unary.py:130:26-42: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/unary.py:136:23-46: No attribute `sparse_coo_tensor` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/unary.py:138:28-44: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/masked/maskedtensor/unary.py:143:23-46: No attribute `sparse_csr_tensor` in module `torch` [missing-attribute] +ERROR torch/mps/__init__.py:20:37-55: No attribute `Generator` in module `torch._C` [missing-attribute] +ERROR torch/mps/__init__.py:23:34-69: No attribute `_mps_get_default_generator` in module `torch._C` [missing-attribute] +ERROR torch/mps/__init__.py:29:16-33: No attribute `_has_mps` in module `torch._C` [missing-attribute] +ERROR torch/mps/__init__.py:29:38-64: No attribute `_mps_is_available` in module `torch._C` [missing-attribute] +ERROR torch/mps/__init__.py:34:12-43: No attribute `_mps_deviceSynchronize` in module `torch._C` [missing-attribute] +ERROR torch/mps/__init__.py:37:43-55: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/mps/__init__.py:48:48-60: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/mps/__init__.py:57:52-75: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/mps/__init__.py:71:12-29: No attribute `_has_mps` in module `torch._C` [missing-attribute] +ERROR torch/mps/__init__.py:86:5-29: No attribute `_mps_emptyCache` in module `torch._C` [missing-attribute] +ERROR torch/mps/__init__.py:111:5-36: No attribute `_mps_setMemoryFraction` in module `torch._C` [missing-attribute] +ERROR torch/mps/__init__.py:121:12-48: No attribute `_mps_currentAllocatedMemory` in module `torch._C` [missing-attribute] +ERROR torch/mps/__init__.py:131:12-47: No attribute `_mps_driverAllocatedMemory` in module `torch._C` [missing-attribute] +ERROR torch/mps/__init__.py:141:12-46: No attribute `_mps_recommendedMaxMemory` in module `torch._C` [missing-attribute] +ERROR torch/mps/event.py:16:26-52: No attribute `_mps_acquireEvent` in module `torch._C` [missing-attribute] +ERROR torch/mps/event.py:25:9-34: No attribute `_mps_recordEvent` in module `torch._C` [missing-attribute] +ERROR torch/mps/event.py:29:9-35: No attribute `_mps_waitForEvent` in module `torch._C` [missing-attribute] +ERROR torch/mps/event.py:33:16-40: No attribute `_mps_queryEvent` in module `torch._C` [missing-attribute] +ERROR torch/mps/event.py:39:9-39: No attribute `_mps_synchronizeEvent` in module `torch._C` [missing-attribute] +ERROR torch/mps/event.py:45:16-49: No attribute `_mps_elapsedTimeOfEvents` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:12:19-36: Could not import `device` from `torch` [missing-module-attribute] +ERROR torch/mtia/__init__.py:22:9-20: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/mtia/__init__.py:23:10-22: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/mtia/__init__.py:64:12-38: No attribute `_mtia_isInBadFork` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:95:9-28: No attribute `_mtia_init` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:124:12-34: No attribute `_mtia_isBuilt` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:138:16-48: No attribute `_mtia_deviceSynchronize` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:144:12-41: No attribute `_mtia_getDeviceCount` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:149:12-58: No attribute `_accelerator_hooks_get_current_device` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:161:12-43: No attribute `_mtia_getCurrentStream` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:173:12-43: No attribute `_mtia_getDefaultStream` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:192:5-39: No attribute `_mtia_recordMemoryHistory` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:198:12-41: No attribute `_mtia_memorySnapshot` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:205:5-45: No attribute `_mtia_attachOutOfMemoryObserver` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:221:12-46: No attribute `_mtia_getDeviceCapability` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:226:12-37: No attribute `_mtia_emptyCache` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:240:5-36: No attribute `_mtia_setCurrentStream` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:252:9-55: No attribute `_accelerator_hooks_set_current_device` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:263:12-46: No attribute `_mtia_getDeviceProperties` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:279:25-74: No attribute `_accelerator_hooks_maybe_exchange_device` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:282:20-69: No attribute `_accelerator_hooks_maybe_exchange_device` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:352:5-29: No attribute `_mtia_setStream` in module `torch._C` [missing-attribute] +ERROR torch/mtia/__init__.py:366:43-55: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/mtia/__init__.py:378:12-23: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/mtia/__init__.py:378:35-46: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/mtia/__init__.py:382:48-60: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/mtia/_utils.py:28:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/mtia/_utils.py:29:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/mtia/memory.py:23:12-38: No attribute `_mtia_memoryStats` in module `torch._C` [missing-attribute] +ERROR torch/mtia/memory.py:63:5-40: No attribute `_mtia_resetPeakMemoryStats` in module `torch._C` [missing-attribute] +ERROR torch/mtia/mtia_graph.py:12:17-36: No attribute `_MTIAGraph` in module `torch._C` [missing-attribute] +ERROR torch/multiprocessing/__init__.py:37:1-31: No attribute `_multiprocessing_init` in module `torch._C` [missing-attribute] +ERROR torch/multiprocessing/__init__.py:89:5-30: No attribute `_set_thread_name` in module `torch._C` [missing-attribute] +ERROR torch/multiprocessing/__init__.py:98:12-37: No attribute `_get_thread_name` in module `torch._C` [missing-attribute] +ERROR torch/multiprocessing/reductions.py:334:9-25: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/multiprocessing/reductions.py:335:9-25: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/multiprocessing/reductions.py:336:9-25: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/multiprocessing/reductions.py:337:9-25: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/multiprocessing/reductions.py:338:9-25: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/multiprocessing/reductions.py:417:12-47: No attribute `_nested_view_from_buffer_copy` in module `torch` [missing-attribute] +ERROR torch/multiprocessing/reductions.py:455:12-35: No attribute `sparse_coo_tensor` in module `torch` [missing-attribute] +ERROR torch/multiprocessing/reductions.py:473:12-42: No attribute `sparse_compressed_tensor` in module `torch` [missing-attribute] +ERROR torch/multiprocessing/reductions.py:479:25-41: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/multiprocessing/reductions.py:494:30-46: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/multiprocessing/reductions.py:494:48-64: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/multiprocessing/reductions.py:497:32-48: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/multiprocessing/reductions.py:497:50-66: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/multiprocessing/reductions.py:619:14-39: Module `multiprocessing.reduction` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/nested/__init__.py:103:18-31: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:104:18-31: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:109:28-40: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:110:20-50: No attribute `_nested_view_from_buffer` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:113:18-66: No attribute `_nested_compute_contiguous_strides_offsets` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:117:20-57: No attribute `_nested_tensor_from_tensor_list` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:118:20-32: No attribute `jagged` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:128:23-35: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:129:76-87: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:248:18-31: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:249:18-31: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:257:20-32: No attribute `jagged` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:260:45-60: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:286:12-25: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:329:18-31: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:335:31-43: No attribute `unbind` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:335:60-73: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:338:20-32: No attribute `jagged` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:345:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:345:71-82: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:348:22-34: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:348:73-84: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:448:48-54: Argument `tuple[Literal[1], Literal[0]]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/nested/__init__.py:500:25-38: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:505:23-36: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/nested/__init__.py:517:50-56: Argument `tuple[Literal[1], Literal[0]]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/nested/_internal/nested_int.py:88:16-51: No attribute `_get_constant_bool_symnode` in module `torch._C` [missing-attribute] +ERROR torch/nested/_internal/nested_int.py:91:16-51: No attribute `_get_constant_bool_symnode` in module `torch._C` [missing-attribute] +ERROR torch/nested/_internal/nested_int.py:94:16-51: No attribute `_get_constant_bool_symnode` in module `torch._C` [missing-attribute] +ERROR torch/nested/_internal/nested_int.py:97:16-51: No attribute `_get_constant_bool_symnode` in module `torch._C` [missing-attribute] +ERROR torch/nested/_internal/nested_int.py:100:16-51: No attribute `_get_constant_bool_symnode` in module `torch._C` [missing-attribute] +ERROR torch/nested/_internal/nested_int.py:103:16-51: No attribute `_get_constant_bool_symnode` in module `torch._C` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:5:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/nested/_internal/nested_tensor.py:5:35-49: Could not import `DispatchKeySet` from `torch._C` [missing-module-attribute] +ERROR torch/nested/_internal/nested_tensor.py:41:12-23: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:115:13-36: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:117:13-25: No attribute `jagged` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:177:17-26: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:189:17-26: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:243:41-64: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:252:12-24: Object of class `NestedTensor` has no attribute `grad_fn` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:351:13-33: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:352:13-33: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:355:16-62: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:377:18-55: No attribute `DisableTorchFunctionSubclass` in module `torch._C` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:491:14-23: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:504:19-28: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:506:17-28: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:506:38-49: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:507:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:547:36-48: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:548:30-41: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:551:15-24: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:567:8-17: No attribute `any` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:569:8-17: No attribute `any` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:574:29-38: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:575:22-31: No attribute `min` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:607:20-31: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:608:21-32: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:608:57-68: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/nested_tensor.py:668:12-44: No attribute `_nested_from_padded_tensor` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:23:13-24: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:23:66-77: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:25:19-30: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:33:13-24: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:33:66-77: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:257:8-17: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:276:41-57: No attribute `TensorType` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:392:16-28: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/nested/_internal/ops.py:443:14-51: No attribute `DisableTorchFunctionSubclass` in module `torch._C` [missing-attribute] +ERROR torch/nested/_internal/ops.py:485:14-51: No attribute `DisableTorchFunctionSubclass` in module `torch._C` [missing-attribute] +ERROR torch/nested/_internal/ops.py:527:12-24: No attribute `jagged` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:556:26-49: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:558:39-60: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:582:26-49: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:585:39-60: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:604:43-66: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:648:13-25: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:658:14-26: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:667:18-27: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:780:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:1099:28-40: No attribute `cumsum` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:1186:9-21: No attribute `narrow` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:1362:20-31: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:1836:13-22: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:1849:13-22: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:1850:17-29: No attribute `square` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:1857:15-25: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:2009:5-24: No attribute `_assert_async` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:2011:9-18: No attribute `all` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:2410:31-41: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:2412:28-38: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:2420:36-46: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:2457:31-41: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:2459:28-38: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:2464:28-38: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:2610:18-34: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:2728:21-33: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/ops.py:2732:22-34: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/sdpa.py:69:31-41: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/sdpa.py:352:52-63: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/sdpa.py:358:46-57: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/sdpa.py:657:13-41: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/nested/_internal/sdpa.py:660:24-48: Module `torch.utils.flop_counter` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/nested/_internal/sdpa.py:694:47-72: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/sdpa.py:700:24-48: No attribute `get_autocast_dtype` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/sdpa.py:704:27-40: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/sdpa.py:904:25-40: No attribute `transpose` in module `torch` [missing-attribute] +ERROR torch/nested/_internal/sdpa.py:914:20-60: No attribute `_scaled_dot_product_attention_math` in module `torch` [missing-attribute] +ERROR torch/nn/attention/__init__.py:10:22-47: Could not import `_SDPBackend` from `torch._C` [missing-module-attribute] +ERROR torch/nn/attention/__init__.py:91:25-57: No attribute `_get_sdp_priority_order` in module `torch._C` [missing-attribute] +ERROR torch/nn/attention/__init__.py:105:29-61: No attribute `_get_sdp_priority_order` in module `torch._C` [missing-attribute] +ERROR torch/nn/attention/__init__.py:109:9-41: No attribute `_set_sdp_priority_order` in module `torch._C` [missing-attribute] +ERROR torch/nn/attention/_fa4.py:39:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/attention/_fa4.py:94:28-41: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/nn/attention/_fa4.py:94:43-57: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/nn/attention/_fa4.py:97:28-41: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/nn/attention/_fa4.py:127:31-42: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/nn/attention/_fa4.py:278:17-28: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/nn/attention/_fa4.py:278:41-53: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/nn/attention/_fa4.py:279:21-32: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/nn/attention/_fa4.py:279:43-55: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/nn/attention/_fa4.py:280:18-29: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/attention/bias.py:140:35-47: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/attention/bias.py:142:16-26: No attribute `tril` in module `torch` [missing-attribute] +ERROR torch/nn/attention/bias.py:143:13-23: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/nn/attention/bias.py:143:78-88: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/nn/attention/bias.py:146:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/attention/bias.py:149:16-26: No attribute `tril` in module `torch` [missing-attribute] +ERROR torch/nn/attention/bias.py:150:13-23: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/nn/attention/bias.py:151:71-81: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/nn/attention/bias.py:157:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/attention/bias.py:171:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/attention/bias.py:239:60-87: Argument `tuple[Literal[0], Unknown]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/nn/attention/bias.py:240:56-81: Argument `tuple[Literal[0], Unknown]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/nn/attention/bias.py:241:60-87: Argument `tuple[Literal[0], Unknown]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/nn/attention/experimental/_paged_attention.py:47:28-38: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:48:51-62: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:52:25-36: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:52:59-70: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:58:37-47: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:59:46-57: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:88:27-39: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:101:64-76: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:179:30-42: No attribute `gather` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:180:65-76: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:181:14-25: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:230:25-37: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:235:26-37: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:236:47-58: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:239:13-25: No attribute `gather` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:240:69-80: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:243:17-28: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:250:35-46: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:251:51-62: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:254:17-29: No attribute `gather` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:257:63-74: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:260:21-32: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:309:20-31: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/nn/attention/experimental/_paged_attention.py:348:20-31: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:357:42-52: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:398:73-84: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:400:23-35: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:400:52-61: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:403:21-33: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:403:50-59: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:407:25-36: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:422:38-49: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:424:19-32: No attribute `argsort` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:426:30-41: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:426:57-80: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:427:24-35: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:427:51-74: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:444:18-29: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:445:18-27: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:445:76-87: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:910:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:977:26-36: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:985:9-990:10: Argument `tuple[Literal[0], Unknown, Literal[0], Unknown]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/nn/attention/flex_attention.py:1008:50-60: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:1009:44-54: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:1013:50-60: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:1023:40-50: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:1037:39-49: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:1112:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:1113:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:1114:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:1115:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:1124:29-40: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:1125:20-31: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:1125:32-46: No attribute `isneginf` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:1228:23-33: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:1228:51-62: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:1229:20-31: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:1229:52-63: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:1272:46-67: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:1340:9-28: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/nn/attention/flex_attention.py:1341:9-26: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/nn/attention/varlen.py:88:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/nn/attention/varlen.py:89:21-33: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/nn/attention/varlen.py:113:14-30: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/nn/attention/varlen.py:118:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/attention/varlen.py:119:37-48: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/nn/attention/varlen.py:122:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/attention/varlen.py:122:41-53: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/nn/attention/varlen.py:232:14-25: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/attention/varlen.py:293:18-34: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/nn/attention/varlen.py:294:16-32: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/nn/attention/varlen.py:295:18-34: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/nn/init.py:70:62-77: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/nn/init.py:80:26-41: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/nn/init.py:92:26-41: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/nn/init.py:218:26-41: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/nn/init.py:245:26-41: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/nn/init.py:274:26-41: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/nn/init.py:360:9-18: No attribute `eye` in module `torch` [missing-attribute] +ERROR torch/nn/init.py:441:26-41: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/nn/init.py:474:26-41: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/nn/init.py:518:26-41: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/nn/init.py:583:26-41: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/nn/init.py:634:26-41: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/nn/init.py:669:9-19: No attribute `diag` in module `torch` [missing-attribute] +ERROR torch/nn/init.py:686:26-41: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/nn/init.py:714:27-41: No attribute `randperm` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:23:47-66: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:24:50-72: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:39:28-50: No attribute `batch_norm_stats` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:41:21-31: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:49:24-33: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:55:24-35: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:68:29-40: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:77:24-37: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:82:30-46: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:84:24-35: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:106:24-65: No attribute `batch_norm_gather_stats_with_counts` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:117:74-85: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:122:20-42: No attribute `batch_norm_elemt` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:124:20-36: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:127:9-17: Class member `SyncBatchNorm.backward` overrides parent class `Function` in an inconsistent manner [bad-param-name-override] +ERROR torch/nn/modules/_functions.py:129:53-72: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:130:56-78: No attribute `channels_last_3d` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:144:17-49: No attribute `batch_norm_backward_reduce` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:158:28-37: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:170:30-61: No attribute `batch_norm_backward_elemt` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:196:28-39: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:236:9-18: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:263:9-18: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:287:9-18: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:292:13-22: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/nn/modules/_functions.py:294:13-22: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/nn/modules/activation.py:359:16-29: No attribute `sigmoid` in module `torch` [missing-attribute] +ERROR torch/nn/modules/activation.py:430:16-26: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/nn/modules/activation.py:1075:13-41: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/nn/modules/activation.py:1080:28-49: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/nn/modules/activation.py:1080:28-62: Module `torch.fx.experimental.proxy_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/nn/modules/activation.py:1198:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/activation.py:1201:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/activation.py:1204:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/activation.py:1209:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/activation.py:1216:43-54: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/activation.py:1224:37-48: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/activation.py:1225:37-48: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/activation.py:1329:40-63: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/nn/modules/activation.py:1331:17-40: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/nn/modules/activation.py:1395:14-39: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/nn/modules/activation.py:1419:18-39: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/nn/modules/activation.py:1432:28-62: No attribute `_native_multi_head_attention` in module `torch` [missing-attribute] +ERROR torch/nn/modules/activation.py:1629:33-44: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/adaptive.py:323:18-30: No attribute `argmax` in module `torch` [missing-attribute] +ERROR torch/nn/modules/adaptive.py:325:33-53: Object of class `bool` has no attribute `any` [missing-attribute] +ERROR torch/nn/modules/adaptive.py:330:14-34: Object of class `bool` has no attribute `all` [missing-attribute] +ERROR torch/nn/modules/adaptive.py:332:20-32: No attribute `argmax` in module `torch` [missing-attribute] +ERROR torch/nn/modules/adaptive.py:338:40-52: No attribute `argmax` in module `torch` [missing-attribute] +ERROR torch/nn/modules/batchnorm.py:56:37-48: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/batchnorm.py:57:35-46: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/batchnorm.py:63:33-44: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/nn/modules/batchnorm.py:66:32-42: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/nn/modules/batchnorm.py:72:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/nn/modules/batchnorm.py:74:27-37: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/nn/modules/batchnorm.py:129:60-72: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/modules/batchnorm.py:130:26-38: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/nn/modules/batchnorm.py:130:48-58: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/nn/modules/batchnorm.py:248:40-52: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/nn/modules/batchnorm.py:250:23-33: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/nn/modules/batchnorm.py:802:17-55: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/nn/modules/batchnorm.py:806:24-62: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/nn/modules/container.py:771:46-84: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/nn/modules/container.py:1008:46-84: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/nn/modules/conv.py:163:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/conv.py:170:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/conv.py:176:35-46: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/linear.py:109:13-24: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/linear.py:112:35-46: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/linear.py:221:13-24: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/linear.py:225:35-46: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/loss.py:1883:13-87: `((Tensor, Tensor) -> Tensor) | PairwiseDistance` is not assignable to attribute `distance_function` with type `((Tensor, Tensor) -> Tensor) | None` [bad-assignment] +ERROR torch/nn/modules/module.py:14:19-25: Could not import `device` from `torch` [missing-module-attribute] +ERROR torch/nn/modules/module.py:14:27-32: Could not import `dtype` from `torch` [missing-module-attribute] +ERROR torch/nn/modules/module.py:484:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/nn/modules/module.py:938:16-55: No attribute `_has_compatible_shallow_copy_type` in module `torch` [missing-attribute] +ERROR torch/nn/modules/module.py:1236:23-39: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/nn/modules/module.py:1339:58-70: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/nn/modules/module.py:1755:25-52: No attribute `_get_tracing_state` in module `torch._C` [missing-attribute] +ERROR torch/nn/modules/module.py:1756:58-79: No attribute `ScriptMethod` in module `torch._C` [missing-attribute] +ERROR torch/nn/modules/module.py:1783:47-74: No attribute `_get_tracing_state` in module `torch._C` [missing-attribute] +ERROR torch/nn/modules/normalization.py:6:19-23: Could not import `Size` from `torch` [missing-module-attribute] +ERROR torch/nn/modules/normalization.py:208:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/normalization.py:212:21-32: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/normalization.py:230:20-41: Argument `tuple[int, ...]` is not assignable to parameter `normalized_shape` with type `list[int]` in function `torch.nn.functional.layer_norm` [bad-argument-type] +ERROR torch/nn/modules/normalization.py:311:37-48: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/normalization.py:312:35-46: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/normalization.py:397:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/normalization.py:414:30-51: Argument `tuple[int, ...]` is not assignable to parameter `normalized_shape` with type `list[int]` in function `torch.nn.functional.rms_norm` [bad-argument-type] +ERROR torch/nn/modules/padding.py:42:29-41: Argument `Sequence[int]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/nn/modules/padding.py:221:29-41: Argument `Sequence[int]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/nn/modules/padding.py:377:29-41: Argument `Sequence[int]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/nn/modules/padding.py:541:29-41: Argument `Sequence[int]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/nn/modules/sparse.py:169:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/sparse.py:407:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/modules/transformer.py:31:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/modules/transformer.py:32:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/nn/modules/transformer.py:38:12-22: No attribute `triu` in module `torch` [missing-attribute] +ERROR torch/nn/modules/transformer.py:39:9-19: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/nn/modules/transformer.py:120:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/nn/modules/transformer.py:304:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/modules/transformer.py:305:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/nn/modules/transformer.py:362:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/nn/modules/transformer.py:482:36-79: No attribute `_nested_tensor_from_mask_left_aligned` in module `torch` [missing-attribute] +ERROR torch/nn/modules/transformer.py:492:14-39: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/nn/modules/transformer.py:522:18-39: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/nn/modules/transformer.py:530:26-56: No attribute `_nested_tensor_from_mask` in module `torch` [missing-attribute] +ERROR torch/nn/modules/transformer.py:593:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/nn/modules/transformer.py:868:14-39: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/nn/modules/transformer.py:909:18-39: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/nn/modules/transformer.py:919:24-60: No attribute `_transformer_encoder_layer_fwd` in module `torch` [missing-attribute] +ERROR torch/nn/modules/transformer.py:1250:32-63: Object of class `bool` has no attribute `all` [missing-attribute] +ERROR torch/nn/modules/upsampling.py:177:13-22: Argument `int | tuple[int, ...] | None` is not assignable to parameter `size` with type `int | None` in function `torch.nn.functional.interpolate` [bad-argument-type] +ERROR torch/nn/modules/upsampling.py:178:13-30: Argument `float | tuple[float, ...] | None` is not assignable to parameter `scale_factor` with type `list[float] | None` in function `torch.nn.functional.interpolate` [bad-argument-type] +ERROR torch/nn/parallel/comm.py:44:16-35: No attribute `_broadcast` in module `torch._C` [missing-attribute] +ERROR torch/nn/parallel/comm.py:47:16-39: No attribute `_broadcast_out` in module `torch._C` [missing-attribute] +ERROR torch/nn/parallel/comm.py:67:12-41: No attribute `_broadcast_coalesced` in module `torch._C` [missing-attribute] +ERROR torch/nn/parallel/comm.py:107:18-34: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/comm.py:110:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/comm.py:206:22-39: No attribute `_scatter` in module `torch._C` [missing-attribute] +ERROR torch/nn/parallel/comm.py:216:22-43: No attribute `_scatter_out` in module `torch._C` [missing-attribute] +ERROR torch/nn/parallel/comm.py:255:16-32: No attribute `_gather` in module `torch._C` [missing-attribute] +ERROR torch/nn/parallel/comm.py:261:16-36: No attribute `_gather_out` in module `torch._C` [missing-attribute] +ERROR torch/nn/parallel/data_parallel.py:24:47-59: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/data_parallel.py:139:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/data_parallel.py:140:30-42: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/data_parallel.py:144:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/nn/parallel/data_parallel.py:165:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/data_parallel.py:200:63-75: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/data_parallel.py:201:50-71: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/data_parallel.py:207:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/data_parallel.py:218:57-69: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/data_parallel.py:225:32-44: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/data_parallel.py:226:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/data_parallel.py:264:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:43:4-12: Module `torch.distributed.rpc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/nn/parallel/distributed.py:90:18-29: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:91:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:92:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:116:31-47: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:889:31-43: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:915:31-43: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:940:13-35: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/nn/parallel/distributed.py:941:13-35: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/nn/parallel/distributed.py:944:13-38: Module `torch._dynamo.trace_rules` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/nn/parallel/distributed.py:947:13-38: Module `torch._dynamo.trace_rules` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/nn/parallel/distributed.py:1004:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:1005:35-46: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:1050:13-41: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:1055:17-27: Module `torch.distributed.optim` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/nn/parallel/distributed.py:1125:30-41: No attribute `Event` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:1531:12-33: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:1551:12-33: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:1568:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:1604:12-33: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:1678:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:1693:36-46: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:1695:36-47: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:2165:23-35: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/distributed.py:2262:21-36: Module `torch.cuda.nccl` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/nn/parallel/parallel_apply.py:35:29-41: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/parallel_apply.py:67:9-30: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/parallel_apply.py:68:9-34: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/parallel_apply.py:76:23-35: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/parallel_apply.py:77:17-29: No attribute `Stream` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/parallel_apply.py:90:31-43: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/replicate.py:13:26-38: Could not import `ScriptMethod` from `torch._C` [missing-module-attribute] +ERROR torch/nn/parallel/replicate.py:30:31-52: No attribute `ScriptMethod` in module `torch._C` [missing-attribute] +ERROR torch/nn/parallel/replicate.py:85:29-41: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/replicate.py:109:29-41: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/scatter_gather.py:36:33-45: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/scatter_gather.py:44:33-45: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/scatter_gather.py:97:33-45: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parallel/scatter_gather.py:104:9-32: Object of class `tuple` has no attribute `extend` [missing-attribute] +ERROR torch/nn/parallel/scatter_gather.py:108:9-32: Object of class `tuple` has no attribute `extend` [missing-attribute] +ERROR torch/nn/parallel/scatter_gather.py:114:47-59: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/parameter.py:5:22-51: Could not import `_disabled_torch_function_impl` from `torch._C` [missing-module-attribute] +ERROR torch/nn/parameter.py:19:22-42: No attribute `_TensorMeta` in module `torch._C` [missing-attribute] +ERROR torch/nn/parameter.py:53:20-31: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/parameter.py:79:47-68: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/nn/parameter.py:125:9-48: No attribute `_has_compatible_shallow_copy_type` in module `torch` [missing-attribute] +ERROR torch/nn/parameter.py:146:21-32: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/parameter.py:222:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/parameter.py:236:19-39: No attribute `_TensorMeta` in module `torch._C` [missing-attribute] +ERROR torch/nn/parameter.py:266:20-31: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/parameter.py:300:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/nn/parameter.pyi:3:19-25: Could not import `device` from `torch` [missing-module-attribute] +ERROR torch/nn/parameter.pyi:3:27-32: Could not import `dtype` from `torch` [missing-module-attribute] + WARN torch/nn/utils/__init__.py:5:5-19: `clip_grad_norm` is deprecated [deprecated] +ERROR torch/nn/utils/_expanded_weights/conv_utils.py:184:23-35: No attribute `narrow` in module `torch` [missing-attribute] +ERROR torch/nn/utils/_expanded_weights/conv_utils.py:336:17-89: Argument `tuple[Unknown, Unknown, Unknown, Unknown, Unknown, Unknown]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/nn/utils/_expanded_weights/expanded_weights_impl.py:18:5-19: No attribute `rnn_relu` in module `torch` [missing-attribute] +ERROR torch/nn/utils/_expanded_weights/expanded_weights_impl.py:22:5-19: No attribute `rnn_tanh` in module `torch` [missing-attribute] +ERROR torch/nn/utils/_expanded_weights/expanded_weights_impl.py:26:5-15: No attribute `lstm` in module `torch` [missing-attribute] +ERROR torch/nn/utils/_expanded_weights/expanded_weights_impl.py:30:5-14: No attribute `gru` in module `torch` [missing-attribute] +ERROR torch/nn/utils/_expanded_weights/expanded_weights_impl.py:127:9-27: Class member `ExpandedWeight.__torch_function__` overrides parent class `Tensor` in an inconsistent manner [bad-param-name-override] +ERROR torch/nn/utils/_expanded_weights/expanded_weights_impl.py:135:17-24: Index 2 out of range for tuple with 0 elements [bad-index] +ERROR torch/nn/utils/_expanded_weights/expanded_weights_impl.py:143:20-51: No attribute `_cudnn_rnn_flatten_weight` in module `torch` [missing-attribute] +ERROR torch/nn/utils/_expanded_weights/expanded_weights_utils.py:134:28-39: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py:35:13-36: No attribute `native_group_norm` in module `torch` [missing-attribute] +ERROR torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py:21:33-52: No attribute `instance_norm` in module `torch` [missing-attribute] +ERROR torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py:59:20-30: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py:62:19-28: No attribute `var` in module `torch` [missing-attribute] +ERROR torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py:68:24-34: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py:32:13-36: No attribute `native_layer_norm` in module `torch` [missing-attribute] +ERROR torch/nn/utils/clip_grad.py:83:16-28: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/nn/utils/clip_grad.py:86:15-27: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/utils/clip_grad.py:86:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/nn/utils/clip_grad.py:96:26-45: No attribute `_foreach_norm` in module `torch` [missing-attribute] +ERROR torch/nn/utils/clip_grad.py:107:9-20: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/nn/utils/clip_grad.py:110:31-47: No attribute `logical_or` in module `torch` [missing-attribute] +ERROR torch/nn/utils/clip_grad.py:162:15-27: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/utils/clip_grad.py:162:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/nn/utils/clip_grad.py:169:25-36: No attribute `clamp` in module `torch` [missing-attribute] +ERROR torch/nn/utils/clip_grad.py:174:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/nn/utils/clip_grad.py:291:13-38: No attribute `_foreach_clamp_min_` in module `torch` [missing-attribute] +ERROR torch/nn/utils/clip_grad.py:292:13-38: No attribute `_foreach_clamp_max_` in module `torch` [missing-attribute] +ERROR torch/nn/utils/convert_parameters.py:25:12-21: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/nn/utils/convert_parameters.py:72:37-75: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/nn/utils/fusion.py:84:18-34: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/nn/utils/fusion.py:86:16-31: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/nn/utils/fusion.py:88:16-32: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/nn/utils/fusion.py:89:20-31: No attribute `rsqrt` in module `torch` [missing-attribute] +ERROR torch/nn/utils/fusion.py:182:20-36: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/nn/utils/fusion.py:183:23-34: No attribute `rsqrt` in module `torch` [missing-attribute] +ERROR torch/nn/utils/memory_format.py:12:32-51: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/nn/utils/memory_format.py:92:32-51: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:16:10-19: No attribute `eye` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:18:22-33: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:19:12-26: No attribute `allclose` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:27:14-25: No attribute `geqrf` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:85:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:91:21-37: No attribute `matrix_exp` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:94:22-31: No attribute `eye` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:96:21-30: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:96:51-60: No attribute `add` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:159:22-33: No attribute `geqrf` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:177:21-32: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:180:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:188:22-38: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:327:16-34: No attribute `_weight_norm` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:330:20-41: No attribute `norm_except_dim` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:515:45-68: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:516:45-68: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:520:21-31: No attribute `vdot` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrizations.py:520:35-43: No attribute `mv` in module `torch` [missing-attribute] +ERROR torch/nn/utils/parametrize.py:411:18-45: No attribute `_get_tracing_state` in module `torch._C` [missing-attribute] +ERROR torch/nn/utils/prune.py:171:28-43: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/nn/utils/prune.py:179:38-61: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/nn/utils/prune.py:231:70-85: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/nn/utils/prune.py:468:49-72: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/nn/utils/prune.py:471:20-35: No attribute `rand_like` in module `torch` [missing-attribute] +ERROR torch/nn/utils/prune.py:472:20-30: No attribute `topk` in module `torch` [missing-attribute] +ERROR torch/nn/utils/prune.py:525:49-72: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/nn/utils/prune.py:530:20-30: No attribute `topk` in module `torch` [missing-attribute] +ERROR torch/nn/utils/prune.py:530:31-40: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/nn/utils/prune.py:625:20-30: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/nn/utils/prune.py:628:25-39: No attribute `kthvalue` in module `torch` [missing-attribute] +ERROR torch/nn/utils/prune.py:631:20-36: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/nn/utils/prune.py:633:13-21: Cannot set item in `list[slice[Any, Any, Any]]` [unsupported-operation] +ERROR torch/nn/utils/prune.py:735:16-26: No attribute `topk` in module `torch` [missing-attribute] +ERROR torch/nn/utils/prune.py:743:20-36: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/nn/utils/prune.py:1115:45-60: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:105:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:113:23-35: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:114:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:160:14-26: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:169:14-26: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:178:30-42: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:181:30-41: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:184:30-40: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:187:30-40: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:190:30-39: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:193:30-41: No attribute `short` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:196:30-40: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:199:30-41: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:268:14-30: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:270:25-37: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:320:12-39: No attribute `_get_tracing_state` in module `torch._C` [missing-attribute] +ERROR torch/nn/utils/rnn.py:328:19-34: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:328:50-61: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:330:36-47: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:335:35-45: No attribute `sort` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:340:25-50: No attribute `_pack_padded_sequence` in module `torch._VF` [missing-attribute] +ERROR torch/nn/utils/rnn.py:408:30-54: No attribute `_pad_packed_sequence` in module `torch._VF` [missing-attribute] +ERROR torch/nn/utils/rnn.py:482:12-24: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/nn/utils/rnn.py:529:11-23: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/nn/utils/rnn.py:572:15-30: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/nn/utils/spectral_norm.py:104:25-33: No attribute `mv` in module `torch` [missing-attribute] +ERROR torch/nn/utils/spectral_norm.py:106:37-45: No attribute `mv` in module `torch` [missing-attribute] +ERROR torch/nn/utils/spectral_norm.py:109:47-70: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/nn/utils/spectral_norm.py:110:47-70: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/nn/utils/spectral_norm.py:112:17-26: No attribute `dot` in module `torch` [missing-attribute] +ERROR torch/nn/utils/spectral_norm.py:112:30-38: No attribute `mv` in module `torch` [missing-attribute] +ERROR torch/nn/utils/spectral_norm.py:139:38-47: No attribute `dot` in module `torch` [missing-attribute] +ERROR torch/nn/utils/spectral_norm.py:139:51-59: No attribute `mv` in module `torch` [missing-attribute] +ERROR torch/nn/utils/weight_norm.py:7:19-31: Could not import `_weight_norm` from `torch` [missing-module-attribute] +ERROR torch/nn/utils/weight_norm.py:7:33-48: Could not import `norm_except_dim` from `torch` [missing-module-attribute] + WARN torch/nn/utils/weight_norm.py:144:5-21: `WeightNorm.apply` is deprecated [deprecated] +ERROR torch/onnx/_internal/_lazy_import.py:30:12-16: Could not find import of `onnx` [missing-import] +ERROR torch/onnx/_internal/_lazy_import.py:32:12-22: Could not find import of `onnxscript` [missing-import] +ERROR torch/onnx/_internal/_lazy_import.py:33:12-67: Could not find import of `onnxscript._framework_apis.torch_2_9` [missing-import] +ERROR torch/onnx/_internal/exporter/_analysis.py:28:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_analysis.py:31:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_analysis.py:54:24-35: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_analysis.py:54:55-66: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_analysis.py:57:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_analysis.py:58:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_building.py:19:8-18: Could not find import of `onnxscript` [missing-import] +ERROR torch/onnx/_internal/exporter/_building.py:20:1-37: Could not find import of `onnxscript` [missing-import] +ERROR torch/onnx/_internal/exporter/_building.py:21:1-56: Could not find import of `onnxscript.ir` [missing-import] +ERROR torch/onnx/_internal/exporter/_building.py:28:12-16: Could not find import of `onnx` [missing-import] +ERROR torch/onnx/_internal/exporter/_capture_strategies.py:172:20-37: Module `torch._dynamo.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/onnx/_internal/exporter/_capture_strategies.py:227:20-37: Module `torch._dynamo.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/onnx/_internal/exporter/_core.py:18:8-18: Could not find import of `onnxscript` [missing-import] +ERROR torch/onnx/_internal/exporter/_core.py:19:8-28: Could not find import of `onnxscript.evaluator` [missing-import] +ERROR torch/onnx/_internal/exporter/_core.py:20:1-26: Could not find import of `onnxscript` [missing-import] +ERROR torch/onnx/_internal/exporter/_core.py:21:1-56: Could not find import of `onnxscript.ir` [missing-import] +ERROR torch/onnx/_internal/exporter/_core.py:53:28-39: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:54:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:55:5-15: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:56:5-21: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:57:5-20: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:58:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:59:5-18: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:60:5-18: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:61:5-24: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:62:5-26: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:63:5-22: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:64:5-26: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:65:5-27: No attribute `float4_e2m1fn_x2` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:66:5-16: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:67:5-16: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:68:5-16: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:69:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:70:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:71:5-17: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:72:5-17: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:73:5-17: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:107:38-49: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:114:28-50: No attribute `float4_e2m1fn_x2` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:245:30-52: No attribute `float4_e2m1fn_x2` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:266:38-53: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:270:40-56: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:480:25-37: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:480:39-58: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:480:60-72: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:482:24-35: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:856:18-38: No attribute `FunctionSchema` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:876:34-46: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:878:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:892:36-48: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_core.py:894:36-47: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:8:1-26: Could not find import of `onnxscript` [missing-import] +ERROR torch/onnx/_internal/exporter/_dispatching.py:18:39-50: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:19:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:20:5-15: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:21:5-21: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:22:5-20: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:23:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:24:5-18: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:25:5-18: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:26:5-24: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:27:5-26: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:28:5-22: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:29:5-26: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:30:5-27: No attribute `float4_e2m1fn_x2` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:31:5-16: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:32:5-16: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:33:5-16: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:34:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:35:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:36:5-17: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:37:5-17: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:38:5-17: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:42:50-61: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:66:26-37: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:68:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:68:41-60: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:68:62-74: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:242:28-42: No attribute `Argument` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_dispatching.py:327:13-29: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:30:12-30: Could not find import of `onnxruntime` [missing-import] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:35:9-28: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:36:9-30: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:37:9-26: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:38:9-30: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:47:12-30: Could not find import of `onnxruntime` [missing-import] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:135:16-32: No attribute `from_numpy` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:135:61-75: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:137:16-32: No attribute `from_numpy` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:137:60-79: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:139:16-32: No attribute `from_numpy` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:139:60-81: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:141:16-32: No attribute `from_numpy` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:141:60-77: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:143:16-32: No attribute `from_numpy` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:143:60-81: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:144:12-28: No attribute `from_numpy` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:150:12-30: Could not find import of `onnxruntime` [missing-import] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:164:23-37: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:167:31-45: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:168:29-41: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:170:29-40: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:201:12-28: No attribute `from_numpy` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:240:16-34: Could not find import of `onnxruntime` [missing-import] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:265:16-30: Could not find import of `onnx.reference` [missing-import] +ERROR torch/onnx/_internal/exporter/_onnx_program.py:491:9-27: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_reporting.py:14:5-30: Could not find import of `onnxscript` [missing-import] +ERROR torch/onnx/_internal/exporter/_schemas.py:13:8-12: Could not find import of `onnx` [missing-import] +ERROR torch/onnx/_internal/exporter/_schemas.py:15:8-18: Could not find import of `onnxscript` [missing-import] +ERROR torch/onnx/_internal/exporter/_schemas.py:16:1-26: Could not find import of `onnxscript` [missing-import] +ERROR torch/onnx/_internal/exporter/_schemas.py:545:56-73: Cannot index into `dict[str, TypeConstraintParam]` [bad-index] +ERROR torch/onnx/_internal/exporter/_tensors.py:6:8-18: Could not find import of `onnxscript` [missing-import] +ERROR torch/onnx/_internal/exporter/_tensors.py:7:1-26: Could not find import of `onnxscript` [missing-import] +ERROR torch/onnx/_internal/exporter/_testing.py:78:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_testing.py:79:14-30: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_testing.py:80:42-60: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py:7:1-21:2: Could not find import of `onnxscript` [missing-import] +ERROR torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py:13:8-18: Could not find import of `onnxscript` [missing-import] +ERROR torch/onnx/_internal/exporter/_torchlib/ops/core.py:10:1-48: Could not find import of `onnxscript.onnx_opset` [missing-import] +ERROR torch/onnx/_internal/exporter/_torchlib/ops/hop.py:31:5-60: Could not find import of `onnxscript.ir` [missing-import] +ERROR torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py:7:1-56: Could not find import of `onnxscript.ir` [missing-import] +ERROR torch/onnx/_internal/exporter/_torchlib/ops/symops.py:9:1-48: Could not find import of `onnxscript.onnx_opset` [missing-import] +ERROR torch/onnx/_internal/exporter/_type_casting.py:8:28-50: No attribute `float4_e2m1fn_x2` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_type_casting.py:9:24-35: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_type_casting.py:31:28-50: No attribute `float4_e2m1fn_x2` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_verification.py:19:5-30: Could not find import of `onnxscript` [missing-import] +ERROR torch/onnx/_internal/exporter/_verification.py:55:21-32: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_verification.py:56:19-30: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_verification.py:78:24-36: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_verification.py:80:22-34: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_verification.py:85:16-28: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_verification.py:87:19-30: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_verification.py:89:25-40: No attribute `histogram` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_verification.py:90:25-40: No attribute `histogram` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_verification.py:132:36-48: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_verification.py:132:60-72: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_verification.py:133:26-36: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_verification.py:134:32-45: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_verification.py:135:28-41: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_verification.py:136:8-24: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_verification.py:137:20-38: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_verification.py:138:16-25: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/exporter/_verification.py:140:18-27: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/passes/type_promotion.py:53:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/passes/type_promotion.py:56:33-44: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/passes/type_promotion.py:59:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/passes/type_promotion.py:168:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/passes/type_promotion.py:168:58-69: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/passes/type_promotion.py:169:10-21: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/passes/type_promotion.py:290:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/passes/type_promotion.py:329:29-39: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/passes/type_promotion.py:331:24-35: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/passes/type_promotion.py:331:52-63: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/passes/type_promotion.py:331:69-79: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/passes/type_promotion.py:354:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/passes/type_promotion.py:360:25-36: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/passes/type_promotion.py:1381:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/passes/type_promotion.py:1446:16-27: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:10:8-12: Could not find import of `onnx` [missing-import] +ERROR torch/onnx/_internal/fx/type_utils.py:17:12-21: Could not find import of `onnx.defs` [missing-import] +ERROR torch/onnx/_internal/fx/type_utils.py:25:24-35: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:28:42-53: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:33:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:33:50-61: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:37:65-76: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:45:47-58: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:77:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:83:59-70: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:89:52-63: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:90:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:91:5-15: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:92:5-18: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:93:5-18: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:94:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:95:5-24: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:96:5-26: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:97:5-22: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:98:5-26: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:99:5-16: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:100:5-16: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:101:5-16: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:102:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:103:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:109:5-20: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:110:5-20: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:111:5-21: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:121:11-21: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:122:10-21: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:123:12-25: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:124:14-29: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:127:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:127:38-49: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:128:5-20: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:128:22-35: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:129:5-20: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:129:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:130:5-21: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:130:23-36: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:134:19-30: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:135:21-34: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:136:20-30: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:139:41-52: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:145:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:146:5-18: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:147:5-18: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:148:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:149:5-24: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:150:5-26: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:151:5-22: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:152:5-26: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:153:5-20: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:154:5-20: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:155:5-21: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:156:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:157:5-16: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:158:5-16: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:159:5-16: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:160:5-15: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:161:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:174:5-16: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:176:5-17: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:177:5-24: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/fx/type_utils.py:178:5-17: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:137:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:180:28-42: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:196:35-49: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:197:31-45: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:213:37-51: No attribute `ListType` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:218:37-58: No attribute `OptionalType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:229:27-44: No attribute `NoneType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:254:24-35: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:370:25-35: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:371:26-37: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:372:25-35: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:373:26-37: No attribute `short` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:374:24-33: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:375:26-37: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:376:25-35: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:377:26-37: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:378:27-39: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:379:30-45: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:380:30-45: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:381:31-47: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:382:26-37: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:383:27-39: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:384:27-39: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:385:29-43: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:386:31-48: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:387:33-52: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:388:35-56: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/_type_utils.py:389:35-56: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:41:12-20: No attribute `Graph` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:42:12-20: No attribute `Block` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:44:20-27: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:45:28-37: No attribute `IValue` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:46:15-23: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:46:25-33: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:47:24-32: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:48:21-28: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:58:35-43: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:111:35-43: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:154:14-22: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:158:43-50: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:201:27-35: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:262:24-32: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:269:21-29: No attribute `Graph` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:269:32-40: No attribute `Block` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:277:6-13: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:279:35-43: No attribute `Graph` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:283:37-45: No attribute `Block` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:305:9-52: No attribute `_jit_pass_onnx_node_shape_type_inference` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:322:26-33: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:337:19-27: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:338:33-46: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:341:34-42: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:341:47-59: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/jit_utils.py:344:31-44: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/onnx_proto_utils.py:48:16-20: Could not find import of `onnx` [missing-import] +ERROR torch/onnx/_internal/torchscript_exporter/onnx_proto_utils.py:100:16-20: Could not find import of `onnx` [missing-import] +ERROR torch/onnx/_internal/torchscript_exporter/onnx_proto_utils.py:181:16-20: Could not find import of `onnx` [missing-import] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:218:21-28: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:220:29-36: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:225:30-38: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:231:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:237:26-34: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:259:30-38: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:259:48-56: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:269:32-40: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:269:51-59: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:280:43-51: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:280:62-70: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:442:51-63: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:446:56-68: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:541:25-33: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:554:65-73: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:558:26-34: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:568:19-27: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:569:33-46: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:573:29-39: No attribute `JitType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:573:44-55: No attribute `ListType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:574:29-40: No attribute `ListType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:579:17-25: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:583:24-32: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:587:48-61: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:590:24-32: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:603:28-36: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:607:25-33: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:618:25-33: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:622:26-39: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:626:26-34: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:630:26-39: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:640:29-37: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:645:27-35: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:660:46-54: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:666:44-52: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:672:26-34: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:684:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:690:26-34: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:703:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:709:26-34: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:771:42-58: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:776:52-68: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:844:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:844:68-80: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:845:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:855:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:855:60-71: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:873:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:873:62-73: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:875:60-72: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:923:45-57: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:923:72-82: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:937:45-57: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:937:72-82: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:971:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:971:68-78: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:994:44-54: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:994:69-82: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1011:33-45: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1011:69-82: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1024:40-50: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1024:60-73: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1026:29-41: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1044:40-50: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1044:60-73: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1046:40-51: No attribute `ListType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1097:12-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1098:10-24: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1115:48-60: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1124:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1124:49-60: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1161:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1161:64-77: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1164:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1164:64-77: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1183:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1183:64-77: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1261:50-62: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1261:73-86: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1263:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1263:60-73: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1285:50-62: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1285:73-86: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1331:44-56: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1345:44-60: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1352:69-81: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1369:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1372:52-64: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1385:5-13: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1386:5-13: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1387:5-13: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1410:17-40: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1437:59-71: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1480:42-58: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1505:24-36: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1516:22-34: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1534:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1534:76-87: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1541:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1541:65-76: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1590:48-60: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1590:73-83: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1597:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1597:63-73: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1622:15-30: No attribute `OptionalType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1639:14-22: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1641:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1641:22-30: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1641:32-40: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1641:42-50: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1687:13-21: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1688:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1689:17-25: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1690:11-19: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1691:6-14: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1757:54-66: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1757:78-87: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1878:49-61: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1878:73-83: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1882:49-61: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1882:75-85: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1970:45-57: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1970:71-81: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1990:45-57: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1990:71-81: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2016:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2031:44-56: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2031:75-86: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2042:45-57: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2042:69-79: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2050:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2068:44-56: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2068:75-86: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2093:47-59: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2095:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2099:59-71: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2116:71-83: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2155:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2155:61-71: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2165:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2165:61-71: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2182:11-25: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2186:12-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2194:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2194:65-75: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2226:46-58: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2226:71-82: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2232:62-78: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2269:43-55: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2269:67-80: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2278:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2278:64-77: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2333:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2334:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2335:5-16: No attribute `short` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2336:5-14: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2337:5-16: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2338:5-15: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2339:5-16: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2340:5-17: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2341:5-20: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2342:5-20: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2343:5-21: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2344:5-15: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2345:5-16: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2346:5-17: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2347:5-17: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2348:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2355:13-24: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2356:13-23: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2357:15-27: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2358:14-25: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2359:13-23: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2360:12-21: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2361:13-24: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2362:14-25: No attribute `short` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2363:13-23: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2364:21-36: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2365:22-38: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2366:14-25: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2367:15-27: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2368:15-27: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2369:17-31: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:102:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:102:63-74: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:109:40-52: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:109:62-73: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:130:11-19: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:137:6-14: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:143:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:143:62-73: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:161:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:161:62-73: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:214:11-19: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:224:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:230:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:230:62-73: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:252:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:253:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:254:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:261:45-57: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:261:69-80: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:263:52-64: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:263:76-87: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:315:16-24: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:406:16-24: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:495:12-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:496:33-47: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:497:35-49: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:498:33-47: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:499:34-48: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:505:31-45: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:507:42-53: No attribute `NoneType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:518:45-57: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:628:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:635:52-64: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:635:69-81: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:641:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:641:59-71: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:645:46-58: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:771:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:777:13-24: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:783:59-75: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:788:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:798:60-76: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:804:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:1181:15-23: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:1183:15-23: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:1184:20-28: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:1185:6-14: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:100:47-55: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:106:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:110:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:189:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:193:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:320:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:420:43-55: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:420:67-76: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:444:57-73: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:448:14-30: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:449:16-32: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:450:36-52: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:462:51-67: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:591:54-66: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:594:48-60: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:621:46-58: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:621:70-80: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:622:45-57: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:622:71-81: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:635:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:635:66-76: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:656:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:656:60-70: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:683:60-72: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:689:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:689:66-77: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:692:52-64: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:692:74-85: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:702:51-63: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:702:75-86: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:711:47-59: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:715:47-59: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:751:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:752:10-18: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:753:11-19: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:754:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:787:17-28: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:791:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:796:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:801:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:816:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:820:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:844:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:859:56-68: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:892:49-61: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:894:46-56: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:894:66-77: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:996:36-48: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:996:58-71: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1030:36-48: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1030:58-71: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1054:50-62: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1059:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1065:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1067:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1071:19-31: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1080:50-62: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1091:36-52: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1096:57-69: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1097:59-71: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1099:54-66: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1106:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1117:55-67: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1118:55-67: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1258:62-74: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1260:16-28: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1282:49-61: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1282:73-83: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1318:49-63: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1330:61-73: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1338:47-59: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1344:49-63: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1357:61-73: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1369:47-59: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1377:49-63: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1391:61-73: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1410:47-59: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1423:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1423:63-73: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1425:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1425:62-72: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1426:43-55: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1426:72-82: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1428:29-41: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1428:62-72: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1434:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1434:70-80: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1442:52-60: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1447:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1447:56-66: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1452:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1452:64-74: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1474:52-60: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:90:39-53: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:91:12-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:91:28-42: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:97:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:98:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:98:60-70: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:215:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:274:12-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:275:10-24: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:285:12-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:286:10-24: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:319:46-58: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:320:44-56: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:321:43-55: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:326:54-66: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:329:53-65: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:338:51-63: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:354:52-64: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:428:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:428:59-69: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:437:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:437:59-69: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:451:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:451:59-69: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:460:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:460:59-69: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:78:46-58: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:78:70-80: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:79:45-57: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:79:71-81: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:92:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:92:66-76: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:115:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:144:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:144:61-71: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:146:40-52: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:146:62-72: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:152:46-58: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:152:70-80: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:159:46-58: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:159:70-80: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:189:33-45: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:189:71-81: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:199:62-74: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:206:46-58: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:206:70-80: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:242:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:242:61-71: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:285:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:285:60-70: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:290:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:294:55-67: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:315:52-64: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:351:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:351:62-73: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:389:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:389:62-73: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:471:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:471:74-85: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:477:47-59: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:477:71-82: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:479:50-62: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:479:74-85: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:484:46-58: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:484:70-81: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:489:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:489:58-69: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:492:29-41: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:492:72-83: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:510:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:510:60-70: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:527:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:527:66-76: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:537:43-55: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:548:59-75: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:566:56-72: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:614:47-59: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:616:15-27: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:616:37-48: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:646:54-70: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:649:63-79: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:664:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:664:41-51: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:682:47-59: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:704:45-61: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:706:45-61: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:711:57-73: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:737:47-63: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:740:47-63: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:768:42-58: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:773:38-54: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:780:38-54: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:795:34-50: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:800:34-50: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:804:61-77: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:826:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:826:60-71: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:87:9-34: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:144:12-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:145:10-24: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:146:12-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:147:16-30: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:150:12-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:194:47-59: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:195:50-62: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:222:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:222:68-79: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:229:39-53: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:230:6-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:243:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:243:59-70: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:245:33-45: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:245:76-87: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:253:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:253:68-79: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:265:39-53: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:265:60-74: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:266:6-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:285:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:285:66-77: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:286:48-60: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:286:73-84: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:291:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:296:43-55: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:297:46-58: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py:47:36-51: No attribute `OptionalType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py:51:45-61: No attribute `BoolTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py:81:32-47: No attribute `OptionalType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:99:43-55: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:129:11-25: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:131:12-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:132:10-24: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:158:54-66: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:158:76-87: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:163:47-59: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:163:72-83: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:47:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:49:13-21: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:50:11-19: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:64:24-34: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:67:22-33: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:109:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:113:22-30: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:118:6-14: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:155:29-41: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:155:66-77: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:158:29-41: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:158:55-66: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:169:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:169:62-73: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:191:49-60: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:192:50-61: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:208:28-40: No attribute `hstack` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:209:18-29: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:209:37-47: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:209:61-72: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:213:28-38: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:241:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:241:62-73: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:246:21-31: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:246:32-44: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:68:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:69:18-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:70:18-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:123:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:125:13-21: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:126:11-19: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:128:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:128:22-30: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:128:32-40: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:175:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:175:61-71: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:183:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:183:61-71: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:193:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:193:67-77: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:217:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:217:65-75: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:225:11-25: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:226:10-24: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:229:12-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:266:11-25: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:270:12-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:54:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:55:11-19: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:80:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:81:11-19: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:94:43-51: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py:258:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py:432:67-79: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py:457:44-60: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py:468:51-63: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:322:15-30: No attribute `OptionalType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:423:43-55: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:481:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:481:63-74: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:492:40-52: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:492:62-73: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:525:19-42: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:527:27-38: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:527:57-69: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:528:8-31: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:528:37-49: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:603:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:648:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:654:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:697:51-61: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:743:43-55: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:744:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:853:41-57: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:859:60-72: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:863:54-66: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:873:41-57: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:879:60-72: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:883:54-66: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:894:28-40: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:897:16-27: No attribute `equal` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:967:44-56: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1254:51-67: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1274:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1555:16-24: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1777:53-61: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1777:68-76: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1847:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1848:10-18: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1849:11-19: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1850:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2004:32-48: No attribute `DeviceObjType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2005:23-39: No attribute `DeviceObjType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2009:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2009:66-76: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2019:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2021:27-37: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2164:36-48: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2164:58-71: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2193:36-48: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2193:58-71: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2216:52-64: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2659:9-34: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2704:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2706:13-21: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2707:11-19: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2709:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2709:22-30: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2709:32-40: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2721:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2721:63-73: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2746:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2746:63-73: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2785:12-20: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2787:13-21: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2788:11-19: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2791:6-14: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2818:24-36: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2829:22-34: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2858:49-61: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2858:73-84: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2861:47-59: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2861:71-82: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2866:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2866:62-73: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2871:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2871:62-73: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2876:38-54: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2890:54-66: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3067:68-80: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3075:40-52: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3078:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3078:58-69: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3110:61-71: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3116:63-75: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3454:56-72: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3485:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3485:62-73: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3489:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3515:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3545:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3545:62-73: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3549:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3575:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3597:60-72: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3606:46-58: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3606:66-77: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3636:65-77: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3642:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3696:27-38: No attribute `NoneType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3699:25-36: No attribute `NoneType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3742:27-38: No attribute `NoneType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3745:25-36: No attribute `NoneType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3763:47-55: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3801:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3810:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3823:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3832:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3842:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3935:47-58: No attribute `ListType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3936:47-63: No attribute `DeviceObjType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4038:47-59: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4040:15-27: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4040:37-48: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4099:38-54: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4101:38-54: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4108:38-54: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4129:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4138:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4144:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4155:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4174:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4200:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4206:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4213:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4224:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4243:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4463:42-58: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4664:56-68: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4694:39-58: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4749:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4749:45-56: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4814:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4814:45-56: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4840:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4840:45-56: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5014:54-66: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5014:76-86: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5040:12-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5041:10-24: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5051:12-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5052:10-24: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5086:43-54: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5096:63-75: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5102:41-57: No attribute `BoolTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5103:37-53: No attribute `BoolTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5110:45-61: No attribute `BoolTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5111:41-57: No attribute `BoolTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5123:39-55: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5145:39-55: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5146:52-68: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5278:48-60: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5278:70-81: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5392:46-62: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5428:46-62: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5475:11-25: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5476:10-24: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5479:12-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5486:44-60: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5499:48-64: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5510:11-25: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5514:12-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5523:11-25: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5524:10-24: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5527:12-26: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5568:51-67: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5576:51-67: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5652:44-60: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5660:45-55: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5660:65-76: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5680:43-57: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5685:16-28: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5685:42-54: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5686:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5686:44-56: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5687:15-27: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5687:39-51: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5688:16-28: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5688:40-52: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5695:45-57: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5695:72-84: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5697:46-58: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5697:68-80: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5702:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5702:62-74: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5721:44-60: No attribute `LongTensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5729:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5736:17-29: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5748:24-36: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5753:22-34: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5808:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5822:53-65: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5833:43-55: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5833:68-79: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5852:52-64: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5900:43-55: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5900:68-79: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5904:15-27: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5904:39-49: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5908:25-37: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5920:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5921:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5926:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5929:58-70: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5937:53-65: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5967:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5967:64-75: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5968:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5968:63-74: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5991:18-41: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5993:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6001:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6001:65-76: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6006:56-68: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6006:78-87: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6265:55-67: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6273:54-66: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6344:60-72: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6358:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6369:11-19: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6403:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6425:32-48: No attribute `DeviceObjType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6436:68-76: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6466:49-64: No attribute `OptionalType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6469:9-38: No attribute `_jit_pass_onnx_block` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6477:21-67: No attribute `_jit_pass_fixup_onnx_controlflow_node` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6482:9-58: No attribute `_jit_pass_onnx_node_shape_type_inference` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6489:66-74: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6532:15-44: No attribute `_jit_pass_onnx_block` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6560:13-42: No attribute `_jit_pass_onnx_block` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6568:25-71: No attribute `_jit_pass_fixup_onnx_controlflow_node` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6573:13-62: No attribute `_jit_pass_onnx_node_shape_type_inference` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6588:41-57: No attribute `DeviceObjType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6595:9-20: No attribute `ListType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6596:43-54: No attribute `ListType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6598:33-45: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6600:41-52: No attribute `ListType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6615:56-64: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6635:12-60: No attribute `_jit_onnx_convert_pattern_from_subblock` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6642:62-70: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6653:69-77: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6671:44-58: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6671:65-79: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6672:36-48: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:192:29-56: No attribute `_jit_is_onnx_log_enabled` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:194:9-37: No attribute `_jit_set_onnx_log_enabled` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:199:13-41: No attribute `_jit_set_onnx_log_enabled` in module `torch._C` [missing-attribute] + WARN torch/onnx/_internal/torchscript_exporter/utils.py:216:9-37: `select_model_mode_for_export` is deprecated [deprecated] + WARN torch/onnx/_internal/torchscript_exporter/utils.py:217:9-40: `disable_apex_o2_state_dict_hook` is deprecated [deprecated] + WARN torch/onnx/_internal/torchscript_exporter/utils.py:218:9-27: `setup_onnx_logging` is deprecated [deprecated] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:578:32-43: No attribute `ListType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:580:32-43: No attribute `ListType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:580:44-59: No attribute `OptionalType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:604:26-37: No attribute `ListType` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:611:12-20: No attribute `Graph` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:624:5-24: No attribute `_jit_pass_inline` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:627:5-34: No attribute `_jit_pass_inline_fork_wait` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:628:5-22: No attribute `_jit_pass_lint` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:630:9-52: No attribute `_jit_pass_onnx_autograd_function_process` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:631:5-34: No attribute `_jit_pass_lower_all_tuples` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:638:9-42: No attribute `_jit_pass_constant_propagation` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:643:5-21: No attribute `_jit_pass_dce` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:644:5-22: No attribute `_jit_pass_lint` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:649:8-24: No attribute `_jit_pass_cse` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:650:9-31: No attribute `_jit_pass_onnx_lint` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:652:5-46: No attribute `_jit_pass_canonicalize_graph_fuser_ops` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:653:5-22: No attribute `_jit_pass_lint` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:654:5-26: No attribute `_jit_pass_peephole` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:655:5-28: No attribute `_jit_pass_fuse_addmm` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:656:5-22: No attribute `_jit_pass_lint` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:658:5-26: No attribute `_jit_pass_peephole` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:659:5-34: No attribute `_jit_pass_lower_all_tuples` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:666:5-50: No attribute `_jit_pass_onnx_remove_inplace_ops_for_onnx` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:667:5-33: No attribute `_jit_pass_onnx_preprocess` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:670:5-22: No attribute `_jit_pass_lint` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:673:5-43: No attribute `_jit_pass_prepare_division_for_onnx` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:675:5-35: No attribute `_jit_pass_onnx_remove_print` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:676:5-40: No attribute `_jit_pass_onnx_preprocess_caffe2` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:680:5-47: No attribute `_jit_pass_onnx_unpack_quantized_weights` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:682:5-36: No attribute `_jit_pass_erase_number_types` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:686:9-50: No attribute `_jit_pass_onnx_set_dynamic_input_shape` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:687:5-27: No attribute `_jit_pass_onnx_lint` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:689:13-30: No attribute `_jit_pass_onnx` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:690:5-27: No attribute `_jit_pass_onnx_lint` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:691:5-22: No attribute `_jit_pass_lint` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:693:5-43: No attribute `_jit_pass_onnx_scalar_type_analysis` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:696:5-22: No attribute `_jit_pass_lint` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:698:5-31: No attribute `_jit_pass_onnx_peephole` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:701:5-22: No attribute `_jit_pass_lint` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:708:5-60: No attribute `_jit_pass_dce_allow_deleting_nodes_with_side_effects` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:709:5-22: No attribute `_jit_pass_lint` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:710:13-38: No attribute `_jit_pass_canonicalize` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:711:5-22: No attribute `_jit_pass_lint` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:714:13-57: No attribute `_jit_pass_onnx_graph_shape_type_inference` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:901:35-66: No attribute `is_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:902:5-37: No attribute `set_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:910:5-37: No attribute `set_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:961:12-20: No attribute `Graph` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:961:27-36: No attribute `IValue` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:961:51-66: No attribute `ScriptModule` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:972:13-52: No attribute `_jit_pass_onnx_function_substitution` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:973:30-47: No attribute `_freeze_module` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:974:22-37: No attribute `ScriptModule` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:976:30-64: No attribute `_jit_onnx_list_model_parameters` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:981:21-58: No attribute `_propagate_and_assign_input_shapes` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:989:9-48: No attribute `_jit_pass_onnx_function_substitution` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:991:17-54: No attribute `_propagate_and_assign_input_shapes` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:997:5-27: No attribute `_jit_pass_onnx_lint` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1006:5-44: No attribute `_jit_pass_onnx_function_substitution` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1034:5-17: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1034:19-30: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1035:5-16: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1035:18-28: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1036:5-17: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1036:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1037:5-19: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1037:21-31: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1045:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1045:49-61: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1047:18-30: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1047:54-67: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1050:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1050:54-65: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1052:18-30: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1087:5-13: No attribute `Graph` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1127:9-25: No attribute `_jit_onnx_log` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1137:9-46: No attribute `_jit_pass_onnx_assign_output_shape` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1159:13-50: No attribute `_jit_pass_onnx_assign_output_shape` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1177:27-58: No attribute `_jit_pass_onnx_eval_peephole` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1179:23-54: No attribute `_jit_pass_onnx_constant_fold` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1182:9-64: No attribute `_jit_pass_dce_allow_deleting_nodes_with_side_effects` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1186:13-57: No attribute `_jit_pass_onnx_graph_shape_type_inference` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1194:19-59: No attribute `_jit_pass_onnx_eliminate_unused_items` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1199:9-56: No attribute `_jit_pass_onnx_cast_all_constant_to_floating` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1201:19-59: No attribute `_jit_pass_filter_non_tensor_arguments` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1202:5-43: No attribute `_jit_decay_packed_param_input_types` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1219:12-20: No attribute `Graph` in module `torch._C` [missing-attribute] + WARN torch/onnx/_internal/torchscript_exporter/utils.py:1244:14-30: `exporter_context` is deprecated [deprecated] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1255:13-32: No attribute `_jit_pass_inline` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1256:13-58: No attribute `_jit_pass_onnx_remove_inplace_ops_for_onnx` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1257:13-44: No attribute `_jit_pass_erase_number_types` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1258:13-68: No attribute `_jit_pass_dce_allow_deleting_nodes_with_side_effects` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1296:29-50: No attribute `_get_tracing_state` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1306:13-53: No attribute `_jit_pass_onnx_track_scope_attributes` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1332:13-54: No attribute `_jit_onnx_create_full_scope_name` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1364:5-42: No attribute `_jit_pass_onnx_clear_scope_records` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1386:13-29: No attribute `_jit_onnx_log` in module `torch._C` [missing-attribute] + WARN torch/onnx/_internal/torchscript_exporter/utils.py:1490:14-30: `exporter_context` is deprecated [deprecated] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1529:13-68: No attribute `_jit_pass_dce_allow_deleting_nodes_with_side_effects` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1533:37-74: No attribute `_jit_pass_onnx_function_extraction` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1545:13-69: No attribute `_jit_pass_onnx_assign_scoped_names_for_node_and_value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1591:17-33: No attribute `_jit_onnx_log` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1670:22-29: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1670:34-42: No attribute `Block` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1674:32-40: No attribute `Block` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1678:33-41: No attribute `Block` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1678:50-58: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1703:35-42: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1708:12-27: No attribute `parse_schema` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1712:12-20: No attribute `Graph` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1713:12-20: No attribute `Block` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1714:11-18: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1716:15-23: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1716:25-33: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1717:24-32: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1718:21-28: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1720:6-14: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/_internal/torchscript_exporter/utils.py:1720:26-34: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/errors.py:60:41-49: No attribute `Value` in module `torch._C` [missing-attribute] +ERROR torch/onnx/operators.py:33:19-41: No attribute `_shape_as_tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/operators.py:47:29-55: No attribute `_reshape_from_tensor` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:32:5-18: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:33:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:34:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:35:5-17: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:36:5-16: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:37:5-16: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:38:5-16: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:40:5-15: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:41:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:42:5-17: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:43:5-17: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:44:5-17: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:45:5-20: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:46:5-21: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:47:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:48:5-24: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:49:5-26: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:50:5-22: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:51:5-26: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:54:5-27: No attribute `float4_e2m1fn_x2` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:91:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/__init__.py:192:22-33: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:4:38-49: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:5:8-21: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:6:8-19: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:7:8-18: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:8:8-20: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:9:8-19: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:10:8-19: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:11:8-19: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:12:8-18: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:13:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:14:9-21: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:15:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:16:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:17:9-24: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:18:9-25: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:19:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:20:9-28: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:21:9-30: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:22:9-26: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:23:9-30: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:24:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:25:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_dtype_mappings.py:26:9-31: No attribute `float4_e2m1fn_x2` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:117:13-26: No attribute `permute` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:126:13-26: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:167:11-26: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:170:11-26: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:179:18-29: No attribute `chunk` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:189:16-31: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:190:16-31: No attribute `unsqueeze` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:191:27-36: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:192:20-33: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:194:20-29: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:195:14-23: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:197:16-29: No attribute `reshape` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:200:12-25: No attribute `permute` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:236:16-32: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:236:33-45: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:268:12-24: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:347:14-25: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:348:19-30: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:349:21-32: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:350:17-28: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:402:9-18: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:407:9-18: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:426:54-64: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:464:21-32: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:473:27-37: No attribute `tril` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:474:17-27: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:477:27-37: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:485:35-45: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:501:28-40: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:514:38-48: No attribute `tanh` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:527:30-43: No attribute `softmax` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:530:30-43: No attribute `softmax` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:532:26-39: No attribute `softmax` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_impl.py:538:18-30: No attribute `matmul` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_symbolic_impl.py:204:12-23: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_symbolic_impl.py:233:12-23: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_symbolic_impl.py:277:13-24: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/onnx/ops/_symbolic_impl.py:315:13-24: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:69:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:84:16-32: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:98:33-45: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:111:41-57: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:112:47-68: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:373:20-31: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:422:20-32: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:422:44-55: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:430:24-36: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:430:48-59: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:506:20-31: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:519:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:520:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:523:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:540:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:553:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:554:13-32: No attribute `_foreach_div_` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:555:13-33: No attribute `_foreach_lerp_` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:562:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:563:13-32: No attribute `_foreach_div_` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:564:13-33: No attribute `_foreach_lerp_` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:576:13-38: No attribute `_foreach_clamp_min_` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:577:13-32: No attribute `_foreach_div_` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:584:29-47: No attribute `_foreach_mul` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:585:13-33: No attribute `_foreach_lerp_` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:592:9-34: No attribute `_foreach_clamp_min_` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:593:9-30: No attribute `_foreach_rsqrt_` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:594:9-28: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:601:9-28: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/_adafactor.py:602:9-28: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/_muon.py:64:23-34: No attribute `addmm` in module `torch` [missing-attribute] +ERROR torch/optim/_muon.py:67:22-33: No attribute `addmm` in module `torch` [missing-attribute] +ERROR torch/optim/_muon.py:75:58-68: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/optim/_muon.py:149:16-32: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/_muon.py:160:44-60: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/_muon.py:161:43-64: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:77:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:81:30-42: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:98:28-44: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:109:21-32: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:111:26-37: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:114:39-55: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:115:38-59: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:117:38-54: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:118:38-59: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:287:12-28: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:288:26-44: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:289:25-43: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:290:20-38: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:300:12-28: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:301:21-42: No attribute `view_as_complex` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:368:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:369:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:372:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:380:17-36: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:386:9-28: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:387:9-32: No attribute `_foreach_addcmul_` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:391:15-33: No attribute `_foreach_add` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:392:9-29: No attribute `_foreach_sqrt_` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:394:18-36: No attribute `_foreach_add` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:395:9-29: No attribute `_foreach_sqrt_` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:396:9-28: No attribute `_foreach_div_` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:397:9-28: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:399:9-28: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:400:9-32: No attribute `_foreach_addcmul_` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:405:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:406:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adadelta.py:408:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:81:21-32: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:87:26-38: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:91:24-40: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:94:32-47: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:95:50-71: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:115:29-41: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:138:32-48: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:320:12-35: No attribute `sparse_coo_tensor` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:375:26-42: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:377:24-42: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:378:29-47: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:379:25-43: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:387:25-46: No attribute `view_as_complex` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:388:29-50: No attribute `view_as_complex` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:468:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:469:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:472:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:477:17-36: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:487:9-32: No attribute `_foreach_addcmul_` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:489:15-34: No attribute `_foreach_sqrt` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:490:9-28: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:494:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:499:9-32: No attribute `_foreach_addcdiv_` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:562:9-28: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:563:9-30: No attribute `_fused_adagrad_` in module `torch` [missing-attribute] +ERROR torch/optim/adagrad.py:577:13-32: No attribute `_foreach_sub_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:130:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:136:30-42: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:152:32-48: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:169:25-36: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:175:30-42: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:178:40-56: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:179:42-63: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:182:43-59: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:183:42-63: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:187:51-67: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:188:46-67: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:431:12-28: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:432:20-38: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:433:23-41: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:434:26-44: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:436:38-56: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:437:21-39: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:470:34-46: No attribute `square` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:511:42-55: No attribute `maximum` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:540:17-30: No attribute `maximum` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:550:24-40: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:551:34-55: No attribute `view_as_complex` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:683:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:684:37-49: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:687:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:692:17-36: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:696:21-40: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:705:9-29: No attribute `_foreach_lerp_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:709:9-28: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:722:9-32: No attribute `_foreach_addcmul_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:738:13-32: No attribute `_foreach_sub_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:739:13-32: No attribute `_foreach_sub_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:741:13-32: No attribute `_foreach_neg_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:744:13-32: No attribute `_foreach_div_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:745:13-39: No attribute `_foreach_reciprocal_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:747:13-33: No attribute `_foreach_sqrt_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:761:35-54: No attribute `_foreach_sqrt` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:763:35-54: No attribute `_foreach_sqrt` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:765:13-32: No attribute `_foreach_div_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:766:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:767:13-32: No attribute `_foreach_div_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:770:13-36: No attribute `_foreach_addcdiv_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:786:17-40: No attribute `_foreach_maximum_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:789:35-54: No attribute `_foreach_sqrt` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:791:35-54: No attribute `_foreach_sqrt` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:793:13-32: No attribute `_foreach_div_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:794:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:795:13-36: No attribute `_foreach_addcdiv_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:877:9-28: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:878:16-34: No attribute `_fused_adam_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:878:70-89: No attribute `_fused_adamw_` in module `torch` [missing-attribute] +ERROR torch/optim/adam.py:897:13-32: No attribute `_foreach_sub_` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:80:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:84:30-42: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:94:28-44: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:105:21-32: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:107:26-38: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:109:36-52: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:110:38-59: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:112:36-52: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:113:38-59: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:270:12-28: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:271:21-39: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:272:20-38: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:273:23-41: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:274:23-41: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:280:13-26: No attribute `maximum` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:286:24-33: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:290:27-37: No attribute `amax` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:374:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:375:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:378:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:383:17-36: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:390:9-29: No attribute `_foreach_lerp_` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:393:9-28: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:400:13-32: No attribute `_foreach_abs_` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:402:9-28: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:403:9-32: No attribute `_foreach_maximum_` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:407:32-50: No attribute `_foreach_pow` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:409:13-32: No attribute `_foreach_sub_` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:410:13-32: No attribute `_foreach_div_` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:412:21-39: No attribute `_foreach_mul` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:413:13-36: No attribute `_foreach_addcdiv_` in module `torch` [missing-attribute] +ERROR torch/optim/adamax.py:419:13-36: No attribute `_foreach_addcdiv_` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:75:43-55: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:79:42-54: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:83:41-53: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:91:32-48: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:100:37-48: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:104:25-40: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:112:35-45: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:115:35-51: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:116:42-63: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:241:12-28: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:242:20-38: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:243:21-39: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:244:18-36: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:269:26-39: No attribute `maximum` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:269:53-68: No attribute `ones_like` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:272:23-38: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:274:22-37: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:351:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:352:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:355:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:361:17-36: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:364:32-50: No attribute `_foreach_add` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:368:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:370:28-46: No attribute `_foreach_add` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:378:9-32: No attribute `_foreach_addcmul_` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:389:24-42: No attribute `_foreach_sub` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:390:9-32: No attribute `_foreach_addcmul_` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:397:23-41: No attribute `_foreach_sub` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:398:13-36: No attribute `_foreach_maximum_` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:399:13-39: No attribute `_foreach_reciprocal_` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:400:13-33: No attribute `_foreach_copy_` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:404:24-42: No attribute `_foreach_mul` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:405:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:406:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:407:13-32: No attribute `_foreach_pow_` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:408:13-39: No attribute `_foreach_reciprocal_` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:409:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:410:13-33: No attribute `_foreach_copy_` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:413:17-32: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:417:17-32: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:420:13-33: No attribute `_foreach_copy_` in module `torch` [missing-attribute] +ERROR torch/optim/asgd.py:421:13-33: No attribute `_foreach_copy_` in module `torch` [missing-attribute] +ERROR torch/optim/lbfgs.py:46:31-54: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/optim/lbfgs.py:61:60-83: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/optim/lbfgs.py:75:60-83: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/optim/lbfgs.py:90:44-67: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/optim/lbfgs.py:287:34-50: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/lbfgs.py:302:16-32: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/lbfgs.py:303:24-42: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/lbfgs.py:305:16-25: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/optim/lbfgs.py:310:16-32: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/lbfgs.py:311:21-39: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/lbfgs.py:320:39-62: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/optim/lbfgs.py:440:25-34: No attribute `mul` in module `torch` [missing-attribute] +ERROR torch/optim/lbfgs.py:446:64-87: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:90:29-41: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:94:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:99:29-41: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:103:34-46: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:119:32-48: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:132:25-36: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:134:30-42: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:137:25-35: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:139:30-42: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:142:40-56: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:143:42-63: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:146:43-59: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:147:42-63: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:311:12-28: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:312:21-39: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:313:20-38: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:314:23-41: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:315:26-44: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:457:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:458:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:461:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:466:17-36: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:470:21-40: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:479:9-29: No attribute `_foreach_lerp_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:481:9-28: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:482:9-32: No attribute `_foreach_addcmul_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:486:27-46: No attribute `_foreach_sqrt` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:493:24-42: No attribute `_foreach_mul` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:494:19-37: No attribute `_foreach_pow` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:495:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:496:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:497:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:500:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:501:24-42: No attribute `_foreach_pow` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:502:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:503:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:504:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:509:36-54: No attribute `_foreach_pow` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:511:13-32: No attribute `_foreach_sub_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:512:13-32: No attribute `_foreach_neg_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:513:13-33: No attribute `_foreach_sqrt_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:529:9-28: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:531:9-28: No attribute `_foreach_div_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:532:9-28: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:539:13-32: No attribute `_foreach_sub_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:540:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:542:21-39: No attribute `_foreach_sub` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:543:13-32: No attribute `_foreach_neg_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:544:13-32: No attribute `_foreach_div_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:551:21-39: No attribute `_foreach_mul` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:552:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:555:13-32: No attribute `_foreach_sub_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:556:13-32: No attribute `_foreach_div_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:564:25-43: No attribute `_foreach_mul` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:565:13-36: No attribute `_foreach_addcmul_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:568:13-36: No attribute `_foreach_addcdiv_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:590:13-36: No attribute `_foreach_addcdiv_` in module `torch` [missing-attribute] +ERROR torch/optim/nadam.py:596:13-36: No attribute `_foreach_addcdiv_` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:31:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:33:20-32: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:33:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:67:21-42: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:103:16-27: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:179:17-40: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:200:58-81: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:209:12-28: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:210:25-43: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:212:24-42: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:217:16-29: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:219:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:219:26-49: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:219:55-68: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:219:74-87: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:227:45-83: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/optim/optimizer.py:381:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/optim/optimizer.py:546:20-32: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:546:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:792:39-52: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:1045:25-37: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:1045:51-62: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/optim/optimizer.py:1080:25-45: No attribute `_foreach_zero_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:85:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:89:30-42: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:98:32-48: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:108:25-36: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:110:30-42: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:113:40-56: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:114:42-63: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:117:43-59: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:118:42-63: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:294:12-28: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:295:21-39: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:296:20-38: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:297:23-41: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:298:26-44: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:346:22-33: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:424:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:425:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:428:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:445:32-50: No attribute `_foreach_pow` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:446:13-32: No attribute `_foreach_neg_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:447:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:448:32-50: No attribute `_foreach_pow` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:449:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:450:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:451:13-32: No attribute `_foreach_div_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:452:13-32: No attribute `_foreach_neg_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:453:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:467:17-36: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:471:21-40: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:480:9-29: No attribute `_foreach_lerp_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:482:9-28: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:483:9-32: No attribute `_foreach_addcmul_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:491:19-37: No attribute `_foreach_sub` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:492:20-38: No attribute `_foreach_sub` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:493:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:495:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:497:21-39: No attribute `_foreach_mul` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:498:13-32: No attribute `_foreach_div_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:500:13-33: No attribute `_foreach_sqrt_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:504:17-28: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:509:33-44: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:510:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:512:32-50: No attribute `_foreach_pow` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:513:13-32: No attribute `_foreach_neg_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:514:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:516:13-32: No attribute `_foreach_div_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:517:13-32: No attribute `_foreach_neg_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:519:32-50: No attribute `_foreach_pow` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:520:13-32: No attribute `_foreach_neg_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:521:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:522:13-33: No attribute `_foreach_sqrt_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:523:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:524:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:526:13-32: No attribute `_foreach_neg_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:527:13-32: No attribute `_foreach_div_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:558:18-37: No attribute `_foreach_sqrt` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:559:9-28: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:560:9-28: No attribute `_foreach_div_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:561:9-35: No attribute `_foreach_reciprocal_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:562:9-28: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/radam.py:565:9-32: No attribute `_foreach_addcmul_` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:86:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:90:30-42: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:107:28-44: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:119:21-32: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:121:26-37: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:123:39-55: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:124:38-59: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:127:48-64: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:128:42-63: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:131:41-57: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:132:42-63: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:310:28-44: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:312:21-39: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:313:20-38: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:314:26-44: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:321:28-46: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:335:23-41: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:419:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:420:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:423:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:428:17-36: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:434:9-28: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:435:9-32: No attribute `_foreach_addcmul_` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:441:13-33: No attribute `_foreach_lerp_` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:442:19-41: No attribute `_foreach_addcmul` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:445:13-33: No attribute `_foreach_sqrt_` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:446:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:448:19-38: No attribute `_foreach_sqrt` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:449:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:455:13-32: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:456:13-36: No attribute `_foreach_addcdiv_` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:460:31-49: No attribute `_foreach_mul` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:461:17-36: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:463:17-36: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:470:17-36: No attribute `_foreach_div_` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:471:17-40: No attribute `_foreach_addcdiv_` in module `torch` [missing-attribute] +ERROR torch/optim/rmsprop.py:473:17-40: No attribute `_foreach_addcdiv_` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:73:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:77:30-42: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:85:28-44: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:97:21-32: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:99:26-37: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:102:33-49: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:102:67-88: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:106:42-57: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:110:42-57: No attribute `full_like` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:259:12-28: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:260:20-38: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:261:20-38: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:262:21-39: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:263:25-43: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:270:24-35: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:271:24-35: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:272:24-35: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:283:41-62: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:285:24-35: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:349:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:350:38-50: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:353:13-32: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:361:17-35: No attribute `_foreach_mul` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:363:13-32: No attribute `_foreach_neg_` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:368:9-29: No attribute `_foreach_copy_` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:370:13-32: No attribute `_foreach_neg_` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:373:9-29: No attribute `_foreach_sign_` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:376:28-39: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:377:28-39: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:378:28-39: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:386:9-28: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:395:17-28: No attribute `where` in module `torch` [missing-attribute] +ERROR torch/optim/rprop.py:403:9-32: No attribute `_foreach_addcmul_` in module `torch` [missing-attribute] +ERROR torch/optim/sgd.py:428:17-36: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/sgd.py:446:17-36: No attribute `_foreach_mul_` in module `torch` [missing-attribute] +ERROR torch/optim/sgd.py:447:17-36: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/sgd.py:463:17-36: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/sgd.py:470:30-48: No attribute `_foreach_mul` in module `torch` [missing-attribute] +ERROR torch/optim/sgd.py:471:17-36: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/sgd.py:473:17-36: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/sgd.py:512:39-55: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/optim/sgd.py:530:9-26: No attribute `_fused_sgd_` in module `torch` [missing-attribute] +ERROR torch/optim/sparse_adam.py:101:44-60: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/sparse_adam.py:102:46-67: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/sparse_adam.py:105:47-63: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/optim/sparse_adam.py:106:46-67: No attribute `preserve_format` in module `torch` [missing-attribute] +ERROR torch/optim/swa_utils.py:50:12-35: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/optim/swa_utils.py:50:58-74: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/swa_utils.py:53:13-33: No attribute `_foreach_lerp_` in module `torch` [missing-attribute] +ERROR torch/optim/swa_utils.py:71:12-35: No attribute `is_floating_point` in module `torch` [missing-attribute] +ERROR torch/optim/swa_utils.py:71:63-79: No attribute `is_complex` in module `torch` [missing-attribute] +ERROR torch/optim/swa_utils.py:74:13-33: No attribute `_foreach_lerp_` in module `torch` [missing-attribute] +ERROR torch/optim/swa_utils.py:80:21-39: No attribute `_foreach_sub` in module `torch` [missing-attribute] +ERROR torch/optim/swa_utils.py:82:17-40: No attribute `_foreach_addcdiv_` in module `torch` [missing-attribute] +ERROR torch/optim/swa_utils.py:88:17-36: No attribute `_foreach_add_` in module `torch` [missing-attribute] +ERROR torch/optim/swa_utils.py:226:37-49: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/optim/swa_utils.py:242:27-39: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/optim/swa_utils.py:242:49-59: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/optim/swa_utils.py:333:33-45: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/package/package_exporter.py:219:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/package/package_exporter.py:227:25-51: No attribute `PyTorchFileWriter` in module `torch._C` [missing-attribute] +ERROR torch/package/package_exporter.py:239:41-72: No attribute `ScriptModuleSerializer` in module `torch._C` [missing-attribute] +ERROR torch/package/package_importer.py:88:41-67: No attribute `PyTorchFileReader` in module `torch._C` [missing-attribute] +ERROR torch/package/package_importer.py:104:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/package/package_importer.py:107:39-65: No attribute `PyTorchFileReader` in module `torch._C` [missing-attribute] +ERROR torch/package/package_importer.py:113:35-61: No attribute `PyTorchFileReader` in module `torch._C` [missing-attribute] +ERROR torch/package/package_importer.py:118:31-57: No attribute `PyTorchFileReader` in module `torch._C` [missing-attribute] +ERROR torch/package/package_importer.py:120:9-41: No attribute `_log_api_usage_metadata` in module `torch._C` [missing-attribute] +ERROR torch/package/package_importer.py:157:9-22: Class member `PackageImporter.import_module` overrides parent class `Importer` in an inconsistent manner [bad-param-name-override] +ERROR torch/package/package_importer.py:231:27-65: No attribute `DeserializationStorageContext` in module `torch._C` [missing-attribute] +ERROR torch/package/package_importer.py:242:48-74: No attribute `PyTorchFileReader` in module `torch._C` [missing-attribute] +ERROR torch/package/package_importer.py:255:29-40: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/package/package_importer.py:374:18-32: Module `importlib.util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/profiler/_memory_profiler.py:11:22-36: Could not import `FunctionSchema` from `torch._C` [missing-module-attribute] +ERROR torch/profiler/_memory_profiler.py:67:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/profiler/_memory_profiler.py:116:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/profiler/_memory_profiler.py:266:36-57: No attribute `OptionalType` in module `torch._C` [missing-attribute] +ERROR torch/profiler/_memory_profiler.py:270:36-52: No attribute `AnyType` in module `torch._C` [missing-attribute] +ERROR torch/profiler/_memory_profiler.py:273:36-53: No attribute `ListType` in module `torch._C` [missing-attribute] +ERROR torch/profiler/_memory_profiler.py:279:14-33: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/profiler/_memory_profiler.py:280:14-31: No attribute `NoneType` in module `torch._C` [missing-attribute] +ERROR torch/profiler/_memory_profiler.py:281:14-31: No attribute `BoolType` in module `torch._C` [missing-attribute] +ERROR torch/profiler/_memory_profiler.py:282:14-30: No attribute `IntType` in module `torch._C` [missing-attribute] +ERROR torch/profiler/_memory_profiler.py:283:14-32: No attribute `FloatType` in module `torch._C` [missing-attribute] +ERROR torch/profiler/_memory_profiler.py:284:14-34: No attribute `ComplexType` in module `torch._C` [missing-attribute] +ERROR torch/profiler/_memory_profiler.py:285:14-33: No attribute `NumberType` in module `torch._C` [missing-attribute] +ERROR torch/profiler/_memory_profiler.py:315:26-64: No attribute `_jit_get_schemas_for_operator` in module `torch._C` [missing-attribute] +ERROR torch/profiler/_memory_profiler.py:380:62-75: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/profiler/_memory_profiler.py:678:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/profiler/_memory_profiler.py:1006:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/profiler/_memory_profiler.py:1074:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/profiler/_memory_profiler.py:1158:16-40: Could not find import of `matplotlib.pyplot` [missing-import] +ERROR torch/profiler/_memory_profiler.py:1167:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/profiler/_pattern_matcher.py:337:23-34: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/profiler/_pattern_matcher.py:337:66-79: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/profiler/_pattern_matcher.py:338:23-34: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/profiler/_pattern_matcher.py:338:66-79: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/profiler/_pattern_matcher.py:555:26-40: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/profiler/_pattern_matcher.py:555:42-52: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/profiler/_pattern_matcher.py:567:23-34: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/profiler/_pattern_matcher.py:567:66-79: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/profiler/_pattern_matcher.py:568:23-34: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/profiler/_pattern_matcher.py:568:66-79: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/profiler/_pattern_matcher.py:573:23-34: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/profiler/_pattern_matcher.py:574:69-82: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/profiler/_pattern_matcher.py:576:23-34: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/profiler/_pattern_matcher.py:577:69-82: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/profiler/_utils.py:323:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/profiler/_utils.py:325:23-36: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/profiler/_utils.py:327:25-37: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/profiler/_utils.py:329:23-36: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/profiler/_utils.py:331:44-54: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/profiler/_utils.py:331:69-78: No attribute `std` in module `torch` [missing-attribute] +ERROR torch/profiler/_utils.py:332:44-54: No attribute `mean` in module `torch` [missing-attribute] +ERROR torch/profiler/_utils.py:332:69-78: No attribute `std` in module `torch` [missing-attribute] +ERROR torch/profiler/profiler.py:17:22-51: Could not import `_get_privateuse1_backend_name` from `torch._C` [missing-module-attribute] +ERROR torch/profiler/profiler.py:48:9-16: Class member `_NumpyEncoder.default` overrides parent class `JSONEncoder` in an inconsistent manner [bad-param-name-override] +ERROR torch/profiler/profiler.py:394:28-43: Module `torch.cuda.nccl` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/quantization/_quantized_conversions.py:11:28-38: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:20:28-38: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:21:12-23: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:33:28-38: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:34:22-32: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:34:46-60: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:41:22-32: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:43:24-38: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:44:70-80: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:49:37-51: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:54:18-32: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:56:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:60:16-28: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:66:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:70:16-28: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:78:29-43: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:82:10-22: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:88:10-22: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:95:10-22: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:101:12-24: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:105:30-41: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:106:12-28: No attribute `zeros_like` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:113:12-28: No attribute `empty_like` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:114:18-28: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:115:23-32: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:120:20-34: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:130:18-32: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/quantization/_quantized_conversions.py:134:41-52: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:62:15-27: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:64:27-38: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:65:55-65: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:67:9-46: No attribute `_sobol_engine_initialize_state_` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:70:26-37: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:70:72-82: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:74:53-76: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:82:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:98:21-44: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:104:38-62: No attribute `_sobol_engine_draw` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:112:26-35: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:114:34-58: No attribute `_sobol_engine_draw` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:135:25-36: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:179:13-36: No attribute `_sobol_engine_ff_` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:183:13-36: No attribute `_sobol_engine_ff_` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:190:21-36: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:192:17-32: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:195:15-27: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:198:22-35: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:201:22-30: No attribute `mv` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:202:25-34: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:202:38-50: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:207:15-28: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/quasirandom.py:209:9-38: No attribute `_sobol_engine_scramble_` in module `torch` [missing-attribute] +ERROR torch/random.py:7:22-39: Could not import `default_generator` from `torch._C` [missing-module-attribute] +ERROR torch/random.py:32:26-44: No attribute `Generator` in module `torch._C` [missing-attribute] +ERROR torch/random.py:45:60-78: No attribute `Generator` in module `torch._C` [missing-attribute] +ERROR torch/random.py:101:27-65: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/random.py:158:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/serialization.py:70:46-58: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/serialization.py:553:24-62: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/serialization.py:604:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/serialization.py:606:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/serialization.py:638:24-62: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/serialization.py:778:36-62: No attribute `PyTorchFileReader` in module `torch._C` [missing-attribute] +ERROR torch/serialization.py:780:26-52: No attribute `PyTorchFileReader` in module `torch._C` [missing-attribute] +ERROR torch/serialization.py:783:41-67: No attribute `PyTorchFileWriter` in module `torch._C` [missing-attribute] +ERROR torch/serialization.py:802:17-43: No attribute `PyTorchFileWriter` in module `torch._C` [missing-attribute] +ERROR torch/serialization.py:813:43-69: No attribute `PyTorchFileWriter` in module `torch._C` [missing-attribute] +ERROR torch/serialization.py:822:13-39: No attribute `PyTorchFileWriter` in module `torch._C` [missing-attribute] +ERROR torch/serialization.py:968:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/serialization.py:999:64-75: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/serialization.py:1005:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/serialization.py:1047:33-44: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/serialization.py:1049:25-36: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/serialization.py:1171:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/serialization.py:1191:33-44: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/serialization.py:1277:35-46: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/serialization.py:1278:42-53: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/serialization.py:1414:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/serialization.py:1585:30-42: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/serialization.py:1592:16-28: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/serialization.py:1728:30-41: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/serialization.py:1759:20-33: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/serialization.py:1836:8-21: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/serialization.py:1881:35-47: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/serialization.py:2025:12-25: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/serialization.py:2072:12-25: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/serialization.py:2099:21-32: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/serialization.py:2147:5-37: No attribute `_log_api_usage_metadata` in module `torch._C` [missing-attribute] +ERROR torch/signal/windows/windows.py:64:40-51: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:64:61-73: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:79:22-35: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:83:22-35: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:83:37-50: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:139:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:140:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:140:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:141:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:145:17-40: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:156:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:165:9-23: No attribute `linspace` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:175:12-21: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:175:23-32: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:223:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:224:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:224:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:225:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:229:17-40: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:234:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:241:9-23: No attribute `linspace` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:251:12-21: No attribute `sin` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:297:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:298:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:298:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:299:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:303:17-40: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:311:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:319:9-23: No attribute `linspace` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:329:12-21: No attribute `exp` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:376:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:377:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:377:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:378:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:382:17-40: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:390:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:395:16-26: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:401:12-24: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:405:11-24: No attribute `minimum` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:412:9-23: No attribute `linspace` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:422:12-20: No attribute `i0` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:422:21-31: No attribute `sqrt` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:422:46-55: No attribute `pow` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:422:66-74: No attribute `i0` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:468:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:469:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:469:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:470:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:522:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:523:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:523:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:524:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:576:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:577:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:577:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:578:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:582:17-40: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:637:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:638:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:638:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:639:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:643:17-40: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:648:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:653:16-26: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:660:9-23: No attribute `linspace` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:670:16-25: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:713:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:714:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:714:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:715:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:719:17-40: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:724:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:729:16-26: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:741:9-23: No attribute `linspace` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:751:11-23: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:757:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:763:33-42: No attribute `cos` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:806:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:807:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:807:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:808:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:870:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:871:13-25: No attribute `layout` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:871:28-41: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/signal/windows/windows.py:872:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:260:20-37: No attribute `_sparse_sum` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:262:20-37: No attribute `_sparse_sum` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:265:20-37: No attribute `_sparse_sum` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:267:20-37: No attribute `_sparse_sum` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:491:16-56: No attribute `_check_sparse_tensor_invariants` in module `torch._C` [missing-attribute] +ERROR torch/sparse/__init__.py:511:9-53: No attribute `_set_check_sparse_tensor_invariants` in module `torch._C` [missing-attribute] +ERROR torch/sparse/__init__.py:519:9-53: No attribute `_set_check_sparse_tensor_invariants` in module `torch._C` [missing-attribute] +ERROR torch/sparse/__init__.py:533:9-53: No attribute `_set_check_sparse_tensor_invariants` in module `torch._C` [missing-attribute] +ERROR torch/sparse/__init__.py:537:9-53: No attribute `_set_check_sparse_tensor_invariants` in module `torch._C` [missing-attribute] +ERROR torch/sparse/__init__.py:579:13-29: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:580:13-29: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:581:13-29: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:582:13-29: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:583:13-29: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:586:13-29: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:587:13-29: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:588:13-29: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:589:13-29: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:591:33-49: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:591:51-67: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:617:37-47: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:618:65-75: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:625:38-54: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:631:41-57: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:631:59-75: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:660:39-55: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:661:29-52: No attribute `sparse_coo_tensor` in module `torch` [missing-attribute] +ERROR torch/sparse/__init__.py:668:29-59: No attribute `sparse_compressed_tensor` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:21:16-28: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:22:16-28: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:33:16-62: Object of class `bool` has no attribute `to` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:33:63-73: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:34:18-64: Object of class `bool` has no attribute `to` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:34:65-75: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:61:18-28: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:62:23-33: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:63:22-33: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:64:26-36: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:64:38-52: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:64:54-65: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:65:22-33: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:72:22-33: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:87:23-34: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:138:29-40: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:139:29-40: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:141:23-34: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:145:18-29: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:207:27-38: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:207:40-51: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:211:24-35: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:231:12-24: No attribute `gather` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:240:14-25: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:273:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:276:13-24: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:277:24-35: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:280:20-30: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:281:43-53: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:323:35-46: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:352:26-38: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:352:48-59: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:355:42-53: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_conversions.py:356:10-21: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_ops.py:23:13-43: No attribute `_DisableTorchDispatch` in module `torch._C` [missing-attribute] +ERROR torch/sparse/_semi_structured_ops.py:57:30-41: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_ops.py:57:56-67: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_ops.py:57:73-84: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_ops.py:72:9-19: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_ops.py:181:23-42: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_ops.py:182:23-42: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_ops.py:188:29-42: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_ops.py:188:64-77: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/sparse/_semi_structured_ops.py:192:21-42: No attribute `_cslt_sparse_mm` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:27:21-37: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:60:14-24: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:60:26-40: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:60:42-53: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:228:12-42: No attribute `sparse_compressed_tensor` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:375:28-39: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:407:28-39: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:457:28-39: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:483:25-36: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:522:25-38: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:762:17-30: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:883:26-39: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:885:29-45: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:885:47-63: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:890:29-45: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:890:47-63: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:925:21-32: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:930:13-25: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:940:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:956:13-25: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:963:17-29: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:969:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:974:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:977:17-29: No attribute `cumsum` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:983:21-30: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1004:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1005:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1031:46-59: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1031:61-75: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1064:15-26: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1077:24-35: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1132:39-49: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1139:15-26: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1141:19-30: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1269:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1270:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1271:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1272:9-22: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1273:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1274:9-20: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1341:12-18: Could not find import of `triton` [missing-import] +ERROR torch/sparse/_triton_ops.py:1342:12-33: Could not find import of `triton.language` [missing-import] +ERROR torch/sparse/_triton_ops.py:1443:26-41: Cannot index into `bool` [bad-index] +ERROR torch/sparse/_triton_ops.py:1452:26-41: Cannot index into `bool` [bad-index] +ERROR torch/sparse/_triton_ops.py:1633:29-39: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1633:41-55: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1681:47-57: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1686:35-45: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1763:52-62: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1957:16-46: No attribute `sparse_compressed_tensor` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1980:33-49: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1982:41-57: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:1992:35-45: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:2107:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:2108:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:2109:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:2110:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:2284:13-26: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:2285:13-27: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:2286:13-26: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops.py:2287:13-26: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:114:53-66: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:236:44-55: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:453:9-24: No attribute `bernoulli` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:454:9-19: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:454:47-60: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:460:29-43: No attribute `randperm` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:463:24-40: Object of class `bool` has no attribute `flatten` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:464:26-40: No attribute `randperm` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:468:9-32: No attribute `repeat_interleave` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:469:9-32: No attribute `repeat_interleave` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:474:28-41: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:476:12-18: Could not find import of `triton` [missing-import] +ERROR torch/sparse/_triton_ops_meta.py:559:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:560:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:561:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:562:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:563:14-27: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:629:12-18: Could not find import of `triton` [missing-import] +ERROR torch/sparse/_triton_ops_meta.py:760:11-24: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:798:46-59: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:819:17-27: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:962:59-69: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:2182:59-69: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:2244:59-69: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:2268:54-68: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:3658:54-68: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:3700:54-67: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:5409:54-67: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:5451:54-67: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:6845:54-67: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:6887:54-64: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:6905:49-63: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:7187:49-62: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:7477:49-62: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:7763:19-29: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:7766:19-32: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:7766:34-48: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:7766:50-63: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/sparse/_triton_ops_meta.py:7766:65-75: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:58:36-47: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:79:16-26: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:167:33-43: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:172:13-23: Object of class `SparseSemiStructuredTensor` has no attribute `shape` [missing-attribute] +ERROR torch/sparse/semi_structured.py:183:28-38: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:299:57-83: Argument `tuple[Literal[0], Literal[0] | Unknown, Literal[0], Literal[0] | Unknown]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/sparse/semi_structured.py:304:15-25: Object of class `SparseSemiStructuredTensor` has no attribute `shape` [missing-attribute] +ERROR torch/sparse/semi_structured.py:305:16-24: No attribute `mm` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:305:31-40: No attribute `eye` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:305:52-62: Object of class `SparseSemiStructuredTensor` has no attribute `dtype` [missing-attribute] +ERROR torch/sparse/semi_structured.py:305:71-82: Object of class `SparseSemiStructuredTensor` has no attribute `device` [missing-attribute] +ERROR torch/sparse/semi_structured.py:403:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:404:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:405:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:406:9-22: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:501:13-47: No attribute `_sparse_semi_structured_tile` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:524:12-21: Object of class `SparseSemiStructuredTensorCUTLASS` has no attribute `ndim` [missing-attribute] +ERROR torch/sparse/semi_structured.py:534:23-55: No attribute `_sparse_semi_structured_mm` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:536:23-58: No attribute `_sparse_semi_structured_addmm` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:556:9-28: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:557:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:558:9-22: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:559:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:570:20-40: No attribute `_cslt_compress` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:625:13-47: No attribute `_sparse_semi_structured_tile` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:652:12-21: Object of class `SparseSemiStructuredTensorCUSPARSELT` has no attribute `ndim` [missing-attribute] +ERROR torch/sparse/semi_structured.py:656:23-33: Object of class `SparseSemiStructuredTensorCUSPARSELT` has no attribute `dtype` [missing-attribute] +ERROR torch/sparse/semi_structured.py:658:78-88: Object of class `SparseSemiStructuredTensorCUSPARSELT` has no attribute `shape` [missing-attribute] +ERROR torch/sparse/semi_structured.py:659:33-43: Object of class `SparseSemiStructuredTensorCUSPARSELT` has no attribute `dtype` [missing-attribute] +ERROR torch/sparse/semi_structured.py:662:47-57: Object of class `SparseSemiStructuredTensorCUSPARSELT` has no attribute `dtype` [missing-attribute] +ERROR torch/sparse/semi_structured.py:664:78-88: Object of class `SparseSemiStructuredTensorCUSPARSELT` has no attribute `shape` [missing-attribute] +ERROR torch/sparse/semi_structured.py:665:41-51: Object of class `SparseSemiStructuredTensorCUSPARSELT` has no attribute `dtype` [missing-attribute] +ERROR torch/sparse/semi_structured.py:669:12-22: Object of class `SparseSemiStructuredTensorCUSPARSELT` has no attribute `dtype` [missing-attribute] +ERROR torch/sparse/semi_structured.py:669:26-45: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/sparse/semi_structured.py:671:78-88: Object of class `SparseSemiStructuredTensorCUSPARSELT` has no attribute `shape` [missing-attribute] +ERROR torch/sparse/semi_structured.py:680:19-40: No attribute `_cslt_sparse_mm` in module `torch` [missing-attribute] +ERROR torch/storage.py:45:13-25: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:49:29-41: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:96:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:96:63-75: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:111:19-31: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:111:62-74: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:276:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/storage.py:279:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/storage.py:279:36-47: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:289:35-47: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:290:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:295:25-37: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/storage.py:299:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/storage.py:303:25-35: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/storage.py:307:25-35: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/storage.py:311:25-34: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/storage.py:315:25-36: No attribute `short` in module `torch` [missing-attribute] +ERROR torch/storage.py:319:25-35: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/storage.py:323:25-36: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:327:25-35: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/storage.py:331:25-39: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/storage.py:335:25-38: No attribute `cdouble` in module `torch` [missing-attribute] +ERROR torch/storage.py:339:25-37: No attribute `cfloat` in module `torch` [missing-attribute] +ERROR torch/storage.py:343:25-42: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/storage.py:347:25-44: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/storage.py:351:25-46: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/storage.py:355:25-46: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/storage.py:357:44-56: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:368:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/storage.py:368:36-47: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:373:45-57: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:387:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/storage.py:387:36-47: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:397:41-79: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/storage.py:410:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:411:36-74: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/storage.py:466:22-42: No attribute `StorageBase` in module `torch._C` [missing-attribute] +ERROR torch/storage.py:542:9-26: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/storage.py:543:9-28: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/storage.py:544:9-30: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/storage.py:545:9-30: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/storage.py:546:9-29: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/storage.py:547:9-31: No attribute `float4_e2m1fn_x2` in module `torch` [missing-attribute] +ERROR torch/storage.py:548:9-20: No attribute `bits8` in module `torch` [missing-attribute] +ERROR torch/storage.py:549:9-21: No attribute `bits16` in module `torch` [missing-attribute] +ERROR torch/storage.py:550:9-22: No attribute `bits1x8` in module `torch` [missing-attribute] +ERROR torch/storage.py:551:9-22: No attribute `bits2x4` in module `torch` [missing-attribute] +ERROR torch/storage.py:552:9-22: No attribute `bits4x2` in module `torch` [missing-attribute] +ERROR torch/storage.py:553:9-24: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/storage.py:554:9-21: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/storage.py:555:9-21: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/storage.py:556:9-21: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/storage.py:568:9-21: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/storage.py:569:9-20: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/storage.py:570:9-19: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/storage.py:571:9-19: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/storage.py:572:9-18: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/storage.py:573:9-20: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/storage.py:574:9-19: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/storage.py:575:9-20: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:576:9-19: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/storage.py:577:9-23: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/storage.py:578:9-22: No attribute `cdouble` in module `torch` [missing-attribute] +ERROR torch/storage.py:579:9-21: No attribute `cfloat` in module `torch` [missing-attribute] +ERROR torch/storage.py:580:9-20: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:581:9-21: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/storage.py:582:9-21: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:583:9-23: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/storage.py:584:9-23: No attribute `quint2x4` in module `torch` [missing-attribute] +ERROR torch/storage.py:596:9-21: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:597:9-23: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/storage.py:598:9-23: No attribute `quint2x4` in module `torch` [missing-attribute] +ERROR torch/storage.py:599:9-21: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/storage.py:600:9-20: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:603:13-25: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:603:27-38: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:604:13-27: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/storage.py:604:29-40: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:605:13-27: No attribute `quint2x4` in module `torch` [missing-attribute] +ERROR torch/storage.py:605:29-40: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:606:13-25: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/storage.py:606:27-38: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/storage.py:607:13-24: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:607:26-36: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/storage.py:609:22-34: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/storage.py:614:22-34: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/storage.py:665:30-68: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/storage.py:674:29-41: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:676:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/storage.py:817:38-49: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/storage.py:840:26-49: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/storage.py:841:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:844:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:845:17-31: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/storage.py:846:17-31: No attribute `quint2x4` in module `torch` [missing-attribute] +ERROR torch/storage.py:847:17-29: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/storage.py:848:17-28: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:944:13-25: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:945:13-27: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/storage.py:946:13-27: No attribute `quint2x4` in module `torch` [missing-attribute] +ERROR torch/storage.py:947:13-25: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/storage.py:948:13-24: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:951:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:951:31-42: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:952:17-31: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/storage.py:952:33-44: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:953:17-31: No attribute `quint2x4` in module `torch` [missing-attribute] +ERROR torch/storage.py:953:33-44: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:954:17-29: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/storage.py:954:31-42: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/storage.py:955:17-28: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:955:30-40: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/storage.py:958:26-38: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/storage.py:967:26-38: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/storage.py:993:13-25: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:994:13-27: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/storage.py:995:13-27: No attribute `quint2x4` in module `torch` [missing-attribute] +ERROR torch/storage.py:996:13-25: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/storage.py:997:13-24: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:1000:17-29: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:1000:31-42: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:1001:17-31: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/storage.py:1001:33-44: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:1002:17-31: No attribute `quint2x4` in module `torch` [missing-attribute] +ERROR torch/storage.py:1002:33-44: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:1003:17-29: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/storage.py:1003:31-42: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/storage.py:1004:17-28: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:1004:30-40: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/storage.py:1016:26-38: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/storage.py:1057:13-25: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:1058:13-27: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/storage.py:1059:13-27: No attribute `quint2x4` in module `torch` [missing-attribute] +ERROR torch/storage.py:1060:13-25: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/storage.py:1061:13-24: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:1070:13-25: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:1071:13-27: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/storage.py:1072:13-27: No attribute `quint2x4` in module `torch` [missing-attribute] +ERROR torch/storage.py:1073:13-25: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/storage.py:1074:13-24: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:1082:35-47: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:1083:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:1085:13-25: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:1086:13-27: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/storage.py:1087:13-27: No attribute `quint2x4` in module `torch` [missing-attribute] +ERROR torch/storage.py:1088:13-25: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/storage.py:1089:13-24: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:1160:44-56: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:1173:45-57: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:1202:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:1280:21-44: No attribute `get_default_dtype` in module `torch` [missing-attribute] +ERROR torch/storage.py:1281:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/storage.py:1310:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/storage.py:1313:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/storage.py:1325:25-37: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/storage.py:1330:25-36: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/storage.py:1335:25-35: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/storage.py:1340:25-35: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/storage.py:1345:25-34: No attribute `int` in module `torch` [missing-attribute] +ERROR torch/storage.py:1350:25-36: No attribute `short` in module `torch` [missing-attribute] +ERROR torch/storage.py:1355:25-35: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/storage.py:1360:25-36: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/storage.py:1365:25-35: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/storage.py:1370:25-39: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/storage.py:1375:25-38: No attribute `cdouble` in module `torch` [missing-attribute] +ERROR torch/storage.py:1380:25-37: No attribute `cfloat` in module `torch` [missing-attribute] +ERROR torch/storage.py:1385:25-42: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/storage.py:1390:25-44: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/storage.py:1395:25-46: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/storage.py:1400:25-46: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/storage.py:1492:13-51: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/storage.py:1513:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/testing/__init__.py:1:22-44: Could not import `FileCheck` from `torch._C` [missing-module-attribute] +ERROR torch/testing/_comparison.py:55:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:56:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:57:5-18: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:58:5-18: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:59:5-20: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:60:5-20: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:61:5-21: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:67:10-22: No attribute `quint8` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:67:24-38: No attribute `quint2x4` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:67:40-54: No attribute `quint4x2` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:67:56-67: No attribute `qint8` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:67:69-81: No attribute `qint32` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:68:27-40: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:74:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:75:37-48: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:88:32-43: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:102:34-45: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:295:49-58: No attribute `sum` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:302:36-49: No attribute `nonzero` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:307:32-50: Argument `tuple[@_, ...]` is not assignable to parameter `first_mismatch_idx` with type `tuple[int] | None` in function `_make_bitwise_mismatch_msg` [bad-argument-type] +ERROR torch/testing/_comparison.py:317:38-49: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:318:42-53: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:320:16-25: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:323:43-52: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:325:27-36: No attribute `abs` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:328:43-52: No attribute `max` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:552:14-25: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:553:16-29: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:554:18-34: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:721:20-35: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:727:13-26: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:728:13-25: No attribute `jagged` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:729:13-29: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:730:13-29: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:731:13-29: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:732:13-29: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:733:13-29: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:794:30-43: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:842:33-45: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:842:47-59: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:842:61-73: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:843:32-43: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:844:35-47: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:844:49-61: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:844:63-75: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:845:34-45: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:846:21-40: No attribute `promote_types` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:852:60-73: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:854:59-72: No attribute `strided` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:865:13-29: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:866:13-29: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:867:13-29: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:868:13-29: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:871:31-43: No attribute `jagged` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:1000:13-29: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:1005:13-29: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:1010:13-29: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:1015:13-29: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:1037:25-44: No attribute `promote_types` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:1084:19-32: No attribute `isclose` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:1087:12-21: No attribute `all` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:1090:28-38: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:1625:18-30: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:1627:20-32: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:1634:17-30: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:1635:17-30: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/testing/_comparison.py:1636:17-30: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:15:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:16:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:17:5-16: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:18:5-16: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:19:5-16: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:20:5-17: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:21:5-17: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:22:5-17: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:24:20-33: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:24:35-49: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:24:51-64: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:24:66-79: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:26:5-24: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:27:5-22: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:28:5-26: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:29:5-26: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:31:19-34: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:31:36-51: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:31:53-69: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:32:31-41: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:39:22-33: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:46:24-34: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:47:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:48:24-36: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:54:29-48: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:199:17-27: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:211:18-31: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:218:34-45: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:219:35-46: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:223:38-49: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:230:18-31: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:235:30-41: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:236:31-42: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:240:18-29: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:242:13-31: No attribute `view_as_real` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:248:30-41: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:249:31-42: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:253:18-29: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:253:58-71: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/testing/_creation.py:270:59-70: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/testing/_utils.py:34:10-33: Module `torch.utils._mode_utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/testing/_utils.py:34:49-75: No attribute `_DisableFuncTorch` in module `torch._C` [missing-attribute] +ERROR torch/testing/_utils.py:49:14-37: Module `torch.utils._mode_utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/testing/_utils.py:49:53-79: No attribute `_DisableFuncTorch` in module `torch._C` [missing-attribute] +ERROR torch/torch_version.py:5:1-58: Could not find import of `torch.version` [missing-import] +ERROR torch/types.py:20:5-22: Could not import `device` from `torch` [missing-module-attribute] +ERROR torch/types.py:21:5-16: Could not import `DispatchKey` from `torch` [missing-module-attribute] +ERROR torch/types.py:22:5-20: Could not import `dtype` from `torch` [missing-module-attribute] +ERROR torch/types.py:23:5-22: Could not import `layout` from `torch` [missing-module-attribute] +ERROR torch/types.py:24:5-24: Could not import `qscheme` from `torch` [missing-module-attribute] +ERROR torch/types.py:25:5-9: Could not import `Size` from `torch` [missing-module-attribute] +ERROR torch/utils/__init__.py:107:5-31: No attribute `_swap_tensor_impl` in module `torch._C` [missing-attribute] +ERROR torch/utils/_content_store.py:72:9-22: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/utils/_content_store.py:73:58-69: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/utils/_content_store.py:77:9-22: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/utils/_content_store.py:77:72-83: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/utils/_content_store.py:112:21-47: No attribute `default_generator` in module `torch._C` [missing-attribute] +ERROR torch/utils/_content_store.py:130:26-34: Argument `tuple[Literal[0], Unknown]` is not assignable to parameter `pad` with type `list[int]` in function `torch.nn.functional.pad` [bad-argument-type] +ERROR torch/utils/_content_store.py:131:20-31: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/utils/_content_store.py:196:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/utils/_content_store.py:203:22-34: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/utils/_content_store.py:238:13-25: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/_debug_mode.py:116:14-47: No attribute `_DisablePythonDispatcher` in module `torch._C` [missing-attribute] +ERROR torch/utils/_debug_mode.py:135:31-55: Module `torch.distributed.tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/_debug_mode.py:168:10-43: No attribute `_DisablePythonDispatcher` in module `torch._C` [missing-attribute] +ERROR torch/utils/_debug_mode.py:174:34-50: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/utils/_debug_mode.py:176:34-47: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/utils/_debug_mode.py:197:22-46: Module `torch.distributed.tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/_debug_mode.py:201:30-43: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/utils/_debug_mode.py:203:30-46: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/utils/_debug_mode.py:203:53-66: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/utils/_debug_mode.py:205:30-41: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/utils/_debug_mode.py:207:11-28: No attribute `hash_tensor` in module `torch` [missing-attribute] +ERROR torch/utils/_debug_mode.py:236:8-39: No attribute `_current_autograd_node` in module `torch._C` [missing-attribute] +ERROR torch/utils/_debug_mode.py:710:12-36: Module `torch.distributed.tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/_debug_mode.py:751:13-51: No attribute `_push_on_torch_function_stack` in module `torch._C` [missing-attribute] +ERROR torch/utils/_debug_mode.py:770:13-47: No attribute `_pop_torch_function_stack` in module `torch._C` [missing-attribute] +ERROR torch/utils/_debug_mode.py:829:14-43: No attribute `DisableTorchFunction` in module `torch._C` [missing-attribute] +ERROR torch/utils/_device.py:5:22-47: Could not import `_len_torch_function_stack` from `torch._C` [missing-module-attribute] +ERROR torch/utils/_device.py:10:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:17:9-20: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:18:9-29: No attribute `empty_permuted` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:19:9-28: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:20:9-30: No attribute `empty_quantized` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:21:9-19: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:22:9-21: No attribute `arange` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:23:9-30: No attribute `bartlett_window` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:24:9-30: No attribute `blackman_window` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:25:9-18: No attribute `eye` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:28:9-19: No attribute `full` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:29:9-29: No attribute `hamming_window` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:30:9-26: No attribute `hann_window` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:31:9-28: No attribute `kaiser_window` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:32:9-23: No attribute `linspace` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:33:9-23: No attribute `logspace` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:37:9-19: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:38:9-20: No attribute `randn` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:39:9-22: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:40:9-23: No attribute `randperm` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:41:9-20: No attribute `range` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:42:9-32: No attribute `sparse_coo_tensor` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:43:9-39: No attribute `sparse_compressed_tensor` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:44:9-32: No attribute `sparse_csr_tensor` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:45:9-32: No attribute `sparse_csc_tensor` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:46:9-32: No attribute `sparse_bsr_tensor` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:47:9-32: No attribute `sparse_bsc_tensor` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:48:9-27: No attribute `tril_indices` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:49:9-27: No attribute `triu_indices` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:50:9-20: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:51:9-22: No attribute `asarray` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:53:9-21: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:54:9-24: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:55:9-28: No attribute `scalar_tensor` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:63:23-35: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/utils/_device.py:124:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:6:5-19: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:7:5-18: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:8:5-18: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:9:5-18: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:10:5-24: No attribute `float8_e4m3fn` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:11:5-22: No attribute `float8_e5m2` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:12:5-26: No attribute `float8_e4m3fnuz` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:13:5-26: No attribute `float8_e5m2fnuz` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:14:5-25: No attribute `float8_e8m0fnu` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:15:5-27: No attribute `float4_e2m1fn_x2` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:16:5-20: No attribute `complex32` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:17:5-20: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:18:5-21: No attribute `complex128` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:19:5-15: No attribute `int8` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:20:5-16: No attribute `int16` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:21:5-16: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:22:5-16: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:23:5-15: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:24:5-16: No attribute `uint8` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:25:5-17: No attribute `uint16` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:26:5-17: No attribute `uint32` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:27:5-17: No attribute `uint64` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:28:5-17: No attribute `bits16` in module `torch` [missing-attribute] +ERROR torch/utils/_dtype_abbrs.py:29:5-18: No attribute `bits1x8` in module `torch` [missing-attribute] +ERROR torch/utils/_foreach_utils.py:10:36-74: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/utils/_foreach_utils.py:22:9-47: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute] +ERROR torch/utils/_foreach_utils.py:46:17-29: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/utils/_foreach_utils.py:46:31-42: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/utils/_foreach_utils.py:47:12-55: No attribute `_group_tensors_by_device_and_dtype` in module `torch._C` [missing-attribute] +ERROR torch/utils/_foreach_utils.py:50:41-53: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/utils/_foreach_utils.py:57:57-69: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/utils/_import_utils.py:30:12-16: Could not find import of `dill` [missing-import] +ERROR torch/utils/_mode_utils.py:15:15-45: No attribute `_DisableTorchDispatch` in module `torch._C` [missing-attribute] +ERROR torch/utils/_ordered_set.py:39:9-21: Class member `OrderedSet.__contains__` overrides parent class `MutableSet` in an inconsistent manner [bad-param-name-override] +ERROR torch/utils/_ordered_set.py:51:9-12: Class member `OrderedSet.add` overrides parent class `MutableSet` in an inconsistent manner [bad-param-name-override] +ERROR torch/utils/_ordered_set.py:54:9-16: Class member `OrderedSet.discard` overrides parent class `MutableSet` in an inconsistent manner [bad-param-name-override] +ERROR torch/utils/_pallas.py:94:16-46: Could not find import of `torch_xla.core.xla_model` [missing-import] +ERROR torch/utils/_python_dispatch.py:16:5-27: Could not import `_get_dispatch_stack_at` from `torch._C` [missing-module-attribute] +ERROR torch/utils/_python_dispatch.py:17:5-30: Could not import `_len_torch_dispatch_stack` from `torch._C` [missing-module-attribute] +ERROR torch/utils/_python_dispatch.py:18:5-30: Could not import `_pop_torch_dispatch_stack` from `torch._C` [missing-module-attribute] +ERROR torch/utils/_python_dispatch.py:19:5-34: Could not import `_push_on_torch_dispatch_stack` from `torch._C` [missing-module-attribute] +ERROR torch/utils/_python_dispatch.py:20:5-16: Could not import `DispatchKey` from `torch._C` [missing-module-attribute] +ERROR torch/utils/_python_dispatch.py:92:46-66: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:230:9-39: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:231:9-39: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:234:47-77: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:235:28-58: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:241:26-53: No attribute `_get_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:258:26-53: No attribute `_get_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:268:16-45: No attribute `_unset_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:273:9-39: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:274:9-39: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:299:31-51: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:311:10-49: No attribute `_functionality_to_backend_keys` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:318:32-62: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:324:35-65: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:414:12-25: No attribute `Size` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:439:24-43: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:445:17-36: Module `torch._prims_common` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/_python_dispatch.py:450:24-43: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:460:24-43: No attribute `memory_format` in module `torch` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:610:17-48: No attribute `_functionalize_unsafe_set` in module `torch` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:614:13-44: No attribute `_functionalize_unsafe_set` in module `torch` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:753:28-37: No attribute `Tag` in module `torch` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:797:27-55: No attribute `_parse_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:798:17-50: No attribute `_dispatch_key_for_device` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:804:40-86: No attribute `_dispatch_has_kernel_for_dispatch_key` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:882:18-41: Module `torch.utils._mode_utils` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/_python_dispatch.py:885:31-69: No attribute `_meta_in_tls_dispatch_include` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:886:17-59: No attribute `_set_meta_in_tls_dispatch_include` in module `torch._C` [missing-attribute] +ERROR torch/utils/_python_dispatch.py:890:21-63: No attribute `_set_meta_in_tls_dispatch_include` in module `torch._C` [missing-attribute] +ERROR torch/utils/_pytree.py:111:9-16: Class member `EnumEncoder.default` overrides parent class `JSONEncoder` in an inconsistent manner [bad-param-name-override] +ERROR torch/utils/_strobelight/examples/cli_function_profiler_example.py:22:20-30: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/utils/_strobelight/examples/cli_function_profiler_example.py:22:38-48: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/utils/_strobelight/examples/cli_function_profiler_example.py:22:56-66: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/functions.py:219:9-13: Class member `FloorDiv.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:284:43-62: Object of class `Mul` has no attribute `is_integer` [missing-attribute] +ERROR torch/utils/_sympy/functions.py:323:9-13: Class member `ModularIndexing.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:364:42-46: Argument `Expr` is not assignable to parameter `object` with type `Integer` in function `list.append` [bad-argument-type] +ERROR torch/utils/_sympy/functions.py:402:9-13: Class member `Where.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:418:9-13: Class member `PythonMod.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:440:16-25: Object of class `Expr` has no attribute `is_even` [missing-attribute] +ERROR torch/utils/_sympy/functions.py:442:16-24: Object of class `Expr` has no attribute `is_odd` [missing-attribute] +ERROR torch/utils/_sympy/functions.py:489:9-13: Class member `Mod.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:548:9-13: Class member `CeilToInt.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:567:9-13: Class member `FloorToInt.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:598:9-13: Class member `LShift.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:608:9-13: Class member `RShift.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:873:9-25: Class member `MinMaxBase._new_args_filter` overrides parent class `LatticeOp` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:1071:9-13: Class member `PowByNatural.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:1098:9-13: Class member `FloatPow.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:1120:9-13: Class member `FloatTrueDiv.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:1145:9-13: Class member `IntTrueDiv.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:1242:9-13: Class member `TruncToFloat.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:1255:9-13: Class member `TruncToInt.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:1270:9-13: Class member `RoundToInt.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:1300:9-13: Class member `RoundDecimal.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:1311:9-13: Class member `ToFloat.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:1353:19-33: No matching overload found for function `int.__new__` called with arguments: (type[int], Basic) [no-matching-overload] +ERROR torch/utils/_sympy/functions.py:1357:22-34: Argument `Basic` is not assignable to parameter `x` with type `Buffer | SupportsFloat | SupportsIndex | str` in function `float.__new__` [bad-argument-type] +ERROR torch/utils/_sympy/functions.py:1376:13-17: Class member `OpaqueUnaryFn.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/functions.py:1441:13-17: Class member `BitwiseFn.eval` overrides parent class `Function` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/interp.py:103:9-45: Module `sympy.functions.elementary.piecewise` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/_sympy/interp.py:125:58-69: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/interp.py:132:43-56: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/interp.py:191:17-28: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/interp.py:197:17-27: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/interp.py:199:17-28: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/interp.py:201:17-29: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/interp.py:220:17-20: Argument `Basic` is not assignable to parameter `expr` with type `Boolean | Expr` in function `sympy_interp` [bad-argument-type] +ERROR torch/utils/_sympy/numbers.py:94:16-42: Object of class `Number` has no attribute `is_extended_positive` [missing-attribute] +ERROR torch/utils/_sympy/numbers.py:112:16-45: Object of class `Number` has no attribute `is_extended_nonnegative` [missing-attribute] +ERROR torch/utils/_sympy/numbers.py:123:9-20: Class member `IntInfinity._eval_power` overrides parent class `Number` in an inconsistent manner [bad-param-name-override] +ERROR torch/utils/_sympy/numbers.py:136:16-37: Object of class `re` has no attribute `is_positive` [missing-attribute] +ERROR torch/utils/_sympy/numbers.py:282:16-42: Object of class `Number` has no attribute `is_extended_positive` [missing-attribute] +ERROR torch/utils/_sympy/numbers.py:300:16-45: Object of class `Number` has no attribute `is_extended_nonnegative` [missing-attribute] +ERROR torch/utils/_sympy/numbers.py:311:9-20: Class member `NegativeIntInfinity._eval_power` overrides parent class `Number` in an inconsistent manner [bad-param-name-override] +ERROR torch/utils/_sympy/numbers.py:322:52-77: Object of class `Integer` has no attribute `is_extended_positive` [missing-attribute] +ERROR torch/utils/_sympy/numbers.py:323:20-31: Object of class `Integer` has no attribute `is_odd` [missing-attribute] +ERROR torch/utils/_sympy/printers.py:29:46-57: Object of class `Expr` has no attribute `rel_op` [missing-attribute] +ERROR torch/utils/_sympy/printers.py:56:12-22: Object of class `Expr` has no attribute `_prec` [missing-attribute] +ERROR torch/utils/_sympy/printers.py:74:22-27: No matching overload found for function `int.__new__` called with arguments: (type[int], Basic) [no-matching-overload] +ERROR torch/utils/_sympy/printers.py:76:18-23: No matching overload found for function `int.__new__` called with arguments: (type[int], Basic) [no-matching-overload] +ERROR torch/utils/_sympy/printers.py:195:34-46: Argument `Basic` is not assignable to parameter `expr` with type `Expr` in function `PythonPrinter._helper_sqrt` [bad-argument-type] +ERROR torch/utils/_sympy/printers.py:316:13-27: Type `Basic` is not iterable [not-iterable] +ERROR torch/utils/_sympy/printers.py:355:13-27: Type `Basic` is not iterable [not-iterable] +ERROR torch/utils/_sympy/printers.py:373:16-31: Object of class `Expr` has no attribute `is_integer` [missing-attribute] +ERROR torch/utils/_sympy/printers.py:384:12-27: Object of class `Expr` has no attribute `is_integer` [missing-attribute] +ERROR torch/utils/_sympy/printers.py:392:53-68: Object of class `Expr` has no attribute `is_integer` [missing-attribute] +ERROR torch/utils/_sympy/printers.py:398:53-68: Object of class `Expr` has no attribute `is_integer` [missing-attribute] +ERROR torch/utils/_sympy/printers.py:449:12-26: Object of class `Basic` has no attribute `is_integer` [missing-attribute] +ERROR torch/utils/_sympy/printers.py:450:22-27: No matching overload found for function `int.__new__` called with arguments: (type[int], Basic) [no-matching-overload] +ERROR torch/utils/_sympy/printers.py:464:57-72: Object of class `Expr` has no attribute `is_integer` [missing-attribute] +ERROR torch/utils/_sympy/printers.py:467:46-49: Argument `Basic` is not assignable to parameter `x` with type `Buffer | SupportsFloat | SupportsIndex | str` in function `float.__new__` [bad-argument-type] +ERROR torch/utils/_sympy/printers.py:471:12-18: Object of class `Expr` has no attribute `q` [missing-attribute] +ERROR torch/utils/_sympy/printers.py:472:20-26: Object of class `Expr` has no attribute `p` [missing-attribute] +ERROR torch/utils/_sympy/printers.py:474:20-26: Object of class `Expr` has no attribute `p` [missing-attribute] +ERROR torch/utils/_sympy/printers.py:475:53-68: Object of class `Expr` has no attribute `is_integer` [missing-attribute] +ERROR torch/utils/_sympy/printers.py:481:53-68: Object of class `Expr` has no attribute `is_integer` [missing-attribute] +ERROR torch/utils/_sympy/printers.py:487:53-68: Object of class `Expr` has no attribute `is_integer` [missing-attribute] +ERROR torch/utils/_sympy/printers.py:573:12-29: Object of class `Basic` has no attribute `is_integer` [missing-attribute] +ERROR torch/utils/_sympy/printers.py:575:16-28: `>=` is not supported between `Basic` and `Literal[0]` [unsupported-operation] +ERROR torch/utils/_sympy/printers.py:581:86-94: Unary `-` is not supported on `Basic` [unsupported-operation] +ERROR torch/utils/_sympy/reference.py:106:28-39: Argument `type[floor]` is not assignable to parameter `f` with type `(**tuple[*@_]) -> @_` in function `torch.utils._sympy.functions._keep_float` [bad-argument-type] +ERROR torch/utils/_sympy/reference.py:110:28-41: Argument `type[ceiling]` is not assignable to parameter `f` with type `(**tuple[*@_]) -> @_` in function `torch.utils._sympy.functions._keep_float` [bad-argument-type] +ERROR torch/utils/_sympy/reference.py:114:21-34: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/reference.py:222:21-32: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/reference.py:224:23-35: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/reference.py:226:23-33: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/reference.py:260:21-34: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/reference.py:348:39-50: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/reference.py:372:21-32: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/reference.py:374:23-35: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/reference.py:376:23-33: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/singleton_int.py:12:5-17: Class member `SingletonInt._op_priority` overrides parent class `AtomicExpr` in an inconsistent manner [bad-override] +ERROR torch/utils/_sympy/solve.py:147:13-38: Object of class `Basic` has no attribute `is_positive` [missing-attribute] +ERROR torch/utils/_sympy/value_ranges.py:276:31-278:14: No matching overload found for function `ValueRanges.__init__` called with arguments: (Max, Min) [no-matching-overload] +ERROR torch/utils/_sympy/value_ranges.py:307:31-309:14: No matching overload found for function `ValueRanges.__init__` called with arguments: (Min, Max) [no-matching-overload] +ERROR torch/utils/_sympy/value_ranges.py:459:25-35: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/value_ranges.py:472:25-35: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/value_ranges.py:476:20-35: Object of class `BooleanAtom` has no attribute `is_finite` +Object of class `Integer` has no attribute `is_finite` +Object of class `Number` has no attribute `is_finite` +Object of class `bool` has no attribute `is_finite` +Object of class `float` has no attribute `is_finite` +Object of class `int` has no attribute `is_finite` [missing-attribute] +ERROR torch/utils/_sympy/value_ranges.py:476:44-57: Object of class `bool` has no attribute `is_real` +Object of class `float` has no attribute `is_real` +Object of class `int` has no attribute `is_real` [missing-attribute] +ERROR torch/utils/_sympy/value_ranges.py:490:21-34: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/value_ranges.py:493:23-33: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/utils/_sympy/value_ranges.py:510:42-56: No matching overload found for function `ValueRanges.decreasing_map` called with arguments: (Unknown, type[Not]) [no-matching-overload] +ERROR torch/utils/_sympy/value_ranges.py:908:46-81: Module `sympy.functions.elementary.integers` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/_sympy/value_ranges.py:908:46-87: Argument `type[floor]` is not assignable to parameter `fn` with type `(Expr) -> Expr` in function `ValueRanges.increasing_map` [bad-argument-type] +ERROR torch/utils/_sympy/value_ranges.py:913:16-51: Module `sympy.functions.elementary.integers` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/_sympy/value_ranges.py:913:16-59: Argument `type[ceiling]` is not assignable to parameter `fn` with type `(Expr) -> Expr` in function `ValueRanges.increasing_map` [bad-argument-type] +ERROR torch/utils/_sympy/value_ranges.py:937:28-63: Module `sympy.functions.elementary.integers` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/_sympy/value_ranges.py:937:28-69: Argument `type[floor]` is not assignable to parameter `f` with type `(**tuple[Expr]) -> Expr` in function `torch.utils._sympy.functions._keep_float` [bad-argument-type] +ERROR torch/utils/_sympy/value_ranges.py:943:28-63: Module `sympy.functions.elementary.integers` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/_sympy/value_ranges.py:943:28-71: Argument `type[ceiling]` is not assignable to parameter `f` with type `(**tuple[Expr]) -> Expr` in function `torch.utils._sympy.functions._keep_float` [bad-argument-type] +ERROR torch/utils/_sympy/value_ranges.py:1104:15-28: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/_triton.py:9:16-22: Could not find import of `triton` [missing-import] +ERROR torch/utils/_triton.py:19:16-22: Could not find import of `triton` [missing-import] +ERROR torch/utils/_triton.py:43:17-46:18: Could not find import of `triton.tools.experimental_descriptor` [missing-import] +ERROR torch/utils/_triton.py:60:17-62:18: Could not find import of `triton.tools.tensor_descriptor` [missing-import] +ERROR torch/utils/_triton.py:88:17-91:18: Could not find import of `triton.language.extra.cuda` [missing-import] +ERROR torch/utils/_triton.py:99:17-67: Could not find import of `triton.language` [missing-import] +ERROR torch/utils/_triton.py:134:17-67: Could not find import of `triton.language` [missing-import] +ERROR torch/utils/_triton.py:158:16-31: Could not find import of `triton.backends` [missing-import] +ERROR torch/utils/_triton.py:184:5-54: Could not find import of `triton.compiler.compiler` [missing-import] +ERROR torch/utils/_triton.py:185:5-45: Could not find import of `triton.runtime.driver` [missing-import] +ERROR torch/utils/backcompat/__init__.py:3:5-35: Could not import `_get_backcompat_broadcast_warn` from `torch._C` [missing-module-attribute] +ERROR torch/utils/backcompat/__init__.py:4:5-33: Could not import `_get_backcompat_keepdim_warn` from `torch._C` [missing-module-attribute] +ERROR torch/utils/backcompat/__init__.py:5:5-35: Could not import `_set_backcompat_broadcast_warn` from `torch._C` [missing-module-attribute] +ERROR torch/utils/backcompat/__init__.py:6:5-33: Could not import `_set_backcompat_keepdim_warn` from `torch._C` [missing-module-attribute] +ERROR torch/utils/backend_registration.py:4:22-51: Could not import `_get_privateuse1_backend_name` from `torch._C` [missing-module-attribute] +ERROR torch/utils/backend_registration.py:4:53-80: Could not import `_rename_privateuse1_backend` from `torch._C` [missing-module-attribute] +ERROR torch/utils/backend_registration.py:92:51-63: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/utils/backend_registration.py:109:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/utils/backend_registration.py:112:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/utils/backend_registration.py:139:23-35: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/utils/backend_registration.py:168:20-32: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/utils/backend_registration.py:190:23-35: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/utils/backend_registration.py:253:14-26: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/backend_registration.py:270:55-66: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/utils/backend_registration.py:311:33-45: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/utils/backend_registration.py:357:29-40: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/utils/backend_registration.py:469:29-42: Module `torch._C._acc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/backend_registration.py:473:9-28: Class member `_DummyPrivateUse1Hook.has_primary_context` overrides parent class `PrivateUse1Hooks` in an inconsistent manner [bad-param-name-override] +ERROR torch/utils/backend_registration.py:480:25-38: Module `torch._C._acc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/backend_registration.py:482:16-34: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/backend_registration.py:520:5-18: Module `torch._C._acc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/backend_registration.py:521:5-18: Module `torch._C._acc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/benchmark/examples/compare.py:61:22-32: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/compare.py:62:22-32: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/compare.py:63:25-36: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/op_benchmark.py:32:43-56: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/op_benchmark.py:33:41-52: No attribute `int32` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/simple_timeit.py:14:23-33: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/simple_timeit.py:14:48-58: No attribute `ones` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/sparse/compare.py:63:15-25: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/sparse/compare.py:64:18-30: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/sparse/compare.py:65:26-36: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/sparse/compare.py:67:14-24: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/sparse/compare.py:74:12-35: No attribute `sparse_coo_tensor` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/sparse/compare.py:89:67-80: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/sparse/compare.py:90:22-32: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/sparse/compare.py:90:45-58: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/sparse/compare.py:91:25-36: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/sparse/op_benchmark.py:29:43-56: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/sparse/op_benchmark.py:30:44-57: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:23:55-66: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:56:43-56: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:57:46-61: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:58:40-55: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:59:40-53: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:60:42-57: No attribute `complex64` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/op_fuzzers/binary.py:17:36-49: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/op_fuzzers/sparse_binary.py:17:36-49: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/op_fuzzers/spectral.py:31:44-57: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/op_fuzzers/unary.py:17:36-49: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/common.py:147:27-39: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/common.py:149:15-27: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/common.py:150:18-30: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/common.py:154:23-35: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/common.py:155:39-51: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/common.py:166:29-41: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/common.py:166:68-81: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/common.py:263:56-68: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/common.py:281:21-33: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/common.py:283:18-30: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/common.py:292:25-46: No attribute `get_num_threads` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/common.py:294:9-30: No attribute `set_num_threads` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/common.py:297:9-30: No attribute `set_num_threads` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/compare.py:8:19-36: Could not import `tensor` from `torch` [missing-module-attribute] +ERROR torch/utils/benchmark/utils/compile.py:92:42-98: No matching overload found for function `torch.compile` called with arguments: (((...) -> Unknown) | Module, backend=CompileCounterWithBackend, mode=str | None) [no-matching-overload] +ERROR torch/utils/benchmark/utils/compile.py:95:86-93: Argument `((...) -> Unknown) | Module | None` is not assignable to parameter `loss_fn` with type `((...) -> Unknown) | None` in function `bench_loop` [bad-argument-type] +ERROR torch/utils/benchmark/utils/compile.py:97:90-97: Argument `((...) -> Unknown) | Module | None` is not assignable to parameter `loss_fn` with type `((...) -> Unknown) | None` in function `bench_loop` [bad-argument-type] +ERROR torch/utils/benchmark/utils/compile.py:112:86-93: Argument `((...) -> Unknown) | Module | None` is not assignable to parameter `loss_fn` with type `((...) -> Unknown) | None` in function `bench_loop` [bad-argument-type] +ERROR torch/utils/benchmark/utils/fuzzer.py:170:17-27: No attribute `bool` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/fuzzer.py:173:20-31: No attribute `finfo` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/fuzzer.py:174:16-27: No attribute `iinfo` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/fuzzer.py:199:15-28: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/fuzzer.py:271:20-30: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/fuzzer.py:273:20-33: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/sparse_fuzzer.py:19:15-28: No attribute `float32` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/sparse_fuzzer.py:76:17-27: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/sparse_fuzzer.py:78:17-30: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/sparse_fuzzer.py:80:13-23: No attribute `rand` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/sparse_fuzzer.py:81:16-28: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/sparse_fuzzer.py:82:18-28: No attribute `long` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/sparse_fuzzer.py:85:17-26: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/sparse_fuzzer.py:85:31-47: No attribute `randn_like` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/sparse_fuzzer.py:86:17-26: No attribute `cat` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/sparse_fuzzer.py:88:13-36: No attribute `sparse_coo_tensor` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/sparse_fuzzer.py:88:43-53: No attribute `Size` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/timer.py:311:24-36: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py:69:13-70:49: Returned type `FunctionCounts | tuple[FunctionCount, ...]` is not assignable to declared return type `FunctionCount | FunctionCounts` [bad-return] +ERROR torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py:495:46-83: No attribute `_valgrind_supported_platform` in module `torch._C` [missing-attribute] +ERROR torch/utils/bundled_inputs.py:7:22-31: Could not import `TupleType` from `torch._C` [missing-module-attribute] +ERROR torch/utils/bundled_inputs.py:7:33-41: Could not import `ListType` from `torch._C` [missing-module-attribute] +ERROR torch/utils/bundled_inputs.py:393:12-30: Object of class `object` has no attribute `_typed_storage` [missing-attribute] +ERROR torch/utils/bundled_inputs.py:397:12-29: Object of class `object` has no attribute `is_contiguous` [missing-attribute] +ERROR torch/utils/bundled_inputs.py:397:36-45: Object of class `object` has no attribute `numel` [missing-attribute] +ERROR torch/utils/bundled_inputs.py:398:20-29: Object of class `object` has no attribute `clone` [missing-attribute] +ERROR torch/utils/bundled_inputs.py:401:21-44: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/utils/bundled_inputs.py:401:46-65: No attribute `channels_last` in module `torch` [missing-attribute] +ERROR torch/utils/bundled_inputs.py:402:16-33: Object of class `object` has no attribute `is_contiguous` [missing-attribute] +ERROR torch/utils/bundled_inputs.py:402:57-86: Object of class `bool` has no attribute `all` [missing-attribute] +ERROR torch/utils/bundled_inputs.py:402:65-76: Object of class `object` has no attribute `flatten` [missing-attribute] +ERROR torch/utils/bundled_inputs.py:403:25-36: Object of class `object` has no attribute `flatten` [missing-attribute] +ERROR torch/utils/bundled_inputs.py:403:58-66: Object of class `object` has no attribute `size` [missing-attribute] +ERROR torch/utils/bundled_inputs.py:409:43-61: Object of class `object` has no attribute `_typed_storage` [missing-attribute] +ERROR torch/utils/bundled_inputs.py:466:12-23: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/utils/checkpoint.py:94:16-28: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/utils/checkpoint.py:212:24-49: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/utils/checkpoint.py:213:22-46: No attribute `get_autocast_dtype` in module `torch` [missing-attribute] +ERROR torch/utils/checkpoint.py:214:30-61: No attribute `is_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/utils/checkpoint.py:220:20-45: No attribute `is_autocast_enabled` in module `torch` [missing-attribute] +ERROR torch/utils/checkpoint.py:221:18-42: No attribute `get_autocast_dtype` in module `torch` [missing-attribute] +ERROR torch/utils/checkpoint.py:222:26-57: No attribute `is_autocast_cache_enabled` in module `torch` [missing-attribute] +ERROR torch/utils/checkpoint.py:795:16-27: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/utils/checkpoint.py:1156:23-54: No attribute `_current_graph_task_id` in module `torch._C` [missing-attribute] +ERROR torch/utils/checkpoint.py:1180:20-50: No attribute `_get_graph_exec_group` in module `torch._C` [missing-attribute] +ERROR torch/utils/checkpoint.py:1210:12-39: No attribute `_get_dispatch_mode` in module `torch._C` [missing-attribute] +ERROR torch/utils/checkpoint.py:1210:40-70: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute] +ERROR torch/utils/checkpoint.py:1238:14-50: No attribute `_SetExcludeDispatchKeyGuard` in module `torch._C` [missing-attribute] +ERROR torch/utils/checkpoint.py:1238:51-71: No attribute `DispatchKey` in module `torch._C` [missing-attribute] +ERROR torch/utils/checkpoint.py:1596:13-24: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/utils/checkpoint.py:1637:12-42: No attribute `_get_graph_exec_group` in module `torch._C` [missing-attribute] +ERROR torch/utils/checkpoint.py:1640:41-71: No attribute `_get_graph_exec_group` in module `torch._C` [missing-attribute] +ERROR torch/utils/checkpoint.py:1642:9-39: No attribute `_set_graph_exec_group` in module `torch._C` [missing-attribute] +ERROR torch/utils/checkpoint.py:1646:9-39: No attribute `_set_graph_exec_group` in module `torch._C` [missing-attribute] +ERROR torch/utils/checkpoint.py:1651:16-46: No attribute `_get_graph_exec_group` in module `torch._C` [missing-attribute] +ERROR torch/utils/collect_env.py:725:19-40: No attribute `_show_config` in module `torch._C` [missing-attribute] +ERROR torch/utils/cpp_backtrace.py:2:22-40: Could not import `_get_cpp_backtrace` from `torch._C` [missing-module-attribute] +ERROR torch/utils/cpp_extension.py:156:21-39: Module `importlib.metadata` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/cpp_extension.py:161:16-34: Module `importlib.metadata` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/cpp_extension.py:1094:9-25: Class member `BuildExtension.get_ext_filename` overrides parent class `build_ext` in an inconsistent manner [bad-param-name-override] +ERROR torch/utils/cpp_extension.py:2515:21-48: No attribute `_cuda_getArchFlags` in module `torch._C` [missing-attribute] +ERROR torch/utils/cpp_extension.py:2657:16-30: Module `importlib.util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/cpp_extension.py:2660:18-32: Module `importlib.util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/data/_utils/collate.py:70:16-31: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/utils/data/_utils/collate.py:259:9-25: No attribute `sparse_coo` in module `torch` [missing-attribute] +ERROR torch/utils/data/_utils/collate.py:260:9-25: No attribute `sparse_csr` in module `torch` [missing-attribute] +ERROR torch/utils/data/_utils/collate.py:261:9-25: No attribute `sparse_bsr` in module `torch` [missing-attribute] +ERROR torch/utils/data/_utils/collate.py:262:9-25: No attribute `sparse_csc` in module `torch` [missing-attribute] +ERROR torch/utils/data/_utils/collate.py:263:9-25: No attribute `sparse_bsc` in module `torch` [missing-attribute] +ERROR torch/utils/data/_utils/collate.py:275:12-23: No attribute `stack` in module `torch` [missing-attribute] +ERROR torch/utils/data/_utils/collate.py:288:21-36: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/utils/data/_utils/collate.py:296:12-27: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/utils/data/_utils/collate.py:304:12-24: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/data/_utils/collate.py:304:38-51: No attribute `float64` in module `torch` [missing-attribute] +ERROR torch/utils/data/_utils/collate.py:312:12-24: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/data/_utils/pin_memory.py:21:5-26: No attribute `set_num_threads` in module `torch` [missing-attribute] +ERROR torch/utils/data/_utils/signal_handling.py:40:5-31: Could not import `_error_if_any_worker_fails` from `torch._C` [missing-module-attribute] +ERROR torch/utils/data/_utils/signal_handling.py:41:5-24: Could not import `_remove_worker_pids` from `torch._C` [missing-module-attribute] +ERROR torch/utils/data/_utils/signal_handling.py:42:5-21: Could not import `_set_worker_pids` from `torch._C` [missing-module-attribute] +ERROR torch/utils/data/_utils/signal_handling.py:43:5-32: Could not import `_set_worker_signal_handlers` from `torch._C` [missing-module-attribute] +ERROR torch/utils/data/_utils/worker.py:257:9-30: No attribute `set_num_threads` in module `torch` [missing-attribute] +ERROR torch/utils/data/_utils/worker.py:270:22-37: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/utils/data/dataframes_pipes.ipynb#3:6:9-30: yield from value must be iterable, got `int | Unknown` [invalid-yield] +ERROR torch/utils/data/dataloader.py:135:20-31: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/utils/data/dataloader.py:135:42-53: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/utils/data/dataloader.py:268:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/data/dataloader.py:650:26-41: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/utils/data/dataloader.py:706:13-24: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/utils/data/dataloader.py:706:35-46: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/utils/data/dataloader.py:723:26-41: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/utils/data/datapipes/datapipe.py:426:9-20: Class member `_MapDataPipeSerializationWrapper.__getitem__` overrides parent class `MapDataPipe` in an inconsistent manner [bad-param-name-override] + WARN torch/utils/data/datapipes/gen_pyi.py:64:30-47: `materialize_lines` is deprecated [deprecated] +ERROR torch/utils/data/datapipes/iter/callable.py:79:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/data/datapipes/iter/combinatorics.py:159:34-45: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/utils/data/datapipes/iter/combinatorics.py:159:56-67: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/utils/data/datapipes/map/combinatorics.py:93:30-41: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/utils/data/datapipes/map/combinatorics.py:93:52-63: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/utils/data/datapipes/utils/decoder.py:189:20-29: Could not find import of `PIL.Image` [missing-import] +ERROR torch/utils/data/datapipes/utils/decoder.py:224:28-40: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/data/datapipes/utils/decoder.py:227:28-40: No attribute `tensor` in module `torch` [missing-attribute] +ERROR torch/utils/data/datapipes/utils/decoder.py:253:16-30: Could not find import of `torchvision.io` [missing-import] +ERROR torch/utils/data/datapipes/utils/decoder.py:297:20-35: Could not find import of `scipy.io` [missing-import] +ERROR torch/utils/data/dataset.py:17:19-36: Could not import `default_generator` from `torch` [missing-module-attribute] +ERROR torch/utils/data/dataset.py:17:38-47: Could not import `Generator` from `torch` [missing-module-attribute] +ERROR torch/utils/data/dataset.py:17:49-57: Could not import `randperm` from `torch` [missing-module-attribute] +ERROR torch/utils/data/dataset.py:333:9-20: Class member `ConcatDataset.__getitem__` overrides parent class `Dataset` in an inconsistent manner [bad-param-name-override] +ERROR torch/utils/data/dataset.py:402:9-20: Class member `Subset.__getitem__` overrides parent class `Dataset` in an inconsistent manner [bad-param-name-override] +ERROR torch/utils/data/distributed.py:110:17-32: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/utils/data/graph.py:31:9-49: Could not find import of `dill` [missing-import] +ERROR torch/utils/data/graph.py:85:13-51: Could not find import of `dill` [missing-import] +ERROR torch/utils/data/graph_settings.py:144:48-63: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/utils/data/graph_settings.py:169:13-24: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/utils/data/graph_settings.py:169:35-46: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/utils/data/sampler.py:163:24-35: No attribute `empty` in module `torch` [missing-attribute] +ERROR torch/utils/data/sampler.py:163:46-57: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/utils/data/sampler.py:164:25-40: No attribute `Generator` in module `torch` [missing-attribute] +ERROR torch/utils/data/sampler.py:171:28-41: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/utils/data/sampler.py:172:47-58: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/utils/data/sampler.py:174:24-37: No attribute `randint` in module `torch` [missing-attribute] +ERROR torch/utils/data/sampler.py:177:23-34: No attribute `int64` in module `torch` [missing-attribute] +ERROR torch/utils/data/sampler.py:182:28-42: No attribute `randperm` in module `torch` [missing-attribute] +ERROR torch/utils/data/sampler.py:183:24-38: No attribute `randperm` in module `torch` [missing-attribute] +ERROR torch/utils/data/sampler.py:206:18-32: No attribute `randperm` in module `torch` [missing-attribute] +ERROR torch/utils/data/sampler.py:264:26-41: No attribute `as_tensor` in module `torch` [missing-attribute] +ERROR torch/utils/data/sampler.py:264:57-69: No attribute `double` in module `torch` [missing-attribute] +ERROR torch/utils/data/sampler.py:277:23-40: No attribute `multinomial` in module `torch` [missing-attribute] +ERROR torch/utils/data/standard_pipes.ipynb#3:6:9-30: yield from value must be iterable, got `int | Unknown` [invalid-yield] +ERROR torch/utils/data/typing.ipynb#3:3:11-22: Could not find name `get_ipython` [unknown-name] +ERROR torch/utils/data/typing.ipynb#5:2:9-17: Class member `InvalidDP1.__iter__` overrides parent class `IterDataPipe` in an inconsistent manner [bad-override] +ERROR torch/utils/data/typing.ipynb#5:2:27-30: Function declared to return `str` but is missing an explicit `return` [bad-return] +ERROR torch/utils/data/typing.ipynb#7:2:9-17: Class member `InvalidDP2.__iter__` overrides parent class `IterDataPipe` in an inconsistent manner [bad-override] +ERROR torch/utils/data/typing.ipynb#7:2:27-40: Function declared to return `Iterator[str]` but is missing an explicit `return` [bad-return] +ERROR torch/utils/data/typing.ipynb#9:2:27-52: Function declared to return `Iterator[tuple[int, str]]` but is missing an explicit `return` [bad-return] +ERROR torch/utils/data/typing.ipynb#10:2:27-40: Function declared to return `Iterator[int]` but is missing an explicit `return` [bad-return] +ERROR torch/utils/data/typing.ipynb#12:6:27-35: Function declared to return `Iterator[Unknown]` but is missing an explicit `return` [bad-return] +ERROR torch/utils/data/typing.ipynb#12:10:27-41: Function declared to return `Iterator[T_co]` but is missing an explicit `return` [bad-return] +ERROR torch/utils/data/typing.ipynb#14:2:27-53: Function declared to return `Iterator[tuple[T_co, str]]` but is missing an explicit `return` [bad-return] +ERROR torch/utils/data/typing.ipynb#14:8:9-17: Class member `DP.__iter__` overrides parent class `IterDataPipe` in an inconsistent manner [bad-override] +ERROR torch/utils/data/typing.ipynb#14:8:27-58: Function declared to return `Iterator[tuple[int | str, str]]` but is missing an explicit `return` [bad-return] +ERROR torch/utils/data/typing.ipynb#17:2:27-46: Function declared to return `Iterator[list[int]]` but is missing an explicit `return` [bad-return] +ERROR torch/utils/data/typing.ipynb#18:2:27-40: Function declared to return `Iterator[Any]` but is missing an explicit `return` [bad-return] +ERROR torch/utils/data/typing.ipynb#19:2:27-42: Function declared to return `Iterator[tuple[Unknown, ...]]` but is missing an explicit `return` [bad-return] +ERROR torch/utils/deterministic.py:15:16-69: No attribute `_get_deterministic_fill_uninitialized_memory` in module `torch._C` [missing-attribute] +ERROR torch/utils/deterministic.py:19:16-69: No attribute `_set_deterministic_fill_uninitialized_memory` in module `torch._C` [missing-attribute] +ERROR torch/utils/dlpack.py:6:22-45: Could not import `_to_dlpack` from `torch._C` [missing-module-attribute] +ERROR torch/utils/dlpack.py:33:1-21: No attribute `_add_docstr` in module `torch._C` [missing-attribute] +ERROR torch/utils/dlpack.py:135:26-38: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/utils/dlpack.py:136:39-51: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/utils/dlpack.py:138:35-66: No attribute `_torchDeviceToDLDevice` in module `torch._C` [missing-attribute] +ERROR torch/utils/dlpack.py:171:12-33: No attribute `_from_dlpack` in module `torch._C` [missing-attribute] +ERROR torch/utils/flop_counter.py:52:9-28: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/hooks.py:168:35-56: No attribute `is_grad_enabled` in module `torch` [missing-attribute] +ERROR torch/utils/hooks.py:171:23-50: Module `torch.nn.modules._functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/jit/log_extract.py:30:37-56: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/utils/jit/log_extract.py:43:12-31: No attribute `empty_strided` in module `torch` [missing-attribute] +ERROR torch/utils/jit/log_extract.py:46:13-30: No attribute `parse_ir` in module `torch._C` [missing-attribute] +ERROR torch/utils/jit/log_extract.py:50:35-53: No attribute `FloatType` in module `torch._C` [missing-attribute] +ERROR torch/utils/jit/log_extract.py:52:37-53: No attribute `IntType` in module `torch._C` [missing-attribute] +ERROR torch/utils/jit/log_extract.py:54:37-56: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/utils/jit/log_extract.py:55:31-50: No attribute `TensorType` in module `torch._C` [missing-attribute] +ERROR torch/utils/jit/log_extract.py:57:37-54: No attribute `BoolType` in module `torch._C` [missing-attribute] +ERROR torch/utils/jit/log_extract.py:62:12-48: No attribute `_create_function_from_graph` in module `torch._C` [missing-attribute] +ERROR torch/utils/jit/log_extract.py:63:5-47: No attribute `_jit_pass_erase_shape_information` in module `torch._C` [missing-attribute] +ERROR torch/utils/jit/log_extract.py:96:20-57: No attribute `_get_graph_executor_optimize` in module `torch._C` [missing-attribute] +ERROR torch/utils/jit/log_extract.py:100:9-46: No attribute `_get_graph_executor_optimize` in module `torch._C` [missing-attribute] +ERROR torch/utils/mkldnn.py:17:17-28: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/utils/mkldnn.py:17:66-77: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/utils/mkldnn.py:32:20-32: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/utils/mkldnn.py:58:17-28: No attribute `zeros` in module `torch` [missing-attribute] +ERROR torch/utils/mkldnn.py:58:66-77: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/utils/mkldnn.py:66:16-40: No attribute `mkldnn_convolution` in module `torch` [missing-attribute] +ERROR torch/utils/mkldnn.py:93:40-52: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/utils/mkldnn.py:102:23-35: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/utils/mkldnn.py:115:40-52: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/utils/mkldnn.py:124:23-35: No attribute `_nn` in module `torch._C` [missing-attribute] +ERROR torch/utils/mkldnn.py:176:16-32: No attribute `batch_norm` in module `torch` [missing-attribute] +ERROR torch/utils/mkldnn.py:205:20-31: No attribute `prelu` in module `torch` [missing-attribute] +ERROR torch/utils/mkldnn.py:209:29-40: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/utils/mkldnn.py:210:22-33: No attribute `float` in module `torch` [missing-attribute] +ERROR torch/utils/mkldnn.py:210:35-49: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/utils/mkldnn.py:210:51-61: No attribute `half` in module `torch` [missing-attribute] +ERROR torch/utils/mobile_optimizer.py:6:22-65: Could not import `_MobileOptimizerType` from `torch._C` [missing-module-attribute] +ERROR torch/utils/mobile_optimizer.py:59:32-70: No attribute `_jit_pass_optimize_for_mobile` in module `torch._C` [missing-attribute] +ERROR torch/utils/mobile_optimizer.py:64:32-77: No attribute `_jit_pass_vulkan_optimize_for_mobile` in module `torch._C` [missing-attribute] +ERROR torch/utils/mobile_optimizer.py:69:32-76: No attribute `_jit_pass_metal_optimize_for_mobile` in module `torch._C` [missing-attribute] +ERROR torch/utils/mobile_optimizer.py:73:12-32: Module `torch.jit._recursive` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import] +ERROR torch/utils/module_tracker.py:88:16-47: No attribute `_current_graph_task_id` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/__init__.py:1:8-19: Could not find import of `tensorboard` [missing-import] +ERROR torch/utils/tensorboard/__init__.py:13:1-66: Could not find import of `tensorboard.summary.writer.record_writer` [missing-import] +ERROR torch/utils/tensorboard/_convert_np.py:32:19-33: No attribute `bfloat16` in module `torch` [missing-attribute] +ERROR torch/utils/tensorboard/_convert_np.py:33:18-31: No attribute `float16` in module `torch` [missing-attribute] +ERROR torch/utils/tensorboard/_embedding.py:6:1-34: Could not find import of `tensorboard.compat` [missing-import] +ERROR torch/utils/tensorboard/_embedding.py:7:1-77: Could not find import of `tensorboard.plugins.projector.projector_config_pb2` [missing-import] +ERROR torch/utils/tensorboard/_embedding.py:41:5-26: Could not find import of `PIL` [missing-import] +ERROR torch/utils/tensorboard/_onnx_graph.py:2:1-56: Could not find import of `tensorboard.compat.proto.graph_pb2` [missing-import] +ERROR torch/utils/tensorboard/_onnx_graph.py:3:1-58: Could not find import of `tensorboard.compat.proto.node_def_pb2` [missing-import] +ERROR torch/utils/tensorboard/_onnx_graph.py:4:1-61: Could not find import of `tensorboard.compat.proto.versions_pb2` [missing-import] +ERROR torch/utils/tensorboard/_onnx_graph.py:5:1-62: Could not find import of `tensorboard.compat.proto.attr_value_pb2` [missing-import] +ERROR torch/utils/tensorboard/_onnx_graph.py:6:1-71: Could not find import of `tensorboard.compat.proto.tensor_shape_pb2` [missing-import] +ERROR torch/utils/tensorboard/_onnx_graph.py:10:12-16: Could not find import of `onnx` [missing-import] +ERROR torch/utils/tensorboard/_proto_graph.py:4:1-58: Could not find import of `tensorboard.compat.proto.node_def_pb2` [missing-import] +ERROR torch/utils/tensorboard/_proto_graph.py:5:1-62: Could not find import of `tensorboard.compat.proto.attr_value_pb2` [missing-import] +ERROR torch/utils/tensorboard/_proto_graph.py:6:1-71: Could not find import of `tensorboard.compat.proto.tensor_shape_pb2` [missing-import] +ERROR torch/utils/tensorboard/_proto_graph.py:41:12-23: No attribute `dtype` in module `torch` [missing-attribute] +ERROR torch/utils/tensorboard/_pytorch_graph.py:6:1-60: Could not find import of `tensorboard.compat.proto.config_pb2` [missing-import] +ERROR torch/utils/tensorboard/_pytorch_graph.py:7:1-56: Could not find import of `tensorboard.compat.proto.graph_pb2` [missing-import] +ERROR torch/utils/tensorboard/_pytorch_graph.py:8:1-79: Could not find import of `tensorboard.compat.proto.step_stats_pb2` [missing-import] +ERROR torch/utils/tensorboard/_pytorch_graph.py:9:1-61: Could not find import of `tensorboard.compat.proto.versions_pb2` [missing-import] +ERROR torch/utils/tensorboard/_pytorch_graph.py:330:13-38: No attribute `_jit_pass_inline` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/_pytorch_graph.py:375:21-34: No attribute `Node` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/_utils.py:19:12-36: Could not find import of `matplotlib.pyplot` [missing-import] +ERROR torch/utils/tensorboard/_utils.py:20:12-62: Could not find import of `matplotlib.backends.backend_agg` [missing-import] +ERROR torch/utils/tensorboard/writer.py:11:5-41: Could not find import of `matplotlib.figure` [missing-import] +ERROR torch/utils/tensorboard/writer.py:12:1-34: Could not find import of `tensorboard.compat` [missing-import] +ERROR torch/utils/tensorboard/writer.py:13:1-47: Could not find import of `tensorboard.compat.proto` [missing-import] +ERROR torch/utils/tensorboard/writer.py:14:1-65: Could not find import of `tensorboard.compat.proto.event_pb2` [missing-import] +ERROR torch/utils/tensorboard/writer.py:15:1-79: Could not find import of `tensorboard.plugins.projector.projector_config_pb2` [missing-import] +ERROR torch/utils/tensorboard/writer.py:16:1-73: Could not find import of `tensorboard.summary.writer.event_file_writer` [missing-import] +ERROR torch/utils/tensorboard/writer.py:233:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:335:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:384:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:420:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:463:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:504:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:573:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:632:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:676:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:713:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:752:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:785:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:805:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:824:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:830:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:847:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:911:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:1008:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:1046:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:1075:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:1096:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:1125:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/tensorboard/writer.py:1190:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute] +ERROR torch/utils/throughput_benchmark.py:98:31-59: No attribute `ThroughputBenchmark` in module `torch._C` [missing-attribute] +ERROR torch/utils/throughput_benchmark.py:100:31-59: No attribute `ThroughputBenchmark` in module `torch._C` [missing-attribute] +ERROR torch/utils/throughput_benchmark.py:155:18-42: No attribute `BenchmarkConfig` in module `torch._C` [missing-attribute] +ERROR torch/xpu/__init__.py:18:19-36: Could not import `device` from `torch` [missing-module-attribute] +ERROR torch/xpu/__init__.py:39:12-29: No attribute `_has_xpu` in module `torch._C` [missing-attribute] +ERROR torch/xpu/__init__.py:43:28-57: No attribute `_XpuDeviceProperties` in module `torch._C` [missing-attribute] +ERROR torch/xpu/__init__.py:44:24-52: No attribute `_xpu_exchangeDevice` in module `torch._C` [missing-attribute] +ERROR torch/xpu/__init__.py:45:30-63: No attribute `_xpu_maybeExchangeDevice` in module `torch._C` [missing-attribute] +ERROR torch/xpu/__init__.py:62:12-40: No attribute `_xpu_getDeviceCount` in module `torch._C` [missing-attribute] +ERROR torch/xpu/__init__.py:138:9-27: No attribute `_xpu_init` in module `torch._C` [missing-attribute] +ERROR torch/xpu/__init__.py:218:9-32: No attribute `_xpu_setDevice` in module `torch._C` [missing-attribute] +ERROR torch/xpu/__init__.py:281:12-35: No attribute `_xpu_getDevice` in module `torch._C` [missing-attribute] +ERROR torch/xpu/__init__.py:284:41-53: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/xpu/__init__.py:284:59-71: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/xpu/__init__.py:291:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/xpu/__init__.py:293:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/xpu/__init__.py:310:12-45: No attribute `_xpu_canDeviceAccessPeer` in module `torch._C` [missing-attribute] +ERROR torch/xpu/__init__.py:372:5-28: No attribute `_xpu_setStream` in module `torch._C` [missing-attribute] +ERROR torch/xpu/__init__.py:408:18-48: No attribute `_xpu_getCurrentStream` in module `torch._C` [missing-attribute] +ERROR torch/xpu/__init__.py:435:18-53: No attribute `_xpu_getStreamFromExternal` in module `torch._C` [missing-attribute] +ERROR torch/xpu/__init__.py:453:12-37: No attribute `_xpu_synchronize` in module `torch._C` [missing-attribute] +ERROR torch/xpu/__init__.py:460:18-44: No attribute `_xpu_getArchFlags` in module `torch._C` [missing-attribute] +ERROR torch/xpu/__init__.py:474:28-40: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/xpu/__init__.py:474:45-63: No attribute `Generator` in module `torch._C` [missing-attribute] +ERROR torch/xpu/__init__.py:487:42-54: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/xpu/__init__.py:505:51-63: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/xpu/_utils.py:29:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/xpu/_utils.py:30:27-39: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/xpu/memory.py:23:9-33: No attribute `_xpu_emptyCache` in module `torch._C` [missing-attribute] +ERROR torch/xpu/memory.py:38:12-46: No attribute `_xpu_resetPeakMemoryStats` in module `torch._C` [missing-attribute] +ERROR torch/xpu/memory.py:53:12-53: No attribute `_xpu_resetAccumulatedMemoryStats` in module `torch._C` [missing-attribute] +ERROR torch/xpu/memory.py:61:12-37: No attribute `_xpu_memoryStats` in module `torch._C` [missing-attribute] +ERROR torch/xpu/memory.py:195:12-39: No attribute `_xpu_getMemoryInfo` in module `torch._C` [missing-attribute] +ERROR torch/xpu/memory.py:215:12-43: No attribute `_xpu_getMemoryFraction` in module `torch._C` [missing-attribute] +ERROR torch/xpu/random.py:11:43-55: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/xpu/random.py:23:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/xpu/random.py:25:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/xpu/random.py:40:48-60: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/xpu/random.py:49:10-36: No attribute `_DisableFuncTorch` in module `torch._C` [missing-attribute] +ERROR torch/xpu/random.py:50:56-79: No attribute `contiguous_format` in module `torch` [missing-attribute] +ERROR torch/xpu/random.py:52:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/xpu/random.py:54:18-30: No attribute `device` in module `torch` [missing-attribute] +ERROR torch/xpu/streams.py:14:14-37: No attribute `_XpuStreamBase` in module `torch._C` [missing-attribute] +ERROR torch/xpu/streams.py:89:32-47: Object of class `Stream` has no attribute `sycl_queue` [missing-attribute] +ERROR torch/xpu/streams.py:97:22-37: Object of class `Stream` has no attribute `sycl_queue` [missing-attribute] +ERROR torch/xpu/streams.py:97:39-50: Object of class `Stream` has no attribute `device` [missing-attribute] +ERROR torch/xpu/streams.py:100:43-54: Object of class `Stream` has no attribute `device` [missing-attribute] +ERROR torch/xpu/streams.py:100:68-83: Object of class `Stream` has no attribute `sycl_queue` [missing-attribute] +ERROR torch/xpu/streams.py:103:13-35: No attribute `_XpuEventBase` in module `torch._C` [missing-attribute] +ERROR torch/xpu/streams.py:167:32-47: Object of class `Event` has no attribute `sycl_event` [missing-attribute] +ERROR torch/xpu/streams.py:170:12-27: Object of class `Event` has no attribute `sycl_event` [missing-attribute] + INFO Checking project configured at `/pyrefly.toml` + INFO 21,677 errors (6,455 suppressed) diff --git a/scripts/ty_benchmark/snapshots/pytorch_Pyright.txt b/scripts/ty_benchmark/snapshots/pytorch_Pyright.txt new file mode 100644 index 0000000000..ebe376a4c4 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/pytorch_Pyright.txt @@ -0,0 +1,28819 @@ +/torch/_C/_acc/__init__.pyi + /torch/_C/_acc/__init__.pyi:2:25 - error: "_dtype" is unknown import symbol (reportAttributeAccessIssue) +/torch/_C/_distributed_c10d.pyi + /torch/_C/_distributed_c10d.pyi:10:22 - error: "ScriptObject" is unknown import symbol (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:191:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:339:57 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:343:51 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:348:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:349:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:585:47 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:586:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:590:43 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:591:42 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:595:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:606:40 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:608:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:691:51 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:703:32 - warning: Static methods should not take a "self" or "cls" parameter (reportSelfClsParameterName) + /torch/_C/_distributed_c10d.pyi:705:34 - warning: Static methods should not take a "self" or "cls" parameter (reportSelfClsParameterName) + /torch/_C/_distributed_c10d.pyi:779:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:780:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:793:35 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:795:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:808:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:815:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_c10d.pyi:835:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_C/_distributed_rpc.pyi + /torch/_C/_distributed_rpc.pyi:7:22 - error: "Future" is unknown import symbol (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc.pyi:47:62 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc.pyi:47:76 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc.pyi:72:39 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc.pyi:72:53 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc.pyi:73:25 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc.pyi:81:43 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc.pyi:81:57 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc.pyi:82:29 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc.pyi:87:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc.pyi:87:46 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc.pyi:98:51 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc.pyi:98:65 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc.pyi:99:29 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc.pyi:110:62 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc.pyi:110:76 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc.pyi:114:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc.pyi:115:50 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc.pyi:115:64 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_C/_distributed_rpc_testing.pyi + /torch/_C/_distributed_rpc_testing.pyi:30:51 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc_testing.pyi:30:65 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_C/_distributed_rpc_testing.pyi:31:29 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_C/_profiler.pyi + /torch/_C/_profiler.pyi:4:22 - error: "device" is unknown import symbol (reportAttributeAccessIssue) + /torch/_C/_profiler.pyi:4:30 - error: "dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/_C/_profiler.pyi:4:37 - error: "layout" is unknown import symbol (reportAttributeAccessIssue) +/torch/_C_flatbuffer/__init__.pyi + /torch/_C_flatbuffer/__init__.pyi:2:22 - error: "LiteScriptModule" is unknown import symbol (reportAttributeAccessIssue) + /torch/_C_flatbuffer/__init__.pyi:2:40 - error: "ScriptModule" is unknown import symbol (reportAttributeAccessIssue) +/torch/_VF.py + /torch/_VF.py:25:28 - error: "_VariableFunctions" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/__config__.py + /torch/__config__.py:9:21 - error: "_show_config" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__config__.py:17:21 - error: "_cxx_flags" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__config__.py:22:21 - error: "_parallel_info" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/__init__.py + /torch/__init__.py:67:5 - warning: "BoolTensor" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/__init__.py:69:5 - warning: "ByteTensor" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/__init__.py:71:5 - warning: "CharTensor" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/__init__.py:73:5 - warning: "DoubleTensor" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/__init__.py:75:5 - warning: "FloatTensor" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/__init__.py:78:5 - warning: "IntTensor" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/__init__.py:80:5 - warning: "LongTensor" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/__init__.py:82:5 - warning: "ShortTensor" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/__init__.py:91:5 - warning: "chunk" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/__init__.py:110:5 - warning: "matmul" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/__init__.py:112:5 - warning: "rand" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/__init__.py:113:5 - warning: "randn" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/__init__.py:124:5 - warning: "stack" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/__init__.py:157:16 - error: "initialize" is not a known attribute of module "." (reportAttributeAccessIssue) + /torch/__init__.py:291:10 - error: Import "torch.version" could not be resolved (reportMissingImports) + /torch/__init__.py:1025:26 - error: "_initExtension" is unknown import symbol (reportAttributeAccessIssue) + /torch/__init__.py:1056:9 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) + /torch/__init__.py:1184:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:1215:22 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:1308:8 - error: "_set_default_tensor_type" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:1311:33 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:1361:8 - error: "_set_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:1510:8 - error: "_set_deterministic_algorithms" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:1517:15 - error: "_get_deterministic_algorithms" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:1525:15 - error: "_get_deterministic_algorithms_warn_only" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:1561:12 - error: "_set_deterministic_algorithms" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:1563:12 - error: "_set_deterministic_algorithms" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:1565:12 - error: "_set_deterministic_algorithms" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:1578:11 - error: "_get_deterministic_algorithms" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:1579:15 - error: "_get_deterministic_algorithms_warn_only" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:1591:15 - error: "_get_float32_matmul_precision" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:1657:8 - error: "_set_float32_matmul_precision" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:1670:8 - error: "_set_warnAlways" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:1677:15 - error: "_get_warnAlways" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:1916:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/__init__.py:1927:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/__init__.py:1938:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/__init__.py:1949:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/__init__.py:1960:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/__init__.py:1971:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/__init__.py:1982:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/__init__.py:1993:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/__init__.py:2004:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/__init__.py:2015:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/__init__.py:2026:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/__init__.py:2037:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/__init__.py:2048:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/__init__.py:2059:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/__init__.py:2070:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/__init__.py:2081:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/__init__.py:2092:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/__init__.py:2160:23 - error: "segment_reduce" is not defined (reportUndefinedVariable) + /torch/__init__.py:2161:9 - error: "segment_reduce" is not defined (reportUndefinedVariable) + /torch/__init__.py:2168:22 - error: "_VariableFunctions" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:2171:24 - error: "_VariableFunctions" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:2180:9 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) + /torch/__init__.py:2191:1 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) + /torch/__init__.py:2192:75 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:2296:4 - error: "_init_names" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:2330:28 - error: "contiguous_format" is not defined (reportUndefinedVariable) + /torch/__init__.py:2336:27 - error: "get_num_threads" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:2363:45 - error: "to_dlpack" is unknown import symbol (reportAttributeAccessIssue) + /torch/__init__.py:2664:8 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:2875:54 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:2880:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:2881:37 - error: Cannot access attribute "type" for class "str" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/__init__.py:2881:37 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/__init__.py:2883:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:2886:39 - error: "_get_accelerator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/__init__.py:2922:11 - error: "sym_constrain_range_for_size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_awaits/__init__.py + /torch/_awaits/__init__.py:7:12 - warning: "Await" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/_awaits/__init__.py:14:23 - error: "_Await" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_classes.py + /torch/_classes.py:13:26 - error: "_get_custom_class_python_wrapper" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) +/torch/_custom_op/impl.py + /torch/_custom_op/impl.py:484:15 - error: "_dispatch_find_schema_or_throw" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_custom_op/impl.py:503:27 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) +/torch/_decomp/__init__.py + /torch/_decomp/__init__.py:59:14 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_decomp/decompositions.py + /torch/_decomp/decompositions.py:144:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:162:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:168:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:170:56 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:193:18 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:193:30 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:200:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:212:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:219:25 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:219:37 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:226:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:229:15 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:236:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:245:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:261:28 - error: "tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:276:32 - error: "erf" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:277:29 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:284:33 - error: "tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:285:27 - error: "sigmoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:294:25 - error: "sigmoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:301:30 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:307:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:316:24 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:317:25 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:347:23 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:348:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:349:15 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:349:26 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:357:22 - error: "mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:359:22 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:364:32 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:365:23 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:366:22 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:367:25 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:368:22 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:369:25 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:370:22 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:420:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:431:19 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:433:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:436:27 - error: "sign" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:462:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:465:15 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:499:25 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:500:24 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:501:24 - error: "scatter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:512:25 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:530:32 - error: "sigmoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:535:18 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:631:33 - error: "maximum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:632:15 - error: "log1p" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:633:24 - error: "maximum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:633:38 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:650:52 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:666:18 - error: "log1p" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:666:30 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:679:48 - error: "sigmoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:695:20 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:695:59 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:697:20 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:697:59 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:698:17 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:699:17 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:715:18 - error: "slice_scatter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:818:17 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:821:18 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:821:66 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:823:22 - error: "logical_and" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:826:22 - error: "logical_and" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:829:22 - error: "logical_and" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:841:18 - error: "select_scatter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:850:18 - error: "diagonal_scatter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:854:65 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:865:71 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:868:51 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:883:71 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:885:38 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:885:58 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:976:33 - error: Argument of type "tuple[int, int, int, int]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[int, int, int, int]" is not assignable to "list[int]" (reportArgumentType) + /torch/_decomp/decompositions.py:1084:28 - error: Argument of type "tuple[int, int, int, int]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[int, int, int, int]" is not assignable to "list[int]" (reportArgumentType) + /torch/_decomp/decompositions.py:1112:22 - error: "squeeze_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1114:17 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1114:73 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1133:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1134:19 - error: "logical_and" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1139:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1140:19 - error: "logical_and" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1161:27 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1161:52 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1161:82 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1166:27 - error: "rand_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1170:30 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1170:59 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1182:33 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1188:30 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1190:23 - error: "amax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1191:30 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1192:35 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1207:33 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1215:23 - error: "amax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1217:31 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1217:41 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1217:51 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1261:22 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1266:30 - error: Argument of type "bool" cannot be assigned to parameter "x" of type "Tensor" in function "_unsqueeze_to_dim" +   "bool" is not assignable to "Tensor" (reportArgumentType) + /torch/_decomp/decompositions.py:1299:47 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1368:22 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1370:15 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1386:45 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1433:54 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1446:32 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1476:25 - error: "mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1516:25 - error: "mv" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1563:16 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1572:28 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1573:28 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1574:24 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1581:24 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1583:23 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1592:19 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1593:21 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1596:27 - error: "reshape" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_decomp/decompositions.py:1664:53 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1701:15 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1702:16 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1703:16 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1704:16 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1715:30 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1721:28 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1777:40 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1777:55 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1778:29 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1778:41 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1780:29 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1780:41 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1784:25 - error: "rsqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1788:19 - error: "pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1801:15 - error: "channels_last" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1802:15 - error: "channels_last_3d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1829:48 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1831:66 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1833:58 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1872:25 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1878:30 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1908:34 - error: "var_mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1911:22 - error: "rsqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1915:27 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1916:27 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1926:34 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1938:29 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:1938:34 - error: Operator "+" not supported for "None" (reportOptionalOperand) + /torch/_decomp/decompositions.py:1961:31 - error: "to" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_decomp/decompositions.py:2152:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2153:35 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2253:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2255:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2258:35 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2260:42 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2273:26 - error: "scalar_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2278:30 - error: "_prims" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2280:26 - error: "_prims" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2283:26 - error: "_prims" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2287:22 - error: "clone" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2327:60 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2332:43 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2424:24 - error: "rsqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2638:22 - error: "mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2704:32 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2753:32 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2929:17 - error: "minimum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2930:15 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2930:26 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2935:24 - error: "log1p" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:2944:31 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:3177:35 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:3935:20 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:3935:40 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:3938:18 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:3938:49 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:3942:24 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:3944:24 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:3999:24 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4011:31 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4124:25 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4128:21 - error: "gather" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4130:20 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4138:13 - error: "w" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_decomp/decompositions.py:4139:22 - error: "gather" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4140:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4143:49 - error: Cannot access attribute "sum" for class "bool" +   Attribute "sum" is unknown (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4197:12 - error: Type "float" is not assignable to return type "Tensor" +   "float" is not assignable to "Tensor" (reportReturnType) + /torch/_decomp/decompositions.py:4201:12 - error: Type "float" is not assignable to return type "Tensor" +   "float" is not assignable to "Tensor" (reportReturnType) + /torch/_decomp/decompositions.py:4207:26 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4208:21 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4209:21 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4212:24 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4213:24 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4219:42 - error: Argument of type "float" cannot be assigned to parameter "x" of type "Tensor" in function "_upsample_cubic_convolution1" +   "float" is not assignable to "Tensor" (reportArgumentType) + /torch/_decomp/decompositions.py:4220:42 - error: Argument of type "float" cannot be assigned to parameter "x" of type "Tensor" in function "_upsample_cubic_convolution2" +   "float" is not assignable to "Tensor" (reportArgumentType) + /torch/_decomp/decompositions.py:4231:25 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4235:55 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4235:76 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4238:22 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4241:18 - error: "linspace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4252:22 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4255:50 - error: Argument of type "tuple[Literal[0], Literal[2]]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[0], Literal[2]]" is not assignable to "list[int]" (reportArgumentType) + /torch/_decomp/decompositions.py:4256:50 - error: Argument of type "tuple[Literal[1], Literal[1]]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[1], Literal[1]]" is not assignable to "list[int]" (reportArgumentType) + /torch/_decomp/decompositions.py:4257:54 - error: Argument of type "tuple[Literal[2], Literal[0]]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[2], Literal[0]]" is not assignable to "list[int]" (reportArgumentType) + /torch/_decomp/decompositions.py:4268:22 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4271:50 - error: Argument of type "tuple[Literal[0], Literal[3]]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[0], Literal[3]]" is not assignable to "list[int]" (reportArgumentType) + /torch/_decomp/decompositions.py:4272:50 - error: Argument of type "tuple[Literal[1], Literal[2]]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[1], Literal[2]]" is not assignable to "list[int]" (reportArgumentType) + /torch/_decomp/decompositions.py:4273:50 - error: Argument of type "tuple[Literal[2], Literal[1]]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[2], Literal[1]]" is not assignable to "list[int]" (reportArgumentType) + /torch/_decomp/decompositions.py:4274:54 - error: Argument of type "tuple[Literal[3], Literal[0]]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[3], Literal[0]]" is not assignable to "list[int]" (reportArgumentType) + /torch/_decomp/decompositions.py:4348:26 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4352:23 - error: "fmod" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4353:64 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4354:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4362:26 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4368:26 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4387:22 - error: "logical_and" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4388:28 - error: "logical_and" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4388:55 - error: "logical_and" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4391:19 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4392:19 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4402:19 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4403:41 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4403:67 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4709:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4710:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4723:20 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4724:20 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4733:29 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4738:53 - error: "sign" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4738:77 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4742:53 - error: "sign" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4742:77 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4760:29 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4974:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4975:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4975:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4976:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4989:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4990:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4990:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:4991:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5037:15 - error: "gather" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5043:17 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5044:15 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5075:17 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5077:21 - error: "amin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5077:32 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5081:19 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5082:15 - error: "gather" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5084:19 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5085:23 - error: "any" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5091:15 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5128:15 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5179:41 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5227:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5282:31 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5285:23 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5285:53 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5287:23 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions.py:5290:25 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_decomp/decompositions_for_jvp.py + /torch/_decomp/decompositions_for_jvp.py:104:18 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:104:28 - error: "diag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:109:17 - error: "minimum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:110:15 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:110:26 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:115:24 - error: "log1p" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:124:18 - error: "mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:125:17 - error: "var" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:126:17 - error: "pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:128:22 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:173:15 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:174:16 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:175:16 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:176:16 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:182:25 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:186:48 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:192:26 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:194:26 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:198:46 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:202:24 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:204:24 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:248:24 - error: "rsqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:260:18 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:262:29 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:263:19 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:265:23 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:266:24 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:266:38 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:269:28 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:271:28 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:282:29 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:286:29 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_decomp/decompositions_for_jvp.py:291:27 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_decomp/decompositions_for_rng.py + /torch/_decomp/decompositions_for_rng.py:52:25 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dispatch/python.py + /torch/_dispatch/python.py:14:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dispatch/python.py:19:33 - error: "_DisablePythonDispatcher" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dispatch/python.py:20:37 - error: "_EnablePythonDispatcher" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dispatch/python.py:21:32 - error: "_EnablePreDispatch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dispatch/python.py:157:23 - error: Arguments for ParamSpec "_P@make_crossref_functionalize" are missing (reportCallIssue) +/torch/_dynamo/__init__.py + /torch/_dynamo/__init__.py:153:23 - error: "compiled_autograd" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/__init__.py:160:18 - error: "_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/_trace_wrapped_higher_order_op.py + /torch/_dynamo/_trace_wrapped_higher_order_op.py:35:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/_trace_wrapped_higher_order_op.py:59:18 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/_trace_wrapped_higher_order_op.py:121:12 - error: "_export" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/_trace_wrapped_higher_order_op.py:139:31 - error: "_TensorMeta" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/_trace_wrapped_higher_order_op.py:171:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/_trace_wrapped_higher_order_op.py:215:46 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/_trace_wrapped_higher_order_op.py:247:17 - error: Type "list[Any]" is not assignable to declared type "tuple[Any, ...]" +   "list[Any]" is not assignable to "tuple[Any, ...]" (reportAssignmentType) +/torch/_dynamo/aot_compile.py + /torch/_dynamo/aot_compile.py:71:9 - error: Method "reducer_override" overrides class "Pickler" in an incompatible manner +   Positional parameter count mismatch; base method has 1, but override has 2 (reportIncompatibleMethodOverride) + /torch/_dynamo/aot_compile.py:161:30 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_dynamo/aot_compile.py:226:19 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/aot_compile.py:227:19 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/aot_compile.py:244:39 - error: Cannot access attribute "compiler_fn" for class "_TorchCompileInductorWrapper" +   Attribute "compiler_fn" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/aot_compile.py:244:39 - error: Cannot access attribute "compiler_fn" for class "FunctionType" +   Attribute "compiler_fn" is unknown (reportFunctionMemberAccess) +/torch/_dynamo/aot_compile_types.py + /torch/_dynamo/aot_compile_types.py:49:20 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/backends/common.py + /torch/_dynamo/backends/common.py:166:64 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/backends/common.py:170:18 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/backends/common.py:173:63 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/backends/common.py:177:18 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/backends/cudagraphs.py + /torch/_dynamo/backends/cudagraphs.py:95:17 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/backends/cudagraphs.py:96:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/backends/cudagraphs.py:146:54 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/backends/cudagraphs.py:203:39 - error: "cudagraph_trees" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_dynamo/backends/cudagraphs.py:267:32 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/backends/debugging.py + /torch/_dynamo/backends/debugging.py:101:33 - error: "exc" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/backends/debugging.py:224:18 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/backends/debugging.py:226:16 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/backends/debugging.py:229:22 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/backends/debugging.py:372:33 - error: "relu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/backends/debugging.py:382:33 - error: "relu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/backends/debugging.py:394:33 - error: "relu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/backends/debugging.py:395:33 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/backends/distributed.py + /torch/_dynamo/backends/distributed.py:119:18 - warning: Import "tabulate" could not be resolved from source (reportMissingModuleSource) + /torch/_dynamo/backends/distributed.py:180:31 - error: "interpreter" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:185:38 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:191:21 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:311:37 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:319:41 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:346:41 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:474:45 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:476:20 - error: Cannot access attribute "op" for class "tuple[Argument, ...]" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:476:20 - error: Cannot access attribute "op" for class "Sequence[Argument]" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:476:20 - error: Cannot access attribute "op" for class "Mapping[str, Argument]" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:476:20 - error: Cannot access attribute "op" for class "slice[Any, Any, Any]" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:476:20 - error: Cannot access attribute "op" for class "range" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:476:20 - error: Cannot access attribute "op" for class "str" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:476:20 - error: Cannot access attribute "op" for class "int" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:476:20 - error: Cannot access attribute "op" for class "float" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:476:20 - error: Cannot access attribute "op" for class "bool" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:476:20 - error: Cannot access attribute "op" for class "complex" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:476:20 - error: Cannot access attribute "op" for class "SymInt" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:476:20 - error: Cannot access attribute "op" for class "SymBool" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:476:20 - error: Cannot access attribute "op" for class "SymFloat" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:476:20 - error: "op" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/backends/distributed.py:478:25 - error: Cannot access attribute "meta" for class "tuple[Argument, ...]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:478:25 - error: Cannot access attribute "meta" for class "Sequence[Argument]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:478:25 - error: Cannot access attribute "meta" for class "Mapping[str, Argument]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:478:25 - error: Cannot access attribute "meta" for class "slice[Any, Any, Any]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:478:25 - error: Cannot access attribute "meta" for class "range" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:478:25 - error: Cannot access attribute "meta" for class "str" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:478:25 - error: Cannot access attribute "meta" for class "int" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:478:25 - error: Cannot access attribute "meta" for class "float" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:478:25 - error: Cannot access attribute "meta" for class "bool" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:478:25 - error: Cannot access attribute "meta" for class "complex" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:478:25 - error: Cannot access attribute "meta" for class "OpOverload[..., Any]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:478:25 - error: Cannot access attribute "meta" for class "SymInt" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:478:25 - error: Cannot access attribute "meta" for class "SymBool" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:478:25 - error: Cannot access attribute "meta" for class "SymFloat" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:478:25 - error: "meta" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/backends/distributed.py:484:55 - error: Cannot access attribute "target" for class "tuple[Argument, ...]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:484:55 - error: Cannot access attribute "target" for class "Sequence[Argument]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:484:55 - error: Cannot access attribute "target" for class "Mapping[str, Argument]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:484:55 - error: Cannot access attribute "target" for class "slice[Any, Any, Any]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:484:55 - error: Cannot access attribute "target" for class "range" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:484:55 - error: Cannot access attribute "target" for class "str" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:484:55 - error: Cannot access attribute "target" for class "int" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:484:55 - error: Cannot access attribute "target" for class "float" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:484:55 - error: Cannot access attribute "target" for class "bool" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:484:55 - error: Cannot access attribute "target" for class "complex" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:484:55 - error: Cannot access attribute "target" for class "OpOverload[..., Any]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:484:55 - error: Cannot access attribute "target" for class "SymInt" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:484:55 - error: Cannot access attribute "target" for class "SymBool" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:484:55 - error: Cannot access attribute "target" for class "SymFloat" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:484:55 - error: "target" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/backends/distributed.py:576:23 - error: "passes" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/backends/distributed.py:611:43 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) +/torch/_dynamo/backends/torchxla.py + /torch/_dynamo/backends/torchxla.py:33:16 - error: Import "torch_xla.core.dynamo_bridge" could not be resolved (reportMissingImports) +/torch/_dynamo/backends/tvm.py + /torch/_dynamo/backends/tvm.py:68:19 - error: "cuda" is not a known attribute of module "tvm" (reportAttributeAccessIssue) + /torch/_dynamo/backends/tvm.py:69:22 - error: "target" is not a known attribute of module "tvm" (reportAttributeAccessIssue) + /torch/_dynamo/backends/tvm.py:71:19 - error: "cpu" is not a known attribute of module "tvm" (reportAttributeAccessIssue) + /torch/_dynamo/backends/tvm.py:72:22 - error: "target" is not a known attribute of module "tvm" (reportAttributeAccessIssue) + /torch/_dynamo/backends/tvm.py:83:25 - error: "auto_scheduler" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/backends/tvm.py:88:31 - error: Argument of type "_TemporaryFileWrapper[bytes]" cannot be assigned to parameter "path" of type "FileDescriptorOrPath" in function "exists" +   Type "_TemporaryFileWrapper[bytes]" is not assignable to type "FileDescriptorOrPath" +     "_TemporaryFileWrapper[bytes]" is not assignable to "int" +     "_TemporaryFileWrapper[bytes]" is not assignable to "str" +     "_TemporaryFileWrapper[bytes]" is not assignable to "bytes" +     "_TemporaryFileWrapper[bytes]" is incompatible with protocol "PathLike[str]" +       "__fspath__" is not present +     "_TemporaryFileWrapper[bytes]" is incompatible with protocol "PathLike[bytes]" +       "__fspath__" is not present (reportArgumentType) + /torch/_dynamo/backends/tvm.py:95:39 - error: Argument of type "_TemporaryFileWrapper[bytes]" cannot be assigned to parameter "path" of type "FileDescriptorOrPath" in function "exists" +   Type "_TemporaryFileWrapper[bytes]" is not assignable to type "FileDescriptorOrPath" +     "_TemporaryFileWrapper[bytes]" is not assignable to "int" +     "_TemporaryFileWrapper[bytes]" is not assignable to "str" +     "_TemporaryFileWrapper[bytes]" is not assignable to "bytes" +     "_TemporaryFileWrapper[bytes]" is incompatible with protocol "PathLike[str]" +       "__fspath__" is not present +     "_TemporaryFileWrapper[bytes]" is incompatible with protocol "PathLike[bytes]" +       "__fspath__" is not present (reportArgumentType) + /torch/_dynamo/backends/tvm.py:106:43 - error: Argument of type "_TemporaryFileWrapper[bytes]" cannot be assigned to parameter "path" of type "FileDescriptorOrPath" in function "exists" +   Type "_TemporaryFileWrapper[bytes]" is not assignable to type "FileDescriptorOrPath" +     "_TemporaryFileWrapper[bytes]" is not assignable to "int" +     "_TemporaryFileWrapper[bytes]" is not assignable to "str" +     "_TemporaryFileWrapper[bytes]" is not assignable to "bytes" +     "_TemporaryFileWrapper[bytes]" is incompatible with protocol "PathLike[str]" +       "__fspath__" is not present +     "_TemporaryFileWrapper[bytes]" is incompatible with protocol "PathLike[bytes]" +       "__fspath__" is not present (reportArgumentType) + /torch/_dynamo/backends/tvm.py:108:39 - error: Argument of type "_TemporaryFileWrapper[bytes]" cannot be assigned to parameter "path" of type "StrOrBytesPath" in function "unlink" +   Type "_TemporaryFileWrapper[bytes]" is not assignable to type "StrOrBytesPath" +     "_TemporaryFileWrapper[bytes]" is not assignable to "str" +     "_TemporaryFileWrapper[bytes]" is not assignable to "bytes" +     "_TemporaryFileWrapper[bytes]" is incompatible with protocol "PathLike[str]" +       "__fspath__" is not present +     "_TemporaryFileWrapper[bytes]" is incompatible with protocol "PathLike[bytes]" +       "__fspath__" is not present (reportArgumentType) + /torch/_dynamo/backends/tvm.py:112:22 - error: "transform" is not a known attribute of module "tvm" (reportAttributeAccessIssue) + /torch/_dynamo/backends/tvm.py:118:25 - error: "meta_schedule" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/backends/tvm.py:124:30 - error: "target" is not a known attribute of module "tvm" (reportAttributeAccessIssue) + /torch/_dynamo/backends/tvm.py:149:18 - error: "transform" is not a known attribute of module "tvm" (reportAttributeAccessIssue) + /torch/_dynamo/backends/tvm.py:158:40 - error: "nd" is not a known attribute of module "tvm" (reportAttributeAccessIssue) + /torch/_dynamo/backends/tvm.py:164:26 - error: "from_numpy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/backends/tvm.py:165:28 - error: "dlpack" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_dynamo/backends/tvm.py:167:58 - error: "nd" is not a known attribute of module "tvm" (reportAttributeAccessIssue) + /torch/_dynamo/backends/tvm.py:169:40 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/backends/tvm.py:172:24 - error: "nd" is not a known attribute of module "tvm" (reportAttributeAccessIssue) + /torch/_dynamo/backends/tvm.py:173:20 - error: "nd" is not a known attribute of module "tvm" (reportAttributeAccessIssue) +/torch/_dynamo/bytecode_transformation.py + /torch/_dynamo/bytecode_transformation.py:1364:49 - error: "py_opcode_caches" is not a known attribute of module ".eval_frame" (reportAttributeAccessIssue) +/torch/_dynamo/codegen.py + /torch/_dynamo/codegen.py:311:48 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/compiled_autograd.py + /torch/_dynamo/compiled_autograd.py:91:28 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:108:32 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:167:34 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:181:26 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:192:26 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:384:46 - error: Cannot access attribute "node" for class "int" +   Attribute "node" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:390:17 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /torch/_dynamo/compiled_autograd.py:390:17 - error: Argument of type "IntLikeType" cannot be assigned to parameter "value" of type "int | float" in function "__setitem__" +   Type "IntLikeType" is not assignable to type "int | float" +     Type "SymInt" is not assignable to type "int | float" +       "SymInt" is not assignable to "int" +       "SymInt" is not assignable to "float" (reportArgumentType) + /torch/_dynamo/compiled_autograd.py:396:17 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /torch/_dynamo/compiled_autograd.py:396:17 - error: Argument of type "FloatLikeType" cannot be assigned to parameter "value" of type "int | float" in function "__setitem__" +   Type "FloatLikeType" is not assignable to type "int | float" +     Type "SymFloat" is not assignable to type "int | float" +       "SymFloat" is not assignable to "int" +       "SymFloat" is not assignable to "float" (reportArgumentType) + /torch/_dynamo/compiled_autograd.py:420:22 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:473:18 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:486:25 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:526:17 - error: "__getitem__" method not defined on type "Proxy" (reportIndexIssue) + /torch/_dynamo/compiled_autograd.py:604:34 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:634:25 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:683:47 - error: "__getitem__" method not defined on type "Proxy" (reportIndexIssue) + /torch/_dynamo/compiled_autograd.py:689:27 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:731:26 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:763:47 - error: "__getitem__" method not defined on type "Proxy" (reportIndexIssue) + /torch/_dynamo/compiled_autograd.py:783:36 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:849:30 - error: "compiled_autograd" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:1123:57 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:1398:50 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:1521:34 - error: "compiled_autograd" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:1537:34 - error: "compiled_autograd" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:1551:26 - error: "compiled_autograd" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:1563:26 - error: "compiled_autograd" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:1573:22 - error: "compiled_autograd" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:1574:22 - error: "compiled_autograd" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:1575:22 - error: "compiled_autograd" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/compiled_autograd.py:1597:70 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/config.py + /torch/_dynamo/config.py:760:10 - warning: Import "torch.utils._config_typing" could not be resolved from source (reportMissingModuleSource) +/torch/_dynamo/convert_frame.py + /torch/_dynamo/convert_frame.py:56:6 - warning: Import "torch._C._dynamo.guards" could not be resolved from source (reportMissingModuleSource) + /torch/_dynamo/convert_frame.py:289:33 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:296:22 - error: "_PreserveDispatchKeyGuard" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:300:42 - error: "is_inference_mode_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:304:26 - error: "_is_default_mobile_cpu_allocator_set" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:307:33 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:311:31 - error: "DisableTorchFunction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:313:46 - error: "_get_fp32_precision_getter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:316:43 - error: "graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:317:22 - error: "graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:321:26 - error: "_symbolic_trace" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:329:33 - error: "_len_torch_function_stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:333:26 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:342:30 - error: "_is_default_mobile_cpu_allocator_set" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:345:30 - error: "_unset_default_mobile_cpu_allocator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:347:35 - error: "DisableTorchFunction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:349:26 - error: "_set_fp32_precision_setter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:352:26 - error: "graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:415:77 - error: Cannot access attribute "_fields" for class "object" +   Attribute "_fields" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:449:49 - error: Cannot access attribute "exec_record" for class "Exception" +   Attribute "exec_record" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:923:34 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_dynamo/convert_frame.py:1049:49 - error: Cannot access attribute "__func__" for class "FunctionType" +   Attribute "__func__" is unknown (reportFunctionMemberAccess) + /torch/_dynamo/convert_frame.py:1247:6 - error: Function with declared return type "DynamoOutput" must return value on all code paths +   "None" is not assignable to "DynamoOutput" (reportReturnType) + /torch/_dynamo/convert_frame.py:2132:56 - error: Cannot access attribute "_clone_with_backend" for class "ConvertFrameProtocol" +   Attribute "_clone_with_backend" is unknown (reportAttributeAccessIssue) +/torch/_dynamo/create_parameter_op.py + /torch/_dynamo/create_parameter_op.py:43:41 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/create_parameter_op.py:43:62 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/create_parameter_op.py:47:15 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/debug_utils.py + /torch/_dynamo/debug_utils.py:69:12 - error: Import "libfb.py.build_info" could not be resolved (reportMissingImports) + /torch/_dynamo/debug_utils.py:226:24 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:392:14 - error: Cannot access attribute "backward" for class "float" +   Attribute "backward" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:461:71 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:462:50 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:467:45 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:476:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:481:23 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:498:26 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:543:28 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:545:18 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:546:12 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:554:41 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:555:42 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:570:32 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:571:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:601:32 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:602:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:621:39 - error: "itemsize" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/debug_utils.py:628:22 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:629:32 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:632:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:642:19 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:650:49 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:654:15 - error: "_utils" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:707:37 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:708:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:755:33 - error: "_utils" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:822:32 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:850:33 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:850:71 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:864:29 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/debug_utils.py:864:73 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/decorators.py + /torch/_dynamo/decorators.py:40:10 - warning: Import "torch._C._dynamo.eval_frame" could not be resolved from source (reportMissingModuleSource) + /torch/_dynamo/decorators.py:321:8 - error: Cannot assign to attribute "_dynamo_forbidden" for class "FunctionType" +   Attribute "_dynamo_forbidden" is unknown (reportFunctionMemberAccess) + /torch/_dynamo/decorators.py:504:17 - error: Argument of type "type[Any] | ModuleType | ((**_P@substitute_in_graph) -> _R@substitute_in_graph)" cannot be assigned to parameter "fn" of type "_F@__init__" in function "__init__" +   Type "type[Any] | ModuleType | ((**_P@substitute_in_graph) -> _R@substitute_in_graph)" is not assignable to type "(...) -> Any" +     Type "type[Any] | ModuleType | ((**_P@substitute_in_graph) -> _R@substitute_in_graph)" is not assignable to type "(...) -> Any" +       Type "ModuleType" is not assignable to type "(...) -> Any" (reportArgumentType) + /torch/_dynamo/decorators.py:675:15 - error: Cannot assign to attribute "_dynamo_dynamic_indices" for class "TensorWithFlatten" +   Attribute "_dynamo_dynamic_indices" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/decorators.py:677:15 - error: Cannot assign to attribute "_dynamo_dynamic_range" for class "TensorWithFlatten" +   Attribute "_dynamo_dynamic_range" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/decorators.py:679:15 - error: Cannot assign to attribute "_dynamo_hint_overrides" for class "TensorWithFlatten" +   Attribute "_dynamo_hint_overrides" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/decorators.py:683:15 - error: Cannot assign to attribute "_specialize_on" for class "TensorWithFlatten" +   Attribute "_specialize_on" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/decorators.py:687:15 - error: Cannot access attribute "_dynamo_hint_overrides" for class "TensorWithFlatten" +   Attribute "_dynamo_hint_overrides" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/decorators.py:690:11 - error: Cannot access attribute "_dynamo_dynamic_indices" for class "TensorWithFlatten" +   Attribute "_dynamo_dynamic_indices" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/decorators.py:696:25 - error: Cannot access attribute "_specialize_on" for class "TensorWithFlatten" +   Attribute "_specialize_on" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/decorators.py:697:15 - error: Cannot access attribute "_specialize_on" for class "TensorWithFlatten" +   Attribute "_specialize_on" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/decorators.py:721:15 - error: Cannot assign to attribute "_dynamo_weak_dynamic_indices" for class "TensorWithFlatten" +   Attribute "_dynamo_weak_dynamic_indices" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/decorators.py:724:11 - error: Cannot access attribute "_dynamo_weak_dynamic_indices" for class "TensorWithFlatten" +   Attribute "_dynamo_weak_dynamic_indices" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/decorators.py:776:55 - error: Argument of type "TensorWithFlatten | Any" cannot be assigned to parameter "cls" of type "type" in function "issubclass" +   Type "TensorWithFlatten | Any" is not assignable to type "type" +     "TensorWithFlatten" is not assignable to "type" (reportArgumentType) + /torch/_dynamo/decorators.py:778:11 - error: Cannot assign to attribute "_dynamo_marked_static" for class "type[Module]" +   Attribute "_dynamo_marked_static" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/decorators.py:780:16 - error: Type "type[Module]" is not assignable to return type "None" +   Type is not assignable to "None" (reportReturnType) + /torch/_dynamo/decorators.py:823:12 - error: Import "einops" could not be resolved (reportMissingImports) +/torch/_dynamo/device_interface.py + /torch/_dynamo/device_interface.py:30:26 - error: "_cuda_getCurrentRawStream" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:106:30 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:110:35 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:114:34 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:143:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:145:31 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:209:11 - error: "Worker" overrides symbol of same name in class "DeviceInterface" +   "torch._dynamo.device_interface.CudaInterface.Worker" is not assignable to "torch._dynamo.device_interface.DeviceInterface.Worker" +   Type "type[torch._dynamo.device_interface.CudaInterface.Worker]" is not assignable to type "type[torch._dynamo.device_interface.DeviceInterface.Worker]" (reportIncompatibleVariableOverride) + /torch/_dynamo/device_interface.py:224:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:225:35 - error: Cannot access attribute "type" for class "str" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:225:35 - error: Cannot access attribute "type" for class "int" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:225:35 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/device_interface.py:226:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:227:37 - error: Cannot access attribute "index" for class "int" +   Attribute "index" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:227:37 - error: "index" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/device_interface.py:238:20 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /torch/_dynamo/device_interface.py:238:20 - error: Argument of type "Unknown | int | str" cannot be assigned to parameter "s" of type "slice[Any, Any, Any]" in function "__getitem__" +   Type "Unknown | int | str" is not assignable to type "slice[Any, Any, Any]" +     "int" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /torch/_dynamo/device_interface.py:263:26 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:272:27 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:277:9 - error: Method "raise_if_triton_unavailable" overrides class "DeviceInterface" in an incompatible manner +   Base method is declared as a classmethod but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "cls", override parameter is named "device" +   Parameter 2 mismatch: base parameter "device" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_dynamo/device_interface.py:284:16 - error: Import "triton.backends" could not be resolved (reportMissingImports) + /torch/_dynamo/device_interface.py:286:26 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:295:26 - error: "_mtia_getCurrentRawStream" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:306:11 - error: "Worker" overrides symbol of same name in class "DeviceInterface" +   "torch._dynamo.device_interface.MtiaInterface.Worker" is not assignable to "torch._dynamo.device_interface.DeviceInterface.Worker" +   Type "type[torch._dynamo.device_interface.MtiaInterface.Worker]" is not assignable to type "type[torch._dynamo.device_interface.DeviceInterface.Worker]" (reportIncompatibleVariableOverride) + /torch/_dynamo/device_interface.py:321:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:322:35 - error: Cannot access attribute "type" for class "str" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:322:35 - error: Cannot access attribute "type" for class "int" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:322:35 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/device_interface.py:323:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:324:37 - error: Cannot access attribute "index" for class "int" +   Attribute "index" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:324:37 - error: "index" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/device_interface.py:335:20 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /torch/_dynamo/device_interface.py:335:20 - error: Argument of type "Unknown | int | str" cannot be assigned to parameter "s" of type "slice[Any, Any, Any]" in function "__getitem__" +   Type "Unknown | int | str" is not assignable to type "slice[Any, Any, Any]" +     "int" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /torch/_dynamo/device_interface.py:369:9 - error: Method "raise_if_triton_unavailable" overrides class "DeviceInterface" in an incompatible manner +   Base method is declared as a classmethod but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "cls", override parameter is named "evice" +   Parameter 2 mismatch: base parameter "device" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_dynamo/device_interface.py:370:16 - error: Import "triton.backends" could not be resolved (reportMissingImports) + /torch/_dynamo/device_interface.py:378:26 - error: "_xpu_getCurrentRawStream" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:389:11 - error: "Worker" overrides symbol of same name in class "DeviceInterface" +   "torch._dynamo.device_interface.XpuInterface.Worker" is not assignable to "torch._dynamo.device_interface.DeviceInterface.Worker" +   Type "type[torch._dynamo.device_interface.XpuInterface.Worker]" is not assignable to type "type[torch._dynamo.device_interface.DeviceInterface.Worker]" (reportIncompatibleVariableOverride) + /torch/_dynamo/device_interface.py:404:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:405:35 - error: Cannot access attribute "type" for class "str" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:405:35 - error: Cannot access attribute "type" for class "int" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:405:35 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/device_interface.py:406:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:407:37 - error: Cannot access attribute "index" for class "int" +   Attribute "index" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:407:37 - error: "index" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/device_interface.py:418:20 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /torch/_dynamo/device_interface.py:418:20 - error: Argument of type "Unknown | int | str" cannot be assigned to parameter "s" of type "slice[Any, Any, Any]" in function "__getitem__" +   Type "Unknown | int | str" is not assignable to type "slice[Any, Any, Any]" +     "int" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /torch/_dynamo/device_interface.py:454:9 - error: Method "raise_if_triton_unavailable" overrides class "DeviceInterface" in an incompatible manner +   Base method is declared as a classmethod but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "cls", override parameter is named "device" +   Parameter 2 mismatch: base parameter "device" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_dynamo/device_interface.py:455:16 - error: Import "triton.backends" could not be resolved (reportMissingImports) + /torch/_dynamo/device_interface.py:468:23 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:479:11 - error: "Worker" overrides symbol of same name in class "DeviceInterface" +   "torch._dynamo.device_interface.CpuInterface.Worker" is not assignable to "torch._dynamo.device_interface.DeviceInterface.Worker" +   Type "type[torch._dynamo.device_interface.CpuInterface.Worker]" is not assignable to type "type[torch._dynamo.device_interface.DeviceInterface.Worker]" (reportIncompatibleVariableOverride) + /torch/_dynamo/device_interface.py:518:9 - error: Method "raise_if_triton_unavailable" overrides class "DeviceInterface" in an incompatible manner +   Base method is declared as a classmethod but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "cls", override parameter is named "device" +   Parameter 2 mismatch: base parameter "device" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_dynamo/device_interface.py:519:16 - error: Import "triton.backends" could not be resolved (reportMissingImports) + /torch/_dynamo/device_interface.py:532:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:534:28 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:534:43 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:536:31 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:555:11 - error: "Worker" overrides symbol of same name in class "DeviceInterface" +   "torch._dynamo.device_interface.MpsInterface.Worker" is not assignable to "torch._dynamo.device_interface.DeviceInterface.Worker" +   Type "type[torch._dynamo.device_interface.MpsInterface.Worker]" is not assignable to type "type[torch._dynamo.device_interface.DeviceInterface.Worker]" (reportIncompatibleVariableOverride) + /torch/_dynamo/device_interface.py:572:30 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:574:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:575:25 - error: Cannot access attribute "type" for class "str" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:579:55 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:580:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/device_interface.py:581:25 - error: Cannot access attribute "type" for class "str" +   Attribute "type" is unknown (reportAttributeAccessIssue) +/torch/_dynamo/eval_frame.py + /torch/_dynamo/eval_frame.py:58:6 - warning: Import "torch._C._dynamo.eval_frame" could not be resolved from source (reportMissingModuleSource) + /torch/_dynamo/eval_frame.py:178:10 - warning: Import "torch._C._dynamo.eval_frame" could not be resolved from source (reportMissingModuleSource) + /torch/_dynamo/eval_frame.py:239:18 - warning: Import "torch._C._dynamo.eval_frame" could not be resolved from source (reportMissingModuleSource) + /torch/_dynamo/eval_frame.py:337:21 - error: Cannot access attribute "reset" for class "FunctionType" +   Attribute "reset" is unknown (reportFunctionMemberAccess) + /torch/_dynamo/eval_frame.py:397:14 - error: "training" overrides symbol of same name in class "Module" +   "property" is not assignable to "bool" (reportIncompatibleVariableOverride) + /torch/_dynamo/eval_frame.py:755:53 - error: Argument of type "DynamoCallback | Unset" cannot be assigned to parameter "callback" of type "DynamoCallback" in function "_callback_from_stance" +   Type "DynamoCallback | Unset" is not assignable to type "DynamoCallback" +     Type "Unset" is not assignable to type "DynamoCallback" +       "Unset" is incompatible with protocol "DynamoCallbackFn" +         "__call__" is not present +       "Unset" is not assignable to "None" +       "Unset" is not assignable to "bool" (reportArgumentType) + /torch/_dynamo/eval_frame.py:868:35 - error: "_is_tracing" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:869:43 - error: "_symbolic_trace" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:876:45 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:914:30 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:940:30 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:1057:37 - error: "compiled_autograd" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:1429:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:1739:18 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:1954:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:2228:31 - error: "traceback" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:2380:18 - error: "_symbolic_trace" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:2381:22 - error: "_symbolic_trace" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:2387:13 - error: "adadelta" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:2388:13 - error: "adagrad" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:2389:13 - error: "adam" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:2390:13 - error: "adamax" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:2391:13 - error: "adamw" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:2392:13 - error: "asgd" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:2393:13 - error: "lbfgs" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:2394:13 - error: "nadam" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:2395:13 - error: "radam" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:2396:13 - error: "rmsprop" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:2397:13 - error: "rprop" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:2398:13 - error: "sgd" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:2399:13 - error: "sparse_adam" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:2451:21 - error: Cannot assign to attribute "_init_group" for class "type[Optimizer]" +   Attribute "_init_group" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/eval_frame.py:2452:25 - error: Cannot access attribute "_init_group" for class "type[Optimizer]" +   Attribute "_init_group" is unknown (reportAttributeAccessIssue) +/torch/_dynamo/exc.py + /torch/_dynamo/exc.py:445:23 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_dynamo/exc.py:446:23 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_dynamo/exc.py:447:23 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_dynamo/exc.py:448:23 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_dynamo/exc.py:449:23 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_dynamo/exc.py:627:54 - error: Cannot access attribute "record_filename" for class "Exception" +   Attribute "record_filename" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/exc.py:628:29 - error: Cannot access attribute "record_filename" for class "Exception" +   Attribute "record_filename" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/exc.py:639:13 - error: Cannot access attribute "inner_exception" for class "Exception" +   Attribute "inner_exception" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/exc.py:641:24 - error: Cannot access attribute "inner_exception" for class "Exception" +   Attribute "inner_exception" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/exc.py:643:53 - error: Cannot access attribute "inner_exception" for class "Exception" +   Attribute "inner_exception" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/exc.py:645:53 - error: Cannot access attribute "inner_exception" for class "Exception" +   Attribute "inner_exception" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/exc.py:649:53 - error: Cannot access attribute "inner_exception" for class "Exception" +   Attribute "inner_exception" is unknown (reportAttributeAccessIssue) +/torch/_dynamo/external_utils.py + /torch/_dynamo/external_utils.py:103:40 - error: "ndarray" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/external_utils.py:103:65 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/functional_export.py + /torch/_dynamo/functional_export.py:180:34 - error: "graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/functional_export.py:181:26 - error: "graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/functional_export.py:182:26 - error: "graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/functional_export.py:297:13 - error: Argument of type "Proxy" cannot be assigned to parameter "value" of type "Node" in function "__setitem__" +   "Proxy" is not assignable to "Node" (reportArgumentType) + /torch/_dynamo/functional_export.py:339:36 - error: "__getitem__" method not defined on type "slice[Any, Any, Any]" (reportIndexIssue) + /torch/_dynamo/functional_export.py:339:36 - error: "__getitem__" method not defined on type "int" (reportIndexIssue) + /torch/_dynamo/functional_export.py:339:36 - error: "__getitem__" method not defined on type "float" (reportIndexIssue) + /torch/_dynamo/functional_export.py:339:36 - error: "__getitem__" method not defined on type "bool" (reportIndexIssue) + /torch/_dynamo/functional_export.py:339:36 - error: "__getitem__" method not defined on type "complex" (reportIndexIssue) + /torch/_dynamo/functional_export.py:339:36 - error: "__getitem__" method not defined on type "OpOverload[..., Any]" (reportIndexIssue) + /torch/_dynamo/functional_export.py:339:36 - error: "__getitem__" method not defined on type "SymInt" (reportIndexIssue) + /torch/_dynamo/functional_export.py:339:36 - error: "__getitem__" method not defined on type "SymBool" (reportIndexIssue) + /torch/_dynamo/functional_export.py:339:36 - error: "__getitem__" method not defined on type "SymFloat" (reportIndexIssue) + /torch/_dynamo/functional_export.py:339:36 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/_dynamo/functional_export.py:348:9 - error: Method "run_node" overrides class "Interpreter" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "n", override parameter is named "node" (reportIncompatibleMethodOverride) + /torch/_dynamo/functional_export.py:372:16 - error: Operator "in" not supported for types "Literal['dynamo_flat_name_to_original_fqn']" and "Tensor | Module" +   Operator "in" not supported for types "Literal['dynamo_flat_name_to_original_fqn']" and "Module" (reportOperatorIssue) + /torch/_dynamo/functional_export.py:374:70 - error: "__getitem__" method not defined on type "Module" (reportIndexIssue) + /torch/_dynamo/functional_export.py:379:16 - error: Operator "in" not supported for types "Literal['dynamo_compile_id']" and "Tensor | Module" +   Operator "in" not supported for types "Literal['dynamo_compile_id']" and "Module" (reportOperatorIssue) + /torch/_dynamo/functional_export.py:381:55 - error: "__getitem__" method not defined on type "Module" (reportIndexIssue) + /torch/_dynamo/functional_export.py:800:57 - error: "source" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/functional_export.py:801:42 - error: Cannot access attribute "index" for class "Source" +   Attribute "index" is unknown (reportAttributeAccessIssue) +/torch/_dynamo/graph_deduplication.py + /torch/_dynamo/graph_deduplication.py:224:73 - error: Argument of type "type[OrderedSet[T@OrderedSet]]" cannot be assigned to parameter "default_factory" of type "(() -> OrderedSet[UsageIndex]) | None" in function "__init__" +   Type "type[OrderedSet[T@OrderedSet]]" is not assignable to type "(() -> OrderedSet[UsageIndex]) | None" +     Type "type[OrderedSet[T@OrderedSet]]" is not assignable to type "() -> OrderedSet[UsageIndex]" +       Function return type "OrderedSet[T@OrderedSet]" is incompatible with type "OrderedSet[UsageIndex]" +         "OrderedSet[T@OrderedSet]" is not assignable to "OrderedSet[UsageIndex]" +           Type parameter "T@OrderedSet" is invariant, but "T@OrderedSet" is not the same as "UsageIndex" +     Type is not assignable to "None" (reportArgumentType) + /torch/_dynamo/graph_deduplication.py:400:61 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[Node, OrderedSet[Node]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[Node, OrderedSet[Node]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[Node]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) +/torch/_dynamo/graph_region_tracker.py + /torch/_dynamo/graph_region_tracker.py:55:11 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/graph_region_tracker.py:155:15 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/graph_region_tracker.py:156:15 - error: "is_inference_mode_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/graph_region_tracker.py:157:15 - error: "get_num_threads" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/graph_region_tracker.py:158:18 - error: "_get_cublas_allow_fp16_reduced_precision_reduction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/graph_region_tracker.py:159:18 - error: "_get_cublas_allow_bf16_reduced_precision_reduction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/graph_region_tracker.py:160:15 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/graph_region_tracker.py:162:18 - error: "_get_cublas_allow_tf32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/graph_utils.py + /torch/_dynamo/graph_utils.py:87:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/guards.py + /torch/_dynamo/guards.py:55:6 - warning: Import "torch._C._dynamo.eval_frame" could not be resolved from source (reportMissingModuleSource) + /torch/_dynamo/guards.py:56:6 - warning: Import "torch._C._dynamo.guards" could not be resolved from source (reportMissingModuleSource) + /torch/_dynamo/guards.py:220:26 - error: "DispatchKeySet" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:726:22 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:726:56 - error: "generic" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/guards.py:726:68 - error: "ndarray" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/guards.py:770:29 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:783:40 - error: "strip_function_call" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:852:34 - error: "_dispatch_tls_local_include_set" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:853:18 - error: "_dispatch_tls_local_exclude_set" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:1011:20 - error: "package" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:1818:41 - error: "is_valid_var_name" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:2074:41 - error: "DispatchKeySet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:2102:28 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:2112:27 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:2114:19 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:2205:23 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:2206:23 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:2252:40 - error: "isnan" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/guards.py:2477:33 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:2686:32 - error: Cannot access attribute "source_to_symbol" for class "_ShapeGuardsHelper" +   Attribute "source_to_symbol" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:2719:32 - error: Cannot access attribute "source_to_symbol" for class "_ShapeGuardsHelper" +   Attribute "source_to_symbol" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:2771:36 - error: "exc" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:2810:38 - error: "_dispatch_keys" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:2861:50 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:2861:64 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3195:18 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3199:26 - error: "_distributed_c10d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3216:51 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3231:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3237:46 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3243:22 - error: "DispatchKeySet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3252:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3268:38 - error: "DispatchKeySet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3276:68 - error: "DispatchKeySet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3277:25 - error: "DispatchKeySet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3282:19 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3283:25 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3299:34 - error: "fsdp" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3329:9 - error: Method "reducer_override" overrides class "Pickler" in an incompatible manner +   Positional parameter count mismatch; base method has 1, but override has 2 (reportIncompatibleMethodOverride) + /torch/_dynamo/guards.py:3361:27 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3364:30 - error: "_dispatch_keys" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3370:23 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3373:26 - error: "_dispatch_keys" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3395:39 - error: "DispatchKeySet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3398:39 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3407:24 - error: Cannot access attribute "_torch_unpickler" for class "type[Function]" +   Attribute "_torch_unpickler" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3407:47 - error: Cannot access attribute "_torch_handler_name" for class "type[Function]" +   Attribute "_torch_handler_name" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3425:31 - error: Cannot access attribute "__name__" for class "property" +   Attribute "__name__" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3452:52 - error: Cannot access attribute "cell_contents" for class "type[Function]" +   Attribute "cell_contents" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3461:33 - error: "exc" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3470:51 - error: "fsdp" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3472:45 - error: "fsdp" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3477:42 - error: "fsdp" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3507:29 - error: "exc" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3523:9 - error: Parameter declaration "guard_filter_fn" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_dynamo/guards.py:3553:54 - error: "guards" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3776:37 - error: "exc" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3788:37 - error: "exc" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/guards.py:3855:27 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/logging.py + /torch/_dynamo/logging.py:52:16 - error: Import "triton" could not be resolved (reportMissingImports) +/torch/_dynamo/mutation_guard.py + /torch/_dynamo/mutation_guard.py:86:28 - warning: Static methods should not take a "self" or "cls" parameter (reportSelfClsParameterName) +/torch/_dynamo/output_graph.py + /torch/_dynamo/output_graph.py:49:30 - warning: Import "torch._C._dynamo.guards" could not be resolved from source (reportMissingModuleSource) + /torch/_dynamo/output_graph.py:335:34 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:336:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:337:42 - error: "guards" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:411:33 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:411:63 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:412:21 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:416:37 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:416:67 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:549:36 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:550:40 - error: "_device" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:553:33 - error: "guards" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:671:53 - error: "_is_torch_function_mode_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:717:14 - error: "name_of_builtins_dict_key_in_fglobals" overrides symbol of same name in class "OutputGraphGuardsState" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /torch/_dynamo/output_graph.py:802:23 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:807:30 - error: "compiled_autograd" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:815:26 - error: "compiled_autograd" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:818:27 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:820:19 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:851:24 - error: Argument of type "InstructionTranslatorBase | None" cannot be assigned to parameter "tx" of type "InstructionTranslatorBase" in function "__init__" +   Type "InstructionTranslatorBase | None" is not assignable to type "InstructionTranslatorBase" +     "None" is not assignable to "InstructionTranslatorBase" (reportArgumentType) + /torch/_dynamo/output_graph.py:995:71 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:998:37 - error: "set_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:999:19 - error: "is_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:1002:37 - error: "set_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:1003:19 - error: "is_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:1006:37 - error: "set_autocast_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:1007:19 - error: "get_autocast_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:1010:37 - error: "set_autocast_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:1011:19 - error: "get_autocast_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:1014:19 - error: "set_autocast_cache_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:1015:19 - error: "is_autocast_cache_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:1026:16 - error: Type "InstructionTranslatorBase | None" is not assignable to return type "InstructionTranslatorBase" +   Type "InstructionTranslatorBase | None" is not assignable to type "InstructionTranslatorBase" +     "None" is not assignable to "InstructionTranslatorBase" (reportReturnType) + /torch/_dynamo/output_graph.py:1652:50 - error: "variables" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:1659:53 - error: "variables" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:1664:64 - error: "codegen" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:1683:59 - error: "variables" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:1942:30 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:1945:42 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:1951:46 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:1966:33 - error: "exc" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:2323:39 - error: "graph_bytecode_inputs" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:2416:30 - error: "f_code" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/output_graph.py:2418:90 - error: "format_frame_summary" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/output_graph.py:2485:39 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:2504:34 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:2591:72 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:2594:47 - error: "fake_class_registry" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:2600:53 - error: "wrapped_obj" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/output_graph.py:2829:18 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:2844:22 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:2859:33 - error: "_jit_resolve_packet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:2872:18 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:3005:18 - error: "is_inference_mode_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:3032:33 - error: "proxy" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:3246:9 - error: Method "create_node" overrides class "TracerBase" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "kind", override parameter is named "op" (reportIncompatibleMethodOverride) + /torch/_dynamo/output_graph.py:3573:46 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:3595:48 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:3598:49 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:3598:67 - error: "sparse_bsr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:3601:49 - error: "sparse_csc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:3601:67 - error: "sparse_bsc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:3701:46 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:3721:48 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:3724:49 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:3724:67 - error: "sparse_bsr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:3727:49 - error: "sparse_csc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/output_graph.py:3727:67 - error: "sparse_bsc" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/package.py + /torch/_dynamo/package.py:123:26 - error: "guards" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/package.py:763:14 - warning: Import "torch._C._dynamo.eval_frame" could not be resolved from source (reportMissingModuleSource) + /torch/_dynamo/package.py:782:14 - warning: Import "torch._C._dynamo.eval_frame" could not be resolved from source (reportMissingModuleSource) + /torch/_dynamo/package.py:849:67 - error: "guards" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/package.py:868:29 - error: Argument of type "int" cannot be assigned to parameter "fn_first_lineno" of type "str | None" in function "__init__" +   Type "int" is not assignable to type "str | None" +     "int" is not assignable to "str" +     "int" is not assignable to "None" (reportArgumentType) + /torch/_dynamo/package.py:1014:9 - error: Method "write" overrides class "DynamoStore" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "cache_entry", override parameter is named "entry" (reportIncompatibleMethodOverride) + /torch/_dynamo/package.py:1058:9 - error: Method "write" overrides class "DynamoStore" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "cache_entry", override parameter is named "entry" (reportIncompatibleMethodOverride) +/torch/_dynamo/pgo.py + /torch/_dynamo/pgo.py:284:16 - error: "__getitem__" method not defined on type "AutoDynamic" (reportIndexIssue) + /torch/_dynamo/pgo.py:284:16 - error: "__getitem__" method not defined on type "AutoUnset" (reportIndexIssue) + /torch/_dynamo/pgo.py:310:16 - error: "__getitem__" method not defined on type "AutoDynamic" (reportIndexIssue) + /torch/_dynamo/pgo.py:310:16 - error: "__getitem__" method not defined on type "AutoUnset" (reportIndexIssue) + /torch/_dynamo/pgo.py:360:16 - error: Argument of type "AutoDynamic | AutoUnset | tuple[_T@_merge_atom_tup, ...]" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "AutoDynamic | AutoUnset | tuple[_T@_merge_atom_tup, ...]" is not assignable to type "Sized" +     "AutoDynamic" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /torch/_dynamo/pgo.py:360:27 - error: Argument of type "AutoDynamic | AutoUnset | tuple[_T@_merge_atom_tup, ...]" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "AutoDynamic | AutoUnset | tuple[_T@_merge_atom_tup, ...]" is not assignable to type "Sized" +     "AutoDynamic" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /torch/_dynamo/pgo.py:362:60 - error: Argument of type "AutoDynamic | AutoUnset | tuple[_T@_merge_atom_tup, ...]" cannot be assigned to parameter "iter1" of type "Iterable[_T1@__new__]" in function "__new__" +   Type "AutoDynamic | AutoUnset | tuple[_T@_merge_atom_tup, ...]" is not assignable to type "Iterable[_T1@__new__]" +     "AutoDynamic" is incompatible with protocol "Iterable[_T1@__new__]" +       "__iter__" is not present (reportArgumentType) + /torch/_dynamo/pgo.py:362:64 - error: Argument of type "AutoDynamic | AutoUnset | tuple[_T@_merge_atom_tup, ...]" cannot be assigned to parameter "iter2" of type "Iterable[_T2@__new__]" in function "__new__" +   Type "AutoDynamic | AutoUnset | tuple[_T@_merge_atom_tup, ...]" is not assignable to type "Iterable[_T2@__new__]" +     "AutoDynamic" is incompatible with protocol "Iterable[_T2@__new__]" +       "__iter__" is not present (reportArgumentType) + /torch/_dynamo/pgo.py:598:14 - error: Import "torch._inductor.fb.remote_cache" could not be resolved (reportMissingImports) + /torch/_dynamo/pgo.py:958:39 - error: Argument of type "defaultdict[CodeId, CodeState] | None" cannot be assigned to parameter "cs" of type "defaultdict[CodeId, CodeState]" in function "render_code_state" +   Type "defaultdict[CodeId, CodeState] | None" is not assignable to type "defaultdict[CodeId, CodeState]" +     "None" is not assignable to "defaultdict[CodeId, CodeState]" (reportArgumentType) + /torch/_dynamo/pgo.py:995:39 - error: Argument of type "defaultdict[CodeId, CodeState] | None" cannot be assigned to parameter "cs" of type "defaultdict[CodeId, CodeState]" in function "render_code_state" +   Type "defaultdict[CodeId, CodeState] | None" is not assignable to type "defaultdict[CodeId, CodeState]" +     "None" is not assignable to "defaultdict[CodeId, CodeState]" (reportArgumentType) +/torch/_dynamo/polyfills/fx.py + /torch/_dynamo/polyfills/fx.py:4:22 - error: "_fx_map_aggregate" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/polyfills/fx.py:4:41 - error: "_fx_map_arg" is unknown import symbol (reportAttributeAccessIssue) +/torch/_dynamo/polyfills/itertools.py + /torch/_dynamo/polyfills/itertools.py:204:16 - warning: TypeVar "_U" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_dynamo/polyfills/itertools.py:224:16 - warning: Type variable "_U" may go unsolved if caller supplies no argument for parameter "fillvalue" +   Provide an overload that specifies the return type when the argument is not supplied (reportInvalidTypeVarUse) + /torch/_dynamo/polyfills/itertools.py:247:16 - warning: Type variable "_U" may go unsolved if caller supplies no argument for parameter "fillvalue" +   Provide an overload that specifies the return type when the argument is not supplied (reportInvalidTypeVarUse) + /torch/_dynamo/polyfills/itertools.py:253:5 - error: Overloaded implementation is not consistent with signature of overload 2 +   Function return type "Iterator[tuple[_T1@zip_longest | None, _T2@zip_longest | None]]" is incompatible with type "Iterator[tuple[_T1@zip_longest | None, ...]]" +     "Iterator[tuple[_T1@zip_longest | None, _T2@zip_longest | None]]" is not assignable to "Iterator[tuple[_T1@zip_longest | None, ...]]" +       Type parameter "_T_co@Iterator" is covariant, but "tuple[_T1@zip_longest | None, _T2@zip_longest | None]" is not a subtype of "tuple[_T1@zip_longest | None, ...]" +         "tuple[_T1@zip_longest | None, _T2@zip_longest | None]" is not assignable to "tuple[_T1@zip_longest | None, ...]" +           Tuple entry 1 is incorrect type (reportInconsistentOverload) + /torch/_dynamo/polyfills/itertools.py:253:5 - error: Overloaded implementation is not consistent with signature of overload 3 +   Function return type "Iterator[tuple[_T1@zip_longest | _U@zip_longest, _T2@zip_longest | _U@zip_longest]]" is incompatible with type "Iterator[tuple[_T1@zip_longest | _U@zip_longest, ...]]" +     "Iterator[tuple[_T1@zip_longest | _U@zip_longest, _T2@zip_longest | _U@zip_longest]]" is not assignable to "Iterator[tuple[_T1@zip_longest | _U@zip_longest, ...]]" +       Type parameter "_T_co@Iterator" is covariant, but "tuple[_T1@zip_longest | _U@zip_longest, _T2@zip_longest | _U@zip_longest]" is not a subtype of "tuple[_T1@zip_longest | _U@zip_longest, ...]" +         "tuple[_T1@zip_longest | _U@zip_longest, _T2@zip_longest | _U@zip_longest]" is not assignable to "tuple[_T1@zip_longest | _U@zip_longest, ...]" +           Tuple entry 1 is incorrect type (reportInconsistentOverload) +/torch/_dynamo/polyfills/operator.py + /torch/_dynamo/polyfills/operator.py:34:49 - warning: TypeVar "_U" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_dynamo/polyfills/operator.py:41:28 - warning: TypeVar "_U1" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_dynamo/polyfills/operator.py:41:33 - warning: TypeVar "_U2" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_dynamo/polyfills/operator.py:41:45 - warning: TypeVar "_Us" appears only once in generic function signature +   Use "tuple[object, ...]" instead (reportInvalidTypeVarUse) + /torch/_dynamo/polyfills/operator.py:61:13 - error: Function declaration "getter" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_dynamo/polyfills/operator.py:74:22 - warning: TypeVar "_T" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_dynamo/polyfills/operator.py:74:48 - warning: TypeVar "_U" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_dynamo/polyfills/operator.py:80:12 - warning: TypeVar "_T1" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_dynamo/polyfills/operator.py:80:24 - warning: TypeVar "_T2" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_dynamo/polyfills/operator.py:81:28 - warning: TypeVar "_U1" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_dynamo/polyfills/operator.py:81:33 - warning: TypeVar "_U2" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_dynamo/polyfills/operator.py:81:45 - warning: TypeVar "_Us" appears only once in generic function signature +   Use "tuple[object, ...]" instead (reportInvalidTypeVarUse) + /torch/_dynamo/polyfills/operator.py:86:5 - error: Overloaded implementation is not consistent with signature of overload 2 +   Type "(*items: Any) -> ((Any) -> (Any | tuple[Any, ...]))" is not assignable to type "(item1: _T1@itemgetter, item2: _T2@itemgetter, /, *items: *_Ts@itemgetter) -> ((Any) -> tuple[_U1@itemgetter, _U2@itemgetter, *_Us@itemgetter])" +     TypeVarTuple cannot be bound to a tuple of unknown length (reportInconsistentOverload) + /torch/_dynamo/polyfills/operator.py:93:13 - error: Function declaration "getter" is obscured by a declaration of the same name (reportRedeclaration) +/torch/_dynamo/polyfills/tensor.py + /torch/_dynamo/polyfills/tensor.py:14:19 - error: "DisableTorchFunctionSubclass" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/profiler.py + /torch/_dynamo/profiler.py:55:13 - error: Argument of type "float" cannot be assigned to parameter "operators" of type "int" in function "__init__" +   "float" is not assignable to "int" (reportArgumentType) + /torch/_dynamo/profiler.py:57:13 - error: Argument of type "float" cannot be assigned to parameter "fusions" of type "int" in function "__init__" +   "float" is not assignable to "int" (reportArgumentType) +/torch/_dynamo/repro/after_aot.py + /torch/_dynamo/repro/after_aot.py:42:10 - error: Import "triton.runtime.autotuner" could not be resolved (reportMissingImports) + /torch/_dynamo/repro/after_aot.py:43:10 - error: Import "triton.runtime.jit" could not be resolved (reportMissingImports) + /torch/_dynamo/repro/after_aot.py:363:64 - error: "git_version" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/repro/after_aot.py:376:38 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/repro/after_aot.py:383:45 - error: Cannot access attribute "configs" for class "Autotuner" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/repro/after_aot.py:403:31 - error: Cannot access attribute "src" for class "JITFunction" +   Attribute "src" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/repro/after_aot.py:403:82 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/repro/after_aot.py:403:82 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/repro/after_aot.py:406:24 - error: Cannot access attribute "_fn_name" for class "JITFunction" +   Attribute "_fn_name" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/repro/after_aot.py:409:29 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/repro/after_aot.py:409:29 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/repro/after_aot.py:507:34 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/repro/after_aot.py:792:21 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_dynamo/repro/after_aot.py:883:26 - error: "_content_store" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_dynamo/repro/after_aot.py:886:26 - error: "_content_store" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) +/torch/_dynamo/repro/after_dynamo.py + /torch/_dynamo/repro/after_dynamo.py:231:48 - error: "is_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/repro/aoti.py + /torch/_dynamo/repro/aoti.py:261:64 - error: "git_version" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/repro/aoti.py:305:21 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_dynamo/repro/aoti.py:427:14 - error: Type "Module | None" is not assignable to declared type "GraphModule" +   Type "Module | None" is not assignable to type "GraphModule" +     "Module" is not assignable to "GraphModule" (reportAssignmentType) +/torch/_dynamo/resume_execution.py + /torch/_dynamo/resume_execution.py:108:9 - warning: Expression value is unused (reportUnusedExpression) + /torch/_dynamo/resume_execution.py:181:17 - warning: Expression value is unused (reportUnusedExpression) + /torch/_dynamo/resume_execution.py:217:17 - warning: Expression value is unused (reportUnusedExpression) +/torch/_dynamo/side_effects.py + /torch/_dynamo/side_effects.py:337:44 - warning: Static methods should not take a "self" or "cls" parameter (reportSelfClsParameterName) + /torch/_dynamo/side_effects.py:724:36 - error: "torch_function" is not a known attribute of module "..variables" (reportAttributeAccessIssue) + /torch/_dynamo/side_effects.py:747:36 - error: Cannot access attribute "base_cls_vt" for class "VariableTracker" +   Attribute "base_cls_vt" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/side_effects.py:958:32 - error: "torch_function" is not a known attribute of module "..variables" (reportAttributeAccessIssue) + /torch/_dynamo/side_effects.py:967:34 - error: "torch_function" is not a known attribute of module "..variables" (reportAttributeAccessIssue) + /torch/_dynamo/side_effects.py:976:32 - error: Cannot access attribute "symbolic_stack" for class "VariableTracker" +   Attribute "symbolic_stack" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/side_effects.py:978:66 - error: Cannot access attribute "symbolic_stack" for class "VariableTracker" +   Attribute "symbolic_stack" is unknown (reportAttributeAccessIssue) +/torch/_dynamo/source.py + /torch/_dynamo/source.py:26:19 - error: "device" is unknown import symbol (reportAttributeAccessIssue) +/torch/_dynamo/symbolic_convert.py + /torch/_dynamo/symbolic_convert.py:410:33 - error: "tmp" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/symbolic_convert.py:431:35 - error: Cannot access attribute "target_values" for class "GenericContextWrappingVariable" +   Attribute "target_values" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/symbolic_convert.py:434:63 - error: Cannot access attribute "target_values" for class "GenericContextWrappingVariable" +   Attribute "target_values" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/symbolic_convert.py:686:27 - error: "_assert_async" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/symbolic_convert.py:699:35 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/symbolic_convert.py:711:40 - error: "scalar_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/symbolic_convert.py:722:23 - error: "_assert_async" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/symbolic_convert.py:921:28 - error: Argument of type "InstructionTranslatorBase | None" cannot be assigned to parameter "tx" of type "InstructionTranslatorBase" in function "__init__" +   Type "InstructionTranslatorBase | None" is not assignable to type "InstructionTranslatorBase" +     "None" is not assignable to "InstructionTranslatorBase" (reportArgumentType) + /torch/_dynamo/symbolic_convert.py:1220:27 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/symbolic_convert.py:1222:27 - error: Cannot access attribute "fn" for class "VariableTracker" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/symbolic_convert.py:1319:13 - error: Object of type "None" cannot be called (reportOptionalCall) + /torch/_dynamo/symbolic_convert.py:1471:28 - error: Argument of type "InstructionTranslatorBase | None" cannot be assigned to parameter "tx" of type "InstructionTranslatorBase" in function "__init__" +   Type "InstructionTranslatorBase | None" is not assignable to type "InstructionTranslatorBase" +     "None" is not assignable to "InstructionTranslatorBase" (reportArgumentType) + /torch/_dynamo/symbolic_convert.py:1602:28 - error: Argument of type "InstructionTranslatorBase | None" cannot be assigned to parameter "tx" of type "InstructionTranslatorBase" in function "__init__" +   Type "InstructionTranslatorBase | None" is not assignable to type "InstructionTranslatorBase" +     "None" is not assignable to "InstructionTranslatorBase" (reportArgumentType) + /torch/_dynamo/symbolic_convert.py:1654:64 - error: Cannot access attribute "msg" for class "RuntimeError" +   Attribute "msg" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/symbolic_convert.py:1843:27 - error: "package" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/symbolic_convert.py:2558:22 - error: Type "dict[Any, VariableTracker]" is not assignable to declared type "VariableTracker" +   "dict[Any, VariableTracker]" is not assignable to "VariableTracker" (reportAssignmentType) + /torch/_dynamo/symbolic_convert.py:2560:48 - error: Argument of type "VariableTracker" cannot be assigned to parameter "kwargs" of type "dict[str, VariableTracker]" in function "call_function" +   "VariableTracker" is not assignable to "dict[str, VariableTracker]" (reportArgumentType) + /torch/_dynamo/symbolic_convert.py:2951:24 - error: Argument of type "InstructionTranslatorBase | None" cannot be assigned to parameter "tx" of type "InstructionTranslatorBase" in function "__init__" +   Type "InstructionTranslatorBase | None" is not assignable to type "InstructionTranslatorBase" +     "None" is not assignable to "InstructionTranslatorBase" (reportArgumentType) + /torch/_dynamo/symbolic_convert.py:4176:32 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/symbolic_convert.py:4179:26 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/_dynamo/symbolic_convert.py:4179:51 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/_dynamo/symbolic_convert.py:4196:49 - error: Argument of type "StackSummary | None" cannot be assigned to parameter "stack" of type "StackSummary" in function "collapse_resume_frames" +   Type "StackSummary | None" is not assignable to type "StackSummary" +     "None" is not assignable to "StackSummary" (reportArgumentType) + /torch/_dynamo/symbolic_convert.py:4197:62 - error: Argument of type "Unknown | StackSummary | None" cannot be assigned to parameter "extracted_list" of type "Iterable[FrameSummary | _FrameSummaryTuple]" in function "format_list" +   Type "Unknown | StackSummary | None" is not assignable to type "Iterable[FrameSummary | _FrameSummaryTuple]" +     "None" is incompatible with protocol "Iterable[FrameSummary | _FrameSummaryTuple]" +       "__iter__" is not present (reportArgumentType) + /torch/_dynamo/symbolic_convert.py:4562:23 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/symbolic_convert.py:4564:22 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/symbolic_convert.py:4565:22 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/symbolic_convert.py:4566:22 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/symbolic_convert.py:4722:29 - error: Cannot access attribute "_origin" for class "FunctionType" +   Attribute "_origin" is unknown (reportFunctionMemberAccess) + /torch/_dynamo/symbolic_convert.py:5016:14 - error: "parent" overrides symbol of same name in class "InstructionTranslatorBase" +   Variable is mutable so its type is invariant +     Override type "InstructionTranslatorBase" is not the same as base type "InstructionTranslatorBase | None" (reportIncompatibleVariableOverride) + /torch/_dynamo/symbolic_convert.py:5075:27 - error: "package" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/tensor_version_op.py + /torch/_dynamo/tensor_version_op.py:53:24 - error: "_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/tensor_version_op.py:56:10 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/tensor_version_op.py:70:14 - error: "_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/test_case.py + /torch/_dynamo/test_case.py:87:45 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/test_case.py:101:53 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/test_case.py:166:28 - error: Type "(self_: Unknown, first: Unknown, second: Unknown, msg: Unknown | None = None) -> Unknown" is not assignable to declared type "(self: Self@TestCase, first: str, second: str, msg: Any = None) -> None" +   Type "(self_: Unknown, first: Unknown, second: Unknown, msg: Unknown | None = None) -> Unknown" is not assignable to type "(self: Self@TestCase, first: str, second: str, msg: Any = None) -> None" +     Parameter name mismatch: "self" versus "self_" (reportAssignmentType) + /torch/_dynamo/test_case.py:167:27 - error: Type "(self_: Unknown, seq1: Unknown, seq2: Unknown, msg: Unknown | None = None, seq_type: Unknown | None = None) -> Unknown" is not assignable to declared type "(self: Self@TestCase, seq1: Sequence[Any], seq2: Sequence[Any], msg: Any = None, seq_type: type[Sequence[Any]] | None = None) -> None" +   Type "(self_: Unknown, seq1: Unknown, seq2: Unknown, msg: Unknown | None = None, seq_type: Unknown | None = None) -> Unknown" is not assignable to type "(self: Self@TestCase, seq1: Sequence[Any], seq2: Sequence[Any], msg: Any = None, seq_type: type[Sequence[Any]] | None = None) -> None" +     Parameter name mismatch: "self" versus "self_" (reportAssignmentType) + /torch/_dynamo/test_case.py:171:23 - error: Type "(self_: Unknown, d1: Unknown, d2: Unknown, msg: Unknown | None = None) -> Unknown" is not assignable to declared type "(self: Self@TestCase, d1: Mapping[Any, object], d2: Mapping[Any, object], msg: Any = None) -> None" +   Type "(self_: Unknown, d1: Unknown, d2: Unknown, msg: Unknown | None = None) -> Unknown" is not assignable to type "(self: Self@TestCase, d1: Mapping[Any, object], d2: Mapping[Any, object], msg: Any = None) -> None" +     Parameter name mismatch: "self" versus "self_" (reportAssignmentType) +/torch/_dynamo/test_minifier_common.py + /torch/_dynamo/test_minifier_common.py:83:29 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_dynamo/test_minifier_common.py:107:18 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_dynamo/test_minifier_common.py:138:47 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_dynamo/test_minifier_common.py:164:33 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_dynamo/test_minifier_common.py:264:33 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) +/torch/_dynamo/testing.py + /torch/_dynamo/testing.py:116:26 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/testing.py:383:20 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/testing.py:384:20 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/testing.py:425:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/testing.py:425:32 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/testing.py:426:30 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/testing.py:441:28 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/testing.py:441:59 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/testing.py:445:28 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/testing.py:447:24 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/testing.py:448:18 - error: "as_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/testing.py:558:16 - error: Import "torch_xla.core.xla_model" could not be resolved (reportMissingImports) +/torch/_dynamo/trace_rules.py + /torch/_dynamo/trace_rules.py:4036:19 - error: "trace_rules" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/trace_rules.py:4037:19 - error: "trace_rules" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/trace_rules.py:4038:19 - error: "trace_rules" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/trace_rules.py:4039:19 - error: "trace_rules" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/trace_rules.py:4040:19 - error: "trace_rules" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) +/torch/_dynamo/types.py + /torch/_dynamo/types.py:20:6 - warning: Import "torch._C._dynamo.eval_frame" could not be resolved from source (reportMissingModuleSource) +/torch/_dynamo/utils.py + /torch/_dynamo/utils.py:73:5 - warning: Import "torch._C._instruction_counter" could not be resolved from source (reportMissingModuleSource) + /torch/_dynamo/utils.py:74:5 - error: "_len_torch_function_stack" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:75:5 - error: "_pop_torch_function_stack" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:76:5 - error: "_push_on_torch_function_stack" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:241:16 - warning: Import "tabulate" could not be resolved from source (reportMissingModuleSource) + /torch/_dynamo/utils.py:740:29 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:857:11 - error: "FloatTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:857:31 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:857:46 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:858:11 - error: "DoubleTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:858:32 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:858:47 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:859:11 - error: "HalfTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:859:30 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:859:45 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:860:11 - error: "BFloat16Tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:860:34 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:861:11 - error: "ByteTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:861:30 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:862:11 - error: "CharTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:862:30 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:863:11 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:863:30 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:863:43 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:864:11 - error: "IntTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:864:29 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:864:42 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:865:11 - error: "ShortTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:865:31 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:865:44 - error: "short" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:866:11 - error: "BoolTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:866:30 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:881:20 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:943:8 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:944:48 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:1244:10 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:1580:34 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:1626:24 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:1628:52 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:1663:24 - error: "utils" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:1665:18 - error: Import "torch._inductor.fb.remote_cache" could not be resolved (reportMissingImports) + /torch/_dynamo/utils.py:1680:28 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:1692:35 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:1693:45 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:1734:8 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:1901:42 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:1944:42 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2044:32 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2161:47 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2165:8 - error: "is_fake" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:2170:19 - error: "clone" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2185:30 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2186:26 - error: "sparse_coo_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2193:35 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2193:53 - error: "sparse_bsr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2199:26 - error: "sparse_compressed_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2215:28 - error: "empty_quantized" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2217:28 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2287:34 - error: "_DisableFuncTorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2288:41 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2290:27 - error: "clone" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2293:36 - error: "clone" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2297:26 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2307:19 - error: "_trace" is not a known attribute of module "torch.jit" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2308:19 - error: "_script" is not a known attribute of module "torch.jit" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2310:9 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/_dynamo/utils.py:2317:23 - error: "_trace" is not a known attribute of module "torch.jit" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2318:23 - error: "_script" is not a known attribute of module "torch.jit" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2394:20 - error: Cannot access attribute "_fields" for class "type[tuple[Unknown, ...]]" +   Attribute "_fields" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2413:27 - error: "clone" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2415:36 - error: "clone" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2417:43 - error: "clone" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2426:42 - error: "cuda_rng_state" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:2479:11 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2480:11 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2481:11 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2482:11 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2483:11 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2484:11 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2490:12 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/_dynamo/utils.py:2510:19 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2532:34 - error: "_internal" is not a known attribute of module "torch.nested" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2547:21 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:2551:21 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:2555:21 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:2579:17 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:2742:50 - error: Argument of type "OrderedDict[Any, Any] | dict[Any, Any]" cannot be assigned to parameter "self" of type "OrderedDict[Unknown, Unknown]" in function "keys" +   Type "OrderedDict[Any, Any] | dict[Any, Any]" is not assignable to type "OrderedDict[Unknown, Unknown]" +     "dict[Any, Any]" is not assignable to "OrderedDict[Unknown, Unknown]" (reportArgumentType) + /torch/_dynamo/utils.py:2782:12 - error: "is_fake" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:2971:44 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2973:28 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2981:18 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2981:29 - error: "mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:2981:40 - error: "square" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3011:77 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3088:64 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3101:35 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3105:27 - error: "allclose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3106:40 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3107:40 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3117:42 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3118:42 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3119:22 - error: "allclose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3132:22 - error: "allclose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3136:40 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3148:31 - error: "allclose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3178:52 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3178:67 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3211:45 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3233:61 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3251:19 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3252:19 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3304:13 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:3306:5 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:3307:23 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:3309:5 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:3314:9 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:3315:9 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:3325:41 - error: "output_graph" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3346:18 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:3351:41 - error: "is_fake" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:3369:12 - error: "maybe_get_fake_mode" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:3393:21 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3422:41 - error: "is_fake" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:3437:66 - error: "is_fake" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:3489:38 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3493:22 - error: Cannot access attribute "func" for class "BaseException" +   Attribute "func" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3493:22 - error: Cannot access attribute "func" for class "RuntimeError" +   Attribute "func" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3509:35 - error: Cannot access attribute "func" for class "BaseException" +   Attribute "func" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3509:35 - error: Cannot access attribute "func" for class "RuntimeError" +   Attribute "func" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3510:48 - error: Cannot access attribute "func" for class "BaseException" +   Attribute "func" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3510:48 - error: Cannot access attribute "func" for class "RuntimeError" +   Attribute "func" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3515:38 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3520:39 - error: Cannot access attribute "func" for class "BaseException" +   Attribute "func" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3520:39 - error: Cannot access attribute "func" for class "RuntimeError" +   Attribute "func" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3521:52 - error: Cannot access attribute "func" for class "BaseException" +   Attribute "func" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3521:52 - error: Cannot access attribute "func" for class "RuntimeError" +   Attribute "func" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3530:39 - error: Cannot access attribute "func" for class "BaseException" +   Attribute "func" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3530:39 - error: Cannot access attribute "func" for class "RuntimeError" +   Attribute "func" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3531:52 - error: Cannot access attribute "func" for class "BaseException" +   Attribute "func" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3531:52 - error: Cannot access attribute "func" for class "RuntimeError" +   Attribute "func" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3537:38 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3542:41 - error: "_dispatch_pystub" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3554:56 - error: Cannot access attribute "func" for class "BaseException" +   Attribute "func" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3554:56 - error: Cannot access attribute "func" for class "RuntimeError" +   Attribute "func" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3851:11 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:3857:11 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:3867:18 - warning: Import "tabulate" could not be resolved from source (reportMissingModuleSource) + /torch/_dynamo/utils.py:3882:12 - error: "LazyString" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:3964:8 - error: "is_fake" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:3966:26 - error: "tnp" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:3980:22 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:3981:26 - error: "tnp" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:4003:24 - error: "tnp" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:4007:23 - error: "tnp" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:4024:19 - error: "tnp" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:4044:16 - error: Type "Generator[ndarray | object, None, None]" is not assignable to declared type "_P@numpy_operator_wrapper.args" +   Type "Generator[ndarray | object, None, None]" is not assignable to type "_P@numpy_operator_wrapper.args" (reportAssignmentType) + /torch/_dynamo/utils.py:4045:13 - error: "tnp" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:4052:26 - error: "FakeTensor" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:4054:17 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4055:19 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4072:15 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4106:15 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4133:18 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4438:18 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4439:15 - error: "default_generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4444:18 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4445:15 - error: "default_generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4487:50 - error: Cannot access attribute "peek_value" for class "VariableTracker" +   Attribute "peek_value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4496:44 - error: "_disabled_torch_function_impl" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4503:51 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4507:33 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4524:27 - error: Cannot access attribute "__dataclass_params__" for class "DataclassInstance" +   Attribute "__dataclass_params__" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4524:27 - error: Cannot access attribute "__dataclass_params__" for class "type[DataclassInstance]" +   Attribute "__dataclass_params__" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4525:19 - error: Cannot access attribute "__dataclass_params__" for class "DataclassInstance" +   Attribute "__dataclass_params__" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4525:19 - error: Cannot access attribute "__dataclass_params__" for class "type[DataclassInstance]" +   Attribute "__dataclass_params__" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4557:28 - error: "compiled_autograd" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4592:24 - error: Parameter declaration "args" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_dynamo/utils.py:4612:22 - error: "compiled_autograd" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4629:24 - error: Type "partial[PyTree]" is not assignable to declared type "(flat_args: Any) -> Any" +   Type "partial[PyTree]" is not assignable to type "(flat_args: Any) -> Any" +     Parameter name mismatch: "flat_args" versus "leaves" (reportAssignmentType) + /torch/_dynamo/utils.py:4690:26 - error: "_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4693:18 - error: "_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4693:61 - error: "prior" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:4697:28 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4697:58 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4708:21 - error: "_get_function_stack_at" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4724:38 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4724:55 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4792:69 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4793:21 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4796:68 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4797:21 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4830:16 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:4834:16 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:4862:20 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:4890:9 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:4890:61 - error: "is_inference_mode_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4909:8 - error: "config" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/utils.py:4910:32 - error: "meta_utils" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_dynamo/utils.py:4936:18 - error: "_profiler" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/variables/builder.py + /torch/_dynamo/variables/builder.py:351:45 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:398:20 - error: Argument of type "None" cannot be assigned to parameter "source" of type "Source" in function "__init__" +   "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/builder.py:399:22 - error: Argument of type "BackwardState" cannot be assigned to parameter "_example" of type "TensorWeakRef | SymInt" in function "__init__" +   Type "BackwardState" is not assignable to type "TensorWeakRef | SymInt" +     "BackwardState" is not assignable to "TensorWeakRef" +     "BackwardState" is not assignable to "SymInt" (reportArgumentType) + /torch/_dynamo/variables/builder.py:667:18 - error: Import "triton.runtime.autotuner" could not be resolved (reportMissingImports) + /torch/_dynamo/variables/builder.py:668:18 - error: Import "triton.runtime.jit" could not be resolved (reportMissingImports) + /torch/_dynamo/variables/builder.py:690:18 - error: Import "triton.tools.experimental_descriptor" could not be resolved (reportMissingImports) + /torch/_dynamo/variables/builder.py:695:18 - error: Import "triton.tools.tensor_descriptor" could not be resolved (reportMissingImports) + /torch/_dynamo/variables/builder.py:1678:55 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/_dynamo/variables/builder.py:1688:59 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:1765:17 - error: Argument of type "list[Unknown]" cannot be assigned to parameter "_example" of type "TensorWeakRef | SymInt" in function "__init__" +   Type "list[Unknown]" is not assignable to type "TensorWeakRef | SymInt" +     "list[Unknown]" is not assignable to "TensorWeakRef" +     "list[Unknown]" is not assignable to "SymInt" (reportArgumentType) + /torch/_dynamo/variables/builder.py:1793:59 - error: Argument of type "list[LazyVariableTracker]" cannot be assigned to parameter "items" of type "list[VariableTracker]" in function "__init__" +   "list[LazyVariableTracker]" is not assignable to "list[VariableTracker]" +     Type parameter "_T@list" is invariant, but "LazyVariableTracker" is not the same as "VariableTracker" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /torch/_dynamo/variables/builder.py:1798:42 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/_dynamo/variables/builder.py:1809:42 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/_dynamo/variables/builder.py:1924:43 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:1937:48 - error: Cannot access attribute "__func__" for class "FunctionType" +   Attribute "__func__" is unknown (reportFunctionMemberAccess) + /torch/_dynamo/variables/builder.py:1941:37 - error: "object" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/_dynamo/variables/builder.py:1948:45 - error: Cannot access attribute "__func__" for class "FunctionType" +   Attribute "__func__" is unknown (reportFunctionMemberAccess) + /torch/_dynamo/variables/builder.py:1951:37 - error: "object" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/_dynamo/variables/builder.py:1991:48 - error: "distributed" is not a known attribute of module "torch.nn.parallel" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:2159:52 - error: "_internal" is not a known attribute of module "torch.nested" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:2187:49 - error: "dtype" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/variables/builder.py:2191:86 - error: "dtype" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/variables/builder.py:2244:38 - error: "tensor" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:2321:45 - error: Cannot access attribute "proxy" for class "VariableTracker" +   Attribute "proxy" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:2472:21 - error: No overloads for "__init__" match the provided arguments (reportCallIssue) + /torch/_dynamo/variables/builder.py:2472:21 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /torch/_dynamo/variables/builder.py:2472:26 - error: Argument of type "frozenset[str]" cannot be assigned to parameter "iterable" of type "Iterable[list[bytes]]" in function "__init__" +   "frozenset[str]" is not assignable to "Iterable[list[bytes]]" +     Type parameter "_T_co@Iterable" is covariant, but "str" is not a subtype of "list[bytes]" +       "str" is not assignable to "list[bytes]" (reportArgumentType) + /torch/_dynamo/variables/builder.py:2472:52 - error: Argument of type "str" cannot be assigned to parameter "key" of type "bytes" in function "get" +   "str" is not assignable to "bytes" (reportArgumentType) + /torch/_dynamo/variables/builder.py:3380:25 - error: "_internal" is not a known attribute of module "torch.nested" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:3418:41 - error: Cannot access attribute "dynamic_sizes" for class "SymbolicContext" +   Attribute "dynamic_sizes" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:3419:43 - error: Cannot access attribute "dynamic_strides" for class "SymbolicContext" +   Attribute "dynamic_strides" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:3420:44 - error: Cannot access attribute "constraint_sizes" for class "SymbolicContext" +   Attribute "constraint_sizes" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:3421:46 - error: Cannot access attribute "constraint_strides" for class "SymbolicContext" +   Attribute "constraint_strides" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:3423:41 - error: Cannot access attribute "tensor_source" for class "SymbolicContext" +   Attribute "tensor_source" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:3424:63 - error: Cannot access attribute "shape_env_to_source_to_symbol_cache" for class "SymbolicContext" +   Attribute "shape_env_to_source_to_symbol_cache" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:3436:49 - error: Argument of type "Unknown | None" cannot be assigned to parameter "shape_env_to_source_to_symbol_cache" of type "dict[int, dict[str, Expr]]" in function "__init__" +   Type "Unknown | None" is not assignable to type "dict[int, dict[str, Expr]]" +     "None" is not assignable to "dict[int, dict[str, Expr]]" (reportArgumentType) + /torch/_dynamo/variables/builder.py:3454:49 - error: Argument of type "Unknown | None" cannot be assigned to parameter "shape_env_to_source_to_symbol_cache" of type "dict[int, dict[str, Expr]]" in function "__init__" +   Type "Unknown | None" is not assignable to type "dict[int, dict[str, Expr]]" +     "None" is not assignable to "dict[int, dict[str, Expr]]" (reportArgumentType) + /torch/_dynamo/variables/builder.py:3458:60 - error: Argument of type "Unknown | TensorWithFlatten" cannot be assigned to parameter "e" of type "Tensor" in function "record_automatic_dynamic" +   Type "Unknown | TensorWithFlatten" is not assignable to type "Tensor" +     "TensorWithFlatten" is not assignable to "Tensor" (reportArgumentType) + /torch/_dynamo/variables/builder.py:3520:17 - error: No overloads for "__init__" match the provided arguments (reportCallIssue) + /torch/_dynamo/variables/builder.py:3520:17 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /torch/_dynamo/variables/builder.py:3520:22 - error: Argument of type "frozenset[str]" cannot be assigned to parameter "iterable" of type "Iterable[list[bytes]]" in function "__init__" +   "frozenset[str]" is not assignable to "Iterable[list[bytes]]" +     Type parameter "_T_co@Iterable" is covariant, but "str" is not a subtype of "list[bytes]" +       "str" is not assignable to "list[bytes]" (reportArgumentType) + /torch/_dynamo/variables/builder.py:3520:48 - error: Argument of type "str" cannot be assigned to parameter "key" of type "bytes" in function "get" +   "str" is not assignable to "bytes" (reportArgumentType) + /torch/_dynamo/variables/builder.py:3528:13 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /torch/_dynamo/variables/builder.py:3528:13 - error: Argument of type "Literal[AutoDynamic.token]" cannot be assigned to parameter "value" of type "AutoUnset" in function "__setitem__" +   "Literal[AutoDynamic.token]" is not assignable to "AutoUnset" (reportArgumentType) + /torch/_dynamo/variables/builder.py:3529:69 - error: Argument of type "list[AutoUnset] | Unknown" cannot be assigned to parameter "size" of type "tuple[int, ...]" in function "make_size" +   Type "list[AutoUnset] | Unknown" is not assignable to type "tuple[int, ...]" +     "list[AutoUnset]" is not assignable to "tuple[int, ...]" (reportArgumentType) + /torch/_dynamo/variables/builder.py:3564:40 - error: Cannot access attribute "_dynamo_dynamic_range" for class "TensorWithFlatten" +   Attribute "_dynamo_dynamic_range" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:3637:45 - error: Argument of type "Unknown | None" cannot be assigned to parameter "shape_env_to_source_to_symbol_cache" of type "dict[int, dict[str, Expr]]" in function "__init__" +   Type "Unknown | None" is not assignable to type "dict[int, dict[str, Expr]]" +     "None" is not assignable to "dict[int, dict[str, Expr]]" (reportArgumentType) + /torch/_dynamo/variables/builder.py:3698:29 - error: Argument of type "SymInt | SymFloat" cannot be assigned to parameter "fake" of type "FakeTensor | SymInt" in function "__init__" +   Type "SymInt | SymFloat" is not assignable to type "FakeTensor | SymInt" +     Type "SymFloat" is not assignable to type "FakeTensor | SymInt" +       "SymFloat" is not assignable to "FakeTensor" +       "SymFloat" is not assignable to "SymInt" (reportArgumentType) + /torch/_dynamo/variables/builder.py:3768:42 - error: Cannot access attribute "_type_handlers" for class "type[SourcelessBuilder]" +   Attribute "_type_handlers" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:3775:44 - error: "_HAS_DEFAULT_FACTORY_CLASS" is not a known attribute of module "dataclasses" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:3782:20 - error: Object of type "None" cannot be called (reportOptionalCall) + /torch/_dynamo/variables/builder.py:3782:55 - error: Expected 0 positional arguments (reportCallIssue) + /torch/_dynamo/variables/builder.py:3787:19 - error: Object of type "None" cannot be called (reportOptionalCall) + /torch/_dynamo/variables/builder.py:3787:53 - error: Cannot access attribute "__self__" for class "FunctionType" +   Attribute "__self__" is unknown (reportFunctionMemberAccess) + /torch/_dynamo/variables/builder.py:3787:63 - error: Expected 0 positional arguments (reportCallIssue) + /torch/_dynamo/variables/builder.py:3787:69 - error: Cannot access attribute "__self__" for class "FunctionType" +   Attribute "__self__" is unknown (reportFunctionMemberAccess) + /torch/_dynamo/variables/builder.py:3790:20 - error: Object of type "None" cannot be called (reportOptionalCall) + /torch/_dynamo/variables/builder.py:3790:46 - error: Expected 0 positional arguments (reportCallIssue) + /torch/_dynamo/variables/builder.py:3792:38 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:3792:60 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:3794:33 - error: Argument of type "Unknown | ((...) -> object)" cannot be assigned to parameter "value" of type "Enum | IntEnum" in function "__init__" +   Type "Unknown | ((...) -> object)" is not assignable to type "Enum | IntEnum" +     Type "(...) -> object" is not assignable to type "Enum | IntEnum" +       "FunctionType" is not assignable to "Enum" +       "FunctionType" is not assignable to "IntEnum" (reportArgumentType) + /torch/_dynamo/variables/builder.py:3812:41 - error: "graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:3814:44 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:3824:46 - error: "variables" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:3826:43 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:3827:34 - error: "variables" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builder.py:3918:19 - error: Cannot assign to attribute "_type_handlers" for class "type[SourcelessBuilder]" +   Attribute "_type_handlers" is unknown (reportAttributeAccessIssue) +/torch/_dynamo/variables/builtin.py + /torch/_dynamo/variables/builtin.py:245:18 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builtin.py:246:18 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builtin.py:247:22 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builtin.py:247:42 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builtin.py:248:22 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builtin.py:248:42 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builtin.py:935:25 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builtin.py:936:24 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builtin.py:937:26 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builtin.py:1147:28 - error: Except clause is unreachable because exception is already handled +   "AsPythonConstantNotImplementedError" is a subclass of "Exception" (reportUnusedExcept) + /torch/_dynamo/variables/builtin.py:1327:28 - error: "select" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builtin.py:1724:66 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builtin.py:1750:71 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builtin.py:1760:44 - error: "maximum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builtin.py:1760:64 - error: "minimum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builtin.py:1845:41 - error: Argument of type "VariableTracker" cannot be assigned to parameter "a" of type "SupportsIndex" in function "index" +   "VariableTracker" is incompatible with protocol "SupportsIndex" +     "__index__" is not present (reportArgumentType) + /torch/_dynamo/variables/builtin.py:2162:9 - error: Expression with type "tuple[()] | tuple[VariableTracker, VariableTracker, *tuple[VariableTracker, ...], VariableTracker] | tuple[VariableTracker, VariableTracker, VariableTracker, *tuple[VariableTracker, ...]] | tuple[VariableTracker, VariableTracker]" cannot be assigned to target tuple +   Type "tuple[()]" is incompatible with target tuple +     Tuple size mismatch; expected 2 but received 0 +   Type "tuple[VariableTracker, VariableTracker, *tuple[VariableTracker, ...], VariableTracker]" is incompatible with target tuple +     Tuple size mismatch; expected 2 but received 3 +   Type "tuple[VariableTracker, VariableTracker, VariableTracker, *tuple[VariableTracker, ...]]" is incompatible with target tuple +     Tuple size mismatch; expected 2 but received 3 (reportAssignmentType) + /torch/_dynamo/variables/builtin.py:2652:33 - error: "trace_rules" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builtin.py:2774:34 - error: "_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/builtin.py:2951:21 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/_dynamo/variables/builtin.py:2952:57 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/_dynamo/variables/builtin.py:2953:21 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/_dynamo/variables/builtin.py:2954:57 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/_dynamo/variables/builtin.py:2955:21 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/_dynamo/variables/builtin.py:2956:57 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) +/torch/_dynamo/variables/constant.py + /torch/_dynamo/variables/constant.py:127:61 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/constant.py:245:48 - error: Argument of type "float | int | Any | str | bytes | complex" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "float | int | Any | str | bytes | complex" is not assignable to type "Sized" +     "complex" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /torch/_dynamo/variables/constant.py:250:21 - error: No overloads for "round" match the provided arguments (reportCallIssue) + /torch/_dynamo/variables/constant.py:250:27 - error: Argument of type "float | int | Any | str | bytes | complex" cannot be assigned to parameter "number" of type "_SupportsRound2[_T@round]" in function "round" +   Type "float | int | Any | str | bytes | complex" is not assignable to type "_SupportsRound2[_T@round]" +     "bytes" is incompatible with protocol "_SupportsRound2[_T@round]" +       "__round__" is not present (reportArgumentType) +/torch/_dynamo/variables/ctx_manager.py + /torch/_dynamo/variables/ctx_manager.py:78:18 - error: Cannot access attribute "_call_func" for class "ContextWrappingVariable*" +   Attribute "_call_func" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:83:44 - error: Parameter declaration "fn" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_dynamo/variables/ctx_manager.py:89:26 - error: Cannot access attribute "_call_func" for class "ContextWrappingVariable*" +   Attribute "_call_func" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:253:36 - error: "_functorch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:254:18 - error: "_functorch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:257:30 - error: "_functorch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:263:22 - error: "_functorch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:275:22 - error: "_functorch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:296:31 - error: "_functorch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:299:30 - error: "_functorch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:303:22 - error: "_functorch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:315:22 - error: "_functorch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:345:27 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:347:31 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:351:22 - error: "_functorch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:362:39 - error: "_functorch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:382:36 - error: "_is_fwd_grad_enabled" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:383:18 - error: "_set_fwd_grad_enabled" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:386:30 - error: "_set_fwd_grad_enabled" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:390:22 - error: "_set_fwd_grad_enabled" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:402:22 - error: "_set_fwd_grad_enabled" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:430:22 - error: "_enter_dual_level" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:442:22 - error: "_exit_dual_level" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:472:31 - error: "_functorch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:473:52 - error: "_functorch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:476:22 - error: "_functorch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:487:39 - error: "_functorch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:526:9 - error: Method "reconstruct" overrides class "ContextWrappingVariable" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "codegen", override parameter is named "cg" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/ctx_manager.py:564:31 - error: "_functorch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:567:52 - error: "_functorch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:570:19 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:582:19 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:603:35 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:645:18 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:647:43 - error: "_set_grad_enabled" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:649:22 - error: "_set_grad_enabled" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:664:50 - error: "is_inference_mode_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:676:36 - error: "is_inference_mode_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:703:27 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:704:22 - error: "_set_grad_enabled" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:710:26 - error: "_set_grad_enabled" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:710:44 - error: "prior" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/variables/ctx_manager.py:712:63 - error: "ctx" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/variables/ctx_manager.py:825:9 - error: Method "set_cleanup_hook" overrides class "ContextWrappingVariable" in an incompatible manner +   Parameter 3 name mismatch: base parameter is named "fn", override parameter is named "cleanup_fn" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/ctx_manager.py:828:9 - error: Parameter declaration "cleanup_fn" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_dynamo/variables/ctx_manager.py:898:39 - error: "_set_deterministic_algorithms" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:900:18 - error: "_set_deterministic_algorithms" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:919:26 - error: "_autograd" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:951:26 - error: "_autograd" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:955:22 - error: "_autograd" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:959:43 - error: "_autograd" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:961:22 - error: "_autograd" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:1091:9 - error: Method "reconstruct" overrides class "ContextWrappingVariable" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "codegen", override parameter is named "cg" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/ctx_manager.py:1367:38 - error: "traceback" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/variables/ctx_manager.py:1368:38 - error: "traceback" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/_dynamo/variables/dicts.py + /torch/_dynamo/variables/dicts.py:1022:17 - error: Type "dict[VariableTracker, VariableTracker]" is not assignable to declared type "list[VariableTracker]" +   "dict[VariableTracker, VariableTracker]" is not assignable to "list[VariableTracker]" (reportAssignmentType) + /torch/_dynamo/variables/dicts.py:1024:26 - error: Argument of type "list[VariableTracker]" cannot be assigned to parameter "items" of type "dict[VariableTracker, VariableTracker]" in function "__init__" +   "list[VariableTracker]" is not assignable to "dict[VariableTracker, VariableTracker]" (reportArgumentType) +/torch/_dynamo/variables/distributed.py + /torch/_dynamo/variables/distributed.py:367:68 - error: Argument of type "tuple[Unknown, ...]" cannot be assigned to parameter "args" of type "list[VariableTracker]" in function "call_method" +   "tuple[Unknown, ...]" is not assignable to "list[VariableTracker]" (reportArgumentType) + /torch/_dynamo/variables/distributed.py:377:14 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) +/torch/_dynamo/variables/functions.py + /torch/_dynamo/variables/functions.py:628:32 - error: "side_effects" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/functions.py:645:36 - error: "side_effects" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/functions.py:710:9 - error: "__name__" overrides symbol of same name in class "type" +   "FunctionType" is not assignable to "str" (reportIncompatibleVariableOverride) + /torch/_dynamo/variables/functions.py:1839:40 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/functions.py:2169:28 - warning: TypeVar "_F" appears only once in generic function signature +   Use "(...) -> Any" instead (reportInvalidTypeVarUse) + /torch/_dynamo/variables/functions.py:2172:18 - error: Attribute type cannot use type variable "_F@__init__" scoped to local method (reportGeneralTypeIssues) + /torch/_dynamo/variables/functions.py:2193:28 - error: Attribute type cannot use type variable "_F@__init__" scoped to local method (reportGeneralTypeIssues) + /torch/_dynamo/variables/functions.py:2356:70 - error: "proxy" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/variables/functions.py:2446:9 - error: Method "call_HOP" overrides class "TritonHOPifier" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "combined_args", override parameter is named "combined_args_raw" (reportIncompatibleMethodOverride) +/torch/_dynamo/variables/higher_order_ops.py + /torch/_dynamo/variables/higher_order_ops.py:177:9 - error: Argument of type "list[Any | None]" cannot be assigned to parameter "lhs_list" of type "list[Tensor | SymInt | int]" in function "check_meta_consistency" +   "list[Any | None]" is not assignable to "list[Tensor | SymInt | int]" +     Type parameter "_T@list" is invariant, but "Any | None" is not the same as "Tensor | SymInt | int" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /torch/_dynamo/variables/higher_order_ops.py:178:9 - error: Argument of type "list[Any | None]" cannot be assigned to parameter "rhs_list" of type "list[Tensor | SymInt | int]" in function "check_meta_consistency" +   "list[Any | None]" is not assignable to "list[Tensor | SymInt | int]" +     Type parameter "_T@list" is invariant, but "Any | None" is not the same as "Tensor | SymInt | int" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /torch/_dynamo/variables/higher_order_ops.py:189:23 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:315:41 - error: Argument of type "VariableTracker | tuple[VariableTracker, ...]" cannot be assigned to parameter "iter1" of type "Iterable[_T1@__new__]" in function "__new__" +   Type "VariableTracker | tuple[VariableTracker, ...]" is not assignable to type "Iterable[_T1@__new__]" +     "VariableTracker" is incompatible with protocol "Iterable[_T1@__new__]" +       "__iter__" is not present (reportArgumentType) + /torch/_dynamo/variables/higher_order_ops.py:315:73 - error: Cannot access attribute "items" for class "VariableTracker" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:494:30 - error: Cannot access attribute "proxy" for class "VariableTracker" +   Attribute "proxy" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:532:28 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:560:38 - error: Cannot access attribute "supports_input_mutation" for class "VariableTracker" +   Attribute "supports_input_mutation" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:561:32 - error: Cannot access attribute "supports_aliasing" for class "VariableTracker" +   Attribute "supports_aliasing" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:570:39 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:570:74 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:605:28 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:669:14 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:1029:66 - error: Cannot access attribute "values" for class "tuple[Node]" +   Attribute "values" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:1047:12 - error: "x1" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/variables/higher_order_ops.py:1047:31 - error: "x1" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/variables/higher_order_ops.py:1049:14 - error: "x1" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/variables/higher_order_ops.py:1056:13 - error: "x1" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/variables/higher_order_ops.py:1065:48 - error: Cannot access attribute "values" for class "tuple[Node]" +   Attribute "values" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:1210:37 - error: "output_graph" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:1314:49 - error: Argument of type "Unknown | None" cannot be assigned to parameter "prior_tracer" of type "SubgraphTracer" +   Type "Unknown | None" is not assignable to type "SubgraphTracer" +     "None" is not assignable to "SubgraphTracer" (reportArgumentType) + /torch/_dynamo/variables/higher_order_ops.py:1405:38 - error: Cannot access attribute "tracked_tensor_or_symint_vt" for class "Tracer" +   Attribute "tracked_tensor_or_symint_vt" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:1410:44 - error: Argument of type "tuple[Unknown, ...]" cannot be assigned to parameter "output" of type "VariableTracker" in function "validate_subgraph_output_types" +   "tuple[Unknown, ...]" is not assignable to "VariableTracker" (reportArgumentType) + /torch/_dynamo/variables/higher_order_ops.py:1419:31 - error: Cannot access attribute "maybe_lift_tracked_freevar_to_input" for class "Tracer" +   Attribute "maybe_lift_tracked_freevar_to_input" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:1425:31 - error: Cannot access attribute "maybe_lift_tracked_freevar_to_input" for class "Tracer" +   Attribute "maybe_lift_tracked_freevar_to_input" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:1436:41 - error: Cannot access attribute "lifted_freevars" for class "Tracer" +   Attribute "lifted_freevars" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:1747:9 - error: Method "_call_function" overrides class "TorchHigherOrderOperatorVariable" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/higher_order_ops.py:1753:30 - error: "variables" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:1755:27 - error: "variables" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:1758:31 - error: Argument of type "Source | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Source | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/higher_order_ops.py:1993:9 - error: Method "_call_function" overrides class "TorchHigherOrderOperatorVariable" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/higher_order_ops.py:2113:35 - error: Cannot access attribute "keywords" for class "VariableTracker" +   Attribute "keywords" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:2173:49 - error: Argument of type "tuple[()]" cannot be assigned to parameter "args" of type "list[VariableTracker]" in function "call_method" +   "tuple[()]" is not assignable to "list[VariableTracker]" (reportArgumentType) + /torch/_dynamo/variables/higher_order_ops.py:2261:14 - error: Object of type "None" cannot be used with "with" (reportOptionalContextManager) + /torch/_dynamo/variables/higher_order_ops.py:2615:26 - error: Argument of type "tuple[Any, Any]" cannot be assigned to parameter "args" of type "list[VariableTracker]" in function "call_method" +   "tuple[Any, Any]" is not assignable to "list[VariableTracker]" (reportArgumentType) + /torch/_dynamo/variables/higher_order_ops.py:2677:9 - error: Method "_call_function" overrides class "TorchHigherOrderOperatorVariable" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/higher_order_ops.py:2701:9 - error: Method "_call_function" overrides class "TorchHigherOrderOperatorVariable" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/higher_order_ops.py:2738:14 - error: Object of type "None" cannot be used with "with" (reportOptionalContextManager) + /torch/_dynamo/variables/higher_order_ops.py:2739:29 - error: "lowered_module" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/variables/higher_order_ops.py:2739:44 - error: Cannot access attribute "original_module" for class "object" +   Attribute "original_module" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:2746:19 - error: "lowered_node" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/variables/higher_order_ops.py:2762:9 - error: Method "call_function" overrides class "UserFunctionVariable" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/higher_order_ops.py:2798:53 - error: Argument of type "VariableTracker" cannot be assigned to parameter "ctx_manager_vt" of type "ContextWrappingVariable" in function "__init__" +   "VariableTracker" is not assignable to "ContextWrappingVariable" (reportArgumentType) + /torch/_dynamo/variables/higher_order_ops.py:2880:9 - error: Method "_call_function" overrides class "TorchHigherOrderOperatorVariable" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/higher_order_ops.py:2907:16 - error: Type "VariableTracker | None" is not assignable to return type "VariableTracker" +   Type "VariableTracker | None" is not assignable to type "VariableTracker" +     "None" is not assignable to "VariableTracker" (reportReturnType) + /torch/_dynamo/variables/higher_order_ops.py:2924:9 - error: Method "call_function" overrides class "TorchHigherOrderOperatorVariable" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/higher_order_ops.py:3011:9 - error: Method "call_function" overrides class "TorchHigherOrderOperatorVariable" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/higher_order_ops.py:3168:16 - error: Type "VariableTracker | None" is not assignable to return type "VariableTracker" +   Type "VariableTracker | None" is not assignable to type "VariableTracker" +     "None" is not assignable to "VariableTracker" (reportReturnType) + /torch/_dynamo/variables/higher_order_ops.py:3180:9 - error: Method "_call_function" overrides class "TorchHigherOrderOperatorVariable" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/higher_order_ops.py:3319:46 - error: "variables" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:3320:34 - error: Cannot access attribute "fn" for class "VariableTracker" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:3322:36 - error: "variables" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:3355:16 - error: Type "VariableTracker | None" is not assignable to return type "VariableTracker" +   Type "VariableTracker | None" is not assignable to type "VariableTracker" +     "None" is not assignable to "VariableTracker" (reportReturnType) + /torch/_dynamo/variables/higher_order_ops.py:3378:47 - error: "variables" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:3379:29 - error: Cannot access attribute "fn" for class "VariableTracker" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:3381:37 - error: "variables" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:3409:16 - error: Type "VariableTracker | None" is not assignable to return type "VariableTracker" +   Type "VariableTracker | None" is not assignable to type "VariableTracker" +     "None" is not assignable to "VariableTracker" (reportReturnType) + /torch/_dynamo/variables/higher_order_ops.py:3421:9 - error: Method "call_function" overrides class "TorchHigherOrderOperatorVariable" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/higher_order_ops.py:3444:9 - error: Method "_call_function" overrides class "TorchHigherOrderOperatorVariable" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/higher_order_ops.py:3467:9 - error: Method "_call_function" overrides class "TorchHigherOrderOperatorVariable" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/higher_order_ops.py:3504:9 - error: Method "_call_function" overrides class "TorchHigherOrderOperatorVariable" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/higher_order_ops.py:3542:9 - error: Method "_call_function" overrides class "TorchHigherOrderOperatorVariable" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/higher_order_ops.py:3587:51 - error: Cannot access attribute "requires_grad" for class "VariableTracker" +   Attribute "requires_grad" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:3591:21 - error: Argument of type "tuple[Any]" cannot be assigned to parameter "args" of type "list[VariableTracker]" in function "call_method" +   "tuple[Any]" is not assignable to "list[VariableTracker]" (reportArgumentType) + /torch/_dynamo/variables/higher_order_ops.py:3631:9 - error: Method "_call_function" overrides class "TorchHigherOrderOperatorVariable" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/higher_order_ops.py:3654:63 - error: "_flex_attention" is not a known attribute of module "torch.nn.attention" (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:3679:23 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:3708:9 - error: Method "call_function" overrides class "VariableTracker" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/higher_order_ops.py:3754:36 - error: "output_graph" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:3767:47 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:3768:17 - error: Cannot assign to attribute "proxy" for class "VariableTracker" +   Attribute "proxy" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:3814:36 - error: "output_graph" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:3854:33 - error: Argument of type "UserFunctionVariable | UserMethodVariable" cannot be assigned to parameter "source_target" of type "Target | None" +   Type "UserFunctionVariable | UserMethodVariable" is not assignable to type "Target | None" +     Type "UserFunctionVariable" is not assignable to type "Target | None" +       Type "UserFunctionVariable" is not assignable to type "(...) -> Any" +       "UserFunctionVariable" is not assignable to "str" +       "UserFunctionVariable" is not assignable to "None" (reportArgumentType) + /torch/_dynamo/variables/higher_order_ops.py:3869:34 - error: "exc" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:3871:38 - error: "exc" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:3875:48 - error: "output_graph" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:3935:16 - error: Cannot access attribute "non_differentiable" for class "VariableTracker" +   Attribute "non_differentiable" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:3936:46 - error: Cannot access attribute "non_differentiable" for class "VariableTracker" +   Attribute "non_differentiable" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4056:18 - error: Type "dict[str, list[bool]]" is not assignable to declared type "dict[str, VariableTracker]" +   "list[bool]" is not assignable to "VariableTracker" +   "list[Unknown]" is not assignable to "VariableTracker" (reportAssignmentType) + /torch/_dynamo/variables/higher_order_ops.py:4156:16 - error: Type "VariableTracker | None" is not assignable to return type "VariableTracker" +   Type "VariableTracker | None" is not assignable to type "VariableTracker" +     "None" is not assignable to "VariableTracker" (reportReturnType) + /torch/_dynamo/variables/higher_order_ops.py:4172:9 - error: Method "install_subgraph_in_output_graph" overrides class "WrapHigherOrderVariable" in an incompatible manner +   Parameter 7 mismatch: base parameter has default argument value, override parameter does not (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/higher_order_ops.py:4267:16 - error: Type "VariableTracker | None" is not assignable to return type "VariableTracker" +   Type "VariableTracker | None" is not assignable to type "VariableTracker" +     "None" is not assignable to "VariableTracker" (reportReturnType) + /torch/_dynamo/variables/higher_order_ops.py:4269:19 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4319:9 - error: Method "build" overrides class "VariableTracker" in an incompatible manner +   Positional parameter count mismatch; base method has 3, but override has 1 (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/higher_order_ops.py:4364:64 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4365:65 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4368:46 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4369:44 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4370:56 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4371:54 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4372:40 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4388:34 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4389:40 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4401:49 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4437:49 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4439:51 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4478:16 - error: Operator "in" not supported for types "Literal['subgraph']" and "Target" +   Operator "in" not supported for types "Literal['subgraph']" and "(...) -> Any" (reportOperatorIssue) + /torch/_dynamo/variables/higher_order_ops.py:4507:48 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4508:50 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4533:46 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4534:44 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4535:56 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4536:54 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4537:40 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/higher_order_ops.py:4540:16 - error: Type "TupleVariable | VariableTracker | None" is not assignable to return type "VariableTracker" +   Type "TupleVariable | VariableTracker | None" is not assignable to type "VariableTracker" +     "None" is not assignable to "VariableTracker" (reportReturnType) +/torch/_dynamo/variables/lazy.py + /torch/_dynamo/variables/lazy.py:38:21 - error: "set_name_hint" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/_dynamo/variables/lists.py + /torch/_dynamo/variables/lists.py:71:19 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/lists.py:1160:22 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/lists.py:1195:26 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/lists.py:1197:60 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/lists.py:1200:19 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/lists.py:1296:64 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/variables/misc.py + /torch/_dynamo/variables/misc.py:184:59 - error: Argument of type "Self@SuperVariable" cannot be assigned to parameter "tx" of type "InstructionTranslator" in function "_resolved_getattr_and_source" +   "SuperVariable*" is not assignable to "InstructionTranslator" (reportArgumentType) + /torch/_dynamo/variables/misc.py:198:62 - error: Argument of type "Self@SuperVariable" cannot be assigned to parameter "tx" of type "InstructionTranslator" in function "_resolved_getattr_and_source" +   "SuperVariable*" is not assignable to "InstructionTranslator" (reportArgumentType) + /torch/_dynamo/variables/misc.py:233:25 - error: "source" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/variables/misc.py:242:42 - error: "member" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/variables/misc.py:268:32 - error: "source" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/variables/misc.py:269:57 - error: "source" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/variables/misc.py:271:37 - error: "value_type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/variables/misc.py:275:58 - error: Argument of type "AttrSource | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "AttrSource | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/misc.py:283:36 - error: Argument of type "Unknown | None" cannot be assigned to parameter "obj" of type "VariableTracker" in function "__init__" +   Type "Unknown | None" is not assignable to type "VariableTracker" +     "None" is not assignable to "VariableTracker" (reportArgumentType) + /torch/_dynamo/variables/misc.py:288:61 - error: Argument of type "VariableTracker" cannot be assigned to parameter "directly_update_dict" of type "bool" in function "method_setattr_standard" +   "VariableTracker" is not assignable to "bool" (reportArgumentType) + /torch/_dynamo/variables/misc.py:304:65 - error: Argument of type "Unknown | None" cannot be assigned to parameter "item" of type "VariableTracker" in function "is_attribute_mutation" +   Type "Unknown | None" is not assignable to type "VariableTracker" +     "None" is not assignable to "VariableTracker" (reportArgumentType) + /torch/_dynamo/variables/misc.py:319:17 - error: Argument of type "Unknown | None" cannot be assigned to parameter "item" of type "VariableTracker" in function "store_attr" +   Type "Unknown | None" is not assignable to type "VariableTracker" +     "None" is not assignable to "VariableTracker" (reportArgumentType) + /torch/_dynamo/variables/misc.py:345:33 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/misc.py:347:17 - error: Argument of type "Unknown | UserDefinedDictVariable | UserDefinedSetVariable | UserDefinedTupleVariable | UserDefinedListVariable | None" cannot be assigned to parameter "item" of type "VariableTracker" in function "has_pending_mutation_of_attr" +   Type "Unknown | UserDefinedDictVariable | UserDefinedSetVariable | UserDefinedTupleVariable | UserDefinedListVariable | None" is not assignable to type "VariableTracker" +     "None" is not assignable to "VariableTracker" (reportArgumentType) + /torch/_dynamo/variables/misc.py:350:21 - error: Argument of type "Unknown | UserDefinedDictVariable | UserDefinedSetVariable | UserDefinedTupleVariable | UserDefinedListVariable | None" cannot be assigned to parameter "item" of type "VariableTracker" in function "load_attr" +   Type "Unknown | UserDefinedDictVariable | UserDefinedSetVariable | UserDefinedTupleVariable | UserDefinedListVariable | None" is not assignable to type "VariableTracker" +     "None" is not assignable to "VariableTracker" (reportArgumentType) + /torch/_dynamo/variables/misc.py:358:66 - error: "value" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/variables/misc.py:363:28 - error: "source" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/variables/misc.py:365:61 - error: "source" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/variables/misc.py:367:35 - error: "_disabled_torch_function_impl" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/misc.py:374:31 - error: Cannot access attribute "items" for class "VariableTracker" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/misc.py:375:50 - error: Cannot access attribute "items" for class "VariableTracker" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/misc.py:475:30 - error: Argument of type "VariableTracker" cannot be assigned to parameter "context" of type "ExceptionVariable" in function "set_context" +   "VariableTracker" is not assignable to "ExceptionVariable" (reportArgumentType) + /torch/_dynamo/variables/misc.py:565:9 - error: Method "call_function" overrides class "VariableTracker" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/misc.py:575:42 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/variables/misc.py:594:60 - error: Argument of type "Source | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Source | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/misc.py:597:9 - error: Method "call_function" overrides class "VariableTracker" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/misc.py:629:35 - error: Cannot access attribute "items" for class "VariableTracker" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/misc.py:703:36 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/misc.py:819:32 - error: Argument of type "Source | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Source | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/misc.py:865:26 - error: Cannot access attribute "create_with_source" for class "type[VariableTracker]" +   Attribute "create_with_source" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/misc.py:865:26 - error: "create_with_source" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/variables/misc.py:869:28 - error: Object of type "None" cannot be called (reportOptionalCall) + /torch/_dynamo/variables/misc.py:869:53 - error: Expected 0 positional arguments (reportCallIssue) + /torch/_dynamo/variables/misc.py:933:13 - error: Argument of type "None" cannot be assigned to parameter "cls_source" of type "Source" in function "track_object_new" +   "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/misc.py:1011:68 - error: Argument of type "tuple[Unknown, ...]" cannot be assigned to parameter "args" of type "list[VariableTracker]" in function "call_method" +   "tuple[Unknown, ...]" is not assignable to "list[VariableTracker]" (reportArgumentType) + /torch/_dynamo/variables/misc.py:1020:61 - error: Cannot access attribute "needs_input_grad" for class "object" +   Attribute "needs_input_grad" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/misc.py:1046:30 - error: "compiled_autograd" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/misc.py:1083:9 - error: Method "call_function" overrides class "VariableTracker" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/misc.py:1145:9 - error: Method "call_function" overrides class "VariableTracker" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/misc.py:1237:9 - error: Method "call_function" overrides class "VariableTracker" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/misc.py:1403:23 - error: Cannot access attribute "side_effects" for class "InstructionTranslator" +   Attribute "side_effects" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/misc.py:1498:9 - error: Method "call_function" overrides class "VariableTracker" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/misc.py:1715:9 - error: Method "call_function" overrides class "VariableTracker" in an incompatible manner +   Return type mismatch: base method returns type "VariableTracker", override returns type "None" +     "None" is not assignable to "VariableTracker" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/misc.py:1734:28 - error: "reconstruct" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_dynamo/variables/misc.py:1737:47 - error: Expected class but received "Literal[True]" (reportGeneralTypeIssues) + /torch/_dynamo/variables/misc.py:1775:13 - error: Type "None" is not assignable to return type "VariableTracker" +   "None" is not assignable to "VariableTracker" (reportReturnType) + /torch/_dynamo/variables/misc.py:1851:28 - error: Argument of type "floating[Unknown] | invalid_type" cannot be assigned to parameter "x" of type "ConvertibleToFloat" in function "__new__" +   Type "floating[Unknown] | invalid_type" is not assignable to type "ConvertibleToFloat" +     Type "invalid_type" is not assignable to type "ConvertibleToFloat" +       "invalid_type" is not assignable to "str" +       "invalid_type" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "invalid_type" is incompatible with protocol "SupportsFloat" +         "__float__" is not present +       "invalid_type" is incompatible with protocol "SupportsIndex" + ... (reportArgumentType) + /torch/_dynamo/variables/misc.py:1851:28 - error: Argument of type "floating[Unknown] | invalid_type" cannot be assigned to parameter "x" of type "ConvertibleToFloat" in function "__new__" +   Type "floating[Unknown] | invalid_type" is not assignable to type "ConvertibleToFloat" +     Type "invalid_type" is not assignable to type "ConvertibleToFloat" +       "invalid_type" is not assignable to "str" +       "invalid_type" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "invalid_type" is incompatible with protocol "SupportsFloat" +         "__float__" is not present +       "invalid_type" is incompatible with protocol "SupportsIndex" (reportArgumentType) + /torch/_dynamo/variables/misc.py:1957:41 - error: Argument of type "VariableTracker | None" cannot be assigned to parameter "x" of type "int | float | str | bytes | bytearray | None" in function "__init__" +   Type "VariableTracker | None" is not assignable to type "int | float | str | bytes | bytearray | None" +     Type "VariableTracker" is not assignable to type "int | float | str | bytes | bytearray | None" +       "VariableTracker" is not assignable to "int" +       "VariableTracker" is not assignable to "float" +       "VariableTracker" is not assignable to "str" +       "VariableTracker" is not assignable to "bytes" +       "VariableTracker" is not assignable to "bytearray" +       "VariableTracker" is not assignable to "None" (reportArgumentType) + /torch/_dynamo/variables/misc.py:2071:9 - error: Method "build" overrides class "VariableTracker" in an incompatible manner +   Positional parameter count mismatch; base method has 3, but override has 3 +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "weakref_value" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/misc.py:2087:9 - error: Method "call_function" overrides class "VariableTracker" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) +/torch/_dynamo/variables/nn_module.py + /torch/_dynamo/variables/nn_module.py:237:39 - error: Argument of type "Source | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Source | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:383:68 - error: Argument of type "AttrSource | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "AttrSource | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:419:73 - error: Argument of type "AttrSource | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "AttrSource | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:435:9 - error: Method "call_function" overrides class "VariableTracker" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/nn_module.py:476:62 - error: Argument of type "Source | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Source | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:508:48 - error: "pt2e" is not a known attribute of module "torch.ao.quantization" (reportAttributeAccessIssue) + /torch/_dynamo/variables/nn_module.py:621:45 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/nn_module.py:630:53 - error: Argument of type "Source | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Source | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:697:57 - error: Argument of type "Source | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Source | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:710:57 - error: Argument of type "Source | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Source | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:718:57 - error: Argument of type "Source | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Source | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:726:57 - error: Argument of type "Source | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Source | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:734:57 - error: Argument of type "Source | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Source | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:744:57 - error: Argument of type "Source | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Source | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:747:57 - error: Argument of type "Source | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Source | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:750:57 - error: Argument of type "Source | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Source | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:841:45 - error: Argument of type "Source | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Source | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:859:50 - error: Argument of type "slice[Any, Any, Any]" cannot be assigned to parameter "key" of type "str" +   "slice[Any, Any, Any]" is not assignable to "str" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:859:50 - error: Argument of type "slice[Any, Any, Any]" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   "slice[Any, Any, Any]" is not assignable to "str" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:859:50 - error: Argument of type "Unknown | Module | Any" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "Unknown | Module | Any" is not assignable to type "Iterable[_T@enumerate]" +     "Module" is incompatible with protocol "Iterable[_T@enumerate]" +       "__iter__" is not present (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:870:34 - error: Argument of type "slice[Any, Any, Any]" cannot be assigned to parameter "key" of type "str" +   "slice[Any, Any, Any]" is not assignable to "str" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:870:34 - error: Argument of type "slice[Any, Any, Any]" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   "slice[Any, Any, Any]" is not assignable to "str" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:899:22 - error: Argument of type "Unknown | slice[Any, Any, Any] | Any" cannot be assigned to parameter "key" of type "str" +   Type "Unknown | slice[Any, Any, Any] | Any" is not assignable to type "str" +     "slice[Any, Any, Any]" is not assignable to "str" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:899:22 - error: Argument of type "Unknown | slice[Any, Any, Any] | Any" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   Type "Unknown | slice[Any, Any, Any] | Any" is not assignable to type "str" +     "slice[Any, Any, Any]" is not assignable to "str" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:919:47 - error: Argument of type "Source | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Source | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:957:37 - error: "_script" is not a known attribute of module "torch.jit" (reportAttributeAccessIssue) + /torch/_dynamo/variables/nn_module.py:1044:20 - error: Cannot access attribute "cls_to_become" for class "object" +   Attribute "cls_to_become" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/nn_module.py:1045:39 - error: Cannot access attribute "cls_to_become" for class "object" +   Attribute "cls_to_become" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/nn_module.py:1058:24 - error: Cannot access attribute "__call__" for class "object" +   Attribute "__call__" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/nn_module.py:1059:28 - error: Cannot access attribute "_call_impl" for class "object" +   Attribute "_call_impl" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/nn_module.py:1060:21 - error: Cannot access attribute "__call__" for class "object" +   Attribute "__call__" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/nn_module.py:1061:21 - error: Cannot access attribute "_call_impl" for class "object" +   Attribute "_call_impl" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/nn_module.py:1068:71 - error: Cannot access attribute "len" for class "VariableTracker" +   Attribute "len" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/nn_module.py:1069:78 - error: Cannot access attribute "len" for class "VariableTracker" +   Attribute "len" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/nn_module.py:1070:73 - error: Cannot access attribute "len" for class "VariableTracker" +   Attribute "len" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/nn_module.py:1071:77 - error: Cannot access attribute "len" for class "VariableTracker" +   Attribute "len" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/nn_module.py:1072:81 - error: Cannot access attribute "len" for class "VariableTracker" +   Attribute "len" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/nn_module.py:1073:77 - error: Cannot access attribute "len" for class "VariableTracker" +   Attribute "len" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/nn_module.py:1074:76 - error: Cannot access attribute "len" for class "VariableTracker" +   Attribute "len" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/nn_module.py:1075:80 - error: Cannot access attribute "len" for class "VariableTracker" +   Attribute "len" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/nn_module.py:1089:70 - error: Argument of type "object | GraphModule" cannot be assigned to parameter "mod" of type "Module" +   Type "object | GraphModule" is not assignable to type "Module" +     "object" is not assignable to "Module" (reportArgumentType) + /torch/_dynamo/variables/nn_module.py:1137:31 - error: "__code__" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/_dynamo/variables/optimizer.py + /torch/_dynamo/variables/optimizer.py:125:38 - error: Cannot access attribute "_init_group" for class "Optimizer" +   Attribute "_init_group" is unknown (reportAttributeAccessIssue) +/torch/_dynamo/variables/script_object.py + /torch/_dynamo/variables/script_object.py:65:43 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/variables/sdpa.py + /torch/_dynamo/variables/sdpa.py:6:33 - error: "SDPAParams" is unknown import symbol (reportAttributeAccessIssue) + /torch/_dynamo/variables/sdpa.py:72:37 - error: "_SDPAParams" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) +/torch/_dynamo/variables/streams.py + /torch/_dynamo/variables/streams.py:36:19 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/streams.py:55:43 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/streams.py:66:38 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/streams.py:73:47 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/streams.py:75:37 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/streams.py:81:46 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/streams.py:83:36 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/streams.py:202:49 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/streams.py:266:22 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/streams.py:284:22 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/streams.py:356:35 - error: "graph_bytecode_inputs" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/streams.py:399:22 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_dynamo/variables/tensor.py + /torch/_dynamo/variables/tensor.py:133:29 - error: "TensorBase" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/tensor.py:268:25 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/tensor.py:275:36 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/tensor.py:495:27 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/tensor.py:1590:9 - error: Method "call_method" overrides class "TensorVariable" in an incompatible manner +   Parameter 4 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/tensor.py:1716:43 - error: Argument of type "Source | None" cannot be assigned to parameter "cls_source" of type "Source" in function "from_tensor_var" +   Type "Source | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) +/torch/_dynamo/variables/torch.py + /torch/_dynamo/variables/torch.py:115:18 - error: "DisableTorchFunctionSubclass" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:116:18 - error: "DisableTorchFunction" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:117:15 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:118:15 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:119:15 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:120:15 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:129:18 - error: "traceback" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:145:15 - error: "_shape_as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:160:11 - error: "_utils" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:161:14 - error: "_get_cublas_allow_tf32" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:162:14 - error: "_is_any_autocast_enabled" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:167:11 - error: "get_autocast_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:168:11 - error: "get_autocast_gpu_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:169:11 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:170:11 - error: "is_autocast_cache_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:171:11 - error: "is_autocast_cpu_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:172:11 - error: "is_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:173:11 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:174:11 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:176:11 - error: "promote_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:177:14 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:201:18 - error: "_get_tracing_state" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:202:18 - error: "_symbolic_trace" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:203:18 - error: "_symbolic_trace" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:206:15 - error: "_utils" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:219:14 - error: "_dispatch_keys" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:220:14 - error: "_dispatch_tls_local_include_set" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:221:14 - error: "_dispatch_tls_local_exclude_set" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:386:22 - error: "traceback" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:393:75 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:412:48 - error: Argument of type "type[torch.amp.autocast_mode.autocast] | type[torch.cuda.amp.autocast_mode.autocast] | type[torch.cpu.amp.autocast_mode.autocast]" cannot be assigned to parameter "func" of type "autocast" in function "create" +   Type "type[torch.amp.autocast_mode.autocast] | type[torch.cuda.amp.autocast_mode.autocast] | type[torch.cpu.amp.autocast_mode.autocast]" is not assignable to type "autocast" +     Type "type[autocast]" is not assignable to type "autocast" (reportArgumentType) + /torch/_dynamo/variables/torch.py:424:36 - error: "DisableTorchFunctionSubclass" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:425:39 - error: "DisableTorchFunction" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:429:58 - error: "DisableTorchFunctionSubclass" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:431:34 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:437:34 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:449:34 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:453:33 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:476:17 - error: Argument of type "Unknown | type[Any] | type[set_grad_enabled]" cannot be assigned to parameter "func" of type "FunctionType" in function "bind_args_cached" +   Type "Unknown | type[Any] | type[set_grad_enabled]" is not assignable to type "FunctionType" +     "type[Any]" is not assignable to "FunctionType" (reportArgumentType) + /torch/_dynamo/variables/torch.py:543:23 - error: "_utils" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:557:39 - error: "_dispatch_keys" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:570:36 - error: "DispatchKeySet" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:570:60 - error: "DispatchKey" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:571:36 - error: "DispatchKeySet" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:572:38 - error: "DispatchKey" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:615:69 - error: "addcmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:651:40 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:653:42 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:707:40 - error: Cannot access attribute "as_python_constant" for class "Literal[True]" +   Attribute "as_python_constant" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:793:27 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:816:32 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:845:61 - error: "div" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:848:61 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:851:59 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:902:30 - error: "_SDPAParams" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:999:64 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1043:30 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1056:30 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1067:30 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1076:30 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1098:26 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1105:30 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1117:30 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1128:30 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1145:26 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1165:26 - error: "_functorch" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1174:23 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1311:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1313:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1579:31 - error: "exc" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1581:31 - error: "exc" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1632:35 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1789:34 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1818:30 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1834:43 - error: "utils" is not a known attribute of module "torch.nn.modules" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch.py:1861:43 - error: "utils" is not a known attribute of module "torch.nn.modules" (reportAttributeAccessIssue) +/torch/_dynamo/variables/torch_function.py + /torch/_dynamo/variables/torch_function.py:209:22 - error: "_push_on_torch_function_stack" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch_function.py:216:47 - error: "_pop_torch_function_stack" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch_function.py:283:57 - error: "_is_torch_function_enabled" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_dynamo/variables/torch_function.py:290:26 - error: "_is_torch_function_all_disabled" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) +/torch/_dynamo/variables/user_defined.py + /torch/_dynamo/variables/user_defined.py:26:8 - error: Import "_collections" could not be resolved (reportMissingImports) + /torch/_dynamo/variables/user_defined.py:130:14 - error: Import "_pytest.python_api" could not be resolved (reportMissingImports) + /torch/_dynamo/variables/user_defined.py:131:14 - error: Import "_pytest.recwarn" could not be resolved (reportMissingImports) + /torch/_dynamo/variables/user_defined.py:161:14 - error: "value" overrides symbol of same name in class "UserDefinedVariable" +   Variable is mutable so its type is invariant +     Override type "type[object]" is not the same as base type "object" (reportIncompatibleVariableOverride) + /torch/_dynamo/variables/user_defined.py:161:22 - error: Cannot assign to attribute "value" for class "UserDefinedClassVariable*" +   Type "Unknown" is not assignable to type "type[object]" (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:428:69 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:430:69 - error: Cannot access attribute "value" for class "VariableTracker" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:470:9 - error: Method "call_function" overrides class "VariableTracker" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/user_defined.py:511:25 - error: Cannot access attribute "items" for class "VariableTracker" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:517:27 - error: Cannot access attribute "__optional_keys__" for class "type[object]" +   Attribute "__optional_keys__" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:681:41 - error: Cannot access attribute "items" for class "VariableTracker" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:682:43 - error: Cannot access attribute "keys_as_python_constant" for class "VariableTracker" +   Attribute "keys_as_python_constant" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:715:45 - error: Cannot access attribute "_field_defaults" for class "type[object]" +   Attribute "_field_defaults" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:715:45 - error: Cannot access attribute "_field_defaults" for class "type[catch_warnings[list[WarningMessage] | None]]" +   Attribute "_field_defaults" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:715:45 - error: Cannot access attribute "_field_defaults" for class "type[device]" +   Attribute "_field_defaults" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:718:30 - error: Argument of type "list[None]" cannot be assigned to parameter "iterable" of type "Iterable[VariableTracker]" in function "extend" +   "list[None]" is not assignable to "Iterable[VariableTracker]" +     Type parameter "_T_co@Iterable" is covariant, but "None" is not a subtype of "VariableTracker" +       "None" is not assignable to "VariableTracker" (reportArgumentType) + /torch/_dynamo/variables/user_defined.py:744:34 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:747:37 - error: Cannot access attribute "items" for class "VariableTracker" +   Attribute "items" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:749:41 - error: Argument of type "type[object] | type[catch_warnings[list[WarningMessage] | None]] | type[device]" cannot be assigned to parameter "class_or_instance" of type "DataclassInstance | type[DataclassInstance]" in function "fields" +   Type "type[object] | type[catch_warnings[list[WarningMessage] | None]] | type[device]" is not assignable to type "DataclassInstance | type[DataclassInstance]" +     Type "type[object]" is not assignable to type "DataclassInstance | type[DataclassInstance]" +       "__dataclass_fields__" is not present +       "object" is incompatible with protocol "DataclassInstance" +       Type "type[object]" is not assignable to type "type[DataclassInstance]" +         "__dataclass_fields__" is not present (reportArgumentType) + /torch/_dynamo/variables/user_defined.py:750:51 - error: Argument of type "Source | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Source | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/user_defined.py:752:26 - error: Argument of type "list[None]" cannot be assigned to parameter "iterable" of type "Iterable[VariableTracker]" in function "extend" +   "list[None]" is not assignable to "Iterable[VariableTracker]" +     Type parameter "_T_co@Iterable" is covariant, but "None" is not a subtype of "VariableTracker" +       "None" is not assignable to "VariableTracker" (reportArgumentType) + /torch/_dynamo/variables/user_defined.py:808:31 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:814:45 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:842:47 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:1099:58 - error: Argument of type "VariableTracker" cannot be assigned to parameter "directly_update_dict" of type "bool" in function "method_setattr_standard" +   "VariableTracker" is not assignable to "bool" (reportArgumentType) + /torch/_dynamo/variables/user_defined.py:1147:45 - error: Argument of type "object" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   "object" is incompatible with protocol "Sized" +     "__len__" is not present (reportArgumentType) + /torch/_dynamo/variables/user_defined.py:1246:9 - error: Method "call_function" overrides class "VariableTracker" in an incompatible manner +   Parameter 3 type mismatch: base parameter is type "Sequence[VariableTracker]", override parameter is type "list[VariableTracker]" +     "Sequence[VariableTracker]" is not assignable to "list[VariableTracker]" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/user_defined.py:1262:37 - error: "_contextlib" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:1277:54 - error: Cannot access attribute "mode" for class "object" +   Attribute "mode" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:1298:37 - error: Argument of type "Unknown | TypeSource | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Unknown | TypeSource | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/user_defined.py:1436:51 - error: "new_source" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_dynamo/variables/user_defined.py:1478:43 - error: Cannot access attribute "_parameters" for class "object" +   Attribute "_parameters" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:1479:43 - error: Cannot access attribute "_buffers" for class "object" +   Attribute "_buffers" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:1480:43 - error: Cannot access attribute "_modules" for class "object" +   Attribute "_modules" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:1504:45 - error: Cannot access attribute "get_nn_module_stack_source" for class "UserDefinedObjectVariable*" +   Attribute "get_nn_module_stack_source" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:1540:37 - error: Argument of type "Any | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Any | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/user_defined.py:1547:27 - error: Argument missing for parameter "self" (reportCallIssue) + /torch/_dynamo/variables/user_defined.py:1560:37 - error: Argument of type "Any | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Any | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/user_defined.py:1569:40 - error: Argument of type "Any | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Any | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/user_defined.py:1573:27 - error: Argument of type "AttrSource | None" cannot be assigned to parameter "source_fn" of type "((...) -> Any) | None" in function "__init__" +   Type "AttrSource | None" is not assignable to type "((...) -> Any) | None" +     Type "AttrSource" is not assignable to type "((...) -> Any) | None" +       Type "AttrSource" is not assignable to type "(...) -> Any" +       "AttrSource" is not assignable to "None" (reportArgumentType) + /torch/_dynamo/variables/user_defined.py:1590:26 - error: Cannot access attribute "__get__" for class "type[type[NO_SUCH_SUBOBJ]]" +   Attribute "__get__" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:1603:32 - error: Argument of type "Any | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Any | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/user_defined.py:1616:24 - error: Cannot access attribute "__get__" for class "type[NO_SUCH_SUBOBJ]" +   Attribute "__get__" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:1628:33 - error: Cannot access attribute "_torchdynamo_inline" for class "FunctionType" +   Attribute "_torchdynamo_inline" is unknown (reportFunctionMemberAccess) + /torch/_dynamo/variables/user_defined.py:1628:33 - error: Cannot access attribute "_torchdynamo_inline" for class "MethodType" +   Attribute "_torchdynamo_inline" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:1689:57 - error: Argument of type "Source | Unknown | None" cannot be assigned to parameter "base" of type "Source" in function "__init__" +   Type "Source | Unknown | None" is not assignable to type "Source" +     "None" is not assignable to "Source" (reportArgumentType) + /torch/_dynamo/variables/user_defined.py:1695:43 - error: "is_instancemethod" is not a known attribute of module ".utils" (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:1854:9 - error: Method "method_setattr_standard" overrides class "UserDefinedObjectVariable" in an incompatible manner +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 5 mismatch: base parameter "directly_update_dict" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/user_defined.py:1877:60 - error: Cannot access attribute "forward" for class "object" +   Attribute "forward" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:1940:14 - error: Import "torchrec.sparse.jagged_tensor" could not be resolved (reportMissingImports) + /torch/_dynamo/variables/user_defined.py:1985:9 - error: Method "call_method" overrides class "VariableTracker" in an incompatible manner +   Parameter 3 name mismatch: base parameter is named "name", override parameter is named "method_name" +   Return type mismatch: base method returns type "VariableTracker", override returns type "VariableTracker | None" +     Type "VariableTracker | None" is not assignable to type "VariableTracker" +       "None" is not assignable to "VariableTracker" (reportIncompatibleMethodOverride) + /torch/_dynamo/variables/user_defined.py:1988:52 - error: Argument of type "Unknown | int | None" cannot be assigned to parameter "idx" of type "int" in function "remove_hook" +   Type "Unknown | int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /torch/_dynamo/variables/user_defined.py:2267:47 - error: Cannot access attribute "get" for class "type[object]" +   Attribute "get" is unknown (reportAttributeAccessIssue) + /torch/_dynamo/variables/user_defined.py:2268:25 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) +/torch/_export/__init__.py + /torch/_export/__init__.py:54:10 - warning: Import "torch._C._aoti" could not be resolved from source (reportMissingModuleSource) + /torch/_export/__init__.py:133:27 - error: "_trace" is not a known attribute of module "torch.export" (reportAttributeAccessIssue) + /torch/_export/__init__.py:137:20 - error: "_export" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/__init__.py:169:53 - error: "_aoti" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/__init__.py:171:27 - error: "_aoti" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/__init__.py:173:27 - error: "_aoti" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/__init__.py:175:27 - error: "_aoti" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/config.py + /torch/_export/config.py:40:10 - warning: Import "torch.utils._config_typing" could not be resolved from source (reportMissingModuleSource) +/torch/_export/converter.py + /torch/_export/converter.py:75:35 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/_export/converter.py:76:18 - error: "Graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:76:34 - error: "IValue" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:76:64 - error: "ScriptModule" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:86:16 - error: "_jit_pass_onnx_function_substitution" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:87:33 - error: "_freeze_module" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:88:32 - error: "ScriptModule" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:90:33 - error: "_jit_onnx_list_model_parameters" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:95:24 - error: "_propagate_and_assign_input_shapes" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:103:12 - error: "_jit_pass_onnx_function_substitution" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:105:20 - error: "_propagate_and_assign_input_shapes" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:111:8 - error: "_jit_pass_onnx_lint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:120:8 - error: "_jit_pass_onnx_function_substitution" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:197:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:198:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:199:11 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:200:11 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:201:11 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:202:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:203:11 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:204:11 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:205:11 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:206:11 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:207:11 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:208:11 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:209:11 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:210:11 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:211:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:266:21 - error: "Graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:267:26 - error: "Block" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:284:43 - error: "Block" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:346:59 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:370:36 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:373:22 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:373:48 - error: "parse_schema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:395:34 - error: "Graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:395:50 - error: "Block" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:398:47 - error: "Block" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:473:57 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:532:46 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:543:56 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:550:68 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:660:49 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:671:50 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:680:19 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:682:24 - error: "_refs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:699:50 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:719:54 - error: Cannot access attribute "op" for class "list[Node]" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_export/converter.py:719:54 - error: Cannot access attribute "op" for class "dict[Any, Node]" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_export/converter.py:722:52 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:750:54 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:758:50 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:760:44 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:767:51 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:795:51 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:807:55 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:828:58 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:831:57 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:834:53 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:840:57 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:863:54 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:866:55 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:869:60 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:877:47 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:881:82 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:893:55 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:903:77 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:907:56 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:911:56 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:922:47 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:955:55 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:965:46 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1003:47 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1005:58 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1006:48 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1050:48 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1090:17 - error: Argument of type "tuple[Unknown, int, int, *tuple[Unknown, ...]]" cannot be assigned to parameter "args" of type "tuple[Argument, ...] | None" in function "call_function" +   Type "tuple[Unknown, int, int, *tuple[Unknown, ...]]" is not assignable to type "tuple[Argument, ...] | None" +     "tuple[Unknown, int, int, *tuple[Unknown, ...]]" is not assignable to "tuple[Argument, ...]" +       Tuple size mismatch; expected 0 or more but received 3 +     "tuple[Unknown, int, int, *tuple[Unknown, ...]]" is not assignable to "None" (reportArgumentType) + /torch/_export/converter.py:1129:61 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1139:46 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1179:48 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1182:49 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1189:48 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1193:47 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1204:69 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1212:50 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1221:57 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1229:58 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1236:43 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1333:34 - error: "Graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1333:50 - error: "Block" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1336:47 - error: "Block" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1352:51 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1395:49 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/_export/converter.py:1409:55 - error: "ScriptFunction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1412:51 - error: "ScriptFunction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1471:51 - error: "ScriptFunction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1538:55 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/converter.py:1582:36 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/assume_constant_result.py + /torch/_export/db/examples/assume_constant_result.py:18:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/assume_constant_result.py:18:42 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/autograd_function.py + /torch/_export/db/examples/autograd_function.py:12:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/_export/db/examples/autograd_function.py:24:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/class_method.py + /torch/_export/db/examples/class_method.py:21:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/cond_branch_class_method.py + /torch/_export/db/examples/cond_branch_class_method.py:39:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/cond_branch_nested_function.py + /torch/_export/db/examples/cond_branch_nested_function.py:36:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/cond_branch_nonlocal_variables.py + /torch/_export/db/examples/cond_branch_nonlocal_variables.py:54:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/cond_closed_over_variable.py + /torch/_export/db/examples/cond_closed_over_variable.py:20:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/cond_closed_over_variable.py:20:43 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/cond_operands.py + /torch/_export/db/examples/cond_operands.py:6:11 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/cond_operands.py:7:11 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/cond_operands.py:33:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/cond_operands.py:33:42 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/cond_predicate.py + /torch/_export/db/examples/cond_predicate.py:20:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/constrain_as_size_example.py + /torch/_export/db/examples/constrain_as_size_example.py:18:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/constrain_as_value_example.py + /torch/_export/db/examples/constrain_as_value_example.py:21:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/constrain_as_value_example.py:21:40 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/decorator.py + /torch/_export/db/examples/decorator.py:22:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/decorator.py:22:42 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/dictionary.py + /torch/_export/db/examples/dictionary.py:15:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/dictionary.py:15:42 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/dynamic_shape_assert.py + /torch/_export/db/examples/dynamic_shape_assert.py:16:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/dynamic_shape_constructor.py + /torch/_export/db/examples/dynamic_shape_constructor.py:13:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/dynamic_shape_if_guard.py + /torch/_export/db/examples/dynamic_shape_if_guard.py:17:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/dynamic_shape_map.py + /torch/_export/db/examples/dynamic_shape_map.py:17:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/dynamic_shape_map.py:17:42 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/dynamic_shape_round.py + /torch/_export/db/examples/dynamic_shape_round.py:15:11 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/dynamic_shape_slicing.py + /torch/_export/db/examples/dynamic_shape_slicing.py:13:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/dynamic_shape_view.py + /torch/_export/db/examples/dynamic_shape_view.py:15:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/fn_with_kwargs.py + /torch/_export/db/examples/fn_with_kwargs.py:20:11 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/fn_with_kwargs.py:21:12 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/fn_with_kwargs.py:21:28 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/fn_with_kwargs.py:22:13 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/fn_with_kwargs.py:22:29 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/fn_with_kwargs.py:25:20 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/fn_with_kwargs.py:26:21 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/fn_with_kwargs.py:27:21 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/list_contains.py + /torch/_export/db/examples/list_contains.py:15:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/list_unpack.py + /torch/_export/db/examples/list_unpack.py:19:24 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/list_unpack.py:19:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/list_unpack.py:19:60 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/model_attr_mutation.py + /torch/_export/db/examples/model_attr_mutation.py:12:33 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/model_attr_mutation.py:12:52 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/model_attr_mutation.py:22:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/nested_function.py + /torch/_export/db/examples/nested_function.py:21:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/nested_function.py:21:42 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/null_context_manager.py + /torch/_export/db/examples/null_context_manager.py:19:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/optional_input.py + /torch/_export/db/examples/optional_input.py:17:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/pytree_flatten.py + /torch/_export/db/examples/pytree_flatten.py:15:27 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/db/examples/pytree_flatten.py:15:49 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/scalar_output.py + /torch/_export/db/examples/scalar_output.py:6:11 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/specialized_attribute.py + /torch/_export/db/examples/specialized_attribute.py:25:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/static_for_loop.py + /torch/_export/db/examples/static_for_loop.py:14:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/static_if.py + /torch/_export/db/examples/static_if.py:16:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/tensor_setattr.py + /torch/_export/db/examples/tensor_setattr.py:13:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/type_reflection_method.py + /torch/_export/db/examples/type_reflection_method.py:20:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/unsupported_operator.py + /torch/_export/db/examples/unsupported_operator.py:15:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/db/examples/user_input_mutation.py + /torch/_export/db/examples/user_input_mutation.py:15:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/non_strict_utils.py + /torch/_export/non_strict_utils.py:172:57 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/non_strict_utils.py:191:29 - error: Argument of type "IntLikeType" cannot be assigned to parameter "fake" of type "FakeTensor | SymInt" in function "__init__" +   Type "IntLikeType" is not assignable to type "FakeTensor | SymInt" +     Type "int" is not assignable to type "FakeTensor | SymInt" +       "int" is not assignable to "FakeTensor" +       "int" is not assignable to "SymInt" (reportArgumentType) + /torch/_export/non_strict_utils.py:647:34 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_export/non_strict_utils.py:660:24 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/non_strict_utils.py:822:27 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/non_strict_utils.py:855:15 - error: "_export" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/non_strict_utils.py:862:15 - error: "_export" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/non_strict_utils.py:885:34 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_export/non_strict_utils.py:916:43 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_export/non_strict_utils.py:959:31 - error: "fake_class_registry" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_export/non_strict_utils.py:974:19 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/pass_base.py + /torch/_export/pass_base.py:123:35 - error: "dequantize" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/pass_base.py:167:35 - error: "dequantize" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/pass_base.py:192:13 - error: Method "placeholder" overrides class "Interpreter" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Target", override parameter is type "str" +     Type "Target" is not assignable to type "str" +       "FunctionType" is not assignable to "str" (reportIncompatibleMethodOverride) + /torch/_export/pass_base.py:203:30 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_export/pass_base.py:211:30 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_export/pass_base.py:267:30 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_export/pass_base.py:298:26 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_export/pass_base.py:341:27 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/pass_base.py:348:27 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/passes/_node_metadata_hook.py + /torch/_export/passes/_node_metadata_hook.py:36:17 - error: Type "FakeTensorMode | nullcontext[None]" is not assignable to declared type "FakeTensorMode | None" +   Type "FakeTensorMode | nullcontext[None]" is not assignable to type "FakeTensorMode | None" +     Type "nullcontext[None]" is not assignable to type "FakeTensorMode | None" +       "nullcontext[None]" is not assignable to "FakeTensorMode" +       "nullcontext[None]" is not assignable to "None" (reportAssignmentType) + /torch/_export/passes/_node_metadata_hook.py:52:14 - error: Object of type "None" cannot be used with "with" (reportOptionalContextManager) +/torch/_export/passes/collect_tracepoints_pass.py + /torch/_export/passes/collect_tracepoints_pass.py:32:9 - error: Method "call" overrides class "PassBase" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "graph_module", override parameter is named "gm" (reportIncompatibleMethodOverride) +/torch/_export/passes/constant_folding.py + /torch/_export/passes/constant_folding.py:71:39 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/constant_folding.py:112:9 - error: Method "run_node" overrides class "Interpreter" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "n", override parameter is named "node" (reportIncompatibleMethodOverride) + /torch/_export/passes/constant_folding.py:211:22 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/passes/constant_folding.py:251:22 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) +/torch/_export/passes/lift_constants_pass.py + /torch/_export/passes/lift_constants_pass.py:26:35 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/_export/passes/lift_constants_pass.py:37:68 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/passes/lift_constants_pass.py:43:50 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/lift_constants_pass.py:46:55 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/lift_constants_pass.py:58:34 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/lift_constants_pass.py:73:55 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/lift_constants_pass.py:88:55 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/lift_constants_pass.py:234:53 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/passes/lift_constants_pass.py:256:48 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/lift_constants_pass.py:322:56 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/lift_constants_pass.py:392:39 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:21:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:26:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:29:30 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:32:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:33:22 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:34:25 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:35:22 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:50:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:51:29 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:72:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:74:29 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:76:25 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:85:27 - error: "per_channel_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:106:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:108:29 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:110:25 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:122:27 - error: "per_channel_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:139:32 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:144:55 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:156:15 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:165:37 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:231:32 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:231:45 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:240:29 - error: "per_channel_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:512:15 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:523:15 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:601:31 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:612:31 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:629:40 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:636:35 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:637:35 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/passes/replace_set_grad_with_hop_pass.py + /torch/_export/passes/replace_set_grad_with_hop_pass.py:25:37 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_set_grad_with_hop_pass.py:41:49 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_set_grad_with_hop_pass.py:44:47 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py + /torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py:18:33 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py:25:47 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/passes/replace_with_hop_pass_util.py + /torch/_export/passes/replace_with_hop_pass_util.py:77:43 - error: Argument of type "Unknown | str | (() -> Unknown)" cannot be assigned to parameter "candidate" of type "str" in function "_rename" +   Type "Unknown | str | (() -> Unknown)" is not assignable to type "str" +     "MethodType" is not assignable to "str" (reportArgumentType) + /torch/_export/passes/replace_with_hop_pass_util.py:77:55 - error: Cannot access attribute "name" for class "tuple[Argument, ...]" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:77:55 - error: Cannot access attribute "name" for class "Sequence[Argument]" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:77:55 - error: Cannot access attribute "name" for class "Mapping[str, Argument]" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:77:55 - error: Cannot access attribute "name" for class "slice[Any, Any, Any]" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:77:55 - error: Cannot access attribute "name" for class "range" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:77:55 - error: Cannot access attribute "name" for class "str" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:77:55 - error: Cannot access attribute "name" for class "int" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:77:55 - error: Cannot access attribute "name" for class "float" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:77:55 - error: Cannot access attribute "name" for class "bool" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:77:55 - error: Cannot access attribute "name" for class "complex" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:77:55 - error: Cannot access attribute "name" for class "SymInt" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:77:55 - error: Cannot access attribute "name" for class "SymBool" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:77:55 - error: Cannot access attribute "name" for class "SymFloat" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:77:55 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_export/passes/replace_with_hop_pass_util.py:78:54 - error: Cannot access attribute "meta" for class "tuple[Argument, ...]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:78:54 - error: Cannot access attribute "meta" for class "Sequence[Argument]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:78:54 - error: Cannot access attribute "meta" for class "Mapping[str, Argument]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:78:54 - error: Cannot access attribute "meta" for class "slice[Any, Any, Any]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:78:54 - error: Cannot access attribute "meta" for class "range" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:78:54 - error: Cannot access attribute "meta" for class "str" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:78:54 - error: Cannot access attribute "meta" for class "int" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:78:54 - error: Cannot access attribute "meta" for class "float" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:78:54 - error: Cannot access attribute "meta" for class "bool" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:78:54 - error: Cannot access attribute "meta" for class "complex" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:78:54 - error: Cannot access attribute "meta" for class "OpOverload[..., Any]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:78:54 - error: Cannot access attribute "meta" for class "SymInt" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:78:54 - error: Cannot access attribute "meta" for class "SymBool" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:78:54 - error: Cannot access attribute "meta" for class "SymFloat" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/passes/replace_with_hop_pass_util.py:78:54 - error: "meta" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/_export/serde/dynamic_shapes.py + /torch/_export/serde/dynamic_shapes.py:58:66 - error: Argument of type "dict[str, dict[str, int | list[str] | None]]" cannot be assigned to parameter "dims" of type "dict[str, RootDim]" in function "__init__" +   "dict[str, dict[str, int | list[str] | None]]" is not assignable to "dict[str, RootDim]" +     Type parameter "_VT@dict" is invariant, but "dict[str, int | list[str] | None]" is not the same as "RootDim" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/_export/serde/dynamic_shapes.py:188:22 - error: Type "tuple[str, ...]" is not assignable to declared type "dict[str, Any] | tuple[Any] | list[Any] | None" +   Type "tuple[str, ...]" is not assignable to type "dict[str, Any] | tuple[Any] | list[Any] | None" +     "tuple[str, ...]" is not assignable to "dict[str, Any]" +     "tuple[str, ...]" is not assignable to "tuple[Any]" +       Tuple size mismatch; expected 1 but received indeterminate +     "tuple[str, ...]" is not assignable to "list[Any]" +     "tuple[str, ...]" is not assignable to "None" (reportAssignmentType) + /torch/_export/serde/dynamic_shapes.py:188:28 - error: Argument of type "dict[str, Any] | tuple[Any] | list[Any] | None" cannot be assigned to parameter "iterable" of type "Iterable[_T_co@tuple]" in function "__new__" +   Type "dict[str, Any] | tuple[Any] | list[Any] | None" is not assignable to type "Iterable[str]" +     "None" is incompatible with protocol "Iterable[str]" +       "__iter__" is not present (reportArgumentType) + /torch/_export/serde/dynamic_shapes.py:188:28 - error: Argument of type "dict[str, Any] | tuple[Any] | list[Any] | None" cannot be assigned to parameter "iterable" of type "Iterable[_T_co@tuple]" in function "__new__" +   Type "dict[str, Any] | tuple[Any] | list[Any] | None" is not assignable to type "Iterable[_T_co@tuple]" +     "None" is incompatible with protocol "Iterable[_T_co@tuple]" +       "__iter__" is not present (reportArgumentType) +/torch/_export/serde/serialize.py + /torch/_export/serde/serialize.py:134:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:135:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:136:11 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:137:11 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:138:11 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:139:11 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:140:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:141:11 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:142:11 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:143:11 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:144:11 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:145:11 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:146:11 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:147:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:148:11 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:149:11 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:150:11 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:151:11 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:159:11 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:160:11 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:161:11 - error: "sparse_csc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:162:11 - error: "sparse_bsr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:163:11 - error: "sparse_bsc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:165:11 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:173:11 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:174:11 - error: "channels_last" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:175:11 - error: "channels_last_3d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:176:11 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:256:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:259:18 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:278:54 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:340:73 - error: Argument of type "bool | SymBool" cannot be assigned to parameter "s" of type "SymInt | SymBool | SymFloat | Expr" in function "_print_sympy" +   Type "bool | SymBool" is not assignable to type "SymInt | SymBool | SymFloat | Expr" +     Type "bool" is not assignable to type "SymInt | SymBool | SymFloat | Expr" +       "bool" is not assignable to "Expr" +       "bool" is not assignable to "SymBool" +       "bool" is not assignable to "SymFloat" +       "bool" is not assignable to "SymInt" (reportArgumentType) + /torch/_export/serde/serialize.py:472:16 - error: Type "int" is not assignable to return type "Expr" +   "int" is not assignable to "Expr" (reportReturnType) + /torch/_export/serde/serialize.py:537:18 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:541:10 - error: Import "triton.runtime.autotuner" could not be resolved (reportMissingImports) + /torch/_export/serde/serialize.py:542:10 - error: Import "triton.runtime.jit" could not be resolved (reportMissingImports) + /torch/_export/serde/serialize.py:545:20 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:662:46 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:771:37 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:816:26 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1007:37 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1201:51 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1203:55 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1204:42 - error: "getElementType" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_export/serde/serialize.py:1205:52 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1208:52 - error: "BoolType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1210:54 - error: "IntType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1212:54 - error: "FloatType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1214:54 - error: "StringType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1216:54 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1333:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1335:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1337:36 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1341:36 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1343:39 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1648:50 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1649:53 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1687:53 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1687:73 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1694:53 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1694:73 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1701:52 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1703:69 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:1891:51 - error: "_get_max_operator_version" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2040:42 - error: Argument of type "Basic" cannot be assigned to parameter "expr_str" of type "str" in function "_parse_sym_expr" +   "Basic" is not assignable to "str" (reportArgumentType) + /torch/_export/serde/serialize.py:2045:21 - error: Argument of type "Expr" cannot be assigned to parameter "value" of type "Symbol" in function "__setitem__" +   "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_export/serde/serialize.py:2124:23 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2235:56 - error: Argument of type "Unknown | str | Module("operator") | Module("torch") | Module("math") | Any" cannot be assigned to parameter "target" of type "(...) -> Unknown" in function "deserialize_node" +   Type "Unknown | str | Module("operator") | Module("torch") | Module("math") | Any" is not assignable to type "(...) -> Unknown" +     Type "Module("math")" is not assignable to type "(...) -> Unknown" (reportArgumentType) + /torch/_export/serde/serialize.py:2257:59 - error: Cannot access attribute "meta" for class "tuple[Argument, ...]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2257:59 - error: Cannot access attribute "meta" for class "Sequence[Argument]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2257:59 - error: Cannot access attribute "meta" for class "Mapping[str, Argument]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2257:59 - error: Cannot access attribute "meta" for class "slice[Any, Any, Any]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2257:59 - error: Cannot access attribute "meta" for class "range" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2257:59 - error: Cannot access attribute "meta" for class "str" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2257:59 - error: Cannot access attribute "meta" for class "int" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2257:59 - error: Cannot access attribute "meta" for class "float" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2257:59 - error: Cannot access attribute "meta" for class "bool" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2257:59 - error: Cannot access attribute "meta" for class "complex" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2257:59 - error: Cannot access attribute "meta" for class "OpOverload[..., Any]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2257:59 - error: Cannot access attribute "meta" for class "SymInt" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2257:59 - error: Cannot access attribute "meta" for class "SymBool" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2257:59 - error: Cannot access attribute "meta" for class "SymFloat" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2257:59 - error: "meta" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_export/serde/serialize.py:2261:28 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) + /torch/_export/serde/serialize.py:2261:28 - error: "slice[Any, Any, Any]" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/_export/serde/serialize.py:2261:28 - error: "int" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/_export/serde/serialize.py:2261:28 - error: "float" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/_export/serde/serialize.py:2261:28 - error: "bool" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/_export/serde/serialize.py:2261:28 - error: "complex" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/_export/serde/serialize.py:2261:28 - error: "OpOverload[..., Any]" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/_export/serde/serialize.py:2261:28 - error: "SymInt" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/_export/serde/serialize.py:2261:28 - error: "SymBool" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/_export/serde/serialize.py:2261:28 - error: "SymFloat" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/_export/serde/serialize.py:2285:45 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2300:22 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2537:41 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2538:48 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2539:38 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2540:42 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2541:36 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2542:41 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2543:42 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2544:43 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2545:40 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2546:39 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2547:39 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2548:45 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2549:41 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2550:45 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2551:43 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2552:66 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2553:45 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2554:43 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2555:43 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2556:45 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2557:40 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2558:41 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:2602:57 - error: Argument of type "dict[str, Any] | tuple[Any, ...] | dict[Unknown, Unknown] | tuple[Unknown, ...] | None" cannot be assigned to parameter "args" of type "tuple[tuple[Any], dict[Any, Any]] | None" +   Type "dict[str, Any] | tuple[Any, ...] | dict[Unknown, Unknown] | tuple[Unknown, ...] | None" is not assignable to type "tuple[tuple[Any], dict[Any, Any]] | None" +     Type "dict[str, Any]" is not assignable to type "tuple[tuple[Any], dict[Any, Any]] | None" +       "dict[str, Any]" is not assignable to "tuple[tuple[Any], dict[Any, Any]]" +       "dict[str, Any]" is not assignable to "None" (reportArgumentType) + /torch/_export/serde/serialize.py:2623:28 - error: Argument of type "dict[str, Any] | tuple[Any, ...] | dict[Unknown, Unknown] | tuple[Unknown, ...]" cannot be assigned to parameter "state_dict" of type "dict[str, Tensor | Parameter]" in function "__init__" +   Type "dict[str, Any] | tuple[Any, ...] | dict[Unknown, Unknown] | tuple[Unknown, ...]" is not assignable to type "dict[str, Tensor | Parameter]" +     "tuple[Any, ...]" is not assignable to "dict[str, Tensor | Parameter]" (reportArgumentType) + /torch/_export/serde/serialize.py:2624:27 - error: Argument of type "dict[str, Any] | tuple[Any, ...] | dict[Unknown, Unknown] | tuple[Unknown, ...]" cannot be assigned to parameter "constants" of type "dict[str, _ConstantAttributeType]" in function "__init__" +   Type "dict[str, Any] | tuple[Any, ...] | dict[Unknown, Unknown] | tuple[Unknown, ...]" is not assignable to type "dict[str, _ConstantAttributeType]" +     "tuple[Any, ...]" is not assignable to "dict[str, _ConstantAttributeType]" (reportArgumentType) + /torch/_export/serde/serialize.py:2625:32 - error: Argument of type "dict[str, Any] | tuple[Any, ...] | dict[Unknown, Unknown] | tuple[Unknown, ...] | None" cannot be assigned to parameter "example_inputs" of type "tuple[tuple[Tensor, ...], dict[str, Any]] | None" in function "__init__" +   Type "dict[str, Any] | tuple[Any, ...] | dict[Unknown, Unknown] | tuple[Unknown, ...] | None" is not assignable to type "tuple[tuple[Tensor, ...], dict[str, Any]] | None" +     Type "dict[str, Any]" is not assignable to type "tuple[tuple[Tensor, ...], dict[str, Any]] | None" +       "dict[str, Any]" is not assignable to "tuple[tuple[Tensor, ...], dict[str, Any]]" +       "dict[str, Any]" is not assignable to "None" (reportArgumentType) + /torch/_export/serde/serialize.py:2766:20 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /torch/_export/serde/serialize.py:2766:20 - error: Argument of type "str" cannot be assigned to parameter "key" of type "slice[Any, Any, Any]" in function "__getitem__" +   "str" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /torch/_export/serde/serialize.py:3101:60 - error: "_get_max_operator_version" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/serde/serialize.py:3180:9 - error: Method "default" overrides class "JSONEncoder" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "o", override parameter is named "obj" (reportIncompatibleMethodOverride) + /torch/_export/serde/serialize.py:3617:26 - error: Parameter declaration "constants" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_export/serde/serialize.py:3865:37 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/verifier.py + /torch/_export/verifier.py:162:51 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/verifier.py:170:25 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_export/verifier.py:219:30 - error: "custom_ops" is not a known attribute of module "torch.export" (reportAttributeAccessIssue) + /torch/_export/verifier.py:223:26 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/verifier.py:226:26 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_export/verifier.py:227:23 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/verifier.py:228:23 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/verifier.py:229:23 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/verifier.py:230:23 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_export/verifier.py:231:23 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_export/wrappers.py + /torch/_export/wrappers.py:8:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) +/torch/_functorch/_activation_checkpointing/graph_info_provider.py + /torch/_functorch/_activation_checkpointing/graph_info_provider.py:3:8 - warning: Import "networkx" could not be resolved from source (reportMissingModuleSource) + /torch/_functorch/_activation_checkpointing/graph_info_provider.py:256:14 - error: Import "matplotlib" could not be resolved (reportMissingImports) +/torch/_functorch/_activation_checkpointing/knapsack.py + /torch/_functorch/_activation_checkpointing/knapsack.py:34:14 - error: Import "scipy.optimize" could not be resolved (reportMissingImports) + /torch/_functorch/_activation_checkpointing/knapsack.py:71:30 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_activation_checkpointing/knapsack.py:72:53 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_activation_checkpointing/knapsack.py:74:22 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_activation_checkpointing/knapsack.py:74:50 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_activation_checkpointing/knapsack.py:85:16 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_activation_checkpointing/knapsack.py:86:56 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_activation_checkpointing/knapsack.py:100:44 - error: "maximum" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_functorch/_activation_checkpointing/knapsack_evaluator.py + /torch/_functorch/_activation_checkpointing/knapsack_evaluator.py:5:8 - warning: Import "networkx" could not be resolved from source (reportMissingModuleSource) +/torch/_functorch/_aot_autograd/aot_autograd_result.py + /torch/_functorch/_aot_autograd/aot_autograd_result.py:163:25 - error: "async_compile" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/aot_autograd_result.py:514:26 - error: Cannot assign to attribute "_boxed_call" for class "_Wrapped[..., Unknown, (runtime_args: list[Any]), Unknown]" +   Attribute "_boxed_call" is unknown (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/aot_autograd_result.py:515:32 - error: "_is_any_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/aot_autograd_result.py:634:44 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/aot_autograd_result.py:643:21 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/aot_autograd_result.py:647:25 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/aot_autograd_result.py:648:16 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_functorch/_aot_autograd/autograd_cache.py + /torch/_functorch/_aot_autograd/autograd_cache.py:105:14 - error: Import "torch._inductor.fb.remote_cache" could not be resolved (reportMissingImports) + /torch/_functorch/_aot_autograd/autograd_cache.py:256:24 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/autograd_cache.py:260:25 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/autograd_cache.py:264:29 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/autograd_cache.py:303:54 - error: "triton" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/autograd_cache.py:308:46 - error: "triton" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/autograd_cache.py:319:18 - error: Import "triton.runtime.autotuner" could not be resolved (reportMissingImports) + /torch/_functorch/_aot_autograd/autograd_cache.py:340:35 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/autograd_cache.py:341:37 - error: "_is_any_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/autograd_cache.py:408:9 - error: Method "_reduce_tensor" overrides class "FxGraphCachePickler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "t", override parameter is named "tensor" (reportIncompatibleMethodOverride) + /torch/_functorch/_aot_autograd/autograd_cache.py:486:16 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/_functorch/_aot_autograd/autograd_cache.py:777:28 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) +/torch/_functorch/_aot_autograd/collect_metadata_analysis.py + /torch/_functorch/_aot_autograd/collect_metadata_analysis.py:90:22 - error: "memory_format" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_functorch/_aot_autograd/collect_metadata_analysis.py:93:58 - error: "memory_format" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_functorch/_aot_autograd/collect_metadata_analysis.py:133:31 - error: Cannot access attribute "append" for class "MemoryFormatMeta" +   Attribute "append" is unknown (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/collect_metadata_analysis.py:133:31 - error: "append" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_functorch/_aot_autograd/collect_metadata_analysis.py:133:38 - error: Argument of type "list[MemoryFormatMeta | None] | MemoryFormatMeta | None" cannot be assigned to parameter "object" of type "MemoryFormatMeta | None" in function "append" +   Type "list[MemoryFormatMeta | None] | MemoryFormatMeta | None" is not assignable to type "MemoryFormatMeta | None" +     Type "list[MemoryFormatMeta | None]" is not assignable to type "MemoryFormatMeta | None" +       "list[MemoryFormatMeta | None]" is not assignable to "MemoryFormatMeta" +       "list[MemoryFormatMeta | None]" is not assignable to "None" (reportArgumentType) +/torch/_functorch/_aot_autograd/frontend_utils.py + /torch/_functorch/_aot_autograd/frontend_utils.py:116:32 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/frontend_utils.py:157:18 - error: "__getitem__" method not defined on type "Module" (reportIndexIssue) +/torch/_functorch/_aot_autograd/functional_utils.py + /torch/_functorch/_aot_autograd/functional_utils.py:16:22 - warning: Import "torch._C._functionalization" could not be resolved from source (reportMissingModuleSource) + /torch/_functorch/_aot_autograd/functional_utils.py:181:27 - error: "_from_functional_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/functional_utils.py:295:29 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/functional_utils.py:299:29 - error: "view_as_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/functional_utils.py:336:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/functional_utils.py:376:22 - error: "_is_functional_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_functorch/_aot_autograd/graph_capture_wrappers.py + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:354:50 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:355:26 - error: "_TorchDispatchModeKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:376:48 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:455:62 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:459:65 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:777:38 - error: "_ExcludeDispatchKeyGuard" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:778:26 - error: "DispatchKeySet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:778:50 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:862:38 - error: "traceback" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:907:39 - error: "traceback" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:958:25 - error: "object*" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:971:38 - error: "traceback" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1008:34 - error: "traceback" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1140:42 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1243:20 - error: Type "tuple[tuple[list[FxValue], list[FxValue]], tuple[list[Any], list[Any]]] | tuple[list[FxValue], list[Any]]" is not assignable to return type "tuple[tuple[list[FxValue], list[FxValue]], tuple[list[AOTOutput], list[AOTOutput]]]" +   Type "tuple[tuple[list[FxValue], list[FxValue]], tuple[list[Any], list[Any]]] | tuple[list[FxValue], list[Any]]" is not assignable to type "tuple[tuple[list[FxValue], list[FxValue]], tuple[list[AOTOutput], list[AOTOutput]]]" +     "tuple[list[FxValue], list[Any]]" is not assignable to "tuple[tuple[list[FxValue], list[FxValue]], tuple[list[AOTOutput], list[AOTOutput]]]" +       Tuple entry 1 is incorrect type +         "list[FxValue]" is not assignable to "tuple[list[FxValue], list[FxValue]]" (reportReturnType) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1249:20 - error: Type "tuple[tuple[list[FxValue], list[FxValue]], tuple[list[Any], list[Any]]] | tuple[list[FxValue], list[Any]]" is not assignable to return type "tuple[list[FxValue], list[AOTOutput]]" +   Type "tuple[tuple[list[FxValue], list[FxValue]], tuple[list[Any], list[Any]]] | tuple[list[FxValue], list[Any]]" is not assignable to type "tuple[list[FxValue], list[AOTOutput]]" +     "tuple[tuple[list[FxValue], list[FxValue]], tuple[list[Any], list[Any]]]" is not assignable to "tuple[list[FxValue], list[AOTOutput]]" +       Tuple entry 1 is incorrect type +         "tuple[list[FxValue], list[FxValue]]" is not assignable to "list[FxValue]" (reportReturnType) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1256:16 - error: Type "tuple[tuple[list[FxValue], list[FxValue]], tuple[list[Any], list[Any]]] | tuple[list[FxValue], list[Any]]" is not assignable to return type "tuple[list[FxValue], list[AOTOutput]]" +   Type "tuple[tuple[list[FxValue], list[FxValue]], tuple[list[Any], list[Any]]] | tuple[list[FxValue], list[Any]]" is not assignable to type "tuple[list[FxValue], list[AOTOutput]]" +     "tuple[tuple[list[FxValue], list[FxValue]], tuple[list[Any], list[Any]]]" is not assignable to "tuple[list[FxValue], list[AOTOutput]]" +       Tuple entry 1 is incorrect type +         "tuple[list[FxValue], list[FxValue]]" is not assignable to "list[FxValue]" (reportReturnType) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1317:25 - error: Argument of type "list[Unknown] | AOTInput | tuple[list[Unknown], list[Unknown]] | list[AOTInput]" cannot be assigned to parameter "flat_args_descs" of type "list[AOTInput]" in function "run_functionalized_fw_and_collect_metadata" +   Type "list[Unknown] | AOTInput | tuple[list[Unknown], list[Unknown]] | list[AOTInput]" is not assignable to type "list[AOTInput]" +     "AOTInput" is not assignable to "list[AOTInput]" (reportArgumentType) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1322:8 - error: "int" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1322:8 - error: "SymInt" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1322:8 - error: "BackwardState" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) +/torch/_functorch/_aot_autograd/graph_compile.py + /torch/_functorch/_aot_autograd/graph_compile.py:368:38 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_compile.py:902:22 - error: Argument of type "tuple[Node, Any, *tuple[Unknown, ...]]" cannot be assigned to parameter "args" of type "tuple[Argument, ...] | None" in function "call_function" +   Type "tuple[Node, Any, *tuple[Unknown, ...]]" is not assignable to type "tuple[Argument, ...] | None" +     "tuple[Node, Any, *tuple[Unknown, ...]]" is not assignable to "tuple[Argument, ...]" +       Tuple size mismatch; expected 0 or more but received 2 +     "tuple[Node, Any, *tuple[Unknown, ...]]" is not assignable to "None" (reportArgumentType) + /torch/_functorch/_aot_autograd/graph_compile.py:954:22 - error: Argument of type "tuple[Node, Any, *tuple[Unknown, ...]]" cannot be assigned to parameter "args" of type "tuple[Argument, ...] | None" in function "call_function" +   Type "tuple[Node, Any, *tuple[Unknown, ...]]" is not assignable to type "tuple[Argument, ...] | None" +     "tuple[Node, Any, *tuple[Unknown, ...]]" is not assignable to "tuple[Argument, ...]" +       Tuple size mismatch; expected 0 or more but received 2 +     "tuple[Node, Any, *tuple[Unknown, ...]]" is not assignable to "None" (reportArgumentType) + /torch/_functorch/_aot_autograd/graph_compile.py:1487:38 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_compile.py:1574:28 - error: "_is_any_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_compile.py:1578:28 - error: "_DisableAutocast" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_compile.py:1599:31 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_compile.py:1601:24 - error: Type "object" is not assignable to declared type "GraphModule" +   "object" is not assignable to "GraphModule" (reportAssignmentType) + /torch/_functorch/_aot_autograd/graph_compile.py:1601:30 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_compile.py:1669:22 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_compile.py:1819:70 - error: "_DisableAutocast" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_compile.py:1900:44 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_compile.py:1943:30 - error: "compiled_autograd" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_compile.py:2248:22 - error: "_DisableAutocast" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_compile.py:2249:25 - error: "_is_any_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_compile.py:2256:33 - error: "_DisableAutocast" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/graph_compile.py:2287:37 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_functorch/_aot_autograd/input_output_analysis.py + /torch/_functorch/_aot_autograd/input_output_analysis.py:20:6 - warning: Import "torch._C._dynamo.guards" could not be resolved from source (reportMissingModuleSource) + /torch/_functorch/_aot_autograd/input_output_analysis.py:77:67 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/input_output_analysis.py:279:42 - error: Argument of type "list[MemoryFormatMeta | None] | MemoryFormatMeta | None" cannot be assigned to parameter "memory_format" of type "MemoryFormatMeta | None" in function "__init__" +   Type "list[MemoryFormatMeta | None] | MemoryFormatMeta | None" is not assignable to type "MemoryFormatMeta | None" +     Type "list[MemoryFormatMeta | None]" is not assignable to type "MemoryFormatMeta | None" +       "list[MemoryFormatMeta | None]" is not assignable to "MemoryFormatMeta" +       "list[MemoryFormatMeta | None]" is not assignable to "None" (reportArgumentType) + /torch/_functorch/_aot_autograd/input_output_analysis.py:443:13 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /torch/_functorch/_aot_autograd/input_output_analysis.py:443:13 - error: Argument of type "int | None" cannot be assigned to parameter "s" of type "slice[Any, Any, Any]" in function "__getitem__" +   Type "int | None" is not assignable to type "slice[Any, Any, Any]" +     "int" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /torch/_functorch/_aot_autograd/input_output_analysis.py:462:26 - error: Argument of type "int | None" cannot be assigned to parameter "num_user_outputs" of type "int" in function "from_tracing_metadata" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) +/torch/_functorch/_aot_autograd/runtime_wrappers.py + /torch/_functorch/_aot_autograd/runtime_wrappers.py:300:27 - error: "_profiler" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:352:34 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:355:30 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:362:30 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:449:21 - error: "output_handlers" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:454:59 - error: "output_handlers" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:465:22 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:492:9 - error: Method "pre_compile" overrides class "InductorWrapper" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "fw_module", override parameter is named "flat_fn" (reportIncompatibleMethodOverride) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:574:33 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:674:9 - error: Method "post_compile" overrides class "CompilerWrapper" in an incompatible manner +   Parameter 3 name mismatch: base parameter is named "aot_config", override parameter is named "_aot_config" (reportIncompatibleMethodOverride) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:712:9 - error: Method "post_compile" overrides class "CompilerWrapper" in an incompatible manner +   Parameter 3 name mismatch: base parameter is named "aot_config", override parameter is named "_aot_config" (reportIncompatibleMethodOverride) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:966:39 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:969:39 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:1487:36 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:1811:32 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:1812:32 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:1827:22 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:1828:23 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:1828:40 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:1828:52 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:1897:23 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:1988:44 - error: "functional_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:2096:36 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:2097:36 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:2179:51 - error: Argument of type "list[Tensor]" cannot be assigned to parameter "t" of type "Tensor" in function "maybe_mark_dynamic_helper" +   "list[Tensor]" is not assignable to "Tensor" (reportArgumentType) + /torch/_functorch/_aot_autograd/runtime_wrappers.py:2355:25 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "ctx", override parameter is named "double_ctx" (reportIncompatibleMethodOverride) +/torch/_functorch/_aot_autograd/schemas.py + /torch/_functorch/_aot_autograd/schemas.py:175:35 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/schemas.py:185:23 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/schemas.py:200:37 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_functorch/_aot_autograd/streams.py + /torch/_functorch/_aot_autograd/streams.py:20:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_functorch/_aot_autograd/subclass_utils.py + /torch/_functorch/_aot_autograd/subclass_utils.py:169:33 - error: Cannot access attribute "arg_count" for class "PlainTensorMeta" +   Attribute "arg_count" is unknown (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/subclass_utils.py:287:31 - error: "attrs" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_functorch/_aot_autograd/subclass_utils.py:288:44 - error: Argument of type "SubclassCreationMeta | PlainTensorMeta | None" cannot be assigned to parameter "meta" of type "SubclassCreationMeta | None" in function "flatten_subclass" +   Type "SubclassCreationMeta | PlainTensorMeta | None" is not assignable to type "SubclassCreationMeta | None" +     Type "PlainTensorMeta" is not assignable to type "SubclassCreationMeta | None" +       "PlainTensorMeta" is not assignable to "SubclassCreationMeta" +       "PlainTensorMeta" is not assignable to "None" (reportArgumentType) + /torch/_functorch/_aot_autograd/subclass_utils.py:427:20 - error: Operator "+" not supported for types "" and "tuple[Any, ...]" (reportOperatorIssue) +/torch/_functorch/_aot_autograd/utils.py + /torch/_functorch/_aot_autograd/utils.py:39:11 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/utils.py:131:24 - error: "_DisableAutocast" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/_aot_autograd/utils.py:150:5 - error: Declaration "spec" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_functorch/_aot_autograd/utils.py:150:39 - error: Type "None" is not assignable to declared type "TreeSpec" +   "None" is not assignable to "TreeSpec" (reportAssignmentType) + /torch/_functorch/_aot_autograd/utils.py:545:23 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_functorch/aot_autograd.py + /torch/_functorch/aot_autograd.py:508:20 - error: Cannot assign to attribute "decompositions" for class "AOTConfig" +   Expression of type "dict[str | OpOverload[..., Any], dict[OpOverload[..., Any], (...) -> Unknown] | ((...) -> Unknown)]" cannot be assigned to attribute "decompositions" of class "AOTConfig" +     "dict[str | OpOverload[..., Any], dict[OpOverload[..., Any], (...) -> Unknown] | ((...) -> Unknown)]" is not assignable to "dict[OpOverload[..., Any], (...) -> Unknown]" +       Type parameter "_KT@dict" is invariant, but "str | OpOverload[..., Any]" is not the same as "OpOverload[..., Any]" +       Type parameter "_VT@dict" is invariant, but "dict[OpOverload[..., Any], (...) -> Unknown] | ((...) -> Unknown)" is not the same as "(...) -> Unknown" (reportAttributeAccessIssue) + /torch/_functorch/aot_autograd.py:564:22 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/aot_autograd.py:598:25 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /torch/_functorch/aot_autograd.py:598:25 - error: Argument of type "int | None" cannot be assigned to parameter "s" of type "slice[Any, Any, Any]" in function "__getitem__" +   Type "int | None" is not assignable to type "slice[Any, Any, Any]" +     "int" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /torch/_functorch/aot_autograd.py:785:21 - error: Argument of type "None" cannot be assigned to parameter "fw_compiler" of type "(...) -> Unknown" in function "__init__" +   Type "None" is not assignable to type "(...) -> Unknown" (reportArgumentType) + /torch/_functorch/aot_autograd.py:786:21 - error: Argument of type "None" cannot be assigned to parameter "bw_compiler" of type "(...) -> Unknown" in function "__init__" +   Type "None" is not assignable to type "(...) -> Unknown" (reportArgumentType) + /torch/_functorch/aot_autograd.py:788:22 - error: Argument of type "None" cannot be assigned to parameter "partition_fn" of type "(...) -> Unknown" in function "__init__" +   Type "None" is not assignable to type "(...) -> Unknown" (reportArgumentType) + /torch/_functorch/aot_autograd.py:789:24 - error: Argument of type "dict[Unknown, Unknown] | None" cannot be assigned to parameter "decompositions" of type "dict[OpOverload[..., Any], (...) -> Unknown]" in function "__init__" +   Type "dict[Unknown, Unknown] | None" is not assignable to type "dict[OpOverload[..., Any], (...) -> Unknown]" +     "None" is not assignable to "dict[OpOverload[..., Any], (...) -> Unknown]" (reportArgumentType) + /torch/_functorch/aot_autograd.py:871:58 - error: Argument of type "Module" cannot be assigned to parameter "gm" of type "GraphModule" in function "assert_no_fake_params_or_buffers" +   "Module" is not assignable to "GraphModule" (reportArgumentType) + /torch/_functorch/aot_autograd.py:970:33 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/aot_autograd.py:994:21 - error: Argument of type "None" cannot be assigned to parameter "fw_compiler" of type "(...) -> Unknown" in function "__init__" +   Type "None" is not assignable to type "(...) -> Unknown" (reportArgumentType) + /torch/_functorch/aot_autograd.py:995:21 - error: Argument of type "None" cannot be assigned to parameter "bw_compiler" of type "(...) -> Unknown" in function "__init__" +   Type "None" is not assignable to type "(...) -> Unknown" (reportArgumentType) + /torch/_functorch/aot_autograd.py:997:22 - error: Argument of type "None" cannot be assigned to parameter "partition_fn" of type "(...) -> Unknown" in function "__init__" +   Type "None" is not assignable to type "(...) -> Unknown" (reportArgumentType) + /torch/_functorch/aot_autograd.py:1062:48 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_functorch/aot_autograd.py:1081:13 - error: Argument of type "dict[Unknown, Unknown] | None" cannot be assigned to parameter "decompositions" of type "dict[Unknown, Unknown]" in function "prepare_aot_module_simplified" +   Type "dict[Unknown, Unknown] | None" is not assignable to type "dict[Unknown, Unknown]" +     "None" is not assignable to "dict[Unknown, Unknown]" (reportArgumentType) + /torch/_functorch/aot_autograd.py:1083:13 - error: Argument of type "BoxedDeviceIndex | None" cannot be assigned to parameter "boxed_forward_device_index" of type "BoxedDeviceIndex" in function "prepare_aot_module_simplified" +   Type "BoxedDeviceIndex | None" is not assignable to type "BoxedDeviceIndex" +     "None" is not assignable to "BoxedDeviceIndex" (reportArgumentType) + /torch/_functorch/aot_autograd.py:1098:21 - error: Argument of type "Module" cannot be assigned to parameter "mod" of type "GraphModule | GmWrapper" in function "try_load" +   Type "Module" is not assignable to type "GraphModule | GmWrapper" +     "Module" is not assignable to "GraphModule" +     "Module" is not assignable to "GmWrapper" (reportArgumentType) + /torch/_functorch/aot_autograd.py:1134:13 - error: Function declaration "forward" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_functorch/aot_autograd.py:1155:13 - error: Cannot assign to attribute "zero_grad" for class "FunctionType" +   Attribute "zero_grad" is unknown (reportFunctionMemberAccess) + /torch/_functorch/aot_autograd.py:1156:13 - error: Cannot assign to attribute "named_parameters" for class "FunctionType" +   Attribute "named_parameters" is unknown (reportFunctionMemberAccess) + /torch/_functorch/aot_autograd.py:1157:13 - error: Cannot assign to attribute "named_buffers" for class "FunctionType" +   Attribute "named_buffers" is unknown (reportFunctionMemberAccess) + /torch/_functorch/aot_autograd.py:1169:12 - error: Type "((runtime_args: list[Any]) -> Unknown) | ((*runtime_args: tuple[Any]) -> Unknown)" is not assignable to return type "Module" +   Type "((runtime_args: list[Any]) -> Unknown) | ((*runtime_args: tuple[Any]) -> Unknown)" is not assignable to type "Module" +     "FunctionType" is not assignable to "Module" (reportReturnType) + /torch/_functorch/aot_autograd.py:1270:9 - error: Argument of type "dict[Unknown, Unknown] | None" cannot be assigned to parameter "decompositions" of type "dict[Unknown, Unknown]" in function "prepare_aot_module_simplified" +   Type "dict[Unknown, Unknown] | None" is not assignable to type "dict[Unknown, Unknown]" +     "None" is not assignable to "dict[Unknown, Unknown]" (reportArgumentType) + /torch/_functorch/aot_autograd.py:1272:9 - error: Argument of type "None" cannot be assigned to parameter "boxed_forward_device_index" of type "BoxedDeviceIndex" in function "prepare_aot_module_simplified" +   "None" is not assignable to "BoxedDeviceIndex" (reportArgumentType) + /torch/_functorch/aot_autograd.py:1302:21 - error: "spec" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_functorch/aot_autograd.py:1309:17 - error: Argument of type "TreeSpec | None" cannot be assigned to parameter "in_spec" of type "TreeSpec" in function "__init__" +   Type "TreeSpec | None" is not assignable to type "TreeSpec" +     "None" is not assignable to "TreeSpec" (reportArgumentType) + /torch/_functorch/aot_autograd.py:1310:27 - error: "spec" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_functorch/aot_autograd.py:1318:50 - error: Expression of type "(fx_g: Unknown, example_inputs: Unknown) -> Unknown" cannot be assigned to parameter of type "AOTDispatchCompiler | None" +   Type "(fx_g: Unknown, example_inputs: Unknown) -> Unknown" is not assignable to type "AOTDispatchCompiler | None" +     Type "(fx_g: Unknown, example_inputs: Unknown) -> Unknown" is not assignable to type "(gm: GraphModule, example_inputs: Sequence[InputType]) -> Any" +       Parameter name mismatch: "gm" versus "fx_g" +     "FunctionType" is not assignable to "None" (reportArgumentType) + /torch/_functorch/aot_autograd.py:1319:50 - error: Expression of type "(fx_g: Unknown, example_inputs: Unknown) -> Unknown" cannot be assigned to parameter of type "AOTDispatchCompiler | None" +   Type "(fx_g: Unknown, example_inputs: Unknown) -> Unknown" is not assignable to type "AOTDispatchCompiler | None" +     Type "(fx_g: Unknown, example_inputs: Unknown) -> Unknown" is not assignable to type "(gm: GraphModule, example_inputs: Sequence[InputType]) -> Any" +       Parameter name mismatch: "gm" versus "fx_g" +     "FunctionType" is not assignable to "None" (reportArgumentType) + /torch/_functorch/aot_autograd.py:1320:6 - error: Expected class but received "(obj: object, /) -> TypeIs[(...) -> object]" (reportGeneralTypeIssues) + /torch/_functorch/aot_autograd.py:1335:9 - error: Argument of type "AOTDispatchCompiler | None" cannot be assigned to parameter "fw_compiler" of type "(...) -> Unknown" in function "aot_stage2_compile" +   Type "AOTDispatchCompiler | None" is not assignable to type "(...) -> Unknown" +     Type "None" is not assignable to type "(...) -> Unknown" (reportArgumentType) + /torch/_functorch/aot_autograd.py:1550:33 - error: Argument of type "tuple[Any, ...]" cannot be assigned to parameter "params_and_buffers_flat" of type "list[Tensor]" in function "create_graph_signature" +   "tuple[Any, ...]" is not assignable to "list[Tensor]" (reportArgumentType) + /torch/_functorch/aot_autograd.py:1644:33 - error: "aot_config" is not defined (reportUndefinedVariable) + /torch/_functorch/aot_autograd.py:1647:33 - error: "fw_metadata" is not defined (reportUndefinedVariable) + /torch/_functorch/aot_autograd.py:1696:33 - error: Cannot access attribute "_orig_mod" for class "FunctionType" +   Attribute "_orig_mod" is unknown (reportFunctionMemberAccess) + /torch/_functorch/aot_autograd.py:1700:34 - error: Cannot access attribute "_orig_mod" for class "FunctionType" +   Attribute "_orig_mod" is unknown (reportFunctionMemberAccess) + /torch/_functorch/aot_autograd.py:1710:21 - error: Argument of type "None" cannot be assigned to parameter "fw_compiler" of type "(...) -> Unknown" in function "__init__" +   Type "None" is not assignable to type "(...) -> Unknown" (reportArgumentType) + /torch/_functorch/aot_autograd.py:1711:21 - error: Argument of type "None" cannot be assigned to parameter "bw_compiler" of type "(...) -> Unknown" in function "__init__" +   Type "None" is not assignable to type "(...) -> Unknown" (reportArgumentType) + /torch/_functorch/aot_autograd.py:1713:22 - error: Argument of type "None" cannot be assigned to parameter "partition_fn" of type "(...) -> Unknown" in function "__init__" +   Type "None" is not assignable to type "(...) -> Unknown" (reportArgumentType) + /torch/_functorch/aot_autograd.py:1714:24 - error: Argument of type "dict[Unknown, Unknown] | None" cannot be assigned to parameter "decompositions" of type "dict[OpOverload[..., Any], (...) -> Unknown]" in function "__init__" +   Type "dict[Unknown, Unknown] | None" is not assignable to type "dict[OpOverload[..., Any], (...) -> Unknown]" +     "None" is not assignable to "dict[OpOverload[..., Any], (...) -> Unknown]" (reportArgumentType) + /torch/_functorch/aot_autograd.py:1741:13 - error: Argument of type "list[PlainAOTInput]" cannot be assigned to parameter "flat_args_descs" of type "list[AOTInput]" in function "create_aot_state" +   "list[PlainAOTInput]" is not assignable to "list[AOTInput]" +     Type parameter "_T@list" is invariant, but "PlainAOTInput" is not the same as "AOTInput" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /torch/_functorch/aot_autograd.py:1749:12 - error: Type "tuple[(...) -> Unknown, ViewAndMutationMeta, TreeSpec, TreeSpec]" is not assignable to return type "tuple[GraphModule, ViewAndMutationMeta, TreeSpec, TreeSpec]" +   "FunctionType" is not assignable to "GraphModule" (reportReturnType) +/torch/_functorch/autograd_function.py + /torch/_functorch/autograd_function.py:6:6 - warning: Import "torch._C._functorch" could not be resolved from source (reportMissingModuleSource) +/torch/_functorch/compile_utils.py + /torch/_functorch/compile_utils.py:22:28 - error: Cannot access attribute "overloadpacket" for class "FunctionType" +   Attribute "overloadpacket" is unknown (reportFunctionMemberAccess) + /torch/_functorch/compile_utils.py:22:28 - error: Cannot access attribute "overloadpacket" for class "str" +   Attribute "overloadpacket" is unknown (reportAttributeAccessIssue) + /torch/_functorch/compile_utils.py:23:12 - error: Type "Target" is not assignable to return type "(...) -> Unknown" +   Type "Target" is not assignable to type "(...) -> Unknown" +     Type "str" is not assignable to type "(...) -> Unknown" (reportReturnType) + /torch/_functorch/compile_utils.py:46:33 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/_functorch/compilers.py + /torch/_functorch/compilers.py:82:40 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/compilers.py:93:18 - error: "_jit_pass_remove_mutation" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/compilers.py:126:9 - error: Method "run" overrides class "Interpreter" in an incompatible manner +   Parameter "initial_env" is missing in override +   Parameter "enable_io_processing" is missing in override (reportIncompatibleMethodOverride) + /torch/_functorch/compilers.py:228:45 - error: Argument of type "set[Unknown]" cannot be assigned to parameter "aten_ops" of type "Sequence[OperatorBase | OpOverloadPacket[..., Any]]" in function "get_decompositions" +   "set[Unknown]" is not assignable to "Sequence[OperatorBase | OpOverloadPacket[..., Any]]" (reportArgumentType) + /torch/_functorch/compilers.py:298:10 - error: Import "foo" could not be resolved (reportMissingImports) +/torch/_functorch/config.py + /torch/_functorch/config.py:386:10 - warning: Import "torch.utils._config_typing" could not be resolved from source (reportMissingModuleSource) +/torch/_functorch/eager_transforms.py + /torch/_functorch/eager_transforms.py:16:6 - warning: Import "torch._C._functorch" could not be resolved from source (reportMissingModuleSource) + /torch/_functorch/eager_transforms.py:17:5 - error: "_assert_wrapped_functional" is unknown import symbol (reportAttributeAccessIssue) + /torch/_functorch/eager_transforms.py:18:5 - error: "_func_decrement_nesting" is unknown import symbol (reportAttributeAccessIssue) + /torch/_functorch/eager_transforms.py:19:5 - error: "_func_increment_nesting" is unknown import symbol (reportAttributeAccessIssue) + /torch/_functorch/eager_transforms.py:24:5 - error: "_propagate_functional_input_mutation" is unknown import symbol (reportAttributeAccessIssue) + /torch/_functorch/eager_transforms.py:406:34 - error: "aux" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_functorch/eager_transforms.py:1128:75 - error: "aux" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_functorch/eager_transforms.py:1402:20 - error: Type "tuple[Any, tuple[Any, Any | Unknown | None]]" is not assignable to return type "(...) -> Unknown" +   Type "tuple[Any, tuple[Any, Any | Unknown | None]]" is not assignable to type "(...) -> Unknown" (reportReturnType) + /torch/_functorch/eager_transforms.py:1403:16 - error: Type "tuple[Any, Any]" is not assignable to return type "(...) -> Unknown" +   Type "tuple[Any, Any]" is not assignable to type "(...) -> Unknown" (reportReturnType) + /torch/_functorch/eager_transforms.py:1409:26 - error: "(...) -> Unknown" is not iterable (reportGeneralTypeIssues) + /torch/_functorch/eager_transforms.py:1411:15 - error: "(...) -> Unknown" is not iterable (reportGeneralTypeIssues) + /torch/_functorch/eager_transforms.py:1423:15 - error: Argument missing for parameter "mode" (reportCallIssue) + /torch/_functorch/eager_transforms.py:1424:15 - error: "_mirror_autograd_meta_to" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/eager_transforms.py:1448:18 - error: "_is_functional_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_functorch/functional_call.py + /torch/_functorch/functional_call.py:260:20 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_functorch/fx_minifier.py + /torch/_functorch/fx_minifier.py:27:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/fx_minifier.py:28:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/fx_minifier.py:142:10 - error: Import "torch_xla.stablehlo" could not be resolved (reportMissingImports) + /torch/_functorch/fx_minifier.py:223:37 - error: Argument of type "Unknown | None" cannot be assigned to parameter "loc" of type "str" in function "__init__" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /torch/_functorch/fx_minifier.py:432:47 - error: Argument of type "tuple[Unknown, ...] | list[Unknown]" cannot be assigned to parameter "inps" of type "list[Tensor]" in function "__init__" +   Type "tuple[Unknown, ...] | list[Unknown]" is not assignable to type "list[Tensor]" +     "tuple[Unknown, ...]" is not assignable to "list[Tensor]" (reportArgumentType) +/torch/_functorch/make_functional.py + /torch/_functorch/make_functional.py:79:38 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/make_functional.py:484:15 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_functorch/partitioners.py + /torch/_functorch/partitioners.py:156:23 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:394:36 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:397:42 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:436:35 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:440:41 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:450:23 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:458:31 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:461:37 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:533:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:534:38 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:547:38 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:552:28 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:558:28 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:569:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:570:34 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:577:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:585:18 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:600:32 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:661:32 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:789:24 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:843:24 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:985:21 - error: "_lazy_graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:986:21 - error: "_lazy_graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:1197:73 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:1285:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:1325:42 - error: "_prims" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:1411:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:1427:22 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:1429:53 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:1448:23 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:1455:30 - error: "_prims" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:1456:32 - error: "_prims" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:1477:27 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:1484:34 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:1560:26 - error: Argument of type "tuple[Node, Unknown, *tuple[Unknown, ...]]" cannot be assigned to parameter "args" of type "tuple[Argument, ...] | None" in function "create_node" +   Type "tuple[Node, Unknown, *tuple[Unknown, ...]]" is not assignable to type "tuple[Argument, ...] | None" +     "tuple[Node, Unknown, *tuple[Unknown, ...]]" is not assignable to "tuple[Argument, ...]" +       Tuple size mismatch; expected 0 or more but received 2 +     "tuple[Node, Unknown, *tuple[Unknown, ...]]" is not assignable to "None" (reportArgumentType) + /torch/_functorch/partitioners.py:1732:16 - warning: Import "networkx" could not be resolved from source (reportMissingModuleSource) + /torch/_functorch/partitioners.py:2046:41 - error: "edgelist" is not a known attribute of module "..readwrite" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:2072:12 - error: Import "pydot" could not be resolved (reportMissingImports) + /torch/_functorch/partitioners.py:2558:16 - error: Import "matplotlib.pyplot" could not be resolved (reportMissingImports) + /torch/_functorch/partitioners.py:2662:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:2670:41 - error: "argmin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/partitioners.py:2909:23 - error: Argument of type "Unknown | float" cannot be assigned to parameter "memory_budget" of type "int" in function "choose_saved_values_set" +   Type "Unknown | float" is not assignable to type "int" +     "float" is not assignable to "int" (reportArgumentType) +/torch/_functorch/predispatch.py + /torch/_functorch/predispatch.py:15:6 - warning: Import "torch._C._functorch" could not be resolved from source (reportMissingModuleSource) + /torch/_functorch/predispatch.py:17:5 - error: "_remove_batch_dim" is unknown import symbol (reportAttributeAccessIssue) +/torch/_functorch/pyfunctorch.py + /torch/_functorch/pyfunctorch.py:9:6 - warning: Import "torch._C._functorch" could not be resolved from source (reportMissingModuleSource) + /torch/_functorch/pyfunctorch.py:278:28 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/pyfunctorch.py:284:20 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_functorch/pyfunctorch.py:296:21 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_functorch/utils.py + /torch/_functorch/utils.py:6:6 - warning: Import "torch._C._functorch" could not be resolved from source (reportMissingModuleSource) + /torch/_functorch/utils.py:29:52 - error: "prev_state" is possibly unbound (reportPossiblyUnboundVariable) +/torch/_functorch/vmap.py + /torch/_functorch/vmap.py:18:6 - warning: Import "torch._C._functorch" could not be resolved from source (reportMissingModuleSource) + /torch/_functorch/vmap.py:225:66 - error: Argument of type "list[int] | tuple[int] | list[Never] | Unbound | list[Any] | None" cannot be assigned to parameter "iter2" of type "Iterable[_T2@__new__]" in function "__new__" +   Type "list[int] | tuple[int] | list[Never] | Unbound | list[Any] | None" is not assignable to type "Iterable[int]" +     "None" is incompatible with protocol "Iterable[int]" +       "__iter__" is not present (reportArgumentType) + /torch/_functorch/vmap.py:225:66 - error: Argument of type "list[int] | tuple[int] | list[Never] | Unbound | list[Any] | None" cannot be assigned to parameter "iter2" of type "Iterable[_T2@__new__]" in function "__new__" +   Type "list[int] | tuple[int] | list[Never] | Unbound | list[Any] | None" is not assignable to type "Iterable[_T2@__new__]" +     "None" is incompatible with protocol "Iterable[_T2@__new__]" +       "__iter__" is not present (reportArgumentType) + /torch/_functorch/vmap.py:225:66 - error: "flat_out_dims" is possibly unbound (reportPossiblyUnboundVariable) +/torch/_guards.py + /torch/_guards.py:279:54 - error: "guards" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) +/torch/_higher_order_ops/aoti_call_delegate.py + /torch/_higher_order_ops/aoti_call_delegate.py:57:41 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/aoti_call_delegate.py:58:41 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/aoti_call_delegate.py:59:41 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/aoti_call_delegate.py:60:41 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/aoti_call_delegate.py:63:38 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_higher_order_ops/associative_scan.py + /torch/_higher_order_ops/associative_scan.py:10:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/_higher_order_ops/associative_scan.py:240:24 - error: "movedim" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/associative_scan.py:243:28 - error: "flip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/associative_scan.py:295:46 - error: "movedim" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_higher_order_ops/auto_functionalize.py + /torch/_higher_order_ops/auto_functionalize.py:12:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/_higher_order_ops/auto_functionalize.py:32:38 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/auto_functionalize.py:84:22 - error: "as_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/auto_functionalize.py:124:9 - error: Method "regenerate_view" overrides class "ViewInfo" in an incompatible manner +   Return type mismatch: base method returns type "None", override returns type "Tensor" +     "Tensor" is not assignable to "None" (reportIncompatibleMethodOverride) + /torch/_higher_order_ops/auto_functionalize.py:173:35 - error: "Type" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/auto_functionalize.py:251:35 - error: "Type" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/auto_functionalize.py:423:27 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_higher_order_ops/auto_functionalize.py:438:27 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_higher_order_ops/auto_functionalize.py:440:27 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_higher_order_ops/auto_functionalize.py:444:78 - error: "NoneType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/auto_functionalize.py:450:67 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/auto_functionalize.py:454:21 - error: "_dispatch_has_kernel_for_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/auto_functionalize.py:460:19 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/auto_functionalize.py:461:34 - error: "Type" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/auto_functionalize.py:480:69 - error: "Type" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/auto_functionalize.py:485:30 - error: "functional_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_higher_order_ops/auto_functionalize.py:599:30 - error: "functional_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_higher_order_ops/auto_functionalize.py:614:10 - error: Type "HigherOrderOperator | OpOverload[..., Any]" is not assignable to declared type "OpOverload[..., Any] | HopInstance" +   Type "HigherOrderOperator | OpOverload[..., Any]" is not assignable to type "OpOverload[..., Any] | HopInstance" +     Type "HigherOrderOperator" is not assignable to type "OpOverload[..., Any] | HopInstance" +       "HigherOrderOperator" is not assignable to "OpOverload[..., Any]" +       "HigherOrderOperator" is not assignable to "HopInstance" (reportAssignmentType) + /torch/_higher_order_ops/auto_functionalize.py:711:13 - error: Argument of type " | | OpOverload[..., Any] | HopInstance" cannot be assigned to parameter "_mutable_op" of type "_MutableOpType" in function "__call__" +   Type " | | OpOverload[..., Any] | HopInstance" is not assignable to type "_MutableOpType" +     Type "HopInstance" is not assignable to type "_MutableOpType" +       "HopInstance" is not assignable to "OpOverload[..., Any]" +       "HopInstance" is not assignable to "HigherOrderOperator" (reportArgumentType) + /torch/_higher_order_ops/auto_functionalize.py:854:26 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_higher_order_ops/base_hop.py + /torch/_higher_order_ops/base_hop.py:7:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) +/torch/_higher_order_ops/cond.py + /torch/_higher_order_ops/cond.py:12:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/_higher_order_ops/cond.py:13:6 - warning: Import "torch._C._functorch" could not be resolved from source (reportMissingModuleSource) + /torch/_higher_order_ops/cond.py:442:29 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_higher_order_ops/cond.py:444:22 - error: "lower" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_higher_order_ops/cond.py:444:50 - error: "upper" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_higher_order_ops/cond.py:567:26 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/cond.py:568:26 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/cond.py:654:22 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/cond.py:680:27 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_higher_order_ops/effects.py + /torch/_higher_order_ops/effects.py:6:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/_higher_order_ops/effects.py:24:21 - error: "custom_ops" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_higher_order_ops/effects.py:50:28 - error: "simple_registry" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_higher_order_ops/effects.py:57:28 - error: "simple_registry" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_higher_order_ops/effects.py:130:18 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/effects.py:201:67 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/effects.py:243:38 - error: "_get_dispatch_mode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/effects.py:244:22 - error: "_TorchDispatchModeKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/effects.py:299:29 - error: Argument of type "Any | list[Any] | None" cannot be assigned to parameter "args" of type "tuple[Any]" in function "wrap_tensors" +   Type "Any | list[Any] | None" is not assignable to type "tuple[Any]" +     "list[Any]" is not assignable to "tuple[Any]" (reportArgumentType) +/torch/_higher_order_ops/executorch_call_delegate.py + /torch/_higher_order_ops/executorch_call_delegate.py:37:47 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/executorch_call_delegate.py:38:47 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/executorch_call_delegate.py:39:47 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/executorch_call_delegate.py:40:47 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/executorch_call_delegate.py:76:44 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_higher_order_ops/flex_attention.py + /torch/_higher_order_ops/flex_attention.py:8:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:172:31 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:172:63 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:172:82 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:176:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:177:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:178:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:179:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:193:33 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:196:19 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:228:19 - error: "repeat_interleave" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:229:17 - error: "repeat_interleave" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:252:25 - error: "all" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:253:23 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:256:24 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:258:29 - error: "_safe_softmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:329:41 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:331:58 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:359:19 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:402:28 - error: "functional_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:454:54 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:516:79 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:517:80 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:561:34 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:658:23 - error: "_AutoDispatchBelowAutograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:789:18 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:797:49 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:798:49 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:799:49 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:800:49 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:864:23 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:864:62 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:882:17 - error: "repeat_interleave" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:883:19 - error: "repeat_interleave" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:901:28 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:902:28 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:902:50 - error: Cannot access attribute "unsqueeze" for class "bool" +   Attribute "unsqueeze" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:910:24 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:919:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:920:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:921:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:922:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:950:29 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:951:45 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:965:22 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:966:24 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:978:33 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:979:35 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:1037:41 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:1040:58 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:1118:19 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:1142:28 - error: "functional_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:1277:24 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:1281:19 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:1281:58 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:1295:26 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/flex_attention.py:1296:28 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_higher_order_ops/hints_wrap.py + /torch/_higher_order_ops/hints_wrap.py:4:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) +/torch/_higher_order_ops/invoke_subgraph.py + /torch/_higher_order_ops/invoke_subgraph.py:10:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/_higher_order_ops/invoke_subgraph.py:81:67 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_higher_order_ops/local_map.py + /torch/_higher_order_ops/local_map.py:16:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/_higher_order_ops/local_map.py:59:22 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/local_map.py:124:27 - error: "tensor" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/_higher_order_ops/local_map.py:140:31 - error: "tensor" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/_higher_order_ops/local_map.py:156:27 - error: "tensor" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/_higher_order_ops/local_map.py:172:27 - error: "tensor" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/_higher_order_ops/local_map.py:407:23 - error: "_AutoDispatchBelowAutograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/local_map.py:434:23 - error: "_AutoDispatchBelowAutograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/local_map.py:451:16 - error: Type "tuple[None, None, None, None, None, *tuple[Any, ...]]" is not assignable to return type "tuple[Tensor | None, ...]" +   "tuple[None, None, None, None, None, *tuple[Any, ...]]" is not assignable to "tuple[Tensor | None, ...]" +     Tuple size mismatch; expected 0 or more but received 5 (reportReturnType) + /torch/_higher_order_ops/local_map.py:454:33 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_higher_order_ops/map.py + /torch/_higher_order_ops/map.py:9:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) +/torch/_higher_order_ops/out_dtype.py + /torch/_higher_order_ops/out_dtype.py:5:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/_higher_order_ops/out_dtype.py:101:68 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/out_dtype.py:103:22 - error: "_int_mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/out_dtype.py:140:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/out_dtype.py:150:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_higher_order_ops/partitioner.py + /torch/_higher_order_ops/partitioner.py:318:33 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_higher_order_ops/print.py + /torch/_higher_order_ops/print.py:28:70 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/print.py:61:25 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/print.py:79:28 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/print.py:80:28 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_higher_order_ops/run_const_graph.py + /torch/_higher_order_ops/run_const_graph.py:4:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) +/torch/_higher_order_ops/scan.py + /torch/_higher_order_ops/scan.py:12:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/_higher_order_ops/scan.py:69:36 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/scan.py:191:32 - error: "movedim" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/scan.py:194:28 - error: "flip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/scan.py:869:27 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_higher_order_ops/schema.py + /torch/_higher_order_ops/schema.py:53:23 - error: "IntType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/schema.py:54:25 - error: "FloatType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/schema.py:55:23 - error: "StringType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/schema.py:56:24 - error: "BoolType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/schema.py:65:29 - error: "AnyType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/schema.py:67:29 - error: "SymIntType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/schema.py:69:29 - error: "SymBoolType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/schema.py:70:25 - error: "_jit_try_infer_type" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/schema.py:80:29 - error: "Argument" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/schema.py:84:25 - error: "Argument" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/schema.py:146:38 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/schema.py:247:26 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/schema.py:252:34 - error: "Argument" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/schema.py:253:32 - error: "Argument" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/schema.py:286:20 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_higher_order_ops/strict_mode.py + /torch/_higher_order_ops/strict_mode.py:7:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) +/torch/_higher_order_ops/torchbind.py + /torch/_higher_order_ops/torchbind.py:6:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/_higher_order_ops/torchbind.py:37:38 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/torchbind.py:41:48 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_higher_order_ops/torchbind.py:51:31 - error: "parse_schema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/torchbind.py:64:33 - error: "ScriptMethod" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_higher_order_ops/triton_kernel_wrap.py + /torch/_higher_order_ops/triton_kernel_wrap.py:20:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:36:10 - error: Import "triton._C.libtriton.ir" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:54:14 - error: Import "triton.runtime.autotuner" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:55:14 - error: Import "triton.runtime.jit" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:240:12 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:241:12 - error: Import "triton.runtime.jit" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:242:10 - error: Import "triton.compiler.compiler" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:243:10 - error: Import "triton.runtime.autotuner" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:244:10 - error: Import "triton.runtime.jit" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:259:23 - error: Cannot access attribute "configs" for class "Autotuner" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:259:23 - error: Cannot access attribute "configs" for class "JITFunction" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:262:42 - error: Cannot access attribute "configs" for class "Autotuner" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:262:42 - error: Cannot access attribute "configs" for class "JITFunction" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:263:25 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:263:25 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:277:31 - error: Cannot access attribute "arg_names" for class "Autotuner" +   Attribute "arg_names" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:277:31 - error: Cannot access attribute "arg_names" for class "JITFunction" +   Attribute "arg_names" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:280:34 - error: Cannot access attribute "arg_names" for class "Autotuner" +   Attribute "arg_names" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:280:34 - error: Cannot access attribute "arg_names" for class "JITFunction" +   Attribute "arg_names" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:283:62 - error: Cannot access attribute "arg_names" for class "Autotuner" +   Attribute "arg_names" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:283:62 - error: Cannot access attribute "arg_names" for class "JITFunction" +   Attribute "arg_names" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:290:24 - error: Cannot access attribute "arg_names" for class "Autotuner" +   Attribute "arg_names" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:290:24 - error: Cannot access attribute "arg_names" for class "JITFunction" +   Attribute "arg_names" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:297:17 - error: Argument of type "TMAExperimentalMetadata | TMAStableMetadata | None" cannot be assigned to parameter "tma_meta" of type "TMAExperimentalMetadata | TMAStableMetadata" in function "maybe_unpack_tma_stable_metadata" +   Type "TMAExperimentalMetadata | TMAStableMetadata | None" is not assignable to type "TMAExperimentalMetadata | TMAStableMetadata" +     Type "None" is not assignable to type "TMAExperimentalMetadata | TMAStableMetadata" +       "None" is not assignable to "tuple[str, tuple[list[IntLikeType], list[IntLikeType], IntLikeType]]" +       "None" is not assignable to "tuple[str, tuple[list[IntLikeType]]]" (reportArgumentType) + /torch/_higher_order_ops/triton_kernel_wrap.py:300:18 - error: Import "triton.tools.tensor_descriptor" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:303:27 - error: "_DisableTorchDispatch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:306:37 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:312:27 - error: "_DisableTorchDispatch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:313:44 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:319:18 - error: Import "triton.tools.tensor_descriptor" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:369:18 - error: Import "triton.backends.compiler" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:397:22 - error: Import "triton.backends" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:398:22 - error: Import "triton.runtime.jit" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:412:22 - error: Import "triton.runtime.jit" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:419:18 - error: Import "triton._utils" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:450:23 - error: Cannot access attribute "params" for class "Autotuner" +   Attribute "params" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:450:23 - error: Cannot access attribute "params" for class "JITFunction" +   Attribute "params" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:458:27 - error: Cannot access attribute "_type_of" for class "Autotuner" +   Attribute "_type_of" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:458:27 - error: Cannot access attribute "_type_of" for class "JITFunction" +   Attribute "_type_of" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:458:43 - error: Cannot access attribute "key_of" for class "Autotuner" +   Attribute "key_of" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:458:43 - error: Cannot access attribute "key_of" for class "JITFunction" +   Attribute "key_of" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:468:45 - error: Cannot access attribute "params" for class "Autotuner" +   Attribute "params" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:468:45 - error: Cannot access attribute "params" for class "JITFunction" +   Attribute "params" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:973:23 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:973:23 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1077:20 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1077:20 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1079:20 - error: Cannot access attribute "configs" for class "Autotuner" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1079:20 - error: Cannot access attribute "configs" for class "JITFunction" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1080:13 - error: Argument of type "list[TritonGridType]" cannot be assigned to parameter "grids" of type "list[TritonGrid]" in function "user_defined_kernel_grid_fn_code" +   "list[TritonGridType]" is not assignable to "list[TritonGrid]" +     Type parameter "_T@list" is invariant, but "TritonGridType" is not the same as "TritonGrid" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /torch/_higher_order_ops/triton_kernel_wrap.py:1095:22 - error: Import "triton.tools.experimental_descriptor" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:1115:22 - error: Import "triton.tools.tensor_descriptor" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:1131:24 - error: Cannot access attribute "arg_names" for class "Autotuner" +   Attribute "arg_names" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1131:24 - error: Cannot access attribute "arg_names" for class "JITFunction" +   Attribute "arg_names" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1140:5 - error: "__getitem__" method not defined on type "Autotuner" (reportIndexIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1140:5 - error: "__getitem__" method not defined on type "JITFunction" (reportIndexIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1536:14 - error: Import "triton.runtime.autotuner" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:1546:25 - error: Cannot assign to attribute "grid" for class "TritonKernelVariable" +   Type "TritonGridType | None" is not assignable to type "TritonGridType" +     Type "None" is not assignable to type "TritonGridType" +       "None" is not assignable to "tuple[int | Expr | SymInt, ...]" +       Type "None" is not assignable to type "TritonGridCallableType" (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1569:37 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1580:37 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1588:36 - error: Cannot access attribute "user_defined_pre_hook" for class "Autotuner" +   Attribute "user_defined_pre_hook" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1588:36 - error: Cannot access attribute "user_defined_pre_hook" for class "JITFunction" +   Attribute "user_defined_pre_hook" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1592:36 - error: Cannot access attribute "user_defined_post_hook" for class "Autotuner" +   Attribute "user_defined_post_hook" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1592:36 - error: Cannot access attribute "user_defined_post_hook" for class "JITFunction" +   Attribute "user_defined_post_hook" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1596:72 - error: Cannot access attribute "configs" for class "Autotuner" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1596:72 - error: Cannot access attribute "configs" for class "JITFunction" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1650:14 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:1651:14 - error: Import "triton.runtime.autotuner" could not be resolved (reportMissingImports) + /torch/_higher_order_ops/triton_kernel_wrap.py:1676:39 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1676:39 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1684:29 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1684:29 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1695:57 - error: Cannot access attribute "configs" for class "Autotuner" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1695:57 - error: Cannot access attribute "configs" for class "JITFunction" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1697:51 - error: Cannot access attribute "arg_names" for class "Autotuner" +   Attribute "arg_names" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1697:51 - error: Cannot access attribute "arg_names" for class "JITFunction" +   Attribute "arg_names" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1700:43 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1700:43 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1729:47 - error: Cannot access attribute "perf_model" for class "Autotuner" +   Attribute "perf_model" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1729:47 - error: Cannot access attribute "perf_model" for class "JITFunction" +   Attribute "perf_model" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1730:55 - error: Cannot access attribute "early_config_prune" for class "Autotuner" +   Attribute "early_config_prune" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1730:55 - error: Cannot access attribute "early_config_prune" for class "JITFunction" +   Attribute "early_config_prune" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1731:50 - error: Cannot access attribute "configs_top_k" for class "Autotuner" +   Attribute "configs_top_k" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1731:50 - error: Cannot access attribute "configs_top_k" for class "JITFunction" +   Attribute "configs_top_k" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1762:61 - error: Cannot access attribute "configs" for class "Autotuner" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1762:61 - error: Cannot access attribute "configs" for class "JITFunction" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1766:51 - error: Cannot access attribute "perf_model" for class "Autotuner" +   Attribute "perf_model" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1766:51 - error: Cannot access attribute "perf_model" for class "JITFunction" +   Attribute "perf_model" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1767:59 - error: Cannot access attribute "early_config_prune" for class "Autotuner" +   Attribute "early_config_prune" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1767:59 - error: Cannot access attribute "early_config_prune" for class "JITFunction" +   Attribute "early_config_prune" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1768:54 - error: Cannot access attribute "configs_top_k" for class "Autotuner" +   Attribute "configs_top_k" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1768:54 - error: Cannot access attribute "configs_top_k" for class "JITFunction" +   Attribute "configs_top_k" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1773:35 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1773:35 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1789:44 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1789:44 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1801:61 - error: Cannot access attribute "configs" for class "Autotuner" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1801:61 - error: Cannot access attribute "configs" for class "JITFunction" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1813:55 - error: Cannot access attribute "perf_model" for class "Autotuner" +   Attribute "perf_model" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1813:55 - error: Cannot access attribute "perf_model" for class "JITFunction" +   Attribute "perf_model" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1814:63 - error: Cannot access attribute "early_config_prune" for class "Autotuner" +   Attribute "early_config_prune" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1814:63 - error: Cannot access attribute "early_config_prune" for class "JITFunction" +   Attribute "early_config_prune" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1815:58 - error: Cannot access attribute "configs_top_k" for class "Autotuner" +   Attribute "configs_top_k" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1815:58 - error: Cannot access attribute "configs_top_k" for class "JITFunction" +   Attribute "configs_top_k" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1820:39 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1820:39 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1831:29 - error: Cannot access attribute "perf_model" for class "Autotuner" +   Attribute "perf_model" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1831:29 - error: Cannot access attribute "perf_model" for class "JITFunction" +   Attribute "perf_model" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1832:32 - error: Cannot access attribute "early_config_prune" for class "Autotuner" +   Attribute "early_config_prune" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1832:32 - error: Cannot access attribute "early_config_prune" for class "JITFunction" +   Attribute "early_config_prune" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1835:51 - error: Cannot access attribute "arg_names" for class "Autotuner" +   Attribute "arg_names" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1835:51 - error: Cannot access attribute "arg_names" for class "JITFunction" +   Attribute "arg_names" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1840:33 - error: Cannot access attribute "early_config_prune" for class "Autotuner" +   Attribute "early_config_prune" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1840:33 - error: Cannot access attribute "early_config_prune" for class "JITFunction" +   Attribute "early_config_prune" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1847:33 - error: Cannot access attribute "perf_model" for class "Autotuner" +   Attribute "perf_model" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1847:33 - error: Cannot access attribute "perf_model" for class "JITFunction" +   Attribute "perf_model" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1851:33 - error: Cannot access attribute "configs_top_k" for class "Autotuner" +   Attribute "configs_top_k" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1851:33 - error: Cannot access attribute "configs_top_k" for class "JITFunction" +   Attribute "configs_top_k" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1855:33 - error: Cannot access attribute "configs" for class "Autotuner" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1855:33 - error: Cannot access attribute "configs" for class "JITFunction" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1878:83 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1878:83 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1887:57 - error: Cannot access attribute "arg_names" for class "Autotuner" +   Attribute "arg_names" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1887:57 - error: Cannot access attribute "arg_names" for class "JITFunction" +   Attribute "arg_names" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1891:58 - error: Cannot access attribute "configs" for class "Autotuner" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1891:58 - error: Cannot access attribute "configs" for class "JITFunction" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1920:58 - error: Cannot access attribute "params" for class "Autotuner" +   Attribute "params" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1920:58 - error: Cannot access attribute "params" for class "JITFunction" +   Attribute "params" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1921:58 - error: Cannot access attribute "params" for class "Autotuner" +   Attribute "params" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1921:58 - error: Cannot access attribute "params" for class "JITFunction" +   Attribute "params" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1926:58 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1926:58 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1927:58 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:1927:58 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:2014:45 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:2019:22 - error: Argument of type "TritonGridType" cannot be assigned to parameter "iterable" of type "Iterable[_T_co@tuple]" in function "__new__" +   Type "TritonGridType" is not assignable to type "Iterable[int | Expr | SymInt]" +     "FunctionType" is incompatible with protocol "Iterable[int | Expr | SymInt]" +       "__iter__" is not present (reportArgumentType) + /torch/_higher_order_ops/triton_kernel_wrap.py:2019:22 - error: Argument of type "TritonGridType" cannot be assigned to parameter "iterable" of type "Iterable[_T_co@tuple]" in function "__new__" +   Type "TritonGridType" is not assignable to type "Iterable[_T_co@tuple]" +     "FunctionType" is incompatible with protocol "Iterable[_T_co@tuple]" +       "__iter__" is not present (reportArgumentType) + /torch/_higher_order_ops/triton_kernel_wrap.py:2031:40 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:2097:32 - error: Cannot access attribute "run" for class "Autotuner" +   Attribute "run" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:2097:32 - error: Cannot access attribute "run" for class "JITFunction" +   Attribute "run" is unknown (reportAttributeAccessIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:2109:20 - error: "__getitem__" method not defined on type "Autotuner" (reportIndexIssue) + /torch/_higher_order_ops/triton_kernel_wrap.py:2109:20 - error: "__getitem__" method not defined on type "JITFunction" (reportIndexIssue) +/torch/_higher_order_ops/utils.py + /torch/_higher_order_ops/utils.py:52:19 - error: "_AutoDispatchBelowAutograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/utils.py:55:18 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/utils.py:59:35 - error: "_functions" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/utils.py:206:33 - error: "exc" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_higher_order_ops/utils.py:223:29 - error: "exc" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_higher_order_ops/utils.py:528:22 - error: "_is_functional_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/utils.py:529:27 - error: "_from_functional_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/utils.py:858:18 - error: "select_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/utils.py:1144:40 - error: "DispatchKeySet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/utils.py:1145:40 - error: "DispatchKeySet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/utils.py:1149:36 - error: "_dispatch_tls_local_include_set" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/utils.py:1151:36 - error: "_dispatch_tls_local_exclude_set" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_higher_order_ops/utils.py:1194:40 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_higher_order_ops/while_loop.py + /torch/_higher_order_ops/while_loop.py:9:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/_higher_order_ops/while_loop.py:341:23 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_higher_order_ops/wrap.py + /torch/_higher_order_ops/wrap.py:9:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/_higher_order_ops/wrap.py:15:25 - error: "_dtype" is unknown import symbol (reportAttributeAccessIssue) +/torch/_inductor/__init__.py + /torch/_inductor/__init__.py:152:9 - error: Argument of type "(gm: Module, args: tuple[Any], kwargs: dict[str, Any] | None = None, *, load_and_run: bool = False, check_accuracy: str | None = None, package_path: str | BytesIO | None = None, inductor_configs: dict[str, Any] | None = None) -> (str | BytesIO)" cannot be assigned to parameter "func" of type "(...) -> str" in function "aot_inductor_minifier_wrapper" +   Type "(gm: Module, args: tuple[Any], kwargs: dict[str, Any] | None = None, *, load_and_run: bool = False, check_accuracy: str | None = None, package_path: str | BytesIO | None = None, inductor_configs: dict[str, Any] | None = None) -> (str | BytesIO)" is not assignable to type "(...) -> str" +     Function return type "str | BytesIO" is incompatible with type "str" +       Type "str | BytesIO" is not assignable to type "str" +         "BytesIO" is not assignable to "str" (reportArgumentType) +/torch/_inductor/analysis/device_info.py + /torch/_inductor/analysis/device_info.py:22:28 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:34:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:35:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:37:19 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:38:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:39:19 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:40:19 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:41:19 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:42:19 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:43:19 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:44:19 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:45:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:55:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:56:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:57:19 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:58:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:60:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:71:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:72:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:74:19 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:75:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:76:19 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:77:19 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:78:19 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:79:19 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:80:19 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:81:19 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:82:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:92:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:93:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:96:19 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:97:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:98:19 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:99:19 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:100:19 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:101:19 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:102:19 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:103:19 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:104:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:114:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:115:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:117:19 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:118:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:119:19 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:120:19 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:121:19 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:122:19 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:123:19 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:124:19 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:125:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:135:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:136:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:138:19 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:139:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:140:19 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:141:19 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:142:19 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:143:19 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:144:19 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:145:19 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:146:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:156:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:157:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:160:19 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:161:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:163:19 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:164:19 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:165:19 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:166:19 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:167:19 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:168:19 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:169:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:192:33 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/device_info.py:215:40 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/analysis/profile_analysis.py + /torch/_inductor/analysis/profile_analysis.py:358:20 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/profile_analysis.py:359:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/profile_analysis.py:360:18 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/profile_analysis.py:361:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/profile_analysis.py:362:20 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/profile_analysis.py:363:20 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/profile_analysis.py:364:19 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/profile_analysis.py:365:23 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/profile_analysis.py:366:23 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/profile_analysis.py:367:22 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/profile_analysis.py:368:22 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/profile_analysis.py:406:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/profile_analysis.py:418:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/profile_analysis.py:426:70 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/profile_analysis.py:440:30 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/profile_analysis.py:442:30 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analysis/profile_analysis.py:483:47 - error: Argument of type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" cannot be assigned to parameter "stats" of type "KernelNameMap" in function "__init__" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "defaultdict[str, OrderedSet[KernelStats]]" +     Type parameter "_VT@defaultdict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[KernelStats]" (reportArgumentType) +/torch/_inductor/analyze_preserves_zero_mask.py + /torch/_inductor/analyze_preserves_zero_mask.py:20:47 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analyze_preserves_zero_mask.py:24:7 - error: Base classes for class "PreservesZeros" define method "constant" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "value" +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/analyze_preserves_zero_mask.py:24:7 - error: Base classes for class "PreservesZeros" define method "index_expr" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "value" +   Parameter 2 name mismatch: base parameter is named "expr", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/analyze_preserves_zero_mask.py:24:7 - error: Base classes for class "PreservesZeros" define method "to_dtype" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "value" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 name mismatch: base parameter is named "dtype", override parameter is named "src_dtype" +   Parameter 4 name mismatch: base parameter is named "src_dtype", override parameter is named "use_compute_types" +   Parameter 5 mismatch: base parameter "use_compute_types" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/analyze_preserves_zero_mask.py:24:7 - error: Base classes for class "PreservesZeros" define method "identity" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "value" +   Parameter 2 mismatch: base parameter "x" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/analyze_preserves_zero_mask.py:24:7 - error: Base classes for class "PreservesZeros" define method "abs" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/analyze_preserves_zero_mask.py:24:7 - error: Base classes for class "PreservesZeros" define method "minimum" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/analyze_preserves_zero_mask.py:24:7 - error: Base classes for class "PreservesZeros" define method "maximum" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/analyze_preserves_zero_mask.py:24:7 - error: Base classes for class "PreservesZeros" define method "neg" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/analyze_preserves_zero_mask.py:24:7 - error: Base classes for class "PreservesZeros" define method "add" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/analyze_preserves_zero_mask.py:24:7 - error: Base classes for class "PreservesZeros" define method "sub" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/analyze_preserves_zero_mask.py:24:7 - error: Base classes for class "PreservesZeros" define method "mul" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/analyze_preserves_zero_mask.py:24:7 - error: Base classes for class "PreservesZeros" define method "floordiv" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/analyze_preserves_zero_mask.py:24:7 - error: Base classes for class "PreservesZeros" define method "mod" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/analyze_preserves_zero_mask.py:24:7 - error: Base classes for class "PreservesZeros" define method "remainder" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/analyze_preserves_zero_mask.py:24:7 - error: Base classes for class "PreservesZeros" define method "square" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/analyze_preserves_zero_mask.py:51:57 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analyze_preserves_zero_mask.py:79:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analyze_preserves_zero_mask.py:98:9 - error: Method "store" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "name" +   Parameter 2 name mismatch: base parameter is named "name", override parameter is named "index" +   Parameter 3 name mismatch: base parameter is named "index", override parameter is named "value" +   Parameter 4 name mismatch: base parameter is named "value", override parameter is named "mode" +   Parameter 5 mismatch: base parameter "mode" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/analyze_preserves_zero_mask.py:117:41 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analyze_preserves_zero_mask.py:131:37 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analyze_preserves_zero_mask.py:131:52 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/analyze_preserves_zero_mask.py:139:33 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/aoti_eager.py + /torch/_inductor/aoti_eager.py:85:63 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/aoti_eager.py:86:24 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/aoti_eager.py:86:44 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/aoti_eager.py:86:63 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/aoti_eager.py:108:45 - error: "_dispatch_keys" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/aoti_eager.py:146:41 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/aoti_eager.py:147:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/aoti_eager.py:153:42 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/aoti_eager.py:154:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/aoti_eager.py:161:42 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/aoti_eager.py:162:36 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/aoti_eager.py:195:23 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/aoti_eager.py:196:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/aoti_eager.py:197:23 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/aoti_eager.py:253:46 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/aoti_eager.py:255:46 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/aoti_eager.py:257:46 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/async_compile.py + /torch/_inductor/async_compile.py:285:29 - error: "util" is not a known attribute of module "multiprocessing" (reportAttributeAccessIssue) + /torch/_inductor/async_compile.py:375:33 - error: "codecache" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/async_compile.py:381:28 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/async_compile.py:403:61 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/async_compile.py:406:36 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/async_compile.py:422:47 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/async_compile.py:424:50 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) +/torch/_inductor/augmented_graph_helper.py + /torch/_inductor/augmented_graph_helper.py:28:63 - error: Cannot assign to attribute "extra_deps" for class "AugmentedGraphHelper*" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[Node, OrderedSet[Node]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[Node]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAttributeAccessIssue) + /torch/_inductor/augmented_graph_helper.py:30:63 - error: Cannot assign to attribute "extra_uses" for class "AugmentedGraphHelper*" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[Node, OrderedSet[Node]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[Node]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAttributeAccessIssue) + /torch/_inductor/augmented_graph_helper.py:94:30 - error: "graph_deduplication" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) +/torch/_inductor/autoheuristic/autoheuristic.py + /torch/_inductor/autoheuristic/autoheuristic.py:97:28 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/autoheuristic/autoheuristic.py:100:45 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/autoheuristic/autoheuristic.py:102:28 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/autoheuristic/autoheuristic.py:123:28 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/autoheuristic/autoheuristic.py:143:28 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/autoheuristic/autoheuristic.py:264:29 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/autoheuristic/autoheuristic.py:304:28 - error: Argument of type "partial[None]" cannot be assigned to parameter "fn" of type "FeedbackFunction" in function "add_feedback_saver" +   Type "partial[None]" is not assignable to type "FeedbackFunction" +     Function accepts too many positional parameters; expected 4 but received 5 (reportArgumentType) +/torch/_inductor/autoheuristic/autoheuristic_utils.py + /torch/_inductor/autoheuristic/autoheuristic_utils.py:336:61 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/autoheuristic/autoheuristic_utils.py:338:23 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/autotune_process.py + /torch/_inductor/autotune_process.py:362:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/autotune_process.py:363:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/autotune_process.py:364:18 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/autotune_process.py:365:20 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/autotune_process.py:654:29 - error: "runtime" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/autotune_process.py:751:36 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/autotune_process.py:753:29 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/autotune_process.py:756:53 - error: "data_ptr" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/_inductor/bounds.py + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "constant" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "value" +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "where" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "condition", override parameter is named "b" +   Parameter 3 name mismatch: base parameter is named "input", override parameter is named "c" +   Parameter 4 mismatch: base parameter "other" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "trunc_to_int" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "ceil_to_int" in incompatible way +   Base method is declared as an instance method but override is not (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "floor_to_int" in incompatible way +   Base method is declared as an instance method but override is not (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "round_to_int" in incompatible way +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "number" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "identity" in incompatible way +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "a" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "abs" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "exp" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "sqrt" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "minimum" in incompatible way +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "a" +   Parameter 3 name mismatch: base parameter is named "x1", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "maximum" in incompatible way +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "a" +   Parameter 3 name mismatch: base parameter is named "x1", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "cos" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "sin" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "cosh" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "sinh" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "acos" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "asin" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "atan" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "log2" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "bitwise_and" in incompatible way +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "a" +   Parameter 3 name mismatch: base parameter is named "x1", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "bitwise_or" in incompatible way +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "a" +   Parameter 3 name mismatch: base parameter is named "x1", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "bitwise_xor" in incompatible way +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "a" +   Parameter 3 name mismatch: base parameter is named "x1", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "tan" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "tanh" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "log" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "floor" in incompatible way +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "x" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "trunc" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "ceil" in incompatible way +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "x" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "reciprocal" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "eq" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "ne" in incompatible way +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "a" +   Parameter 3 name mismatch: base parameter is named "x1", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "lt" in incompatible way +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "a" +   Parameter 3 name mismatch: base parameter is named "x1", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "gt" in incompatible way +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "a" +   Parameter 3 name mismatch: base parameter is named "x1", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "le" in incompatible way +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "a" +   Parameter 3 name mismatch: base parameter is named "x1", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "ge" in incompatible way +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "a" +   Parameter 3 name mismatch: base parameter is named "x1", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "add" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "mul" in incompatible way +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "a" +   Parameter 3 name mismatch: base parameter is named "x1", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "pow" in incompatible way +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "a" +   Parameter 3 name mismatch: base parameter is named "x1", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "and_" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "or_" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "floordiv" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "truediv" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "int_truediv" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:153:7 - error: Base classes for class "ValueRangeAnalysis" define method "mod" in incompatible way +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "x" +   Parameter 3 name mismatch: base parameter is named "x1", override parameter is named "y" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:185:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/bounds.py:186:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/bounds.py:193:9 - error: Method "index_expr" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "expr", override parameter is named "index" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:193:50 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/bounds.py:198:9 - error: Method "to_dtype" overrides class "SymPyValueRangeAnalysis" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "a", override parameter is named "x" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:198:9 - error: Method "to_dtype" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 name mismatch: base parameter is named "dtype", override parameter is named "src_dtype" +   Parameter 4 name mismatch: base parameter is named "src_dtype", override parameter is named "use_compute_types" +   Parameter 5 mismatch: base parameter "use_compute_types" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:200:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/bounds.py:201:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/bounds.py:206:27 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/bounds.py:216:39 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/bounds.py:240:9 - error: Method "square" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:244:9 - error: Method "neg" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:251:9 - error: Method "truncdiv" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "a" +   Parameter 3 name mismatch: base parameter is named "x1", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/bounds.py:259:9 - error: Method "sub" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "a" +   Parameter 3 name mismatch: base parameter is named "x1", override parameter is named "b" (reportIncompatibleMethodOverride) +/torch/_inductor/cache.py + /torch/_inductor/cache.py:311:16 - error: Type "BaseFileLock" is not assignable to return type "FileLock" +   "BaseFileLock" is not assignable to "FileLock" (reportReturnType) +/torch/_inductor/choices.py + /torch/_inductor/choices.py:38:10 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/_inductor/choices.py:72:30 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/choices.py:95:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/choices.py:101:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/choices.py:107:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/choices.py:352:46 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_inductor/choices.py:391:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/choices.py:608:16 - error: Type "tuple[int, bool, int, int]" is not assignable to return type "Sortable" +   "tuple[int, bool, int, int]" is incompatible with protocol "Sortable" +     "__lt__" is an incompatible type +       Type "(value: tuple[int | bool, ...], /) -> bool" is not assignable to type "(other: tuple[int, bool, int, int]) -> bool" +         Missing keyword parameter "other" +           Position-only parameter mismatch; parameter "other" is not position-only +           Position-only parameter mismatch; expected 1 but received 0 (reportReturnType) +/torch/_inductor/codegen/aoti_hipify_utils.py + /torch/_inductor/codegen/aoti_hipify_utils.py:14:22 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/block_analysis.py + /torch/_inductor/codegen/block_analysis.py:102:50 - error: Argument of type "partial[Unknown]" cannot be assigned to parameter "cls" of type "type[Symbol]" in function "symbols" +   Type "partial[Unknown]" is not assignable to type "type[Symbol]" (reportArgumentType) + /torch/_inductor/codegen/block_analysis.py:103:67 - error: Argument of type "partial[Unknown]" cannot be assigned to parameter "cls" of type "type[Symbol]" in function "symbols" +   Type "partial[Unknown]" is not assignable to type "type[Symbol]" (reportArgumentType) +/torch/_inductor/codegen/common.py + /torch/_inductor/codegen/common.py:183:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:186:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:186:32 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:224:35 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:229:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:285:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:310:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:448:25 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:453:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:454:30 - error: Cannot access attribute "type" for class "str" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:458:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:466:25 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:578:32 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:610:77 - error: Argument of type "Sequence[Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "contiguous_strides" +   "Sequence[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/codegen/common.py:631:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:631:53 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:632:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:632:27 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:633:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:633:26 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:637:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:638:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:639:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:640:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:641:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:642:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:643:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:644:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:645:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:646:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:647:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:657:21 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:662:22 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:672:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:678:22 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:696:64 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:705:27 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:750:82 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:767:19 - error: "promote_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:771:75 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:777:72 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:806:72 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:808:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:824:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:828:67 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:832:78 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:871:50 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:879:46 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:887:58 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:891:73 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:895:72 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:899:67 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:903:57 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:907:37 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:912:53 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:920:46 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:924:45 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:928:46 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:935:45 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:941:46 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "trunc_to_int" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "ceil_to_int" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "floor_to_int" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "round_to_int" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "identity" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "value" +   Parameter 2 mismatch: base parameter "x" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "exp2" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "expm1" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "relu" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "erfc" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "log10" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "log2" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "log1p" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "sigmoid" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "neg" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "reciprocal" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "eq" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "ne" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "lt" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "gt" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "le" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "ge" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "add" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "sub" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "mul" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "pow" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "and_" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "or_" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "xor" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "lshift" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "rshift" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "erfcx" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "fma" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "y" +   Parameter 3 name mismatch: base parameter is named "y", override parameter is named "z" +   Parameter 4 mismatch: base parameter "z" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "floordiv" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "truediv" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "mod" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "remainder" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:963:7 - error: Base classes for class "OpOverrides" define method "square" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:977:9 - error: Method "constant" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "value" +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:977:63 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:981:9 - error: Method "bitwise_not" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:985:9 - error: Method "logical_not" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:989:9 - error: Method "bitwise_and" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:993:9 - error: Method "bitwise_or" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:997:9 - error: Method "bitwise_xor" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:1001:9 - error: Method "bitwise_left_shift" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:1005:9 - error: Method "bitwise_right_shift" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:1009:9 - error: Method "int_truediv" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:1016:9 - error: Method "load_seed" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "name" +   Parameter 2 name mismatch: base parameter is named "name", override parameter is named "offset" +   Parameter 3 mismatch: base parameter "offset" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:1019:9 - error: Method "indirect_indexing" overrides class "OpsHandler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "var" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:1059:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:1060:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:1070:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:1083:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:1097:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:1121:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:1121:36 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:1579:64 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:1579:78 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:1642:25 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:1656:17 - error: Type "Integer" is not assignable to declared type "int" +   "Integer" is not assignable to "int" (reportAssignmentType) + /torch/_inductor/codegen/common.py:1658:20 - error: Argument of type "int" cannot be assigned to parameter "key" of type "Expr" in function "__getitem__" +   "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/common.py:1663:9 - error: Argument of type "int" cannot be assigned to parameter "key" of type "Expr" in function "__setitem__" +   "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/common.py:1674:16 - error: Type "chain[str | Expr]" is not assignable to return type "Iterator[str]" +   "chain[str | Expr]" is incompatible with protocol "Iterator[str]" +     "__next__" is an incompatible type +       Type "() -> (str | Expr)" is not assignable to type "() -> _T_co@Iterator" +         Function return type "str | Expr" is incompatible with type "_T_co@Iterator" +           Type "str | Expr" is not assignable to type "str" +     "__iter__" is an incompatible type +       Type "() -> chain[str | Expr]" is not assignable to type "() -> Iterator[_T_co@Iterator]" +         Function return type "chain[str | Expr]" is incompatible with type "Iterator[_T_co@Iterator]" + ... (reportReturnType) + /torch/_inductor/codegen/common.py:1690:51 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:1697:54 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:1744:49 - error: Argument of type "Symbol | Expr" cannot be assigned to parameter "size" of type "SymbolLike" in function "wrap_size_arg" +   Type "Symbol | Expr" is not assignable to type "SymbolLike" +     Type "Expr" is not assignable to type "SymbolLike" +       "Expr" is not assignable to "str" +       "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/codegen/common.py:1746:59 - error: Argument of type "Symbol | Expr" cannot be assigned to parameter "sym" of type "Symbol" in function "ensure_size_computed" +   Type "Symbol | Expr" is not assignable to type "Symbol" +     "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/codegen/common.py:1789:30 - error: Argument of type "Expr" cannot be assigned to parameter "object" of type "str" in function "append" +   "Expr" is not assignable to "str" (reportArgumentType) + /torch/_inductor/codegen/common.py:1793:59 - error: Argument of type "Expr" cannot be assigned to parameter "sym" of type "Symbol" in function "ensure_size_computed" +   "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/codegen/common.py:1848:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:1880:15 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:1966:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2038:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2050:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2184:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2185:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2202:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2212:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2227:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2351:20 - error: Type "list[Expr]" is not assignable to return type "Expr" +   "list[Expr]" is not assignable to "Expr" (reportReturnType) + /torch/_inductor/codegen/common.py:2353:39 - error: Cannot access attribute "free_symbols" for class "list[Expr]" +   Attribute "free_symbols" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2353:39 - error: Cannot access attribute "free_symbols" for class "tuple[Expr, ...]" +   Attribute "free_symbols" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2353:69 - error: Cannot access attribute "name" for class "Basic" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2355:31 - error: Argument of type "Basic" cannot be assigned to parameter "name" of type "Symbol" in function "size" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/codegen/common.py:2367:27 - error: Argument of type "list[Expr] | tuple[Expr, ...] | Expr" cannot be assigned to parameter "expr" of type "Expr" in function "sympy_subs" +   Type "list[Expr] | tuple[Expr, ...] | Expr" is not assignable to type "Expr" +     "list[Expr]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/common.py:2367:34 - error: Argument of type "dict[Basic, str]" cannot be assigned to parameter "replacements" of type "dict[Expr, Any]" in function "sympy_subs" +   "dict[Basic, str]" is not assignable to "dict[Expr, Any]" +     Type parameter "_KT@dict" is invariant, but "Basic" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/codegen/common.py:2385:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2392:16 - warning: Import "jinja2" could not be resolved from source (reportMissingModuleSource) + /torch/_inductor/codegen/common.py:2425:14 - warning: Import "jinja2" could not be resolved from source (reportMissingModuleSource) + /torch/_inductor/codegen/common.py:2457:70 - error: Cannot access attribute "column" for class "TemplateSyntaxError" +   Attribute "column" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2469:32 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2476:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2604:39 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2701:9 - error: Method "indirect_indexing" overrides class "OpsHandler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "var" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:2715:63 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2754:16 - error: Type "Expr" is not assignable to return type "Symbol" +   "Expr" is not assignable to "Symbol" (reportReturnType) + /torch/_inductor/codegen/common.py:2799:9 - error: Method "partial_accumulate" overrides class "OpsHandler" in an incompatible manner +   Parameter 2 mismatch: base parameter "name" is keyword parameter, override parameter is position-only +   Parameter 3 mismatch: base parameter "reduction_type" is keyword parameter, override parameter is position-only +   Parameter 4 mismatch: base parameter "value" is keyword parameter, override parameter is position-only +   Parameter 5 mismatch: base parameter "extra_meta" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/common.py:2812:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2813:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2822:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2833:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/common.py:2845:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/cpp.py + /torch/_inductor/codegen/cpp.py:143:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:144:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:147:33 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:148:11 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:149:11 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:150:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:151:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:152:11 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:153:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:154:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:155:11 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:156:11 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:157:11 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:158:11 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:161:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:162:11 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:163:11 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:164:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:165:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:166:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:167:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:168:11 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:169:11 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:226:34 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:255:43 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:331:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:514:17 - error: Argument of type "list[Unknown] | list[BaseSchedulerNode]" cannot be assigned to parameter "outer_fused_nodes" of type "list[FusedSchedulerNode | SchedulerNode]" in function "__init__" +   Type "list[Unknown] | list[BaseSchedulerNode]" is not assignable to type "list[FusedSchedulerNode | SchedulerNode]" +     "list[BaseSchedulerNode]" is not assignable to "list[FusedSchedulerNode | SchedulerNode]" +       Type parameter "_T@list" is invariant, but "BaseSchedulerNode" is not the same as "FusedSchedulerNode | SchedulerNode" +       Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /torch/_inductor/codegen/cpp.py:716:9 - error: Method "to_dtype" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 name mismatch: base parameter is named "dtype", override parameter is named "src_dtype" +   Parameter 4 name mismatch: base parameter is named "src_dtype", override parameter is named "use_compute_types" +   Parameter 5 mismatch: base parameter "use_compute_types" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:759:9 - error: Method "to_dtype_bitcast" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 name mismatch: base parameter is named "dtype", override parameter is named "src_dtype" +   Parameter 4 mismatch: base parameter "src_dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:764:9 - error: Method "abs" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:768:9 - error: Method "sin" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:772:9 - error: Method "cos" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:776:9 - error: Method "neg" overrides class "BasicMathOpsMixin" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "a", override parameter is named "x" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:780:9 - error: Method "exp" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:793:9 - error: Method "erf" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:801:9 - error: Method "erfinv" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:805:9 - error: Method "sqrt" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:809:9 - error: Method "rsqrt" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:825:9 - error: Method "tan" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:829:9 - error: Method "tanh" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:833:9 - error: Method "signbit" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:849:9 - error: Method "log" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:853:9 - error: Method "round" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:857:9 - error: Method "floor" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:868:9 - error: Method "ceil" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:872:9 - error: Method "trunc" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:876:9 - error: Method "truncdiv" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:881:9 - error: Method "fmod" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:885:9 - error: Method "isinf" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:889:9 - error: Method "isnan" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:893:9 - error: Method "lgamma" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:897:9 - error: Method "acos" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:901:9 - error: Method "acosh" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:905:9 - error: Method "cosh" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:909:9 - error: Method "sinh" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:913:9 - error: Method "asin" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:917:9 - error: Method "asinh" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:921:9 - error: Method "atan2" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:925:9 - error: Method "atan" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:929:9 - error: Method "atanh" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:933:9 - error: Method "copysign" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:937:9 - error: Method "frexp" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:954:9 - error: Method "hypot" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:966:9 - error: Method "nextafter" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:986:9 - error: Method "minimum" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:990:9 - error: Method "maximum" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:994:9 - error: Method "where" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "condition", override parameter is named "b" +   Parameter 3 name mismatch: base parameter is named "input", override parameter is named "c" +   Parameter 4 mismatch: base parameter "other" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1002:9 - error: Method "constant" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "value", override parameter is named "val" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1006:9 - error: Method "index_expr" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "expr" +   Parameter 2 name mismatch: base parameter is named "expr", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1014:9 - error: Method "masked" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "mask" +   Parameter 2 name mismatch: base parameter is named "mask", override parameter is named "body" +   Parameter 3 name mismatch: base parameter is named "body", override parameter is named "other" +   Parameter 4 mismatch: base parameter "other" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1031:9 - error: Method "logical_and" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1039:9 - error: Method "logical_or" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1043:9 - error: Method "logical_xor" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1047:9 - error: Method "bitwise_and" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "y", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1051:9 - error: Method "bitwise_not" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1055:9 - error: Method "bitwise_or" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "y", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1059:9 - error: Method "bitwise_xor" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "y", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1063:9 - error: Method "bitwise_left_shift" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "y", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1083:9 - error: Method "bitwise_right_shift" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "y", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1101:9 - error: Method "rand" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "seed" +   Parameter 2 name mismatch: base parameter is named "seed", override parameter is named "offset" +   Parameter 3 mismatch: base parameter "offset" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1105:9 - error: Method "randn" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "seed" +   Parameter 2 name mismatch: base parameter is named "seed", override parameter is named "offset" +   Parameter 3 mismatch: base parameter "offset" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1109:9 - error: Method "randint64" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "seed" +   Parameter 2 name mismatch: base parameter is named "seed", override parameter is named "offset" +   Parameter 3 name mismatch: base parameter is named "offset", override parameter is named "low" +   Parameter 4 name mismatch: base parameter is named "low", override parameter is named "high" +   Parameter 5 mismatch: base parameter "high" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1117:9 - error: Method "sign" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1297:9 - error: Method "eq" overrides class "BasicMathOpsMixin" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "a", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "b", override parameter is named "y" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1304:9 - error: Method "ne" overrides class "BasicMathOpsMixin" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "a", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "b", override parameter is named "y" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1316:9 - error: Method "lt" overrides class "BasicMathOpsMixin" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "a", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "b", override parameter is named "y" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1323:9 - error: Method "gt" overrides class "BasicMathOpsMixin" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "a", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "b", override parameter is named "y" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1330:9 - error: Method "le" overrides class "BasicMathOpsMixin" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "a", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "b", override parameter is named "y" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1337:9 - error: Method "ge" overrides class "BasicMathOpsMixin" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "a", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "b", override parameter is named "y" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1344:9 - error: Method "and_" overrides class "BasicMathOpsMixin" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "a", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "b", override parameter is named "y" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1465:9 - error: Method "tan" overrides class "CppOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1469:9 - error: Method "tanh" overrides class "CppOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1481:9 - error: Method "reciprocal" overrides class "OpDecompositions" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1517:9 - error: Method "copysign" overrides class "CppOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "y", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1521:9 - error: Method "atan2" overrides class "CppOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "y", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1525:9 - error: Method "hypot" overrides class "CppOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "y", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1615:9 - error: Method "square" overrides class "OpDecompositions" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:1646:9 - error: Method "to_dtype" overrides class "CppOverrides" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "use_compute_types", override parameter is named "use_compute_dtypes" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:2030:22 - error: Cannot access attribute "codegen_inner_loops" for class "CppKernel*" +   Attribute "codegen_inner_loops" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2111:49 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2118:53 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2166:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2468:37 - error: Argument of type "int" cannot be assigned to parameter "parallel" of type "bool" in function "get_reduction_prefix_suffix" +   "int" is not assignable to "bool" (reportArgumentType) + /torch/_inductor/codegen/cpp.py:2488:41 - error: Argument of type "int" cannot be assigned to parameter "parallel" of type "bool" in function "get_reduction_prefix_suffix" +   "int" is not assignable to "bool" (reportArgumentType) + /torch/_inductor/codegen/cpp.py:2689:45 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2696:49 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2701:42 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2708:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2708:57 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2709:27 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2714:65 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2715:36 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2723:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2741:62 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2743:73 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2745:27 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2760:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2787:42 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2793:42 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2806:39 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2807:39 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2817:40 - error: Argument of type "IndentedBuffer | None" cannot be assigned to parameter "buffer" of type "IndentedBuffer" in function "generate" +   Type "IndentedBuffer | None" is not assignable to type "IndentedBuffer" +     "None" is not assignable to "IndentedBuffer" (reportArgumentType) + /torch/_inductor/codegen/cpp.py:2848:60 - error: Argument of type "Symbol" cannot be assigned to parameter "offset" of type "int" in function "scale_index_with_offset" +   "Symbol" is not assignable to "int" (reportArgumentType) + /torch/_inductor/codegen/cpp.py:2890:20 - error: "splice" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/codegen/cpp.py:2893:40 - error: Argument of type "IndentedBuffer | None" cannot be assigned to parameter "buffer" of type "IndentedBuffer" in function "generate" +   Type "IndentedBuffer | None" is not assignable to type "IndentedBuffer" +     "None" is not assignable to "IndentedBuffer" (reportArgumentType) + /torch/_inductor/codegen/cpp.py:2923:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2946:39 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:2950:31 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:3280:38 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:3366:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:3366:50 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:3368:38 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:3434:35 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:3435:45 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:3437:49 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:3453:50 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:3713:9 - error: Method "set_ranges" overrides class "CppKernel" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "lengths", override parameter is named "group" +   Parameter 3 name mismatch: base parameter is named "reduction_lengths", override parameter is named "reduction_group" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:3739:68 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:3747:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:3803:23 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:4049:72 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:4063:73 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:4075:66 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:4080:64 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:4091:77 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:4113:65 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:4151:35 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:4152:35 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:4153:35 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:4154:35 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:4158:35 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:4159:35 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:4168:53 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:4187:49 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:4218:73 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:4539:9 - error: Method "gen_body" overrides class "CppKernel" in an incompatible manner +   Return type mismatch: base method returns type "BracesBuffer", override returns type "None" +     "None" is not assignable to "BracesBuffer" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:4584:47 - error: Argument of type "Expr | None" cannot be assigned to parameter "var" of type "Symbol | None" in function "codegen_conditions" +   Type "Expr | None" is not assignable to type "Symbol | None" +     Type "Expr" is not assignable to type "Symbol | None" +       "Expr" is not assignable to "Symbol" +       "Expr" is not assignable to "None" (reportArgumentType) + /torch/_inductor/codegen/cpp.py:4590:49 - error: Argument of type "Expr | None" cannot be assigned to parameter "var" of type "Symbol | None" in function "codegen_conditions" +   Type "Expr | None" is not assignable to type "Symbol | None" +     Type "Expr" is not assignable to type "Symbol | None" +       "Expr" is not assignable to "Symbol" +       "Expr" is not assignable to "None" (reportArgumentType) + /torch/_inductor/codegen/cpp.py:4607:33 - error: Argument of type "Expr | None" cannot be assigned to parameter "iter_var" of type "Expr" in function "move_code_under_inner_loop" +   Type "Expr | None" is not assignable to type "Expr" +     "None" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/cpp.py:4610:33 - error: Argument of type "Expr | None" cannot be assigned to parameter "loop_end" of type "Expr" in function "move_code_under_inner_loop" +   Type "Expr | None" is not assignable to type "Expr" +     "None" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/cpp.py:4695:9 - error: Method "get_backend_features" overrides class "BaseScheduling" in an incompatible manner +   Base method is declared as an instance method but override is not (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp.py:4695:49 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp.py:5019:45 - error: "get_default_sizes_body" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/codegen/cpp.py:5290:34 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) +/torch/_inductor/codegen/cpp_flex_attention_template.py + /torch/_inductor/codegen/cpp_flex_attention_template.py:705:39 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_flex_attention_template.py:705:52 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_flex_attention_template.py:705:68 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_flex_attention_template.py:984:39 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/cpp_gemm_template.py + /torch/_inductor/codegen/cpp_gemm_template.py:401:21 - error: Type "TensorBox" is not assignable to declared type "_T@transpose_w" +   Type "TensorBox" is not assignable to type "_T@transpose_w" (reportAssignmentType) + /torch/_inductor/codegen/cpp_gemm_template.py:409:12 - error: Type "Unknown | _T@transpose_w | IRNode* | Tensor*" is not assignable to return type "_T@transpose_w" +   Type "Unknown | _T@transpose_w | IRNode* | Tensor*" is not assignable to type "_T@transpose_w" (reportReturnType) + /torch/_inductor/codegen/cpp_gemm_template.py:420:21 - error: Type "TensorBox" is not assignable to declared type "_T@expand_bias | None" +   Type "TensorBox" is not assignable to type "_T@expand_bias | None" +     Type "TensorBox" is not assignable to type "_T@expand_bias" +     "TensorBox" is not assignable to "None" (reportAssignmentType) + /torch/_inductor/codegen/cpp_gemm_template.py:423:49 - error: "get_size" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/codegen/cpp_gemm_template.py:605:39 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_gemm_template.py:605:52 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_gemm_template.py:605:68 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_gemm_template.py:605:80 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_gemm_template.py:1354:63 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_gemm_template.py:1354:76 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_gemm_template.py:1401:40 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_gemm_template.py:1484:40 - error: Cannot access attribute "layout" for class "IRNode" +   Attribute "layout" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_gemm_template.py:1496:48 - error: Cannot access attribute "layout" for class "IRNode" +   Attribute "layout" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_gemm_template.py:1507:48 - error: Cannot access attribute "layout" for class "IRNode" +   Attribute "layout" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_gemm_template.py:1518:22 - error: Cannot access attribute "get_numel" for class "list[Any]" +   Attribute "get_numel" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_gemm_template.py:1556:34 - error: "_cpu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_gemm_template.py:1559:34 - error: "_cpu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_gemm_template.py:1571:31 - error: Cannot access attribute "get_name" for class "list[Any]" +   Attribute "get_name" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_gemm_template.py:1589:33 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_gemm_template.py:1589:63 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_gemm_template.py:1615:40 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_gemm_template.py:1616:40 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/cpp_grouped_gemm_template.py + /torch/_inductor/codegen/cpp_grouped_gemm_template.py:195:9 - error: Method "add_choices" overrides class "CppGemmTemplate" in an incompatible manner +   Parameter 7 type mismatch: base parameter is type "bool", override parameter is type "tuple[bool, ...]" +     "bool" is not assignable to "tuple[bool, ...]" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp_grouped_gemm_template.py:374:16 - error: "__getitem__" method not defined on type "bool" (reportIndexIssue) + /torch/_inductor/codegen/cpp_grouped_gemm_template.py:415:34 - error: "_cpu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_grouped_gemm_template.py:418:34 - error: "_cpu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_grouped_gemm_template.py:491:33 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/cpp_micro_gemm.py + /torch/_inductor/codegen/cpp_micro_gemm.py:229:24 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:230:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:231:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:232:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:347:27 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:352:27 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:353:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:358:27 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:359:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:364:27 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:365:28 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:366:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:367:29 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:376:27 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:377:28 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:378:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:379:29 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:385:27 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:390:27 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:391:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:396:27 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:397:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:402:27 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:403:28 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:404:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:405:29 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:414:27 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:415:28 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:416:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:417:29 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:423:27 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:424:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:425:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:426:29 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:431:27 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:432:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:433:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:434:29 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:989:27 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:990:28 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:991:28 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:992:29 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:998:27 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:999:28 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1000:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1001:29 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1007:27 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1008:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1014:27 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1015:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1021:27 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1022:28 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1023:28 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1024:29 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1281:39 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1281:52 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1289:43 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1290:49 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1290:61 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1348:27 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1349:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1430:27 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1431:28 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1432:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1433:29 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1681:27 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1682:28 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1683:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_micro_gemm.py:1684:29 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/cpp_template_kernel.py + /torch/_inductor/codegen/cpp_template_kernel.py:101:13 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Expr" in function "__setitem__" +   "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/cpp_template_kernel.py:129:39 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_template_kernel.py:129:54 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_template_kernel.py:129:70 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_template_kernel.py:207:65 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_template_kernel.py:211:52 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_template_kernel.py:219:51 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_template_kernel.py:224:52 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_template_kernel.py:259:26 - error: Type "list[None]" is not assignable to declared type "list[((list[Any]) -> list[Any]) | None] | None" +   Type "list[None]" is not assignable to type "list[((list[Any]) -> list[Any]) | None] | None" +     "list[None]" is not assignable to "list[((list[Any]) -> list[Any]) | None]" +       Type parameter "_T@list" is invariant, but "None" is not the same as "((list[Any]) -> list[Any]) | None" +       Consider switching from "list" to "Sequence" which is covariant +     "list[None]" is not assignable to "None" (reportAssignmentType) + /torch/_inductor/codegen/cpp_template_kernel.py:269:25 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_template_kernel.py:322:24 - error: Argument of type "Expr" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   "Expr" is incompatible with protocol "Sized" +     "__len__" is not present (reportArgumentType) + /torch/_inductor/codegen/cpp_template_kernel.py:331:25 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_template_kernel.py:451:30 - error: Type "list[None]" is not assignable to declared type "list[((list[Any]) -> list[Any]) | None] | None" +   Type "list[None]" is not assignable to type "list[((list[Any]) -> list[Any]) | None] | None" +     "list[None]" is not assignable to "list[((list[Any]) -> list[Any]) | None]" +       Type parameter "_T@list" is invariant, but "None" is not the same as "((list[Any]) -> list[Any]) | None" +       Consider switching from "list" to "Sequence" which is covariant +     "list[None]" is not assignable to "None" (reportAssignmentType) + /torch/_inductor/codegen/cpp_template_kernel.py:491:40 - error: "append" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/codegen/cpp_template_kernel.py:500:21 - error: Argument of type "list[((list[Any]) -> list[Any]) | None] | None" cannot be assigned to parameter "reindexers" of type "list[((list[Any]) -> list[Any]) | None]" in function "store_grouped_gemm_pointwise_nodes" +   Type "list[((list[Any]) -> list[Any]) | None] | None" is not assignable to type "list[((list[Any]) -> list[Any]) | None]" +     "None" is not assignable to "list[((list[Any]) -> list[Any]) | None]" (reportArgumentType) + /torch/_inductor/codegen/cpp_template_kernel.py:526:34 - error: Type "list[None]" is not assignable to declared type "list[((list[Any]) -> list[Any]) | None] | None" +   Type "list[None]" is not assignable to type "list[((list[Any]) -> list[Any]) | None] | None" +     "list[None]" is not assignable to "list[((list[Any]) -> list[Any]) | None]" +       Type parameter "_T@list" is invariant, but "None" is not the same as "((list[Any]) -> list[Any]) | None" +       Consider switching from "list" to "Sequence" which is covariant +     "list[None]" is not assignable to "None" (reportAssignmentType) + /torch/_inductor/codegen/cpp_template_kernel.py:531:36 - error: Argument of type "list[((list[Any]) -> list[Any]) | None] | None" cannot be assigned to parameter "reindexers" of type "list[((list[Any]) -> list[Any]) | None]" in function "store_grouped_gemm_pointwise_nodes" +   Type "list[((list[Any]) -> list[Any]) | None] | None" is not assignable to type "list[((list[Any]) -> list[Any]) | None]" +     "None" is not assignable to "list[((list[Any]) -> list[Any]) | None]" (reportArgumentType) +/torch/_inductor/codegen/cpp_utils.py + /torch/_inductor/codegen/cpp_utils.py:32:11 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:33:11 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:34:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:35:11 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:36:11 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:37:11 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:38:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:39:11 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:40:11 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:41:11 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:42:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:43:11 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:44:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:45:11 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:46:11 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:47:11 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:48:11 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:49:11 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:50:11 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:51:11 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:55:11 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:56:11 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:57:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:58:11 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:59:11 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:60:11 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:61:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:62:11 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:63:11 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:64:11 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:65:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:66:11 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:67:11 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:68:11 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:69:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:70:11 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:71:11 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:72:11 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:73:11 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:74:11 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:75:11 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:76:11 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:88:11 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:148:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:439:26 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:442:23 - error: Cannot access attribute "inner_fn" for class "IRNode" +   Attribute "inner_fn" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_utils.py:446:45 - error: Argument of type "Unknown | IRNode" cannot be assigned to parameter "obj" of type "_DataclassT@replace" in function "replace" +   Type "Unknown | IRNode" is not assignable to type "DataclassInstance" +     Type "Unknown | IRNode" is not assignable to type "DataclassInstance" +       "IRNode" is incompatible with protocol "DataclassInstance" +         "__dataclass_fields__" is not present (reportArgumentType) + /torch/_inductor/codegen/cpp_utils.py:462:17 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/cpp_wrapper_cpu.py + /torch/_inductor/codegen/cpp_wrapper_cpu.py:351:36 - error: Argument of type "Basic" cannot be assigned to parameter "elem" of type "Symbol" in function "add" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:360:22 - error: Cannot access attribute "is_integer" for class " and Symbol>" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:362:24 - error: Cannot access attribute "is_float" for class " and Symbol>" +   Attribute "is_float" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:372:32 - error: Argument of type "_IntLike" cannot be assigned to parameter "sym_or_exp" of type "Symbol | Expr" in function "codegen_symbol" +   Type "_IntLike" is not assignable to type "Symbol | Expr" +     Type "int" is not assignable to type "Symbol | Expr" +       "int" is not assignable to "Symbol" +       "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:1073:28 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:1078:27 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:1078:53 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:1112:46 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:1316:23 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2012:9 - error: Method "codegen_subgraph" overrides class "PythonWrapperCodegen" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "outer_buffer_name", override parameter is named "outer_outputs" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2202:47 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2208:42 - error: "JitType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2210:46 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2218:48 - error: "SymIntType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2220:48 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2221:53 - error: "SymIntType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2230:37 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2230:55 - error: "NoneType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2230:71 - error: "IntType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2233:48 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2234:71 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2235:48 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2236:71 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2253:31 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2259:27 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2273:19 - error: "BoolType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2274:19 - error: "DeviceObjType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2275:19 - error: "FloatType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2278:19 - error: "IntType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2279:19 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2282:37 - error: "JitType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2283:36 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2564:43 - error: "JitType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2578:47 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2597:47 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2766:36 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2768:38 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2770:39 - error: "IntType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2770:54 - error: "SymIntType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2773:27 - error: "BoolType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2773:43 - error: "SymBoolType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2773:62 - error: "EnumType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2776:38 - error: "FloatType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2778:38 - error: "NumberType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2790:38 - error: "StringType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2810:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2812:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2814:36 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2816:36 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2830:9 - error: Method "val_to_arg_str" overrides class "PythonWrapperCodegen" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "s", override parameter is named "val" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2833:57 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2837:31 - error: "DeviceObjType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2838:31 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2839:31 - error: "TupleType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2845:40 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2857:36 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2858:34 - error: "getElementType" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2863:48 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2863:64 - error: "TupleType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2868:47 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2873:47 - error: "DeviceObjType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2883:37 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2883:53 - error: "TupleType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2887:34 - error: "getElementType" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2895:47 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2901:47 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2913:36 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu.py:2982:38 - error: Cannot access attribute "get_stack_traces" for class "Sequence[BaseSchedulerNode]" +   Attribute "get_stack_traces" is unknown (reportAttributeAccessIssue) +/torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py + /torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:413:46 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:571:9 - error: Method "make_allocation" overrides class "CppWrapperCpu" in an incompatible manner +   Parameter 7 name mismatch: base parameter is named "allocation_shape", override parameter is named "buffer_if_can_stack_allocate" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:858:41 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:859:34 - error: "getElementType" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:859:58 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:862:58 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:873:28 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:878:27 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:878:53 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/cpp_wrapper_gpu.py + /torch/_inductor/codegen/cpp_wrapper_gpu.py:14:19 - error: "dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_gpu.py:750:66 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_gpu.py:827:17 - error: Argument of type "Unknown | None" cannot be assigned to parameter "arg_types" of type "list[Any]" in function "prepare_triton_wrapper_args" +   Type "Unknown | None" is not assignable to type "list[Any]" +     "None" is not assignable to "list[Any]" (reportArgumentType) + /torch/_inductor/codegen/cpp_wrapper_gpu.py:852:38 - error: Argument of type "Unknown | None" cannot be assigned to parameter "iter1" of type "Iterable[_T1@__new__]" in function "__new__" +   Type "Unknown | None" is not assignable to type "Iterable[_T1@__new__]" +     "None" is incompatible with protocol "Iterable[_T1@__new__]" +       "__iter__" is not present (reportArgumentType) +/torch/_inductor/codegen/cpp_wrapper_mps.py + /torch/_inductor/codegen/cpp_wrapper_mps.py:39:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cpp_wrapper_mps.py:64:19 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/codegen/cpp_wrapper_mps.py:78:23 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/codegen/cpp_wrapper_mps.py:84:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py + /torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py:49:9 - error: Method "get_backend_features" overrides class "BaseScheduling" in an incompatible manner +   Base method is declared as an instance method but override is not (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py:229:38 - error: "data" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py:238:21 - error: "get_size" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py:240:44 - error: "get_size" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/_inductor/codegen/cuda/cuda_env.py + /torch/_inductor/codegen/cuda/cuda_env.py:47:16 - error: Type "Module("torch.cuda") | str" is not assignable to return type "str | None" +   Type "Module("torch.cuda") | str" is not assignable to type "str | None" +     Type "Module("torch.cuda")" is not assignable to type "str | None" +       Type "Module("torch.cuda")" is not assignable to type "str" +       Type is not assignable to "None" (reportReturnType) +/torch/_inductor/codegen/cuda/cuda_kernel.py + /torch/_inductor/codegen/cuda/cuda_kernel.py:13:19 - error: "dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cuda_kernel.py:483:16 - error: Type "Expr" is not assignable to return type "str" +   "Expr" is not assignable to "str" (reportReturnType) + /torch/_inductor/codegen/cuda/cuda_kernel.py:502:50 - error: Argument of type "_IntLike" cannot be assigned to parameter "left" of type "Expr" in function "statically_known_leq" +   Type "_IntLike" is not assignable to type "Expr" +     "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/cuda/cuda_kernel.py:521:50 - error: Argument of type "_IntLike" cannot be assigned to parameter "left" of type "Expr" in function "statically_known_leq" +   Type "_IntLike" is not assignable to type "Expr" +     "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/cuda/cuda_kernel.py:545:47 - error: Argument of type "_IntLike" cannot be assigned to parameter "index" of type "list[Expr] | tuple[Expr, ...] | Expr" in function "rename_indexing" +   Type "_IntLike" is not assignable to type "list[Expr] | tuple[Expr, ...] | Expr" +     Type "int" is not assignable to type "list[Expr] | tuple[Expr, ...] | Expr" +       "int" is not assignable to "list[Expr]" +       "int" is not assignable to "tuple[Expr, ...]" +       "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/cuda/cuda_kernel.py:547:47 - error: Argument of type "_IntLike" cannot be assigned to parameter "index" of type "list[Expr] | tuple[Expr, ...] | Expr" in function "rename_indexing" +   Type "_IntLike" is not assignable to type "list[Expr] | tuple[Expr, ...] | Expr" +     Type "int" is not assignable to type "list[Expr] | tuple[Expr, ...] | Expr" +       "int" is not assignable to "list[Expr]" +       "int" is not assignable to "tuple[Expr, ...]" +       "int" is not assignable to "Expr" (reportArgumentType) +/torch/_inductor/codegen/cuda/cuda_template.py + /torch/_inductor/codegen/cuda/cuda_template.py:76:9 - error: "_template_from_string" overrides method of same name in class "KernelTemplate" with incompatible type "_lru_cache_wrapper[Any]" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cuda/cuda_template.py:354:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cuda_template.py:355:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cuda_template.py:356:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cuda_template.py:357:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cuda_template.py:358:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cuda_template.py:359:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cuda_template.py:360:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cuda_template.py:361:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cuda_template.py:362:15 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cuda_template.py:363:15 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cuda_template.py:367:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cuda_template.py:368:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cuda_template.py:386:9 - error: Method "get_runtime_arg_info" is marked as override, but no base method of same name is present (reportGeneralTypeIssues) + /torch/_inductor/codegen/cuda/cuda_template.py:390:9 - error: Method "get_runtime_arg_values" is marked as override, but no base method of same name is present (reportGeneralTypeIssues) +/torch/_inductor/codegen/cuda/cutlass_cache.py + /torch/_inductor/codegen/cuda/cutlass_cache.py:105:14 - error: Import "torch._inductor.fb.cutlass_remote_cache" could not be resolved (reportMissingImports) +/torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py + /torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py:52:10 - error: Import "cutlass_library" could not be resolved (reportMissingImports) +/torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py + /torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:11:10 - error: Import "cutlass_library.gemm_operation" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:12:10 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:14:15 - error: "logging" is not defined (reportUndefinedVariable) +/torch/_inductor/codegen/cuda/cutlass_python_evt.py + /torch/_inductor/codegen/cuda/cutlass_python_evt.py:60:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_python_evt.py:106:7 - error: Base classes for class "MockCutlassHandler" define method "constant" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "value" +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cuda/cutlass_python_evt.py:106:7 - error: Base classes for class "MockCutlassHandler" define method "to_dtype" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 name mismatch: base parameter is named "dtype", override parameter is named "src_dtype" +   Parameter 4 name mismatch: base parameter is named "src_dtype", override parameter is named "use_compute_types" +   Parameter 5 mismatch: base parameter "use_compute_types" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cuda/cutlass_python_evt.py:106:7 - error: Base classes for class "MockCutlassHandler" define method "exp" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x0" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cuda/cutlass_python_evt.py:106:7 - error: Base classes for class "MockCutlassHandler" define method "relu" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x0" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cuda/cutlass_python_evt.py:106:7 - error: Base classes for class "MockCutlassHandler" define method "tanh" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x0" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cuda/cutlass_python_evt.py:106:7 - error: Base classes for class "MockCutlassHandler" define method "sigmoid" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x0" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cuda/cutlass_python_evt.py:106:7 - error: Base classes for class "MockCutlassHandler" define method "ge" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x0" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "x1" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cuda/cutlass_python_evt.py:106:7 - error: Base classes for class "MockCutlassHandler" define method "add" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x0" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "x1" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cuda/cutlass_python_evt.py:106:7 - error: Base classes for class "MockCutlassHandler" define method "sub" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x0" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "x1" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cuda/cutlass_python_evt.py:106:7 - error: Base classes for class "MockCutlassHandler" define method "mul" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x0" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "x1" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cuda/cutlass_python_evt.py:106:7 - error: Base classes for class "MockCutlassHandler" define method "truediv" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x0" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "x1" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cuda/cutlass_python_evt.py:199:26 - error: "get_store_function" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/_inductor/codegen/cuda/cutlass_utils.py + /torch/_inductor/codegen/cuda/cutlass_utils.py:32:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:32:65 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:32:78 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:33:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:34:12 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:34:24 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:34:40 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:34:61 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:160:20 - error: Import "cutlass_library.generator" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/cutlass_utils.py:161:20 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/cutlass_utils.py:162:20 - error: Import "cutlass_library.manifest" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/cutlass_utils.py:242:12 - error: Import "cutlass_library.generator" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/cutlass_utils.py:243:12 - error: Import "cutlass_library.manifest" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/cutlass_utils.py:298:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:299:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:300:11 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:306:24 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:312:29 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:314:31 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:316:31 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:324:33 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:329:12 - error: Import "cutlass_library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/cutlass_utils.py:331:29 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:336:31 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:338:31 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:340:31 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:342:31 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:344:31 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:346:31 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:353:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:354:21 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:370:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:371:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:376:29 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:376:41 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:377:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:378:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:382:30 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:382:45 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:382:61 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:382:74 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:383:35 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:384:31 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:385:35 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:396:39 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:402:30 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:402:42 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:404:31 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:406:32 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:406:45 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:406:57 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/cutlass_utils.py:408:31 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/cuda/device_op_overrides.py + /torch/_inductor/codegen/cuda/device_op_overrides.py:127:26 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/device_op_overrides.py:139:26 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/cuda/gemm_template.py + /torch/_inductor/codegen/cuda/gemm_template.py:478:27 - warning: Static methods should not take a "self" or "cls" parameter (reportSelfClsParameterName) + /torch/_inductor/codegen/cuda/gemm_template.py:658:16 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/gemm_template.py:674:16 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/gemm_template.py:1003:16 - error: Import "cutlass_library.gemm_operation" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/gemm_template.py:1089:16 - error: Import "cutlass_library.gemm_operation" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/gemm_template.py:1090:16 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/gemm_template.py:1321:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/gemm_template.py:1322:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/gemm_template.py:1372:16 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/gemm_template.py:1391:16 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/gemm_template.py:1483:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/gemm_template.py:1484:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda/gemm_template.py:1530:16 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/gemm_template.py:1571:16 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/gemm_template.py:1743:16 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/gemm_template.py:1748:27 - warning: Static methods should not take a "self" or "cls" parameter (reportSelfClsParameterName) + /torch/_inductor/codegen/cuda/gemm_template.py:1758:16 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/gemm_template.py:1792:16 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/gemm_template.py:1805:16 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/gemm_template.py:1822:16 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/gemm_template.py:1859:16 - error: Import "cutlass_library.gemm_operation" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/gemm_template.py:1860:16 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/gemm_template.py:1885:16 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) +/torch/_inductor/codegen/cuda/serialization.py + /torch/_inductor/codegen/cuda/serialization.py:69:14 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/serialization.py:131:14 - error: Import "cutlass_library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/serialization.py:132:14 - error: Import "cutlass_library.gemm_operation" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/serialization.py:133:14 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/serialization.py:275:14 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/serialization.py:360:14 - error: Import "cutlass_library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/serialization.py:361:14 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/serialization.py:444:14 - error: Import "cutlass_library" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/cuda/serialization.py:445:14 - error: Import "cutlass_library.library" could not be resolved (reportMissingImports) +/torch/_inductor/codegen/cuda_combined_scheduling.py + /torch/_inductor/codegen/cuda_combined_scheduling.py:50:50 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cuda_combined_scheduling.py:92:9 - error: Method "group_fn" overrides class "BaseScheduling" in an incompatible manner +   Return type mismatch: base method returns type "tuple[tuple[Expr, ...], ...]", override returns type "tuple[tuple[_IntLike, ...], ...]" +     "tuple[tuple[_IntLike, ...], ...]" is not assignable to "tuple[tuple[Expr, ...], ...]" +       Tuple entry 1 is incorrect type +         "tuple[_IntLike, ...]" is not assignable to "tuple[Expr, ...]" +           Tuple entry 1 is incorrect type (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cuda_combined_scheduling.py:95:49 - error: Argument of type "Sequence[Sequence[_IntLike]]" cannot be assigned to parameter "sizes" of type "Sequence[Sequence[Expr]]" in function "group_fn" +   "Sequence[Sequence[_IntLike]]" is not assignable to "Sequence[Sequence[Expr]]" +     Type parameter "_T_co@Sequence" is covariant, but "Sequence[_IntLike]" is not a subtype of "Sequence[Expr]" +       "Sequence[_IntLike]" is not assignable to "Sequence[Expr]" +         Type parameter "_T_co@Sequence" is covariant, but "_IntLike" is not a subtype of "Expr" +           Type "_IntLike" is not assignable to type "Expr" (reportArgumentType) +/torch/_inductor/codegen/cutedsl/_cutedsl_utils.py + /torch/_inductor/codegen/cutedsl/_cutedsl_utils.py:3:8 - error: Import "cutlass.cute" could not be resolved (reportMissingImports) +/torch/_inductor/codegen/cutedsl/cutedsl_kernel.py + /torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:411:52 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:416:22 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:416:77 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:431:74 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:444:37 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:444:52 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:448:35 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:466:66 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:480:9 - error: Method "indirect_indexing" overrides class "OpsHandler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "index_var" +   Parameter 4 mismatch: base parameter has default argument value, override parameter does not (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:485:9 - error: Method "store" overrides class "OpsHandler" in an incompatible manner +   Return type mismatch: base method returns type "None", override returns type "str" +     "str" is not assignable to "None" (reportIncompatibleMethodOverride) +/torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:23:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:23:54 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:25:24 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:25:39 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:26:22 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:39:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:40:15 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:41:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:42:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:43:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:44:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:45:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:46:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:47:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:48:15 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:49:15 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:81:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:147:63 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:182:9 - error: Method "exp" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:189:9 - error: Method "sqrt" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:194:9 - error: Method "log" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:199:9 - error: Method "cos" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:204:9 - error: Method "sin" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:209:9 - error: Method "erf" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:214:9 - error: Method "maximum" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:218:9 - error: Method "minimum" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:222:9 - error: Method "where" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "condition" +   Parameter 2 name mismatch: base parameter is named "condition", override parameter is named "a" +   Parameter 3 name mismatch: base parameter is named "input", override parameter is named "b" +   Parameter 4 mismatch: base parameter "other" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:262:9 - error: Method "abs" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:269:29 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:273:34 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:273:49 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:273:65 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:283:9 - error: Method "neg" overrides class "BasicMathOpsMixin" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "a", override parameter is named "x" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:291:9 - error: Method "to_dtype" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 name mismatch: base parameter is named "dtype", override parameter is named "src_dtype" +   Parameter 4 name mismatch: base parameter is named "src_dtype", override parameter is named "use_compute_types" +   Parameter 5 mismatch: base parameter "use_compute_types" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:292:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:319:9 - error: Method "tanh" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x0" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:325:9 - error: Method "logical_and" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x0" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "x1" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:329:9 - error: Method "logical_or" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x0" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "x1" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) +/torch/_inductor/codegen/cutedsl/cutedsl_scheduling.py + /torch/_inductor/codegen/cutedsl/cutedsl_scheduling.py:36:9 - error: Method "get_backend_features" overrides class "BaseScheduling" in an incompatible manner +   Base method is declared as an instance method but override is not (reportIncompatibleMethodOverride) +/torch/_inductor/codegen/cutedsl/cutedsl_template.py + /torch/_inductor/codegen/cutedsl/cutedsl_template.py:47:9 - error: "_template_from_string" overrides method of same name in class "KernelTemplate" with incompatible type "_lru_cache_wrapper[Any]" (reportIncompatibleMethodOverride) +/torch/_inductor/codegen/debug_utils.py + /torch/_inductor/codegen/debug_utils.py:11:19 - error: "dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/_inductor/codegen/debug_utils.py:271:46 - error: "codegen" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) +/torch/_inductor/codegen/halide.py + /torch/_inductor/codegen/halide.py:215:11 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:216:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:217:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:218:11 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:219:11 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:220:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:221:11 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:222:11 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:223:11 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:224:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:225:11 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:226:11 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:227:11 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:245:9 - error: Method "to_dtype" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 name mismatch: base parameter is named "dtype", override parameter is named "src_dtype" +   Parameter 4 name mismatch: base parameter is named "src_dtype", override parameter is named "use_compute_types" +   Parameter 5 mismatch: base parameter "use_compute_types" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:247:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:248:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:251:27 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:256:9 - error: Method "to_dtype_bitcast" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 name mismatch: base parameter is named "dtype", override parameter is named "src_dtype" +   Parameter 4 mismatch: base parameter "src_dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:256:42 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:256:66 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:257:32 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:257:47 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:260:28 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:260:43 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:265:9 - error: Method "constant" overrides class "OpOverrides" in an incompatible manner +   Base method is declared as a staticmethod but override is not +   Positional parameter count mismatch; base method has 2, but override has 3 +   Parameter 2 name mismatch: base parameter is named "dtype", override parameter is named "value" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:269:9 - error: Method "abs" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:273:9 - error: Method "exp" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:279:9 - error: Method "sqrt" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:283:9 - error: Method "minimum" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:291:9 - error: Method "maximum" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:299:9 - error: Method "where" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "condition", override parameter is named "b" +   Parameter 3 name mismatch: base parameter is named "input", override parameter is named "c" +   Parameter 4 mismatch: base parameter "other" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:305:9 - error: Method "cos" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:309:9 - error: Method "sin" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:313:9 - error: Method "lgamma" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:317:9 - error: Method "erf" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:321:9 - error: Method "cosh" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:325:9 - error: Method "sinh" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:329:9 - error: Method "acos" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:333:9 - error: Method "acosh" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:337:9 - error: Method "asin" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:341:9 - error: Method "asinh" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:345:9 - error: Method "atan2" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:349:9 - error: Method "atan" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:353:9 - error: Method "atanh" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:357:9 - error: Method "copysign" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:361:9 - error: Method "erfinv" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:365:9 - error: Method "hypot" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:369:9 - error: Method "nextafter" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:373:9 - error: Method "logical_and" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:381:9 - error: Method "logical_or" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:385:9 - error: Method "logical_xor" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:389:9 - error: Method "bitwise_and" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "y", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:393:9 - error: Method "bitwise_not" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:397:9 - error: Method "bitwise_or" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "y", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:401:9 - error: Method "bitwise_xor" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "y", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:405:9 - error: Method "bitwise_left_shift" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "y", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:409:9 - error: Method "bitwise_right_shift" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "y", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:413:9 - error: Method "rand" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "seed" +   Parameter 2 name mismatch: base parameter is named "seed", override parameter is named "offset" +   Parameter 3 mismatch: base parameter "offset" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:417:9 - error: Method "randn" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "seed" +   Parameter 2 name mismatch: base parameter is named "seed", override parameter is named "offset" +   Parameter 3 mismatch: base parameter "offset" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:421:9 - error: Method "randint64" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "seed" +   Parameter 2 name mismatch: base parameter is named "seed", override parameter is named "offset" +   Parameter 3 name mismatch: base parameter is named "offset", override parameter is named "low" +   Parameter 4 name mismatch: base parameter is named "low", override parameter is named "high" +   Parameter 5 mismatch: base parameter "high" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:429:9 - error: Method "rsqrt" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:434:9 - error: Method "tan" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:438:9 - error: Method "tanh" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:442:9 - error: Method "signbit" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:446:9 - error: Method "fmod" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:455:9 - error: Method "log" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:463:9 - error: Method "isinf" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:468:9 - error: Method "isnan" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:473:9 - error: Method "round" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:477:9 - error: Method "floor" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:492:9 - error: Method "sign" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "x" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:499:9 - error: Method "trunc" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:503:9 - error: Method "truncdiv" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:511:9 - error: Method "ceil" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:519:9 - error: Method "index_expr" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:531:9 - error: Method "indirect_indexing" overrides class "OpOverrides" in an incompatible manner +   Base method is declared as an instance method but override is not +   Parameter 2 name mismatch: base parameter is named "var", override parameter is named "index_var" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:539:9 - error: Method "halide_clamp" overrides class "OpOverrides" in an incompatible manner +   Base method is declared as an instance method but override is not (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:548:9 - error: Method "masked" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "mask" +   Parameter 2 name mismatch: base parameter is named "mask", override parameter is named "body" +   Parameter 3 name mismatch: base parameter is named "body", override parameter is named "other" +   Parameter 4 mismatch: base parameter "other" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:566:9 - error: Method "frexp" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:570:9 - error: Method "device_assert_async" overrides class "OpOverrides" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "cond" +   Parameter 2 name mismatch: base parameter is named "cond", override parameter is named "msg" +   Parameter 3 mismatch: base parameter "msg" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:575:9 - error: Method "partial_accumulate" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "name" +   Parameter 2 name mismatch: base parameter is named "name", override parameter is named "reduction_type" +   Parameter 3 name mismatch: base parameter is named "reduction_type", override parameter is named "value" +   Parameter 4 name mismatch: base parameter is named "value", override parameter is named "extra_meta" +   Parameter 5 mismatch: base parameter "extra_meta" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:594:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:720:41 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:745:19 - error: Type "dict[Expr, Any | None]" is not assignable to declared type "Sequence[Expr]" +   "dict[Expr, Any | None]" is not assignable to "Sequence[Expr]" (reportAssignmentType) + /torch/_inductor/codegen/halide.py:811:42 - error: Argument of type "Literal[1]" cannot be assigned to parameter "divisor" of type "Expr" in function "lookup" +   "Literal[1]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/halide.py:1130:21 - error: "None" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/_inductor/codegen/halide.py:1133:28 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:1133:43 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:1134:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:1175:21 - error: "None" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/_inductor/codegen/halide.py:1199:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:1200:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:1299:9 - error: Method "scan" overrides class "Kernel" in an incompatible manner +   Parameter 4 name mismatch: base parameter is named "values", override parameter is named "values_orig" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:1301:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/halide.py:1670:39 - error: Argument of type "str | None" cannot be assigned to parameter "graph_name" of type "str" in function "write_get_raw_stream" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /torch/_inductor/codegen/halide.py:1693:9 - error: Method "get_backend_features" overrides class "BaseScheduling" in an incompatible manner +   Base method is declared as an instance method but override is not (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/halide.py:1693:49 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/memory_planning.py + /torch/_inductor/codegen/memory_planning.py:304:9 - error: "get_live_ranges" overrides method of same name in class "AllocationTreeNode" with incompatible type "CachedMethod[(), LiveRanges]" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/memory_planning.py:312:9 - error: "get_size_hint" overrides method of same name in class "AllocationTreeNode" with incompatible type "CachedMethod[(), int]" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/memory_planning.py:318:9 - error: "get_symbolic_size" overrides method of same name in class "AllocationTreeNode" with incompatible type "CachedMethod[(), Expr]" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/memory_planning.py:354:9 - error: "get_live_ranges" overrides method of same name in class "AllocationTreeNode" with incompatible type "CachedMethod[(), Unknown]" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/memory_planning.py:362:9 - error: "get_size_hint" overrides method of same name in class "AllocationTreeNode" with incompatible type "CachedMethod[(), int]" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/memory_planning.py:366:9 - error: "get_symbolic_size" overrides method of same name in class "AllocationTreeNode" with incompatible type "CachedMethod[(), Expr]" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/memory_planning.py:387:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/memory_planning.py:467:33 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/memory_planning.py:489:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/mps.py + /torch/_inductor/codegen/mps.py:44:11 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:45:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:46:11 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:47:11 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:48:11 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:49:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:50:11 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:51:11 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:52:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:77:17 - error: Cannot access attribute "is_integer" for class "Expr" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:86:21 - error: Cannot access attribute "is_integer" for class "Expr" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:120:19 - error: Cannot access attribute "is_integer" for class "Basic" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:122:20 - error: Operator "<" not supported for types "Basic" and "Literal[0]" (reportOperatorIssue) + /torch/_inductor/codegen/mps.py:127:82 - error: Operator "-" not supported for type "Basic" (reportOperatorIssue) + /torch/_inductor/codegen/mps.py:145:17 - error: Cannot access attribute "is_integer" for class "Expr" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:175:9 - error: Method "to_dtype" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 name mismatch: base parameter is named "dtype", override parameter is named "src_dtype" +   Parameter 4 name mismatch: base parameter is named "src_dtype", override parameter is named "use_compute_types" +   Parameter 5 mismatch: base parameter "use_compute_types" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:177:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:178:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:181:27 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:189:9 - error: Method "to_dtype_bitcast" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 name mismatch: base parameter is named "dtype", override parameter is named "src_dtype" +   Parameter 4 mismatch: base parameter "src_dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:190:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:190:62 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:195:9 - error: Method "constant" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "value", override parameter is named "val" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:195:61 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:199:9 - error: Method "index_expr" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "expr" +   Parameter 2 name mismatch: base parameter is named "expr", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:199:51 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:207:9 - error: Method "masked" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "mask" +   Parameter 2 name mismatch: base parameter is named "mask", override parameter is named "body" +   Parameter 3 name mismatch: base parameter is named "body", override parameter is named "other" +   Parameter 4 mismatch: base parameter "other" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:210:22 - error: Object of type "Expr" is not callable +   Attribute "__call__" is unknown (reportCallIssue) + /torch/_inductor/codegen/mps.py:218:9 - error: Method "where" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "condition", override parameter is named "b" +   Parameter 3 name mismatch: base parameter is named "input", override parameter is named "c" +   Parameter 4 mismatch: base parameter "other" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:226:9 - error: Method "maximum" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:232:9 - error: Method "minimum" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:238:9 - error: Method "logical_or" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:242:9 - error: Method "logical_and" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:246:9 - error: Method "isnan" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:250:9 - error: Method "isinf" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:254:9 - error: Method "log" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:258:9 - error: Method "exp" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:262:9 - error: Method "abs" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:266:9 - error: Method "signbit" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:270:9 - error: Method "sin" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:278:9 - error: Method "cos" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:282:9 - error: Method "tan" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:286:9 - error: Method "asin" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:290:9 - error: Method "acos" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:294:9 - error: Method "atan" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:298:9 - error: Method "atan2" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:302:9 - error: Method "sqrt" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:306:9 - error: Method "neg" overrides class "BasicMathOpsMixin" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "a", override parameter is named "x" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:312:9 - error: Method "rsqrt" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:316:9 - error: Method "tanh" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:320:9 - error: Method "atanh" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:329:9 - error: Method "floor" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:333:9 - error: Method "sign" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:337:9 - error: Method "fmod" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:343:9 - error: Method "trunc" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:347:9 - error: Method "truncdiv" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:356:9 - error: Method "ceil" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:360:9 - error: Method "rand" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "seed" +   Parameter 2 name mismatch: base parameter is named "seed", override parameter is named "offset" +   Parameter 3 mismatch: base parameter "offset" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:365:9 - error: Method "randn" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "seed" +   Parameter 2 name mismatch: base parameter is named "seed", override parameter is named "offset" +   Parameter 3 mismatch: base parameter "offset" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:370:9 - error: Method "randint64" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "seed" +   Parameter 2 name mismatch: base parameter is named "seed", override parameter is named "offset" +   Parameter 3 name mismatch: base parameter is named "offset", override parameter is named "low" +   Parameter 4 name mismatch: base parameter is named "low", override parameter is named "high" +   Parameter 5 mismatch: base parameter "high" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:377:9 - error: Method "round" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/mps.py:486:41 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:495:28 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:495:43 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:500:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:537:16 - error: Union requires two or more type arguments (reportInvalidTypeArguments) + /torch/_inductor/codegen/mps.py:537:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:543:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:550:39 - error: Argument of type "int" cannot be assigned to parameter of type "Expr" +   "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/mps.py:559:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:560:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:575:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:576:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:639:51 - error: Argument of type "int | Expr" cannot be assigned to parameter "elem_count" of type "int | None" in function "_new_idxvar" +   Type "int | Expr" is not assignable to type "int | None" +     Type "Expr" is not assignable to type "int | None" +       "Expr" is not assignable to "int" +       "Expr" is not assignable to "None" (reportArgumentType) + /torch/_inductor/codegen/mps.py:657:51 - error: Argument of type "int | Expr" cannot be assigned to parameter "elem_count" of type "int | None" in function "_new_idxvar" +   Type "int | Expr" is not assignable to type "int | None" +     Type "Expr" is not assignable to type "int | None" +       "Expr" is not assignable to "int" +       "Expr" is not assignable to "None" (reportArgumentType) + /torch/_inductor/codegen/mps.py:677:56 - error: Argument of type "int | Expr" cannot be assigned to parameter "elem_count" of type "int | None" in function "_new_idxvar" +   Type "int | Expr" is not assignable to type "int | None" +     Type "Expr" is not assignable to type "int | None" +       "Expr" is not assignable to "int" +       "Expr" is not assignable to "None" (reportArgumentType) + /torch/_inductor/codegen/mps.py:678:51 - error: Argument of type "int | Expr" cannot be assigned to parameter "elem_count" of type "int | None" in function "_new_idxvar" +   Type "int | Expr" is not assignable to type "int | None" +     Type "Expr" is not assignable to type "int | None" +       "Expr" is not assignable to "int" +       "Expr" is not assignable to "None" (reportArgumentType) + /torch/_inductor/codegen/mps.py:717:55 - error: Argument of type " | Min" cannot be assigned to parameter "elem_count" of type "int | None" in function "_new_idxvar" +   Type " | Min" is not assignable to type "int | None" +     Type "Min" is not assignable to type "int | None" +       "Min" is not assignable to "int" +       "Min" is not assignable to "None" (reportArgumentType) + /torch/_inductor/codegen/mps.py:722:33 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:725:50 - error: Argument of type " | Min" cannot be assigned to parameter "elem_count" of type "int | None" in function "_new_idxvar" +   Type " | Min" is not assignable to type "int | None" +     Type "Min" is not assignable to type "int | None" +       "Min" is not assignable to "int" +       "Min" is not assignable to "None" (reportArgumentType) + /torch/_inductor/codegen/mps.py:734:29 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:739:50 - error: Argument of type " | Min" cannot be assigned to parameter "elem_count" of type "int | None" in function "_new_idxvar" +   Type " | Min" is not assignable to type "int | None" +     Type "Min" is not assignable to type "int | None" +       "Min" is not assignable to "int" +       "Min" is not assignable to "None" (reportArgumentType) + /torch/_inductor/codegen/mps.py:753:29 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:899:39 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/mps.py:959:42 - error: Argument of type "Expr" cannot be assigned to parameter "sym" of type "Symbol" in function "ensure_size_computed" +   "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/codegen/mps.py:1034:26 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/multi_kernel.py + /torch/_inductor/codegen/multi_kernel.py:275:6 - error: Argument of type "CachedMethod[(), Unknown]" cannot be assigned to parameter "fget" of type "((Any) -> Any) | None" in function "__init__" +   Type "CachedMethod[(), Unknown]" is not assignable to type "((Any) -> Any) | None" +     Type "CachedMethod[(), Unknown]" is not assignable to type "(Any) -> Any" +       Function accepts too many positional parameters; expected 0 but received 1 +     "CachedMethod[(), Unknown]" is not assignable to "None" (reportArgumentType) +/torch/_inductor/codegen/pallas.py + /torch/_inductor/codegen/pallas.py:73:9 - error: Method "sin" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:77:9 - error: Method "cos" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:81:9 - error: Method "tan" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:85:9 - error: Method "sinh" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:89:9 - error: Method "cosh" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:93:9 - error: Method "tanh" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:97:9 - error: Method "asin" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:101:9 - error: Method "acos" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:105:9 - error: Method "atan" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:109:9 - error: Method "exp" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:121:9 - error: Method "log" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:137:9 - error: Method "sqrt" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:141:9 - error: Method "rsqrt" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:145:9 - error: Method "abs" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:149:9 - error: Method "neg" overrides class "BasicMathOpsMixin" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "a", override parameter is named "x" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:153:9 - error: Method "floor" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:157:9 - error: Method "ceil" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:161:9 - error: Method "trunc" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:165:9 - error: Method "round" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:181:9 - error: Method "maximum" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:185:9 - error: Method "minimum" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:189:9 - error: Method "where" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "cond" +   Parameter 2 name mismatch: base parameter is named "condition", override parameter is named "a" +   Parameter 3 name mismatch: base parameter is named "input", override parameter is named "b" +   Parameter 4 mismatch: base parameter "other" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:193:9 - error: Method "to_dtype" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 name mismatch: base parameter is named "dtype", override parameter is named "src_dtype" +   Parameter 4 name mismatch: base parameter is named "src_dtype", override parameter is named "use_compute_types" +   Parameter 5 mismatch: base parameter "use_compute_types" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:195:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/pallas.py:196:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/pallas.py:204:9 - error: Method "index_expr" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "expr" +   Parameter 2 name mismatch: base parameter is named "expr", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:204:51 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/pallas.py:215:9 - error: Method "constant" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "value", override parameter is named "val" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:215:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/pallas.py:218:27 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/pallas.py:275:9 - error: Method "logical_and" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:279:9 - error: Method "logical_or" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:283:9 - error: Method "logical_not" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "a", override parameter is named "x" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:287:9 - error: Method "logical_xor" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:292:9 - error: Method "atan2" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:296:9 - error: Method "hypot" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:300:9 - error: Method "fmod" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:317:9 - error: Method "sign" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:321:9 - error: Method "signbit" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:326:9 - error: Method "erf" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:334:9 - error: Method "erfinv" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:338:9 - error: Method "lgamma" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:342:9 - error: Method "digamma" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:356:9 - error: Method "fma" overrides class "OpDecompositions" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "y", override parameter is named "b" +   Parameter 3 name mismatch: base parameter is named "z", override parameter is named "c" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:361:9 - error: Method "copysign" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:365:9 - error: Method "nextafter" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:373:9 - error: Method "frexp" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:382:9 - error: Method "bitwise_and" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "y", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:386:9 - error: Method "bitwise_or" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "y", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:390:9 - error: Method "bitwise_xor" overrides class "OpOverrides" in an incompatible manner +   Parameter 1 name mismatch: base parameter is named "x", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "y", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:503:80 - error: Argument of type "Basic" cannot be assigned to parameter "symbol" of type "Symbol" in function "get_subexpr_involving_symbol" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/codegen/pallas.py:506:76 - error: Argument of type "Basic" cannot be assigned to parameter "index_var" of type "Symbol" in function "match_affine_block_expr" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/codegen/pallas.py:538:84 - error: Argument of type "Basic" cannot be assigned to parameter "symbol" of type "Symbol" in function "get_subexpr_involving_symbol" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/codegen/pallas.py:539:80 - error: Argument of type "Basic" cannot be assigned to parameter "index_var" of type "Symbol" in function "match_affine_block_expr" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/codegen/pallas.py:724:31 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "__getitem__" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/codegen/pallas.py:783:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/pallas.py:784:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/pallas.py:1150:9 - error: Method "get_backend_features" overrides class "BaseScheduling" in an incompatible manner +   Base method is declared as an instance method but override is not (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/pallas.py:1150:49 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/rocm/ck_template.py + /torch/_inductor/codegen/rocm/ck_template.py:18:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/ck_template.py:19:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/ck_template.py:20:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/ck_template.py:21:15 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/ck_template.py:22:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/ck_template.py:23:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/ck_template.py:24:15 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/ck_template.py:25:15 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/ck_template.py:26:15 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/ck_template.py:27:15 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/rocm/ck_tile_template.py + /torch/_inductor/codegen/rocm/ck_tile_template.py:13:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/ck_tile_template.py:14:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/ck_tile_template.py:15:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/ck_tile_template.py:16:15 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/ck_tile_template.py:17:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/ck_tile_template.py:18:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/ck_tile_template.py:19:15 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/ck_tile_template.py:20:15 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/ck_tile_template.py:21:15 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/ck_tile_template.py:22:15 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/rocm/ck_universal_gemm_template.py + /torch/_inductor/codegen/rocm/ck_universal_gemm_template.py:567:37 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/_inductor/codegen/rocm/ck_universal_gemm_template.py:611:14 - error: Variable not allowed in type expression (reportInvalidTypeForm) +/torch/_inductor/codegen/rocm/compile_command.py + /torch/_inductor/codegen/rocm/compile_command.py:23:14 - error: Import "libfb.py" could not be resolved (reportMissingImports) +/torch/_inductor/codegen/rocm/rocm_benchmark_request.py + /torch/_inductor/codegen/rocm/rocm_benchmark_request.py:77:36 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/rocm_benchmark_request.py:79:29 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/rocm_benchmark_request.py:82:53 - error: "data_ptr" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/_inductor/codegen/rocm/rocm_template.py + /torch/_inductor/codegen/rocm/rocm_template.py:107:18 - error: Cannot access attribute "size_args" for class "ROCmTemplate*" +   Attribute "size_args" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/rocm_template.py:146:13 - error: Argument of type "(template_node: ROCmTemplateBuffer, epilogue_nodes: Sequence[IRNode] | None = None) -> tuple[ROCmTemplateKernel, partial[str]]" cannot be assigned to parameter "make_kernel_render" of type "(ROCmTemplateBuffer, Sequence[IRNode] | None) -> str" in function "__init__" +   Type "(template_node: ROCmTemplateBuffer, epilogue_nodes: Sequence[IRNode] | None = None) -> tuple[ROCmTemplateKernel, partial[str]]" is not assignable to type "(ROCmTemplateBuffer, Sequence[IRNode] | None) -> str" +     Function return type "tuple[ROCmTemplateKernel, partial[str]]" is incompatible with type "str" +       "tuple[ROCmTemplateKernel, partial[str]]" is not assignable to "str" (reportArgumentType) +/torch/_inductor/codegen/rocm/rocm_utils.py + /torch/_inductor/codegen/rocm/rocm_utils.py:11:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/rocm_utils.py:12:11 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/rocm_utils.py:13:11 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/rocm_utils.py:14:11 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/rocm_utils.py:15:11 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/rocm/rocm_utils.py:16:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/simd.py + /torch/_inductor/codegen/simd.py:95:33 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/codegen/simd.py:333:22 - error: Cannot access attribute "cache_clear" for class "FunctionType" +   Attribute "cache_clear" is unknown (reportFunctionMemberAccess) + /torch/_inductor/codegen/simd.py:351:45 - error: Argument of type "Basic" cannot be assigned to parameter "object" of type "Expr" in function "append" +   "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:391:5 - error: "kernel_name" overrides symbol of same name in class "Kernel" +   Variable is mutable so its type is invariant +     Override type "str" is not the same as base type "str | None" (reportIncompatibleVariableOverride) + /torch/_inductor/codegen/simd.py:440:35 - error: "get_reduction_type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/codegen/simd.py:448:66 - error: Argument of type "dict[Symbol, Expr]" cannot be assigned to parameter of type "VarRanges" +   "dict[Symbol, Expr]" is not assignable to "dict[Expr, Expr]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:473:41 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/simd.py:476:55 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/simd.py:616:52 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "get" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/codegen/simd.py:618:40 - error: Argument of type "dict[Basic, Expr]" cannot be assigned to parameter "replacements" of type "dict[Expr, Any]" in function "sympy_subs" +   "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:685:16 - error: Type "list[list[Symbol]]" is not assignable to return type "list[Symbol]" (reportReturnType) + /torch/_inductor/codegen/simd.py:686:30 - error: Argument of type "Expr" cannot be assigned to parameter "lengths" of type "list[Expr]" in function "construct" +   "Expr" is not assignable to "list[Expr]" (reportArgumentType) + /torch/_inductor/codegen/simd.py:992:38 - error: Argument of type "Expr | Basic" cannot be assigned to parameter "expr" of type "Expr" in function "codegen_indexing" +   Type "Expr | Basic" is not assignable to type "Expr" +     "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:1003:60 - error: Argument of type "dict[Symbol, Expr]" cannot be assigned to parameter of type "VarRanges" +   "dict[Symbol, Expr]" is not assignable to "dict[Expr, Expr]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:1013:25 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "__getitem__" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/codegen/simd.py:1043:27 - error: Cannot assign to attribute "_load_mask" for class "SIMDKernel[CSEVariableType@SIMDKernel]*" +   Type "Unknown | str | OpsWrapper" is not assignable to type "str | None" +     Type "OpsWrapper" is not assignable to type "str | None" +       "OpsWrapper" is not assignable to "str" +       "OpsWrapper" is not assignable to "None" (reportAttributeAccessIssue) + /torch/_inductor/codegen/simd.py:1047:19 - error: Return type of generator function must be compatible with "Generator[Unknown | str | OpsWrapper, Any, Any]" +   "Generator[Unknown | str | OpsWrapper, Unknown, Unknown]" is not assignable to "Iterator[str]" +     Type parameter "_T_co@Iterator" is covariant, but "Unknown | str | OpsWrapper" is not a subtype of "str" +       Type "Unknown | str | OpsWrapper" is not assignable to type "str" +         "OpsWrapper" is not assignable to "str" (reportReturnType) + /torch/_inductor/codegen/simd.py:1605:9 - error: Method "benchmark_codegened_module" overrides class "BaseScheduling" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "module", override parameter is named "mod" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/simd.py:1782:47 - error: Argument of type "tuple[Expr, ...]" cannot be assigned to parameter "numel" of type "Expr" in function "__init__" +   "tuple[Expr, ...]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:1782:54 - error: Argument of type "tuple[Expr, ...]" cannot be assigned to parameter "reduction_numel" of type "Expr" in function "__init__" +   "tuple[Expr, ...]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:1800:28 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/codegen/simd.py:1817:25 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/simd.py:1817:37 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/simd.py:1876:13 - error: "kernel" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/codegen/simd.py:2287:60 - error: Argument of type "tuple[Expr, ...]" cannot be assigned to parameter "numel" of type "Expr" in function "__init__" +   "tuple[Expr, ...]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:2287:67 - error: Argument of type "tuple[Expr, ...]" cannot be assigned to parameter "reduction_numel" of type "Expr" in function "__init__" +   "tuple[Expr, ...]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:2634:25 - error: Argument of type "Unknown | Literal[1]" cannot be assigned to parameter "reduction_numel" of type "Expr" in function "complete_partial_tiling" +   Type "Unknown | Literal[1]" is not assignable to type "Expr" +     "Literal[1]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:2673:27 - error: Argument of type "list[int]" cannot be assigned to parameter "it" of type "Iterable[Expr]" in function "sympy_product" +   "list[int]" is not assignable to "Iterable[Expr]" +     Type parameter "_T_co@Iterable" is covariant, but "int" is not a subtype of "Expr" +       "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:2678:27 - error: Argument of type "list[int]" cannot be assigned to parameter "it" of type "Iterable[Expr]" in function "sympy_product" +   "list[int]" is not assignable to "Iterable[Expr]" +     Type parameter "_T_co@Iterable" is covariant, but "int" is not a subtype of "Expr" +       "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:2703:30 - error: Type "tuple[list[Expr], list[int]]" is not assignable to return type "tuple[list[int], list[int]]" +   "Expr" is not assignable to "int" (reportReturnType) + /torch/_inductor/codegen/simd.py:2809:35 - error: Argument of type "list[int]" cannot be assigned to parameter "pw_tiling" of type "Sequence[Expr]" in function "create_tiling" +   "list[int]" is not assignable to "Sequence[Expr]" +     Type parameter "_T_co@Sequence" is covariant, but "int" is not a subtype of "Expr" +       "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:2809:45 - error: Argument of type "list[int]" cannot be assigned to parameter "reduction_tiling" of type "Sequence[Expr]" in function "create_tiling" +   "list[int]" is not assignable to "Sequence[Expr]" +     Type parameter "_T_co@Sequence" is covariant, but "int" is not a subtype of "Expr" +       "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:2812:46 - error: Argument of type "list[int]" cannot be assigned to parameter "pw_tiling" of type "Sequence[Expr]" in function "create_tiling" +   "list[int]" is not assignable to "Sequence[Expr]" +     Type parameter "_T_co@Sequence" is covariant, but "int" is not a subtype of "Expr" +       "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:2812:56 - error: Argument of type "list[int]" cannot be assigned to parameter "reduction_tiling" of type "Sequence[Expr]" in function "create_tiling" +   "list[int]" is not assignable to "Sequence[Expr]" +     Type parameter "_T_co@Sequence" is covariant, but "int" is not a subtype of "Expr" +       "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:2853:41 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/codegen/simd.py:2936:31 - error: "get_reduction_type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/codegen/simd.py:2949:29 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/codegen/simd.py:3017:70 - error: Argument of type "Expr | int" cannot be assigned to parameter "numerator" of type "Expr" in function "statically_known_multiple_of" +   Type "Expr | int" is not assignable to type "Expr" +     "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:3049:35 - error: Argument of type "Unknown | Literal[1]" cannot be assigned to parameter "reduction_numel" of type "Expr" in function "get_first_compatible_tiling" +   Type "Unknown | Literal[1]" is not assignable to type "Expr" +     "Literal[1]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:3070:60 - error: Argument of type "tuple[Expr, ...]" cannot be assigned to parameter "numel" of type "Expr" in function "__init__" +   "tuple[Expr, ...]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:3070:67 - error: Argument of type "tuple[Expr, ...]" cannot be assigned to parameter "reduction_numel" of type "Expr" in function "__init__" +   "tuple[Expr, ...]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/simd.py:3080:17 - error: Argument of type "Sequence[BaseSchedulerNode]" cannot be assigned to parameter "nodes" of type "list[BaseSchedulerNode]" in function "get_prologue_template_epilogue" +   "Sequence[BaseSchedulerNode]" is not assignable to "list[BaseSchedulerNode]" (reportArgumentType) + /torch/_inductor/codegen/simd.py:3092:29 - error: "replace" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/_inductor/codegen/simd_kernel_features.py + /torch/_inductor/codegen/simd_kernel_features.py:133:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/simd_kernel_features.py:149:26 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/simd_kernel_features.py:150:22 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/simd_kernel_features.py:357:46 - error: Argument of type "list[list[Expr]]" cannot be assigned to parameter "lengths" of type "list[Expr]" in function "make_flat_range" +   "list[list[Expr]]" is not assignable to "list[Expr]" +     Type parameter "_T@list" is invariant, but "list[Expr]" is not the same as "Expr" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) +/torch/_inductor/codegen/subgraph.py + /torch/_inductor/codegen/subgraph.py:97:52 - error: Cannot access attribute "name" for class "Expr" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/subgraph.py:98:64 - error: Cannot access attribute "name" for class "Expr" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/subgraph.py:102:17 - error: Argument of type "Basic | Unknown | None" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "Basic | Unknown | None" is not assignable to type "ConvertibleToInt" +     Type "Basic" is not assignable to type "ConvertibleToInt" +       "Basic" is not assignable to "str" +       "Basic" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "Basic" is incompatible with protocol "SupportsInt" +         "__int__" is not present +       "Basic" is incompatible with protocol "SupportsIndex" + ... (reportArgumentType) + /torch/_inductor/codegen/subgraph.py:102:17 - error: Argument of type "Basic | Unknown | None" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "Basic | Unknown | None" is not assignable to type "ConvertibleToInt" +     Type "Basic" is not assignable to type "ConvertibleToInt" +       "Basic" is not assignable to "str" +       "Basic" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "Basic" is incompatible with protocol "SupportsInt" +         "__int__" is not present +       "Basic" is incompatible with protocol "SupportsIndex" (reportArgumentType) + /torch/_inductor/codegen/subgraph.py:373:37 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/codegen/triton_combo_kernel.py + /torch/_inductor/codegen/triton_combo_kernel.py:481:25 - error: Operator "-" not supported for type "int | str" when expected type is "int | str" (reportOperatorIssue) + /torch/_inductor/codegen/triton_combo_kernel.py:885:64 - error: Cannot access attribute "count" for class "TensorArg" +   Attribute "count" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/triton_combo_kernel.py:885:64 - error: Cannot access attribute "count" for class "TMADescriptorArg" +   Attribute "count" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/triton_combo_kernel.py:885:64 - error: Cannot access attribute "count" for class "ConstexprArg" +   Attribute "count" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/triton_combo_kernel.py:888:95 - error: Cannot access attribute "dtype" for class "ConstexprArg" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) +/torch/_inductor/codegen/triton_split_scan.py + /torch/_inductor/codegen/triton_split_scan.py:92:16 - error: Import "triton.language" could not be resolved (reportMissingImports) +/torch/_inductor/codegen/triton_utils.py + /torch/_inductor/codegen/triton_utils.py:39:31 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/triton_utils.py:41:33 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/triton_utils.py:43:33 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/triton_utils.py:45:33 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/triton_utils.py:89:29 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/triton_utils.py:89:41 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/triton_utils.py:98:29 - error: Cannot access attribute "dtype" for class "ConstexprArg" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/triton_utils.py:187:43 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) +/torch/_inductor/codegen/wrapper.py + /torch/_inductor/codegen/wrapper.py:25:19 - error: "dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper.py:91:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper.py:91:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper.py:409:9 - error: Method "codegen_fx" overrides class "WrapperLine" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "converter" +   Parameter 2 mismatch: base parameter "converter" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/wrapper.py:421:9 - error: Method "codegen_fx" overrides class "WrapperLine" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "converter" +   Parameter 2 mismatch: base parameter "converter" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/wrapper.py:434:9 - error: Method "codegen_fx" overrides class "WrapperLine" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "converter" +   Parameter 2 mismatch: base parameter "converter" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/wrapper.py:568:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper.py:1148:25 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper.py:1155:30 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper.py:1200:18 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/_inductor/codegen/wrapper.py:1233:34 - error: "_cuda_getCurrentRawStream" is unknown import symbol (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper.py:1279:16 - error: Type "str" is not assignable to declared type "TritonMetaParams" +   "str" is not assignable to "dict[str, int]" (reportAssignmentType) + /torch/_inductor/codegen/wrapper.py:1320:34 - error: Cannot access attribute "get_size" for class "Expr" +   Attribute "get_size" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper.py:1322:56 - error: Cannot access attribute "get_size" for class "Expr" +   Attribute "get_size" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper.py:1323:54 - error: Argument of type "Sequence[_IntLike] | Any | Unknown" cannot be assigned to parameter "shape" of type "Sequence[Expr]" in function "codegen_python_shape_tuple" +   Type "Sequence[_IntLike] | Any | Unknown" is not assignable to type "Sequence[Expr]" +     "Sequence[_IntLike]" is not assignable to "Sequence[Expr]" +       Type parameter "_T_co@Sequence" is covariant, but "_IntLike" is not a subtype of "Expr" +         Type "_IntLike" is not assignable to type "Expr" +           "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/wrapper.py:1323:58 - error: Cannot access attribute "get_stride" for class "Expr" +   Attribute "get_stride" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper.py:2411:47 - error: Argument of type "Unknown | int | Integer" cannot be assigned to parameter "expr" of type "Expr" in function "__init__" +   Type "Unknown | int | Integer" is not assignable to type "Expr" +     "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/wrapper.py:2462:25 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "__setitem__" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/codegen/wrapper.py:2465:45 - error: Argument of type "dict[Symbol, Symbol]" cannot be assigned to parameter "replacements" of type "dict[Expr, Any]" in function "sympy_subs" +   "dict[Symbol, Symbol]" is not assignable to "dict[Expr, Any]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/codegen/wrapper.py:2480:48 - error: Argument of type "list[int | Expr]" cannot be assigned to parameter "iterable" of type "Iterable[_T1@__new__]" in function "__new__" +   "list[int | Expr]" is not assignable to "Iterable[Expr]" +     Type parameter "_T_co@Iterable" is covariant, but "int | Expr" is not a subtype of "Expr" +       Type "int | Expr" is not assignable to type "Expr" +         "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/wrapper.py:2480:48 - error: Argument of type "list[int | Expr]" cannot be assigned to parameter "iterable" of type "Iterable[_T1@__new__]" in function "__new__" +   "list[int | Expr]" is not assignable to "Iterable[_T1@__new__]" +     Type parameter "_T_co@Iterable" is covariant, but "int | Expr" is not a subtype of "_T1@__new__" +       Type "int | Expr" is not assignable to type "Expr" +         Type "int | Expr" is not assignable to type "Expr" +           "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/wrapper.py:2482:53 - error: Argument of type "list[int | Expr]" cannot be assigned to parameter "iterable" of type "Iterable[_T1@__new__]" in function "__new__" +   "list[int | Expr]" is not assignable to "Iterable[Expr]" +     Type parameter "_T_co@Iterable" is covariant, but "int | Expr" is not a subtype of "Expr" +       Type "int | Expr" is not assignable to type "Expr" +         "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/wrapper.py:2482:53 - error: Argument of type "list[int | Expr]" cannot be assigned to parameter "iterable" of type "Iterable[_T1@__new__]" in function "__new__" +   "list[int | Expr]" is not assignable to "Iterable[_T1@__new__]" +     Type parameter "_T_co@Iterable" is covariant, but "int | Expr" is not a subtype of "_T1@__new__" +       Type "int | Expr" is not assignable to type "Expr" +         Type "int | Expr" is not assignable to type "Expr" +           "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/wrapper.py:2817:26 - error: Argument of type "Unknown | None" cannot be assigned to parameter "raw_keys" of type "tuple[Any, ...]" in function "__init__" +   Type "Unknown | None" is not assignable to type "tuple[Any, ...]" +     "None" is not assignable to "tuple[Any, ...]" (reportArgumentType) + /torch/_inductor/codegen/wrapper.py:2819:26 - error: Argument of type "Unknown | None" cannot be assigned to parameter "raw_args" of type "tuple[Any, ...]" in function "__init__" +   Type "Unknown | None" is not assignable to type "tuple[Any, ...]" +     "None" is not assignable to "tuple[Any, ...]" (reportArgumentType) + /torch/_inductor/codegen/wrapper.py:2821:27 - error: Argument of type "Unknown | None" cannot be assigned to parameter "arg_types" of type "list[str]" in function "__init__" +   Type "Unknown | None" is not assignable to type "list[str]" +     "None" is not assignable to "list[str]" (reportArgumentType) + /torch/_inductor/codegen/wrapper.py:2824:29 - error: Argument of type "Unknown | None" cannot be assigned to parameter "triton_meta" of type "dict[str, Any]" in function "__init__" +   Type "Unknown | None" is not assignable to type "dict[str, Any]" +     "None" is not assignable to "dict[str, Any]" (reportArgumentType) + /torch/_inductor/codegen/wrapper.py:2826:28 - error: Argument of type "str | None" cannot be assigned to parameter "graph_name" of type "str" in function "__init__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /torch/_inductor/codegen/wrapper.py:2828:38 - error: Argument of type "Unknown | None" cannot be assigned to parameter "original_fxnode_name" of type "str" in function "__init__" +   Type "Unknown | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /torch/_inductor/codegen/wrapper.py:2947:17 - error: "object*" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/_inductor/codegen/wrapper.py:2949:43 - error: Argument of type "list[None] | Unknown | None" cannot be assigned to parameter "iter3" of type "Iterable[_T3@__new__]" in function "__new__" +   Type "list[None] | Unknown | None" is not assignable to type "Iterable[None]" +     "None" is incompatible with protocol "Iterable[None]" +       "__iter__" is not present (reportArgumentType) + /torch/_inductor/codegen/wrapper.py:2949:43 - error: Argument of type "list[None] | Unknown | None" cannot be assigned to parameter "iter3" of type "Iterable[_T3@__new__]" in function "__new__" +   Type "list[None] | Unknown | None" is not assignable to type "Iterable[_T3@__new__]" +     "None" is incompatible with protocol "Iterable[_T3@__new__]" +       "__iter__" is not present (reportArgumentType) + /torch/_inductor/codegen/wrapper.py:3324:33 - error: Index 0 is out of range for type KeyPath (reportGeneralTypeIssues) + /torch/_inductor/codegen/wrapper.py:3325:41 - error: Index 0 is out of range for type KeyPath (reportGeneralTypeIssues) + /torch/_inductor/codegen/wrapper.py:3326:33 - error: Index 0 is out of range for type KeyPath (reportGeneralTypeIssues) + /torch/_inductor/codegen/wrapper.py:3328:40 - error: Index 0 is out of range for type KeyPath (reportGeneralTypeIssues) + /torch/_inductor/codegen/wrapper.py:3330:43 - error: Index 0 is out of range for type KeyPath (reportGeneralTypeIssues) + /torch/_inductor/codegen/wrapper.py:3332:33 - error: Index 0 is out of range for type KeyPath (reportGeneralTypeIssues) + /torch/_inductor/codegen/wrapper.py:3335:54 - error: Index 0 is out of range for type KeyPath (reportGeneralTypeIssues) +/torch/_inductor/codegen/wrapper_fxir.py + /torch/_inductor/codegen/wrapper_fxir.py:239:9 - error: Method "create" overrides class "PythonWrapperCodegen" in an incompatible manner +   Base method is declared as a staticmethod but override is not +   Parameter 2 name mismatch: base parameter is named "subgraph_name", override parameter is named "is_subgraph" +   Parameter 3 name mismatch: base parameter is named "parent_wrapper", override parameter is named "subgraph_name" +   Parameter 4 name mismatch: base parameter is named "partition_signatures", override parameter is named "parent_wrapper" (reportIncompatibleMethodOverride) + /torch/_inductor/codegen/wrapper_fxir.py:293:32 - error: "proxy" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper_fxir.py:325:19 - error: "as_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper_fxir.py:369:42 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper_fxir.py:398:39 - error: Argument of type "TensorBox | Any | Expr" cannot be assigned to parameter "node" of type "IRNode" in function "_get_buffer" +   Type "TensorBox | Any | Expr" is not assignable to type "IRNode" +     "Expr" is not assignable to "IRNode" (reportArgumentType) + /torch/_inductor/codegen/wrapper_fxir.py:466:37 - error: Cannot access attribute "is_integer" for class "Basic" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper_fxir.py:473:17 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Expr" in function "__setitem__" +   "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/wrapper_fxir.py:488:25 - error: Argument of type "_IntLike" cannot be assigned to parameter "sym_or_exp" of type "Symbol | Expr" in function "_codegen_symbol" +   Type "_IntLike" is not assignable to type "Symbol | Expr" +     Type "int" is not assignable to type "Symbol | Expr" +       "int" is not assignable to "Symbol" +       "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/wrapper_fxir.py:506:44 - error: Cannot access attribute "expr" for class "IRNode" +   Attribute "expr" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper_fxir.py:518:48 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper_fxir.py:523:33 - error: Cannot access attribute "get_device" for class "SymbolBuffer" +   Attribute "get_device" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper_fxir.py:526:34 - error: Cannot access attribute "get_size" for class "SymbolBuffer" +   Attribute "get_size" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper_fxir.py:530:34 - error: Cannot access attribute "get_dtype" for class "SymbolBuffer" +   Attribute "get_dtype" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper_fxir.py:534:75 - error: Cannot access attribute "layout" for class "IRNode" +   Attribute "layout" is unknown (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper_fxir.py:639:51 - error: Argument of type "dict[Expr, Proxy]" cannot be assigned to parameter "env" of type "dict[Symbol, Any]" in function "sympy_interp" +   "dict[Expr, Proxy]" is not assignable to "dict[Symbol, Any]" +     Type parameter "_KT@dict" is invariant, but "Expr" is not the same as "Symbol" (reportArgumentType) + /torch/_inductor/codegen/wrapper_fxir.py:645:33 - error: Argument of type "Basic" cannot be assigned to parameter "expr" of type "Expr" in function "_sympy_interp" +   "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/codegen/wrapper_fxir.py:687:19 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper_fxir.py:950:18 - error: Import "triton.runtime" could not be resolved (reportMissingImports) + /torch/_inductor/codegen/wrapper_fxir.py:974:30 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/codegen/wrapper_fxir.py:1005:44 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/_inductor/codegen/wrapper_fxir.py:1052:56 - error: Argument of type "list[Expr | int]" cannot be assigned to parameter "shape" of type "Sequence[Expr]" in function "_generate_sym_nodes" +   "list[Expr | int]" is not assignable to "Sequence[Expr]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr | int" is not a subtype of "Expr" +       Type "Expr | int" is not assignable to type "Expr" +         "int" is not assignable to "Expr" (reportArgumentType) +/torch/_inductor/comm_analysis.py + /torch/_inductor/comm_analysis.py:72:32 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/comm_analysis.py:191:20 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/comm_analysis.py:207:8 - error: Operator "<" not supported for "None" (reportOptionalOperand) + /torch/_inductor/comm_analysis.py:209:19 - error: Operator "/" not supported for "None" (reportOptionalOperand) + /torch/_inductor/comm_analysis.py:247:31 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/comm_analysis.py:248:31 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/comm_analysis.py:457:26 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/comm_analysis.py:484:12 - error: Operator "<" not supported for "None" (reportOptionalOperand) + /torch/_inductor/comm_analysis.py:486:23 - error: Operator "/" not supported for "None" (reportOptionalOperand) +/torch/_inductor/comm_lowering.py + /torch/_inductor/comm_lowering.py:106:12 - error: Cannot assign to attribute "layout" for class "IRNode" +   Attribute "layout" is unknown (reportAttributeAccessIssue) + /torch/_inductor/comm_lowering.py:118:21 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) +/torch/_inductor/comms.py + /torch/_inductor/comms.py:69:40 - error: "median" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/comms.py:70:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/comms.py:776:18 - error: "util" is not a known attribute of module "importlib" (reportAttributeAccessIssue) + /torch/_inductor/comms.py:778:14 - warning: Import "tabulate" could not be resolved from source (reportMissingModuleSource) + /torch/_inductor/comms.py:1225:62 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[str, OrderedSet[BaseSchedulerNode]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[str, OrderedSet[BaseSchedulerNode]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[BaseSchedulerNode]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) + /torch/_inductor/comms.py:1614:18 - error: "util" is not a known attribute of module "importlib" (reportAttributeAccessIssue) + /torch/_inductor/comms.py:1616:14 - warning: Import "tabulate" could not be resolved from source (reportMissingModuleSource) + /torch/_inductor/comms.py:1840:29 - error: "both_contain_comms" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/comms.py:1893:25 - warning: Expression value is unused (reportUnusedExpression) + /torch/_inductor/comms.py:2162:12 - error: Type "list[BaseSchedulerNode] | object | list[Unknown]" is not assignable to return type "list[BaseSchedulerNode]" +   Type "list[BaseSchedulerNode] | object | list[Unknown]" is not assignable to type "list[BaseSchedulerNode]" +     "object" is not assignable to "list[BaseSchedulerNode]" (reportReturnType) + /torch/_inductor/comms.py:2427:19 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/comms.py:2479:34 - error: "scheduler" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/comms.py:2480:44 - error: "scheduler" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/comms.py:2482:27 - error: "scheduler" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) +/torch/_inductor/compile_fx.py + /torch/_inductor/compile_fx.py:252:21 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:384:27 - error: "equal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:649:53 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:785:41 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:801:25 - error: Could not access item in TypedDict +   "is_backward" is not a required key in "_CompileFxKwargs", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /torch/_inductor/compile_fx.py:835:28 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:886:27 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:944:18 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:1139:27 - error: Could not access item in TypedDict +   "is_backward" is not a required key in "_CompileFxKwargs", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /torch/_inductor/compile_fx.py:1140:18 - error: Could not access item in TypedDict +   "graph_id" is not a required key in "_CompileFxKwargs", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /torch/_inductor/compile_fx.py:1238:27 - error: "repro" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:1342:34 - error: "traceback" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:1344:37 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:1346:45 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:1545:45 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:1548:45 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:1593:41 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:1596:37 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:1602:45 - error: "utils" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:1610:56 - error: "utils" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:1666:41 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:1668:45 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:1672:35 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:1677:45 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:1730:27 - error: "scheme" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/compile_fx.py:1741:27 - error: "scheme" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/compile_fx.py:1754:12 - error: "scheme" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/compile_fx.py:1819:30 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:1840:18 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:1857:5 - error: Parameter declaration "static_input_idxs" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_inductor/compile_fx.py:1931:20 - error: Type "tuple[Any] | list[Unknown] | tuple[Unknown, ...]" is not assignable to return type "(list[InputType]) -> Any" +   Type "tuple[Any] | list[Unknown] | tuple[Unknown, ...]" is not assignable to type "(list[InputType]) -> Any" +     Type "list[Unknown]" is not assignable to type "(list[InputType]) -> Any" (reportReturnType) + /torch/_inductor/compile_fx.py:1947:20 - error: Type "tuple[Any] | list[Unknown] | tuple[Unknown, ...]" is not assignable to return type "(list[InputType]) -> Any" +   Type "tuple[Any] | list[Unknown] | tuple[Unknown, ...]" is not assignable to type "(list[InputType]) -> Any" +     Type "list[Unknown]" is not assignable to type "(list[InputType]) -> Any" (reportReturnType) + /torch/_inductor/compile_fx.py:1956:5 - error: Parameter declaration "config_patches" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_inductor/compile_fx.py:1993:35 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:1996:15 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2062:29 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2150:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2287:29 - error: "utils" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2296:25 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2421:21 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2426:33 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2514:21 - error: Argument of type "Module" cannot be assigned to parameter "model_" of type "GraphModule" in function "_maybe_wrap_and_compile_fx_main" +   "Module" is not assignable to "GraphModule" (reportArgumentType) + /torch/_inductor/compile_fx.py:2633:18 - error: "traceback" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2636:25 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2681:42 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2717:19 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2718:22 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2754:55 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2758:48 - error: "fake_class_registry" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2780:36 - error: "_is_any_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2782:26 - error: "_DisableAutocast" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2789:19 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2822:33 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2823:24 - error: Cannot access attribute "target" for class "Sequence[Argument]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2823:24 - error: Cannot access attribute "target" for class "Mapping[str, Argument]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2823:24 - error: Cannot access attribute "target" for class "slice[Any, Any, Any]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2823:24 - error: Cannot access attribute "target" for class "range" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2823:24 - error: Cannot access attribute "target" for class "str" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2823:24 - error: Cannot access attribute "target" for class "int" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2823:24 - error: Cannot access attribute "target" for class "float" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2823:24 - error: Cannot access attribute "target" for class "bool" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2823:24 - error: Cannot access attribute "target" for class "complex" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2823:24 - error: Cannot access attribute "target" for class "OpOverload[..., Any]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2823:24 - error: Cannot access attribute "target" for class "SymInt" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2823:24 - error: Cannot access attribute "target" for class "SymBool" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2823:24 - error: Cannot access attribute "target" for class "SymFloat" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2823:24 - error: "target" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/compile_fx.py:2824:20 - error: Cannot access attribute "target" for class "Sequence[Argument]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2824:20 - error: Cannot access attribute "target" for class "Mapping[str, Argument]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2824:20 - error: Cannot access attribute "target" for class "slice[Any, Any, Any]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2824:20 - error: Cannot access attribute "target" for class "range" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2824:20 - error: Cannot access attribute "target" for class "str" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2824:20 - error: Cannot access attribute "target" for class "int" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2824:20 - error: Cannot access attribute "target" for class "float" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2824:20 - error: Cannot access attribute "target" for class "bool" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2824:20 - error: Cannot access attribute "target" for class "complex" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2824:20 - error: Cannot access attribute "target" for class "OpOverload[..., Any]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2824:20 - error: Cannot access attribute "target" for class "SymInt" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2824:20 - error: Cannot access attribute "target" for class "SymBool" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2824:20 - error: Cannot access attribute "target" for class "SymFloat" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2824:20 - error: "target" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/compile_fx.py:2824:27 - error: Cannot access attribute "_schema" for class "FunctionType" +   Attribute "_schema" is unknown (reportFunctionMemberAccess) + /torch/_inductor/compile_fx.py:2824:27 - error: Cannot access attribute "_schema" for class "str" +   Attribute "_schema" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2825:57 - error: Cannot access attribute "target" for class "Sequence[Argument]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2825:57 - error: Cannot access attribute "target" for class "Mapping[str, Argument]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2825:57 - error: Cannot access attribute "target" for class "slice[Any, Any, Any]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2825:57 - error: Cannot access attribute "target" for class "range" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2825:57 - error: Cannot access attribute "target" for class "str" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2825:57 - error: Cannot access attribute "target" for class "int" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2825:57 - error: Cannot access attribute "target" for class "float" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2825:57 - error: Cannot access attribute "target" for class "bool" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2825:57 - error: Cannot access attribute "target" for class "complex" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2825:57 - error: Cannot access attribute "target" for class "OpOverload[..., Any]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2825:57 - error: Cannot access attribute "target" for class "SymInt" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2825:57 - error: Cannot access attribute "target" for class "SymBool" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2825:57 - error: Cannot access attribute "target" for class "SymFloat" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2825:57 - error: "target" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/compile_fx.py:2825:64 - error: Cannot access attribute "_schema" for class "FunctionType" +   Attribute "_schema" is unknown (reportFunctionMemberAccess) + /torch/_inductor/compile_fx.py:2825:64 - error: Cannot access attribute "_schema" for class "str" +   Attribute "_schema" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2868:34 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2881:46 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2900:42 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2934:47 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2936:38 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2939:20 - error: Cannot access attribute "pytree_info" for class "CodeGen" +   Attribute "pytree_info" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2940:31 - error: Cannot access attribute "pytree_info" for class "CodeGen" +   Attribute "pytree_info" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2941:20 - error: Cannot access attribute "pytree_info" for class "CodeGen" +   Attribute "pytree_info" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2942:32 - error: Cannot access attribute "pytree_info" for class "CodeGen" +   Attribute "pytree_info" is unknown (reportAttributeAccessIssue) + /torch/_inductor/compile_fx.py:2959:35 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/compile_fx_async.py + /torch/_inductor/compile_fx_async.py:394:49 - error: "constants" is possibly unbound (reportPossiblyUnboundVariable) +/torch/_inductor/compile_fx_ext.py + /torch/_inductor/compile_fx_ext.py:105:41 - error: "virtualized" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx_ext.py:193:37 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx_ext.py:197:23 - error: "_internal" is not a known attribute of module "torch.testing" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx_ext.py:215:25 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx_ext.py:220:26 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx_ext.py:251:34 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx_ext.py:451:25 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx_ext.py:459:27 - error: "_internal" is not a known attribute of module "torch.testing" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx_ext.py:520:46 - error: "mock" is not a known attribute of module "unittest" (reportAttributeAccessIssue) + /torch/_inductor/compile_fx_ext.py:537:39 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/compile_fx_subproc.py + /torch/_inductor/compile_fx_subproc.py:34:9 - error: Method "_send_to_child_async" overrides class "_OutOfProcessFxCompile" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "pickled_input", override parameter is named "input" (reportIncompatibleMethodOverride) + /torch/_inductor/compile_fx_subproc.py:88:25 - error: "metrics" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) +/torch/_inductor/compile_worker/__main__.py + /torch/_inductor/compile_worker/__main__.py:30:12 - error: Import "triton" could not be resolved (reportMissingImports) +/torch/_inductor/compile_worker/subproc_pool.py + /torch/_inductor/compile_worker/subproc_pool.py:446:25 - error: "util" is not a known attribute of module "multiprocessing" (reportAttributeAccessIssue) + /torch/_inductor/compile_worker/subproc_pool.py:483:14 - error: Cannot access attribute "_start_queue_management_thread" for class "ProcessPoolExecutor" +   Attribute "_start_queue_management_thread" is unknown (reportAttributeAccessIssue) +/torch/_inductor/compile_worker/tracked_process_pool.py + /torch/_inductor/compile_worker/tracked_process_pool.py:81:35 - error: "futures" is not a known attribute of module "concurrent" (reportAttributeAccessIssue) +/torch/_inductor/compile_worker/utils.py + /torch/_inductor/compile_worker/utils.py:42:14 - error: "_initCrashHandler" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) +/torch/_inductor/config.py + /torch/_inductor/config.py:52:25 - error: "_utils_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/config.py:68:25 - error: "_utils_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/config.py:284:51 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/config.py:291:32 - error: "scheduler" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/config.py:292:31 - error: "scheduler" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/config.py:301:32 - error: "scheduler" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/config.py:302:31 - error: "scheduler" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/config.py:393:36 - error: "scheduler" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/config.py:394:35 - error: "scheduler" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/config.py:639:36 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/config.py:643:36 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/config.py:653:47 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/config.py:964:21 - error: "_utils_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/config.py:993:20 - error: "sched_getaffinity" is not a known attribute of module "os" (reportAttributeAccessIssue) + /torch/_inductor/config.py:1040:14 - error: Import "libfb.py" could not be resolved (reportMissingImports) + /torch/_inductor/config.py:1565:48 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/config.py:2240:10 - warning: Import "torch.utils._config_typing" could not be resolved from source (reportMissingModuleSource) +/torch/_inductor/constant_folding.py + /torch/_inductor/constant_folding.py:20:36 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/constant_folding.py:23:41 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/constant_folding.py:123:40 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/constant_folding.py:124:48 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/constant_folding.py:130:43 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/constant_folding.py:192:9 - error: Method "run_node" overrides class "Interpreter" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "n", override parameter is named "node" (reportIncompatibleMethodOverride) + /torch/_inductor/constant_folding.py:242:23 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/constant_folding.py:253:37 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/constant_folding.py:312:22 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_inductor/constant_folding.py:342:22 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) +/torch/_inductor/cpp_builder.py + /torch/_inductor/cpp_builder.py:37:10 - error: Import "triton.fb.build" could not be resolved (reportMissingImports) + /torch/_inductor/cpp_builder.py:39:10 - error: Import "torch._inductor.fb.utils" could not be resolved (reportMissingImports) + /torch/_inductor/cpp_builder.py:387:20 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:401:18 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:403:17 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:405:22 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:1102:29 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:1103:29 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:1104:29 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:1105:29 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:1106:29 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:1107:29 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:1108:29 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:1109:29 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:1110:29 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:1122:45 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:1123:45 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:1222:36 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:1392:38 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:1394:26 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:1616:27 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpp_builder.py:1620:35 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:1672:35 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:1687:57 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpp_builder.py:1689:26 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpp_builder.py:1730:29 - error: "build_paths" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:1733:30 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpp_builder.py:2114:39 - error: "_run_build_command" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/cpp_builder.py:2213:52 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/cpu_vec_isa.py + /torch/_inductor/cpu_vec_isa.py:40:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:81:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:81:52 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:162:31 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:162:47 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:162:66 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:184:31 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:184:47 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:184:67 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:203:31 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:203:48 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:203:68 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:222:9 - error: "__bool__" overrides method of same name in class "VecISA" with incompatible type "_lru_cache_wrapper[bool]" (reportIncompatibleMethodOverride) + /torch/_inductor/cpu_vec_isa.py:328:31 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:328:47 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:328:67 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:345:31 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:345:47 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:345:67 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:358:31 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:358:47 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cpu_vec_isa.py:358:67 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/cudagraph_trees.py + /torch/_inductor/cudagraph_trees.py:104:9 - error: "_cuda_CUDAAllocator_AllocatorState" is unknown import symbol (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:105:9 - error: "_set_cached_tensors_enabled" is unknown import symbol (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:142:14 - error: "_cuda_clearCublasWorkspaces" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:157:21 - error: "_cuda_get_conv_benchmark_empty_cache" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:158:14 - error: "_cudnn_set_conv_benchmark_empty_cache" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:162:18 - error: "_cudnn_set_conv_benchmark_empty_cache" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:168:24 - error: "_cuda_isHistoryEnabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:293:10 - error: "_stash_obj_in_tls" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:294:10 - error: "_stash_obj_in_tls" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:327:25 - error: "_is_key_in_tls" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:328:25 - error: "_get_obj_in_tls" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:539:31 - error: "_storage_Use_Count" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:584:43 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:588:18 - error: "_cuda_beginAllocateCurrentThreadToPool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:592:22 - error: "_cuda_endAllocateToPool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:593:22 - error: "_cuda_releasePool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:846:32 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:875:14 - error: Cannot assign to attribute "path_stacktraces" for class "CUDAGraphNode*" +   Expression of type "list[StackTraces | list[None] | None]" cannot be assigned to attribute "path_stacktraces" of class "CUDAGraphNode" +     "list[StackTraces | list[None] | None]" is not assignable to "list[StackTraces | None]" +       Type parameter "_T@list" is invariant, but "StackTraces | list[None] | None" is not the same as "StackTraces | None" +       Consider switching from "list" to "Sequence" which is covariant (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:977:70 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:1080:19 - error: "_foreach_copy_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:1086:30 - error: "_tensors_data_ptrs_at_indices_equal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:1294:33 - error: Argument of type "tuple[Never] | list[int | Tensor | None]" cannot be assigned to parameter "outputs" of type "OutputType" in function "_add_first_outputs" +   Type "tuple[Never] | list[int | Tensor | None]" is not assignable to type "OutputType" +     "tuple[Never]" is not assignable to "list[int | Tensor | None]" (reportArgumentType) + /torch/_inductor/cudagraph_trees.py:1297:16 - error: Type "tuple[Never] | list[int | Tensor | None]" is not assignable to return type "OutputType" +   Type "tuple[Never] | list[int | Tensor | None]" is not assignable to type "OutputType" +     "tuple[Never]" is not assignable to "list[int | Tensor | None]" (reportReturnType) + /torch/_inductor/cudagraph_trees.py:1384:52 - error: "_cuda_getCheckpointState" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:1438:22 - error: "_add_cached_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:1449:54 - error: "_use_count" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/cudagraph_trees.py:1629:26 - error: "_remove_cached_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:1670:25 - error: "_construct_storage_from_data_pointer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:1697:56 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:1728:25 - error: "_tensors_data_ptrs_at_indices_equal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:1753:30 - error: "_tensors_data_ptrs_at_indices_equal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:1831:17 - error: "_cuda_checkPoolLiveAllocations" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:1932:18 - error: "_set_cached_tensors_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:2023:26 - error: "_environment" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:2024:24 - error: "_utils_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:2091:31 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:2190:46 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:2352:9 - error: Method declaration "current_node" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_inductor/cudagraph_trees.py:2356:9 - error: Method declaration "current_node" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_inductor/cudagraph_trees.py:2503:26 - error: "_set_storage_access_error_msg" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:2531:26 - error: "_free_And_Remove_DeleterFn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:2536:26 - error: "_set_storage_data_ptr_access_error_msg" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:2570:18 - error: "_cuda_setCheckpointPoolState" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:2580:22 - error: "_cuda_cudaCachingAllocator_raw_delete" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_trees.py:2590:33 - error: "_has_Standard_Deleter" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/cudagraph_utils.py + /torch/_inductor/cudagraph_utils.py:139:24 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_utils.py:172:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_utils.py:175:35 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_utils.py:180:39 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_utils.py:182:50 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_utils.py:200:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_utils.py:209:24 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_utils.py:235:24 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_utils.py:338:25 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/cudagraph_utils.py:340:27 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) +/torch/_inductor/debug.py + /torch/_inductor/debug.py:155:38 - error: "utils" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/debug.py:553:32 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/debug.py:554:44 - error: "fake_utils" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_inductor/debug.py:560:43 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/debug.py:561:34 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/debug.py:634:34 - error: Cannot access attribute "name" for class "IRNode" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_inductor/debug.py:688:58 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/debug.py:689:58 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/debug.py:855:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/debug.py:1130:30 - error: Cannot access attribute "origin_node" for class "Sequence[BaseSchedulerNode]" +   Attribute "origin_node" is unknown (reportAttributeAccessIssue) + /torch/_inductor/debug.py:1131:50 - error: Cannot access attribute "origin_node" for class "Sequence[BaseSchedulerNode]" +   Attribute "origin_node" is unknown (reportAttributeAccessIssue) + /torch/_inductor/debug.py:1137:49 - error: Cannot access attribute "origins" for class "Sequence[BaseSchedulerNode]" +   Attribute "origins" is unknown (reportAttributeAccessIssue) + /torch/_inductor/debug.py:1140:47 - error: Cannot access attribute "get_stack_traces" for class "Sequence[BaseSchedulerNode]" +   Attribute "get_stack_traces" is unknown (reportAttributeAccessIssue) + /torch/_inductor/debug.py:1232:34 - error: "testing" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) +/torch/_inductor/decomposition.py + /torch/_inductor/decomposition.py:195:22 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:211:45 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:230:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:277:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:292:26 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:304:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:313:25 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:333:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:351:39 - error: "numel" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:351:59 - error: "numel" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:359:26 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:434:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:435:19 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:435:54 - error: "atan2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:446:16 - error: "scalar_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:447:17 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:448:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:448:30 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:482:26 - error: "promote_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:511:43 - error: Cannot access attribute "view" for class "int" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:511:43 - error: Cannot access attribute "view" for class "float" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:512:20 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:533:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:533:30 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:538:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:538:30 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:547:28 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:548:22 - error: "any" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:558:28 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:559:22 - error: "all" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:570:18 - error: "narrow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:584:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:607:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:608:28 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:609:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:612:26 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:612:48 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:618:31 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:619:24 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:631:32 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:633:24 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:651:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:652:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:653:26 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:653:48 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:659:31 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:681:29 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:686:29 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:752:43 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:754:70 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:756:70 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:760:38 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:778:27 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:780:49 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:846:50 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:911:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:921:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:923:30 - error: "aminmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:925:19 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:926:36 - error: "round" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:926:68 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:927:24 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:928:27 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:928:57 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:939:23 - error: "index_put" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:962:24 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:965:26 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:992:22 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:995:28 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:998:28 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:1017:24 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:1050:19 - error: Type "Sequence[int]" is not assignable to declared type "list[int]" +   "Sequence[int]" is not assignable to "list[int]" (reportAssignmentType) + /torch/_inductor/decomposition.py:1052:16 - error: Type "Sequence[int]" is not assignable to declared type "int | list[int]" +   Type "Sequence[int]" is not assignable to type "int | list[int]" +     "Sequence[int]" is not assignable to "int" +     "Sequence[int]" is not assignable to "list[int]" (reportAssignmentType) + /torch/_inductor/decomposition.py:1054:15 - error: Type "Sequence[int]" is not assignable to declared type "int | list[int]" +   Type "Sequence[int]" is not assignable to type "int | list[int]" +     "Sequence[int]" is not assignable to "int" +     "Sequence[int]" is not assignable to "list[int]" (reportAssignmentType) + /torch/_inductor/decomposition.py:1056:14 - error: Type "Sequence[int]" is not assignable to declared type "int | list[int] | None" +   Type "Sequence[int]" is not assignable to type "int | list[int] | None" +     "Sequence[int]" is not assignable to "int" +     "Sequence[int]" is not assignable to "list[int]" +     "Sequence[int]" is not assignable to "None" (reportAssignmentType) + /torch/_inductor/decomposition.py:1061:25 - error: "lowering" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:1064:32 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:1064:44 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:1124:69 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:1145:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:1160:31 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:1165:24 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:1166:27 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:1186:35 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:1186:48 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:1189:17 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:1190:21 - error: "searchsorted" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:1191:55 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:1193:18 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/decomposition.py:1215:14 - error: Type "int" is not assignable to declared type "tuple[int]" +   "int" is not assignable to "tuple[int]" (reportAssignmentType) + /torch/_inductor/decomposition.py:1217:15 - error: Type "int" is not assignable to declared type "tuple[int]" +   "int" is not assignable to "tuple[int]" (reportAssignmentType) + /torch/_inductor/decomposition.py:1219:16 - error: Type "int" is not assignable to declared type "tuple[int]" +   "int" is not assignable to "tuple[int]" (reportAssignmentType) +/torch/_inductor/dependencies.py + /torch/_inductor/dependencies.py:215:35 - error: Argument of type "tuple[Expr, ...]" cannot be assigned to parameter "var_names" of type "tuple[Symbol, ...]" in function "__init__" +   "tuple[Expr, ...]" is not assignable to "tuple[Symbol, ...]" +     Tuple entry 1 is incorrect type +       "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/dependencies.py:227:69 - error: Argument of type "dict[Symbol, Expr]" cannot be assigned to parameter of type "VarRanges" +   "dict[Symbol, Expr]" is not assignable to "dict[Expr, Expr]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/dependencies.py:318:9 - error: "index" overrides symbol of same name in class "Dep" +   "property" is not assignable to "Expr" (reportIncompatibleVariableOverride) + /torch/_inductor/dependencies.py:384:9 - error: "index" overrides symbol of same name in class "Dep" +   "property" is not assignable to "Expr" (reportIncompatibleVariableOverride) + /torch/_inductor/dependencies.py:565:9 - error: Method "load_seed" overrides class "OpsHandler" in an incompatible manner +   Parameter 3 name mismatch: base parameter is named "offset", override parameter is named "index" (reportIncompatibleMethodOverride) + /torch/_inductor/dependencies.py:577:9 - error: Method "index_expr" overrides class "OpsHandler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "expr", override parameter is named "index" (reportIncompatibleMethodOverride) + /torch/_inductor/dependencies.py:577:67 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dependencies.py:585:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dependencies.py:672:26 - error: Cannot access attribute "_reads" for class "OpsHandler[Any]" +   Attribute "_reads" is unknown (reportAttributeAccessIssue) + /torch/_inductor/dependencies.py:674:26 - error: Cannot access attribute "_writes" for class "OpsHandler[Any]" +   Attribute "_writes" is unknown (reportAttributeAccessIssue) + /torch/_inductor/dependencies.py:676:15 - error: Cannot access attribute "_index_exprs" for class "OpsHandler[Any]" +   Attribute "_index_exprs" is unknown (reportAttributeAccessIssue) + /torch/_inductor/dependencies.py:721:13 - error: Argument of type "tuple[Any, None, None, None]" cannot be assigned to parameter "boundaries" of type "tuple[str, Expr, Expr, Expr]" in function "bucketize" +   "None" is not assignable to "Expr" +   "None" is not assignable to "Expr" +   "None" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/dependencies.py:731:34 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/dependencies.py:814:9 - error: Method "indirect_indexing" overrides class "OpsHandler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "index_var" (reportIncompatibleMethodOverride) + /torch/_inductor/dependencies.py:825:9 - error: Method "frexp" overrides class "OpsHandler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "x" (reportIncompatibleMethodOverride) + /torch/_inductor/dependencies.py:840:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dependencies.py:841:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/distributed_autotune.py + /torch/_inductor/distributed_autotune.py:73:41 - error: "scheduler" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/distributed_autotune.py:129:28 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/distributed_autotune.py:312:32 - error: "scheduler" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/distributed_autotune.py:363:32 - error: "scheduler" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/distributed_autotune.py:384:31 - error: Cannot access attribute "layout" for class "IRNode" +   Attribute "layout" is unknown (reportAttributeAccessIssue) +/torch/_inductor/dtype_propagation.py + /torch/_inductor/dtype_propagation.py:22:30 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:34:33 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:44:22 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:66:42 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:68:34 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:73:43 - error: Cannot access attribute "dtype" for class "int" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:73:43 - error: Cannot access attribute "dtype" for class "float" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:73:43 - error: Cannot access attribute "dtype" for class "bool" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:99:41 - error: "utils" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:110:35 - error: "codegen" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:121:35 - error: "utils" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:124:80 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:138:16 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:142:52 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:142:68 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:148:58 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:148:74 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:152:52 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:156:73 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:157:22 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:162:16 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:174:63 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:178:51 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:178:67 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:181:32 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:181:45 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:191:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:192:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:194:16 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:199:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:199:59 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:200:16 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:204:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:208:48 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:212:52 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:216:48 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:220:48 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:226:16 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:227:22 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:230:48 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:231:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:234:47 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:235:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:243:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:243:46 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:244:16 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:261:41 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:265:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:271:47 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:271:63 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:275:56 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:282:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:285:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:289:49 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:293:48 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:293:64 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:297:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:301:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:301:56 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:303:43 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:307:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:311:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:315:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:323:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:327:16 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:331:51 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:335:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:341:48 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:341:64 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:345:48 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:345:64 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:349:53 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:353:53 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:362:48 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:364:22 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:373:51 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:387:48 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "constant" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "value" +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "load_seed" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "name" +   Parameter 2 name mismatch: base parameter is named "name", override parameter is named "offset" +   Parameter 3 mismatch: base parameter "offset" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "rand" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "seed" +   Parameter 2 name mismatch: base parameter is named "seed", override parameter is named "offset" +   Parameter 3 mismatch: base parameter "offset" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "randn" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "seed" +   Parameter 2 name mismatch: base parameter is named "seed", override parameter is named "offset" +   Parameter 3 mismatch: base parameter "offset" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "randint64" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "seed" +   Parameter 2 name mismatch: base parameter is named "seed", override parameter is named "offset" +   Parameter 3 name mismatch: base parameter is named "offset", override parameter is named "low" +   Parameter 4 name mismatch: base parameter is named "low", override parameter is named "high" +   Parameter 5 mismatch: base parameter "high" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "masked" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "mask" +   Parameter 2 name mismatch: base parameter is named "mask", override parameter is named "body" +   Parameter 3 name mismatch: base parameter is named "body", override parameter is named "other" +   Parameter 4 mismatch: base parameter "other" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "where" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "condition", override parameter is named "b" +   Parameter 3 name mismatch: base parameter is named "input", override parameter is named "c" +   Parameter 4 mismatch: base parameter "other" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "index_expr" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "expr" +   Parameter 2 name mismatch: base parameter is named "expr", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "to_dtype" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 name mismatch: base parameter is named "dtype", override parameter is named "src_dtype" +   Parameter 4 name mismatch: base parameter is named "src_dtype", override parameter is named "use_compute_types" +   Parameter 5 mismatch: base parameter "use_compute_types" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "trunc_to_int" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "ceil_to_int" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "floor_to_int" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "round_to_int" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 mismatch: base parameter "dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "to_dtype_bitcast" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "dtype" +   Parameter 3 name mismatch: base parameter is named "dtype", override parameter is named "src_dtype" +   Parameter 4 mismatch: base parameter "src_dtype" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "identity" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "indirect_indexing" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "size" +   Parameter 3 name mismatch: base parameter is named "size", override parameter is named "check" +   Parameter 4 name mismatch: base parameter is named "check", override parameter is named "wrap_neg" +   Parameter 5 mismatch: base parameter "wrap_neg" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "load" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "name" +   Parameter 2 name mismatch: base parameter is named "name", override parameter is named "index" +   Parameter 3 mismatch: base parameter "index" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "store" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "name" +   Parameter 2 name mismatch: base parameter is named "name", override parameter is named "index" +   Parameter 3 name mismatch: base parameter is named "index", override parameter is named "value" +   Parameter 4 name mismatch: base parameter is named "value", override parameter is named "mode" +   Parameter 5 mismatch: base parameter "mode" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "reduction" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "dtype" +   Parameter 2 name mismatch: base parameter is named "dtype", override parameter is named "src_dtype" +   Parameter 3 name mismatch: base parameter is named "src_dtype", override parameter is named "reduction_type" +   Parameter 4 name mismatch: base parameter is named "reduction_type", override parameter is named "value" +   Parameter 5 mismatch: base parameter "value" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "store_reduction" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "name" +   Parameter 2 name mismatch: base parameter is named "name", override parameter is named "index" +   Parameter 3 name mismatch: base parameter is named "index", override parameter is named "value" +   Parameter 4 mismatch: base parameter "value" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "scan" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "dtypes" +   Parameter 2 name mismatch: base parameter is named "dtypes", override parameter is named "combine_fn" +   Parameter 3 name mismatch: base parameter is named "combine_fn", override parameter is named "values" +   Parameter 4 mismatch: base parameter "values" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "sort" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "dtypes" +   Parameter 2 name mismatch: base parameter is named "dtypes", override parameter is named "values" +   Parameter 3 name mismatch: base parameter is named "values", override parameter is named "stable" +   Parameter 4 name mismatch: base parameter is named "stable", override parameter is named "descending" +   Parameter 5 mismatch: base parameter "descending" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "bucketize" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 8, but override has 7 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "values" +   Parameter 2 name mismatch: base parameter is named "values", override parameter is named "boundaries" +   Parameter 3 name mismatch: base parameter is named "boundaries", override parameter is named "boundary_indices" +   Parameter 4 name mismatch: base parameter is named "boundary_indices", override parameter is named "indexing_dtype" +   Parameter 5 name mismatch: base parameter is named "indexing_dtype", override parameter is named "right" +   Parameter 6 name mismatch: base parameter is named "right", override parameter is named "sorter" + ... (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "partial_accumulate" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "name" +   Parameter 2 name mismatch: base parameter is named "name", override parameter is named "reduction_type" +   Parameter 3 name mismatch: base parameter is named "reduction_type", override parameter is named "value" +   Parameter 4 name mismatch: base parameter is named "value", override parameter is named "extra_meta" +   Parameter 5 mismatch: base parameter "extra_meta" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "frexp" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "fmod" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "round" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "floor" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "trunc" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "mul" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "pow" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "lshift" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "rshift" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "truncdiv" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "floordiv" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "truediv" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "int_truediv" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "y" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "mod" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "check_bounds" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "expr" +   Parameter 2 name mismatch: base parameter is named "expr", override parameter is named "size" +   Parameter 3 name mismatch: base parameter is named "size", override parameter is named "lower" +   Parameter 4 name mismatch: base parameter is named "lower", override parameter is named "upper" +   Parameter 5 mismatch: base parameter "upper" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "halide_clamp" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "value" +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "size" +   Parameter 3 name mismatch: base parameter is named "size", override parameter is named "check" +   Parameter 4 mismatch: base parameter "check" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "dot" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "y" +   Parameter 3 mismatch: base parameter "y" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "inline_asm_elementwise" in incompatible way +   Base method is declared as an instance method but override is not +   Parameter 1 mismatch: base parameter "self" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/dtype_propagation.py:399:11 - error: Base classes for class "_typecheck_DtypePropagation" define method "device_assert_async" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "cond" +   Parameter 2 name mismatch: base parameter is named "cond", override parameter is named "msg" +   Parameter 3 mismatch: base parameter "msg" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) +/torch/_inductor/exc.py + /torch/_inductor/exc.py:20:9 - error: Function declaration "_record_missing_op" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_inductor/exc.py:136:23 - error: Variable not allowed in type expression (reportInvalidTypeForm) +/torch/_inductor/freezing.py + /torch/_inductor/freezing.py:31:24 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/freezing.py:108:33 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/freezing.py:194:22 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_inductor/freezing.py:202:24 - error: "_dispatch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/freezing.py:223:28 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/freezing.py:279:49 - error: "channels_last" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/freezing.py:287:45 - error: "channels_last" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fuzzer.py + /torch/_inductor/fuzzer.py:61:40 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fuzzer.py:93:18 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fuzzer.py:93:49 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/b2b_gemm.py + /torch/_inductor/fx_passes/b2b_gemm.py:447:15 - error: "mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/b2b_gemm.py:447:46 - error: "mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/b2b_gemm.py:449:15 - error: "mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/b2b_gemm.py:449:49 - error: "mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/b2b_gemm.py:515:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/b2b_gemm.py:515:50 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/b2b_gemm.py:527:24 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/b2b_gemm.py:528:24 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/b2b_gemm.py:529:24 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/b2b_gemm.py:532:22 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/b2b_gemm.py:581:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/b2b_gemm.py:590:24 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/b2b_gemm.py:699:8 - error: "new_input_anchor" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/fx_passes/b2b_gemm.py:699:32 - error: "new_output_anchor" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/fx_passes/b2b_gemm.py:702:41 - error: "new_input_anchor" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/fx_passes/b2b_gemm.py:705:40 - error: "new_input_anchor" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/fx_passes/b2b_gemm.py:707:13 - error: "new_input_anchor" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/fx_passes/b2b_gemm.py:709:30 - error: "new_input_anchor" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/fx_passes/b2b_gemm.py:712:44 - error: "new_output_anchor" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/fx_passes/b2b_gemm.py:714:37 - error: "new_output_anchor" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/fx_passes/b2b_gemm.py:718:41 - error: "new_input_anchor" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/fx_passes/b2b_gemm.py:721:40 - error: "new_input_anchor" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/fx_passes/b2b_gemm.py:723:13 - error: "new_input_anchor" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/fx_passes/b2b_gemm.py:725:30 - error: "new_input_anchor" is possibly unbound (reportPossiblyUnboundVariable) +/torch/_inductor/fx_passes/ddp_fusion.py + /torch/_inductor/fx_passes/ddp_fusion.py:43:20 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/ddp_fusion.py:44:26 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/ddp_fusion.py:65:18 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/ddp_fusion.py:65:36 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/ddp_fusion.py:131:18 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/ddp_fusion.py:131:36 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/ddp_fusion.py:442:33 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/ddp_fusion.py:490:13 - error: "output" is possibly unbound (reportPossiblyUnboundVariable) +/torch/_inductor/fx_passes/decompose_mem_bound_mm.py + /torch/_inductor/fx_passes/decompose_mem_bound_mm.py:57:37 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/decompose_mem_bound_mm.py:226:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/decompose_mem_bound_mm.py:245:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/decompose_mem_bound_mm.py:269:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) +/torch/_inductor/fx_passes/efficient_conv_bn_eval.py + /torch/_inductor/fx_passes/efficient_conv_bn_eval.py:44:33 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/efficient_conv_bn_eval.py:49:27 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/efficient_conv_bn_eval.py:54:25 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/efficient_conv_bn_eval.py:61:26 - error: "rsqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/efficient_conv_bn_eval.py:109:33 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/efficient_conv_bn_eval.py:112:27 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/efficient_conv_bn_eval.py:115:25 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/efficient_conv_bn_eval.py:122:26 - error: "rsqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/efficient_conv_bn_eval.py:144:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/efficient_conv_bn_eval.py:166:18 - error: "_nn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/efficient_conv_bn_eval.py:167:15 - error: "conv1d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/efficient_conv_bn_eval.py:168:15 - error: "conv2d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/efficient_conv_bn_eval.py:169:15 - error: "conv3d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/efficient_conv_bn_eval.py:170:15 - error: "conv_transpose1d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/efficient_conv_bn_eval.py:171:15 - error: "conv_transpose2d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/efficient_conv_bn_eval.py:172:15 - error: "conv_transpose3d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/efficient_conv_bn_eval.py:236:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/efficient_conv_bn_eval.py:332:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) +/torch/_inductor/fx_passes/freezing_patterns.py + /torch/_inductor/fx_passes/freezing_patterns.py:51:21 - error: "fx_passes" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/freezing_patterns.py:65:21 - error: "fx_passes" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/freezing_patterns.py:78:18 - error: "_has_mkldnn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/freezing_patterns.py:302:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) +/torch/_inductor/fx_passes/group_batch_fusion.py + /torch/_inductor/fx_passes/group_batch_fusion.py:26:12 - error: Import "deeplearning.fbgemm.fbgemm_gpu.fb.inductor_lowerings" could not be resolved (reportMissingImports) + /torch/_inductor/fx_passes/group_batch_fusion.py:167:2 - error: Argument of type "type[PostGradBatchLinearFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[PostGradBatchLinearFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) + /torch/_inductor/fx_passes/group_batch_fusion.py:241:43 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:244:44 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:296:2 - error: Argument of type "type[GroupLinearFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[GroupLinearFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) + /torch/_inductor/fx_passes/group_batch_fusion.py:457:39 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:460:39 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:483:2 - error: Argument of type "type[BatchLinearLHSFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[BatchLinearLHSFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) + /torch/_inductor/fx_passes/group_batch_fusion.py:529:23 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:531:55 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:533:23 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:535:62 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:540:27 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:542:58 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:544:27 - error: "addmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:547:57 - error: "addmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:554:27 - error: "mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:557:57 - error: "mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:608:2 - error: Argument of type "type[PreGradBatchLinearFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[PreGradBatchLinearFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) + /torch/_inductor/fx_passes/group_batch_fusion.py:668:23 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:672:23 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:676:23 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:678:60 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:683:27 - error: "bmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:686:51 - error: "bmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:693:27 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:697:27 - error: "unsqueeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:699:64 - error: "unsqueeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:703:27 - error: "baddbmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:709:55 - error: "baddbmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:723:51 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:733:2 - error: Argument of type "type[BatchLayernormFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[BatchLayernormFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) + /torch/_inductor/fx_passes/group_batch_fusion.py:809:23 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:814:27 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:821:27 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:837:27 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:842:34 - error: "meta" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/fx_passes/group_batch_fusion.py:844:27 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:848:27 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:853:32 - error: "meta" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/fx_passes/group_batch_fusion.py:855:27 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:861:27 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:866:34 - error: "meta" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/fx_passes/group_batch_fusion.py:868:27 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:874:27 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:879:32 - error: "meta" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/fx_passes/group_batch_fusion.py:881:27 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:885:23 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:892:26 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:950:23 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:973:23 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:975:53 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:1087:23 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:1099:23 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:1101:53 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:1113:2 - error: Argument of type "type[BatchTanhPreGradFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[BatchTanhPreGradFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) + /torch/_inductor/fx_passes/group_batch_fusion.py:1116:32 - error: "tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:1119:2 - error: Argument of type "type[BatchSigmoidPreGradFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[BatchSigmoidPreGradFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) + /torch/_inductor/fx_passes/group_batch_fusion.py:1122:32 - error: "sigmoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/group_batch_fusion.py:1125:2 - error: Argument of type "type[BatchReLuPreGradFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[BatchReLuPreGradFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) + /torch/_inductor/fx_passes/group_batch_fusion.py:1131:2 - error: Argument of type "type[BatchDetachPreGradFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[BatchDetachPreGradFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) + /torch/_inductor/fx_passes/group_batch_fusion.py:1137:2 - error: Argument of type "type[BatchNanToNumPreGradFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[BatchNanToNumPreGradFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) + /torch/_inductor/fx_passes/group_batch_fusion.py:1143:2 - error: Argument of type "type[BatchClampPreGradFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[BatchClampPreGradFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) + /torch/_inductor/fx_passes/group_batch_fusion.py:1149:2 - error: Argument of type "type[BatchDropoutPreGradFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[BatchDropoutPreGradFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) + /torch/_inductor/fx_passes/group_batch_fusion.py:1155:2 - error: Argument of type "type[BatchTanhPostGradFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[BatchTanhPostGradFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) + /torch/_inductor/fx_passes/group_batch_fusion.py:1161:2 - error: Argument of type "type[BatchSigmoidPostGradFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[BatchSigmoidPostGradFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) + /torch/_inductor/fx_passes/group_batch_fusion.py:1167:2 - error: Argument of type "type[BatchReLuPostGradFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[BatchReLuPostGradFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) + /torch/_inductor/fx_passes/group_batch_fusion.py:1173:2 - error: Argument of type "type[BatchAddPostGradFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[BatchAddPostGradFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) + /torch/_inductor/fx_passes/group_batch_fusion.py:1179:2 - error: Argument of type "type[BatchSubPostGradFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[BatchSubPostGradFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) + /torch/_inductor/fx_passes/group_batch_fusion.py:1185:2 - error: Argument of type "type[BatchDivPostGradFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[BatchDivPostGradFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) + /torch/_inductor/fx_passes/group_batch_fusion.py:1191:2 - error: Argument of type "type[BatchMulPostGradFusion]" cannot be assigned to parameter "fusion_cls" of type "GroupBatchFusionBase" in function "decorator" +   Type "type[BatchMulPostGradFusion]" is not assignable to type "GroupBatchFusionBase" (reportArgumentType) +/torch/_inductor/fx_passes/joint_graph.py + /torch/_inductor/fx_passes/joint_graph.py:73:22 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:170:22 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:172:47 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:278:23 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:290:9 - error: Method "insertable_tensor_check" overrides class "ConstantFolder" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "tensor", override parameter is named "t" (reportIncompatibleMethodOverride) + /torch/_inductor/fx_passes/joint_graph.py:348:25 - error: Cannot access attribute "overloadpacket" for class "FunctionType" +   Attribute "overloadpacket" is unknown (reportFunctionMemberAccess) + /torch/_inductor/fx_passes/joint_graph.py:348:25 - error: Cannot access attribute "overloadpacket" for class "str" +   Attribute "overloadpacket" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:349:28 - error: Cannot access attribute "overloadpacket" for class "FunctionType" +   Attribute "overloadpacket" is unknown (reportFunctionMemberAccess) + /torch/_inductor/fx_passes/joint_graph.py:349:28 - error: Cannot access attribute "overloadpacket" for class "str" +   Attribute "overloadpacket" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:363:19 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:382:22 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:422:66 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:427:23 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:428:23 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:429:23 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:430:23 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:472:41 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:509:35 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:514:35 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:519:23 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:542:47 - error: "utils" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:572:18 - error: "passes" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:633:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/joint_graph.py:645:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:687:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/joint_graph.py:689:56 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:689:77 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:693:21 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:693:36 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:693:52 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:693:67 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/joint_graph.py:750:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/joint_graph.py:768:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/joint_graph.py:789:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/joint_graph.py:810:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/joint_graph.py:927:19 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/joint_graph.py:957:19 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) +/torch/_inductor/fx_passes/memory_estimator.py + /torch/_inductor/fx_passes/memory_estimator.py:20:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/memory_estimator.py:53:71 - error: Cannot assign to attribute "storage_to_uses" for class "GraphAliasTracker*" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[StorageKey, OrderedSet[Node]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[Node]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/memory_estimator.py:61:82 - error: Cannot assign to attribute "node_to_storages_last_used" for class "GraphAliasTracker*" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[Node, OrderedSet[StorageKey]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[StorageKey]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/memory_estimator.py:147:57 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/memory_estimator.py:150:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/memory_estimator.py:329:40 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/memory_estimator.py:388:50 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/micro_pipeline_tp.py + /torch/_inductor/fx_passes/micro_pipeline_tp.py:188:32 - error: Cannot access attribute "target" for class "list[Node]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/micro_pipeline_tp.py:192:38 - error: Argument of type "list[Node]" cannot be assigned to parameter "elem" of type "Node" in function "add" +   "list[Node]" is not assignable to "Node" (reportArgumentType) + /torch/_inductor/fx_passes/micro_pipeline_tp.py:459:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/micro_pipeline_tp.py:526:38 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/misc_patterns.py + /torch/_inductor/fx_passes/misc_patterns.py:88:27 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/misc_patterns.py:110:39 - error: "operator_schemas" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/mkldnn_fusion.py + /torch/_inductor/fx_passes/mkldnn_fusion.py:42:13 - error: "_has_mkldnn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/mkldnn_fusion.py:570:47 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/node_runtime_estimation.py + /torch/_inductor/fx_passes/node_runtime_estimation.py:106:22 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/node_runtime_estimation.py:159:17 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/overlap_manual_scheduling.py + /torch/_inductor/fx_passes/overlap_manual_scheduling.py:131:66 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[object, OrderedSet[Node]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[object, OrderedSet[Node]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[Node]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) + /torch/_inductor/fx_passes/overlap_manual_scheduling.py:224:60 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[Node, OrderedSet[Node]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[Node, OrderedSet[Node]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[Node]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) + /torch/_inductor/fx_passes/overlap_manual_scheduling.py:298:58 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[Node, OrderedSet[Node]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[Node, OrderedSet[Node]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[Node]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) +/torch/_inductor/fx_passes/overlap_preserving_bucketer.py + /torch/_inductor/fx_passes/overlap_preserving_bucketer.py:238:58 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[str, OrderedSet[Node]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[str, OrderedSet[Node]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[Node]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) + /torch/_inductor/fx_passes/overlap_preserving_bucketer.py:249:70 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[object, OrderedSet[Node]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[object, OrderedSet[Node]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[Node]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) + /torch/_inductor/fx_passes/overlap_preserving_bucketer.py:253:41 - error: Argument of type "str" cannot be assigned to parameter "mode" of type "BucketMode | None" in function "bucket_key" +   Type "str" is not assignable to type "BucketMode | None" +     "str" is not assignable to "None" +     "str" is not assignable to type "Literal['default']" +     "str" is not assignable to type "Literal['custom_ops']" +     "str" is not assignable to type "Literal['custom_ops_multidtype']" (reportArgumentType) +/torch/_inductor/fx_passes/overlap_scheduling.py + /torch/_inductor/fx_passes/overlap_scheduling.py:71:28 - error: "comm_analysis" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/overlap_scheduling.py:83:24 - error: "flop_counter" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/overlap_scheduling.py:100:29 - error: "runtime" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/overlap_scheduling.py:116:45 - error: "fx_utils" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/overlap_scheduling.py:139:36 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/overlap_scheduling.py:172:46 - error: "codecache" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/overlap_scheduling.py:173:28 - error: "codecache" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/overlap_scheduling.py:193:41 - error: Type "OrderedSet[T@OrderedSet]" is not assignable to declared type "OrderedSet[Node]" +   "OrderedSet[T@OrderedSet]" is not assignable to "OrderedSet[Node]" +     Type parameter "T@OrderedSet" is invariant, but "T@OrderedSet" is not the same as "Node" (reportAssignmentType) + /torch/_inductor/fx_passes/overlap_scheduling.py:306:57 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[Node, OrderedSet[Node]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[Node, OrderedSet[Node]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[Node]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) + /torch/_inductor/fx_passes/overlap_scheduling.py:376:39 - error: "comm_analysis" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/overlap_scheduling.py:381:43 - error: "comm_analysis" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/overlap_scheduling.py:471:48 - error: "median" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/overlap_scheduling.py:472:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/overlap_scheduling.py:566:63 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[Node, OrderedSet[Node]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[Node, OrderedSet[Node]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[Node]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) + /torch/_inductor/fx_passes/overlap_scheduling.py:627:64 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/overlap_scheduling.py:851:32 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/pad_mm.py + /torch/_inductor/fx_passes/pad_mm.py:69:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:70:23 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:70:49 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:70:72 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:72:25 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:72:51 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:114:25 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:137:18 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:217:62 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:225:24 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:251:40 - error: "codecache" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:252:28 - error: "codecache" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:279:46 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:279:75 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:284:32 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:351:27 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:365:54 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:366:38 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:375:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:377:48 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:381:24 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:405:37 - error: "benchmarking" is not a known attribute of module "torch._inductor.runtime" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:443:23 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:455:28 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:458:28 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:467:51 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:555:35 - error: "randn_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:604:29 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:724:24 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:883:37 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:884:37 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:886:37 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:887:37 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:889:37 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pad_mm.py:929:13 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dicts" of type "_PassDictsType | Sequence[_PassDictsType]" in function "gen_register_replacement" +   Type "PatternMatcherPass" is not assignable to type "_PassDictsType | Sequence[_PassDictsType]" +     "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +       "__getitem__" is an incompatible type +         Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +           Parameter name mismatch: "k" versus "item" +     "PatternMatcherPass" is not assignable to "Sequence[_PassDictsType]" (reportArgumentType) + /torch/_inductor/fx_passes/pad_mm.py:942:13 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dicts" of type "_PassDictsType | Sequence[_PassDictsType]" in function "gen_register_replacement" +   Type "PatternMatcherPass" is not assignable to type "_PassDictsType | Sequence[_PassDictsType]" +     "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +       "__getitem__" is an incompatible type +         Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +           Parameter name mismatch: "k" versus "item" +     "PatternMatcherPass" is not assignable to "Sequence[_PassDictsType]" (reportArgumentType) +/torch/_inductor/fx_passes/post_grad.py + /torch/_inductor/fx_passes/post_grad.py:96:18 - error: "passes" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/post_grad.py:119:17 - error: "_has_mkldnn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/post_grad.py:380:19 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/post_grad.py:568:19 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/post_grad.py:773:19 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_lowering_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/post_grad.py:867:76 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/post_grad.py:868:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/post_grad.py:903:21 - error: "kernel" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/post_grad.py:923:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/post_grad.py:930:23 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/post_grad.py:1049:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/post_grad.py:1117:47 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/post_grad.py:1136:35 - error: Argument of type "(args: Unknown) -> Unknown" cannot be assigned to parameter "nop_arg" of type "int" in function "register_noop_decomp" +   "FunctionType" is not assignable to "int" (reportArgumentType) + /torch/_inductor/fx_passes/post_grad.py:1541:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/post_grad.py:1588:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/post_grad.py:1598:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/post_grad.py:1782:55 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/post_grad.py:1812:43 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/post_grad.py:1836:38 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/post_grad.py:1839:51 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/post_grad.py:1922:72 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[Node, OrderedSet[Node]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[Node, OrderedSet[Node]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[Node]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) + /torch/_inductor/fx_passes/post_grad.py:2001:25 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/post_grad.py:2002:29 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/pre_grad.py + /torch/_inductor/fx_passes/pre_grad.py:392:14 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pre_grad.py:513:54 - error: Argument of type "Unknown | None" cannot be assigned to parameter "bn" of type "_BatchNorm" in function "fuse_conv_bn_eval" +   Type "Unknown | None" is not assignable to type "_BatchNorm" +     "None" is not assignable to "_BatchNorm" (reportArgumentType) + /torch/_inductor/fx_passes/pre_grad.py:523:63 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "matches_module_function_pattern" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/_inductor/fx_passes/pre_grad.py:573:35 - error: "allclose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pre_grad.py:574:35 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pre_grad.py:575:35 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pre_grad.py:601:21 - error: Argument of type "Unknown | None" cannot be assigned to parameter "bn_rm" of type "Tensor" in function "fuse_conv_bn_weights" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/_inductor/fx_passes/pre_grad.py:603:21 - error: Argument of type "Unknown | None" cannot be assigned to parameter "bn_rv" of type "Tensor" in function "fuse_conv_bn_weights" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/_inductor/fx_passes/pre_grad.py:605:21 - error: Argument of type "Unknown | None" cannot be assigned to parameter "bn_eps" of type "float" in function "fuse_conv_bn_weights" +   Type "Unknown | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportArgumentType) + /torch/_inductor/fx_passes/pre_grad.py:647:38 - error: "bmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pre_grad.py:647:49 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pre_grad.py:696:63 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pre_grad.py:721:44 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pre_grad.py:769:22 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pre_grad.py:770:18 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pre_grad.py:809:66 - error: "bmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pre_grad.py:810:66 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pre_grad.py:866:22 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pre_grad.py:867:18 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/pre_grad.py:877:18 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/quantization.py + /torch/_inductor/fx_passes/quantization.py:77:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:78:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:79:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:80:15 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:81:15 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:434:39 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:434:51 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:434:64 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:434:79 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:1456:32 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:1456:47 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:1584:32 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:1584:47 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:1599:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:1698:31 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:1926:32 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:1926:47 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:1954:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2012:29 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2057:31 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2419:52 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2463:49 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2471:51 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2491:59 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2498:44 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2502:49 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2508:49 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2554:62 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2557:59 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2560:59 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2693:62 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2695:37 - error: Cannot access attribute "op" for class "tuple[Argument, ...]" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2695:37 - error: Cannot access attribute "op" for class "Sequence[Argument]" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2695:37 - error: Cannot access attribute "op" for class "Mapping[str, Argument]" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2695:37 - error: Cannot access attribute "op" for class "slice[Any, Any, Any]" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2695:37 - error: Cannot access attribute "op" for class "range" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2695:37 - error: Cannot access attribute "op" for class "str" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2695:37 - error: Cannot access attribute "op" for class "int" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2695:37 - error: Cannot access attribute "op" for class "float" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2695:37 - error: Cannot access attribute "op" for class "bool" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2695:37 - error: Cannot access attribute "op" for class "complex" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2695:37 - error: Cannot access attribute "op" for class "SymInt" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2695:37 - error: Cannot access attribute "op" for class "SymBool" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2695:37 - error: Cannot access attribute "op" for class "SymFloat" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2695:37 - error: "op" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/fx_passes/quantization.py:2708:51 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2760:78 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2913:39 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2913:51 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2913:64 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2913:79 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2917:39 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2917:70 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2922:39 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2922:70 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2958:47 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2958:60 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2963:47 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2963:60 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2968:47 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:2968:60 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:3284:40 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:3284:53 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:3288:55 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:3288:68 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/quantization.py:3848:61 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/reinplace.py + /torch/_inductor/fx_passes/reinplace.py:13:6 - warning: Import "torch._C._dynamo.guards" could not be resolved from source (reportMissingModuleSource) + /torch/_inductor/fx_passes/reinplace.py:722:18 - error: Import "triton.runtime.autotuner" could not be resolved (reportMissingImports) + /torch/_inductor/fx_passes/reinplace.py:723:18 - error: Import "triton.runtime.jit" could not be resolved (reportMissingImports) + /torch/_inductor/fx_passes/reinplace.py:726:38 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/reinplace.py:726:38 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/reinplace.py:730:38 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/reinplace.py:731:46 - error: Cannot access attribute "base_fn" for class "Autotuner" +   Attribute "base_fn" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/reinplace.py:731:46 - error: Cannot access attribute "base_fn" for class "JITFunction" +   Attribute "base_fn" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/reinplace.py:733:46 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/reinplace.py:733:46 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/reinplace.py:735:42 - error: Cannot access attribute "base_fn" for class "Autotuner" +   Attribute "base_fn" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/reinplace.py:735:42 - error: Cannot access attribute "base_fn" for class "JITFunction" +   Attribute "base_fn" is unknown (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/reinplace.py:785:42 - error: "fx_utils" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/replace_random.py + /torch/_inductor/fx_passes/replace_random.py:62:46 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/replace_random.py:63:62 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/replace_random.py:92:75 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/replace_random.py:94:77 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/replace_random.py:96:76 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/replace_random.py:98:78 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/replace_random.py:132:74 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/replace_random.py:139:17 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:37:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:42:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:56:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:95:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:100:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:114:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:123:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:128:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:143:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:182:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:187:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:202:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:36:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:41:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:55:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:92:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:97:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:111:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:119:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:124:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:140:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:180:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:185:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:201:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:38:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:43:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:59:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:100:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:105:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:119:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:129:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:134:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:152:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:196:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:201:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:217:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:36:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:41:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:56:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:94:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:99:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:114:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:122:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:127:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:144:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:185:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:190:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:207:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:40:88 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:45:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:60:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:64:107 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:104:88 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:109:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:124:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:136:88 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:141:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:158:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:162:107 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:205:88 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:210:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:227:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:38:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:43:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:60:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:102:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:107:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:122:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:220:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:225:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:244:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:289:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:294:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:311:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:416:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:421:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:439:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:483:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:488:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:504:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:42:88 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:47:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:64:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:68:107 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:112:88 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:117:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:132:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:146:88 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:151:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:170:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:174:107 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:221:88 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:226:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:243:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:38:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:43:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:62:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:77:107 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:107:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:112:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:129:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:179:107 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:242:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:247:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:268:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:286:107 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:316:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:321:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:340:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:395:107 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py:72:107 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py:162:107 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:43:88 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:48:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:64:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:68:107 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:112:88 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:117:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:131:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:146:88 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:151:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:169:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:173:107 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:220:88 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:225:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:241:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:36:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:41:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:57:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:95:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:100:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:116:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:206:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:211:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:230:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:272:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:277:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:296:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:36:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:41:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:57:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:97:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:102:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:118:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:218:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:223:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:242:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:286:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:291:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:310:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:36:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:41:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:56:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:95:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:100:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:115:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:212:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:217:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:236:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:279:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:284:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:303:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:38:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:43:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:60:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:102:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:107:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:122:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:132:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:137:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:155:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:197:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:202:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:218:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:36:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:41:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:56:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:94:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:99:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:114:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:122:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:127:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:143:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:181:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:186:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:202:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:39:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:44:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:60:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:103:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:108:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:122:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:133:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:138:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:155:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:198:86 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:203:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:218:90 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/fx_passes/split_cat.py + /torch/_inductor/fx_passes/split_cat.py:38:40 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:129:29 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:217:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:221:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:229:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:233:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:268:31 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:269:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:273:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:294:8 - error: Operator "<" not supported for types "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | Unknown | Tensor | OpOverload[..., Any] | SymInt | SymBool | SymFloat | Any" and "Literal[0]" +   Operator "<" not supported for types "tuple[Argument, ...]" and "Literal[0]" +   Operator "<" not supported for types "Sequence[Argument]" and "Literal[0]" +   Operator "<" not supported for types "Mapping[str, Argument]" and "Literal[0]" +   Operator "<" not supported for types "slice[Any, Any, Any]" and "Literal[0]" +   Operator "<" not supported for types "range" and "Literal[0]" +   Operator "<" not supported for types "str" and "Literal[0]" +   Operator "<" not supported for types "complex" and "Literal[0]" +   Operator "<" not supported for types "OpOverload[..., Any]" and "Literal[0]" + ... (reportOperatorIssue) + /torch/_inductor/fx_passes/split_cat.py:298:19 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:309:32 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:309:43 - error: "concat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:310:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:344:8 - error: Operator "<" not supported for types "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | Unknown | Tensor | OpOverload[..., Any] | SymInt | SymBool | SymFloat | Any" and "Literal[0]" +   Operator "<" not supported for types "tuple[Argument, ...]" and "Literal[0]" +   Operator "<" not supported for types "Sequence[Argument]" and "Literal[0]" +   Operator "<" not supported for types "Mapping[str, Argument]" and "Literal[0]" +   Operator "<" not supported for types "slice[Any, Any, Any]" and "Literal[0]" +   Operator "<" not supported for types "range" and "Literal[0]" +   Operator "<" not supported for types "str" and "Literal[0]" +   Operator "<" not supported for types "complex" and "Literal[0]" +   Operator "<" not supported for types "OpOverload[..., Any]" and "Literal[0]" + ... (reportOperatorIssue) + /torch/_inductor/fx_passes/split_cat.py:353:38 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:359:19 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:370:31 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:371:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:416:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:442:23 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:446:23 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:455:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:470:19 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:480:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:483:31 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:484:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:506:19 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:517:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:531:19 - error: "detach" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:585:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:734:38 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:734:49 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:807:40 - error: "cumsum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:807:53 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:859:47 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:859:58 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:866:71 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:888:47 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:941:40 - error: "cumsum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:941:53 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:978:47 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:978:58 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1021:35 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1044:35 - error: "unflatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1054:35 - error: "movedim" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1064:35 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1077:31 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1091:31 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1095:64 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1107:43 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1114:31 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1116:64 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1134:47 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1134:58 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1223:50 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1229:47 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1261:19 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1273:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:1278:19 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1290:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:1302:37 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1306:19 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1309:50 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1330:19 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1336:16 - error: Argument of type "Multiple" cannot be assigned to parameter "_users" of type "int" in function "__init__" +   "Multiple" is not assignable to "int" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:1343:25 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1343:38 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1344:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:1348:16 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1348:29 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1350:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:1354:16 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1354:29 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1356:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:1359:77 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1379:15 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1398:16 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1398:29 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1403:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:1407:16 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1407:29 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1412:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:1416:16 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1416:29 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1421:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:1502:15 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1507:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:1521:37 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1609:15 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1614:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:1626:37 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1691:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:1740:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:1786:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:1791:40 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:1890:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:1942:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:1974:8 - error: Operator "<" not supported for types "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | Unknown | Tensor | OpOverload[..., Any] | SymInt | SymBool | SymFloat | Any" and "Literal[0]" +   Operator "<" not supported for types "tuple[Argument, ...]" and "Literal[0]" +   Operator "<" not supported for types "Sequence[Argument]" and "Literal[0]" +   Operator "<" not supported for types "Mapping[str, Argument]" and "Literal[0]" +   Operator "<" not supported for types "slice[Any, Any, Any]" and "Literal[0]" +   Operator "<" not supported for types "range" and "Literal[0]" +   Operator "<" not supported for types "str" and "Literal[0]" +   Operator "<" not supported for types "complex" and "Literal[0]" +   Operator "<" not supported for types "OpOverload[..., Any]" and "Literal[0]" + ... (reportOperatorIssue) + /torch/_inductor/fx_passes/split_cat.py:1995:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:2005:23 - error: Argument of type "int | str" cannot be assigned to parameter "node" of type "Node" in function "get_arg_value" +   Type "int | str" is not assignable to type "Node" +     "int" is not assignable to "Node" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:2010:23 - error: Argument of type "int | str" cannot be assigned to parameter "node" of type "Node" in function "get_arg_value" +   Type "int | str" is not assignable to type "Node" +     "int" is not assignable to "Node" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:2043:26 - error: Argument of type "int | str" cannot be assigned to parameter "to_erase" of type "Node" in function "erase_node" +   Type "int | str" is not assignable to type "Node" +     "int" is not assignable to "Node" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:2142:22 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2154:23 - error: "permute" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2157:56 - error: "permute" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2164:19 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2166:52 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2188:27 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2203:27 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2220:54 - error: "narrow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2304:60 - error: Dictionary key must be hashable +   Type "Argument" is not hashable (reportUnhashable) + /torch/_inductor/fx_passes/split_cat.py:2342:15 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2347:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:2360:40 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2366:37 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2391:27 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2425:15 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2430:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:2433:77 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2437:40 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2442:37 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2469:27 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2473:60 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2503:19 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2506:52 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2516:19 - error: "permute" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2519:52 - error: "permute" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2543:29 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2556:19 - error: "permute" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2559:52 - error: "permute" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2599:15 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2604:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:2612:40 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2618:39 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2638:27 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2672:15 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2677:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:2680:77 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2684:40 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2689:39 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2712:27 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2716:60 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2754:80 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2770:15 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2775:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:2781:73 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2783:40 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2794:44 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2834:39 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2838:81 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2844:46 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2865:31 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2869:73 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2876:27 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_passes/split_cat.py:2913:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) + /torch/_inductor/fx_passes/split_cat.py:3015:15 - error: Argument of type "PatternMatcherPass" cannot be assigned to parameter "pass_dict" of type "_PassDictsType" in function "register_graph_pattern" +   "PatternMatcherPass" is incompatible with protocol "_PassDictsType" +     "__getitem__" is an incompatible type +       Type "(item: tuple[str, Unknown]) -> list[PatternEntry]" is not assignable to type "(k: tuple[str, Unknown]) -> list[PatternEntry]" +         Parameter name mismatch: "k" versus "item" (reportArgumentType) +/torch/_inductor/fx_utils.py + /torch/_inductor/fx_utils.py:32:20 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/fx_utils.py:261:21 - error: "_has_storage" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/fx_utils.py:325:30 - error: "flop_counter" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_inductor/fx_utils.py:345:21 - error: Cannot access attribute "overloadpacket" for class "FunctionType" +   Attribute "overloadpacket" is unknown (reportFunctionMemberAccess) + /torch/_inductor/fx_utils.py:345:21 - error: Cannot access attribute "overloadpacket" for class "str" +   Attribute "overloadpacket" is unknown (reportAttributeAccessIssue) +/torch/_inductor/graph.py + /torch/_inductor/graph.py:22:19 - error: "device" is unknown import symbol (reportAttributeAccessIssue) + /torch/_inductor/graph.py:145:10 - error: Import "torch._inductor.fb.utils" could not be resolved (reportMissingImports) + /torch/_inductor/graph.py:152:82 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:159:22 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:179:29 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:290:19 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:298:25 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:390:67 - error: Cannot assign to attribute "additional_buffer_deps" for class "GraphLowering*" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[str, OrderedSet[str]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[str]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAttributeAccessIssue) + /torch/_inductor/graph.py:418:33 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:470:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:487:46 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:575:16 - error: Type "tuple[list[Integer], list[Integer]]" is not assignable to return type "tuple[list[Expr], list[Expr]]" +   "list[Integer]" is not assignable to "list[Expr]" +     Type parameter "_T@list" is invariant, but "Integer" is not the same as "Expr" +     Consider switching from "list" to "Sequence" which is covariant +   "list[Integer]" is not assignable to "list[Expr]" +     Type parameter "_T@list" is invariant, but "Integer" is not the same as "Expr" +     Consider switching from "list" to "Sequence" which is covariant (reportReturnType) + /torch/_inductor/graph.py:592:20 - error: Type "list[int]" is not assignable to return type "Sequence[Expr]" +   "list[int]" is not assignable to "Sequence[Expr]" +     Type parameter "_T_co@Sequence" is covariant, but "int" is not a subtype of "Expr" +       "int" is not assignable to "Expr" (reportReturnType) + /torch/_inductor/graph.py:607:39 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:630:52 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:637:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:907:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:915:46 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:947:52 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:959:55 - error: Cannot access attribute "get_dtype" for class "Expr" +   Attribute "get_dtype" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:963:51 - error: Cannot access attribute "get_dtype" for class "Expr" +   Attribute "get_dtype" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:978:51 - error: Cannot access attribute "get_numel" for class "Expr" +   Attribute "get_numel" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1005:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1063:42 - error: Union requires two or more type arguments (reportInvalidTypeArguments) + /torch/_inductor/graph.py:1106:72 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1114:26 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1123:9 - error: Method "placeholder" overrides class "Interpreter" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Target", override parameter is type "str" +   Parameter 3 type mismatch: base parameter is type "tuple[Argument, ...]", override parameter is type "tuple[object]" +     Type "Target" is not assignable to type "str" +       "FunctionType" is not assignable to "str" +     "tuple[Argument, ...]" is not assignable to "tuple[object]" +       Tuple size mismatch; expected 1 but received indeterminate (reportIncompatibleMethodOverride) + /torch/_inductor/graph.py:1161:40 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1165:23 - error: "_prims" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1256:40 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1261:40 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1275:43 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1310:47 - error: "operator_schemas" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1353:9 - error: Method "get_attr" overrides class "Interpreter" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Target", override parameter is type "str" +   Parameter 3 type mismatch: base parameter is type "tuple[Argument, ...]", override parameter is type "tuple[()]" +     Type "Target" is not assignable to type "str" +       "FunctionType" is not assignable to "str" +     "tuple[Argument, ...]" is not assignable to "tuple[()]" +       Tuple size mismatch; expected 0 but received indeterminate (reportIncompatibleMethodOverride) + /torch/_inductor/graph.py:1373:39 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1411:9 - error: Method "output" overrides class "Interpreter" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Target", override parameter is type "str" +   Parameter 3 type mismatch: base parameter is type "tuple[Argument, ...]", override parameter is type "tuple[object]" +     Type "Target" is not assignable to type "str" +       "FunctionType" is not assignable to "str" +     "tuple[Argument, ...]" is not assignable to "tuple[object]" +       Tuple size mismatch; expected 1 but received indeterminate (reportIncompatibleMethodOverride) + /torch/_inductor/graph.py:1460:40 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1463:38 - error: Cannot access attribute "meta" for class "tuple[Argument, ...]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1463:38 - error: Cannot access attribute "meta" for class "Sequence[Argument]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1463:38 - error: Cannot access attribute "meta" for class "Mapping[str, Argument]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1463:38 - error: Cannot access attribute "meta" for class "slice[Any, Any, Any]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1463:38 - error: Cannot access attribute "meta" for class "range" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1463:38 - error: Cannot access attribute "meta" for class "str" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1463:38 - error: Cannot access attribute "meta" for class "int" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1463:38 - error: Cannot access attribute "meta" for class "float" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1463:38 - error: Cannot access attribute "meta" for class "bool" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1463:38 - error: Cannot access attribute "meta" for class "complex" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1463:38 - error: Cannot access attribute "meta" for class "OpOverload[..., Any]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1463:38 - error: Cannot access attribute "meta" for class "SymInt" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1463:38 - error: Cannot access attribute "meta" for class "SymBool" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1463:38 - error: Cannot access attribute "meta" for class "SymFloat" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1463:38 - error: "meta" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/graph.py:1471:13 - error: Type "TensorBox | Any | Expr" is not assignable to declared type "IRNode" +   Type "TensorBox | Any | Expr" is not assignable to type "IRNode" +     "Expr" is not assignable to "IRNode" (reportAssignmentType) + /torch/_inductor/graph.py:1475:64 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1547:29 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1568:34 - error: "Argument" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1625:36 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1670:29 - error: "args" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/graph.py:1672:29 - error: "kwargs" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/graph.py:1723:41 - error: Cannot access attribute "stride" for class "SymInt" +   Attribute "stride" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1723:41 - error: Cannot access attribute "stride" for class "SymFloat" +   Attribute "stride" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1723:41 - error: Cannot access attribute "stride" for class "SymBool" +   Attribute "stride" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1724:47 - error: "utils" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1748:35 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1763:29 - error: Argument of type "Sequence[Expr] | Any" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "stride_ordered_for_memory_format" +   Type "Sequence[Expr] | Any" is not assignable to type "Sequence[int]" +     "Sequence[Expr]" is not assignable to "Sequence[int]" +       Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +         "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/graph.py:1763:54 - error: "channels_last" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1818:37 - error: "_has_mkldnn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1836:41 - error: "has_mkl" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1841:67 - error: Cannot access attribute "stride" for class "SymInt" +   Attribute "stride" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1841:67 - error: Cannot access attribute "stride" for class "SymFloat" +   Attribute "stride" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1841:67 - error: Cannot access attribute "stride" for class "SymBool" +   Attribute "stride" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1851:82 - error: Cannot access attribute "shape" for class "SymInt" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1851:82 - error: Cannot access attribute "shape" for class "SymFloat" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1851:82 - error: Cannot access attribute "shape" for class "SymBool" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:1856:51 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:2129:29 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:2143:72 - error: "clone" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:2215:41 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:2286:34 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_inductor/graph.py:2500:41 - error: Cannot access attribute "get_numel" for class "Expr" +   Attribute "get_numel" is unknown (reportAttributeAccessIssue) + /torch/_inductor/graph.py:2501:45 - error: Cannot access attribute "get_size" for class "Expr" +   Attribute "get_size" is unknown (reportAttributeAccessIssue) +/torch/_inductor/index_propagation.py + /torch/_inductor/index_propagation.py:60:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/index_propagation.py:94:63 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/index_propagation.py:98:64 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/index_propagation.py:104:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/index_propagation.py:105:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/index_propagation.py:120:29 - error: "promote_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/index_propagation.py:125:29 - error: "promote_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/index_propagation.py:130:29 - error: "promote_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/index_propagation.py:139:29 - error: "promote_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/index_propagation.py:147:29 - error: "promote_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/index_propagation.py:156:29 - error: "promote_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/index_propagation.py:174:29 - error: "promote_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/index_propagation.py:179:29 - error: "promote_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/index_propagation.py:234:63 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/index_propagation.py:338:9 - error: Method "indirect_indexing" overrides class "OpsHandler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "index" (reportIncompatibleMethodOverride) +/torch/_inductor/inductor_prims.py + /torch/_inductor/inductor_prims.py:25:35 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/inductor_prims.py:59:18 - error: "amax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/inductor_prims.py:60:24 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/inductor_prims.py:60:34 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/inductor_prims.py:66:26 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/inductor_prims.py:68:17 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/inductor_prims.py:72:33 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/inductor_prims.py:74:17 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/inductor_prims.py:90:47 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/inductor_prims.py:96:41 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/inductor_prims.py:115:17 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/inductor_prims.py:120:17 - error: Argument of type "tuple[Literal[RETURN_TYPE.NEW], Literal[RETURN_TYPE.NEW]]" cannot be assigned to parameter "return_type" of type "RETURN_TYPE" in function "make_prim" +   "tuple[Literal[RETURN_TYPE.NEW], Literal[RETURN_TYPE.NEW]]" is not assignable to "RETURN_TYPE" (reportArgumentType) + /torch/_inductor/inductor_prims.py:218:17 - error: Argument of type "tuple[Literal[RETURN_TYPE.NEW], Literal[RETURN_TYPE.NEW]]" cannot be assigned to parameter "return_type" of type "RETURN_TYPE" in function "make_prim" +   "tuple[Literal[RETURN_TYPE.NEW], Literal[RETURN_TYPE.NEW]]" is not assignable to "RETURN_TYPE" (reportArgumentType) +/torch/_inductor/invert_expr_analysis.py + /torch/_inductor/invert_expr_analysis.py:120:27 - error: Argument of type "Literal[1]" cannot be assigned to parameter "original_expr" of type "Expr" in function "__init__" +   "Literal[1]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/invert_expr_analysis.py:149:22 - error: Argument of type "Basic" cannot be assigned to parameter "a" of type "_IntLike" in function "static_eq" +   Type "Basic" is not assignable to type "_IntLike" +     "Basic" is not assignable to "int" +     "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/invert_expr_analysis.py:150:20 - error: Type "tuple[Basic, Basic]" is not assignable to return type "tuple[_IntLike | None, _IntLike | None]" +   Type "Basic" is not assignable to type "_IntLike | None" +     "Basic" is not assignable to "int" +     "Basic" is not assignable to "Expr" +     "Basic" is not assignable to "None" +   Type "Basic" is not assignable to type "_IntLike | None" +     "Basic" is not assignable to "int" +     "Basic" is not assignable to "Expr" +     "Basic" is not assignable to "None" (reportReturnType) + /torch/_inductor/invert_expr_analysis.py:159:26 - error: Argument of type "Basic" cannot be assigned to parameter "a" of type "_IntLike" in function "static_eq" +   Type "Basic" is not assignable to type "_IntLike" +     "Basic" is not assignable to "int" +     "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/invert_expr_analysis.py:159:48 - error: Argument of type "Basic" cannot be assigned to parameter "a" of type "_IntLike" in function "static_eq" +   Type "Basic" is not assignable to type "_IntLike" +     "Basic" is not assignable to "int" +     "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/invert_expr_analysis.py:161:35 - error: Type "tuple[FloorDiv, Basic]" is not assignable to return type "tuple[_IntLike | None, _IntLike | None]" +   Type "Basic" is not assignable to type "_IntLike | None" +     "Basic" is not assignable to "int" +     "Basic" is not assignable to "Expr" +     "Basic" is not assignable to "None" (reportReturnType) + /torch/_inductor/invert_expr_analysis.py:164:24 - error: Argument of type "Basic" cannot be assigned to parameter "a" of type "_IntLike" in function "static_eq" +   Type "Basic" is not assignable to type "_IntLike" +     "Basic" is not assignable to "int" +     "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/invert_expr_analysis.py:165:26 - error: Type "tuple[None, Basic]" is not assignable to return type "tuple[_IntLike | None, _IntLike | None]" +   Type "Basic" is not assignable to type "_IntLike | None" +     "Basic" is not assignable to "int" +     "Basic" is not assignable to "Expr" +     "Basic" is not assignable to "None" (reportReturnType) +/torch/_inductor/ir.py + /torch/_inductor/ir.py:132:12 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/_inductor/ir.py:373:18 - error: Type "list[Expr]" is not assignable to declared type "StrideType" +   Type "list[Expr]" is not assignable to type "StrideType" +     "list[Expr]" is not assignable to "list[int]" +       Type parameter "_T@list" is invariant, but "Expr" is not the same as "int" +       Consider switching from "list" to "Sequence" which is covariant +     "list[Expr]" is not assignable to "tuple[int, ...]" (reportAssignmentType) + /torch/_inductor/ir.py:373:52 - error: Argument of type "list[int | Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "contiguous_strides" +   "list[int | Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "int | Expr" is not a subtype of "int" +       Type "int | Expr" is not assignable to type "int" +         "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:378:14 - error: Type "list[int | SymInt]" is not assignable to declared type "StrideType" +   Type "list[int | SymInt]" is not assignable to type "StrideType" +     "list[int | SymInt]" is not assignable to "list[int]" +       Type parameter "_T@list" is invariant, but "int | SymInt" is not the same as "int" +       Consider switching from "list" to "Sequence" which is covariant +     "list[int | SymInt]" is not assignable to "tuple[int, ...]" (reportAssignmentType) + /torch/_inductor/ir.py:380:19 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:397:40 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:401:30 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:402:18 - error: Cannot access attribute "type" for class "IRNode" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:402:18 - error: Cannot access attribute "type" for class "OutputSpec" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:406:18 - error: Argument of type "str" cannot be assigned to parameter "arg" of type "Never" in function "assert_never" +   Type "str" is not assignable to type "Never" (reportArgumentType) + /torch/_inductor/ir.py:409:38 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:429:35 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:464:50 - error: Argument of type "_IntLike" cannot be assigned to parameter "left" of type "Expr" in function "statically_known_leq" +   Type "_IntLike" is not assignable to type "Expr" +     "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:489:50 - error: Argument of type "int | SymInt" cannot be assigned to parameter "left" of type "Expr | int" in function "statically_known_equals" +   Type "int | SymInt" is not assignable to type "Expr | int" +     Type "SymInt" is not assignable to type "Expr | int" +       "SymInt" is not assignable to "Expr" +       "SymInt" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:494:38 - error: Argument of type "Sequence[int | SymInt]" cannot be assigned to parameter "strides1" of type "Sequence[_IntLike]" in function "significant_strides_equal" +   "Sequence[int | SymInt]" is not assignable to "Sequence[_IntLike]" +     Type parameter "_T_co@Sequence" is covariant, but "int | SymInt" is not a subtype of "_IntLike" +       Type "int | SymInt" is not assignable to type "_IntLike" +         Type "SymInt" is not assignable to type "_IntLike" +           "SymInt" is not assignable to "int" +           "SymInt" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:608:54 - error: "stack_trace" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/ir.py:610:39 - error: "stack_trace" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/ir.py:613:37 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:617:32 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/ir.py:623:41 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:653:32 - error: No overloads for "join" match the provided arguments (reportCallIssue) + /torch/_inductor/ir.py:653:43 - error: Argument of type "list[object]" cannot be assigned to parameter "iterable" of type "Iterable[str]" in function "join" +   "list[object]" is not assignable to "Iterable[str]" +     Type parameter "_T_co@Iterable" is covariant, but "object" is not a subtype of "str" +       "object" is not assignable to "str" (reportArgumentType) + /torch/_inductor/ir.py:658:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:661:49 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:729:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:732:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:830:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:845:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:853:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:858:21 - error: Cannot access attribute "origin_node" for class "Operation*" +   Attribute "origin_node" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:862:21 - error: Cannot access attribute "origins" for class "Operation*" +   Attribute "origins" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:926:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:927:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:959:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:966:16 - error: Type "Sequence[_IntLike]" is not assignable to return type "Sequence[Expr]" +   "Sequence[_IntLike]" is not assignable to "Sequence[Expr]" +     Type parameter "_T_co@Sequence" is covariant, but "_IntLike" is not a subtype of "Expr" +       Type "_IntLike" is not assignable to type "Expr" +         "int" is not assignable to "Expr" (reportReturnType) + /torch/_inductor/ir.py:969:16 - error: Type "Sequence[_IntLike]" is not assignable to return type "Sequence[Expr]" +   "Sequence[_IntLike]" is not assignable to "Sequence[Expr]" +     Type parameter "_T_co@Sequence" is covariant, but "_IntLike" is not a subtype of "Expr" +       Type "_IntLike" is not assignable to type "Expr" +         "int" is not assignable to "Expr" (reportReturnType) + /torch/_inductor/ir.py:1051:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1057:69 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1093:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1110:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1134:21 - error: Argument of type "Expr" cannot be assigned to parameter of type "Sequence[Expr]" +   "Expr" is not assignable to "Sequence[Expr]" (reportArgumentType) + /torch/_inductor/ir.py:1152:39 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1219:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1234:16 - error: Type "Sequence[_IntLike]" is not assignable to return type "Sequence[Expr]" +   "Sequence[_IntLike]" is not assignable to "Sequence[Expr]" +     Type parameter "_T_co@Sequence" is covariant, but "_IntLike" is not a subtype of "Expr" +       Type "_IntLike" is not assignable to type "Expr" +         "int" is not assignable to "Expr" (reportReturnType) + /torch/_inductor/ir.py:1269:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1286:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1287:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1288:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1297:67 - error: Argument of type "Sequence[_IntLike]" cannot be assigned to parameter "it" of type "Iterable[Expr]" in function "sympy_product" +   "Sequence[_IntLike]" is not assignable to "Iterable[Expr]" +     Type parameter "_T_co@Iterable" is covariant, but "_IntLike" is not a subtype of "Expr" +       Type "_IntLike" is not assignable to type "Expr" +         "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:1321:13 - error: Declaration "inner_reduction_splits" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_inductor/ir.py:1339:44 - error: Argument of type "Integer | int" cannot be assigned to parameter "reduction_numel_hint" of type "int" in function "__call__" +   Type "Integer | int" is not assignable to type "int" +     "Integer" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:1339:44 - error: Argument of type "Integer | int" cannot be assigned to parameter "reduction_numel_hint" of type "int" in function "inner_reduction_splits" +   Type "Integer | int" is not assignable to type "int" +     "Integer" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:1339:66 - error: Argument of type "Integer | Literal[1]" cannot be assigned to parameter "numel_hint" of type "int" in function "__call__" +   Type "Integer | Literal[1]" is not assignable to type "int" +     "Integer" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:1339:66 - error: Argument of type "Integer | Literal[1]" cannot be assigned to parameter "numel_hint" of type "int" in function "inner_reduction_splits" +   Type "Integer | Literal[1]" is not assignable to type "int" +     "Integer" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:1436:20 - error: Argument of type "Sequence[Expr]" cannot be assigned to parameter "vars" of type "Sequence[Symbol]" in function "stride_hints" +   "Sequence[Expr]" is not assignable to "Sequence[Symbol]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "Symbol" +       "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/ir.py:1436:36 - error: Argument of type "list[Expr]" cannot be assigned to parameter "support_vars" of type "Sequence[Symbol] | None" in function "stride_hints" +   Type "list[Expr]" is not assignable to type "Sequence[Symbol] | None" +     "list[Expr]" is not assignable to "Sequence[Symbol]" +       Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "Symbol" +         "Expr" is not assignable to "Symbol" +     "list[Expr]" is not assignable to "None" (reportArgumentType) + /torch/_inductor/ir.py:1447:17 - error: Argument of type "Integer | int" cannot be assigned to parameter "reduction_numel_hint" of type "int" in function "__call__" +   Type "Integer | int" is not assignable to type "int" +     "Integer" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:1447:17 - error: Argument of type "Integer | int" cannot be assigned to parameter "reduction_numel_hint" of type "int" in function "inner_reduction_splits" +   Type "Integer | int" is not assignable to type "int" +     "Integer" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:1447:39 - error: Argument of type "Integer | int" cannot be assigned to parameter "numel_hint" of type "int" in function "__call__" +   Type "Integer | int" is not assignable to type "int" +     "Integer" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:1447:39 - error: Argument of type "Integer | int" cannot be assigned to parameter "numel_hint" of type "int" in function "inner_reduction_splits" +   Type "Integer | int" is not assignable to type "int" +     "Integer" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:1451:17 - error: Argument of type "Integer | int" cannot be assigned to parameter "reduction_numel_hint" of type "int" in function "__call__" +   Type "Integer | int" is not assignable to type "int" +     "Integer" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:1451:17 - error: Argument of type "Integer | int" cannot be assigned to parameter "reduction_numel_hint" of type "int" in function "inner_reduction_splits" +   Type "Integer | int" is not assignable to type "int" +     "Integer" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:1451:39 - error: Argument of type "Integer | int" cannot be assigned to parameter "numel_hint" of type "int" in function "__call__" +   Type "Integer | int" is not assignable to type "int" +     "Integer" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:1451:39 - error: Argument of type "Integer | int" cannot be assigned to parameter "numel_hint" of type "int" in function "inner_reduction_splits" +   Type "Integer | int" is not assignable to type "int" +     "Integer" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:1459:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1477:9 - error: Declaration "value_fn" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_inductor/ir.py:1481:17 - error: Argument of type "list[Expr]" cannot be assigned to parameter "stride" of type "Sequence[int] | None" in function "_fixed_indexer" +   Type "list[Expr]" is not assignable to type "Sequence[int] | None" +     "list[Expr]" is not assignable to "Sequence[int]" +       Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +         "Expr" is not assignable to "int" +     "list[Expr]" is not assignable to "None" (reportArgumentType) + /torch/_inductor/ir.py:1490:65 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1495:24 - error: Type "(Sequence[_IntLike], Sequence[_IntLike]) -> OpsValue" is not assignable to declared type "(index: Sequence[_IntLike], rindex: Sequence[_IntLike]) -> tuple[OpsValue, OpsValue]" +   Type "(Sequence[_IntLike], Sequence[_IntLike]) -> OpsValue" is not assignable to type "(index: Sequence[_IntLike], rindex: Sequence[_IntLike]) -> tuple[OpsValue, OpsValue]" +     Missing keyword parameter "index" +     Missing keyword parameter "rindex" +       Position-only parameter mismatch; parameter "index" is not position-only +       Position-only parameter mismatch; parameter "rindex" is not position-only +       Position-only parameter mismatch; expected 2 but received 0 +       Function return type "OpsValue" is incompatible with type "tuple[OpsValue, OpsValue]" +         "OpsValue" is not assignable to "tuple[OpsValue, OpsValue]" (reportAssignmentType) + /torch/_inductor/ir.py:1502:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1503:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1504:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1523:39 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1613:39 - error: Argument of type "_IntLike" cannot be assigned to parameter "split" of type "int" in function "_maybe_increase_split" +   Type "_IntLike" is not assignable to type "int" +     "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:1635:17 - error: Argument of type "list[Expr]" cannot be assigned to parameter "new_ranges" of type "list[Integer]" in function "create_multilayer_existing_ranges" +   "list[Expr]" is not assignable to "list[Integer]" +     Type parameter "_T@list" is invariant, but "Expr" is not the same as "Integer" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /torch/_inductor/ir.py:1636:17 - error: Argument of type "list[Expr]" cannot be assigned to parameter "new_reduction_ranges" of type "list[Integer]" in function "create_multilayer_existing_ranges" +   "list[Expr]" is not assignable to "list[Integer]" +     Type parameter "_T@list" is invariant, but "Expr" is not the same as "Integer" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /torch/_inductor/ir.py:1711:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1719:30 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1726:30 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1743:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1822:34 - error: Type "Symbol" is not assignable to declared type "Sequence[Symbol]" +   "Symbol" is not assignable to "Sequence[Symbol]" (reportAssignmentType) + /torch/_inductor/ir.py:1830:47 - error: Argument of type "_IntLike" cannot be assigned to parameter "size" of type "int" in function "dtype_from_size" +   Type "_IntLike" is not assignable to type "int" +     "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:1833:36 - error: Argument of type "_IntLike" cannot be assigned to parameter "expr" of type "Expr" in function "index_expr" +   Type "_IntLike" is not assignable to type "Expr" +     "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:1873:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1874:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1875:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1894:40 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1894:55 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1895:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1937:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1938:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1939:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1973:23 - error: Argument of type "list[_IntLike]" cannot be assigned to parameter "new_ranges" of type "list[Expr]" in function "create_multilayer_helper" +   Type "_IntLike" is not assignable to type "Expr" +     "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:1974:14 - error: Argument of type "list[FloorDiv]" cannot be assigned to parameter "new_reduction_ranges" of type "list[Integer]" in function "create_multilayer_helper" +   "FloorDiv" is not assignable to "Integer" (reportArgumentType) + /torch/_inductor/ir.py:1983:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1984:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:1985:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2034:16 - error: Type "Expr | Unknown" is not assignable to return type "int" +   Type "Expr | Unknown" is not assignable to type "int" +     "Expr" is not assignable to "int" (reportReturnType) + /torch/_inductor/ir.py:2036:12 - error: Type "(index: Sequence[int]) -> int" is not assignable to return type "(Sequence[Expr]) -> Expr" +   Type "(index: Sequence[int]) -> int" is not assignable to type "(Sequence[Expr]) -> Expr" +     Parameter 1: type "Sequence[Expr]" is incompatible with type "Sequence[int]" +       "Sequence[Expr]" is not assignable to "Sequence[int]" +         Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +           "Expr" is not assignable to "int" +     Function return type "int" is incompatible with type "Expr" +       "int" is not assignable to "Expr" (reportReturnType) + /torch/_inductor/ir.py:2047:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2048:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2053:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2060:9 - error: Declaration "loader" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_inductor/ir.py:2062:22 - error: Type "INNER_FN_TY" is not assignable to declared type "(idx: Sequence[Expr], reduction_idx: Sequence[Expr]) -> tuple[OpsValue, ...]" +   Type "INNER_FN_TY" is not assignable to type "(idx: Sequence[Expr], reduction_idx: Sequence[Expr]) -> tuple[OpsValue, ...]" +     Missing keyword parameter "idx" +     Missing keyword parameter "reduction_idx" +       Position-only parameter mismatch; parameter "idx" is not position-only +       Position-only parameter mismatch; parameter "reduction_idx" is not position-only +       Position-only parameter mismatch; expected 2 but received 0 +       Function return type "OpsValue" is incompatible with type "tuple[OpsValue, ...]" +         "OpsValue" is not assignable to "tuple[OpsValue, ...]" (reportAssignmentType) + /torch/_inductor/ir.py:2104:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2105:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2106:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2123:21 - error: Argument of type "Sequence[Expr]" cannot be assigned to parameter "ranges" of type "Sequence[Integer]" in function "__init__" +   "Sequence[Expr]" is not assignable to "Sequence[Integer]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "Integer" +       "Expr" is not assignable to "Integer" (reportArgumentType) + /torch/_inductor/ir.py:2124:21 - error: Argument of type "Sequence[Expr]" cannot be assigned to parameter "reduction_ranges" of type "Sequence[Integer]" in function "__init__" +   "Sequence[Expr]" is not assignable to "Sequence[Integer]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "Integer" +       "Expr" is not assignable to "Integer" (reportArgumentType) + /torch/_inductor/ir.py:2142:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2143:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2262:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2269:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2270:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2326:23 - error: Argument of type "list[_IntLike | Integer]" cannot be assigned to parameter "ranges" of type "list[Integer]" in function "create" +   Type "_IntLike" is not assignable to type "Integer" +     "Expr" is not assignable to "Integer" (reportArgumentType) + /torch/_inductor/ir.py:2327:14 - error: Argument of type "list[FloorDiv]" cannot be assigned to parameter "reduction_ranges" of type "list[Integer]" in function "create" +   "FloorDiv" is not assignable to "Integer" (reportArgumentType) + /torch/_inductor/ir.py:2353:14 - error: Argument of type "list[_IntLike]" cannot be assigned to parameter "reduction_ranges" of type "list[Integer]" in function "create" +   Type "_IntLike" is not assignable to type "Integer" +     "Expr" is not assignable to "Integer" (reportArgumentType) + /torch/_inductor/ir.py:2369:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2433:52 - error: Argument of type "Sequence[_IntLike]" cannot be assigned to parameter "index" of type "Sequence[Expr]" in function "extract_free_symbols" +   "Sequence[_IntLike]" is not assignable to "Sequence[Expr]" +     Type parameter "_T_co@Sequence" is covariant, but "_IntLike" is not a subtype of "Expr" +       Type "_IntLike" is not assignable to type "Expr" +         "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:2438:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2439:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2480:19 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/_inductor/ir.py:2492:31 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2492:62 - error: Operator ">=" not supported for "None" (reportOptionalOperand) + /torch/_inductor/ir.py:2537:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2538:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2577:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2645:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2646:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2782:21 - error: Argument of type "Sequence[int | Integer]" cannot be assigned to parameter "order" of type "Sequence[int]" in function "freeze_layout_with_stride_order" +   "Sequence[int | Integer]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "int | Integer" is not a subtype of "int" +       Type "int | Integer" is not assignable to type "int" +         "Integer" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:2789:19 - error: Cannot access attribute "decide_layout" for class "IRNode" +   Attribute "decide_layout" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2795:15 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2798:26 - error: Cannot access attribute "layout" for class "IRNode" +   Attribute "layout" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2817:23 - error: Cannot access attribute "layout" for class "IRNode" +   Attribute "layout" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2821:34 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2860:30 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2866:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2898:26 - error: Cannot access attribute "is_module_buffer" for class "IRNode" +   Attribute "is_module_buffer" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2913:19 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2916:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:2945:17 - error: Argument of type "Expr | None" cannot be assigned to parameter "size" of type "Expr" in function "is_size_one_or_false" +   Type "Expr | None" is not assignable to type "Expr" +     "None" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:3039:46 - error: Argument of type "list[Expr]" cannot be assigned to parameter "dims" of type "Sequence[int]" in function "_map_neg_dims" +   "list[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:3049:16 - error: Argument of type "int" cannot be assigned to parameter "key" of type "Expr" in function "__getitem__" +   "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:3123:16 - error: Type "tuple[list[Expr], (index: Sequence[Expr]) -> tuple[Expr]]" is not assignable to return type "tuple[list[int], (Sequence[Expr]) -> tuple[Expr]]" +   "list[Expr]" is not assignable to "list[int]" +     Type parameter "_T@list" is invariant, but "Expr" is not the same as "int" +     Consider switching from "list" to "Sequence" which is covariant (reportReturnType) + /torch/_inductor/ir.py:3214:51 - error: Argument of type "list[Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "contiguous_strides" +   "list[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:3246:29 - warning: TypeVar "_T" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_inductor/ir.py:3246:44 - warning: TypeVar "_V" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_inductor/ir.py:3248:52 - error: Argument of type "Sequence[_IntLike]" cannot be assigned to parameter "old_size" of type "Sequence[Expr]" in function "_dynamic_reshape_indexer" +   "Sequence[_IntLike]" is not assignable to "Sequence[Expr]" +     Type parameter "_T_co@Sequence" is covariant, but "_IntLike" is not a subtype of "Expr" +       Type "_IntLike" is not assignable to type "Expr" +         "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:3248:62 - error: Argument of type "Sequence[_IntLike]" cannot be assigned to parameter "new_size" of type "Sequence[Expr]" in function "_dynamic_reshape_indexer" +   "Sequence[_IntLike]" is not assignable to "Sequence[Expr]" +     Type parameter "_T_co@Sequence" is covariant, but "_IntLike" is not a subtype of "Expr" +       Type "_IntLike" is not assignable to type "Expr" +         "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:3251:35 - error: Argument of type "Sequence[_IntLike]" cannot be assigned to parameter "it" of type "Iterable[Expr]" in function "sympy_product" +   "Sequence[_IntLike]" is not assignable to "Iterable[Expr]" +     Type parameter "_T_co@Iterable" is covariant, but "_IntLike" is not a subtype of "Expr" +       Type "_IntLike" is not assignable to type "Expr" +         "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:3252:53 - error: Argument of type "Sequence[_IntLike]" cannot be assigned to parameter "old_size" of type "Sequence[Expr]" in function "_dynamic_reshape_indexer" +   "Sequence[_IntLike]" is not assignable to "Sequence[Expr]" +     Type parameter "_T_co@Sequence" is covariant, but "_IntLike" is not a subtype of "Expr" +       Type "_IntLike" is not assignable to type "Expr" +         "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:3253:59 - error: Argument of type "Sequence[_IntLike]" cannot be assigned to parameter "new_size" of type "Sequence[Expr]" in function "_dynamic_reshape_indexer" +   "Sequence[_IntLike]" is not assignable to "Sequence[Expr]" +     Type parameter "_T_co@Sequence" is covariant, but "_IntLike" is not a subtype of "Expr" +       Type "_IntLike" is not assignable to type "Expr" +         "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:3255:16 - error: Type "(Sequence[Expr]) -> Sequence[Expr]" is not assignable to return type "(Sequence[_T@dynamic_reshape_indexer]) -> Sequence[_V@dynamic_reshape_indexer]" +   Type "(Sequence[Expr]) -> Sequence[Expr]" is not assignable to type "(Sequence[_T@dynamic_reshape_indexer]) -> Sequence[_V@dynamic_reshape_indexer]" +     Parameter 1: type "Sequence[_T@dynamic_reshape_indexer]" is incompatible with type "Sequence[Expr]" +       "Sequence[_T@dynamic_reshape_indexer]" is not assignable to "Sequence[Expr]" +         Type parameter "_T_co@Sequence" is covariant, but "_T@dynamic_reshape_indexer" is not a subtype of "Expr" +           "object*" is not assignable to "Expr" +     Function return type "Sequence[Expr]" is incompatible with type "Sequence[_V@dynamic_reshape_indexer]" +       "Sequence[Expr]" is not assignable to "Sequence[_V@dynamic_reshape_indexer]" +         Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "_V@dynamic_reshape_indexer" + ... (reportReturnType) + /torch/_inductor/ir.py:3322:53 - error: Argument of type "Literal[1]" cannot be assigned to parameter "right" of type "Expr" in function "check_equals" +   "Literal[1]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:3327:53 - error: Argument of type "Literal[1]" cannot be assigned to parameter "right" of type "Expr" in function "check_equals" +   "Literal[1]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:3344:40 - error: Argument of type "dict[Symbol, Expr]" cannot be assigned to parameter "replacements" of type "dict[Expr, Any]" in function "sympy_subs" +   "dict[Symbol, Expr]" is not assignable to "dict[Expr, Any]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/ir.py:3373:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3380:30 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3440:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3443:49 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3463:30 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3499:79 - error: Argument of type "int" cannot be assigned to parameter "right" of type "Expr" in function "evaluate_max" +   "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:3504:46 - error: Argument of type "int" cannot be assigned to parameter "right" of type "Expr" in function "evaluate_min" +   "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:3515:26 - error: Argument of type "int | None" cannot be assigned to parameter "x" of type "Expr" in function "clamp" +   Type "int | None" is not assignable to type "Expr" +     "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:3517:17 - error: Type "Expr | int" is not assignable to declared type "int" +   Type "Expr | int" is not assignable to type "int" +     "Expr" is not assignable to "int" (reportAssignmentType) + /torch/_inductor/ir.py:3517:38 - error: Argument of type "Expr" cannot be assigned to parameter "upper" of type "int" in function "clamp_wrap" +   "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:3518:15 - error: Type "Expr | int" is not assignable to declared type "int" +   Type "Expr | int" is not assignable to type "int" +     "Expr" is not assignable to "int" (reportAssignmentType) + /torch/_inductor/ir.py:3518:38 - error: Argument of type "Expr" cannot be assigned to parameter "upper" of type "int" in function "clamp_wrap" +   "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:3578:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3579:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3584:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3597:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3598:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3609:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3616:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3617:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3625:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3649:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3657:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3680:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3681:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3688:56 - error: Argument of type "Sequence[Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "contiguous_strides" +   "Sequence[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:3690:14 - error: Cannot assign to attribute "device" for class "Layout*" +   "Layout" is frozen (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3691:14 - error: Cannot assign to attribute "dtype" for class "Layout*" +   "Layout" is frozen (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3694:14 - error: Cannot assign to attribute "_size" for class "Layout*" +   "Layout" is frozen (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3695:14 - error: Cannot assign to attribute "_stride" for class "Layout*" +   "Layout" is frozen (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3696:14 - error: Cannot assign to attribute "_offset" for class "Layout*" +   "Layout" is frozen (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3697:14 - error: Cannot assign to attribute "is_pinned" for class "Layout*" +   "Layout" is frozen (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3707:14 - error: Cannot assign to attribute "_size" for class "Layout*" +   "Layout" is frozen (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3715:14 - error: Cannot assign to attribute "_stride" for class "Layout*" +   "Layout" is frozen (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3723:14 - error: Cannot assign to attribute "_offset" for class "Layout*" +   "Layout" is frozen (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3741:35 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3746:26 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3765:53 - error: Argument of type "Sequence[_IntLike]" cannot be assigned to parameter "shape" of type "Sequence[_IntLikeT@make_channels_last_strides_for]" in function "make_channels_last_strides_for" +   "Sequence[_IntLike]" is not assignable to "Sequence[_IntLikeT@make_channels_last_strides_for]" +     Type parameter "_T_co@Sequence" is covariant, but "_IntLike" is not a subtype of "_IntLikeT@make_channels_last_strides_for" +       Type "_IntLike" is not assignable to type "_WorksWithInt" +         Type "_IntLike" is not assignable to type "_WorksWithInt" +           "int" is incompatible with protocol "_WorksWithInt" (reportArgumentType) + /torch/_inductor/ir.py:3774:56 - error: Argument of type "list[Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "contiguous_strides" +   "list[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:3781:33 - error: Parameter declaration "order" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_inductor/ir.py:3804:13 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /torch/_inductor/ir.py:3804:13 - error: Argument of type "Expr" cannot be assigned to parameter "value" of type "int" in function "__setitem__" +   "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:3810:21 - error: Argument of type "bool" cannot be assigned to parameter "orig_expr" of type "Basic" in function "evaluate_expr" +   "bool" is not assignable to "Basic" (reportArgumentType) + /torch/_inductor/ir.py:3824:71 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3861:53 - error: Argument of type "Basic" cannot be assigned to parameter "symbol" of type "Symbol" in function "is_unbacked_symint" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/ir.py:3886:13 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /torch/_inductor/ir.py:3886:13 - error: Argument of type "int | Integer | Unknown | Expr" cannot be assigned to parameter "value" of type "int" in function "__setitem__" +   Type "int | Integer | Unknown | Expr" is not assignable to type "int" +     "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:3933:38 - error: Cannot access attribute "device" for class "object" +   Attribute "device" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3934:37 - error: Cannot access attribute "dtype" for class "object" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3935:36 - error: Cannot access attribute "size" for class "object" +   Attribute "size" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3936:38 - error: Cannot access attribute "stride" for class "object" +   Attribute "stride" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3937:38 - error: Cannot access attribute "offset" for class "object" +   Attribute "offset" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3938:41 - error: Cannot access attribute "is_pinned" for class "object" +   Attribute "is_pinned" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:3941:9 - error: Method "storage_size" overrides class "OutputSpec" in an incompatible manner +   Return type mismatch: base method returns type "int", override returns type "Expr" +     "Expr" is not assignable to "int" (reportIncompatibleMethodOverride) + /torch/_inductor/ir.py:3997:16 - error: Type "list[None]" is not assignable to return type "list[Expr]" +   "list[None]" is not assignable to "list[Expr]" +     Type parameter "_T@list" is invariant, but "None" is not the same as "Expr" +     Consider switching from "list" to "Sequence" which is covariant (reportReturnType) + /torch/_inductor/ir.py:4013:52 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4025:35 - error: "channels_last" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4027:37 - error: "channels_last_3d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4029:37 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4083:42 - error: Argument of type "Sequence[Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "stride_ordered" +   "Sequence[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:4113:37 - error: Type "list[Expr]" is not assignable to declared type "Sequence[int]" +   "list[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportAssignmentType) + /torch/_inductor/ir.py:4113:55 - error: Argument of type "Sequence[Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "fill_ordered" +   "Sequence[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:4126:40 - error: Argument of type "Sequence[Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "same_ordered" +   "Sequence[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:4159:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4160:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4166:51 - error: Argument of type "Sequence[Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "fill_ordered" +   "Sequence[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:4166:57 - error: Argument of type "Sequence[int | Integer]" cannot be assigned to parameter "order" of type "Sequence[int]" in function "fill_ordered" +   "Sequence[int | Integer]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "int | Integer" is not a subtype of "int" +       Type "int | Integer" is not assignable to type "int" +         "Integer" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:4168:57 - error: Argument of type "Sequence[Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "contiguous_strides" +   "Sequence[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:4209:29 - error: Cannot access attribute "layout" for class "IRNode" +   Attribute "layout" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4266:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4276:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4358:31 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4358:70 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4359:13 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4360:20 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4392:32 - error: Cannot access attribute "get_example" for class "OutputSpec" +   Attribute "get_example" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4395:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4402:30 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4423:16 - error: Type "Expr" is not assignable to return type "int" +   "Expr" is not assignable to "int" (reportReturnType) + /torch/_inductor/ir.py:4432:39 - error: Cannot access attribute "as_fixed" for class "OutputSpec" +   Attribute "as_fixed" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4444:9 - error: Method "freeze_layout_with_same_order" overrides class "IRNode" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Sequence[_IntLike]", override parameter is type "Sequence[int]" +     "Sequence[_IntLike]" is not assignable to "Sequence[int]" +       Type parameter "_T_co@Sequence" is covariant, but "_IntLike" is not a subtype of "int" +         Type "_IntLike" is not assignable to type "int" +           "Expr" is not assignable to "int" (reportIncompatibleMethodOverride) + /torch/_inductor/ir.py:4448:9 - error: Method "freeze_layout_with_exact_strides" overrides class "IRNode" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Sequence[_IntLike]", override parameter is type "Sequence[int]" +     "Sequence[_IntLike]" is not assignable to "Sequence[int]" +       Type parameter "_T_co@Sequence" is covariant, but "_IntLike" is not a subtype of "int" +         Type "_IntLike" is not assignable to type "int" +           "Expr" is not assignable to "int" (reportIncompatibleMethodOverride) + /torch/_inductor/ir.py:4539:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4551:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:4775:57 - error: Argument of type "Any | Sequence[Expr]" cannot be assigned to parameter "vars" of type "Sequence[Symbol]" in function "stride_hints" +   Type "Any | Sequence[Expr]" is not assignable to type "Sequence[Symbol]" +     "Sequence[Expr]" is not assignable to "Sequence[Symbol]" +       Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "Symbol" +         "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/ir.py:4807:18 - error: Argument of type "Sequence[Expr]" cannot be assigned to parameter "allow_same_symbol_in_index" of type "bool" in function "__init__" +   "Sequence[Expr]" is not assignable to "bool" (reportArgumentType) + /torch/_inductor/ir.py:4928:22 - error: Type "Sequence[Symbol] | Sequence[int]" is not assignable to declared type "Sequence[Symbol]" +   Type "Sequence[Symbol] | Sequence[int]" is not assignable to type "Sequence[Symbol]" +     "Sequence[int]" is not assignable to "Sequence[Symbol]" +       Type parameter "_T_co@Sequence" is covariant, but "int" is not a subtype of "Symbol" +         "int" is not assignable to "Symbol" (reportAssignmentType) + /torch/_inductor/ir.py:4928:31 - error: Argument of type "Sequence[Symbol]" cannot be assigned to parameter of type "Sequence[int]" +   "Sequence[Symbol]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Symbol" is not a subtype of "int" +       "Symbol" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:4934:70 - error: Argument of type "list[int]" cannot be assigned to parameter "sizes" of type "Sequence[Expr]" in function "index_prevent_reordering" +   "list[int]" is not assignable to "Sequence[Expr]" +     Type parameter "_T_co@Sequence" is covariant, but "int" is not a subtype of "Expr" +       "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:4946:13 - error: Argument of type "Any | list[Expr]" cannot be assigned to parameter "x_vars" of type "Sequence[Symbol]" in function "simplify_and_reorder" +   Type "Any | list[Expr]" is not assignable to type "Sequence[Symbol]" +     "list[Expr]" is not assignable to "Sequence[Symbol]" +       Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "Symbol" +         "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/ir.py:4947:13 - error: Argument of type "Any | list[Expr]" cannot be assigned to parameter "support_vars" of type "Sequence[Symbol]" in function "simplify_and_reorder" +   Type "Any | list[Expr]" is not assignable to type "Sequence[Symbol]" +     "list[Expr]" is not assignable to "Sequence[Symbol]" +       Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "Symbol" +         "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/ir.py:4948:13 - error: Argument of type "Any | list[Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "simplify_and_reorder" +   Type "Any | list[Expr]" is not assignable to type "Sequence[int]" +     "list[Expr]" is not assignable to "Sequence[int]" +       Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +         "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:4957:13 - error: Argument of type "Any | list[Expr]" cannot be assigned to parameter "x_vars" of type "Sequence[Symbol]" in function "simplify_and_reorder" +   Type "Any | list[Expr]" is not assignable to type "Sequence[Symbol]" +     "list[Expr]" is not assignable to "Sequence[Symbol]" +       Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "Symbol" +         "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/ir.py:4957:26 - error: Argument of type "Any | list[Expr]" cannot be assigned to parameter "support_vars" of type "Sequence[Symbol]" in function "simplify_and_reorder" +   Type "Any | list[Expr]" is not assignable to type "Sequence[Symbol]" +     "list[Expr]" is not assignable to "Sequence[Symbol]" +       Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "Symbol" +         "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/ir.py:4957:40 - error: Argument of type "Any | list[Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "simplify_and_reorder" +   Type "Any | list[Expr]" is not assignable to type "Sequence[int]" +     "list[Expr]" is not assignable to "Sequence[int]" +       Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +         "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:4962:13 - error: Argument of type "list[int]" cannot be assigned to parameter "argsizes" of type "Sequence[Expr]" in function "index_vars_no_squeeze" +   "list[int]" is not assignable to "Sequence[Expr]" +     Type parameter "_T_co@Sequence" is covariant, but "int" is not a subtype of "Expr" +       "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:4963:13 - error: Argument of type "list[int]" cannot be assigned to parameter "argsizes" of type "Sequence[Expr]" in function "index_vars_no_squeeze" +   "list[int]" is not assignable to "Sequence[Expr]" +     Type parameter "_T_co@Sequence" is covariant, but "int" is not a subtype of "Expr" +       "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:4968:27 - error: Argument of type "list[Symbol]" cannot be assigned to parameter of type "Sequence[int]" +   "list[Symbol]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Symbol" is not a subtype of "int" +       "Symbol" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:4968:54 - error: Argument of type "list[Symbol]" cannot be assigned to parameter of type "Sequence[int]" +   "list[Symbol]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Symbol" is not a subtype of "int" +       "Symbol" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:4973:16 - error: Type "tuple[tuple[list[int], list[int]], LoopBody]" is not assignable to return type "tuple[tuple[list[Expr], list[Expr]], LoopBody | None]" +   "list[int]" is not assignable to "list[Expr]" +     Type parameter "_T@list" is invariant, but "int" is not the same as "Expr" +     Consider switching from "list" to "Sequence" which is covariant +   "list[int]" is not assignable to "list[Expr]" +     Type parameter "_T@list" is invariant, but "int" is not the same as "Expr" +     Consider switching from "list" to "Sequence" which is covariant (reportReturnType) + /torch/_inductor/ir.py:5003:60 - error: Argument of type "Sequence[int]" cannot be assigned to parameter "sizes" of type "Sequence[Expr]" in function "pick_loop_order" +   "Sequence[int]" is not assignable to "Sequence[Expr]" +     Type parameter "_T_co@Sequence" is covariant, but "int" is not a subtype of "Expr" +       "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:5030:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5301:52 - error: "select_algorithm" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5302:28 - error: Cannot access attribute "has_out_variant" for class "ChoiceCaller" +   Attribute "has_out_variant" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5325:37 - error: "select_algorithm" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5338:37 - error: "select_algorithm" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5383:42 - error: Argument of type "None" cannot be assigned to parameter "index" of type "Expr" in function "store" +   "None" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:5563:34 - error: Argument of type "Expr" cannot be assigned to parameter "object" of type "int" in function "append" +   "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:5576:40 - error: Type "list[Expr]" is not assignable to declared type "Sequence[int]" +   "list[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportAssignmentType) + /torch/_inductor/ir.py:5576:74 - error: Argument of type "list[Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "contiguous_strides" +   "list[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:5592:37 - error: Type "tuple[Expr | int, ...]" is not assignable to declared type "Sequence[int]" +   "tuple[Expr | int, ...]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr | int" is not a subtype of "int" +       Type "Expr | int" is not assignable to type "int" +         "Expr" is not assignable to "int" (reportAssignmentType) + /torch/_inductor/ir.py:5599:26 - error: Cannot access attribute "meta" for class "tuple[Argument, ...]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5599:26 - error: Cannot access attribute "meta" for class "Sequence[Argument]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5599:26 - error: Cannot access attribute "meta" for class "Mapping[str, Argument]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5599:26 - error: Cannot access attribute "meta" for class "slice[Any, Any, Any]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5599:26 - error: Cannot access attribute "meta" for class "range" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5599:26 - error: Cannot access attribute "meta" for class "str" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5599:26 - error: Cannot access attribute "meta" for class "int" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5599:26 - error: Cannot access attribute "meta" for class "float" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5599:26 - error: Cannot access attribute "meta" for class "bool" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5599:26 - error: Cannot access attribute "meta" for class "complex" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5599:26 - error: Cannot access attribute "meta" for class "OpOverload[..., Any]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5599:26 - error: Cannot access attribute "meta" for class "SymInt" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5599:26 - error: Cannot access attribute "meta" for class "SymBool" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5599:26 - error: Cannot access attribute "meta" for class "SymFloat" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5599:26 - error: "meta" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/ir.py:5601:21 - error: Cannot access attribute "meta" for class "tuple[Argument, ...]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5601:21 - error: Cannot access attribute "meta" for class "Sequence[Argument]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5601:21 - error: Cannot access attribute "meta" for class "Mapping[str, Argument]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5601:21 - error: Cannot access attribute "meta" for class "slice[Any, Any, Any]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5601:21 - error: Cannot access attribute "meta" for class "range" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5601:21 - error: Cannot access attribute "meta" for class "str" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5601:21 - error: Cannot access attribute "meta" for class "int" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5601:21 - error: Cannot access attribute "meta" for class "float" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5601:21 - error: Cannot access attribute "meta" for class "bool" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5601:21 - error: Cannot access attribute "meta" for class "complex" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5601:21 - error: Cannot access attribute "meta" for class "OpOverload[..., Any]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5601:21 - error: Cannot access attribute "meta" for class "SymInt" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5601:21 - error: Cannot access attribute "meta" for class "SymBool" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5601:21 - error: Cannot access attribute "meta" for class "SymFloat" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5601:21 - error: "meta" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/ir.py:5601:67 - error: "channels_last" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5602:24 - error: Cannot access attribute "meta" for class "tuple[Argument, ...]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5602:24 - error: Cannot access attribute "meta" for class "Sequence[Argument]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5602:24 - error: Cannot access attribute "meta" for class "Mapping[str, Argument]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5602:24 - error: Cannot access attribute "meta" for class "slice[Any, Any, Any]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5602:24 - error: Cannot access attribute "meta" for class "range" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5602:24 - error: Cannot access attribute "meta" for class "str" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5602:24 - error: Cannot access attribute "meta" for class "int" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5602:24 - error: Cannot access attribute "meta" for class "float" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5602:24 - error: Cannot access attribute "meta" for class "bool" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5602:24 - error: Cannot access attribute "meta" for class "complex" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5602:24 - error: Cannot access attribute "meta" for class "OpOverload[..., Any]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5602:24 - error: Cannot access attribute "meta" for class "SymInt" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5602:24 - error: Cannot access attribute "meta" for class "SymBool" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5602:24 - error: Cannot access attribute "meta" for class "SymFloat" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5602:24 - error: "meta" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/ir.py:5602:70 - error: "channels_last_3d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5606:29 - error: Type "tuple[Expr | int, ...]" is not assignable to declared type "Sequence[int]" +   "tuple[Expr | int, ...]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr | int" is not a subtype of "int" +       Type "Expr | int" is not assignable to type "int" +         "Expr" is not assignable to "int" (reportAssignmentType) + /torch/_inductor/ir.py:5631:52 - error: Argument of type "Expr" cannot be assigned to parameter "end" of type "int" in function "create" +   "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:5638:31 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5639:39 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5641:39 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5670:27 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5672:36 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5673:28 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5692:25 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5693:32 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5694:36 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5723:26 - error: Cannot assign to attribute "layout" for class "IRNode" +   Attribute "layout" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5998:40 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:5998:78 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6016:39 - error: Cannot access attribute "get_value" for class "IRNode" +   Attribute "get_value" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6017:48 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6018:34 - error: Cannot access attribute "device" for class "IRNode" +   Attribute "device" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6019:26 - error: Cannot access attribute "device" for class "IRNode" +   Attribute "device" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6033:47 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6086:42 - error: Cannot access attribute "layout" for class "IRNode" +   Attribute "layout" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6089:41 - error: "channels_last" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6092:41 - error: "channels_last_3d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6110:53 - error: Argument of type "Sequence[Expr]" cannot be assigned to parameter "vars" of type "Sequence[Symbol]" in function "offset_var" +   "Sequence[Expr]" is not assignable to "Sequence[Symbol]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "Symbol" +       "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/ir.py:6123:20 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6145:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6145:36 - error: Cannot access attribute "value" for class "IRNode" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6153:42 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6233:39 - error: Argument of type "Sequence[_IntLike] | None" cannot be assigned to parameter "exact_strides" of type "Sequence[int | Integer] | None" in function "as_storage_and_layout" +   Type "Sequence[_IntLike] | None" is not assignable to type "Sequence[int | Integer] | None" +     Type "Sequence[_IntLike]" is not assignable to type "Sequence[int | Integer] | None" +       "Sequence[_IntLike]" is not assignable to "Sequence[int | Integer]" +         Type parameter "_T_co@Sequence" is covariant, but "_IntLike" is not a subtype of "int | Integer" +           Type "_IntLike" is not assignable to type "int | Integer" +       "Sequence[_IntLike]" is not assignable to "None" (reportArgumentType) + /torch/_inductor/ir.py:6246:56 - error: Argument of type "Sequence[_IntLike]" cannot be assigned to parameter "strides" of type "Sequence[int | SymInt]" in function "try_match_insignificant_strides" +   "Sequence[_IntLike]" is not assignable to "Sequence[int | SymInt]" +     Type parameter "_T_co@Sequence" is covariant, but "_IntLike" is not a subtype of "int | SymInt" +       Type "_IntLike" is not assignable to type "int | SymInt" +         Type "Expr" is not assignable to type "int | SymInt" +           "Expr" is not assignable to "int" +           "Expr" is not assignable to "SymInt" (reportArgumentType) + /torch/_inductor/ir.py:6287:44 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6320:37 - error: "lowering" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6332:27 - error: Argument of type "Sequence[_IntLike] | None" cannot be assigned to parameter "exact_strides" of type "Sequence[int | Integer] | None" in function "as_storage_and_layout" +   Type "Sequence[_IntLike] | None" is not assignable to type "Sequence[int | Integer] | None" +     Type "Sequence[_IntLike]" is not assignable to type "Sequence[int | Integer] | None" +       "Sequence[_IntLike]" is not assignable to "Sequence[int | Integer]" +         Type parameter "_T_co@Sequence" is covariant, but "_IntLike" is not a subtype of "int | Integer" +           Type "_IntLike" is not assignable to type "int | Integer" +       "Sequence[_IntLike]" is not assignable to "None" (reportArgumentType) + /torch/_inductor/ir.py:6338:33 - error: "lowering" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6340:55 - error: Argument of type "Sequence[_IntLike]" cannot be assigned to parameter "strides" of type "Sequence[int | SymInt]" in function "try_match_insignificant_strides" +   "Sequence[_IntLike]" is not assignable to "Sequence[int | SymInt]" +     Type parameter "_T_co@Sequence" is covariant, but "_IntLike" is not a subtype of "int | SymInt" +       Type "_IntLike" is not assignable to type "int | SymInt" +         Type "Expr" is not assignable to type "int | SymInt" +           "Expr" is not assignable to "int" +           "Expr" is not assignable to "SymInt" (reportArgumentType) + /torch/_inductor/ir.py:6381:54 - error: Argument of type "Sequence[Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "contiguous_strides" +   "Sequence[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:6389:50 - error: Argument of type "Sequence[Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "contiguous_strides" +   "Sequence[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/ir.py:6614:49 - error: Argument of type "dict[Symbol, Unknown]" cannot be assigned to parameter "replacements" of type "dict[Expr, Any]" in function "sympy_subs" +   "dict[Symbol, Unknown]" is not assignable to "dict[Expr, Any]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/ir.py:6687:50 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6688:24 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6688:36 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6692:29 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6925:48 - error: Cannot access attribute "name" for class "Expr" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6926:60 - error: Cannot access attribute "name" for class "Expr" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6928:36 - error: Cannot access attribute "name" for class "Expr" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6958:14 - error: Import "triton.runtime.autotuner" could not be resolved (reportMissingImports) + /torch/_inductor/ir.py:6971:28 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6971:28 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6971:60 - error: Cannot access attribute "restore_idx" for class "Autotuner" +   Attribute "restore_idx" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6971:60 - error: Cannot access attribute "restore_idx" for class "JITFunction" +   Attribute "restore_idx" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6975:50 - error: Cannot access attribute "restore_value" for class "Autotuner" +   Attribute "restore_value" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6975:50 - error: Cannot access attribute "restore_value" for class "JITFunction" +   Attribute "restore_value" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6978:33 - error: Cannot access attribute "reset_idx" for class "Autotuner" +   Attribute "reset_idx" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6978:33 - error: Cannot access attribute "reset_idx" for class "JITFunction" +   Attribute "reset_idx" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6979:54 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6979:54 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6982:50 - error: Cannot access attribute "reset_to_zero" for class "Autotuner" +   Attribute "reset_to_zero" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6982:50 - error: Cannot access attribute "reset_to_zero" for class "JITFunction" +   Attribute "reset_to_zero" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6984:30 - error: Cannot access attribute "configs" for class "Autotuner" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6984:30 - error: Cannot access attribute "configs" for class "JITFunction" +   Attribute "configs" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6985:29 - error: Cannot access attribute "fn" for class "Autotuner" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6985:29 - error: Cannot access attribute "fn" for class "JITFunction" +   Attribute "fn" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:6987:16 - error: Type "tuple[TritonKernelType, Unknown | list[Unknown], list[str], list[str]]" is not assignable to return type "tuple[Kernel[CSEVariable], Any, list[str], list[str]]" +   Type "TritonKernelType" is not assignable to type "Kernel[CSEVariable]" +     "Autotuner" is not assignable to "Kernel[CSEVariable]" (reportReturnType) + /torch/_inductor/ir.py:6990:9 - error: Method "codegen" is marked as override, but no base method of same name is present (reportGeneralTypeIssues) + /torch/_inductor/ir.py:7133:35 - error: Cannot access attribute "arg_names" for class "Kernel[CSEVariable]" +   Attribute "arg_names" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7158:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7300:50 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7315:53 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7431:46 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7507:56 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7560:56 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7599:43 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7626:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7657:17 - error: Argument of type "SympyBoolean" cannot be assigned to parameter "x" of type "Expr" in function "codegen_cpp_sizevar" +   "Boolean" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:7665:17 - error: Argument of type "SympyBoolean" cannot be assigned to parameter "x" of type "Expr" in function "codegen_python_sizevar" +   "Boolean" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:7749:27 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7760:57 - error: "Argument" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7762:44 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7789:27 - error: Argument of type "Any | list[Unknown] | tuple[Unknown, ...]" cannot be assigned to parameter "t" of type "IRNode" in function "add_alias" +   Type "Any | list[Unknown] | tuple[Unknown, ...]" is not assignable to type "IRNode" +     "list[Unknown]" is not assignable to "IRNode" (reportArgumentType) + /torch/_inductor/ir.py:7791:41 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7797:38 - error: "_prims" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7869:49 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7938:38 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7938:56 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7938:72 - error: "JitType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7941:47 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7941:65 - error: "NoneType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7947:50 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7955:48 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7956:53 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7966:48 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7967:53 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:7985:48 - error: "IntType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:8065:36 - error: "JitType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:8066:40 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:8068:44 - error: "NumberType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:8153:27 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:8156:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:8221:16 - error: Type "list[Unknown] | tuple[Unknown, ...] | dict[Unknown, Unknown] | Any" is not assignable to return type "FallbackKernel" +   Type "list[Unknown] | tuple[Unknown, ...] | dict[Unknown, Unknown] | Any" is not assignable to type "FallbackKernel" +     "dict[Unknown, Unknown]" is not assignable to "FallbackKernel" (reportReturnType) + /torch/_inductor/ir.py:8285:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:8287:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:8346:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:8419:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:8464:30 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:8533:19 - error: Cannot assign to attribute "name" for class "IRNode" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:8538:26 - error: Cannot access attribute "name" for class "IRNode" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:8546:27 - error: Cannot access attribute "inner_fn_opcount" for class "IRNode" +   Attribute "inner_fn_opcount" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:8589:37 - error: Cannot access attribute "inner_fn_opcount" for class "IRNode" +   Attribute "inner_fn_opcount" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:8647:35 - error: Parameter declaration "operands" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_inductor/ir.py:8678:21 - error: Argument of type "Any | dict[Any, Any]" cannot be assigned to parameter "object" of type "IRNode" in function "append" +   Type "Any | dict[Any, Any]" is not assignable to type "IRNode" +     "dict[Any, Any]" is not assignable to "IRNode" (reportArgumentType) + /torch/_inductor/ir.py:9089:43 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:9112:51 - error: Argument of type "int | Expr" cannot be assigned to parameter "left" of type "Expr" in function "check_equals" +   Type "int | Expr" is not assignable to type "Expr" +     "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:9112:56 - error: Argument of type "int | Expr" cannot be assigned to parameter "right" of type "Expr" in function "check_equals" +   Type "int | Expr" is not assignable to type "Expr" +     "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/ir.py:9280:42 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:9288:58 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:9291:37 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:9292:41 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:9318:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ir.py:9680:34 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/ir.py:9682:34 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) +/torch/_inductor/jagged_lowerings.py + /torch/_inductor/jagged_lowerings.py:45:24 - error: Cannot access attribute "inverse_offsets" for class "TensorBox" +   Attribute "inverse_offsets" is unknown (reportAttributeAccessIssue) + /torch/_inductor/jagged_lowerings.py:52:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/jagged_lowerings.py:53:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/jagged_lowerings.py:97:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/jagged_lowerings.py:101:9 - error: Argument of type "int | Unknown" cannot be assigned to parameter "size" of type "Expr" in function "indirect_indexing" +   Type "int | Unknown" is not assignable to type "Expr" +     "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/jagged_lowerings.py:106:42 - error: Argument of type "int | Expr" cannot be assigned to parameter "size" of type "Expr" in function "indirect_indexing" +   Type "int | Expr" is not assignable to type "Expr" +     "int" is not assignable to "Expr" (reportArgumentType) +/torch/_inductor/kernel/bmm.py + /torch/_inductor/kernel/bmm.py:122:37 - error: "bmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/bmm.py:124:11 - error: "bmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/bmm.py:130:11 - error: "baddbmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/kernel/conv.py + /torch/_inductor/kernel/conv.py:326:11 - error: "convolution" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/conv.py:564:24 - error: "utils" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/kernel/conv.py:575:25 - error: "utils" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) +/torch/_inductor/kernel/custom_op.py + /torch/_inductor/kernel/custom_op.py:188:33 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/custom_op.py:354:31 - error: "custom_ops" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) +/torch/_inductor/kernel/flex/common.py + /torch/_inductor/kernel/flex/common.py:56:48 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/flex/common.py:206:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/flex/common.py:207:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/flex/common.py:266:21 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/flex/common.py:289:22 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/kernel/flex/flex_flash_attention.py + /torch/_inductor/kernel/flex/flex_flash_attention.py:234:21 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/kernel/mm.py + /torch/_inductor/kernel/mm.py:66:12 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/_inductor/kernel/mm.py:156:27 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/mm.py:926:36 - error: "mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/mm.py:928:11 - error: "mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/mm.py:935:11 - error: "addmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/mm.py:939:11 - error: "_int_mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/mm.py:943:11 - error: "_sparse_semi_structured_mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/mm.py:950:11 - error: "_scaled_mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/kernel/mm_grouped.py + /torch/_inductor/kernel/mm_grouped.py:581:11 - error: "_grouped_mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/mm_grouped.py:589:11 - error: "_scaled_grouped_mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/mm_grouped.py:606:31 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/mm_grouped.py:668:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/mm_grouped.py:731:22 - error: "get_size" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/kernel/mm_grouped.py:736:23 - error: "layout" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/kernel/mm_grouped.py:736:30 - error: Cannot access attribute "size" for class "OutputSpec" +   Attribute "size" is unknown (reportAttributeAccessIssue) + /torch/_inductor/kernel/mm_grouped.py:745:23 - error: "layout" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/kernel/mm_grouped.py:745:30 - error: Cannot access attribute "size" for class "OutputSpec" +   Attribute "size" is unknown (reportAttributeAccessIssue) + /torch/_inductor/kernel/mm_grouped.py:833:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/mm_grouped.py:865:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel/mm_grouped.py:872:36 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/kernel_inputs.py + /torch/_inductor/kernel_inputs.py:31:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel_inputs.py:85:31 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel_inputs.py:156:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel_inputs.py:165:44 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel_inputs.py:178:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel_inputs.py:220:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/kernel_inputs.py:275:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/lookup_table/choices.py + /torch/_inductor/lookup_table/choices.py:43:39 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/loop_body.py + /torch/_inductor/loop_body.py:101:5 - error: Declaration "indirect_var_ranges" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_inductor/loop_body.py:535:29 - error: Argument of type "Proxy" cannot be assigned to parameter "inner" of type "OpsHandler[Any]" in function "__init__" +   "Proxy" is not assignable to "OpsHandler[Any]" (reportArgumentType) + /torch/_inductor/loop_body.py:641:17 - error: Type "Proxy" is not assignable to declared type "Expr" +   "Proxy" is not assignable to "Expr" (reportAssignmentType) + /torch/_inductor/loop_body.py:644:9 - error: Method "load_seed" overrides class "OpsHandler" in an incompatible manner +   Parameter 3 name mismatch: base parameter is named "offset", override parameter is named "index" (reportIncompatibleMethodOverride) + /torch/_inductor/loop_body.py:672:9 - error: Method "index_expr" overrides class "OpsHandler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "expr", override parameter is named "index" (reportIncompatibleMethodOverride) + /torch/_inductor/loop_body.py:679:9 - error: Method "check_bounds" overrides class "OpsHandler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "expr", override parameter is named "index" (reportIncompatibleMethodOverride) + /torch/_inductor/loop_body.py:690:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/loop_body.py:698:22 - error: Type "tuple[str, Proxy, Proxy, Proxy]" is not assignable to declared type "tuple[str, Expr, Expr, Expr]" +   "Proxy" is not assignable to "Expr" +   "Proxy" is not assignable to "Expr" +   "Proxy" is not assignable to "Expr" (reportAssignmentType) + /torch/_inductor/loop_body.py:717:22 - error: Type "tuple[str, Proxy]" is not assignable to declared type "tuple[str, Expr] | None" +   Type "tuple[str, Proxy]" is not assignable to type "tuple[str, Expr] | None" +     "tuple[str, Proxy]" is not assignable to "tuple[str, Expr]" +       Tuple entry 2 is incorrect type +         "Proxy" is not assignable to "Expr" +     "tuple[str, Proxy]" is not assignable to "None" (reportAssignmentType) + /torch/_inductor/loop_body.py:734:9 - error: Method "masked" overrides class "OpsHandler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "mask", override parameter is named "mask_proxy" +   Parameter 3 name mismatch: base parameter is named "body", override parameter is named "masked_body" +   Parameter 4 name mismatch: base parameter is named "other", override parameter is named "other_proxy" (reportIncompatibleMethodOverride) + /torch/_inductor/loop_body.py:745:9 - error: Method "scan" overrides class "OpsHandler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "dtypes", override parameter is named "dtype_proxy" +   Parameter 4 name mismatch: base parameter is named "values", override parameter is named "value_proxy" (reportIncompatibleMethodOverride) + /torch/_inductor/loop_body.py:760:22 - error: "__getitem__" method not defined on type "Proxy" (reportIndexIssue) + /torch/_inductor/loop_body.py:767:9 - error: Method "frexp" overrides class "OpsHandler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "value_proxy" (reportIncompatibleMethodOverride) + /torch/_inductor/loop_body.py:772:9 - error: Method "indirect_indexing" overrides class "OpsHandler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "index_proxy" (reportIncompatibleMethodOverride) +/torch/_inductor/lowering.py + /torch/_inductor/lowering.py:165:13 - error: Expression with type "tuple[Any] | tuple[Any, Any] | Iterable[Unknown]" cannot be assigned to target tuple +   Type "tuple[Any, Any]" is incompatible with target tuple +     Tuple size mismatch; expected 1 but received 2 (reportAssignmentType) + /torch/_inductor/lowering.py:241:14 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:242:14 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:243:14 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:244:14 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:245:14 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:246:14 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:247:14 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:248:14 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:249:14 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:250:14 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:251:15 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:252:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:253:15 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:326:55 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:365:27 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:473:18 - error: Parameter declaration "args" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_inductor/lowering.py:473:26 - error: Parameter declaration "kwargs" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_inductor/lowering.py:622:26 - error: Type "list[TensorBox]" is not assignable to declared type "tuple[TensorBox, ...]" +   "list[TensorBox]" is not assignable to "tuple[TensorBox, ...]" (reportAssignmentType) + /torch/_inductor/lowering.py:624:17 - error: "__setitem__" method not defined on type "tuple[TensorBox, ...]" (reportIndexIssue) + /torch/_inductor/lowering.py:639:28 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:639:44 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:674:42 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/lowering.py:681:37 - error: "device" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_inductor/lowering.py:754:62 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:766:26 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:812:54 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:827:49 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:848:44 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:856:43 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:864:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1451:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1456:35 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1457:39 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1458:39 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1532:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1534:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1546:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1584:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1586:35 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1587:39 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1588:39 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1623:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1625:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1632:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1662:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1664:35 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1665:39 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1666:39 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1710:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1712:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:1725:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:2155:25 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:2418:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:2446:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:2475:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:2506:12 - error: Type "tuple[str, Expr, int | Unknown, _IntLike]" is not assignable to return type "tuple[str, Expr, Expr, Expr]" +   Type "int | Unknown" is not assignable to type "Expr" +     "int" is not assignable to "Expr" +   Type "_IntLike" is not assignable to type "Expr" +     "int" is not assignable to "Expr" (reportReturnType) + /torch/_inductor/lowering.py:2515:27 - error: Type "tuple[str, _IntLike]" is not assignable to return type "tuple[str, Expr]" +   Type "_IntLike" is not assignable to type "Expr" +     "int" is not assignable to "Expr" (reportReturnType) + /torch/_inductor/lowering.py:2551:25 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:2551:55 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:2644:25 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:2644:55 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:3013:21 - error: "_prims" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:3014:21 - error: "_prims" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:3015:21 - error: "_prims" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:3289:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:3346:26 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:3357:26 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:3486:27 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:3627:27 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:4124:20 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:4125:26 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/lowering.py:4204:28 - error: Argument of type "list[int]" cannot be assigned to parameter "sizes" of type "Sequence[Expr]" +   "Literal[1]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/lowering.py:4207:26 - error: Argument of type "list[int]" cannot be assigned to parameter "sizes" of type "Sequence[Expr]" +   "Literal[1]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/lowering.py:4210:30 - error: Argument of type "list[int]" cannot be assigned to parameter "sizes" of type "Sequence[Expr]" +   "Literal[1]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/lowering.py:4468:28 - error: Cannot access attribute "name" for class "IRNode" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:4491:27 - error: Cannot access attribute "name" for class "IRNode" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:4566:33 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:4567:50 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:4573:33 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:4574:36 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:4798:25 - error: "virtualized" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:4816:21 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:6526:31 - error: "ops_handler" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:6531:17 - error: Cannot access attribute "inner_fn" for class "IRNode" +   Attribute "inner_fn" is unknown (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:6531:29 - error: Cannot access attribute "inner_fn_args" for class "IRNode" +   Attribute "inner_fn_args" is unknown (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:6533:44 - error: "virtualized" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:6771:58 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:6774:58 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:6880:33 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:6886:33 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:6892:33 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:6898:33 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:6910:62 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:6914:57 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:6915:57 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:6916:57 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:6917:62 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:6918:57 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:6919:57 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/lowering.py:7387:26 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/memory.py + /torch/_inductor/memory.py:40:49 - error: Type "OrderedSet[T@OrderedSet]" is not assignable to declared type "OrderedSet[BaseSchedulerNode]" +   "OrderedSet[T@OrderedSet]" is not assignable to "OrderedSet[BaseSchedulerNode]" +     Type parameter "T@OrderedSet" is invariant, but "T@OrderedSet" is not the same as "BaseSchedulerNode" (reportAssignmentType) + /torch/_inductor/memory.py:49:77 - error: Type "OrderedSet[T@OrderedSet]" is not assignable to declared type "OrderedSet[SchedulerBuffer | FreeableInputBuffer]" +   "OrderedSet[T@OrderedSet]" is not assignable to "OrderedSet[SchedulerBuffer | FreeableInputBuffer]" +     Type parameter "T@OrderedSet" is invariant, but "T@OrderedSet" is not the same as "SchedulerBuffer | FreeableInputBuffer" (reportAssignmentType) + /torch/_inductor/memory.py:52:49 - error: Type "OrderedSet[T@OrderedSet]" is not assignable to declared type "OrderedSet[BaseSchedulerNode]" +   "OrderedSet[T@OrderedSet]" is not assignable to "OrderedSet[BaseSchedulerNode]" +     Type parameter "T@OrderedSet" is invariant, but "T@OrderedSet" is not the same as "BaseSchedulerNode" (reportAssignmentType) + /torch/_inductor/memory.py:55:49 - error: Type "OrderedSet[T@OrderedSet]" is not assignable to declared type "OrderedSet[BaseSchedulerNode]" +   "OrderedSet[T@OrderedSet]" is not assignable to "OrderedSet[BaseSchedulerNode]" +     Type parameter "T@OrderedSet" is invariant, but "T@OrderedSet" is not the same as "BaseSchedulerNode" (reportAssignmentType) + /torch/_inductor/memory.py:90:72 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[str, OrderedSet[BaseSchedulerNode]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[str, OrderedSet[BaseSchedulerNode]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[BaseSchedulerNode]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) + /torch/_inductor/memory.py:215:72 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[str, OrderedSet[BaseSchedulerNode]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[str, OrderedSet[BaseSchedulerNode]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[BaseSchedulerNode]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) + /torch/_inductor/memory.py:250:82 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[BaseSchedulerNode, OrderedSet[BaseSchedulerNode]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[BaseSchedulerNode, OrderedSet[BaseSchedulerNode]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[BaseSchedulerNode]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) + /torch/_inductor/memory.py:256:9 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[BaseSchedulerNode, OrderedSet[SchedulerBuffer | FreeableInputBuffer]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[BaseSchedulerNode, OrderedSet[SchedulerBuffer | FreeableInputBuffer]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[SchedulerBuffer | FreeableInputBuffer]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) + /torch/_inductor/memory.py:553:9 - error: Argument of type "dict[str, int]" cannot be assigned to parameter "value" of type "BufferInfo" in function "__setitem__" +   "dict[str, int]" is not assignable to "BufferInfo" (reportArgumentType) + /torch/_inductor/memory.py:580:16 - error: "__getitem__" method not defined on type "BufferInfo" (reportIndexIssue) + /torch/_inductor/memory.py:584:16 - error: "__getitem__" method not defined on type "BufferInfo" (reportIndexIssue) + /torch/_inductor/memory.py:635:20 - error: "__getitem__" method not defined on type "BufferInfo" (reportIndexIssue) + /torch/_inductor/memory.py:636:13 - error: "__getitem__" method not defined on type "BufferInfo" (reportIndexIssue) + /torch/_inductor/memory.py:636:13 - error: "__setitem__" method not defined on type "BufferInfo" (reportIndexIssue) + /torch/_inductor/memory.py:637:16 - error: "__getitem__" method not defined on type "BufferInfo" (reportIndexIssue) +/torch/_inductor/metrics.py + /torch/_inductor/metrics.py:476:49 - error: Variable not allowed in type expression (reportInvalidTypeForm) +/torch/_inductor/mkldnn_ir.py + /torch/_inductor/mkldnn_ir.py:181:37 - error: Type "list[Expr]" is not assignable to declared type "StrideType" +   Type "list[Expr]" is not assignable to type "StrideType" +     "list[Expr]" is not assignable to "list[int]" +       Type parameter "_T@list" is invariant, but "Expr" is not the same as "int" +       Consider switching from "list" to "Sequence" which is covariant +     "list[Expr]" is not assignable to "tuple[int, ...]" (reportAssignmentType) + /torch/_inductor/mkldnn_ir.py:189:25 - error: Type "list[Expr]" is not assignable to declared type "StrideType" +   Type "list[Expr]" is not assignable to type "StrideType" +     "list[Expr]" is not assignable to "list[int]" +       Type parameter "_T@list" is invariant, but "Expr" is not the same as "int" +       Consider switching from "list" to "Sequence" which is covariant +     "list[Expr]" is not assignable to "tuple[int, ...]" (reportAssignmentType) + /torch/_inductor/mkldnn_ir.py:276:55 - error: Argument of type "list[Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "contiguous_strides" +   "list[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/mkldnn_ir.py:676:35 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_ir.py:676:50 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_ir.py:768:13 - error: Type "TensorBox | None" is not assignable to declared type "TensorBox" +   Type "TensorBox | None" is not assignable to type "TensorBox" +     "None" is not assignable to "TensorBox" (reportAssignmentType) + /torch/_inductor/mkldnn_ir.py:1051:35 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_ir.py:1051:50 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_ir.py:1139:13 - error: Type "Unknown | TensorBox | None" is not assignable to declared type "TensorBox" +   Type "Unknown | TensorBox | None" is not assignable to type "TensorBox" +     "None" is not assignable to "TensorBox" (reportAssignmentType) + /torch/_inductor/mkldnn_ir.py:1174:35 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_ir.py:1174:50 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_ir.py:1282:47 - error: Argument of type "Sequence[Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "contiguous_strides" +   "Sequence[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/mkldnn_ir.py:1283:47 - error: Argument of type "Sequence[Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "contiguous_strides" +   "Sequence[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/mkldnn_ir.py:1352:59 - error: Argument of type "list[Expr]" cannot be assigned to parameter "sizes" of type "Sequence[int]" in function "contiguous_strides" +   "list[Expr]" is not assignable to "Sequence[int]" +     Type parameter "_T_co@Sequence" is covariant, but "Expr" is not a subtype of "int" +       "Expr" is not assignable to "int" (reportArgumentType) +/torch/_inductor/mkldnn_lowerings.py + /torch/_inductor/mkldnn_lowerings.py:48:34 - error: Cannot access attribute "data" for class "IRNode" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:60:39 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:60:61 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:68:39 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:68:61 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:141:22 - error: Argument of type "list[int | Expr]" cannot be assigned to parameter "sizes" of type "Sequence[Expr]" +   "Literal[-1]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/mkldnn_lowerings.py:164:9 - error: Argument of type "list[TensorBox]" cannot be assigned to parameter "input_nodes" of type "list[IRNode]" in function "add_choices" +   "list[TensorBox]" is not assignable to "list[IRNode]" +     Type parameter "_T@list" is invariant, but "TensorBox" is not the same as "IRNode" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /torch/_inductor/mkldnn_lowerings.py:344:30 - error: Argument of type "list[int | Expr]" cannot be assigned to parameter "sizes" of type "Sequence[Expr]" +   "Literal[-1]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/mkldnn_lowerings.py:406:30 - error: Argument of type "list[int | Expr]" cannot be assigned to parameter "sizes" of type "Sequence[Expr]" +   "Literal[-1]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/mkldnn_lowerings.py:409:30 - error: Argument of type "list[int | Expr]" cannot be assigned to parameter "sizes" of type "Sequence[Expr]" +   "Literal[-1]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/mkldnn_lowerings.py:557:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:557:51 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:561:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:561:48 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:619:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:619:51 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:623:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:623:48 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:628:44 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:628:59 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:629:49 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:629:64 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:681:56 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:681:68 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:687:30 - error: Argument of type "list[int | Expr]" cannot be assigned to parameter "sizes" of type "Sequence[Expr]" +   "Literal[-1]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/mkldnn_lowerings.py:691:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:691:55 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:708:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:708:49 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:713:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:713:52 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:733:42 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:738:75 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:740:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:740:59 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:757:31 - error: "equal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:758:31 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:904:52 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:904:65 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:1001:30 - error: Argument of type "list[int | Expr]" cannot be assigned to parameter "sizes" of type "Sequence[Expr]" +   "Literal[-1]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/mkldnn_lowerings.py:1002:32 - error: Argument of type "list[int | Expr]" cannot be assigned to parameter "sizes" of type "Sequence[Expr]" +   "Literal[-1]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/mkldnn_lowerings.py:1006:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:1006:55 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:1019:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:1019:49 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:1031:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:1031:52 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:1041:42 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:1045:75 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:1047:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:1047:59 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:1051:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:1052:27 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:1053:48 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:1053:63 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:1083:31 - error: "equal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/mkldnn_lowerings.py:1084:31 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/ops_handler.py + /torch/_inductor/ops_handler.py:88:69 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:128:57 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:139:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:140:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:149:47 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:163:46 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:169:47 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:175:47 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:181:51 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:181:75 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:240:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:241:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:269:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:281:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:296:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:722:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:722:36 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:832:9 - error: Method "masked" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "mask" +   Parameter 2 name mismatch: base parameter is named "mask", override parameter is named "body" +   Parameter 3 name mismatch: base parameter is named "body", override parameter is named "other" +   Parameter 4 mismatch: base parameter "other" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:836:9 - error: Method "frexp" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:840:9 - error: Method "scan" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "dtypes" +   Parameter 2 name mismatch: base parameter is named "dtypes", override parameter is named "combine_fn" +   Parameter 3 name mismatch: base parameter is named "combine_fn", override parameter is named "values" +   Parameter 4 mismatch: base parameter "values" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:844:9 - error: Method "sort" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "dtypes" +   Parameter 2 name mismatch: base parameter is named "dtypes", override parameter is named "values" +   Parameter 3 name mismatch: base parameter is named "values", override parameter is named "stable" +   Parameter 4 name mismatch: base parameter is named "stable", override parameter is named "descending" +   Parameter 5 mismatch: base parameter "descending" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:848:9 - error: Method "indirect_indexing" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "index_var" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "size" +   Parameter 3 name mismatch: base parameter is named "size", override parameter is named "check" +   Parameter 4 name mismatch: base parameter is named "check", override parameter is named "wrap_neg" +   Parameter 5 mismatch: base parameter "wrap_neg" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "neg" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "eq" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "ne" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "lt" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "gt" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "le" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "ge" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "add" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "sub" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "mul" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "pow" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "and_" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "or_" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "xor" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "lshift" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "rshift" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "floordiv" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "truediv" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:931:7 - error: Base classes for class "MockHandler" define method "mod" in incompatible way +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "a" +   Parameter 2 name mismatch: base parameter is named "x0", override parameter is named "b" +   Parameter 3 mismatch: base parameter "x1" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:941:9 - error: Method "masked" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "mask" +   Parameter 2 name mismatch: base parameter is named "mask", override parameter is named "body" +   Parameter 3 name mismatch: base parameter is named "body", override parameter is named "other" +   Parameter 4 mismatch: base parameter "other" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:945:9 - error: Method "frexp" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "x" +   Parameter 2 mismatch: base parameter "x0" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:949:9 - error: Method "scan" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 4, but override has 3 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "dtypes" +   Parameter 2 name mismatch: base parameter is named "dtypes", override parameter is named "combine_fn" +   Parameter 3 name mismatch: base parameter is named "combine_fn", override parameter is named "values" +   Parameter 4 mismatch: base parameter "values" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:956:9 - error: Method "sort" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "dtypes" +   Parameter 2 name mismatch: base parameter is named "dtypes", override parameter is named "values" +   Parameter 3 name mismatch: base parameter is named "values", override parameter is named "stable" +   Parameter 4 name mismatch: base parameter is named "stable", override parameter is named "descending" +   Parameter 5 mismatch: base parameter "descending" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:963:9 - error: Method "indirect_indexing" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "index_var" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "size" +   Parameter 3 name mismatch: base parameter is named "size", override parameter is named "check" +   Parameter 4 name mismatch: base parameter is named "check", override parameter is named "wrap_neg" +   Parameter 5 mismatch: base parameter "wrap_neg" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/_inductor/ops_handler.py:1002:16 - error: Type "Expr" is not assignable to return type "Symbol" +   "Expr" is not assignable to "Symbol" (reportReturnType) + /torch/_inductor/ops_handler.py:1017:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:1018:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:1095:44 - warning: TypeVar "T" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_inductor/ops_handler.py:1107:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:1138:47 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:1141:49 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/ops_handler.py:1141:75 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) +/torch/_inductor/optimize_indexing.py + /torch/_inductor/optimize_indexing.py:29:23 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/optimize_indexing.py:29:35 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/optimize_indexing.py:53:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/optimize_indexing.py:54:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/optimize_indexing.py:55:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/optimize_indexing.py:92:21 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/optimize_indexing.py:108:39 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/output_code.py + /torch/_inductor/output_code.py:137:14 - error: "_debug_has_internal_overlap" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/output_code.py:155:19 - error: Could not access item in TypedDict +   "is_backward" is not a required key in "_CompileFxKwargs", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /torch/_inductor/output_code.py:165:35 - error: "cudagraph_trees" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/output_code.py:189:20 - error: Could not access item in TypedDict +   "is_inference" is not a required key in "_CompileFxKwargs", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /torch/_inductor/output_code.py:190:19 - error: Could not access item in TypedDict +   "is_backward" is not a required key in "_CompileFxKwargs", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /torch/_inductor/output_code.py:211:20 - error: Could not access item in TypedDict +   "is_inference" is not a required key in "_CompileFxKwargs", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /torch/_inductor/output_code.py:212:19 - error: Could not access item in TypedDict +   "is_backward" is not a required key in "_CompileFxKwargs", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /torch/_inductor/output_code.py:216:29 - error: Could not access item in TypedDict +   "static_input_idxs" is not a required key in "_CompileFxKwargs", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /torch/_inductor/output_code.py:289:20 - error: Could not access item in TypedDict +   "is_inference" is not a required key in "_CompileFxKwargs", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /torch/_inductor/output_code.py:290:19 - error: Could not access item in TypedDict +   "is_backward" is not a required key in "_CompileFxKwargs", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /torch/_inductor/output_code.py:291:36 - error: Could not access item in TypedDict +   "static_input_idxs" is not a required key in "_CompileFxKwargs", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /torch/_inductor/output_code.py:421:45 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/output_code.py:561:78 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/output_code.py:571:66 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/output_code.py:604:29 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/output_code.py:605:33 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/output_code.py:609:33 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/output_code.py:611:37 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/output_code.py:614:29 - error: "debug" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/output_code.py:665:16 - error: Could not access item in TypedDict +   "cudagraphs" is not a required key in "_CompileFxKwargs", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /torch/_inductor/output_code.py:666:16 - error: Could not access item in TypedDict +   "is_backward" is not a required key in "_CompileFxKwargs", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /torch/_inductor/output_code.py:667:23 - error: Could not access item in TypedDict +   "is_backward" is not a required key in "_CompileFxKwargs", so access may result in runtime exception (reportTypedDictNotRequiredAccess) + /torch/_inductor/output_code.py:668:33 - error: Could not access item in TypedDict +   "cudagraphs" is not a required key in "_CompileFxKwargs", so access may result in runtime exception (reportTypedDictNotRequiredAccess) +/torch/_inductor/package/package.py + /torch/_inductor/package/package.py:129:31 - error: "_aoti" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/package/package.py:135:23 - error: "_aoti" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/pattern_matcher.py + /torch/_inductor/pattern_matcher.py:112:26 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:140:30 - error: "proxy" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:147:30 - error: "proxy" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:169:41 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:298:29 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:629:29 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:802:5 - error: "op" incorrectly overrides property of same name in class "_TargetExpr" (reportIncompatibleMethodOverride) + /torch/_inductor/pattern_matcher.py:802:10 - error: Type "Literal['call_function']" is not assignable to declared type "property" +   "Literal['call_function']" is not assignable to "property" (reportAssignmentType) + /torch/_inductor/pattern_matcher.py:810:5 - error: "op" incorrectly overrides property of same name in class "_TargetExpr" (reportIncompatibleMethodOverride) + /torch/_inductor/pattern_matcher.py:810:10 - error: Type "Literal['call_method']" is not assignable to declared type "property" +   "Literal['call_method']" is not assignable to "property" (reportAssignmentType) + /torch/_inductor/pattern_matcher.py:818:5 - error: "op" incorrectly overrides property of same name in class "_TargetExpr" (reportIncompatibleMethodOverride) + /torch/_inductor/pattern_matcher.py:818:10 - error: Type "Literal['call_module']" is not assignable to declared type "property" +   "Literal['call_module']" is not assignable to "property" (reportAssignmentType) + /torch/_inductor/pattern_matcher.py:842:5 - error: "op" incorrectly overrides property of same name in class "_TargetExpr" (reportIncompatibleMethodOverride) + /torch/_inductor/pattern_matcher.py:842:10 - error: Type "Literal['call_function']" is not assignable to declared type "property" +   "Literal['call_function']" is not assignable to "property" (reportAssignmentType) + /torch/_inductor/pattern_matcher.py:846:5 - error: "op" incorrectly overrides property of same name in class "_TargetExpr" (reportIncompatibleMethodOverride) + /torch/_inductor/pattern_matcher.py:846:10 - error: Type "Literal['call_method']" is not assignable to declared type "property" +   "Literal['call_method']" is not assignable to "property" (reportAssignmentType) + /torch/_inductor/pattern_matcher.py:850:5 - error: "op" incorrectly overrides property of same name in class "_TargetExpr" (reportIncompatibleMethodOverride) + /torch/_inductor/pattern_matcher.py:850:10 - error: Type "Literal['call_module']" is not assignable to declared type "property" +   "Literal['call_module']" is not assignable to "property" (reportAssignmentType) + /torch/_inductor/pattern_matcher.py:1019:35 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:1032:23 - error: Cannot access attribute "pretty_print" for class "PatternExpr" +   Attribute "pretty_print" is unknown (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:1068:38 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:1083:32 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:1088:36 - error: Cannot access attribute "fns" for class "PatternExpr" +   Attribute "fns" is unknown (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:1093:17 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /torch/_inductor/pattern_matcher.py:1093:17 - error: Argument of type "tuple[Unknown, Unknown]" cannot be assigned to parameter "index" of type "slice[Any, Any, Any]" in function "__getitem__" +   "tuple[Unknown, Unknown]" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /torch/_inductor/pattern_matcher.py:1093:42 - error: Cannot access attribute "op" for class "PatternExpr" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:1095:17 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /torch/_inductor/pattern_matcher.py:1095:17 - error: Argument of type "tuple[Unknown, Unknown]" cannot be assigned to parameter "index" of type "slice[Any, Any, Any]" in function "__getitem__" +   "tuple[Unknown, Unknown]" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /torch/_inductor/pattern_matcher.py:1095:42 - error: Cannot access attribute "op" for class "PatternExpr" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:1155:17 - error: Method "run_node" overrides class "Interpreter" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "n", override parameter is named "node" (reportIncompatibleMethodOverride) + /torch/_inductor/pattern_matcher.py:1482:37 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:1581:18 - error: "is_inference_mode_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:1592:17 - error: Argument of type "Iterable[Any]" cannot be assigned to parameter "example_inputs" of type "Sequence[Any]" in function "gen_pattern_and_search_gm" +   "Iterable[Any]" is not assignable to "Sequence[Any]" (reportArgumentType) + /torch/_inductor/pattern_matcher.py:1658:41 - error: "pattern_matcher" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:1659:44 - error: "pattern_matcher" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:1803:51 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:1803:65 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:1898:28 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:1967:33 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:1978:53 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:2096:13 - error: Method "placeholder" overrides class "Interpreter" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Target", override parameter is type "str" +     Type "Target" is not assignable to type "str" +       "FunctionType" is not assignable to "str" (reportIncompatibleMethodOverride) + /torch/_inductor/pattern_matcher.py:2117:13 - error: Method "call_function" overrides class "Interpreter" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Target", override parameter is type "str" +     Type "Target" is not assignable to type "str" +       "FunctionType" is not assignable to "str" (reportIncompatibleMethodOverride) + /torch/_inductor/pattern_matcher.py:2152:39 - error: Cannot access attribute "users" for class "int" +   Attribute "users" is unknown (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:2152:39 - error: Cannot access attribute "users" for class "str" +   Attribute "users" is unknown (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:2240:46 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:2241:25 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_inductor/pattern_matcher.py:2312:13 - error: Method "run_node" overrides class "Interpreter" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "n", override parameter is named "old_node" (reportIncompatibleMethodOverride) + /torch/_inductor/pattern_matcher.py:2320:20 - error: Type "Proxy | Any" is not assignable to return type "Node" +   Type "Proxy | Any" is not assignable to type "Node" +     "Proxy" is not assignable to "Node" (reportReturnType) + /torch/_inductor/pattern_matcher.py:2348:53 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/_inductor/quantized_lowerings.py + /torch/_inductor/quantized_lowerings.py:24:11 - error: "_weight_int8pack_mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/quantized_lowerings.py:65:40 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/quantized_lowerings.py:65:56 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/quantized_lowerings.py:65:71 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/quantized_lowerings.py:66:43 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/quantized_lowerings.py:110:40 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/quantized_lowerings.py:110:56 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/quantized_lowerings.py:110:71 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/quantized_lowerings.py:111:43 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/quantized_lowerings.py:114:19 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/quantized_lowerings.py:114:50 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/quantized_lowerings.py:149:51 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/quantized_lowerings.py:153:26 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/quantized_lowerings.py:153:61 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/remote_cache.py + /torch/_inductor/remote_cache.py:26:12 - error: Import "redis" could not be resolved (reportMissingImports) + /torch/_inductor/remote_cache.py:39:5 - error: Declaration "Sample" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_inductor/remote_cache.py:163:44 - error: Cannot access attribute "backend_override_cls" for class "type[RemoteCache[_T@RemoteCache]]*" +   Could not bind method "" because it is missing a "self" or "cls" parameter (reportAttributeAccessIssue) + /torch/_inductor/remote_cache.py:236:31 - error: Argument of type "object" cannot be assigned to parameter "data" of type "_U@__init__" in function "put" +   Type "object" is not assignable to type "_U@__init__" (reportArgumentType) + /torch/_inductor/remote_cache.py:254:22 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/_inductor/remote_cache.py:279:22 - error: "exceptions" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/remote_cache.py:299:22 - error: "exceptions" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/remote_cache.py:309:27 - error: Cannot access attribute "backend_override_cls" for class "type[RedisRemoteCache]*" +   Could not bind method "" because it is missing a "self" or "cls" parameter (reportAttributeAccessIssue) + /torch/_inductor/remote_cache.py:361:20 - error: Import "torch._inductor.fb.remote_cache" could not be resolved (reportMissingImports) +/torch/_inductor/remote_gemm_autotune_cache.py + /torch/_inductor/remote_gemm_autotune_cache.py:11:79 - warning: TypeVar "_T" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_inductor/remote_gemm_autotune_cache.py:16:14 - error: Import "torch._inductor.fb.remote_gemm_autotune_cache" could not be resolved (reportMissingImports) +/torch/_inductor/rocm_multiarch_utils.py + /torch/_inductor/rocm_multiarch_utils.py:89:33 - error: Cannot access attribute "target_archs" for class "type[rocm]" +   Attribute "target_archs" is unknown (reportAttributeAccessIssue) +/torch/_inductor/runtime/autotune_cache.py + /torch/_inductor/runtime/autotune_cache.py:71:40 - error: "_triton" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_inductor/runtime/autotune_cache.py:78:22 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/autotune_cache.py:163:61 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/_inductor/runtime/autotune_cache.py:164:10 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/_inductor/runtime/autotune_cache.py:272:17 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/_inductor/runtime/autotune_cache.py:368:18 - error: "_utils_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/autotune_cache.py:374:18 - error: Import "torch._inductor.fb.remote_cache" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/autotune_cache.py:378:20 - error: "_utils_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/autotune_cache.py:514:28 - error: "codecache" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/runtime/autotune_cache.py:522:14 - error: "_utils_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/autotune_cache.py:528:14 - error: Import "torch._inductor.fb.remote_cache" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/autotune_cache.py:532:42 - error: "_utils_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/autotune_cache.py:540:19 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/_inductor/runtime/autotune_cache.py:542:6 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/_inductor/runtime/autotune_cache.py:577:32 - error: Expected 0 positional arguments (reportCallIssue) + /torch/_inductor/runtime/autotune_cache.py:579:23 - error: Cannot assign to attribute "found_by_coordesc" for class "object" +   Attribute "found_by_coordesc" is unknown (reportAttributeAccessIssue) +/torch/_inductor/runtime/benchmarking.py + /torch/_inductor/runtime/benchmarking.py:65:24 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/runtime/benchmarking.py:106:70 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/benchmarking.py:107:41 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/benchmarking.py:136:43 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/benchmarking.py:167:41 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/benchmarking.py:170:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/benchmarking.py:182:50 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/benchmarking.py:195:41 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/benchmarking.py:247:18 - error: Import "triton.testing" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/benchmarking.py:377:24 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/benchmarking.py:377:67 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/runtime/caching/config.py + /torch/_inductor/runtime/caching/config.py:52:33 - error: "_utils_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/runtime/caching/context.py + /torch/_inductor/runtime/caching/context.py:174:73 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/caching/context.py:187:34 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/runtime/caching/implementations.py + /torch/_inductor/runtime/caching/implementations.py:190:33 - error: Cannot assign to attribute "_flock" for class "_OnDiskCacheImpl*" +   "BaseFileLock" is not assignable to "SoftFileLock" (reportAttributeAccessIssue) + /torch/_inductor/runtime/caching/implementations.py:244:6 - error: Argument of type "property" cannot be assigned to parameter "arg" of type "_F@override" in function "override" +   Type "property" is not assignable to type "(...) -> Any" +     Type "property" is not assignable to type "(...) -> Any" (reportArgumentType) + /torch/_inductor/runtime/caching/implementations.py:342:10 - error: Import ".fb.implementations" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/caching/implementations.py:368:10 - error: Argument of type "property" cannot be assigned to parameter "arg" of type "_F@override" in function "override" +   Type "property" is not assignable to type "(...) -> Any" +     Type "property" is not assignable to type "(...) -> Any" (reportArgumentType) +/torch/_inductor/runtime/caching/interfaces.py + /torch/_inductor/runtime/caching/interfaces.py:187:27 - error: Arguments for ParamSpec "P@_make_key" are missing (reportCallIssue) + /torch/_inductor/runtime/caching/interfaces.py:332:46 - error: "..." is not allowed in this context (reportInvalidTypeForm) + /torch/_inductor/runtime/caching/interfaces.py:333:34 - error: "..." is not allowed in this context (reportInvalidTypeForm) + /torch/_inductor/runtime/caching/interfaces.py:333:55 - error: "..." is not allowed in this context (reportInvalidTypeForm) +/torch/_inductor/runtime/coordinate_descent_tuner.py + /torch/_inductor/runtime/coordinate_descent_tuner.py:222:33 - error: Cannot access attribute "Config" for class "type[triton]" +   Attribute "Config" is unknown (reportAttributeAccessIssue) + /torch/_inductor/runtime/coordinate_descent_tuner.py:295:33 - error: Cannot access attribute "Config" for class "type[triton]" +   Attribute "Config" is unknown (reportAttributeAccessIssue) + /torch/_inductor/runtime/coordinate_descent_tuner.py:297:34 - error: Cannot access attribute "Config" for class "type[triton]" +   Attribute "Config" is unknown (reportAttributeAccessIssue) + /torch/_inductor/runtime/coordinate_descent_tuner.py:299:18 - error: Cannot access attribute "Config" for class "type[triton]" +   Attribute "Config" is unknown (reportAttributeAccessIssue) + /torch/_inductor/runtime/coordinate_descent_tuner.py:367:13 - error: Operator "/" not supported for types "float | None" and "float | Unknown | Any | None" +   Operator "/" not supported for types "float" and "None" when expected type is "object" +   Operator "/" not supported for types "None" and "float" when expected type is "object" +   Operator "/" not supported for types "None" and "None" when expected type is "object" (reportOperatorIssue) +/torch/_inductor/runtime/debug_utils.py + /torch/_inductor/runtime/debug_utils.py:29:29 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/runtime/debug_utils.py:110:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/debug_utils.py:111:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/debug_utils.py:114:15 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/runtime/hints.py + /torch/_inductor/runtime/hints.py:16:32 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/hints.py:39:12 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/hints.py:40:12 - error: Import "triton.backends.compiler" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/hints.py:41:12 - error: Import "triton.compiler.compiler" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/hints.py:45:14 - error: Import "triton.backends.compiler" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/hints.py:67:14 - error: Import "triton.compiler.compiler" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/hints.py:148:26 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/runtime/runtime_utils.py + /torch/_inductor/runtime/runtime_utils.py:66:36 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/_inductor/runtime/runtime_utils.py:80:33 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/_inductor/runtime/runtime_utils.py:110:12 - warning: Import "colorama" could not be resolved from source (reportMissingModuleSource) + /torch/_inductor/runtime/runtime_utils.py:122:33 - error: "Fore" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/runtime/runtime_utils.py:122:71 - error: "Fore" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/runtime/runtime_utils.py:170:14 - error: Import "triton.runtime.cache" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/runtime_utils.py:175:18 - error: Import "triton.runtime.cache" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/runtime_utils.py:192:45 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/runtime_utils.py:205:12 - error: Import "jax.numpy" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/runtime_utils.py:208:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/runtime_utils.py:209:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/runtime_utils.py:210:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/runtime_utils.py:211:15 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/runtime_utils.py:212:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/runtime_utils.py:213:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/runtime_utils.py:214:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/runtime_utils.py:215:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/runtime_utils.py:216:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/runtime_utils.py:217:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/runtime_utils.py:218:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/runtime_utils.py:219:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/runtime_utils.py:226:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/runtime/static_cuda_launcher.py + /torch/_inductor/runtime/static_cuda_launcher.py:37:32 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/_inductor/runtime/static_cuda_launcher.py:134:30 - error: "_StaticCudaLauncher" is unknown import symbol (reportAttributeAccessIssue) + /torch/_inductor/runtime/static_cuda_launcher.py:183:42 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/_inductor/runtime/static_cuda_launcher.py:238:30 - error: "_StaticCudaLauncher" is unknown import symbol (reportAttributeAccessIssue) +/torch/_inductor/runtime/triton_compat.py + /torch/_inductor/runtime/triton_compat.py:10:12 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/triton_compat.py:10:12 - error: Type "Module("triton")" is not assignable to declared type "type[triton]" +   Type "Module("triton")" is not assignable to type "type[triton]" (reportAssignmentType) + /torch/_inductor/runtime/triton_compat.py:12:14 - error: Type "None" is not assignable to declared type "type[triton]" +   Type "None" is not assignable to type "type[triton]" (reportAssignmentType) + /torch/_inductor/runtime/triton_compat.py:16:12 - error: Import "triton.language" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/triton_compat.py:16:31 - error: Type "Module("triton.language")" is not assignable to declared type "type[tl]" +   Type "Module("triton.language")" is not assignable to type "type[tl]" (reportAssignmentType) + /torch/_inductor/runtime/triton_compat.py:17:10 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/triton_compat.py:18:10 - error: Import "triton.compiler" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/triton_compat.py:19:10 - error: Import "triton.runtime.autotuner" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/triton_compat.py:20:10 - error: Import "triton.runtime.jit" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/triton_compat.py:23:14 - error: Import "triton.runtime.autotuner" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/triton_compat.py:30:14 - error: Import "triton.compiler.compiler" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/triton_compat.py:35:14 - error: Import "triton.backends.compiler" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/triton_compat.py:43:30 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/triton_compat.py:50:14 - error: Import "triton.language.extra" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/triton_compat.py:52:24 - error: Cannot access attribute "extra" for class "type[tl]" +   Attribute "extra" is unknown (reportAttributeAccessIssue) + /torch/_inductor/runtime/triton_compat.py:53:19 - error: Cannot access attribute "math" for class "type[tl]" +   Attribute "math" is unknown (reportAttributeAccessIssue) + /torch/_inductor/runtime/triton_compat.py:55:23 - error: Cannot access attribute "extra" for class "type[tl]" +   Attribute "extra" is unknown (reportAttributeAccessIssue) + /torch/_inductor/runtime/triton_compat.py:55:53 - error: Cannot access attribute "extra" for class "type[tl]" +   Attribute "extra" is unknown (reportAttributeAccessIssue) + /torch/_inductor/runtime/triton_compat.py:56:28 - error: Cannot access attribute "extra" for class "type[tl]" +   Attribute "extra" is unknown (reportAttributeAccessIssue) + /torch/_inductor/runtime/triton_compat.py:57:23 - error: Cannot access attribute "math" for class "type[tl]" +   Attribute "math" is unknown (reportAttributeAccessIssue) + /torch/_inductor/runtime/triton_compat.py:58:25 - error: Cannot access attribute "extra" for class "type[tl]" +   Attribute "extra" is unknown (reportAttributeAccessIssue) + /torch/_inductor/runtime/triton_compat.py:58:56 - error: Cannot access attribute "extra" for class "type[tl]" +   Attribute "extra" is unknown (reportAttributeAccessIssue) + /torch/_inductor/runtime/triton_compat.py:59:28 - error: Cannot access attribute "extra" for class "type[tl]" +   Attribute "extra" is unknown (reportAttributeAccessIssue) + /torch/_inductor/runtime/triton_compat.py:60:23 - error: Cannot access attribute "math" for class "type[tl]" +   Attribute "math" is unknown (reportAttributeAccessIssue) + /torch/_inductor/runtime/triton_compat.py:62:28 - error: Cannot access attribute "math" for class "type[tl]" +   Attribute "math" is unknown (reportAttributeAccessIssue) + /torch/_inductor/runtime/triton_compat.py:66:14 - error: Import "triton.language.standard" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/triton_compat.py:75:31 - error: Cannot access attribute "Config" for class "type[triton]" +   Attribute "Config" is unknown (reportAttributeAccessIssue) + /torch/_inductor/runtime/triton_compat.py:77:55 - error: Cannot access attribute "Config" for class "type[triton]" +   Attribute "Config" is unknown (reportAttributeAccessIssue) + /torch/_inductor/runtime/triton_compat.py:86:14 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/triton_compat.py:93:14 - error: Import "triton.compiler.compiler" could not be resolved (reportMissingImports) + /torch/_inductor/runtime/triton_compat.py:98:49 - error: Cannot access attribute "language" for class "type[triton]" +   Attribute "language" is unknown (reportAttributeAccessIssue) + /torch/_inductor/runtime/triton_compat.py:145:22 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/runtime/triton_compat.py:156:25 - error: Type "Module("..profiler")" is not assignable to declared type "type[autograd_profiler]" +   Type "Module("..profiler")" is not assignable to type "type[autograd_profiler]" (reportAssignmentType) +/torch/_inductor/scheduler.py + /torch/_inductor/scheduler.py:110:26 - error: "_split_size" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:130:37 - error: "_original_ranges" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:132:48 - error: "_original_ranges" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:134:37 - error: "_original_reduction_ranges" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:136:48 - error: "_original_reduction_ranges" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:147:25 - error: Argument of type "Any | None" cannot be assigned to parameter "left" of type "Expr | int" in function "statically_known_equals" +   Type "Any | None" is not assignable to type "Expr | int" +     Type "None" is not assignable to type "Expr | int" +       "None" is not assignable to "Expr" +       "None" is not assignable to "int" (reportArgumentType) + /torch/_inductor/scheduler.py:151:29 - error: Type "tuple[Any, Any | None]" is not assignable to return type "tuple[Expr, Expr]" +   Type "Any | None" is not assignable to type "Expr" +     "None" is not assignable to "Expr" (reportReturnType) + /torch/_inductor/scheduler.py:462:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:473:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:559:51 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:560:42 - error: "str_helper" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:561:29 - error: "get_size" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:563:53 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:564:42 - error: "str_helper" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:565:29 - error: "get_reduction_size" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:565:62 - error: "get_reduction_type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:706:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:754:58 - error: "codegen" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:862:55 - error: "codegen" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:985:22 - error: "_prims" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:1051:32 - error: Cannot access attribute "get_buf_bytes" for class "TensorBox" +   Attribute "get_buf_bytes" is unknown (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:1221:53 - error: "codecache" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:1222:28 - error: "codecache" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:1433:39 - error: "simplify_and_reorder" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:1439:28 - error: "get_device_or_error" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:1526:24 - error: "with_original_inner_fn" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:1539:28 - error: "get_device_or_error" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:1615:31 - error: "get_reduction_type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:1621:26 - error: "get_reduction_type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:1628:23 - error: "data" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:1737:9 - error: "has_side_effects" overrides method of same name in class "BaseSchedulerNode" with incompatible type "CachedMethod[(), bool]" (reportIncompatibleMethodOverride) + /torch/_inductor/scheduler.py:1906:9 - error: "get_name" overrides method of same name in class "BaseSchedulerNode" with incompatible type "CachedMethod[(), str]" (reportIncompatibleMethodOverride) + /torch/_inductor/scheduler.py:1938:15 - error: Parameter declaration "future_used_buffers" is obscured by a declaration of the same name (reportRedeclaration) + /torch/_inductor/scheduler.py:1951:9 - error: "used_buffer_names" overrides method of same name in class "BaseSchedulerNode" with incompatible type "CachedMethod[(), OrderedSet[str]]" (reportIncompatibleMethodOverride) + /torch/_inductor/scheduler.py:1955:9 - error: "used_or_aliased_buffer_names" overrides method of same name in class "BaseSchedulerNode" with incompatible type "CachedMethod[(), OrderedSet[str]]" (reportIncompatibleMethodOverride) + /torch/_inductor/scheduler.py:1967:9 - error: "is_reduction" overrides method of same name in class "BaseSchedulerNode" with incompatible type "CachedMethod[(), bool]" (reportIncompatibleMethodOverride) + /torch/_inductor/scheduler.py:1971:9 - error: "is_native_matmul" overrides method of same name in class "BaseSchedulerNode" with incompatible type "CachedMethod[(), bool]" (reportIncompatibleMethodOverride) + /torch/_inductor/scheduler.py:1975:9 - error: "is_split_scan" overrides method of same name in class "BaseSchedulerNode" with incompatible type "CachedMethod[(), bool]" (reportIncompatibleMethodOverride) + /torch/_inductor/scheduler.py:1979:9 - error: "is_template" overrides method of same name in class "BaseSchedulerNode" with incompatible type "CachedMethod[(), bool]" (reportIncompatibleMethodOverride) + /torch/_inductor/scheduler.py:1983:9 - error: "get_template_node" overrides method of same name in class "BaseSchedulerNode" with incompatible type "CachedMethod[(), TemplateBuffer | None]" (reportIncompatibleMethodOverride) + /torch/_inductor/scheduler.py:1989:35 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:1993:9 - error: "has_aliasing_or_mutation" overrides method of same name in class "BaseSchedulerNode" with incompatible type "CachedMethod[(), bool]" (reportIncompatibleMethodOverride) + /torch/_inductor/scheduler.py:2001:9 - error: Method "add_fake_dep" overrides class "BaseSchedulerNode" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "dep", override parameter is named "name" (reportIncompatibleMethodOverride) + /torch/_inductor/scheduler.py:2034:9 - error: "has_side_effects" overrides method of same name in class "BaseSchedulerNode" with incompatible type "CachedMethod[(), bool]" (reportIncompatibleMethodOverride) + /torch/_inductor/scheduler.py:2131:9 - error: Method "fuse" overrides class "FusedSchedulerNode" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "node1", override parameter is named "producer" +   Parameter 3 name mismatch: base parameter is named "node2", override parameter is named "consumer" (reportIncompatibleMethodOverride) + /torch/_inductor/scheduler.py:2420:9 - error: Method "add_fake_dep" overrides class "BaseSchedulerNode" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "dep", override parameter is named "fake_dep" (reportIncompatibleMethodOverride) + /torch/_inductor/scheduler.py:2425:9 - error: "get_name" overrides method of same name in class "BaseSchedulerNode" with incompatible type "CachedMethod[(), str]" (reportIncompatibleMethodOverride) + /torch/_inductor/scheduler.py:2594:35 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:2615:53 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:2754:28 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:2792:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:2796:53 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:2899:64 - error: Type "defaultdict[Unknown, DedupList[_T@DedupList]]" is not assignable to declared type "defaultdict[str, DedupList[NodeUser]]" +   "defaultdict[Unknown, DedupList[_T@DedupList]]" is not assignable to "defaultdict[str, DedupList[NodeUser]]" +     Type parameter "_VT@defaultdict" is invariant, but "DedupList[_T@DedupList]" is not the same as "DedupList[NodeUser]" (reportAssignmentType) + /torch/_inductor/scheduler.py:2961:21 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "__setitem__" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/scheduler.py:2968:25 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "__setitem__" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/scheduler.py:3127:32 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:3165:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:3439:49 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:3474:49 - error: "select_algorithm" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:3481:37 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:3485:25 - error: Argument of type "ChoiceCaller" cannot be assigned to parameter "value" of type "TritonTemplateCallerBase" in function "__setitem__" +   "ChoiceCaller" is not assignable to "TritonTemplateCallerBase" (reportArgumentType) + /torch/_inductor/scheduler.py:3499:61 - error: Argument of type "ChoiceCaller" cannot be assigned to parameter "caller" of type "TritonTemplateCallerBase" in function "finalize_as_triton_caller" +   "ChoiceCaller" is not assignable to "TritonTemplateCallerBase" (reportArgumentType) + /torch/_inductor/scheduler.py:3512:28 - error: Cannot assign to attribute "layout" for class "IRNode" +   Attribute "layout" is unknown (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:3607:14 - error: Import "triton.compiler.errors" could not be resolved (reportMissingImports) + /torch/_inductor/scheduler.py:3667:49 - error: "select_algorithm" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:3722:59 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:4203:49 - error: Argument of type "int" cannot be assigned to parameter "left" of type "Expr" in function "statically_known_gt" +   "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/scheduler.py:4465:52 - error: Argument of type "int" cannot be assigned to parameter "expr" of type "Expr" in function "generate_inverse_formula" +   "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/scheduler.py:4628:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:4884:74 - error: Argument of type "Expr" cannot be assigned to parameter "new_range" of type "int" in function "expand_dimension_for_pointwise_node" +   "Expr" is not assignable to "int" (reportArgumentType) + /torch/_inductor/scheduler.py:5158:35 - error: Cannot access attribute "data" for class "Expr" +   Attribute "data" is unknown (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:5183:14 - error: "codegen" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:5186:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:5207:50 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:5252:48 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:5253:27 - error: "op_overload" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:5272:33 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:5387:41 - error: "size" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:5388:43 - error: "stride" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:5389:43 - error: "offset" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/scheduler.py:5597:17 - error: Argument of type "list[IRNode | Any | Expr]" cannot be assigned to parameter "output_nodes" of type "list[IRNode]" in function "__init__" +   "list[IRNode | Any | Expr]" is not assignable to "list[IRNode]" +     Type parameter "_T@list" is invariant, but "IRNode | Any | Expr" is not the same as "IRNode" +     Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /torch/_inductor/scheduler.py:5812:36 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:5852:58 - error: Argument of type "str | None" cannot be assigned to parameter "name" of type "str" in function "define_subgraph_launcher_fn" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /torch/_inductor/scheduler.py:5901:79 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:5907:60 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/scheduler.py:6120:14 - error: Import "triton.compiler.errors" could not be resolved (reportMissingImports) + /torch/_inductor/scheduler.py:6210:50 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/select_algorithm.py + /torch/_inductor/select_algorithm.py:314:37 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:314:52 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:318:35 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:328:25 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:332:9 - error: Method "indirect_indexing" overrides class "OpsHandler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "index_var" +   Parameter 4 mismatch: base parameter has default argument value, override parameter does not (reportIncompatibleMethodOverride) + /torch/_inductor/select_algorithm.py:337:9 - error: Method "store" overrides class "OpsHandler" in an incompatible manner +   Return type mismatch: base method returns type "None", override returns type "str" +     "str" is not assignable to "None" (reportIncompatibleMethodOverride) + /torch/_inductor/select_algorithm.py:559:44 - error: Object of type "None" cannot be called (reportOptionalCall) + /torch/_inductor/select_algorithm.py:1298:28 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:1740:33 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:1968:13 - error: Argument of type "Sequence[Symbol] | None" cannot be assigned to parameter "call_sizes" of type "Sequence[Symbol]" in function "generate_and_load" +   Type "Sequence[Symbol] | None" is not assignable to type "Sequence[Symbol]" +     "None" is not assignable to "Sequence[Symbol]" (reportArgumentType) + /torch/_inductor/select_algorithm.py:2021:38 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:2024:29 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:2058:17 - error: Argument of type "Sequence[Symbol] | None" cannot be assigned to parameter "exprs" of type "Iterable[Expr | int]" in function "size_hints" +   Type "Sequence[Symbol] | None" is not assignable to type "Iterable[Expr | int]" +     "None" is incompatible with protocol "Iterable[Expr | int]" +       "__iter__" is not present (reportArgumentType) + /torch/_inductor/select_algorithm.py:2534:16 - error: "sched_getaffinity" is not a known attribute of module "os" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:2745:29 - error: "autotune_process" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:2761:26 - error: Cannot access attribute "hint_override" for class "ChoiceCaller" +   Attribute "hint_override" is unknown (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:2798:36 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:2799:33 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:3177:34 - error: "futures" is not a known attribute of module "concurrent" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:3178:40 - error: "futures" is not a known attribute of module "concurrent" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:3200:23 - error: Cannot access attribute "future" for class "StaticAutotunerFuture" +   Attribute "future" is unknown (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:3200:23 - error: Cannot access attribute "future" for class "CachingAutotuner" +   Attribute "future" is unknown (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:3206:24 - error: "add_done_callback" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/select_algorithm.py:3320:37 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:3327:38 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:3338:27 - error: "as_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:3345:33 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:3352:34 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:3362:28 - error: "as_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:3451:26 - error: Import "triton.runtime.autotuner" could not be resolved (reportMissingImports) + /torch/_inductor/select_algorithm.py:3682:47 - error: "select_algorithm" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/select_algorithm.py:3685:51 - error: "select_algorithm" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) +/torch/_inductor/shape_propagation.py + /torch/_inductor/shape_propagation.py:20:69 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/shape_propagation.py:55:25 - error: Cannot access attribute "shape" for class "int" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_inductor/shape_propagation.py:55:25 - error: Cannot access attribute "shape" for class "float" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_inductor/shape_propagation.py:55:25 - error: Cannot access attribute "shape" for class "bool" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_inductor/shape_propagation.py:55:25 - error: Cannot access attribute "shape" for class "str" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_inductor/shape_propagation.py:55:25 - error: Cannot access attribute "shape" for class "OpsValue" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_inductor/shape_propagation.py:65:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/shape_propagation.py:84:58 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/shape_propagation.py:102:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/shape_propagation.py:103:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/shape_propagation.py:118:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/shape_propagation.py:119:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/shape_propagation.py:132:51 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/sizevars.py + /torch/_inductor/sizevars.py:158:9 - error: No overloads for "update" match the provided arguments (reportCallIssue) + /torch/_inductor/sizevars.py:159:13 - error: Argument of type "dict[Expr, ValueRanges[Expr]]" cannot be assigned to parameter "m" of type "Iterable[tuple[Symbol, ValueRanges[Unknown]]]" in function "update" (reportArgumentType) + /torch/_inductor/sizevars.py:168:17 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "__setitem__" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/sizevars.py:430:33 - error: Argument of type "dict[Symbol, Expr]" cannot be assigned to parameter "replacements" of type "dict[Expr, Any]" in function "sympy_subs" +   "dict[Symbol, Expr]" is not assignable to "dict[Expr, Any]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/sizevars.py:439:16 - error: Type "Expr" is not assignable to return type "None" +   "Expr" is not assignable to "None" (reportReturnType) + /torch/_inductor/sizevars.py:447:33 - error: Argument of type "dict[Symbol, Expr]" cannot be assigned to parameter "replacements" of type "dict[Expr, Any]" in function "sympy_subs" +   "dict[Symbol, Expr]" is not assignable to "dict[Expr, Any]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/sizevars.py:492:16 - error: Type "Basic | Unknown" is not assignable to return type "bool" +   Type "Basic | Unknown" is not assignable to type "bool" +     "Basic" is not assignable to "bool" (reportReturnType) + /torch/_inductor/sizevars.py:594:37 - error: Argument of type "dict[Symbol, int] | Unknown" cannot be assigned to parameter "replacements" of type "dict[Expr, Any]" in function "sympy_subs" +   Type "dict[Symbol, int] | Unknown" is not assignable to type "dict[Expr, Any]" +     "dict[Symbol, int]" is not assignable to "dict[Expr, Any]" +       Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/sizevars.py:596:33 - error: Argument of type "dict[Symbol, Integer] | Unknown" cannot be assigned to parameter "replacements" of type "dict[Expr, Any]" in function "sympy_subs" +   Type "dict[Symbol, Integer] | Unknown" is not assignable to type "dict[Expr, Any]" +     "dict[Symbol, Integer]" is not assignable to "dict[Expr, Any]" +       Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/sizevars.py:613:20 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /torch/_inductor/sizevars.py:613:52 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "get" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/sizevars.py:866:61 - error: Cannot assign to attribute "equality_graph" for class "SizeVarAllocator*" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[Expr, OrderedSet[Expr]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[Expr]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAttributeAccessIssue) + /torch/_inductor/sizevars.py:933:17 - error: Argument of type "Basic" cannot be assigned to parameter "expr" of type "Expr | int" in function "size_hint" +   Type "Basic" is not assignable to type "Expr | int" +     "Basic" is not assignable to "Expr" +     "Basic" is not assignable to "int" (reportArgumentType) + /torch/_inductor/sizevars.py:1029:16 - error: Operator "%" not supported for types "Basic" and "Basic" (reportOperatorIssue) + /torch/_inductor/sizevars.py:1201:9 - error: Method "index_expr" overrides class "OpsHandler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "expr", override parameter is named "index" (reportIncompatibleMethodOverride) + /torch/_inductor/sizevars.py:1204:9 - error: Method "check_bounds" overrides class "OpsHandler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "expr", override parameter is named "index" (reportIncompatibleMethodOverride) +/torch/_inductor/standalone_compile.py + /torch/_inductor/standalone_compile.py:186:24 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/standalone_compile.py:210:29 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/standalone_compile.py:211:24 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/standalone_compile.py:377:25 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/standalone_compile.py:394:63 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_inductor/standalone_compile.py:414:21 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/standalone_compile.py:416:15 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/standalone_compile.py:419:15 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/subgraph_lowering.py + /torch/_inductor/subgraph_lowering.py:134:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/subgraph_lowering.py:135:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/subgraph_lowering.py:141:26 - error: Argument of type "Proxy" cannot be assigned to parameter "inner" of type "OpsHandler[Any]" in function "__init__" +   "Proxy" is not assignable to "OpsHandler[Any]" (reportArgumentType) + /torch/_inductor/subgraph_lowering.py:149:9 - error: Method "placeholder" overrides class "OpsHandler" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "index", override parameter is named "idx" (reportIncompatibleMethodOverride) + /torch/_inductor/subgraph_lowering.py:198:40 - error: Cannot access attribute "inner_fn" for class "IRNode" +   Attribute "inner_fn" is unknown (reportAttributeAccessIssue) +/torch/_inductor/template_heuristics/contiguous_mm.py + /torch/_inductor/template_heuristics/contiguous_mm.py:34:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/contiguous_mm.py:40:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/template_heuristics/decompose_k.py + /torch/_inductor/template_heuristics/decompose_k.py:32:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/template_heuristics/triton.py + /torch/_inductor/template_heuristics/triton.py:46:24 - error: "Config" is unknown import symbol (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:635:21 - error: Argument of type "int" cannot be assigned to parameter of type "Integer" +   "int" is not assignable to "Integer" (reportArgumentType) + /torch/_inductor/template_heuristics/triton.py:635:44 - error: Argument of type "int" cannot be assigned to parameter of type "Integer" +   "int" is not assignable to "Integer" (reportArgumentType) + /torch/_inductor/template_heuristics/triton.py:635:67 - error: Argument of type "int" cannot be assigned to parameter of type "Integer" +   "int" is not assignable to "Integer" (reportArgumentType) + /torch/_inductor/template_heuristics/triton.py:775:31 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:780:31 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:911:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:912:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:913:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:914:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:915:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:916:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:917:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:918:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:919:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:923:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:924:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:925:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:926:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:927:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:928:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:929:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:930:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:931:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:932:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:933:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:934:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:938:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:939:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:940:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:941:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:942:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:943:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:944:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:945:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:946:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:950:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:951:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:952:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:953:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:954:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:955:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:956:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:957:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:958:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:981:31 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1002:31 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1024:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1084:50 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1189:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1190:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1191:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1192:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1193:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1194:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1195:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1196:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1197:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1358:31 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1366:31 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1386:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1429:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1430:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1431:20 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1432:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1433:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1434:20 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1435:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1436:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1437:20 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1479:31 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1487:31 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1507:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1648:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1679:42 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1684:28 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1684:43 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1746:9 - error: Method "_filter_configs" overrides class "MMTemplateConfigMixin" in an incompatible manner +   Positional parameter count mismatch; base method has 1, but override has 2 (reportIncompatibleMethodOverride) + /torch/_inductor/template_heuristics/triton.py:1755:7 - error: Base classes for class "TMATemplateConfigMixin" define method "_filter_configs" in incompatible way +   Positional parameter count mismatch; base method has 1, but override has 2 (reportIncompatibleMethodOverride) + /torch/_inductor/template_heuristics/triton.py:1954:9 - error: Method "_filter_configs" overrides class "MMTemplateConfigMixin" in an incompatible manner +   Positional parameter count mismatch; base method has 1, but override has 2 (reportIncompatibleMethodOverride) + /torch/_inductor/template_heuristics/triton.py:1965:39 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:1986:9 - error: Method "_filter_configs" overrides class "MMTemplateConfigMixin" in an incompatible manner +   Positional parameter count mismatch; base method has 1, but override has 2 (reportIncompatibleMethodOverride) + /torch/_inductor/template_heuristics/triton.py:2047:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2052:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2059:53 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2062:54 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2072:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2088:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2104:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2119:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2131:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2149:53 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2168:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2185:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2251:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2269:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2290:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2313:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2318:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2326:53 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2330:54 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2337:70 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2351:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2371:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/template_heuristics/triton.py:2391:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/test_operators.py + /torch/_inductor/test_operators.py:9:67 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/tiling_utils.py + /torch/_inductor/tiling_utils.py:131:38 - error: Cannot access attribute "replace" for class "int" +   Attribute "replace" is unknown (reportAttributeAccessIssue) + /torch/_inductor/tiling_utils.py:137:30 - error: Argument of type "int" cannot be assigned to parameter "expr" of type "Expr" in function "sympy_subs" +   "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:137:42 - error: Argument of type "dict[Basic, Expr]" cannot be assigned to parameter "replacements" of type "dict[Expr, Any]" in function "sympy_subs" +   "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:160:13 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "__setitem__" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/tiling_utils.py:162:13 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "__setitem__" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/tiling_utils.py:162:37 - error: Argument of type "Basic" cannot be assigned to parameter "v" of type "Expr | int" in function "get_hint" +   Type "Basic" is not assignable to type "Expr | int" +     "Basic" is not assignable to "Expr" +     "Basic" is not assignable to "int" (reportArgumentType) + /torch/_inductor/tiling_utils.py:164:36 - error: Argument of type "dict[Symbol, int]" cannot be assigned to parameter "replacements" of type "dict[Expr, Any]" in function "sympy_subs" +   "dict[Symbol, int]" is not assignable to "dict[Expr, Any]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:169:9 - error: Argument of type "Expr" cannot be assigned to parameter "key" of type "Symbol" in function "__setitem__" +   "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/tiling_utils.py:171:41 - error: Argument of type "dict[Symbol, int]" cannot be assigned to parameter "replacements" of type "dict[Expr, Any]" in function "sympy_subs" +   "dict[Symbol, int]" is not assignable to "dict[Expr, Any]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:178:9 - error: Argument of type "Expr" cannot be assigned to parameter "key" of type "Symbol" in function "__setitem__" +   "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/tiling_utils.py:198:13 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "__setitem__" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/tiling_utils.py:200:13 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "__setitem__" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/tiling_utils.py:200:37 - error: Argument of type "Basic" cannot be assigned to parameter "v" of type "Expr | int" in function "get_hint" +   Type "Basic" is not assignable to type "Expr | int" +     "Basic" is not assignable to "Expr" +     "Basic" is not assignable to "int" (reportArgumentType) + /torch/_inductor/tiling_utils.py:202:36 - error: Argument of type "dict[Symbol, int]" cannot be assigned to parameter "replacements" of type "dict[Expr, Any]" in function "sympy_subs" +   "dict[Symbol, int]" is not assignable to "dict[Expr, Any]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:204:9 - error: Argument of type "Expr" cannot be assigned to parameter "key" of type "Symbol" in function "__setitem__" +   "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/tiling_utils.py:206:41 - error: Argument of type "dict[Symbol, int]" cannot be assigned to parameter "replacements" of type "dict[Expr, Any]" in function "sympy_subs" +   "dict[Symbol, int]" is not assignable to "dict[Expr, Any]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:211:13 - error: Argument of type "Expr" cannot be assigned to parameter "key" of type "Symbol" in function "__setitem__" +   "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/tiling_utils.py:214:35 - error: Argument of type "dict[Symbol, int]" cannot be assigned to parameter "replacements" of type "dict[Expr, Any]" in function "sympy_subs" +   "dict[Symbol, int]" is not assignable to "dict[Expr, Any]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:216:9 - error: Argument of type "Expr" cannot be assigned to parameter "key" of type "Symbol" in function "__setitem__" +   "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/tiling_utils.py:300:44 - error: Cannot assign to attribute "pointwise_numel" for class "NodeSplitGetter*" +   "tuple[Expr, ...]" is not assignable to "Expr" (reportAttributeAccessIssue) + /torch/_inductor/tiling_utils.py:301:38 - error: Cannot assign to attribute "red_numel" for class "NodeSplitGetter*" +   "tuple[Expr, ...]" is not assignable to "Expr" (reportAttributeAccessIssue) + /torch/_inductor/tiling_utils.py:303:63 - error: Cannot assign to attribute "pw_split_options" for class "NodeSplitGetter*" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[int, OrderedSet[Split]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[Split]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAttributeAccessIssue) + /torch/_inductor/tiling_utils.py:310:50 - error: "scheduler" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/tiling_utils.py:316:28 - error: No overloads for "get_pw_red_splits" match the provided arguments (reportCallIssue) + /torch/_inductor/tiling_utils.py:317:17 - error: Argument of type "BaseSchedulerNode" cannot be assigned to parameter "n" of type "SchedulerNode" in function "get_pw_red_splits" +   "BaseSchedulerNode" is not assignable to "SchedulerNode" (reportArgumentType) + /torch/_inductor/tiling_utils.py:320:43 - error: Cannot access attribute "_body" for class "BaseSchedulerNode" +   Attribute "_body" is unknown (reportAttributeAccessIssue) + /torch/_inductor/tiling_utils.py:327:33 - error: "codegen" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/tiling_utils.py:483:48 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[Expr, OrderedSet[str]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[Expr, OrderedSet[str]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[str]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) + /torch/_inductor/tiling_utils.py:484:49 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[Expr, OrderedSet[str]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[Expr, OrderedSet[str]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[str]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) + /torch/_inductor/tiling_utils.py:500:35 - error: Type "tuple[Expr, ...]" is not assignable to declared type "Expr" +   "tuple[Expr, ...]" is not assignable to "Expr" (reportAssignmentType) + /torch/_inductor/tiling_utils.py:501:29 - error: Type "tuple[Expr, ...]" is not assignable to declared type "Expr" +   "tuple[Expr, ...]" is not assignable to "Expr" (reportAssignmentType) + /torch/_inductor/tiling_utils.py:518:46 - error: "scheduler" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/tiling_utils.py:521:18 - error: Cannot access attribute "_body" for class "BaseSchedulerNode" +   Attribute "_body" is unknown (reportAttributeAccessIssue) + /torch/_inductor/tiling_utils.py:528:54 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[Expr, OrderedSet[str]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[Expr, OrderedSet[str]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[str]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) + /torch/_inductor/tiling_utils.py:529:55 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[Expr, OrderedSet[str]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[Expr, OrderedSet[str]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[str]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) + /torch/_inductor/tiling_utils.py:545:13 - error: Argument of type "BaseSchedulerNode" cannot be assigned to parameter "n" of type "SchedulerNode" in function "get_pw_red_splits" +   "BaseSchedulerNode" is not assignable to "SchedulerNode" (reportArgumentType) + /torch/_inductor/tiling_utils.py:551:29 - error: "codegen" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/tiling_utils.py:556:29 - error: "codegen" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/tiling_utils.py:575:47 - error: Argument of type "dict[Symbol, Expr]" cannot be assigned to parameter "replacements" of type "dict[Expr, Any]" in function "sympy_subs" +   "dict[Symbol, Expr]" is not assignable to "dict[Expr, Any]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:578:48 - error: Argument of type "dict[Symbol, Expr]" cannot be assigned to parameter "replacements" of type "dict[Expr, Any]" in function "sympy_subs" +   "dict[Symbol, Expr]" is not assignable to "dict[Expr, Any]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:600:9 - error: Argument of type "VarRanges" cannot be assigned to parameter "var_ranges" of type "dict[Symbol, int]" in function "__init__" +   "dict[Expr, Expr]" is not assignable to "dict[Symbol, int]" +     Type parameter "_KT@dict" is invariant, but "Expr" is not the same as "Symbol" +     Type parameter "_VT@dict" is invariant, but "Expr" is not the same as "int" (reportArgumentType) + /torch/_inductor/tiling_utils.py:615:33 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "get" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/tiling_utils.py:621:12 - error: Type "Expr | int" is not assignable to return type "int" +   Type "Expr | int" is not assignable to type "int" +     "Expr" is not assignable to "int" (reportReturnType) + /torch/_inductor/tiling_utils.py:630:12 - error: Type "Expr | int" is not assignable to return type "int | None" +   Type "Expr | int" is not assignable to type "int | None" +     Type "Expr" is not assignable to type "int | None" +       "Expr" is not assignable to "int" +       "Expr" is not assignable to "None" (reportReturnType) + /torch/_inductor/tiling_utils.py:712:63 - error: Argument of type "dict[Symbol, int]" cannot be assigned to parameter "var_ranges" of type "dict[Expr, int]" in function "find_coalesced_var" +   "dict[Symbol, int]" is not assignable to "dict[Expr, int]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:717:67 - error: Argument of type "dict[Symbol, int]" cannot be assigned to parameter "var_ranges" of type "dict[Expr, int]" in function "find_broadcast_var" +   "dict[Symbol, int]" is not assignable to "dict[Expr, int]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:732:13 - error: Argument of type "Expr" cannot be assigned to parameter "key" of type "Symbol" in function "__getitem__" +   "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/tiling_utils.py:732:13 - error: Argument of type "Expr" cannot be assigned to parameter "key" of type "Symbol" in function "__setitem__" +   "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/tiling_utils.py:738:30 - error: Argument of type "Counter[Symbol]" cannot be assigned to parameter "coalesced_by_var" of type "dict[Expr, int]" in function "__init__" +   "Counter[Symbol]" is not assignable to "dict[Expr, int]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:756:60 - error: Argument of type "dict[Basic, int]" cannot be assigned to parameter "replacements" of type "dict[Expr, Any]" in function "sympy_subs" +   "dict[Basic, int]" is not assignable to "dict[Expr, Any]" +     Type parameter "_KT@dict" is invariant, but "Basic" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:762:38 - error: Cannot access attribute "is_integer" for class "Expr" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/_inductor/tiling_utils.py:767:57 - error: Argument of type "int" cannot be assigned to parameter "left" of type "Expr" in function "statically_known_lt" +   "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:767:72 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "__getitem__" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/tiling_utils.py:775:54 - error: Argument of type "Literal[8]" cannot be assigned to parameter "left" of type "Expr" in function "statically_known_lt" +   "Literal[8]" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:776:46 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "__getitem__" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/_inductor/tiling_utils.py:780:13 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Expr" in function "__getitem__" +   "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:784:30 - error: Argument of type "Counter[Symbol]" cannot be assigned to parameter "coalesced_by_var" of type "dict[Expr, int]" in function "__init__" +   "Counter[Symbol]" is not assignable to "dict[Expr, int]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:800:30 - error: Argument of type "Counter[Symbol]" cannot be assigned to parameter "coalesced_by_var" of type "dict[Expr, int]" in function "__init__" +   "Counter[Symbol]" is not assignable to "dict[Expr, int]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:810:26 - error: Argument of type "Counter[Symbol]" cannot be assigned to parameter "coalesced_by_var" of type "dict[Expr, int]" in function "__init__" +   "Counter[Symbol]" is not assignable to "dict[Expr, int]" +     Type parameter "_KT@dict" is invariant, but "Symbol" is not the same as "Expr" (reportArgumentType) + /torch/_inductor/tiling_utils.py:813:35 - error: Argument of type "Expr" cannot be assigned to parameter "var" of type "Symbol" in function "__init__" +   "Expr" is not assignable to "Symbol" (reportArgumentType) +/torch/_inductor/utils.py + /torch/_inductor/utils.py:164:37 - error: Argument of type "Tuple[Expr, ...] | tuple[Basic, ...]" cannot be assigned to parameter "iterable" of type "Iterable[_T1@__new__]" in function "__new__" +   Type "Tuple[Expr, ...] | tuple[Basic, ...]" is not assignable to type "Iterable[Expr]" +     "tuple[Basic, ...]" is not assignable to "Iterable[Expr]" +       Type parameter "_T_co@Iterable" is covariant, but "Basic" is not a subtype of "Expr" +         "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/utils.py:164:37 - error: Argument of type "Tuple[Expr, ...] | tuple[Basic, ...]" cannot be assigned to parameter "iterable" of type "Iterable[_T1@__new__]" in function "__new__" +   Type "Tuple[Expr, ...] | tuple[Basic, ...]" is not assignable to type "Iterable[_T1@__new__]" +     "tuple[Basic, ...]" is not assignable to "Iterable[_T1@__new__]" +       Type parameter "_T_co@Iterable" is covariant, but "Basic" is not a subtype of "_T1@__new__" +         Type "Basic" is not assignable to type "Expr" +           "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/utils.py:175:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/_inductor/utils.py:177:20 - error: Type "int" is not assignable to return type "Expr | None" +   Type "int" is not assignable to type "Expr | None" +     "int" is not assignable to "Expr" +     "int" is not assignable to "None" (reportReturnType) + /torch/_inductor/utils.py:211:19 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:211:54 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:247:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:251:17 - error: "mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:319:19 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:319:54 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:395:14 - error: Import "torchvision.ops" could not be resolved (reportMissingImports) + /torch/_inductor/utils.py:397:18 - error: "_dispatch_has_kernel_for_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:408:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:408:72 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:410:22 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:412:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:413:15 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/utils.py:413:15 - error: Cannot access attribute "type" for class "str" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/_inductor/utils.py:413:54 - error: "index" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/utils.py:414:60 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/utils.py:415:22 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:415:36 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_inductor/utils.py:446:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:550:18 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:611:21 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:614:18 - error: "median" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:707:26 - error: Argument of type "(**P@cache_property_on_self) -> RV@cache_property_on_self" cannot be assigned to parameter "fn" of type "(Any, **P@cache_on_self) -> RV@cache_on_self" in function "cache_on_self" +   Type "(**P@cache_property_on_self) -> RV@cache_property_on_self" is not assignable to type "(Any, **P@cache_on_self) -> RV@cache_property_on_self" +     Function accepts too many positional parameters; expected 0 but received 1 (reportArgumentType) + /torch/_inductor/utils.py:773:30 - error: Cannot access attribute "origins" for class "Sequence[BaseSchedulerNode]" +   Attribute "origins" is unknown (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1053:73 - error: Argument of type "Basic" cannot be assigned to parameter "expr" of type "Expr" in function "sympy_str_mul" +   "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/utils.py:1076:69 - error: Argument of type "tuple[Basic, ...]" cannot be assigned to parameter "iterable" of type "Iterable[_T1@__new__]" in function "__new__" +   "tuple[Basic, ...]" is not assignable to "Iterable[Expr]" +     Type parameter "_T_co@Iterable" is covariant, but "Basic" is not a subtype of "Expr" +       "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/utils.py:1076:69 - error: Argument of type "tuple[Basic, ...]" cannot be assigned to parameter "iterable" of type "Iterable[_T1@__new__]" in function "__new__" +   "tuple[Basic, ...]" is not assignable to "Iterable[_T1@__new__]" +     Type parameter "_T_co@Iterable" is covariant, but "Basic" is not a subtype of "_T1@__new__" +       Type "Basic" is not assignable to type "Expr" +         "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/utils.py:1146:20 - error: Type "Expr" is not assignable to return type "Symbol" +   "Expr" is not assignable to "Symbol" (reportReturnType) + /torch/_inductor/utils.py:1209:33 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1231:67 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1233:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1241:35 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1263:45 - error: "runtime" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1268:45 - error: "runtime" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1390:20 - error: Type "Basic" is not assignable to return type "bool" +   "Basic" is not assignable to "bool" (reportReturnType) + /torch/_inductor/utils.py:1390:44 - error: Argument of type "SymInt | Expr" cannot be assigned to parameter "orig_expr" of type "Basic" in function "evaluate_expr" +   Type "SymInt | Expr" is not assignable to type "Basic" +     "SymInt" is not assignable to "Basic" (reportArgumentType) + /torch/_inductor/utils.py:1411:13 - error: No overloads for "sorted" match the provided arguments (reportCallIssue) + /torch/_inductor/utils.py:1411:31 - error: Argument of type "(tuple[int, Expr]) -> SupportsAllComparisons" cannot be assigned to parameter "key" of type "(_T@sorted) -> SupportsRichComparison" in function "sorted" +   Type "(tuple[int, Expr]) -> SupportsAllComparisons" is not assignable to type "(tuple[int, Any | int | Expr]) -> SupportsRichComparison" +     Parameter 1: type "tuple[int, Any | int | Expr]" is incompatible with type "tuple[int, Expr]" +       "tuple[int, Any | int | Expr]" is not assignable to "tuple[int, Expr]" +         Tuple entry 2 is incorrect type +           Type "Any | int | Expr" is not assignable to type "Expr" (reportArgumentType) + /torch/_inductor/utils.py:1417:33 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1420:23 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1422:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1671:50 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1672:42 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1675:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1681:22 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1688:28 - error: Cannot access attribute "type" for class "int" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1721:25 - error: "_get_sm_carveout_experimental" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1727:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1746:55 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1782:28 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1782:43 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1782:59 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1784:32 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1784:47 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1784:63 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1784:78 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1786:37 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1786:58 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1824:62 - error: Argument of type "int | Expr" cannot be assigned to parameter "numerator" of type "Expr" in function "statically_known_multiple_of" +   Type "int | Expr" is not assignable to type "Expr" +     "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/utils.py:1853:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1864:32 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1864:47 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1864:63 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1865:49 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1877:58 - error: Argument of type "int | Expr" cannot be assigned to parameter "left" of type "Expr" in function "statically_known_geq" +   Type "int | Expr" is not assignable to type "Expr" +     "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/utils.py:1903:27 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1904:13 - error: Argument of type "int | Expr" cannot be assigned to parameter "left" of type "Expr" in function "statically_known_geq" +   Type "int | Expr" is not assignable to type "Expr" +     "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/utils.py:1952:26 - error: "util" is not a known attribute of module "importlib" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:1996:28 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2031:22 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2036:28 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2036:43 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2036:59 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2075:27 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2100:28 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2188:27 - error: No overloads for "dirname" match the provided arguments (reportCallIssue) + /torch/_inductor/utils.py:2188:43 - error: Argument of type "str | None" cannot be assigned to parameter "p" of type "AnyOrLiteralStr@dirname" in function "dirname" +   Type "str | None" is not assignable to constrained type variable "AnyOrLiteralStr" (reportArgumentType) + /torch/_inductor/utils.py:2209:26 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2227:35 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2227:50 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2227:66 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2285:39 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2316:44 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2316:57 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2317:28 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2317:43 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2317:59 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2317:71 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2543:21 - error: "mock" is not a known attribute of module "unittest" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2601:30 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2607:52 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2612:22 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2614:22 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2629:25 - error: "get_num_threads" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2638:57 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2642:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2651:10 - error: Import "triton.testing" could not be resolved (reportMissingImports) + /torch/_inductor/utils.py:2658:28 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2658:43 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2658:59 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2665:28 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2665:43 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2669:52 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2671:46 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2673:28 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2673:43 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2679:52 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2682:46 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:2687:10 - error: Import "triton.testing" could not be resolved (reportMissingImports) + /torch/_inductor/utils.py:2693:10 - error: Import "triton.runtime" could not be resolved (reportMissingImports) + /torch/_inductor/utils.py:2954:20 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3037:63 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3038:23 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3041:32 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3041:45 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3047:23 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3048:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3078:66 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3078:78 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3142:29 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3159:19 - error: "mock" is not a known attribute of module "unittest" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3224:19 - error: "_foreach_copy_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3239:20 - error: "as_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3240:18 - error: "as_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3294:21 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3294:33 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3334:21 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3344:33 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3365:14 - error: "_utils_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3369:14 - error: Import "torch._inductor.fb.remote_cache" could not be resolved (reportMissingImports) + /torch/_inductor/utils.py:3373:42 - error: "_utils_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3400:30 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3406:47 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3410:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3459:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3468:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3497:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3497:54 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3500:25 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3500:40 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3504:22 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3571:29 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3589:18 - error: "util" is not a known attribute of module "importlib" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3592:12 - error: Import "triton.backends.compiler" could not be resolved (reportMissingImports) + /torch/_inductor/utils.py:3593:12 - error: Import "triton.compiler.compiler" could not be resolved (reportMissingImports) + /torch/_inductor/utils.py:3639:14 - error: Import "libfb.py.parutil" could not be resolved (reportMissingImports) + /torch/_inductor/utils.py:3660:25 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3662:27 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3665:41 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3669:9 - error: Argument of type "int" cannot be assigned to parameter "left" of type "Expr" in function "statically_known_lt" +   "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/utils.py:3670:49 - error: Argument of type "int" cannot be assigned to parameter "left" of type "Expr" in function "statically_known_geq" +   "int" is not assignable to "Expr" (reportArgumentType) + /torch/_inductor/utils.py:3671:22 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3673:22 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:3807:86 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:4021:46 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:4022:32 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:4026:25 - error: "ir" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_inductor/utils.py:4033:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_inductor/virtualized.py + /torch/_inductor/virtualized.py:342:9 - error: Method "indirect_indexing" overrides class "OpsHandler" in an incompatible manner +   Base method is declared as an instance method but override is not +   Positional parameter count mismatch; base method has 5, but override has 4 +   Parameter 1 name mismatch: base parameter is named "self", override parameter is named "index" +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "size" +   Parameter 3 name mismatch: base parameter is named "size", override parameter is named "check" +   Parameter 4 name mismatch: base parameter is named "check", override parameter is named "wrap_neg" +   Parameter 5 mismatch: base parameter "wrap_neg" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) +/torch/_inductor/wrapper_benchmark.py + /torch/_inductor/wrapper_benchmark.py:124:24 - error: Operator "/" not supported for "None" (reportOptionalOperand) + /torch/_inductor/wrapper_benchmark.py:126:21 - error: Argument of type "Unknown | float | None" cannot be assigned to parameter "num_gb" of type "float" in function "create_bandwidth_info_str" +   Type "Unknown | float | None" is not assignable to type "float" +     "None" is not assignable to "float" (reportArgumentType) + /torch/_inductor/wrapper_benchmark.py:179:32 - error: "profiler_util" is not a known attribute of module "torch.autograd" (reportAttributeAccessIssue) + /torch/_inductor/wrapper_benchmark.py:189:28 - error: "profiler_util" is not a known attribute of module "torch.autograd" (reportAttributeAccessIssue) + /torch/_inductor/wrapper_benchmark.py:199:28 - error: "profiler_util" is not a known attribute of module "torch.autograd" (reportAttributeAccessIssue) + /torch/_inductor/wrapper_benchmark.py:233:14 - warning: Import "tabulate" could not be resolved from source (reportMissingModuleSource) +/torch/_jit_internal.py + /torch/_jit_internal.py:47:22 - error: "_Await" is unknown import symbol (reportAttributeAccessIssue) + /torch/_jit_internal.py:47:40 - error: "Future" is unknown import symbol (reportAttributeAccessIssue) + /torch/_jit_internal.py:55:51 - error: Type "type[UnionType]" is not assignable to declared type "type | tuple[type, ...]" +   Type "type[UnionType]" is not assignable to type "type | tuple[type, ...]" +     Type "type[UnionType]" is not assignable to type "tuple[type, ...]" (reportAssignmentType) + /torch/_jit_internal.py:132:33 - error: "ScriptFunction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_jit_internal.py:150:20 - error: Cannot access attribute "qualified_name" for class "Enum" +   Attribute "qualified_name" is unknown (reportAttributeAccessIssue) + /torch/_jit_internal.py:762:16 - error: Type "property" is not assignable to return type "(**_P@unused) -> _R@unused" +   Type "property" is not assignable to type "(**_P@unused) -> _R@unused" (reportReturnType) + /torch/_jit_internal.py:1209:10 - warning: Import "torch._C._distributed_rpc" could not be resolved from source (reportMissingModuleSource) + /torch/_jit_internal.py:1239:28 - error: "_jit_tree_views" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_jit_internal.py:1248:17 - error: Cannot access attribute "_field_defaults" for class "type[tuple[Unknown, ...]]" +   Attribute "_field_defaults" is unknown (reportAttributeAccessIssue) + /torch/_jit_internal.py:1249:30 - error: Cannot access attribute "_fields" for class "type[tuple[Unknown, ...]]" +   Attribute "_fields" is unknown (reportAttributeAccessIssue) + /torch/_jit_internal.py:1250:29 - error: Cannot access attribute "_field_defaults" for class "type[tuple[Unknown, ...]]" +   Attribute "_field_defaults" is unknown (reportAttributeAccessIssue) + /torch/_jit_internal.py:1259:13 - error: Argument of type "type | None" cannot be assigned to parameter "obj" of type "((...) -> object) | type[object] | ModuleType" in function "get_annotations" +   Type "type | None" is not assignable to type "((...) -> object) | type[object] | ModuleType" +     Type "None" is not assignable to type "((...) -> object) | type[object] | ModuleType" +       Type "None" is not assignable to type "(...) -> object" +       Type "None" is not assignable to type "type[object]" +       "None" is not assignable to "ModuleType" (reportArgumentType) + /torch/_jit_internal.py:1263:22 - error: Cannot access attribute "_fields" for class "type[tuple[Unknown, ...]]" +   Attribute "_fields" is unknown (reportAttributeAccessIssue) + /torch/_jit_internal.py:1308:51 - error: "highlight" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_jit_internal.py:1311:34 - error: "annotations" is not a known attribute of module "torch.jit" (reportAttributeAccessIssue) + /torch/_jit_internal.py:1314:41 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_jit_internal.py:1315:36 - error: Cannot access attribute "_fields" for class "type[tuple[Unknown, ...]]" +   Attribute "_fields" is unknown (reportAttributeAccessIssue) + /torch/_jit_internal.py:1341:31 - error: "_jit_get_emit_hooks" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_jit_internal.py:1342:18 - error: "_jit_set_emit_hooks" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_jit_internal.py:1345:18 - error: "_jit_set_emit_hooks" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_jit_internal.py:1467:44 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) +/torch/_lazy/__init__.py + /torch/_lazy/__init__.py:3:8 - warning: Import "torch._C._lazy" could not be resolved from source (reportMissingModuleSource) +/torch/_lazy/computation.py + /torch/_lazy/computation.py:2:8 - warning: Import "torch._C._lazy" could not be resolved from source (reportMissingModuleSource) + /torch/_lazy/computation.py:3:8 - warning: Import "torch._C._lazy_ts_backend" could not be resolved from source (reportMissingModuleSource) +/torch/_lazy/config.py + /torch/_lazy/config.py:1:8 - warning: Import "torch._C._lazy" could not be resolved from source (reportMissingModuleSource) +/torch/_lazy/debug.py + /torch/_lazy/debug.py:2:8 - warning: Import "torch._C._lazy" could not be resolved from source (reportMissingModuleSource) +/torch/_lazy/device_context.py + /torch/_lazy/device_context.py:4:8 - warning: Import "torch._C._lazy" could not be resolved from source (reportMissingModuleSource) +/torch/_lazy/extract_compiled_graph.py + /torch/_lazy/extract_compiled_graph.py:135:38 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/extract_compiled_graph.py:163:55 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_lazy/ir_cache.py + /torch/_lazy/ir_cache.py:2:8 - warning: Import "torch._C._lazy" could not be resolved from source (reportMissingModuleSource) +/torch/_lazy/metrics.py + /torch/_lazy/metrics.py:2:8 - warning: Import "torch._C._lazy" could not be resolved from source (reportMissingModuleSource) +/torch/_lazy/tensor_factory_functions.py + /torch/_lazy/tensor_factory_functions.py:15:11 - error: "_cudnn_init_dropout_state" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:16:11 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:17:11 - error: "bartlett_window" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:18:11 - error: "blackman_window" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:19:11 - error: "_empty_affine_quantized" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:20:11 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:21:11 - error: "eye" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:22:11 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:23:11 - error: "from_file" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:24:11 - error: "hann_window" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:25:11 - error: "hamming_window" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:26:11 - error: "kaiser_window" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:27:11 - error: "linspace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:28:11 - error: "logspace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:29:11 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:30:11 - error: "scalar_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:31:11 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:32:11 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:33:11 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:34:11 - error: "randperm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:35:11 - error: "range" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:36:11 - error: "_efficientzerotensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:37:11 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:38:11 - error: "tril_indices" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:39:11 - error: "triu_indices" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lazy/tensor_factory_functions.py:48:11 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_lazy/ts_backend.py + /torch/_lazy/ts_backend.py:2:8 - warning: Import "torch._C._lazy_ts_backend" could not be resolved from source (reportMissingModuleSource) +/torch/_library/autograd.py + /torch/_library/autograd.py:32:20 - error: "DispatchKeySet" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_library/custom_ops.py + /torch/_library/custom_ops.py:12:25 - error: "_dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/_library/custom_ops.py:32:32 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/custom_ops.py:45:32 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/custom_ops.py:58:32 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/custom_ops.py:194:36 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/custom_ops.py:606:57 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/custom_ops.py:609:25 - error: "parse_schema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/custom_ops.py:621:22 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/custom_ops.py:649:40 - error: "_dispatch_get_computed_kernel_for_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/custom_ops.py:866:43 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/custom_ops.py:871:40 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) +/torch/_library/effects.py + /torch/_library/effects.py:25:44 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_library/effects.py:51:21 - error: "_get_operation_overload" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/effects.py:54:31 - error: "_get_schema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/effects.py:56:47 - error: "ClassType" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_library/fake_class_registry.py + /torch/_library/fake_class_registry.py:16:75 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/fake_class_registry.py:65:32 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/fake_class_registry.py:79:40 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/fake_class_registry.py:141:32 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/fake_class_registry.py:155:36 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/fake_class_registry.py:214:33 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/fake_class_registry.py:238:43 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/fake_class_registry.py:239:44 - error: "ScriptMethod" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/fake_class_registry.py:326:18 - error: "_get_custom_class_python_wrapper" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/fake_class_registry.py:368:20 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/fake_class_registry.py:382:49 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/fake_class_registry.py:413:26 - error: "fake_impl" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_library/fake_class_registry.py:414:25 - error: "fake_impl" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) +/torch/_library/fake_impl.py + /torch/_library/fake_impl.py:50:25 - error: "_dispatch_has_kernel_for_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/fake_impl.py:59:25 - error: "_dispatch_has_kernel_for_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/fake_impl.py:203:37 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) +/torch/_library/fake_profile.py + /torch/_library/fake_profile.py:27:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/fake_profile.py:28:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/fake_profile.py:29:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/fake_profile.py:65:26 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/fake_profile.py:202:12 - warning: Import "yaml" could not be resolved from source (reportMissingModuleSource) + /torch/_library/fake_profile.py:266:12 - warning: Import "yaml" could not be resolved from source (reportMissingModuleSource) + /torch/_library/fake_profile.py:277:26 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_library/infer_schema.py + /torch/_library/infer_schema.py:9:19 - error: "device" is unknown import symbol (reportAttributeAccessIssue) + /torch/_library/infer_schema.py:9:27 - error: "dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/_library/infer_schema.py:132:46 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/infer_schema.py:185:56 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/infer_schema.py:187:50 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/infer_schema.py:225:10 - error: Type "list[tuple[type | _SpecialForm, str] | tuple[UnionType, str]]" is not assignable to declared type "list[tuple[type | _SpecialForm | GenericAlias, str]]" +   Type "UnionType" is not assignable to type "type | _SpecialForm | GenericAlias" +     "UnionType" is not assignable to "type" +     "UnionType" is not assignable to "_SpecialForm" +     "UnionType" is not assignable to "GenericAlias" (reportAssignmentType) + /torch/_library/infer_schema.py:232:38 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/_library/infer_schema.py:244:46 - error: Argument of type "type | _SpecialForm | type[None]" cannot be assigned to parameter "typ" of type "type | _SpecialForm" in function "derived_seq_types" +   Type "UnionType" is not assignable to type "type | _SpecialForm" +     "UnionType" is not assignable to "type" +     "UnionType" is not assignable to "_SpecialForm" (reportArgumentType) + /torch/_library/infer_schema.py:248:13 - error: Argument of type "Generator[tuple[UnionType, str], None, None]" cannot be assigned to parameter "iterable" of type "Iterable[tuple[type | _SpecialForm | GenericAlias, str]]" in function "extend" +   "Generator[tuple[UnionType, str], None, None]" is not assignable to "Iterable[tuple[type | _SpecialForm | GenericAlias, str]]" +     Type parameter "_T_co@Iterable" is covariant, but "tuple[UnionType, str]" is not a subtype of "tuple[type | _SpecialForm | GenericAlias, str]" +       "tuple[UnionType, str]" is not assignable to "tuple[type | _SpecialForm | GenericAlias, str]" +         Tuple entry 1 is incorrect type +           Type "UnionType" is not assignable to type "type | _SpecialForm | GenericAlias" (reportArgumentType) +/torch/_library/opaque_object.py + /torch/_library/opaque_object.py:8:2 - error: Object of type "HasStaticMethodFromReal" is not callable +   Attribute "__call__" is unknown (reportCallIssue) + /torch/_library/opaque_object.py:8:2 - error: Argument of type "type[FakeOpaqueObject]" cannot be assigned to parameter "fake_class" of type "HasStaticMethodFromReal" in function "inner" +   "from_real" is not present (reportArgumentType) + /torch/_library/opaque_object.py:23:36 - error: The second argument to NewType must be a known class, not Any or Unknown (reportGeneralTypeIssues) + /torch/_library/opaque_object.py:23:45 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/opaque_object.py:26:50 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/opaque_object.py:84:21 - error: "_make_opaque_object" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/opaque_object.py:87:41 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/opaque_object.py:108:44 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/opaque_object.py:113:51 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/opaque_object.py:119:21 - error: "_get_opaque_object_payload" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/opaque_object.py:122:41 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/opaque_object.py:141:44 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/opaque_object.py:146:51 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/opaque_object.py:152:14 - error: "_set_opaque_object_payload" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/opaque_object.py:170:8 - error: Operator "in" not supported for types "Literal['.']" and "str | None" +   Operator "in" not supported for types "Literal['.']" and "None" (reportOperatorIssue) + /torch/_library/opaque_object.py:175:5 - error: Argument of type "str | None" cannot be assigned to parameter "value" of type "str" in function "__setitem__" +   Type "str | None" is not assignable to type "str" +     "None" is not assignable to "str" (reportArgumentType) + /torch/_library/opaque_object.py:177:14 - error: "_register_opaque_type" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/opaque_object.py:187:21 - error: "_is_opaque_type_registered" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_library/triton.py + /torch/_library/triton.py:282:37 - error: "prev" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_library/triton.py:357:10 - error: Import "triton.runtime.autotuner" could not be resolved (reportMissingImports) + /torch/_library/triton.py:358:10 - error: Import "triton.runtime.jit" could not be resolved (reportMissingImports) +/torch/_library/utils.py + /torch/_library/utils.py:126:36 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:141:19 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:141:31 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:142:22 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:142:34 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:142:50 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:143:22 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:143:38 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:143:50 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:144:22 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:144:38 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:144:50 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:144:66 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:150:22 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:150:52 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:150:68 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:210:16 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:211:24 - error: "Argument" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:316:36 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:320:39 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:330:31 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:341:37 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:347:27 - error: "DeviceObjType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:488:17 - error: "_dispatch_has_kernel_for_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:492:28 - error: "custom_ops" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_library/utils.py:495:21 - error: "_dispatch_has_kernel_for_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:499:32 - error: "simple_registry" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_library/utils.py:502:21 - error: "_dispatch_has_kernel_for_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:511:36 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:524:8 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:525:8 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:526:8 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:527:8 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:535:9 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_library/utils.py:542:18 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_linalg_utils.py + /torch/_linalg_utils.py:42:18 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_linalg_utils.py:67:19 - error: "flip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_linalg_utils.py:68:19 - error: "flip" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_lobpcg.py + /torch/_lobpcg.py:304:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 3 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/_lobpcg.py:532:18 - error: "_jit_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lobpcg.py:610:23 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lobpcg.py:610:47 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lobpcg.py:656:23 - error: "prod" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lobpcg.py:656:34 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lobpcg.py:660:20 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lobpcg.py:661:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lobpcg.py:667:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lobpcg.py:671:54 - error: Argument of type "dict[str, float | None]" cannot be assigned to parameter "fparams" of type "dict[str, float]" in function "__init__" +   "dict[str, float | None]" is not assignable to "dict[str, float]" +     Type parameter "_VT@dict" is invariant, but "float | None" is not the same as "float" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/_lobpcg.py:681:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lobpcg.py:684:43 - error: Argument of type "dict[str, float | None]" cannot be assigned to parameter "fparams" of type "dict[str, float]" in function "__init__" +   "dict[str, float | None]" is not assignable to "dict[str, float]" +     Type parameter "_VT@dict" is invariant, but "float | None" is not the same as "float" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/_lobpcg.py:723:24 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lobpcg.py:724:24 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lobpcg.py:725:24 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lobpcg.py:1014:18 - error: "numel" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lobpcg.py:1026:20 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lobpcg.py:1030:22 - error: "numel" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lobpcg.py:1034:24 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lobpcg.py:1043:26 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lobpcg.py:1049:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lobpcg.py:1051:22 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_logging/_internal.py + /torch/_logging/_internal.py:1149:24 - error: Import "torch.version" could not be resolved (reportMissingImports) +/torch/_lowrank.py + /torch/_lowrank.py:65:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lowrank.py:278:25 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lowrank.py:285:21 - error: "sparse_coo_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_lowrank.py:289:27 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_meta_registrations.py + /torch/_meta_registrations.py:42:33 - error: "ScalingType" is unknown import symbol (reportAttributeAccessIssue) + /torch/_meta_registrations.py:42:46 - error: "SwizzleType" is unknown import symbol (reportAttributeAccessIssue) + /torch/_meta_registrations.py:474:48 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:484:55 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:552:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:568:37 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:568:65 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:584:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:593:36 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:593:64 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:613:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:628:36 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:628:64 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:645:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:652:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:653:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:654:15 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:655:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:656:15 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:661:55 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:661:67 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:675:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:676:19 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:677:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:678:19 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:696:18 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:696:55 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:943:29 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:943:42 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:943:56 - error: "cfloat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:943:70 - error: "cdouble" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1042:45 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1072:22 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1099:60 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1148:18 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1165:51 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1179:16 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1185:58 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1186:56 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1226:18 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1279:16 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1289:45 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1293:43 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1318:31 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1341:20 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1369:35 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1454:16 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1460:50 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1581:21 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1588:17 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1594:51 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1595:49 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1660:26 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1662:26 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1668:36 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1674:28 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1674:60 - error: "sparse_bsr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1675:26 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:1781:18 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:2183:18 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:2267:45 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:2280:36 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:2281:39 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:2281:54 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:2504:13 - error: "_has_mkldnn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:2538:17 - error: "has_mkl" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:3357:59 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:3856:32 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:3860:68 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:3865:45 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:3871:38 - error: Argument of type "Any | None" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "Any | None" is not assignable to type "ConvertibleToInt" +     Type "None" is not assignable to type "ConvertibleToInt" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "None" is incompatible with protocol "SupportsInt" +         "__int__" is not present +       "None" is incompatible with protocol "SupportsIndex" + ... (reportArgumentType) + /torch/_meta_registrations.py:3871:38 - error: Argument of type "Any | None" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "Any | None" is not assignable to type "ConvertibleToInt" +     Type "None" is not assignable to type "ConvertibleToInt" +       "None" is not assignable to "str" +       "None" is incompatible with protocol "Buffer" +         "__buffer__" is not present +       "None" is incompatible with protocol "SupportsInt" +         "__int__" is not present +       "None" is incompatible with protocol "SupportsIndex" (reportArgumentType) + /torch/_meta_registrations.py:3871:71 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:3873:62 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5217:31 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5217:64 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5658:23 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5659:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5661:21 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5672:28 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5678:28 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5685:22 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5687:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5687:44 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5688:24 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5688:46 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5690:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5690:45 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5691:24 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5691:46 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5712:21 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5719:21 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5747:24 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5749:21 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5754:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5754:40 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5755:20 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5755:42 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5790:24 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5792:21 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5797:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5797:40 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5798:20 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5798:42 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5835:20 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5836:20 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5837:20 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5859:23 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5860:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5866:21 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5894:20 - error: "empty_permuted" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5900:20 - error: "empty_permuted" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5906:20 - error: "empty_permuted" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5991:17 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:5993:22 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6001:24 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6003:21 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6010:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6010:40 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6011:20 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6011:42 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6044:20 - error: "empty_permuted" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6050:20 - error: "empty_permuted" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6056:20 - error: "empty_permuted" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6068:27 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6099:20 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6100:20 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6101:20 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6138:23 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6140:27 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6142:25 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6147:27 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6148:47 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6158:28 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6164:28 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6169:22 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6171:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6171:44 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6172:24 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6172:46 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6174:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6174:45 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6175:24 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6175:46 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6209:24 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6210:22 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6211:24 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6244:17 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6255:24 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6257:21 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6262:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6262:40 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6263:20 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6263:42 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6302:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6311:28 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6312:26 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6313:28 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6320:27 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6323:27 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6335:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6391:40 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6392:44 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6395:40 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6396:44 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6403:40 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6403:75 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6409:39 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6453:40 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6453:75 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6505:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6516:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6532:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6679:47 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6680:47 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6687:47 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6689:47 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6700:43 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6700:81 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6731:43 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6731:81 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6762:43 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6762:81 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6788:30 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6803:47 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6805:47 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6811:41 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6821:47 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6823:47 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6825:47 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6827:47 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6853:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:6867:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:7307:41 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:7767:18 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:7778:18 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:7788:18 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:7841:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:7855:27 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:7855:60 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:7855:75 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:7862:34 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:7862:68 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:7928:37 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:7928:72 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:7930:40 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:7931:44 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:7936:36 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:7937:40 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:8022:37 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:8037:49 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:8051:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:8074:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:8078:36 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:8097:33 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:8103:17 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_meta_registrations.py:8103:71 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_numpy/_binary_ufuncs_impl.py + /torch/_numpy/_binary_ufuncs_impl.py:9:5 - error: "add" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:10:5 - error: "arctan2" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:11:5 - error: "bitwise_and" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:12:5 - error: "bitwise_left_shift" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:13:5 - error: "bitwise_or" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:14:5 - error: "bitwise_right_shift" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:15:5 - error: "bitwise_xor" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:16:5 - error: "copysign" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:17:5 - error: "divide" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:18:5 - error: "eq" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:19:5 - error: "float_power" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:20:5 - error: "floor_divide" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:21:5 - error: "fmax" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:22:5 - error: "fmin" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:23:5 - error: "fmod" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:24:5 - error: "gcd" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:25:5 - error: "greater" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:26:5 - error: "greater_equal" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:27:5 - error: "heaviside" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:28:5 - error: "hypot" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:29:5 - error: "lcm" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:30:5 - error: "ldexp" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:31:5 - error: "less" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:32:5 - error: "less_equal" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:33:5 - error: "logaddexp" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:34:5 - error: "logaddexp2" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:35:5 - error: "logical_and" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:36:5 - error: "logical_or" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:37:5 - error: "logical_xor" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:38:5 - error: "maximum" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:39:5 - error: "minimum" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:40:5 - error: "multiply" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:41:5 - error: "nextafter" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:42:5 - error: "not_equal" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:43:5 - error: "pow" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:44:5 - error: "remainder" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:45:5 - error: "remainder" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:46:5 - error: "subtract" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_binary_ufuncs_impl.py:47:5 - error: "true_divide" is unknown import symbol (reportAttributeAccessIssue) +/torch/_numpy/_casting_dicts.py + /torch/_numpy/_casting_dicts.py:11:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:12:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:13:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:14:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:15:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:16:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:17:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:18:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:19:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:20:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:21:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:22:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:23:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:24:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:25:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:27:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:28:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:29:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:30:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:31:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:32:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:33:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:34:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:35:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:36:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:37:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:38:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:39:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:40:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:41:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:43:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:44:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:45:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:46:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:47:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:48:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:49:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:50:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:51:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:52:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:53:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:54:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:55:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:56:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:57:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:59:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:60:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:61:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:62:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:63:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:64:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:65:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:66:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:67:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:68:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:69:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:70:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:71:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:72:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:73:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:75:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:76:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:77:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:78:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:79:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:80:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:81:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:82:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:83:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:84:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:85:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:86:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:87:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:88:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:89:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:91:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:92:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:93:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:94:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:95:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:96:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:97:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:98:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:99:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:100:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:101:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:102:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:103:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:104:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:105:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:107:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:108:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:109:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:110:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:111:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:112:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:113:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:114:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:115:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:116:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:117:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:118:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:119:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:120:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:121:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:123:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:124:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:125:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:126:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:127:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:128:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:129:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:130:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:131:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:132:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:133:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:134:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:135:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:136:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:137:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:139:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:140:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:141:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:142:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:143:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:144:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:145:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:146:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:147:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:148:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:149:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:150:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:151:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:152:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:153:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:155:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:156:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:157:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:158:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:159:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:160:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:161:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:162:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:163:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:164:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:165:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:166:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:167:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:168:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:169:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:171:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:172:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:173:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:174:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:175:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:176:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:177:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:178:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:179:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:180:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:181:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:182:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:183:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:184:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:185:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:187:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:188:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:189:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:190:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:191:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:192:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:193:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:194:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:195:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:196:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:197:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:198:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:199:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:200:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:201:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:203:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:204:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:205:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:206:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:207:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:208:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:209:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:210:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:211:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:212:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:213:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:214:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:215:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:216:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:217:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:219:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:220:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:221:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:222:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:223:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:224:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:225:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:226:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:227:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:228:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:229:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:230:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:231:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:232:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:233:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:237:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:238:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:239:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:240:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:241:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:242:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:243:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:244:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:245:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:246:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:247:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:248:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:249:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:250:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:251:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:253:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:254:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:255:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:256:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:257:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:258:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:259:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:260:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:261:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:262:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:263:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:264:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:265:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:266:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:267:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:269:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:270:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:271:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:272:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:273:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:274:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:275:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:276:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:277:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:278:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:279:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:280:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:281:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:282:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:283:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:285:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:286:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:287:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:288:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:289:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:290:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:291:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:292:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:293:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:294:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:295:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:296:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:297:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:298:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:299:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:301:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:302:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:303:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:304:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:305:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:306:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:307:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:308:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:309:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:310:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:311:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:312:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:313:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:314:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:315:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:317:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:318:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:319:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:320:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:321:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:322:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:323:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:324:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:325:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:326:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:327:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:328:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:329:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:330:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:331:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:333:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:334:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:335:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:336:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:337:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:338:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:339:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:340:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:341:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:342:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:343:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:344:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:345:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:346:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:347:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:349:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:350:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:351:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:352:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:353:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:354:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:355:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:356:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:357:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:358:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:359:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:360:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:361:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:362:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:363:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:365:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:366:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:367:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:368:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:369:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:370:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:371:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:372:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:373:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:374:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:375:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:376:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:377:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:378:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:379:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:381:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:382:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:383:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:384:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:385:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:386:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:387:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:388:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:389:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:390:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:391:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:392:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:393:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:394:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:395:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:397:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:398:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:399:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:400:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:401:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:402:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:403:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:404:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:405:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:406:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:407:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:408:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:409:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:410:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:411:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:413:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:414:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:415:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:416:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:417:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:418:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:419:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:420:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:421:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:422:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:423:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:424:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:425:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:426:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:427:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:429:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:430:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:431:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:432:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:433:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:434:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:435:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:436:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:437:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:438:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:439:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:440:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:441:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:442:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:443:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:445:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:446:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:447:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:448:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:449:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:450:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:451:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:452:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:453:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:454:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:455:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:456:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:457:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:458:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:459:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:463:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:464:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:465:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:466:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:467:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:468:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:469:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:470:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:471:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:472:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:473:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:474:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:475:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:476:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:477:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:479:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:480:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:481:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:482:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:483:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:484:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:485:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:486:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:487:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:488:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:489:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:490:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:491:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:492:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:493:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:495:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:496:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:497:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:498:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:499:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:500:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:501:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:502:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:503:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:504:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:505:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:506:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:507:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:508:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:509:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:511:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:512:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:513:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:514:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:515:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:516:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:517:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:518:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:519:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:520:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:521:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:522:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:523:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:524:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:525:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:527:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:528:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:529:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:530:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:531:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:532:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:533:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:534:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:535:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:536:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:537:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:538:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:539:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:540:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:541:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:543:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:544:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:545:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:546:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:547:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:548:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:549:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:550:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:551:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:552:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:553:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:554:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:555:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:556:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:557:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:559:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:560:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:561:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:562:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:563:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:564:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:565:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:566:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:567:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:568:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:569:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:570:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:571:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:572:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:573:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:575:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:576:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:577:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:578:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:579:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:580:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:581:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:582:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:583:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:584:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:585:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:586:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:587:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:588:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:589:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:591:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:592:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:593:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:594:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:595:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:596:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:597:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:598:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:599:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:600:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:601:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:602:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:603:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:604:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:605:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:607:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:608:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:609:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:610:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:611:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:612:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:613:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:614:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:615:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:616:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:617:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:618:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:619:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:620:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:621:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:623:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:624:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:625:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:626:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:627:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:628:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:629:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:630:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:631:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:632:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:633:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:634:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:635:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:636:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:637:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:639:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:640:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:641:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:642:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:643:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:644:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:645:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:646:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:647:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:648:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:649:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:650:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:651:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:652:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:653:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:655:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:656:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:657:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:658:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:659:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:660:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:661:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:662:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:663:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:664:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:665:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:666:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:667:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:668:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:669:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:671:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:672:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:673:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:674:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:675:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:676:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:677:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:678:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:679:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:680:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:681:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:682:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:683:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:684:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:685:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:689:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:690:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:691:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:692:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:693:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:694:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:695:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:696:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:697:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:698:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:699:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:700:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:701:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:702:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:703:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:705:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:706:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:707:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:708:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:709:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:710:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:711:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:712:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:713:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:714:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:715:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:716:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:717:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:718:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:719:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:721:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:722:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:723:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:724:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:725:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:726:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:727:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:728:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:729:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:730:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:731:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:732:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:733:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:734:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:735:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:737:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:738:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:739:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:740:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:741:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:742:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:743:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:744:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:745:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:746:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:747:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:748:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:749:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:750:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:751:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:753:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:754:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:755:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:756:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:757:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:758:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:759:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:760:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:761:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:762:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:763:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:764:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:765:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:766:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:767:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:769:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:770:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:771:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:772:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:773:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:774:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:775:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:776:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:777:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:778:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:779:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:780:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:781:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:782:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:783:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:785:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:786:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:787:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:788:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:789:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:790:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:791:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:792:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:793:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:794:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:795:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:796:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:797:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:798:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:799:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:801:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:802:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:803:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:804:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:805:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:806:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:807:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:808:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:809:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:810:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:811:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:812:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:813:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:814:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:815:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:817:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:818:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:819:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:820:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:821:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:822:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:823:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:824:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:825:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:826:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:827:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:828:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:829:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:830:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:831:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:833:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:834:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:835:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:836:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:837:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:838:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:839:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:840:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:841:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:842:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:843:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:844:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:845:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:846:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:847:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:849:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:850:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:851:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:852:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:853:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:854:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:855:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:856:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:857:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:858:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:859:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:860:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:861:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:862:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:863:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:865:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:866:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:867:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:868:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:869:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:870:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:871:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:872:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:873:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:874:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:875:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:876:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:877:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:878:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:879:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:881:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:882:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:883:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:884:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:885:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:886:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:887:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:888:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:889:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:890:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:891:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:892:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:893:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:894:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:895:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:897:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:898:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:899:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:900:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:901:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:902:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:903:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:904:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:905:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:906:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:907:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:908:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:909:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:910:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:911:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:915:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:916:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:917:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:918:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:919:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:920:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:921:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:922:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:923:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:924:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:925:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:926:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:927:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:928:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:929:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:931:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:932:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:933:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:934:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:935:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:936:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:937:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:938:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:939:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:940:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:941:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:942:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:943:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:944:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:945:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:947:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:948:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:949:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:950:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:951:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:952:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:953:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:954:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:955:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:956:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:957:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:958:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:959:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:960:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:961:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:963:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:964:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:965:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:966:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:967:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:968:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:969:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:970:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:971:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:972:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:973:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:974:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:975:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:976:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:977:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:979:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:980:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:981:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:982:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:983:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:984:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:985:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:986:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:987:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:988:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:989:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:990:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:991:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:992:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:993:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:995:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:996:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:997:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:998:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:999:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1000:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1001:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1002:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1003:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1004:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1005:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1006:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1007:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1008:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1009:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1011:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1012:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1013:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1014:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1015:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1016:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1017:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1018:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1019:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1020:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1021:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1022:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1023:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1024:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1025:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1027:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1028:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1029:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1030:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1031:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1032:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1033:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1034:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1035:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1036:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1037:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1038:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1039:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1040:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1041:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1043:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1044:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1045:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1046:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1047:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1048:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1049:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1050:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1051:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1052:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1053:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1054:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1055:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1056:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1057:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1059:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1060:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1061:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1062:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1063:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1064:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1065:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1066:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1067:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1068:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1069:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1070:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1071:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1072:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1073:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1075:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1076:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1077:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1078:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1079:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1080:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1081:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1082:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1083:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1084:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1085:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1086:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1087:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1088:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1089:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1091:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1092:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1093:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1094:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1095:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1096:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1097:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1098:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1099:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1100:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1101:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1102:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1103:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1104:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1105:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1107:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1108:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1109:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1110:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1111:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1112:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1113:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1114:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1115:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1116:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1117:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1118:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1119:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1120:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1121:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1123:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1124:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1125:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1126:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1127:19 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1128:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1129:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1130:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1131:19 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1132:19 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1133:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1134:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1135:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1136:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1137:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1144:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1145:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1145:30 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1146:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1146:30 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1147:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1147:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1148:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1148:32 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1149:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1149:33 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1150:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1150:28 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1151:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1151:29 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1152:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1152:29 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1153:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1153:29 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1154:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1154:27 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1155:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1155:28 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1156:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1156:28 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1157:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1157:28 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1158:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1158:27 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1160:11 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1161:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1161:30 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1162:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1162:30 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1163:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1163:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1164:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1164:32 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1165:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1165:33 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1166:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1166:28 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1167:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1167:29 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1168:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1168:29 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1169:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1169:29 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1170:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1170:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1171:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1171:28 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1172:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1172:28 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1173:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1173:28 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1174:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1174:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1176:11 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1177:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1177:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1178:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1178:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1179:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1179:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1180:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1180:32 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1181:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1181:33 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1182:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1182:28 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1183:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1183:29 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1184:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1184:29 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1185:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1185:29 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1186:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1186:27 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1187:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1187:28 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1188:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1188:28 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1189:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1189:28 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1190:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1190:27 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1192:11 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1193:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1193:30 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1194:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1194:30 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1195:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1195:30 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1196:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1196:32 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1197:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1197:33 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1198:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1198:28 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1199:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1199:29 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1200:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1200:29 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1201:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1201:29 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1202:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1202:27 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1203:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1203:28 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1204:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1204:28 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1205:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1205:28 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1206:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1206:27 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1208:11 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1209:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1209:30 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1210:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1210:30 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1211:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1211:30 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1212:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1212:32 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1213:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1213:33 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1214:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1214:28 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1215:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1215:29 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1216:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1216:29 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1217:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1217:29 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1218:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1218:27 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1219:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1219:28 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1220:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1220:28 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1221:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1221:28 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1222:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1222:27 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1224:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1225:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1225:30 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1226:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1226:30 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1227:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1227:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1228:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1228:32 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1229:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1229:33 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1230:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1230:28 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1231:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1231:29 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1232:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1232:29 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1233:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1233:29 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1234:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1234:27 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1235:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1235:28 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1236:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1236:28 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1237:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1237:28 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1238:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1238:27 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1240:11 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1241:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1241:30 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1242:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1242:30 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1243:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1243:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1244:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1244:32 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1245:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1245:33 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1246:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1246:28 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1247:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1247:29 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1248:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1248:29 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1249:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1249:29 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1250:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1250:27 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1251:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1251:28 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1252:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1252:28 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1253:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1253:28 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1254:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1254:27 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1256:11 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1257:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1257:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1258:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1258:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1259:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1259:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1260:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1260:32 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1261:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1261:33 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1262:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1262:28 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1263:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1263:29 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1264:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1264:29 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1265:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1265:29 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1266:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1266:27 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1267:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1267:28 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1268:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1268:28 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1269:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1269:28 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1270:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1270:27 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1272:11 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1273:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1273:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1274:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1274:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1275:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1275:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1276:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1276:32 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1277:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1277:33 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1278:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1278:28 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1279:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1279:29 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1280:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1280:29 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1281:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1281:29 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1282:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1282:27 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1283:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1283:28 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1284:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1284:28 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1285:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1285:28 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1286:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1286:27 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1288:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1289:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1289:30 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1290:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1290:30 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1291:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1291:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1292:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1292:32 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1293:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1293:33 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1294:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1294:28 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1295:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1295:29 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1296:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1296:29 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1297:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1297:29 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1298:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1298:27 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1299:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1299:28 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1300:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1300:28 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1301:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1301:28 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1302:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1302:27 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1304:11 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1305:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1305:30 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1306:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1306:30 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1307:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1307:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1308:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1308:32 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1309:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1309:33 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1310:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1310:28 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1311:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1311:29 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1312:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1312:29 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1313:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1313:29 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1314:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1314:27 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1315:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1315:28 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1316:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1316:28 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1317:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1317:28 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1318:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1318:27 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1320:11 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1321:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1321:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1322:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1322:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1323:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1323:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1324:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1324:32 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1325:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1325:33 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1326:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1326:28 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1327:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1327:29 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1328:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1328:29 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1329:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1329:29 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1330:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1330:27 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1331:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1331:28 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1332:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1332:28 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1333:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1333:28 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1334:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1334:27 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1336:11 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1337:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1337:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1338:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1338:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1339:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1339:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1340:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1340:32 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1341:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1341:33 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1342:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1342:28 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1343:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1343:29 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1344:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1344:29 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1345:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1345:29 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1346:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1346:27 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1347:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1347:28 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1348:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1348:28 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1349:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1349:28 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1350:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1350:27 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1352:11 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1353:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1353:30 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1354:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1354:30 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1355:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1355:30 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1356:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1356:32 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1357:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1357:33 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1358:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1358:28 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1359:15 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1359:29 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1360:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1360:29 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1361:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1361:29 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1362:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1362:27 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1363:15 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1363:28 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1364:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1364:28 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1365:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1365:28 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1366:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_casting_dicts.py:1366:27 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_numpy/_dtypes.py + /torch/_numpy/_dtypes.py:87:25 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_dtypes.py:93:25 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_dtypes.py:99:25 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_dtypes.py:105:25 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_dtypes.py:114:25 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_dtypes.py:120:25 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_dtypes.py:126:25 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_dtypes.py:132:25 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_dtypes.py:141:25 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_dtypes.py:147:25 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_dtypes.py:153:25 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_dtypes.py:159:25 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_dtypes.py:165:25 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_dtypes.py:171:25 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_dtypes.py:450:1 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) + /torch/_numpy/_dtypes.py:451:1 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) + /torch/_numpy/_dtypes.py:452:1 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) +/torch/_numpy/_funcs.py + /torch/_numpy/_funcs.py:46:5 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) +/torch/_numpy/_funcs_impl.py + /torch/_numpy/_funcs_impl.py:32:9 - error: "NotImplementedType" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:38:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:40:14 - error: Cannot access attribute "clone" for class "object*" +   Attribute "clone" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:44:10 - warning: TypeVar "NDArray" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:45:10 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:49:49 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:50:9 - error: Cannot access attribute "copy_" for class "object*" +   Attribute "copy_" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:53:23 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:61:23 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:69:23 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:110:56 - error: Argument of type "CastingModes@_concatenate | None" cannot be assigned to parameter "casting" of type "str" in function "_concat_cast_helper" +   Type "object* | None" is not assignable to type "str" +     "object*" is not assignable to "str" (reportArgumentType) + /torch/_numpy/_funcs_impl.py:111:18 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:133:61 - error: Argument of type "CastingModes@vstack | None" cannot be assigned to parameter "casting" of type "str" in function "_concat_cast_helper" +   Type "object* | None" is not assignable to type "str" +     "object*" is not assignable to "str" (reportArgumentType) + /torch/_numpy/_funcs_impl.py:134:18 - error: "vstack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:147:61 - error: Argument of type "CastingModes@hstack | None" cannot be assigned to parameter "casting" of type "str" in function "_concat_cast_helper" +   Type "object* | None" is not assignable to type "str" +     "object*" is not assignable to "str" (reportArgumentType) + /torch/_numpy/_funcs_impl.py:148:18 - error: "hstack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:160:61 - error: Argument of type "CastingModes@dstack | None" cannot be assigned to parameter "casting" of type "str" in function "_concat_cast_helper" +   Type "object* | None" is not assignable to type "str" +     "object*" is not assignable to "str" (reportArgumentType) + /torch/_numpy/_funcs_impl.py:161:18 - error: "dstack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:174:61 - error: Argument of type "CastingModes@column_stack | None" cannot be assigned to parameter "casting" of type "str" in function "_concat_cast_helper" +   Type "object* | None" is not assignable to type "str" +     "object*" is not assignable to "str" (reportArgumentType) + /torch/_numpy/_funcs_impl.py:175:18 - error: "column_stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:188:64 - error: Argument of type "CastingModes@stack | None" cannot be assigned to parameter "casting" of type "str" in function "_concat_cast_helper" +   Type "object* | None" is not assignable to type "str" +     "object*" is not assignable to "str" (reportArgumentType) + /torch/_numpy/_funcs_impl.py:191:18 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:196:16 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:197:23 - error: Cannot access attribute "flatten" for class "object*" +   Attribute "flatten" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:198:25 - error: Cannot access attribute "flatten" for class "object*" +   Attribute "flatten" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:199:20 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:260:22 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:264:16 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:268:17 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:269:12 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:271:21 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:275:17 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:276:12 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:281:17 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:282:12 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:288:18 - error: "kron" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:291:15 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:292:18 - error: "vander" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:312:18 - error: "linspace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:325:18 - error: "pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:325:22 - error: Operator "/" not supported for types "ArrayLike@geomspace" and "ArrayLike@geomspace" (reportOperatorIssue) + /torch/_numpy/_funcs_impl.py:326:21 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:327:18 - error: "logspace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:328:15 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:329:15 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:346:18 - error: "logspace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:375:24 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:375:41 - error: Cannot access attribute "is_complex" for class "object*" +   Attribute "is_complex" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:375:41 - error: "is_complex" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_numpy/_funcs_impl.py:381:9 - error: Operator ">" not supported for types "ArrayLikeOrScalar[Unknown] | None" and "Literal[0]" +   Operator ">" not supported for types "complex" and "Literal[0]" +   Operator ">" not supported for types "None" and "Literal[0]" (reportOperatorIssue) + /torch/_numpy/_funcs_impl.py:381:22 - error: Operator ">" not supported for types "ArrayLikeOrScalar[Unknown]" and "ArrayLikeOrScalar[Unknown] | None" +   Operator ">" not supported for types "int" and "complex" +   Operator ">" not supported for types "int" and "None" +   Operator ">" not supported for types "float" and "complex" +   Operator ">" not supported for types "float" and "None" +   Operator ">" not supported for types "complex" and "int" +   Operator ">" not supported for types "complex" and "float" +   Operator ">" not supported for types "complex" and "complex" +   Operator ">" not supported for types "complex" and "bool" + ... (reportOperatorIssue) + /torch/_numpy/_funcs_impl.py:381:40 - error: Operator "<" not supported for types "ArrayLikeOrScalar[Unknown] | None" and "Literal[0]" +   Operator "<" not supported for types "complex" and "Literal[0]" +   Operator "<" not supported for types "None" and "Literal[0]" (reportOperatorIssue) + /torch/_numpy/_funcs_impl.py:381:53 - error: Operator "<" not supported for types "ArrayLikeOrScalar[Unknown]" and "ArrayLikeOrScalar[Unknown] | None" +   Operator "<" not supported for types "int" and "complex" +   Operator "<" not supported for types "int" and "None" +   Operator "<" not supported for types "float" and "complex" +   Operator "<" not supported for types "float" and "None" +   Operator "<" not supported for types "complex" and "int" +   Operator "<" not supported for types "complex" and "float" +   Operator "<" not supported for types "complex" and "complex" +   Operator "<" not supported for types "complex" and "bool" + ... (reportOperatorIssue) + /torch/_numpy/_funcs_impl.py:383:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:385:20 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:402:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:410:16 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:416:20 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:424:17 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:433:28 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:436:18 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:440:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:448:20 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:463:18 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:467:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:473:20 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:488:18 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:492:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:498:20 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:546:41 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:549:23 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:552:20 - error: "corrcoef" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:555:34 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:576:18 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:576:33 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:576:48 - error: Cannot access attribute "is_cpu" for class "object*" +   Attribute "is_cpu" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:579:23 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:582:20 - error: "cov" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:585:34 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:615:10 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:615:23 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:619:15 - error: "flip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:625:15 - error: "conj_physical" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:633:10 - error: Cannot access attribute "numel" for class "object*" +   Attribute "numel" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:635:15 - error: Cannot access attribute "new_empty" for class "object*" +   Attribute "new_empty" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:640:18 - error: "bincount" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:644:16 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:652:18 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:652:33 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:653:31 - error: Cannot access attribute "to" for class "object*" +   Attribute "to" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:653:40 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:656:24 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:658:24 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:665:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:666:14 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:669:14 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:670:20 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:673:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:675:18 - error: Cannot access attribute "numel" for class "object*" +   Attribute "numel" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:677:18 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:683:20 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:684:34 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:685:14 - error: Cannot access attribute "view" for class "object*" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:688:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:691:30 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:693:51 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:694:18 - error: "flip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:697:15 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:698:18 - error: "flipud" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:701:15 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:702:18 - error: "fliplr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:705:14 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:706:47 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:707:18 - error: "rot90" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:713:25 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:714:18 - error: "broadcast_to" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:721:29 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:725:19 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:732:17 - error: Cannot access attribute "reshape" for class "object*" +   Attribute "reshape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:757:21 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:759:21 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:765:13 - error: "__setitem__" method not defined on type "tuple[()]" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:765:13 - error: "__setitem__" method not defined on type "tuple[Unknown, ...]" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:772:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:773:18 - error: "tril" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:776:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:777:18 - error: "triu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:792:28 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:793:12 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:796:18 - error: "tril_indices" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:796:35 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:796:49 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:799:28 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:800:12 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:803:18 - error: "triu_indices" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:803:35 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:803:49 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:816:20 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:817:18 - error: "tril" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:827:18 - error: "isclose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:834:18 - error: "allclose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:862:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:865:10 - error: Cannot access attribute "is_complex" for class "object*" +   Attribute "is_complex" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:866:20 - error: "nan_to_num" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:866:33 - error: Cannot access attribute "real" for class "object*" +   Attribute "real" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:867:20 - error: "nan_to_num" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:867:33 - error: Cannot access attribute "imag" for class "object*" +   Attribute "imag" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:870:22 - error: "nan_to_num" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:884:47 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:886:14 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:892:49 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:893:18 - error: "take_along_dim" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:897:8 - warning: TypeVar "NDArray" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:902:16 - error: Cannot access attribute "type" for class "object*" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:902:23 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:905:16 - error: Cannot access attribute "numel" for class "object*" +   Attribute "numel" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:906:26 - error: Cannot access attribute "numel" for class "object*" +   Attribute "numel" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:910:16 - error: Cannot access attribute "numel" for class "object*" +   Attribute "numel" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:912:25 - error: Cannot access attribute "numel" for class "object*" +   Attribute "numel" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:913:7 - error: Cannot access attribute "put_" for class "object*" +   Attribute "put_" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:919:49 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:922:47 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:923:20 - error: "scatter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:924:9 - error: Cannot access attribute "copy_" for class "object*" +   Attribute "copy_" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:924:34 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:935:21 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:940:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:940:68 - error: Cannot access attribute "ndim" for class "Sequence[ArrayLike@choose]" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:941:41 - error: Cannot access attribute "shape" for class "Sequence[ArrayLike@choose]" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:945:12 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /torch/_numpy/_funcs_impl.py:945:12 - error: Argument of type "tuple[Unknown, ...]" cannot be assigned to parameter "index" of type "slice[Any, Any, Any]" in function "__getitem__" +   "tuple[Unknown, ...]" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /torch/_numpy/_funcs_impl.py:952:9 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:961:48 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:970:16 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:971:18 - error: "nonzero" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:974:17 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:975:18 - error: "argwhere" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:978:20 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:979:18 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:988:18 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:991:15 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:992:18 - error: "repeat_interleave" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:995:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:998:18 - error: "tile" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1001:15 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1010:11 - error: Cannot access attribute "flatten" for class "object*" +   Attribute "flatten" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1018:10 - error: Cannot access attribute "numel" for class "object*" +   Attribute "numel" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1020:22 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1020:47 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1022:32 - error: Cannot access attribute "numel" for class "object*" +   Attribute "numel" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1031:17 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1032:49 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1033:49 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1034:18 - error: "diagonal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1038:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1045:20 - error: "diagonal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1062:15 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1068:18 - error: "eye" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1071:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1072:18 - error: "diag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1075:17 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1076:18 - error: "diagflat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1084:28 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1085:16 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1089:13 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1092:35 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1096:10 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1098:12 - error: Cannot access attribute "numel" for class "object*" +   Attribute "numel" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1099:11 - error: Cannot access attribute "fill_diagonal_" for class "object*" +   Attribute "fill_diagonal_" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1102:12 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1103:19 - error: Cannot access attribute "unsqueeze" for class "object*" +   Attribute "unsqueeze" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1107:10 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1108:18 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1108:31 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1112:22 - error: Cannot access attribute "diagonal" for class "object*" +   Attribute "diagonal" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1113:24 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1116:28 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1117:25 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1120:13 - error: "__setitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1120:48 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1124:9 - error: "__setitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1124:18 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1124:26 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1139:30 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1140:30 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1144:23 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1146:23 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1151:20 - error: "vdot" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1154:34 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1156:34 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1169:39 - error: Argument of type "list[list[int] | Unknown] | int" cannot be assigned to parameter "dims" of type "int" in function "tensordot" +   Type "list[list[int] | Unknown] | int" is not assignable to type "int" +     "list[list[int] | Unknown]" is not assignable to "int" (reportArgumentType) + /torch/_numpy/_funcs_impl.py:1174:30 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1176:23 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1181:10 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1181:25 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1182:18 - error: Operator "*" not supported for types "ArrayLike@dot" and "ArrayLike@dot" (reportOperatorIssue) + /torch/_numpy/_funcs_impl.py:1184:24 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1187:34 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1194:30 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1194:45 - error: Cannot access attribute "is_cpu" for class "object*" +   Attribute "is_cpu" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1194:57 - error: Cannot access attribute "is_cpu" for class "object*" +   Attribute "is_cpu" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1195:30 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1199:23 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1201:23 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1206:20 - error: "inner" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1209:34 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1211:34 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1216:18 - error: "outer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1226:49 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1227:49 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1230:15 - error: "moveaxis" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1231:15 - error: "moveaxis" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1233:10 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1233:39 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1237:30 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1237:47 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1238:10 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1238:30 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1243:16 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1250:10 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1251:10 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1252:10 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1253:14 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1254:10 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1255:10 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1256:10 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1257:14 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1263:10 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1264:14 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1269:22 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1273:13 - error: "cp0" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:1273:29 - error: "b2" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:1274:13 - error: "cp1" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:1274:30 - error: "b2" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:1275:13 - error: "cp2" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:1277:18 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1278:14 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1279:13 - error: "cp0" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:1279:29 - error: "b2" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:1279:34 - error: "a2" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:1280:13 - error: "cp1" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:1280:24 - error: "a2" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:1280:39 - error: "b2" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:1281:13 - error: "cp2" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:1283:22 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1284:13 - error: "cp0" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:1284:24 - error: Operator "-" not supported for type "Unknown | Unbound" (reportOperatorIssue) + /torch/_numpy/_funcs_impl.py:1284:25 - error: "a2" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:1285:13 - error: "cp1" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:1285:24 - error: "a2" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:1286:13 - error: "cp2" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:1288:18 - error: "moveaxis" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1395:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1398:20 - error: "sort" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1402:16 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1404:18 - error: "argsort" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1410:10 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1411:64 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1413:18 - error: "searchsorted" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1419:17 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1420:51 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1421:61 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1422:18 - error: "moveaxis" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1425:17 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1426:49 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1427:49 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1428:18 - error: "swapaxes" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1431:17 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1438:11 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1455:14 - error: Cannot access attribute "view" for class "object*" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1458:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1460:51 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1463:18 - error: "roll" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1469:16 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1473:20 - error: Cannot access attribute "squeeze" for class "object*" +   Attribute "squeeze" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1478:28 - error: Cannot access attribute "squeeze" for class "object*" +   Attribute "squeeze" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1480:24 - error: Cannot access attribute "squeeze" for class "object*" +   Attribute "squeeze" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1484:16 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1487:14 - error: Cannot access attribute "reshape" for class "object*" +   Attribute "reshape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1495:18 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1499:39 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1500:14 - error: Argument of type "Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /torch/_numpy/_funcs_impl.py:1501:16 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/_numpy/_funcs_impl.py:1502:14 - error: Cannot access attribute "permute" for class "object*" +   Attribute "permute" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1505:14 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1506:18 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1516:47 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1526:24 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1527:31 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1527:54 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1528:25 - error: "broadcast_to" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1531:24 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1532:30 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1532:52 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1533:24 - error: "broadcast_to" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1535:18 - error: "diff" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1541:14 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1542:20 - error: "angle" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1548:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1549:18 - error: "sinc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1553:17 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1554:11 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1575:31 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1580:36 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1588:27 - error: "diff" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1611:15 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1616:15 - error: Cannot access attribute "double" for class "object*" +   Attribute "double" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1617:23 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1620:14 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1626:21 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1629:66 - error: Cannot access attribute "ndim" for class "float" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1638:35 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1638:54 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1640:19 - error: "__getitem__" method not defined on type "float" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1641:19 - error: "__getitem__" method not defined on type "float" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1653:21 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1653:44 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1653:67 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1661:50 - error: "__getitem__" method not defined on type "float" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1663:35 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1663:54 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1668:50 - error: "__getitem__" method not defined on type "float" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1670:35 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1670:54 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1683:23 - error: "__getitem__" method not defined on type "float" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1684:23 - error: "__getitem__" method not defined on type "float" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1690:21 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1690:44 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1690:67 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1702:23 - error: "__getitem__" method not defined on type "float" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1703:23 - error: "__getitem__" method not defined on type "float" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1709:21 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1709:44 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1709:67 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) + /torch/_numpy/_funcs_impl.py:1729:14 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1730:10 - error: Cannot access attribute "is_floating_point" for class "object*" +   Attribute "is_floating_point" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1731:24 - error: "round" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1732:12 - error: Cannot access attribute "is_complex" for class "object*" +   Attribute "is_complex" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1734:24 - error: "complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1735:19 - error: "round" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1735:27 - error: Cannot access attribute "real" for class "object*" +   Attribute "real" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1736:19 - error: "round" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1736:27 - error: Cannot access attribute "imag" for class "object*" +   Attribute "imag" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1748:22 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1749:18 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1755:27 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1755:35 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1757:18 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1757:24 - error: Cannot access attribute "imag" for class "object*" +   Attribute "imag" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1758:14 - error: Cannot access attribute "real" for class "object*" +   Attribute "real" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1761:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1762:18 - error: "real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1765:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1766:10 - error: Cannot access attribute "is_complex" for class "object*" +   Attribute "is_complex" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1767:18 - error: Cannot access attribute "imag" for class "object*" +   Attribute "imag" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1768:18 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1771:18 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1772:14 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1773:18 - error: Cannot access attribute "imag" for class "object*" +   Attribute "imag" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1774:18 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1774:44 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1777:15 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1778:14 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1779:18 - error: Cannot access attribute "imag" for class "object*" +   Attribute "imag" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1780:18 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1780:43 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1783:21 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1784:18 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1787:18 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1788:22 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1791:17 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1792:18 - error: "isneginf" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1795:17 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1796:18 - error: "isposinf" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1799:11 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1848:12 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1848:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1848:42 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1849:18 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1849:35 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1852:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1853:11 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1854:11 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1855:11 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1856:11 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1860:27 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:1864:15 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1894:40 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1897:23 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1897:52 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1898:47 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1900:15 - error: Cannot access attribute "double" for class "object*" +   Attribute "double" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1903:51 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1910:49 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1913:22 - error: "histogram" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1915:22 - error: "histogram" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1941:17 - error: Argument of type "int" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   "int" is incompatible with protocol "Sized" +     "__len__" is not present (reportArgumentType) + /torch/_numpy/_funcs_impl.py:1948:32 - error: Argument of type "list[int] | int" cannot be assigned to parameter "bins" of type "int" in function "histogramdd" +   Type "list[int] | int" is not assignable to type "int" +     "list[int]" is not assignable to "int" (reportArgumentType) + /torch/_numpy/_funcs_impl.py:1980:75 - error: "Never" is not iterable (reportGeneralTypeIssues) + /torch/_numpy/_funcs_impl.py:1988:23 - error: Cannot access attribute "flatten" for class "object*" +   Attribute "flatten" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1993:23 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1994:17 - error: Type "tuple[Unknown, ...]" is not assignable to declared type "ArrayLike@histogramdd | None" +   Type "tuple[Unknown, ...]" is not assignable to type "ArrayLike@histogramdd | None" +     Type "tuple[Unknown, ...]" is not assignable to type "ArrayLike@histogramdd" +     "tuple[Unknown, ...]" is not assignable to "None" (reportAssignmentType) + /torch/_numpy/_funcs_impl.py:1994:29 - error: Cannot access attribute "tolist" for class "object*" +   Attribute "tolist" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:1994:29 - error: "tolist" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_numpy/_funcs_impl.py:2000:18 - error: "histogramdd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2003:68 - error: "bins_dtypes" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:2011:24 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_funcs_impl.py:2016:10 - error: Cannot access attribute "numel" for class "object*" +   Attribute "numel" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2018:24 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2020:10 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2020:25 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2021:23 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2023:12 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2024:20 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2024:32 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2025:28 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2025:43 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2026:25 - error: Cannot access attribute "real" for class "object*" +   Attribute "real" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2026:56 - error: Cannot access attribute "imag" for class "object*" +   Attribute "imag" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2028:23 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2028:62 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2030:12 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2031:26 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2031:41 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2031:56 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2032:24 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2038:26 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2038:39 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2038:51 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2038:64 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2038:77 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2040:24 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2045:18 - error: "dtype" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_funcs_impl.py:2053:52 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2056:23 - error: "broadcast_to" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2056:54 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2057:23 - error: "flip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_funcs_impl.py:2059:36 - error: Argument of type "ArrayLike@pad" cannot be assigned to parameter "input" of type "Tensor" in function "pad" +   "object*" is not assignable to "Tensor" (reportArgumentType) + /torch/_numpy/_funcs_impl.py:2059:43 - error: Argument of type "tuple[Unknown, ...]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Unknown, ...]" is not assignable to "list[int]" (reportArgumentType) + /torch/_numpy/_funcs_impl.py:2059:49 - error: Argument of type "Unknown | ArrayLike@pad" cannot be assigned to parameter "iterable" of type "Iterable[_T_co@tuple]" in function "__new__" +   Type "Unknown | object*" is not assignable to type "Iterable[_T_co@tuple]" +     "object*" is incompatible with protocol "Iterable[_T_co@tuple]" +       "__iter__" is not present (reportArgumentType) +/torch/_numpy/_ndarray.py + /torch/_numpy/_ndarray.py:17:5 - error: "NotImplementedType" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_ndarray.py:298:14 - error: Cannot assign to attribute "unspecified" for class "type[_Unspecified]" +   Attribute "unspecified" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_ndarray.py:323:34 - error: "conjugate" is not a known attribute of module "._ufuncs" (reportAttributeAccessIssue) + /torch/_numpy/_ndarray.py:324:39 - error: "conjugate" is not a known attribute of module "._ufuncs" (reportAttributeAccessIssue) + /torch/_numpy/_ndarray.py:349:9 - error: "ivar" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_ndarray.py:349:15 - error: "rvar" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_ndarray.py:349:21 - error: "name" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_ndarray.py:349:27 - error: "plain" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_ndarray.py:349:34 - error: "fn" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_ndarray.py:349:38 - error: "method" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_numpy/_ndarray.py:433:20 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_ndarray.py:434:21 - error: Cannot access attribute "clone" for class "object*" +   Attribute "clone" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_ndarray.py:437:23 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_ndarray.py:438:22 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_ndarray.py:478:27 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_ndarray.py:611:19 - error: "take" is not a known attribute of module "._funcs" (reportAttributeAccessIssue) + /torch/_numpy/_ndarray.py:612:18 - error: "put" is not a known attribute of module "._funcs" (reportAttributeAccessIssue) +/torch/_numpy/_normalizations.py + /torch/_numpy/_normalizations.py:41:24 - error: "NotImplementedType" is unknown import symbol (reportAttributeAccessIssue) +/torch/_numpy/_reductions_impl.py + /torch/_numpy/_reductions_impl.py:25:9 - error: "NotImplementedType" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:68:22 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:68:39 - warning: TypeVar "AxisLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:68:69 - warning: TypeVar "KeepDims" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:69:14 - error: Cannot access attribute "count_nonzero" for class "object*" +   Attribute "count_nonzero" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:74:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:75:11 - warning: TypeVar "AxisLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:78:15 - warning: TypeVar "KeepDims" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:80:10 - error: Cannot access attribute "is_complex" for class "object*" +   Attribute "is_complex" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:81:58 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:85:10 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:85:25 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:87:15 - error: Cannot access attribute "to" for class "object*" +   Attribute "to" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:87:24 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:89:18 - error: "argmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:94:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:95:11 - warning: TypeVar "AxisLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:98:15 - warning: TypeVar "KeepDims" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:100:10 - error: Cannot access attribute "is_complex" for class "object*" +   Attribute "is_complex" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:101:58 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:105:10 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:105:25 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:107:15 - error: Cannot access attribute "to" for class "object*" +   Attribute "to" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:107:24 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:109:18 - error: "argmin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:114:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:115:11 - warning: TypeVar "AxisLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:117:15 - warning: TypeVar "KeepDims" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:123:18 - error: "any" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:128:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:129:11 - warning: TypeVar "AxisLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:131:15 - warning: TypeVar "KeepDims" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:137:18 - error: "all" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:142:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:143:11 - warning: TypeVar "AxisLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:145:15 - warning: TypeVar "KeepDims" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:149:10 - error: Cannot access attribute "is_complex" for class "object*" +   Attribute "is_complex" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:150:56 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:152:14 - error: Cannot access attribute "amax" for class "object*" +   Attribute "amax" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:160:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:161:11 - warning: TypeVar "AxisLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:163:15 - warning: TypeVar "KeepDims" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:167:10 - error: Cannot access attribute "is_complex" for class "object*" +   Attribute "is_complex" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:168:56 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:170:14 - error: Cannot access attribute "amin" for class "object*" +   Attribute "amin" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:178:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:179:11 - warning: TypeVar "AxisLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:181:15 - warning: TypeVar "KeepDims" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:183:14 - error: Cannot access attribute "amax" for class "object*" +   Attribute "amax" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:183:29 - error: Cannot access attribute "amin" for class "object*" +   Attribute "amin" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:188:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:189:11 - warning: TypeVar "AxisLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:192:15 - warning: TypeVar "KeepDims" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:196:53 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:198:23 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:202:14 - error: Cannot access attribute "sum" for class "object*" +   Attribute "sum" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:207:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:208:11 - warning: TypeVar "AxisLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:211:15 - warning: TypeVar "KeepDims" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:217:23 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:221:14 - error: Cannot access attribute "prod" for class "object*" +   Attribute "prod" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:229:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:230:11 - warning: TypeVar "AxisLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:233:15 - warning: TypeVar "KeepDims" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:237:37 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:240:16 - error: Cannot access attribute "mean" for class "object*" +   Attribute "mean" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:247:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:248:11 - warning: TypeVar "AxisLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:252:15 - warning: TypeVar "KeepDims" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:257:37 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:265:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:266:11 - warning: TypeVar "AxisLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:270:15 - warning: TypeVar "KeepDims" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:275:37 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:287:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:288:11 - warning: TypeVar "AxisLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:292:23 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:295:19 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:298:47 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:300:14 - error: Cannot access attribute "cumsum" for class "object*" +   Attribute "cumsum" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:304:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:305:11 - warning: TypeVar "AxisLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:309:23 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:312:19 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:315:47 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:317:14 - error: Cannot access attribute "cumprod" for class "object*" +   Attribute "cumprod" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:333:22 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:333:34 - error: Cannot access attribute "numel" for class "object*" +   Attribute "numel" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:335:18 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:336:19 - error: Cannot access attribute "double" for class "object*" +   Attribute "double" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:339:14 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:339:31 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:344:24 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:348:24 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:348:38 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:354:29 - error: "broadcast_to" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:354:54 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:354:81 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:355:31 - error: Cannot access attribute "swapaxes" for class "object*" +   Attribute "swapaxes" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:359:25 - error: Operator "*" not supported for types "Unknown | ArrayLike@average" and "Unknown | ArrayLike@average" +   Operator "*" not supported for types "object*" and "object*" (reportOperatorIssue) + /torch/_numpy/_reductions_impl.py:365:55 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:369:26 - error: "broadcast_to" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:379:11 - warning: TypeVar "AxisLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:383:15 - warning: TypeVar "KeepDims" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:394:14 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:396:15 - error: Cannot access attribute "to" for class "object*" +   Attribute "to" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:399:10 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:399:25 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:400:15 - error: Cannot access attribute "to" for class "object*" +   Attribute "to" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:400:24 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:403:15 - error: Cannot access attribute "flatten" for class "object*" +   Attribute "flatten" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:404:15 - error: Cannot access attribute "flatten" for class "object*" +   Attribute "flatten" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:405:16 - error: Type "tuple[Literal[0]]" is not assignable to declared type "AxisLike@quantile" +   Type "tuple[Literal[0]]" is not assignable to type "AxisLike@quantile" (reportAssignmentType) + /torch/_numpy/_reductions_impl.py:407:51 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:414:35 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:416:18 - error: "quantile" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:422:11 - warning: TypeVar "AxisLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:426:15 - warning: TypeVar "KeepDims" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:431:45 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:432:15 - error: Cannot access attribute "to" for class "object*" +   Attribute "to" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_reductions_impl.py:433:10 - error: Operator "/" not supported for types "Unknown | ArrayLike@percentile" and "float" +   Operator "/" not supported for types "object*" and "float" (reportOperatorIssue) + /torch/_numpy/_reductions_impl.py:447:8 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:451:15 - warning: TypeVar "KeepDims" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_reductions_impl.py:455:15 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_numpy/_ufuncs.py + /torch/_numpy/_ufuncs.py:16:5 - error: "NotImplementedType" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_ufuncs.py:167:24 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_ufuncs.py:170:24 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_ufuncs.py:173:16 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_ufuncs.py:175:34 - error: Cannot access attribute "dtype" for class "int" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_ufuncs.py:175:34 - error: Cannot access attribute "dtype" for class "float" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_ufuncs.py:175:34 - error: Cannot access attribute "dtype" for class "complex" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_ufuncs.py:175:34 - error: Cannot access attribute "dtype" for class "bool" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_ufuncs.py:180:11 - error: Cannot access attribute "dtype" for class "int" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_ufuncs.py:180:11 - error: Cannot access attribute "dtype" for class "float" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_ufuncs.py:180:11 - error: Cannot access attribute "dtype" for class "complex" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_ufuncs.py:180:11 - error: Cannot access attribute "dtype" for class "bool" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/_ufuncs.py:180:26 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_ufuncs.py:182:34 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/_ufuncs.py:298:12 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/_ufuncs.py:334:1 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) +/torch/_numpy/_unary_ufuncs_impl.py + /torch/_numpy/_unary_ufuncs_impl.py:9:5 - error: "absolute" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:10:5 - error: "arccos" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:11:5 - error: "arccosh" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:12:5 - error: "arcsin" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:13:5 - error: "arcsinh" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:14:5 - error: "arctan" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:15:5 - error: "arctanh" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:16:5 - error: "bitwise_not" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:17:5 - error: "bitwise_not" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:18:5 - error: "ceil" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:19:5 - error: "conj_physical" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:20:5 - error: "cos" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:21:5 - error: "cosh" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:22:5 - error: "deg2rad" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:23:5 - error: "deg2rad" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:24:5 - error: "exp" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:25:5 - error: "exp2" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:26:5 - error: "expm1" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:27:5 - error: "floor" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:28:5 - error: "isfinite" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:29:5 - error: "isinf" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:30:5 - error: "isnan" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:31:5 - error: "log" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:32:5 - error: "log10" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:33:5 - error: "log1p" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:34:5 - error: "log2" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:35:5 - error: "logical_not" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:36:5 - error: "negative" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:37:5 - error: "rad2deg" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:38:5 - error: "rad2deg" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:39:5 - error: "reciprocal" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:40:5 - error: "round" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:41:5 - error: "round" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:42:5 - error: "sign" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:43:5 - error: "signbit" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:44:5 - error: "sin" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:45:5 - error: "sinh" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:46:5 - error: "sqrt" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:47:5 - error: "square" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:48:5 - error: "tan" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:49:5 - error: "tanh" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/_unary_ufuncs_impl.py:50:5 - error: "trunc" is unknown import symbol (reportAttributeAccessIssue) +/torch/_numpy/fft.py + /torch/_numpy/fft.py:31:12 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/fft.py:37:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/fft.py:43:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/fft.py:49:14 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/fft.py:55:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/fft.py:61:14 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/fft.py:67:14 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/fft.py:73:15 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/fft.py:79:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/fft.py:85:14 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/fft.py:91:14 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/fft.py:97:15 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/fft.py:103:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/fft.py:109:14 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/fft.py:124:17 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/fft.py:129:18 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) +/torch/_numpy/linalg.py + /torch/_numpy/linalg.py:55:21 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/linalg.py:82:26 - error: Cannot access attribute "is_cuda" for class "object*" +   Attribute "is_cuda" is unknown (reportAttributeAccessIssue) + /torch/_numpy/linalg.py:82:39 - error: Cannot access attribute "is_cuda" for class "object*" +   Attribute "is_cuda" is unknown (reportAttributeAccessIssue) + /torch/_numpy/linalg.py:88:12 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/linalg.py:96:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/linalg.py:110:18 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/linalg.py:120:12 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/linalg.py:127:16 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/linalg.py:134:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/linalg.py:139:10 - error: Cannot access attribute "numel" for class "object*" +   Attribute "numel" is unknown (reportAttributeAccessIssue) + /torch/_numpy/linalg.py:139:39 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/linalg.py:147:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/linalg.py:147:30 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/linalg.py:152:20 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/linalg.py:155:10 - error: Cannot access attribute "ndim" for class "object*" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_numpy/linalg.py:156:29 - error: Cannot access attribute "any" for class "bool" +   Attribute "any" is unknown (reportAttributeAccessIssue) + /torch/_numpy/linalg.py:161:22 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/linalg.py:161:42 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/linalg.py:161:50 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/linalg.py:169:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/linalg.py:169:55 - warning: TypeVar "KeepDims" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/linalg.py:179:17 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/linalg.py:186:11 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/linalg.py:197:12 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/linalg.py:212:12 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/linalg.py:216:14 - error: Cannot access attribute "is_complex" for class "object*" +   Attribute "is_complex" is unknown (reportAttributeAccessIssue) + /torch/_numpy/linalg.py:224:13 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/linalg.py:231:16 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/_numpy/linalg.py:234:14 - error: Cannot access attribute "is_complex" for class "object*" +   Attribute "is_complex" is unknown (reportAttributeAccessIssue) + /torch/_numpy/linalg.py:241:17 - warning: TypeVar "ArrayLike" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) +/torch/_numpy/random.py + /torch/_numpy/random.py:160:10 - error: Cannot access attribute "numel" for class "object*" +   Attribute "numel" is unknown (reportAttributeAccessIssue) + /torch/_numpy/random.py:161:19 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/random.py:177:19 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/random.py:177:36 - error: Cannot access attribute "shape" for class "object*" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/_numpy/random.py:180:23 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/random.py:180:31 - error: Cannot access attribute "dtype" for class "object*" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/_numpy/random.py:180:31 - error: "dtype" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_numpy/random.py:181:14 - error: Cannot access attribute "sum" for class "object*" +   Attribute "sum" is unknown (reportAttributeAccessIssue) + /torch/_numpy/random.py:181:14 - error: "sum" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_numpy/random.py:185:21 - error: "multinomial" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_numpy/random.py:190:15 - error: "__getitem__" method not defined on type "object*" (reportIndexIssue) +/torch/_numpy/testing/utils.py + /torch/_numpy/testing/utils.py:24:26 - error: "arange" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/testing/utils.py:24:57 - error: "empty" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/testing/utils.py:24:73 - error: "intp" is unknown import symbol (reportAttributeAccessIssue) + /torch/_numpy/testing/utils.py:2306:12 - error: Import "pytest" could not be resolved (reportMissingImports) +/torch/_ops.py + /torch/_ops.py:26:22 - error: "_dispatch_is_included_in_alias" is unknown import symbol (reportAttributeAccessIssue) + /torch/_ops.py:26:78 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/_ops.py:225:18 - error: "_dispatch_get_backend_keyset_from_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:240:22 - error: "_dispatch_autogradother_backends" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:254:17 - error: "_dispatch_has_backend_fallback" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:326:26 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:331:31 - error: "_AutoDispatchBelowAutograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:363:32 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/_ops.py:366:27 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:773:26 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:786:51 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:821:35 - error: "_DispatchOperatorHandle" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:822:25 - error: "_dispatch_find_schema_or_throw" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:841:35 - error: "DispatchKeySet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:855:23 - error: "_dispatch_has_kernel_for_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:857:60 - error: "DispatchKeySet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:858:25 - error: "_dispatch_has_kernel_for_any_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:868:50 - error: "_dispatch_has_kernel_for_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:880:23 - error: "_dispatch_has_kernel_for_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:920:41 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_ops.py:922:51 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_ops.py:928:34 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_ops.py:942:34 - error: "_dispatch_tls_is_dispatch_key_excluded" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:957:47 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_ops.py:1030:25 - error: "_dispatch_has_kernel_for_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:1031:33 - error: "_dispatch_kernel_for_dispatch_key_is_fallthrough" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:1091:41 - error: "_dispatch_keyset_full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:1107:25 - error: "_dispatch_kernel_for_dispatch_key_is_fallthrough" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:1139:42 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:1140:43 - error: "ClassType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:1217:35 - error: "_get_operation_overload" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:1226:31 - error: "_get_schema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:1271:43 - error: "_maybe_call_torch_function_for_op_packet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_ops.py:1288:26 - error: "_check_schema_allow_fake_script_object" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_prims/__init__.py + /torch/_prims/__init__.py:12:22 - error: "_get_default_device" is unknown import symbol (reportAttributeAccessIssue) + /torch/_prims/__init__.py:147:5 - warning: "slice" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/_prims/__init__.py:228:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:229:34 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:237:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:261:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:263:18 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:273:35 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:308:27 - error: "parse_schema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:310:47 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:345:41 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:348:41 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:451:27 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:454:31 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:525:21 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:532:21 - error: "acos" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:539:21 - error: "acosh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:546:21 - error: "asin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:553:21 - error: "asinh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:560:21 - error: "atan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:567:21 - error: "atanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:574:21 - error: "cos" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:581:21 - error: "cosh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:602:21 - error: "i0" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:630:21 - error: "bitwise_not" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:647:18 - error: "copysign" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:647:33 - error: "pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:659:21 - error: "ceil" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:676:21 - error: "_conj_physical" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:683:52 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:683:74 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:685:31 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:686:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:702:22 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:714:21 - error: "clone" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:722:21 - error: "digamma" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:729:21 - error: "erf" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:757:21 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:788:21 - error: "fill" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:794:21 - error: "floor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:806:21 - error: "imag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:812:21 - error: "isfinite" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:819:21 - error: "lgamma" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:826:21 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:833:21 - error: "log1p" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:840:21 - error: "log2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:847:21 - error: "log10" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:859:21 - error: "real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:865:21 - error: "reciprocal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:879:21 - error: "neg" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:886:21 - error: "round" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:893:21 - error: "rsqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:900:21 - error: "sign" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:907:21 - error: "signbit" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:914:21 - error: "sin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:921:21 - error: "sinh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:935:21 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:942:21 - error: "tan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:949:21 - error: "tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:956:21 - error: "trunc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:967:21 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:974:21 - error: "atan2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:981:21 - error: "bitwise_and" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:988:21 - error: "bitwise_or" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:995:21 - error: "bitwise_xor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1031:21 - error: "eq" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1038:21 - error: "fmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1045:21 - error: "fmin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1052:21 - error: "fmod" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1060:21 - error: "gcd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1068:21 - error: "ge" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1075:21 - error: "gt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1082:21 - error: "hypot" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1103:21 - error: "le" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1110:21 - error: "lt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1156:21 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1163:21 - error: "ne" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1170:21 - error: "nextafter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1177:21 - error: "pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1184:21 - error: "remainder" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1192:21 - error: "bitwise_left_shift" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1199:21 - error: "bitwise_right_shift" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1208:21 - error: "sub" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1240:18 - error: "as_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1246:18 - error: "as_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1524:14 - error: "_set_conj" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1535:21 - error: "conj" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1648:21 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1673:18 - error: "permute" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1714:61 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1718:53 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1775:21 - error: "as_strided_scatter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1846:18 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1879:55 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1897:18 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1897:52 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1907:21 - error: "flip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1938:21 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1947:64 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1950:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1953:14 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1961:56 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1972:20 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1989:17 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1994:49 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:1997:43 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2004:41 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2056:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2061:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2062:23 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2065:22 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2067:22 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2088:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2093:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2094:23 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2097:22 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2099:22 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2162:18 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2173:17 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2297:21 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2306:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2322:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2329:25 - error: "prod" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2332:22 - error: "prod" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2355:21 - error: "amax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2361:21 - error: "amin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2378:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2379:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2387:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2400:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2401:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2405:18 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2422:39 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2422:60 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2429:39 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2429:60 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2431:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2451:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2452:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2467:21 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2476:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2477:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2522:21 - error: "empty_permuted" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2531:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2532:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2543:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2544:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2548:18 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2575:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2576:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2590:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2591:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2595:18 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2622:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2623:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2633:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2634:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2731:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2732:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2734:31 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2755:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2756:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2758:31 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2760:15 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2790:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2791:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2792:31 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2803:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2804:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2805:31 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2807:15 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2858:18 - error: "_fft_r2c" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2898:18 - error: "_fft_c2c" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2938:18 - error: "_fft_c2r" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2960:18 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2960:42 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2960:71 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/__init__.py:2967:21 - error: "frexp" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_prims/context.py + /torch/_prims/context.py:38:33 - error: "fft" is not a known attribute of module "torch._refs" (reportAttributeAccessIssue) + /torch/_prims/context.py:39:36 - error: "linalg" is not a known attribute of module "torch._refs" (reportAttributeAccessIssue) + /torch/_prims/context.py:75:26 - error: "_conversions" is not a known attribute of module "torch._refs" (reportAttributeAccessIssue) + /torch/_prims/context.py:77:38 - error: "_conversions" is not a known attribute of module "torch._refs" (reportAttributeAccessIssue) + /torch/_prims/context.py:129:24 - error: Arguments for ParamSpec "_P@__torch_function__" are missing (reportCallIssue) + /torch/_prims/context.py:152:24 - error: Arguments for ParamSpec "_P@__torch_function__" are missing (reportCallIssue) + /torch/_prims/context.py:161:16 - error: Arguments for ParamSpec "_P@__torch_function__" are missing (reportCallIssue) +/torch/_prims/debug_prims.py + /torch/_prims/debug_prims.py:40:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/debug_prims.py:41:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_prims/rng_prims.py + /torch/_prims/rng_prims.py:7:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/_prims/rng_prims.py:17:25 - error: "_device" is unknown import symbol (reportAttributeAccessIssue) + /torch/_prims/rng_prims.py:17:34 - error: "_dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/_prims/rng_prims.py:52:18 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/rng_prims.py:54:36 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/rng_prims.py:54:58 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/rng_prims.py:58:18 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/rng_prims.py:66:19 - error: "scalar_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/rng_prims.py:66:59 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/rng_prims.py:84:22 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/rng_prims.py:101:22 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims/rng_prims.py:120:35 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_prims_common/__init__.py + /torch/_prims_common/__init__.py:48:36 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:68:46 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:73:11 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:380:11 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:381:11 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:382:11 - error: "channels_last" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:383:11 - error: "channels_last_3d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:387:49 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:397:26 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:400:6 - error: Function with declared return type "bool" must return value on all code paths +   "None" is not assignable to "bool" (reportReturnType) + /torch/_prims_common/__init__.py:403:31 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:405:31 - error: "channels_last" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:407:31 - error: "channels_last_3d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:432:40 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:582:36 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:587:40 - error: "channels_last" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:903:58 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:904:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:908:18 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1091:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1092:11 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1093:11 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1094:11 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1095:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1096:11 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1097:11 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1098:11 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1100:32 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1100:47 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1100:63 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1101:26 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1101:43 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1101:60 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1104:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1105:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1106:27 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1109:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1110:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1114:41 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1115:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1119:33 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1120:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1124:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1125:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1129:32 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1137:11 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1137:29 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1138:11 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1138:28 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1139:11 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1139:28 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1143:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1143:26 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1144:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1144:27 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1145:11 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1145:26 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1146:11 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1146:26 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1150:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1150:59 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1154:46 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1154:62 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1158:32 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1163:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1165:23 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1177:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1182:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1184:23 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1197:39 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1205:22 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1207:22 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1209:22 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1212:50 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1228:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1278:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1279:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1280:21 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1287:46 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1288:46 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1291:33 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1292:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1295:32 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1317:16 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1318:16 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1318:29 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1319:16 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1320:16 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1321:16 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1322:16 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1322:31 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1323:16 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1324:16 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1325:16 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1326:16 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1327:16 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1347:32 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1349:25 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1375:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1375:64 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1452:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1452:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1453:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1453:26 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1454:11 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1454:28 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1458:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1458:56 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1463:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1463:27 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1464:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1464:26 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1465:11 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1465:26 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1466:11 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1466:28 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1467:11 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1467:28 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1471:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1471:52 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1471:69 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1539:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1539:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1651:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1680:19 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1689:62 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1692:30 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1695:30 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1703:34 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1713:26 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1713:38 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1716:59 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1724:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1725:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1725:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1744:30 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:1752:18 - warning: TypeVar "_IntLikeT" appears only once in generic function signature +   Use "_WorksWithInt" instead (reportInvalidTypeVarUse) + /torch/_prims_common/__init__.py:2033:55 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:2034:26 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:2035:22 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:2038:22 - error: "channels_last" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:2038:62 - error: "channels_last_3d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:2040:18 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:2069:25 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:2072:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:2096:44 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:2096:61 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:2097:50 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:2101:52 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:2104:46 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:2104:64 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:2105:52 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:2166:26 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/__init__.py:2167:28 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_prims_common/wrappers.py + /torch/_prims_common/wrappers.py:32:61 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/wrappers.py:38:57 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/wrappers.py:44:55 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/wrappers.py:49:51 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/wrappers.py:191:35 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_prims_common/wrappers.py:284:18 - error: Expected two-entry tuple specifying entry name and type (reportArgumentType) + /torch/_prims_common/wrappers.py:419:16 - error: Type "_Wrapped[_P@out_wrapper, _T@out_wrapper, _P@out_wrapper, _NotImplementedType | TensorLike | tuple[Unknown, ...] | list[Unknown] | tuple[Unknown, ...]* | list[Unknown]* | ]" is not assignable to return type "(**_P@out_wrapper) -> _T@out_wrapper" +   Type "_Wrapped[_P@out_wrapper, _T@out_wrapper, _P@out_wrapper, _NotImplementedType | TensorLike | tuple[Unknown, ...] | list[Unknown] | tuple[Unknown, ...]* | list[Unknown]* | ]" is not assignable to type "(**_P@out_wrapper) -> _T@out_wrapper" +     Function return type "_NotImplementedType | TensorLike | tuple[Unknown, ...] | list[Unknown] | tuple[Unknown, ...]* | list[Unknown]* | " is incompatible with type "_T@out_wrapper" +       Type "_NotImplementedType | TensorLike | tuple[Unknown, ...] | list[Unknown] | tuple[Unknown, ...]* | list[Unknown]* | " is not assignable to type "_T@out_wrapper" (reportReturnType) +/torch/_python_dispatcher.py + /torch/_python_dispatcher.py:75:22 - error: "_dispatch_library" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) +/torch/_refs/__init__.py + /torch/_refs/__init__.py:751:18 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:767:21 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:767:31 - error: "floor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:767:43 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:767:58 - error: "sign" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:768:18 - error: "sub" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:788:37 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:794:22 - error: "logical_or" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:794:45 - error: "real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:794:67 - error: "imag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:796:22 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:797:18 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:797:44 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:810:16 - error: Type "bool" is not assignable to return type "TensorLikeType" +   "bool" is not assignable to "Tensor" (reportReturnType) + /torch/_refs/__init__.py:811:18 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:811:44 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:824:16 - error: Type "bool" is not assignable to return type "TensorLikeType" +   "bool" is not assignable to "Tensor" (reportReturnType) + /torch/_refs/__init__.py:825:18 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:825:44 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:843:22 - error: "imag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:844:18 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:844:43 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:885:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:906:22 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:906:32 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:908:19 - error: "amax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:908:30 - error: "real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:909:19 - error: "masked_fill" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:911:50 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:913:20 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:913:30 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:934:24 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:937:24 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:947:30 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:967:25 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1008:24 - error: Argument of type "Literal[1]" cannot be assigned to parameter "a" of type "TensorLikeType" in function "true_divide" +   "Literal[1]" is not assignable to "Tensor" (reportArgumentType) + /torch/_refs/__init__.py:1330:26 - error: "fill" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1334:26 - error: "exp2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1355:23 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1357:23 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1420:30 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1443:21 - error: "signbit" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1443:41 - error: "signbit" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1443:71 - error: "fmod" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1452:49 - error: Argument of type "Literal[0]" cannot be assigned to parameter "b" of type "TensorLikeType" in function "lt" +   "Literal[0]" is not assignable to "Tensor" (reportArgumentType) + /torch/_refs/__init__.py:1452:59 - error: Argument of type "Literal[0]" cannot be assigned to parameter "b" of type "TensorLikeType" in function "lt" +   "Literal[0]" is not assignable to "Tensor" (reportArgumentType) + /torch/_refs/__init__.py:1453:34 - error: Argument of type "Literal[0]" cannot be assigned to parameter "b" of type "TensorLikeType" in function "ne" +   "Literal[0]" is not assignable to "Tensor" (reportArgumentType) + /torch/_refs/__init__.py:1459:36 - error: Argument of type "float" cannot be assigned to parameter "b" of type "TensorLikeType" in function "gt" +   "float" is not assignable to "Tensor" (reportArgumentType) + /torch/_refs/__init__.py:1466:31 - error: Argument of type "Literal[0]" cannot be assigned to parameter "b" of type "TensorLikeType" in function "ne" +   "Literal[0]" is not assignable to "Tensor" (reportArgumentType) + /torch/_refs/__init__.py:1469:24 - error: Argument of type "Literal[0]" cannot be assigned to parameter "b" of type "TensorLikeType" in function "ne" +   "Literal[0]" is not assignable to "Tensor" (reportArgumentType) + /torch/_refs/__init__.py:1502:31 - error: "frexp" is not a known attribute of module "torch.return_types" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1536:27 - error: "eq" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1537:27 - error: "logical_or" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1537:44 - error: "lt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1537:64 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1538:28 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1539:20 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1621:49 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1622:49 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1624:42 - error: Argument of type "float" cannot be assigned to parameter "b" of type "TensorLikeType" in function "mul" +   "float" is not assignable to "Tensor" (reportArgumentType) + /torch/_refs/__init__.py:1644:38 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1644:50 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1646:49 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1647:49 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1649:15 - error: "gcd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1651:15 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1652:17 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1671:18 - error: "real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1671:35 - error: "real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1672:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1673:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1674:22 - error: "logical_and" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1675:15 - error: "logical_not" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1675:33 - error: "isfinite" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1675:48 - error: "real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1675:65 - error: "real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1675:82 - error: "real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1679:30 - error: "real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1680:26 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1681:39 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1681:49 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1681:67 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1683:30 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1684:46 - error: "log1p" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1684:58 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1687:26 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1690:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1690:54 - error: "log1p" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1690:66 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1705:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1706:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1707:22 - error: "logical_and" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1707:40 - error: "isinf" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1709:27 - error: "log1p" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1709:39 - error: "exp2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1710:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1718:13 - error: Type "bool" is not assignable to declared type "TensorLikeType" +   "bool" is not assignable to "Tensor" (reportAssignmentType) + /torch/_refs/__init__.py:1720:13 - error: Type "bool" is not assignable to declared type "TensorLikeType" +   "bool" is not assignable to "Tensor" (reportAssignmentType) + /torch/_refs/__init__.py:1736:13 - error: Type "bool" is not assignable to declared type "TensorLikeType" +   "bool" is not assignable to "Tensor" (reportAssignmentType) + /torch/_refs/__init__.py:1738:13 - error: Type "bool" is not assignable to declared type "TensorLikeType" +   "bool" is not assignable to "Tensor" (reportAssignmentType) + /torch/_refs/__init__.py:1748:13 - error: Type "bool" is not assignable to declared type "TensorLikeType" +   "bool" is not assignable to "Tensor" (reportAssignmentType) + /torch/_refs/__init__.py:1750:13 - error: Type "bool" is not assignable to declared type "TensorLikeType" +   "bool" is not assignable to "Tensor" (reportAssignmentType) + /torch/_refs/__init__.py:1820:18 - error: "sub" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1903:17 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1903:29 - error: "eq" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1903:48 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1903:61 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1904:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1904:30 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:1997:25 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2005:25 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2060:29 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2074:48 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2074:70 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2104:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2106:28 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2107:35 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2120:39 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2133:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2134:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2137:35 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2152:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2155:35 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2158:25 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2169:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2172:35 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2188:35 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2211:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2216:67 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2259:20 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2278:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2373:20 - error: "logical_not" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2373:38 - error: "any" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2373:48 - error: "logical_not" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2375:25 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2376:40 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2388:43 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2395:25 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2396:57 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2407:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2414:27 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2450:18 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2466:27 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2587:19 - error: "var" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2588:19 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2629:34 - error: Argument of type "Any | Literal[1]" cannot be assigned to parameter "b" of type "TensorLikeType" in function "true_divide" +   Type "Any | Literal[1]" is not assignable to type "TensorLikeType" +     "Literal[1]" is not assignable to "Tensor" (reportArgumentType) + /torch/_refs/__init__.py:2656:27 - error: "var_mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2657:19 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2723:26 - error: "outer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2723:64 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2725:26 - error: "logical_or" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2727:23 - error: "outer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2727:61 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2740:34 - error: "outer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2742:48 - error: "outer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2750:49 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2753:48 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2755:24 - error: Cannot access attribute "ndim" for class "Sequence[TensorLikeType]" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2756:37 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/_refs/__init__.py:2774:49 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2777:48 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2780:24 - error: Cannot access attribute "ndim" for class "Sequence[TensorLikeType]" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2781:37 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/_refs/__init__.py:2789:49 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2792:48 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2795:24 - error: Cannot access attribute "ndim" for class "Sequence[TensorLikeType]" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2796:37 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/_refs/__init__.py:2825:18 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:2900:41 - error: "ndim" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/_refs/__init__.py:2981:22 - error: "conj_physical" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3044:20 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3052:44 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3072:40 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3072:62 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3075:32 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3083:18 - error: "clone" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3097:26 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3289:30 - error: "var_mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3292:18 - error: "rsqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3300:19 - error: "unsqueeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3329:28 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3334:30 - error: "var_mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3337:18 - error: "rsqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3339:33 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3345:35 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3371:18 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3372:18 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3454:20 - error: "fake_impls" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3503:25 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3593:28 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3623:46 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3700:25 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3815:22 - error: "clone" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3829:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3854:27 - error: "clone" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3981:26 - error: "as_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:3986:26 - error: "as_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4046:26 - error: "roll" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4046:37 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4057:34 - error: "roll" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4057:56 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/_refs/__init__.py:4058:22 - error: "roll" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4063:11 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/_refs/__init__.py:4067:17 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4068:38 - error: "fmod" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4094:22 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4094:38 - error: "flip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4096:22 - error: "flip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4098:22 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4098:38 - error: "flip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4100:44 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4124:21 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4128:18 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4136:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4192:19 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4192:50 - error: "tensor_split" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4198:40 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4247:40 - error: Cannot access attribute "ndim" for class "bool" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4247:40 - error: Cannot access attribute "ndim" for class "int" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4247:40 - error: Cannot access attribute "ndim" for class "float" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4247:40 - error: Cannot access attribute "ndim" for class "complex" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4250:23 - error: "scalar_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4263:19 - error: Cannot access attribute "expand" for class "bool" +   Attribute "expand" is unknown (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4263:19 - error: Cannot access attribute "expand" for class "int" +   Attribute "expand" is unknown (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4263:19 - error: Cannot access attribute "expand" for class "float" +   Attribute "expand" is unknown (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4263:19 - error: Cannot access attribute "expand" for class "complex" +   Attribute "expand" is unknown (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4264:59 - error: "index_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4274:29 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4290:40 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4311:22 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4398:47 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4548:22 - error: "diag_embed" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4550:22 - error: "diagonal_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4648:19 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4650:19 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4658:21 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4658:67 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4659:21 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4660:65 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4701:22 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4702:23 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4705:26 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4708:18 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4750:18 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4781:18 - error: "permute" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4802:29 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4812:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4822:16 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4826:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4835:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4846:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4905:22 - error: "gather" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4917:22 - error: "gather" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4923:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4924:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4924:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4928:26 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4928:48 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4931:32 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4937:31 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4939:33 - error: "channels_last_3d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4940:59 - error: Argument of type "tuple[int, ...]" cannot be assigned to parameter "shape" of type "Sequence[_IntLikeT@make_channels_last_3d_strides_for]" in function "make_channels_last_3d_strides_for" +   "tuple[int, ...]" is not assignable to "Sequence[_IntLikeT@make_channels_last_3d_strides_for]" +     Type parameter "_T_co@Sequence" is covariant, but "int" is not a subtype of "_IntLikeT@make_channels_last_3d_strides_for" +       Type "int" is not assignable to type "_WorksWithInt" +         "int" is incompatible with protocol "_WorksWithInt" +           "__add__" is an incompatible type +           "__radd__" is an incompatible type +           "__mul__" is an incompatible type +           "__rmul__" is an incompatible type (reportArgumentType) + /torch/_refs/__init__.py:4943:36 - error: "channels_last" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4946:59 - error: Argument of type "tuple[int, ...]" cannot be assigned to parameter "shape" of type "Sequence[_IntLikeT@make_channels_last_2d_strides_for]" in function "make_channels_last_2d_strides_for" +   "tuple[int, ...]" is not assignable to "Sequence[_IntLikeT@make_channels_last_2d_strides_for]" +     Type parameter "_T_co@Sequence" is covariant, but "int" is not a subtype of "_IntLikeT@make_channels_last_2d_strides_for" +       Type "int" is not assignable to type "_WorksWithInt" +         "int" is incompatible with protocol "_WorksWithInt" +           "__add__" is an incompatible type +           "__radd__" is an incompatible type +           "__mul__" is an incompatible type +           "__rmul__" is an incompatible type (reportArgumentType) + /torch/_refs/__init__.py:4948:18 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4963:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4964:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4964:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4984:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4985:28 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:4993:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5009:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5010:28 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5022:18 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5036:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5037:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5037:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5045:23 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5047:18 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5049:33 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5064:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5065:28 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5074:18 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5076:46 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5089:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5090:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5090:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5098:23 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5100:18 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5102:32 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5117:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5118:28 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5127:18 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5129:45 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5145:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5146:28 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5154:18 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5168:35 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5178:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5180:28 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5183:26 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5183:48 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5189:31 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5190:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5205:18 - error: "empty_permuted" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5223:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5224:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5224:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5231:20 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5269:23 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5269:56 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5279:23 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5300:21 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5306:15 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5337:19 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5338:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5355:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5357:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5357:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5366:54 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5372:50 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5376:19 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5386:32 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5387:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5418:15 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5430:17 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5446:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5448:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5448:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5453:23 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5476:19 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5481:24 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5634:20 - error: "permute" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5646:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5648:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5648:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5657:19 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5658:20 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5669:49 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5670:34 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5670:47 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5670:61 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5671:25 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5673:18 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5682:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5683:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5683:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5697:25 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5700:21 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5701:21 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5704:25 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5705:39 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5707:21 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5715:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5727:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5728:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5728:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5737:54 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5754:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5755:28 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5759:26 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5759:48 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5761:15 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5778:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5779:28 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5783:26 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5783:48 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5785:18 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5787:46 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5802:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5803:28 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5807:26 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5807:48 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5809:18 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5811:45 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5825:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5827:28 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5851:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5852:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5852:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5859:54 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5873:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5883:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5906:48 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5959:15 - error: "all" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5959:25 - error: "isclose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:5990:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6016:18 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6016:28 - error: "diag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6042:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6043:17 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6059:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6060:17 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6095:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6096:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6102:25 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6102:38 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6115:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6115:32 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6116:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6116:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6126:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6130:52 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6132:23 - error: "floor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6132:40 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6133:23 - error: "floor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6142:18 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6143:16 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6143:51 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6175:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6175:32 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6176:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6176:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6186:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6195:52 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6197:23 - error: "floor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6197:40 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6198:23 - error: "floor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6206:18 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6207:16 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6207:51 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6225:53 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6226:23 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6226:53 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6229:22 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6234:19 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6234:63 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6248:19 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6251:29 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6251:54 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6254:25 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6257:25 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6266:27 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6543:18 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6544:17 - error: "unsqueeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6545:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6746:23 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6761:22 - error: "scalar_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6766:15 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/__init__.py:6768:20 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_refs/_conversions.py + /torch/_refs/_conversions.py:40:53 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:42:52 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:42:74 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:50:54 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:52:46 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:54:46 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:56:52 - error: "cdouble" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:58:50 - error: "cfloat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:60:48 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:62:46 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:64:50 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:66:48 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:68:46 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:70:44 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:72:46 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:74:48 - error: "short" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:82:29 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:82:44 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:82:59 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:116:20 - error: "complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:117:31 - error: "cos" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/_conversions.py:118:31 - error: "sin" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_refs/fft.py + /torch/_refs/fft.py:59:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/fft.py:59:62 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/fft.py:60:12 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/fft.py:67:23 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/fft.py:69:28 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/fft.py:69:43 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/fft.py:73:36 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/fft.py:115:18 - error: "constant_pad_nd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/fft.py:139:23 - error: "conj" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/fft.py:171:38 - error: "conj" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/fft.py:586:18 - error: "roll" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/fft.py:593:18 - error: "roll" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_refs/linalg/__init__.py + /torch/_refs/linalg/__init__.py:39:45 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/linalg/__init__.py:39:68 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/linalg/__init__.py:84:17 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/linalg/__init__.py:97:18 - error: "diagonal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/linalg/__init__.py:136:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/linalg/__init__.py:157:22 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/linalg/__init__.py:157:32 - error: "ne" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/linalg/__init__.py:165:36 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/linalg/__init__.py:179:23 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/linalg/__init__.py:189:23 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/linalg/__init__.py:214:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/linalg/__init__.py:228:19 - error: Index 1 is out of range for type tuple[int] (reportGeneralTypeIssues) + /torch/_refs/linalg/__init__.py:230:79 - error: Index 1 is out of range for type tuple[int] (reportGeneralTypeIssues) + /torch/_refs/linalg/__init__.py:252:51 - error: Index 1 is out of range for type tuple[int] (reportGeneralTypeIssues) + /torch/_refs/linalg/__init__.py:253:28 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/linalg/__init__.py:256:48 - error: "unsqueeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/linalg/__init__.py:270:33 - error: "amax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/linalg/__init__.py:270:62 - error: "amin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/linalg/__init__.py:276:51 - error: Index 1 is out of range for type tuple[int] (reportGeneralTypeIssues) + /torch/_refs/linalg/__init__.py:280:48 - error: "unsqueeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/linalg/__init__.py:284:13 - error: Expression with type "tuple[int] | tuple[int, ...]" cannot be assigned to target tuple +   Type "tuple[int]" is incompatible with target tuple +     Tuple size mismatch; expected 2 but received 1 (reportAssignmentType) + /torch/_refs/linalg/__init__.py:302:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_refs/nn/functional/__init__.py + /torch/_refs/nn/functional/__init__.py:94:56 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:116:22 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:130:15 - error: "logical_not" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:191:21 - error: "expm1" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:193:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:213:22 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:259:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:259:66 - error: "expm1" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:277:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:277:30 - error: "le" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:346:18 - error: "native_group_norm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:368:18 - error: "native_layer_norm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:392:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:392:30 - error: "gt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:392:49 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:409:22 - error: "tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:429:25 - error: "expm1" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:431:26 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:440:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:455:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:497:21 - error: "log1p" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:497:33 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:499:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:510:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:510:30 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:528:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:528:30 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:528:56 - error: "sign" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:547:22 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:549:22 - error: "mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:598:18 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:629:22 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:631:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:641:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:666:18 - error: "clamp_min" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:687:18 - error: "pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:701:26 - error: "clamp_min" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:702:27 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:703:25 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:727:25 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:728:33 - error: "eq" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:746:33 - error: "scalar_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:748:15 - error: "scalar_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:752:28 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:765:29 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:772:25 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:776:18 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:781:22 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:784:22 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:784:40 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:824:26 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:826:26 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:828:26 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:856:19 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:857:20 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:863:22 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:893:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:911:22 - error: "tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:934:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:966:46 - error: "pairwise_distance" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:1002:35 - error: "pairwise_distance" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:1004:16 - error: Object of type "None" cannot be called (reportOptionalCall) + /torch/_refs/nn/functional/__init__.py:1005:16 - error: Object of type "None" cannot be called (reportOptionalCall) + /torch/_refs/nn/functional/__init__.py:1012:21 - error: Object of type "None" cannot be called (reportOptionalCall) + /torch/_refs/nn/functional/__init__.py:1013:26 - error: "minimum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:1014:18 - error: "clamp_min" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:1044:34 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:1078:37 - error: "tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:1081:37 - error: "erf" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:1111:22 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:1113:39 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:1117:28 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:1117:63 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:1163:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:1194:18 - error: "tensor_split" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:1196:22 - error: "sigmoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:1223:21 - error: "mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:1224:26 - error: "diag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:1225:19 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:1225:30 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/nn/functional/__init__.py:1228:15 - error: "triu_indices" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_refs/special/__init__.py + /torch/_refs/special/__init__.py:70:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:71:15 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:73:15 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:73:39 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:73:53 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:88:27 - error: "sigmoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:122:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:124:15 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:125:15 - error: "log1p" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:125:28 - error: "erfc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:140:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:140:45 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:141:18 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:141:28 - error: "true_divide" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:141:52 - error: "sub" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:167:17 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:167:29 - error: "eq" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:167:48 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:167:61 - error: "log1p" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:168:18 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:168:30 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:179:21 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:180:18 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:180:28 - error: "lgamma" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:193:23 - error: "erf" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:211:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_refs/special/__init__.py:221:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_size_docs.py + /torch/_size_docs.py:4:22 - error: "_add_docstr" is unknown import symbol (reportAttributeAccessIssue) + /torch/_size_docs.py:8:33 - error: "Size" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) +/torch/_sources.py + /torch/_sources.py:8:22 - error: "ErrorReport" is unknown import symbol (reportAttributeAccessIssue) + /torch/_sources.py:9:6 - warning: Import "torch._C._jit_tree_views" could not be resolved from source (reportMissingModuleSource) +/torch/_storage_docs.py + /torch/_storage_docs.py:5:22 - error: "_add_docstr" is unknown import symbol (reportAttributeAccessIssue) +/torch/_streambase.py + /torch/_streambase.py:11:25 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_streambase.py:19:24 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_strobelight/compile_time_profiler.py + /torch/_strobelight/compile_time_profiler.py:148:25 - error: Argument of type "set[str | None]" cannot be assigned to parameter "sample_tags" of type "list[str] | None" in function "__init__" +   Type "set[str | None]" is not assignable to type "list[str] | None" +     "set[str | None]" is not assignable to "list[str]" +     "set[str | None]" is not assignable to "None" (reportArgumentType) +/torch/_subclasses/complex_tensor/_core.py + /torch/_subclasses/complex_tensor/_core.py:116:24 - error: "real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_core.py:117:24 - error: "imag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_core.py:117:65 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_core.py:121:22 - error: "complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_subclasses/complex_tensor/_ops/aten.py + /torch/_subclasses/complex_tensor/_ops/aten.py:65:55 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:124:5 - error: "simple_op" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_subclasses/complex_tensor/_ops/aten.py:199:20 - error: "prod" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:199:31 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:200:21 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:200:31 - error: "angle" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:201:24 - error: "cos" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:202:24 - error: "sin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:217:20 - error: "cumprod" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:217:34 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:218:21 - error: "cumsum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:218:34 - error: "angle" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:219:24 - error: "cos" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:220:24 - error: "sin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:230:20 - error: "hypot" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:237:18 - error: "atan2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:243:21 - error: "acosh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:246:25 - error: "signbit" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:247:32 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:247:65 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:253:22 - error: "asinh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:262:21 - error: "atanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:286:15 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:286:33 - error: Argument of type "int" cannot be assigned to parameter "real" of type "Tensor" in function "__new__" +   "int" is not assignable to "Tensor" (reportArgumentType) + /torch/_subclasses/complex_tensor/_ops/aten.py:286:52 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:286:70 - error: Argument of type "int" cannot be assigned to parameter "real" of type "Tensor" in function "__new__" +   "int" is not assignable to "Tensor" (reportArgumentType) + /torch/_subclasses/complex_tensor/_ops/aten.py:304:15 - error: "cosh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:304:31 - error: "cos" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:305:15 - error: "sinh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:305:31 - error: "sin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:312:21 - error: "sinh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:322:15 - error: "sinh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:322:31 - error: "cos" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:323:15 - error: "cosh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:323:31 - error: "sin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:330:21 - error: "tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:343:16 - error: "cosh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:343:34 - error: "cos" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:344:19 - error: "sinh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:347:20 - error: "sin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:356:16 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:357:20 - error: "cos" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:358:20 - error: "sin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:367:16 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:368:20 - error: "cos" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:369:20 - error: "sin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:376:16 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:376:26 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:377:16 - error: "angle" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:391:18 - error: "any" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:391:50 - error: "any" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:397:18 - error: "any" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:397:50 - error: "any" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:404:18 - error: "eq" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:404:56 - error: "eq" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:411:18 - error: "ne" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:411:56 - error: "ne" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:417:18 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:417:36 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:423:18 - error: "isinf" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:423:36 - error: "isinf" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:429:18 - error: "isfinite" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:429:39 - error: "isfinite" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:440:22 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:441:23 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:449:25 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:450:25 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:451:25 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:452:25 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:501:5 - error: "err_op" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_subclasses/complex_tensor/_ops/aten.py:510:19 - error: "masked_scatter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:511:19 - error: "masked_scatter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:521:19 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:522:19 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:532:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:538:22 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:544:19 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:545:19 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:552:50 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:584:5 - error: "like_op" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_subclasses/complex_tensor/_ops/aten.py:597:19 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:598:19 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:607:22 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:620:27 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:620:38 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:621:35 - error: "angle" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:623:35 - error: "cos" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:624:35 - error: "sin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:634:28 - error: "rsqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:634:40 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:635:40 - error: "angle" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:637:36 - error: "cos" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:638:36 - error: "sin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:648:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:652:40 - error: "mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:663:12 - error: Type "bool" is not assignable to return type "Tensor" +   "bool" is not assignable to "Tensor" (reportReturnType) + /torch/_subclasses/complex_tensor/_ops/aten.py:686:18 - error: "logical_not" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:692:18 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:697:43 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:727:18 - error: "all" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:728:15 - error: "isclose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:735:15 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:736:15 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:752:36 - error: "_neg_view" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:835:18 - error: "var" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:835:56 - error: "var" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:845:20 - error: "scatter_add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:846:20 - error: "scatter_add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:890:18 - error: "diagonal_scatter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:893:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:893:49 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/aten.py:894:33 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_subclasses/complex_tensor/_ops/common.py + /torch/_subclasses/complex_tensor/_ops/common.py:25:11 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:25:29 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:26:11 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:26:28 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:27:11 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:27:28 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:34:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:34:26 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:35:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:35:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:36:11 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:36:28 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:61:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:65:5 - error: Overload 2 for "promote_tensors" will never be used because its parameters overlap overload 1 (reportOverlappingOverload) + /torch/_subclasses/complex_tensor/_ops/common.py:67:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:72:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:81:28 - error: "promote_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:85:59 - error: "asarray" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:167:27 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:185:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:185:56 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:237:50 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/complex_tensor/_ops/common.py:317:56 - error: Argument expression after ** must be a mapping with a "str" key type (reportCallIssue) +/torch/_subclasses/complex_tensor/_ops/prims.py + /torch/_subclasses/complex_tensor/_ops/prims.py:18:62 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_subclasses/fake_impls.py + /torch/_subclasses/fake_impls.py:42:22 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_subclasses/fake_impls.py:143:73 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_impls.py:184:19 - error: Argument of type "list[Unknown]" cannot be assigned to parameter "run_impl_check" of type "((OpOverload[..., Any]) -> bool) | OpOverload[..., Any]" in function "register_op_impl" +   Type "list[Unknown]" is not assignable to type "((OpOverload[..., Any]) -> bool) | OpOverload[..., Any]" +     Type "list[Unknown]" is not assignable to type "(OpOverload[..., Any]) -> bool" +     "list[Unknown]" is not assignable to "OpOverload[..., Any]" (reportArgumentType) + /torch/_subclasses/fake_impls.py:293:24 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_impls.py:940:38 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_impls.py:1101:5 - error: Argument of type "list[Unknown]" cannot be assigned to parameter "run_impl_check" of type "((OpOverload[..., Any]) -> bool) | OpOverload[..., Any]" in function "register_op_impl" +   Type "list[Unknown]" is not assignable to type "((OpOverload[..., Any]) -> bool) | OpOverload[..., Any]" +     Type "list[Unknown]" is not assignable to type "(OpOverload[..., Any]) -> bool" +     "list[Unknown]" is not assignable to "OpOverload[..., Any]" (reportArgumentType) + /torch/_subclasses/fake_impls.py:1119:19 - error: Argument of type "list[OpOverload[..., Any]]" cannot be assigned to parameter "run_impl_check" of type "((OpOverload[..., Any]) -> bool) | OpOverload[..., Any]" in function "register_op_impl" +   Type "list[OpOverload[..., Any]]" is not assignable to type "((OpOverload[..., Any]) -> bool) | OpOverload[..., Any]" +     Type "list[OpOverload[..., Any]]" is not assignable to type "(OpOverload[..., Any]) -> bool" +     "list[OpOverload[..., Any]]" is not assignable to "OpOverload[..., Any]" (reportArgumentType) +/torch/_subclasses/fake_tensor.py + /torch/_subclasses/fake_tensor.py:34:6 - warning: Import "torch._C._functorch" could not be resolved from source (reportMissingModuleSource) + /torch/_subclasses/fake_tensor.py:88:22 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:162:20 - error: "_unset_dispatch_mode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:162:50 - error: "_TorchDispatchModeKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:167:22 - error: "_set_dispatch_mode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:211:42 - error: "_is_functional_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:212:34 - error: "_functionalization_reapply_views_tls" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:213:30 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:216:30 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:236:42 - error: "_is_functional_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:237:34 - error: "_functionalization_reapply_views_tls" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:238:30 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:241:30 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:247:51 - error: "_SchemaInfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:248:21 - error: "_SchemaInfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:260:28 - error: "_decomp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:277:31 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:283:22 - error: "_is_functional_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:370:41 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:395:68 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:408:21 - error: Argument of type "object" cannot be assigned to parameter "elem" of type "Tensor" in function "__new__" +   "object" is not assignable to "Tensor" (reportArgumentType) + /torch/_subclasses/fake_tensor.py:441:23 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:441:36 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:441:49 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:441:62 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:441:74 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:481:38 - error: Argument of type "StatefulSymbolicContext | SymbolicContext | None" cannot be assigned to parameter "symbolic_context" of type "StatelessSymbolicContext[..., Unknown] | None" in function "create_unspecified_symbol" +   Type "StatefulSymbolicContext | SymbolicContext | None" is not assignable to type "StatelessSymbolicContext[..., Unknown] | None" +     Type "SymbolicContext" is not assignable to type "StatelessSymbolicContext[..., Unknown] | None" +       "SymbolicContext" is not assignable to "StatelessSymbolicContext[..., Unknown]" +       "SymbolicContext" is not assignable to "None" (reportArgumentType) + /torch/_subclasses/fake_tensor.py:485:37 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:491:39 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:507:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:509:39 - error: "DispatchKeySet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:527:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:531:19 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:532:30 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:533:24 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:543:28 - error: "_meta_in_tls_dispatch_include" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:546:19 - error: "_DisableTorchDispatch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:550:23 - error: "_PreserveDispatchKeyGuard" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:551:22 - error: "_set_meta_in_tls_dispatch_include" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:561:21 - error: "_should_allow_numbers_as_tensors" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:655:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:677:35 - error: "DispatchKeySet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:681:26 - error: "_TorchDispatchModeKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:685:31 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:687:26 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:692:31 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:727:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:731:39 - error: "DispatchKeySet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:732:10 - error: "Self" is not valid in this context (reportGeneralTypeIssues) + /torch/_subclasses/fake_tensor.py:741:22 - error: "_set_throw_on_mutable_data_ptr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:743:22 - error: "_set_warn_deprecated_on_mutable_data_ptr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:746:53 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:746:72 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:768:26 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:773:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:777:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:818:23 - error: "_export" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:840:30 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:885:40 - error: "_get_dispatch_mode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:886:22 - error: "_TorchDispatchModeKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:904:22 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:924:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:971:40 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1000:35 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1037:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1040:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1041:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1042:35 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1065:54 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1096:41 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1334:35 - error: "_TorchDispatchModeKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1374:49 - error: "hpu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1385:9 - error: Method "__torch_dispatch__" overrides class "TorchDispatchMode" in an incompatible manner +   Parameter 5 type mismatch: base parameter is type "Unknown | None", override parameter is type "Mapping[str, object]" +     Type "Unknown | None" is not assignable to type "Mapping[str, object]" +       "None" is not assignable to "Mapping[str, object]" (reportIncompatibleMethodOverride) + /torch/_subclasses/fake_tensor.py:1394:22 - error: "_get_dispatch_mode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1394:50 - error: "_TorchDispatchModeKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1409:51 - error: "_only_lift_cpu_tensors" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1410:22 - error: "_set_only_lift_cpu_tensors" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1415:22 - error: "_ensureCUDADeviceGuardSet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1417:41 - error: "_unset_dispatch_mode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1425:22 - error: "_set_dispatch_mode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1446:26 - error: "_set_dispatch_mode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1448:26 - error: "_set_only_lift_cpu_tensors" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1581:31 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1586:19 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1589:22 - error: "_get_default_device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1592:19 - error: "is_inference_mode_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1648:18 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1651:18 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1664:31 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1665:31 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1672:18 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1684:31 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1690:38 - error: "_dispatch_has_kernel_for_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1691:35 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1875:34 - error: "_dispatch_key_set" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1876:28 - error: "_dispatch_key_set" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:1964:30 - error: Argument of type "tuple[_DispatchCacheEntryOutputInfo, ...]" cannot be assigned to parameter "output_infos" of type "tuple[_DispatchCacheEntryOutputInfo]" in function "__init__" +   "tuple[_DispatchCacheEntryOutputInfo, ...]" is not assignable to "tuple[_DispatchCacheEntryOutputInfo]" +     Tuple size mismatch; expected 1 but received indeterminate (reportArgumentType) + /torch/_subclasses/fake_tensor.py:2012:14 - error: Union requires two or more type arguments (reportInvalidTypeArguments) + /torch/_subclasses/fake_tensor.py:2031:27 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2041:22 - error: "_set_conj" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2043:22 - error: "_set_neg" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2210:26 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2229:30 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2244:22 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2305:22 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2469:23 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2470:23 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2526:49 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2631:64 - error: Argument of type "Eq" cannot be assigned to parameter "k" of type "Symbol" in function "set_unbacked_var_to_val" +   "Equality" is not assignable to "Symbol" (reportArgumentType) + /torch/_subclasses/fake_tensor.py:2635:30 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2639:26 - error: "real_args" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_subclasses/fake_tensor.py:2639:37 - error: "real_kwargs" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_subclasses/fake_tensor.py:2648:26 - error: "real_args" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_subclasses/fake_tensor.py:2648:37 - error: "real_kwargs" is possibly unbound (reportPossiblyUnboundVariable) + /torch/_subclasses/fake_tensor.py:2729:26 - error: Cannot access attribute "prim_meta_impl" for class "OpOverload[..., Any]" +   Attribute "prim_meta_impl" is unknown (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2729:26 - error: Cannot access attribute "prim_meta_impl" for class "" +   Attribute "prim_meta_impl" is unknown (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2757:42 - error: "simple_registry" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2762:38 - error: "fake_impl" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2763:37 - error: "fake_impl" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2803:31 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2883:52 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2917:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2975:29 - error: "source" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:2979:21 - error: Argument of type "SymInt" cannot be assigned to parameter "val" of type "int" in function "create_symbol" +   "SymInt" is not assignable to "int" (reportArgumentType) + /torch/_subclasses/fake_tensor.py:2982:18 - error: Argument of type "SymInt" cannot be assigned to parameter "hint" of type "int | None" in function "create_symintnode" +   Type "SymInt" is not assignable to type "int | None" +     "SymInt" is not assignable to "int" +     "SymInt" is not assignable to "None" (reportArgumentType) + /torch/_subclasses/fake_tensor.py:2985:16 - error: Type "IntLikeType" is not assignable to return type "SymInt" +   Type "IntLikeType" is not assignable to type "SymInt" +     "int" is not assignable to "SymInt" (reportReturnType) + /torch/_subclasses/fake_tensor.py:3008:18 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:3124:27 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:3149:14 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:3160:29 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:3236:29 - error: "TensorBase" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:3253:27 - error: "DisableTorchFunctionSubclass" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:3257:54 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:3266:22 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:3371:24 - error: "fake_impl" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/_subclasses/fake_tensor.py:3397:22 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_subclasses/fake_utils.py + /torch/_subclasses/fake_utils.py:130:63 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_utils.py:157:28 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_utils.py:191:17 - error: "_has_storage" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/fake_utils.py:197:11 - error: "_prims" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_subclasses/functional_tensor.py + /torch/_subclasses/functional_tensor.py:13:22 - error: "_functionalization_reapply_views_tls" is unknown import symbol (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:66:26 - error: "_TorchDispatchModeKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:75:37 - error: "_additional_keys_to_prop_for_wrapper_tensors" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:76:18 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:242:22 - error: "_is_functional_tensor_base" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:245:15 - error: "_functionalize_replace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:248:15 - error: "_functionalize_commit_update" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:251:15 - error: "_functionalize_sync" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:254:15 - error: "_functionalize_mark_mutation_hidden_from_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:282:52 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:283:52 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:284:56 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:285:52 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:286:54 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:287:53 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:288:52 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:289:52 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:290:51 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:291:52 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:712:32 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:719:28 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:771:25 - error: "_ExcludeDispatchKeyGuard" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:772:22 - error: "DispatchKeySet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:772:46 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:776:15 - error: "_functionalize_replace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:779:15 - error: "_functionalize_commit_update" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:782:15 - error: "_functionalize_sync" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:785:15 - error: "_functionalize_mark_mutation_hidden_from_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:822:15 - error: "_functionalize_replace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:825:15 - error: "_functionalize_commit_update" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:828:15 - error: "_functionalize_sync" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:831:15 - error: "_functionalize_mark_mutation_hidden_from_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/functional_tensor.py:836:22 - error: "_from_functional_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_subclasses/meta_utils.py + /torch/_subclasses/meta_utils.py:27:6 - warning: Import "torch._C._autograd" could not be resolved from source (reportMissingModuleSource) + /torch/_subclasses/meta_utils.py:28:6 - warning: Import "torch._C._functorch" could not be resolved from source (reportMissingModuleSource) + /torch/_subclasses/meta_utils.py:51:10 - warning: Import "torch._C._functorch" could not be resolved from source (reportMissingModuleSource) + /torch/_subclasses/meta_utils.py:177:62 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:180:47 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:182:15 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:183:15 - error: "sparse_csc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:184:15 - error: "sparse_bsr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:185:15 - error: "sparse_bsc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:292:31 - error: "_is_functional_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:343:27 - error: "_from_functional_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:347:42 - error: "_functionalization_reapply_views_tls" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:355:42 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:360:23 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:433:51 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:433:69 - error: "sparse_bsr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:438:51 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:438:69 - error: "sparse_bsr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:443:51 - error: "sparse_csc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:443:69 - error: "sparse_bsc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:448:51 - error: "sparse_csc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:448:69 - error: "sparse_bsc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:462:26 - error: "_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:476:41 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:543:34 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:582:74 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:587:25 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:607:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:608:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:626:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:626:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:721:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:721:51 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:721:64 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:836:31 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:836:57 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:858:38 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:864:26 - error: "_functions" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:902:29 - error: "_dispatch_tls_local_exclude_set" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:903:22 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:937:24 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:939:26 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:962:28 - error: Type "tuple[tuple[IntLikeType, ...], tuple[IntLikeType, ...], IntLikeType]" is not assignable to return type "tuple[tuple[int, ...], tuple[int, ...], int]" +   "tuple[tuple[IntLikeType, ...], tuple[IntLikeType, ...], IntLikeType]" is not assignable to "tuple[tuple[int, ...], tuple[int, ...], int]" +     Tuple entry 1 is incorrect type +       "tuple[IntLikeType, ...]" is not assignable to "tuple[int, ...]" +         Tuple entry 1 is incorrect type +           Type "IntLikeType" is not assignable to type "int" (reportReturnType) + /torch/_subclasses/meta_utils.py:976:30 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:978:26 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:986:26 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1000:26 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1002:36 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1034:30 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1037:31 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1059:42 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1107:27 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1108:42 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1110:23 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1119:26 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1127:42 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1132:35 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1188:26 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1273:34 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1343:42 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1373:43 - error: "sparse_bsr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1373:61 - error: "sparse_bsc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1381:43 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1381:61 - error: "sparse_bsr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1435:39 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1444:51 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1483:40 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1492:58 - error: "_DisableFuncTorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1499:44 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1503:50 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1535:47 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1569:31 - error: "_to_functional_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1598:39 - error: "source" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1603:46 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1603:71 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1616:44 - error: "_dispatch_tls_is_dispatch_key_excluded" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1617:34 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1619:30 - error: "_dispatch_tls_set_dispatch_key_excluded" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1620:34 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1626:70 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1629:39 - error: "view_as_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1687:34 - error: "_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1689:34 - error: "_dispatch_tls_set_dispatch_key_excluded" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1690:38 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1720:43 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1732:55 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1839:26 - error: "_set_conj" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1841:26 - error: "_set_neg" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1948:44 - error: "_dispatch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/meta_utils.py:1952:27 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_subclasses/schema_check_mode.py + /torch/_subclasses/schema_check_mode.py:19:27 - error: "_SchemaArgument" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/schema_check_mode.py:20:26 - error: "_SchemaArgType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_subclasses/schema_check_mode.py:21:23 - error: "_SchemaInfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_tensor.py + /torch/_tensor.py:34:47 - error: "TensorBase" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_tensor.py:110:23 - error: "TensorBase" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_tensor.py:804:17 - error: "_add_docstr" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_tensor.py:805:12 - error: "TensorBase" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_tensor.py:822:18 - error: "_add_docstr" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_tensor.py:823:12 - error: "TensorBase" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_tensor.py:1115:19 - error: "_VariableFunctions" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_tensor.py:1122:23 - error: "TensorBase" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_tensor.py:1127:24 - error: "TensorBase" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_tensor.py:1131:16 - error: "TensorBase" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_tensor.py:1136:12 - error: "TensorBase" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_tensor.py:1141:22 - error: "remainder" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_tensor.py:1154:22 - error: "pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_tensor.py:1160:22 - error: "floor_divide" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_tensor.py:1164:22 - error: "floor_divide" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_tensor.py:1170:22 - error: "bitwise_left_shift" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_tensor.py:1176:22 - error: "bitwise_right_shift" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_tensor.py:1180:22 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_tensor.py:1182:18 - error: "TensorBase" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_tensor.py:1183:18 - error: "TensorBase" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_tensor.py:1184:18 - error: "TensorBase" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_tensor.py:1532:58 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_tensor.py:1597:56 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_tensor.py:1663:39 - error: Argument of type "bool | list[Unknown]" cannot be assigned to parameter "ambiguity_check" of type "bool" in function "compute_elementwise_output_logical_to_physical_perm" +   Type "bool | list[Unknown]" is not assignable to type "bool" +     "list[Unknown]" is not assignable to "bool" (reportArgumentType) + /torch/_tensor.py:1710:29 - error: "_disabled_torch_dispatch_impl" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_tensor.py:1770:33 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_tensor.py:1793:37 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_tensor.py:1819:20 - error: Import "torch_xla" could not be resolved (reportMissingImports) + /torch/_tensor.py:1820:20 - error: Import "torch_xla.utils.dlpack" could not be resolved (reportMissingImports) + /torch/_tensor.py:1835:23 - error: "_to_dlpack" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_tensor.py:1837:19 - error: "_to_dlpack_versioned" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/_tensor.py:1848:58 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_tensor.py:1861:20 - error: Import "torch_xla" could not be resolved (reportMissingImports) +/torch/_tensor_docs.py + /torch/_tensor_docs.py:5:22 - error: "_add_docstr" is unknown import symbol (reportAttributeAccessIssue) + /torch/_tensor_docs.py:10:33 - error: "TensorBase" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) +/torch/_torch_docs.py + /torch/_torch_docs.py:7:22 - error: "_add_docstr" is unknown import symbol (reportAttributeAccessIssue) + /torch/_torch_docs.py:220:11 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:244:11 - error: "absolute" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:253:11 - error: "acos" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:280:11 - error: "arccos" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:289:11 - error: "acosh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:320:11 - error: "arccosh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:329:11 - error: "index_add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:338:11 - error: "index_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:347:11 - error: "index_reduce" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:356:11 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:404:11 - error: "addbmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:459:11 - error: "addcdiv" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:508:11 - error: "addcmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:548:11 - error: "addmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:608:11 - error: "adjoint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:635:11 - error: "sspaddmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:658:11 - error: "smm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:672:11 - error: "addmv" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:719:11 - error: "addr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:766:11 - error: "allclose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:800:11 - error: "all" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:861:11 - error: "any" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:922:11 - error: "angle" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:951:11 - error: "as_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:994:11 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1047:11 - error: "asin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1074:11 - error: "arcsin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1083:11 - error: "asinh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1110:11 - error: "arcsinh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1119:11 - error: "atan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1146:11 - error: "arctan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1155:11 - error: "atan2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1187:11 - error: "arctan2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1195:11 - error: "atanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1227:11 - error: "arctanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1236:11 - error: "asarray" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1348:11 - error: "baddbmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1404:11 - error: "bernoulli" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1462:11 - error: "bincount" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1506:11 - error: "bitwise_not" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1527:11 - error: "bmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1573:11 - error: "bitwise_and" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1597:11 - error: "bitwise_or" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1621:11 - error: "bitwise_xor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1645:11 - error: "bitwise_left_shift" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1674:11 - error: "bitwise_right_shift" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1705:11 - error: "broadcast_to" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1727:11 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1787:11 - error: "hstack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1818:11 - error: "vstack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1854:11 - error: "dstack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1888:11 - error: "tensor_split" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:1952:11 - error: "chunk" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2005:11 - error: "unsafe_chunk" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2022:11 - error: "unsafe_split" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2039:11 - error: "hsplit" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2092:11 - error: "vsplit" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2134:11 - error: "dsplit" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2185:11 - error: "can_cast" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2206:11 - error: "corrcoef" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2253:11 - error: "cov" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2333:11 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2381:11 - error: "concat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2390:11 - error: "concatenate" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2399:11 - error: "ceil" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2430:11 - error: "real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2452:11 - error: "imag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2477:11 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2506:11 - error: "view_as_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2540:11 - error: "reciprocal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2572:11 - error: "cholesky" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2654:11 - error: "cholesky_solve" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2719:11 - error: "cholesky_inverse" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2775:11 - error: "clone" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2802:11 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2845:11 - error: "clip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2854:11 - error: "column_stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2890:11 - error: "complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2921:11 - error: "polar" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2964:11 - error: "conj_physical" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:2996:11 - error: "conj" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3026:11 - error: "resolve_conj" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3051:11 - error: "resolve_neg" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3077:11 - error: "copysign" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3135:11 - error: "cos" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3162:11 - error: "cosh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3195:11 - error: "cross" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3254:11 - error: "logcumsumexp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3282:11 - error: "cummax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3314:11 - error: "cummin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3346:11 - error: "cumprod" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3385:11 - error: "cumsum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3417:11 - error: "count_nonzero" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3444:11 - error: "dequantize" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3464:11 - error: "diag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3525:11 - error: "diag_embed" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3589:11 - error: "diagflat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3637:11 - error: "diagonal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3702:11 - error: "diagonal_scatter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3756:11 - error: "as_strided_scatter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3799:11 - error: "diff" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3839:11 - error: "digamma" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3848:11 - error: "dist" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3882:11 - error: "div" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3950:11 - error: "divide" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3959:11 - error: "dot" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:3989:11 - error: "vdot" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4038:11 - error: "eq" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4066:11 - error: "equal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4090:11 - error: "erf" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4099:11 - error: "erfc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4108:11 - error: "erfinv" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4117:11 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4142:11 - error: "exp2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4151:11 - error: "expm1" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4160:11 - error: "eye" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4190:11 - error: "floor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4221:11 - error: "floor_divide" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4261:11 - error: "fmod" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4312:11 - error: "frac" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4329:11 - error: "frexp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4361:11 - error: "from_numpy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4392:11 - error: "frombuffer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4466:11 - error: "from_file" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4506:11 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4542:11 - error: "unflatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4575:11 - error: "gather" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4614:11 - error: "gcd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4645:11 - error: "ge" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4674:11 - error: "greater_equal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4683:11 - error: "gradient" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4810:11 - error: "geqrf" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4846:11 - error: "inner" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4907:11 - error: "outer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4937:11 - error: "ger" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4950:11 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4968:11 - error: "get_num_threads" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4977:11 - error: "get_num_interop_threads" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:4987:11 - error: "gt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5016:11 - error: "greater" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5025:11 - error: "hash_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5079:11 - error: "histc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5111:11 - error: "histogram" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5156:11 - error: "histogramdd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5248:7 - error: "histogramdd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5251:11 - error: "hypot" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5280:11 - error: "i0" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5289:11 - error: "igamma" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5298:11 - error: "igammac" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5307:11 - error: "index_select" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5350:11 - error: "inverse" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5359:11 - error: "isin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5391:11 - error: "isinf" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5416:11 - error: "isposinf" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5436:11 - error: "isneginf" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5456:11 - error: "isclose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5491:11 - error: "isfinite" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5514:11 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5536:11 - error: "isreal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5557:11 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5581:11 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5605:11 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5614:11 - error: "is_inference_mode_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5623:11 - error: "is_inference" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5642:11 - error: "is_conj" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5654:11 - error: "is_nonzero" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5690:11 - error: "kron" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5750:11 - error: "kthvalue" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5799:11 - error: "lcm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5830:11 - error: "ldexp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5864:11 - error: "le" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5894:11 - error: "less_equal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5903:11 - error: "lerp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5942:11 - error: "lgamma" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:5967:11 - error: "linspace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6015:11 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6044:11 - error: "log10" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6076:11 - error: "log1p" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6106:11 - error: "log2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6138:11 - error: "logaddexp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6172:11 - error: "logaddexp2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6191:11 - error: "xlogy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6200:11 - error: "logical_and" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6232:11 - error: "logical_not" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6259:11 - error: "logical_or" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6291:11 - error: "logical_xor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6323:11 - error: "logspace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6377:11 - error: "logsumexp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6411:11 - error: "lt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6440:11 - error: "lu_unpack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6490:11 - error: "less" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6499:11 - error: "lu_solve" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6544:11 - error: "masked_select" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6582:11 - error: "matrix_power" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6591:11 - error: "matrix_exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6600:11 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6685:11 - error: "maximum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6712:11 - error: "fmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6744:11 - error: "amax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6787:11 - error: "argmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6839:11 - error: "argwhere" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6876:11 - error: "mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6944:11 - error: "nanmean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:6990:11 - error: "median" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7065:11 - error: "nanmedian" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7122:11 - error: "quantile" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7194:11 - error: "nanquantile" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7234:11 - error: "min" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7309:11 - error: "minimum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7336:11 - error: "fmin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7368:11 - error: "amin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7411:11 - error: "aminmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7475:11 - error: "argmin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7512:11 - error: "mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7558:11 - error: "hspmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7577:11 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7661:11 - error: "mode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7700:11 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7748:11 - error: "multiply" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7757:11 - error: "multinomial" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7812:11 - error: "mv" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7841:11 - error: "mvlgamma" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7850:11 - error: "movedim" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7897:11 - error: "moveaxis" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7937:11 - error: "swapdims" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:7970:11 - error: "swapaxes" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8003:11 - error: "narrow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8037:11 - error: "narrow_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8084:11 - error: "nan_to_num" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8121:11 - error: "ne" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8150:11 - error: "not_equal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8159:11 - error: "neg" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8186:11 - error: "negative" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8195:11 - error: "nextafter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8221:11 - error: "nonzero" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8303:11 - error: "normal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8397:11 - error: "numel" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8419:11 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8450:11 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8483:11 - error: "orgqr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8492:11 - error: "ormqr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8536:11 - error: "permute" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8556:11 - error: "poisson" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8587:11 - error: "polygamma" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8596:11 - error: "positive" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8618:11 - error: "pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8694:11 - error: "float_power" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8736:11 - error: "prod" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8786:11 - error: "promote_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8809:11 - error: "qr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8893:11 - error: "rad2deg" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8918:11 - error: "deg2rad" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8943:11 - error: "heaviside" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:8980:11 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9015:11 - error: "rand_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9041:11 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9089:11 - error: "randint_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9120:11 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9176:11 - error: "randn_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9202:11 - error: "randperm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9231:11 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9286:11 - error: "range" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9328:11 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9378:11 - error: "ravel" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9399:11 - error: "remainder" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9444:11 - error: "renorm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9482:11 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9515:11 - error: "result_type" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9537:11 - error: "row_stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9546:11 - error: "round" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9602:11 - error: "rsqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9630:11 - error: "scatter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9639:11 - error: "scatter_add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9648:11 - error: "scatter_reduce" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9685:11 - error: "select" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9711:11 - error: "select_scatter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9742:11 - error: "slice_scatter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9787:11 - error: "set_flush_denormal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9815:11 - error: "set_num_threads" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9828:11 - error: "set_num_interop_threads" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9842:11 - error: "sigmoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9851:11 - error: "logit" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9860:11 - error: "sign" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9887:11 - error: "signbit" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9915:11 - error: "sgn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9948:11 - error: "sin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9976:11 - error: "sinc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:9985:11 - error: "sinh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10018:11 - error: "sort" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10083:11 - error: "argsort" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10124:11 - error: "msort" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10155:11 - error: "sparse_compressed_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10228:11 - error: "sparse_csr_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10289:11 - error: "sparse_csc_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10352:11 - error: "sparse_bsr_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10420:11 - error: "sparse_bsc_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10487:11 - error: "sparse_coo_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10585:11 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10612:11 - error: "square" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10635:11 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10685:11 - error: "std" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10740:11 - error: "std_mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10797:11 - error: "sub" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10829:11 - error: "subtract" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10838:11 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10895:11 - error: "nansum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:10945:11 - error: "svd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11080:11 - error: "t" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11119:11 - error: "flip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11153:11 - error: "fliplr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11186:11 - error: "flipud" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11219:11 - error: "roll" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11268:11 - error: "rot90" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11307:11 - error: "take" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11329:11 - error: "take_along_dim" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11366:11 - error: "tan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11394:11 - error: "tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11423:11 - error: "softmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11432:11 - error: "topk" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11478:11 - error: "trace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11497:11 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11547:11 - error: "triangular_solve" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11621:11 - error: "tril" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11681:11 - error: "tril_indices" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11738:11 - error: "triu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11806:11 - error: "triu_indices" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11863:11 - error: "true_divide" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11872:11 - error: "trunc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11899:11 - error: "fake_quantize_per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11940:11 - error: "fake_quantize_per_channel_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:11994:11 - error: "fix" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12003:11 - error: "unsqueeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12034:11 - error: "var" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12089:11 - error: "var_mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12145:11 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12175:11 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12208:11 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12246:11 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12288:11 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12331:11 - error: "empty_permuted" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12384:11 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12412:11 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12453:11 - error: "det" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12462:11 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12529:11 - error: "logdet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12577:11 - error: "slogdet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12586:11 - error: "pinverse" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12595:11 - error: "hann_window" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12642:11 - error: "hamming_window" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12759:11 - error: "bartlett_window" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12808:11 - error: "blackman_window" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12854:11 - error: "kaiser_window" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12897:11 - error: "vander" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12944:11 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:12967:11 - error: "combinations" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13013:11 - error: "trapezoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13124:11 - error: "trapz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13133:11 - error: "cumulative_trapezoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13222:11 - error: "repeat_interleave" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13292:11 - error: "tile" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13335:11 - error: "quantize_per_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13371:11 - error: "quantize_per_tensor_dynamic" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13401:11 - error: "quantize_per_channel" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13435:11 - error: "quantized_batch_norm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13480:11 - error: "quantized_max_pool1d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13511:11 - error: "quantized_max_pool2d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13548:11 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13581:11 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13601:11 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13623:11 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13639:11 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13660:11 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13681:11 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13711:11 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13736:11 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13758:11 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13779:11 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13796:11 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13818:11 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13842:11 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13861:11 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13879:11 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13898:11 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13915:11 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13932:11 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13956:11 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13972:11 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:13989:11 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14004:11 - error: "_assert_async" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14024:11 - error: "searchsorted" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14107:11 - error: "bucketize" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14159:11 - error: "view_as_real_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14167:11 - error: "view_as_complex_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14175:11 - error: "as_strided_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14183:11 - error: "diagonal_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14191:11 - error: "expand_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14199:11 - error: "permute_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14207:11 - error: "select_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14215:11 - error: "detach_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14223:11 - error: "slice_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14231:11 - error: "split_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14239:11 - error: "split_with_sizes_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14247:11 - error: "squeeze_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14255:11 - error: "t_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14263:11 - error: "transpose_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14271:11 - error: "unsqueeze_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14279:11 - error: "indices_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14287:11 - error: "values_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14295:11 - error: "crow_indices_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14303:11 - error: "col_indices_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14311:11 - error: "unbind_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14319:11 - error: "view_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14327:11 - error: "unfold_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_torch_docs.py:14335:11 - error: "alias_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/_utils.py + /torch/_utils.py:858:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_utils.py:860:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_utils.py:881:12 - error: Type "int | Unknown | None" is not assignable to return type "int" +   Type "int | Unknown | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportReturnType) + /torch/_utils.py:1063:27 - error: "util" is not a known attribute of module "importlib" (reportAttributeAccessIssue) + /torch/_utils.py:1064:28 - error: "util" is not a known attribute of module "importlib" (reportAttributeAccessIssue) +/torch/_utils_internal.py + /torch/_utils_internal.py:230:14 - error: Import "triton.testing" could not be resolved (reportMissingImports) + /torch/_utils_internal.py:335:13 - error: Argument of type "str" cannot be assigned to parameter "message" of type "LiteralString" in function "__init__" +   "str" is not assignable to "LiteralString" (reportArgumentType) +/torch/_vmap_internals.py + /torch/_vmap_internals.py:110:42 - error: "_add_batch_dim" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_vmap_internals.py:142:23 - error: "_remove_batch_dim" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/_vmap_internals.py:150:19 - error: "_remove_batch_dim" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/accelerator/__init__.py + /torch/accelerator/__init__.py:96:65 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/accelerator/__init__.py:122:25 - error: "_accelerator_getAccelerator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/accelerator/__init__.py:134:21 - error: "_accelerator_getDeviceIndex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/accelerator/__init__.py:165:14 - error: "_accelerator_setDeviceIndex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/accelerator/__init__.py:187:58 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/accelerator/__init__.py:199:21 - error: "_accelerator_getStream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/accelerator/__init__.py:202:30 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/accelerator/__init__.py:210:14 - error: "_accelerator_setStream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/accelerator/__init__.py:237:14 - error: "_accelerator_synchronizeDevice" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/accelerator/__init__.py:270:38 - error: "_accelerator_exchangeDevice" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/accelerator/__init__.py:274:22 - error: "_accelerator_maybeExchangeDevice" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/accelerator/_utils.py + /torch/accelerator/_utils.py:9:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/accelerator/_utils.py:11:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/accelerator/_utils.py:15:31 - error: Cannot access attribute "type" for class "str" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/accelerator/_utils.py:15:31 - error: Cannot access attribute "type" for class "int" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/accelerator/_utils.py:15:31 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/accelerator/_utils.py:17:27 - error: Cannot access attribute "type" for class "str" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/accelerator/_utils.py:17:27 - error: Cannot access attribute "type" for class "int" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/accelerator/_utils.py:17:27 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/accelerator/_utils.py:19:24 - error: Type "Unknown | ((sub: str, start: SupportsIndex | None = None, end: SupportsIndex | None = None, /) -> int)" is not assignable to declared type "int | None" +   Type "Unknown | ((sub: str, start: SupportsIndex | None = None, end: SupportsIndex | None = None, /) -> int)" is not assignable to type "int | None" +     Type "(sub: str, start: SupportsIndex | None = None, end: SupportsIndex | None = None, /) -> int" is not assignable to type "int | None" +       "MethodType" is not assignable to "int" +       "MethodType" is not assignable to "None" (reportAssignmentType) + /torch/accelerator/_utils.py:19:31 - error: Cannot access attribute "index" for class "int" +   Attribute "index" is unknown (reportAttributeAccessIssue) + /torch/accelerator/_utils.py:19:31 - error: "index" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/accelerator/memory.py + /torch/accelerator/memory.py:29:21 - error: "_accelerator_isAllocatorInitialized" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/accelerator/memory.py:31:14 - error: "_accelerator_emptyCache" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/accelerator/memory.py:95:21 - error: "_accelerator_isAllocatorInitialized" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/accelerator/memory.py:98:22 - error: "_accelerator_getDeviceStats" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/accelerator/memory.py:201:21 - error: "_accelerator_resetAccumulatedStats" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/accelerator/memory.py:218:21 - error: "_accelerator_resetPeakStats" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/accelerator/memory.py:236:21 - error: "_accelerator_getMemoryInfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/amp/autocast_mode.py + /torch/amp/autocast_mode.py:8:25 - error: "_dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:37:21 - error: "_is_autocast_available" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:234:19 - error: "get_autocast_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:236:18 - error: "_jit_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:247:42 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:247:58 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:249:45 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:268:19 - error: "is_autocast_cache_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:288:46 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:306:50 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:352:18 - error: "_jit_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:356:18 - error: "autocast_decrement_nesting" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:357:19 - error: "clear_autocast_cache" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:358:15 - error: "set_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:359:15 - error: "set_autocast_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:360:15 - error: "set_autocast_cache_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:365:21 - error: "_is_torch_function_mode_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:370:30 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:411:43 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:419:12 - error: "ndarray" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/amp/autocast_mode.py:422:40 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/amp/autocast_mode.py:427:40 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) +/torch/amp/grad_scaler.py + /torch/amp/grad_scaler.py:28:46 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:30:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:171:58 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:173:29 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:173:68 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:174:38 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:175:56 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:241:21 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:252:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:252:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:260:71 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:267:54 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:280:27 - error: "_amp_foreach_non_finite_check_and_unscale_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:338:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:341:27 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:341:53 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:509:34 - error: Cannot access attribute "device" for class "int" +   Attribute "device" is unknown (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:510:34 - error: Cannot access attribute "numel" for class "int" +   Attribute "numel" is unknown (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:511:34 - error: Cannot access attribute "requires_grad" for class "int" +   Attribute "requires_grad" is unknown (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:529:19 - error: "_amp_update_scale_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:683:33 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:683:59 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:684:27 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/amp/grad_scaler.py:684:53 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/nn/intrinsic/qat/modules/conv_fused.py + /torch/ao/nn/intrinsic/qat/modules/conv_fused.py:442:7 - error: Base classes for class "ConvBn1d" define variable "_modules" in incompatible way (reportIncompatibleVariableOverride) + /torch/ao/nn/intrinsic/qat/modules/conv_fused.py:643:7 - error: Base classes for class "ConvBn2d" define variable "_modules" in incompatible way (reportIncompatibleVariableOverride) + /torch/ao/nn/intrinsic/qat/modules/conv_fused.py:733:5 - error: "_FLOAT_BN_MODULE" overrides symbol of same name in class "ConvBn2d" +   Variable is mutable so its type is invariant +     Override type "type[BatchNorm2d]" is not the same as base type "type[Module] | None" (reportIncompatibleVariableOverride) + /torch/ao/nn/intrinsic/qat/modules/conv_fused.py:844:7 - error: Base classes for class "ConvBn3d" define variable "_modules" in incompatible way (reportIncompatibleVariableOverride) + /torch/ao/nn/intrinsic/qat/modules/conv_fused.py:933:5 - error: "_FLOAT_BN_MODULE" overrides symbol of same name in class "ConvBn3d" +   Variable is mutable so its type is invariant +     Override type "type[BatchNorm3d]" is not the same as base type "type[Module] | None" (reportIncompatibleVariableOverride) + /torch/ao/nn/intrinsic/qat/modules/conv_fused.py:934:5 - error: "_FLOAT_RELU_MODULE" overrides symbol of same name in class "ConvBn3d" +   Variable is mutable so its type is invariant +     Override type "type[ReLU] | None" is not the same as base type "type[Module] | None" (reportIncompatibleVariableOverride) +/torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py + /torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py:41:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py:41:36 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py:46:47 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py:51:49 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/nn/intrinsic/quantized/modules/bn_relu.py + /torch/ao/nn/intrinsic/quantized/modules/bn_relu.py:57:9 - error: Method "from_reference" overrides class "_BatchNorm" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "bn", override parameter is named "bn_relu" (reportIncompatibleMethodOverride) + /torch/ao/nn/intrinsic/quantized/modules/bn_relu.py:106:9 - error: Method "from_reference" overrides class "_BatchNorm" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "bn", override parameter is named "bn_relu" (reportIncompatibleMethodOverride) +/torch/ao/nn/intrinsic/quantized/modules/linear_relu.py + /torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:52:9 - error: Method "from_reference" overrides class "Linear" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "ref_qlinear", override parameter is named "ref_linear_relu" (reportIncompatibleMethodOverride) + /torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:119:9 - error: Method "from_reference" overrides class "Linear" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "ref_qlinear", override parameter is named "ref_mod" (reportIncompatibleMethodOverride) + /torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:183:9 - error: Method "from_reference" overrides class "Linear" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "ref_qlinear", override parameter is named "ref_mod" (reportIncompatibleMethodOverride) +/torch/ao/nn/qat/dynamic/modules/linear.py + /torch/ao/nn/qat/dynamic/modules/linear.py:32:35 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/nn/qat/modules/conv.py + /torch/ao/nn/qat/modules/conv.py:58:20 - warning: Static methods should not take a "self" or "cls" parameter (reportSelfClsParameterName) + /torch/ao/nn/qat/modules/conv.py:139:5 - error: "_FLOAT_MODULE" overrides symbol of same name in class "_ConvNd" +   Variable is mutable so its type is invariant +     Override type "type[Conv1d]" is not the same as base type "type[_ConvNd]" (reportIncompatibleVariableOverride) + /torch/ao/nn/qat/modules/conv.py:201:5 - error: "_FLOAT_MODULE" overrides symbol of same name in class "_ConvNd" +   Variable is mutable so its type is invariant +     Override type "type[Conv2d]" is not the same as base type "type[_ConvNd]" (reportIncompatibleVariableOverride) + /torch/ao/nn/qat/modules/conv.py:266:5 - error: "_FLOAT_MODULE" overrides symbol of same name in class "_ConvNd" +   Variable is mutable so its type is invariant +     Override type "type[Conv3d]" is not the same as base type "type[_ConvNd]" (reportIncompatibleVariableOverride) +/torch/ao/nn/qat/modules/embedding_ops.py + /torch/ao/nn/qat/modules/embedding_ops.py:54:15 - error: Argument of type "Unknown | None" cannot be assigned to parameter "_freeze" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/ao/nn/qat/modules/embedding_ops.py:57:50 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/qat/modules/embedding_ops.py:176:50 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/nn/quantizable/modules/activation.py + /torch/ao/nn/quantizable/modules/activation.py:400:41 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/activation.py:406:48 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/activation.py:407:30 - error: "is_floating_point" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/ao/nn/quantizable/modules/activation.py:407:63 - error: "dtype" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/ao/nn/quantizable/modules/activation.py:407:78 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/activation.py:408:89 - error: "dtype" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/ao/nn/quantizable/modules/activation.py:411:26 - error: "dim" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/ao/nn/quantizable/modules/activation.py:412:39 - error: "unsqueeze" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/ao/nn/quantizable/modules/activation.py:413:35 - error: "size" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/ao/nn/quantizable/modules/activation.py:415:28 - error: "dim" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/ao/nn/quantizable/modules/activation.py:416:35 - error: "size" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/ao/nn/quantizable/modules/activation.py:424:56 - error: "dim" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/ao/nn/quantizable/modules/activation.py:429:77 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/activation.py:435:58 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/activation.py:445:27 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/activation.py:446:27 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/activation.py:448:50 - error: Argument of type "tuple[Literal[0], Literal[1]]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[0], Literal[1]]" is not assignable to "list[int]" (reportArgumentType) + /torch/ao/nn/quantizable/modules/activation.py:450:64 - error: Argument of type "tuple[Literal[0], Literal[1]]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[0], Literal[1]]" is not assignable to "list[int]" (reportArgumentType) + /torch/ao/nn/quantizable/modules/activation.py:484:29 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/activation.py:487:33 - error: "quantize_per_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/activation.py:497:23 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/activation.py:499:29 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/activation.py:502:33 - error: "quantize_per_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/activation.py:512:23 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/activation.py:515:46 - error: Argument of type "tuple[Literal[0], Literal[1]]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[0], Literal[1]]" is not assignable to "list[int]" (reportArgumentType) + /torch/ao/nn/quantizable/modules/activation.py:517:60 - error: Argument of type "tuple[Literal[0], Literal[1]]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[0], Literal[1]]" is not assignable to "list[int]" (reportArgumentType) + /torch/ao/nn/quantizable/modules/activation.py:523:37 - error: "bmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/activation.py:531:41 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/activation.py:553:29 - error: "bmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/nn/quantizable/modules/rnn.py + /torch/ao/nn/quantizable/modules/rnn.py:99:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/rnn.py:99:54 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/rnn.py:100:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/rnn.py:100:52 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/rnn.py:141:25 - error: "tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/rnn.py:149:19 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/rnn.py:150:19 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/rnn.py:155:23 - error: "quantize_per_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/rnn.py:158:23 - error: "quantize_per_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/rnn.py:255:31 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/rnn.py:334:28 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/rnn.py:515:27 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/rnn.py:519:29 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/rnn.py:524:31 - error: "quantize_per_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/rnn.py:550:27 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantizable/modules/rnn.py:551:27 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/nn/quantized/dynamic/modules/rnn.py + /torch/ao/nn/quantized/dynamic/modules/rnn.py:546:27 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/dynamic/modules/rnn.py:653:6 - error: Argument of type "(self: Self@LSTM, input: Unknown, hx: Unknown | None = None) -> Unknown" cannot be assigned to parameter "drop" of type "bool" in function "ignore" +   "FunctionType" is not assignable to "bool" (reportArgumentType) + /torch/ao/nn/quantized/dynamic/modules/rnn.py:842:27 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/dynamic/modules/rnn.py:920:6 - error: Argument of type "(self: Self@GRU, input: Unknown, hx: Unknown | None = None) -> Unknown" cannot be assigned to parameter "drop" of type "bool" in function "ignore" +   "FunctionType" is not assignable to "bool" (reportArgumentType) + /torch/ao/nn/quantized/dynamic/modules/rnn.py:1234:24 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/dynamic/modules/rnn.py:1299:27 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/dynamic/modules/rnn.py:1349:24 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/nn/quantized/functional.py + /torch/ao/nn/quantized/functional.py:8:35 - error: "BroadcastingList2" is unknown import symbol (reportAttributeAccessIssue) + /torch/ao/nn/quantized/functional.py:580:24 - error: "_empty_affine_quantized" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/functional.py:583:18 - error: "_nn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/functional.py:586:27 - error: "_nn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/functional.py:588:27 - error: "_nn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/functional.py:599:25 - error: "_nn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/functional.py:600:21 - error: "_nn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/functional.py:656:21 - error: "_nn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/functional.py:672:18 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/nn/quantized/modules/activation.py + /torch/ao/nn/quantized/modules/activation.py:144:45 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/activation.py:146:50 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/activation.py:301:19 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/activation.py:301:53 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/activation.py:302:20 - error: "quantize_per_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/activation.py:302:80 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/nn/quantized/modules/batchnorm.py + /torch/ao/nn/quantized/modules/batchnorm.py:16:45 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/batchnorm.py:18:50 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/batchnorm.py:21:20 - warning: Static methods should not take a "self" or "cls" parameter (reportSelfClsParameterName) +/torch/ao/nn/quantized/modules/conv.py + /torch/ao/nn/quantized/modules/conv.py:99:25 - error: "_empty_affine_quantized" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/conv.py:103:25 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/conv.py:107:19 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/conv.py:109:29 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/conv.py:279:20 - warning: Static methods should not take a "self" or "cls" parameter (reportSelfClsParameterName) + /torch/ao/nn/quantized/modules/conv.py:325:9 - error: Method "from_reference" overrides class "WeightedQuantizedModule" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "ref_module", override parameter is named "ref_qconv" (reportIncompatibleMethodOverride) + /torch/ao/nn/quantized/modules/conv.py:435:9 - error: Method "set_weight_bias" overrides class "_ConvNd" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "qweight", override parameter is named "w" +   Parameter 3 name mismatch: base parameter is named "bias_float", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/ao/nn/quantized/modules/conv.py:567:9 - error: Method "set_weight_bias" overrides class "_ConvNd" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "qweight", override parameter is named "w" +   Parameter 3 name mismatch: base parameter is named "bias_float", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/ao/nn/quantized/modules/conv.py:698:9 - error: Method "set_weight_bias" overrides class "_ConvNd" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "qweight", override parameter is named "w" +   Parameter 3 name mismatch: base parameter is named "bias_float", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/ao/nn/quantized/modules/conv.py:918:5 - error: "_FLOAT_MODULE" overrides symbol of same name in class "_ConvTransposeNd" +   Variable is mutable so its type is invariant +     Override type "type[ConvTranspose1d]" is not the same as base type "type[_ConvNd]" (reportIncompatibleVariableOverride) + /torch/ao/nn/quantized/modules/conv.py:960:9 - error: Method "set_weight_bias" overrides class "_ConvNd" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "qweight", override parameter is named "w" +   Parameter 3 name mismatch: base parameter is named "bias_float", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/ao/nn/quantized/modules/conv.py:1041:5 - error: "_FLOAT_MODULE" overrides symbol of same name in class "_ConvTransposeNd" +   Variable is mutable so its type is invariant +     Override type "type[ConvTranspose2d]" is not the same as base type "type[_ConvNd]" (reportIncompatibleVariableOverride) + /torch/ao/nn/quantized/modules/conv.py:1083:9 - error: Method "set_weight_bias" overrides class "_ConvNd" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "qweight", override parameter is named "w" +   Parameter 3 name mismatch: base parameter is named "bias_float", override parameter is named "b" (reportIncompatibleMethodOverride) + /torch/ao/nn/quantized/modules/conv.py:1166:5 - error: "_FLOAT_MODULE" overrides symbol of same name in class "_ConvTransposeNd" +   Variable is mutable so its type is invariant +     Override type "type[ConvTranspose3d]" is not the same as base type "type[_ConvNd]" (reportIncompatibleVariableOverride) + /torch/ao/nn/quantized/modules/conv.py:1208:9 - error: Method "set_weight_bias" overrides class "_ConvNd" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "qweight", override parameter is named "w" +   Parameter 3 name mismatch: base parameter is named "bias_float", override parameter is named "b" (reportIncompatibleMethodOverride) +/torch/ao/nn/quantized/modules/embedding_ops.py + /torch/ao/nn/quantized/modules/embedding_ops.py:37:33 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/embedding_ops.py:37:47 - error: "quint4x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/embedding_ops.py:131:21 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/embedding_ops.py:139:28 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/embedding_ops.py:139:61 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/embedding_ops.py:140:33 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/embedding_ops.py:140:67 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/embedding_ops.py:141:29 - error: "_empty_per_channel_affine_quantized" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/embedding_ops.py:146:29 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/embedding_ops.py:161:32 - error: "quint4x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/embedding_ops.py:297:21 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/embedding_ops.py:313:32 - error: "quint4x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/embedding_ops.py:400:9 - error: Method "from_reference" overrides class "Embedding" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "ref_embedding", override parameter is named "ref_embedding_bag" (reportIncompatibleMethodOverride) +/torch/ao/nn/quantized/modules/functional_modules.py + /torch/ao/nn/quantized/modules/functional_modules.py:51:19 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/functional_modules.py:58:19 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/functional_modules.py:66:19 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/functional_modules.py:73:19 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/functional_modules.py:81:19 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/functional_modules.py:88:19 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/functional_modules.py:96:19 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/functional_modules.py:123:19 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/functional_modules.py:129:19 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/functional_modules.py:135:19 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/functional_modules.py:141:19 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/functional_modules.py:147:19 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/functional_modules.py:153:19 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/functional_modules.py:160:19 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/nn/quantized/modules/linear.py + /torch/ao/nn/quantized/modules/linear.py:34:32 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/linear.py:36:34 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/linear.py:346:9 - error: Method "from_reference" overrides class "WeightedQuantizedModule" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "ref_module", override parameter is named "ref_qlinear" (reportIncompatibleMethodOverride) +/torch/ao/nn/quantized/modules/normalization.py + /torch/ao/nn/quantized/modules/normalization.py:41:15 - error: Argument of type "Unknown | None" cannot be assigned to parameter "bias" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/ao/nn/quantized/modules/normalization.py:46:45 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/normalization.py:48:50 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/normalization.py:120:45 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/normalization.py:122:50 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/normalization.py:184:45 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/normalization.py:186:50 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/normalization.py:253:45 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/normalization.py:255:50 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/normalization.py:322:45 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/modules/normalization.py:324:50 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/nn/quantized/reference/modules/conv.py + /torch/ao/nn/quantized/reference/modules/conv.py:33:20 - warning: Static methods should not take a "self" or "cls" parameter (reportSelfClsParameterName) + /torch/ao/nn/quantized/reference/modules/conv.py:86:9 - error: Method "forward" overrides class "Conv1d" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "input", override parameter is named "x" (reportIncompatibleMethodOverride) + /torch/ao/nn/quantized/reference/modules/conv.py:145:13 - error: Argument of type "str" cannot be assigned to parameter "padding_mode" of type "Literal['zeros', 'reflect', 'replicate', 'circular']" in function "__init__" +   Type "str" is not assignable to type "Literal['zeros', 'reflect', 'replicate', 'circular']" +     "str" is not assignable to type "Literal['zeros']" +     "str" is not assignable to type "Literal['reflect']" +     "str" is not assignable to type "Literal['replicate']" +     "str" is not assignable to type "Literal['circular']" (reportArgumentType) + /torch/ao/nn/quantized/reference/modules/conv.py:151:9 - error: Method "forward" overrides class "Conv2d" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "input", override parameter is named "x" (reportIncompatibleMethodOverride) + /torch/ao/nn/quantized/reference/modules/conv.py:210:13 - error: Argument of type "str" cannot be assigned to parameter "padding_mode" of type "Literal['zeros', 'reflect', 'replicate', 'circular']" in function "__init__" +   Type "str" is not assignable to type "Literal['zeros', 'reflect', 'replicate', 'circular']" +     "str" is not assignable to type "Literal['zeros']" +     "str" is not assignable to type "Literal['reflect']" +     "str" is not assignable to type "Literal['replicate']" +     "str" is not assignable to type "Literal['circular']" (reportArgumentType) + /torch/ao/nn/quantized/reference/modules/conv.py:216:9 - error: Method "forward" overrides class "Conv3d" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "input", override parameter is named "x" (reportIncompatibleMethodOverride) + /torch/ao/nn/quantized/reference/modules/conv.py:256:20 - warning: Static methods should not take a "self" or "cls" parameter (reportSelfClsParameterName) + /torch/ao/nn/quantized/reference/modules/conv.py:312:9 - error: Method "forward" overrides class "ConvTranspose1d" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "input", override parameter is named "x" (reportIncompatibleMethodOverride) + /torch/ao/nn/quantized/reference/modules/conv.py:387:13 - error: Argument of type "str" cannot be assigned to parameter "padding_mode" of type "Literal['zeros', 'reflect', 'replicate', 'circular']" in function "__init__" +   Type "str" is not assignable to type "Literal['zeros', 'reflect', 'replicate', 'circular']" +     "str" is not assignable to type "Literal['zeros']" +     "str" is not assignable to type "Literal['reflect']" +     "str" is not assignable to type "Literal['replicate']" +     "str" is not assignable to type "Literal['circular']" (reportArgumentType) + /torch/ao/nn/quantized/reference/modules/conv.py:393:9 - error: Method "forward" overrides class "ConvTranspose2d" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "input", override parameter is named "x" (reportIncompatibleMethodOverride) + /torch/ao/nn/quantized/reference/modules/conv.py:469:13 - error: Argument of type "str" cannot be assigned to parameter "padding_mode" of type "Literal['zeros', 'reflect', 'replicate', 'circular']" in function "__init__" +   Type "str" is not assignable to type "Literal['zeros', 'reflect', 'replicate', 'circular']" +     "str" is not assignable to type "Literal['zeros']" +     "str" is not assignable to type "Literal['reflect']" +     "str" is not assignable to type "Literal['replicate']" +     "str" is not assignable to type "Literal['circular']" (reportArgumentType) + /torch/ao/nn/quantized/reference/modules/conv.py:475:9 - error: Method "forward" overrides class "ConvTranspose3d" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "input", override parameter is named "x" (reportIncompatibleMethodOverride) +/torch/ao/nn/quantized/reference/modules/linear.py + /torch/ao/nn/quantized/reference/modules/linear.py:29:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/linear.py:30:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/linear.py:39:9 - error: Method "forward" overrides class "Linear" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "input", override parameter is named "x" (reportIncompatibleMethodOverride) +/torch/ao/nn/quantized/reference/modules/rnn.py + /torch/ao/nn/quantized/reference/modules/rnn.py:75:34 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/rnn.py:76:32 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/rnn.py:196:24 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/rnn.py:203:23 - error: "rnn_tanh_cell" is not a known attribute of module "torch._VF" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/rnn.py:212:23 - error: "rnn_relu_cell" is not a known attribute of module "torch._VF" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/rnn.py:287:27 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/rnn.py:294:19 - error: "lstm_cell" is not a known attribute of module "torch._VF" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/rnn.py:362:24 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/rnn.py:368:19 - error: "gru_cell" is not a known attribute of module "torch._VF" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/rnn.py:431:34 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/rnn.py:432:32 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/nn/quantized/reference/modules/sparse.py + /torch/ao/nn/quantized/reference/modules/sparse.py:46:13 - error: Argument of type "Unknown | None" cannot be assigned to parameter "_freeze" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) +/torch/ao/nn/quantized/reference/modules/utils.py + /torch/ao/nn/quantized/reference/modules/utils.py:194:27 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:195:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:202:41 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:203:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:204:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:205:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:210:15 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:210:29 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:211:15 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:211:28 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:212:15 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:212:29 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:214:32 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:215:35 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:215:49 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:215:62 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:231:15 - error: "per_channel_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:232:15 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:235:35 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:235:49 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:235:62 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:256:27 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:257:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:265:41 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:266:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:267:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:268:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:272:15 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:272:29 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:273:15 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:273:28 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:274:15 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:274:29 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:279:32 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:280:35 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:280:49 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:280:62 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:291:15 - error: "per_channel_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:292:15 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:295:35 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:295:49 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:295:62 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:311:27 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:312:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:317:30 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:321:32 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:322:35 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:322:49 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:322:62 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:323:28 - error: "quantize_per_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:328:15 - error: "per_channel_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:329:15 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:331:35 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:331:49 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:331:62 - error: "quint4x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:331:78 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:332:28 - error: "quantize_per_channel" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:341:27 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:342:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:353:15 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:354:15 - error: "per_channel_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:355:15 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:384:27 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:385:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:394:15 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:395:15 - error: "per_channel_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:396:15 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/nn/quantized/reference/modules/utils.py:436:36 - error: "quantize_per_channel" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/nn/sparse/quantized/linear.py + /torch/ao/nn/sparse/quantized/linear.py:146:9 - error: Method "_get_name" overrides class "Module" in an incompatible manner +   Base method is declared as an instance method but override is not (reportIncompatibleMethodOverride) +/torch/ao/ns/_numeric_suite.py + /torch/ao/ns/_numeric_suite.py:86:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/_numeric_suite.py:166:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/_numeric_suite.py:367:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/_numeric_suite.py:446:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/_numeric_suite.py:468:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/_numeric_suite.py:500:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/_numeric_suite.py:559:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/ns/_numeric_suite_fx.py + /torch/ao/ns/_numeric_suite_fx.py:312:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/_numeric_suite_fx.py:336:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/_numeric_suite_fx.py:404:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/_numeric_suite_fx.py:443:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/_numeric_suite_fx.py:476:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/_numeric_suite_fx.py:548:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/_numeric_suite_fx.py:583:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/_numeric_suite_fx.py:593:23 - error: Cannot access attribute "ref_name" for class "FunctionType" +   Attribute "ref_name" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:596:20 - error: Cannot access attribute "model_name" for class "FunctionType" +   Attribute "model_name" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:597:45 - error: Cannot access attribute "model_name" for class "FunctionType" +   Attribute "model_name" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:598:20 - error: Cannot access attribute "results_type" for class "FunctionType" +   Attribute "results_type" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:599:34 - error: Cannot access attribute "results_type" for class "FunctionType" +   Attribute "results_type" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:600:20 - error: Cannot access attribute "model_name" for class "FunctionType" +   Attribute "model_name" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:600:55 - error: Cannot access attribute "results_type" for class "FunctionType" +   Attribute "results_type" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:601:34 - error: Cannot access attribute "results_type" for class "FunctionType" +   Attribute "results_type" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:601:52 - error: Cannot access attribute "model_name" for class "FunctionType" +   Attribute "model_name" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:602:32 - error: Cannot access attribute "stats" for class "FunctionType" +   Attribute "stats" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:603:24 - error: Cannot access attribute "stats_rnn" for class "FunctionType" +   Attribute "stats_rnn" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:604:36 - error: Cannot access attribute "stats_rnn" for class "FunctionType" +   Attribute "stats_rnn" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:606:29 - error: Cannot access attribute "results_type" for class "FunctionType" +   Attribute "results_type" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:608:38 - error: Cannot access attribute "ref_node_name" for class "FunctionType" +   Attribute "ref_node_name" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:609:45 - error: Cannot access attribute "ref_node_target_type" for class "FunctionType" +   Attribute "ref_node_target_type" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:610:39 - error: Cannot access attribute "prev_node_name" for class "FunctionType" +   Attribute "prev_node_name" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:611:46 - error: Cannot access attribute "prev_node_target_type" for class "FunctionType" +   Attribute "prev_node_target_type" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:612:41 - error: Cannot access attribute "index_within_arg" for class "FunctionType" +   Attribute "index_within_arg" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:613:37 - error: Cannot access attribute "index_of_arg" for class "FunctionType" +   Attribute "index_of_arg" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:614:28 - error: Cannot access attribute "fqn" for class "FunctionType" +   Attribute "fqn" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:615:36 - error: Cannot access attribute "qconfig_str" for class "FunctionType" +   Attribute "qconfig_str" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:618:43 - error: Cannot access attribute "comparisons" for class "FunctionType" +   Attribute "comparisons" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:619:50 - error: Cannot access attribute "comparison_fn_name" for class "FunctionType" +   Attribute "comparison_fn_name" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:623:30 - error: Cannot access attribute "results_type" for class "FunctionType" +   Attribute "results_type" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:623:48 - error: Cannot access attribute "model_name" for class "FunctionType" +   Attribute "model_name" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:625:30 - error: Cannot access attribute "results_type" for class "FunctionType" +   Attribute "results_type" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:625:48 - error: Cannot access attribute "model_name" for class "FunctionType" +   Attribute "model_name" is unknown (reportFunctionMemberAccess) + /torch/ao/ns/_numeric_suite_fx.py:652:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/_numeric_suite_fx.py:678:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/_numeric_suite_fx.py:721:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/_numeric_suite_fx.py:772:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/_numeric_suite_fx.py:907:9 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "_find_matches" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/ns/_numeric_suite_fx.py:921:17 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "_generate_node_name_to_qconfig" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/ns/_numeric_suite_fx.py:1009:9 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "_find_matches" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/ns/_numeric_suite_fx.py:1020:13 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "_generate_node_name_to_qconfig" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/ns/_numeric_suite_fx.py:1096:55 - error: "quantize_fx" is not a known attribute of module "torch.ao.quantization" (reportAttributeAccessIssue) +/torch/ao/ns/fx/graph_matcher.py + /torch/ao/ns/fx/graph_matcher.py:102:39 - error: Cannot access attribute "all_input_nodes" for class "tuple[Argument, ...]" +   Attribute "all_input_nodes" is unknown (reportAttributeAccessIssue) + /torch/ao/ns/fx/graph_matcher.py:102:39 - error: Cannot access attribute "all_input_nodes" for class "Sequence[Argument]" +   Attribute "all_input_nodes" is unknown (reportAttributeAccessIssue) + /torch/ao/ns/fx/graph_matcher.py:102:39 - error: Cannot access attribute "all_input_nodes" for class "Mapping[str, Argument]" +   Attribute "all_input_nodes" is unknown (reportAttributeAccessIssue) + /torch/ao/ns/fx/graph_matcher.py:102:39 - error: Cannot access attribute "all_input_nodes" for class "slice[Any, Any, Any]" +   Attribute "all_input_nodes" is unknown (reportAttributeAccessIssue) + /torch/ao/ns/fx/graph_matcher.py:102:39 - error: Cannot access attribute "all_input_nodes" for class "range" +   Attribute "all_input_nodes" is unknown (reportAttributeAccessIssue) + /torch/ao/ns/fx/graph_matcher.py:102:39 - error: Cannot access attribute "all_input_nodes" for class "str" +   Attribute "all_input_nodes" is unknown (reportAttributeAccessIssue) + /torch/ao/ns/fx/graph_matcher.py:102:39 - error: Cannot access attribute "all_input_nodes" for class "int" +   Attribute "all_input_nodes" is unknown (reportAttributeAccessIssue) + /torch/ao/ns/fx/graph_matcher.py:102:39 - error: Cannot access attribute "all_input_nodes" for class "float" +   Attribute "all_input_nodes" is unknown (reportAttributeAccessIssue) + /torch/ao/ns/fx/graph_matcher.py:102:39 - error: Cannot access attribute "all_input_nodes" for class "bool" +   Attribute "all_input_nodes" is unknown (reportAttributeAccessIssue) + /torch/ao/ns/fx/graph_matcher.py:102:39 - error: Cannot access attribute "all_input_nodes" for class "complex" +   Attribute "all_input_nodes" is unknown (reportAttributeAccessIssue) + /torch/ao/ns/fx/graph_matcher.py:102:39 - error: Cannot access attribute "all_input_nodes" for class "OpOverload[..., Any]" +   Attribute "all_input_nodes" is unknown (reportAttributeAccessIssue) + /torch/ao/ns/fx/graph_matcher.py:102:39 - error: Cannot access attribute "all_input_nodes" for class "SymInt" +   Attribute "all_input_nodes" is unknown (reportAttributeAccessIssue) + /torch/ao/ns/fx/graph_matcher.py:102:39 - error: Cannot access attribute "all_input_nodes" for class "SymBool" +   Attribute "all_input_nodes" is unknown (reportAttributeAccessIssue) + /torch/ao/ns/fx/graph_matcher.py:102:39 - error: Cannot access attribute "all_input_nodes" for class "SymFloat" +   Attribute "all_input_nodes" is unknown (reportAttributeAccessIssue) + /torch/ao/ns/fx/graph_matcher.py:102:39 - error: "all_input_nodes" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/ao/ns/fx/graph_passes.py + /torch/ao/ns/fx/graph_passes.py:227:15 - error: "quantize_per_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/graph_passes.py:228:58 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/graph_passes.py:292:31 - error: "dequantize" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/graph_passes.py:315:41 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/graph_passes.py:910:72 - error: "Never" is not iterable (reportGeneralTypeIssues) + /torch/ao/ns/fx/graph_passes.py:962:64 - error: "node_c" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/ns/fx/graph_passes.py:966:40 - error: "Never" is not iterable (reportGeneralTypeIssues) + /torch/ao/ns/fx/graph_passes.py:971:21 - error: "node_c" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/ns/fx/graph_passes.py:1055:25 - error: "node_c" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/ns/fx/graph_passes.py:1066:21 - error: "node_c" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/ns/fx/graph_passes.py:1089:35 - error: "input_logger" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/ns/fx/graph_passes.py:1095:43 - error: "input_logger" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/ns/fx/graph_passes.py:1098:60 - error: "input_logger" is unbound (reportUnboundVariable) +/torch/ao/ns/fx/mappings.py + /torch/ao/ns/fx/mappings.py:63:19 - error: "avg_pool1d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:67:22 - error: "_nn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:71:22 - error: "_nn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:92:19 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:97:19 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:101:19 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:110:19 - error: "relu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:127:19 - error: "sigmoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:241:19 - error: "tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:264:19 - error: "unsqueeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:268:19 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:272:19 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:276:19 - error: "sort" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:280:19 - error: "repeat_interleave" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:284:19 - error: "min" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:288:19 - error: "mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:292:19 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:296:19 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:300:19 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:304:19 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:308:19 - error: "chunk" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:324:19 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:356:19 - error: "narrow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:423:41 - error: Argument of type "tuple[(...) -> Unknown, ((...) -> Unknown) | None]" cannot be assigned to parameter "object" of type "tuple[(...) -> Unknown, (...) -> Unknown]" in function "append" +   Type "((...) -> Unknown) | None" is not assignable to type "(...) -> Unknown" +     Type "None" is not assignable to type "(...) -> Unknown" (reportArgumentType) + /torch/ao/ns/fx/mappings.py:432:37 - error: Argument of type "tuple[((...) -> Unknown) | str, (...) -> Unknown]" cannot be assigned to parameter "object" of type "tuple[(...) -> Unknown, (...) -> Unknown]" in function "append" +   Type "((...) -> Unknown) | str" is not assignable to type "(...) -> Unknown" +     Type "str" is not assignable to type "(...) -> Unknown" (reportArgumentType) + /torch/ao/ns/fx/mappings.py:497:15 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:507:15 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:509:15 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:510:15 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:542:15 - error: "tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:544:15 - error: "sigmoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:547:15 - error: "adaptive_avg_pool1d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:560:15 - error: "avg_pool1d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:561:18 - error: "_nn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:562:18 - error: "_nn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:563:15 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:564:15 - error: "chunk" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:565:15 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:566:15 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:567:15 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:568:15 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:569:15 - error: "mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:570:15 - error: "min" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:571:15 - error: "narrow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:572:15 - error: "repeat_interleave" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:573:15 - error: "sort" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:574:15 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:575:15 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:576:15 - error: "unsqueeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/mappings.py:726:15 - error: "quantize_per_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/ns/fx/n_shadows_utils.py + /torch/ao/ns/fx/n_shadows_utils.py:29:11 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/n_shadows_utils.py:32:11 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/n_shadows_utils.py:150:29 - error: "Never" is not iterable (reportGeneralTypeIssues) + /torch/ao/ns/fx/n_shadows_utils.py:409:61 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/n_shadows_utils.py:539:59 - error: "quantize_fx" is not a known attribute of module "torch.ao.quantization" (reportAttributeAccessIssue) + /torch/ao/ns/fx/n_shadows_utils.py:1053:39 - error: "quantize_per_channel" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/n_shadows_utils.py:1059:43 - error: "quantize_per_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/n_shadows_utils.py:1139:34 - error: "fx" is not a known attribute of module "torch.ao.ns" (reportAttributeAccessIssue) + /torch/ao/ns/fx/n_shadows_utils.py:1336:36 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/n_shadows_utils.py:1342:35 - error: "mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/n_shadows_utils.py:1386:14 - warning: Import "tabulate" could not be resolved from source (reportMissingModuleSource) +/torch/ao/ns/fx/pattern_utils.py + /torch/ao/ns/fx/pattern_utils.py:115:27 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/ns/fx/utils.py + /torch/ao/ns/fx/utils.py:149:51 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/utils.py:206:38 - error: "quantize_per_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/utils.py:341:31 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/utils.py:342:34 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/utils.py:483:23 - error: "log10" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/utils.py:499:18 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/utils.py:525:19 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/utils.py:526:19 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/utils.py:529:19 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/ns/fx/utils.py:530:19 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py + /torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:156:34 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:157:54 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:177:42 - error: "index_select" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:181:43 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:182:71 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py + /torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py:103:45 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/pruning/_experimental/data_sparsifier/benchmarks/evaluate_forward_time.py + /torch/ao/pruning/_experimental/data_sparsifier/benchmarks/evaluate_forward_time.py:98:20 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/data_sparsifier/benchmarks/evaluate_forward_time.py:98:75 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/pruning/_experimental/data_sparsifier/lightning/tests/test_callbacks.py + /torch/ao/pruning/_experimental/data_sparsifier/lightning/tests/test_callbacks.py:132:23 - error: "util" is not a known attribute of module "importlib" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/data_sparsifier/lightning/tests/test_callbacks.py:280:23 - error: "util" is not a known attribute of module "importlib" (reportAttributeAccessIssue) +/torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py + /torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py:127:62 - error: "dequantize" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py:146:40 - error: "quantize_per_channel" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py + /torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:188:27 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:200:27 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:234:65 - error: Argument of type "Unknown | set[type] | None" cannot be assigned to parameter "SUPPORTED_MODULES" of type "set[type[Linear]]" in function "make_config_from_model" +   Type "Unknown | set[type] | None" is not assignable to type "set[type[Linear]]" +     "None" is not assignable to "set[type[Linear]]" (reportArgumentType) + /torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:248:23 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:248:57 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:263:28 - error: Cannot assign to attribute "bias" for class "Linear" +   Expression of type "None" cannot be assigned to attribute "bias" of class "Linear" +     "None" is not assignable to "Parameter" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:286:39 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, ModuleDict]" in function "apply_match" +   "dict[str, GraphModule]" is not assignable to "dict[str, ModuleDict]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "ModuleDict" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:290:44 - error: Argument of type "Target | Unknown" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "Target | Unknown" is not assignable to type "str" +     "FunctionType" is not assignable to "str" (reportArgumentType) + /torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:300:62 - error: Argument of type "Target" cannot be assigned to parameter "key" of type "str" in function "get" +   Type "Target" is not assignable to type "str" +     "FunctionType" is not assignable to "str" (reportArgumentType) +/torch/ao/pruning/_experimental/pruner/prune_functions.py + /torch/ao/pruning/_experimental/pruner/prune_functions.py:52:33 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/pruner/prune_functions.py:53:49 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/pruner/prune_functions.py:58:31 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/pruner/prune_functions.py:60:31 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/pruner/prune_functions.py:61:34 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/pruner/prune_functions.py:131:12 - error: "mask" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/pruning/_experimental/pruner/prune_functions.py:190:12 - error: "mask" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/pruning/_experimental/pruner/prune_functions.py:207:30 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/pruner/prune_functions.py:211:22 - error: Operator "~" not supported for type "Unbound | Tensor" (reportOperatorIssue) + /torch/ao/pruning/_experimental/pruner/prune_functions.py:211:23 - error: "mask" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/pruning/_experimental/pruner/prune_functions.py:211:60 - error: Operator "~" not supported for type "Unbound | Tensor" (reportOperatorIssue) + /torch/ao/pruning/_experimental/pruner/prune_functions.py:211:61 - error: "mask" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/pruning/_experimental/pruner/prune_functions.py:341:28 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/pruner/prune_functions.py:342:62 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/pruner/prune_functions.py:349:41 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/_experimental/pruner/prune_functions.py:430:36 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/pruning/sparsifier/base_sparsifier.py + /torch/ao/pruning/sparsifier/base_sparsifier.py:129:40 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/pruning/sparsifier/base_sparsifier.py:133:17 - error: "p" is possibly unbound (reportPossiblyUnboundVariable) +/torch/ao/quantization/__init__.py + /torch/ao/quantization/__init__.py:65:5 - warning: "MatchAllNode" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/ao/quantization/__init__.py:72:5 - warning: "Pattern" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/ao/quantization/__init__.py:131:5 - warning: "get_combined_dict" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/ao/quantization/__init__.py:217:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/__init__.py:224:24 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/_learnable_fake_quantize.py + /torch/ao/quantization/_learnable_fake_quantize.py:157:9 - error: Method "forward" overrides class "FakeQuantizeBase" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "X" (reportIncompatibleMethodOverride) +/torch/ao/quantization/backend_config/_common_operator_config_utils.py + /torch/ao/quantization/backend_config/_common_operator_config_utils.py:104:17 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/_common_operator_config_utils.py:111:17 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/_common_operator_config_utils.py:123:11 - error: "sigmoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/_common_operator_config_utils.py:128:11 - error: "tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/_common_operator_config_utils.py:148:15 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/_common_operator_config_utils.py:150:15 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/_common_operator_config_utils.py:155:58 - error: "relu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/_common_operator_config_utils.py:168:36 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/_common_operator_config_utils.py:474:36 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/backend_config/_qnnpack_pt2e.py + /torch/ao/quantization/backend_config/_qnnpack_pt2e.py:14:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/_qnnpack_pt2e.py:15:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/_qnnpack_pt2e.py:16:24 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/_qnnpack_pt2e.py:17:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/backend_config/backend_config.py + /torch/ao/quantization/backend_config/backend_config.py:105:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/backend_config.py:188:23 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/backend_config.py:193:28 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/backend_config.py:194:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/backend_config.py:195:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/backend_config.py:196:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/backend_config.py:222:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/backend_config.py:226:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/backend_config.py:230:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/backend_config.py:245:33 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/backend_config.py:252:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/backend_config.py:259:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/backend_config.py:382:56 - error: "backend_config" is not a known attribute of module "torch.ao.quantization" (reportAttributeAccessIssue) +/torch/ao/quantization/backend_config/executorch.py + /torch/ao/quantization/backend_config/executorch.py:41:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:42:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:43:24 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:44:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:48:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:49:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:53:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:54:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:55:24 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:56:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:61:17 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:66:17 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:74:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:76:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:81:23 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:82:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:83:24 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:84:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:89:23 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:90:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:91:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:315:15 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:317:15 - error: "sub" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:319:15 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:324:24 - error: "relu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:371:15 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:372:15 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:373:15 - error: "mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:374:15 - error: "permute" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:375:15 - error: "permute_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:376:15 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:421:36 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:426:36 - error: "concat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/executorch.py:431:36 - error: "concatenate" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/backend_config/fbgemm.py + /torch/ao/quantization/backend_config/fbgemm.py:33:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:34:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:35:24 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:36:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:40:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:41:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:45:23 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:46:24 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:47:24 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:48:22 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:52:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:53:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:54:24 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:55:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:60:23 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:61:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:62:24 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:63:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:68:23 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:69:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:70:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:74:23 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:75:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/fbgemm.py:76:24 - error: "quint4x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/backend_config/native.py + /torch/ao/quantization/backend_config/native.py:42:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:43:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:44:24 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:45:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:49:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:50:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:54:23 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:55:24 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:56:24 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:57:22 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:61:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:62:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:63:24 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:64:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:72:23 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:73:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:74:24 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:75:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:84:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:85:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:86:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:87:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:91:23 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:92:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:93:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:97:23 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:98:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/native.py:99:24 - error: "quint4x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/backend_config/onednn.py + /torch/ao/quantization/backend_config/onednn.py:39:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:40:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:41:24 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:42:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:46:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:47:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:51:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:52:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:53:24 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:54:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:59:23 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:60:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:61:24 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:65:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:66:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:67:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:68:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:184:12 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:267:12 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:370:12 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:463:12 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/onednn.py:588:11 - error: "tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/backend_config/qnnpack.py + /torch/ao/quantization/backend_config/qnnpack.py:27:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:28:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:29:24 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:30:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:34:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:35:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:39:23 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:40:24 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:41:24 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:42:22 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:46:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:47:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:48:24 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:49:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:54:23 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:55:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:56:24 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:57:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:62:23 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:63:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:64:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:68:23 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:69:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:70:24 - error: "quint4x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:86:17 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:91:17 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/qnnpack.py:101:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/backend_config/tensorrt.py + /torch/ao/quantization/backend_config/tensorrt.py:34:27 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/tensorrt.py:35:28 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/tensorrt.py:36:28 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/tensorrt.py:37:26 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/tensorrt.py:40:27 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/tensorrt.py:41:28 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/tensorrt.py:45:36 - error: "addmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/tensorrt.py:57:36 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/backend_config/x86.py + /torch/ao/quantization/backend_config/x86.py:30:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:31:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:32:24 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:33:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:37:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:38:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:42:23 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:43:24 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:44:24 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:45:22 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:49:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:50:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:51:24 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:52:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:57:23 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:58:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:59:24 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:60:22 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:65:23 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:66:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:67:24 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:71:23 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:72:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/backend_config/x86.py:73:24 - error: "quint4x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/experimental/adaround_fake_quantize.py + /torch/ao/quantization/experimental/adaround_fake_quantize.py:27:24 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_fake_quantize.py:27:40 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_fake_quantize.py:48:29 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_fake_quantize.py:55:28 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_fake_quantize.py:56:33 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_fake_quantize.py:57:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_fake_quantize.py:59:41 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_fake_quantize.py:60:42 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_fake_quantize.py:82:26 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_fake_quantize.py:91:6 - error: Argument of type "(self: Self@AdaroundFakeQuantizer, X: Tensor, _scale: Tensor, _zero_point: Tensor) -> None" cannot be assigned to parameter "drop" of type "bool" in function "ignore" +   "FunctionType" is not assignable to "bool" (reportArgumentType) + /torch/ao/quantization/experimental/adaround_fake_quantize.py:103:41 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_fake_quantize.py:109:27 - error: "floor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_fake_quantize.py:111:22 - error: "all" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_fake_quantize.py:111:32 - error: "ge" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_fake_quantize.py:113:25 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_fake_quantize.py:142:31 - error: "floor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_fake_quantize.py:146:23 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/experimental/adaround_loss.py + /torch/ao/quantization/experimental/adaround_loss.py:43:26 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_loss.py:57:29 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_loss.py:58:23 - error: "sigmoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_loss.py:65:32 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_loss.py:66:41 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/experimental/adaround_optimization.py + /torch/ao/quantization/experimental/adaround_optimization.py:33:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_optimization.py:33:36 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_optimization.py:36:24 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_optimization.py:36:40 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_optimization.py:47:29 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_optimization.py:190:18 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_optimization.py:196:28 - error: "vstack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_optimization.py:197:28 - error: "vstack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/adaround_optimization.py:205:63 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/experimental/linear.py + /torch/ao/quantization/experimental/linear.py:63:40 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/linear.py:141:58 - error: "FloatTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/linear.py:166:72 - error: "FloatTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/experimental/observer.py + /torch/ao/quantization/experimental/observer.py:25:42 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/observer.py:30:30 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/observer.py:31:30 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/observer.py:58:23 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/observer.py:76:28 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/observer.py:80:34 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/observer.py:81:32 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/observer.py:84:36 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/observer.py:84:55 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/observer.py:88:42 - error: "sort" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/observer.py:123:37 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/observer.py:124:31 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/observer.py:133:9 - error: Method "forward" overrides class "ObserverBase" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "x_orig" (reportIncompatibleMethodOverride) + /torch/ao/quantization/experimental/observer.py:154:16 - error: Import "matplotlib.pyplot" could not be resolved (reportMissingImports) +/torch/ao/quantization/experimental/qconfig.py + /torch/ao/quantization/experimental/qconfig.py:12:44 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/qconfig.py:12:78 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/qconfig.py:19:44 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/qconfig.py:19:78 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/qconfig.py:31:61 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/qconfig.py:36:65 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/qconfig.py:37:61 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/qconfig.py:49:61 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/qconfig.py:54:65 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/qconfig.py:55:61 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/experimental/quantizer.py + /torch/ao/quantization/experimental/quantizer.py:43:24 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/experimental/quantizer.py:84:24 - error: "from_numpy" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/fake_quantize.py + /torch/ao/quantization/fake_quantize.py:50:37 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:52:15 - error: "per_channel_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:53:15 - error: "per_channel_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:54:15 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:58:36 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:59:30 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:59:58 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:62:41 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:63:30 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:63:58 - error: "per_channel_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:66:39 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:67:29 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:92:58 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:92:82 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:93:56 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:93:80 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:228:9 - error: Method "forward" overrides class "FakeQuantizeBase" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "X" (reportIncompatibleMethodOverride) + /torch/ao/quantization/fake_quantize.py:404:58 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:404:82 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:405:56 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:405:80 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:424:22 - error: "fused_moving_avg_obs_fake_quant" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:445:17 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:446:19 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:457:17 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:458:19 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:471:17 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:494:17 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:495:19 - error: "per_channel_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:505:19 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:506:17 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:519:19 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:521:17 - error: "quint4x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:529:17 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:530:19 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:542:17 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:554:17 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:555:19 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:565:17 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:566:19 - error: "per_channel_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:576:17 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:577:19 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:589:21 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fake_quantize.py:590:23 - error: "per_channel_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/fx/_decomposed.py + /torch/ao/quantization/fx/_decomposed.py:14:26 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:14:39 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:14:51 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:14:65 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:14:78 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:15:24 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:15:43 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:18:15 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:18:35 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:21:20 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:21:45 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:57:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:74:30 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:74:45 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:75:32 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:76:29 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:83:18 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:84:15 - error: "round" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:95:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:97:30 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:97:45 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:98:32 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:99:29 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:103:18 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:121:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:153:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:155:30 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:155:45 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:156:32 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:165:29 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:169:18 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:188:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:220:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:249:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:251:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:284:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:301:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:303:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:306:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:307:18 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:327:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:329:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:362:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:364:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:367:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:381:22 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:404:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:406:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:441:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:456:73 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:472:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:473:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:474:15 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:485:30 - error: "aminmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:510:73 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:526:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:527:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:528:15 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:539:30 - error: "aminmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:548:23 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:554:83 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:557:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:558:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:559:15 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:568:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:568:39 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:568:75 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:569:24 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:575:83 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:577:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:577:39 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:577:75 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:578:24 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:605:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:624:30 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:624:45 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:625:32 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:626:29 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:640:17 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:641:15 - error: "round" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:655:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:657:30 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:657:45 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:658:32 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:659:29 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:666:18 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:687:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:689:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:724:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:752:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:754:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:761:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:765:18 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:780:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:796:30 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:800:23 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:809:25 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:820:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:823:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:823:42 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:823:78 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:824:27 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:840:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:856:21 - error: "amin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:857:21 - error: "amax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:858:25 - error: "min" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:858:44 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:859:25 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:859:44 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:860:17 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:860:29 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:871:24 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:876:24 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:878:27 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:878:57 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:893:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:905:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:908:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:908:42 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:908:78 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:909:27 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:936:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:975:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:978:18 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:994:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:995:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:995:39 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:1028:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:1029:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:1029:39 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:1033:18 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:1052:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:1068:14 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:1093:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:1124:18 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:1144:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:1146:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:1146:39 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:1182:20 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:1182:42 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:1221:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/ao/quantization/fx/_decomposed.py:1249:18 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:1262:60 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:1267:65 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_decomposed.py:1268:18 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/fx/_equalize.py + /torch/ao/quantization/fx/_equalize.py:39:11 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:39:36 - error: "per_channel_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:40:11 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:40:39 - error: "per_channel_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:65:21 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:66:23 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:73:34 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:73:59 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:89:41 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:167:21 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:168:23 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:180:30 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:180:55 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:191:41 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:233:22 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:241:32 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:246:32 - error: "nan_to_num" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:285:17 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:285:39 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:288:17 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:288:38 - error: "per_channel_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:381:11 - error: "weight" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/ao/quantization/fx/_equalize.py:492:61 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:566:27 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:566:45 - error: "reciprocal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:575:27 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:588:25 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:640:27 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:640:45 - error: "reciprocal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:651:27 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:654:18 - error: "allclose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:672:25 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:854:75 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:871:49 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:884:21 - error: Argument of type "Unknown | Any | None" cannot be assigned to parameter "equalization_scale" of type "Tensor" in function "scale_weight_node" +   Type "Unknown | Any | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/ao/quantization/fx/_equalize.py:893:21 - error: Argument of type "Unknown | Any | None" cannot be assigned to parameter "equalization_scale" of type "Tensor" in function "scale_weight_functional" +   Type "Unknown | Any | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/ao/quantization/fx/_equalize.py:929:61 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "update_obs_for_equalization" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/_equalize.py:930:27 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "convert_eq_obs" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/_equalize.py:960:57 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_equalize.py:981:21 - error: "fx" is not a known attribute of module "torch.ao.ns" (reportAttributeAccessIssue) +/torch/ao/quantization/fx/_lower_to_native_backend.py + /torch/ao/quantization/fx/_lower_to_native_backend.py:239:39 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:363:32 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:363:45 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:366:16 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:366:30 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:370:16 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:370:31 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:377:16 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:377:30 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:380:16 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:380:30 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:383:16 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:383:30 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:402:11 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:405:11 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:406:11 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:410:11 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:412:11 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:501:46 - error: "users" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/ao/quantization/fx/_lower_to_native_backend.py:584:59 - error: "quantize_per_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:592:78 - error: "relu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:664:59 - error: "quantize_per_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:713:13 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "_match_static_pattern" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/_lower_to_native_backend.py:725:44 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "_get_module" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/_lower_to_native_backend.py:784:13 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "_match_static_pattern_with_two_inputs" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/_lower_to_native_backend.py:795:44 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "_get_module" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/_lower_to_native_backend.py:861:53 - error: "quantize_per_tensor_dynamic" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:866:45 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:867:46 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:867:60 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:875:21 - error: "__getitem__" method not defined on type "GraphModule" (reportIndexIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:925:16 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "_match_static_pattern" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/_lower_to_native_backend.py:945:19 - error: "quantize_per_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:946:19 - error: "quantize_per_channel" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:965:25 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:965:25 - error: Argument of type "tuple[Node | Tensor]" cannot be assigned to parameter "value" of type "Node | Tensor" in function "__setitem__" +   Type "tuple[Node | Tensor]" is not assignable to type "Node | Tensor" +     "tuple[Node | Tensor]" is not assignable to "Node" +     "tuple[Node | Tensor]" is not assignable to "Tensor" (reportArgumentType) + /torch/ao/quantization/fx/_lower_to_native_backend.py:974:25 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:974:25 - error: Argument of type "tuple[Node | Tensor]" cannot be assigned to parameter "value" of type "Node | Tensor" in function "__setitem__" +   Type "tuple[Node | Tensor]" is not assignable to type "Node | Tensor" +     "tuple[Node | Tensor]" is not assignable to "Node" +     "tuple[Node | Tensor]" is not assignable to "Tensor" (reportArgumentType) + /torch/ao/quantization/fx/_lower_to_native_backend.py:1072:53 - error: "quantize_per_tensor_dynamic" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:1078:45 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:1079:46 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:1079:60 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:1154:15 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:1156:15 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:1157:15 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:1164:13 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "_match_static_pattern" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/_lower_to_native_backend.py:1227:46 - error: "quantize_per_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_lower_to_native_backend.py:1232:41 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/fx/_model_report/detector.py + /torch/ao/quantization/fx/_model_report/detector.py:171:19 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/detector.py:503:9 - error: Method "determine_observer_insert_points" overrides class "DetectorBase" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "model", override parameter is named "prepared_fx_model" (reportIncompatibleMethodOverride) + /torch/ao/quantization/fx/_model_report/detector.py:955:9 - error: Method "determine_observer_insert_points" overrides class "DetectorBase" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "model", override parameter is named "prepared_fx_model" (reportIncompatibleMethodOverride) + /torch/ao/quantization/fx/_model_report/detector.py:1059:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/detector.py:1060:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/detector.py:1072:27 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/detector.py:1074:46 - error: "aminmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/detector.py:1076:54 - error: "aminmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/detector.py:1077:37 - error: "min" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/detector.py:1078:37 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/detector.py:1178:23 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/detector.py:1178:50 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/detector.py:1481:9 - error: Method "determine_observer_insert_points" overrides class "DetectorBase" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "model", override parameter is named "prepared_fx_model" (reportIncompatibleMethodOverride) +/torch/ao/quantization/fx/_model_report/model_report.py + /torch/ao/quantization/fx/_model_report/model_report.py:216:31 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/model_report.py:244:61 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/model_report.py:264:52 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/model_report.py:378:24 - error: No overloads for "sum" match the provided arguments (reportCallIssue) + /torch/ao/quantization/fx/_model_report/model_report.py:378:28 - error: Argument of type "bool" cannot be assigned to parameter "iterable" of type "Iterable[_SupportsSumNoDefaultT@sum]" in function "sum" +   "bool" is incompatible with protocol "Iterable[_SupportsSumNoDefaultT@sum]" +     "__iter__" is not present (reportArgumentType) +/torch/ao/quantization/fx/_model_report/model_report_observer.py + /torch/ao/quantization/fx/_model_report/model_report_observer.py:56:32 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/model_report_observer.py:60:67 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/model_report_observer.py:61:60 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/model_report_observer.py:62:60 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/model_report_observer.py:66:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/model_report_observer.py:67:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/model_report_observer.py:70:55 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/model_report_observer.py:71:64 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/model_report_observer.py:72:66 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/_model_report/model_report_observer.py:73:57 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/fx/_model_report/model_report_visualizer.py + /torch/ao/quantization/fx/_model_report/model_report_visualizer.py:11:10 - warning: Import "tabulate" could not be resolved from source (reportMissingModuleSource) + /torch/ao/quantization/fx/_model_report/model_report_visualizer.py:19:12 - error: Import "matplotlib.pyplot" could not be resolved (reportMissingImports) + /torch/ao/quantization/fx/_model_report/model_report_visualizer.py:456:26 - error: "tabulate" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/quantization/fx/_model_report/model_report_visualizer.py:460:26 - error: "tabulate" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/quantization/fx/_model_report/model_report_visualizer.py:610:14 - error: "plt" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/quantization/fx/_model_report/model_report_visualizer.py:613:9 - error: "plt" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/quantization/fx/_model_report/model_report_visualizer.py:640:9 - error: "plt" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/quantization/fx/_model_report/model_report_visualizer.py:684:14 - error: "plt" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/quantization/fx/_model_report/model_report_visualizer.py:696:29 - error: "plt" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/quantization/fx/_model_report/model_report_visualizer.py:702:13 - error: "plt" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/quantization/fx/_model_report/model_report_visualizer.py:704:29 - error: "plt" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/quantization/fx/_model_report/model_report_visualizer.py:710:13 - error: "plt" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/quantization/fx/_model_report/model_report_visualizer.py:712:9 - error: "plt" is possibly unbound (reportPossiblyUnboundVariable) +/torch/ao/quantization/fx/convert.py + /torch/ao/quantization/fx/convert.py:77:11 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:78:11 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:79:11 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:80:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:81:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:82:11 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:83:11 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:84:11 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:85:11 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:86:11 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:90:11 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:91:11 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:101:25 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:267:33 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:267:46 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:352:25 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:358:71 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:361:78 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:376:25 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:419:15 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:420:15 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:421:15 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:422:15 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:423:15 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:443:33 - error: "quantize_per_channel" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:448:33 - error: "quantize_per_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:473:28 - error: Argument of type "Unknown | ((...) -> Unknown) | None" cannot be assigned to parameter "target" of type "Target" in function "create_node" +   Type "Unknown | ((...) -> Unknown) | None" is not assignable to type "Target" +     Type "None" is not assignable to type "Target" +       Type "None" is not assignable to type "(...) -> Any" +       "None" is not assignable to "str" (reportArgumentType) + /torch/ao/quantization/fx/convert.py:482:29 - error: "quantize_per_tensor_dynamic" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:495:28 - error: Argument of type "Unknown | ((...) -> Unknown) | None" cannot be assigned to parameter "target" of type "Target" in function "create_node" +   Type "Unknown | ((...) -> Unknown) | None" is not assignable to type "Target" +     Type "None" is not assignable to type "Target" +       Type "None" is not assignable to type "(...) -> Any" +       "None" is not assignable to "str" (reportArgumentType) + /torch/ao/quantization/fx/convert.py:500:25 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:513:28 - error: Argument of type "((...) -> Unknown) | None" cannot be assigned to parameter "target" of type "Target" in function "create_node" +   Type "((...) -> Unknown) | None" is not assignable to type "Target" +     Type "None" is not assignable to type "Target" +       Type "None" is not assignable to type "(...) -> Any" +       "None" is not assignable to "str" (reportArgumentType) + /torch/ao/quantization/fx/convert.py:551:27 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:716:44 - error: "quantize_fx" is not a known attribute of module "torch.ao.quantization" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:768:25 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/convert.py:835:9 - error: No overloads for "update" match the provided arguments (reportCallIssue) + /torch/ao/quantization/fx/convert.py:836:13 - error: Argument of type "dict[str, dict[str, Unknown] | Any]" cannot be assigned to parameter "m" of type "Iterable[tuple[str, bool]]" in function "update" +   "Literal['weight_ih']" is not assignable to "tuple[str, bool]" +   "Literal['weight_hh']" is not assignable to "tuple[str, bool]" (reportArgumentType) + /torch/ao/quantization/fx/convert.py:850:17 - error: Argument of type "dict[str, Unknown] | Any" cannot be assigned to parameter "value" of type "bool" in function "__setitem__" +   Type "dict[str, Unknown] | Any" is not assignable to type "bool" +     "dict[str, Unknown]" is not assignable to "bool" (reportArgumentType) + /torch/ao/quantization/fx/convert.py:1150:20 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "_generate_node_name_to_qconfig" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/convert.py:1177:65 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "update_obs_for_equalization" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/convert.py:1178:31 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "convert_eq_obs" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/convert.py:1237:37 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "named_modules" of type "dict[str, Module]" in function "_get_module" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/convert.py:1253:29 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "_replace_observer_with_quantize_dequantize_node_decomposed" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/convert.py:1262:29 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "_replace_observer_with_quantize_dequantize_node" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/convert.py:1273:27 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "convert_standalone_module" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/convert.py:1284:54 - error: "__getitem__" method not defined on type "Module" (reportIndexIssue) + /torch/ao/quantization/fx/convert.py:1289:21 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "convert_weighted_module" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/convert.py:1301:21 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "convert_custom_module" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) +/torch/ao/quantization/fx/fuse.py + /torch/ao/quantization/fx/fuse.py:123:17 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "named_modules" of type "dict[str, Module]" in function "fuse" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) +/torch/ao/quantization/fx/lstm_utils.py + /torch/ao/quantization/fx/lstm_utils.py:122:24 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/lstm_utils.py:123:24 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/lstm_utils.py:124:24 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/lstm_utils.py:125:24 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/lstm_utils.py:126:24 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/lstm_utils.py:130:24 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/lstm_utils.py:131:24 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/lstm_utils.py:132:24 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/lstm_utils.py:133:24 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/lstm_utils.py:134:24 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/lstm_utils.py:135:24 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/lstm_utils.py:136:24 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/lstm_utils.py:137:24 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/lstm_utils.py:143:37 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/lstm_utils.py:144:35 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/lstm_utils.py:146:39 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/lstm_utils.py:147:35 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/lstm_utils.py:211:37 - error: "quantize_per_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/fx/prepare.py + /torch/ao/quantization/fx/prepare.py:90:45 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:92:11 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:93:11 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:94:11 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:95:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:96:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:97:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:98:11 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:99:11 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:100:11 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:101:11 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:104:73 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:233:59 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:253:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:362:38 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:388:41 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:388:55 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:487:25 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:621:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:623:36 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:624:43 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:627:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:746:12 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:821:25 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:847:16 - error: Arguments missing for parameters "args", "kwargs", "name", "op", "target" (reportCallIssue) + /torch/ao/quantization/fx/prepare.py:927:23 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:929:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:933:55 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:993:25 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1155:15 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1227:47 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1238:56 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1287:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1348:53 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1430:34 - error: Cannot access attribute "args" for class "tuple[Argument, ...]" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1430:34 - error: Cannot access attribute "args" for class "Sequence[Argument]" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1430:34 - error: Cannot access attribute "args" for class "Mapping[str, Argument]" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1430:34 - error: Cannot access attribute "args" for class "slice[Any, Any, Any]" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1430:34 - error: Cannot access attribute "args" for class "range" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1430:34 - error: Cannot access attribute "args" for class "str" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1430:34 - error: Cannot access attribute "args" for class "int" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1430:34 - error: Cannot access attribute "args" for class "float" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1430:34 - error: Cannot access attribute "args" for class "bool" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1430:34 - error: Cannot access attribute "args" for class "complex" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1430:34 - error: Cannot access attribute "args" for class "OpOverload[..., Any]" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1430:34 - error: Cannot access attribute "args" for class "SymInt" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1430:34 - error: Cannot access attribute "args" for class "SymBool" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1430:34 - error: Cannot access attribute "args" for class "SymFloat" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1430:34 - error: "args" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/ao/quantization/fx/prepare.py:1432:39 - error: Cannot access attribute "args" for class "tuple[Argument, ...]" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1432:39 - error: Cannot access attribute "args" for class "Sequence[Argument]" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1432:39 - error: Cannot access attribute "args" for class "Mapping[str, Argument]" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1432:39 - error: Cannot access attribute "args" for class "slice[Any, Any, Any]" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1432:39 - error: Cannot access attribute "args" for class "range" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1432:39 - error: Cannot access attribute "args" for class "str" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1432:39 - error: Cannot access attribute "args" for class "int" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1432:39 - error: Cannot access attribute "args" for class "float" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1432:39 - error: Cannot access attribute "args" for class "bool" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1432:39 - error: Cannot access attribute "args" for class "complex" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1432:39 - error: Cannot access attribute "args" for class "OpOverload[..., Any]" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1432:39 - error: Cannot access attribute "args" for class "SymInt" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1432:39 - error: Cannot access attribute "args" for class "SymBool" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1432:39 - error: Cannot access attribute "args" for class "SymFloat" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1432:39 - error: "args" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/ao/quantization/fx/prepare.py:1437:56 - error: Cannot access attribute "target" for class "tuple[Argument, ...]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1437:56 - error: Cannot access attribute "target" for class "Sequence[Argument]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1437:56 - error: Cannot access attribute "target" for class "Mapping[str, Argument]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1437:56 - error: Cannot access attribute "target" for class "slice[Any, Any, Any]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1437:56 - error: Cannot access attribute "target" for class "range" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1437:56 - error: Cannot access attribute "target" for class "str" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1437:56 - error: Cannot access attribute "target" for class "int" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1437:56 - error: Cannot access attribute "target" for class "float" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1437:56 - error: Cannot access attribute "target" for class "bool" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1437:56 - error: Cannot access attribute "target" for class "complex" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1437:56 - error: Cannot access attribute "target" for class "OpOverload[..., Any]" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1437:56 - error: Cannot access attribute "target" for class "SymInt" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1437:56 - error: Cannot access attribute "target" for class "SymBool" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1437:56 - error: Cannot access attribute "target" for class "SymFloat" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1437:56 - error: "target" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/ao/quantization/fx/prepare.py:1592:13 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "named_modules" of type "dict[str, Module]" in function "_set_target_dtype_info_for_matched_node_pattern" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/prepare.py:1616:23 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "all_node_args_have_no_tensors" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/prepare.py:1669:32 - error: "node" is possibly unbound (reportPossiblyUnboundVariable) + /torch/ao/quantization/fx/prepare.py:1678:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/prepare.py:1687:17 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "named_modules" of type "dict[str, Module]" in function "_set_target_dtype_info_for_matched_node_pattern" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/prepare.py:1808:29 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "named_modules" of type "dict[str, Module]" in function "_maybe_insert_input_observers_for_node" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/prepare.py:1823:29 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "named_modules" of type "dict[str, Module]" in function "_maybe_insert_input_equalization_observers_for_node" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/prepare.py:1838:35 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "named_modules" of type "dict[str, Module]" in function "_is_custom_module_lstm" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/prepare.py:1852:46 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "named_modules" of type "dict[str, Module]" in function "_insert_dequant_stubs_for_custom_module_lstm_output" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/prepare.py:1857:52 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "named_modules" of type "dict[str, Module]" in function "_swap_custom_module_to_observed" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/prepare.py:1865:37 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "named_modules" of type "dict[str, Module]" in function "_maybe_insert_output_observer_for_node" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/prepare.py:1898:47 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "named_modules" of type "dict[str, Module]" in function "_is_observer_in_same_graph" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/prepare.py:1910:54 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "named_modules" of type "dict[str, Module]" in function "_maybe_make_input_output_share_observers" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/prepare.py:1913:58 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "named_modules" of type "dict[str, Module]" in function "_remove_output_observer" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/prepare.py:1927:45 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "named_modules" of type "dict[str, Module]" in function "_swap_custom_module_to_observed" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/prepare.py:1933:38 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "named_modules" of type "dict[str, Module]" in function "_maybe_insert_observers_before_graph_output" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/prepare.py:2150:9 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "_generate_node_name_to_qconfig" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/prepare.py:2158:9 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "_generate_node_name_to_qconfig" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/prepare.py:2176:9 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "modules" of type "dict[str, Module]" in function "_find_matches" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/fx/prepare.py:2193:9 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "named_modules" of type "dict[str, Module]" in function "_run_prepare_fx_on_standalone_modules" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) +/torch/ao/quantization/fx/qconfig_mapping_utils.py + /torch/ao/quantization/fx/qconfig_mapping_utils.py:274:57 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/qconfig_mapping_utils.py:275:59 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/qconfig_mapping_utils.py:276:55 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/qconfig_mapping_utils.py:277:59 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/qconfig_mapping_utils.py:284:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/qconfig_mapping_utils.py:286:51 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/qconfig_mapping_utils.py:287:51 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/qconfig_mapping_utils.py:290:24 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/qconfig_mapping_utils.py:297:43 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/fx/tracer.py + /torch/ao/quantization/fx/tracer.py:14:36 - error: "proxy" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/ao/quantization/fx/utils.py + /torch/ao/quantization/fx/utils.py:268:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/utils.py:281:20 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/utils.py:399:33 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/utils.py:402:15 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/utils.py:410:35 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/utils.py:413:35 - error: "unsqueeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/utils.py:417:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/utils.py:422:24 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/utils.py:512:45 - error: "fx" is not a known attribute of module "torch.ao.quantization" (reportAttributeAccessIssue) + /torch/ao/quantization/fx/utils.py:537:45 - error: "fx" is not a known attribute of module "torch.ao.quantization" (reportAttributeAccessIssue) +/torch/ao/quantization/observer.py + /torch/ao/quantization/observer.py:232:21 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:233:23 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:238:19 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:238:31 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:252:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:254:19 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:255:19 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:256:19 - error: "per_channel_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:257:19 - error: "per_channel_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:258:19 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:266:19 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:267:19 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:268:19 - error: "quint4x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:269:19 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:270:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:271:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:272:19 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:273:19 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:274:19 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:275:19 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:276:19 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:286:32 - error: Argument of type "Unknown | None" cannot be assigned to parameter "quant_min" of type "int" in function "validate_qmin_qmax" +   Type "Unknown | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /torch/ao/quantization/observer.py:286:43 - error: Argument of type "Unknown | None" cannot be assigned to parameter "quant_max" of type "int" in function "validate_qmin_qmax" +   Type "Unknown | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /torch/ao/quantization/observer.py:289:13 - error: Argument of type "Unknown | None" cannot be assigned to parameter "quant_min" of type "int" in function "calculate_qmin_qmax" +   Type "Unknown | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /torch/ao/quantization/observer.py:291:13 - error: Argument of type "Unknown | None" cannot be assigned to parameter "quant_max" of type "int" in function "calculate_qmin_qmax" +   Type "Unknown | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /torch/ao/quantization/observer.py:369:26 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:369:75 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:374:29 - error: "min" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:374:48 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:375:29 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:375:48 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:378:23 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:378:60 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:379:28 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:379:66 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:382:35 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:383:38 - error: "per_channel_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:385:33 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:387:27 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:388:37 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:388:51 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:396:38 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:398:36 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:400:27 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:400:64 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:408:27 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:409:44 - error: "round" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:409:80 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:410:32 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:416:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:419:32 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:422:38 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:423:36 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:509:21 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:510:23 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:515:19 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:515:31 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:546:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:547:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:549:35 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:551:37 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:558:9 - error: Method "forward" overrides class "ObserverBase" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "x_orig" (reportIncompatibleMethodOverride) + /torch/ao/quantization/observer.py:636:21 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:637:23 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:641:19 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:641:31 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:720:21 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:721:23 - error: "per_channel_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:726:19 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:726:31 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:752:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:753:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:755:35 - error: "per_channel_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:757:37 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:763:9 - error: Method "forward" overrides class "ObserverBase" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "x_orig" (reportIncompatibleMethodOverride) + /torch/ao/quantization/observer.py:929:21 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:930:23 - error: "per_channel_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:934:19 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:934:31 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1019:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1019:36 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1020:23 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1025:19 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1025:31 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1052:49 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1053:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1054:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1055:37 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1087:25 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1094:34 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1095:19 - error: "div" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1101:32 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1102:19 - error: "div" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1108:22 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1114:19 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1119:19 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1119:53 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1126:38 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1143:23 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1144:22 - error: "cumsum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1207:19 - error: "linspace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1215:42 - error: "linspace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1220:19 - error: "bucketize" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1230:34 - error: "bincount" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1252:31 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1289:9 - error: Method "forward" overrides class "ObserverBase" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "x_orig" (reportIncompatibleMethodOverride) + /torch/ao/quantization/observer.py:1293:30 - error: "aminmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1304:34 - error: "aminmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1314:29 - error: "min" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1315:29 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1320:38 - error: "histc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1460:9 - error: Method "forward" overrides class "ObserverBase" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "x", override parameter is named "X" (reportIncompatibleMethodOverride) + /torch/ao/quantization/observer.py:1493:21 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1504:29 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1506:25 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1506:37 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1585:36 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1615:32 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1839:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1844:28 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1845:33 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:1909:48 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/ao/quantization/observer.py:1945:44 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/ao/quantization/observer.py:1959:44 - error: "name" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/ao/quantization/observer.py:2070:17 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:2070:38 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:2077:17 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:2078:19 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:2093:17 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:2093:38 - error: "per_channel_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:2101:17 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:2102:19 - error: "per_channel_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:2112:17 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:2122:17 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:2122:39 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:2129:17 - error: "quint4x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:2129:41 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:2138:52 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/observer.py:2141:50 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/pt2e/_numeric_debugger.py + /torch/ao/quantization/pt2e/_numeric_debugger.py:112:32 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/_numeric_debugger.py:112:53 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/pt2e/duplicate_dq_pass.py + /torch/ao/quantization/pt2e/duplicate_dq_pass.py:65:59 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/duplicate_dq_pass.py:71:69 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/ao/quantization/pt2e/export_utils.py + /torch/ao/quantization/pt2e/export_utils.py:66:33 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/export_utils.py:140:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/export_utils.py:141:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/export_utils.py:142:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/export_utils.py:143:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/export_utils.py:144:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/pt2e/graph_utils.py + /torch/ao/quantization/pt2e/graph_utils.py:32:12 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/graph_utils.py:33:12 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/pt2e/prepare.py + /torch/ao/quantization/pt2e/prepare.py:326:25 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/prepare.py:348:16 - error: Arguments missing for parameters "args", "kwargs", "name", "op", "target" (reportCallIssue) + /torch/ao/quantization/pt2e/prepare.py:423:25 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/prepare.py:476:25 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/prepare.py:509:25 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/prepare.py:520:9 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "named_modules" of type "dict[str, Module]" in function "_maybe_insert_input_observers_for_node" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) + /torch/ao/quantization/pt2e/prepare.py:534:9 - error: Argument of type "dict[str, GraphModule]" cannot be assigned to parameter "named_modules" of type "dict[str, Module]" in function "_maybe_insert_output_observer_for_node" +   "dict[str, GraphModule]" is not assignable to "dict[str, Module]" +     Type parameter "_VT@dict" is invariant, but "GraphModule" is not the same as "Module" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportArgumentType) +/torch/ao/quantization/pt2e/qat_utils.py + /torch/ao/quantization/pt2e/qat_utils.py:51:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:51:64 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:52:45 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:52:69 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:54:42 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:54:66 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:55:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:55:71 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:57:37 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:102:29 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:110:27 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:144:29 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:222:29 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:236:31 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:656:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:657:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:658:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:659:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:660:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:661:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:662:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:667:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:668:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:669:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:670:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:671:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:672:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:673:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:903:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:904:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:905:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:906:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:907:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:908:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:913:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:914:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:915:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:916:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:917:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/qat_utils.py:918:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/pt2e/representation/rewrite.py + /torch/ao/quantization/pt2e/representation/rewrite.py:623:15 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:623:54 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:624:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:624:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:625:15 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:625:36 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:626:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:626:42 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:627:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:627:41 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:628:15 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:628:54 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:629:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:629:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:630:15 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:630:36 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:631:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:631:42 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:632:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:632:41 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:633:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:633:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:634:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:634:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:635:15 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:635:36 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:636:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:636:42 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:637:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:637:41 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:641:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:641:41 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:644:15 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:644:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:645:15 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:645:54 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:646:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:646:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:647:15 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:647:36 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:648:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:648:42 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:649:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:649:41 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:650:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:650:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:654:15 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:654:60 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:655:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:655:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:656:15 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:656:36 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:657:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:657:42 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:658:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:658:41 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:659:15 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:659:60 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:660:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:660:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:661:15 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:661:36 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:662:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:662:42 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:663:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:663:41 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:664:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:664:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:665:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:665:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:666:15 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:666:36 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:667:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:667:42 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:668:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:668:41 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:672:15 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:672:60 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:673:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:673:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:674:15 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:674:36 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:675:15 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:675:60 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:676:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:676:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:677:15 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:677:36 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:678:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:678:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:679:15 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:679:36 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:680:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:680:42 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:681:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:681:41 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:685:15 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:685:60 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:686:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:686:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:687:15 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:687:36 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:688:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:688:42 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:689:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:689:41 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:690:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:690:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:691:15 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:691:36 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:692:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:692:42 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:693:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:693:41 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:697:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:697:45 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:698:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:698:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:699:15 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:699:36 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:700:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:700:42 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:701:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:701:41 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:705:15 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:705:60 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:706:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:706:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:707:15 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:707:36 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:708:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:708:42 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:709:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:709:41 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:713:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:713:45 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:714:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:714:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:715:15 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:715:36 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:722:15 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:722:60 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:723:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:723:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:724:15 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:724:36 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:737:59 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:737:71 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:741:59 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/representation/rewrite.py:741:71 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/pt2e/utils.py + /torch/ao/quantization/pt2e/utils.py:240:9 - error: Argument of type "Any | None" cannot be assigned to parameter "conv_w" of type "Tensor" in function "fuse_conv_bn_weights" +   Type "Any | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/ao/quantization/pt2e/utils.py:240:25 - error: Argument of type "Any | None" cannot be assigned to parameter "bn_rm" of type "Tensor" in function "fuse_conv_bn_weights" +   Type "Any | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/ao/quantization/pt2e/utils.py:240:32 - error: Argument of type "Any | None" cannot be assigned to parameter "bn_rv" of type "Tensor" in function "fuse_conv_bn_weights" +   Type "Any | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/ao/quantization/pt2e/utils.py:364:16 - error: "_export" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/utils.py:475:52 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/pt2e/utils.py:517:56 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/qconfig.py + /torch/ao/quantization/qconfig.py:181:58 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/qconfig.py:182:54 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/qconfig.py:189:58 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/qconfig.py:190:54 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/qconfig.py:348:21 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/qconfig.py:355:21 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/qconfig.py:361:51 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/qconfig.py:366:51 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/qconfig.py:496:21 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/qconfig.py:508:21 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/qconfig.py:516:58 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/qconfig.py:517:54 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/qconfig.py:521:58 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/qconfig.py:644:12 - error: Operator "==" not supported for types "ObserverBase | type[ObserverBase] | type[FakeQuantizeBase] | _PartialWrapper" and "_PartialWrapper | type[ObserverBase] | type[FakeQuantizeBase] | ObserverBase" +   Operator "==" not supported for types "type[ObserverBase]" and "type[ObserverBase]" (reportOperatorIssue) +/torch/ao/quantization/qconfig_mapping.py + /torch/ao/quantization/qconfig_mapping.py:54:11 - error: "sigmoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/qconfig_mapping.py:59:11 - error: "tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/quantization_mappings.py + /torch/ao/quantization/quantization_mappings.py:211:24 - error: "quantizable" is not a known attribute of module "torch.nn" (reportAttributeAccessIssue) + /torch/ao/quantization/quantization_mappings.py:211:45 - error: "quantizable" is not a known attribute of module "torch.nn" (reportAttributeAccessIssue) +/torch/ao/quantization/quantize.py + /torch/ao/quantization/quantize.py:61:21 - error: "quantizable" is not a known attribute of module "torch.nn" (reportAttributeAccessIssue) + /torch/ao/quantization/quantize.py:62:35 - error: "quantizable" is not a known attribute of module "torch.nn" (reportAttributeAccessIssue) + /torch/ao/quantization/quantize.py:65:12 - error: "quantizable" is not a known attribute of module "torch.nn" (reportAttributeAccessIssue) + /torch/ao/quantization/quantize.py:65:33 - error: "quantized" is not a known attribute of module "torch.nn" (reportAttributeAccessIssue) + /torch/ao/quantization/quantize.py:66:12 - error: "quantizable" is not a known attribute of module "torch.nn" (reportAttributeAccessIssue) + /torch/ao/quantization/quantize.py:66:47 - error: "quantized" is not a known attribute of module "torch.nn" (reportAttributeAccessIssue) +/torch/ao/quantization/quantize_fx.py + /torch/ao/quantization/quantize_fx.py:237:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantize_fx.py:393:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantize_fx.py:507:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantize_fx.py:624:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantize_fx.py:675:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantize_fx.py:727:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/quantize_pt2e.py + /torch/ao/quantization/quantize_pt2e.py:93:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantize_pt2e.py:171:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantize_pt2e.py:238:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/quantizer/embedding_quantizer.py + /torch/ao/quantization/quantizer/embedding_quantizer.py:29:21 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/embedding_quantizer.py:30:23 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/quantizer/quantizer.py + /torch/ao/quantization/quantizer/quantizer.py:38:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/quantizer.py:46:20 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/quantizer.py:70:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/quantizer.py:75:20 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/quantizer.py:105:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/quantizer.py:108:20 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/quantizer/x86_inductor_quantizer.py + /torch/ao/quantization/quantizer/x86_inductor_quantizer.py:300:21 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/x86_inductor_quantizer.py:303:23 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/x86_inductor_quantizer.py:318:21 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/x86_inductor_quantizer.py:321:23 - error: "per_channel_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/quantizer/xnnpack_quantizer.py + /torch/ao/quantization/quantizer/xnnpack_quantizer.py:59:20 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer.py:60:18 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer.py:61:17 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer.py:82:24 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer.py:134:21 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer.py:137:23 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer.py:144:15 - error: "per_channel_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer.py:144:66 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer.py:157:36 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer.py:162:21 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:125:15 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:126:15 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:141:15 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:142:15 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:159:15 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:160:15 - error: "per_channel_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:177:41 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:510:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:511:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:512:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:513:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:514:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:515:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:516:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:521:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:522:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:523:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:524:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:525:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:526:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:527:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:761:44 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:1026:61 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:1139:34 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/ao/quantization/utils.py + /torch/ao/quantization/utils.py:106:11 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:107:11 - error: "repeat_interleave" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:108:11 - error: "sigmoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:109:11 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:110:11 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:111:11 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:112:11 - error: "tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:113:11 - error: "unsqueeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:114:11 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:117:11 - error: "mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:370:36 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:370:50 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:373:32 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:373:45 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:452:18 - error: "any" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:462:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:473:28 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:473:42 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:487:28 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:487:41 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:492:30 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:492:44 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:501:28 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:501:41 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:506:30 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:506:44 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:511:30 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:511:44 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:513:29 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:515:29 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:661:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:664:20 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:664:36 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:678:22 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:678:71 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:682:25 - error: "min" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:682:44 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:683:25 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:683:44 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:686:19 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:686:56 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:687:24 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:687:62 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:690:25 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:690:66 - error: "per_channel_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:691:29 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:693:23 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:694:28 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:694:41 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:702:27 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:704:23 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:704:55 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:712:23 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:713:40 - error: "round" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:713:76 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:714:28 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:720:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:723:28 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:726:29 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:727:32 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:731:27 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:731:56 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:815:15 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:815:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/ao/quantization/utils.py:820:26 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/autograd/__init__.py + /torch/autograd/__init__.py:74:22 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/__init__.py:103:30 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/__init__.py:135:39 - error: "is_same_size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/__init__.py:220:31 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/__init__.py:230:31 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/__init__.py:230:66 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/__init__.py:316:17 - error: "_are_functorch_transforms_active" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/__init__.py:535:24 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/__init__.py:570:17 - error: "_autograd_init" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/__init__.py:574:6 - warning: Import "torch._C._autograd" could not be resolved from source (reportMissingModuleSource) + /torch/autograd/__init__.py:599:6 - warning: Import "torch._C._profiler" could not be resolved from source (reportMissingModuleSource) + /torch/autograd/__init__.py:610:38 - error: "_is_multithreading_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/__init__.py:611:10 - error: "_add_docstr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/__init__.py:615:35 - error: "_is_view_replay_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/__init__.py:616:10 - error: "_add_docstr" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/autograd/_functions/tensor.py + /torch/autograd/_functions/tensor.py:26:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/autograd/_functions/tensor.py:67:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) +/torch/autograd/anomaly_mode.py + /torch/autograd/anomaly_mode.py:80:27 - error: "is_anomaly_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/anomaly_mode.py:82:37 - error: "is_anomaly_check_nan_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/anomaly_mode.py:91:15 - error: "set_anomaly_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/anomaly_mode.py:94:15 - error: "set_anomaly_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/anomaly_mode.py:115:27 - error: "is_anomaly_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/anomaly_mode.py:116:37 - error: "is_anomaly_check_nan_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/anomaly_mode.py:117:15 - error: "set_anomaly_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/anomaly_mode.py:123:15 - error: "set_anomaly_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/autograd/forward_ad.py + /torch/autograd/forward_ad.py:215:33 - error: "_is_fwd_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/forward_ad.py:223:18 - error: "_set_fwd_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/forward_ad.py:229:18 - error: "_set_fwd_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/autograd/function.py + /torch/autograd/function.py:15:22 - warning: Import "torch._C._functions" could not be resolved from source (reportMissingModuleSource) + /torch/autograd/function.py:297:28 - error: "_FunctionBase" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/autograd/function.py:350:8 - error: "_FunctionBase" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/autograd/function.py:612:22 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/function.py:754:51 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/autograd/grad_mode.py + /torch/autograd/grad_mode.py:76:22 - error: "_jit_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/grad_mode.py:81:27 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/grad_mode.py:136:27 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/grad_mode.py:137:18 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/grad_mode.py:140:18 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/grad_mode.py:185:27 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/grad_mode.py:187:18 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/grad_mode.py:190:18 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/grad_mode.py:194:18 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/grad_mode.py:197:18 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/grad_mode.py:280:22 - error: "_jit_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/grad_mode.py:290:49 - error: "_InferenceMode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/grad_mode.py:332:30 - error: "_is_multithreading_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/grad_mode.py:333:18 - error: "_set_multithreading_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/grad_mode.py:340:18 - error: "_set_multithreading_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/grad_mode.py:372:30 - error: "_is_view_replay_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/grad_mode.py:373:18 - error: "_set_view_replay_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/grad_mode.py:380:18 - error: "_set_view_replay_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/grad_mode.py:420:18 - error: "_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/autograd/gradcheck.py + /torch/autograd/gradcheck.py:38:15 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:39:15 - error: "sparse_csc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:40:15 - error: "sparse_bsr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:41:15 - error: "sparse_bsc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:46:69 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:62:61 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:76:66 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:92:36 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:559:58 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:752:69 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:908:27 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:942:40 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:942:70 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:1004:22 - error: "ne" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:1111:35 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:1120:27 - error: "randn_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:1122:27 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:1125:39 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:1133:22 - error: "allclose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:1168:27 - error: "randn_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:1171:23 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:1179:38 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:1190:18 - error: "allclose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:1207:19 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:1215:64 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:1239:26 - error: "allclose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:1239:45 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:1363:22 - error: "_functions" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:1376:30 - error: "_functions" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/gradcheck.py:1982:25 - error: Union requires two or more type arguments (reportInvalidTypeArguments) + /torch/autograd/gradcheck.py:2248:28 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/autograd/graph.py + /torch/autograd/graph.py:175:50 - error: "_functions" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/graph.py:228:37 - error: "_FunctionBase" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/graph.py:256:14 - error: "_increment_version" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/graph.py:335:18 - error: "_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/graph.py:340:18 - error: "_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/graph.py:387:62 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/graph.py:390:28 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/graph.py:399:49 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/graph.py:430:22 - error: "_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/graph.py:432:18 - error: "_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/graph.py:437:22 - error: "_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/graph.py:439:22 - error: "_autograd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/graph.py:446:21 - error: "_set_warn_on_accumulate_grad_stream_mismatch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/graph.py:539:31 - error: "_current_graph_task_id" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/graph.py:554:42 - error: "_will_engine_execute_node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/graph.py:579:27 - error: "_current_graph_task_id" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/graph.py:624:31 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/autograd/graph.py:625:31 - error: "functional_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/autograd/graph.py:639:31 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/autograd/graph.py:640:31 - error: "functional_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/autograd/graph.py:842:25 - error: "_current_autograd_node" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/autograd/profiler.py + /torch/autograd/profiler.py:12:22 - error: "_get_privateuse1_backend_name" is unknown import symbol (reportAttributeAccessIssue) + /torch/autograd/profiler.py:13:6 - warning: Import "torch._C._profiler" could not be resolved from source (reportMissingModuleSource) + /torch/autograd/profiler.py:57:48 - error: Type "type[ContextDecorator]" is not assignable to declared type "type[_ContextDecorator]" +   "type[ContextDecorator]" is not assignable to "type[_ContextDecorator]" +   Type "type[ContextDecorator]" is not assignable to type "type[_ContextDecorator]" (reportAssignmentType) + /torch/autograd/profiler.py:818:27 - error: "DisableTorchFunctionSubclass" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/autograd/profiler.py:856:27 - error: "DisableTorchFunctionSubclass" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/autograd/variable.py + /torch/autograd/variable.py:3:22 - error: "_ImperativeEngine" is unknown import symbol (reportAttributeAccessIssue) +/torch/backends/_coreml/preprocess.py + /torch/backends/_coreml/preprocess.py:87:40 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/backends/_nnapi/prepare.py + /torch/backends/_nnapi/prepare.py:68:23 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/backends/cpu/__init__.py + /torch/backends/cpu/__init__.py:21:21 - error: "_get_cpu_capability" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/backends/cuda/__init__.py + /torch/backends/cuda/__init__.py:77:15 - error: "_cufft_get_plan_cache_size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:83:15 - error: "_cufft_get_plan_cache_max_size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:83:53 - error: "_cufft_set_plan_cache_max_size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:145:52 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/backends/cuda/__init__.py:148:41 - error: Index 1 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/backends/cuda/__init__.py:210:25 - error: "_LinalgBackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:211:26 - error: "_LinalgBackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:212:23 - error: "_LinalgBackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:218:40 - error: "_LinalgBackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:219:15 - error: "_LinalgBackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:268:18 - error: "_set_linalg_preferred_backend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:269:39 - error: "_LinalgBackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:270:18 - error: "_set_linalg_preferred_backend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:274:21 - error: "_get_linalg_preferred_backend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:278:25 - error: "_BlasBackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:279:24 - error: "_BlasBackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:280:25 - error: "_BlasBackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:281:26 - error: "_BlasBackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:282:27 - error: "_BlasBackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:283:20 - error: "_BlasBackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:289:40 - error: "_BlasBackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:290:15 - error: "_BlasBackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:323:18 - error: "_set_blas_preferred_backend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:324:39 - error: "_BlasBackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:325:18 - error: "_set_blas_preferred_backend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:329:21 - error: "_get_blas_preferred_backend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:333:25 - error: "_ROCmFABackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:334:26 - error: "_ROCmFABackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:335:20 - error: "_ROCmFABackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:340:22 - error: "_SDPAParams" is unknown import symbol (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:340:49 - error: "_SDPBackend" is unknown import symbol (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:344:40 - error: "_ROCmFABackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:345:15 - error: "_ROCmFABackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:374:18 - error: "_set_rocm_fa_preferred_backend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:375:39 - error: "_ROCmFABackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:376:18 - error: "_set_rocm_fa_preferred_backend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:380:21 - error: "_get_rocm_fa_preferred_backend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:403:14 - error: "_set_sdp_use_flash" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:421:14 - error: "_set_sdp_use_mem_efficient" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:439:14 - error: "_set_sdp_use_math" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:448:14 - error: "_set_math_sdp_allow_fp16_bf16_reduction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:470:21 - error: "_is_flash_attention_available" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:490:21 - error: "_can_use_flash_attention" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:510:21 - error: "_can_use_mem_efficient_attention" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:530:21 - error: "_can_use_cudnn_attention" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cuda/__init__.py:548:14 - error: "_set_sdp_use_cudnn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/backends/cudnn/__init__.py + /torch/backends/cudnn/__init__.py:20:26 - warning: Import "torch._C._cudnn" could not be resolved from source (reportMissingModuleSource) + /torch/backends/cudnn/__init__.py:102:11 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cudnn/__init__.py:103:11 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cudnn/__init__.py:104:11 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cudnn/__init__.py:204:36 - error: "_get_cudnn_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cudnn/__init__.py:204:65 - error: "_set_cudnn_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cudnn/__init__.py:206:18 - error: "_get_cudnn_deterministic" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cudnn/__init__.py:206:53 - error: "_set_cudnn_deterministic" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cudnn/__init__.py:209:18 - error: "_get_cudnn_benchmark" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cudnn/__init__.py:209:49 - error: "_set_cudnn_benchmark" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cudnn/__init__.py:214:22 - error: "_cuda_get_cudnn_benchmark_limit" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cudnn/__init__.py:215:22 - error: "_cuda_set_cudnn_benchmark_limit" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cudnn/__init__.py:218:18 - error: "_get_cudnn_allow_tf32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/cudnn/__init__.py:218:50 - error: "_set_cudnn_allow_tf32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/backends/cudnn/rnn.py + /torch/backends/cudnn/rnn.py:6:26 - warning: Import "torch._C._cudnn" could not be resolved from source (reportMissingModuleSource) +/torch/backends/cusparselt/__init__.py + /torch/backends/cusparselt/__init__.py:13:26 - warning: Import "torch._C._cusparselt" could not be resolved from source (reportMissingModuleSource) + /torch/backends/cusparselt/__init__.py:27:48 - error: "getVersionInt" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/backends/cusparselt/__init__.py:51:21 - error: "_has_cusparselt" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/backends/miopen/__init__.py + /torch/backends/miopen/__init__.py:44:18 - error: "_get_miopen_immediate" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/miopen/__init__.py:44:50 - error: "_set_miopen_immediate" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/backends/mkldnn/__init__.py + /torch/backends/mkldnn/__init__.py:119:36 - error: "_get_mkldnn_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/mkldnn/__init__.py:119:66 - error: "_set_mkldnn_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/mkldnn/__init__.py:121:18 - error: "_get_mkldnn_deterministic" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/mkldnn/__init__.py:121:54 - error: "_set_mkldnn_deterministic" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/mkldnn/__init__.py:124:18 - error: "_get_onednn_allow_tf32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/mkldnn/__init__.py:124:51 - error: "_set_onednn_allow_tf32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/backends/mps/__init__.py + /torch/backends/mps/__init__.py:25:21 - error: "_has_mps" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/mps/__init__.py:31:21 - error: "_mps_is_available" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/mps/__init__.py:37:21 - error: "_mps_is_on_macos_or_newer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/mps/__init__.py:43:21 - error: "_mps_is_on_macos_or_newer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/mps/__init__.py:49:21 - error: "_mps_get_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/mps/__init__.py:60:21 - error: "_mps_get_core_count" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/backends/opt_einsum/__init__.py + /torch/backends/opt_einsum/__init__.py:48:12 - error: Type "ContextProp | bool" is not assignable to return type "bool" +   Type "ContextProp | bool" is not assignable to type "bool" +     "ContextProp" is not assignable to "bool" (reportReturnType) + /torch/backends/opt_einsum/__init__.py:74:12 - error: Type "ContextProp | str | None" is not assignable to return type "str" +   Type "ContextProp | str | None" is not assignable to type "str" +     "ContextProp" is not assignable to "str" (reportReturnType) +/torch/backends/quantized/__init__.py + /torch/backends/quantized/__init__.py:34:42 - error: "_get_qengine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/quantized/__init__.py:37:18 - error: "_set_qengine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/backends/quantized/__init__.py:42:29 - error: "_supported_qengines" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/compiler/__init__.py + /torch/compiler/__init__.py:364:10 - warning: Import "torch._C._dynamo.eval_frame" could not be resolved from source (reportMissingModuleSource) +/torch/contrib/_tensorboard_vis.py + /torch/contrib/_tensorboard_vis.py:13:10 - error: Import "tensorflow.core.framework" could not be resolved (reportMissingImports) + /torch/contrib/_tensorboard_vis.py:14:10 - error: Import "tensorflow.core.util" could not be resolved (reportMissingImports) + /torch/contrib/_tensorboard_vis.py:15:10 - error: Import "tensorflow.python.summary.writer.writer" could not be resolved (reportMissingImports) +/torch/cpu/__init__.py + /torch/cpu/__init__.py:12:16 - error: "device" is unknown import symbol (reportAttributeAccessIssue) + /torch/cpu/__init__.py:33:21 - error: "_cpu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cpu/__init__.py:38:21 - error: "_cpu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cpu/__init__.py:43:21 - error: "_cpu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cpu/__init__.py:49:21 - error: "_cpu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cpu/__init__.py:54:21 - error: "_cpu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cpu/__init__.py:59:21 - error: "_cpu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cpu/__init__.py:64:21 - error: "_cpu" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/cpu/amp/autocast_mode.py + /torch/cpu/amp/autocast_mode.py:34:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cpu/amp/autocast_mode.py:34:40 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cpu/amp/autocast_mode.py:45:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cpu/amp/autocast_mode.py:45:36 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cpu/amp/autocast_mode.py:48:18 - error: "_jit_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cpu/amp/autocast_mode.py:64:18 - error: "_jit_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/cuda/__init__.py + /torch/cuda/__init__.py:26:19 - error: "device" is unknown import symbol (reportAttributeAccessIssue) + /torch/cuda/__init__.py:64:25 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:126:38 - error: "_CudaDeviceProperties" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:131:33 - error: "_cuda_exchangeDevice" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:141:39 - error: "_cuda_maybeExchangeDevice" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:151:28 - error: "_has_magma" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:184:25 - error: "_cuda_getDeviceCount" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:191:22 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:216:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:216:41 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:224:22 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:378:29 - error: "AcceleratorError" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:379:29 - error: "OutOfMemoryError" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:513:23 - error: "cudaGetErrorString" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/cuda/__init__.py:513:50 - error: "cudaError" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/cuda/__init__.py:520:23 - error: "cudaError" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/cuda/__init__.py:584:18 - error: "_cuda_setDevice" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:620:55 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/cuda/__init__.py:648:21 - error: "_cuda_canDeviceAccessPeer" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:759:22 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:794:23 - error: "idx" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:794:32 - error: "idx" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:831:9 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:832:12 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:837:22 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:865:9 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:866:12 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:870:26 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:872:12 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:878:23 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:879:16 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:883:20 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:886:16 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:943:26 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1058:58 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1059:18 - error: "_cuda_getDeviceCount" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1072:27 - error: "_cuda_getArchFlags" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1095:21 - error: "_cuda_getDevice" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1108:25 - error: "_cuda_synchronize" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1134:27 - error: "_cuda_getCurrentStream" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1152:27 - error: "_cuda_getDefaultStream" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1178:27 - error: "_cuda_getStreamFromExternal" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1216:14 - error: "_cuda_set_sync_debug_mode" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1222:21 - error: "_cuda_get_sync_debug_mode" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1232:10 - error: Import "pynvml" could not be resolved (reportMissingImports) + /torch/cuda/__init__.py:1235:9 - error: "pynvml" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1240:14 - error: "pynvml" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1251:9 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1252:12 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1257:14 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1284:22 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1291:12 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1296:12 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1301:12 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1303:9 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1304:9 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1310:20 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1314:24 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1323:18 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1323:55 - error: "amdsmi" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1343:26 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1346:18 - error: "pynvml" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1347:16 - error: "pynvml" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1364:26 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1367:18 - error: "pynvml" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1368:16 - error: "pynvml" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1385:26 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1388:18 - error: "pynvml" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1389:16 - error: "pynvml" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1407:26 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1410:16 - error: "pynvml" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1427:26 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1429:16 - error: "pynvml" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1445:26 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1447:16 - error: "pynvml" is possibly unbound (reportPossiblyUnboundVariable) + /torch/cuda/__init__.py:1452:47 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1452:65 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1459:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1461:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1465:34 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1465:54 - error: "Generator" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1478:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1496:57 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/__init__.py:1569:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/cuda/__init__.py:1580:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/cuda/__init__.py:1591:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/cuda/__init__.py:1602:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/cuda/__init__.py:1613:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/cuda/__init__.py:1624:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/cuda/__init__.py:1635:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/cuda/__init__.py:1646:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/cuda/__init__.py:1657:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/cuda/__init__.py:1668:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/cuda/__init__.py:1679:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/cuda/__init__.py:1690:9 - error: "_dtype" incorrectly overrides property of same name in class "TypedStorage" (reportIncompatibleMethodOverride) + /torch/cuda/__init__.py:1834:5 - warning: "BFloat16Tensor" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/cuda/__init__.py:1836:5 - warning: "BoolTensor" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/cuda/__init__.py:1838:5 - warning: "ByteTensor" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/cuda/__init__.py:1840:5 - warning: "CharTensor" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/cuda/__init__.py:1844:5 - warning: "DoubleTensor" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/cuda/__init__.py:1846:5 - warning: "FloatTensor" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/cuda/__init__.py:1848:5 - warning: "HalfTensor" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/cuda/__init__.py:1850:5 - warning: "IntTensor" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/cuda/__init__.py:1852:5 - warning: "LongTensor" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/cuda/__init__.py:1854:5 - warning: "ShortTensor" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/cuda/__init__.py:1932:5 - warning: "nccl" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) +/torch/cuda/_device_limits.py + /torch/cuda/_device_limits.py:2:22 - error: "dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/cuda/_device_limits.py:15:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_device_limits.py:47:31 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_device_limits.py:49:33 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_device_limits.py:51:33 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_device_limits.py:85:31 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_device_limits.py:87:33 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_device_limits.py:90:33 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_device_limits.py:92:33 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_device_limits.py:94:33 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/cuda/_sanitizer.py + /torch/cuda/_sanitizer.py:473:19 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_sanitizer.py:474:27 - error: "Argument" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_sanitizer.py:514:23 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_sanitizer.py:538:29 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_sanitizer.py:558:18 - error: "_activate_gpu_trace" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/cuda/_utils.py + /torch/cuda/_utils.py:33:22 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_utils.py:95:22 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_utils.py:119:22 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_utils.py:175:26 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_utils.py:182:22 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_utils.py:268:42 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_utils.py:420:26 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_utils.py:519:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/_utils.py:520:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/cuda/amp/autocast_mode.py + /torch/cuda/amp/autocast_mode.py:35:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/amp/autocast_mode.py:35:40 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/amp/autocast_mode.py:46:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/amp/autocast_mode.py:46:36 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/amp/autocast_mode.py:49:18 - error: "_jit_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/amp/autocast_mode.py:65:18 - error: "_jit_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/cuda/gds.py + /torch/cuda/gds.py:52:14 - error: "_gds_register_buffer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/gds.py:69:14 - error: "_gds_deregister_buffer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/gds.py:126:32 - error: "_gds_register_handle" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/gds.py:136:18 - error: "_gds_deregister_handle" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/gds.py:152:18 - error: "_gds_load_storage" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/gds.py:167:18 - error: "_gds_save_storage" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/cuda/graphs.py + /torch/cuda/graphs.py:42:5 - error: "_cuda_isCurrentStreamCapturing" is unknown import symbol (reportAttributeAccessIssue) + /torch/cuda/graphs.py:43:5 - error: "_CUDAGraph" is unknown import symbol (reportAttributeAccessIssue) + /torch/cuda/graphs.py:44:5 - error: "_graph_pool_handle" is unknown import symbol (reportAttributeAccessIssue) + /torch/cuda/graphs.py:69:26 - error: "_CUDAGraph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/graphs.py:368:14 - error: "is_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/graphs.py:368:46 - error: "is_autocast_cache_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/graphs.py:400:35 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/cuda/graphs.py:434:39 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/cuda/graphs.py:443:35 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/graphs.py:464:45 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/cuda/graphs.py:479:19 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/graphs.py:520:44 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/cuda/graphs.py:541:17 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Parameter 1 mismatch: base parameter "ctx" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/cuda/graphs.py:563:45 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/cuda/graphs.py:565:32 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) +/torch/cuda/green_contexts.py + /torch/cuda/green_contexts.py:14:20 - error: Argument to class must be a base class (reportGeneralTypeIssues) + /torch/cuda/green_contexts.py:22:53 - error: Variable not allowed in type expression (reportInvalidTypeForm) +/torch/cuda/jiterator.py + /torch/cuda/jiterator.py:88:25 - error: "_cuda_jiterator_compile_and_launch_kernel" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/cuda/memory.py + /torch/cuda/memory.py:143:5 - error: "_cuda_beginAllocateCurrentThreadToPool" is unknown import symbol (reportAttributeAccessIssue) + /torch/cuda/memory.py:144:5 - error: "_cuda_beginAllocateToPool" is unknown import symbol (reportAttributeAccessIssue) + /torch/cuda/memory.py:145:5 - error: "_cuda_CUDAAllocator" is unknown import symbol (reportAttributeAccessIssue) + /torch/cuda/memory.py:146:5 - error: "_cuda_endAllocateToPool" is unknown import symbol (reportAttributeAccessIssue) + /torch/cuda/memory.py:147:5 - error: "_cuda_releasePool" is unknown import symbol (reportAttributeAccessIssue) + /torch/cuda/memory.py:148:5 - error: "_MemPool" is unknown import symbol (reportAttributeAccessIssue) + /torch/cuda/memory.py:199:25 - error: "_cuda_cudaCachingAllocator_raw_alloc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:222:18 - error: "_cuda_cudaCachingAllocator_enable" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:249:14 - error: "_cuda_setMemoryFraction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:265:21 - error: "_cuda_getMemoryFraction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:280:18 - error: "_cuda_emptyCache" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:393:21 - error: "_cuda_memoryStats" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:413:21 - error: "_cuda_resetAccumulatedMemoryStats" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:432:21 - error: "_cuda_resetPeakMemoryStats" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:508:21 - error: "_cuda_hostMemoryStats" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:517:21 - error: "_cuda_resetAccumulatedHostMemoryStats" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:526:21 - error: "_cuda_resetPeakHostMemoryStats" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:826:26 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:832:14 - error: Import "pynvml" could not be resolved (reportMissingImports) + /torch/cuda/memory.py:865:30 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:1228:12 - error: "_cuda_memorySnapshot" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:1270:14 - error: "_cuda_setMemoryMetadata" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:1281:21 - error: "_cuda_getMemoryMetadata" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:1304:21 - error: "_accelerator_setAllocatorSettings" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:1316:21 - error: "_cuda_getAllocatorBackend" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:1322:44 - error: "_cuda_CUDAAllocator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:1358:36 - error: "_cuda_customAllocator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:1372:14 - error: "_cuda_changeCurrentAllocator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/memory.py:1381:36 - error: "_cuda_getAllocator" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/cuda/nccl.py + /torch/cuda/nccl.py:66:43 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/cuda/nccl.py:110:29 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/cuda/nccl.py:119:19 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/cuda/nccl.py:122:14 - error: "_nccl_reduce" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/nccl.py:129:14 - error: "_nccl_broadcast" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/nccl.py:140:14 - error: "_nccl_all_gather" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/nccl.py:152:14 - error: "_nccl_reduce_scatter" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/cuda/nvtx.py + /torch/cuda/nvtx.py:8:26 - warning: Import "torch._C._nvtx" could not be resolved from source (reportMissingModuleSource) + /torch/cuda/nvtx.py:57:18 - error: Cannot access attribute "rangeStartA" for class "_NVTXStub" +   Attribute "rangeStartA" is unknown (reportAttributeAccessIssue) + /torch/cuda/nvtx.py:68:11 - error: Cannot access attribute "rangeEnd" for class "_NVTXStub" +   Attribute "rangeEnd" is unknown (reportAttributeAccessIssue) + /torch/cuda/nvtx.py:89:18 - error: Cannot access attribute "deviceRangeStart" for class "_NVTXStub" +   Attribute "deviceRangeStart" is unknown (reportAttributeAccessIssue) + /torch/cuda/nvtx.py:102:11 - error: Cannot access attribute "deviceRangeEnd" for class "_NVTXStub" +   Attribute "deviceRangeEnd" is unknown (reportAttributeAccessIssue) +/torch/cuda/random.py + /torch/cuda/random.py:24:49 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/random.py:36:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/random.py:38:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/random.py:39:18 - error: Cannot access attribute "index" for class "int" +   Attribute "index" is unknown (reportAttributeAccessIssue) + /torch/cuda/random.py:42:25 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /torch/cuda/random.py:42:25 - error: Argument of type "int | Unknown | ((sub: str, start: SupportsIndex | None = None, end: SupportsIndex | None = None, /) -> int)" cannot be assigned to parameter "key" of type "slice[Any, Any, Any]" in function "__getitem__" +   Type "int | Unknown | ((sub: str, start: SupportsIndex | None = None, end: SupportsIndex | None = None, /) -> int)" is not assignable to type "slice[Any, Any, Any]" +     "int" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /torch/cuda/random.py:53:54 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/random.py:63:23 - error: "_DisableFuncTorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/random.py:66:61 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/random.py:68:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/random.py:70:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/cuda/streams.py + /torch/cuda/streams.py:14:23 - error: "_CudaStreamBase" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/streams.py:156:22 - error: "_CudaEventBase" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/cuda/tunable.py + /torch/cuda/tunable.py:437:19 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:439:28 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:462:26 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:463:26 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:465:26 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:466:26 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:474:23 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:476:28 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:479:23 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:481:28 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:485:23 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:487:28 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:490:23 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:492:28 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:507:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:523:22 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:524:22 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:531:19 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:533:24 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:536:19 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:538:24 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:551:24 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:552:23 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:553:25 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:554:27 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:555:23 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:556:39 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:557:38 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:558:32 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:559:30 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:560:34 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:561:34 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:635:57 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:641:15 - error: "mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:656:57 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:673:15 - error: "bmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:680:59 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:706:23 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:708:28 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:711:23 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:713:28 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:716:28 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:717:28 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:721:19 - error: "_scaled_mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:728:23 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:730:28 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:732:19 - error: "_scaled_mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:741:57 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/cuda/tunable.py:744:22 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/__init__.py + /torch/distributed/__init__.py:29:36 - error: "_c10d_init" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/__init__.py:33:22 - error: "_DistError" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/__init__.py:34:29 - error: "_DistBackendError" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/__init__.py:35:29 - error: "_DistNetworkError" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/__init__.py:36:27 - error: "_DistStoreError" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/__init__.py:37:28 - error: "_DistQueueEmptyError" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/__init__.py:40:10 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/__init__.py:119:32 - error: "_meta_in_tls_dispatch_include" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/__init__.py:121:18 - error: "_set_meta_in_tls_dispatch_include" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/__init__.py:125:22 - error: "_set_meta_in_tls_dispatch_include" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/__init__.py:129:14 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) +/torch/distributed/_composable/checkpoint_activation.py + /torch/distributed/_composable/checkpoint_activation.py:70:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_composable/contract.py + /torch/distributed/_composable/contract.py:123:17 - error: Type "Module" is not assignable to declared type "_M@contract" +   Type "Module" is not assignable to type "_M@contract" (reportAssignmentType) + /torch/distributed/_composable/contract.py:150:65 - error: Cannot access attribute "named_parameters" for class "list[Module]*" +   Attribute "named_parameters" is unknown (reportAttributeAccessIssue) + /torch/distributed/_composable/contract.py:152:66 - error: Cannot access attribute "named_buffers" for class "list[Module]*" +   Attribute "named_buffers" is unknown (reportAttributeAccessIssue) + /torch/distributed/_composable/contract.py:154:66 - error: Cannot access attribute "named_modules" for class "list[Module]*" +   Attribute "named_modules" is unknown (reportAttributeAccessIssue) + /torch/distributed/_composable/contract.py:169:17 - error: Type "Module" is not assignable to declared type "_M@contract" +   Type "Module" is not assignable to type "_M@contract" (reportAssignmentType) + /torch/distributed/_composable/contract.py:171:64 - error: Cannot access attribute "named_parameters" for class "list[Module]*" +   Attribute "named_parameters" is unknown (reportAttributeAccessIssue) + /torch/distributed/_composable/contract.py:173:65 - error: Cannot access attribute "named_buffers" for class "list[Module]*" +   Attribute "named_buffers" is unknown (reportAttributeAccessIssue) + /torch/distributed/_composable/contract.py:175:65 - error: Cannot access attribute "named_modules" for class "list[Module]*" +   Attribute "named_modules" is unknown (reportAttributeAccessIssue) +/torch/distributed/_composable/replicate.py + /torch/distributed/_composable/replicate.py:105:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_composable/replicate.py:194:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_composable/replicate.py:199:60 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_composable/replicate_with_fsdp.py + /torch/distributed/_composable/replicate_with_fsdp.py:64:47 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_composable/replicate_with_fsdp.py:89:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_composable/replicate_with_fsdp.py:133:23 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/distributed/_composable/replicate_with_fsdp.py:166:42 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_composable/replicate_with_fsdp.py:171:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_composable/replicate_with_fsdp.py:280:9 - error: Argument of type "Unknown | DeviceMesh | None" cannot be assigned to parameter "mesh" of type "DeviceMesh" in function "replicate_impl" +   Type "Unknown | DeviceMesh | None" is not assignable to type "DeviceMesh" +     "None" is not assignable to "DeviceMesh" (reportArgumentType) +/torch/distributed/_dist2.py + /torch/distributed/_dist2.py:13:6 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/_dist2.py:45:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_dist2.py:69:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_dist2.py:86:15 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_dist2.py:90:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_dist2.py:100:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_dist2.py:130:30 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_dist2.py:151:20 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_functional_collectives.py + /torch/distributed/_functional_collectives.py:96:17 - error: "tensor" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/distributed/_functional_collectives.py:211:21 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_functional_collectives.py:211:31 - error: "chunk" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_functional_collectives.py:244:21 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_functional_collectives.py:244:31 - error: "chunk" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_functional_collectives.py:278:29 - error: "chunk" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_functional_collectives.py:279:22 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_functional_collectives.py:318:29 - error: "chunk" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_functional_collectives.py:319:22 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_functional_collectives.py:423:33 - error: "chunk" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_functional_collectives.py:424:33 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_functional_collectives.py:845:17 - error: "_get_dispatch_mode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_functional_collectives.py:845:45 - error: "_TorchDispatchModeKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_functional_collectives.py:848:17 - error: "_dispatch_tls_is_dispatch_key_included" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_functional_collectives.py:849:18 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_functional_collectives.py:890:25 - error: "_distributed_c10d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_functional_collectives.py:893:18 - error: "_distributed_c10d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_functional_collectives.py:896:18 - error: "_distributed_c10d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_functional_collectives.py:1062:42 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_local_tensor/__init__.py + /torch/distributed/_local_tensor/__init__.py:68:19 - error: "Size" is unknown import symbol (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:69:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:69:35 - error: "DispatchKeySet" is unknown import symbol (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:69:51 - error: "ScriptObject" is unknown import symbol (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:252:26 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:307:51 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:320:36 - error: "DispatchKeySet" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:321:17 - error: "_dispatch_keys" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:321:48 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:322:64 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:323:17 - error: "_dispatch_keys" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:323:48 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:324:64 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:435:25 - error: "_get_constant_bool_symnode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:439:25 - error: "_get_constant_bool_symnode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:444:25 - error: "_get_constant_bool_symnode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:449:25 - error: "_get_constant_bool_symnode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:454:25 - error: "_get_constant_bool_symnode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:609:67 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:730:11 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:731:11 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:732:11 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:892:27 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:944:10 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/distributed/_local_tensor/__init__.py:952:30 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:952:52 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:965:30 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:965:52 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:994:26 - error: "equal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:1269:45 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:1322:24 - warning: Static methods should not take a "self" or "cls" parameter (reportSelfClsParameterName) + /torch/distributed/_local_tensor/__init__.py:1334:46 - error: Cannot access attribute "nonzero" for class "bool" +   Attribute "nonzero" is unknown (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:1489:65 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:1499:66 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:1512:61 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:1727:33 - error: Cannot access attribute "_per_rank_offsets" for class "_LocalPhiloxState*" +   Attribute "_per_rank_offsets" is unknown (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:1734:35 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:1735:45 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/__init__.py:1736:26 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_local_tensor/_c10d.py + /torch/distributed/_local_tensor/_c10d.py:8:22 - error: "ScriptObject" is unknown import symbol (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/_c10d.py:9:6 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/_local_tensor/_c10d.py:126:33 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/_c10d.py:197:33 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/_c10d.py:271:20 - error: "minimum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/_c10d.py:273:20 - error: "maximum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/_c10d.py:275:20 - error: "bitwise_and" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/_c10d.py:277:20 - error: "bitwise_or" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/_c10d.py:279:20 - error: "bitwise_xor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/_c10d.py:444:22 - error: Type "list[Tensor]" is not assignable to declared type "list[list[Tensor]]" +   "list[Tensor]" is not assignable to "list[list[Tensor]]" +     Type parameter "_T@list" is invariant, but "Tensor" is not the same as "list[Tensor]" +     Consider switching from "list" to "Sequence" which is covariant (reportAssignmentType) + /torch/distributed/_local_tensor/_c10d.py:465:31 - error: Cannot access attribute "copy_" for class "list[Tensor]" +   Attribute "copy_" is unknown (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/_c10d.py:470:14 - error: Type "tuple[list[list[list[Tensor]]], Unknown]" is not assignable to return type "tuple[list[list[Tensor]], Unknown]" +   "list[list[Tensor]]" is not assignable to "list[Tensor]" +     Type parameter "_T@list" is invariant, but "list[Tensor]" is not the same as "Tensor" +     Consider switching from "list" to "Sequence" which is covariant (reportReturnType) + /torch/distributed/_local_tensor/_c10d.py:513:38 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_local_tensor/_c10d.py:557:21 - error: Type "list[Tensor]" is not assignable to declared type "list[list[Tensor]]" +   "list[Tensor]" is not assignable to "list[list[Tensor]]" +     Type parameter "_T@list" is invariant, but "Tensor" is not the same as "list[Tensor]" +     Consider switching from "list" to "Sequence" which is covariant (reportAssignmentType) +/torch/distributed/_serialization.py + /torch/distributed/_serialization.py:63:37 - error: "frombuffer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_serialization.py:65:37 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_serialization.py:84:22 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_serialization.py:84:63 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_shard/checkpoint/__init__.py + /torch/distributed/_shard/checkpoint/__init__.py:19:72 - error: "checkpoint" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) +/torch/distributed/_shard/sharded_tensor/__init__.py + /torch/distributed/_shard/sharded_tensor/__init__.py:30:18 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/__init__.py:33:25 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/__init__.py:85:18 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/__init__.py:88:25 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/__init__.py:139:18 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/__init__.py:142:25 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/__init__.py:195:18 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/__init__.py:198:25 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/__init__.py:249:18 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/__init__.py:252:25 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/__init__.py:305:18 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/__init__.py:308:25 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py + /torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:71:25 - error: "equal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:76:25 - error: "allclose" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_shard/sharded_tensor/_ops/init.py + /torch/distributed/_shard/sharded_tensor/_ops/init.py:128:11 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/_ops/init.py:129:11 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/_ops/init.py:130:11 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/_ops/init.py:131:11 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/_ops/init.py:132:11 - error: "rand_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/_ops/init.py:133:11 - error: "randn_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/_ops/init.py:159:35 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/_ops/init.py:160:35 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/_ops/init.py:161:35 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/_ops/init.py:162:35 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/_ops/init.py:163:35 - error: "rand_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/_ops/init.py:164:35 - error: "randn_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py + /torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py:10:25 - error: "_has_compatible_shallow_copy_type" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_shard/sharded_tensor/api.py + /torch/distributed/_shard/sharded_tensor/api.py:85:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:98:27 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:158:46 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:252:22 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:255:29 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:263:28 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:266:35 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:373:46 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:380:26 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:382:26 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:387:34 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:390:22 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:397:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:455:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:465:26 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:511:35 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:527:36 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:528:40 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:569:29 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:585:36 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:586:40 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:594:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:596:42 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:602:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:636:31 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:640:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:642:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:647:42 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:649:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:652:35 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:665:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:678:31 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:682:59 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:798:39 - error: "rank" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/_shard/sharded_tensor/api.py:905:33 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:979:46 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/api.py:1360:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_shard/sharded_tensor/metadata.py + /torch/distributed/_shard/sharded_tensor/metadata.py:20:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/metadata.py:20:46 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/metadata.py:21:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/metadata.py:21:48 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/metadata.py:23:26 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/metadata.py:23:62 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/metadata.py:77:33 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/metadata.py:92:17 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/metadata.py:92:44 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_shard/sharded_tensor/reshard.py + /torch/distributed/_shard/sharded_tensor/reshard.py:7:6 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/_shard/sharded_tensor/reshard.py:43:20 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/reshard.py:84:20 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/reshard.py:135:28 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/reshard.py:153:20 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/reshard.py:206:32 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/reshard.py:211:33 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/reshard.py:241:26 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_shard/sharded_tensor/utils.py + /torch/distributed/_shard/sharded_tensor/utils.py:58:17 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/utils.py:77:41 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/utils.py:91:18 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/utils.py:116:24 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/utils.py:138:48 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/utils.py:192:29 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharded_tensor/utils.py:325:49 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_shard/sharding_spec/api.py + /torch/distributed/_shard/sharding_spec/api.py:60:29 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharding_spec/api.py:171:29 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py + /torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:78:29 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:126:33 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:166:45 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:171:41 - error: Argument of type "Unknown | None" cannot be assigned to parameter "group" of type "ProcessGroup" in function "get_group_rank" +   Type "Unknown | None" is not assignable to type "ProcessGroup" +     "None" is not assignable to "ProcessGroup" (reportArgumentType) + /torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:175:38 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py + /torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:7:6 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) +/torch/distributed/_state_dict_utils.py + /torch/distributed/_state_dict_utils.py:26:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:35:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:55:30 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:59:20 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:81:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:110:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:205:35 - error: Cannot access attribute "copy_" for class "dict[Unknown, Unknown]" +   Attribute "copy_" is unknown (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:205:35 - error: Cannot access attribute "copy_" for class "list[Unknown]" +   Attribute "copy_" is unknown (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:205:35 - error: Cannot access attribute "copy_" for class "tuple[Unknown, ...]" +   Attribute "copy_" is unknown (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:218:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:414:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:418:26 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:424:23 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:430:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:438:26 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:440:26 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:445:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:451:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:461:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:467:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:507:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:534:17 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:535:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:542:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:562:33 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:602:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:644:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:703:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_state_dict_utils.py:811:40 - error: Argument of type "PATH_ITEM" cannot be assigned to parameter "idx" of type "int" in function "extend_list" +   Type "PATH_ITEM" is not assignable to type "int" +     "str" is not assignable to "int" (reportArgumentType) +/torch/distributed/_symmetric_memory/__init__.py + /torch/distributed/_symmetric_memory/__init__.py:17:6 - warning: Import "torch._C._autograd" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/_symmetric_memory/__init__.py:18:6 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/_symmetric_memory/__init__.py:124:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:125:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:437:20 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:447:20 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:451:20 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:461:20 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:499:24 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:541:28 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:745:28 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:767:15 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:801:38 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:823:22 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:824:22 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:831:18 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:939:23 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:939:53 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:999:21 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1005:19 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1018:28 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1056:26 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1092:28 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1243:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1255:35 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1257:35 - error: "mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1273:34 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1336:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1390:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1407:15 - error: "_scaled_mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1434:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1453:35 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1455:35 - error: "mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1576:17 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1584:18 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1585:18 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1586:18 - error: "short" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1587:18 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1588:18 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1589:18 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1590:18 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1591:18 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1592:18 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1593:18 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1594:19 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1595:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1596:19 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1597:19 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1598:19 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1599:19 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1600:19 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1601:19 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1602:19 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1603:19 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1608:24 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1712:18 - error: "_distributed_c10d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1735:21 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1760:18 - error: "_distributed_c10d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1795:18 - error: "_distributed_c10d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1873:10 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/_symmetric_memory/__init__.py:1874:29 - error: "_device" is unknown import symbol (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1874:38 - error: "_dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1921:23 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1928:22 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1930:22 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:1950:10 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/_symmetric_memory/__init__.py:1970:14 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/_symmetric_memory/__init__.py:2001:47 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_symmetric_memory/__init__.py:2012:57 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_symmetric_memory/_nvshmem_triton.py + /torch/distributed/_symmetric_memory/_nvshmem_triton.py:157:10 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/_symmetric_memory/_nvshmem_triton.py:181:10 - error: Import "triton.runtime.jit" could not be resolved (reportMissingImports) + /torch/distributed/_symmetric_memory/_nvshmem_triton.py:223:12 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/distributed/_symmetric_memory/_nvshmem_triton.py:224:10 - error: Import "triton.runtime.jit" could not be resolved (reportMissingImports) + /torch/distributed/_symmetric_memory/_nvshmem_triton.py:247:12 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/distributed/_symmetric_memory/_nvshmem_triton.py:248:12 - error: Import "triton.language" could not be resolved (reportMissingImports) + /torch/distributed/_symmetric_memory/_nvshmem_triton.py:249:10 - error: Import "triton.language" could not be resolved (reportMissingImports) + /torch/distributed/_symmetric_memory/_nvshmem_triton.py:1162:29 - error: Cannot access attribute "value" for class "str" +   Attribute "value" is unknown (reportAttributeAccessIssue) +/torch/distributed/_tools/fake_collectives.py + /torch/distributed/_tools/fake_collectives.py:5:6 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) +/torch/distributed/_tools/fsdp2_mem_tracker.py + /torch/distributed/_tools/fsdp2_mem_tracker.py:107:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_tools/fsdp2_mem_tracker.py:109:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_tools/fsdp2_mem_tracker.py:239:28 - error: Type "tuple[*_Ts@_fsdp_state_pre_forward]" is not assignable to declared type "_P@_fsdp_state_pre_forward.args" +   Type "tuple[*_Ts@_fsdp_state_pre_forward]" is not assignable to type "_P@_fsdp_state_pre_forward.args" (reportAssignmentType) + /torch/distributed/_tools/fsdp2_mem_tracker.py:239:28 - error: Type "dict[str, Any]" is not assignable to declared type "_P@_fsdp_state_pre_forward.kwargs" +   Type "dict[str, Any]" is not assignable to type "_P@_fsdp_state_pre_forward.kwargs" (reportAssignmentType) + /torch/distributed/_tools/fsdp2_mem_tracker.py:258:20 - error: Type "tuple[_P@_fsdp_state_pre_forward.args, _P@_fsdp_state_pre_forward.kwargs]" is not assignable to return type "tuple[tuple[*_Ts@_fsdp_state_pre_forward], dict[str, Any]]" +   "tuple[object, ...]" is not assignable to "tuple[*_Ts@_fsdp_state_pre_forward]" +     Tuple entry 1 is incorrect type +       Type "tuple[object, ...]" is not assignable to type "_Ts@_fsdp_state_pre_forward" (reportReturnType) +/torch/distributed/_tools/ilp_utils.py + /torch/distributed/_tools/ilp_utils.py:83:16 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_tools/mem_tracker.py + /torch/distributed/_tools/mem_tracker.py:121:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_tools/mem_tracker.py:122:57 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_tools/mem_tracker.py:131:59 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_tools/mem_tracker.py:180:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_tools/mem_tracker.py:219:42 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_tools/mem_tracker.py:240:26 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_tools/mem_tracker.py:246:14 - warning: Import "tabulate" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/_tools/mem_tracker.py:268:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_tools/mem_tracker.py:279:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_tools/mem_tracker.py:282:14 - warning: Import "tabulate" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/_tools/mem_tracker.py:376:41 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_tools/mem_tracker.py:377:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_tools/mem_tracker.py:378:41 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_tools/mem_tracker.py:550:21 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_tools/memory_tracker.py + /torch/distributed/_tools/memory_tracker.py:75:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_tools/memory_tracker.py:158:16 - error: Import "matplotlib.pyplot" could not be resolved (reportMissingImports) +/torch/distributed/_tools/runtime_estimator.py + /torch/distributed/_tools/runtime_estimator.py:128:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_tools/runtime_estimator.py:129:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_tools/runtime_estimator.py:130:15 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_tools/runtime_estimator.py:131:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/_tools/runtime_estimator.py:132:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/_tools/sac_estimator.py + /torch/distributed/_tools/sac_estimator.py:44:14 - warning: Import "tabulate" could not be resolved from source (reportMissingModuleSource) +/torch/distributed/algorithms/_comm_hooks/default_hooks.py + /torch/distributed/algorithms/_comm_hooks/default_hooks.py:81:36 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/_comm_hooks/default_hooks.py:136:17 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/_comm_hooks/default_hooks.py:170:62 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/_comm_hooks/default_hooks.py:191:62 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py + /torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py:68:9 - error: Method "register_ddp" overrides class "OverlappedOptimizer" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "ddp", override parameter is named "ddp_inst" (reportIncompatibleMethodOverride) +/torch/distributed/algorithms/_quantization/quantization.py + /torch/distributed/algorithms/_quantization/quantization.py:9:24 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/_quantization/quantization.py:9:36 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/_quantization/quantization.py:10:24 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/_quantization/quantization.py:10:36 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/_quantization/quantization.py:24:16 - error: Type "tuple[Literal['fp16']] | Literal['bfp16']" is not assignable to return type "str" +   Type "tuple[Literal['fp16']] | Literal['bfp16']" is not assignable to type "str" +     "tuple[Literal['fp16']]" is not assignable to "str" (reportReturnType) + /torch/distributed/algorithms/_quantization/quantization.py:28:18 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py + /torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:58:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:82:21 - error: "_functional_collectives" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:113:33 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:134:33 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:158:52 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:197:52 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py + /torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py:20:26 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py + /torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py:45:25 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py + /torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:430:52 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:469:15 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:471:20 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:489:51 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:492:51 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:554:27 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:564:15 - error: "bmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:753:52 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:808:11 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py + /torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:78:21 - error: "FloatTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:159:17 - error: Argument of type "tuple[Literal[0], int]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[0], int]" is not assignable to "list[int]" (reportArgumentType) + /torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:173:21 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/algorithms/join.py + /torch/distributed/algorithms/join.py:75:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/join.py:337:22 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/algorithms/join.py:342:27 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/algorithms/model_averaging/utils.py + /torch/distributed/algorithms/model_averaging/utils.py:40:25 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/autograd/__init__.py + /torch/distributed/autograd/__init__.py:16:36 - error: "_dist_autograd_init" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/autograd/__init__.py:20:10 - warning: Import "torch._C._distributed_autograd" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/autograd/__init__.py:57:33 - error: "_new_context" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/autograd/__init__.py:66:9 - error: "_release_context" is possibly unbound (reportPossiblyUnboundVariable) +/torch/distributed/c10d_logger.py + /torch/distributed/c10d_logger.py:66:39 - error: "nccl" is not a known attribute of module "torch.cuda" (reportAttributeAccessIssue) +/torch/distributed/checkpoint/_async_thread_executor.py + /torch/distributed/checkpoint/_async_thread_executor.py:31:12 - error: Type "Metadata" is not assignable to return type "Future[Unknown]" +   "Metadata" is not assignable to "Future[Unknown]" (reportReturnType) +/torch/distributed/checkpoint/_checkpointer.py + /torch/distributed/checkpoint/_checkpointer.py:69:13 - error: Expected 1 positional argument (reportCallIssue) +/torch/distributed/checkpoint/_consolidate_hf_safetensors.py + /torch/distributed/checkpoint/_consolidate_hf_safetensors.py:138:38 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_consolidate_hf_safetensors.py:280:39 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) +/torch/distributed/checkpoint/_experimental/checkpoint_process.py + /torch/distributed/checkpoint/_experimental/checkpoint_process.py:326:34 - error: "send" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/distributed/checkpoint/_experimental/checkpoint_reader.py + /torch/distributed/checkpoint/_experimental/checkpoint_reader.py:149:36 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_experimental/checkpoint_reader.py:154:36 - error: "frombuffer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_experimental/checkpoint_reader.py:156:24 - error: "copy_" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/checkpoint/_experimental/checkpoint_reader.py:164:53 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) +/torch/distributed/checkpoint/_experimental/staging.py + /torch/distributed/checkpoint/_experimental/staging.py:158:46 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/checkpoint/_extension.py + /torch/distributed/checkpoint/_extension.py:221:40 - error: Argument of type "str | Literal[0]" cannot be assigned to parameter "version" of type "str" in function "from_descriptor" +   Type "str | Literal[0]" is not assignable to type "str" +     "Literal[0]" is not assignable to "str" (reportArgumentType) +/torch/distributed/checkpoint/_fsspec_filesystem.py + /torch/distributed/checkpoint/_fsspec_filesystem.py:11:6 - error: Import "fsspec.core" could not be resolved (reportMissingImports) + /torch/distributed/checkpoint/_fsspec_filesystem.py:23:10 - error: Import "fsspec" could not be resolved (reportMissingImports) + /torch/distributed/checkpoint/_fsspec_filesystem.py:72:17 - error: "rename" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/checkpoint/_fsspec_filesystem.py:75:17 - error: "makedirs" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/checkpoint/_fsspec_filesystem.py:90:24 - error: "exists" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/checkpoint/_fsspec_filesystem.py:93:17 - error: "rm" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/checkpoint/_fsspec_filesystem.py:98:24 - error: "ls" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/distributed/checkpoint/_hf_utils.py + /torch/distributed/checkpoint/_hf_utils.py:26:18 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_hf_utils.py:27:18 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_hf_utils.py:28:18 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_hf_utils.py:29:17 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_hf_utils.py:30:17 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_hf_utils.py:31:18 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_hf_utils.py:32:18 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_hf_utils.py:33:18 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_hf_utils.py:34:19 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_hf_utils.py:54:18 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_hf_utils.py:55:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_hf_utils.py:92:41 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_hf_utils.py:96:23 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/checkpoint/_pg_transport.py + /torch/distributed/checkpoint/_pg_transport.py:42:18 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:43:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:112:36 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:125:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:186:53 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:199:17 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:224:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:254:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:254:58 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:255:27 - error: "frombuffer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:255:55 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:269:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:297:23 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:297:44 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:301:21 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:301:47 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:319:49 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:323:27 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:323:55 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/_pg_transport.py:335:26 - error: "as_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/checkpoint/_traverse.py + /torch/distributed/checkpoint/_traverse.py:132:40 - error: Argument of type "PATH_ITEM" cannot be assigned to parameter "idx" of type "int" in function "extend_list" +   Type "PATH_ITEM" is not assignable to type "int" +     "str" is not assignable to "int" (reportArgumentType) +/torch/distributed/checkpoint/default_planner.py + /torch/distributed/checkpoint/default_planner.py:359:9 - error: Method "finish_plan" overrides class "LoadPlanner" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "central_plan", override parameter is named "new_plan" (reportIncompatibleMethodOverride) + /torch/distributed/checkpoint/default_planner.py:618:27 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/default_planner.py:657:73 - error: Cannot access attribute "size" for class "BytesStorageMetadata" +   Attribute "size" is unknown (reportAttributeAccessIssue) +/torch/distributed/checkpoint/filesystem.py + /torch/distributed/checkpoint/filesystem.py:145:32 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/filesystem.py:187:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/filesystem.py:292:25 - error: "_utils" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/filesystem.py:342:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/filesystem.py:390:44 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/checkpoint/format_utils.py + /torch/distributed/checkpoint/format_utils.py:108:26 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/distributed/checkpoint/format_utils.py:110:32 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/format_utils.py:148:9 - error: Method "prepare_global_plan" overrides class "StorageReader" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "plans", override parameter is named "global_plan" (reportIncompatibleMethodOverride) +/torch/distributed/checkpoint/hf_storage.py + /torch/distributed/checkpoint/hf_storage.py:348:40 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/hf_storage.py:353:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/hf_storage.py:354:49 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/hf_storage.py:361:39 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/hf_storage.py:361:65 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/hf_storage.py:367:63 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/hf_storage.py:378:37 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/checkpoint/metadata.py + /torch/distributed/checkpoint/metadata.py:30:20 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/metadata.py:31:18 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/metadata.py:47:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/metadata.py:47:54 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/metadata.py:49:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/metadata.py:49:48 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/metadata.py:53:26 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/metadata.py:53:62 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/metadata.py:108:33 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/metadata.py:116:17 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/metadata.py:160:28 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/metadata.py:185:54 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/checkpoint/optimizer.py + /torch/distributed/checkpoint/optimizer.py:106:29 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/optimizer.py:108:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/optimizer.py:112:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/optimizer.py:190:35 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/optimizer.py:193:33 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/optimizer.py:207:49 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/optimizer.py:326:56 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/checkpoint/planner.py + /torch/distributed/checkpoint/planner.py:54:17 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner.py:81:28 - error: "_utils" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner.py:93:25 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner.py:98:28 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner.py:101:20 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/checkpoint/planner_helpers.py + /torch/distributed/checkpoint/planner_helpers.py:144:23 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner_helpers.py:150:23 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner_helpers.py:151:21 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner_helpers.py:179:28 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner_helpers.py:179:47 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner_helpers.py:198:21 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner_helpers.py:207:21 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner_helpers.py:343:28 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner_helpers.py:343:47 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner_helpers.py:399:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner_helpers.py:402:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner_helpers.py:404:38 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner_helpers.py:420:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner_helpers.py:429:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner_helpers.py:432:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/planner_helpers.py:434:28 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/checkpoint/quantized_hf_storage.py + /torch/distributed/checkpoint/quantized_hf_storage.py:35:29 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/quantized_hf_storage.py:35:43 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/quantized_hf_storage.py:49:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/quantized_hf_storage.py:55:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/quantized_hf_storage.py:156:34 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/quantized_hf_storage.py:176:43 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/checkpoint/staging.py + /torch/distributed/checkpoint/staging.py:193:46 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/staging.py:353:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/staging.py:353:38 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/checkpoint/state_dict.py + /torch/distributed/checkpoint/state_dict.py:586:18 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/state_dict.py:587:34 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/state_dict.py:635:36 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/state_dict.py:644:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/state_dict.py:1041:27 - error: "loaded_param_group" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/checkpoint/state_dict.py:1373:5 - error: Parameter declaration "model_state_dict" is obscured by a declaration of the same name (reportRedeclaration) + /torch/distributed/checkpoint/state_dict.py:1457:5 - error: Parameter declaration "model_state_dict" is obscured by a declaration of the same name (reportRedeclaration) +/torch/distributed/checkpoint/state_dict_loader.py + /torch/distributed/checkpoint/state_dict_loader.py:213:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/state_dict_loader.py:362:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/checkpoint/state_dict_saver.py + /torch/distributed/checkpoint/state_dict_saver.py:180:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/state_dict_saver.py:292:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/state_dict_saver.py:296:18 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/state_dict_saver.py:394:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/checkpoint/utils.py + /torch/distributed/checkpoint/utils.py:215:31 - error: Type "list[CheckpointException]" is not assignable to declared type "list[R@reduce_scatter | CheckpointException] | None" +   Type "list[CheckpointException]" is not assignable to type "list[R@reduce_scatter | CheckpointException] | None" +     "list[CheckpointException]" is not assignable to "list[R@reduce_scatter | CheckpointException]" +       Type parameter "_T@list" is invariant, but "CheckpointException" is not the same as "R@reduce_scatter | CheckpointException" +       Consider switching from "list" to "Sequence" which is covariant +     "list[CheckpointException]" is not assignable to "None" (reportAssignmentType) + /torch/distributed/checkpoint/utils.py:337:23 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/utils.py:342:18 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/checkpoint/utils.py:355:34 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/collective_utils.py + /torch/distributed/collective_utils.py:89:27 - error: Type "object | T@broadcast" is not assignable to declared type "T@broadcast | None" +   Type "object | T@broadcast" is not assignable to type "T@broadcast | None" +     Type "object" is not assignable to type "T@broadcast | None" +       Type "object" is not assignable to type "T@broadcast" +       "object" is not assignable to "None" (reportAssignmentType) + /torch/distributed/collective_utils.py:153:23 - error: Type "object | T@all_gather" is not assignable to declared type "T@all_gather | None" +   Type "object | T@all_gather" is not assignable to type "T@all_gather | None" +     Type "object" is not assignable to type "T@all_gather | None" +       Type "object" is not assignable to type "T@all_gather" +       "object" is not assignable to "None" (reportAssignmentType) + /torch/distributed/collective_utils.py:193:20 - error: Invalid exception class or object +   "tuple[int, Exception]" does not derive from BaseException (reportGeneralTypeIssues) + /torch/distributed/collective_utils.py:291:22 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/collective_utils.py:294:25 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/collective_utils.py:297:31 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/collective_utils.py:297:68 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/collective_utils.py:307:22 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/collective_utils.py:311:32 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/collective_utils.py:318:27 - error: "hash_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/collective_utils.py:323:22 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/collective_utils.py:340:18 - error: "util" is not a known attribute of module "importlib" (reportAttributeAccessIssue) + /torch/distributed/collective_utils.py:341:14 - warning: Import "tabulate" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/collective_utils.py:349:22 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/constants.py + /torch/distributed/constants.py:4:6 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/constants.py:20:10 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) +/torch/distributed/debug/__init__.py + /torch/distributed/debug/__init__.py:7:6 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) +/torch/distributed/debug/_frontend.py + /torch/distributed/debug/_frontend.py:10:8 - warning: Import "requests" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/debug/_frontend.py:11:6 - warning: Import "jinja2" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/debug/_frontend.py:217:5 - error: "address_family" overrides symbol of same name in class "TCPServer" +   Variable is mutable so its type is invariant +     Override type "AddressFamily" is not the same as base type "int" (reportIncompatibleVariableOverride) +/torch/distributed/debug/_handlers.py + /torch/distributed/debug/_handlers.py:4:6 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) +/torch/distributed/device_mesh.py + /torch/distributed/device_mesh.py:42:10 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/device_mesh.py:97:52 - error: "device_count" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/device_mesh.py:198:22 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:209:50 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:211:32 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:211:71 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:224:30 - error: "ndim" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/device_mesh.py:225:30 - error: "is_contiguous" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/device_mesh.py:226:30 - error: "numel" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/device_mesh.py:227:52 - error: "numel" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/device_mesh.py:290:52 - error: Cannot access attribute "nonzero" for class "bool" +   Attribute "nonzero" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:310:51 - error: Cannot access attribute "nonzero" for class "bool" +   Attribute "nonzero" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:432:57 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:467:41 - error: "group_name" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/device_mesh.py:612:40 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:949:30 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:949:76 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:974:46 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:976:28 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:976:67 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:978:21 - error: Cannot access attribute "ndim" for class "_SupportsArray[dtype[Any]]" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:978:21 - error: Cannot access attribute "ndim" for class "_NestedSequence[_SupportsArray[dtype[Any]]]" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:978:21 - error: Cannot access attribute "ndim" for class "bool" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:978:21 - error: Cannot access attribute "ndim" for class "int" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:978:21 - error: Cannot access attribute "ndim" for class "float" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:978:21 - error: Cannot access attribute "ndim" for class "complex" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:978:21 - error: Cannot access attribute "ndim" for class "str" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:978:21 - error: Cannot access attribute "ndim" for class "bytes" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:978:21 - error: Cannot access attribute "ndim" for class "_NestedSequence[bool | int | float | complex | str | bytes]" +   Attribute "ndim" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:978:21 - error: "ndim" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/device_mesh.py:981:34 - error: Cannot access attribute "tolist" for class "_SupportsArray[dtype[Any]]" +   Attribute "tolist" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:981:34 - error: Cannot access attribute "tolist" for class "_NestedSequence[_SupportsArray[dtype[Any]]]" +   Attribute "tolist" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:981:34 - error: Cannot access attribute "tolist" for class "bool" +   Attribute "tolist" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:981:34 - error: Cannot access attribute "tolist" for class "int" +   Attribute "tolist" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:981:34 - error: Cannot access attribute "tolist" for class "float" +   Attribute "tolist" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:981:34 - error: Cannot access attribute "tolist" for class "complex" +   Attribute "tolist" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:981:34 - error: Cannot access attribute "tolist" for class "str" +   Attribute "tolist" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:981:34 - error: Cannot access attribute "tolist" for class "bytes" +   Attribute "tolist" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:981:34 - error: Cannot access attribute "tolist" for class "_NestedSequence[bool | int | float | complex | str | bytes]" +   Attribute "tolist" is unknown (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:981:34 - error: "tolist" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/device_mesh.py:1362:20 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:1363:30 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/device_mesh.py:1363:65 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/distributed_c10d.py + /torch/distributed/distributed_c10d.py:24:22 - error: "_DistStoreError" is unknown import symbol (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:25:6 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/distributed_c10d.py:174:10 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/distributed_c10d.py:182:10 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/distributed_c10d.py:190:10 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/distributed_c10d.py:198:10 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/distributed_c10d.py:206:10 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/distributed_c10d.py:379:19 - error: Type "str" is not assignable to declared type "Backend" +   "str" is not assignable to "Backend" (reportAssignmentType) + /torch/distributed/distributed_c10d.py:384:36 - error: "_get_accelerator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:387:17 - error: Argument of type "str | Any" cannot be assigned to parameter "value" of type "Backend" in function "__setitem__" +   Type "str | Any" is not assignable to type "Backend" +     "str" is not assignable to "Backend" (reportArgumentType) + /torch/distributed/distributed_c10d.py:400:39 - error: Cannot assign to attribute "device_backend_map" for class "BackendConfig*" +   "dict[str, str | Any]" is not assignable to "dict[str, Backend]" +     Type parameter "_VT@dict" is invariant, but "str | Any" is not the same as "Backend" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:419:35 - error: Type "str" is not assignable to declared type "Backend" +   "str" is not assignable to "Backend" (reportAssignmentType) + /torch/distributed/distributed_c10d.py:425:17 - error: Argument of type "str | Any" cannot be assigned to parameter "value" of type "Backend" in function "__setitem__" +   Type "str | Any" is not assignable to type "Backend" +     "str" is not assignable to "Backend" (reportArgumentType) + /torch/distributed/distributed_c10d.py:437:18 - error: Cannot assign to attribute "device_backend_map" for class "BackendConfig*" +   Type "str | Any" is not assignable to type "Backend" +     "str" is not assignable to "Backend" +   Type "str | Any" is not assignable to type "Backend" +     "str" is not assignable to "Backend" +   Type "str | Any" is not assignable to type "Backend" +     "str" is not assignable to "Backend" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:836:16 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:846:75 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:913:18 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:914:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1203:23 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1203:56 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1203:77 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1296:40 - error: Argument of type "str | Any" cannot be assigned to parameter "backend" of type "Backend" in function "__init__" +   Type "str | Any" is not assignable to type "Backend" +     "str" is not assignable to "Backend" (reportArgumentType) + /torch/distributed/distributed_c10d.py:1361:14 - error: "_distributed_c10d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1407:12 - error: Type "str | Any" is not assignable to return type "Backend" +   Type "str | Any" is not assignable to type "Backend" +     "str" is not assignable to "Backend" (reportReturnType) + /torch/distributed/distributed_c10d.py:1410:61 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1421:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1422:29 - error: Cannot access attribute "type" for class "str" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1424:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1436:41 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1439:52 - error: "ProcessGroupNCCL" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/distributed_c10d.py:1440:24 - error: Cannot access attribute "uid" for class "Backend" +   Attribute "uid" is unknown (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1440:24 - error: "uid" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/distributed_c10d.py:1523:18 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1524:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1525:60 - error: "ProcessGroupNCCL" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/distributed_c10d.py:1526:25 - error: Cannot access attribute "_add_ephemeral_timeout" for class "Backend" +   Attribute "_add_ephemeral_timeout" is unknown (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1557:14 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1558:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1559:32 - error: "ProcessGroupGloo" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/distributed_c10d.py:1561:14 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1562:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1563:56 - error: "ProcessGroupNCCL" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/distributed_c10d.py:1565:58 - error: "ProcessGroupGloo" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/distributed_c10d.py:1586:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1696:23 - error: "trace_rules" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1720:27 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1723:44 - error: Cannot access attribute "type" for class "int" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1725:37 - error: Cannot access attribute "type" for class "int" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1731:22 - error: Cannot access attribute "index" for class "int" +   Attribute "index" is unknown (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1734:22 - error: Cannot access attribute "index" for class "int" +   Attribute "index" is unknown (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1748:68 - error: Cannot access attribute "type" for class "int" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:1760:40 - error: Argument of type "str | None" cannot be assigned to parameter "backend" of type "Backend" in function "_get_default_timeout" +   Type "str | None" is not assignable to type "Backend" +     "str" is not assignable to "Backend" (reportArgumentType) + /torch/distributed/distributed_c10d.py:2337:41 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:2346:56 - error: "ProcessGroupNCCL" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/distributed_c10d.py:2347:21 - error: Cannot access attribute "_group_start" for class "Backend" +   Attribute "_group_start" is unknown (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:2347:21 - error: "_group_start" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/distributed_c10d.py:2352:56 - error: "ProcessGroupNCCL" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/distributed_c10d.py:2353:21 - error: Cannot access attribute "_group_end" for class "Backend" +   Attribute "_group_end" is unknown (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:2353:21 - error: "_group_end" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/distributed_c10d.py:2486:24 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:2526:24 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:2638:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:2740:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:2903:24 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3124:21 - error: Cannot assign to attribute "reduceOp" for class "ReduceOptions" +   "RedOpType" is not assignable to "ReduceOp" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3357:33 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3358:33 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3372:41 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3373:55 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3393:32 - error: "output_tensors" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/distributed_c10d.py:3394:36 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3404:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3491:33 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3507:31 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3522:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3604:33 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3605:39 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3628:21 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3653:40 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3664:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3754:37 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3756:37 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3757:43 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3769:29 - error: "tensor_list" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/distributed_c10d.py:3772:35 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3772:39 - error: "tensor_list" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/distributed_c10d.py:3776:25 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3786:44 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3896:33 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3896:57 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3901:27 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3902:45 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3912:29 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:3912:53 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:4419:44 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:4421:59 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:4933:23 - error: "_get_accelerator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:4938:29 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:4944:29 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:5050:26 - error: "_distributed_c10d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:5065:17 - error: "ProcessGroupGloo" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/distributed_c10d.py:5067:18 - error: "_ProcessGroupWrapper" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/distributed_c10d.py:5084:13 - error: Type "tuple[int, ...]" is not assignable to declared type "list[int]" +   "tuple[int, ...]" is not assignable to "list[int]" (reportAssignmentType) + /torch/distributed/distributed_c10d.py:5112:12 - error: Type "str | Any" is not assignable to return type "Backend" +   Type "str | Any" is not assignable to type "Backend" +     "str" is not assignable to "Backend" (reportReturnType) + /torch/distributed/distributed_c10d.py:5194:51 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:5210:36 - error: Argument of type "str | Any" cannot be assigned to parameter "backend" of type "Backend" in function "__init__" +   Type "str | Any" is not assignable to type "Backend" +     "str" is not assignable to "Backend" (reportArgumentType) + /torch/distributed/distributed_c10d.py:5221:40 - error: Argument of type "str | Any" cannot be assigned to parameter "backend" of type "Backend" in function "_get_default_timeout" +   Type "str | Any" is not assignable to type "Backend" +     "str" is not assignable to "Backend" (reportArgumentType) + /torch/distributed/distributed_c10d.py:5260:55 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:5293:31 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:5383:31 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:5414:40 - error: Argument of type "str | Any" cannot be assigned to parameter "backend" of type "Backend" in function "_get_default_timeout" +   Type "str | Any" is not assignable to type "Backend" +     "str" is not assignable to "Backend" (reportArgumentType) + /torch/distributed/distributed_c10d.py:5742:12 - error: Type "Unknown | None" is not assignable to return type "ProcessGroup" +   Type "Unknown | None" is not assignable to type "ProcessGroup" +     "None" is not assignable to "ProcessGroup" (reportReturnType) + /torch/distributed/distributed_c10d.py:5898:61 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:5900:61 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/distributed_c10d.py:6081:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/elastic/agent/server/local_elastic_agent.py + /torch/distributed/elastic/agent/server/local_elastic_agent.py:337:17 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) +/torch/distributed/elastic/control_plane.py + /torch/distributed/elastic/control_plane.py:17:10 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) +/torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py + /torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py:130:31 - error: Cannot access attribute "value" for class "EtcdResult" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py:140:30 - error: Cannot access attribute "modifiedIndex" for class "EtcdResult" +   Attribute "modifiedIndex" is unknown (reportAttributeAccessIssue) +/torch/distributed/elastic/rendezvous/etcd_server.py + /torch/distributed/elastic/rendezvous/etcd_server.py:226:18 - error: "etcd" is possibly unbound (reportPossiblyUnboundVariable) +/torch/distributed/elastic/rendezvous/etcd_store.py + /torch/distributed/elastic/rendezvous/etcd_store.py:86:9 - error: Method "add" overrides class "Store" in an incompatible manner +   Parameter 3 name mismatch: base parameter is named "value", override parameter is named "num" (reportIncompatibleMethodOverride) + /torch/distributed/elastic/rendezvous/etcd_store.py:124:9 - error: Method "wait" overrides class "Store" in an incompatible manner +   Parameter 3 name mismatch: base parameter is named "timeout", override parameter is named "override_timeout" (reportIncompatibleMethodOverride) +/torch/distributed/elastic/timer/file_based_local_timer.py + /torch/distributed/elastic/timer/file_based_local_timer.py:56:16 - error: Type "(**_P@wrapper) -> (_R@wrapper | None)" is not assignable to return type "(**_P@wrapper) -> _R@wrapper" +   Type "(**_P@wrapper) -> (_R@wrapper | None)" is not assignable to type "(**_P@wrapper) -> _R@wrapper" +     Function return type "_R@wrapper | None" is incompatible with type "_R@wrapper" +       Type "_R@wrapper | None" is not assignable to type "_R@wrapper" (reportReturnType) + /torch/distributed/elastic/timer/file_based_local_timer.py:149:14 - error: Object of type "None" cannot be used with "with" (reportOptionalContextManager) + /torch/distributed/elastic/timer/file_based_local_timer.py:157:18 - error: "write" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/distributed/elastic/utils/data/elastic_distributed_sampler.py + /torch/distributed/elastic/utils/data/elastic_distributed_sampler.py:73:19 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/elastic/utils/data/elastic_distributed_sampler.py:77:19 - error: "randperm" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/elastic/utils/store.py + /torch/distributed/elastic/utils/store.py:18:27 - error: "_DistStoreError" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/examples/memory_tracker_example.py + /torch/distributed/examples/memory_tracker_example.py:32:12 - error: Import "torchvision" could not be resolved (reportMissingImports) + /torch/distributed/examples/memory_tracker_example.py:37:15 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/flight_recorder/components/builder.py + /torch/distributed/flight_recorder/components/builder.py:54:10 - warning: Import "tabulate" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/flight_recorder/components/builder.py:54:26 - error: Type "(tabular_data: Mapping[str, Iterable[Any]] | Iterable[Iterable[Any]], headers: str | dict[str, str] | Sequence[str] = ..., tablefmt: str | TableFormat = ..., floatfmt: str | Iterable[str] = ..., numalign: str | None = ..., stralign: str | None = ..., missingval: str | Iterable[str] = ..., showindex: str | bool | Iterable[Any] = ..., disable_numparse: bool | Iterable[int] = ..., colalign: Iterable[str | None] | None = ...) -> str" is not assignable to declared type "(data: Any, headers: Any = None) -> Any" +   Type "(tabular_data: Mapping[str, Iterable[Any]] | Iterable[Iterable[Any]], headers: str | dict[str, str] | Sequence[str] = ..., tablefmt: str | TableFormat = ..., floatfmt: str | Iterable[str] = ..., numalign: str | None = ..., stralign: str | None = ..., missingval: str | Iterable[str] = ..., showindex: str | bool | Iterable[Any] = ..., disable_numparse: bool | Iterable[int] = ..., colalign: Iterable[str | None] | None = ...) -> str" is not assignable to type "(data: Any, headers: Any = None) -> Any" +     Parameter name mismatch: "data" versus "tabular_data" (reportAssignmentType) +/torch/distributed/flight_recorder/components/config_manager.py + /torch/distributed/flight_recorder/components/config_manager.py:96:16 - error: Type "Namespace" is not assignable to declared type "Sequence[str] | None" +   Type "Namespace" is not assignable to type "Sequence[str] | None" +     "Namespace" is not assignable to "Sequence[str]" +     "Namespace" is not assignable to "None" (reportAssignmentType) + /torch/distributed/flight_recorder/components/config_manager.py:98:17 - error: Cannot access attribute "selected_ranks" for class "Sequence[str]" +   Attribute "selected_ranks" is unknown (reportAttributeAccessIssue) + /torch/distributed/flight_recorder/components/config_manager.py:98:17 - error: "selected_ranks" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/flight_recorder/components/config_manager.py:100:25 - error: Cannot access attribute "just_print_entries" for class "Sequence[str]" +   Attribute "just_print_entries" is unknown (reportAttributeAccessIssue) + /torch/distributed/flight_recorder/components/config_manager.py:100:25 - error: "just_print_entries" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/flight_recorder/components/config_manager.py:104:17 - error: Cannot access attribute "pg_filters" for class "Sequence[str]" +   Attribute "pg_filters" is unknown (reportAttributeAccessIssue) + /torch/distributed/flight_recorder/components/config_manager.py:104:17 - error: "pg_filters" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/flight_recorder/components/config_manager.py:106:25 - error: Cannot access attribute "just_print_entries" for class "Sequence[str]" +   Attribute "just_print_entries" is unknown (reportAttributeAccessIssue) + /torch/distributed/flight_recorder/components/config_manager.py:106:25 - error: "just_print_entries" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/flight_recorder/components/config_manager.py:110:17 - error: Cannot access attribute "verbose" for class "Sequence[str]" +   Attribute "verbose" is unknown (reportAttributeAccessIssue) + /torch/distributed/flight_recorder/components/config_manager.py:110:17 - error: "verbose" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/flight_recorder/components/config_manager.py:113:16 - error: Type "Sequence[str] | None" is not assignable to return type "Namespace" +   Type "Sequence[str] | None" is not assignable to type "Namespace" +     "Sequence[str]" is not assignable to "Namespace" (reportReturnType) +/torch/distributed/flight_recorder/components/utils.py + /torch/distributed/flight_recorder/components/utils.py:48:10 - warning: Import "tabulate" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/flight_recorder/components/utils.py:684:17 - error: "tabulate" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/flight_recorder/components/utils.py:695:21 - error: "tabulate" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/flight_recorder/components/utils.py:719:15 - error: Type "list[str]" is not assignable to declared type "str" +   "list[str]" is not assignable to "str" (reportAssignmentType) +/torch/distributed/flight_recorder/fr_trace.py + /torch/distributed/flight_recorder/fr_trace.py:47:12 - error: Type "Namespace" is not assignable to declared type "Sequence[str] | None" +   Type "Namespace" is not assignable to type "Sequence[str] | None" +     "Namespace" is not assignable to "Sequence[str]" +     "Namespace" is not assignable to "None" (reportAssignmentType) + /torch/distributed/flight_recorder/fr_trace.py:49:17 - error: Cannot access attribute "trace_dir" for class "Sequence[str]" +   Attribute "trace_dir" is unknown (reportAttributeAccessIssue) + /torch/distributed/flight_recorder/fr_trace.py:49:17 - error: "trace_dir" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/flight_recorder/fr_trace.py:51:33 - error: Argument of type "Sequence[str] | None" cannot be assigned to parameter "args" of type "Namespace" in function "read_dir" +   Type "Sequence[str] | None" is not assignable to type "Namespace" +     "Sequence[str]" is not assignable to "Namespace" (reportArgumentType) + /torch/distributed/flight_recorder/fr_trace.py:53:13 - error: Cannot access attribute "transform_ft" for class "Sequence[str]" +   Attribute "transform_ft" is unknown (reportAttributeAccessIssue) + /torch/distributed/flight_recorder/fr_trace.py:53:13 - error: "transform_ft" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/flight_recorder/fr_trace.py:55:21 - error: Cannot access attribute "group_world_size" for class "Sequence[str]" +   Attribute "group_world_size" is unknown (reportAttributeAccessIssue) + /torch/distributed/flight_recorder/fr_trace.py:55:21 - error: "group_world_size" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/flight_recorder/fr_trace.py:57:46 - error: Cannot access attribute "group_world_size" for class "Sequence[str]" +   Attribute "group_world_size" is unknown (reportAttributeAccessIssue) + /torch/distributed/flight_recorder/fr_trace.py:57:46 - error: "group_world_size" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/flight_recorder/fr_trace.py:59:28 - error: Argument of type "Sequence[str] | None" cannot be assigned to parameter "args" of type "Namespace" in function "build_db" +   Type "Sequence[str] | None" is not assignable to type "Namespace" +     "Sequence[str]" is not assignable to "Namespace" (reportArgumentType) + /torch/distributed/flight_recorder/fr_trace.py:61:13 - error: Cannot access attribute "output" for class "Sequence[str]" +   Attribute "output" is unknown (reportAttributeAccessIssue) + /torch/distributed/flight_recorder/fr_trace.py:61:13 - error: "output" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/flight_recorder/fr_trace.py:63:24 - error: Cannot access attribute "output" for class "Sequence[str]" +   Attribute "output" is unknown (reportAttributeAccessIssue) + /torch/distributed/flight_recorder/fr_trace.py:63:24 - error: "output" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/distributed/fsdp/_common_utils.py + /torch/distributed/fsdp/_common_utils.py:64:38 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_common_utils.py:78:40 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_common_utils.py:132:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_common_utils.py:137:45 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_common_utils.py:501:30 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_common_utils.py:503:30 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_common_utils.py:528:68 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_common_utils.py:534:18 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_common_utils.py:538:26 - error: "_functional_collectives" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) +/torch/distributed/fsdp/_exec_order_utils.py + /torch/distributed/fsdp/_exec_order_utils.py:200:50 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_exec_order_utils.py:200:63 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_exec_order_utils.py:201:32 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_exec_order_utils.py:219:38 - error: "_functional_collectives" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_exec_order_utils.py:245:38 - error: "_functional_collectives" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) +/torch/distributed/fsdp/_flat_param.py + /torch/distributed/fsdp/_flat_param.py:185:31 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:329:37 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:330:35 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:331:26 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:334:26 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:378:28 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:518:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:521:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:522:41 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:678:28 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:805:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:808:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:877:27 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:891:23 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:896:22 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:909:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:910:41 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:1107:19 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:1145:80 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:1162:22 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:1472:23 - error: "chunk" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:1834:23 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:1845:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:2407:31 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:2642:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:2649:34 - error: "_functional_collectives" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:2778:47 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:2792:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:2792:80 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_flat_param.py:2797:15 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/fsdp/_fsdp_extensions.py + /torch/distributed/fsdp/_fsdp_extensions.py:48:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/fsdp/_fully_shard/_fsdp_api.py + /torch/distributed/fsdp/_fully_shard/_fsdp_api.py:50:33 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_api.py:51:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_api.py:52:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_api.py:79:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_api.py:80:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:25:38 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:28:52 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:56:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:57:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:59:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:71:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:72:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:78:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:187:15 - error: "_foreach_copy_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:209:11 - error: "split_with_sizes_copy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:232:11 - error: "_chunk_cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:240:38 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:241:30 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:242:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:247:24 - error: "stream" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:254:27 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:256:30 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:274:24 - error: "stream" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:333:41 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:337:15 - error: "_foreach_copy_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:361:23 - error: "current_stream" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:388:23 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:394:41 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:395:50 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:437:32 - error: "chunk" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:443:23 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:451:34 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:453:32 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:454:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:455:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:458:30 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:465:11 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:466:11 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:468:20 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:501:36 - error: "current_stream" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:513:28 - error: "chunk" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:514:40 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:535:24 - error: "stream" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:580:32 - error: "stream" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:596:28 - error: "stream" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:600:24 - error: "stream" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:610:38 - error: "as_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:626:27 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:679:28 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:679:60 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:680:52 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:684:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:688:42 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:703:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:719:48 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:719:63 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/fsdp/_fully_shard/_fsdp_common.py + /torch/distributed/fsdp/_fully_shard/_fsdp_common.py:109:46 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_common.py:109:79 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_common.py:111:18 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_common.py:117:25 - error: "chunk" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_common.py:124:48 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_common.py:125:12 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_common.py:129:41 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_common.py:163:49 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_common.py:170:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_common.py:173:22 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_common.py:181:21 - error: "_current_graph_task_id" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/fsdp/_fully_shard/_fsdp_init.py + /torch/distributed/fsdp/_fully_shard/_fsdp_init.py:71:23 - error: "_get_accelerator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_init.py:76:54 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_init.py:78:22 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_init.py:80:18 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_init.py:80:57 - error: "current_device" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_fully_shard/_fsdp_init.py:214:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/fsdp/_fully_shard/_fsdp_param.py + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:144:10 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:186:44 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:199:23 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:200:33 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:201:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:202:23 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:203:25 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:205:38 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:206:38 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:228:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:243:49 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:263:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:422:17 - error: Argument of type "list[Tensor]" cannot be assigned to parameter "chunk" of type "Tensor" in function "_get_dim_chunked_size" +   "list[Tensor]" is not assignable to "Tensor" (reportArgumentType) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:468:45 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:470:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:476:19 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:476:31 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:602:45 - error: "as_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:611:34 - error: Argument of type "Unknown | None" cannot be assigned to parameter "param" of type "Parameter" in function "_setattr_on_modules" +   Type "Unknown | None" is not assignable to type "Parameter" +     "None" is not assignable to "Parameter" (reportArgumentType) + /torch/distributed/fsdp/_fully_shard/_fsdp_param.py:797:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:61:39 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:70:61 - error: "Stream" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:75:53 - error: "Stream" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:78:57 - error: "Stream" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:82:53 - error: "Stream" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:93:22 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:93:36 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:100:45 - error: "current_stream" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:107:27 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:112:27 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:117:27 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:123:33 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:124:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:132:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:173:41 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:213:49 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:216:59 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:328:53 - error: "Event" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:422:71 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:537:36 - error: "current_stream" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:569:17 - error: Argument of type "ProcessGroup | None" cannot be assigned to parameter "reduce_scatter_group" of type "ProcessGroup" in function "foreach_reduce" +   Type "ProcessGroup | None" is not assignable to type "ProcessGroup" +     "None" is not assignable to "ProcessGroup" (reportArgumentType) + /torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:713:22 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/fsdp/_fully_shard/_fsdp_state.py + /torch/distributed/fsdp/_fully_shard/_fsdp_state.py:55:47 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_state.py:92:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_state.py:137:54 - error: "current_stream" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_fully_shard/_fsdp_state.py:145:26 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fsdp_state.py:169:23 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/distributed/fsdp/_fully_shard/_fsdp_state.py:319:41 - error: "current_stream" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_fully_shard/_fsdp_state.py:342:22 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/fsdp/_fully_shard/_fully_shard.py + /torch/distributed/fsdp/_fully_shard/_fully_shard.py:189:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_fully_shard/_fully_shard.py:524:49 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/fsdp/_init_utils.py + /torch/distributed/fsdp/_init_utils.py:708:51 - error: "module" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/fsdp/_init_utils.py:802:42 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:817:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:830:42 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:833:21 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:843:50 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:843:69 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:845:15 - error: Cannot access attribute "type" for class "int" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:845:40 - error: Cannot access attribute "index" for class "int" +   Attribute "index" is unknown (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:850:75 - error: Cannot access attribute "type" for class "int" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:855:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:884:17 - error: "fake" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/fsdp/_init_utils.py:905:43 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:910:61 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:967:43 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:981:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:1020:43 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:1034:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:1064:43 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:1067:12 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:1086:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_init_utils.py:1144:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/fsdp/_limiter_utils.py + /torch/distributed/fsdp/_limiter_utils.py:15:46 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_limiter_utils.py:18:41 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_limiter_utils.py:22:51 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_limiter_utils.py:28:42 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/fsdp/_optim_utils.py + /torch/distributed/fsdp/_optim_utils.py:105:18 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_optim_utils.py:106:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_optim_utils.py:288:17 - error: Argument of type "Iterator[Tensor] | list[Tensor]" cannot be assigned to parameter "value" of type "Iterator[Unknown]" in function "__setitem__" +   Type "Iterator[Tensor] | list[Tensor]" is not assignable to type "Iterator[Unknown]" +     "list[Tensor]" is incompatible with protocol "Iterator[Unknown]" +       "__next__" is not present (reportArgumentType) + /torch/distributed/fsdp/_optim_utils.py:291:77 - error: Argument of type "Iterator[Tensor] | list[Tensor] | Iterator[Unknown]" cannot be assigned to parameter "i" of type "SupportsNext[_T@next]" in function "next" +   Type "Iterator[Tensor] | list[Tensor] | Iterator[Unknown]" is not assignable to type "SupportsNext[Tensor]" +     "list[Tensor]" is incompatible with protocol "SupportsNext[Tensor]" +       "__next__" is not present (reportArgumentType) + /torch/distributed/fsdp/_optim_utils.py:364:24 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_optim_utils.py:703:41 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_optim_utils.py:762:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_optim_utils.py:764:15 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_optim_utils.py:766:20 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_optim_utils.py:767:19 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_optim_utils.py:835:18 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_optim_utils.py:835:58 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_optim_utils.py:941:9 - error: Argument of type "int | str | None" cannot be assigned to parameter "key" of type "str | int" in function "__setitem__" +   Type "int | str | None" is not assignable to type "str | int" +     Type "None" is not assignable to type "str | int" +       "None" is not assignable to "str" +       "None" is not assignable to "int" (reportArgumentType) + /torch/distributed/fsdp/_optim_utils.py:1191:25 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_optim_utils.py:1191:65 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_optim_utils.py:1368:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_optim_utils.py:1382:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_optim_utils.py:1442:30 - error: "equal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_optim_utils.py:1486:38 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_optim_utils.py:1573:15 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_optim_utils.py:1659:29 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/fsdp/_runtime_utils.py + /torch/distributed/fsdp/_runtime_utils.py:151:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_runtime_utils.py:1440:18 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_runtime_utils.py:1446:26 - error: "_functional_collectives" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_runtime_utils.py:1487:18 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_runtime_utils.py:1496:26 - error: "_functional_collectives" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_runtime_utils.py:1513:26 - error: "_functional_collectives" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_runtime_utils.py:1544:31 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_runtime_utils.py:1545:27 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_runtime_utils.py:1546:31 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_runtime_utils.py:1554:26 - error: "_functional_collectives" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_runtime_utils.py:1636:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_runtime_utils.py:1637:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_runtime_utils.py:1651:22 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/fsdp/_shard_utils.py + /torch/distributed/fsdp/_shard_utils.py:36:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/_shard_utils.py:87:33 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/fsdp/_state_dict_utils.py + /torch/distributed/fsdp/_state_dict_utils.py:81:7 - error: "param_module_names" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_state_dict_utils.py:92:7 - error: "shared_param_module_names" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_state_dict_utils.py:385:52 - error: "uses_sharded_strategy" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_state_dict_utils.py:477:53 - error: "flat_param" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_state_dict_utils.py:516:52 - error: "uses_sharded_strategy" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/distributed/fsdp/_trace_utils.py + /torch/distributed/fsdp/_trace_utils.py:168:26 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/distributed/fsdp/_unshard_param_utils.py + /torch/distributed/fsdp/_unshard_param_utils.py:101:73 - error: "flat_param" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/fsdp/_unshard_param_utils.py:197:43 - error: Argument of type "FlatParamHandle" cannot be assigned to parameter "handles" of type "list[FlatParamHandle]" in function "_reset_flat_param_grad_info_if_needed" +   "FlatParamHandle" is not assignable to "list[FlatParamHandle]" (reportArgumentType) +/torch/distributed/fsdp/api.py + /torch/distributed/fsdp/api.py:221:33 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/api.py:222:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/api.py:223:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/fsdp/sharded_grad_scaler.py + /torch/distributed/fsdp/sharded_grad_scaler.py:27:18 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/sharded_grad_scaler.py:43:46 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/sharded_grad_scaler.py:184:21 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/sharded_grad_scaler.py:200:71 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/sharded_grad_scaler.py:207:54 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/sharded_grad_scaler.py:209:69 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/sharded_grad_scaler.py:210:69 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/sharded_grad_scaler.py:221:27 - error: "_amp_foreach_non_finite_check_and_unscale_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/sharded_grad_scaler.py:254:27 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/sharded_grad_scaler.py:255:36 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/sharded_grad_scaler.py:286:19 - error: "_foreach_copy_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/fsdp/sharded_grad_scaler.py:340:30 - error: Cannot access attribute "device" for class "int" +   Attribute "device" is unknown (reportAttributeAccessIssue) + /torch/distributed/fsdp/sharded_grad_scaler.py:342:30 - error: Cannot access attribute "numel" for class "int" +   Attribute "numel" is unknown (reportAttributeAccessIssue) + /torch/distributed/fsdp/sharded_grad_scaler.py:344:30 - error: Cannot access attribute "requires_grad" for class "int" +   Attribute "requires_grad" is unknown (reportAttributeAccessIssue) + /torch/distributed/fsdp/sharded_grad_scaler.py:367:23 - error: "_amp_update_scale_" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/fsdp/wrap.py + /torch/distributed/fsdp/wrap.py:389:58 - error: Argument of type "set[type[Module]] | None" cannot be assigned to parameter "iterable" of type "Iterable[_T_co@tuple]" in function "__new__" +   Type "set[type[Module]] | None" is not assignable to type "Iterable[type[Module]]" +     "None" is incompatible with protocol "Iterable[type[Module]]" +       "__iter__" is not present (reportArgumentType) + /torch/distributed/fsdp/wrap.py:389:58 - error: Argument of type "set[type[Module]] | None" cannot be assigned to parameter "iterable" of type "Iterable[_T_co@tuple]" in function "__new__" +   Type "set[type[Module]] | None" is not assignable to type "Iterable[_T_co@tuple]" +     "None" is incompatible with protocol "Iterable[_T_co@tuple]" +       "__iter__" is not present (reportArgumentType) + /torch/distributed/fsdp/wrap.py:392:58 - error: Argument of type "set[type[Module]] | None" cannot be assigned to parameter "iterable" of type "Iterable[_T_co@tuple]" in function "__new__" +   Type "set[type[Module]] | None" is not assignable to type "Iterable[type[Module]]" +     "None" is incompatible with protocol "Iterable[type[Module]]" +       "__iter__" is not present (reportArgumentType) + /torch/distributed/fsdp/wrap.py:392:58 - error: Argument of type "set[type[Module]] | None" cannot be assigned to parameter "iterable" of type "Iterable[_T_co@tuple]" in function "__new__" +   Type "set[type[Module]] | None" is not assignable to type "Iterable[_T_co@tuple]" +     "None" is incompatible with protocol "Iterable[_T_co@tuple]" +       "__iter__" is not present (reportArgumentType) +/torch/distributed/nn/__init__.py + /torch/distributed/nn/__init__.py:6:22 - error: "rpc" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) +/torch/distributed/nn/api/remote_module.py + /torch/distributed/nn/api/remote_module.py:13:19 - error: "device" is unknown import symbol (reportAttributeAccessIssue) + /torch/distributed/nn/api/remote_module.py:13:27 - error: "dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/distributed/nn/api/remote_module.py:360:10 - error: Function with declared return type "RemovableHandle" must return value on all code paths +   "None" is not assignable to "RemovableHandle" (reportReturnType) + /torch/distributed/nn/api/remote_module.py:375:10 - error: Function with declared return type "RemovableHandle" must return value on all code paths +   "None" is not assignable to "RemovableHandle" (reportReturnType) + /torch/distributed/nn/api/remote_module.py:387:10 - error: Function with declared return type "RemovableHandle" must return value on all code paths +   "None" is not assignable to "RemovableHandle" (reportReturnType) + /torch/distributed/nn/api/remote_module.py:393:9 - error: Method "load_state_dict" overrides class "Module" in an incompatible manner +   Return type mismatch: base method returns type "_IncompatibleKeys", override returns type "None" +     "None" is not assignable to "_IncompatibleKeys" (reportIncompatibleMethodOverride) + /torch/distributed/nn/api/remote_module.py:412:10 - error: Function with declared return type "Iterator[tuple[str, Parameter]]" must return value on all code paths +   "None" is incompatible with protocol "Iterator[tuple[str, Parameter]]" +     "__next__" is not present +     "__iter__" is not present (reportReturnType) + /torch/distributed/nn/api/remote_module.py:424:10 - error: Function with declared return type "Iterator[tuple[str, Tensor]]" must return value on all code paths +   "None" is incompatible with protocol "Iterator[tuple[str, Tensor]]" +     "__next__" is not present +     "__iter__" is not present (reportReturnType) + /torch/distributed/nn/api/remote_module.py:436:9 - error: Method "named_modules" overrides class "Module" in an incompatible manner +   Return type mismatch: base method returns type "Generator[tuple[str, Module] | Unknown, Unknown, None]", override returns type "None" +     "None" is incompatible with protocol "Generator[tuple[str, Module] | Unknown, Unknown, None]" +       "__next__" is not present +       "send" is not present +       "throw" is not present +       "close" is not present +       "__iter__" is not present (reportIncompatibleMethodOverride) + /torch/distributed/nn/api/remote_module.py:484:51 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/nn/functional.py + /torch/distributed/nn/functional.py:241:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/distributed/nn/functional.py:290:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/distributed/nn/functional.py:306:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/distributed/nn/functional.py:323:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/distributed/nn/functional.py:367:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/distributed/nn/functional.py:441:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/distributed/nn/functional.py:468:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) +/torch/distributed/optim/apply_optimizer_in_backward.py + /torch/distributed/optim/apply_optimizer_in_backward.py:13:46 - error: "weak" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/distributed/optim/apply_optimizer_in_backward.py:14:37 - error: "weak" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) +/torch/distributed/optim/functional_adadelta.py + /torch/distributed/optim/functional_adadelta.py:77:38 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adadelta.py:84:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adadelta.py:85:49 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adadelta.py:86:52 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adadelta.py:88:48 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adadelta.py:89:52 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/optim/functional_adagrad.py + /torch/distributed/optim/functional_adagrad.py:69:30 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adagrad.py:70:31 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adagrad.py:91:38 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/optim/functional_adam.py + /torch/distributed/optim/functional_adam.py:82:29 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adam.py:89:35 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adam.py:90:38 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adam.py:91:44 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adam.py:93:41 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adam.py:94:44 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adam.py:97:49 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adam.py:98:48 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adam.py:150:38 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adam.py:157:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adam.py:159:46 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adam.py:160:52 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adam.py:163:49 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adam.py:164:52 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adam.py:168:57 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adam.py:169:56 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/optim/functional_adamax.py + /torch/distributed/optim/functional_adamax.py:85:38 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamax.py:92:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamax.py:94:46 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamax.py:95:52 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamax.py:98:46 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamax.py:99:52 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/optim/functional_adamw.py + /torch/distributed/optim/functional_adamw.py:78:29 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamw.py:86:35 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamw.py:88:38 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamw.py:89:44 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamw.py:92:41 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamw.py:93:44 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamw.py:97:49 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamw.py:98:48 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamw.py:151:38 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamw.py:158:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamw.py:160:46 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamw.py:161:52 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamw.py:164:49 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamw.py:165:52 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamw.py:169:57 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_adamw.py:170:56 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/optim/functional_rmsprop.py + /torch/distributed/optim/functional_rmsprop.py:84:38 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_rmsprop.py:91:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_rmsprop.py:92:49 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_rmsprop.py:93:52 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_rmsprop.py:96:58 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_rmsprop.py:97:56 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_rmsprop.py:100:51 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_rmsprop.py:101:56 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/optim/functional_rprop.py + /torch/distributed/optim/functional_rprop.py:75:38 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_rprop.py:82:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_rprop.py:83:43 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_rprop.py:84:52 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/functional_rprop.py:86:48 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/optim/named_optimizer.py + /torch/distributed/optim/named_optimizer.py:72:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/named_optimizer.py:294:14 - error: "param_groups" overrides symbol of same name in class "Optimizer" +   Variable is mutable so its type is invariant +     Override type "Collection[Mapping[str, Any]]" is not the same as base type "list[dict[str, Any]]" (reportIncompatibleVariableOverride) + /torch/distributed/optim/named_optimizer.py:304:27 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/optim/zero_redundancy_optimizer.py + /torch/distributed/optim/zero_redundancy_optimizer.py:35:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:57:38 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:77:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:77:34 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:101:31 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:102:34 - error: "ByteTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:104:59 - error: Argument of type "object" cannot be assigned to parameter "group" of type "ProcessGroup | None" +   Type "object" is not assignable to type "ProcessGroup | None" +     "object" is not assignable to "ProcessGroup" +     "object" is not assignable to "None" (reportArgumentType) + /torch/distributed/optim/zero_redundancy_optimizer.py:106:62 - error: Argument of type "object" cannot be assigned to parameter "group" of type "ProcessGroup | None" +   Type "object" is not assignable to type "ProcessGroup | None" +     "object" is not assignable to "ProcessGroup" +     "object" is not assignable to "None" (reportArgumentType) + /torch/distributed/optim/zero_redundancy_optimizer.py:109:31 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:111:59 - error: Argument of type "object" cannot be assigned to parameter "group" of type "ProcessGroup | None" +   Type "object" is not assignable to type "ProcessGroup | None" +     "object" is not assignable to "ProcessGroup" +     "object" is not assignable to "None" (reportArgumentType) + /torch/distributed/optim/zero_redundancy_optimizer.py:112:34 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:113:54 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:116:62 - error: Argument of type "object" cannot be assigned to parameter "group" of type "ProcessGroup | None" +   Type "object" is not assignable to type "ProcessGroup | None" +     "object" is not assignable to "ProcessGroup" +     "object" is not assignable to "None" (reportArgumentType) + /torch/distributed/optim/zero_redundancy_optimizer.py:175:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:407:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:424:13 - error: Argument of type "Any | ProcessGroup | None" cannot be assigned to parameter "group" of type "ProcessGroup" in function "get_global_rank" +   Type "Any | ProcessGroup | None" is not assignable to type "ProcessGroup" +     "None" is not assignable to "ProcessGroup" (reportArgumentType) + /torch/distributed/optim/zero_redundancy_optimizer.py:535:33 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:536:30 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:546:17 - error: Argument of type "Any | ProcessGroup | None" cannot be assigned to parameter "group" of type "ProcessGroup" in function "get_global_rank" +   Type "Any | ProcessGroup | None" is not assignable to type "ProcessGroup" +     "None" is not assignable to "ProcessGroup" (reportArgumentType) + /torch/distributed/optim/zero_redundancy_optimizer.py:558:42 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:573:42 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:780:21 - error: Argument of type "Any | ProcessGroup | None" cannot be assigned to parameter "group" of type "ProcessGroup" in function "get_global_rank" +   Type "Any | ProcessGroup | None" is not assignable to type "ProcessGroup" +     "None" is not assignable to "ProcessGroup" (reportArgumentType) + /torch/distributed/optim/zero_redundancy_optimizer.py:795:17 - error: Argument of type "Any | ProcessGroup | None" cannot be assigned to parameter "group" of type "ProcessGroup" in function "get_global_rank" +   Type "Any | ProcessGroup | None" is not assignable to type "ProcessGroup" +     "None" is not assignable to "ProcessGroup" (reportArgumentType) + /torch/distributed/optim/zero_redundancy_optimizer.py:828:21 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:996:58 - error: "threshold" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/optim/zero_redundancy_optimizer.py:1001:29 - error: "size_per_rank" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/optim/zero_redundancy_optimizer.py:1014:25 - error: "size_per_rank" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/optim/zero_redundancy_optimizer.py:1022:21 - error: "size_per_rank" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/optim/zero_redundancy_optimizer.py:1033:17 - error: "size_per_rank" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/optim/zero_redundancy_optimizer.py:1103:20 - error: No overloads for "step" match the provided arguments +   Argument types: (list[Tensor | None]) (reportCallIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:1112:9 - error: Method "step" overrides class "Optimizer" in an incompatible manner +   Return type mismatch: base method returns type "None", override returns type "float | None" +     Type "float | None" is not assignable to type "None" +       "float" is not assignable to "None" (reportIncompatibleMethodOverride) + /torch/distributed/optim/zero_redundancy_optimizer.py:1164:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:1192:16 - error: Argument of type "list[Tensor]" cannot be assigned to parameter "key" of type "Tensor" in function "__getitem__" +   "list[Tensor]" is not assignable to "Tensor" (reportArgumentType) + /torch/distributed/optim/zero_redundancy_optimizer.py:1197:17 - error: Argument of type "list[Tensor]" cannot be assigned to parameter "key" of type "Tensor" in function "__setitem__" +   "list[Tensor]" is not assignable to "Tensor" (reportArgumentType) + /torch/distributed/optim/zero_redundancy_optimizer.py:1198:60 - error: Cannot access attribute "device" for class "list[Tensor]" +   Attribute "device" is unknown (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:1201:48 - error: Argument of type "list[Tensor]" cannot be assigned to parameter "key" of type "Tensor" in function "__getitem__" +   "list[Tensor]" is not assignable to "Tensor" (reportArgumentType) + /torch/distributed/optim/zero_redundancy_optimizer.py:1203:25 - error: Argument of type "list[Tensor]" cannot be assigned to parameter "key" of type "Tensor" in function "__getitem__" +   "list[Tensor]" is not assignable to "Tensor" (reportArgumentType) + /torch/distributed/optim/zero_redundancy_optimizer.py:1350:36 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:1353:36 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:1392:32 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.py:1523:22 - error: Declaration "optim" is obscured by a declaration of the same name (reportRedeclaration) + /torch/distributed/optim/zero_redundancy_optimizer.py:1533:22 - error: Declaration "optim" is obscured by a declaration of the same name (reportRedeclaration) +/torch/distributed/optim/zero_redundancy_optimizer.pyi + /torch/distributed/optim/zero_redundancy_optimizer.pyi:19:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.pyi:52:41 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.pyi:84:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/optim/zero_redundancy_optimizer.pyi:85:9 - error: "join_process_group" incorrectly overrides property of same name in class "Joinable" (reportIncompatibleMethodOverride) +/torch/distributed/pipelining/_IR.py + /torch/distributed/pipelining/_IR.py:186:16 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/distributed/pipelining/_IR.py:187:16 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/distributed/pipelining/_IR.py:320:5 - error: Function declaration "_pipe_split" is obscured by a declaration of the same name (reportRedeclaration) + /torch/distributed/pipelining/_IR.py:334:4 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/distributed/pipelining/_IR.py:503:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/_IR.py:1122:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/pipelining/_backward.py + /torch/distributed/pipelining/_backward.py:196:19 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/_backward.py:249:43 - error: Argument of type "int" cannot be assigned to parameter "object" of type "Tensor" in function "append" +   "int" is not assignable to "Tensor" (reportArgumentType) +/torch/distributed/pipelining/_debug.py + /torch/distributed/pipelining/_debug.py:22:21 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/distributed/pipelining/_schedule_visualizer.py + /torch/distributed/pipelining/_schedule_visualizer.py:85:40 - error: Argument of type "Any | list[Any]" cannot be assigned to parameter "stage" of type "_PipelineStageBase" in function "__init__" +   Type "Any | list[Any]" is not assignable to type "_PipelineStageBase" +     "list[Any]" is not assignable to "_PipelineStageBase" (reportArgumentType) + /torch/distributed/pipelining/_schedule_visualizer.py:350:12 - error: Import "matplotlib.pyplot" could not be resolved (reportMissingImports) + /torch/distributed/pipelining/_schedule_visualizer.py:351:10 - error: Import "matplotlib.patches" could not be resolved (reportMissingImports) +/torch/distributed/pipelining/microbatch.py + /torch/distributed/pipelining/microbatch.py:52:34 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/microbatch.py:143:34 - error: "tensor_split" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/microbatch.py:146:31 - error: "tensor_split" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/microbatch.py:148:15 - error: "tensor_split" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/microbatch.py:153:15 - error: "tensor_split" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/microbatch.py:203:27 - error: "tensor_split" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/microbatch.py:211:25 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/microbatch.py:387:24 - error: Argument of type "tuple[TensorChunkSpec, ...] | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "tuple[TensorChunkSpec, ...] | None" is not assignable to type "Iterable[TensorChunkSpec]" +     "None" is incompatible with protocol "Iterable[TensorChunkSpec]" +       "__iter__" is not present (reportArgumentType) + /torch/distributed/pipelining/microbatch.py:387:24 - error: Argument of type "tuple[TensorChunkSpec, ...] | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "tuple[TensorChunkSpec, ...] | None" is not assignable to type "Iterable[_T@enumerate]" +     "None" is incompatible with protocol "Iterable[_T@enumerate]" +       "__iter__" is not present (reportArgumentType) + /torch/distributed/pipelining/microbatch.py:405:28 - error: Argument of type "tuple[TensorChunkSpec, ...] | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "tuple[TensorChunkSpec, ...] | None" is not assignable to type "Iterable[TensorChunkSpec]" +     "None" is incompatible with protocol "Iterable[TensorChunkSpec]" +       "__iter__" is not present (reportArgumentType) + /torch/distributed/pipelining/microbatch.py:405:28 - error: Argument of type "tuple[TensorChunkSpec, ...] | None" cannot be assigned to parameter "iterable" of type "Iterable[_T@enumerate]" in function "__new__" +   Type "tuple[TensorChunkSpec, ...] | None" is not assignable to type "Iterable[_T@enumerate]" +     "None" is incompatible with protocol "Iterable[_T@enumerate]" +       "__iter__" is not present (reportArgumentType) + /torch/distributed/pipelining/microbatch.py:503:37 - error: "tensor_split" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/microbatch.py:504:27 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/microbatch.py:527:41 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/pipelining/schedules.py + /torch/distributed/pipelining/schedules.py:626:45 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/schedules.py:644:40 - error: "tensor_split" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/schedules.py:1621:27 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/schedules.py:1642:40 - error: "tensor_split" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/pipelining/stage.py + /torch/distributed/pipelining/stage.py:103:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/stage.py:108:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/stage.py:128:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/stage.py:692:54 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) + /torch/distributed/pipelining/stage.py:692:54 - error: "slice[Any, Any, Any]" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/distributed/pipelining/stage.py:692:54 - error: "int" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/distributed/pipelining/stage.py:692:54 - error: "float" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/distributed/pipelining/stage.py:692:54 - error: "bool" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/distributed/pipelining/stage.py:692:54 - error: "complex" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/distributed/pipelining/stage.py:692:54 - error: "OpOverload[..., Any]" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/distributed/pipelining/stage.py:692:54 - error: "SymInt" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/distributed/pipelining/stage.py:692:54 - error: "SymBool" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/distributed/pipelining/stage.py:692:54 - error: "SymFloat" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/distributed/pipelining/stage.py:935:29 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/stage.py:935:70 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/stage.py:936:29 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/stage.py:937:63 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/stage.py:1021:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/stage.py:1295:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/stage.py:1349:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/stage.py:1458:43 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/pipelining/stage.py:1584:44 - error: Argument of type "tuple[Tensor, ...]" cannot be assigned to parameter "example" of type "Tensor | FakeTensor" in function "_make_tensor_from_meta" +   Type "tuple[Tensor, ...]" is not assignable to type "Tensor | FakeTensor" +     "tuple[Tensor, ...]" is not assignable to "Tensor" +     "tuple[Tensor, ...]" is not assignable to "FakeTensor" (reportArgumentType) +/torch/distributed/remote_device.py + /torch/distributed/remote_device.py:25:56 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/remote_device.py:32:54 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/remote_device.py:34:44 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/remote_device.py:59:30 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/remote_device.py:95:31 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/rpc/__init__.py + /torch/distributed/rpc/__init__.py:28:36 - error: "_rpc_init" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/rpc/__init__.py:34:18 - error: "_distributed_rpc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/rpc/__init__.py:40:10 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/rpc/__init__.py:41:10 - warning: Import "torch._C._distributed_rpc" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/rpc/__init__.py:75:14 - warning: Import "torch._C._distributed_rpc" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/rpc/__init__.py:90:5 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) +/torch/distributed/rpc/_testing/__init__.py + /torch/distributed/rpc/_testing/__init__.py:8:36 - error: "_faulty_agent_init" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/rpc/_testing/__init__.py:13:10 - warning: Import "torch._C._distributed_rpc_testing" could not be resolved from source (reportMissingModuleSource) +/torch/distributed/rpc/api.py + /torch/distributed/rpc/api.py:13:6 - warning: Import "torch._C._distributed_rpc" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/rpc/api.py:705:32 - error: "_builtins" is not a known attribute of module "torch.jit" (reportAttributeAccessIssue) + /torch/distributed/rpc/api.py:722:28 - error: Cannot access attribute "_wrapped_async_rpc_function" for class "FunctionType" +   Attribute "_wrapped_async_rpc_function" is unknown (reportFunctionMemberAccess) + /torch/distributed/rpc/api.py:733:23 - error: "_jit_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/rpc/api.py:827:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/rpc/constants.py + /torch/distributed/rpc/constants.py:3:6 - warning: Import "torch._C._distributed_rpc" could not be resolved from source (reportMissingModuleSource) +/torch/distributed/rpc/internal.py + /torch/distributed/rpc/internal.py:13:6 - warning: Import "torch._C._distributed_rpc" could not be resolved from source (reportMissingModuleSource) +/torch/distributed/rpc/options.py + /torch/distributed/rpc/options.py:9:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/rpc/options.py:14:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/rpc/options.py:15:20 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/rpc/options.py:16:15 - error: Cannot access attribute "type" for class "int" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/distributed/rpc/options.py:16:15 - error: Cannot access attribute "type" for class "str" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/distributed/rpc/options.py:19:35 - error: Cannot access attribute "type" for class "int" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/distributed/rpc/options.py:19:35 - error: Cannot access attribute "type" for class "str" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/distributed/rpc/options.py:26:17 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/rpc/options.py:26:31 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/rpc/options.py:27:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/rpc/options.py:27:47 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/rpc/options.py:28:29 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/rpc/options.py:28:43 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/rpc/options.py:30:22 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/rpc/options.py:30:39 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/rpc/options.py:41:62 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/rpc/options.py:46:10 - warning: Import "torch._C._distributed_rpc" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/rpc/options.py:52:35 - error: Argument to class must be a base class (reportGeneralTypeIssues) +/torch/distributed/run.py + /torch/distributed/run.py:754:41 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/run.py:851:48 - error: Operator ">" not supported for "None" (reportOptionalOperand) + /torch/distributed/run.py:902:24 - error: Argument of type "int | Any | None" cannot be assigned to parameter "nproc_per_node" of type "int" in function "__init__" +   Type "int | Any | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) +/torch/distributed/tensor/_api.py + /torch/distributed/tensor/_api.py:138:31 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:153:49 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:363:31 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:475:22 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:490:39 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:491:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:736:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:928:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1044:17 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1061:38 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1062:26 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1070:25 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1073:27 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1073:52 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1075:43 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1084:14 - error: Object of type "None" cannot be used with "with" (reportOptionalContextManager) + /torch/distributed/tensor/_api.py:1111:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1112:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1112:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1142:15 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1154:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1155:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1155:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1185:15 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1199:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1200:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1200:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1231:15 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1245:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1246:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1246:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1276:15 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1289:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1290:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1290:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1320:15 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1333:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1334:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1334:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_api.py:1361:15 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/_collective_utils.py + /torch/distributed/tensor/_collective_utils.py:11:6 - warning: Import "torch._C._distributed_c10d" could not be resolved from source (reportMissingModuleSource) +/torch/distributed/tensor/_dispatch.py + /torch/distributed/tensor/_dispatch.py:55:16 - error: Cannot access attribute "size" for class "object" +   Attribute "size" is unknown (reportAttributeAccessIssue) + /torch/distributed/tensor/_dispatch.py:55:32 - error: Argument of type "object" cannot be assigned to parameter "iterable" of type "Iterable[_T_co@tuple]" in function "__new__" +   "object" is incompatible with protocol "Iterable[_T_co@tuple]" +     "__iter__" is not present (reportArgumentType) + /torch/distributed/tensor/_dispatch.py:56:20 - error: Cannot access attribute "stride" for class "object" +   Attribute "stride" is unknown (reportAttributeAccessIssue) + /torch/distributed/tensor/_dispatch.py:56:38 - error: Argument of type "object" cannot be assigned to parameter "iterable" of type "Iterable[_T_co@tuple]" in function "__new__" +   "object" is incompatible with protocol "Iterable[_T_co@tuple]" +     "__iter__" is not present (reportArgumentType) + /torch/distributed/tensor/_dispatch.py:57:47 - error: Cannot access attribute "storage_offset" for class "object" +   Attribute "storage_offset" is unknown (reportAttributeAccessIssue) + /torch/distributed/tensor/_dispatch.py:163:25 - error: "_get_dtensor_allow_implicit_replication" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_dispatch.py:167:25 - error: "_set_dtensor_allow_implicit_replication" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_dispatch.py:181:25 - error: "_dispatch_has_kernel_for_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_dispatch.py:182:42 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_dispatch.py:248:49 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_dispatch.py:260:22 - error: Object of type "None" cannot be used with "with" (reportOptionalContextManager) + /torch/distributed/tensor/_dispatch.py:287:42 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_dispatch.py:290:42 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_dispatch.py:332:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_dispatch.py:431:25 - error: Argument of type "Any | object" cannot be assigned to parameter "dst_spec" of type "DTensorSpec" in function "is_redistribute_allowed" +   Type "Any | object" is not assignable to type "DTensorSpec" +     "object" is not assignable to "DTensorSpec" (reportArgumentType) + /torch/distributed/tensor/_dispatch.py:441:29 - error: Argument of type "Any | object" cannot be assigned to parameter "target_spec" of type "DTensorSpec" in function "redistribute_local_tensor" +   Type "Any | object" is not assignable to type "DTensorSpec" +     "object" is not assignable to "DTensorSpec" (reportArgumentType) + /torch/distributed/tensor/_dispatch.py:540:56 - error: Argument of type "torch.utils._cxx_pytree.TreeSpec | torch.utils._pytree.TreeSpec" cannot be assigned to parameter "treespec" of type "TreeSpec" in function "tree_unflatten" +   Type "torch.utils._cxx_pytree.TreeSpec | torch.utils._pytree.TreeSpec" is not assignable to type "TreeSpec" +     "TreeSpec" is not assignable to "PyTreeSpec" (reportArgumentType) + /torch/distributed/tensor/_dispatch.py:540:56 - error: Argument of type "torch.utils._cxx_pytree.TreeSpec | torch.utils._pytree.TreeSpec" cannot be assigned to parameter "treespec" of type "TreeSpec" in function "tree_unflatten" +   Type "torch.utils._cxx_pytree.TreeSpec | torch.utils._pytree.TreeSpec" is not assignable to type "TreeSpec" +     "PyTreeSpec" is not assignable to "TreeSpec" (reportArgumentType) +/torch/distributed/tensor/_dtensor_spec.py + /torch/distributed/tensor/_dtensor_spec.py:62:18 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_dtensor_spec.py:64:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_dtensor_spec.py:510:30 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/_op_schema.py + /torch/distributed/tensor/_op_schema.py:34:5 - error: "_DTensor_OpSchema_post_init" is unknown import symbol (reportAttributeAccessIssue) + /torch/distributed/tensor/_op_schema.py:35:5 - error: "_DTensor_OpSchema_recompute_comparison_key" is unknown import symbol (reportAttributeAccessIssue) + /torch/distributed/tensor/_op_schema.py:75:18 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_op_schema.py:412:41 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_op_schema.py:419:41 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_op_schema.py:426:55 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_op_schema.py:599:30 - error: Variable not allowed in type expression (reportInvalidTypeForm) +/torch/distributed/tensor/_ops/_common_rules.py + /torch/distributed/tensor/_ops/_common_rules.py:212:15 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/_ops/_conv_ops.py + /torch/distributed/tensor/_ops/_conv_ops.py:54:15 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_conv_ops.py:97:19 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/_ops/_math_ops.py + /torch/distributed/tensor/_ops/_math_ops.py:912:63 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_math_ops.py:1058:63 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/_ops/_matrix_ops.py + /torch/distributed/tensor/_ops/_matrix_ops.py:114:26 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_matrix_ops.py:281:24 - error: Index 0 is out of range for type ArgsType (reportGeneralTypeIssues) + /torch/distributed/tensor/_ops/_matrix_ops.py:1095:37 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/_ops/_view_ops.py + /torch/distributed/tensor/_ops/_view_ops.py:482:11 - error: "broadcast_to" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:484:11 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:485:11 - error: "movedim" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:488:11 - error: "permute" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:491:11 - error: "ravel" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:493:11 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:494:11 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:495:11 - error: "tile" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:496:11 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:497:11 - error: "unsqueeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:499:11 - error: "view_as_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:500:11 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:756:54 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:758:30 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:761:29 - error: "squeeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:770:33 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:779:35 - error: "unsqueeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:785:33 - error: "permute" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:791:31 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:793:62 - error: "view_as_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/_view_ops.py:794:59 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/_ops/utils.py + /torch/distributed/tensor/_ops/utils.py:224:25 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/utils.py:224:50 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_ops/utils.py:239:18 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/_random.py + /torch/distributed/tensor/_random.py:127:53 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_random.py:131:31 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_random.py:131:60 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_random.py:132:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_random.py:138:53 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_random.py:142:29 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_random.py:142:56 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_random.py:143:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_random.py:157:38 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_random.py:177:60 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_random.py:213:24 - error: Argument of type "bool" cannot be assigned to parameter "iterable" of type "Iterable[object]" in function "all" +   "bool" is incompatible with protocol "Iterable[object]" +     "__iter__" is not present (reportArgumentType) + /torch/distributed/tensor/_random.py:225:33 - error: "set_rng_ctx" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/tensor/_random.py:226:41 - error: "get_rng_state" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/tensor/_random.py:228:33 - error: "unset_rng_ctx" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/tensor/_random.py:236:33 - error: "set_rng_ctx" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/tensor/_random.py:237:29 - error: "set_rng_state" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/tensor/_random.py:239:33 - error: "unset_rng_ctx" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/tensor/_random.py:242:9 - error: Method "_distribute_region" overrides class "_RNGStateTracker" in an incompatible manner +   Return type mismatch: base method returns type "None", override returns type "_GeneratorContextManager[None, None, None]" +     "_GeneratorContextManager[None, None, None]" is not assignable to "None" (reportIncompatibleMethodOverride) + /torch/distributed/tensor/_random.py:243:60 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_random.py:265:37 - error: "set_rng_ctx" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/tensor/_random.py:448:55 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_random.py:453:18 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/_redistribute.py + /torch/distributed/tensor/_redistribute.py:849:39 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_redistribute.py:850:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/_sharding_prop.py + /torch/distributed/tensor/_sharding_prop.py:365:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/_shards_wrapper.py + /torch/distributed/tensor/_shards_wrapper.py:50:23 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_shards_wrapper.py:55:28 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_shards_wrapper.py:58:39 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_shards_wrapper.py:58:65 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_shards_wrapper.py:76:31 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_shards_wrapper.py:79:31 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_shards_wrapper.py:87:19 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_shards_wrapper.py:124:28 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_shards_wrapper.py:208:69 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_shards_wrapper.py:222:20 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_shards_wrapper.py:229:75 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_shards_wrapper.py:252:41 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_shards_wrapper.py:260:43 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_shards_wrapper.py:339:26 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_shards_wrapper.py:340:26 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/_tp_conv.py + /torch/distributed/tensor/_tp_conv.py:203:34 - error: Argument of type "tuple[Literal[0], Unknown]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[0], Unknown]" is not assignable to "list[int]" (reportArgumentType) + /torch/distributed/tensor/_tp_conv.py:207:34 - error: Argument of type "tuple[Unknown, Literal[0]]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Unknown, Literal[0]]" is not assignable to "list[int]" (reportArgumentType) + /torch/distributed/tensor/_tp_conv.py:211:34 - error: Argument of type "tuple[Unknown, Unknown]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Unknown, Unknown]" is not assignable to "list[int]" (reportArgumentType) + /torch/distributed/tensor/_tp_conv.py:268:12 - error: Type "list[object]" is not assignable to declared type "tuple[object, ...]" +   "list[object]" is not assignable to "tuple[object, ...]" (reportAssignmentType) + /torch/distributed/tensor/_tp_conv.py:271:5 - error: "__setitem__" method not defined on type "tuple[object, ...]" (reportIndexIssue) +/torch/distributed/tensor/_utils.py + /torch/distributed/tensor/_utils.py:261:39 - error: "_DTensor_compute_global_tensor_info" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_utils.py:329:18 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_utils.py:330:12 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_utils.py:365:29 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_utils.py:367:19 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_utils.py:375:26 - error: "equal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_utils.py:383:22 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_utils.py:440:31 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/_utils.py:449:18 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/debug/_op_coverage.py + /torch/distributed/tensor/debug/_op_coverage.py:58:10 - warning: Import "tabulate" could not be resolved from source (reportMissingModuleSource) +/torch/distributed/tensor/debug/_visualize_sharding.py + /torch/distributed/tensor/debug/_visualize_sharding.py:21:10 - warning: Import "tabulate" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/tensor/debug/_visualize_sharding.py:74:12 - error: Import "matplotlib" could not be resolved (reportMissingImports) +/torch/distributed/tensor/examples/comm_mode_features_example.py + /torch/distributed/tensor/examples/comm_mode_features_example.py:72:19 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/examples/comm_mode_features_example.py:76:21 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/examples/comm_mode_features_example.py:90:19 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/examples/comm_mode_features_example.py:98:21 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/examples/comm_mode_features_example.py:690:29 - error: Type "Unknown | None" is not assignable to declared type "Tensor" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportAssignmentType) + /torch/distributed/tensor/examples/comm_mode_features_example.py:704:19 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/examples/flex_attention_cp.py + /torch/distributed/tensor/examples/flex_attention_cp.py:63:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/examples/flex_attention_cp.py:70:15 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/examples/flex_attention_cp.py:149:22 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/examples/torchrec_sharding_example.py + /torch/distributed/tensor/examples/torchrec_sharding_example.py:52:68 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/examples/torchrec_sharding_example.py:67:31 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/examples/torchrec_sharding_example.py:113:41 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/examples/torchrec_sharding_example.py:117:43 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/examples/visualize_sharding_example.py + /torch/distributed/tensor/examples/visualize_sharding_example.py:32:12 - error: "debug" is not a known attribute of module "torch.distributed.tensor" (reportAttributeAccessIssue) + /torch/distributed/tensor/examples/visualize_sharding_example.py:33:12 - error: "debug" is not a known attribute of module "torch.distributed.tensor" (reportAttributeAccessIssue) + /torch/distributed/tensor/examples/visualize_sharding_example.py:38:11 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/examples/visualize_sharding_example.py:50:11 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/examples/visualize_sharding_example.py:66:11 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/examples/visualize_sharding_example.py:86:11 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/experimental/_context_parallel/_attention.py + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:135:18 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:147:33 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:148:33 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:210:32 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:211:32 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:431:29 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:478:12 - error: Type "tuple[Tensor, Tensor, *tuple[Any, ...]]" is not assignable to return type "tuple[Tensor, ...]" +   "tuple[Tensor, Tensor, *tuple[Any, ...]]" is not assignable to "tuple[Tensor, ...]" +     Tuple size mismatch; expected 0 or more but received 2 (reportReturnType) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:478:37 - error: "rest" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:505:25 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:506:24 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:507:22 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:508:24 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:526:29 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:577:33 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:578:31 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:579:33 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:618:30 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:640:12 - error: Type "tuple[Unknown, Unknown, Unknown, *tuple[Any, ...]]" is not assignable to return type "tuple[Tensor, ...]" +   "tuple[Unknown, Unknown, Unknown, *tuple[Any, ...]]" is not assignable to "tuple[Tensor, ...]" +     Tuple size mismatch; expected 0 or more but received 3 (reportReturnType) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:645:10 - error: "rest" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:1096:36 - error: "index_select" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:1106:43 - error: "index_select" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:1288:9 - error: Method "_apply" overrides class "ParallelStyle" in an incompatible manner +   Parameter 3 name mismatch: base parameter is named "device_mesh", override parameter is named "mesh" (reportIncompatibleMethodOverride) + /torch/distributed/tensor/experimental/_context_parallel/_attention.py:1625:45 - error: "index_select" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py + /torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py:31:19 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py:32:19 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py:64:24 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py:67:24 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py + /torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:80:78 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:169:36 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:170:38 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:173:40 - error: "argsort" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:183:29 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:255:22 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:282:27 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:289:27 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:298:32 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:300:36 - error: "argsort" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:358:46 - error: "sort" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:361:52 - error: "flip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:364:32 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:365:19 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:375:35 - error: "sort" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:468:25 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:474:40 - error: "argsort" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:480:59 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/experimental/_func_map.py + /torch/distributed/tensor/experimental/_func_map.py:242:57 - error: Argument of type "torch.utils._cxx_pytree.TreeSpec | torch.utils._pytree.TreeSpec" cannot be assigned to parameter "treespec" of type "TreeSpec" in function "tree_unflatten" +   Type "torch.utils._cxx_pytree.TreeSpec | torch.utils._pytree.TreeSpec" is not assignable to type "TreeSpec" +     "TreeSpec" is not assignable to "PyTreeSpec" (reportArgumentType) + /torch/distributed/tensor/experimental/_func_map.py:242:57 - error: Argument of type "torch.utils._cxx_pytree.TreeSpec | torch.utils._pytree.TreeSpec" cannot be assigned to parameter "treespec" of type "TreeSpec" in function "tree_unflatten" +   Type "torch.utils._cxx_pytree.TreeSpec | torch.utils._pytree.TreeSpec" is not assignable to type "TreeSpec" +     "PyTreeSpec" is not assignable to "TreeSpec" (reportArgumentType) + /torch/distributed/tensor/experimental/_func_map.py:266:58 - error: Argument of type "PlacementType | Placement" cannot be assigned to parameter "placements" of type "Sequence[Placement] | None" in function "from_local" +   Type "PlacementType | Placement" is not assignable to type "Sequence[Placement] | None" +     Type "Placement" is not assignable to type "Sequence[Placement] | None" +       "Placement" is not assignable to "Sequence[Placement]" +       "Placement" is not assignable to "None" (reportArgumentType) + /torch/distributed/tensor/experimental/_func_map.py:276:53 - error: Argument of type "torch.utils._cxx_pytree.TreeSpec | torch.utils._pytree.TreeSpec" cannot be assigned to parameter "treespec" of type "TreeSpec" in function "tree_unflatten" +   Type "torch.utils._cxx_pytree.TreeSpec | torch.utils._pytree.TreeSpec" is not assignable to type "TreeSpec" +     "TreeSpec" is not assignable to "PyTreeSpec" (reportArgumentType) + /torch/distributed/tensor/experimental/_func_map.py:276:53 - error: Argument of type "torch.utils._cxx_pytree.TreeSpec | torch.utils._pytree.TreeSpec" cannot be assigned to parameter "treespec" of type "TreeSpec" in function "tree_unflatten" +   Type "torch.utils._cxx_pytree.TreeSpec | torch.utils._pytree.TreeSpec" is not assignable to type "TreeSpec" +     "PyTreeSpec" is not assignable to "TreeSpec" (reportArgumentType) +/torch/distributed/tensor/experimental/_tp_transform.py + /torch/distributed/tensor/experimental/_tp_transform.py:87:51 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_tp_transform.py:241:72 - error: Argument of type "OutputSharding | object" cannot be assigned to parameter "output_sharding" of type "OutputSharding" in function "_get_output_spec_from_output_sharding" +   Type "OutputSharding | object" is not assignable to type "OutputSharding" +     "object" is not assignable to "OutputSharding" (reportArgumentType) + /torch/distributed/tensor/experimental/_tp_transform.py:243:49 - error: Cannot access attribute "redistribute_schema" for class "object" +   Attribute "redistribute_schema" is unknown (reportAttributeAccessIssue) + /torch/distributed/tensor/experimental/_tp_transform.py:245:40 - error: Cannot access attribute "redistribute_schema" for class "object" +   Attribute "redistribute_schema" is unknown (reportAttributeAccessIssue) +/torch/distributed/tensor/parallel/api.py + /torch/distributed/tensor/parallel/api.py:70:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/parallel/fsdp.py + /torch/distributed/tensor/parallel/fsdp.py:31:46 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/fsdp.py:31:58 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/fsdp.py:44:19 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/fsdp.py:47:60 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/fsdp.py:47:72 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/fsdp.py:49:19 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/fsdp.py:52:52 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/fsdp.py:52:64 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/fsdp.py:368:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/tensor/parallel/loss.py + /torch/distributed/tensor/parallel/loss.py:121:16 - error: Type "TensorMeta | None" is not assignable to return type "TensorMeta" +   Type "TensorMeta | None" is not assignable to type "TensorMeta" +     "None" is not assignable to "TensorMeta" (reportReturnType) + /torch/distributed/tensor/parallel/loss.py:195:30 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/loss.py:208:24 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/loss.py:234:25 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/loss.py:243:28 - error: "gather" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/loss.py:248:20 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/loss.py:258:13 - error: "w" is possibly unbound (reportPossiblyUnboundVariable) + /torch/distributed/tensor/parallel/loss.py:259:22 - error: "gather" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/loss.py:260:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/loss.py:263:49 - error: Cannot access attribute "sum" for class "bool" +   Attribute "sum" is unknown (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/loss.py:316:12 - error: Type "list[object]" is not assignable to declared type "tuple[object, ...]" +   "list[object]" is not assignable to "tuple[object, ...]" (reportAssignmentType) + /torch/distributed/tensor/parallel/loss.py:318:5 - error: "__setitem__" method not defined on type "tuple[object, ...]" (reportIndexIssue) + /torch/distributed/tensor/parallel/loss.py:318:14 - error: "__setitem__" method not defined on type "tuple[object, ...]" (reportIndexIssue) + /torch/distributed/tensor/parallel/loss.py:363:24 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/loss.py:373:25 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/loss.py:374:24 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/loss.py:384:23 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/loss.py:411:20 - error: "expand" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributed/tensor/parallel/loss.py:412:26 - error: "gather" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/loss.py:415:25 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/loss.py:421:32 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/parallel/loss.py:452:12 - error: Type "list[object]" is not assignable to declared type "tuple[object, ...]" +   "list[object]" is not assignable to "tuple[object, ...]" (reportAssignmentType) + /torch/distributed/tensor/parallel/loss.py:454:5 - error: "__setitem__" method not defined on type "tuple[object, ...]" (reportIndexIssue) + /torch/distributed/tensor/parallel/loss.py:454:14 - error: "__setitem__" method not defined on type "tuple[object, ...]" (reportIndexIssue) + /torch/distributed/tensor/parallel/loss.py:456:5 - error: "__setitem__" method not defined on type "tuple[object, ...]" (reportIndexIssue) +/torch/distributed/tensor/placement_types.py + /torch/distributed/tensor/placement_types.py:10:6 - warning: Import "torch._C._distributed" could not be resolved from source (reportMissingModuleSource) + /torch/distributed/tensor/placement_types.py:31:22 - error: "_distributed" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/distributed/tensor/placement_types.py:71:34 - error: "chunk" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/placement_types.py:188:24 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/placement_types.py:235:28 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/placement_types.py:316:36 - error: Cannot access attribute "clone" for class "list[Tensor]" +   Attribute "clone" is unknown (reportAttributeAccessIssue) + /torch/distributed/tensor/placement_types.py:491:30 - error: "_distributed" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/distributed/tensor/placement_types.py:605:27 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/placement_types.py:637:32 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/placement_types.py:674:29 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/placement_types.py:675:33 - error: "argsort" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/placement_types.py:676:34 - error: "index_select" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/placement_types.py:696:32 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/tensor/placement_types.py:715:26 - error: "_distributed" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/distributed/tensor/placement_types.py:773:24 - error: "_distributed" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/distributed/tensor/placement_types.py:862:34 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributed/utils.py + /torch/distributed/utils.py:47:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/utils.py:60:22 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/utils.py:87:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/utils.py:92:5 - error: Overload 2 for "_recursive_to" will never be used because its parameters overlap overload 1 (reportOverlappingOverload) + /torch/distributed/utils.py:93:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/utils.py:167:54 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributed/utils.py:176:34 - error: "_functional_collectives" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/distributed/utils.py:196:34 - error: "_functional_collectives" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/distributed/utils.py:261:26 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/bernoulli.py + /torch/distributions/bernoulli.py:43:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/bernoulli.py:43:23 - error: Type "dict[str, _Interval | _Real]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/bernoulli.py:44:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/bernoulli.py:44:15 - error: Type "_Boolean" is not assignable to declared type "property" +   "_Boolean" is not assignable to "property" (reportAssignmentType) + /torch/distributions/bernoulli.py:46:5 - error: "_mean_carrier_measure" incorrectly overrides property of same name in class "ExponentialFamily" (reportIncompatibleMethodOverride) + /torch/distributions/bernoulli.py:46:29 - error: Type "Literal[0]" is not assignable to declared type "property" +   "Literal[0]" is not assignable to "property" (reportAssignmentType) + /torch/distributions/bernoulli.py:69:33 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/bernoulli.py:113:36 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/bernoulli.py:141:23 - error: "logit" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/bernoulli.py:144:9 - error: Method "_log_normalizer" overrides class "ExponentialFamily" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "natural_params" is missing in override (reportIncompatibleMethodOverride) +/torch/distributions/beta.py + /torch/distributions/beta.py:35:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/beta.py:35:23 - error: Type "dict[str, _GreaterThan]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/beta.py:39:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/beta.py:39:15 - error: Type "_Interval" is not assignable to declared type "property" +   "_Interval" is not assignable to "property" (reportAssignmentType) + /torch/distributions/beta.py:49:51 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/beta.py:56:51 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/beta.py:101:26 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/beta.py:109:26 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/beta.py:118:9 - error: Method "_log_normalizer" overrides class "ExponentialFamily" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 3 +   Parameter "natural_params" is missing in override (reportIncompatibleMethodOverride) +/torch/distributions/binomial.py + /torch/distributions/binomial.py:49:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/binomial.py:49:23 - error: Type "dict[str, _IntegerGreaterThan | _Interval | _Real]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/binomial.py:106:9 - error: "support" incorrectly overrides property of same name in class "Distribution" +   Property method "fget" is missing in override (reportIncompatibleMethodOverride) + /torch/distributions/binomial.py:130:36 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/categorical.py + /torch/distributions/categorical.py:54:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/categorical.py:54:23 - error: Type "dict[str, _Simplex | independent]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/categorical.py:80:40 - error: Cannot access attribute "size" for class "lazy_property[Self@Categorical, Tensor]" +   Attribute "size" is unknown (reportAttributeAccessIssue) + /torch/distributions/categorical.py:82:25 - error: Cannot access attribute "size" for class "lazy_property[Self@Categorical, Tensor]" +   Attribute "size" is unknown (reportAttributeAccessIssue) + /torch/distributions/categorical.py:82:52 - error: Cannot access attribute "ndimension" for class "lazy_property[Self@Categorical, Tensor]" +   Attribute "ndimension" is unknown (reportAttributeAccessIssue) + /torch/distributions/categorical.py:82:80 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/categorical.py:106:9 - error: "support" incorrectly overrides property of same name in class "Distribution" +   Property method "fget" is missing in override (reportIncompatibleMethodOverride) + /torch/distributions/categorical.py:118:36 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/categorical.py:119:28 - error: Cannot access attribute "size" for class "lazy_property[Self@Categorical, Tensor]" +   Attribute "size" is unknown (reportAttributeAccessIssue) + /torch/distributions/categorical.py:123:22 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/categorical.py:136:22 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/cauchy.py + /torch/distributions/cauchy.py:35:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/cauchy.py:35:23 - error: Type "dict[str, _Real | _GreaterThan]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/cauchy.py:36:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/cauchy.py:36:15 - error: Type "_Real" is not assignable to declared type "property" +   "_Real" is not assignable to "property" (reportAssignmentType) + /torch/distributions/cauchy.py:47:33 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/cauchy.py:63:22 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/cauchy.py:73:22 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/cauchy.py:77:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/constraints.py + /torch/distributions/constraints.py:152:9 - error: Method "check" overrides class "Constraint" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "x" (reportIncompatibleMethodOverride) + /torch/distributions/constraints.py:539:9 - error: Method "check" overrides class "Constraint" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "x" (reportIncompatibleMethodOverride) +/torch/distributions/continuous_bernoulli.py + /torch/distributions/continuous_bernoulli.py:51:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/continuous_bernoulli.py:51:23 - error: Type "dict[str, _Interval | _Real]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/continuous_bernoulli.py:52:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/continuous_bernoulli.py:52:15 - error: Type "_Interval" is not assignable to declared type "property" +   "_Interval" is not assignable to "property" (reportAssignmentType) + /torch/distributions/continuous_bernoulli.py:53:5 - error: "_mean_carrier_measure" incorrectly overrides property of same name in class "ExponentialFamily" (reportIncompatibleMethodOverride) + /torch/distributions/continuous_bernoulli.py:53:29 - error: Type "Literal[0]" is not assignable to declared type "property" +   "Literal[0]" is not assignable to "property" (reportAssignmentType) + /torch/distributions/continuous_bernoulli.py:85:33 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/continuous_bernoulli.py:144:19 - error: "log1p" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/continuous_bernoulli.py:144:45 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/continuous_bernoulli.py:147:57 - error: "pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/continuous_bernoulli.py:148:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/continuous_bernoulli.py:152:22 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/continuous_bernoulli.py:157:54 - error: "pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/continuous_bernoulli.py:159:25 - error: "pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/continuous_bernoulli.py:159:35 - error: "log1p" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/continuous_bernoulli.py:159:61 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/continuous_bernoulli.py:160:19 - error: "pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/continuous_bernoulli.py:162:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/continuous_bernoulli.py:173:36 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/continuous_bernoulli.py:182:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/continuous_bernoulli.py:184:19 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/continuous_bernoulli.py:238:9 - error: Method "_log_normalizer" overrides class "ExponentialFamily" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "natural_params" is missing in override (reportIncompatibleMethodOverride) +/torch/distributions/dirichlet.py + /torch/distributions/dirichlet.py:34:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter 1 mismatch: base parameter "ctx" is keyword parameter, override parameter is position-only +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/distributions/dirichlet.py:56:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/dirichlet.py:56:23 - error: Type "dict[str, independent]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/dirichlet.py:59:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/dirichlet.py:59:15 - error: Type "_Simplex" is not assignable to declared type "property" +   "_Simplex" is not assignable to "property" (reportAssignmentType) + /torch/distributions/dirichlet.py:137:9 - error: Method "_log_normalizer" overrides class "ExponentialFamily" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "natural_params" is missing in override (reportIncompatibleMethodOverride) +/torch/distributions/distribution.py + /torch/distributions/distribution.py:49:28 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/distribution.py:49:41 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/distribution.py:50:28 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/distribution.py:50:41 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/distribution.py:77:30 - error: "_is_all_true" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/distribution.py:109:36 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/distribution.py:116:36 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/distribution.py:168:50 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/distribution.py:176:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/distribution.py:193:34 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/distribution.py:265:22 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/distribution.py:267:59 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/distribution.py:267:76 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/distribution.py:277:47 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/distribution.py:278:34 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/distribution.py:279:22 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/distribution.py:323:22 - error: "_is_all_true" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/exponential.py + /torch/distributions/exponential.py:31:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/exponential.py:31:23 - error: Type "dict[str, _GreaterThan]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/exponential.py:32:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/exponential.py:32:15 - error: Type "_GreaterThanEq" is not assignable to declared type "property" +   "_GreaterThanEq" is not assignable to "property" (reportAssignmentType) + /torch/distributions/exponential.py:34:5 - error: "_mean_carrier_measure" incorrectly overrides property of same name in class "ExponentialFamily" (reportIncompatibleMethodOverride) + /torch/distributions/exponential.py:34:29 - error: Type "Literal[0]" is not assignable to declared type "property" +   "Literal[0]" is not assignable to "property" (reportAssignmentType) + /torch/distributions/exponential.py:42:22 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/exponential.py:58:29 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/exponential.py:69:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/exponential.py:94:9 - error: Method "_log_normalizer" overrides class "ExponentialFamily" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "natural_params" is missing in override (reportIncompatibleMethodOverride) +/torch/distributions/fishersnedecor.py + /torch/distributions/fishersnedecor.py:33:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/fishersnedecor.py:33:23 - error: Type "dict[str, _GreaterThan]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/fishersnedecor.py:34:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/fishersnedecor.py:34:15 - error: Type "_GreaterThan" is not assignable to declared type "property" +   "_GreaterThan" is not assignable to "property" (reportAssignmentType) + /torch/distributions/fishersnedecor.py:48:33 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/fishersnedecor.py:66:50 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/fishersnedecor.py:78:50 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/fishersnedecor.py:87:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/fishersnedecor.py:93:22 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/gamma.py + /torch/distributions/gamma.py:38:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/gamma.py:38:23 - error: Type "dict[str, _GreaterThan]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/gamma.py:42:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/gamma.py:42:15 - error: Type "_GreaterThanEq" is not assignable to declared type "property" +   "_GreaterThanEq" is not assignable to "property" (reportAssignmentType) + /torch/distributions/gamma.py:44:5 - error: "_mean_carrier_measure" incorrectly overrides property of same name in class "ExponentialFamily" (reportIncompatibleMethodOverride) + /torch/distributions/gamma.py:44:29 - error: Type "Literal[0]" is not assignable to declared type "property" +   "Literal[0]" is not assignable to "property" (reportAssignmentType) + /torch/distributions/gamma.py:66:33 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/gamma.py:80:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/gamma.py:86:23 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/gamma.py:114:9 - error: Method "_log_normalizer" overrides class "ExponentialFamily" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 3 +   Parameter "natural_params" is missing in override (reportIncompatibleMethodOverride) +/torch/distributions/generalized_pareto.py + /torch/distributions/generalized_pareto.py:39:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/generalized_pareto.py:39:23 - error: Type "dict[str, _Real | _GreaterThan]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/generalized_pareto.py:148:9 - error: "support" incorrectly overrides property of same name in class "Distribution" +   Property method "fget" is missing in override (reportIncompatibleMethodOverride) +/torch/distributions/geometric.py + /torch/distributions/geometric.py:48:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/geometric.py:48:23 - error: Type "dict[str, _Interval | _Real]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/geometric.py:49:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/geometric.py:49:15 - error: Type "_IntegerGreaterThan" is not assignable to declared type "property" +   "_IntegerGreaterThan" is not assignable to "property" (reportAssignmentType) + /torch/distributions/geometric.py:70:33 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/geometric.py:101:16 - error: Type "float" is not assignable to return type "Tensor" +   "float" is not assignable to "Tensor" (reportReturnType) + /torch/distributions/geometric.py:105:22 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/geometric.py:109:16 - error: Type "float" is not assignable to return type "Tensor" +   "float" is not assignable to "Tensor" (reportReturnType) +/torch/distributions/gumbel.py + /torch/distributions/gumbel.py:36:5 - error: "support" incorrectly overrides property of same name in class "TransformedDistribution" (reportIncompatibleMethodOverride) + /torch/distributions/gumbel.py:36:15 - error: Type "_Real" is not assignable to declared type "_DependentProperty" +   "_Real" is not assignable to "_DependentProperty" (reportAssignmentType) + /torch/distributions/gumbel.py:45:23 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/gumbel.py:50:23 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/gumbel.py:51:23 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/gumbel.py:56:49 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/gumbel.py:85:16 - error: Type "float" is not assignable to return type "Tensor" +   "float" is not assignable to "Tensor" (reportReturnType) +/torch/distributions/half_cauchy.py + /torch/distributions/half_cauchy.py:36:5 - error: "support" incorrectly overrides property of same name in class "TransformedDistribution" (reportIncompatibleMethodOverride) + /torch/distributions/half_cauchy.py:36:15 - error: Type "_GreaterThanEq" is not assignable to declared type "_DependentProperty" +   "_GreaterThanEq" is not assignable to "_DependentProperty" (reportAssignmentType) + /torch/distributions/half_cauchy.py:37:5 - error: "has_rsample" incorrectly overrides property of same name in class "TransformedDistribution" (reportIncompatibleMethodOverride) + /torch/distributions/half_cauchy.py:37:19 - error: Type "Literal[True]" is not assignable to declared type "property" +   "Literal[True]" is not assignable to "property" (reportAssignmentType) + /torch/distributions/half_cauchy.py:59:22 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/half_cauchy.py:68:22 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/half_cauchy.py:89:9 - error: Method "icdf" overrides class "TransformedDistribution" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "prob" (reportIncompatibleMethodOverride) +/torch/distributions/half_normal.py + /torch/distributions/half_normal.py:36:5 - error: "support" incorrectly overrides property of same name in class "TransformedDistribution" (reportIncompatibleMethodOverride) + /torch/distributions/half_normal.py:36:15 - error: Type "_GreaterThanEq" is not assignable to declared type "_DependentProperty" +   "_GreaterThanEq" is not assignable to "_DependentProperty" (reportAssignmentType) + /torch/distributions/half_normal.py:37:5 - error: "has_rsample" incorrectly overrides property of same name in class "TransformedDistribution" (reportIncompatibleMethodOverride) + /torch/distributions/half_normal.py:37:19 - error: Type "Literal[True]" is not assignable to declared type "property" +   "Literal[True]" is not assignable to "property" (reportAssignmentType) + /torch/distributions/half_normal.py:63:22 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/half_normal.py:81:9 - error: Method "icdf" overrides class "TransformedDistribution" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "prob" (reportIncompatibleMethodOverride) +/torch/distributions/independent.py + /torch/distributions/independent.py:5:19 - error: "Size" is unknown import symbol (reportAttributeAccessIssue) + /torch/distributions/independent.py:48:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/independent.py:113:41 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/independent.py:116:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/inverse_gamma.py + /torch/distributions/inverse_gamma.py:42:5 - error: "support" incorrectly overrides property of same name in class "TransformedDistribution" (reportIncompatibleMethodOverride) + /torch/distributions/inverse_gamma.py:42:15 - error: Type "_GreaterThan" is not assignable to declared type "_DependentProperty" +   "_GreaterThan" is not assignable to "_DependentProperty" (reportAssignmentType) + /torch/distributions/inverse_gamma.py:43:5 - error: "has_rsample" incorrectly overrides property of same name in class "TransformedDistribution" (reportIncompatibleMethodOverride) + /torch/distributions/inverse_gamma.py:43:19 - error: Type "Literal[True]" is not assignable to declared type "property" +   "Literal[True]" is not assignable to "property" (reportAssignmentType) + /torch/distributions/inverse_gamma.py:74:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/inverse_gamma.py:85:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/kumaraswamy.py + /torch/distributions/kumaraswamy.py:48:5 - error: "support" incorrectly overrides property of same name in class "TransformedDistribution" (reportIncompatibleMethodOverride) + /torch/distributions/kumaraswamy.py:48:15 - error: Type "_Interval" is not assignable to declared type "_DependentProperty" +   "_Interval" is not assignable to "_DependentProperty" (reportAssignmentType) + /torch/distributions/kumaraswamy.py:49:5 - error: "has_rsample" incorrectly overrides property of same name in class "TransformedDistribution" (reportIncompatibleMethodOverride) + /torch/distributions/kumaraswamy.py:49:19 - error: Type "Literal[True]" is not assignable to declared type "property" +   "Literal[True]" is not assignable to "property" (reportAssignmentType) + /torch/distributions/kumaraswamy.py:61:19 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/kumaraswamy.py:62:19 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/kumaraswamy.py:95:78 - error: "pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/laplace.py + /torch/distributions/laplace.py:32:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/laplace.py:32:23 - error: Type "dict[str, _Real | _GreaterThan]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/laplace.py:33:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/laplace.py:33:15 - error: Type "_Real" is not assignable to declared type "property" +   "_Real" is not assignable to "property" (reportAssignmentType) + /torch/distributions/laplace.py:50:16 - error: Type "float" is not assignable to return type "Tensor" +   "float" is not assignable to "Tensor" (reportReturnType) + /torch/distributions/laplace.py:60:33 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/laplace.py:74:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/laplace.py:76:23 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/laplace.py:77:21 - error: "_get_tracing_state" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/laplace.py:79:23 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/laplace.py:80:61 - error: "log1p" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/laplace.py:86:57 - error: "log1p" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/lkj_cholesky.py + /torch/distributions/lkj_cholesky.py:64:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/lkj_cholesky.py:64:23 - error: Type "dict[str, _GreaterThan]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/lkj_cholesky.py:65:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/lkj_cholesky.py:65:15 - error: Type "_CorrCholesky" is not assignable to declared type "property" +   "_CorrCholesky" is not assignable to "property" (reportAssignmentType) + /torch/distributions/lkj_cholesky.py:80:29 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/lkj_cholesky.py:83:24 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/lkj_cholesky.py:88:24 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/log_normal.py + /torch/distributions/log_normal.py:36:5 - error: "support" incorrectly overrides property of same name in class "TransformedDistribution" (reportIncompatibleMethodOverride) + /torch/distributions/log_normal.py:36:15 - error: Type "_GreaterThan" is not assignable to declared type "_DependentProperty" +   "_GreaterThan" is not assignable to "_DependentProperty" (reportAssignmentType) + /torch/distributions/log_normal.py:37:5 - error: "has_rsample" incorrectly overrides property of same name in class "TransformedDistribution" (reportIncompatibleMethodOverride) + /torch/distributions/log_normal.py:37:19 - error: Type "Literal[True]" is not assignable to declared type "property" +   "Literal[True]" is not assignable to "property" (reportAssignmentType) +/torch/distributions/logistic_normal.py + /torch/distributions/logistic_normal.py:40:5 - error: "support" incorrectly overrides property of same name in class "TransformedDistribution" (reportIncompatibleMethodOverride) + /torch/distributions/logistic_normal.py:40:15 - error: Type "_Simplex" is not assignable to declared type "_DependentProperty" +   "_Simplex" is not assignable to "_DependentProperty" (reportAssignmentType) + /torch/distributions/logistic_normal.py:41:5 - error: "has_rsample" incorrectly overrides property of same name in class "TransformedDistribution" (reportIncompatibleMethodOverride) + /torch/distributions/logistic_normal.py:41:19 - error: Type "Literal[True]" is not assignable to declared type "property" +   "Literal[True]" is not assignable to "property" (reportAssignmentType) +/torch/distributions/lowrank_multivariate_normal.py + /torch/distributions/lowrank_multivariate_normal.py:90:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/lowrank_multivariate_normal.py:90:23 - error: Type "dict[str, independent]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/lowrank_multivariate_normal.py:95:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/lowrank_multivariate_normal.py:95:15 - error: Type "independent" is not assignable to declared type "property" +   "_IndependentConstraint" is not assignable to "property" (reportAssignmentType) + /torch/distributions/lowrank_multivariate_normal.py:181:19 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/lowrank_multivariate_normal.py:190:35 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/lowrank_multivariate_normal.py:192:19 - error: "diag_embed" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/lowrank_multivariate_normal.py:208:19 - error: "diag_embed" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/lowrank_multivariate_normal.py:214:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/mixture_same_family.py + /torch/distributions/mixture_same_family.py:57:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/mixture_same_family.py:142:22 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/mixture_same_family.py:150:31 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/mixture_same_family.py:153:31 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/mixture_same_family.py:159:9 - error: Method "cdf" overrides class "Distribution" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "x" (reportIncompatibleMethodOverride) + /torch/distributions/mixture_same_family.py:166:9 - error: Method "log_prob" overrides class "Distribution" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "x" (reportIncompatibleMethodOverride) +/torch/distributions/multinomial.py + /torch/distributions/multinomial.py:54:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/multinomial.py:54:23 - error: Type "dict[str, _Simplex | independent]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/multinomial.py:63:16 - error: Type "int" is not assignable to return type "Tensor" +   "int" is not assignable to "Tensor" (reportReturnType) + /torch/distributions/multinomial.py:97:9 - error: "support" incorrectly overrides property of same name in class "Distribution" +   Property method "fget" is missing in override (reportIncompatibleMethodOverride) + /torch/distributions/multinomial.py:109:36 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/multivariate_normal.py + /torch/distributions/multivariate_normal.py:127:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/multivariate_normal.py:127:23 - error: Type "dict[str, independent | _PositiveDefinite | _LowerCholesky]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/multivariate_normal.py:133:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/multivariate_normal.py:133:15 - error: Type "independent" is not assignable to declared type "property" +   "_IndependentConstraint" is not assignable to "property" (reportAssignmentType) + /torch/distributions/multivariate_normal.py:224:22 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/multivariate_normal.py:230:22 - error: "cholesky_inverse" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/multivariate_normal.py:250:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/negative_binomial.py + /torch/distributions/negative_binomial.py:37:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/negative_binomial.py:37:23 - error: Type "dict[str, greater_than_eq | half_open_interval | _Real]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/negative_binomial.py:42:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/negative_binomial.py:42:15 - error: Type "_IntegerGreaterThan" is not assignable to declared type "property" +   "_IntegerGreaterThan" is not assignable to "property" (reportAssignmentType) + /torch/distributions/negative_binomial.py:94:41 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/negative_binomial.py:102:34 - error: "sigmoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/negative_binomial.py:113:36 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/negative_binomial.py:121:24 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/normal.py + /torch/distributions/normal.py:35:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/normal.py:35:23 - error: Type "dict[str, _Real | _GreaterThan]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/normal.py:36:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/normal.py:36:15 - error: Type "_Real" is not assignable to declared type "property" +   "_Real" is not assignable to "property" (reportAssignmentType) + /torch/distributions/normal.py:38:5 - error: "_mean_carrier_measure" incorrectly overrides property of same name in class "ExponentialFamily" (reportIncompatibleMethodOverride) + /torch/distributions/normal.py:38:29 - error: Type "Literal[0]" is not assignable to declared type "property" +   "Literal[0]" is not assignable to "property" (reportAssignmentType) + /torch/distributions/normal.py:64:33 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/normal.py:83:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/normal.py:123:9 - error: Method "_log_normalizer" overrides class "ExponentialFamily" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 3 +   Parameter "natural_params" is missing in override (reportIncompatibleMethodOverride) +/torch/distributions/one_hot_categorical.py + /torch/distributions/one_hot_categorical.py:46:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/one_hot_categorical.py:46:23 - error: Type "dict[str, _Simplex | independent]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/one_hot_categorical.py:47:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/one_hot_categorical.py:47:15 - error: Type "_OneHot" is not assignable to declared type "property" +   "_OneHot" is not assignable to "property" (reportAssignmentType) + /torch/distributions/one_hot_categorical.py:101:36 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/one_hot_categorical.py:140:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/poisson.py + /torch/distributions/poisson.py:36:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/poisson.py:36:23 - error: Type "dict[str, _GreaterThanEq]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/poisson.py:37:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/poisson.py:37:15 - error: Type "_IntegerGreaterThan" is not assignable to declared type "property" +   "_IntegerGreaterThan" is not assignable to "property" (reportAssignmentType) + /torch/distributions/poisson.py:58:33 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/poisson.py:84:23 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/poisson.py:87:9 - error: Method "_log_normalizer" overrides class "ExponentialFamily" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "natural_params" is missing in override (reportIncompatibleMethodOverride) +/torch/distributions/relaxed_bernoulli.py + /torch/distributions/relaxed_bernoulli.py:44:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/relaxed_bernoulli.py:44:23 - error: Type "dict[str, _Interval | _Real]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/relaxed_bernoulli.py:45:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/relaxed_bernoulli.py:45:15 - error: Type "_Real" is not assignable to declared type "property" +   "_Real" is not assignable to "property" (reportAssignmentType) + /torch/distributions/relaxed_bernoulli.py:70:33 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/relaxed_bernoulli.py:101:36 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/relaxed_bernoulli.py:104:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/relaxed_bernoulli.py:108:19 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/relaxed_bernoulli.py:145:5 - error: "support" incorrectly overrides property of same name in class "TransformedDistribution" (reportIncompatibleMethodOverride) + /torch/distributions/relaxed_bernoulli.py:145:15 - error: Type "_Interval" is not assignable to declared type "_DependentProperty" +   "_Interval" is not assignable to "_DependentProperty" (reportAssignmentType) + /torch/distributions/relaxed_bernoulli.py:146:5 - error: "has_rsample" incorrectly overrides property of same name in class "TransformedDistribution" (reportIncompatibleMethodOverride) + /torch/distributions/relaxed_bernoulli.py:146:19 - error: Type "Literal[True]" is not assignable to declared type "property" +   "Literal[True]" is not assignable to "property" (reportAssignmentType) +/torch/distributions/relaxed_categorical.py + /torch/distributions/relaxed_categorical.py:42:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/relaxed_categorical.py:42:23 - error: Type "dict[str, _Simplex | independent]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/relaxed_categorical.py:43:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/relaxed_categorical.py:43:15 - error: Type "independent" is not assignable to declared type "property" +   "_IndependentConstraint" is not assignable to "property" (reportAssignmentType) + /torch/distributions/relaxed_categorical.py:76:36 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/relaxed_categorical.py:87:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/relaxed_categorical.py:90:19 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/relaxed_categorical.py:132:5 - error: "support" incorrectly overrides property of same name in class "TransformedDistribution" (reportIncompatibleMethodOverride) + /torch/distributions/relaxed_categorical.py:132:15 - error: Type "_Simplex" is not assignable to declared type "_DependentProperty" +   "_Simplex" is not assignable to "_DependentProperty" (reportAssignmentType) + /torch/distributions/relaxed_categorical.py:133:5 - error: "has_rsample" incorrectly overrides property of same name in class "TransformedDistribution" (reportIncompatibleMethodOverride) + /torch/distributions/relaxed_categorical.py:133:19 - error: Type "Literal[True]" is not assignable to declared type "property" +   "Literal[True]" is not assignable to "property" (reportAssignmentType) +/torch/distributions/studentT.py + /torch/distributions/studentT.py:35:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/studentT.py:35:23 - error: Type "dict[str, _GreaterThan | _Real]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/studentT.py:40:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/studentT.py:40:15 - error: Type "_Real" is not assignable to declared type "property" +   "_Real" is not assignable to "property" (reportAssignmentType) + /torch/distributions/studentT.py:45:48 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/studentT.py:55:47 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/studentT.py:88:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/studentT.py:99:23 - error: "rsqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/transformed_distribution.py + /torch/distributions/transformed_distribution.py:51:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/transformed_distribution.py:127:9 - error: "support" incorrectly overrides property of same name in class "Distribution" +   Property method "fget" is missing in override (reportIncompatibleMethodOverride) + /torch/distributions/transformed_distribution.py:154:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/transforms.py + /torch/distributions/transforms.py:505:25 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/transforms.py:506:26 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/transforms.py:509:31 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/transforms.py:510:32 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/transforms.py:517:9 - error: "domain" overrides symbol of same name in class "Transform" +   "_DependentProperty" is not assignable to "Constraint" (reportIncompatibleVariableOverride) + /torch/distributions/transforms.py:522:9 - error: "codomain" overrides symbol of same name in class "Transform" +   "_DependentProperty" is not assignable to "Constraint" (reportIncompatibleVariableOverride) + /torch/distributions/transforms.py:571:5 - error: "sign" incorrectly overrides property of same name in class "Transform" (reportIncompatibleMethodOverride) + /torch/distributions/transforms.py:571:12 - error: Type "Literal[1]" is not assignable to declared type "property" +   "Literal[1]" is not assignable to "property" (reportAssignmentType) + /torch/distributions/transforms.py:642:5 - error: "sign" incorrectly overrides property of same name in class "Transform" (reportIncompatibleMethodOverride) + /torch/distributions/transforms.py:642:12 - error: Type "Literal[1]" is not assignable to declared type "property" +   "Literal[1]" is not assignable to "property" (reportAssignmentType) + /torch/distributions/transforms.py:668:5 - error: "sign" incorrectly overrides property of same name in class "Transform" (reportIncompatibleMethodOverride) + /torch/distributions/transforms.py:668:12 - error: Type "Literal[1]" is not assignable to declared type "property" +   "Literal[1]" is not assignable to "property" (reportAssignmentType) + /torch/distributions/transforms.py:709:5 - error: "sign" incorrectly overrides property of same name in class "Transform" (reportIncompatibleMethodOverride) + /torch/distributions/transforms.py:709:12 - error: Type "Literal[1]" is not assignable to declared type "property" +   "Literal[1]" is not assignable to "property" (reportAssignmentType) + /torch/distributions/transforms.py:1170:9 - error: "domain" overrides symbol of same name in class "Transform" +   "_DependentProperty" is not assignable to "Constraint" (reportIncompatibleVariableOverride) + /torch/distributions/transforms.py:1177:9 - error: "codomain" overrides symbol of same name in class "Transform" +   "_DependentProperty" is not assignable to "Constraint" (reportIncompatibleVariableOverride) + /torch/distributions/transforms.py:1250:9 - error: "domain" overrides symbol of same name in class "Transform" +   "_DependentProperty" is not assignable to "Constraint" (reportIncompatibleVariableOverride) + /torch/distributions/transforms.py:1255:9 - error: "codomain" overrides symbol of same name in class "Transform" +   "_DependentProperty" is not assignable to "Constraint" (reportIncompatibleVariableOverride) + /torch/distributions/transforms.py:1280:5 - error: "sign" incorrectly overrides property of same name in class "Transform" (reportIncompatibleMethodOverride) + /torch/distributions/transforms.py:1280:12 - error: Type "Literal[1]" is not assignable to declared type "property" +   "Literal[1]" is not assignable to "property" (reportAssignmentType) +/torch/distributions/uniform.py + /torch/distributions/uniform.py:48:16 - error: Type "float" is not assignable to return type "Tensor" +   "float" is not assignable to "Tensor" (reportReturnType) + /torch/distributions/uniform.py:67:33 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/uniform.py:83:9 - error: "support" incorrectly overrides property of same name in class "Distribution" +   Property method "fget" is missing in override (reportIncompatibleMethodOverride) + /torch/distributions/uniform.py:86:51 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/uniform.py:88:22 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/utils.py + /torch/distributions/utils.py:9:25 - error: "_dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/distributions/utils.py:49:52 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/utils.py:55:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/utils.py:66:17 - error: "_get_tracing_state" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/utils.py:68:22 - error: "normal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/utils.py:69:19 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/utils.py:70:19 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/utils.py:72:18 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/utils.py:97:22 - error: "sigmoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/utils.py:123:17 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/utils.py:136:22 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/utils.py:136:46 - error: "log1p" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/utils.py:137:18 - error: "log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/utils.py:192:21 - error: "_get_tracing_state" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/utils.py:194:20 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/utils.py:210:17 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/utils.py:211:21 - error: "_get_tracing_state" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/utils.py:217:48 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/utils.py:218:20 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/von_mises.py + /torch/distributions/von_mises.py:129:5 - error: "arg_constraints" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/von_mises.py:129:23 - error: Type "dict[str, _Real | _GreaterThan]" is not assignable to declared type "property" (reportAssignmentType) + /torch/distributions/von_mises.py:130:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/von_mises.py:130:15 - error: Type "_Real" is not assignable to declared type "property" +   "_Real" is not assignable to "property" (reportAssignmentType) + /torch/distributions/von_mises.py:141:29 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/von_mises.py:157:34 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/von_mises.py:161:44 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/von_mises.py:167:38 - error: Cannot access attribute "sqrt" for class "int" +   Attribute "sqrt" is unknown (reportAttributeAccessIssue) + /torch/distributions/von_mises.py:173:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/weibull.py + /torch/distributions/weibull.py:39:5 - error: "support" incorrectly overrides property of same name in class "TransformedDistribution" (reportIncompatibleMethodOverride) + /torch/distributions/weibull.py:39:15 - error: Type "_GreaterThan" is not assignable to declared type "_DependentProperty" +   "_GreaterThan" is not assignable to "_DependentProperty" (reportAssignmentType) + /torch/distributions/weibull.py:50:19 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/weibull.py:75:35 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/weibull.py:75:45 - error: "lgamma" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/weibull.py:88:19 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/weibull.py:88:29 - error: "lgamma" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/weibull.py:89:21 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/weibull.py:89:35 - error: "lgamma" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/distributions/wishart.py + /torch/distributions/wishart.py:22:18 - error: "digamma" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/wishart.py:24:17 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/wishart.py:30:30 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/wishart.py:67:5 - error: "support" incorrectly overrides property of same name in class "Distribution" (reportIncompatibleMethodOverride) + /torch/distributions/wishart.py:67:15 - error: Type "_PositiveDefinite" is not assignable to declared type "property" +   "_PositiveDefinite" is not assignable to "property" (reportAssignmentType) + /torch/distributions/wishart.py:69:5 - error: "_mean_carrier_measure" incorrectly overrides property of same name in class "ExponentialFamily" (reportIncompatibleMethodOverride) + /torch/distributions/wishart.py:69:29 - error: Type "Literal[0]" is not assignable to declared type "property" +   "Literal[0]" is not assignable to "property" (reportAssignmentType) + /torch/distributions/wishart.py:106:33 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/wishart.py:107:29 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/wishart.py:148:25 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/wishart.py:203:26 - error: "eye" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/wishart.py:208:22 - error: "cholesky_solve" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/wishart.py:248:43 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/wishart.py:260:48 - error: "_get_tracing_state" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/wishart.py:262:30 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/wishart.py:266:36 - error: "check" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributions/wishart.py:270:21 - error: "_get_tracing_state" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/wishart.py:274:32 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/distributions/wishart.py:276:45 - error: "check" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributions/wishart.py:289:53 - error: "check" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/distributions/wishart.py:343:9 - error: Method "_log_normalizer" overrides class "ExponentialFamily" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 3 +   Parameter "natural_params" is missing in override (reportIncompatibleMethodOverride) +/torch/export/__init__.py + /torch/export/__init__.py:157:9 - error: Argument of type "Mapping[str, Any] | None" cannot be assigned to parameter "kwargs" of type "dict[str, Any] | None" in function "_export_for_training" +   Type "Mapping[str, Any] | None" is not assignable to type "dict[str, Any] | None" +     Type "Mapping[str, Any]" is not assignable to type "dict[str, Any] | None" +       "Mapping[str, Any]" is not assignable to "dict[str, Any]" +       "Mapping[str, Any]" is not assignable to "None" (reportArgumentType) + /torch/export/__init__.py:280:13 - error: Argument of type "Mapping[str, Any] | None" cannot be assigned to parameter "kwargs" of type "dict[str, Any] | None" in function "_export" +   Type "Mapping[str, Any] | None" is not assignable to type "dict[str, Any] | None" +     Type "Mapping[str, Any]" is not assignable to type "dict[str, Any] | None" +       "Mapping[str, Any]" is not assignable to "dict[str, Any]" +       "Mapping[str, Any]" is not assignable to "None" (reportArgumentType) + /torch/export/__init__.py:300:26 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/export/__init__.py:301:35 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/export/__init__.py:302:31 - error: "exc" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/export/__init__.py:303:26 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/export/_draft_export.py + /torch/export/_draft_export.py:386:15 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/_draft_export.py:397:17 - error: Argument of type "Mapping[str, Any] | dict[str, Any]" cannot be assigned to parameter "kwargs" of type "dict[str, Any] | None" in function "_export" +   Type "Mapping[str, Any] | dict[str, Any]" is not assignable to type "dict[str, Any] | None" +     Type "Mapping[str, Any]" is not assignable to type "dict[str, Any] | None" +       "Mapping[str, Any]" is not assignable to "dict[str, Any]" +       "Mapping[str, Any]" is not assignable to "None" (reportArgumentType) + /torch/export/_draft_export.py:422:21 - error: Argument of type "Mapping[str, Any] | dict[str, Any]" cannot be assigned to parameter "kwargs" of type "dict[str, Any] | None" in function "_export" +   Type "Mapping[str, Any] | dict[str, Any]" is not assignable to type "dict[str, Any] | None" +     Type "Mapping[str, Any]" is not assignable to type "dict[str, Any] | None" +       "Mapping[str, Any]" is not assignable to "dict[str, Any]" +       "Mapping[str, Any]" is not assignable to "None" (reportArgumentType) + /torch/export/_draft_export.py:499:8 - error: Cannot assign to attribute "_report" for class "ExportedProgram" +   Attribute "_report" is unknown (reportAttributeAccessIssue) + /torch/export/_draft_export.py:541:19 - error: Cannot access attribute "_report" for class "ExportedProgram" +   Attribute "_report" is unknown (reportAttributeAccessIssue) +/torch/export/_leakage_detection_utils.py + /torch/export/_leakage_detection_utils.py:41:37 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/export/_swap.py + /torch/export/_swap.py:111:17 - error: Cannot access attribute "op" for class "int" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/export/_swap.py:111:17 - error: Cannot access attribute "op" for class "str" +   Attribute "op" is unknown (reportAttributeAccessIssue) + /torch/export/_swap.py:113:21 - error: Cannot access attribute "target" for class "int" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/export/_swap.py:113:21 - error: Cannot access attribute "target" for class "str" +   Attribute "target" is unknown (reportAttributeAccessIssue) + /torch/export/_swap.py:115:21 - error: Cannot access attribute "args" for class "int" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/export/_swap.py:115:21 - error: Cannot access attribute "args" for class "str" +   Attribute "args" is unknown (reportAttributeAccessIssue) + /torch/export/_swap.py:365:34 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/export/_trace.py + /torch/export/_trace.py:717:30 - error: "graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/export/_trace.py:718:22 - error: "graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/export/_trace.py:719:22 - error: "graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/export/_trace.py:812:45 - error: Cannot access attribute "type" for class "int" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/export/_trace.py:828:22 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/_trace.py:829:22 - error: "_export" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/_trace.py:843:26 - error: "_export" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/_trace.py:859:68 - error: Argument expression after ** must be a mapping with a "str" key type (reportCallIssue) + /torch/export/_trace.py:880:27 - error: Argument expression after ** must be a mapping with a "str" key type (reportCallIssue) + /torch/export/_trace.py:1563:63 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/export/_trace.py:1568:62 - error: Cannot access attribute "pytree_info" for class "CodeGen" +   Attribute "pytree_info" is unknown (reportAttributeAccessIssue) + /torch/export/_trace.py:1580:35 - error: Cannot assign to attribute "pytree_info" for class "CodeGen" +   Attribute "pytree_info" is unknown (reportAttributeAccessIssue) + /torch/export/_trace.py:2176:34 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/_trace.py:2181:29 - error: "_export" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/_trace.py:2202:40 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/export/_trace.py:2211:26 - error: "_export" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/_trace.py:2261:29 - error: "_export" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/_trace.py:2443:11 - error: "_export" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/export/_unlift.py + /torch/export/_unlift.py:540:27 - error: "graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/export/_unlift.py:546:25 - error: "graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/export/_unlift.py:694:30 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/export/_unlift.py:860:41 - error: "_utils" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/export/dynamic_shapes.py + /torch/export/dynamic_shapes.py:572:42 - error: "source" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/export/dynamic_shapes.py:573:42 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/export/dynamic_shapes.py:576:17 - error: Argument of type "Expr" cannot be assigned to parameter "value" of type "Symbol" in function "__setitem__" +   "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/export/dynamic_shapes.py:581:44 - error: Argument of type "tuple[Source, Source | Symbol | Expr, (...) -> Unknown]" cannot be assigned to parameter "object" of type "tuple[Source, Source | Symbol, (...) -> Unknown]" in function "append" +   Type "Source | Symbol | Expr" is not assignable to type "Source | Symbol" +     Type "Expr" is not assignable to type "Source | Symbol" +       "Expr" is not assignable to "Source" +       "Expr" is not assignable to "Symbol" (reportArgumentType) +/torch/export/experimental/__init__.py + /torch/export/experimental/__init__.py:424:32 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/export/exported_program.py + /torch/export/exported_program.py:158:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:159:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:160:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:161:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:162:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:163:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:164:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:165:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:166:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:167:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:168:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:169:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:179:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:180:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:181:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:182:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:183:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:184:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:185:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:186:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:187:14 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/exported_program.py:1066:35 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/export/graph_signature.py + /torch/export/graph_signature.py:564:23 - error: "ScriptObject" is unknown import symbol (reportAttributeAccessIssue) +/torch/export/passes/__init__.py + /torch/export/passes/__init__.py:12:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/passes/__init__.py:29:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/passes/__init__.py:30:31 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/export/pt2_archive/_package.py + /torch/export/pt2_archive/_package.py:494:46 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/pt2_archive/_package.py:504:44 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/pt2_archive/_package.py:543:37 - error: "_pickle_save" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/pt2_archive/_package.py:723:41 - error: "_aoti" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/pt2_archive/_package.py:789:24 - error: "frombuffer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/pt2_archive/_package.py:798:24 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/pt2_archive/_package.py:879:39 - error: "as_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/pt2_archive/_package.py:935:45 - error: "as_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/pt2_archive/_package.py:949:52 - error: "_pickle_load_obj" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/pt2_archive/_package.py:1023:43 - error: "codecache" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/export/pt2_archive/_package.py:1037:18 - error: "_aoti" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/export/pt2_archive/_package_weights.py + /torch/export/pt2_archive/_package_weights.py:125:41 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/pt2_archive/_package_weights.py:125:80 - error: Type "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to declared type "dict[tuple[int, Unknown], OrderedSet[tuple[str, str]]]" +   "defaultdict[Unknown, OrderedSet[T@OrderedSet]]" is not assignable to "dict[tuple[int, Unknown], OrderedSet[tuple[str, str]]]" +     Type parameter "_VT@dict" is invariant, but "OrderedSet[T@OrderedSet]" is not the same as "OrderedSet[tuple[str, str]]" +     Consider switching from "dict" to "Mapping" which is covariant in the value type (reportAssignmentType) +/torch/export/pt2_archive/constants.py + /torch/export/pt2_archive/constants.py:2:30 - warning: Import "torch._C._export.pt2_archive_constants" could not be resolved from source (reportMissingModuleSource) +/torch/export/unflatten.py + /torch/export/unflatten.py:84:41 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/unflatten.py:125:27 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/unflatten.py:450:65 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/export/unflatten.py:514:42 - error: "s" is possibly unbound (reportPossiblyUnboundVariable) + /torch/export/unflatten.py:1771:64 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/functional.py + /torch/functional.py:10:22 - error: "_add_docstr" is unknown import symbol (reportAttributeAccessIssue) + /torch/functional.py:938:47 - error: "unique_dim" is not a known attribute of module "torch._VF" (reportAttributeAccessIssue) + /torch/functional.py:946:49 - error: "_unique2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/functional.py:1770:30 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/functional.py:1775:21 - error: "backend_registration" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/functional.py:1826:28 - error: "frobenius_norm" is not a known attribute of module "torch._VF" (reportAttributeAccessIssue) + /torch/functional.py:1885:44 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/functional.py:1945:36 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/functional.py:1955:23 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/functional.py:1962:23 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/functional.py:1965:33 - error: "int" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/functional.py:1966:71 - error: Argument of type "Unknown | int | Sequence[int]" cannot be assigned to parameter "iterable" of type "Iterable[_T_co@tuple]" in function "__new__" +   Type "Unknown | int | Sequence[int]" is not assignable to type "Iterable[_T_co@tuple]" +     "int" is incompatible with protocol "Iterable[_T_co@tuple]" +       "__iter__" is not present (reportArgumentType) + /torch/functional.py:1973:30 - error: "__getitem__" method not defined on type "int" (reportIndexIssue) + /torch/functional.py:1973:48 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/functional.py:1979:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/functional.py:1979:64 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/functional.py:1980:15 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/functional.py:1980:64 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/futures/__init__.py + /torch/futures/__init__.py:20:23 - error: "Future" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/futures/__init__.py:30:63 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/futures/__init__.py:47:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/futures/__init__.py:313:18 - error: "_collect_all" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/futures/__init__.py:313:50 - error: "Future" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/futures/__init__.py:334:29 - error: "_collect_all" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/futures/__init__.py:334:61 - error: "Future" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/fx/_graph_pickler.py + /torch/fx/_graph_pickler.py:71:9 - error: Method "reducer_override" overrides class "Pickler" in an incompatible manner +   Positional parameter count mismatch; base method has 1, but override has 2 (reportIncompatibleMethodOverride) + /torch/fx/_graph_pickler.py:101:36 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/_graph_pickler.py:250:51 - error: "meta_utils" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/fx/_graph_pickler.py:278:74 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/_graph_pickler.py:317:30 - error: "variables" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/fx/_graph_pickler.py:324:35 - error: "variables" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/fx/_graph_pickler.py:358:36 - error: "_lazy_graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/_graph_pickler.py:428:27 - error: Cannot access attribute "__wrapped__" for class "object" +   Attribute "__wrapped__" is unknown (reportAttributeAccessIssue) + /torch/fx/_graph_pickler.py:557:20 - error: Import "einops" could not be resolved (reportMissingImports) + /torch/fx/_graph_pickler.py:599:48 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/_graph_pickler.py:601:48 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/fx/_lazy_graph_module.py + /torch/fx/_lazy_graph_module.py:49:39 - error: "prior" is possibly unbound (reportPossiblyUnboundVariable) + /torch/fx/_lazy_graph_module.py:166:9 - error: Method "recompile" overrides class "GraphModule" in an incompatible manner +   Base method is declared as an instance method but override is not (reportIncompatibleMethodOverride) +/torch/fx/_symbolic_trace.py + /torch/fx/_symbolic_trace.py:44:25 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/fx/experimental/_constant_symnode.py + /torch/fx/experimental/_constant_symnode.py:1:20 - warning: Wildcard import from a library not allowed (reportWildcardImportFromLibrary) +/torch/fx/experimental/accelerator_partitioner.py + /torch/fx/experimental/accelerator_partitioner.py:739:34 - error: "used_mem_bytes" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/fx/experimental/accelerator_partitioner.py:743:79 - error: "nodes" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/fx/experimental/accelerator_partitioner.py:745:59 - error: "used_mem_bytes" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/fx/experimental/accelerator_partitioner.py:749:83 - error: "nodes" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/fx/experimental/accelerator_partitioner.py:754:27 - error: "add_node" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/fx/experimental/graph_gradual_typechecker.py + /torch/fx/experimental/graph_gradual_typechecker.py:164:32 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/graph_gradual_typechecker.py:247:32 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/graph_gradual_typechecker.py:253:26 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/graph_gradual_typechecker.py:282:32 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/graph_gradual_typechecker.py:343:34 - error: "__args__" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/fx/experimental/graph_gradual_typechecker.py:600:32 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/graph_gradual_typechecker.py:620:8 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/fx/experimental/graph_gradual_typechecker.py:621:9 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/fx/experimental/graph_gradual_typechecker.py:621:47 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/fx/experimental/graph_gradual_typechecker.py:623:19 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/fx/experimental/graph_gradual_typechecker.py:624:37 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/fx/experimental/graph_gradual_typechecker.py:702:31 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/experimental/graph_gradual_typechecker.py:770:33 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/graph_gradual_typechecker.py:812:33 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/graph_gradual_typechecker.py:833:54 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/fx/experimental/graph_gradual_typechecker.py:835:20 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/fx/experimental/graph_gradual_typechecker.py:957:31 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/experimental/graph_gradual_typechecker.py:976:31 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/fx/experimental/merge_matmul.py + /torch/fx/experimental/merge_matmul.py:111:67 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/merge_matmul.py:143:53 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/merge_matmul.py:149:19 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/fx/experimental/meta_tracer.py + /torch/fx/experimental/meta_tracer.py:47:11 - error: "relu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/meta_tracer.py:50:11 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/meta_tracer.py:51:11 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/fx/experimental/migrate_gradual_types/constraint_generator.py + /torch/fx/experimental/migrate_gradual_types/constraint_generator.py:155:32 - error: "bmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/migrate_gradual_types/constraint_generator.py:332:32 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/migrate_gradual_types/constraint_generator.py:333:32 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/migrate_gradual_types/constraint_generator.py:498:32 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/migrate_gradual_types/constraint_generator.py:606:32 - error: "cumsum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/migrate_gradual_types/constraint_generator.py:618:21 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) + /torch/fx/experimental/migrate_gradual_types/constraint_generator.py:974:32 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/migrate_gradual_types/constraint_generator.py:989:32 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1047:32 - error: "ne" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1049:32 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1053:54 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1123:32 - error: "flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1259:35 - error: "_nn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1337:32 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/fx/experimental/migrate_gradual_types/constraint_transformation.py + /torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:794:16 - error: Argument of type "type[Constraint]" cannot be assigned to parameter "key" of type "Constraint" in function "__getitem__" +   Type "type[Constraint]" is not assignable to type "Constraint" (reportArgumentType) + /torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:1180:43 - error: Cannot access attribute "lhs" for class "Constraint" +   Attribute "lhs" is unknown (reportAttributeAccessIssue) + /torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:1181:43 - error: Cannot access attribute "rhs" for class "Constraint" +   Attribute "rhs" is unknown (reportAttributeAccessIssue) +/torch/fx/experimental/normalize.py + /torch/fx/experimental/normalize.py:131:15 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/normalize.py:132:15 - error: "mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/normalize.py:133:15 - error: "sub" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/normalize.py:134:15 - error: "div" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/normalize.py:135:15 - error: "floor_divide" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/normalize.py:136:15 - error: "remainder" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/normalize.py:137:15 - error: "eq" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/normalize.py:138:15 - error: "ne" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/normalize.py:139:15 - error: "lt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/normalize.py:140:15 - error: "le" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/normalize.py:141:15 - error: "gt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/normalize.py:142:15 - error: "ge" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/fx/experimental/optimization.py + /torch/fx/experimental/optimization.py:107:53 - error: Argument of type "GraphModule" cannot be assigned to parameter "conv" of type "ConvT@fuse_conv_bn_eval" in function "fuse_conv_bn_eval" +   Type "GraphModule" is not assignable to type "_ConvNd" +     "GraphModule" is not assignable to "_ConvNd" (reportArgumentType) + /torch/fx/experimental/optimization.py:107:66 - error: Argument of type "GraphModule" cannot be assigned to parameter "bn" of type "_BatchNorm" in function "fuse_conv_bn_eval" +   "GraphModule" is not assignable to "_BatchNorm" (reportArgumentType) + /torch/fx/experimental/optimization.py:109:55 - error: Argument of type "GraphModule" cannot be assigned to parameter "linear" of type "LinearT@fuse_linear_bn_eval" in function "fuse_linear_bn_eval" +   Type "GraphModule" is not assignable to type "Linear" +     "GraphModule" is not assignable to "Linear" (reportArgumentType) + /torch/fx/experimental/optimization.py:109:68 - error: Argument of type "GraphModule" cannot be assigned to parameter "bn" of type "_BatchNorm" in function "fuse_linear_bn_eval" +   "GraphModule" is not assignable to "_BatchNorm" (reportArgumentType) + /torch/fx/experimental/optimization.py:126:27 - error: Argument of type "Target" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   Type "Target" is not assignable to type "str" +     "FunctionType" is not assignable to "str" (reportArgumentType) + /torch/fx/experimental/optimization.py:165:11 - error: "relu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/optimization.py:166:11 - error: "transpose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/optimization.py:167:11 - error: "sigmoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/optimization.py:197:77 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/optimization.py:267:13 - error: Argument of type "_node_list" cannot be assigned to parameter "nodes" of type "list[Node]" in function "reset_modules" +   "_node_list" is not assignable to "list[Node]" (reportArgumentType) + /torch/fx/experimental/optimization.py:270:13 - error: Argument of type "Unknown | None" cannot be assigned to parameter "old_modules" of type "dict[Module, Module]" in function "reset_modules" +   Type "Unknown | None" is not assignable to type "dict[Module, Module]" +     "None" is not assignable to "dict[Module, Module]" (reportArgumentType) + /torch/fx/experimental/optimization.py:375:60 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/optimization.py:378:61 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/optimization.py:396:39 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/experimental/optimization.py:458:33 - error: Argument of type "list[Any | None]" cannot be assigned to parameter "iterable" of type "Iterable[SupportsRichComparisonT@sorted]" in function "sorted" +   "list[Any | None]" is not assignable to "Iterable[SupportsRichComparisonT@sorted]" +     Type parameter "_T_co@Iterable" is covariant, but "Any | None" is not a subtype of "SupportsRichComparisonT@sorted" +       Type "Any | None" is not assignable to type "SupportsRichComparison" +         Type "Any | None" is not assignable to type "SupportsRichComparison" +           Type "None" is not assignable to type "SupportsRichComparison" (reportArgumentType) +/torch/fx/experimental/proxy_tensor.py + /torch/fx/experimental/proxy_tensor.py:105:27 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:106:36 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:128:11 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:132:26 - error: Argument of type "(xs: PyTree) -> tuple[list[tuple[SequenceKey[Unknown], PyTree]], None]" cannot be assigned to parameter "flatten_with_keys_fn" of type "FlattenWithKeysFunc | None" in function "register_pytree_node" +   Type "(xs: PyTree) -> tuple[list[tuple[SequenceKey[Unknown], PyTree]], None]" is not assignable to type "FlattenWithKeysFunc | None" +     Type "(xs: PyTree) -> tuple[list[tuple[SequenceKey[Unknown], PyTree]], None]" is not assignable to type "FlattenWithKeysFunc" +       Function return type "tuple[list[tuple[SequenceKey[Unknown], PyTree]], None]" is incompatible with type "tuple[list[tuple[KeyEntry, Any]], Any]" +         "tuple[list[tuple[SequenceKey[Unknown], PyTree]], None]" is not assignable to "tuple[list[tuple[KeyEntry, Any]], Any]" +           Tuple entry 1 is incorrect type +     "FunctionType" is not assignable to "None" (reportArgumentType) + /torch/fx/experimental/proxy_tensor.py:144:44 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:325:5 - error: Overload 1 for "get_proxy_slot" overlaps overload 4 and returns an incompatible type (reportOverlappingOverload) + /torch/fx/experimental/proxy_tensor.py:325:5 - error: Overload 1 for "get_proxy_slot" overlaps overload 7 and returns an incompatible type (reportOverlappingOverload) + /torch/fx/experimental/proxy_tensor.py:373:5 - error: Overload 7 for "get_proxy_slot" will never be used because its parameters overlap overload 4 (reportOverlappingOverload) + /torch/fx/experimental/proxy_tensor.py:380:5 - error: Overload 8 for "get_proxy_slot" will never be used because its parameters overlap overload 5 (reportOverlappingOverload) + /torch/fx/experimental/proxy_tensor.py:531:48 - error: Argument of type "Expr" cannot be assigned to parameter "key" of type "Symbol" in function "get" +   "Expr" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/proxy_tensor.py:544:60 - error: Argument of type "Basic" cannot be assigned to parameter "expr" of type "Expr" in function "_build_proxy_for_sym_expr" +   "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/fx/experimental/proxy_tensor.py:614:30 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:624:36 - error: Argument of type "Unknown | FakeScriptObject" cannot be assigned to parameter "arg" of type "Never" in function "assert_never" +   Type "Unknown | FakeScriptObject" is not assignable to type "Never" +     Type "FakeScriptObject" is not assignable to type "Never" (reportArgumentType) + /torch/fx/experimental/proxy_tensor.py:923:5 - error: Overload 3 for "fetch_object_proxy" will never be used because its parameters overlap overload 2 (reportOverlappingOverload) + /torch/fx/experimental/proxy_tensor.py:952:24 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:952:40 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1073:14 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1190:15 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1263:33 - error: Argument of type "type[_WeakHashRef]" cannot be assigned to parameter "ref_type" of type "type[WeakIdRef]" in function "__init__" +   "type[_WeakHashRef]" is not assignable to "type[WeakIdRef]" +   Type "type[_WeakHashRef]" is not assignable to type "type[WeakIdRef]" (reportArgumentType) + /torch/fx/experimental/proxy_tensor.py:1292:43 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1318:31 - warning: TypeVar "T" appears only once in generic function signature +   Use "object" instead (reportInvalidTypeVarUse) + /torch/fx/experimental/proxy_tensor.py:1382:19 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1383:19 - error: "_higher_order_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1411:62 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1420:37 - error: "_len_torch_function_stack" is unknown import symbol (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1496:15 - error: "_lazy_graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1569:31 - error: "_TensorMeta" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1575:21 - error: Cannot assign to attribute "torch_fn_metadata" for class "PythonKeyTracer" +   Expression of type "OpOverload[..., Any]" cannot be assigned to attribute "torch_fn_metadata" of class "PythonKeyTracer" +     "OpOverload[..., Any]" is not assignable to "None" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1599:31 - error: "_TensorMeta" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1616:26 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1623:33 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1632:19 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1633:19 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1634:19 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1635:19 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1636:19 - error: "_functorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1670:23 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1679:35 - error: "_TorchDispatchModeKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1693:31 - error: "_TensorMeta" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1707:60 - error: "_TorchDispatchModeKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1733:31 - error: "_TensorMeta" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1802:34 - error: "proxy" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1811:34 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1817:33 - error: Argument of type "type[_WeakHashRef]" cannot be assigned to parameter "ref_type" of type "type[WeakIdRef]" in function "__init__" +   "type[_WeakHashRef]" is not assignable to "type[WeakIdRef]" +   Type "type[_WeakHashRef]" is not assignable to type "type[WeakIdRef]" (reportArgumentType) + /torch/fx/experimental/proxy_tensor.py:1844:9 - error: Method "placeholder" overrides class "Interpreter" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Target", override parameter is type "str" +     Type "Target" is not assignable to type "str" +       "FunctionType" is not assignable to "str" (reportIncompatibleMethodOverride) + /torch/fx/experimental/proxy_tensor.py:1857:9 - error: Method "get_attr" overrides class "Interpreter" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Target", override parameter is type "str" +     Type "Target" is not assignable to type "str" +       "FunctionType" is not assignable to "str" (reportIncompatibleMethodOverride) + /torch/fx/experimental/proxy_tensor.py:1871:9 - error: Method "output" overrides class "Interpreter" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Target", override parameter is type "str" +     Type "Target" is not assignable to type "str" +       "FunctionType" is not assignable to "str" (reportIncompatibleMethodOverride) + /torch/fx/experimental/proxy_tensor.py:1879:51 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1968:13 - error: Function declaration "wrap_fn" is obscured by a declaration of the same name (reportRedeclaration) + /torch/fx/experimental/proxy_tensor.py:1998:23 - error: "is_autocast_cache_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:1999:11 - error: "set_autocast_cache_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:2003:15 - error: "set_autocast_cache_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:2078:34 - error: Cannot assign to attribute "__class__" for class "AttrProxy*" +   Type "type[_]" is not assignable to type "type[Self@AttrProxy]" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:2110:31 - error: No overloads for "__init__" match the provided arguments (reportCallIssue) + /torch/fx/experimental/proxy_tensor.py:2111:29 - error: Argument of type "OrderedDict[str, AttrProxy]" cannot be assigned to parameter "arg" of type "OrderedDict[str, Module]" in function "__init__" +   "OrderedDict[str, AttrProxy]" is not assignable to "OrderedDict[str, Module]" +     Type parameter "_VT@OrderedDict" is invariant, but "AttrProxy" is not the same as "Module" (reportArgumentType) + /torch/fx/experimental/proxy_tensor.py:2117:51 - error: Argument of type "list[AttrProxy]" cannot be assigned to parameter "modules" of type "Iterable[Module] | None" in function "__init__" +   Type "list[AttrProxy]" is not assignable to type "Iterable[Module] | None" +     "list[AttrProxy]" is not assignable to "Iterable[Module]" +       Type parameter "_T_co@Iterable" is covariant, but "AttrProxy" is not a subtype of "Module" +         "AttrProxy" is not assignable to "Module" +     "list[AttrProxy]" is not assignable to "None" (reportArgumentType) + /torch/fx/experimental/proxy_tensor.py:2204:65 - error: Argument of type "tuple[str | Unknown, Module | Unknown]" cannot be assigned to parameter "object" of type "tuple[str, _AttrProxy]" in function "append" +   Type "Module | Unknown" is not assignable to type "_AttrProxy" +     "Module" is not assignable to "_AttrProxy" (reportArgumentType) + /torch/fx/experimental/proxy_tensor.py:2278:66 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:2334:53 - error: "_decomp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:2397:32 - error: Cannot access attribute "_orig_mod" for class "FunctionType" +   Attribute "_orig_mod" is unknown (reportFunctionMemberAccess) + /torch/fx/experimental/proxy_tensor.py:2507:50 - error: "_symbolic_trace" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:2537:42 - error: "ScriptObject" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:2538:43 - error: "fake_class_registry" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:2611:37 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:2707:24 - error: "_python_dispatch" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:2723:18 - error: "_TorchDispatchModeKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:2725:21 - error: "_get_dispatch_mode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:2725:49 - error: "_TorchDispatchModeKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:2754:41 - error: "_TorchDispatchModeKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:2813:26 - error: "_get_dispatch_mode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/proxy_tensor.py:2813:54 - error: "_TorchDispatchModeKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/fx/experimental/schema_type_annotation.py + /torch/fx/experimental/schema_type_annotation.py:93:26 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/experimental/schema_type_annotation.py:110:47 - error: "_jit_try_infer_type" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/fx/experimental/sym_node.py + /torch/fx/experimental/sym_node.py:730:5 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) + /torch/fx/experimental/sym_node.py:1306:22 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/experimental/sym_node.py:1895:5 - error: "method" is possibly unbound (reportPossiblyUnboundVariable) + /torch/fx/experimental/sym_node.py:1896:5 - error: "func" is possibly unbound (reportPossiblyUnboundVariable) +/torch/fx/experimental/symbolic_shapes.py + /torch/fx/experimental/symbolic_shapes.py:60:6 - warning: Import "torch._C._functorch" could not be resolved from source (reportMissingModuleSource) + /torch/fx/experimental/symbolic_shapes.py:326:18 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:327:18 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:328:18 - error: "interpreter" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:329:18 - error: "_symbolic_trace" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:339:24 - error: "structured" is not a known attribute of module "torch._logging" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:800:8 - error: Union requires two or more type arguments (reportInvalidTypeArguments) + /torch/fx/experimental/symbolic_shapes.py:810:16 - error: Type "bool | None" is not assignable to return type "bool" +   Type "bool | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportReturnType) + /torch/fx/experimental/symbolic_shapes.py:864:48 - error: Argument of type "list[Unknown] | list[Basic]" cannot be assigned to parameter "args" of type "list[Expr]" in function "_sympy_from_args" +   Type "list[Unknown] | list[Basic]" is not assignable to type "list[Expr]" +     "list[Basic]" is not assignable to "list[Expr]" +       Type parameter "_T@list" is invariant, but "Basic" is not the same as "Expr" +       Consider switching from "list" to "Sequence" which is covariant (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:940:32 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:958:46 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:1202:21 - error: Argument of type "tuple[*tuple[KeyEntry, ...], SequenceKey[Unknown]]" cannot be assigned to parameter "path" of type "KeyPath" in function "__call__" +   "tuple[*tuple[KeyEntry, ...], SequenceKey[Unknown]]" is not assignable to "tuple[KeyEntry, ...]" +     Tuple entry 1 is incorrect type +       Type "KeyEntry | SequenceKey[Unknown]" is not assignable to type "KeyEntry" +         "SequenceKey[Unknown]" is incompatible with protocol "KeyEntry" +           "get" is an incompatible type (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:1211:30 - error: Argument of type "tuple[*tuple[KeyEntry, ...], InnerTensorKey]" cannot be assigned to parameter "path" of type "KeyPath" in function "__call__" +   "tuple[*tuple[KeyEntry, ...], InnerTensorKey]" is not assignable to "tuple[KeyEntry, ...]" +     Tuple entry 1 is incorrect type +       Type "KeyEntry | InnerTensorKey" is not assignable to type "KeyEntry" +         "InnerTensorKey" is incompatible with protocol "KeyEntry" +           "get" is an incompatible type (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:1222:17 - error: Argument of type "tuple[*tuple[KeyEntry, ...], CallMethodKey]" cannot be assigned to parameter "path" of type "KeyPath" in function "__call__" +   "tuple[*tuple[KeyEntry, ...], CallMethodKey]" is not assignable to "tuple[KeyEntry, ...]" +     Tuple entry 1 is incorrect type +       Type "KeyEntry | CallMethodKey" is not assignable to type "KeyEntry" +         "CallMethodKey" is incompatible with protocol "KeyEntry" +           "get" is an incompatible type (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:1227:19 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:1228:19 - error: "sparse_csc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:1229:19 - error: "sparse_bsr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:1230:19 - error: "sparse_bsc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:1235:21 - error: Argument of type "tuple[*tuple[KeyEntry, ...], CallMethodKey]" cannot be assigned to parameter "path" of type "KeyPath" in function "__call__" +   "tuple[*tuple[KeyEntry, ...], CallMethodKey]" is not assignable to "tuple[KeyEntry, ...]" +     Tuple entry 1 is incorrect type +       Type "KeyEntry | CallMethodKey" is not assignable to type "KeyEntry" +         "CallMethodKey" is incompatible with protocol "KeyEntry" +           "get" is an incompatible type (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:1242:17 - error: Argument of type "tuple[*tuple[KeyEntry, ...], CallMethodKey]" cannot be assigned to parameter "path" of type "KeyPath" in function "__call__" +   "tuple[*tuple[KeyEntry, ...], CallMethodKey]" is not assignable to "tuple[KeyEntry, ...]" +     Tuple entry 1 is incorrect type +       Type "KeyEntry | CallMethodKey" is not assignable to type "KeyEntry" +         "CallMethodKey" is incompatible with protocol "KeyEntry" +           "get" is an incompatible type (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:1260:50 - error: Argument of type "int | float" cannot be assigned to parameter "v" of type "int" in function "set_unbacked_var_to_val" +   Type "int | float" is not assignable to type "int" +     "float" is not assignable to "int" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:1295:31 - error: Argument of type "Integer | Symbol" cannot be assigned to parameter "s" of type "Symbol" in function "_symint_wrap" +   Type "Integer | Symbol" is not assignable to type "Symbol" +     "Integer" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:1308:51 - error: Argument of type "Integer | Symbol" cannot be assigned to parameter "k" of type "Symbol" in function "set_unbacked_var_to_val" +   Type "Integer | Symbol" is not assignable to type "Symbol" +     "Integer" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:1308:61 - error: Argument of type "int | CleanDiv" cannot be assigned to parameter "v" of type "int" in function "set_unbacked_var_to_val" +   Type "int | CleanDiv" is not assignable to type "int" +     "CleanDiv" is not assignable to "int" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:1309:24 - error: Argument of type "Integer | Symbol" cannot be assigned to parameter "element" of type "Symbol" in function "remove" +   Type "Integer | Symbol" is not assignable to type "Symbol" +     "Integer" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:1325:51 - error: Argument of type "" cannot be assigned to parameter "k" of type "Symbol" in function "set_unbacked_var_to_val" +   "" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:1452:17 - error: "experimental" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:1711:8 - error: Operator "<" not supported for types "Unknown | int | None" and "Unknown | int | None" +   Operator "<" not supported for types "int" and "None" +   Operator "<" not supported for types "None" and "int" +   Operator "<" not supported for types "None" and "None" (reportOperatorIssue) + /torch/fx/experimental/symbolic_shapes.py:2079:9 - error: Expression with type "Tuple[()] | Tuple[Expr] | Tuple[Expr, Expr]" cannot be assigned to target tuple +   Type "Tuple[()]" is incompatible with target tuple +     Tuple size mismatch; expected 2 but received 0 +   Type "Tuple[Expr]" is incompatible with target tuple +     Tuple size mismatch; expected 2 but received 1 (reportAssignmentType) + /torch/fx/experimental/symbolic_shapes.py:2091:21 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:2092:21 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:2093:21 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:2240:18 - error: Cannot assign to attribute "inner_contexts" for class "SubclassSymbolicContext*" +   Attribute "inner_contexts" is read-only (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:2354:28 - error: Type "Expr" is not assignable to declared type "list[Expr]" +   "Expr" is not assignable to "list[Expr]" (reportAssignmentType) + /torch/fx/experimental/symbolic_shapes.py:2355:28 - error: Type "Expr" is not assignable to declared type "list[Expr]" +   "Expr" is not assignable to "list[Expr]" (reportAssignmentType) + /torch/fx/experimental/symbolic_shapes.py:2357:20 - error: Operator "/" not supported for types "list[Expr]" and "list[Expr]" (reportOperatorIssue) + /torch/fx/experimental/symbolic_shapes.py:2480:16 - error: Type "_SympyT@safe_expand" is not assignable to return type "_SympyT@_maybe_evaluate_static_worker | None" +   Type "Expr* | SympyBoolean | Basic*" is not assignable to type "_SympyT@_maybe_evaluate_static_worker | None" +     Type "Basic*" is not assignable to type "_SympyT@_maybe_evaluate_static_worker | None" +       Type "Basic*" is not assignable to type "_SympyT@_maybe_evaluate_static_worker" +       "Basic*" is not assignable to "None" (reportReturnType) + /torch/fx/experimental/symbolic_shapes.py:2483:23 - error: Argument of type "_SympyT@safe_expand" cannot be assigned to parameter "expr" of type "Expr" in function "bound_sympy" +   Type "Expr* | SympyBoolean | Basic*" is not assignable to type "Expr" +     "Basic*" is not assignable to "Expr" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:2487:12 - error: Type "_SympyT@safe_expand | None" is not assignable to return type "_SympyT@_maybe_evaluate_static_worker | None" +   Type "_SympyT@safe_expand | None" is not assignable to type "_SympyT@_maybe_evaluate_static_worker | None" +     Type "_SympyT@safe_expand" is not assignable to type "_SympyT@_maybe_evaluate_static_worker" +     Type "Expr* | SympyBoolean | Basic*" is not assignable to type "_SympyT@_maybe_evaluate_static_worker | None" +       Type "Basic*" is not assignable to type "_SympyT@_maybe_evaluate_static_worker | None" +         Type "Basic*" is not assignable to type "_SympyT@_maybe_evaluate_static_worker" +         "Basic*" is not assignable to "None" (reportReturnType) + /torch/fx/experimental/symbolic_shapes.py:2652:9 - error: Method "_print_Float" overrides class "ExprPrinter" in an incompatible manner +   Parameter 2 type mismatch: base parameter is type "Expr", override parameter is type "Float" +     "Expr" is not assignable to "Float" (reportIncompatibleMethodOverride) + /torch/fx/experimental/symbolic_shapes.py:2753:7 - error: Base classes for class "ShapeGuardPythonPrinter" define method "_print_Float" in incompatible way +   Parameter 2 type mismatch: base parameter is type "Expr", override parameter is type "Float" +     "Expr" is not assignable to "Float" (reportIncompatibleMethodOverride) + /torch/fx/experimental/symbolic_shapes.py:2813:7 - error: Base classes for class "_ShapeGuardCppPrinter" define method "_print_Float" in incompatible way +   Parameter 2 type mismatch: base parameter is type "Expr", override parameter is type "Float" +     "Expr" is not assignable to "Float" (reportIncompatibleMethodOverride) + /torch/fx/experimental/symbolic_shapes.py:2940:14 - error: Cannot assign to attribute "_supported_sympy_functions" for class "DimConstraints*" +   Type "type[Application]" is not assignable to type "Function" +   Type "type[Mod]" is not assignable to type "Function" +   Type "type[PythonMod]" is not assignable to type "Function" +   Type "type[FloorDiv]" is not assignable to type "Function" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:3032:30 - error: "_sympy" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:3077:37 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "__getitem__" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:3078:50 - error: Argument of type "Basic" cannot be assigned to parameter "s" of type "Symbol" in function "rewrite_with_congruences" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:3079:37 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "__getitem__" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:3090:51 - error: Argument of type "Basic" cannot be assigned to parameter "element" of type "Symbol" in function "add" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:3091:13 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "__getitem__" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:3134:52 - error: "modular" is not a known attribute of module ".ntheory" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:3452:33 - error: Argument of type "dict[str, Expr | Unknown]" cannot be assigned to parameter "c" of type "Mapping[str, int]" in function "_check_same_range" +   "dict[str, Expr | Unknown]" is not assignable to "Mapping[str, int]" +     Type parameter "_VT_co@Mapping" is covariant, but "Expr | Unknown" is not a subtype of "int" +       Type "Expr | Unknown" is not assignable to type "int" +         "Expr" is not assignable to "int" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:3724:31 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:3725:31 - error: "fake_tensor" is not a known attribute of module "torch._subclasses" (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:4016:25 - error: Argument of type "SymInt" cannot be assigned to parameter of type "Symbol" +   "SymInt" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:4016:64 - error: Cannot access attribute "node" for class "Expr" +   Attribute "node" is unknown (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:4029:9 - error: No overloads for "update" match the provided arguments (reportCallIssue) + /torch/fx/experimental/symbolic_shapes.py:4029:28 - error: Argument of type "dict[SympyBoolean, BooleanAtom]" cannot be assigned to parameter "m" of type "Iterable[tuple[Expr, Expr]]" in function "update" +   "dict[SympyBoolean, BooleanAtom]" is not assignable to "Iterable[tuple[Expr, Expr]]" +     Type parameter "_T_co@Iterable" is covariant, but "SympyBoolean" is not a subtype of "tuple[Expr, Expr]" +       "Boolean" is not assignable to "tuple[Expr, Expr]" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:4038:17 - error: No overloads for "pop" match the provided arguments (reportCallIssue) + /torch/fx/experimental/symbolic_shapes.py:4038:33 - error: Argument of type "SympyBoolean" cannot be assigned to parameter "key" of type "Expr" in function "pop" +   "Boolean" is not assignable to "Expr" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:4173:12 - error: Operator "<" not supported for "None" (reportOptionalOperand) + /torch/fx/experimental/symbolic_shapes.py:4466:17 - error: Argument of type "IntLikeType" cannot be assigned to parameter "val" of type "int" in function "create_symbol" +   Type "IntLikeType" is not assignable to type "int" +     "SymInt" is not assignable to "int" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:4471:34 - error: Argument of type "SymbolicContext | StatelessSymbolicContext[..., Unknown]" cannot be assigned to parameter "symbolic_context" of type "StatelessSymbolicContext[..., Unknown] | None" in function "create_symbol" +   Type "SymbolicContext | StatelessSymbolicContext[..., Unknown]" is not assignable to type "StatelessSymbolicContext[..., Unknown] | None" +     Type "SymbolicContext" is not assignable to type "StatelessSymbolicContext[..., Unknown] | None" +       "SymbolicContext" is not assignable to "StatelessSymbolicContext[..., Unknown]" +       "SymbolicContext" is not assignable to "None" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:4667:22 - error: Argument of type "IntLikeType" cannot be assigned to parameter "hint" of type "int | None" in function "create_symintnode" +   Type "IntLikeType" is not assignable to type "int | None" +     Type "SymInt" is not assignable to type "int | None" +       "SymInt" is not assignable to "int" +       "SymInt" is not assignable to "None" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:4685:26 - error: Argument of type "IntLikeType" cannot be assigned to parameter "hint" of type "int | None" in function "create_symintnode" +   Type "IntLikeType" is not assignable to type "int | None" +     Type "SymInt" is not assignable to type "int | None" +       "SymInt" is not assignable to "int" +       "SymInt" is not assignable to "None" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:4691:17 - error: Argument of type "IntLikeType" cannot be assigned to parameter "val" of type "int" in function "create_symbol" +   Type "IntLikeType" is not assignable to type "int" +     "SymInt" is not assignable to "int" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:4695:34 - error: Argument of type "StatelessSymbolicContext[..., Unknown] | SymbolicContext" cannot be assigned to parameter "symbolic_context" of type "StatelessSymbolicContext[..., Unknown] | None" in function "create_symbol" +   Type "StatelessSymbolicContext[..., Unknown] | SymbolicContext" is not assignable to type "StatelessSymbolicContext[..., Unknown] | None" +     Type "SymbolicContext" is not assignable to type "StatelessSymbolicContext[..., Unknown] | None" +       "SymbolicContext" is not assignable to "StatelessSymbolicContext[..., Unknown]" +       "SymbolicContext" is not assignable to "None" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:4697:18 - error: Argument of type "IntLikeType" cannot be assigned to parameter "hint" of type "int | None" in function "create_symintnode" +   Type "IntLikeType" is not assignable to type "int | None" +     Type "SymInt" is not assignable to type "int | None" +       "SymInt" is not assignable to "int" +       "SymInt" is not assignable to "None" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:4748:25 - error: Argument of type "IntLikeType" cannot be assigned to parameter "val" of type "int" in function "create_symbol" +   Type "IntLikeType" is not assignable to type "int" +     "SymInt" is not assignable to "int" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:4752:42 - error: Argument of type "SymbolicContext" cannot be assigned to parameter "symbolic_context" of type "StatelessSymbolicContext[..., Unknown] | None" in function "create_symbol" +   Type "SymbolicContext" is not assignable to type "StatelessSymbolicContext[..., Unknown] | None" +     "SymbolicContext" is not assignable to "StatelessSymbolicContext[..., Unknown]" +     "SymbolicContext" is not assignable to "None" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:4758:16 - error: Type "list[Expr | None]" is not assignable to return type "list[Expr]" +   "list[Expr | None]" is not assignable to "list[Expr]" +     Type parameter "_T@list" is invariant, but "Expr | None" is not the same as "Expr" +     Consider switching from "list" to "Sequence" which is covariant (reportReturnType) + /torch/fx/experimental/symbolic_shapes.py:5001:13 - error: Argument of type "int | SymInt | float | SymFloat" cannot be assigned to parameter "val" of type "int" in function "create_symbol" +   Type "int | SymInt | float | SymFloat" is not assignable to type "int" +     "float" is not assignable to "int" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:5074:17 - error: Argument of type "int" cannot be assigned to parameter "value" of type "Integer" in function "__setitem__" +   "int" is not assignable to "Integer" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:5132:17 - error: Argument of type "Float" cannot be assigned to parameter "value" of type "Integer" in function "__setitem__" +   "Float" is not assignable to "Integer" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:5135:17 - error: Argument of type "SingletonInt" cannot be assigned to parameter "value" of type "Integer" in function "__setitem__" +   "SingletonInt" is not assignable to "Integer" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:5147:17 - error: Argument of type "int | | SymInt" cannot be assigned to parameter "key" of type "int" in function "__setitem__" +   Type "int | | SymInt" is not assignable to type "int" +     "SymInt" is not assignable to "int" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:5379:30 - error: Type "list[StatelessSymbolicContext[..., Unknown] | None]" is not assignable to declared type "DimList | None" (reportAssignmentType) + /torch/fx/experimental/symbolic_shapes.py:5677:62 - error: Argument of type "DimList | None" cannot be assigned to parameter "iter3" of type "Iterable[_T3@__new__]" in function "__new__" +   Type "DimList | None" is not assignable to type "Iterable[SymbolicContext]" +     "None" is incompatible with protocol "Iterable[SymbolicContext]" +       "__iter__" is not present (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:5677:62 - error: Argument of type "DimList | None" cannot be assigned to parameter "iter3" of type "Iterable[_T3@__new__]" in function "__new__" +   Type "DimList | None" is not assignable to type "Iterable[_T3@__new__]" +     "None" is incompatible with protocol "Iterable[_T3@__new__]" +       "__iter__" is not present (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:5985:54 - error: Argument of type "And" cannot be assigned to parameter "expr" of type "Expr" in function "doprint" +   "And" is not assignable to "Expr" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:6000:61 - error: Argument of type "And" cannot be assigned to parameter "expr" of type "Expr" in function "doprint" +   "And" is not assignable to "Expr" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:6174:19 - error: Type "set[Symbol]" is not assignable to declared type "Sequence[SymInt]" +   "set[Symbol]" is not assignable to "Sequence[SymInt]" (reportAssignmentType) + /torch/fx/experimental/symbolic_shapes.py:6258:28 - error: No overloads for "get" match the provided arguments (reportCallIssue) + /torch/fx/experimental/symbolic_shapes.py:6258:50 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "get" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:6417:17 - error: Argument of type "Basic" cannot be assigned to parameter "k" of type "Symbol" in function "__new__" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:6418:32 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "get" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:6419:37 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "get" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:6538:28 - error: Type "_SympyT@safe_expand" is not assignable to declared type "_SympyT@simplify" +   Type "_SympyT@safe_expand" is not assignable to type "_SympyT@simplify" (reportAssignmentType) + /torch/fx/experimental/symbolic_shapes.py:6636:34 - error: Argument of type "Basic" cannot be assigned to parameter "key" of type "Symbol" in function "__getitem__" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:6795:47 - error: Argument of type "Basic" cannot be assigned to parameter "symbol" of type "Symbol" in function "_update_var_to_range" +   "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:7584:50 - error: Argument of type "Basic" cannot be assigned to parameter "a" of type "SymBool" in function "_log_suppressed_dde" +   "Basic" is not assignable to "SymBool" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:7585:32 - error: Type "bool" is not assignable to return type "Basic" +   "bool" is not assignable to "Basic" (reportReturnType) + /torch/fx/experimental/symbolic_shapes.py:7705:21 - error: No overloads for "update" match the provided arguments (reportCallIssue) + /torch/fx/experimental/symbolic_shapes.py:7705:40 - error: Argument of type "dict[SympyBoolean, BooleanAtom]" cannot be assigned to parameter "m" of type "Iterable[tuple[Expr, Expr]]" in function "update" +   "dict[SympyBoolean, BooleanAtom]" is not assignable to "Iterable[tuple[Expr, Expr]]" +     Type parameter "_T_co@Iterable" is covariant, but "SympyBoolean" is not a subtype of "tuple[Expr, Expr]" +       "Boolean" is not assignable to "tuple[Expr, Expr]" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:7717:21 - error: Argument of type "Basic | Any" cannot be assigned to parameter "key" of type "Symbol" in function "__getitem__" +   Type "Basic | Any" is not assignable to type "Symbol" +     "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:7717:21 - error: Argument of type "Basic | Any" cannot be assigned to parameter "key" of type "Symbol" in function "__setitem__" +   Type "Basic | Any" is not assignable to type "Symbol" +     "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:7722:29 - error: Argument of type "Basic | Any" cannot be assigned to parameter "key" of type "Symbol" in function "__getitem__" +   Type "Basic | Any" is not assignable to type "Symbol" +     "Basic" is not assignable to "Symbol" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:7783:20 - error: Type "Basic" is not assignable to return type "bool" +   "Basic" is not assignable to "bool" (reportReturnType) + /torch/fx/experimental/symbolic_shapes.py:7816:37 - error: Cannot access attribute "name" for class "Basic" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:7821:54 - error: Argument of type "Basic | None" cannot be assigned to parameter "key" of type "Symbol | None" in function "setdefault" +   Type "Basic | None" is not assignable to type "Symbol | None" +     Type "Basic" is not assignable to type "Symbol | None" +       "Basic" is not assignable to "Symbol" +       "Basic" is not assignable to "None" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:7822:13 - error: No overloads for "update" match the provided arguments (reportCallIssue) + /torch/fx/experimental/symbolic_shapes.py:7822:32 - error: Argument of type "dict[SympyBoolean, BooleanAtom]" cannot be assigned to parameter "m" of type "Iterable[tuple[Expr, Expr]]" in function "update" +   "dict[SympyBoolean, BooleanAtom]" is not assignable to "Iterable[tuple[Expr, Expr]]" +     Type parameter "_T_co@Iterable" is covariant, but "SympyBoolean" is not a subtype of "tuple[Expr, Expr]" +       "Boolean" is not assignable to "tuple[Expr, Expr]" (reportArgumentType) + /torch/fx/experimental/symbolic_shapes.py:7855:41 - error: Cannot access attribute "is_integer" for class "Symbol" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:7855:61 - error: Cannot access attribute "is_integer" for class "Expr" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:7976:9 - error: Method "_print_Symbol" overrides class "StrPrinter" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "expr", override parameter is named "sym" (reportIncompatibleMethodOverride) + /torch/fx/experimental/symbolic_shapes.py:7999:24 - error: Cannot access attribute "name" for class "Basic" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:7999:61 - error: Cannot access attribute "name" for class "Basic" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/fx/experimental/symbolic_shapes.py:8020:27 - error: Cannot access attribute "name" for class "Basic" +   Attribute "name" is unknown (reportAttributeAccessIssue) +/torch/fx/experimental/unification/core.py + /torch/fx/experimental/unification/core.py:19:5 - error: Function declaration "_reify" is obscured by a declaration of the same name (reportRedeclaration) + /torch/fx/experimental/unification/core.py:24:1 - warning: Expression value is unused (reportUnusedExpression) + /torch/fx/experimental/unification/core.py:28:5 - error: Function declaration "_reify" is obscured by a declaration of the same name (reportRedeclaration) + /torch/fx/experimental/unification/core.py:32:1 - warning: Expression value is unused (reportUnusedExpression) + /torch/fx/experimental/unification/core.py:36:5 - error: Function declaration "_reify" is obscured by a declaration of the same name (reportRedeclaration) + /torch/fx/experimental/unification/core.py:40:1 - warning: Expression value is unused (reportUnusedExpression) + /torch/fx/experimental/unification/core.py:44:5 - error: Function declaration "_reify" is obscured by a declaration of the same name (reportRedeclaration) + /torch/fx/experimental/unification/core.py:48:1 - warning: Expression value is unused (reportUnusedExpression) + /torch/fx/experimental/unification/core.py:119:5 - error: Function declaration "unify" is obscured by a declaration of the same name (reportRedeclaration) + /torch/fx/experimental/unification/core.py:136:1 - warning: Expression value is unused (reportUnusedExpression) +/torch/fx/experimental/unification/multipledispatch/dispatcher.py + /torch/fx/experimental/unification/multipledispatch/dispatcher.py:404:1 - error: "__doc__" incorrectly overrides property of same name in class "Dispatcher" (reportIncompatibleMethodOverride) +/torch/fx/experimental/unification/variable.py + /torch/fx/experimental/unification/variable.py:49:5 - error: Function declaration "isvar" is obscured by a declaration of the same name (reportRedeclaration) + /torch/fx/experimental/unification/variable.py:53:1 - warning: Expression value is unused (reportUnusedExpression) +/torch/fx/experimental/validator.py + /torch/fx/experimental/validator.py:387:53 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/validator.py:389:31 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/validator.py:391:31 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/validator.py:393:31 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/validator.py:397:57 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/validator.py:398:31 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/validator.py:402:61 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/validator.py:405:61 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/validator.py:435:60 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/experimental/validator.py:438:61 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/fx/graph.py + /torch/fx/graph.py:23:22 - error: "_fx_map_arg" is unknown import symbol (reportAttributeAccessIssue) + /torch/fx/graph.py:23:46 - error: "_NodeIter" is unknown import symbol (reportAttributeAccessIssue) + /torch/fx/graph.py:89:70 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/graph.py:476:54 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/graph.py:684:27 - error: "sparse_csc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/graph.py:685:27 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/graph.py:964:9 - error: Method "process_outputs" overrides class "CodeGen" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "outputs", override parameter is named "out" (reportIncompatibleMethodOverride) + /torch/fx/graph.py:1328:62 - error: Cannot access attribute "meta" for class "tuple[Argument, ...]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/fx/graph.py:1328:62 - error: Cannot access attribute "meta" for class "Sequence[Argument]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/fx/graph.py:1328:62 - error: Cannot access attribute "meta" for class "Mapping[str, Argument]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/fx/graph.py:1328:62 - error: Cannot access attribute "meta" for class "slice[Any, Any, Any]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/fx/graph.py:1328:62 - error: Cannot access attribute "meta" for class "range" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/fx/graph.py:1328:62 - error: Cannot access attribute "meta" for class "str" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/fx/graph.py:1328:62 - error: Cannot access attribute "meta" for class "int" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/fx/graph.py:1328:62 - error: Cannot access attribute "meta" for class "float" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/fx/graph.py:1328:62 - error: Cannot access attribute "meta" for class "bool" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/fx/graph.py:1328:62 - error: Cannot access attribute "meta" for class "complex" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/fx/graph.py:1328:62 - error: Cannot access attribute "meta" for class "OpOverload[..., Any]" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/fx/graph.py:1328:62 - error: Cannot access attribute "meta" for class "SymInt" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/fx/graph.py:1328:62 - error: Cannot access attribute "meta" for class "SymBool" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/fx/graph.py:1328:62 - error: Cannot access attribute "meta" for class "SymFloat" +   Attribute "meta" is unknown (reportAttributeAccessIssue) + /torch/fx/graph.py:1328:62 - error: "meta" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/fx/graph.py:2072:18 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/graph.py:2073:45 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) +/torch/fx/graph_module.py + /torch/fx/graph_module.py:490:32 - error: Argument of type "type[GraphModuleImpl]" cannot be assigned to parameter "cls" of type "type[Self@GraphModule]" in function "__new__" +   Type "type[GraphModuleImpl]" is not assignable to type "type[Self@GraphModule]" (reportArgumentType) +/torch/fx/interpreter.py + /torch/fx/interpreter.py:190:21 - error: "Module" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/fx/interpreter.py:573:17 - error: Method "is_leaf_module" overrides class "Tracer" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "m", override parameter is named "_" +   Parameter 3 name mismatch: base parameter is named "module_qualified_name", override parameter is named "__" (reportIncompatibleMethodOverride) +/torch/fx/node.py + /torch/fx/node.py:12:22 - error: "_fx_map_aggregate" is unknown import symbol (reportAttributeAccessIssue) + /torch/fx/node.py:12:41 - error: "_fx_map_arg" is unknown import symbol (reportAttributeAccessIssue) + /torch/fx/node.py:12:54 - error: "_NodeBase" is unknown import symbol (reportAttributeAccessIssue) + /torch/fx/node.py:37:11 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:39:11 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:40:11 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:41:11 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:83:14 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:92:11 - error: "_assert_async" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:160:34 - error: "_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:183:20 - error: Cannot access attribute "_custom_fx_repr_fn" for class "object" +   Attribute "_custom_fx_repr_fn" is unknown (reportAttributeAccessIssue) + /torch/fx/node.py:640:27 - error: "sparse_csc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:641:27 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:738:23 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:739:23 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:740:23 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:741:23 - error: "randperm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:742:23 - error: "rand_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:743:23 - error: "randn_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:744:23 - error: "randint_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:745:23 - error: "normal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:746:23 - error: "poisson" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:747:23 - error: "bernoulli" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/node.py:748:23 - error: "multinomial" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/fx/operator_schemas.py + /torch/fx/operator_schemas.py:48:9 - error: Function declaration "nonzero" is obscured by a declaration of the same name (reportRedeclaration) + /torch/fx/operator_schemas.py:61:25 - error: "nonzero" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:73:21 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:74:21 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:78:22 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:89:57 - error: "JitType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:99:25 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:155:25 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:172:27 - error: "None" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/fx/operator_schemas.py:180:48 - error: Argument of type "list[Signature] | Unknown | Signature" cannot be assigned to parameter "iter1" of type "Iterable[_T1@__new__]" in function "__new__" +   Type "list[Signature] | Unknown | Signature" is not assignable to type "Iterable[_T1@__new__]" +     "Signature" is incompatible with protocol "Iterable[_T1@__new__]" +       "__iter__" is not present (reportArgumentType) + /torch/fx/operator_schemas.py:180:60 - error: Argument of type "Unknown | list[Unknown] | list[Any] | Signature" cannot be assigned to parameter "iter2" of type "Iterable[_T2@__new__]" in function "__new__" +   Type "Unknown | list[Unknown] | list[Any] | Signature" is not assignable to type "Iterable[_T2@__new__]" +     "Signature" is incompatible with protocol "Iterable[_T2@__new__]" +       "__iter__" is not present (reportArgumentType) + /torch/fx/operator_schemas.py:233:29 - error: "_builtins" is not a known attribute of module "torch.jit" (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:237:28 - error: "_jit_get_schemas_for_operator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:314:45 - error: Cannot access attribute "__args__" for class "type[int]" +   Attribute "__args__" is unknown (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:328:57 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:382:25 - error: Cannot access attribute "_op" for class "FunctionType" +   Attribute "_op" is unknown (reportFunctionMemberAccess) + /torch/fx/operator_schemas.py:419:41 - error: Cannot access attribute "bind" for class "list[Signature]" +   Attribute "bind" is unknown (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:419:41 - error: "bind" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/fx/operator_schemas.py:419:41 - error: Cannot access attribute "bind" for class "list[Unknown]" +   Attribute "bind" is unknown (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:419:41 - error: Cannot access attribute "bind" for class "list[Any]" +   Attribute "bind" is unknown (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:439:63 - error: Cannot access attribute "bind" for class "list[Signature]" +   Attribute "bind" is unknown (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:439:63 - error: "bind" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/fx/operator_schemas.py:439:63 - error: Cannot access attribute "bind" for class "list[Unknown]" +   Attribute "bind" is unknown (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:439:63 - error: Cannot access attribute "bind" for class "list[Any]" +   Attribute "bind" is unknown (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:443:61 - error: Cannot access attribute "parameters" for class "list[Signature]" +   Attribute "parameters" is unknown (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:443:61 - error: "parameters" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/fx/operator_schemas.py:443:61 - error: Cannot access attribute "parameters" for class "list[Unknown]" +   Attribute "parameters" is unknown (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:443:61 - error: Cannot access attribute "parameters" for class "list[Any]" +   Attribute "parameters" is unknown (reportAttributeAccessIssue) + /torch/fx/operator_schemas.py:452:37 - error: Argument of type "list[Signature] | list[Unknown] | list[Any] | Unknown | Signature | None" cannot be assigned to parameter "sig" of type "Signature" in function "_args_kwargs_to_normalized_args_kwargs" +   Type "list[Signature] | list[Unknown] | list[Any] | Unknown | Signature | None" is not assignable to type "Signature" +     "list[Signature]" is not assignable to "Signature" (reportArgumentType) +/torch/fx/passes/_tensorify_python_scalars.py + /torch/fx/passes/_tensorify_python_scalars.py:94:11 - error: "_compatibility" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/_tensorify_python_scalars.py:123:17 - error: "proxy" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/_tensorify_python_scalars.py:157:31 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/_tensorify_python_scalars.py:160:31 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/_tensorify_python_scalars.py:163:31 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/_tensorify_python_scalars.py:228:52 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/_tensorify_python_scalars.py:296:52 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/fx/passes/dialect/common/cse_pass.py + /torch/fx/passes/dialect/common/cse_pass.py:45:11 - error: "_compatibility" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/dialect/common/cse_pass.py:50:11 - error: "_compatibility" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/fx/passes/graph_drawer.py + /torch/fx/passes/graph_drawer.py:18:12 - error: Import "pydot" could not be resolved (reportMissingImports) + /torch/fx/passes/graph_drawer.py:305:68 - error: "file" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/fx/passes/graph_drawer.py:307:57 - error: "lineno" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/fx/passes/graph_drawer.py:307:85 - error: "code" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/fx/passes/graph_drawer.py:349:27 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/graph_drawer.py:350:27 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/graph_drawer.py:361:27 - error: "per_channel_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/graph_drawer.py:362:27 - error: "per_channel_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/graph_drawer.py:363:27 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/graph_drawer.py:441:31 - error: "add_node" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/fx/passes/graph_manipulation.py + /torch/fx/passes/graph_manipulation.py:94:21 - error: Argument of type "Target" cannot be assigned to parameter "key" of type "str" in function "__getitem__" +   Type "Target" is not assignable to type "str" +     "FunctionType" is not assignable to "str" (reportArgumentType) + /torch/fx/passes/graph_manipulation.py:106:37 - error: "_empty_affine_quantized" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/graph_manipulation.py:110:37 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/fx/passes/net_min_base.py + /torch/fx/passes/net_min_base.py:411:21 - error: Operator "+" not supported for types "str | Unknown | Unbound | Any" and "Literal['_cpu']" +   Operator "+" not supported for types "Unbound" and "Literal['_cpu']" when expected type is "str" (reportOperatorIssue) + /torch/fx/passes/net_min_base.py:411:21 - error: "result_key" is possibly unbound (reportPossiblyUnboundVariable) + /torch/fx/passes/net_min_base.py:418:21 - error: Operator "+" not supported for types "str | Unknown | Unbound | Any" and "Literal['_acc']" +   Operator "+" not supported for types "Unbound" and "Literal['_acc']" when expected type is "str" (reportOperatorIssue) + /torch/fx/passes/net_min_base.py:418:21 - error: "result_key" is possibly unbound (reportPossiblyUnboundVariable) +/torch/fx/passes/operator_support.py + /torch/fx/passes/operator_support.py:28:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/operator_support.py:29:36 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/operator_support.py:191:50 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/fx/passes/regional_inductor.py + /torch/fx/passes/regional_inductor.py:139:20 - error: Type "Any | bool | None" is not assignable to return type "bool" +   Type "Any | bool | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportReturnType) +/torch/fx/passes/reinplace.py + /torch/fx/passes/reinplace.py:64:9 - error: Method "run_node" overrides class "Interpreter" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "n", override parameter is named "node" (reportIncompatibleMethodOverride) +/torch/fx/passes/runtime_assert.py + /torch/fx/passes/runtime_assert.py:118:17 - error: "proxy" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/runtime_assert.py:149:78 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/fx/passes/shape_prop.py + /torch/fx/passes/shape_prop.py:25:18 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/shape_prop.py:26:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/shape_prop.py:29:35 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/shape_prop.py:55:19 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/shape_prop.py:56:19 - error: "channels_last" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/shape_prop.py:57:19 - error: "channels_last_3d" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/shape_prop.py:71:30 - error: "per_tensor_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/shape_prop.py:71:55 - error: "per_tensor_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/shape_prop.py:75:19 - error: "per_channel_affine" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/shape_prop.py:76:19 - error: "per_channel_affine_float_qparams" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/shape_prop.py:77:19 - error: "per_channel_symmetric" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/fx/passes/split_module.py + /torch/fx/passes/split_module.py:29:30 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/split_module.py:29:53 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/split_module.py:174:44 - error: "graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/split_module.py:285:18 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/split_module.py:329:40 - error: "_set_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/fx/passes/split_module.py:355:24 - error: Type "dict[Node, list[int]]" is not assignable to declared type "OrderedDict[Node, set[int]]" (reportAssignmentType) + /torch/fx/passes/split_module.py:357:20 - error: Type "dict[Node, list[int]]" is not assignable to declared type "OrderedDict[Node, set[int]]" (reportAssignmentType) + /torch/fx/passes/split_module.py:375:22 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/split_module.py:391:22 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/split_module.py:394:22 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/split_module.py:422:28 - error: "__getitem__" method not defined on type "set[int]" (reportIndexIssue) + /torch/fx/passes/split_module.py:424:22 - error: "__getitem__" method not defined on type "set[int]" (reportIndexIssue) + /torch/fx/passes/split_module.py:486:38 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/split_module.py:487:40 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/split_module.py:524:22 - error: "__getitem__" method not defined on type "set[int]" (reportIndexIssue) + /torch/fx/passes/split_module.py:543:30 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/split_module.py:543:53 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/split_module.py:544:40 - error: "graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/split_module.py:615:58 - error: "graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/split_module.py:628:41 - error: "proxy" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/split_module.py:648:26 - error: "graph" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/split_module.py:651:20 - error: "graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/fx/passes/split_utils.py + /torch/fx/passes/split_utils.py:8:28 - error: "map_arg" is unknown import symbol (reportAttributeAccessIssue) + /torch/fx/passes/split_utils.py:132:29 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/fx/passes/utils/matcher_utils.py + /torch/fx/passes/utils/matcher_utils.py:127:29 - error: "graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/fx/passes/utils/matcher_utils.py:128:29 - error: "graph_module" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/fx/proxy.py + /torch/fx/proxy.py:19:22 - error: "_fx_map_aggregate" is unknown import symbol (reportAttributeAccessIssue) + /torch/fx/proxy.py:19:58 - error: "_fx_map_arg" is unknown import symbol (reportAttributeAccessIssue) + /torch/fx/proxy.py:173:41 - error: Argument of type "Target" cannot be assigned to parameter "target" of type "(...) -> Unknown" in function "check_for_mutable_operation" +   Type "Target" is not assignable to type "(...) -> Unknown" +     Type "str" is not assignable to type "(...) -> Unknown" (reportArgumentType) + /torch/fx/proxy.py:296:55 - error: Expression of type "None" cannot be assigned to parameter of type "(Node) -> Proxy" +   Type "None" is not assignable to type "(Node) -> Proxy" (reportArgumentType) + /torch/fx/proxy.py:421:56 - error: Cannot access attribute "__class__" for class "type[DataclassInstance]" +   A property defined within a protocol class cannot be accessed as a class variable (reportAttributeAccessIssue) + /torch/fx/proxy.py:560:16 - error: Type "Proxy" is not assignable to return type "dict[Unknown, Unknown]" +   "Proxy" is not assignable to "dict[Unknown, Unknown]" (reportReturnType) +/torch/fx/subgraph_rewriter.py + /torch/fx/subgraph_rewriter.py:415:38 - error: Argument of type "int | str" cannot be assigned to parameter "replace_with" of type "Node" in function "replace_all_uses_with" +   Type "int | str" is not assignable to type "Node" +     "int" is not assignable to "Node" (reportArgumentType) + /torch/fx/subgraph_rewriter.py:416:13 - error: Argument of type "int | str" cannot be assigned to parameter "value" of type "Node" in function "__setitem__" +   Type "int | str" is not assignable to type "Node" +     "int" is not assignable to "Node" (reportArgumentType) +/torch/hub.py + /torch/hub.py:64:10 - warning: Import "tqdm" could not be resolved from source (reportMissingModuleSource) +/torch/jit/__init__.py + /torch/jit/__init__.py:121:18 - error: "JITException" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/jit/__init__.py:259:22 - error: "_jit_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/__init__.py:284:14 - error: "_jit_set_llga_enabled" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/jit/__init__.py:294:17 - error: "_jit_init" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) +/torch/jit/_builtins.py + /torch/jit/_builtins.py:23:14 - error: "_nn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_builtins.py:104:15 - error: "_infer_size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_builtins.py:114:15 - error: "_get_tracing_state" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_builtins.py:115:15 - error: "_get_cpu_capability" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_builtins.py:121:16 - error: "unique_dim" is not a known attribute of module "torch._VF" (reportAttributeAccessIssue) + /torch/jit/_builtins.py:123:16 - error: "nuclear_norm" is not a known attribute of module "torch._VF" (reportAttributeAccessIssue) + /torch/jit/_builtins.py:124:16 - error: "frobenius_norm" is not a known attribute of module "torch._VF" (reportAttributeAccessIssue) +/torch/jit/_check.py + /torch/jit/_check.py:134:37 - error: Cannot access attribute "attr" for class "expr" +   Attribute "attr" is unknown (reportAttributeAccessIssue) + /torch/jit/_check.py:148:28 - error: Cannot access attribute "value" for class "Name" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/jit/_check.py:148:34 - error: Cannot access attribute "id" for class "expr" +   Attribute "id" is unknown (reportAttributeAccessIssue) + /torch/jit/_check.py:155:24 - error: Cannot access attribute "attr" for class "Name" +   Attribute "attr" is unknown (reportAttributeAccessIssue) + /torch/jit/_check.py:155:24 - error: Cannot access attribute "attr" for class "Subscript" +   Attribute "attr" is unknown (reportAttributeAccessIssue) + /torch/jit/_check.py:174:32 - error: Cannot access attribute "value" for class "expr" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/jit/_check.py:184:36 - error: Cannot access attribute "value" for class "expr" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/jit/_check.py:185:41 - error: Argument of type "expr | None" cannot be assigned to parameter "node" of type "AST" in function "_is_empty_container" +   Type "expr | None" is not assignable to type "AST" +     "None" is not assignable to "AST" (reportArgumentType) + /torch/jit/_check.py:212:27 - error: Cannot access attribute "value" for class "expr" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/jit/_check.py:213:30 - error: Cannot access attribute "value" for class "expr" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/jit/_check.py:214:30 - error: Cannot access attribute "attr" for class "expr" +   Attribute "attr" is unknown (reportAttributeAccessIssue) + /torch/jit/_check.py:218:27 - error: Cannot access attribute "value" for class "expr" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/jit/_check.py:218:64 - error: Cannot access attribute "value" for class "expr" +   Attribute "value" is unknown (reportAttributeAccessIssue) +/torch/jit/_decomposition_utils.py + /torch/jit/_decomposition_utils.py:6:61 - error: "Graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_decomposition_utils.py:12:14 - error: "_jit_register_decomposition_for_schema" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/jit/_decompositions.py + /torch/jit/_decompositions.py:16:32 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/jit/_decompositions.py:71:34 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/jit/_decompositions.py:87:18 - error: "_jit_pass_inline" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_decompositions.py:90:22 - error: "_jit_pass_peephole" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_decompositions.py:91:22 - error: "_jit_pass_constant_propagation" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/jit/_freeze.py + /torch/jit/_freeze.py:117:42 - error: "_freeze_module" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_freeze.py:174:18 - error: "_jit_pass_optimize_frozen_graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_freeze.py:180:18 - error: "_jit_pass_optimize_frozen_graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_freeze.py:232:14 - error: "_jit_pass_optimize_for_inference" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/jit/_fuser.py + /torch/jit/_fuser.py:83:42 - error: "_last_executed_optimized_graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_fuser.py:160:21 - error: "_jit_set_fusion_strategy" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/jit/_ir_utils.py + /torch/jit/_ir_utils.py:10:38 - error: "Graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_ir_utils.py:11:38 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_ir_utils.py:11:53 - error: "Block" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_ir_utils.py:31:20 - error: "Graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_ir_utils.py:31:56 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_ir_utils.py:31:71 - error: "Block" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/jit/_logging.py + /torch/jit/_logging.py:6:23 - error: "_logging_set_logger" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_logging.py:7:26 - error: "LockingLogger" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_logging.py:8:28 - error: "AggregationType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_logging.py:9:23 - error: "NoopLogger" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/jit/_monkeytype_config.py + /torch/jit/_monkeytype_config.py:19:10 - error: Import "monkeytype" could not be resolved (reportMissingImports) + /torch/jit/_monkeytype_config.py:85:11 - error: Class declaration "JitTypeTraceStoreLogger" is obscured by a declaration of the same name (reportRedeclaration) + /torch/jit/_monkeytype_config.py:85:35 - error: "CallTraceStoreLogger" is possibly unbound (reportPossiblyUnboundVariable) + /torch/jit/_monkeytype_config.py:88:28 - error: "store" is possibly unbound (reportPossiblyUnboundVariable) + /torch/jit/_monkeytype_config.py:88:35 - error: "CallTraceStore" is possibly unbound (reportPossiblyUnboundVariable) + /torch/jit/_monkeytype_config.py:89:30 - error: "store" is possibly unbound (reportPossiblyUnboundVariable) + /torch/jit/_monkeytype_config.py:91:23 - error: "trace" is possibly unbound (reportPossiblyUnboundVariable) + /torch/jit/_monkeytype_config.py:91:30 - error: "CallTrace" is possibly unbound (reportPossiblyUnboundVariable) + /torch/jit/_monkeytype_config.py:93:32 - error: "trace" is possibly unbound (reportPossiblyUnboundVariable) + /torch/jit/_monkeytype_config.py:95:11 - error: Class declaration "JitTypeTraceStore" is obscured by a declaration of the same name (reportRedeclaration) + /torch/jit/_monkeytype_config.py:95:29 - error: "CallTraceStore" is possibly unbound (reportPossiblyUnboundVariable) + /torch/jit/_monkeytype_config.py:103:40 - error: "CallTrace" is possibly unbound (reportPossiblyUnboundVariable) + /torch/jit/_monkeytype_config.py:113:19 - error: "CallTraceThunk" is possibly unbound (reportPossiblyUnboundVariable) + /torch/jit/_monkeytype_config.py:147:11 - error: Class declaration "JitTypeTraceConfig" is obscured by a declaration of the same name (reportRedeclaration) + /torch/jit/_monkeytype_config.py:147:30 - error: "monkeytype" is possibly unbound (reportPossiblyUnboundVariable) + /torch/jit/_monkeytype_config.py:155:20 - error: Type "JitTypeTraceStoreLogger" is not assignable to return type "JitTypeTraceStoreLogger" +   "torch.jit._monkeytype_config.JitTypeTraceStoreLogger" is not assignable to "torch.jit._monkeytype_config.JitTypeTraceStoreLogger" (reportReturnType) + /torch/jit/_monkeytype_config.py:155:44 - error: Expected 0 positional arguments (reportCallIssue) + /torch/jit/_monkeytype_config.py:157:34 - error: "CallTraceStore" is possibly unbound (reportPossiblyUnboundVariable) + /torch/jit/_monkeytype_config.py:160:43 - error: "CodeFilter" is possibly unbound (reportPossiblyUnboundVariable) + /torch/jit/_monkeytype_config.py:199:20 - error: "_startswith" is possibly unbound (reportPossiblyUnboundVariable) + /torch/jit/_monkeytype_config.py:199:68 - error: "LIB_PATHS" is possibly unbound (reportPossiblyUnboundVariable) +/torch/jit/_passes/_property_propagation.py + /torch/jit/_passes/_property_propagation.py:11:19 - error: "TensorType" is unknown import symbol (reportAttributeAccessIssue) + /torch/jit/_passes/_property_propagation.py:12:22 - error: "Graph" is unknown import symbol (reportAttributeAccessIssue) + /torch/jit/_passes/_property_propagation.py:26:41 - error: "ClassType" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/jit/_recursive.py + /torch/jit/_recursive.py:128:11 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_recursive.py:129:11 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_recursive.py:130:11 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_recursive.py:131:11 - error: "qscheme" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_recursive.py:154:30 - error: "_jit_tree_views" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_recursive.py:423:50 - error: "ConcreteModuleType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_recursive.py:424:36 - error: "ConcreteModuleType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_recursive.py:594:49 - error: "InterfaceType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_recursive.py:781:27 - error: "annotations" is not a known attribute of module "torch.jit" (reportAttributeAccessIssue) + /torch/jit/_recursive.py:1006:42 - error: "ModuleDict" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_recursive.py:1008:49 - error: "ConcreteModuleType" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/jit/_script.py + /torch/jit/_script.py:64:27 - error: "ScriptFunction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_script.py:401:53 - error: "PyTorchFileReader" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_script.py:406:19 - error: "CompilationUnit" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_script.py:407:27 - error: "_import_ir_module_from_package" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_script.py:449:11 - error: Class declaration "RecursiveScriptClass" is obscured by a declaration of the same name (reportRedeclaration) + /torch/jit/_script.py:527:11 - error: Class declaration "ScriptModule" is obscured by a declaration of the same name (reportRedeclaration) + /torch/jit/_script.py:613:11 - error: Class declaration "RecursiveScriptModule" is obscured by a declaration of the same name (reportRedeclaration) + /torch/jit/_script.py:1159:52 - error: Expected 0 positional arguments (reportCallIssue) + /torch/jit/_script.py:1160:18 - error: Object of type "Never" cannot be used with "with" because it does not correctly implement __enter__ (reportGeneralTypeIssues) + /torch/jit/_script.py:1160:18 - error: Object of type "Never" cannot be used with "with" because it does not correctly implement __exit__ (reportGeneralTypeIssues) + /torch/jit/_script.py:1188:26 - error: "_recursive" is not a known attribute of module "torch.jit" (reportAttributeAccessIssue) + /torch/jit/_script.py:1189:28 - error: "_recursive" is not a known attribute of module "torch.jit" (reportAttributeAccessIssue) + /torch/jit/_script.py:1240:60 - error: Cannot access attribute "__script_unsupported" for class "FunctionType" +   Attribute "__script_unsupported" is unknown (reportFunctionMemberAccess) + /torch/jit/_script.py:1240:60 - error: Cannot access attribute "__script_unsupported" for class "MethodType" +   Attribute "__script_unsupported" is unknown (reportAttributeAccessIssue) + /torch/jit/_script.py:1250:23 - error: "_jit_script_compile" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_script.py:1262:26 - error: "_recursive" is not a known attribute of module "torch.jit" (reportAttributeAccessIssue) + /torch/jit/_script.py:1503:21 - error: "prev" is possibly unbound (reportPossiblyUnboundVariable) + /torch/jit/_script.py:1668:28 - error: "CompilationUnit" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/jit/_script.pyi + /torch/jit/_script.pyi:53:27 - error: "ScriptFunction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_script.pyi:140:30 - error: "Graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_script.pyi:142:38 - error: "Graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_script.pyi:205:12 - error: "ScriptDict" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_script.pyi:213:12 - error: "ScriptList" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_script.pyi:237:6 - error: Variable not allowed in type expression (reportInvalidTypeForm) +/torch/jit/_serialization.py + /torch/jit/_serialization.py:284:18 - error: "_save_jit_module" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_serialization.py:286:22 - error: "_save_jit_module_to_bytes" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/jit/_shape_functions.py + /torch/jit/_shape_functions.py:1190:21 - error: "ScriptFunction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_shape_functions.py:1191:40 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/jit/_shape_functions.py:1192:48 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/jit/_shape_functions.py:1192:58 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/jit/_shape_functions.py:1193:33 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/jit/_shape_functions.py:1200:18 - error: "_jit_pass_inline" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_shape_functions.py:1203:22 - error: "_jit_pass_peephole" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_shape_functions.py:1204:22 - error: "_jit_pass_constant_propagation" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/jit/_state.py + /torch/jit/_state.py:62:23 - error: "CompilationUnit" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/jit/_trace.py + /torch/jit/_trace.py:39:21 - error: "_jit_flatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_trace.py:40:23 - error: "_jit_unflatten" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_trace.py:140:32 - error: "_create_graph_by_tracing" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/_trace.py:610:10 - error: "_tracer_warn_use_python" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/jit/frontend.py + /torch/jit/frontend.py:14:6 - warning: Import "torch._C._jit_tree_views" could not be resolved from source (reportMissingModuleSource) + /torch/jit/frontend.py:156:38 - error: "ErrorReport" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/jit/generate_bytecode.py + /torch/jit/generate_bytecode.py:3:22 - error: "_compile_graph_to_code_table" is unknown import symbol (reportAttributeAccessIssue) + /torch/jit/generate_bytecode.py:3:52 - error: "_generate_upgraders_graph" is unknown import symbol (reportAttributeAccessIssue) +/torch/jit/mobile/__init__.py + /torch/jit/mobile/__init__.py:78:21 - error: "_export_operator_list" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/mobile/__init__.py:108:25 - error: "_get_model_bytecode_version" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/mobile/__init__.py:111:25 - error: "_get_model_bytecode_version_from_buffer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/mobile/__init__.py:141:25 - error: "_get_mobile_model_contained_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/jit/mobile/__init__.py:144:25 - error: "_get_mobile_model_contained_types_from_buffer" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/jit/supported_ops.py + /torch/jit/supported_ops.py:66:47 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/library.py + /torch/library.py:26:25 - error: "_dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/library.py:718:36 - error: "_parse_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/library.py:731:39 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:764:21 - error: "_dispatch_key_for_device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/library.py:782:51 - error: "custom_ops" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:837:57 - error: "custom_ops" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:897:57 - error: "custom_ops" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:913:26 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:915:40 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:928:44 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/library.py:929:44 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/library.py:1051:57 - error: "custom_ops" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:1101:57 - error: "custom_ops" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:1114:35 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:1215:57 - error: "custom_ops" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:1229:25 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:1230:17 - error: Cannot access attribute "_schema" for class "str" +   Attribute "_schema" is unknown (reportAttributeAccessIssue) + /torch/library.py:1231:21 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:1237:17 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:1244:21 - error: "autograd" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:1245:32 - error: "autograd" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:1246:40 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:1306:57 - error: "custom_ops" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:1420:57 - error: "custom_ops" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:1430:25 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:1431:17 - error: Cannot access attribute "_schema" for class "str" +   Attribute "_schema" is unknown (reportAttributeAccessIssue) + /torch/library.py:1432:17 - error: "utils" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:1518:34 - error: "fake_impl" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:1524:27 - error: "fake_impl" is not a known attribute of module "torch._library" (reportAttributeAccessIssue) + /torch/library.py:1528:56 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/library.py:1529:15 - error: "_SafeKernelFunction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/library.py:1594:37 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/library.py:1598:21 - error: "_dispatch_get_computed_kernel_for_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/masked/_ops.py + /torch/masked/_ops.py:17:29 - error: "_dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/masked/_ops.py:424:22 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:426:22 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:428:18 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:429:26 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:430:20 - error: "is_signed" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:430:55 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:431:26 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:431:39 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:433:18 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:434:26 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:435:20 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:436:26 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:437:20 - error: "is_signed" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:437:55 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:438:26 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:438:39 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:440:18 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:441:26 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:442:20 - error: "is_signed" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:442:55 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:443:26 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:443:39 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:454:26 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:455:26 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:456:22 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:460:38 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:460:74 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:461:22 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:535:34 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:586:36 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:604:24 - error: "sparse_coo_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:609:27 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:610:26 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:616:20 - error: "sparse_coo_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:688:41 - error: "unsqueeze" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/masked/_ops.py:689:27 - error: "to" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/masked/_ops.py:705:30 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:720:35 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:720:51 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:721:46 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:733:18 - error: "sparse_coo_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:780:38 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:792:38 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:795:27 - error: "cumsum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:795:40 - error: "diff" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:813:32 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:815:34 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:818:18 - error: "sparse_csr_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:860:29 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:861:22 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:862:31 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:864:31 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:905:35 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:905:50 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:905:68 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:922:33 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:923:26 - error: "broadcast_to" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:923:81 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:924:35 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:925:26 - error: "_sparse_broadcast_to" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:927:41 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:930:26 - error: "_sparse_broadcast_to" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:936:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:938:36 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:939:37 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:944:42 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:948:29 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:952:32 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1032:13 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/masked/_ops.py:1059:34 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1061:23 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1062:23 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1063:23 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1064:23 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1065:23 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1069:62 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1075:23 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1076:23 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1077:23 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1078:23 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1079:23 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1081:31 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1084:35 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1085:22 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1086:37 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1088:19 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1090:37 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1091:22 - error: "_sparse_csr_sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1112:34 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1114:23 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1115:23 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1116:23 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1117:23 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1118:23 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1122:62 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1128:23 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1129:23 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1130:23 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1131:23 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1132:23 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1134:31 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1137:35 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1144:37 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1151:19 - error: "prod" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1153:37 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1168:22 - error: "_sparse_csr_prod" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1189:35 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1190:22 - error: "cumsum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1209:35 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1210:22 - error: "cumprod" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1241:35 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1242:22 - error: "amax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1243:37 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1251:19 - error: "amax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1253:37 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1259:19 - error: "amax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1291:35 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1292:22 - error: "amin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1293:37 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1301:19 - error: "amin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1303:37 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1309:19 - error: "amin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1335:35 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1336:22 - error: "argmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1361:35 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1362:22 - error: "argmin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1398:19 - error: "is_floating_point" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/masked/_ops.py:1398:46 - error: "is_complex" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/masked/_ops.py:1403:30 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1408:23 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1408:53 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1420:32 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1428:19 - error: "mean" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1459:22 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1461:38 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1463:35 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1464:24 - error: "nanmedian" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1467:41 - error: "isnan" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1492:35 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1493:22 - error: "logsumexp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1552:30 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1552:64 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1555:22 - error: "logaddexp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1587:35 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1620:23 - error: "is_floating_point" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/masked/_ops.py:1620:50 - error: "is_complex" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/masked/_ops.py:1621:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1623:27 - error: "is_floating_point" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/masked/_ops.py:1623:62 - error: "is_complex" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/masked/_ops.py:1624:31 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1625:30 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1630:23 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1630:53 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1644:29 - error: "divide" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1645:19 - error: "subtract" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1662:34 - error: "is_complex" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/masked/_ops.py:1666:27 - error: "subtract" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1667:27 - error: "maximum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1668:24 - error: "divide" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1670:28 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1752:35 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1772:35 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1792:35 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1814:35 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1817:23 - error: "maximum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/masked/_ops.py:1819:22 - error: "divide" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/masked/maskedtensor/_ops_refs.py + /torch/masked/maskedtensor/_ops_refs.py:65:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/masked/maskedtensor/_ops_refs.py:87:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/masked/maskedtensor/_ops_refs.py:119:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/masked/maskedtensor/_ops_refs.py:147:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/masked/maskedtensor/_ops_refs.py:161:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/masked/maskedtensor/_ops_refs.py:214:52 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/masked/maskedtensor/core.py + /torch/masked/maskedtensor/core.py:253:17 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/masked/maskedtensor/core.py:345:17 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) +/torch/monitor/__init__.py + /torch/monitor/__init__.py:3:6 - warning: Import "torch._C._monitor" could not be resolved from source (reportMissingModuleSource) + /torch/monitor/__init__.py:4:6 - warning: Import "torch._C._monitor" could not be resolved from source (reportMissingModuleSource) +/torch/mps/__init__.py + /torch/mps/__init__.py:20:46 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/__init__.py:23:43 - error: "_mps_get_default_generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/__init__.py:29:25 - error: "_has_mps" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/__init__.py:29:47 - error: "_mps_is_available" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/__init__.py:34:21 - error: "_mps_deviceSynchronize" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/__init__.py:37:49 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/__init__.py:48:54 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/__init__.py:57:58 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/__init__.py:71:21 - error: "_has_mps" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/__init__.py:86:14 - error: "_mps_emptyCache" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/__init__.py:111:14 - error: "_mps_setMemoryFraction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/__init__.py:121:21 - error: "_mps_currentAllocatedMemory" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/__init__.py:131:21 - error: "_mps_driverAllocatedMemory" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/__init__.py:141:21 - error: "_mps_recommendedMaxMemory" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/__init__.py:167:21 - error: "_mps_compileShader" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/mps/event.py + /torch/mps/event.py:16:35 - error: "_mps_acquireEvent" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/event.py:21:22 - error: "_mps_releaseEvent" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/event.py:25:18 - error: "_mps_recordEvent" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/event.py:29:18 - error: "_mps_waitForEvent" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/event.py:33:25 - error: "_mps_queryEvent" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/event.py:39:18 - error: "_mps_synchronizeEvent" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mps/event.py:45:25 - error: "_mps_elapsedTimeOfEvents" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/mtia/__init__.py + /torch/mtia/__init__.py:12:19 - error: "device" is unknown import symbol (reportAttributeAccessIssue) + /torch/mtia/__init__.py:22:15 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:23:16 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:35:33 - error: "_mtia_exchangeDevice" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:45:39 - error: "_mtia_maybeExchangeDevice" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:64:21 - error: "_mtia_isInBadFork" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:95:18 - error: "_mtia_init" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:124:21 - error: "_mtia_isBuilt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:138:25 - error: "_mtia_deviceSynchronize" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:144:21 - error: "_mtia_getDeviceCount" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:149:21 - error: "_accelerator_hooks_get_current_device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:152:59 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/mtia/__init__.py:161:21 - error: "_mtia_getCurrentStream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:164:59 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/mtia/__init__.py:173:21 - error: "_mtia_getDefaultStream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:192:14 - error: "_mtia_recordMemoryHistory" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:198:21 - error: "_mtia_memorySnapshot" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:205:14 - error: "_mtia_attachOutOfMemoryObserver" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:221:21 - error: "_mtia_getDeviceCapability" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:226:21 - error: "_mtia_emptyCache" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:229:24 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/mtia/__init__.py:240:14 - error: "_mtia_setCurrentStream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:252:18 - error: "_accelerator_hooks_set_current_device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:263:21 - error: "_mtia_getDeviceProperties" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:282:29 - error: "_accelerator_hooks_maybe_exchange_device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:298:27 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/mtia/__init__.py:300:42 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/mtia/__init__.py:355:30 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/mtia/__init__.py:366:49 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:378:18 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:378:41 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/__init__.py:382:54 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/mtia/_utils.py + /torch/mtia/_utils.py:28:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/_utils.py:29:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/mtia/memory.py + /torch/mtia/memory.py:23:21 - error: "_mtia_memoryStats" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/memory.py:63:14 - error: "_mtia_resetPeakMemoryStats" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/mtia/mtia_graph.py + /torch/mtia/mtia_graph.py:12:26 - error: "_MTIAGraph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/mtia/mtia_graph.py:58:38 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/mtia/mtia_graph.py:64:26 - error: Variable not allowed in type expression (reportInvalidTypeForm) +/torch/multiprocessing/__init__.py + /torch/multiprocessing/__init__.py:29:29 - warning: Wildcard import from a library not allowed (reportWildcardImportFromLibrary) + /torch/multiprocessing/__init__.py:37:10 - error: "_multiprocessing_init" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/multiprocessing/__init__.py:89:14 - error: "_set_thread_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/multiprocessing/__init__.py:98:21 - error: "_get_thread_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nested/__init__.py + /torch/nested/__init__.py:8:25 - error: "_device" is unknown import symbol (reportAttributeAccessIssue) + /torch/nested/__init__.py:8:44 - error: "_dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/nested/__init__.py:103:24 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:104:24 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:109:34 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:110:26 - error: "_nested_view_from_buffer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:113:24 - error: "_nested_compute_contiguous_strides_offsets" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:117:26 - error: "_nested_tensor_from_tensor_list" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:118:26 - error: "jagged" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:128:29 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:129:82 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:248:24 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:249:24 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:257:26 - error: "jagged" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:260:51 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:286:18 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:329:24 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:335:37 - error: "unbind" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:335:66 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:338:26 - error: "jagged" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:345:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:345:77 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:348:28 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:348:79 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:448:48 - error: Argument of type "tuple[Literal[1], Literal[0]]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[1], Literal[0]]" is not assignable to "list[int]" (reportArgumentType) + /torch/nested/__init__.py:500:31 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:505:29 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/__init__.py:517:50 - error: Argument of type "tuple[Literal[1], Literal[0]]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[1], Literal[0]]" is not assignable to "list[int]" (reportArgumentType) +/torch/nested/_internal/nested_int.py + /torch/nested/_internal/nested_int.py:1:20 - warning: Wildcard import from a library not allowed (reportWildcardImportFromLibrary) + /torch/nested/_internal/nested_int.py:26:38 - error: Cannot access attribute "constant_int" for class "NestedIntNode" +   Attribute "constant_int" is unknown (reportAttributeAccessIssue) + /torch/nested/_internal/nested_int.py:88:25 - error: "_get_constant_bool_symnode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_int.py:91:25 - error: "_get_constant_bool_symnode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_int.py:94:25 - error: "_get_constant_bool_symnode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_int.py:97:25 - error: "_get_constant_bool_symnode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_int.py:100:25 - error: "_get_constant_bool_symnode" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_int.py:103:25 - error: "_get_constant_bool_symnode" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nested/_internal/nested_tensor.py + /torch/nested/_internal/nested_tensor.py:2:20 - warning: Wildcard import from a library not allowed (reportWildcardImportFromLibrary) + /torch/nested/_internal/nested_tensor.py:5:22 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/nested/_internal/nested_tensor.py:5:35 - error: "DispatchKeySet" is unknown import symbol (reportAttributeAccessIssue) + /torch/nested/_internal/nested_tensor.py:41:18 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_tensor.py:491:20 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_tensor.py:504:25 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_tensor.py:506:23 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_tensor.py:506:44 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_tensor.py:507:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_tensor.py:547:42 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_tensor.py:548:36 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_tensor.py:551:21 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_tensor.py:567:14 - error: "any" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_tensor.py:569:14 - error: "any" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_tensor.py:574:35 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_tensor.py:575:28 - error: "min" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_tensor.py:607:26 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_tensor.py:608:27 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/nested_tensor.py:608:63 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nested/_internal/ops.py + /torch/nested/_internal/ops.py:5:20 - warning: Wildcard import from a library not allowed (reportWildcardImportFromLibrary) + /torch/nested/_internal/ops.py:257:14 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/ops.py:276:47 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nested/_internal/sdpa.py + /torch/nested/_internal/sdpa.py:15:5 - error: "SDPAParams" is unknown import symbol (reportAttributeAccessIssue) + /torch/nested/_internal/sdpa.py:17:32 - error: "SDPBackend" is unknown import symbol (reportAttributeAccessIssue) + /torch/nested/_internal/sdpa.py:352:58 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/sdpa.py:358:52 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/sdpa.py:694:53 - error: "is_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nested/_internal/sdpa.py:914:26 - error: "_scaled_dot_product_attention_math" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/attention/__init__.py + /torch/nn/attention/__init__.py:10:22 - error: "_SDPBackend" is unknown import symbol (reportAttributeAccessIssue) + /torch/nn/attention/__init__.py:14:5 - error: "SDPAParams" is unknown import symbol (reportAttributeAccessIssue) + /torch/nn/attention/__init__.py:91:34 - error: "_get_sdp_priority_order" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/__init__.py:105:38 - error: "_get_sdp_priority_order" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/__init__.py:109:18 - error: "_set_sdp_priority_order" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/attention/_fa4.py + /torch/nn/attention/_fa4.py:39:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/_fa4.py:94:34 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/_fa4.py:94:49 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/_fa4.py:97:34 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/_fa4.py:127:37 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/_fa4.py:278:23 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/_fa4.py:278:47 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/_fa4.py:279:27 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/_fa4.py:279:49 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/_fa4.py:280:24 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/attention/bias.py + /torch/nn/attention/bias.py:13:5 - error: "SDPAParams" is unknown import symbol (reportAttributeAccessIssue) + /torch/nn/attention/bias.py:140:41 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/bias.py:142:22 - error: "tril" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/bias.py:143:19 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/bias.py:143:84 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/bias.py:146:42 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/bias.py:149:22 - error: "tril" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/bias.py:150:19 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/bias.py:151:77 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/bias.py:157:42 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/bias.py:157:67 - error: Function with declared return type "Tensor" must return value on all code paths +   "None" is not assignable to "Tensor" (reportReturnType) + /torch/nn/attention/bias.py:171:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/bias.py:239:60 - error: Argument of type "tuple[Literal[0], Unknown]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[0], Unknown]" is not assignable to "list[int]" (reportArgumentType) + /torch/nn/attention/bias.py:240:56 - error: Argument of type "tuple[Literal[0], Unknown]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[0], Unknown]" is not assignable to "list[int]" (reportArgumentType) + /torch/nn/attention/bias.py:241:60 - error: Argument of type "tuple[Literal[0], Unknown]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[0], Unknown]" is not assignable to "list[int]" (reportArgumentType) +/torch/nn/attention/experimental/_paged_attention.py + /torch/nn/attention/experimental/_paged_attention.py:47:34 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:48:57 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:52:31 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:52:65 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:58:43 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:59:52 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:80:48 - error: Cannot access attribute "item" for class "int" +   Attribute "item" is unknown (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:80:48 - error: Cannot access attribute "item" for class "float" +   Attribute "item" is unknown (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:88:33 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:90:42 - error: Cannot access attribute "device" for class "int" +   Attribute "device" is unknown (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:90:42 - error: Cannot access attribute "device" for class "float" +   Attribute "device" is unknown (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:101:70 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:104:42 - error: Cannot access attribute "device" for class "int" +   Attribute "device" is unknown (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:104:42 - error: Cannot access attribute "device" for class "float" +   Attribute "device" is unknown (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:179:36 - error: "gather" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:180:71 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:181:20 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:230:31 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:235:32 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:236:53 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:239:19 - error: "gather" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:240:75 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:243:23 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:250:41 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:251:57 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:254:23 - error: "gather" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:257:69 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:260:27 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:309:26 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/experimental/_paged_attention.py:348:26 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/attention/flex_attention.py + /torch/nn/attention/flex_attention.py:357:48 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:422:44 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:424:25 - error: "argsort" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:426:36 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:426:63 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:427:30 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:427:57 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:444:24 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:445:24 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:445:82 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:910:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:977:32 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:985:9 - error: Argument of type "tuple[Literal[0], Any, Literal[0], Any]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[0], Any, Literal[0], Any]" is not assignable to "list[int]" (reportArgumentType) + /torch/nn/attention/flex_attention.py:1008:56 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:1009:50 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:1013:56 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:1112:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:1113:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:1114:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:1115:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:1124:35 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:1125:26 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:1125:38 - error: "isneginf" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:1228:29 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:1228:57 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:1229:26 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:1229:58 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:1272:52 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:1340:15 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:1341:15 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/flex_attention.py:1539:22 - error: Type "dict[Unknown, Unknown]" is not assignable to declared type "FlexKernelOptions | None" +   Type "dict[Unknown, Unknown]" is not assignable to type "FlexKernelOptions | None" +     "dict[Unknown, Unknown]" is not assignable to "FlexKernelOptions" +     "dict[Unknown, Unknown]" is not assignable to "None" (reportAssignmentType) + /torch/nn/attention/flex_attention.py:1592:16 - error: Type "tuple[Unknown, AuxOutput] | tuple[Unknown, Unknown | None] | Unknown" is not assignable to return type "Tensor | tuple[Tensor, Tensor] | tuple[Tensor, AuxOutput]" +   Type "tuple[Unknown, AuxOutput] | tuple[Unknown, Unknown | None] | Unknown" is not assignable to type "Tensor | tuple[Tensor, Tensor] | tuple[Tensor, AuxOutput]" +     Type "tuple[Unknown, Unknown | None]" is not assignable to type "Tensor | tuple[Tensor, Tensor] | tuple[Tensor, AuxOutput]" +       "tuple[Unknown, Unknown | None]" is not assignable to "Tensor" +       "tuple[Unknown, Unknown | None]" is not assignable to "tuple[Tensor, Tensor]" +         Tuple entry 2 is incorrect type +           Type "Unknown | None" is not assignable to type "Tensor" +       "tuple[Unknown, Unknown | None]" is not assignable to "tuple[Tensor, AuxOutput]" +         Tuple entry 2 is incorrect type + ... (reportReturnType) + /torch/nn/attention/flex_attention.py:1647:12 - error: Type "tuple[Unknown, AuxOutput] | tuple[Unknown, Unknown | None] | Unknown" is not assignable to return type "Tensor | tuple[Tensor, Tensor] | tuple[Tensor, AuxOutput]" +   Type "tuple[Unknown, AuxOutput] | tuple[Unknown, Unknown | None] | Unknown" is not assignable to type "Tensor | tuple[Tensor, Tensor] | tuple[Tensor, AuxOutput]" +     Type "tuple[Unknown, Unknown | None]" is not assignable to type "Tensor | tuple[Tensor, Tensor] | tuple[Tensor, AuxOutput]" +       "tuple[Unknown, Unknown | None]" is not assignable to "Tensor" +       "tuple[Unknown, Unknown | None]" is not assignable to "tuple[Tensor, Tensor]" +         Tuple entry 2 is incorrect type +           Type "Unknown | None" is not assignable to type "Tensor" +       "tuple[Unknown, Unknown | None]" is not assignable to "tuple[Tensor, AuxOutput]" +         Tuple entry 2 is incorrect type + ... (reportReturnType) +/torch/nn/attention/varlen.py + /torch/nn/attention/varlen.py:88:24 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/varlen.py:89:27 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/varlen.py:113:20 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/varlen.py:118:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/varlen.py:119:43 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/varlen.py:122:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/varlen.py:122:47 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/varlen.py:232:20 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/varlen.py:293:24 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/varlen.py:294:22 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/attention/varlen.py:295:24 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/cpp.py + /torch/nn/cpp.py:86:9 - error: "training" overrides symbol of same name in class "Module" +   "property" is not assignable to "bool" (reportIncompatibleVariableOverride) +/torch/nn/init.py + /torch/nn/init.py:70:68 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/init.py:80:32 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/init.py:92:32 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/init.py:218:32 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/init.py:245:32 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/init.py:274:32 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/init.py:360:15 - error: "eye" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/init.py:441:32 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/init.py:474:32 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/init.py:504:12 - error: Type "LiteralString" is not assignable to declared type "_FanMode" +   Type "LiteralString" is not assignable to type "_FanMode" +     "str" is not assignable to "Literal['fan_in']" +     "str" is not assignable to "Literal['fan_out']" (reportAssignmentType) + /torch/nn/init.py:518:32 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/init.py:583:32 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/init.py:634:32 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/init.py:669:15 - error: "diag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/init.py:686:32 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/init.py:714:33 - error: "randperm" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/modules/_functions.py + /torch/nn/modules/_functions.py:11:9 - warning: Static methods should not take a "self" or "cls" parameter (reportSelfClsParameterName) + /torch/nn/modules/_functions.py:127:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter 1 name mismatch: base parameter is named "ctx", override parameter is named "self" +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) + /torch/nn/modules/_functions.py:127:18 - warning: Static methods should not take a "self" or "cls" parameter (reportSelfClsParameterName) + /torch/nn/modules/_functions.py:271:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) +/torch/nn/modules/activation.py + /torch/nn/modules/activation.py:359:22 - error: "sigmoid" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/activation.py:430:22 - error: "tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/activation.py:1061:25 - error: "backend_registration" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/nn/modules/activation.py:1198:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/activation.py:1201:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/activation.py:1204:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/activation.py:1209:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/activation.py:1216:49 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/activation.py:1224:43 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/activation.py:1225:43 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/activation.py:1329:46 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/activation.py:1331:23 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/activation.py:1395:20 - error: "is_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/activation.py:1417:49 - error: "backend_registration" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/nn/modules/activation.py:1419:24 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/activation.py:1432:34 - error: "_native_multi_head_attention" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/activation.py:1629:39 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/modules/adaptive.py + /torch/nn/modules/adaptive.py:323:24 - error: "argmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/adaptive.py:332:26 - error: "argmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/adaptive.py:338:46 - error: "argmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/modules/batchnorm.py + /torch/nn/modules/batchnorm.py:56:43 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/batchnorm.py:57:41 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/batchnorm.py:63:39 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/batchnorm.py:66:38 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/batchnorm.py:72:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/batchnorm.py:74:33 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/batchnorm.py:129:66 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/batchnorm.py:130:32 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/batchnorm.py:130:54 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/batchnorm.py:226:17 - error: Cannot access attribute "__init__" for class "LazyModuleMixin" +   Could not bind method "__init__" because "Self@_LazyNormBase" is not assignable to parameter "self" +     "_LazyNormBase*" is incompatible with protocol "_LazyProtocol" +       "_infer_parameters" is an incompatible type +         Type "(module: Unknown, args: Unknown, kwargs: Unknown | None = None) -> None" is not assignable to type "(module: Unknown, input: Unknown) -> Unknown" +           Parameter name mismatch: "input" versus "args" (reportAttributeAccessIssue) + /torch/nn/modules/batchnorm.py:240:52 - error: Argument of type "Unknown | None" cannot be assigned to parameter "data" of type "Tensor" in function "__init__" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/nn/modules/batchnorm.py:240:52 - error: Argument of type "Unknown | None" cannot be assigned to parameter "requires_grad" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/batchnorm.py:242:50 - error: Argument of type "Unknown | None" cannot be assigned to parameter "data" of type "Tensor" in function "__init__" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/nn/modules/batchnorm.py:242:50 - error: Argument of type "Unknown | None" cannot be assigned to parameter "requires_grad" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/batchnorm.py:245:55 - error: Argument of type "Unknown | None" cannot be assigned to parameter "data" of type "Tensor" in function "__init__" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/nn/modules/batchnorm.py:245:55 - error: Argument of type "Unknown | None" cannot be assigned to parameter "requires_grad" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/batchnorm.py:245:55 - error: Argument of type "Unknown | None" cannot be assigned to parameter "persistent" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/batchnorm.py:247:54 - error: Argument of type "Unknown | None" cannot be assigned to parameter "data" of type "Tensor" in function "__init__" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/nn/modules/batchnorm.py:247:54 - error: Argument of type "Unknown | None" cannot be assigned to parameter "requires_grad" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/batchnorm.py:247:54 - error: Argument of type "Unknown | None" cannot be assigned to parameter "persistent" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/batchnorm.py:248:46 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/batchnorm.py:250:29 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/batchnorm.py:802:26 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/batchnorm.py:806:33 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/modules/container.py + /torch/nn/modules/container.py:115:9 - error: Overloaded implementation is not consistent with signature of overload 2 +   Type "(self: Self@Sequential, *args: Unknown) -> None" is not assignable to type "(self: Self@Sequential, arg: OrderedDict[str, Module]) -> None" +     Missing keyword parameter "arg" (reportInconsistentOverload) + /torch/nn/modules/container.py:153:14 - error: "_modules" overrides symbol of same name in class "Module" +   Variable is mutable so its type is invariant +     Override type "dict[str, Module]" is not the same as base type "dict[str, Module | None]" (reportIncompatibleVariableOverride) + /torch/nn/modules/container.py:400:14 - error: "_modules" overrides symbol of same name in class "Module" +   Variable is mutable so its type is invariant +     Override type "dict[str, Module]" is not the same as base type "dict[str, Module | None]" (reportIncompatibleVariableOverride) + /torch/nn/modules/container.py:771:55 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/container.py:1008:55 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/modules/conv.py + /torch/nn/modules/conv.py:163:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/conv.py:170:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/conv.py:176:41 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/conv.py:956:13 - error: Argument of type "_size_1_t" cannot be assigned to parameter "kernel_size" of type "tuple[int, ...]" in function "__init__" +   Type "_size_1_t" is not assignable to type "tuple[int, ...]" +     "int" is not assignable to "tuple[int, ...]" (reportArgumentType) + /torch/nn/modules/conv.py:957:13 - error: Argument of type "_size_1_t" cannot be assigned to parameter "stride" of type "tuple[int, ...]" in function "__init__" +   Type "_size_1_t" is not assignable to type "tuple[int, ...]" +     "int" is not assignable to "tuple[int, ...]" (reportArgumentType) + /torch/nn/modules/conv.py:958:13 - error: Argument of type "_size_1_t" cannot be assigned to parameter "padding" of type "str | tuple[int, ...]" in function "__init__" +   Type "_size_1_t" is not assignable to type "str | tuple[int, ...]" +     Type "int" is not assignable to type "str | tuple[int, ...]" +       "int" is not assignable to "str" +       "int" is not assignable to "tuple[int, ...]" (reportArgumentType) + /torch/nn/modules/conv.py:959:13 - error: Argument of type "_size_1_t" cannot be assigned to parameter "dilation" of type "tuple[int, ...]" in function "__init__" +   Type "_size_1_t" is not assignable to type "tuple[int, ...]" +     "int" is not assignable to "tuple[int, ...]" (reportArgumentType) + /torch/nn/modules/conv.py:961:13 - error: Argument of type "_size_1_t" cannot be assigned to parameter "output_padding" of type "tuple[int, ...]" in function "__init__" +   Type "_size_1_t" is not assignable to type "tuple[int, ...]" +     "int" is not assignable to "tuple[int, ...]" (reportArgumentType) + /torch/nn/modules/conv.py:1144:13 - error: Argument of type "_size_2_t" cannot be assigned to parameter "kernel_size" of type "tuple[int, ...]" in function "__init__" +   Type "_size_2_t" is not assignable to type "tuple[int, ...]" +     "int" is not assignable to "tuple[int, ...]" (reportArgumentType) + /torch/nn/modules/conv.py:1145:13 - error: Argument of type "_size_2_t" cannot be assigned to parameter "stride" of type "tuple[int, ...]" in function "__init__" +   Type "_size_2_t" is not assignable to type "tuple[int, ...]" +     "int" is not assignable to "tuple[int, ...]" (reportArgumentType) + /torch/nn/modules/conv.py:1146:13 - error: Argument of type "_size_2_t" cannot be assigned to parameter "padding" of type "str | tuple[int, ...]" in function "__init__" +   Type "_size_2_t" is not assignable to type "str | tuple[int, ...]" +     Type "int" is not assignable to type "str | tuple[int, ...]" +       "int" is not assignable to "str" +       "int" is not assignable to "tuple[int, ...]" (reportArgumentType) + /torch/nn/modules/conv.py:1147:13 - error: Argument of type "_size_2_t" cannot be assigned to parameter "dilation" of type "tuple[int, ...]" in function "__init__" +   Type "_size_2_t" is not assignable to type "tuple[int, ...]" +     "int" is not assignable to "tuple[int, ...]" (reportArgumentType) + /torch/nn/modules/conv.py:1149:13 - error: Argument of type "_size_2_t" cannot be assigned to parameter "output_padding" of type "tuple[int, ...]" in function "__init__" +   Type "_size_2_t" is not assignable to type "tuple[int, ...]" +     "int" is not assignable to "tuple[int, ...]" (reportArgumentType) + /torch/nn/modules/conv.py:1335:13 - error: Argument of type "_size_3_t" cannot be assigned to parameter "kernel_size" of type "tuple[int, ...]" in function "__init__" +   Type "_size_3_t" is not assignable to type "tuple[int, ...]" +     "int" is not assignable to "tuple[int, ...]" (reportArgumentType) + /torch/nn/modules/conv.py:1336:13 - error: Argument of type "_size_3_t" cannot be assigned to parameter "stride" of type "tuple[int, ...]" in function "__init__" +   Type "_size_3_t" is not assignable to type "tuple[int, ...]" +     "int" is not assignable to "tuple[int, ...]" (reportArgumentType) + /torch/nn/modules/conv.py:1337:13 - error: Argument of type "_size_3_t" cannot be assigned to parameter "padding" of type "str | tuple[int, ...]" in function "__init__" +   Type "_size_3_t" is not assignable to type "str | tuple[int, ...]" +     Type "int" is not assignable to type "str | tuple[int, ...]" +       "int" is not assignable to "str" +       "int" is not assignable to "tuple[int, ...]" (reportArgumentType) + /torch/nn/modules/conv.py:1338:13 - error: Argument of type "_size_3_t" cannot be assigned to parameter "dilation" of type "tuple[int, ...]" in function "__init__" +   Type "_size_3_t" is not assignable to type "tuple[int, ...]" +     "int" is not assignable to "tuple[int, ...]" (reportArgumentType) + /torch/nn/modules/conv.py:1340:13 - error: Argument of type "_size_3_t" cannot be assigned to parameter "output_padding" of type "tuple[int, ...]" in function "__init__" +   Type "_size_3_t" is not assignable to type "tuple[int, ...]" +     "int" is not assignable to "tuple[int, ...]" (reportArgumentType) + /torch/nn/modules/conv.py:1521:17 - error: Cannot access attribute "__init__" for class "LazyModuleMixin" +   Could not bind method "__init__" because "Self@LazyConv1d" is not assignable to parameter "self" +     "LazyConv1d*" is incompatible with protocol "_LazyProtocol" +       "_infer_parameters" is an incompatible type +         Type "(module: Unknown, args: Unknown, kwargs: Unknown | None = None) -> None" is not assignable to type "(module: Unknown, input: Unknown) -> Unknown" +           Parameter name mismatch: "input" versus "args" (reportAttributeAccessIssue) + /torch/nn/modules/conv.py:1536:48 - error: Argument of type "Unknown | None" cannot be assigned to parameter "data" of type "Tensor" in function "__init__" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/nn/modules/conv.py:1536:48 - error: Argument of type "Unknown | None" cannot be assigned to parameter "requires_grad" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/conv.py:1540:50 - error: Argument of type "Unknown | None" cannot be assigned to parameter "data" of type "Tensor" in function "__init__" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/nn/modules/conv.py:1540:50 - error: Argument of type "Unknown | None" cannot be assigned to parameter "requires_grad" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/conv.py:1593:17 - error: Cannot access attribute "__init__" for class "LazyModuleMixin" +   Could not bind method "__init__" because "Self@LazyConv2d" is not assignable to parameter "self" +     "LazyConv2d*" is incompatible with protocol "_LazyProtocol" +       "_infer_parameters" is an incompatible type +         Type "(module: Unknown, args: Unknown, kwargs: Unknown | None = None) -> None" is not assignable to type "(module: Unknown, input: Unknown) -> Unknown" +           Parameter name mismatch: "input" versus "args" (reportAttributeAccessIssue) + /torch/nn/modules/conv.py:1608:48 - error: Argument of type "Unknown | None" cannot be assigned to parameter "data" of type "Tensor" in function "__init__" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/nn/modules/conv.py:1608:48 - error: Argument of type "Unknown | None" cannot be assigned to parameter "requires_grad" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/conv.py:1612:50 - error: Argument of type "Unknown | None" cannot be assigned to parameter "data" of type "Tensor" in function "__init__" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/nn/modules/conv.py:1612:50 - error: Argument of type "Unknown | None" cannot be assigned to parameter "requires_grad" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/conv.py:1666:17 - error: Cannot access attribute "__init__" for class "LazyModuleMixin" +   Could not bind method "__init__" because "Self@LazyConv3d" is not assignable to parameter "self" +     "LazyConv3d*" is incompatible with protocol "_LazyProtocol" +       "_infer_parameters" is an incompatible type +         Type "(module: Unknown, args: Unknown, kwargs: Unknown | None = None) -> None" is not assignable to type "(module: Unknown, input: Unknown) -> Unknown" +           Parameter name mismatch: "input" versus "args" (reportAttributeAccessIssue) + /torch/nn/modules/conv.py:1681:48 - error: Argument of type "Unknown | None" cannot be assigned to parameter "data" of type "Tensor" in function "__init__" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/nn/modules/conv.py:1681:48 - error: Argument of type "Unknown | None" cannot be assigned to parameter "requires_grad" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/conv.py:1685:50 - error: Argument of type "Unknown | None" cannot be assigned to parameter "data" of type "Tensor" in function "__init__" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/nn/modules/conv.py:1685:50 - error: Argument of type "Unknown | None" cannot be assigned to parameter "requires_grad" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/conv.py:1737:17 - error: Cannot access attribute "__init__" for class "LazyModuleMixin" +   Could not bind method "__init__" because "Self@LazyConvTranspose1d" is not assignable to parameter "self" +     "LazyConvTranspose1d*" is incompatible with protocol "_LazyProtocol" +       "_infer_parameters" is an incompatible type +         Type "(module: Unknown, args: Unknown, kwargs: Unknown | None = None) -> None" is not assignable to type "(module: Unknown, input: Unknown) -> Unknown" +           Parameter name mismatch: "input" versus "args" (reportAttributeAccessIssue) + /torch/nn/modules/conv.py:1753:48 - error: Argument of type "Unknown | None" cannot be assigned to parameter "data" of type "Tensor" in function "__init__" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/nn/modules/conv.py:1753:48 - error: Argument of type "Unknown | None" cannot be assigned to parameter "requires_grad" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/conv.py:1757:50 - error: Argument of type "Unknown | None" cannot be assigned to parameter "data" of type "Tensor" in function "__init__" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/nn/modules/conv.py:1757:50 - error: Argument of type "Unknown | None" cannot be assigned to parameter "requires_grad" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/conv.py:1809:17 - error: Cannot access attribute "__init__" for class "LazyModuleMixin" +   Could not bind method "__init__" because "Self@LazyConvTranspose2d" is not assignable to parameter "self" +     "LazyConvTranspose2d*" is incompatible with protocol "_LazyProtocol" +       "_infer_parameters" is an incompatible type +         Type "(module: Unknown, args: Unknown, kwargs: Unknown | None = None) -> None" is not assignable to type "(module: Unknown, input: Unknown) -> Unknown" +           Parameter name mismatch: "input" versus "args" (reportAttributeAccessIssue) + /torch/nn/modules/conv.py:1825:48 - error: Argument of type "Unknown | None" cannot be assigned to parameter "data" of type "Tensor" in function "__init__" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/nn/modules/conv.py:1825:48 - error: Argument of type "Unknown | None" cannot be assigned to parameter "requires_grad" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/conv.py:1829:50 - error: Argument of type "Unknown | None" cannot be assigned to parameter "data" of type "Tensor" in function "__init__" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/nn/modules/conv.py:1829:50 - error: Argument of type "Unknown | None" cannot be assigned to parameter "requires_grad" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/conv.py:1881:17 - error: Cannot access attribute "__init__" for class "LazyModuleMixin" +   Could not bind method "__init__" because "Self@LazyConvTranspose3d" is not assignable to parameter "self" +     "LazyConvTranspose3d*" is incompatible with protocol "_LazyProtocol" +       "_infer_parameters" is an incompatible type +         Type "(module: Unknown, args: Unknown, kwargs: Unknown | None = None) -> None" is not assignable to type "(module: Unknown, input: Unknown) -> Unknown" +           Parameter name mismatch: "input" versus "args" (reportAttributeAccessIssue) + /torch/nn/modules/conv.py:1897:48 - error: Argument of type "Unknown | None" cannot be assigned to parameter "data" of type "Tensor" in function "__init__" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/nn/modules/conv.py:1897:48 - error: Argument of type "Unknown | None" cannot be assigned to parameter "requires_grad" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/conv.py:1901:50 - error: Argument of type "Unknown | None" cannot be assigned to parameter "data" of type "Tensor" in function "__init__" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/nn/modules/conv.py:1901:50 - error: Argument of type "Unknown | None" cannot be assigned to parameter "requires_grad" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) +/torch/nn/modules/lazy.py + /torch/nn/modules/lazy.py:176:27 - error: Cannot assign to attribute "_load_hook" for class "_LazyProtocol" +   "None" is not assignable to "property" (reportAttributeAccessIssue) + /torch/nn/modules/lazy.py:178:33 - error: Cannot assign to attribute "_initialize_hook" for class "_LazyProtocol" +   "None" is not assignable to "property" (reportAttributeAccessIssue) +/torch/nn/modules/linear.py + /torch/nn/modules/linear.py:109:19 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/linear.py:112:41 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/linear.py:221:19 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/linear.py:225:41 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/linear.py:300:17 - error: Cannot access attribute "__init__" for class "LazyModuleMixin" +   Could not bind method "__init__" because "Self@LazyLinear" is not assignable to parameter "self" +     "LazyLinear*" is incompatible with protocol "_LazyProtocol" +       "_infer_parameters" is an incompatible type +         Type "(module: Unknown, args: Unknown, kwargs: Unknown | None = None) -> None" is not assignable to type "(module: Unknown, input: Unknown) -> Unknown" +           Parameter name mismatch: "input" versus "args" (reportAttributeAccessIssue) + /torch/nn/modules/linear.py:302:14 - error: "weight" overrides symbol of same name in class "Linear" +   Variable is mutable so its type is invariant +     Override type "UninitializedParameter" is not the same as base type "Tensor" (reportIncompatibleVariableOverride) + /torch/nn/modules/linear.py:302:48 - error: Argument of type "Unknown | None" cannot be assigned to parameter "data" of type "Tensor" in function "__init__" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/nn/modules/linear.py:302:48 - error: Argument of type "Unknown | None" cannot be assigned to parameter "requires_grad" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/linear.py:306:50 - error: Argument of type "Unknown | None" cannot be assigned to parameter "data" of type "Tensor" in function "__init__" +   Type "Unknown | None" is not assignable to type "Tensor" +     "None" is not assignable to "Tensor" (reportArgumentType) + /torch/nn/modules/linear.py:306:50 - error: Argument of type "Unknown | None" cannot be assigned to parameter "requires_grad" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) +/torch/nn/modules/module.py + /torch/nn/modules/module.py:14:19 - error: "device" is unknown import symbol (reportAttributeAccessIssue) + /torch/nn/modules/module.py:14:27 - error: "dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/nn/modules/module.py:484:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/module.py:938:22 - error: "_has_compatible_shallow_copy_type" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/module.py:1236:29 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/modules/normalization.py + /torch/nn/modules/normalization.py:6:19 - error: "Size" is unknown import symbol (reportAttributeAccessIssue) + /torch/nn/modules/normalization.py:208:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/normalization.py:212:27 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/normalization.py:230:20 - error: Argument of type "tuple[int, ...]" cannot be assigned to parameter "normalized_shape" of type "list[int]" in function "layer_norm" +   "tuple[int, ...]" is not assignable to "list[int]" (reportArgumentType) + /torch/nn/modules/normalization.py:311:43 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/normalization.py:312:41 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/normalization.py:397:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/normalization.py:414:30 - error: Argument of type "tuple[int, ...]" cannot be assigned to parameter "normalized_shape" of type "list[int]" in function "rms_norm" +   "tuple[int, ...]" is not assignable to "list[int]" (reportArgumentType) +/torch/nn/modules/padding.py + /torch/nn/modules/padding.py:42:29 - error: Argument of type "Sequence[int]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "Sequence[int]" is not assignable to "list[int]" (reportArgumentType) + /torch/nn/modules/padding.py:92:14 - error: "padding" overrides symbol of same name in class "_CircularPadNd" +   Variable is mutable so its type is invariant +     Override type "tuple[int, int]" is not the same as base type "Sequence[int]" (reportIncompatibleVariableOverride) + /torch/nn/modules/padding.py:153:14 - error: "padding" overrides symbol of same name in class "_CircularPadNd" +   Variable is mutable so its type is invariant +     Override type "tuple[int, int, int, int]" is not the same as base type "Sequence[int]" (reportIncompatibleVariableOverride) + /torch/nn/modules/padding.py:204:14 - error: "padding" overrides symbol of same name in class "_CircularPadNd" +   Variable is mutable so its type is invariant +     Override type "tuple[int, int, int, int, int, int]" is not the same as base type "Sequence[int]" (reportIncompatibleVariableOverride) + /torch/nn/modules/padding.py:221:29 - error: Argument of type "Sequence[int]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "Sequence[int]" is not assignable to "list[int]" (reportArgumentType) + /torch/nn/modules/padding.py:276:14 - error: "padding" overrides symbol of same name in class "_ConstantPadNd" +   Variable is mutable so its type is invariant +     Override type "tuple[int, int]" is not the same as base type "Sequence[int]" (reportIncompatibleVariableOverride) + /torch/nn/modules/padding.py:328:14 - error: "padding" overrides symbol of same name in class "_ConstantPadNd" +   Variable is mutable so its type is invariant +     Override type "tuple[int, int, int, int]" is not the same as base type "Sequence[int]" (reportIncompatibleVariableOverride) + /torch/nn/modules/padding.py:369:14 - error: "padding" overrides symbol of same name in class "_ConstantPadNd" +   Variable is mutable so its type is invariant +     Override type "tuple[int, int, int, int, int, int]" is not the same as base type "Sequence[int]" (reportIncompatibleVariableOverride) + /torch/nn/modules/padding.py:377:29 - error: Argument of type "Sequence[int]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "Sequence[int]" is not assignable to "list[int]" (reportArgumentType) + /torch/nn/modules/padding.py:423:14 - error: "padding" overrides symbol of same name in class "_ReflectionPadNd" +   Variable is mutable so its type is invariant +     Override type "tuple[int, int]" is not the same as base type "Sequence[int]" (reportIncompatibleVariableOverride) + /torch/nn/modules/padding.py:477:14 - error: "padding" overrides symbol of same name in class "_ReflectionPadNd" +   Variable is mutable so its type is invariant +     Override type "tuple[int, int, int, int]" is not the same as base type "Sequence[int]" (reportIncompatibleVariableOverride) + /torch/nn/modules/padding.py:533:14 - error: "padding" overrides symbol of same name in class "_ReflectionPadNd" +   Variable is mutable so its type is invariant +     Override type "tuple[int, int, int, int, int, int]" is not the same as base type "Sequence[int]" (reportIncompatibleVariableOverride) + /torch/nn/modules/padding.py:541:29 - error: Argument of type "Sequence[int]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "Sequence[int]" is not assignable to "list[int]" (reportArgumentType) + /torch/nn/modules/padding.py:587:14 - error: "padding" overrides symbol of same name in class "_ReplicationPadNd" +   Variable is mutable so its type is invariant +     Override type "tuple[int, int]" is not the same as base type "Sequence[int]" (reportIncompatibleVariableOverride) + /torch/nn/modules/padding.py:641:14 - error: "padding" overrides symbol of same name in class "_ReplicationPadNd" +   Variable is mutable so its type is invariant +     Override type "tuple[int, int, int, int]" is not the same as base type "Sequence[int]" (reportIncompatibleVariableOverride) + /torch/nn/modules/padding.py:684:14 - error: "padding" overrides symbol of same name in class "_ReplicationPadNd" +   Variable is mutable so its type is invariant +     Override type "tuple[int, int, int, int, int, int]" is not the same as base type "Sequence[int]" (reportIncompatibleVariableOverride) +/torch/nn/modules/sparse.py + /torch/nn/modules/sparse.py:169:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/sparse.py:407:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/modules/transformer.py + /torch/nn/modules/transformer.py:31:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/transformer.py:32:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/transformer.py:38:18 - error: "triu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/transformer.py:39:15 - error: "full" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/transformer.py:120:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/transformer.py:142:19 - error: Argument of type "Unknown | None" cannot be assigned to parameter "elementwise_affine" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/transformer.py:168:19 - error: Argument of type "Unknown | None" cannot be assigned to parameter "elementwise_affine" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/transformer.py:304:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/transformer.py:305:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/transformer.py:362:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/transformer.py:482:42 - error: "_nested_tensor_from_mask_left_aligned" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/transformer.py:492:20 - error: "is_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/transformer.py:514:29 - error: "backend_registration" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/nn/modules/transformer.py:522:24 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/transformer.py:530:32 - error: "_nested_tensor_from_mask" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/transformer.py:593:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/transformer.py:764:15 - error: Argument of type "Unknown | None" cannot be assigned to parameter "add_bias_kv" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/transformer.py:764:15 - error: Argument of type "Unknown | None" cannot be assigned to parameter "add_zero_attn" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/transformer.py:773:74 - error: Argument of type "Unknown | None" cannot be assigned to parameter "elementwise_affine" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/transformer.py:775:74 - error: Argument of type "Unknown | None" cannot be assigned to parameter "elementwise_affine" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/transformer.py:868:20 - error: "is_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/transformer.py:898:29 - error: "backend_registration" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/nn/modules/transformer.py:909:24 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/transformer.py:919:30 - error: "_transformer_encoder_layer_fwd" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/modules/transformer.py:1050:15 - error: Argument of type "Unknown | None" cannot be assigned to parameter "add_bias_kv" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/transformer.py:1050:15 - error: Argument of type "Unknown | None" cannot be assigned to parameter "add_zero_attn" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/transformer.py:1058:15 - error: Argument of type "Unknown | None" cannot be assigned to parameter "add_bias_kv" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/transformer.py:1058:15 - error: Argument of type "Unknown | None" cannot be assigned to parameter "add_zero_attn" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/transformer.py:1067:74 - error: Argument of type "Unknown | None" cannot be assigned to parameter "elementwise_affine" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/transformer.py:1069:74 - error: Argument of type "Unknown | None" cannot be assigned to parameter "elementwise_affine" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/transformer.py:1071:74 - error: Argument of type "Unknown | None" cannot be assigned to parameter "elementwise_affine" of type "bool" in function "__init__" +   Type "Unknown | None" is not assignable to type "bool" +     "None" is not assignable to "bool" (reportArgumentType) + /torch/nn/modules/transformer.py:1250:60 - error: Cannot access attribute "all" for class "bool" +   Attribute "all" is unknown (reportAttributeAccessIssue) +/torch/nn/modules/upsampling.py + /torch/nn/modules/upsampling.py:177:13 - error: Argument of type "_size_any_t | None" cannot be assigned to parameter "size" of type "int | None" in function "interpolate" +   Type "_size_any_t | None" is not assignable to type "int | None" +     Type "tuple[int, ...]" is not assignable to type "int | None" +       "tuple[int, ...]" is not assignable to "int" +       "tuple[int, ...]" is not assignable to "None" (reportArgumentType) + /torch/nn/modules/upsampling.py:178:13 - error: Argument of type "_ratio_any_t | None" cannot be assigned to parameter "scale_factor" of type "list[float] | None" in function "interpolate" +   Type "_ratio_any_t | None" is not assignable to type "list[float] | None" +     Type "float" is not assignable to type "list[float] | None" +       "float" is not assignable to "list[float]" +       "float" is not assignable to "None" (reportArgumentType) +/torch/nn/modules/utils.py + /torch/nn/modules/utils.py:72:32 - error: Cannot access attribute "_metadata" for class "dict[str, Any]" +   Attribute "_metadata" is unknown (reportAttributeAccessIssue) + /torch/nn/modules/utils.py:83:28 - error: Cannot access attribute "_metadata" for class "dict[str, Any]" +   Attribute "_metadata" is unknown (reportAttributeAccessIssue) + /torch/nn/modules/utils.py:83:59 - error: Cannot access attribute "_metadata" for class "dict[str, Any]" +   Attribute "_metadata" is unknown (reportAttributeAccessIssue) +/torch/nn/parallel/data_parallel.py + /torch/nn/parallel/data_parallel.py:24:53 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/data_parallel.py:139:42 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/data_parallel.py:140:36 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/data_parallel.py:144:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/data_parallel.py:165:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/data_parallel.py:200:69 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/data_parallel.py:201:56 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/data_parallel.py:207:42 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/data_parallel.py:218:63 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/data_parallel.py:225:38 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/data_parallel.py:226:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/data_parallel.py:264:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/parallel/distributed.py + /torch/nn/parallel/distributed.py:43:9 - error: "rpc" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/nn/parallel/distributed.py:90:24 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/distributed.py:91:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/distributed.py:92:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/distributed.py:693:34 - error: "_get_default_group" is possibly unbound (reportPossiblyUnboundVariable) + /torch/nn/parallel/distributed.py:862:13 - error: "_verify_param_shape_across_processes" is possibly unbound (reportPossiblyUnboundVariable) + /torch/nn/parallel/distributed.py:862:50 - error: Argument of type "ProcessGroup | Unknown | None" cannot be assigned to parameter "process_group" of type "ProcessGroup" in function "_verify_param_shape_across_processes" +   Type "ProcessGroup | Unknown | None" is not assignable to type "ProcessGroup" +     "None" is not assignable to "ProcessGroup" (reportArgumentType) + /torch/nn/parallel/distributed.py:864:13 - error: "_sync_module_states" is possibly unbound (reportPossiblyUnboundVariable) + /torch/nn/parallel/distributed.py:866:31 - error: Argument of type "ProcessGroup | Unknown | None" cannot be assigned to parameter "process_group" of type "ProcessGroup" in function "_sync_module_states" +   Type "ProcessGroup | Unknown | None" is not assignable to type "ProcessGroup" +     "None" is not assignable to "ProcessGroup" (reportArgumentType) + /torch/nn/parallel/distributed.py:889:37 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/distributed.py:915:37 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/distributed.py:940:29 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/nn/parallel/distributed.py:941:29 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue) + /torch/nn/parallel/distributed.py:944:27 - error: "trace_rules" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/nn/parallel/distributed.py:947:27 - error: "trace_rules" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/nn/parallel/distributed.py:972:60 - error: "size" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/nn/parallel/distributed.py:973:61 - error: Argument of type "ProcessGroup | Unknown | Any | None" cannot be assigned to parameter "group" of type "RANK_TYPES" in function "all_reduce" +   Type "ProcessGroup | Unknown | Any | None" is not assignable to type "RANK_TYPES" +     Type "None" is not assignable to type "RANK_TYPES" +       "None" is not assignable to "list[int]" +       "None" is not assignable to "list[list[int]]" +       "None" is not assignable to "ProcessGroup" +       "None" is not assignable to "DeviceMesh" +       "None" is not assignable to "tuple[Unknown, int]" +       "None" is not assignable to "str" (reportArgumentType) + /torch/nn/parallel/distributed.py:1107:21 - error: "_alloc_storage" is possibly unbound (reportPossiblyUnboundVariable) + /torch/nn/parallel/distributed.py:1125:36 - error: "Event" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/parallel/parallel_apply.py + /torch/nn/parallel/parallel_apply.py:35:35 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/parallel_apply.py:67:15 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/parallel_apply.py:68:15 - error: "is_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/parallel_apply.py:76:29 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/parallel_apply.py:77:23 - error: "Stream" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/parallel_apply.py:90:37 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/parallel_apply.py:91:29 - error: Cannot access attribute "index" for class "int" +   Attribute "index" is unknown (reportAttributeAccessIssue) + /torch/nn/parallel/parallel_apply.py:91:29 - error: "index" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/nn/parallel/parallel_apply.py:97:17 - error: Object of type "None" cannot be used with "with" (reportOptionalContextManager) +/torch/nn/parallel/replicate.py + /torch/nn/parallel/replicate.py:13:26 - error: "ScriptMethod" is unknown import symbol (reportAttributeAccessIssue) + /torch/nn/parallel/replicate.py:30:40 - error: "ScriptMethod" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/replicate.py:85:35 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/replicate.py:109:35 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/parallel/scatter_gather.py + /torch/nn/parallel/scatter_gather.py:34:5 - error: Overload 1 for "scatter" overlaps overload 2 and returns an incompatible type (reportOverlappingOverload) + /torch/nn/parallel/scatter_gather.py:36:39 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/scatter_gather.py:44:39 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/scatter_gather.py:97:39 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parallel/scatter_gather.py:114:53 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/parameter.py + /torch/nn/parameter.py:5:22 - error: "_disabled_torch_function_impl" is unknown import symbol (reportAttributeAccessIssue) + /torch/nn/parameter.py:19:31 - error: "_TensorMeta" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parameter.py:85:9 - error: Method "__repr__" overrides class "Tensor" in an incompatible manner +   Parameter "tensor_contents" is missing in override (reportIncompatibleMethodOverride) + /torch/nn/parameter.py:125:15 - error: "_has_compatible_shallow_copy_type" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parameter.py:146:27 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parameter.py:148:31 - error: Cannot access attribute "cls_to_become" for class "UninitializedTensorMixin*" +   Attribute "cls_to_become" is unknown (reportAttributeAccessIssue) + /torch/nn/parameter.py:222:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parameter.py:236:28 - error: "_TensorMeta" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/parameter.py:300:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/parameter.pyi + /torch/nn/parameter.pyi:3:19 - error: "device" is unknown import symbol (reportAttributeAccessIssue) + /torch/nn/parameter.pyi:3:27 - error: "dtype" is unknown import symbol (reportAttributeAccessIssue) +/torch/nn/utils/_expanded_weights/embedding_expanded_weights.py + /torch/nn/utils/_expanded_weights/embedding_expanded_weights.py:39:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) +/torch/nn/utils/_expanded_weights/expanded_weights_impl.py + /torch/nn/utils/_expanded_weights/expanded_weights_impl.py:18:11 - error: "rnn_relu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/_expanded_weights/expanded_weights_impl.py:22:11 - error: "rnn_tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/_expanded_weights/expanded_weights_impl.py:26:11 - error: "lstm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/_expanded_weights/expanded_weights_impl.py:30:11 - error: "gru" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/utils/_expanded_weights/expanded_weights_utils.py + /torch/nn/utils/_expanded_weights/expanded_weights_utils.py:134:34 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/_expanded_weights/expanded_weights_utils.py:143:58 - error: "grad_sample" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/nn/utils/_expanded_weights/expanded_weights_utils.py:144:22 - error: "grad_sample" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/nn/utils/_expanded_weights/expanded_weights_utils.py:144:45 - error: "grad_sample" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/nn/utils/_expanded_weights/expanded_weights_utils.py:146:22 - error: "grad_sample" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py + /torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py:50:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) +/torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py + /torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py:40:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) +/torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py + /torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py:46:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) +/torch/nn/utils/_expanded_weights/linear_expanded_weights.py + /torch/nn/utils/_expanded_weights/linear_expanded_weights.py:39:9 - error: Method "backward" overrides class "_SingleLevelFunction" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "grad_outputs" is missing in override (reportIncompatibleMethodOverride) +/torch/nn/utils/clip_grad.py + /torch/nn/utils/clip_grad.py:83:22 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/clip_grad.py:86:21 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/clip_grad.py:86:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/clip_grad.py:96:32 - error: "_foreach_norm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/clip_grad.py:107:15 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/clip_grad.py:110:37 - error: "logical_or" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/clip_grad.py:162:21 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/clip_grad.py:162:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/clip_grad.py:169:31 - error: "clamp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/clip_grad.py:174:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/clip_grad.py:182:19 - error: "mul_" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/nn/utils/clip_grad.py:291:19 - error: "_foreach_clamp_min_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/clip_grad.py:292:19 - error: "_foreach_clamp_max_" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/utils/convert_parameters.py + /torch/nn/utils/convert_parameters.py:25:18 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/convert_parameters.py:72:46 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/utils/fusion.py + /torch/nn/utils/fusion.py:84:24 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/fusion.py:86:22 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/fusion.py:88:22 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/fusion.py:89:26 - error: "rsqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/fusion.py:99:22 - error: Operator "-" not supported for "None" (reportOptionalOperand) + /torch/nn/utils/fusion.py:105:49 - error: "requires_grad" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/nn/utils/fusion.py:182:26 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/fusion.py:183:29 - error: "rsqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/fusion.py:186:17 - error: Operator "-" not supported for "None" (reportOptionalOperand) + /torch/nn/utils/fusion.py:189:27 - error: "requires_grad" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/nn/utils/memory_format.py + /torch/nn/utils/memory_format.py:12:38 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/memory_format.py:92:38 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/utils/parametrizations.py + /torch/nn/utils/parametrizations.py:85:27 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/parametrizations.py:91:27 - error: "matrix_exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/parametrizations.py:94:28 - error: "eye" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/parametrizations.py:96:27 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/parametrizations.py:96:57 - error: "add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/parametrizations.py:101:21 - error: "Q" is possibly unbound (reportPossiblyUnboundVariable) + /torch/nn/utils/parametrizations.py:114:29 - error: "Q" is possibly unbound (reportPossiblyUnboundVariable) + /torch/nn/utils/parametrizations.py:117:17 - error: "Q" is possibly unbound (reportPossiblyUnboundVariable) + /torch/nn/utils/parametrizations.py:159:28 - error: "geqrf" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/parametrizations.py:177:27 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/parametrizations.py:180:27 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/parametrizations.py:188:28 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/parametrizations.py:515:51 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/parametrizations.py:516:51 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/parametrizations.py:520:27 - error: "vdot" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/parametrizations.py:520:41 - error: "mv" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/utils/parametrize.py + /torch/nn/utils/parametrize.py:182:38 - error: Cannot access attribute "dtype" for class "Sequence[Unknown]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/nn/utils/parametrize.py:187:59 - error: Cannot access attribute "dtype" for class "Sequence[Unknown]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/nn/utils/parametrize.py:191:39 - error: Cannot access attribute "device" for class "Sequence[Unknown]" +   Attribute "device" is unknown (reportAttributeAccessIssue) + /torch/nn/utils/parametrize.py:196:60 - error: Cannot access attribute "device" for class "Sequence[Unknown]" +   Attribute "device" is unknown (reportAttributeAccessIssue) + /torch/nn/utils/parametrize.py:283:54 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/nn/utils/parametrize.py:411:27 - error: "_get_tracing_state" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/utils/prune.py + /torch/nn/utils/prune.py:1115:51 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/utils/rnn.py + /torch/nn/utils/rnn.py:105:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:113:29 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:114:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:160:20 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:169:20 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:178:36 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:181:36 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:184:36 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:187:36 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:190:36 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:193:36 - error: "short" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:196:36 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:199:36 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:268:20 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:270:31 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:320:21 - error: "_get_tracing_state" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:328:25 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:328:56 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:330:42 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:335:41 - error: "sort" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:340:29 - error: "_pack_padded_sequence" is not a known attribute of module "torch._VF" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:408:34 - error: "_pad_packed_sequence" is not a known attribute of module "torch._VF" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:482:21 - error: "_nn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:529:17 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/rnn.py:572:21 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/utils/spectral_norm.py + /torch/nn/utils/spectral_norm.py:104:31 - error: "mv" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/spectral_norm.py:106:43 - error: "mv" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/spectral_norm.py:109:53 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/spectral_norm.py:110:53 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/spectral_norm.py:112:23 - error: "dot" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/nn/utils/spectral_norm.py:112:36 - error: "mv" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/nn/utils/weight_norm.py + /torch/nn/utils/weight_norm.py:7:19 - error: "_weight_norm" is unknown import symbol (reportAttributeAccessIssue) + /torch/nn/utils/weight_norm.py:7:33 - error: "norm_except_dim" is unknown import symbol (reportAttributeAccessIssue) +/torch/onnx/__init__.py + /torch/onnx/__init__.py:20:22 - warning: Import "torch._C._onnx" could not be resolved from source (reportMissingModuleSource) + /torch/onnx/__init__.py:21:6 - warning: Import "torch._C._onnx" could not be resolved from source (reportMissingModuleSource) + /torch/onnx/__init__.py:63:7 - error: Variable not allowed in type expression (reportInvalidTypeForm) +/torch/onnx/_internal/_lazy_import.py + /torch/onnx/_internal/_lazy_import.py:32:12 - error: Import "onnxscript" could not be resolved (reportMissingImports) + /torch/onnx/_internal/_lazy_import.py:33:12 - error: Import "onnxscript._framework_apis.torch_2_9" could not be resolved (reportMissingImports) +/torch/onnx/_internal/exporter/_analysis.py + /torch/onnx/_internal/exporter/_analysis.py:28:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_analysis.py:31:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_analysis.py:54:30 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_analysis.py:54:61 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_analysis.py:57:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_analysis.py:58:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/exporter/_building.py + /torch/onnx/_internal/exporter/_building.py:19:8 - error: Import "onnxscript" could not be resolved (reportMissingImports) + /torch/onnx/_internal/exporter/_building.py:20:6 - error: Import "onnxscript" could not be resolved (reportMissingImports) + /torch/onnx/_internal/exporter/_building.py:21:6 - error: Import "onnxscript.ir" could not be resolved (reportMissingImports) + /torch/onnx/_internal/exporter/_building.py:132:29 - error: Cannot assign to attribute "name" for class "int" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:132:29 - error: Cannot assign to attribute "name" for class "float" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:132:29 - error: Cannot assign to attribute "name" for class "bool" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:132:29 - error: Cannot assign to attribute "name" for class "str" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:132:29 - error: Cannot assign to attribute "name" for class "Sequence[int]" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:132:29 - error: Cannot assign to attribute "name" for class "Sequence[float]" +   Attribute "name" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:176:20 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/exporter/_building.py:180:24 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/exporter/_building.py:182:55 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/exporter/_building.py:210:20 - error: Cannot access attribute "dtype" for class "Sequence[ValidAttributeType]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:210:20 - error: Cannot access attribute "dtype" for class "Sequence[int]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:210:20 - error: Cannot access attribute "dtype" for class "Sequence[float]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:210:20 - error: "dtype" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/exporter/_building.py:224:50 - error: Cannot access attribute "dtype" for class "int" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:224:50 - error: Cannot access attribute "dtype" for class "float" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:224:50 - error: Cannot access attribute "dtype" for class "bool" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:224:50 - error: Cannot access attribute "dtype" for class "str" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:224:50 - error: Cannot access attribute "dtype" for class "Sequence[int]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:224:50 - error: Cannot access attribute "dtype" for class "Sequence[float]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:224:50 - error: "dtype" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/exporter/_building.py:225:28 - error: Cannot access attribute "dtype" for class "int" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:225:28 - error: Cannot access attribute "dtype" for class "float" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:225:28 - error: Cannot access attribute "dtype" for class "bool" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:225:28 - error: Cannot access attribute "dtype" for class "str" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:225:28 - error: Cannot access attribute "dtype" for class "Sequence[int]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:225:28 - error: Cannot access attribute "dtype" for class "Sequence[float]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:225:28 - error: "dtype" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/exporter/_building.py:271:15 - error: Type "tuple[int | float, float | Literal[0]]" is not assignable to declared type "bool | int | float | str | tuple[int] | tuple[float] | tuple[bool] | list[int] | list[float] | list[bool]" +   Type "tuple[int | float, float | Literal[0]]" is not assignable to type "bool | int | float | str | tuple[int] | tuple[float] | tuple[bool] | list[int] | list[float] | list[bool]" +     "tuple[int | float, float | Literal[0]]" is not assignable to "bool" +     "tuple[int | float, float | Literal[0]]" is not assignable to "int" +     "tuple[int | float, float | Literal[0]]" is not assignable to "float" +     "tuple[int | float, float | Literal[0]]" is not assignable to "str" +     "tuple[int | float, float | Literal[0]]" is not assignable to "tuple[int]" +       Tuple size mismatch; expected 1 but received 2 +     "tuple[int | float, float | Literal[0]]" is not assignable to "tuple[float]" + ... (reportAssignmentType) + /torch/onnx/_internal/exporter/_building.py:601:22 - error: "defs" is not a known attribute of module "onnx" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:620:35 - error: Cannot access attribute "dtype" for class "Sequence[ValidAttributeType]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:620:35 - error: Cannot access attribute "dtype" for class "int" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:620:35 - error: Cannot access attribute "dtype" for class "float" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:620:35 - error: Cannot access attribute "dtype" for class "bool" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:620:35 - error: Cannot access attribute "dtype" for class "str" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:620:35 - error: Cannot access attribute "dtype" for class "Sequence[int]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:620:35 - error: Cannot access attribute "dtype" for class "Sequence[float]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:620:35 - error: "dtype" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/exporter/_building.py:621:37 - error: Cannot access attribute "dtype" for class "Sequence[ValidAttributeType]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:621:37 - error: Cannot access attribute "dtype" for class "int" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:621:37 - error: Cannot access attribute "dtype" for class "float" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:621:37 - error: Cannot access attribute "dtype" for class "bool" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:621:37 - error: Cannot access attribute "dtype" for class "str" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:621:37 - error: Cannot access attribute "dtype" for class "Sequence[int]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:621:37 - error: Cannot access attribute "dtype" for class "Sequence[float]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:621:37 - error: "dtype" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/exporter/_building.py:624:34 - error: Cannot access attribute "dtype" for class "Sequence[ValidAttributeType]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:624:34 - error: Cannot access attribute "dtype" for class "int" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:624:34 - error: Cannot access attribute "dtype" for class "float" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:624:34 - error: Cannot access attribute "dtype" for class "bool" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:624:34 - error: Cannot access attribute "dtype" for class "str" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:624:34 - error: Cannot access attribute "dtype" for class "Sequence[int]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:624:34 - error: Cannot access attribute "dtype" for class "Sequence[float]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:624:34 - error: "dtype" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/exporter/_building.py:624:55 - error: Cannot access attribute "dtype" for class "Sequence[ValidAttributeType]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:624:55 - error: Cannot access attribute "dtype" for class "int" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:624:55 - error: Cannot access attribute "dtype" for class "float" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:624:55 - error: Cannot access attribute "dtype" for class "bool" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:624:55 - error: Cannot access attribute "dtype" for class "str" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:624:55 - error: Cannot access attribute "dtype" for class "Sequence[int]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:624:55 - error: Cannot access attribute "dtype" for class "Sequence[float]" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:624:55 - error: "dtype" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/exporter/_building.py:673:32 - error: Cannot access attribute "value" for class "int" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:673:32 - error: Cannot access attribute "value" for class "float" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:673:32 - error: Cannot access attribute "value" for class "bool" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:673:32 - error: Cannot access attribute "value" for class "str" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:673:32 - error: Cannot access attribute "value" for class "Sequence[int]" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:673:32 - error: Cannot access attribute "value" for class "Sequence[float]" +   Attribute "value" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_building.py:673:32 - error: "value" is not a known attribute of "None" (reportOptionalMemberAccess) +/torch/onnx/_internal/exporter/_capture_strategies.py + /torch/onnx/_internal/exporter/_capture_strategies.py:112:34 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/onnx/_internal/exporter/_capture_strategies.py:142:47 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/onnx/_internal/exporter/_capture_strategies.py:145:49 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/onnx/_internal/exporter/_capture_strategies.py:149:40 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/onnx/_internal/exporter/_capture_strategies.py:172:34 - error: "exc" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_capture_strategies.py:227:34 - error: "exc" is not a known attribute of module "torch._dynamo" (reportAttributeAccessIssue) +/torch/onnx/_internal/exporter/_compat.py + /torch/onnx/_internal/exporter/_compat.py:46:7 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/onnx/_internal/exporter/_compat.py:236:18 - error: "save" is not a known attribute of module "onnx" (reportAttributeAccessIssue) +/torch/onnx/_internal/exporter/_core.py + /torch/onnx/_internal/exporter/_core.py:18:8 - error: Import "onnxscript" could not be resolved (reportMissingImports) + /torch/onnx/_internal/exporter/_core.py:19:8 - error: Import "onnxscript.evaluator" could not be resolved (reportMissingImports) + /torch/onnx/_internal/exporter/_core.py:20:6 - error: Import "onnxscript" could not be resolved (reportMissingImports) + /torch/onnx/_internal/exporter/_core.py:21:6 - error: Import "onnxscript.ir" could not be resolved (reportMissingImports) + /torch/onnx/_internal/exporter/_core.py:53:34 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:54:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:55:11 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:56:11 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:57:11 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:58:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:59:11 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:60:11 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:61:11 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:62:11 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:63:11 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:64:11 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:65:11 - error: "float4_e2m1fn_x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:66:11 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:67:11 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:68:11 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:69:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:70:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:71:11 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:72:11 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:73:11 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:107:44 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:114:34 - error: "float4_e2m1fn_x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:139:37 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:148:40 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:245:36 - error: "float4_e2m1fn_x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:266:44 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:270:46 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:480:31 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:480:45 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:480:66 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:482:30 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:856:24 - error: "FunctionSchema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:856:53 - error: Cannot access attribute "_schema" for class "FunctionType" +   Attribute "_schema" is unknown (reportFunctionMemberAccess) + /torch/onnx/_internal/exporter/_core.py:876:40 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:878:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:892:42 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:894:42 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_core.py:1123:12 - error: "name" is possibly unbound (reportPossiblyUnboundVariable) + /torch/onnx/_internal/exporter/_core.py:1278:7 - error: Variable not allowed in type expression (reportInvalidTypeForm) +/torch/onnx/_internal/exporter/_dispatching.py + /torch/onnx/_internal/exporter/_dispatching.py:8:6 - error: Import "onnxscript" could not be resolved (reportMissingImports) + /torch/onnx/_internal/exporter/_dispatching.py:18:45 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:19:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:20:11 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:21:11 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:22:11 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:23:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:24:11 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:25:11 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:26:11 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:27:11 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:28:11 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:29:11 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:30:11 - error: "float4_e2m1fn_x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:31:11 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:32:11 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:33:11 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:34:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:35:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:36:11 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:37:11 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:38:11 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:42:56 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:66:32 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:68:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:68:47 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:68:68 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:209:72 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:242:34 - error: "Argument" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_dispatching.py:327:19 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/exporter/_fx_passes.py + /torch/onnx/_internal/exporter/_fx_passes.py:19:48 - error: Argument of type "dict[TorchOp, (...) -> Unknown]" cannot be assigned to parameter "decomp_table" of type "dict[OperatorBase, (...) -> Unknown] | None" in function "run_decompositions" +   Type "dict[TorchOp, (...) -> Unknown]" is not assignable to type "dict[OperatorBase, (...) -> Unknown] | None" +     "dict[TorchOp, (...) -> Unknown]" is not assignable to "dict[OperatorBase, (...) -> Unknown]" +       Type parameter "_KT@dict" is invariant, but "TorchOp" is not the same as "OperatorBase" +     "dict[TorchOp, (...) -> Unknown]" is not assignable to "None" (reportArgumentType) +/torch/onnx/_internal/exporter/_onnx_program.py + /torch/onnx/_internal/exporter/_onnx_program.py:30:12 - error: Import "onnxruntime" could not be resolved (reportMissingImports) + /torch/onnx/_internal/exporter/_onnx_program.py:35:15 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:36:15 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:37:15 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:38:15 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:47:12 - error: Import "onnxruntime" could not be resolved (reportMissingImports) + /torch/onnx/_internal/exporter/_onnx_program.py:135:22 - error: "from_numpy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:135:67 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:137:22 - error: "from_numpy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:137:66 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:139:22 - error: "from_numpy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:139:66 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:141:22 - error: "from_numpy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:141:66 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:143:22 - error: "from_numpy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:143:66 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:144:18 - error: "from_numpy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:150:12 - error: Import "onnxruntime" could not be resolved (reportMissingImports) + /torch/onnx/_internal/exporter/_onnx_program.py:164:29 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:167:37 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:168:35 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:170:35 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:175:23 - error: Cannot access attribute "view" for class "int" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:175:23 - error: Cannot access attribute "view" for class "float" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:175:23 - error: Cannot access attribute "view" for class "str" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:175:23 - error: Cannot access attribute "view" for class "bool" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:201:18 - error: "from_numpy" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_onnx_program.py:240:16 - error: Import "onnxruntime" could not be resolved (reportMissingImports) + /torch/onnx/_internal/exporter/_onnx_program.py:265:16 - error: Import "onnx.reference" could not be resolved (reportMissingImports) + /torch/onnx/_internal/exporter/_onnx_program.py:311:35 - error: "ModelProto" is not a known attribute of module "onnx" (reportAttributeAccessIssue) +/torch/onnx/_internal/exporter/_registration.py + /torch/onnx/_internal/exporter/_registration.py:68:44 - error: Cannot access attribute "function_ir" for class "FunctionType" +   Attribute "function_ir" is unknown (reportFunctionMemberAccess) + /torch/onnx/_internal/exporter/_registration.py:70:44 - error: Cannot access attribute "name" for class "FunctionType" +   Attribute "name" is unknown (reportFunctionMemberAccess) + /torch/onnx/_internal/exporter/_registration.py:72:58 - error: Cannot access attribute "opset" for class "FunctionType" +   Attribute "opset" is unknown (reportFunctionMemberAccess) +/torch/onnx/_internal/exporter/_reporting.py + /torch/onnx/_internal/exporter/_reporting.py:14:10 - error: Import "onnxscript" could not be resolved (reportMissingImports) +/torch/onnx/_internal/exporter/_schemas.py + /torch/onnx/_internal/exporter/_schemas.py:15:8 - error: Import "onnxscript" could not be resolved (reportMissingImports) + /torch/onnx/_internal/exporter/_schemas.py:16:6 - error: Import "onnxscript" could not be resolved (reportMissingImports) + /torch/onnx/_internal/exporter/_schemas.py:178:17 - error: "defs" is not a known attribute of module "onnx" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_schemas.py:193:39 - error: "defs" is not a known attribute of module "onnx" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_schemas.py:194:39 - error: "defs" is not a known attribute of module "onnx" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_schemas.py:381:43 - error: "defs" is not a known attribute of module "onnx" (reportAttributeAccessIssue) +/torch/onnx/_internal/exporter/_tensors.py + /torch/onnx/_internal/exporter/_tensors.py:6:8 - error: Import "onnxscript" could not be resolved (reportMissingImports) + /torch/onnx/_internal/exporter/_tensors.py:7:6 - error: Import "onnxscript" could not be resolved (reportMissingImports) +/torch/onnx/_internal/exporter/_testing.py + /torch/onnx/_internal/exporter/_testing.py:78:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_testing.py:79:20 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_testing.py:80:48 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py + /torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py:7:6 - error: Import "onnxscript" could not be resolved (reportMissingImports) +/torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py + /torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py:13:8 - error: Import "onnxscript" could not be resolved (reportMissingImports) +/torch/onnx/_internal/exporter/_torchlib/ops/core.py + /torch/onnx/_internal/exporter/_torchlib/ops/core.py:10:6 - error: Import "onnxscript.onnx_opset" could not be resolved (reportMissingImports) +/torch/onnx/_internal/exporter/_torchlib/ops/hop.py + /torch/onnx/_internal/exporter/_torchlib/ops/hop.py:31:10 - error: Import "onnxscript.ir" could not be resolved (reportMissingImports) +/torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py + /torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py:7:6 - error: Import "onnxscript.ir" could not be resolved (reportMissingImports) +/torch/onnx/_internal/exporter/_torchlib/ops/symops.py + /torch/onnx/_internal/exporter/_torchlib/ops/symops.py:9:6 - error: Import "onnxscript.onnx_opset" could not be resolved (reportMissingImports) + /torch/onnx/_internal/exporter/_torchlib/ops/symops.py:13:5 - error: "BOOL" is unknown import symbol (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_torchlib/ops/symops.py:14:5 - error: "FLOAT" is unknown import symbol (reportAttributeAccessIssue) +/torch/onnx/_internal/exporter/_type_casting.py + /torch/onnx/_internal/exporter/_type_casting.py:8:34 - error: "float4_e2m1fn_x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_type_casting.py:9:30 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_type_casting.py:31:34 - error: "float4_e2m1fn_x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/exporter/_verification.py + /torch/onnx/_internal/exporter/_verification.py:19:10 - error: Import "onnxscript" could not be resolved (reportMissingImports) + /torch/onnx/_internal/exporter/_verification.py:55:27 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:56:25 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:78:30 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:80:28 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:85:22 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:87:25 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:89:31 - error: "histogram" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:90:31 - error: "histogram" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:97:37 - error: Cannot access attribute "dtype" for class "float" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:97:37 - error: Cannot access attribute "dtype" for class "int" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:97:37 - error: Cannot access attribute "dtype" for class "bool" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:98:33 - error: Cannot access attribute "dtype" for class "float" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:98:33 - error: Cannot access attribute "dtype" for class "int" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:98:33 - error: Cannot access attribute "dtype" for class "bool" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:132:42 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:132:66 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:133:32 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:134:38 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:135:34 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:136:14 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:137:26 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:138:22 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/exporter/_verification.py:140:24 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/fx/passes/type_promotion.py + /torch/onnx/_internal/fx/passes/type_promotion.py:53:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/passes/type_promotion.py:56:39 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/passes/type_promotion.py:59:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/passes/type_promotion.py:153:9 - error: Method "__eq__" overrides class "TypePromotionRule" in an incompatible manner +   Parameter 2 mismatch: base parameter "other" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/onnx/_internal/fx/passes/type_promotion.py:168:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/passes/type_promotion.py:168:64 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/passes/type_promotion.py:169:16 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/passes/type_promotion.py:270:9 - error: Method "__eq__" overrides class "TypePromotionRule" in an incompatible manner +   Parameter 2 mismatch: base parameter "other" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/onnx/_internal/fx/passes/type_promotion.py:290:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/passes/type_promotion.py:329:35 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/passes/type_promotion.py:331:30 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/passes/type_promotion.py:331:58 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/passes/type_promotion.py:331:75 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/passes/type_promotion.py:354:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/passes/type_promotion.py:360:31 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/passes/type_promotion.py:1361:26 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/passes/type_promotion.py:1381:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/passes/type_promotion.py:1445:26 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/passes/type_promotion.py:1446:22 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/passes/type_promotion.py:1447:19 - error: "node" is not a known attribute of module "torch.fx" (reportAttributeAccessIssue) +/torch/onnx/_internal/fx/type_utils.py + /torch/onnx/_internal/fx/type_utils.py:17:12 - error: Import "onnx.defs" could not be resolved (reportMissingImports) + /torch/onnx/_internal/fx/type_utils.py:25:30 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:28:48 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:33:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:33:56 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:37:71 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:45:53 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:77:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:83:65 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:89:58 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:90:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:91:11 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:92:11 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:93:11 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:94:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:95:11 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:96:11 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:97:11 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:98:11 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:99:11 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:100:11 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:101:11 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:102:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:103:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:109:11 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:110:11 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:111:11 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:121:17 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:122:16 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:123:18 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:124:20 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:127:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:127:44 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:128:11 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:128:28 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:129:11 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:129:28 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:130:11 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:130:29 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:134:25 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:135:27 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:136:26 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:139:47 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:145:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:146:11 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:147:11 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:148:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:149:11 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:150:11 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:151:11 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:152:11 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:153:11 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:154:11 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:155:11 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:156:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:157:11 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:158:11 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:159:11 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:160:11 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:161:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:174:11 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:176:11 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:177:11 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/fx/type_utils.py:178:11 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/torchscript_exporter/_experimental.py + /torch/onnx/_internal/torchscript_exporter/_experimental.py:8:8 - warning: Import "torch._C._onnx" could not be resolved from source (reportMissingModuleSource) +/torch/onnx/_internal/torchscript_exporter/_globals.py + /torch/onnx/_internal/torchscript_exporter/_globals.py:9:8 - warning: Import "torch._C._onnx" could not be resolved from source (reportMissingModuleSource) +/torch/onnx/_internal/torchscript_exporter/_type_utils.py + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:11:22 - warning: Import "torch._C._onnx" could not be resolved from source (reportMissingModuleSource) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:137:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:180:37 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:196:44 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:197:40 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:197:57 - error: "node" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:213:29 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:213:43 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:215:45 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:217:49 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:218:29 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:218:46 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:219:22 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:225:41 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:228:18 - error: "node" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:229:19 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:229:36 - error: "NoneType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:232:33 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:241:66 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:254:30 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:370:31 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:371:32 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:372:31 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:373:32 - error: "short" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:374:30 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:375:32 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:376:31 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:377:32 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:378:33 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:379:36 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:380:36 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:381:37 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:382:32 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:383:33 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:384:33 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:385:35 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:386:37 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:387:39 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:388:41 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/_type_utils.py:389:41 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/torchscript_exporter/jit_utils.py + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:41:15 - error: "Graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:42:15 - error: "Block" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:44:23 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:45:31 - error: "IValue" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:46:18 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:46:28 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:47:27 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:48:24 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:58:38 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:111:38 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:154:17 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:158:46 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:201:30 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:262:27 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:269:24 - error: "Graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:269:35 - error: "Block" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:277:9 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:279:38 - error: "Graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:283:40 - error: "Block" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:302:24 - error: "node" is possibly unbound (reportPossiblyUnboundVariable) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:305:12 - error: "_jit_pass_onnx_node_shape_type_inference" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:305:53 - error: "node" is possibly unbound (reportPossiblyUnboundVariable) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:307:12 - error: "node" is possibly unbound (reportPossiblyUnboundVariable) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:322:29 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:337:22 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:338:36 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:341:37 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:341:53 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/jit_utils.py:344:34 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/torchscript_exporter/symbolic_helper.py + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:116:8 - warning: Import "torch._C._onnx" could not be resolved from source (reportMissingModuleSource) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:218:24 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:220:32 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:225:33 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:231:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:237:29 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:259:33 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:259:51 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:269:35 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:269:54 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:280:46 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:280:65 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:554:68 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:558:29 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:568:22 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:569:36 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:573:32 - error: "JitType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:573:47 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:574:32 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:579:20 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:583:27 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:587:51 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:590:27 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:603:31 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:607:28 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:618:28 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:622:29 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:626:29 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:630:29 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:640:32 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:645:30 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:660:49 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:666:47 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:672:29 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:684:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:690:29 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:703:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:709:29 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:771:48 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:776:58 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:844:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:844:74 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:845:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:855:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:855:66 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:873:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:873:68 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:875:66 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:923:51 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:923:78 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:937:51 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:937:78 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:971:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:971:74 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:994:50 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:994:75 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1006:24 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1006:24 - error: "__getitem__" method not defined on type "int" (reportIndexIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1006:24 - error: "__getitem__" method not defined on type "float" (reportIndexIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1006:24 - error: "__getitem__" method not defined on type "bool" (reportIndexIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1011:39 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1011:75 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1024:46 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1024:66 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1026:35 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1044:46 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1044:66 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1046:43 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1064:8 - error: Operator "in" not supported for types "Literal['linear']" and "Number | Unknown | str | Any | list[int] | list[float] | Tensor | Sequence[Unknown] | None" +   Operator "in" not supported for types "Literal['linear']" and "None" +   Operator "in" not supported for types "Literal['linear']" and "int" +   Operator "in" not supported for types "Literal['linear']" and "float" +   Operator "in" not supported for types "Literal['linear']" and "bool" (reportOperatorIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1066:8 - error: Operator "in" not supported for types "Literal['cubic']" and "Number | Unknown | str | Any | list[int] | list[float] | Tensor | Sequence[Unknown] | None" +   Operator "in" not supported for types "Literal['cubic']" and "None" +   Operator "in" not supported for types "Literal['cubic']" and "int" +   Operator "in" not supported for types "Literal['cubic']" and "float" +   Operator "in" not supported for types "Literal['cubic']" and "bool" (reportOperatorIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1082:53 - error: "dim" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1082:53 - error: Cannot access attribute "dim" for class "int" +   Attribute "dim" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1082:53 - error: Cannot access attribute "dim" for class "float" +   Attribute "dim" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1082:53 - error: Cannot access attribute "dim" for class "bool" +   Attribute "dim" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1082:53 - error: Cannot access attribute "dim" for class "str" +   Attribute "dim" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1082:53 - error: Cannot access attribute "dim" for class "list[int]" +   Attribute "dim" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1082:53 - error: Cannot access attribute "dim" for class "list[float]" +   Attribute "dim" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1082:53 - error: Cannot access attribute "dim" for class "Sequence[Unknown]" +   Attribute "dim" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1097:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1098:19 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1115:54 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1124:31 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1124:55 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1210:8 - error: Operator "in" not supported for types "Literal['linear']" and "Number | Unknown | str | Any | list[int] | list[float] | Tensor | Sequence[Unknown] | None" +   Operator "in" not supported for types "Literal['linear']" and "None" +   Operator "in" not supported for types "Literal['linear']" and "int" +   Operator "in" not supported for types "Literal['linear']" and "float" +   Operator "in" not supported for types "Literal['linear']" and "bool" (reportOperatorIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1212:8 - error: Operator "in" not supported for types "Literal['cubic']" and "Number | Unknown | str | Any | list[int] | list[float] | Tensor | Sequence[Unknown] | None" +   Operator "in" not supported for types "Literal['cubic']" and "None" +   Operator "in" not supported for types "Literal['cubic']" and "int" +   Operator "in" not supported for types "Literal['cubic']" and "float" +   Operator "in" not supported for types "Literal['cubic']" and "bool" (reportOperatorIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1233:45 - error: "dim" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1233:45 - error: Cannot access attribute "dim" for class "int" +   Attribute "dim" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1233:45 - error: Cannot access attribute "dim" for class "float" +   Attribute "dim" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1233:45 - error: Cannot access attribute "dim" for class "bool" +   Attribute "dim" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1233:45 - error: Cannot access attribute "dim" for class "str" +   Attribute "dim" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1233:45 - error: Cannot access attribute "dim" for class "list[int]" +   Attribute "dim" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1233:45 - error: Cannot access attribute "dim" for class "list[float]" +   Attribute "dim" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1233:45 - error: Cannot access attribute "dim" for class "Sequence[Unknown]" +   Attribute "dim" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1261:56 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1261:79 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1263:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1263:66 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1285:56 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1285:79 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1331:50 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1345:50 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1352:75 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1369:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1372:58 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1385:8 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1386:8 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1387:8 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1410:23 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1437:65 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1460:8 - error: Operator "<" not supported for types "Unknown | int | float | bool | str | Any | list[int] | list[float] | None" and "Literal[0]" +   Operator "<" not supported for types "None" and "Literal[0]" +   Operator "<" not supported for types "str" and "Literal[0]" +   Operator "<" not supported for types "list[int]" and "Literal[0]" +   Operator "<" not supported for types "list[float]" and "Literal[0]" (reportOperatorIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1480:48 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1505:30 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1516:28 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1534:31 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1534:82 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1541:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1541:71 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1590:54 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1590:79 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1597:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1597:69 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1639:17 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1641:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1641:25 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1641:35 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1641:45 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1687:16 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1688:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1689:20 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1690:14 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1691:9 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1757:60 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1757:84 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1970:51 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1970:77 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1990:51 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1990:77 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2016:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2031:50 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2031:81 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2042:51 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2042:75 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2050:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2068:50 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2068:81 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2093:53 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2095:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2099:65 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2116:77 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2155:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2155:67 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2165:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2165:67 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2182:20 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2186:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2194:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2194:71 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2226:52 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2226:77 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2232:68 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2269:49 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2269:73 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2278:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2278:70 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2333:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2334:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2335:11 - error: "short" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2336:11 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2337:11 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2338:11 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2339:11 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2340:11 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2341:11 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2342:11 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2343:11 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2344:11 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2345:11 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2346:11 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2347:11 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2348:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2355:19 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2356:19 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2357:21 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2358:20 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2359:19 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2360:18 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2361:19 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2362:20 - error: "short" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2363:19 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2364:27 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2365:28 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2366:20 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2367:21 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2368:21 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2369:23 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:11:8 - warning: Import "torch._C._onnx" could not be resolved from source (reportMissingModuleSource) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:102:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:102:69 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:109:46 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:109:68 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:130:14 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:137:9 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:143:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:143:68 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:161:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:161:68 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:214:14 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:224:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:230:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:230:68 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:252:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:253:45 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:254:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:261:51 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:261:75 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:263:58 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:263:82 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:315:19 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:406:19 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:487:20 - error: "None" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:495:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:496:42 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:497:44 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:498:42 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:499:43 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:628:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:635:58 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:635:75 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:641:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:641:65 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:645:52 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:771:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:777:19 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:783:65 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:788:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:798:66 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:804:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:1181:18 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:1183:18 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:1184:23 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:1185:9 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:14:22 - warning: Import "torch._C._onnx" could not be resolved from source (reportMissingModuleSource) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:100:50 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:104:15 - error: Type "Unknown | tuple[Unknown, ...]" is not assignable to declared type "float" +   Type "Unknown | tuple[Unknown, ...]" is not assignable to type "float" +     "tuple[Unknown, ...]" is not assignable to "float" (reportAssignmentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:106:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:108:15 - error: Type "Unknown | tuple[Unknown, ...]" is not assignable to declared type "float" +   Type "Unknown | tuple[Unknown, ...]" is not assignable to type "float" +     "tuple[Unknown, ...]" is not assignable to "float" (reportAssignmentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:110:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:189:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:193:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:320:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:420:49 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:420:73 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:444:63 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:448:20 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:449:22 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:450:42 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:462:57 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:591:60 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:594:54 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:621:52 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:621:76 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:622:51 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:622:77 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:635:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:635:72 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:656:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:656:66 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:683:66 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:689:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:689:72 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:692:58 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:692:80 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:702:57 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:702:81 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:711:53 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:715:53 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:751:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:752:13 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:753:14 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:754:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:787:23 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:791:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:796:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:801:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:816:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:820:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:844:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:859:62 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:892:55 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:894:52 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:894:72 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:959:44 - error: "None" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:970:45 - error: "None" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:996:42 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:996:64 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1030:42 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1030:64 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1054:56 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1059:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1065:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1067:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1071:25 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1080:56 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1091:42 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1096:63 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1097:65 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1099:60 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1106:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1117:61 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1118:61 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1258:68 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1260:22 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1282:55 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1282:79 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1318:58 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1330:67 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1338:53 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1344:58 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1357:67 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1369:53 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1377:58 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1391:67 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1410:53 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1423:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1423:69 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1425:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1425:68 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1426:49 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1426:78 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1428:35 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1428:68 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1434:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1434:76 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1442:55 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1447:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1447:62 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1452:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1452:70 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1474:55 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:9:22 - warning: Import "torch._C._onnx" could not be resolved from source (reportMissingModuleSource) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:90:48 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:91:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:91:37 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:97:9 - error: Type "Unknown | tuple[Unknown, ...]" is not assignable to declared type "float" +   Type "Unknown | tuple[Unknown, ...]" is not assignable to type "float" +     "tuple[Unknown, ...]" is not assignable to "float" (reportAssignmentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:97:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:98:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:98:66 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:181:40 - error: Operator ">" not supported for types "Number | Unknown | str | Any | list[int] | list[float] | Tensor | Sequence[Unknown]" and "float" +   Operator ">" not supported for types "str" and "float" +   Operator ">" not supported for types "list[int]" and "float" +   Operator ">" not supported for types "list[float]" and "float" +   Operator ">" not supported for types "Sequence[Unknown]" and "float" (reportOperatorIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:215:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:274:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:275:19 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:285:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:286:19 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:319:52 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:320:50 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:321:49 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:326:60 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:329:59 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:338:57 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:354:58 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:428:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:428:65 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:437:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:437:65 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:451:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:451:65 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:460:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:460:65 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:9:8 - warning: Import "torch._C._onnx" could not be resolved from source (reportMissingModuleSource) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:78:52 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:78:76 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:79:51 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:79:77 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:92:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:92:72 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:100:77 - error: Argument of type "Unknown | None" cannot be assigned to parameter "outputs" of type "int" in function "op" +   Type "Unknown | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:115:45 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:117:60 - error: Argument of type "Unknown | None" cannot be assigned to parameter "outputs" of type "int" in function "op" +   Type "Unknown | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:144:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:144:67 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:146:46 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:146:68 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:152:52 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:152:76 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:159:52 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:159:76 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:189:39 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:189:77 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:192:64 - error: Argument of type "Unknown | None" cannot be assigned to parameter "outputs" of type "int" in function "op" +   Type "Unknown | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:199:68 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:206:52 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:206:76 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:242:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:242:67 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:285:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:285:66 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:290:45 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:294:61 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:315:58 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:351:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:351:68 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:389:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:389:68 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:471:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:471:80 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:477:53 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:477:77 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:479:56 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:479:80 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:484:52 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:484:76 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:489:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:489:64 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:492:35 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:492:78 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:510:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:510:66 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:527:45 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:527:72 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:537:49 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:548:65 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:566:62 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:614:53 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:616:21 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:616:43 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:646:60 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:649:69 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:664:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:664:47 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:682:53 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:704:51 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:706:51 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:711:63 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:737:53 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:740:53 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:768:48 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:773:44 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:780:44 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:795:40 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:800:40 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:804:67 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:826:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:826:66 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:87:15 - error: "is_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:122:47 - error: Cannot access attribute "type" for class "tuple[Unknown, ...]" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:123:45 - error: Cannot access attribute "type" for class "tuple[Unknown, ...]" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:144:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:145:19 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:146:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:147:25 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:150:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:171:38 - error: Argument of type "int | None" cannot be assigned to parameter "stop" of type "SupportsIndex" in function "__new__" +   Type "int | None" is not assignable to type "SupportsIndex" +     "None" is incompatible with protocol "SupportsIndex" +       "__index__" is not present (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:194:53 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:195:56 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:222:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:222:74 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:229:48 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:230:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:243:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:243:65 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:245:39 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:245:82 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:253:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:253:74 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:265:48 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:265:69 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:266:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:285:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:285:72 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:286:54 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:286:79 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:291:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:296:49 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:297:52 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py + /torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py:47:39 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py:51:51 - error: "BoolTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py:81:35 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py + /torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:87:12 - error: Argument of type "Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:87:30 - error: Argument of type "Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:97:36 - error: Operator "in" not supported for types "None" and "Unknown | None" +   Operator "in" not supported for types "None" and "None" (reportOperatorIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:99:49 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:99:66 - error: Argument of type "Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:129:20 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:131:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:132:19 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:158:60 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:158:82 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:163:53 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:163:78 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:47:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:49:16 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:50:14 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:64:30 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:67:28 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:109:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:113:25 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:118:9 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:155:35 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:155:72 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:158:35 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:158:61 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:169:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:169:68 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:191:55 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:192:56 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:208:34 - error: "hstack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:209:24 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:209:43 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:209:67 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:213:34 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:241:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:241:68 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:246:27 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:246:38 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:246:65 - error: Cannot access attribute "type" for class "tuple[Unknown, ...]" +   Attribute "type" is unknown (reportAttributeAccessIssue) +/torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:68:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:69:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:70:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:80:28 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:123:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:125:16 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:126:14 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:128:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:128:25 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:128:35 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:175:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:175:67 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:183:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:183:67 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:193:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:193:73 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:217:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:217:71 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:225:20 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:226:19 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:229:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:266:20 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:270:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py + /torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:54:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:55:14 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:80:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:81:14 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:94:46 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py + /torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py:38:22 - warning: Import "torch._C._onnx" could not be resolved from source (reportMissingModuleSource) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py:151:20 - error: "None" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py:258:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py:432:73 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py:457:50 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py:468:57 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:21:8 - warning: Import "torch._C._onnx" could not be resolved from source (reportMissingModuleSource) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:423:49 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:481:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:481:69 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:492:46 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:492:68 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:525:25 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:527:33 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:527:63 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:528:14 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:528:43 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:603:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:648:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:654:31 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:697:57 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:743:49 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:744:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:853:47 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:859:66 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:863:60 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:873:47 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:879:66 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:883:60 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:894:34 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:897:22 - error: "equal" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:963:8 - error: Operator "<" not supported for types "Number | Unknown | str | Any | list[int] | list[float] | Tensor | Sequence[Unknown] | None" and "Literal[0]" +   Operator "<" not supported for types "None" and "Literal[0]" +   Operator "<" not supported for types "str" and "Literal[0]" +   Operator "<" not supported for types "list[int]" and "Literal[0]" +   Operator "<" not supported for types "list[float]" and "Literal[0]" +   Operator "<" not supported for types "Sequence[Unknown]" and "Literal[0]" (reportOperatorIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:966:19 - error: Operator "+" not supported for types "Number | Unknown | str | Any | list[int] | list[float] | Tensor | Sequence[Unknown] | None" and "int" +   Operator "+" not supported for types "None" and "int" +   Operator "+" not supported for types "str" and "int" +   Operator "+" not supported for types "list[int]" and "int" +   Operator "+" not supported for types "list[float]" and "int" +   Operator "+" not supported for types "Sequence[Unknown]" and "int" (reportOperatorIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:967:50 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1056:68 - error: Argument of type "Unknown | None" cannot be assigned to parameter "outputs" of type "int" in function "op" +   Type "Unknown | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1074:73 - error: Argument of type "Unknown | None" cannot be assigned to parameter "outputs" of type "int" in function "op" +   Type "Unknown | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1199:23 - error: Argument of type "Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1254:57 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1274:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1555:19 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1771:39 - error: Argument of type "int | None" cannot be assigned to parameter "dim" of type "int" in function "_prepare_onnx_paddings" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1777:56 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1777:71 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1825:39 - error: Argument of type "int | None" cannot be assigned to parameter "dim" of type "int" in function "_prepare_onnx_paddings" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1838:39 - error: Argument of type "int | None" cannot be assigned to parameter "dim" of type "int" in function "_prepare_onnx_paddings" +   Type "int | None" is not assignable to type "int" +     "None" is not assignable to "int" (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1847:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1848:13 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1849:14 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1850:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1936:20 - error: "None" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2004:35 - error: "DeviceObjType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2005:26 - error: "DeviceObjType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2009:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2009:72 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2019:31 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2021:33 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2164:42 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2164:64 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2193:42 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2193:64 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2216:58 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2291:24 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2312:27 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2362:24 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2387:27 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2659:15 - error: "is_autocast_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2692:47 - error: Cannot access attribute "type" for class "tuple[Unknown, ...]" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2693:45 - error: Cannot access attribute "type" for class "tuple[Unknown, ...]" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2704:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2706:16 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2707:14 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2709:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2709:25 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2709:35 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2721:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2721:69 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2746:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2746:69 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2785:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2787:16 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2788:14 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2791:9 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2818:30 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2829:28 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2846:41 - error: "copy" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2847:13 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2854:13 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2858:55 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2858:79 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2861:53 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2861:77 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2866:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2866:68 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2871:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2871:68 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2876:44 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2890:60 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2899:19 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2913:20 - error: Argument of type "Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2978:44 - error: "None" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2990:45 - error: "None" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3067:74 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3075:46 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3078:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3078:64 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3086:20 - error: Argument of type "Unknown | int | float | bool | str | Any | list[int] | list[float] | None" cannot be assigned to parameter "keepdims_i" of type "int" in function "_reducesum_helper" +   Type "Unknown | int | float | bool | str | Any | list[int] | list[float] | None" is not assignable to type "int" +     "float" is not assignable to "int" (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3110:67 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3116:69 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3454:62 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3485:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3485:68 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3489:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3515:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3545:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3545:68 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3549:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3575:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3597:66 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3606:52 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3606:72 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3610:33 - error: "view" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3610:33 - error: Cannot access attribute "view" for class "int" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3610:33 - error: Cannot access attribute "view" for class "float" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3610:33 - error: Cannot access attribute "view" for class "bool" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3610:33 - error: Cannot access attribute "view" for class "str" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3610:33 - error: Cannot access attribute "view" for class "list[int]" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3610:33 - error: Cannot access attribute "view" for class "list[float]" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3610:33 - error: Cannot access attribute "view" for class "Sequence[Unknown]" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3636:71 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3642:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3696:30 - error: "NoneType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3699:28 - error: "NoneType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3742:30 - error: "NoneType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3745:28 - error: "NoneType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3763:50 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3801:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3810:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3823:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3832:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3842:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3891:20 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4038:53 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4040:21 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4040:43 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4099:44 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4101:44 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4108:44 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4119:12 - error: Argument of type "Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4123:31 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4129:31 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4138:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4144:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4149:26 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4155:31 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4161:25 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4162:25 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4174:31 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4178:25 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4179:25 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4191:12 - error: Argument of type "Unknown | None" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "Unknown | None" is not assignable to type "Sized" +     "None" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4195:31 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4200:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4206:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4213:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4218:26 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4224:31 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4227:25 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4228:25 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4230:25 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4243:31 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4247:25 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4248:25 - error: Object of type "None" is not subscriptable (reportOptionalSubscript) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4463:48 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4564:5 - error: Expression with type "tuple[Unknown | tuple[Unknown, ...], Unknown | tuple[Unknown, ...]] | tuple[Unknown | tuple[Unknown, ...], Unknown | tuple[Unknown, ...], Unknown | tuple[Unknown, ...]] | None" cannot be assigned to target tuple +   Type "tuple[Unknown | tuple[Unknown, ...], Unknown | tuple[Unknown, ...]]" is incompatible with target tuple +     Tuple size mismatch; expected 3 but received 2 (reportAssignmentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4564:25 - error: "None" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4664:62 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4694:48 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4749:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4749:51 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4814:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4814:51 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4840:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4840:51 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5008:36 - error: "view" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5008:36 - error: Cannot access attribute "view" for class "int" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5008:36 - error: Cannot access attribute "view" for class "float" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5008:36 - error: Cannot access attribute "view" for class "bool" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5008:36 - error: Cannot access attribute "view" for class "str" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5008:36 - error: Cannot access attribute "view" for class "list[int]" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5008:36 - error: Cannot access attribute "view" for class "list[float]" +   Attribute "view" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5012:42 - error: Argument of type "Unknown | int | float | bool | str | Any | list[int] | list[float] | None" cannot be assigned to parameter "keepdims_i" of type "int" in function "_reducesum_helper" +   Type "Unknown | int | float | bool | str | Any | list[int] | list[float] | None" is not assignable to type "int" +     "float" is not assignable to "int" (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5014:60 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5014:82 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5040:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5041:19 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5051:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5052:19 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5086:49 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5096:69 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5102:47 - error: "BoolTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5103:43 - error: "BoolTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5110:51 - error: "BoolTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5111:47 - error: "BoolTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5123:45 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5145:45 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5146:58 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5278:54 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5278:76 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5392:52 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5428:52 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5475:20 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5476:19 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5479:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5486:50 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5499:54 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5502:44 - error: Argument of type "Unknown | int | float | str | Any | list[int] | list[float] | Literal[True]" cannot be assigned to parameter "ord" of type "float" +   Type "Unknown | int | float | str | Any | list[int] | list[float] | Literal[True]" is not assignable to type "float" +     "str" is not assignable to "float" (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5503:45 - error: Argument of type "list[int] | Sequence[int] | None" cannot be assigned to parameter "dim" of type "list[int]" +   Type "list[int] | Sequence[int] | None" is not assignable to type "list[int]" +     "Sequence[int]" is not assignable to "list[int]" (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5510:20 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5514:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5523:20 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5524:19 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5527:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5563:12 - error: Operator ">" not supported for types "Unknown | int | float | bool | str | Any | list[int] | list[float]" and "Literal[0]" +   Operator ">" not supported for types "str" and "Literal[0]" +   Operator ">" not supported for types "list[int]" and "Literal[0]" +   Operator ">" not supported for types "list[float]" and "Literal[0]" (reportOperatorIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5568:57 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5576:57 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5652:50 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5660:51 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5660:71 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5680:52 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5685:22 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5685:48 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5686:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5686:50 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5687:21 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5687:45 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5688:22 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5688:46 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5695:51 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5695:78 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5697:52 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5697:74 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5702:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5702:68 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5721:50 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5729:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5736:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5748:30 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5753:28 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5808:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5822:59 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5833:49 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5833:74 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5852:58 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5900:49 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5900:74 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5904:21 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5904:45 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5908:31 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5920:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5921:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5926:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5929:64 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5932:23 - error: Type "Unknown | tuple[Unknown, ...]" is not assignable to declared type "Tensor | None" +   Type "Unknown | tuple[Unknown, ...]" is not assignable to type "Tensor | None" +     Type "tuple[Unknown, ...]" is not assignable to type "Tensor | None" +       "tuple[Unknown, ...]" is not assignable to "Tensor" +       "tuple[Unknown, ...]" is not assignable to "None" (reportAssignmentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5934:23 - error: Type "Unknown | tuple[Unknown, ...]" is not assignable to declared type "Tensor | None" +   Type "Unknown | tuple[Unknown, ...]" is not assignable to type "Tensor | None" +     Type "tuple[Unknown, ...]" is not assignable to type "Tensor | None" +       "tuple[Unknown, ...]" is not assignable to "Tensor" +       "tuple[Unknown, ...]" is not assignable to "None" (reportAssignmentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5937:19 - error: Type "Unknown | tuple[Unknown, ...]" is not assignable to declared type "Tensor | None" +   Type "Unknown | tuple[Unknown, ...]" is not assignable to type "Tensor | None" +     Type "tuple[Unknown, ...]" is not assignable to type "Tensor | None" +       "tuple[Unknown, ...]" is not assignable to "Tensor" +       "tuple[Unknown, ...]" is not assignable to "None" (reportAssignmentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5937:59 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5967:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5967:70 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5968:47 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5968:69 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5991:24 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5993:28 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6001:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6001:71 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6006:62 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6006:84 - error: "int" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6134:20 - error: Operator "-" not supported for types "int" and "Number | Unknown | str | Any | list[int] | list[float] | Tensor | Sequence[Unknown]" +   Operator "-" not supported for types "int" and "str" +   Operator "-" not supported for types "int" and "list[int]" +   Operator "-" not supported for types "int" and "list[float]" +   Operator "-" not supported for types "int" and "Sequence[Unknown]" (reportOperatorIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6134:20 - error: Argument of type "Unknown | int | float | Any" cannot be assigned to parameter "stop" of type "SupportsIndex" in function "__new__" +   Type "Unknown | int | float | Any" is not assignable to type "SupportsIndex" +     "float" is incompatible with protocol "SupportsIndex" +       "__index__" is not present (reportArgumentType) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6265:61 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6273:60 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6344:66 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6358:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6369:14 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6403:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6414:8 - error: Operator ">" not supported for types "Number | Unknown | str | Any | list[int] | list[float] | Tensor | Sequence[Unknown] | None" and "Literal[1]" +   Operator ">" not supported for types "None" and "Literal[1]" +   Operator ">" not supported for types "str" and "Literal[1]" +   Operator ">" not supported for types "list[int]" and "Literal[1]" +   Operator ">" not supported for types "list[float]" and "Literal[1]" +   Operator ">" not supported for types "Sequence[Unknown]" and "Literal[1]" (reportOperatorIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6425:35 - error: "DeviceObjType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6436:71 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6466:52 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6469:18 - error: "_jit_pass_onnx_block" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6477:30 - error: "_jit_pass_fixup_onnx_controlflow_node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6482:18 - error: "_jit_pass_onnx_node_shape_type_inference" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6489:69 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6532:24 - error: "_jit_pass_onnx_block" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6560:22 - error: "_jit_pass_onnx_block" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6568:34 - error: "_jit_pass_fixup_onnx_controlflow_node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6573:22 - error: "_jit_pass_onnx_node_shape_type_inference" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6588:44 - error: "DeviceObjType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6595:12 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6596:46 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6598:39 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6600:44 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6615:59 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6635:21 - error: "_jit_onnx_convert_pattern_from_subblock" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6642:65 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6653:72 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6671:53 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6671:74 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6672:42 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/torchscript_exporter/utils.py + /torch/onnx/_internal/torchscript_exporter/utils.py:69:8 - warning: Import "torch._C._onnx" could not be resolved from source (reportMissingModuleSource) + /torch/onnx/_internal/torchscript_exporter/utils.py:149:62 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/onnx/_internal/torchscript_exporter/utils.py:192:32 - error: "_jit_is_onnx_log_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:194:12 - error: "_jit_set_onnx_log_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:199:16 - error: "_jit_set_onnx_log_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:224:55 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/onnx/_internal/torchscript_exporter/utils.py:578:35 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:580:35 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:580:47 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:604:29 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:611:15 - error: "Graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:624:8 - error: "_jit_pass_inline" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:627:8 - error: "_jit_pass_inline_fork_wait" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:628:8 - error: "_jit_pass_lint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:630:12 - error: "_jit_pass_onnx_autograd_function_process" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:631:8 - error: "_jit_pass_lower_all_tuples" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:638:12 - error: "_jit_pass_constant_propagation" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:643:8 - error: "_jit_pass_dce" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:644:8 - error: "_jit_pass_lint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:649:11 - error: "_jit_pass_cse" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:650:12 - error: "_jit_pass_onnx_lint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:652:8 - error: "_jit_pass_canonicalize_graph_fuser_ops" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:653:8 - error: "_jit_pass_lint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:654:8 - error: "_jit_pass_peephole" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:655:8 - error: "_jit_pass_fuse_addmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:656:8 - error: "_jit_pass_lint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:658:8 - error: "_jit_pass_peephole" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:659:8 - error: "_jit_pass_lower_all_tuples" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:666:8 - error: "_jit_pass_onnx_remove_inplace_ops_for_onnx" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:667:8 - error: "_jit_pass_onnx_preprocess" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:670:8 - error: "_jit_pass_lint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:673:8 - error: "_jit_pass_prepare_division_for_onnx" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:675:8 - error: "_jit_pass_onnx_remove_print" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:676:8 - error: "_jit_pass_onnx_preprocess_caffe2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:680:8 - error: "_jit_pass_onnx_unpack_quantized_weights" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:682:8 - error: "_jit_pass_erase_number_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:686:12 - error: "_jit_pass_onnx_set_dynamic_input_shape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:687:8 - error: "_jit_pass_onnx_lint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:689:16 - error: "_jit_pass_onnx" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:690:8 - error: "_jit_pass_onnx_lint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:691:8 - error: "_jit_pass_lint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:693:8 - error: "_jit_pass_onnx_scalar_type_analysis" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:696:8 - error: "_jit_pass_lint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:698:8 - error: "_jit_pass_onnx_peephole" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:701:8 - error: "_jit_pass_lint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:708:8 - error: "_jit_pass_dce_allow_deleting_nodes_with_side_effects" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:709:8 - error: "_jit_pass_lint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:710:16 - error: "_jit_pass_canonicalize" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:711:8 - error: "_jit_pass_lint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:714:16 - error: "_jit_pass_onnx_graph_shape_type_inference" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:960:30 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/onnx/_internal/torchscript_exporter/utils.py:961:15 - error: "Graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:961:30 - error: "IValue" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:961:54 - error: "ScriptModule" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:972:16 - error: "_jit_pass_onnx_function_substitution" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:973:33 - error: "_freeze_module" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:974:25 - error: "ScriptModule" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:976:33 - error: "_jit_onnx_list_model_parameters" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:981:24 - error: "_propagate_and_assign_input_shapes" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:989:12 - error: "_jit_pass_onnx_function_substitution" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:991:20 - error: "_propagate_and_assign_input_shapes" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:997:8 - error: "_jit_pass_onnx_lint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1006:8 - error: "_jit_pass_onnx_function_substitution" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1034:11 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1034:25 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1035:11 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1035:24 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1036:11 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1036:25 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1037:11 - error: "quint4x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1037:27 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1087:8 - error: "Graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1127:12 - error: "_jit_onnx_log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1137:12 - error: "_jit_pass_onnx_assign_output_shape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1159:16 - error: "_jit_pass_onnx_assign_output_shape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1177:30 - error: "_jit_pass_onnx_eval_peephole" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1179:26 - error: "_jit_pass_onnx_constant_fold" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1182:12 - error: "_jit_pass_dce_allow_deleting_nodes_with_side_effects" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1186:16 - error: "_jit_pass_onnx_graph_shape_type_inference" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1194:22 - error: "_jit_pass_onnx_eliminate_unused_items" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1199:12 - error: "_jit_pass_onnx_cast_all_constant_to_floating" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1201:22 - error: "_jit_pass_filter_non_tensor_arguments" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1202:8 - error: "_jit_decay_packed_param_input_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1219:15 - error: "Graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1255:16 - error: "_jit_pass_inline" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1256:16 - error: "_jit_pass_onnx_remove_inplace_ops_for_onnx" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1257:16 - error: "_jit_pass_erase_number_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1258:16 - error: "_jit_pass_dce_allow_deleting_nodes_with_side_effects" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1296:32 - error: "_get_tracing_state" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1306:16 - error: "_jit_pass_onnx_track_scope_attributes" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1332:22 - error: "_jit_onnx_create_full_scope_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1364:8 - error: "_jit_pass_onnx_clear_scope_records" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1529:16 - error: "_jit_pass_dce_allow_deleting_nodes_with_side_effects" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1533:40 - error: "_jit_pass_onnx_function_extraction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1545:16 - error: "_jit_pass_onnx_assign_scoped_names_for_node_and_value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1591:20 - error: "_jit_onnx_log" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1596:37 - error: "_autograd_inlining_previous" is possibly unbound (reportPossiblyUnboundVariable) + /torch/onnx/_internal/torchscript_exporter/utils.py:1670:25 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1670:37 - error: "Block" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1674:35 - error: "Block" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1678:36 - error: "Block" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1678:53 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1703:38 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1708:15 - error: "parse_schema" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1712:15 - error: "Graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1713:15 - error: "Block" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1714:14 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1716:18 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1716:28 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1717:27 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1718:24 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1720:9 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/utils.py:1720:29 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/_internal/torchscript_exporter/verification.py + /torch/onnx/_internal/torchscript_exporter/verification.py:28:8 - warning: Import "torch._C._onnx" could not be resolved from source (reportMissingModuleSource) + /torch/onnx/_internal/torchscript_exporter/verification.py:242:37 - error: Cannot access attribute "shape" for class "int" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/verification.py:242:37 - error: Cannot access attribute "shape" for class "float" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/verification.py:242:37 - error: Cannot access attribute "shape" for class "bool" +   Attribute "shape" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/verification.py:252:24 - error: Cannot access attribute "dtype" for class "int" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/verification.py:252:24 - error: Cannot access attribute "dtype" for class "float" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/verification.py:252:24 - error: Cannot access attribute "dtype" for class "bool" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/verification.py:252:53 - error: Cannot access attribute "dtype" for class "int" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/verification.py:252:53 - error: Cannot access attribute "dtype" for class "float" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/verification.py:252:53 - error: Cannot access attribute "dtype" for class "bool" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/verification.py:255:23 - error: Cannot access attribute "dtype" for class "int" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/verification.py:255:23 - error: Cannot access attribute "dtype" for class "float" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/verification.py:255:23 - error: Cannot access attribute "dtype" for class "bool" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/verification.py:255:51 - error: Cannot access attribute "dtype" for class "int" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/verification.py:255:51 - error: Cannot access attribute "dtype" for class "float" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) + /torch/onnx/_internal/torchscript_exporter/verification.py:255:51 - error: Cannot access attribute "dtype" for class "bool" +   Attribute "dtype" is unknown (reportAttributeAccessIssue) +/torch/onnx/errors.py + /torch/onnx/errors.py:60:44 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/operators.py + /torch/onnx/operators.py:33:25 - error: "_shape_as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/operators.py:47:35 - error: "_reshape_from_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/ops/__init__.py + /torch/onnx/ops/__init__.py:32:11 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:33:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:34:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:35:11 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:36:11 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:37:11 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:38:11 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:40:11 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:41:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:42:11 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:43:11 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:44:11 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:45:11 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:46:11 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:47:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:48:11 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:49:11 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:50:11 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:51:11 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:54:11 - error: "float4_e2m1fn_x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:91:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/__init__.py:192:28 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/ops/_dtype_mappings.py + /torch/onnx/ops/_dtype_mappings.py:4:44 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:5:14 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:6:14 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:7:14 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:8:14 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:9:14 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:10:14 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:11:14 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:12:14 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:13:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:14:15 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:15:15 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:16:15 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:17:15 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:18:15 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:19:15 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:20:15 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:21:15 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:22:15 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:23:15 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:24:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:25:15 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_dtype_mappings.py:26:15 - error: "float4_e2m1fn_x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/ops/_impl.py + /torch/onnx/ops/_impl.py:117:19 - error: "permute" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:126:19 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:167:17 - error: "unsqueeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:170:17 - error: "unsqueeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:179:24 - error: "chunk" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:189:22 - error: "unsqueeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:190:22 - error: "unsqueeze" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:191:33 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:192:26 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:194:26 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:195:20 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:197:22 - error: "reshape" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:200:18 - error: "permute" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:236:22 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:236:39 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:268:18 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:347:20 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:348:25 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:349:27 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:350:23 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:402:15 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:407:15 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:426:60 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:464:27 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:473:33 - error: "tril" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:474:23 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:477:33 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:485:41 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:501:34 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:514:44 - error: "tanh" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:527:36 - error: "softmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:530:36 - error: "softmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:532:32 - error: "softmax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_impl.py:538:24 - error: "matmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/onnx/ops/_symbolic_impl.py + /torch/onnx/ops/_symbolic_impl.py:204:18 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_symbolic_impl.py:233:18 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_symbolic_impl.py:277:19 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/onnx/ops/_symbolic_impl.py:315:19 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/optim/_adafactor.py + /torch/optim/_adafactor.py:84:22 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:98:39 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:111:47 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:112:53 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:373:26 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:413:42 - error: Operator "*" not supported for types "Unknown | float | None" and "Unknown | float | None" +   Operator "*" not supported for types "float" and "None" +   Operator "*" not supported for types "None" and "float" +   Operator "*" not supported for types "None" and "None" (reportOperatorIssue) + /torch/optim/_adafactor.py:422:26 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:422:50 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:430:30 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:430:54 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:506:26 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:519:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:520:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:523:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:540:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:553:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:554:19 - error: "_foreach_div_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:555:19 - error: "_foreach_lerp_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:562:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:563:19 - error: "_foreach_div_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:564:19 - error: "_foreach_lerp_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:576:19 - error: "_foreach_clamp_min_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:577:19 - error: "_foreach_div_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:584:35 - error: "_foreach_mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:585:19 - error: "_foreach_lerp_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:592:15 - error: "_foreach_clamp_min_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:592:50 - error: Operator "*" not supported for types "Unknown | float | None" and "Unknown | float | None" +   Operator "*" not supported for types "float" and "None" +   Operator "*" not supported for types "None" and "float" +   Operator "*" not supported for types "None" and "None" (reportOperatorIssue) + /torch/optim/_adafactor.py:593:15 - error: "_foreach_rsqrt_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:594:15 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:601:15 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_adafactor.py:602:15 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/optim/_muon.py + /torch/optim/_muon.py:64:29 - error: "addmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_muon.py:67:28 - error: "addmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_muon.py:75:64 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_muon.py:149:22 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_muon.py:160:50 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/_muon.py:161:49 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/optim/adadelta.py + /torch/optim/adadelta.py:98:34 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:109:27 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:111:32 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:114:45 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:115:44 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:117:44 - error: "zeros_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:118:44 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:287:18 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:288:32 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:289:31 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:290:26 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:300:18 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:301:27 - error: "view_as_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:368:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:369:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:372:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:380:23 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:386:15 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:387:15 - error: "_foreach_addcmul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:391:21 - error: "_foreach_add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:392:15 - error: "_foreach_sqrt_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:394:24 - error: "_foreach_add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:395:15 - error: "_foreach_sqrt_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:396:15 - error: "_foreach_div_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:397:15 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:399:15 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:400:15 - error: "_foreach_addcmul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:405:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:406:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adadelta.py:408:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/optim/adagrad.py + /torch/optim/adagrad.py:81:27 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:87:32 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:91:30 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:94:38 - error: "full_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:95:56 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:375:32 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:377:30 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:378:35 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:379:31 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:387:31 - error: "view_as_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:388:35 - error: "view_as_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:468:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:469:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:472:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:477:23 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:487:15 - error: "_foreach_addcmul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:489:21 - error: "_foreach_sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:490:15 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:494:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:499:15 - error: "_foreach_addcdiv_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:562:15 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:563:15 - error: "_fused_adagrad_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adagrad.py:577:19 - error: "_foreach_sub_" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/optim/adam.py + /torch/optim/adam.py:87:17 - error: Type "tuple[Unknown | float | int | Tensor, ...]" is not assignable to declared type "tuple[float | Tensor, float | Tensor]" +   "tuple[Unknown | float | int | Tensor, ...]" is not assignable to "tuple[float | Tensor, float | Tensor]" +     Tuple size mismatch; expected 2 but received indeterminate (reportAssignmentType) + /torch/optim/adam.py:431:18 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:432:26 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:433:29 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:434:32 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:436:44 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:437:27 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:470:40 - error: "square" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:511:48 - error: "maximum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:540:23 - error: "maximum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:550:30 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:551:40 - error: "view_as_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:683:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:684:43 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:687:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:692:23 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:696:27 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:705:15 - error: "_foreach_lerp_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:709:15 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:722:15 - error: "_foreach_addcmul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:738:19 - error: "_foreach_sub_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:739:19 - error: "_foreach_sub_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:741:19 - error: "_foreach_neg_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:744:19 - error: "_foreach_div_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:745:19 - error: "_foreach_reciprocal_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:747:19 - error: "_foreach_sqrt_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:761:41 - error: "_foreach_sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:763:41 - error: "_foreach_sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:765:19 - error: "_foreach_div_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:766:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:767:19 - error: "_foreach_div_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:770:19 - error: "_foreach_addcdiv_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:786:23 - error: "_foreach_maximum_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:789:41 - error: "_foreach_sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:791:41 - error: "_foreach_sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:793:19 - error: "_foreach_div_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:794:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:795:19 - error: "_foreach_addcdiv_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:877:15 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:878:22 - error: "_fused_adam_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:878:76 - error: "_fused_adamw_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adam.py:897:19 - error: "_foreach_sub_" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/optim/adamax.py + /torch/optim/adamax.py:270:18 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:271:27 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:272:26 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:273:29 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:274:29 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:280:19 - error: "maximum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:286:30 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:290:33 - error: "amax" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:374:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:375:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:378:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:383:23 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:390:15 - error: "_foreach_lerp_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:393:15 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:400:19 - error: "_foreach_abs_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:402:15 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:403:15 - error: "_foreach_maximum_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:407:38 - error: "_foreach_pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:409:19 - error: "_foreach_sub_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:410:19 - error: "_foreach_div_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:412:27 - error: "_foreach_mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:413:19 - error: "_foreach_addcdiv_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/adamax.py:419:19 - error: "_foreach_addcdiv_" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/optim/asgd.py + /torch/optim/asgd.py:241:18 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:242:26 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:243:27 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:244:24 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:269:32 - error: "maximum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:269:59 - error: "ones_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:272:29 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:274:28 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:351:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:352:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:355:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:361:23 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:364:38 - error: "_foreach_add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:368:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:370:34 - error: "_foreach_add" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:378:15 - error: "_foreach_addcmul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:389:30 - error: "_foreach_sub" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:390:15 - error: "_foreach_addcmul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:397:29 - error: "_foreach_sub" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:398:19 - error: "_foreach_maximum_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:399:19 - error: "_foreach_reciprocal_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:400:19 - error: "_foreach_copy_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:404:30 - error: "_foreach_mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:405:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:406:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:407:19 - error: "_foreach_pow_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:408:19 - error: "_foreach_reciprocal_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:409:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:410:19 - error: "_foreach_copy_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:413:23 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:417:23 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:420:19 - error: "_foreach_copy_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/asgd.py:421:19 - error: "_foreach_copy_" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/optim/lbfgs.py + /torch/optim/lbfgs.py:310:22 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/lbfgs.py:311:27 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/optim/lr_scheduler.py + /torch/optim/lr_scheduler.py:302:58 - error: Cannot access attribute "_get_closed_form_lr" for class "LRScheduler*" +   Attribute "_get_closed_form_lr" is unknown (reportAttributeAccessIssue) + /torch/optim/lr_scheduler.py:428:17 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /torch/optim/lr_scheduler.py:428:17 - error: Argument of type "dict[str, Any]" cannot be assigned to parameter "value" of type "None" in function "__setitem__" +   "dict[str, Any]" is not assignable to "None" (reportArgumentType) + /torch/optim/lr_scheduler.py:548:17 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /torch/optim/lr_scheduler.py:548:17 - error: Argument of type "dict[str, Any]" cannot be assigned to parameter "value" of type "None" in function "__setitem__" +   "dict[str, Any]" is not assignable to "None" (reportArgumentType) + /torch/optim/lr_scheduler.py:1227:13 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /torch/optim/lr_scheduler.py:1227:13 - error: Argument of type "dict[str, Any]" cannot be assigned to parameter "value" of type "None" in function "__setitem__" +   "dict[str, Any]" is not assignable to "None" (reportArgumentType) + /torch/optim/lr_scheduler.py:1574:13 - error: No overloads for "__setitem__" match the provided arguments (reportCallIssue) + /torch/optim/lr_scheduler.py:1574:13 - error: Argument of type "dict[str, Any]" cannot be assigned to parameter "value" of type "None" in function "__setitem__" +   "dict[str, Any]" is not assignable to "None" (reportArgumentType) + /torch/optim/lr_scheduler.py:1923:24 - error: Type "float" is not assignable to declared type "int" +   "float" is not assignable to "int" (reportAssignmentType) + /torch/optim/lr_scheduler.py:1924:26 - error: Type "float | int" is not assignable to declared type "int | None" +   Type "float | int" is not assignable to type "int | None" +     Type "float" is not assignable to type "int | None" +       "float" is not assignable to "int" +       "float" is not assignable to "None" (reportAssignmentType) + /torch/optim/lr_scheduler.py:1929:27 - error: Operator "+" not supported for types "int" and "int | None" +   Operator "+" not supported for types "int" and "None" (reportOperatorIssue) +/torch/optim/nadam.py + /torch/optim/nadam.py:311:18 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:312:27 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:313:26 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:314:29 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:315:32 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:457:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:458:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:461:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:466:23 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:470:27 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:479:15 - error: "_foreach_lerp_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:481:15 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:482:15 - error: "_foreach_addcmul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:486:33 - error: "_foreach_sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:493:30 - error: "_foreach_mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:494:25 - error: "_foreach_pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:495:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:496:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:497:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:500:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:501:30 - error: "_foreach_pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:502:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:503:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:504:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:509:42 - error: "_foreach_pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:511:19 - error: "_foreach_sub_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:512:19 - error: "_foreach_neg_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:513:19 - error: "_foreach_sqrt_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:529:15 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:531:15 - error: "_foreach_div_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:532:15 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:539:19 - error: "_foreach_sub_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:540:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:542:27 - error: "_foreach_sub" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:543:19 - error: "_foreach_neg_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:544:19 - error: "_foreach_div_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:551:27 - error: "_foreach_mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:552:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:555:19 - error: "_foreach_sub_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:556:19 - error: "_foreach_div_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:564:31 - error: "_foreach_mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:565:19 - error: "_foreach_addcmul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:568:19 - error: "_foreach_addcdiv_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:590:19 - error: "_foreach_addcdiv_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/nadam.py:596:19 - error: "_foreach_addcdiv_" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/optim/optimizer.py + /torch/optim/optimizer.py:31:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/optimizer.py:33:26 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/optimizer.py:33:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/optimizer.py:67:27 - error: "is_grad_enabled" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/optimizer.py:140:34 - error: "state_steps_ind" is possibly unbound (reportPossiblyUnboundVariable) + /torch/optim/optimizer.py:179:23 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/optimizer.py:200:64 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/optimizer.py:209:18 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/optimizer.py:210:31 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/optimizer.py:212:30 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/optimizer.py:227:54 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/optimizer.py:381:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/optimizer.py:546:26 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/optimizer.py:546:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/optimizer.py:792:45 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/optimizer.py:1045:31 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/optimizer.py:1045:57 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/optimizer.py:1080:31 - error: "_foreach_zero_" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/optim/radam.py + /torch/optim/radam.py:294:18 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:295:27 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:296:26 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:297:29 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:298:32 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:346:28 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:424:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:425:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:428:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:445:38 - error: "_foreach_pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:446:19 - error: "_foreach_neg_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:447:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:448:38 - error: "_foreach_pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:449:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:450:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:451:19 - error: "_foreach_div_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:452:19 - error: "_foreach_neg_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:453:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:467:23 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:471:27 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:480:15 - error: "_foreach_lerp_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:482:15 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:483:15 - error: "_foreach_addcmul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:491:25 - error: "_foreach_sub" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:492:26 - error: "_foreach_sub" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:493:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:495:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:497:27 - error: "_foreach_mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:498:19 - error: "_foreach_div_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:500:19 - error: "_foreach_sqrt_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:504:23 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:509:39 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:510:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:512:38 - error: "_foreach_pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:513:19 - error: "_foreach_neg_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:514:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:516:19 - error: "_foreach_div_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:517:19 - error: "_foreach_neg_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:519:38 - error: "_foreach_pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:520:19 - error: "_foreach_neg_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:521:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:522:19 - error: "_foreach_sqrt_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:523:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:524:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:526:19 - error: "_foreach_neg_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:527:19 - error: "_foreach_div_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:558:24 - error: "_foreach_sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:559:15 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:560:15 - error: "_foreach_div_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:561:15 - error: "_foreach_reciprocal_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:562:15 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/radam.py:565:15 - error: "_foreach_addcmul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/optim/rmsprop.py + /torch/optim/rmsprop.py:310:34 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:312:27 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:313:26 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:314:32 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:321:34 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:335:29 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:419:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:420:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:423:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:428:23 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:434:15 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:435:15 - error: "_foreach_addcmul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:441:19 - error: "_foreach_lerp_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:442:25 - error: "_foreach_addcmul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:445:19 - error: "_foreach_sqrt_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:446:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:448:25 - error: "_foreach_sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:449:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:455:19 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:456:19 - error: "_foreach_addcdiv_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:460:37 - error: "_foreach_mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:461:23 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:463:23 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:470:23 - error: "_foreach_div_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:471:23 - error: "_foreach_addcdiv_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rmsprop.py:473:23 - error: "_foreach_addcdiv_" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/optim/rprop.py + /torch/optim/rprop.py:259:18 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:260:26 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:261:26 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:262:27 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:263:31 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:270:30 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:271:30 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:272:30 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:283:47 - error: "preserve_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:285:30 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:349:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:350:44 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:353:19 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:361:23 - error: "_foreach_mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:363:19 - error: "_foreach_neg_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:368:15 - error: "_foreach_copy_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:370:19 - error: "_foreach_neg_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:373:15 - error: "_foreach_sign_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:376:34 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:377:34 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:378:34 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:386:15 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:395:23 - error: "where" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/rprop.py:403:15 - error: "_foreach_addcmul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/optim/sgd.py + /torch/optim/sgd.py:428:23 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/sgd.py:446:23 - error: "_foreach_mul_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/sgd.py:447:23 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/sgd.py:463:23 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/sgd.py:470:36 - error: "_foreach_mul" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/sgd.py:471:23 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/sgd.py:473:23 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/sgd.py:512:45 - error: "empty_like" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/sgd.py:530:15 - error: "_fused_sgd_" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/optim/swa_utils.py + /torch/optim/swa_utils.py:50:18 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/swa_utils.py:50:64 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/swa_utils.py:53:19 - error: "_foreach_lerp_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/swa_utils.py:71:18 - error: "is_floating_point" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/swa_utils.py:71:69 - error: "is_complex" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/swa_utils.py:74:19 - error: "_foreach_lerp_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/swa_utils.py:80:27 - error: "_foreach_sub" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/swa_utils.py:82:23 - error: "_foreach_addcdiv_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/swa_utils.py:88:23 - error: "_foreach_add_" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/swa_utils.py:226:43 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/swa_utils.py:242:33 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/swa_utils.py:242:55 - error: "long" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/swa_utils.py:306:40 - error: "copy_" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/optim/swa_utils.py:312:64 - error: "device" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/optim/swa_utils.py:314:32 - error: "detach" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/optim/swa_utils.py:316:48 - error: "detach" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/optim/swa_utils.py:333:39 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/optim/swa_utils.py:550:31 - error: Argument of type "str" cannot be assigned to parameter "anneal_strategy" of type "Literal['cos', 'linear']" in function "_set_anneal_func" +   Type "str" is not assignable to type "Literal['cos', 'linear']" +     "str" is not assignable to type "Literal['cos']" +     "str" is not assignable to type "Literal['linear']" (reportArgumentType) +/torch/package/package_exporter.py + /torch/package/package_exporter.py:219:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/package/package_exporter.py:227:34 - error: "PyTorchFileWriter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/package/package_exporter.py:239:50 - error: "ScriptModuleSerializer" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/package/package_exporter.py:252:53 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/package/package_exporter.py:1173:16 - error: Type "DiGraph | str" is not assignable to return type "str" +   Type "DiGraph | str" is not assignable to type "str" +     "DiGraph" is not assignable to "str" (reportReturnType) +/torch/package/package_importer.py + /torch/package/package_importer.py:88:50 - error: "PyTorchFileReader" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/package/package_importer.py:104:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/package/package_importer.py:107:48 - error: "PyTorchFileReader" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/package/package_importer.py:113:44 - error: "PyTorchFileReader" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/package/package_importer.py:118:40 - error: "PyTorchFileReader" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/package/package_importer.py:120:18 - error: "_log_api_usage_metadata" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/package/package_importer.py:157:9 - error: Method "import_module" overrides class "Importer" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "module_name", override parameter is named "name" (reportIncompatibleMethodOverride) + /torch/package/package_importer.py:231:36 - error: "DeserializationStorageContext" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/package/package_importer.py:309:15 - error: "_utils" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/package/package_importer.py:374:28 - error: "util" is not a known attribute of module "importlib" (reportAttributeAccessIssue) +/torch/profiler/__init__.py + /torch/profiler/__init__.py:15:6 - warning: Import "torch._C._autograd" could not be resolved from source (reportMissingModuleSource) + /torch/profiler/__init__.py:16:6 - warning: Import "torch._C._profiler" could not be resolved from source (reportMissingModuleSource) +/torch/profiler/_memory_profiler.py + /torch/profiler/_memory_profiler.py:11:22 - error: "FunctionSchema" is unknown import symbol (reportAttributeAccessIssue) + /torch/profiler/_memory_profiler.py:12:6 - warning: Import "torch._C._autograd" could not be resolved from source (reportMissingModuleSource) + /torch/profiler/_memory_profiler.py:13:6 - warning: Import "torch._C._profiler" could not be resolved from source (reportMissingModuleSource) + /torch/profiler/_memory_profiler.py:67:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_memory_profiler.py:116:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_memory_profiler.py:266:45 - error: "OptionalType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_memory_profiler.py:270:45 - error: "AnyType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_memory_profiler.py:273:45 - error: "ListType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_memory_profiler.py:279:23 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_memory_profiler.py:280:23 - error: "NoneType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_memory_profiler.py:281:23 - error: "BoolType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_memory_profiler.py:282:23 - error: "IntType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_memory_profiler.py:283:23 - error: "FloatType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_memory_profiler.py:284:23 - error: "ComplexType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_memory_profiler.py:285:23 - error: "NumberType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_memory_profiler.py:315:35 - error: "_jit_get_schemas_for_operator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_memory_profiler.py:380:68 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_memory_profiler.py:678:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_memory_profiler.py:1074:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_memory_profiler.py:1158:16 - error: Import "matplotlib.pyplot" could not be resolved (reportMissingImports) + /torch/profiler/_memory_profiler.py:1167:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/profiler/_pattern_matcher.py + /torch/profiler/_pattern_matcher.py:10:6 - warning: Import "torch._C._profiler" could not be resolved from source (reportMissingModuleSource) + /torch/profiler/_pattern_matcher.py:337:29 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_pattern_matcher.py:337:72 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_pattern_matcher.py:338:29 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_pattern_matcher.py:338:72 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_pattern_matcher.py:529:17 - error: Type "_ProfilerEvent | None" is not assignable to declared type "_ProfilerEvent" +   Type "_ProfilerEvent | None" is not assignable to type "_ProfilerEvent" +     "None" is not assignable to "_ProfilerEvent" (reportAssignmentType) + /torch/profiler/_pattern_matcher.py:555:32 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_pattern_matcher.py:555:48 - error: "half" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_pattern_matcher.py:567:29 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_pattern_matcher.py:567:72 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_pattern_matcher.py:568:29 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_pattern_matcher.py:568:72 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_pattern_matcher.py:573:29 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_pattern_matcher.py:574:75 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_pattern_matcher.py:576:29 - error: "randn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/profiler/_pattern_matcher.py:577:75 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/profiler/itt.py + /torch/profiler/itt.py:7:26 - warning: Import "torch._C._itt" could not be resolved from source (reportMissingModuleSource) +/torch/profiler/profiler.py + /torch/profiler/profiler.py:17:22 - error: "_get_privateuse1_backend_name" is unknown import symbol (reportAttributeAccessIssue) + /torch/profiler/profiler.py:18:6 - warning: Import "torch._C._profiler" could not be resolved from source (reportMissingModuleSource) + /torch/profiler/profiler.py:48:9 - error: Method "default" overrides class "JSONEncoder" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "o", override parameter is named "obj" (reportIncompatibleMethodOverride) +/torch/quantization/__init__.py + /torch/quantization/__init__.py:37:5 - warning: "_prepare_ondevice_dynamic_jit" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/quantization/__init__.py:38:5 - warning: "_convert_ondevice_dynamic_jit" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/quantization/__init__.py:39:5 - warning: "_quantize_ondevice_dynamic_jit" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/quantization/__init__.py:60:5 - warning: "WeightObserver" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) +/torch/quasirandom.py + /torch/quasirandom.py:82:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/quasirandom.py:98:27 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/quasirandom.py:104:44 - error: "_sobol_engine_draw" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/quasirandom.py:112:32 - error: "cat" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/quasirandom.py:114:40 - error: "_sobol_engine_draw" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/quasirandom.py:135:31 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/random.py + /torch/random.py:7:22 - error: "default_generator" is unknown import symbol (reportAttributeAccessIssue) + /torch/random.py:32:35 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/random.py:45:69 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/random.py:101:36 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/random.py:158:25 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/return_types.py + /torch/return_types.py:42:9 - warning: Operation on "__all__" is not supported, so exported symbol list may be incorrect (reportUnsupportedDunderAll) +/torch/serialization.py + /torch/serialization.py:70:52 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/serialization.py:778:45 - error: "PyTorchFileReader" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/serialization.py:780:35 - error: "PyTorchFileReader" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/serialization.py:783:50 - error: "PyTorchFileWriter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/serialization.py:796:26 - error: "PyTorchFileWriter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/serialization.py:802:26 - error: "PyTorchFileWriter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/serialization.py:813:52 - error: "PyTorchFileWriter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/serialization.py:822:22 - error: "PyTorchFileWriter" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/serialization.py:968:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/serialization.py:999:70 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/serialization.py:1005:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/serialization.py:1047:39 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/serialization.py:1049:31 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/serialization.py:1153:54 - error: "_utils" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/serialization.py:1414:14 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/serialization.py:1592:22 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/signal/windows/windows.py + /torch/signal/windows/windows.py:64:46 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:64:67 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:79:28 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:83:28 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:83:43 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:139:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:140:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:140:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:141:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:145:23 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:156:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:165:15 - error: "linspace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:175:18 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:175:29 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:223:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:224:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:224:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:225:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:229:23 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:234:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:241:15 - error: "linspace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:251:18 - error: "sin" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:297:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:298:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:298:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:299:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:303:23 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:311:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:319:15 - error: "linspace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:329:18 - error: "exp" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:376:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:377:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:377:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:378:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:382:23 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:390:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:395:22 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:401:18 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:405:17 - error: "minimum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:412:15 - error: "linspace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:422:18 - error: "i0" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:422:27 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:422:52 - error: "pow" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:422:72 - error: "i0" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:468:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:469:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:469:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:470:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:522:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:523:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:523:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:524:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:576:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:577:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:577:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:578:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:582:23 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:637:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:638:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:638:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:639:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:643:23 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:648:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:653:22 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:660:15 - error: "linspace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:670:22 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:713:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:714:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:714:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:715:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:719:23 - error: "get_default_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:724:22 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:729:22 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:741:15 - error: "linspace" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:751:17 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:757:15 - error: "arange" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:763:39 - error: "cos" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:806:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:807:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:807:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:808:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:870:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:871:19 - error: "layout" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:871:34 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/signal/windows/windows.py:872:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/sparse/__init__.py + /torch/sparse/__init__.py:20:29 - error: "_dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/sparse/__init__.py:35:5 - warning: "solve" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) + /torch/sparse/__init__.py:260:26 - error: "_sparse_sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/__init__.py:262:26 - error: "_sparse_sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/__init__.py:265:26 - error: "_sparse_sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/__init__.py:267:26 - error: "_sparse_sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/sparse/_semi_structured_ops.py + /torch/sparse/_semi_structured_ops.py:57:36 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_semi_structured_ops.py:57:62 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_semi_structured_ops.py:57:79 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_semi_structured_ops.py:72:15 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_semi_structured_ops.py:181:29 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_semi_structured_ops.py:182:29 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_semi_structured_ops.py:188:35 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_semi_structured_ops.py:188:70 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_semi_structured_ops.py:192:27 - error: "_cslt_sparse_mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/sparse/_triton_ops.py + /torch/sparse/_triton_ops.py:1132:45 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:1139:21 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:1140:13 - error: Operator "+" not supported for "None" (reportOptionalOperand) + /torch/sparse/_triton_ops.py:1141:25 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:1194:31 - error: Operator "+" not supported for "None" (reportOptionalOperand) + /torch/sparse/_triton_ops.py:1198:17 - error: "zero_" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1200:17 - error: "copy_" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1202:21 - error: "mul_" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1210:14 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) + /torch/sparse/_triton_ops.py:1213:39 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) + /torch/sparse/_triton_ops.py:1214:14 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) + /torch/sparse/_triton_ops.py:1220:14 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) + /torch/sparse/_triton_ops.py:1223:41 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) + /torch/sparse/_triton_ops.py:1224:14 - error: Object of type "None" cannot be used as iterable value (reportOptionalIterable) + /torch/sparse/_triton_ops.py:1226:23 - error: "stride" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1227:24 - error: "stride" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1241:27 - error: "dtype" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1257:20 - error: "get" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1269:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:1270:15 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:1271:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:1272:15 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:1273:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:1274:15 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:1275:11 - error: "dtype" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1332:12 - error: "data_ptr" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1332:37 - error: "data_ptr" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1335:20 - error: "copy_" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1335:38 - error: "view" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1335:54 - error: "shape" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1341:12 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/sparse/_triton_ops.py:1342:12 - error: Import "triton.language" could not be resolved (reportMissingImports) + /torch/sparse/_triton_ops.py:1681:53 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:1686:41 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:1708:16 - error: "numel" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1708:36 - error: "_nnz" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1711:25 - error: "values" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1716:17 - error: "values" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1745:23 - error: "values" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1746:24 - error: "values" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1746:65 - error: "values" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1763:58 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:1779:34 - error: Operator "+" not supported for "None" (reportOptionalOperand) + /torch/sparse/_triton_ops.py:1794:35 - error: Operator "+" not supported for "None" (reportOptionalOperand) + /torch/sparse/_triton_ops.py:1798:24 - error: "zero_" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:1980:39 - error: "sparse_bsr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:1982:47 - error: "sparse_bsr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:1992:41 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:2006:14 - error: "values" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/sparse/_triton_ops.py:2107:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:2108:19 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:2109:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:2110:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:2114:9 - error: Object of type "(M: Unknown, K: Unknown, N: Unknown, blocks_ptr: Unknown, blocks_stride_P: Unknown, blocks_stride_M: Unknown, blocks_stride_K: Unknown, others_ptr: Unknown, others_stride_Q: Unknown, others_stride_K: Unknown, others_stride_N: Unknown, accumulators_ptr: Unknown, accumulators_stride_R: Unknown, accumulators_stride_M: Unknown, accumulators_stride_N: Unknown, pq_offsets_ptr: Unknown, pq_offsets_stride: Unknown, pq_ptr: Unknown, pq_stride_T: Unknown, pq_stride_1: Unknown, dot_out_dtype: Unknown, TILE_M: Unknown, TILE_N: Unknown, allow_tf32: Unknown) -> None" is not subscriptable (reportIndexIssue) + /torch/sparse/_triton_ops.py:2284:19 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:2285:19 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:2286:19 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:2287:19 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops.py:2320:9 - error: Object of type "(nbatches: Unknown, Ms: Unknown, Ks: Unknown, N: Unknown, blocks_ptr: Unknown, blocks_stride_P: Unknown, blocks_stride_M: Unknown, blocks_stride_K: Unknown, others_ptr: Unknown, others_stride_B: Unknown, others_stride_K: Unknown, others_stride_N: Unknown, accumulators_ptr: Unknown, accumulators_stride_B: Unknown, accumulators_stride_M: Unknown, accumulators_stride_N: Unknown, c_indices_ptr: Unknown, r_offsets_ptr: Unknown, p_offsets_ptr: Unknown, q_offsets_ptr: Unknown, is_compressed: Unknown, dot_out_dtype: Unknown, SPLIT_N: Unknown, TILE_M: Unknown, TILE_N: Unknown, GROUP_SIZE: Unknown, allow_tf32: Unknown) -> None" is not subscriptable (reportIndexIssue) +/torch/sparse/_triton_ops_meta.py + /torch/sparse/_triton_ops_meta.py:476:12 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/sparse/_triton_ops_meta.py:629:12 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/sparse/_triton_ops_meta.py:892:32 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/sparse/_triton_ops_meta.py:962:65 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops_meta.py:2182:65 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops_meta.py:2244:65 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops_meta.py:2268:60 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops_meta.py:3658:60 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops_meta.py:3700:60 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops_meta.py:5409:60 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops_meta.py:5451:60 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops_meta.py:6845:60 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops_meta.py:6887:60 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops_meta.py:6905:55 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops_meta.py:7187:55 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops_meta.py:7477:55 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops_meta.py:7763:25 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops_meta.py:7766:25 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops_meta.py:7766:40 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops_meta.py:7766:56 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/_triton_ops_meta.py:7766:71 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/sparse/semi_structured.py + /torch/sparse/semi_structured.py:58:42 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/semi_structured.py:79:22 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/semi_structured.py:167:39 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/semi_structured.py:183:34 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/semi_structured.py:299:57 - error: Argument of type "tuple[Literal[0], Unknown | Literal[0], Literal[0], Unknown | Literal[0]]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[0], Unknown | Literal[0], Literal[0], Unknown | Literal[0]]" is not assignable to "list[int]" (reportArgumentType) + /torch/sparse/semi_structured.py:403:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/semi_structured.py:404:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/semi_structured.py:405:15 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/semi_structured.py:406:15 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/semi_structured.py:501:19 - error: "_sparse_semi_structured_tile" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/semi_structured.py:534:29 - error: "_sparse_semi_structured_mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/semi_structured.py:536:29 - error: "_sparse_semi_structured_addmm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/semi_structured.py:556:15 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/semi_structured.py:557:15 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/semi_structured.py:558:15 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/semi_structured.py:559:15 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/semi_structured.py:570:26 - error: "_cslt_compress" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/semi_structured.py:625:19 - error: "_sparse_semi_structured_tile" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/semi_structured.py:669:32 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/sparse/semi_structured.py:680:25 - error: "_cslt_sparse_mm" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/storage.py + /torch/storage.py:45:19 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:49:35 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:96:25 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:96:69 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:111:25 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:111:68 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:289:41 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:290:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:357:50 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:368:19 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:368:42 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:373:51 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:387:19 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:387:42 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:466:31 - error: "StorageBase" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:665:39 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:674:35 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:676:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1021:29 - warning: TypeVar "T" appears only once in generic function signature +   Use "_StorageBase | TypedStorage" instead (reportInvalidTypeVarUse) + /torch/storage.py:1057:19 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1058:19 - error: "quint4x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1059:19 - error: "quint2x4" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1060:19 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1061:19 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1070:19 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1071:19 - error: "quint4x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1072:19 - error: "quint2x4" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1073:19 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1074:19 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1082:41 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1083:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1085:19 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1086:19 - error: "quint4x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1087:19 - error: "quint2x4" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1088:19 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1089:19 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1092:41 - error: Cannot access attribute "type" for class "str" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/storage.py:1092:41 - error: Cannot access attribute "type" for class "int" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/storage.py:1160:50 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1173:51 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/storage.py:1513:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/testing/__init__.py + /torch/testing/__init__.py:1:22 - error: "FileCheck" is unknown import symbol (reportAttributeAccessIssue) +/torch/testing/_comparison.py + /torch/testing/_comparison.py:55:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:56:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:57:11 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:58:11 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:59:11 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:60:11 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:61:11 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:67:16 - error: "quint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:67:30 - error: "quint2x4" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:67:46 - error: "quint4x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:67:62 - error: "qint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:67:75 - error: "qint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:68:33 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:74:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:75:43 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:88:38 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:102:40 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:295:55 - error: "sum" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:302:42 - error: "nonzero" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:317:44 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:318:48 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:320:22 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:323:49 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:325:33 - error: "abs" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:328:49 - error: "max" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:491:27 - error: "bool_" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/testing/_comparison.py:507:39 - error: "bool_" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/testing/_comparison.py:552:20 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:553:22 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:554:24 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:587:27 - error: "number" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/testing/_comparison.py:603:53 - error: "number" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/testing/_comparison.py:721:26 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:727:19 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:728:19 - error: "jagged" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:729:19 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:730:19 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:731:19 - error: "sparse_csc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:732:19 - error: "sparse_bsr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:733:19 - error: "sparse_bsc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:794:36 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:842:39 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:842:53 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:842:67 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:843:38 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:844:41 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:844:55 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:844:69 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:845:40 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:846:27 - error: "promote_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:852:66 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:854:65 - error: "strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:865:19 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:866:19 - error: "sparse_csc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:867:19 - error: "sparse_bsr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:868:19 - error: "sparse_bsc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:871:37 - error: "jagged" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:1000:19 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:1005:19 - error: "sparse_csc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:1010:19 - error: "sparse_bsr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:1015:19 - error: "sparse_bsc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:1037:31 - error: "promote_types" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:1084:25 - error: "isclose" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:1087:18 - error: "all" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:1090:34 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:1323:20 - error: Type "list[list[ErrorMeta]]" is not assignable to declared type "list[ErrorMeta]" +   "list[ErrorMeta]" is not assignable to "ErrorMeta" (reportAssignmentType) + /torch/testing/_comparison.py:1325:12 - error: Type "ErrorMeta" is not assignable to return type "list[ErrorMeta]" +   "ErrorMeta" is not assignable to "list[ErrorMeta]" (reportReturnType) + /torch/testing/_comparison.py:1625:24 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:1627:26 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:1634:23 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:1635:23 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_comparison.py:1636:23 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/testing/_creation.py + /torch/testing/_creation.py:15:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:16:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:17:11 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:18:11 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:19:11 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:20:11 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:21:11 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:22:11 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:24:26 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:24:41 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:24:57 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:24:72 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:26:11 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:27:11 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:28:11 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:29:11 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:31:25 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:31:42 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:31:59 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:32:37 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:39:28 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:46:30 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:47:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:48:30 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:54:35 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:199:23 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:211:24 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:218:40 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:219:41 - error: "iinfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:223:44 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:230:24 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:235:36 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:236:37 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:240:24 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:242:19 - error: "view_as_real" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:248:36 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:249:37 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:253:24 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:253:64 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/testing/_creation.py:270:65 - error: "finfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/torch_version.py + /torch/torch_version.py:5:6 - error: Import "torch.version" could not be resolved (reportMissingImports) +/torch/types.py + /torch/types.py:20:5 - error: "device" is unknown import symbol (reportAttributeAccessIssue) + /torch/types.py:21:5 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/types.py:22:5 - error: "dtype" is unknown import symbol (reportAttributeAccessIssue) + /torch/types.py:23:5 - error: "layout" is unknown import symbol (reportAttributeAccessIssue) + /torch/types.py:24:5 - error: "qscheme" is unknown import symbol (reportAttributeAccessIssue) + /torch/types.py:25:5 - error: "Size" is unknown import symbol (reportAttributeAccessIssue) +/torch/utils/_content_store.py + /torch/utils/_content_store.py:112:30 - error: "default_generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_content_store.py:130:26 - error: Argument of type "tuple[Literal[0], Unknown]" cannot be assigned to parameter "pad" of type "list[int]" in function "pad" +   "tuple[Literal[0], Unknown]" is not assignable to "list[int]" (reportArgumentType) + /torch/utils/_content_store.py:131:26 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_content_store.py:196:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_content_store.py:203:28 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_content_store.py:238:19 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/_debug_mode.py + /torch/utils/_debug_mode.py:116:23 - error: "_DisablePythonDispatcher" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_debug_mode.py:135:49 - error: "tensor" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/utils/_debug_mode.py:168:19 - error: "_DisablePythonDispatcher" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_debug_mode.py:174:40 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_debug_mode.py:176:40 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_debug_mode.py:197:40 - error: "tensor" is not a known attribute of module "torch.distributed" (reportAttributeAccessIssue) + /torch/utils/_debug_mode.py:201:36 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_debug_mode.py:203:36 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_debug_mode.py:203:59 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_debug_mode.py:205:36 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_debug_mode.py:207:17 - error: "hash_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_debug_mode.py:236:17 - error: "_current_autograd_node" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_debug_mode.py:829:23 - error: "DisableTorchFunction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_debug_mode.py:990:38 - error: "_old_output_hfn" is possibly unbound (reportPossiblyUnboundVariable) +/torch/utils/_device.py + /torch/utils/_device.py:5:22 - error: "_len_torch_function_stack" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/_device.py:10:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_device.py:63:29 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/_dtype_abbrs.py + /torch/utils/_dtype_abbrs.py:6:11 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:7:11 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:8:11 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:9:11 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:10:11 - error: "float8_e4m3fn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:11:11 - error: "float8_e5m2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:12:11 - error: "float8_e4m3fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:13:11 - error: "float8_e5m2fnuz" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:14:11 - error: "float8_e8m0fnu" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:15:11 - error: "float4_e2m1fn_x2" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:16:11 - error: "complex32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:17:11 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:18:11 - error: "complex128" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:19:11 - error: "int8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:20:11 - error: "int16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:21:11 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:22:11 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:23:11 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:24:11 - error: "uint8" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:25:11 - error: "uint16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:26:11 - error: "uint32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:27:11 - error: "uint64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:28:11 - error: "bits16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_dtype_abbrs.py:29:11 - error: "bits1x8" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/_foreach_utils.py + /torch/utils/_foreach_utils.py:10:45 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_foreach_utils.py:22:18 - error: "_get_privateuse1_backend_name" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_foreach_utils.py:46:23 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_foreach_utils.py:46:37 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_foreach_utils.py:47:21 - error: "_group_tensors_by_device_and_dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_foreach_utils.py:50:47 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_foreach_utils.py:57:63 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/_import_utils.py + /torch/utils/_import_utils.py:30:12 - error: Import "dill" could not be resolved (reportMissingImports) +/torch/utils/_mode_utils.py + /torch/utils/_mode_utils.py:15:24 - error: "_DisableTorchDispatch" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/_ordered_set.py + /torch/utils/_ordered_set.py:51:9 - error: Method "add" overrides class "MutableSet" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "elem" (reportIncompatibleMethodOverride) + /torch/utils/_ordered_set.py:54:9 - error: Method "discard" overrides class "MutableSet" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "value", override parameter is named "elem" (reportIncompatibleMethodOverride) + /torch/utils/_ordered_set.py:163:20 - error: Type "OrderedSet[T_co@__and__]" is not assignable to return type "OrderedSet[T@OrderedSet]" +   "OrderedSet[T_co@__and__]" is not assignable to "OrderedSet[T@OrderedSet]" +     Type parameter "T@OrderedSet" is invariant, but "T_co@__and__" is not the same as "T@OrderedSet" (reportReturnType) +/torch/utils/_pallas.py + /torch/utils/_pallas.py:94:16 - error: Import "torch_xla.core.xla_model" could not be resolved (reportMissingImports) +/torch/utils/_python_dispatch.py + /torch/utils/_python_dispatch.py:16:5 - error: "_get_dispatch_stack_at" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:17:5 - error: "_len_torch_dispatch_stack" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:18:5 - error: "_pop_torch_dispatch_stack" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:19:5 - error: "_push_on_torch_dispatch_stack" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:20:5 - error: "DispatchKey" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:22:6 - warning: Import "torch._C._dynamo.guards" could not be resolved from source (reportMissingModuleSource) + /torch/utils/_python_dispatch.py:92:55 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:298:14 - error: Cannot access attribute "_dispatch_key" for class "TorchDispatchMode" +   Attribute "_dispatch_key" is unknown (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:299:40 - error: "DispatchKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:311:19 - error: "_functionality_to_backend_keys" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:318:41 - error: "_TorchDispatchModeKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:324:44 - error: "_TorchDispatchModeKey" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:334:20 - error: Argument of type "Unknown | None" cannot be assigned to parameter "mode" of type "TorchDispatchMode" in function "_push_mode" +   Type "Unknown | None" is not assignable to type "TorchDispatchMode" +     "None" is not assignable to "TorchDispatchMode" (reportArgumentType) + /torch/utils/_python_dispatch.py:414:21 - error: "Size" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:439:30 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:445:23 - error: "_prims_common" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:450:30 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:460:30 - error: "memory_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:610:23 - error: "_functionalize_unsafe_set" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:614:19 - error: "_functionalize_unsafe_set" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:753:34 - error: "Tag" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:797:36 - error: "_parse_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:798:26 - error: "_dispatch_key_for_device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_python_dispatch.py:804:49 - error: "_dispatch_has_kernel_for_dispatch_key" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/_pytree.py + /torch/utils/_pytree.py:111:9 - error: Method "default" overrides class "JSONEncoder" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "o", override parameter is named "obj" (reportIncompatibleMethodOverride) + /torch/utils/_pytree.py:719:32 - error: Expression of type "EllipsisType" cannot be assigned to parameter of type "dict[str, Any]" +   "EllipsisType" is not assignable to "dict[str, Any]" (reportArgumentType) + /torch/utils/_pytree.py:766:12 - error: Type "tuple[list[tuple[SequenceKey[Unknown], T@_tuple_flatten_with_keys]], Context]" is not assignable to return type "tuple[list[tuple[KeyEntry, T@_tuple_flatten_with_keys]], Context]" (reportReturnType) + /torch/utils/_pytree.py:780:12 - error: Type "tuple[list[tuple[SequenceKey[Unknown], T@_list_flatten_with_keys]], Context]" is not assignable to return type "tuple[list[tuple[KeyEntry, T@_list_flatten_with_keys]], Context]" (reportReturnType) + /torch/utils/_pytree.py:796:12 - error: Type "tuple[list[tuple[MappingKey[Context, Unknown], T@_dict_flatten_with_keys]], Context]" is not assignable to return type "tuple[list[tuple[KeyEntry, T@_dict_flatten_with_keys]], Context]" (reportReturnType) + /torch/utils/_pytree.py:812:12 - error: Type "tuple[list[tuple[GetAttrKey, Any]], Context]" is not assignable to return type "tuple[list[tuple[KeyEntry, Any]], Context]" (reportReturnType) + /torch/utils/_pytree.py:865:12 - error: Type "tuple[list[tuple[MappingKey[Context, Unknown], T@_ordereddict_flatten_with_keys]], Context]" is not assignable to return type "tuple[list[tuple[KeyEntry, T@_ordereddict_flatten_with_keys]], Context]" (reportReturnType) + /torch/utils/_pytree.py:890:12 - error: Type "tuple[list[tuple[MappingKey[Context, Unknown], T@_defaultdict_flatten_with_keys]], Context]" is not assignable to return type "tuple[list[tuple[KeyEntry, T@_defaultdict_flatten_with_keys]], Context]" (reportReturnType) + /torch/utils/_pytree.py:949:12 - error: Type "tuple[list[tuple[SequenceKey[Unknown], T@_deque_flatten_with_keys]], Context]" is not assignable to return type "tuple[list[tuple[KeyEntry, T@_deque_flatten_with_keys]], Context]" (reportReturnType) + /torch/utils/_pytree.py:1323:5 - error: "_children" overrides symbol of same name in class "TreeSpec" +   "list[LeafSpec]" is not assignable to "list[TreeSpec]" +     Type parameter "_T@list" is invariant, but "LeafSpec" is not the same as "TreeSpec" +     Consider switching from "list" to "Sequence" which is covariant (reportIncompatibleVariableOverride) +/torch/utils/_strobelight/examples/cli_function_profiler_example.py + /torch/utils/_strobelight/examples/cli_function_profiler_example.py:22:26 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_strobelight/examples/cli_function_profiler_example.py:22:44 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_strobelight/examples/cli_function_profiler_example.py:22:62 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/_sympy/functions.py + /torch/utils/_sympy/functions.py:219:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 3 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:323:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 4 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:402:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 4 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:418:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 3 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:440:18 - error: Cannot access attribute "is_even" for class "Expr" +   Attribute "is_even" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/functions.py:442:18 - error: Cannot access attribute "is_odd" for class "Expr" +   Attribute "is_odd" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/functions.py:476:40 - error: Cannot access attribute "is_positive" for class "Basic" +   Attribute "is_positive" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/functions.py:489:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 3 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:548:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:559:66 - error: Cannot access attribute "precedence" for class "Basic" +   Attribute "precedence" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/functions.py:567:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:598:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 3 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:608:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 3 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:873:9 - error: Method "_new_args_filter" overrides class "LatticeOp" in an incompatible manner +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 3 mismatch: base parameter "call_cls" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:1071:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 3 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:1098:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 3 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:1120:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 3 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:1145:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 3 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:1242:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:1255:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:1270:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:1300:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 3 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:1311:9 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:1353:20 - error: Argument of type "Basic" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "Basic" is not assignable to type "ConvertibleToInt" +     "Basic" is not assignable to "str" +     "Basic" is incompatible with protocol "Buffer" +       "__buffer__" is not present +     "Basic" is incompatible with protocol "SupportsInt" +       "__int__" is not present +     "Basic" is incompatible with protocol "SupportsIndex" +       "__index__" is not present + ... (reportArgumentType) + /torch/utils/_sympy/functions.py:1353:20 - error: Argument of type "Basic" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "Basic" is not assignable to type "ConvertibleToInt" +     "Basic" is not assignable to "str" +     "Basic" is incompatible with protocol "Buffer" +       "__buffer__" is not present +     "Basic" is incompatible with protocol "SupportsInt" +       "__int__" is not present +     "Basic" is incompatible with protocol "SupportsIndex" +       "__index__" is not present (reportArgumentType) + /torch/utils/_sympy/functions.py:1357:22 - error: Argument of type "Basic" cannot be assigned to parameter "x" of type "ConvertibleToFloat" in function "__new__" +   Type "Basic" is not assignable to type "ConvertibleToFloat" +     "Basic" is not assignable to "str" +     "Basic" is incompatible with protocol "Buffer" +       "__buffer__" is not present +     "Basic" is incompatible with protocol "SupportsFloat" +       "__float__" is not present +     "Basic" is incompatible with protocol "SupportsIndex" +       "__index__" is not present (reportArgumentType) + /torch/utils/_sympy/functions.py:1376:13 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 2 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) + /torch/utils/_sympy/functions.py:1441:13 - error: Method "eval" overrides class "Application" in an incompatible manner +   Positional parameter count mismatch; base method has 2, but override has 3 +   Parameter "args" is missing in override (reportIncompatibleMethodOverride) +/torch/utils/_sympy/interp.py + /torch/utils/_sympy/interp.py:191:23 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_sympy/interp.py:197:23 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_sympy/interp.py:199:23 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_sympy/interp.py:201:23 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_sympy/interp.py:220:17 - error: Argument of type "Basic" cannot be assigned to parameter "expr" of type "Expr | Boolean" in function "sympy_interp" +   Type "Basic" is not assignable to type "Expr | Boolean" +     "Basic" is not assignable to "Expr" +     "Basic" is not assignable to "Boolean" (reportArgumentType) +/torch/utils/_sympy/numbers.py + /torch/utils/_sympy/numbers.py:33:5 - error: "is_comparable" incorrectly overrides property of same name in class "Basic" (reportIncompatibleMethodOverride) + /torch/utils/_sympy/numbers.py:33:21 - error: Type "Literal[True]" is not assignable to declared type "property" +   "Literal[True]" is not assignable to "property" (reportAssignmentType) + /torch/utils/_sympy/numbers.py:123:9 - error: Method "_eval_power" overrides class "Expr" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "other", override parameter is named "expt" (reportIncompatibleMethodOverride) + /torch/utils/_sympy/numbers.py:226:5 - error: "is_comparable" incorrectly overrides property of same name in class "Basic" (reportIncompatibleMethodOverride) + /torch/utils/_sympy/numbers.py:226:21 - error: Type "Literal[True]" is not assignable to declared type "property" +   "Literal[True]" is not assignable to "property" (reportAssignmentType) + /torch/utils/_sympy/numbers.py:311:9 - error: Method "_eval_power" overrides class "Expr" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "other", override parameter is named "expt" (reportIncompatibleMethodOverride) +/torch/utils/_sympy/printers.py + /torch/utils/_sympy/printers.py:29:51 - error: Cannot access attribute "rel_op" for class "Expr" +   Attribute "rel_op" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/printers.py:43:49 - error: Argument of type "float" cannot be assigned to parameter "level" of type "int" in function "stringify" +   "float" is not assignable to "int" (reportArgumentType) + /torch/utils/_sympy/printers.py:46:46 - error: Argument of type "float" cannot be assigned to parameter "level" of type "int" in function "stringify" +   "float" is not assignable to "int" (reportArgumentType) + /torch/utils/_sympy/printers.py:56:17 - error: Cannot access attribute "_prec" for class "Expr" +   Attribute "_prec" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/printers.py:72:9 - error: Method "_print_Pow" overrides class "StrPrinter" in an incompatible manner +   Positional parameter count mismatch; base method has 3, but override has 2 +   Parameter 3 mismatch: base parameter "rational" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/utils/_sympy/printers.py:74:23 - error: Argument of type "Basic" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "Basic" is not assignable to type "ConvertibleToInt" +     "Basic" is not assignable to "str" +     "Basic" is incompatible with protocol "Buffer" +       "__buffer__" is not present +     "Basic" is incompatible with protocol "SupportsInt" +       "__int__" is not present +     "Basic" is incompatible with protocol "SupportsIndex" +       "__index__" is not present + ... (reportArgumentType) + /torch/utils/_sympy/printers.py:74:23 - error: Argument of type "Basic" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "Basic" is not assignable to type "ConvertibleToInt" +     "Basic" is not assignable to "str" +     "Basic" is incompatible with protocol "Buffer" +       "__buffer__" is not present +     "Basic" is incompatible with protocol "SupportsInt" +       "__int__" is not present +     "Basic" is incompatible with protocol "SupportsIndex" +       "__index__" is not present (reportArgumentType) + /torch/utils/_sympy/printers.py:76:19 - error: Argument of type "Basic" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "Basic" is not assignable to type "ConvertibleToInt" +     "Basic" is not assignable to "str" +     "Basic" is incompatible with protocol "Buffer" +       "__buffer__" is not present +     "Basic" is incompatible with protocol "SupportsInt" +       "__int__" is not present +     "Basic" is incompatible with protocol "SupportsIndex" +       "__index__" is not present + ... (reportArgumentType) + /torch/utils/_sympy/printers.py:76:19 - error: Argument of type "Basic" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "Basic" is not assignable to type "ConvertibleToInt" +     "Basic" is not assignable to "str" +     "Basic" is incompatible with protocol "Buffer" +       "__buffer__" is not present +     "Basic" is incompatible with protocol "SupportsInt" +       "__int__" is not present +     "Basic" is incompatible with protocol "SupportsIndex" +       "__index__" is not present (reportArgumentType) + /torch/utils/_sympy/printers.py:179:49 - error: Argument of type "float" cannot be assigned to parameter "level" of type "int" in function "stringify" +   "float" is not assignable to "int" (reportArgumentType) + /torch/utils/_sympy/printers.py:189:49 - error: Argument of type "float" cannot be assigned to parameter "level" of type "int" in function "stringify" +   "float" is not assignable to "int" (reportArgumentType) + /torch/utils/_sympy/printers.py:195:34 - error: Argument of type "Basic" cannot be assigned to parameter "expr" of type "Expr" in function "_helper_sqrt" +   "Basic" is not assignable to "Expr" (reportArgumentType) + /torch/utils/_sympy/printers.py:316:13 - error: "Basic" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/utils/_sympy/printers.py:355:13 - error: "Basic" is not iterable +   "__iter__" method not defined (reportGeneralTypeIssues) + /torch/utils/_sympy/printers.py:373:21 - error: Cannot access attribute "is_integer" for class "Expr" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/printers.py:384:17 - error: Cannot access attribute "is_integer" for class "Expr" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/printers.py:392:58 - error: Cannot access attribute "is_integer" for class "Expr" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/printers.py:398:58 - error: Cannot access attribute "is_integer" for class "Expr" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/printers.py:449:16 - error: Cannot access attribute "is_integer" for class "Basic" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/printers.py:450:23 - error: Argument of type "Basic" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "Basic" is not assignable to type "ConvertibleToInt" +     "Basic" is not assignable to "str" +     "Basic" is incompatible with protocol "Buffer" +       "__buffer__" is not present +     "Basic" is incompatible with protocol "SupportsInt" +       "__int__" is not present +     "Basic" is incompatible with protocol "SupportsIndex" +       "__index__" is not present + ... (reportArgumentType) + /torch/utils/_sympy/printers.py:450:23 - error: Argument of type "Basic" cannot be assigned to parameter "x" of type "ConvertibleToInt" in function "__new__" +   Type "Basic" is not assignable to type "ConvertibleToInt" +     "Basic" is not assignable to "str" +     "Basic" is incompatible with protocol "Buffer" +       "__buffer__" is not present +     "Basic" is incompatible with protocol "SupportsInt" +       "__int__" is not present +     "Basic" is incompatible with protocol "SupportsIndex" +       "__index__" is not present (reportArgumentType) + /torch/utils/_sympy/printers.py:464:62 - error: Cannot access attribute "is_integer" for class "Expr" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/printers.py:467:46 - error: Argument of type "Basic" cannot be assigned to parameter "x" of type "ConvertibleToFloat" in function "__new__" +   Type "Basic" is not assignable to type "ConvertibleToFloat" +     "Basic" is not assignable to "str" +     "Basic" is incompatible with protocol "Buffer" +       "__buffer__" is not present +     "Basic" is incompatible with protocol "SupportsFloat" +       "__float__" is not present +     "Basic" is incompatible with protocol "SupportsIndex" +       "__index__" is not present (reportArgumentType) + /torch/utils/_sympy/printers.py:471:17 - error: Cannot access attribute "q" for class "Expr" +   Attribute "q" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/printers.py:472:25 - error: Cannot access attribute "p" for class "Expr" +   Attribute "p" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/printers.py:474:25 - error: Cannot access attribute "p" for class "Expr" +   Attribute "p" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/printers.py:474:36 - error: Cannot access attribute "q" for class "Expr" +   Attribute "q" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/printers.py:475:58 - error: Cannot access attribute "is_integer" for class "Expr" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/printers.py:481:58 - error: Cannot access attribute "is_integer" for class "Expr" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/printers.py:487:58 - error: Cannot access attribute "is_integer" for class "Expr" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/printers.py:573:19 - error: Cannot access attribute "is_integer" for class "Basic" +   Attribute "is_integer" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/printers.py:575:16 - error: Operator ">=" not supported for types "Basic" and "Literal[0]" (reportOperatorIssue) + /torch/utils/_sympy/printers.py:581:86 - error: Operator "-" not supported for type "Basic" (reportOperatorIssue) +/torch/utils/_sympy/reference.py + /torch/utils/_sympy/reference.py:344:9 - error: Method "sym_sum" overrides class "PythonReferenceAnalysis" in an incompatible manner +   Base method is declared as a classmethod but override is not +   Positional parameter count mismatch; base method has 2, but override has 1 +   Parameter 1 name mismatch: base parameter is named "cls", override parameter is named "args" +   Parameter 2 mismatch: base parameter "args" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) + /torch/utils/_sympy/reference.py:348:45 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/_sympy/singleton_int.py + /torch/utils/_sympy/singleton_int.py:76:5 - error: Function declaration "_eval_is_ge" is obscured by a declaration of the same name (reportRedeclaration) + /torch/utils/_sympy/singleton_int.py:83:5 - error: Function declaration "_eval_is_ge" is obscured by a declaration of the same name (reportRedeclaration) +/torch/utils/_sympy/solve.py + /torch/utils/_sympy/solve.py:147:27 - error: Cannot access attribute "is_positive" for class "Basic" +   Attribute "is_positive" is unknown (reportAttributeAccessIssue) +/torch/utils/_sympy/value_ranges.py + /torch/utils/_sympy/value_ranges.py:134:18 - error: "ValueRanges" is not defined (reportUndefinedVariable) + /torch/utils/_sympy/value_ranges.py:136:18 - error: "ValueRanges" is not defined (reportUndefinedVariable) + /torch/utils/_sympy/value_ranges.py:327:16 - error: Type "ValueRanges[Expr]" is not assignable to return type "ValueRanges[Boolean]" +   "ValueRanges[Expr]" is not assignable to "ValueRanges[Boolean]" +     Type parameter "_T@ValueRanges" is invariant, but "Expr" is not the same as "Boolean" (reportReturnType) + /torch/utils/_sympy/value_ranges.py:350:36 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/utils/_sympy/value_ranges.py:350:59 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/utils/_sympy/value_ranges.py:353:33 - error: Cannot access attribute "lower" for class "int" +   Attribute "lower" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:353:33 - error: Cannot access attribute "lower" for class "float" +   Attribute "lower" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:353:33 - error: Cannot access attribute "lower" for class "Expr" +   Attribute "lower" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:353:46 - error: Cannot access attribute "upper" for class "int" +   Attribute "upper" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:353:46 - error: Cannot access attribute "upper" for class "float" +   Attribute "upper" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:353:46 - error: Cannot access attribute "upper" for class "Expr" +   Attribute "upper" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:357:36 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/utils/_sympy/value_ranges.py:357:59 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/utils/_sympy/value_ranges.py:372:34 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/utils/_sympy/value_ranges.py:372:57 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/utils/_sympy/value_ranges.py:375:18 - error: Cannot access attribute "lower" for class "int" +   Attribute "lower" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:375:18 - error: Cannot access attribute "lower" for class "float" +   Attribute "lower" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:375:18 - error: Cannot access attribute "lower" for class "Expr" +   Attribute "lower" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:376:18 - error: Cannot access attribute "upper" for class "int" +   Attribute "upper" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:376:18 - error: Cannot access attribute "upper" for class "float" +   Attribute "upper" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:376:18 - error: Cannot access attribute "upper" for class "Expr" +   Attribute "upper" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:380:41 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/utils/_sympy/value_ranges.py:380:64 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/utils/_sympy/value_ranges.py:383:12 - error: Operator "in" not supported for types "Literal[0]" and "ExprIn | Unknown" +   Operator "in" not supported for types "Literal[0]" and "int" +   Operator "in" not supported for types "Literal[0]" and "float" +   Operator "in" not supported for types "Literal[0]" and "Expr" (reportOperatorIssue) + /torch/utils/_sympy/value_ranges.py:384:30 - error: Cannot access attribute "lower" for class "int" +   Attribute "lower" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:384:30 - error: Cannot access attribute "lower" for class "float" +   Attribute "lower" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:384:30 - error: Cannot access attribute "lower" for class "Expr" +   Attribute "lower" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:384:43 - error: Cannot access attribute "upper" for class "int" +   Attribute "upper" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:384:43 - error: Cannot access attribute "upper" for class "float" +   Attribute "upper" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:384:43 - error: Cannot access attribute "upper" for class "Expr" +   Attribute "upper" is unknown (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:394:21 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/utils/_sympy/value_ranges.py:395:21 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/utils/_sympy/value_ranges.py:397:10 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/utils/_sympy/value_ranges.py:402:21 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/utils/_sympy/value_ranges.py:403:21 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/utils/_sympy/value_ranges.py:405:10 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/utils/_sympy/value_ranges.py:1104:21 - error: "_guards" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_sympy/value_ranges.py:1124:12 - error: Type "Unknown | ValueRanges[Unknown] | object | Any" is not assignable to return type "ValueRanges[Unknown]" +   Type "Unknown | ValueRanges[Unknown] | object | Any" is not assignable to type "ValueRanges[Unknown]" +     "object" is not assignable to "ValueRanges[Unknown]" (reportReturnType) + /torch/utils/_sympy/value_ranges.py:1125:34 - error: Argument of type "dict[Symbol, ValueRanges[Unknown]] | Unknown | None" cannot be assigned to parameter "env" of type "dict[Symbol, Any]" in function "sympy_interp" +   Type "dict[Symbol, ValueRanges[Unknown]] | Unknown | None" is not assignable to type "dict[Symbol, Any]" +     "None" is not assignable to "dict[Symbol, Any]" (reportArgumentType) +/torch/utils/_triton.py + /torch/utils/_triton.py:9:16 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/utils/_triton.py:19:16 - error: Import "triton" could not be resolved (reportMissingImports) + /torch/utils/_triton.py:34:31 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_triton.py:43:22 - error: Import "triton.tools.experimental_descriptor" could not be resolved (reportMissingImports) + /torch/utils/_triton.py:60:22 - error: Import "triton.tools.tensor_descriptor" could not be resolved (reportMissingImports) + /torch/utils/_triton.py:84:35 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_triton.py:88:22 - error: Import "triton.language.extra.cuda" could not be resolved (reportMissingImports) + /torch/utils/_triton.py:99:22 - error: Import "triton.language" could not be resolved (reportMissingImports) + /torch/utils/_triton.py:116:31 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_triton.py:131:35 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/_triton.py:134:22 - error: Import "triton.language" could not be resolved (reportMissingImports) + /torch/utils/_triton.py:158:16 - error: Import "triton.backends" could not be resolved (reportMissingImports) + /torch/utils/_triton.py:184:10 - error: Import "triton.compiler.compiler" could not be resolved (reportMissingImports) + /torch/utils/_triton.py:185:10 - error: Import "triton.runtime.driver" could not be resolved (reportMissingImports) +/torch/utils/backcompat/__init__.py + /torch/utils/backcompat/__init__.py:3:5 - error: "_get_backcompat_broadcast_warn" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/backcompat/__init__.py:4:5 - error: "_get_backcompat_keepdim_warn" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/backcompat/__init__.py:5:5 - error: "_set_backcompat_broadcast_warn" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/backcompat/__init__.py:6:5 - error: "_set_backcompat_keepdim_warn" is unknown import symbol (reportAttributeAccessIssue) +/torch/utils/backend_registration.py + /torch/utils/backend_registration.py:4:22 - error: "_get_privateuse1_backend_name" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/backend_registration.py:4:53 - error: "_rename_privateuse1_backend" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/backend_registration.py:92:57 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/backend_registration.py:109:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/backend_registration.py:112:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/backend_registration.py:113:19 - error: Cannot access attribute "type" for class "int" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/utils/backend_registration.py:113:19 - error: Cannot access attribute "type" for class "str" +   Attribute "type" is unknown (reportAttributeAccessIssue) + /torch/utils/backend_registration.py:113:19 - error: "type" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/utils/backend_registration.py:115:21 - error: Cannot access attribute "index" for class "int" +   Attribute "index" is unknown (reportAttributeAccessIssue) + /torch/utils/backend_registration.py:115:21 - error: "index" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/utils/backend_registration.py:118:33 - error: Cannot access attribute "index" for class "int" +   Attribute "index" is unknown (reportAttributeAccessIssue) + /torch/utils/backend_registration.py:118:33 - error: "index" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/utils/backend_registration.py:122:12 - error: Type "Unknown | ((sub: str, start: SupportsIndex | None = None, end: SupportsIndex | None = None, /) -> int) | int | str | None" is not assignable to return type "int" +   Type "Unknown | ((sub: str, start: SupportsIndex | None = None, end: SupportsIndex | None = None, /) -> int) | int | str | None" is not assignable to type "int" +     "str" is not assignable to "int" (reportReturnType) + /torch/utils/backend_registration.py:139:29 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/backend_registration.py:168:26 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/backend_registration.py:190:29 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/backend_registration.py:253:20 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/backend_registration.py:270:61 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/backend_registration.py:357:35 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/backend_registration.py:469:38 - error: "_acc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/backend_registration.py:480:34 - error: "_acc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/backend_registration.py:520:14 - error: "_acc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/backend_registration.py:521:14 - error: "_acc" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/benchmark/examples/compare.py + /torch/utils/benchmark/examples/compare.py:61:28 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/examples/compare.py:62:28 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/examples/compare.py:63:31 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/benchmark/examples/fuzzer.py + /torch/utils/benchmark/examples/fuzzer.py:28:17 - error: Argument of type "list[list[Unknown]]" cannot be assigned to parameter "tensors" of type "list[FuzzedTensor | list[FuzzedTensor]]" in function "__init__" (reportArgumentType) + /torch/utils/benchmark/examples/fuzzer.py:30:17 - error: Module is not callable (reportCallIssue) +/torch/utils/benchmark/examples/op_benchmark.py + /torch/utils/benchmark/examples/op_benchmark.py:32:49 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/examples/op_benchmark.py:33:47 - error: "int32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/benchmark/examples/simple_timeit.py + /torch/utils/benchmark/examples/simple_timeit.py:14:29 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/examples/simple_timeit.py:14:54 - error: "ones" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/benchmark/examples/sparse/compare.py + /torch/utils/benchmark/examples/sparse/compare.py:89:73 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/examples/sparse/compare.py:90:28 - error: "rand" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/examples/sparse/compare.py:90:51 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/examples/sparse/compare.py:91:31 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/benchmark/examples/sparse/op_benchmark.py + /torch/utils/benchmark/examples/sparse/op_benchmark.py:29:49 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/examples/sparse/op_benchmark.py:30:50 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/benchmark/examples/spectral_ops_fuzz_test.py + /torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:23:61 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:56:49 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:57:52 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:58:46 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:59:46 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:60:48 - error: "complex64" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/benchmark/op_fuzzers/binary.py + /torch/utils/benchmark/op_fuzzers/binary.py:17:42 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/benchmark/op_fuzzers/sparse_binary.py + /torch/utils/benchmark/op_fuzzers/sparse_binary.py:17:42 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/benchmark/op_fuzzers/sparse_unary.py + /torch/utils/benchmark/op_fuzzers/sparse_unary.py:9:29 - error: "_dtype" is unknown import symbol (reportAttributeAccessIssue) +/torch/utils/benchmark/op_fuzzers/spectral.py + /torch/utils/benchmark/op_fuzzers/spectral.py:31:50 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/benchmark/op_fuzzers/unary.py + /torch/utils/benchmark/op_fuzzers/unary.py:17:42 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/benchmark/utils/common.py + /torch/utils/benchmark/utils/common.py:147:33 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/utils/common.py:149:21 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/utils/common.py:150:24 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/utils/common.py:154:29 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/utils/common.py:155:45 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/utils/common.py:166:35 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/utils/common.py:166:74 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/utils/common.py:263:62 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/utils/common.py:281:27 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/utils/common.py:283:24 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/utils/common.py:292:31 - error: "get_num_threads" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/utils/common.py:294:15 - error: "set_num_threads" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/utils/common.py:297:15 - error: "set_num_threads" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/benchmark/utils/compare.py + /torch/utils/benchmark/utils/compare.py:8:19 - error: "tensor" is unknown import symbol (reportAttributeAccessIssue) +/torch/utils/benchmark/utils/compile.py + /torch/utils/benchmark/utils/compile.py:19:10 - warning: Import "tabulate" could not be resolved from source (reportMissingModuleSource) + /torch/utils/benchmark/utils/compile.py:176:62 - error: "compilation_time" is possibly unbound (reportPossiblyUnboundVariable) + /torch/utils/benchmark/utils/compile.py:177:58 - error: "running_time" is possibly unbound (reportPossiblyUnboundVariable) + /torch/utils/benchmark/utils/compile.py:195:16 - error: Object of type "None" cannot be called (reportOptionalCall) +/torch/utils/benchmark/utils/cpp_jit.py + /torch/utils/benchmark/utils/cpp_jit.py:97:41 - error: Type "ModuleType | str" is not assignable to declared type "CallgrindModuleType | None" +   Type "ModuleType | str" is not assignable to type "CallgrindModuleType | None" +     Type "ModuleType" is not assignable to type "CallgrindModuleType | None" +       "ModuleType" is incompatible with protocol "CallgrindModuleType" +         "_valgrind_supported_platform" is not present +         "_valgrind_toggle" is not present +           "__file__" is invariant because it is mutable +           "__file__" is an incompatible type +       "ModuleType" is not assignable to "None" (reportAssignmentType) + /torch/utils/benchmark/utils/cpp_jit.py:107:12 - error: Type "CallgrindModuleType | None" is not assignable to return type "CallgrindModuleType" +   Type "CallgrindModuleType | None" is not assignable to type "CallgrindModuleType" +     "None" is incompatible with protocol "CallgrindModuleType" +       "__file__" is not present +       "__name__" is not present +       "_valgrind_supported_platform" is not present +       "_valgrind_toggle" is not present (reportReturnType) +/torch/utils/benchmark/utils/fuzzer.py + /torch/utils/benchmark/utils/fuzzer.py:199:21 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/benchmark/utils/sparse_fuzzer.py + /torch/utils/benchmark/utils/sparse_fuzzer.py:19:21 - error: "float32" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/benchmark/utils/timer.py + /torch/utils/benchmark/utils/timer.py:176:36 - error: Type "type[Timer]" is not assignable to declared type "type[TimerClass]" +   "Timer" is incompatible with protocol "TimerClass" +   Type "type[Timer]" is not assignable to type "type[TimerClass]" +     "__init__" is an incompatible type +       Type "(stmt: _Stmt = "pass", setup: _Stmt = "pass", timer: _Timer = ..., globals: dict[str, Any] | None = None) -> None" is not assignable to type "(stmt: str, setup: str, timer: () -> float, globals: dict[str, Any], **kwargs: Any) -> None" +         Parameter "**kwargs" has no corresponding parameter (reportAssignmentType) + /torch/utils/benchmark/utils/timer.py:213:31 - error: Cannot assign to attribute "_timer_cls" for class "Timer*" +   "CPPTimer" is incompatible with protocol "TimerClass" +   Type "type[CPPTimer]" is not assignable to type "type[TimerClass]" +     "__init__" is an incompatible type +       Type "(stmt: str, setup: str, global_setup: str, timer: () -> float, globals: dict[str, Any]) -> None" is not assignable to type "(stmt: str, setup: str, timer: () -> float, globals: dict[str, Any], **kwargs: Any) -> None" +         Parameter name mismatch: "timer" versus "global_setup" +         Parameter 3: type "() -> float" is incompatible with type "str" +           "FunctionType" is not assignable to "str" +         Parameter name mismatch: "globals" versus "timer" + ... (reportAttributeAccessIssue) + /torch/utils/benchmark/utils/timer.py:311:30 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py + /torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py:80:46 - error: "_tensor_str" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py:495:55 - error: "_valgrind_supported_platform" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/bundled_inputs.py + /torch/utils/bundled_inputs.py:7:22 - error: "TupleType" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/bundled_inputs.py:7:33 - error: "ListType" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/bundled_inputs.py:401:27 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/bundled_inputs.py:401:52 - error: "channels_last" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/checkpoint.py + /torch/utils/checkpoint.py:8:20 - warning: Wildcard import from a library not allowed (reportWildcardImportFromLibrary) + /torch/utils/checkpoint.py:63:37 - error: "prev" is possibly unbound (reportPossiblyUnboundVariable) + /torch/utils/checkpoint.py:779:41 - error: "prev" is possibly unbound (reportPossiblyUnboundVariable) + /torch/utils/checkpoint.py:1574:35 - error: "had_device_in_fwd" is possibly unbound (reportPossiblyUnboundVariable) + /torch/utils/checkpoint.py:1575:27 - error: "fwd_devices" is possibly unbound (reportPossiblyUnboundVariable) + /torch/utils/checkpoint.py:1580:37 - error: "fwd_cpu_state" is possibly unbound (reportPossiblyUnboundVariable) + /torch/utils/checkpoint.py:1581:20 - error: "had_device_in_fwd" is possibly unbound (reportPossiblyUnboundVariable) + /torch/utils/checkpoint.py:1582:39 - error: "fwd_devices" is possibly unbound (reportPossiblyUnboundVariable) + /torch/utils/checkpoint.py:1582:52 - error: "fwd_device_states" is possibly unbound (reportPossiblyUnboundVariable) + /torch/utils/checkpoint.py:1596:19 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/checkpoint.py:1637:21 - error: "_get_graph_exec_group" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/checkpoint.py:1640:50 - error: "_get_graph_exec_group" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/checkpoint.py:1642:18 - error: "_set_graph_exec_group" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/checkpoint.py:1646:18 - error: "_set_graph_exec_group" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/checkpoint.py:1651:25 - error: "_get_graph_exec_group" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/collect_env.py + /torch/utils/collect_env.py:909:21 - error: "torch" is possibly unbound (reportPossiblyUnboundVariable) + /torch/utils/collect_env.py:910:21 - error: "torch" is possibly unbound (reportPossiblyUnboundVariable) + /torch/utils/collect_env.py:912:24 - error: "torch" is possibly unbound (reportPossiblyUnboundVariable) + /torch/utils/collect_env.py:912:36 - error: "_crash_handler" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) +/torch/utils/cpp_backtrace.py + /torch/utils/cpp_backtrace.py:2:22 - error: "_get_cpp_backtrace" is unknown import symbol (reportAttributeAccessIssue) +/torch/utils/cpp_extension.py + /torch/utils/cpp_extension.py:139:36 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/cpp_extension.py:156:31 - error: "metadata" is not a known attribute of module "importlib" (reportAttributeAccessIssue) + /torch/utils/cpp_extension.py:161:26 - error: "metadata" is not a known attribute of module "importlib" (reportAttributeAccessIssue) + /torch/utils/cpp_extension.py:229:79 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/cpp_extension.py:231:65 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/cpp_extension.py:233:18 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/cpp_extension.py:234:56 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/cpp_extension.py:518:34 - error: Argument of type "Module("torch.cuda")" cannot be assigned to parameter "version" of type "str" in function "__init__" +   Type "Module("torch.cuda")" is not assignable to type "str" (reportArgumentType) + /torch/utils/cpp_extension.py:774:61 - error: "original_compiler" is possibly unbound (reportPossiblyUnboundVariable) + /torch/utils/cpp_extension.py:1094:9 - error: Method "get_ext_filename" overrides class "build_ext" in an incompatible manner +   Parameter 2 name mismatch: base parameter is named "fullname", override parameter is named "ext_name" (reportIncompatibleMethodOverride) + /torch/utils/cpp_extension.py:2515:30 - error: "_cuda_getArchFlags" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/cpp_extension.py:2541:43 - error: "replace" is not a known attribute of module "torch.cuda" (reportAttributeAccessIssue) +/torch/utils/data/_utils/collate.py + /torch/utils/data/_utils/collate.py:163:37 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/utils/data/_utils/collate.py:165:45 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/utils/data/_utils/collate.py:202:39 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/utils/data/_utils/collate.py:220:49 - error: "abc" is not a known attribute of module "collections" (reportAttributeAccessIssue) + /torch/utils/data/_utils/collate.py:259:15 - error: "sparse_coo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/_utils/collate.py:260:15 - error: "sparse_csr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/_utils/collate.py:261:15 - error: "sparse_bsr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/_utils/collate.py:262:15 - error: "sparse_csc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/_utils/collate.py:263:15 - error: "sparse_bsc" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/_utils/collate.py:275:18 - error: "stack" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/_utils/collate.py:288:27 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/_utils/collate.py:296:18 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/_utils/collate.py:304:18 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/_utils/collate.py:304:44 - error: "float64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/_utils/collate.py:312:18 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/data/_utils/pin_memory.py + /torch/utils/data/_utils/pin_memory.py:21:11 - error: "set_num_threads" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/data/_utils/signal_handling.py + /torch/utils/data/_utils/signal_handling.py:40:5 - error: "_error_if_any_worker_fails" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/data/_utils/signal_handling.py:41:5 - error: "_remove_worker_pids" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/data/_utils/signal_handling.py:42:5 - error: "_set_worker_pids" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/data/_utils/signal_handling.py:43:5 - error: "_set_worker_signal_handlers" is unknown import symbol (reportAttributeAccessIssue) +/torch/utils/data/_utils/worker.py + /torch/utils/data/_utils/worker.py:30:11 - error: Class declaration "ManagerWatchdog" is obscured by a declaration of the same name (reportRedeclaration) + /torch/utils/data/_utils/worker.py:257:15 - error: "set_num_threads" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/_utils/worker.py:270:28 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/data/dataloader.py + /torch/utils/data/dataloader.py:268:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/dataloader.py:455:69 - error: "context" is not a known attribute of module "multiprocessing" (reportAttributeAccessIssue) + /torch/utils/data/dataloader.py:612:49 - error: "sched_getaffinity" is not a known attribute of module "os" (reportAttributeAccessIssue) + /torch/utils/data/dataloader.py:650:32 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/dataloader.py:706:19 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/dataloader.py:706:41 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/dataloader.py:723:32 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/dataloader.py:1126:12 - error: Operator "<=" not supported for "None" (reportOptionalOperand) + /torch/utils/data/dataloader.py:1293:24 - error: Operator "*" not supported for "None" (reportOptionalOperand) + /torch/utils/data/dataloader.py:1546:21 - error: Operator "*" not supported for "None" (reportOptionalOperand) +/torch/utils/data/datapipes/dataframe/dataframes.py + /torch/utils/data/datapipes/dataframe/dataframes.py:392:26 - error: Type "dict[str, list[Any] | Unknown | None]" is not assignable to declared type "dict[str, list[Any]]" +   Type "Unknown | None" is not assignable to type "list[Any]" +     "None" is not assignable to "list[Any]" (reportAssignmentType) +/torch/utils/data/datapipes/datapipe.py + /torch/utils/data/datapipes/datapipe.py:139:16 - error: Type "Self@IterDataPipe[_T_co@IterDataPipe]" is not assignable to return type "Iterator[_T_co@IterDataPipe]" +   "IterDataPipe[_T_co@IterDataPipe]*" is incompatible with protocol "Iterator[_T_co@IterDataPipe]" +     "__next__" is not present (reportReturnType) + /torch/utils/data/datapipes/datapipe.py:411:39 - error: Attribute type cannot use type variable "_T_co@__init__" scoped to local method (reportGeneralTypeIssues) +/torch/utils/data/datapipes/iter/callable.py + /torch/utils/data/datapipes/iter/callable.py:79:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/datapipes/iter/callable.py:92:26 - error: Index 0 is out of range for type tuple[()] (reportGeneralTypeIssues) +/torch/utils/data/datapipes/iter/combinatorics.py + /torch/utils/data/datapipes/iter/combinatorics.py:159:40 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/datapipes/iter/combinatorics.py:159:62 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/data/datapipes/iter/combining.py + /torch/utils/data/datapipes/iter/combining.py:63:28 - error: Argument of type "IterDataPipe[Unknown]" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   "IterDataPipe[Unknown]" is incompatible with protocol "Sized" +     "__len__" is not present (reportArgumentType) + /torch/utils/data/datapipes/iter/combining.py:185:20 - error: Argument of type "IterDataPipe[Unknown] | Any" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "IterDataPipe[Unknown] | Any" is not assignable to type "Sized" +     "IterDataPipe[Unknown]" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /torch/utils/data/datapipes/iter/combining.py:187:9 - error: Method "get_next_element_by_instance" overrides class "_ContainerTemplate" in an incompatible manner +   Return type mismatch: base method returns type "None", override returns type "Generator[Unknown | Any, Any, None]" +     "Generator[Unknown | Any, Any, None]" is not assignable to "None" (reportIncompatibleMethodOverride) + /torch/utils/data/datapipes/iter/combining.py:243:9 - error: Method "get_length_by_instance" overrides class "_ContainerTemplate" in an incompatible manner +   Return type mismatch: base method returns type "None", override returns type "int" +     "int" is not assignable to "None" (reportIncompatibleMethodOverride) + /torch/utils/data/datapipes/iter/combining.py:245:20 - error: Argument of type "IterDataPipe[Unknown] | Any" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   Type "IterDataPipe[Unknown] | Any" is not assignable to type "Sized" +     "IterDataPipe[Unknown]" is incompatible with protocol "Sized" +       "__len__" is not present (reportArgumentType) + /torch/utils/data/datapipes/iter/combining.py:473:40 - error: Attribute type cannot use type variable "_T_co@__init__" scoped to local method (reportGeneralTypeIssues) + /torch/utils/data/datapipes/iter/combining.py:512:9 - error: Method "get_next_element_by_instance" overrides class "_ContainerTemplate" in an incompatible manner +   Return type mismatch: base method returns type "None", override returns type "Generator[Unknown, Any, None]" +     "Generator[Unknown, Any, None]" is not assignable to "None" (reportIncompatibleMethodOverride) + /torch/utils/data/datapipes/iter/combining.py:545:9 - error: Method "get_length_by_instance" overrides class "_ContainerTemplate" in an incompatible manner +   Return type mismatch: base method returns type "None", override returns type "int" +     "int" is not assignable to "None" (reportIncompatibleMethodOverride) + /torch/utils/data/datapipes/iter/combining.py:713:28 - error: Argument of type "IterDataPipe[Unknown]" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   "IterDataPipe[Unknown]" is incompatible with protocol "Sized" +     "__len__" is not present (reportArgumentType) +/torch/utils/data/datapipes/iter/fileopener.py + /torch/utils/data/datapipes/iter/fileopener.py:72:20 - error: Return type of generator function must be compatible with "Generator[tuple[str, StreamWrapper], Any, Any]" +   "Generator[tuple[str, StreamWrapper], Any, Unknown]" is not assignable to "Iterator[tuple[str, IOBase]]" +     Type parameter "_T_co@Iterator" is covariant, but "tuple[str, StreamWrapper]" is not a subtype of "tuple[str, IOBase]" +       "tuple[str, StreamWrapper]" is not assignable to "tuple[str, IOBase]" +         Tuple entry 2 is incorrect type +           "StreamWrapper" is not assignable to "IOBase" (reportReturnType) +/torch/utils/data/datapipes/map/callable.py + /torch/utils/data/datapipes/map/callable.py:64:20 - error: Argument of type "MapDataPipe[Unknown]" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   "MapDataPipe[Unknown]" is incompatible with protocol "Sized" +     "__len__" is not present (reportArgumentType) +/torch/utils/data/datapipes/map/combinatorics.py + /torch/utils/data/datapipes/map/combinatorics.py:68:39 - error: Argument of type "MapDataPipe[_T_co@ShufflerIterDataPipe]" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   "MapDataPipe[_T_co@ShufflerIterDataPipe]" is incompatible with protocol "Sized" +     "__len__" is not present (reportArgumentType) + /torch/utils/data/datapipes/map/combinatorics.py:93:36 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/datapipes/map/combinatorics.py:93:58 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/datapipes/map/combinatorics.py:100:20 - error: Argument of type "MapDataPipe[_T_co@ShufflerIterDataPipe]" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   "MapDataPipe[_T_co@ShufflerIterDataPipe]" is incompatible with protocol "Sized" +     "__len__" is not present (reportArgumentType) +/torch/utils/data/datapipes/map/combining.py + /torch/utils/data/datapipes/map/combining.py:53:37 - error: Argument of type "MapDataPipe[Unknown]" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   "MapDataPipe[Unknown]" is incompatible with protocol "Sized" +     "__len__" is not present (reportArgumentType) + /torch/utils/data/datapipes/map/combining.py:57:31 - error: Argument of type "MapDataPipe[Unknown]" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   "MapDataPipe[Unknown]" is incompatible with protocol "Sized" +     "__len__" is not present (reportArgumentType) + /torch/utils/data/datapipes/map/combining.py:62:24 - error: Argument of type "MapDataPipe[Unknown]" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   "MapDataPipe[Unknown]" is incompatible with protocol "Sized" +     "__len__" is not present (reportArgumentType) + /torch/utils/data/datapipes/map/combining.py:109:24 - error: Argument of type "MapDataPipe[_T_co@ZipperMapDataPipe]" cannot be assigned to parameter "obj" of type "Sized" in function "len" +   "MapDataPipe[_T_co@ZipperMapDataPipe]" is incompatible with protocol "Sized" +     "__len__" is not present (reportArgumentType) +/torch/utils/data/datapipes/utils/decoder.py + /torch/utils/data/datapipes/utils/decoder.py:189:20 - error: Import "PIL.Image" could not be resolved (reportMissingImports) + /torch/utils/data/datapipes/utils/decoder.py:253:16 - error: Import "torchvision.io" could not be resolved (reportMissingImports) + /torch/utils/data/datapipes/utils/decoder.py:297:20 - error: Import "scipy.io" could not be resolved (reportMissingImports) +/torch/utils/data/dataset.py + /torch/utils/data/dataset.py:17:19 - error: "default_generator" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/data/dataset.py:17:38 - error: "Generator" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/data/dataset.py:17:49 - error: "randperm" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/data/dataset.py:182:9 - error: Method "__add__" overrides class "Dataset" in an incompatible manner +   Return type mismatch: base method returns type "ConcatDataset[_T_co@IterableDataset]", override returns type "ChainDataset" +     "ChainDataset" is not assignable to "ConcatDataset[_T_co@IterableDataset]" (reportIncompatibleMethodOverride) +/torch/utils/data/distributed.py + /torch/utils/data/distributed.py:110:23 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/distributed.py:141:16 - error: Type "Iterator[int]" is not assignable to return type "Iterator[_T_co@DistributedSampler]" +   "Iterator[int]" is not assignable to "Iterator[_T_co@DistributedSampler]" +     Type parameter "_T_co@Iterator" is covariant, but "int" is not a subtype of "_T_co@DistributedSampler" +       Type "int" is not assignable to type "_T_co@DistributedSampler" (reportReturnType) +/torch/utils/data/graph.py + /torch/utils/data/graph.py:31:14 - error: Import "dill" could not be resolved (reportMissingImports) + /torch/utils/data/graph.py:76:19 - error: "dump" is not a known attribute of "None" (reportOptionalMemberAccess) + /torch/utils/data/graph.py:85:18 - error: Import "dill" could not be resolved (reportMissingImports) +/torch/utils/data/graph_settings.py + /torch/utils/data/graph_settings.py:144:54 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/graph_settings.py:169:19 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/graph_settings.py:169:41 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/data/sampler.py + /torch/utils/data/sampler.py:163:30 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/sampler.py:163:52 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/sampler.py:164:31 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/sampler.py:171:34 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/sampler.py:172:53 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/sampler.py:174:30 - error: "randint" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/sampler.py:177:29 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/sampler.py:182:34 - error: "randperm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/sampler.py:183:30 - error: "randperm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/sampler.py:206:24 - error: "randperm" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/sampler.py:264:32 - error: "as_tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/sampler.py:264:63 - error: "double" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/data/sampler.py:277:29 - error: "multinomial" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/dlpack.py + /torch/utils/dlpack.py:6:22 - error: "_to_dlpack" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/dlpack.py:16:14 - error: Type "tuple[Literal[1]]" is not assignable to declared type "int" +   "tuple[Literal[1]]" is not assignable to "int" (reportAssignmentType) + /torch/utils/dlpack.py:17:15 - error: Type "tuple[Literal[2]]" is not assignable to declared type "int" +   "tuple[Literal[2]]" is not assignable to "int" (reportAssignmentType) + /torch/utils/dlpack.py:18:19 - error: Type "tuple[Literal[3]]" is not assignable to declared type "int" +   "tuple[Literal[3]]" is not assignable to "int" (reportAssignmentType) + /torch/utils/dlpack.py:19:17 - error: Type "tuple[Literal[4]]" is not assignable to declared type "int" +   "tuple[Literal[4]]" is not assignable to "int" (reportAssignmentType) + /torch/utils/dlpack.py:20:17 - error: Type "tuple[Literal[7]]" is not assignable to declared type "int" +   "tuple[Literal[7]]" is not assignable to "int" (reportAssignmentType) + /torch/utils/dlpack.py:21:16 - error: Type "tuple[Literal[8]]" is not assignable to declared type "int" +   "tuple[Literal[8]]" is not assignable to "int" (reportAssignmentType) + /torch/utils/dlpack.py:22:14 - error: Type "tuple[Literal[9]]" is not assignable to declared type "int" +   "tuple[Literal[9]]" is not assignable to "int" (reportAssignmentType) + /torch/utils/dlpack.py:23:15 - error: Type "tuple[Literal[10]]" is not assignable to declared type "int" +   "tuple[Literal[10]]" is not assignable to "int" (reportAssignmentType) + /torch/utils/dlpack.py:24:19 - error: Type "tuple[Literal[11]]" is not assignable to declared type "int" +   "tuple[Literal[11]]" is not assignable to "int" (reportAssignmentType) + /torch/utils/dlpack.py:25:17 - error: Type "tuple[Literal[12]]" is not assignable to declared type "int" +   "tuple[Literal[12]]" is not assignable to "int" (reportAssignmentType) + /torch/utils/dlpack.py:26:22 - error: Type "tuple[Literal[13]]" is not assignable to declared type "int" +   "tuple[Literal[13]]" is not assignable to "int" (reportAssignmentType) + /torch/utils/dlpack.py:27:17 - error: Type "tuple[Literal[14]]" is not assignable to declared type "int" +   "tuple[Literal[14]]" is not assignable to "int" (reportAssignmentType) + /torch/utils/dlpack.py:28:17 - error: Type "tuple[Literal[15]]" is not assignable to declared type "int" +   "tuple[Literal[15]]" is not assignable to "int" (reportAssignmentType) + /torch/utils/dlpack.py:29:18 - error: Type "tuple[Literal[16]]" is not assignable to declared type "int" +   "tuple[Literal[16]]" is not assignable to "int" (reportAssignmentType) + /torch/utils/dlpack.py:30:15 - error: Type "tuple[Literal[17]]" is not assignable to declared type "int" +   "tuple[Literal[17]]" is not assignable to "int" (reportAssignmentType) + /torch/utils/dlpack.py:33:10 - error: "_add_docstr" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/dlpack.py:135:32 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/dlpack.py:136:45 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/dlpack.py:138:44 - error: "_torchDeviceToDLDevice" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/dlpack.py:171:21 - error: "_from_dlpack" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/flop_counter.py + /torch/utils/flop_counter.py:52:21 - error: "_pytree" is not a known attribute of module "torch.utils" (reportAttributeAccessIssue) + /torch/utils/flop_counter.py:160:46 - error: Argument of type "Unknown | None" cannot be assigned to parameter "out_shape" of type "list[int]" in function "conv_flop_count" +   Type "Unknown | None" is not assignable to type "list[int]" +     "None" is not assignable to "list[int]" (reportArgumentType) +/torch/utils/jit/log_extract.py + /torch/utils/jit/log_extract.py:30:46 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/jit/log_extract.py:43:18 - error: "empty_strided" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/jit/log_extract.py:46:22 - error: "parse_ir" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/jit/log_extract.py:50:44 - error: "FloatType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/jit/log_extract.py:52:46 - error: "IntType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/jit/log_extract.py:54:46 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/jit/log_extract.py:55:40 - error: "TensorType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/jit/log_extract.py:57:46 - error: "BoolType" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/jit/log_extract.py:62:21 - error: "_create_function_from_graph" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/jit/log_extract.py:63:14 - error: "_jit_pass_erase_shape_information" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/jit/log_extract.py:114:39 - error: "old_strat" is possibly unbound (reportPossiblyUnboundVariable) +/torch/utils/mkldnn.py + /torch/utils/mkldnn.py:17:23 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/mkldnn.py:17:72 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/mkldnn.py:58:23 - error: "zeros" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/mkldnn.py:58:72 - error: "float" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/mkldnn.py:93:49 - error: "_nn" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/mkldnn.py:115:49 - error: "_nn" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/mobile_optimizer.py + /torch/utils/mobile_optimizer.py:6:22 - error: "_MobileOptimizerType" is unknown import symbol (reportAttributeAccessIssue) + /torch/utils/mobile_optimizer.py:59:41 - error: "_jit_pass_optimize_for_mobile" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/mobile_optimizer.py:64:41 - error: "_jit_pass_vulkan_optimize_for_mobile" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/mobile_optimizer.py:69:41 - error: "_jit_pass_metal_optimize_for_mobile" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/mobile_optimizer.py:73:22 - error: "_recursive" is not a known attribute of module "torch.jit" (reportAttributeAccessIssue) +/torch/utils/tensorboard/__init__.py + /torch/utils/tensorboard/__init__.py:5:17 - error: "__version__" is not a known attribute of module "tensorboard" (reportAttributeAccessIssue) + /torch/utils/tensorboard/__init__.py:13:6 - error: Import "tensorboard.summary.writer.record_writer" could not be resolved (reportMissingImports) +/torch/utils/tensorboard/_convert_np.py + /torch/utils/tensorboard/_convert_np.py:32:25 - error: "bfloat16" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/_convert_np.py:33:24 - error: "float16" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/tensorboard/_embedding.py + /torch/utils/tensorboard/_embedding.py:6:6 - error: Import "tensorboard.compat" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/_embedding.py:7:6 - error: Import "tensorboard.plugins.projector.projector_config_pb2" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/_embedding.py:41:10 - error: Import "PIL" could not be resolved (reportMissingImports) +/torch/utils/tensorboard/_onnx_graph.py + /torch/utils/tensorboard/_onnx_graph.py:2:6 - error: Import "tensorboard.compat.proto.graph_pb2" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/_onnx_graph.py:3:6 - error: Import "tensorboard.compat.proto.node_def_pb2" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/_onnx_graph.py:4:6 - error: Import "tensorboard.compat.proto.versions_pb2" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/_onnx_graph.py:5:6 - error: Import "tensorboard.compat.proto.attr_value_pb2" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/_onnx_graph.py:6:6 - error: Import "tensorboard.compat.proto.tensor_shape_pb2" could not be resolved (reportMissingImports) +/torch/utils/tensorboard/_proto_graph.py + /torch/utils/tensorboard/_proto_graph.py:4:6 - error: Import "tensorboard.compat.proto.node_def_pb2" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/_proto_graph.py:5:6 - error: Import "tensorboard.compat.proto.attr_value_pb2" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/_proto_graph.py:6:6 - error: Import "tensorboard.compat.proto.tensor_shape_pb2" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/_proto_graph.py:41:18 - error: "dtype" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/tensorboard/_pytorch_graph.py + /torch/utils/tensorboard/_pytorch_graph.py:6:6 - error: Import "tensorboard.compat.proto.config_pb2" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/_pytorch_graph.py:7:6 - error: Import "tensorboard.compat.proto.graph_pb2" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/_pytorch_graph.py:8:6 - error: Import "tensorboard.compat.proto.step_stats_pb2" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/_pytorch_graph.py:9:6 - error: Import "tensorboard.compat.proto.versions_pb2" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/_pytorch_graph.py:192:56 - error: Operator "+" not supported for "None" (reportOptionalOperand) + /torch/utils/tensorboard/_pytorch_graph.py:195:26 - error: Cannot access attribute "input_or_output" for class "NodeBase" +   Attribute "input_or_output" is unknown (reportAttributeAccessIssue) + /torch/utils/tensorboard/_pytorch_graph.py:201:71 - error: Operator "+" not supported for types "str | Unknown" and "Unknown | None" +   Operator "+" not supported for types "str" and "None" (reportOperatorIssue) + /torch/utils/tensorboard/_pytorch_graph.py:375:30 - error: "Node" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/tensorboard/_utils.py + /torch/utils/tensorboard/_utils.py:19:12 - error: Import "matplotlib.pyplot" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/_utils.py:20:12 - error: Import "matplotlib.backends.backend_agg" could not be resolved (reportMissingImports) +/torch/utils/tensorboard/writer.py + /torch/utils/tensorboard/writer.py:11:10 - error: Import "matplotlib.figure" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/writer.py:12:6 - error: Import "tensorboard.compat" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/writer.py:13:6 - error: Import "tensorboard.compat.proto" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/writer.py:14:6 - error: Import "tensorboard.compat.proto.event_pb2" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/writer.py:15:6 - error: Import "tensorboard.plugins.projector.projector_config_pb2" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/writer.py:16:6 - error: Import "tensorboard.summary.writer.event_file_writer" could not be resolved (reportMissingImports) + /torch/utils/tensorboard/writer.py:233:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:335:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:384:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:420:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:463:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:504:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:573:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:632:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:676:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:713:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:752:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:785:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:805:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:824:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:830:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:847:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:911:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:962:14 - warning: Import "google.protobuf" could not be resolved from source (reportMissingModuleSource) + /torch/utils/tensorboard/writer.py:962:37 - warning: Import "google.protobuf.text_format" could not be resolved from source (reportMissingModuleSource) + /torch/utils/tensorboard/writer.py:1008:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:1046:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:1075:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:1096:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:1125:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/utils/tensorboard/writer.py:1190:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/utils/throughput_benchmark.py + /torch/utils/throughput_benchmark.py:98:40 - error: "ThroughputBenchmark" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/utils/throughput_benchmark.py:100:40 - error: "ThroughputBenchmark" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) +/torch/utils/weak.py + /torch/utils/weak.py:296:9 - error: Method "pop" overrides class "MutableMapping" in an incompatible manner +   Parameter 3 mismatch: base parameter "default" is keyword parameter, override parameter is position-only (reportIncompatibleMethodOverride) +/torch/xpu/__init__.py + /torch/xpu/__init__.py:18:19 - error: "device" is unknown import symbol (reportAttributeAccessIssue) + /torch/xpu/__init__.py:39:21 - error: "_has_xpu" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:43:37 - error: "_XpuDeviceProperties" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:44:33 - error: "_xpu_exchangeDevice" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:45:39 - error: "_xpu_maybeExchangeDevice" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:62:21 - error: "_xpu_getDeviceCount" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:138:18 - error: "_xpu_init" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:218:18 - error: "_xpu_setDevice" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:263:6 - error: Variable not allowed in type expression (reportInvalidTypeForm) + /torch/xpu/__init__.py:281:21 - error: "_xpu_getDevice" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:284:47 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:284:65 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:291:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:293:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:310:21 - error: "_xpu_canDeviceAccessPeer" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:372:14 - error: "_xpu_setStream" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:408:27 - error: "_xpu_getCurrentStream" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:435:27 - error: "_xpu_getStreamFromExternal" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:453:21 - error: "_xpu_synchronize" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:460:27 - error: "_xpu_getArchFlags" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:474:34 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:474:54 - error: "Generator" is not a known attribute of module "torch._C" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:487:48 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/__init__.py:505:57 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/xpu/_utils.py + /torch/xpu/_utils.py:29:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/_utils.py:30:33 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/xpu/memory.py + /torch/xpu/memory.py:23:18 - error: "_xpu_emptyCache" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/memory.py:38:21 - error: "_xpu_resetPeakMemoryStats" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/memory.py:53:21 - error: "_xpu_resetAccumulatedMemoryStats" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/memory.py:61:21 - error: "_xpu_memoryStats" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/memory.py:195:21 - error: "_xpu_getMemoryInfo" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/memory.py:215:21 - error: "_xpu_getMemoryFraction" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/memory.py:241:14 - error: "_xpu_setMemoryFraction" is not a known attribute of module "torch" (reportAttributeAccessIssue) +/torch/xpu/random.py + /torch/xpu/random.py:11:49 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/random.py:23:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/random.py:25:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/random.py:26:18 - error: Cannot access attribute "index" for class "int" +   Attribute "index" is unknown (reportAttributeAccessIssue) + /torch/xpu/random.py:29:25 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /torch/xpu/random.py:29:25 - error: Argument of type "int | Unknown | ((sub: str, start: SupportsIndex | None = None, end: SupportsIndex | None = None, /) -> int)" cannot be assigned to parameter "key" of type "slice[Any, Any, Any]" in function "__getitem__" +   Type "int | Unknown | ((sub: str, start: SupportsIndex | None = None, end: SupportsIndex | None = None, /) -> int)" is not assignable to type "slice[Any, Any, Any]" +     "int" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) + /torch/xpu/random.py:40:54 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/random.py:49:19 - error: "_DisableFuncTorch" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/random.py:50:62 - error: "contiguous_format" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/random.py:52:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/random.py:54:24 - error: "device" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/random.py:57:22 - error: Cannot access attribute "index" for class "int" +   Attribute "index" is unknown (reportAttributeAccessIssue) + /torch/xpu/random.py:60:29 - error: No overloads for "__getitem__" match the provided arguments (reportCallIssue) + /torch/xpu/random.py:60:29 - error: Argument of type "int | Unknown | ((sub: str, start: SupportsIndex | None = None, end: SupportsIndex | None = None, /) -> int)" cannot be assigned to parameter "key" of type "slice[Any, Any, Any]" in function "__getitem__" +   Type "int | Unknown | ((sub: str, start: SupportsIndex | None = None, end: SupportsIndex | None = None, /) -> int)" is not assignable to type "slice[Any, Any, Any]" +     "int" is not assignable to "slice[Any, Any, Any]" (reportArgumentType) +/torch/xpu/streams.py + /torch/xpu/streams.py:14:23 - error: "_XpuStreamBase" is not a known attribute of module "torch" (reportAttributeAccessIssue) + /torch/xpu/streams.py:103:22 - error: "_XpuEventBase" is not a known attribute of module "torch" (reportAttributeAccessIssue) +19691 errors, 402 warnings, 0 informations diff --git a/scripts/ty_benchmark/snapshots/pytorch_mypy.txt b/scripts/ty_benchmark/snapshots/pytorch_mypy.txt new file mode 100644 index 0000000000..4be18f59e8 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/pytorch_mypy.txt @@ -0,0 +1,16865 @@ +torch/utils/_cpp_extension_versioner.py:31:9: error: Need type annotation for "entries" (hint: "entries: dict[, ] = ...") [var-annotated] +torch/utils/cpp_backtrace.py:2:1: error: Module "torch._C" has no attribute "_get_cpp_backtrace" [attr-defined] +torch/utils/backcompat/__init__.py:2:1: error: Module "torch._C" has no attribute "_get_backcompat_broadcast_warn" [attr-defined] +torch/utils/backcompat/__init__.py:2:1: error: Module "torch._C" has no attribute "_get_backcompat_keepdim_warn" [attr-defined] +torch/utils/backcompat/__init__.py:2:1: error: Module "torch._C" has no attribute "_set_backcompat_broadcast_warn" [attr-defined] +torch/utils/backcompat/__init__.py:2:1: error: Module "torch._C" has no attribute "_set_backcompat_keepdim_warn" [attr-defined] +torch/jit/generate_bytecode.py:3:1: error: Module "torch._C" has no attribute "_compile_graph_to_code_table" [attr-defined] +torch/jit/generate_bytecode.py:3:1: error: Module "torch._C" has no attribute "_generate_upgraders_graph" [attr-defined] +torch/_C_flatbuffer/__init__.pyi:2:1: error: Module "torch._C" has no attribute "LiteScriptModule" [attr-defined] +torch/_C_flatbuffer/__init__.pyi:2:1: error: Module "torch._C" has no attribute "ScriptModule" [attr-defined] +torch/_C/_profiler.pyi:4:1: error: Module "torch._C" has no attribute "device" [attr-defined] +torch/_C/_profiler.pyi:4:1: error: Module "torch._C" has no attribute "dtype" [attr-defined] +torch/_C/_profiler.pyi:4:1: error: Module "torch._C" has no attribute "layout" [attr-defined] +torch/torch_version.py:5:1: error: Cannot find implementation or library stub for module named "torch.version" [import-not-found] +torch/utils/show_pickle.py:107:1: error: Missing return statement [return] +torch/utils/file_baton.py:35:23: error: Incompatible types in assignment (expression has type "int", variable has type "None") [assignment] +torch/_sources.py:8:1: error: Module "torch._C" has no attribute "ErrorReport" [attr-defined] +torch/utils/hipify/hipify_python.py:113:9: error: Need type annotation for "files_to_clean" (hint: "files_to_clean: set[] = ...") [var-annotated] +torch/utils/hipify/hipify_python.py:114:9: error: Need type annotation for "dirs_to_clean" (hint: "dirs_to_clean: list[] = ...") [var-annotated] +torch/utils/hipify/hipify_python.py:681:9: error: Need type annotation for "children" (hint: "children: dict[, ] = ...") [var-annotated] +torch/onnx/errors.py:60:41: error: Name "_C.Value" is not defined [name-defined] +torchgen/gen_schema_utils.py:43:30: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_torch_docs.py:7:1: error: Module "torch._C" has no attribute "_add_docstr" [attr-defined] +torch/_torch_docs.py:220:5: error: Module has no attribute "abs" [attr-defined] +torch/_torch_docs.py:244:5: error: Module has no attribute "absolute" [attr-defined] +torch/_torch_docs.py:253:5: error: Module has no attribute "acos" [attr-defined] +torch/_torch_docs.py:280:5: error: Module has no attribute "arccos" [attr-defined] +torch/_torch_docs.py:289:5: error: Module has no attribute "acosh" [attr-defined] +torch/_torch_docs.py:320:5: error: Module has no attribute "arccosh" [attr-defined] +torch/_torch_docs.py:329:5: error: Module has no attribute "index_add" [attr-defined] +torch/_torch_docs.py:338:5: error: Module has no attribute "index_copy" [attr-defined] +torch/_torch_docs.py:347:5: error: Module has no attribute "index_reduce" [attr-defined] +torch/_torch_docs.py:356:5: error: Module has no attribute "add" [attr-defined] +torch/_torch_docs.py:404:5: error: Module has no attribute "addbmm" [attr-defined] +torch/_torch_docs.py:459:5: error: Module has no attribute "addcdiv" [attr-defined] +torch/_torch_docs.py:508:5: error: Module has no attribute "addcmul" [attr-defined] +torch/_torch_docs.py:548:5: error: Module has no attribute "addmm" [attr-defined] +torch/_torch_docs.py:608:5: error: Module has no attribute "adjoint" [attr-defined] +torch/_torch_docs.py:635:5: error: Module has no attribute "sspaddmm" [attr-defined] +torch/_torch_docs.py:658:5: error: Module has no attribute "smm" [attr-defined] +torch/_torch_docs.py:672:5: error: Module has no attribute "addmv" [attr-defined] +torch/_torch_docs.py:719:5: error: Module has no attribute "addr" [attr-defined] +torch/_torch_docs.py:766:5: error: Module has no attribute "allclose" [attr-defined] +torch/_torch_docs.py:800:5: error: Module has no attribute "all" [attr-defined] +torch/_torch_docs.py:861:5: error: Module has no attribute "any" [attr-defined] +torch/_torch_docs.py:922:5: error: Module has no attribute "angle" [attr-defined] +torch/_torch_docs.py:951:5: error: Module has no attribute "as_strided" [attr-defined] +torch/_torch_docs.py:994:5: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/_torch_docs.py:1047:5: error: Module has no attribute "asin" [attr-defined] +torch/_torch_docs.py:1074:5: error: Module has no attribute "arcsin" [attr-defined] +torch/_torch_docs.py:1083:5: error: Module has no attribute "asinh" [attr-defined] +torch/_torch_docs.py:1110:5: error: Module has no attribute "arcsinh" [attr-defined] +torch/_torch_docs.py:1119:5: error: Module has no attribute "atan" [attr-defined] +torch/_torch_docs.py:1146:5: error: Module has no attribute "arctan" [attr-defined] +torch/_torch_docs.py:1155:5: error: Module has no attribute "atan2" [attr-defined] +torch/_torch_docs.py:1187:5: error: Module has no attribute "arctan2" [attr-defined] +torch/_torch_docs.py:1195:5: error: Module has no attribute "atanh" [attr-defined] +torch/_torch_docs.py:1227:5: error: Module has no attribute "arctanh" [attr-defined] +torch/_torch_docs.py:1236:5: error: Module has no attribute "asarray" [attr-defined] +torch/_torch_docs.py:1348:5: error: Module has no attribute "baddbmm" [attr-defined] +torch/_torch_docs.py:1404:5: error: Module has no attribute "bernoulli" [attr-defined] +torch/_torch_docs.py:1462:5: error: Module has no attribute "bincount" [attr-defined] +torch/_torch_docs.py:1506:5: error: Module has no attribute "bitwise_not" [attr-defined] +torch/_torch_docs.py:1527:5: error: Module has no attribute "bmm" [attr-defined] +torch/_torch_docs.py:1573:5: error: Module has no attribute "bitwise_and" [attr-defined] +torch/_torch_docs.py:1597:5: error: Module has no attribute "bitwise_or" [attr-defined] +torch/_torch_docs.py:1621:5: error: Module has no attribute "bitwise_xor" [attr-defined] +torch/_torch_docs.py:1645:5: error: Module has no attribute "bitwise_left_shift" [attr-defined] +torch/_torch_docs.py:1674:5: error: Module has no attribute "bitwise_right_shift" [attr-defined] +torch/_torch_docs.py:1705:5: error: Module has no attribute "broadcast_to" [attr-defined] +torch/_torch_docs.py:1727:5: error: Module has no attribute "stack" [attr-defined] +torch/_torch_docs.py:1787:5: error: Module has no attribute "hstack" [attr-defined] +torch/_torch_docs.py:1818:5: error: Module has no attribute "vstack" [attr-defined] +torch/_torch_docs.py:1854:5: error: Module has no attribute "dstack" [attr-defined] +torch/_torch_docs.py:1888:5: error: Module has no attribute "tensor_split" [attr-defined] +torch/_torch_docs.py:1952:5: error: Module has no attribute "chunk" [attr-defined] +torch/_torch_docs.py:2005:5: error: Module has no attribute "unsafe_chunk" [attr-defined] +torch/_torch_docs.py:2022:5: error: Module has no attribute "unsafe_split" [attr-defined] +torch/_torch_docs.py:2039:5: error: Module has no attribute "hsplit"; maybe "split"? [attr-defined] +torch/_torch_docs.py:2092:5: error: Module has no attribute "vsplit"; maybe "split"? [attr-defined] +torch/_torch_docs.py:2134:5: error: Module has no attribute "dsplit"; maybe "split"? [attr-defined] +torch/_torch_docs.py:2185:5: error: Module has no attribute "can_cast" [attr-defined] +torch/_torch_docs.py:2206:5: error: Module has no attribute "corrcoef" [attr-defined] +torch/_torch_docs.py:2253:5: error: Module has no attribute "cov" [attr-defined] +torch/_torch_docs.py:2333:5: error: Module has no attribute "cat" [attr-defined] +torch/_torch_docs.py:2381:5: error: Module has no attribute "concat" [attr-defined] +torch/_torch_docs.py:2390:5: error: Module has no attribute "concatenate" [attr-defined] +torch/_torch_docs.py:2399:5: error: Module has no attribute "ceil" [attr-defined] +torch/_torch_docs.py:2430:5: error: Module has no attribute "real" [attr-defined] +torch/_torch_docs.py:2452:5: error: Module has no attribute "imag" [attr-defined] +torch/_torch_docs.py:2477:5: error: Module has no attribute "view_as_real" [attr-defined] +torch/_torch_docs.py:2506:5: error: Module has no attribute "view_as_complex" [attr-defined] +torch/_torch_docs.py:2540:5: error: Module has no attribute "reciprocal" [attr-defined] +torch/_torch_docs.py:2572:5: error: Module has no attribute "cholesky" [attr-defined] +torch/_torch_docs.py:2654:5: error: Module has no attribute "cholesky_solve" [attr-defined] +torch/_torch_docs.py:2719:5: error: Module has no attribute "cholesky_inverse" [attr-defined] +torch/_torch_docs.py:2775:5: error: Module has no attribute "clone" [attr-defined] +torch/_torch_docs.py:2802:5: error: Module has no attribute "clamp" [attr-defined] +torch/_torch_docs.py:2845:5: error: Module has no attribute "clip" [attr-defined] +torch/_torch_docs.py:2854:5: error: Module has no attribute "column_stack" [attr-defined] +torch/_torch_docs.py:2890:5: error: Module has no attribute "complex"; maybe "compile"? [attr-defined] +torch/_torch_docs.py:2921:5: error: Module has no attribute "polar" [attr-defined] +torch/_torch_docs.py:2964:5: error: Module has no attribute "conj_physical" [attr-defined] +torch/_torch_docs.py:2996:5: error: Module has no attribute "conj" [attr-defined] +torch/_torch_docs.py:3026:5: error: Module has no attribute "resolve_conj" [attr-defined] +torch/_torch_docs.py:3051:5: error: Module has no attribute "resolve_neg" [attr-defined] +torch/_torch_docs.py:3077:5: error: Module has no attribute "copysign" [attr-defined] +torch/_torch_docs.py:3135:5: error: Module has no attribute "cos" [attr-defined] +torch/_torch_docs.py:3162:5: error: Module has no attribute "cosh" [attr-defined] +torch/_torch_docs.py:3195:5: error: Module has no attribute "cross" [attr-defined] +torch/_torch_docs.py:3254:5: error: Module has no attribute "logcumsumexp" [attr-defined] +torch/_torch_docs.py:3282:5: error: Module has no attribute "cummax" [attr-defined] +torch/_torch_docs.py:3314:5: error: Module has no attribute "cummin" [attr-defined] +torch/_torch_docs.py:3346:5: error: Module has no attribute "cumprod" [attr-defined] +torch/_torch_docs.py:3385:5: error: Module has no attribute "cumsum" [attr-defined] +torch/_torch_docs.py:3417:5: error: Module has no attribute "count_nonzero" [attr-defined] +torch/_torch_docs.py:3444:5: error: Module has no attribute "dequantize" [attr-defined] +torch/_torch_docs.py:3464:5: error: Module has no attribute "diag" [attr-defined] +torch/_torch_docs.py:3525:5: error: Module has no attribute "diag_embed" [attr-defined] +torch/_torch_docs.py:3589:5: error: Module has no attribute "diagflat" [attr-defined] +torch/_torch_docs.py:3637:5: error: Module has no attribute "diagonal" [attr-defined] +torch/_torch_docs.py:3702:5: error: Module has no attribute "diagonal_scatter" [attr-defined] +torch/_torch_docs.py:3756:5: error: Module has no attribute "as_strided_scatter" [attr-defined] +torch/_torch_docs.py:3799:5: error: Module has no attribute "diff" [attr-defined] +torch/_torch_docs.py:3839:5: error: Module has no attribute "digamma" [attr-defined] +torch/_torch_docs.py:3848:5: error: Module has no attribute "dist" [attr-defined] +torch/_torch_docs.py:3882:5: error: Module has no attribute "div" [attr-defined] +torch/_torch_docs.py:3950:5: error: Module has no attribute "divide" [attr-defined] +torch/_torch_docs.py:3959:5: error: Module has no attribute "dot" [attr-defined] +torch/_torch_docs.py:3989:5: error: Module has no attribute "vdot" [attr-defined] +torch/_torch_docs.py:4038:5: error: Module has no attribute "eq" [attr-defined] +torch/_torch_docs.py:4066:5: error: Module has no attribute "equal" [attr-defined] +torch/_torch_docs.py:4090:5: error: Module has no attribute "erf" [attr-defined] +torch/_torch_docs.py:4099:5: error: Module has no attribute "erfc" [attr-defined] +torch/_torch_docs.py:4108:5: error: Module has no attribute "erfinv" [attr-defined] +torch/_torch_docs.py:4117:5: error: Module has no attribute "exp" [attr-defined] +torch/_torch_docs.py:4142:5: error: Module has no attribute "exp2" [attr-defined] +torch/_torch_docs.py:4151:5: error: Module has no attribute "expm1" [attr-defined] +torch/_torch_docs.py:4160:5: error: Module has no attribute "eye" [attr-defined] +torch/_torch_docs.py:4190:5: error: Module has no attribute "floor" [attr-defined] +torch/_torch_docs.py:4221:5: error: Module has no attribute "floor_divide" [attr-defined] +torch/_torch_docs.py:4261:5: error: Module has no attribute "fmod" [attr-defined] +torch/_torch_docs.py:4312:5: error: Module has no attribute "frac" [attr-defined] +torch/_torch_docs.py:4329:5: error: Module has no attribute "frexp" [attr-defined] +torch/_torch_docs.py:4361:5: error: Module has no attribute "from_numpy" [attr-defined] +torch/_torch_docs.py:4392:5: error: Module has no attribute "frombuffer" [attr-defined] +torch/_torch_docs.py:4466:5: error: Module has no attribute "from_file" [attr-defined] +torch/_torch_docs.py:4506:5: error: Module has no attribute "flatten" [attr-defined] +torch/_torch_docs.py:4542:5: error: Module has no attribute "unflatten" [attr-defined] +torch/_torch_docs.py:4575:5: error: Module has no attribute "gather" [attr-defined] +torch/_torch_docs.py:4614:5: error: Module has no attribute "gcd" [attr-defined] +torch/_torch_docs.py:4645:5: error: Module has no attribute "ge" [attr-defined] +torch/_torch_docs.py:4674:5: error: Module has no attribute "greater_equal" [attr-defined] +torch/_torch_docs.py:4683:5: error: Module has no attribute "gradient" [attr-defined] +torch/_torch_docs.py:4810:5: error: Module has no attribute "geqrf" [attr-defined] +torch/_torch_docs.py:4846:5: error: Module has no attribute "inner" [attr-defined] +torch/_torch_docs.py:4907:5: error: Module has no attribute "outer" [attr-defined] +torch/_torch_docs.py:4937:5: error: Module has no attribute "ger" [attr-defined] +torch/_torch_docs.py:4950:5: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_torch_docs.py:4968:5: error: Module has no attribute "get_num_threads" [attr-defined] +torch/_torch_docs.py:4977:5: error: Module has no attribute "get_num_interop_threads" [attr-defined] +torch/_torch_docs.py:4987:5: error: Module has no attribute "gt" [attr-defined] +torch/_torch_docs.py:5016:5: error: Module has no attribute "greater" [attr-defined] +torch/_torch_docs.py:5025:5: error: Module has no attribute "hash_tensor" [attr-defined] +torch/_torch_docs.py:5079:5: error: Module has no attribute "histc" [attr-defined] +torch/_torch_docs.py:5111:5: error: Module has no attribute "histogram" [attr-defined] +torch/_torch_docs.py:5156:5: error: Module has no attribute "histogramdd" [attr-defined] +torch/_torch_docs.py:5248:1: error: Module has no attribute "histogramdd" [attr-defined] +torch/_torch_docs.py:5251:5: error: Module has no attribute "hypot" [attr-defined] +torch/_torch_docs.py:5280:5: error: Module has no attribute "i0" [attr-defined] +torch/_torch_docs.py:5289:5: error: Module has no attribute "igamma" [attr-defined] +torch/_torch_docs.py:5298:5: error: Module has no attribute "igammac" [attr-defined] +torch/_torch_docs.py:5307:5: error: Module has no attribute "index_select" [attr-defined] +torch/_torch_docs.py:5350:5: error: Module has no attribute "inverse" [attr-defined] +torch/_torch_docs.py:5359:5: error: Module has no attribute "isin" [attr-defined] +torch/_torch_docs.py:5391:5: error: Module has no attribute "isinf" [attr-defined] +torch/_torch_docs.py:5416:5: error: Module has no attribute "isposinf" [attr-defined] +torch/_torch_docs.py:5436:5: error: Module has no attribute "isneginf" [attr-defined] +torch/_torch_docs.py:5456:5: error: Module has no attribute "isclose" [attr-defined] +torch/_torch_docs.py:5491:5: error: Module has no attribute "isfinite" [attr-defined] +torch/_torch_docs.py:5514:5: error: Module has no attribute "isnan" [attr-defined] +torch/_torch_docs.py:5536:5: error: Module has no attribute "isreal" [attr-defined] +torch/_torch_docs.py:5557:5: error: Module has no attribute "is_floating_point" [attr-defined] +torch/_torch_docs.py:5581:5: error: Module has no attribute "is_complex" [attr-defined] +torch/_torch_docs.py:5605:5: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_torch_docs.py:5614:5: error: Module has no attribute "is_inference_mode_enabled" [attr-defined] +torch/_torch_docs.py:5623:5: error: Module has no attribute "is_inference" [attr-defined] +torch/_torch_docs.py:5642:5: error: Module has no attribute "is_conj" [attr-defined] +torch/_torch_docs.py:5654:5: error: Module has no attribute "is_nonzero" [attr-defined] +torch/_torch_docs.py:5690:5: error: Module has no attribute "kron" [attr-defined] +torch/_torch_docs.py:5750:5: error: Module has no attribute "kthvalue" [attr-defined] +torch/_torch_docs.py:5799:5: error: Module has no attribute "lcm" [attr-defined] +torch/_torch_docs.py:5830:5: error: Module has no attribute "ldexp" [attr-defined] +torch/_torch_docs.py:5864:5: error: Module has no attribute "le" [attr-defined] +torch/_torch_docs.py:5894:5: error: Module has no attribute "less_equal" [attr-defined] +torch/_torch_docs.py:5903:5: error: Module has no attribute "lerp" [attr-defined] +torch/_torch_docs.py:5942:5: error: Module has no attribute "lgamma" [attr-defined] +torch/_torch_docs.py:5967:5: error: Module has no attribute "linspace" [attr-defined] +torch/_torch_docs.py:6015:5: error: Module has no attribute "log" [attr-defined] +torch/_torch_docs.py:6044:5: error: Module has no attribute "log10" [attr-defined] +torch/_torch_docs.py:6076:5: error: Module has no attribute "log1p" [attr-defined] +torch/_torch_docs.py:6106:5: error: Module has no attribute "log2" [attr-defined] +torch/_torch_docs.py:6138:5: error: Module has no attribute "logaddexp" [attr-defined] +torch/_torch_docs.py:6172:5: error: Module has no attribute "logaddexp2" [attr-defined] +torch/_torch_docs.py:6191:5: error: Module has no attribute "xlogy" [attr-defined] +torch/_torch_docs.py:6200:5: error: Module has no attribute "logical_and" [attr-defined] +torch/_torch_docs.py:6232:5: error: Module has no attribute "logical_not" [attr-defined] +torch/_torch_docs.py:6259:5: error: Module has no attribute "logical_or" [attr-defined] +torch/_torch_docs.py:6291:5: error: Module has no attribute "logical_xor" [attr-defined] +torch/_torch_docs.py:6323:5: error: Module has no attribute "logspace" [attr-defined] +torch/_torch_docs.py:6377:5: error: Module has no attribute "logsumexp" [attr-defined] +torch/_torch_docs.py:6411:5: error: Module has no attribute "lt" [attr-defined] +torch/_torch_docs.py:6440:5: error: Module has no attribute "lu_unpack" [attr-defined] +torch/_torch_docs.py:6490:5: error: Module has no attribute "less" [attr-defined] +torch/_torch_docs.py:6499:5: error: Module has no attribute "lu_solve" [attr-defined] +torch/_torch_docs.py:6544:5: error: Module has no attribute "masked_select" [attr-defined] +torch/_torch_docs.py:6582:5: error: Module has no attribute "matrix_power" [attr-defined] +torch/_torch_docs.py:6591:5: error: Module has no attribute "matrix_exp" [attr-defined] +torch/_torch_docs.py:6600:5: error: Module has no attribute "max" [attr-defined] +torch/_torch_docs.py:6685:5: error: Module has no attribute "maximum" [attr-defined] +torch/_torch_docs.py:6712:5: error: Module has no attribute "fmax" [attr-defined] +torch/_torch_docs.py:6744:5: error: Module has no attribute "amax" [attr-defined] +torch/_torch_docs.py:6787:5: error: Module has no attribute "argmax" [attr-defined] +torch/_torch_docs.py:6839:5: error: Module has no attribute "argwhere" [attr-defined] +torch/_torch_docs.py:6876:5: error: Module has no attribute "mean" [attr-defined] +torch/_torch_docs.py:6944:5: error: Module has no attribute "nanmean" [attr-defined] +torch/_torch_docs.py:6990:5: error: Module has no attribute "median" [attr-defined] +torch/_torch_docs.py:7065:5: error: Module has no attribute "nanmedian" [attr-defined] +torch/_torch_docs.py:7122:5: error: Module has no attribute "quantile" [attr-defined] +torch/_torch_docs.py:7194:5: error: Module has no attribute "nanquantile" [attr-defined] +torch/_torch_docs.py:7234:5: error: Module has no attribute "min" [attr-defined] +torch/_torch_docs.py:7309:5: error: Module has no attribute "minimum" [attr-defined] +torch/_torch_docs.py:7336:5: error: Module has no attribute "fmin" [attr-defined] +torch/_torch_docs.py:7368:5: error: Module has no attribute "amin" [attr-defined] +torch/_torch_docs.py:7411:5: error: Module has no attribute "aminmax" [attr-defined] +torch/_torch_docs.py:7475:5: error: Module has no attribute "argmin" [attr-defined] +torch/_torch_docs.py:7512:5: error: Module has no attribute "mm" [attr-defined] +torch/_torch_docs.py:7558:5: error: Module has no attribute "hspmm" [attr-defined] +torch/_torch_docs.py:7577:5: error: Module has no attribute "matmul" [attr-defined] +torch/_torch_docs.py:7661:5: error: Module has no attribute "mode" [attr-defined] +torch/_torch_docs.py:7700:5: error: Module has no attribute "mul" [attr-defined] +torch/_torch_docs.py:7748:5: error: Module has no attribute "multiply" [attr-defined] +torch/_torch_docs.py:7757:5: error: Module has no attribute "multinomial" [attr-defined] +torch/_torch_docs.py:7812:5: error: Module has no attribute "mv" [attr-defined] +torch/_torch_docs.py:7841:5: error: Module has no attribute "mvlgamma" [attr-defined] +torch/_torch_docs.py:7850:5: error: Module has no attribute "movedim" [attr-defined] +torch/_torch_docs.py:7897:5: error: Module has no attribute "moveaxis" [attr-defined] +torch/_torch_docs.py:7937:5: error: Module has no attribute "swapdims" [attr-defined] +torch/_torch_docs.py:7970:5: error: Module has no attribute "swapaxes" [attr-defined] +torch/_torch_docs.py:8003:5: error: Module has no attribute "narrow" [attr-defined] +torch/_torch_docs.py:8037:5: error: Module has no attribute "narrow_copy" [attr-defined] +torch/_torch_docs.py:8084:5: error: Module has no attribute "nan_to_num" [attr-defined] +torch/_torch_docs.py:8121:5: error: Module has no attribute "ne" [attr-defined] +torch/_torch_docs.py:8150:5: error: Module has no attribute "not_equal" [attr-defined] +torch/_torch_docs.py:8159:5: error: Module has no attribute "neg" [attr-defined] +torch/_torch_docs.py:8186:5: error: Module has no attribute "negative" [attr-defined] +torch/_torch_docs.py:8195:5: error: Module has no attribute "nextafter" [attr-defined] +torch/_torch_docs.py:8221:5: error: Module has no attribute "nonzero" [attr-defined] +torch/_torch_docs.py:8303:5: error: Module has no attribute "normal" [attr-defined] +torch/_torch_docs.py:8397:5: error: Module has no attribute "numel" [attr-defined] +torch/_torch_docs.py:8419:5: error: Module has no attribute "ones" [attr-defined] +torch/_torch_docs.py:8450:5: error: Module has no attribute "ones_like" [attr-defined] +torch/_torch_docs.py:8483:5: error: Module has no attribute "orgqr" [attr-defined] +torch/_torch_docs.py:8492:5: error: Module has no attribute "ormqr" [attr-defined] +torch/_torch_docs.py:8536:5: error: Module has no attribute "permute" [attr-defined] +torch/_torch_docs.py:8556:5: error: Module has no attribute "poisson" [attr-defined] +torch/_torch_docs.py:8587:5: error: Module has no attribute "polygamma" [attr-defined] +torch/_torch_docs.py:8596:5: error: Module has no attribute "positive" [attr-defined] +torch/_torch_docs.py:8618:5: error: Module has no attribute "pow" [attr-defined] +torch/_torch_docs.py:8694:5: error: Module has no attribute "float_power" [attr-defined] +torch/_torch_docs.py:8736:5: error: Module has no attribute "prod" [attr-defined] +torch/_torch_docs.py:8786:5: error: Module has no attribute "promote_types" [attr-defined] +torch/_torch_docs.py:8809:5: error: Module has no attribute "qr" [attr-defined] +torch/_torch_docs.py:8893:5: error: Module has no attribute "rad2deg" [attr-defined] +torch/_torch_docs.py:8918:5: error: Module has no attribute "deg2rad" [attr-defined] +torch/_torch_docs.py:8943:5: error: Module has no attribute "heaviside" [attr-defined] +torch/_torch_docs.py:8980:5: error: Module has no attribute "rand" [attr-defined] +torch/_torch_docs.py:9015:5: error: Module has no attribute "rand_like" [attr-defined] +torch/_torch_docs.py:9041:5: error: Module has no attribute "randint" [attr-defined] +torch/_torch_docs.py:9089:5: error: Module has no attribute "randint_like" [attr-defined] +torch/_torch_docs.py:9120:5: error: Module has no attribute "randn" [attr-defined] +torch/_torch_docs.py:9176:5: error: Module has no attribute "randn_like" [attr-defined] +torch/_torch_docs.py:9202:5: error: Module has no attribute "randperm" [attr-defined] +torch/_torch_docs.py:9231:5: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_torch_docs.py:9286:5: error: Module has no attribute "range" [attr-defined] +torch/_torch_docs.py:9328:5: error: Module has no attribute "arange" [attr-defined] +torch/_torch_docs.py:9378:5: error: Module has no attribute "ravel" [attr-defined] +torch/_torch_docs.py:9399:5: error: Module has no attribute "remainder" [attr-defined] +torch/_torch_docs.py:9444:5: error: Module has no attribute "renorm" [attr-defined] +torch/_torch_docs.py:9482:5: error: Module has no attribute "reshape" [attr-defined] +torch/_torch_docs.py:9515:5: error: Module has no attribute "result_type" [attr-defined] +torch/_torch_docs.py:9537:5: error: Module has no attribute "row_stack" [attr-defined] +torch/_torch_docs.py:9546:5: error: Module has no attribute "round" [attr-defined] +torch/_torch_docs.py:9602:5: error: Module has no attribute "rsqrt" [attr-defined] +torch/_torch_docs.py:9630:5: error: Module has no attribute "scatter" [attr-defined] +torch/_torch_docs.py:9639:5: error: Module has no attribute "scatter_add" [attr-defined] +torch/_torch_docs.py:9648:5: error: Module has no attribute "scatter_reduce" [attr-defined] +torch/_torch_docs.py:9657:5: error: Module has no attribute "segment_reduce" [attr-defined] +torch/_torch_docs.py:9685:5: error: Module has no attribute "select" [attr-defined] +torch/_torch_docs.py:9711:5: error: Module has no attribute "select_scatter" [attr-defined] +torch/_torch_docs.py:9742:5: error: Module has no attribute "slice_scatter" [attr-defined] +torch/_torch_docs.py:9787:5: error: Module has no attribute "set_flush_denormal" [attr-defined] +torch/_torch_docs.py:9815:5: error: Module has no attribute "set_num_threads" [attr-defined] +torch/_torch_docs.py:9828:5: error: Module has no attribute "set_num_interop_threads" [attr-defined] +torch/_torch_docs.py:9842:5: error: Module has no attribute "sigmoid" [attr-defined] +torch/_torch_docs.py:9851:5: error: Module has no attribute "logit" [attr-defined] +torch/_torch_docs.py:9860:5: error: Module has no attribute "sign" [attr-defined] +torch/_torch_docs.py:9887:5: error: Module has no attribute "signbit" [attr-defined] +torch/_torch_docs.py:9915:5: error: Module has no attribute "sgn" [attr-defined] +torch/_torch_docs.py:9948:5: error: Module has no attribute "sin" [attr-defined] +torch/_torch_docs.py:9976:5: error: Module has no attribute "sinc" [attr-defined] +torch/_torch_docs.py:9985:5: error: Module has no attribute "sinh" [attr-defined] +torch/_torch_docs.py:10018:5: error: Module has no attribute "sort" [attr-defined] +torch/_torch_docs.py:10083:5: error: Module has no attribute "argsort" [attr-defined] +torch/_torch_docs.py:10124:5: error: Module has no attribute "msort" [attr-defined] +torch/_torch_docs.py:10155:5: error: Module has no attribute "sparse_compressed_tensor" [attr-defined] +torch/_torch_docs.py:10228:5: error: Module has no attribute "sparse_csr_tensor" [attr-defined] +torch/_torch_docs.py:10289:5: error: Module has no attribute "sparse_csc_tensor" [attr-defined] +torch/_torch_docs.py:10352:5: error: Module has no attribute "sparse_bsr_tensor" [attr-defined] +torch/_torch_docs.py:10420:5: error: Module has no attribute "sparse_bsc_tensor" [attr-defined] +torch/_torch_docs.py:10487:5: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/_torch_docs.py:10585:5: error: Module has no attribute "sqrt" [attr-defined] +torch/_torch_docs.py:10612:5: error: Module has no attribute "square" [attr-defined] +torch/_torch_docs.py:10635:5: error: Module has no attribute "squeeze" [attr-defined] +torch/_torch_docs.py:10685:5: error: Module has no attribute "std" [attr-defined] +torch/_torch_docs.py:10740:5: error: Module has no attribute "std_mean" [attr-defined] +torch/_torch_docs.py:10797:5: error: Module has no attribute "sub" [attr-defined] +torch/_torch_docs.py:10829:5: error: Module has no attribute "subtract" [attr-defined] +torch/_torch_docs.py:10838:5: error: Module has no attribute "sum" [attr-defined] +torch/_torch_docs.py:10895:5: error: Module has no attribute "nansum" [attr-defined] +torch/_torch_docs.py:10945:5: error: Module has no attribute "svd" [attr-defined] +torch/_torch_docs.py:11080:5: error: Module has no attribute "t" [attr-defined] +torch/_torch_docs.py:11119:5: error: Module has no attribute "flip" [attr-defined] +torch/_torch_docs.py:11153:5: error: Module has no attribute "fliplr" [attr-defined] +torch/_torch_docs.py:11186:5: error: Module has no attribute "flipud" [attr-defined] +torch/_torch_docs.py:11219:5: error: Module has no attribute "roll" [attr-defined] +torch/_torch_docs.py:11268:5: error: Module has no attribute "rot90" [attr-defined] +torch/_torch_docs.py:11307:5: error: Module has no attribute "take" [attr-defined] +torch/_torch_docs.py:11329:5: error: Module has no attribute "take_along_dim" [attr-defined] +torch/_torch_docs.py:11366:5: error: Module has no attribute "tan" [attr-defined] +torch/_torch_docs.py:11394:5: error: Module has no attribute "tanh" [attr-defined] +torch/_torch_docs.py:11423:5: error: Module has no attribute "softmax" [attr-defined] +torch/_torch_docs.py:11432:5: error: Module has no attribute "topk" [attr-defined] +torch/_torch_docs.py:11478:5: error: Module has no attribute "trace" [attr-defined] +torch/_torch_docs.py:11497:5: error: Module has no attribute "transpose" [attr-defined] +torch/_torch_docs.py:11547:5: error: Module has no attribute "triangular_solve" [attr-defined] +torch/_torch_docs.py:11621:5: error: Module has no attribute "tril" [attr-defined] +torch/_torch_docs.py:11681:5: error: Module has no attribute "tril_indices" [attr-defined] +torch/_torch_docs.py:11738:5: error: Module has no attribute "triu" [attr-defined] +torch/_torch_docs.py:11806:5: error: Module has no attribute "triu_indices" [attr-defined] +torch/_torch_docs.py:11863:5: error: Module has no attribute "true_divide" [attr-defined] +torch/_torch_docs.py:11872:5: error: Module has no attribute "trunc" [attr-defined] +torch/_torch_docs.py:11899:5: error: Module has no attribute "fake_quantize_per_tensor_affine" [attr-defined] +torch/_torch_docs.py:11940:5: error: Module has no attribute "fake_quantize_per_channel_affine" [attr-defined] +torch/_torch_docs.py:11994:5: error: Module has no attribute "fix" [attr-defined] +torch/_torch_docs.py:12003:5: error: Module has no attribute "unsqueeze" [attr-defined] +torch/_torch_docs.py:12034:5: error: Module has no attribute "var" [attr-defined] +torch/_torch_docs.py:12089:5: error: Module has no attribute "var_mean" [attr-defined] +torch/_torch_docs.py:12145:5: error: Module has no attribute "zeros" [attr-defined] +torch/_torch_docs.py:12175:5: error: Module has no attribute "zeros_like" [attr-defined] +torch/_torch_docs.py:12208:5: error: Module has no attribute "empty" [attr-defined] +torch/_torch_docs.py:12246:5: error: Module has no attribute "empty_like" [attr-defined] +torch/_torch_docs.py:12288:5: error: Module has no attribute "empty_strided" [attr-defined] +torch/_torch_docs.py:12331:5: error: Module has no attribute "empty_permuted" [attr-defined] +torch/_torch_docs.py:12384:5: error: Module has no attribute "full" [attr-defined] +torch/_torch_docs.py:12412:5: error: Module has no attribute "full_like" [attr-defined] +torch/_torch_docs.py:12453:5: error: Module has no attribute "det" [attr-defined] +torch/_torch_docs.py:12462:5: error: Module has no attribute "where" [attr-defined] +torch/_torch_docs.py:12529:5: error: Module has no attribute "logdet" [attr-defined] +torch/_torch_docs.py:12577:5: error: Module has no attribute "slogdet" [attr-defined] +torch/_torch_docs.py:12586:5: error: Module has no attribute "pinverse" [attr-defined] +torch/_torch_docs.py:12595:5: error: Module has no attribute "hann_window" [attr-defined] +torch/_torch_docs.py:12642:5: error: Module has no attribute "hamming_window" [attr-defined] +torch/_torch_docs.py:12759:5: error: Module has no attribute "bartlett_window" [attr-defined] +torch/_torch_docs.py:12808:5: error: Module has no attribute "blackman_window" [attr-defined] +torch/_torch_docs.py:12854:5: error: Module has no attribute "kaiser_window" [attr-defined] +torch/_torch_docs.py:12897:5: error: Module has no attribute "vander" [attr-defined] +torch/_torch_docs.py:12944:5: error: Module has no attribute "unbind" [attr-defined] +torch/_torch_docs.py:12967:5: error: Module has no attribute "combinations" [attr-defined] +torch/_torch_docs.py:13013:5: error: Module has no attribute "trapezoid" [attr-defined] +torch/_torch_docs.py:13124:5: error: Module has no attribute "trapz" [attr-defined] +torch/_torch_docs.py:13133:5: error: Module has no attribute "cumulative_trapezoid" [attr-defined] +torch/_torch_docs.py:13222:5: error: Module has no attribute "repeat_interleave" [attr-defined] +torch/_torch_docs.py:13292:5: error: Module has no attribute "tile" [attr-defined] +torch/_torch_docs.py:13335:5: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/_torch_docs.py:13371:5: error: Module has no attribute "quantize_per_tensor_dynamic" [attr-defined] +torch/_torch_docs.py:13401:5: error: Module has no attribute "quantize_per_channel" [attr-defined] +torch/_torch_docs.py:13435:5: error: Module has no attribute "quantized_batch_norm" [attr-defined] +torch/_torch_docs.py:13480:5: error: Module has no attribute "quantized_max_pool1d" [attr-defined] +torch/_torch_docs.py:13511:5: error: Module has no attribute "quantized_max_pool2d" [attr-defined] +torch/_torch_docs.py:13548:5: error: Module has no attribute "Stream" [attr-defined] +torch/_torch_docs.py:13581:5: error: Module has no attribute "Stream" [attr-defined] +torch/_torch_docs.py:13601:5: error: Module has no attribute "Stream" [attr-defined] +torch/_torch_docs.py:13623:5: error: Module has no attribute "Stream" [attr-defined] +torch/_torch_docs.py:13639:5: error: Module has no attribute "Stream" [attr-defined] +torch/_torch_docs.py:13660:5: error: Module has no attribute "Stream" [attr-defined] +torch/_torch_docs.py:13681:5: error: Module has no attribute "Event" [attr-defined] +torch/_torch_docs.py:13711:5: error: Module has no attribute "Event" [attr-defined] +torch/_torch_docs.py:13736:5: error: Module has no attribute "Event" [attr-defined] +torch/_torch_docs.py:13758:5: error: Module has no attribute "Event" [attr-defined] +torch/_torch_docs.py:13779:5: error: Module has no attribute "Event" [attr-defined] +torch/_torch_docs.py:13796:5: error: Module has no attribute "Event" [attr-defined] +torch/_torch_docs.py:13818:5: error: Module has no attribute "Generator" [attr-defined] +torch/_torch_docs.py:13842:5: error: Module has no attribute "Generator" [attr-defined] +torch/_torch_docs.py:13861:5: error: Module has no attribute "Generator" [attr-defined] +torch/_torch_docs.py:13879:5: error: Module has no attribute "Generator" [attr-defined] +torch/_torch_docs.py:13898:5: error: Module has no attribute "Generator" [attr-defined] +torch/_torch_docs.py:13915:5: error: Module has no attribute "Generator" [attr-defined] +torch/_torch_docs.py:13932:5: error: Module has no attribute "Generator" [attr-defined] +torch/_torch_docs.py:13956:5: error: Module has no attribute "Generator" [attr-defined] +torch/_torch_docs.py:13972:5: error: Module has no attribute "Generator" [attr-defined] +torch/_torch_docs.py:13989:5: error: Module has no attribute "Generator" [attr-defined] +torch/_torch_docs.py:14004:5: error: Module has no attribute "_assert_async" [attr-defined] +torch/_torch_docs.py:14024:5: error: Module has no attribute "searchsorted" [attr-defined] +torch/_torch_docs.py:14107:5: error: Module has no attribute "bucketize" [attr-defined] +torch/_torch_docs.py:14159:5: error: Module has no attribute "view_as_real_copy" [attr-defined] +torch/_torch_docs.py:14167:5: error: Module has no attribute "view_as_complex_copy" [attr-defined] +torch/_torch_docs.py:14175:5: error: Module has no attribute "as_strided_copy" [attr-defined] +torch/_torch_docs.py:14183:5: error: Module has no attribute "diagonal_copy" [attr-defined] +torch/_torch_docs.py:14191:5: error: Module has no attribute "expand_copy" [attr-defined] +torch/_torch_docs.py:14199:5: error: Module has no attribute "permute_copy" [attr-defined] +torch/_torch_docs.py:14207:5: error: Module has no attribute "select_copy" [attr-defined] +torch/_torch_docs.py:14215:5: error: Module has no attribute "detach_copy" [attr-defined] +torch/_torch_docs.py:14223:5: error: Module has no attribute "slice_copy" [attr-defined] +torch/_torch_docs.py:14231:5: error: Module has no attribute "split_copy" [attr-defined] +torch/_torch_docs.py:14239:5: error: Module has no attribute "split_with_sizes_copy" [attr-defined] +torch/_torch_docs.py:14247:5: error: Module has no attribute "squeeze_copy" [attr-defined] +torch/_torch_docs.py:14255:5: error: Module has no attribute "t_copy" [attr-defined] +torch/_torch_docs.py:14263:5: error: Module has no attribute "transpose_copy" [attr-defined] +torch/_torch_docs.py:14271:5: error: Module has no attribute "unsqueeze_copy" [attr-defined] +torch/_torch_docs.py:14279:5: error: Module has no attribute "indices_copy" [attr-defined] +torch/_torch_docs.py:14287:5: error: Module has no attribute "values_copy" [attr-defined] +torch/_torch_docs.py:14295:5: error: Module has no attribute "crow_indices_copy" [attr-defined] +torch/_torch_docs.py:14303:5: error: Module has no attribute "col_indices_copy" [attr-defined] +torch/_torch_docs.py:14311:5: error: Module has no attribute "unbind_copy" [attr-defined] +torch/_torch_docs.py:14319:5: error: Module has no attribute "view_copy" [attr-defined] +torch/_torch_docs.py:14327:5: error: Module has no attribute "unfold_copy" [attr-defined] +torch/_torch_docs.py:14335:5: error: Module has no attribute "alias_copy" [attr-defined] +torch/_storage_docs.py:5:1: error: Module "torch._C" has no attribute "_add_docstr" [attr-defined] +torch/_size_docs.py:4:1: error: Module "torch._C" has no attribute "_add_docstr" [attr-defined] +torch/_size_docs.py:8:24: error: Module has no attribute "Size" [attr-defined] +torch/_classes.py:13:17: error: Module has no attribute "_get_custom_class_python_wrapper" [attr-defined] +torch/utils/throughput_benchmark.py:98:31: error: Module has no attribute "ThroughputBenchmark" [attr-defined] +torch/utils/throughput_benchmark.py:100:31: error: Module has no attribute "ThroughputBenchmark" [attr-defined] +torch/utils/throughput_benchmark.py:155:18: error: Module has no attribute "BenchmarkConfig" [attr-defined] +torch/_inductor/compile_worker/utils.py:42:5: error: Module has no attribute "_initCrashHandler" [attr-defined] +torch/_tensor_docs.py:5:1: error: Module "torch._C" has no attribute "_add_docstr" [attr-defined] +torch/_tensor_docs.py:10:24: error: Module has no attribute "TensorBase" [attr-defined] +torch/return_types.py:15:1: error: Function is missing a return type annotation [no-untyped-def] +torch/return_types.py:16:5: error: Function is missing a type annotation [no-untyped-def] +torch/return_types.py:19:5: error: Function is missing a type annotation [no-untyped-def] +torch/return_types.py:23:5: error: Function is missing a type annotation [no-untyped-def] +torch/random.py:7:1: error: Module "torch._C" has no attribute "default_generator" [attr-defined] +torch/random.py:32:26: error: Name "torch._C.Generator" is not defined [name-defined] +torch/random.py:45:60: error: Name "torch._C.Generator" is not defined [name-defined] +torch/random.py:101:27: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/random.py:158:19: error: Module has no attribute "device" [attr-defined] +torch/quasirandom.py:62:15: error: Module has no attribute "device" [attr-defined] +torch/quasirandom.py:64:27: error: Module has no attribute "zeros" [attr-defined] +torch/quasirandom.py:65:55: error: Module has no attribute "long" [attr-defined] +torch/quasirandom.py:67:9: error: Module has no attribute "_sobol_engine_initialize_state_" [attr-defined] +torch/quasirandom.py:70:26: error: Module has no attribute "zeros" [attr-defined] +torch/quasirandom.py:70:72: error: Module has no attribute "long" [attr-defined] +torch/quasirandom.py:74:53: error: Module has no attribute "contiguous_format" [attr-defined] +torch/quasirandom.py:82:25: error: Name "torch.dtype" is not defined [name-defined] +torch/quasirandom.py:98:21: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/quasirandom.py:104:38: error: Module has no attribute "_sobol_engine_draw" [attr-defined] +torch/quasirandom.py:112:26: error: Module has no attribute "cat" [attr-defined] +torch/quasirandom.py:114:34: error: Module has no attribute "_sobol_engine_draw" [attr-defined] +torch/quasirandom.py:135:25: error: Name "torch.dtype" is not defined [name-defined] +torch/quasirandom.py:179:13: error: Module has no attribute "_sobol_engine_ff_" [attr-defined] +torch/quasirandom.py:183:13: error: Module has no attribute "_sobol_engine_ff_" [attr-defined] +torch/quasirandom.py:190:21: error: Name "torch.Generator" is not defined [name-defined] +torch/quasirandom.py:192:17: error: Module has no attribute "Generator" [attr-defined] +torch/quasirandom.py:195:15: error: Module has no attribute "device" [attr-defined] +torch/quasirandom.py:198:22: error: Module has no attribute "randint" [attr-defined] +torch/quasirandom.py:201:22: error: Module has no attribute "mv" [attr-defined] +torch/quasirandom.py:202:25: error: Module has no attribute "pow" [attr-defined] +torch/quasirandom.py:202:38: error: Module has no attribute "arange" [attr-defined] +torch/quasirandom.py:207:15: error: Module has no attribute "randint" [attr-defined] +torch/quasirandom.py:209:9: error: Module has no attribute "_sobol_engine_scramble_" [attr-defined] +torch/_utils_internal.py:237:24: error: _CudaDeviceProperties? has no attribute "gcnArchName" [attr-defined] +torch/_utils.py:76:13: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/_utils.py:78:27: error: Module has no attribute "empty" [attr-defined] +torch/_utils.py:79:34: error: Module has no attribute "uint8" [attr-defined] +torch/_utils.py:137:45: error: Module has no attribute "device" [attr-defined] +torch/_utils.py:188:9: error: Module has no attribute "empty" [attr-defined] +torch/_utils.py:211:39: error: Module has no attribute "device" [attr-defined] +torch/_utils.py:212:26: error: Module has no attribute "device" [attr-defined] +torch/_utils.py:213:34: error: Module has no attribute "device" [attr-defined] +torch/_utils.py:250:9: error: Module has no attribute "empty" [attr-defined] +torch/_utils.py:290:28: error: Module has no attribute "sparse_coo" [attr-defined] +torch/_utils.py:291:17: error: Module has no attribute "_validate_sparse_coo_tensor_args" [attr-defined] +torch/_utils.py:299:17: error: Module has no attribute "sparse_csr" [attr-defined] +torch/_utils.py:300:17: error: Module has no attribute "sparse_csc" [attr-defined] +torch/_utils.py:301:17: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_utils.py:302:17: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/_utils.py:306:33: error: Module has no attribute "sparse_csr" [attr-defined] +torch/_utils.py:306:51: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_utils.py:316:17: error: Module has no attribute "_validate_sparse_compressed_tensor_args" [attr-defined] +torch/_utils.py:341:18: error: Module has no attribute "sparse_coo" [attr-defined] +torch/_utils.py:348:18: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/_utils.py:355:9: error: Module has no attribute "sparse_csr" [attr-defined] +torch/_utils.py:356:9: error: Module has no attribute "sparse_csc" [attr-defined] +torch/_utils.py:357:9: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_utils.py:358:9: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/_utils.py:361:18: error: Module has no attribute "sparse_compressed_tensor" [attr-defined] +torch/_utils.py:376:12: error: Module has no attribute "_nested_view_from_buffer" [attr-defined] +torch/_utils.py:388:14: error: Module has no attribute "from_numpy" [attr-defined] +torch/_utils.py:398:12: error: Module has no attribute "empty_strided" [attr-defined] +torch/_utils.py:438:19: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/_utils.py:440:18: error: Module has no attribute "_empty_affine_quantized" [attr-defined] +torch/_utils.py:447:22: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/_utils.py:447:48: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/_utils.py:450:27: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/_utils.py:451:26: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_utils.py:451:53: error: Module has no attribute "double" [attr-defined] +torch/_utils.py:452:31: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_utils.py:453:40: error: Module has no attribute "long" [attr-defined] +torch/_utils.py:456:26: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_utils.py:456:53: error: Module has no attribute "float" [attr-defined] +torch/_utils.py:457:31: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_utils.py:458:40: error: Module has no attribute "float" [attr-defined] +torch/_utils.py:460:18: error: Module has no attribute "_empty_per_channel_affine_quantized" [attr-defined] +torch/_utils.py:572:12: error: Module has no attribute "_nn" [attr-defined] +torch/_utils.py:586:20: error: Module has no attribute "_nn" [attr-defined] +torch/_utils.py:589:19: error: Module has no attribute "_nn" [attr-defined] +torch/_utils.py:608:12: error: Module has no attribute "_nn" [attr-defined] +torch/_utils.py:627:15: error: Module has no attribute "_nn" [attr-defined] +torch/_utils.py:630:14: error: Module has no attribute "_nn" [attr-defined] +torch/_utils.py:787:27: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/_utils.py:805:23: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/_utils.py:858:18: error: Module has no attribute "device" [attr-defined] +torch/_utils.py:860:27: error: Module has no attribute "device" [attr-defined] +torch/_utils.py:890:9: error: Module has no attribute "view_as_real" [attr-defined] +torch/_utils.py:901:30: error: Module has no attribute "dtype" [attr-defined] +torch/_utils.py:905:16: error: Module has no attribute "finfo" [attr-defined] +torch/_utils.py:907:16: error: Module has no attribute "finfo" [attr-defined] +torch/_utils.py:908:19: error: Module has no attribute "bool" [attr-defined] +torch/_utils.py:912:16: error: Module has no attribute "iinfo" [attr-defined] +torch/_utils.py:973:33: error: Module has no attribute "_unset_dispatch_mode" [attr-defined] +torch/_utils.py:974:13: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_utils.py:980:17: error: Module has no attribute "_set_dispatch_mode" [attr-defined] +torch/__config__.py:9:12: error: Module has no attribute "_show_config" [attr-defined] +torch/__config__.py:17:12: error: Module has no attribute "_cxx_flags" [attr-defined] +torch/__config__.py:22:12: error: Module has no attribute "_parallel_info" [attr-defined] +torch/utils/hooks.py:168:35: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/utils/hooks.py:209:40: error: Argument 1 to "len" has incompatible type "None"; expected "Sized" [arg-type] +torch/utils/deterministic.py:15:16: error: Module has no attribute "_get_deterministic_fill_uninitialized_memory" [attr-defined] +torch/utils/deterministic.py:19:16: error: Module has no attribute "_set_deterministic_fill_uninitialized_memory" [attr-defined] +torch/utils/collect_env.py:213:46: error: _CudaDeviceProperties? has no attribute "gcnArchName" [attr-defined] +torch/utils/collect_env.py:725:19: error: Module has no attribute "_show_config" [attr-defined] +torch/utils/_mode_utils.py:15:15: error: Module has no attribute "_DisableTorchDispatch" [attr-defined] +torch/utils/_dtype_abbrs.py:6:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/utils/_dtype_abbrs.py:7:5: error: Module has no attribute "float64" [attr-defined] +torch/utils/_dtype_abbrs.py:8:5: error: Module has no attribute "float32" [attr-defined] +torch/utils/_dtype_abbrs.py:9:5: error: Module has no attribute "float16" [attr-defined] +torch/utils/_dtype_abbrs.py:10:5: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/utils/_dtype_abbrs.py:11:5: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/utils/_dtype_abbrs.py:12:5: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/utils/_dtype_abbrs.py:13:5: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/utils/_dtype_abbrs.py:14:5: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/utils/_dtype_abbrs.py:15:5: error: Module has no attribute "float4_e2m1fn_x2" [attr-defined] +torch/utils/_dtype_abbrs.py:16:5: error: Module has no attribute "complex32" [attr-defined] +torch/utils/_dtype_abbrs.py:17:5: error: Module has no attribute "complex64" [attr-defined] +torch/utils/_dtype_abbrs.py:18:5: error: Module has no attribute "complex128" [attr-defined] +torch/utils/_dtype_abbrs.py:19:5: error: Module has no attribute "int8" [attr-defined] +torch/utils/_dtype_abbrs.py:20:5: error: Module has no attribute "int16" [attr-defined] +torch/utils/_dtype_abbrs.py:21:5: error: Module has no attribute "int32" [attr-defined] +torch/utils/_dtype_abbrs.py:22:5: error: Module has no attribute "int64" [attr-defined] +torch/utils/_dtype_abbrs.py:23:5: error: Module has no attribute "bool" [attr-defined] +torch/utils/_dtype_abbrs.py:24:5: error: Module has no attribute "uint8" [attr-defined] +torch/utils/_dtype_abbrs.py:25:5: error: Module has no attribute "uint16" [attr-defined] +torch/utils/_dtype_abbrs.py:26:5: error: Module has no attribute "uint32" [attr-defined] +torch/utils/_dtype_abbrs.py:27:5: error: Module has no attribute "uint64" [attr-defined] +torch/utils/_dtype_abbrs.py:28:5: error: Module has no attribute "bits16" [attr-defined] +torch/utils/_dtype_abbrs.py:29:5: error: Module has no attribute "bits1x8" [attr-defined] +torch/utils/data/sampler.py:163:24: error: Module has no attribute "empty" [attr-defined] +torch/utils/data/sampler.py:163:46: error: Module has no attribute "int64" [attr-defined] +torch/utils/data/sampler.py:164:25: error: Module has no attribute "Generator" [attr-defined] +torch/utils/data/sampler.py:171:28: error: Module has no attribute "randint" [attr-defined] +torch/utils/data/sampler.py:172:47: error: Module has no attribute "int64" [attr-defined] +torch/utils/data/sampler.py:174:24: error: Module has no attribute "randint" [attr-defined] +torch/utils/data/sampler.py:177:23: error: Module has no attribute "int64" [attr-defined] +torch/utils/data/sampler.py:182:28: error: Module has no attribute "randperm" [attr-defined] +torch/utils/data/sampler.py:183:24: error: Module has no attribute "randperm" [attr-defined] +torch/utils/data/sampler.py:206:18: error: Module has no attribute "randperm" [attr-defined] +torch/utils/data/sampler.py:264:26: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/utils/data/sampler.py:264:57: error: Module has no attribute "double" [attr-defined] +torch/utils/data/sampler.py:277:23: error: Module has no attribute "multinomial" [attr-defined] +torch/utils/data/_utils/collate.py:70:16: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/utils/data/_utils/collate.py:259:9: error: Module has no attribute "sparse_coo" [attr-defined] +torch/utils/data/_utils/collate.py:260:9: error: Module has no attribute "sparse_csr" [attr-defined] +torch/utils/data/_utils/collate.py:261:9: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/utils/data/_utils/collate.py:262:9: error: Module has no attribute "sparse_csc" [attr-defined] +torch/utils/data/_utils/collate.py:263:9: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/utils/data/_utils/collate.py:275:12: error: Module has no attribute "stack" [attr-defined] +torch/utils/data/_utils/collate.py:288:21: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/utils/data/_utils/collate.py:296:12: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/utils/data/_utils/collate.py:304:12: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/utils/data/_utils/collate.py:304:38: error: Module has no attribute "float64" [attr-defined] +torch/utils/data/_utils/collate.py:312:12: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/testing/_utils.py:34:49: error: Module has no attribute "_DisableFuncTorch" [attr-defined] +torch/testing/_utils.py:49:53: error: Module has no attribute "_DisableFuncTorch" [attr-defined] +torch/testing/_creation.py:15:5: error: Module has no attribute "uint8" [attr-defined] +torch/testing/_creation.py:16:5: error: Module has no attribute "int8" [attr-defined] +torch/testing/_creation.py:17:5: error: Module has no attribute "int16" [attr-defined] +torch/testing/_creation.py:18:5: error: Module has no attribute "int32" [attr-defined] +torch/testing/_creation.py:19:5: error: Module has no attribute "int64" [attr-defined] +torch/testing/_creation.py:20:5: error: Module has no attribute "uint16" [attr-defined] +torch/testing/_creation.py:21:5: error: Module has no attribute "uint32" [attr-defined] +torch/testing/_creation.py:22:5: error: Module has no attribute "uint64" [attr-defined] +torch/testing/_creation.py:24:20: error: Module has no attribute "float16" [attr-defined] +torch/testing/_creation.py:24:35: error: Module has no attribute "bfloat16" [attr-defined] +torch/testing/_creation.py:24:51: error: Module has no attribute "float32" [attr-defined] +torch/testing/_creation.py:24:66: error: Module has no attribute "float64" [attr-defined] +torch/testing/_creation.py:26:5: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/testing/_creation.py:27:5: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/testing/_creation.py:28:5: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/testing/_creation.py:29:5: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/testing/_creation.py:31:19: error: Module has no attribute "complex32" [attr-defined] +torch/testing/_creation.py:31:36: error: Module has no attribute "complex64" [attr-defined] +torch/testing/_creation.py:31:53: error: Module has no attribute "complex128" [attr-defined] +torch/testing/_creation.py:32:31: error: Module has no attribute "bool" [attr-defined] +torch/testing/_creation.py:39:22: error: Module has no attribute "finfo" [attr-defined] +torch/testing/_creation.py:46:24: error: Name "torch.Size" is not defined [name-defined] +torch/testing/_creation.py:47:12: error: Name "torch.dtype" is not defined [name-defined] +torch/testing/_creation.py:48:24: error: Name "torch.device" is not defined [name-defined] +torch/testing/_creation.py:54:29: error: Name "torch.memory_format" is not defined [name-defined] +torch/testing/_creation.py:199:17: error: Module has no attribute "bool" [attr-defined] +torch/testing/_creation.py:211:18: error: Module has no attribute "randint" [attr-defined] +torch/testing/_creation.py:218:34: error: Module has no attribute "iinfo" [attr-defined] +torch/testing/_creation.py:219:35: error: Module has no attribute "iinfo" [attr-defined] +torch/testing/_creation.py:223:38: error: Module has no attribute "int64" [attr-defined] +torch/testing/_creation.py:230:18: error: Module has no attribute "randint" [attr-defined] +torch/testing/_creation.py:235:30: error: Module has no attribute "finfo" [attr-defined] +torch/testing/_creation.py:236:31: error: Module has no attribute "finfo" [attr-defined] +torch/testing/_creation.py:240:18: error: Module has no attribute "empty" [attr-defined] +torch/testing/_creation.py:242:13: error: Module has no attribute "view_as_real" [attr-defined] +torch/testing/_creation.py:248:30: error: Module has no attribute "finfo" [attr-defined] +torch/testing/_creation.py:249:31: error: Module has no attribute "finfo" [attr-defined] +torch/testing/_creation.py:253:18: error: Module has no attribute "empty" [attr-defined] +torch/testing/_creation.py:253:58: error: Module has no attribute "float32" [attr-defined] +torch/testing/_creation.py:270:59: error: Module has no attribute "finfo" [attr-defined] +torch/testing/_comparison.py:55:5: error: Module has no attribute "float16" [attr-defined] +torch/testing/_comparison.py:56:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/testing/_comparison.py:57:5: error: Module has no attribute "float32" [attr-defined] +torch/testing/_comparison.py:58:5: error: Module has no attribute "float64" [attr-defined] +torch/testing/_comparison.py:59:5: error: Module has no attribute "complex32" [attr-defined] +torch/testing/_comparison.py:60:5: error: Module has no attribute "complex64" [attr-defined] +torch/testing/_comparison.py:61:5: error: Module has no attribute "complex128" [attr-defined] +torch/testing/_comparison.py:67:10: error: Module has no attribute "quint8" [attr-defined] +torch/testing/_comparison.py:67:24: error: Module has no attribute "quint2x4" [attr-defined] +torch/testing/_comparison.py:67:40: error: Module has no attribute "quint4x2" [attr-defined] +torch/testing/_comparison.py:67:56: error: Module has no attribute "qint8" [attr-defined] +torch/testing/_comparison.py:67:69: error: Module has no attribute "qint32" [attr-defined] +torch/testing/_comparison.py:68:27: error: Module has no attribute "float32" [attr-defined] +torch/testing/_comparison.py:74:34: error: Name "torch.dtype" is not defined [name-defined] +torch/testing/_comparison.py:75:37: error: Name "torch.dtype" is not defined [name-defined] +torch/testing/_comparison.py:88:32: error: Module has no attribute "dtype" [attr-defined] +torch/testing/_comparison.py:102:34: error: Name "torch.dtype" is not defined [name-defined] +torch/testing/_comparison.py:295:49: error: Module has no attribute "sum" [attr-defined] +torch/testing/_comparison.py:302:36: error: Module has no attribute "nonzero" [attr-defined] +torch/testing/_comparison.py:317:38: error: Module has no attribute "int64" [attr-defined] +torch/testing/_comparison.py:318:42: error: Module has no attribute "int64" [attr-defined] +torch/testing/_comparison.py:320:16: error: Module has no attribute "abs" [attr-defined] +torch/testing/_comparison.py:323:43: error: Module has no attribute "max" [attr-defined] +torch/testing/_comparison.py:325:27: error: Module has no attribute "abs" [attr-defined] +torch/testing/_comparison.py:328:43: error: Module has no attribute "max" [attr-defined] +torch/testing/_comparison.py:552:14: error: Module has no attribute "int64" [attr-defined] +torch/testing/_comparison.py:553:16: error: Module has no attribute "float64" [attr-defined] +torch/testing/_comparison.py:554:18: error: Module has no attribute "complex128" [attr-defined] +torch/testing/_comparison.py:721:20: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/testing/_comparison.py:727:13: error: Module has no attribute "strided" [attr-defined] +torch/testing/_comparison.py:728:13: error: Module has no attribute "jagged" [attr-defined] +torch/testing/_comparison.py:729:13: error: Module has no attribute "sparse_coo" [attr-defined] +torch/testing/_comparison.py:730:13: error: Module has no attribute "sparse_csr" [attr-defined] +torch/testing/_comparison.py:731:13: error: Module has no attribute "sparse_csc" [attr-defined] +torch/testing/_comparison.py:732:13: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/testing/_comparison.py:733:13: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/testing/_comparison.py:794:30: error: Module has no attribute "strided" [attr-defined] +torch/testing/_comparison.py:842:33: error: Module has no attribute "uint64" [attr-defined] +torch/testing/_comparison.py:842:47: error: Module has no attribute "uint32" [attr-defined] +torch/testing/_comparison.py:842:61: error: Module has no attribute "uint16" [attr-defined] +torch/testing/_comparison.py:843:32: error: Module has no attribute "int64" [attr-defined] +torch/testing/_comparison.py:844:35: error: Module has no attribute "uint64" [attr-defined] +torch/testing/_comparison.py:844:49: error: Module has no attribute "uint32" [attr-defined] +torch/testing/_comparison.py:844:63: error: Module has no attribute "uint16" [attr-defined] +torch/testing/_comparison.py:845:34: error: Module has no attribute "int64" [attr-defined] +torch/testing/_comparison.py:846:21: error: Module has no attribute "promote_types" [attr-defined] +torch/testing/_comparison.py:852:60: error: Module has no attribute "strided" [attr-defined] +torch/testing/_comparison.py:854:59: error: Module has no attribute "strided" [attr-defined] +torch/testing/_comparison.py:865:13: error: Module has no attribute "sparse_csr" [attr-defined] +torch/testing/_comparison.py:866:13: error: Module has no attribute "sparse_csc" [attr-defined] +torch/testing/_comparison.py:867:13: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/testing/_comparison.py:868:13: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/testing/_comparison.py:871:31: error: Module has no attribute "jagged" [attr-defined] +torch/testing/_comparison.py:1000:13: error: Module has no attribute "sparse_csr" [attr-defined] +torch/testing/_comparison.py:1005:13: error: Module has no attribute "sparse_csc" [attr-defined] +torch/testing/_comparison.py:1010:13: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/testing/_comparison.py:1015:13: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/testing/_comparison.py:1037:25: error: Module has no attribute "promote_types" [attr-defined] +torch/testing/_comparison.py:1084:19: error: Module has no attribute "isclose" [attr-defined] +torch/testing/_comparison.py:1087:12: error: Module has no attribute "all" [attr-defined] +torch/testing/_comparison.py:1090:28: error: Module has no attribute "Size" [attr-defined] +torch/testing/_comparison.py:1625:18: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/testing/_comparison.py:1627:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/testing/_comparison.py:1634:17: error: Module has no attribute "float16" [attr-defined] +torch/testing/_comparison.py:1635:17: error: Module has no attribute "float32" [attr-defined] +torch/testing/_comparison.py:1636:17: error: Module has no attribute "float64" [attr-defined] +torch/sparse/_semi_structured_ops.py:23:13: error: Module has no attribute "_DisableTorchDispatch" [attr-defined] +torch/sparse/_semi_structured_ops.py:57:30: error: Module has no attribute "int32" [attr-defined] +torch/sparse/_semi_structured_ops.py:57:73: error: Module has no attribute "int16" [attr-defined] +torch/sparse/_semi_structured_ops.py:72:9: error: Module has no attribute "Size" [attr-defined] +torch/sparse/_semi_structured_ops.py:181:23: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/sparse/_semi_structured_ops.py:182:23: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/sparse/_semi_structured_ops.py:188:29: error: Module has no attribute "float32" [attr-defined] +torch/sparse/_semi_structured_ops.py:192:21: error: Module has no attribute "_cslt_sparse_mm" [attr-defined] +torch/sparse/_semi_structured_conversions.py:21:16: error: Module has no attribute "arange" [attr-defined] +torch/sparse/_semi_structured_conversions.py:22:16: error: Module has no attribute "arange" [attr-defined] +torch/sparse/_semi_structured_conversions.py:33:63: error: Module has no attribute "int8" [attr-defined] +torch/sparse/_semi_structured_conversions.py:34:65: error: Module has no attribute "int8" [attr-defined] +torch/sparse/_semi_structured_conversions.py:61:18: error: Module has no attribute "int8" [attr-defined] +torch/sparse/_semi_structured_conversions.py:62:23: error: Module has no attribute "int8" [attr-defined] +torch/sparse/_semi_structured_conversions.py:63:22: error: Module has no attribute "int32" [attr-defined] +torch/sparse/_semi_structured_conversions.py:64:26: error: Module has no attribute "half" [attr-defined] +torch/sparse/_semi_structured_conversions.py:64:38: error: Module has no attribute "bfloat16" [attr-defined] +torch/sparse/_semi_structured_conversions.py:64:54: error: Module has no attribute "float" [attr-defined] +torch/sparse/_semi_structured_conversions.py:65:22: error: Module has no attribute "int16" [attr-defined] +torch/sparse/_semi_structured_conversions.py:72:22: error: Module has no attribute "int32" [attr-defined] +torch/sparse/_semi_structured_conversions.py:87:23: error: Module has no attribute "float" [attr-defined] +torch/sparse/_semi_structured_conversions.py:138:29: error: Module has no attribute "int64" [attr-defined] +torch/sparse/_semi_structured_conversions.py:139:29: error: Module has no attribute "int64" [attr-defined] +torch/sparse/_semi_structured_conversions.py:141:23: error: Module has no attribute "float" [attr-defined] +torch/sparse/_semi_structured_conversions.py:145:18: error: Module has no attribute "stack" [attr-defined] +torch/sparse/_semi_structured_conversions.py:207:27: error: Module has no attribute "int16" [attr-defined] +torch/sparse/_semi_structured_conversions.py:207:40: error: Module has no attribute "int32" [attr-defined] +torch/sparse/_semi_structured_conversions.py:211:24: error: Module has no attribute "float" [attr-defined] +torch/sparse/_semi_structured_conversions.py:231:12: error: Module has no attribute "gather" [attr-defined] +torch/sparse/_semi_structured_conversions.py:240:14: error: Module has no attribute "empty" [attr-defined] +torch/sparse/_semi_structured_conversions.py:273:9: error: Module has no attribute "arange" [attr-defined] +torch/sparse/_semi_structured_conversions.py:276:13: error: Module has no attribute "zeros" [attr-defined] +torch/sparse/_semi_structured_conversions.py:277:24: error: Module has no attribute "float" [attr-defined] +torch/sparse/_semi_structured_conversions.py:280:20: error: Module has no attribute "half" [attr-defined] +torch/sparse/_semi_structured_conversions.py:281:43: error: Module has no attribute "half" [attr-defined] +torch/sparse/_semi_structured_conversions.py:323:35: error: Module has no attribute "uint8" [attr-defined] +torch/sparse/_semi_structured_conversions.py:352:26: error: Module has no attribute "arange" [attr-defined] +torch/sparse/_semi_structured_conversions.py:352:48: error: Module has no attribute "float" [attr-defined] +torch/sparse/_semi_structured_conversions.py:355:42: error: Module has no attribute "float" [attr-defined] +torch/sparse/_semi_structured_conversions.py:356:10: error: Module has no attribute "uint8" [attr-defined] +torch/nn/utils/memory_format.py:12:32: error: Name "torch.memory_format" is not defined [name-defined] +torch/nn/utils/memory_format.py:92:32: error: Name "torch.memory_format" is not defined [name-defined] +torch/nn/utils/fusion.py:84:18: error: Module has no attribute "zeros_like" [attr-defined] +torch/nn/utils/fusion.py:86:16: error: Module has no attribute "ones_like" [attr-defined] +torch/nn/utils/fusion.py:88:16: error: Module has no attribute "zeros_like" [attr-defined] +torch/nn/utils/fusion.py:89:20: error: Module has no attribute "rsqrt" [attr-defined] +torch/nn/utils/fusion.py:182:20: error: Module has no attribute "zeros_like" [attr-defined] +torch/nn/utils/fusion.py:183:23: error: Module has no attribute "rsqrt" [attr-defined] +torch/nn/utils/convert_parameters.py:25:12: error: Module has no attribute "cat" [attr-defined] +torch/nn/utils/convert_parameters.py:72:37: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/nested/_internal/nested_int.py:88:16: error: Module has no attribute "_get_constant_bool_symnode" [attr-defined] +torch/nested/_internal/nested_int.py:91:16: error: Module has no attribute "_get_constant_bool_symnode" [attr-defined] +torch/nested/_internal/nested_int.py:94:16: error: Module has no attribute "_get_constant_bool_symnode" [attr-defined] +torch/nested/_internal/nested_int.py:97:16: error: Module has no attribute "_get_constant_bool_symnode" [attr-defined] +torch/nested/_internal/nested_int.py:100:16: error: Module has no attribute "_get_constant_bool_symnode" [attr-defined] +torch/nested/_internal/nested_int.py:103:16: error: Module has no attribute "_get_constant_bool_symnode" [attr-defined] +torch/multiprocessing/reductions.py:334:9: error: Module has no attribute "sparse_coo" [attr-defined] +torch/multiprocessing/reductions.py:335:9: error: Module has no attribute "sparse_csr" [attr-defined] +torch/multiprocessing/reductions.py:336:9: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/multiprocessing/reductions.py:337:9: error: Module has no attribute "sparse_csc" [attr-defined] +torch/multiprocessing/reductions.py:338:9: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/multiprocessing/reductions.py:417:12: error: Module has no attribute "_nested_view_from_buffer_copy" [attr-defined] +torch/multiprocessing/reductions.py:455:12: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/multiprocessing/reductions.py:473:12: error: Module has no attribute "sparse_compressed_tensor" [attr-defined] +torch/multiprocessing/reductions.py:479:25: error: Module has no attribute "sparse_coo" [attr-defined] +torch/multiprocessing/reductions.py:494:30: error: Module has no attribute "sparse_csr" [attr-defined] +torch/multiprocessing/reductions.py:494:48: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/multiprocessing/reductions.py:497:32: error: Module has no attribute "sparse_csc" [attr-defined] +torch/multiprocessing/reductions.py:497:50: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/mtia/mtia_graph.py:12:17: error: Name "torch._C._MTIAGraph" is not defined [name-defined] +torch/mtia/mtia_graph.py:58:38: error: Variable "torch.mtia.Stream" is not valid as a type [valid-type] +torch/mtia/mtia_graph.py:58:38: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/mtia/mtia_graph.py:64:26: error: Variable "torch.mtia.Stream" is not valid as a type [valid-type] +torch/mtia/mtia_graph.py:64:26: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/mtia/mtia_graph.py:83:9: error: Cannot determine type of "stream_ctx" [has-type] +torch/mtia/mtia_graph.py:86:9: error: Cannot determine type of "mtia_graph" [has-type] +torch/mtia/mtia_graph.py:89:9: error: Cannot determine type of "mtia_graph" [has-type] +torch/mtia/mtia_graph.py:90:9: error: Cannot determine type of "stream_ctx" [has-type] +torch/mps/event.py:16:26: error: Module has no attribute "_mps_acquireEvent" [attr-defined] +torch/mps/event.py:25:9: error: Module has no attribute "_mps_recordEvent" [attr-defined] +torch/mps/event.py:29:9: error: Module has no attribute "_mps_waitForEvent" [attr-defined] +torch/mps/event.py:33:16: error: Module has no attribute "_mps_queryEvent" [attr-defined] +torch/mps/event.py:39:9: error: Module has no attribute "_mps_synchronizeEvent" [attr-defined] +torch/mps/event.py:45:16: error: Module has no attribute "_mps_elapsedTimeOfEvents" [attr-defined] +torch/jit/_state.py:62:14: error: Module has no attribute "CompilationUnit" [attr-defined] +torch/jit/_ir_utils.py:10:29: error: Name "torch._C.Graph" is not defined [name-defined] +torch/jit/_ir_utils.py:11:29: error: Name "torch._C.Node" is not defined [name-defined] +torch/jit/_ir_utils.py:11:44: error: Name "torch._C.Block" is not defined [name-defined] +torch/jit/_ir_utils.py:31:11: error: Name "torch._C.Graph" is not defined [name-defined] +torch/jit/_ir_utils.py:31:47: error: Name "torch._C.Node" is not defined [name-defined] +torch/jit/_ir_utils.py:31:62: error: Name "torch._C.Block" is not defined [name-defined] +torch/jit/_fuser.py:10:19: error: Module has no attribute "_get_graph_executor_optimize" [attr-defined] +torch/jit/_fuser.py:11:5: error: Module has no attribute "_set_graph_executor_optimize" [attr-defined] +torch/jit/_fuser.py:15:9: error: Module has no attribute "_set_graph_executor_optimize" [attr-defined] +torch/jit/_fuser.py:28:20: error: Module has no attribute "_jit_can_fuse_on_cpu" [attr-defined] +torch/jit/_fuser.py:29:20: error: Module has no attribute "_jit_can_fuse_on_gpu" [attr-defined] +torch/jit/_fuser.py:30:29: error: Module has no attribute "_jit_texpr_fuser_enabled" [attr-defined] +torch/jit/_fuser.py:31:25: error: Module has no attribute "_jit_nvfuser_enabled" [attr-defined] +torch/jit/_fuser.py:32:22: error: Module has no attribute "_jit_llga_enabled" [attr-defined] +torch/jit/_fuser.py:34:9: error: Module has no attribute "_jit_override_can_fuse_on_cpu" [attr-defined] +torch/jit/_fuser.py:35:9: error: Module has no attribute "_jit_override_can_fuse_on_gpu" [attr-defined] +torch/jit/_fuser.py:36:9: error: Module has no attribute "_jit_set_texpr_fuser_enabled" [attr-defined] +torch/jit/_fuser.py:37:9: error: Module has no attribute "_jit_set_nvfuser_enabled" [attr-defined] +torch/jit/_fuser.py:38:9: error: Module has no attribute "_jit_set_llga_enabled" [attr-defined] +torch/jit/_fuser.py:40:34: error: Module has no attribute "_jit_set_profiling_executor" [attr-defined] +torch/jit/_fuser.py:41:30: error: Module has no attribute "_get_graph_executor_optimize" [attr-defined] +torch/jit/_fuser.py:42:9: error: Module has no attribute "_jit_override_can_fuse_on_cpu" [attr-defined] +torch/jit/_fuser.py:43:9: error: Module has no attribute "_jit_override_can_fuse_on_gpu" [attr-defined] +torch/jit/_fuser.py:44:9: error: Module has no attribute "_jit_set_texpr_fuser_enabled" [attr-defined] +torch/jit/_fuser.py:45:9: error: Module has no attribute "_jit_set_nvfuser_enabled" [attr-defined] +torch/jit/_fuser.py:46:9: error: Module has no attribute "_jit_set_llga_enabled" [attr-defined] +torch/jit/_fuser.py:48:9: error: Module has no attribute "_jit_override_can_fuse_on_cpu" [attr-defined] +torch/jit/_fuser.py:49:9: error: Module has no attribute "_jit_override_can_fuse_on_gpu" [attr-defined] +torch/jit/_fuser.py:50:9: error: Module has no attribute "_jit_set_texpr_fuser_enabled" [attr-defined] +torch/jit/_fuser.py:51:9: error: Module has no attribute "_jit_set_nvfuser_enabled" [attr-defined] +torch/jit/_fuser.py:52:9: error: Module has no attribute "_jit_set_llga_enabled" [attr-defined] +torch/jit/_fuser.py:54:34: error: Module has no attribute "_jit_set_profiling_executor" [attr-defined] +torch/jit/_fuser.py:55:30: error: Module has no attribute "_get_graph_executor_optimize" [attr-defined] +torch/jit/_fuser.py:56:9: error: Module has no attribute "_jit_override_can_fuse_on_cpu" [attr-defined] +torch/jit/_fuser.py:57:9: error: Module has no attribute "_jit_override_can_fuse_on_gpu" [attr-defined] +torch/jit/_fuser.py:58:9: error: Module has no attribute "_jit_set_texpr_fuser_enabled" [attr-defined] +torch/jit/_fuser.py:59:9: error: Module has no attribute "_jit_set_nvfuser_enabled" [attr-defined] +torch/jit/_fuser.py:60:9: error: Module has no attribute "_jit_set_llga_enabled" [attr-defined] +torch/jit/_fuser.py:62:9: error: Module has no attribute "_jit_override_can_fuse_on_cpu" [attr-defined] +torch/jit/_fuser.py:63:9: error: Module has no attribute "_jit_override_can_fuse_on_gpu" [attr-defined] +torch/jit/_fuser.py:64:9: error: Module has no attribute "_jit_set_texpr_fuser_enabled" [attr-defined] +torch/jit/_fuser.py:65:9: error: Module has no attribute "_jit_set_nvfuser_enabled" [attr-defined] +torch/jit/_fuser.py:66:9: error: Module has no attribute "_jit_set_llga_enabled" [attr-defined] +torch/jit/_fuser.py:73:13: error: Module has no attribute "_jit_set_profiling_executor" [attr-defined] +torch/jit/_fuser.py:73:13: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/jit/_fuser.py:74:13: error: Module has no attribute "_get_graph_executor_optimize" [attr-defined] +torch/jit/_fuser.py:74:13: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/jit/_fuser.py:76:9: error: Module has no attribute "_jit_override_can_fuse_on_cpu" [attr-defined] +torch/jit/_fuser.py:77:9: error: Module has no attribute "_jit_override_can_fuse_on_gpu" [attr-defined] +torch/jit/_fuser.py:78:9: error: Module has no attribute "_jit_set_texpr_fuser_enabled" [attr-defined] +torch/jit/_fuser.py:79:9: error: Module has no attribute "_jit_set_nvfuser_enabled" [attr-defined] +torch/jit/_fuser.py:80:9: error: Module has no attribute "_jit_set_llga_enabled" [attr-defined] +torch/jit/_fuser.py:83:33: error: Module has no attribute "_last_executed_optimized_graph" [attr-defined] +torch/jit/_fuser.py:108:26: error: Name "torch._C.Node" is not defined [name-defined] +torch/jit/_fuser.py:160:12: error: Module has no attribute "_jit_set_fusion_strategy" [attr-defined] +torch/jit/_builtins.py:23:5: error: Module has no attribute "_nn" [attr-defined] +torch/jit/_builtins.py:104:6: error: Module has no attribute "_infer_size" [attr-defined] +torch/jit/_builtins.py:114:6: error: Module has no attribute "_get_tracing_state" [attr-defined] +torch/jit/_builtins.py:115:6: error: Module has no attribute "_get_cpu_capability" [attr-defined] +torch/jit/_builtins.py:121:6: error: Module has no attribute "unique_dim" [attr-defined] +torch/jit/_builtins.py:123:6: error: Module has no attribute "nuclear_norm" [attr-defined] +torch/jit/_builtins.py:124:6: error: Module has no attribute "frobenius_norm" [attr-defined] +torch/futures/__init__.py:20:14: error: Name "torch._C.Future" is not defined [name-defined] +torch/futures/__init__.py:30:57: error: Name "torch.device" is not defined [name-defined] +torch/futures/__init__.py:47:27: error: Module has no attribute "device" [attr-defined] +torch/futures/__init__.py:313:9: error: Module has no attribute "_collect_all" [attr-defined] +torch/futures/__init__.py:313:41: error: Name "torch._C.Future" is not defined [name-defined] +torch/futures/__init__.py:334:20: error: Module has no attribute "_collect_all" [attr-defined] +torch/futures/__init__.py:334:52: error: Name "torch._C.Future" is not defined [name-defined] +torch/distributions/constraints.py:521:16: error: Module has no attribute "all" [attr-defined] +torch/distributions/constraints.py:582:13: error: Module has no attribute "finfo" [attr-defined] +torch/distributions/constraints.py:597:16: error: Module has no attribute "full" [attr-defined] +torch/distributions/constraints.py:600:19: error: Module has no attribute "bool" [attr-defined] +torch/distributions/constraints.py:614:16: error: Module has no attribute "isclose" [attr-defined] +torch/distributions/constraints.py:674:16: error: Module has no attribute "cat" [attr-defined] +torch/distributions/constraints.py:704:16: error: Module has no attribute "stack" [attr-defined] +torch/distributed/remote_device.py:25:50: error: Name "torch.device" is not defined [name-defined] +torch/distributed/remote_device.py:32:48: error: Name "torch.device" is not defined [name-defined] +torch/distributed/remote_device.py:34:38: error: Module has no attribute "device" [attr-defined] +torch/distributed/remote_device.py:59:24: error: Module has no attribute "device" [attr-defined] +torch/distributed/remote_device.py:79:13: error: Module has no attribute "device" [attr-defined] +torch/distributed/remote_device.py:95:25: error: Name "torch.device" is not defined [name-defined] +torch/distributed/rpc/backend_registry.py:167:40: error: Name "torch.device" is not defined [name-defined] +torch/distributed/rpc/backend_registry.py:255:26: error: Name "torch.device" is not defined [name-defined] +torch/distributed/rpc/backend_registry.py:260:29: error: Module has no attribute "device" [attr-defined] +torch/distributed/rpc/backend_registry.py:267:41: error: Name "torch.device" is not defined [name-defined] +torch/distributed/algorithms/join.py:75:30: error: Name "torch.device" is not defined [name-defined] +torch/distributed/algorithms/join.py:284:31: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/algorithms/join.py:293:16: error: Module has no attribute "ones" [attr-defined] +torch/distributed/algorithms/join.py:337:16: error: Module has no attribute "ones" [attr-defined] +torch/distributed/algorithms/join.py:342:21: error: Module has no attribute "zeros" [attr-defined] +torch/cuda/tunable.py:437:13: error: Name "torch.dtype" is not defined [name-defined] +torch/cuda/tunable.py:439:22: error: Name "torch.dtype" is not defined [name-defined] +torch/cuda/tunable.py:462:20: error: Module has no attribute "randn" [attr-defined] +torch/cuda/tunable.py:463:20: error: Module has no attribute "randn" [attr-defined] +torch/cuda/tunable.py:465:20: error: Module has no attribute "full" [attr-defined] +torch/cuda/tunable.py:466:20: error: Module has no attribute "full" [attr-defined] +torch/cuda/tunable.py:474:17: error: Module has no attribute "rand" [attr-defined] +torch/cuda/tunable.py:476:22: error: Module has no attribute "rand" [attr-defined] +torch/cuda/tunable.py:479:17: error: Module has no attribute "rand" [attr-defined] +torch/cuda/tunable.py:481:22: error: Module has no attribute "rand" [attr-defined] +torch/cuda/tunable.py:485:17: error: Module has no attribute "full" [attr-defined] +torch/cuda/tunable.py:487:22: error: Module has no attribute "full" [attr-defined] +torch/cuda/tunable.py:490:17: error: Module has no attribute "full" [attr-defined] +torch/cuda/tunable.py:492:22: error: Module has no attribute "full" [attr-defined] +torch/cuda/tunable.py:507:12: error: Name "torch.dtype" is not defined [name-defined] +torch/cuda/tunable.py:523:16: error: Module has no attribute "randn" [attr-defined] +torch/cuda/tunable.py:524:16: error: Module has no attribute "randn" [attr-defined] +torch/cuda/tunable.py:531:13: error: Module has no attribute "rand" [attr-defined] +torch/cuda/tunable.py:533:18: error: Module has no attribute "rand" [attr-defined] +torch/cuda/tunable.py:536:13: error: Module has no attribute "rand" [attr-defined] +torch/cuda/tunable.py:538:18: error: Module has no attribute "rand" [attr-defined] +torch/cuda/tunable.py:551:18: error: Module has no attribute "float32" [attr-defined] +torch/cuda/tunable.py:552:17: error: Module has no attribute "float32" [attr-defined] +torch/cuda/tunable.py:553:19: error: Module has no attribute "float64" [attr-defined] +torch/cuda/tunable.py:554:21: error: Module has no attribute "bfloat16" [attr-defined] +torch/cuda/tunable.py:555:17: error: Module has no attribute "half" [attr-defined] +torch/cuda/tunable.py:556:33: error: Module has no attribute "complex128" [attr-defined] +torch/cuda/tunable.py:557:32: error: Module has no attribute "complex64" [attr-defined] +torch/cuda/tunable.py:558:26: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/cuda/tunable.py:559:24: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/cuda/tunable.py:560:28: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/cuda/tunable.py:561:28: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/cuda/tunable.py:635:51: error: Module has no attribute "dtype" [attr-defined] +torch/cuda/tunable.py:641:9: error: Module has no attribute "mm" [attr-defined] +torch/cuda/tunable.py:656:51: error: Module has no attribute "dtype" [attr-defined] +torch/cuda/tunable.py:673:9: error: Module has no attribute "bmm" [attr-defined] +torch/cuda/tunable.py:680:53: error: Module has no attribute "dtype" [attr-defined] +torch/cuda/tunable.py:708:22: error: Module has no attribute "ones" [attr-defined] +torch/cuda/tunable.py:711:17: error: Module has no attribute "ones" [attr-defined] +torch/cuda/tunable.py:716:22: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/cuda/tunable.py:717:22: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/cuda/tunable.py:721:13: error: Module has no attribute "_scaled_mm" [attr-defined] +torch/cuda/tunable.py:728:17: error: Module has no attribute "full" [attr-defined] +torch/cuda/tunable.py:732:13: error: Module has no attribute "_scaled_mm" [attr-defined] +torch/cuda/tunable.py:741:51: error: Module has no attribute "dtype" [attr-defined] +torch/cuda/tunable.py:744:16: error: Module has no attribute "rand" [attr-defined] +torch/cuda/nccl.py:46:11: error: Module has no attribute "_nccl_version" [attr-defined] +torch/cuda/nccl.py:50:14: error: Module has no attribute "_nccl_version_suffix" [attr-defined] +torch/cuda/nccl.py:58:12: error: Module has no attribute "_nccl_unique_id" [attr-defined] +torch/cuda/nccl.py:62:12: error: Module has no attribute "_nccl_init_rank" [attr-defined] +torch/cuda/nccl.py:77:5: error: Module has no attribute "_nccl_all_reduce" [attr-defined] +torch/cuda/nccl.py:122:5: error: Module has no attribute "_nccl_reduce" [attr-defined] +torch/cuda/nccl.py:129:5: error: Module has no attribute "_nccl_broadcast" [attr-defined] +torch/cuda/nccl.py:140:5: error: Module has no attribute "_nccl_all_gather" [attr-defined] +torch/cuda/nccl.py:152:5: error: Module has no attribute "_nccl_reduce_scatter" [attr-defined] +torch/cuda/_device_limits.py:2:1: error: Module "torch._C" has no attribute "dtype" [attr-defined] +torch/cuda/_device_limits.py:15:39: error: Name "torch.device" is not defined [name-defined] +torch/cuda/_device_limits.py:23:13: error: _CudaDeviceProperties? has no attribute "major" [attr-defined] +torch/cuda/_device_limits.py:23:13: error: _CudaDeviceProperties? has no attribute "minor" [attr-defined] +torch/cuda/_device_limits.py:47:25: error: Module has no attribute "float16" [attr-defined] +torch/cuda/_device_limits.py:49:27: error: Module has no attribute "float32" [attr-defined] +torch/cuda/_device_limits.py:51:27: error: Module has no attribute "float64" [attr-defined] +torch/cuda/_device_limits.py:85:25: error: Module has no attribute "float16" [attr-defined] +torch/cuda/_device_limits.py:87:27: error: Module has no attribute "bfloat16" [attr-defined] +torch/cuda/_device_limits.py:90:27: error: Module has no attribute "float32" [attr-defined] +torch/cuda/_device_limits.py:92:27: error: Module has no attribute "int8" [attr-defined] +torch/cuda/_device_limits.py:94:27: error: Module has no attribute "float64" [attr-defined] +torch/cuda/_device_limits.py:109:19: error: _CudaDeviceProperties? has no attribute "multi_processor_count" [attr-defined] +torch/cuda/_device_limits.py:110:22: error: _CudaDeviceProperties? has no attribute "clock_rate" [attr-defined] +torch/cuda/_device_limits.py:126:39: error: _CudaDeviceProperties? has no attribute "memory_bus_width" [attr-defined] +torch/cuda/_device_limits.py:127:29: error: _CudaDeviceProperties? has no attribute "memory_clock_rate" [attr-defined] +torch/cuda/_device_limits.py:134:19: error: _CudaDeviceProperties? has no attribute "multi_processor_count" [attr-defined] +torch/cuda/_device_limits.py:138:42: error: _CudaDeviceProperties? has no attribute "clock_rate" [attr-defined] +torch/cuda/amp/autocast_mode.py:35:20: error: Name "torch.dtype" is not defined [name-defined] +torch/cuda/amp/autocast_mode.py:35:34: error: Module has no attribute "float16" [attr-defined] +torch/cuda/amp/autocast_mode.py:46:16: error: Name "torch.dtype" is not defined [name-defined] +torch/cuda/amp/autocast_mode.py:46:30: error: Module has no attribute "float16" [attr-defined] +torch/cpu/amp/autocast_mode.py:34:20: error: Name "torch.dtype" is not defined [name-defined] +torch/cpu/amp/autocast_mode.py:34:34: error: Module has no attribute "bfloat16" [attr-defined] +torch/cpu/amp/autocast_mode.py:45:16: error: Name "torch.dtype" is not defined [name-defined] +torch/cpu/amp/autocast_mode.py:45:30: error: Module has no attribute "bfloat16" [attr-defined] +torch/backends/quantized/__init__.py:34:33: error: Module has no attribute "_get_qengine" [attr-defined] +torch/backends/quantized/__init__.py:37:9: error: Module has no attribute "_set_qengine" [attr-defined] +torch/backends/quantized/__init__.py:42:20: error: Module has no attribute "_supported_qengines" [attr-defined] +torch/backends/openmp/__init__.py:7:12: error: Module has no attribute "has_openmp" [attr-defined] +torch/backends/mkl/__init__.py:7:12: error: Module has no attribute "has_mkl" [attr-defined] +torch/backends/kleidiai/__init__.py:7:12: error: Module has no attribute "_has_kleidiai" [attr-defined] +torch/backends/cusparselt/__init__.py:51:12: error: Module has no attribute "_has_cusparselt" [attr-defined] +torch/backends/cuda/__init__.py:46:12: error: Module has no attribute "_has_cuda" [attr-defined] +torch/backends/cuda/__init__.py:77:9: error: Module has no attribute "_cufft_get_plan_cache_size" [attr-defined] +torch/backends/cuda/__init__.py:83:9: error: Module has no attribute "_cufft_get_plan_cache_max_size" [attr-defined] +torch/backends/cuda/__init__.py:83:47: error: Module has no attribute "_cufft_set_plan_cache_max_size" [attr-defined] +torch/backends/cuda/__init__.py:87:16: error: Module has no attribute "_cufft_clear_plan_cache" [attr-defined] +torch/backends/cuda/__init__.py:156:20: error: Module has no attribute "_get_cublas_allow_tf32" [attr-defined] +torch/backends/cuda/__init__.py:159:17: error: Module has no attribute "_get_cublas_allow_fp16_reduced_precision_reduction" [attr-defined] +torch/backends/cuda/__init__.py:164:17: error: Module has no attribute "_get_cublas_allow_fp16_reduced_precision_reduction" [attr-defined] +torch/backends/cuda/__init__.py:169:17: error: Module has no attribute "_get_cublas_allow_bf16_reduced_precision_reduction" [attr-defined] +torch/backends/cuda/__init__.py:174:17: error: Module has no attribute "_get_cublas_allow_bf16_reduced_precision_reduction" [attr-defined] +torch/backends/cuda/__init__.py:178:20: error: Module has no attribute "_get_cublas_allow_fp16_accumulation" [attr-defined] +torch/backends/cuda/__init__.py:180:20: error: Module has no attribute "_get_fp32_precision_getter" [attr-defined] +torch/backends/cuda/__init__.py:185:20: error: Module has no attribute "_set_cublas_allow_tf32" [attr-defined] +torch/backends/cuda/__init__.py:190:20: error: Module has no attribute "_set_cublas_allow_fp16_reduced_precision_reduction" [attr-defined] +torch/backends/cuda/__init__.py:198:20: error: Module has no attribute "_set_cublas_allow_bf16_reduced_precision_reduction" [attr-defined] +torch/backends/cuda/__init__.py:203:20: error: Module has no attribute "_set_cublas_allow_fp16_accumulation" [attr-defined] +torch/backends/cuda/__init__.py:205:20: error: Module has no attribute "_set_fp32_precision_setter" [attr-defined] +torch/backends/cuda/__init__.py:210:16: error: Module has no attribute "_LinalgBackend" [attr-defined] +torch/backends/cuda/__init__.py:211:17: error: Module has no attribute "_LinalgBackend" [attr-defined] +torch/backends/cuda/__init__.py:212:14: error: Module has no attribute "_LinalgBackend" [attr-defined] +torch/backends/cuda/__init__.py:218:31: error: Name "torch._C._LinalgBackend" is not defined [name-defined] +torch/backends/cuda/__init__.py:219:6: error: Name "torch._C._LinalgBackend" is not defined [name-defined] +torch/backends/cuda/__init__.py:268:9: error: Module has no attribute "_set_linalg_preferred_backend" [attr-defined] +torch/backends/cuda/__init__.py:269:30: error: Module has no attribute "_LinalgBackend" [attr-defined] +torch/backends/cuda/__init__.py:270:9: error: Module has no attribute "_set_linalg_preferred_backend" [attr-defined] +torch/backends/cuda/__init__.py:274:12: error: Module has no attribute "_get_linalg_preferred_backend" [attr-defined] +torch/backends/cuda/__init__.py:278:16: error: Module has no attribute "_BlasBackend" [attr-defined] +torch/backends/cuda/__init__.py:279:15: error: Module has no attribute "_BlasBackend" [attr-defined] +torch/backends/cuda/__init__.py:280:16: error: Module has no attribute "_BlasBackend" [attr-defined] +torch/backends/cuda/__init__.py:281:17: error: Module has no attribute "_BlasBackend" [attr-defined] +torch/backends/cuda/__init__.py:282:18: error: Module has no attribute "_BlasBackend" [attr-defined] +torch/backends/cuda/__init__.py:283:11: error: Module has no attribute "_BlasBackend" [attr-defined] +torch/backends/cuda/__init__.py:289:31: error: Name "torch._C._BlasBackend" is not defined [name-defined] +torch/backends/cuda/__init__.py:290:6: error: Name "torch._C._BlasBackend" is not defined [name-defined] +torch/backends/cuda/__init__.py:323:9: error: Module has no attribute "_set_blas_preferred_backend" [attr-defined] +torch/backends/cuda/__init__.py:324:30: error: Module has no attribute "_BlasBackend" [attr-defined] +torch/backends/cuda/__init__.py:325:9: error: Module has no attribute "_set_blas_preferred_backend" [attr-defined] +torch/backends/cuda/__init__.py:329:12: error: Module has no attribute "_get_blas_preferred_backend" [attr-defined] +torch/backends/cuda/__init__.py:333:16: error: Module has no attribute "_ROCmFABackend" [attr-defined] +torch/backends/cuda/__init__.py:334:17: error: Module has no attribute "_ROCmFABackend" [attr-defined] +torch/backends/cuda/__init__.py:335:11: error: Module has no attribute "_ROCmFABackend" [attr-defined] +torch/backends/cuda/__init__.py:340:1: error: Module "torch._C" has no attribute "_SDPAParams" [attr-defined] +torch/backends/cuda/__init__.py:340:1: error: Module "torch._C" has no attribute "_SDPBackend" [attr-defined] +torch/backends/cuda/__init__.py:344:31: error: Name "torch._C._ROCmFABackend" is not defined [name-defined] +torch/backends/cuda/__init__.py:345:6: error: Name "torch._C._ROCmFABackend" is not defined [name-defined] +torch/backends/cuda/__init__.py:374:9: error: Module has no attribute "_set_rocm_fa_preferred_backend" [attr-defined] +torch/backends/cuda/__init__.py:375:30: error: Module has no attribute "_ROCmFABackend" [attr-defined] +torch/backends/cuda/__init__.py:376:9: error: Module has no attribute "_set_rocm_fa_preferred_backend" [attr-defined] +torch/backends/cuda/__init__.py:380:12: error: Module has no attribute "_get_rocm_fa_preferred_backend" [attr-defined] +torch/backends/cuda/__init__.py:394:12: error: Module has no attribute "_get_flash_sdp_enabled" [attr-defined] +torch/backends/cuda/__init__.py:403:5: error: Module has no attribute "_set_sdp_use_flash" [attr-defined] +torch/backends/cuda/__init__.py:412:12: error: Module has no attribute "_get_mem_efficient_sdp_enabled" [attr-defined] +torch/backends/cuda/__init__.py:421:5: error: Module has no attribute "_set_sdp_use_mem_efficient" [attr-defined] +torch/backends/cuda/__init__.py:430:12: error: Module has no attribute "_get_math_sdp_enabled" [attr-defined] +torch/backends/cuda/__init__.py:439:5: error: Module has no attribute "_set_sdp_use_math" [attr-defined] +torch/backends/cuda/__init__.py:448:5: error: Module has no attribute "_set_math_sdp_allow_fp16_bf16_reduction" [attr-defined] +torch/backends/cuda/__init__.py:457:12: error: Module has no attribute "_get_math_sdp_allow_fp16_bf16_reduction" [attr-defined] +torch/backends/cuda/__init__.py:470:12: error: Module has no attribute "_is_flash_attention_available" [attr-defined] +torch/backends/cuda/__init__.py:490:12: error: Module has no attribute "_can_use_flash_attention" [attr-defined] +torch/backends/cuda/__init__.py:510:12: error: Module has no attribute "_can_use_mem_efficient_attention" [attr-defined] +torch/backends/cuda/__init__.py:530:12: error: Module has no attribute "_can_use_cudnn_attention" [attr-defined] +torch/backends/cuda/__init__.py:539:12: error: Module has no attribute "_get_cudnn_sdp_enabled" [attr-defined] +torch/backends/cuda/__init__.py:548:5: error: Module has no attribute "_set_sdp_use_cudnn" [attr-defined] +torch/backends/cpu/__init__.py:21:12: error: Module has no attribute "_get_cpu_capability" [attr-defined] +torch/backends/__init__.py:70:13: error: Module has no attribute "_set_fp32_precision_setter" [attr-defined] +torch/backends/__init__.py:78:20: error: Module has no attribute "_get_fp32_precision_getter" [attr-defined] +torch/backends/__init__.py:84:19: error: Module has no attribute "_get_fp32_precision_getter" [attr-defined] +torch/backends/__init__.py:86:9: error: Module has no attribute "_set_fp32_precision_setter" [attr-defined] +torch/backends/__init__.py:103:16: error: Module has no attribute "_get_fp32_precision_getter" [attr-defined] +torch/backends/__init__.py:110:16: error: Module has no attribute "_set_fp32_precision_setter" [attr-defined] +torch/autograd/variable.py:3:1: error: Module "torch._C" has no attribute "_ImperativeEngine" [attr-defined] +torch/autograd/variable.py:14:16: error: Name "torch._C._LegacyVariableBase" is not defined [name-defined] +torch/autograd/variable.py:14:16: note: Error code "name-defined" not covered by "type: ignore" comment +torch/autograd/grad_mode.py:81:21: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/autograd/grad_mode.py:136:21: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/autograd/grad_mode.py:137:9: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/autograd/grad_mode.py:140:9: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/autograd/grad_mode.py:185:21: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/autograd/grad_mode.py:187:9: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/autograd/grad_mode.py:190:9: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/autograd/grad_mode.py:194:9: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/autograd/grad_mode.py:197:9: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/autograd/grad_mode.py:290:40: error: Module has no attribute "_InferenceMode" [attr-defined] +torch/autograd/grad_mode.py:304:20: error: Module has no attribute "_InferenceMode" [attr-defined] +torch/autograd/grad_mode.py:332:21: error: Module has no attribute "_is_multithreading_enabled" [attr-defined] +torch/autograd/grad_mode.py:333:9: error: Module has no attribute "_set_multithreading_enabled" [attr-defined] +torch/autograd/grad_mode.py:340:9: error: Module has no attribute "_set_multithreading_enabled" [attr-defined] +torch/autograd/grad_mode.py:372:21: error: Module has no attribute "_is_view_replay_enabled" [attr-defined] +torch/autograd/grad_mode.py:373:9: error: Module has no attribute "_set_view_replay_enabled" [attr-defined] +torch/autograd/grad_mode.py:380:9: error: Module has no attribute "_set_view_replay_enabled" [attr-defined] +torch/autograd/anomaly_mode.py:80:21: error: Module has no attribute "is_anomaly_enabled"; maybe "is_warn_always_enabled"? [attr-defined] +torch/autograd/anomaly_mode.py:82:31: error: Module has no attribute "is_anomaly_check_nan_enabled" [attr-defined] +torch/autograd/anomaly_mode.py:91:9: error: Module has no attribute "set_anomaly_enabled" [attr-defined] +torch/autograd/anomaly_mode.py:94:9: error: Module has no attribute "set_anomaly_enabled" [attr-defined] +torch/autograd/anomaly_mode.py:115:21: error: Module has no attribute "is_anomaly_enabled"; maybe "is_warn_always_enabled"? [attr-defined] +torch/autograd/anomaly_mode.py:116:31: error: Module has no attribute "is_anomaly_check_nan_enabled" [attr-defined] +torch/autograd/anomaly_mode.py:117:9: error: Module has no attribute "set_anomaly_enabled" [attr-defined] +torch/autograd/anomaly_mode.py:123:9: error: Module has no attribute "set_anomaly_enabled" [attr-defined] +torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py:40:21: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:16:28: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:17:26: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:22:30: error: Name "torch.qscheme" is not defined [name-defined] +torch/ao/nn/quantized/reference/modules/utils.py:26:13: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:27:13: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:28:13: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:33:13: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:34:13: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:35:13: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:36:13: error: Module has no attribute "qint32" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:41:22: error: Module has no attribute "int" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:47:22: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:47:50: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:54:22: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:58:17: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:59:17: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:65:26: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:65:53: error: Module has no attribute "int" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:71:36: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:71:58: error: Module has no attribute "int" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:76:33: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:76:57: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:79:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:79:60: error: Module has no attribute "int" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:82:32: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:82:54: error: Module has no attribute "int" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:194:21: error: Name "torch.qscheme" is not defined [name-defined] +torch/ao/nn/quantized/reference/modules/utils.py:195:19: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/nn/quantized/reference/modules/utils.py:202:35: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/nn/quantized/reference/modules/utils.py:203:9: error: Module has no attribute "uint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:204:9: error: Module has no attribute "int8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:205:9: error: Module has no attribute "int32" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:210:9: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:210:23: error: Module has no attribute "uint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:211:9: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:211:22: error: Module has no attribute "int8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:212:9: error: Module has no attribute "qint32" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:212:23: error: Module has no attribute "int32" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:214:26: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:215:29: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:215:43: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:215:56: error: Module has no attribute "qint32" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:231:9: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:232:9: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:235:29: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:235:43: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:235:56: error: Module has no attribute "qint32" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:256:21: error: Name "torch.qscheme" is not defined [name-defined] +torch/ao/nn/quantized/reference/modules/utils.py:257:19: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/nn/quantized/reference/modules/utils.py:265:35: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/nn/quantized/reference/modules/utils.py:266:9: error: Module has no attribute "uint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:267:9: error: Module has no attribute "int8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:268:9: error: Module has no attribute "int32" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:272:9: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:272:23: error: Module has no attribute "uint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:273:9: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:273:22: error: Module has no attribute "int8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:274:9: error: Module has no attribute "qint32" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:274:23: error: Module has no attribute "int32" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:279:26: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:280:29: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:280:43: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:280:56: error: Module has no attribute "qint32" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:291:9: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:292:9: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:295:29: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:295:43: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:295:56: error: Module has no attribute "qint32" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:311:21: error: Name "torch.qscheme" is not defined [name-defined] +torch/ao/nn/quantized/reference/modules/utils.py:312:19: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/nn/quantized/reference/modules/utils.py:317:24: error: Module has no attribute "float16" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:321:26: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:322:29: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:322:43: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:322:56: error: Module has no attribute "qint32" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:323:22: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:328:9: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:329:9: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:331:29: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:331:43: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:331:56: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:331:72: error: Module has no attribute "qint32" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:332:22: error: Module has no attribute "quantize_per_channel" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:341:21: error: Name "torch.qscheme" is not defined [name-defined] +torch/ao/nn/quantized/reference/modules/utils.py:342:19: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/nn/quantized/reference/modules/utils.py:353:9: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:354:9: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:355:9: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:384:21: error: Name "torch.qscheme" is not defined [name-defined] +torch/ao/nn/quantized/reference/modules/utils.py:385:19: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/nn/quantized/reference/modules/utils.py:394:9: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:395:9: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:396:9: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:426:30: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/utils.py:436:30: error: Module has no attribute "quantize_per_channel" [attr-defined] +torch/ao/nn/quantized/modules/normalization.py:46:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/normalization.py:48:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/normalization.py:120:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/normalization.py:122:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/normalization.py:184:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/normalization.py:186:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/normalization.py:253:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/normalization.py:255:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/normalization.py:322:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/normalization.py:324:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/batchnorm.py:16:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/batchnorm.py:18:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/activation.py:71:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/activation.py:73:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/activation.py:144:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/activation.py:146:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/activation.py:266:22: error: Module has no attribute "_choose_qparams_per_tensor" [attr-defined] +torch/ao/nn/quantized/modules/activation.py:267:22: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/nn/quantized/modules/activation.py:267:64: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/modules/activation.py:272:22: error: Module has no attribute "_choose_qparams_per_tensor" [attr-defined] +torch/ao/nn/quantized/modules/activation.py:276:22: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/nn/quantized/modules/activation.py:276:64: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/modules/activation.py:301:13: error: Module has no attribute "randn" [attr-defined] +torch/ao/nn/quantized/modules/activation.py:301:47: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/modules/activation.py:302:14: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/nn/quantized/modules/activation.py:302:74: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/modules/activation.py:323:30: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/modules/activation.py:329:19: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/nn/quantized/modules/activation.py:330:52: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/modules/activation.py:341:30: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/modules/activation.py:347:19: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/nn/quantized/modules/activation.py:348:52: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/qat/dynamic/modules/linear.py:32:29: error: Name "torch.device" is not defined [name-defined] +torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py:41:16: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py:41:30: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py:46:41: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py:51:43: error: Module has no attribute "float16" [attr-defined] +torch/amp/grad_scaler.py:28:40: error: Name "torch.device" is not defined [name-defined] +torch/amp/grad_scaler.py:30:27: error: Name "torch.device" is not defined [name-defined] +torch/amp/grad_scaler.py:171:52: error: Name "torch.device" is not defined [name-defined] +torch/amp/grad_scaler.py:173:23: error: Module has no attribute "full" [attr-defined] +torch/amp/grad_scaler.py:173:62: error: Module has no attribute "float32" [attr-defined] +torch/amp/grad_scaler.py:174:32: error: Module has no attribute "full" [attr-defined] +torch/amp/grad_scaler.py:175:50: error: Module has no attribute "int32" [attr-defined] +torch/amp/grad_scaler.py:241:15: error: Name "torch.device" is not defined [name-defined] +torch/amp/grad_scaler.py:251:13: error: Name "torch.device" is not defined [name-defined] +torch/amp/grad_scaler.py:251:32: error: Name "torch.dtype" is not defined [name-defined] +torch/amp/grad_scaler.py:260:65: error: Module has no attribute "float16" [attr-defined] +torch/amp/grad_scaler.py:267:48: error: Module has no attribute "float16" [attr-defined] +torch/amp/grad_scaler.py:280:21: error: Module has no attribute "_amp_foreach_non_finite_check_and_unscale_" [attr-defined] +torch/amp/grad_scaler.py:338:38: error: Module has no attribute "device" [attr-defined] +torch/amp/grad_scaler.py:341:21: error: Module has no attribute "full" [attr-defined] +torch/amp/grad_scaler.py:341:47: error: Module has no attribute "float32" [attr-defined] +torch/amp/grad_scaler.py:529:13: error: Module has no attribute "_amp_update_scale_" [attr-defined] +torch/amp/grad_scaler.py:683:27: error: Module has no attribute "full" [attr-defined] +torch/amp/grad_scaler.py:683:53: error: Module has no attribute "float32" [attr-defined] +torch/amp/grad_scaler.py:684:21: error: Module has no attribute "full" [attr-defined] +torch/amp/grad_scaler.py:684:47: error: Module has no attribute "float32" [attr-defined] +torch/_dispatch/python.py:14:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_dispatch/python.py:19:24: error: Module has no attribute "_DisablePythonDispatcher" [attr-defined] +torch/_dispatch/python.py:20:28: error: Module has no attribute "_EnablePythonDispatcher" [attr-defined] +torch/_dispatch/python.py:21:23: error: Module has no attribute "_EnablePreDispatch" [attr-defined] +torch/_dispatch/python.py:57:13: error: Module has no attribute "_dispatch_tls_is_dispatch_key_included" [attr-defined] +torch/_dispatch/python.py:58:9: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_dispatch/python.py:60:12: error: Module has no attribute "_functionalization_reapply_views_tls" [attr-defined] +torch/_dispatch/python.py:62:9: error: Module has no attribute "_disable_functionalization" [attr-defined] +torch/_dispatch/python.py:67:13: error: Module has no attribute "_enable_functionalization" [attr-defined] +torch/_dispatch/python.py:126:20: error: Module has no attribute "_is_functional_tensor" [attr-defined] +torch/_dispatch/python.py:127:25: error: Module has no attribute "_from_functional_tensor" [attr-defined] +torch/_dispatch/python.py:183:30: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_dispatch/python.py:192:34: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_awaits/__init__.py:14:14: error: Name "torch._C._Await" is not defined [name-defined] +torch/_weights_only_unpickler.py:180:23: error: Module has no attribute "Size" [attr-defined] +torch/_weights_only_unpickler.py:182:25: error: Module has no attribute "device" [attr-defined] +torch/_weights_only_unpickler.py:213:9: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/_weights_only_unpickler.py:214:9: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/_weights_only_unpickler.py:215:9: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/_weights_only_unpickler.py:216:9: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/_weights_only_unpickler.py:217:9: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/_tensor.py:34:44: error: Name "_C.TensorBase" is not defined [name-defined] +torch/_tensor.py:85:9: error: Module has no attribute "complex64" [attr-defined] +torch/_tensor.py:86:9: error: Module has no attribute "complex128" [attr-defined] +torch/_tensor.py:87:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/_tensor.py:88:9: error: Module has no attribute "float16" [attr-defined] +torch/_tensor.py:89:9: error: Module has no attribute "float32" [attr-defined] +torch/_tensor.py:90:9: error: Module has no attribute "float64" [attr-defined] +torch/_tensor.py:91:9: error: Module has no attribute "uint8" [attr-defined] +torch/_tensor.py:92:9: error: Module has no attribute "int8" [attr-defined] +torch/_tensor.py:93:9: error: Module has no attribute "uint16" [attr-defined] +torch/_tensor.py:94:9: error: Module has no attribute "int16" [attr-defined] +torch/_tensor.py:95:9: error: Module has no attribute "uint32" [attr-defined] +torch/_tensor.py:96:9: error: Module has no attribute "int32" [attr-defined] +torch/_tensor.py:97:9: error: Module has no attribute "uint64" [attr-defined] +torch/_tensor.py:98:9: error: Module has no attribute "int64" [attr-defined] +torch/_tensor.py:99:9: error: Module has no attribute "bool" [attr-defined] +torch/_tensor.py:110:14: error: Name "torch._C.TensorBase" is not defined [name-defined] +torch/_tensor.py:164:25: error: Module has no attribute "_has_storage" [attr-defined] +torch/_tensor.py:165:45: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/_tensor.py:183:31: error: Name "torch.qscheme" is not defined [name-defined] +torch/_tensor.py:187:42: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/_tensor.py:194:25: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/_tensor.py:195:25: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/_tensor.py:336:17: error: Module has no attribute "_has_storage" [attr-defined] +torch/_tensor.py:337:37: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/_tensor.py:369:23: error: Name "torch.qscheme" is not defined [name-defined] +torch/_tensor.py:372:34: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/_tensor.py:374:21: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/_tensor.py:379:17: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/_tensor.py:380:17: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/_tensor.py:386:21: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/_tensor.py:412:31: error: Module has no attribute "sparse_coo" [attr-defined] +torch/_tensor.py:423:13: error: Module has no attribute "sparse_csr" [attr-defined] +torch/_tensor.py:424:13: error: Module has no attribute "sparse_csc" [attr-defined] +torch/_tensor.py:425:13: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_tensor.py:426:13: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/_tensor.py:428:32: error: Module has no attribute "sparse_csr" [attr-defined] +torch/_tensor.py:428:50: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_tensor.py:804:14: error: Module has no attribute "_add_docstr" [attr-defined] +torch/_tensor.py:805:9: error: Module has no attribute "TensorBase" [attr-defined] +torch/_tensor.py:822:15: error: Module has no attribute "_add_docstr" [attr-defined] +torch/_tensor.py:823:9: error: Module has no attribute "TensorBase" [attr-defined] +torch/_tensor.py:936:29: error: Module has no attribute "_lu_with_info" [attr-defined] +torch/_tensor.py:1065:20: error: Module has no attribute "split_with_sizes" [attr-defined] +torch/_tensor.py:1122:20: error: Module has no attribute "TensorBase" [attr-defined] +torch/_tensor.py:1127:2: error: Name "torch._C.TensorBase" is not defined [name-defined] +torch/_tensor.py:1131:13: error: Module has no attribute "TensorBase" [attr-defined] +torch/_tensor.py:1136:9: error: Module has no attribute "TensorBase" [attr-defined] +torch/_tensor.py:1141:16: error: Module has no attribute "remainder" [attr-defined] +torch/_tensor.py:1154:16: error: Module has no attribute "pow" [attr-defined] +torch/_tensor.py:1160:16: error: Module has no attribute "floor_divide" [attr-defined] +torch/_tensor.py:1164:16: error: Module has no attribute "floor_divide" [attr-defined] +torch/_tensor.py:1170:16: error: Module has no attribute "bitwise_left_shift" [attr-defined] +torch/_tensor.py:1176:16: error: Module has no attribute "bitwise_right_shift" [attr-defined] +torch/_tensor.py:1180:16: error: Module has no attribute "matmul" [attr-defined] +torch/_tensor.py:1182:15: error: Module has no attribute "TensorBase" [attr-defined] +torch/_tensor.py:1183:15: error: Module has no attribute "TensorBase" [attr-defined] +torch/_tensor.py:1184:15: error: Module has no attribute "TensorBase" [attr-defined] +torch/_tensor.py:1191:12: error: Module has no attribute "_get_tracing_state" [attr-defined] +torch/_tensor.py:1213:12: error: Module has no attribute "_get_tracing_state" [attr-defined] +torch/_tensor.py:1266:16: error: Module has no attribute "from_numpy" [attr-defined] +torch/_tensor.py:1281:25: error: "bool" has no attribute "any" [attr-defined] +torch/_tensor.py:1281:25: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_tensor.py:1532:52: error: Name "torch.memory_format" is not defined [name-defined] +torch/_tensor.py:1597:50: error: Module has no attribute "memory_format" [attr-defined] +torch/_tensor.py:1703:14: error: Module has no attribute "DisableTorchFunctionSubclass" [attr-defined] +torch/_tensor.py:1710:26: error: Module has no attribute "_disabled_torch_dispatch_impl" [attr-defined] +torch/_tensor.py:1770:27: error: Module has no attribute "strided" [attr-defined] +torch/_tensor.py:1835:20: error: Module has no attribute "_to_dlpack" [attr-defined] +torch/_tensor.py:1837:16: error: Module has no attribute "_to_dlpack_versioned" [attr-defined] +torch/xpu/streams.py:14:14: error: Name "torch._C._XpuStreamBase" is not defined [name-defined] +torch/xpu/streams.py:103:13: error: Name "torch._C._XpuEventBase" is not defined [name-defined] +torch/xpu/_utils.py:29:18: error: Module has no attribute "device" [attr-defined] +torch/xpu/_utils.py:30:27: error: Module has no attribute "device" [attr-defined] +torch/utils/backend_registration.py:4:1: error: Module "torch._C" has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/utils/backend_registration.py:4:1: error: Module "torch._C" has no attribute "_rename_privateuse1_backend" [attr-defined] +torch/utils/backend_registration.py:92:51: error: Name "torch.device" is not defined [name-defined] +torch/utils/backend_registration.py:109:18: error: Module has no attribute "device" [attr-defined] +torch/utils/backend_registration.py:112:27: error: Module has no attribute "device" [attr-defined] +torch/utils/backend_registration.py:139:23: error: Name "torch.device" is not defined [name-defined] +torch/utils/backend_registration.py:168:20: error: Module has no attribute "device" [attr-defined] +torch/utils/backend_registration.py:190:23: error: Name "torch.device" is not defined [name-defined] +torch/utils/backend_registration.py:253:14: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/utils/backend_registration.py:270:55: error: Name "torch.dtype" is not defined [name-defined] +torch/utils/backend_registration.py:311:33: error: Module has no attribute "device" [attr-defined] +torch/utils/backend_registration.py:357:29: error: Name "torch.dtype" is not defined [name-defined] +torch/utils/backend_registration.py:469:29: error: Name "torch._C._acc.PrivateUse1Hooks" is not defined [name-defined] +torch/utils/backend_registration.py:480:25: error: Name "torch._C._acc.DeviceGuard" is not defined [name-defined] +torch/utils/backend_registration.py:520:5: error: Module has no attribute "register_python_privateuseone_hook" [attr-defined] +torch/utils/backend_registration.py:521:5: error: Module has no attribute "register_python_privateuseone_device_guard" [attr-defined] +torch/utils/_python_dispatch.py:15:1: error: Module "torch._C" has no attribute "_get_dispatch_stack_at" [attr-defined] +torch/utils/_python_dispatch.py:15:1: error: Module "torch._C" has no attribute "_len_torch_dispatch_stack" [attr-defined] +torch/utils/_python_dispatch.py:15:1: error: Module "torch._C" has no attribute "_pop_torch_dispatch_stack" [attr-defined] +torch/utils/_python_dispatch.py:15:1: error: Module "torch._C" has no attribute "_push_on_torch_dispatch_stack" [attr-defined] +torch/utils/_python_dispatch.py:15:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/utils/_python_dispatch.py:92:46: error: Module has no attribute "DispatchKey" [attr-defined] +torch/utils/_python_dispatch.py:230:9: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/utils/_python_dispatch.py:231:9: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/utils/_python_dispatch.py:234:47: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/utils/_python_dispatch.py:235:28: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/utils/_python_dispatch.py:241:26: error: Module has no attribute "_get_dispatch_mode" [attr-defined] +torch/utils/_python_dispatch.py:258:26: error: Module has no attribute "_get_dispatch_mode" [attr-defined] +torch/utils/_python_dispatch.py:268:16: error: Module has no attribute "_unset_dispatch_mode" [attr-defined] +torch/utils/_python_dispatch.py:273:9: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/utils/_python_dispatch.py:274:9: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/utils/_python_dispatch.py:299:31: error: Module has no attribute "DispatchKey" [attr-defined] +torch/utils/_python_dispatch.py:311:10: error: Module has no attribute "_functionality_to_backend_keys" [attr-defined] +torch/utils/_python_dispatch.py:318:32: error: Name "torch._C._TorchDispatchModeKey" is not defined [name-defined] +torch/utils/_python_dispatch.py:324:35: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/utils/_python_dispatch.py:414:12: error: Name "torch._C.Size" is not defined [name-defined] +torch/utils/_python_dispatch.py:439:24: error: Name "torch.memory_format" is not defined [name-defined] +torch/utils/_python_dispatch.py:450:24: error: Name "torch.memory_format" is not defined [name-defined] +torch/utils/_python_dispatch.py:460:24: error: Name "torch.memory_format" is not defined [name-defined] +torch/utils/_python_dispatch.py:610:17: error: Module has no attribute "_functionalize_unsafe_set" [attr-defined] +torch/utils/_python_dispatch.py:614:13: error: Module has no attribute "_functionalize_unsafe_set" [attr-defined] +torch/utils/_python_dispatch.py:753:28: error: Module has no attribute "Tag" [attr-defined] +torch/utils/_python_dispatch.py:797:27: error: Module has no attribute "_parse_dispatch_key" [attr-defined] +torch/utils/_python_dispatch.py:798:17: error: Module has no attribute "_dispatch_key_for_device" [attr-defined] +torch/utils/_python_dispatch.py:804:40: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/utils/_python_dispatch.py:885:31: error: Module has no attribute "_meta_in_tls_dispatch_include" [attr-defined] +torch/utils/_python_dispatch.py:886:17: error: Module has no attribute "_set_meta_in_tls_dispatch_include" [attr-defined] +torch/utils/_python_dispatch.py:890:21: error: Module has no attribute "_set_meta_in_tls_dispatch_include" [attr-defined] +torch/testing/__init__.py:1:1: error: Module "torch._C" has no attribute "FileCheck" [attr-defined] +torch/sparse/semi_structured.py:58:36: error: Name "torch.dtype" is not defined [name-defined] +torch/sparse/semi_structured.py:79:16: error: Name "torch.Size" is not defined [name-defined] +torch/sparse/semi_structured.py:167:33: error: Name "torch.Size" is not defined [name-defined] +torch/sparse/semi_structured.py:183:28: error: Name "torch.Size" is not defined [name-defined] +torch/sparse/semi_structured.py:203:26: error: Module has no attribute "_disabled_torch_function_impl" [attr-defined] +torch/sparse/semi_structured.py:203:26: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/sparse/semi_structured.py:299:57: error: Argument 2 to "pad" has incompatible type "tuple[int, Any | int, int, Any | int]"; expected "list[int]" [arg-type] +torch/sparse/semi_structured.py:305:16: error: Module has no attribute "mm" [attr-defined] +torch/sparse/semi_structured.py:305:31: error: Module has no attribute "eye" [attr-defined] +torch/sparse/semi_structured.py:403:9: error: Module has no attribute "int8" [attr-defined] +torch/sparse/semi_structured.py:404:9: error: Module has no attribute "float16" [attr-defined] +torch/sparse/semi_structured.py:405:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/sparse/semi_structured.py:406:9: error: Module has no attribute "float32" [attr-defined] +torch/sparse/semi_structured.py:501:13: error: Module has no attribute "_sparse_semi_structured_tile" [attr-defined] +torch/sparse/semi_structured.py:534:23: error: Module has no attribute "_sparse_semi_structured_mm" [attr-defined] +torch/sparse/semi_structured.py:536:23: error: Module has no attribute "_sparse_semi_structured_addmm" [attr-defined] +torch/sparse/semi_structured.py:556:9: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/sparse/semi_structured.py:557:9: error: Module has no attribute "int8" [attr-defined] +torch/sparse/semi_structured.py:558:9: error: Module has no attribute "float16" [attr-defined] +torch/sparse/semi_structured.py:559:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/sparse/semi_structured.py:570:20: error: Module has no attribute "_cslt_compress" [attr-defined] +torch/sparse/semi_structured.py:625:13: error: Module has no attribute "_sparse_semi_structured_tile" [attr-defined] +torch/sparse/semi_structured.py:669:26: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/sparse/semi_structured.py:680:19: error: Module has no attribute "_cslt_sparse_mm" [attr-defined] +torch/profiler/_memory_profiler.py:11:1: error: Module "torch._C" has no attribute "FunctionSchema" [attr-defined] +torch/profiler/_memory_profiler.py:67:13: error: Name "torch.device" is not defined [name-defined] +torch/profiler/_memory_profiler.py:116:17: error: Name "torch.device" is not defined [name-defined] +torch/profiler/_memory_profiler.py:266:36: error: Module has no attribute "OptionalType" [attr-defined] +torch/profiler/_memory_profiler.py:270:36: error: Module has no attribute "AnyType" [attr-defined] +torch/profiler/_memory_profiler.py:273:36: error: Module has no attribute "ListType" [attr-defined] +torch/profiler/_memory_profiler.py:279:14: error: Module has no attribute "TensorType" [attr-defined] +torch/profiler/_memory_profiler.py:280:14: error: Module has no attribute "NoneType" [attr-defined] +torch/profiler/_memory_profiler.py:281:14: error: Module has no attribute "BoolType" [attr-defined] +torch/profiler/_memory_profiler.py:282:14: error: Module has no attribute "IntType" [attr-defined] +torch/profiler/_memory_profiler.py:283:14: error: Module has no attribute "FloatType" [attr-defined] +torch/profiler/_memory_profiler.py:284:14: error: Module has no attribute "ComplexType" [attr-defined] +torch/profiler/_memory_profiler.py:285:14: error: Module has no attribute "NumberType" [attr-defined] +torch/profiler/_memory_profiler.py:315:26: error: Module has no attribute "_jit_get_schemas_for_operator" [attr-defined] +torch/profiler/_memory_profiler.py:380:62: error: Module has no attribute "strided" [attr-defined] +torch/profiler/_memory_profiler.py:678:39: error: Name "torch.device" is not defined [name-defined] +torch/profiler/_memory_profiler.py:1006:18: error: Module has no attribute "device" [attr-defined] +torch/profiler/_memory_profiler.py:1074:18: error: Module has no attribute "device" [attr-defined] +torch/profiler/_memory_profiler.py:1167:18: error: Module has no attribute "device" [attr-defined] +torch/nn/parallel/comm.py:44:16: error: Module has no attribute "_broadcast" [attr-defined] +torch/nn/parallel/comm.py:47:16: error: Module has no attribute "_broadcast_out" [attr-defined] +torch/nn/parallel/comm.py:67:12: error: Module has no attribute "_broadcast_coalesced" [attr-defined] +torch/nn/parallel/comm.py:107:18: error: Module has no attribute "empty_like" [attr-defined] +torch/nn/parallel/comm.py:110:30: error: Module has no attribute "device" [attr-defined] +torch/nn/parallel/comm.py:206:22: error: Module has no attribute "_scatter" [attr-defined] +torch/nn/parallel/comm.py:216:22: error: Module has no attribute "_scatter_out" [attr-defined] +torch/nn/parallel/comm.py:255:16: error: Module has no attribute "_gather" [attr-defined] +torch/nn/parallel/comm.py:261:16: error: Module has no attribute "_gather_out" [attr-defined] +torch/nn/attention/__init__.py:10:1: error: Module "torch._C" has no attribute "_SDPBackend" [attr-defined] +torch/nn/attention/__init__.py:91:25: error: Module has no attribute "_get_sdp_priority_order" [attr-defined] +torch/nn/attention/__init__.py:105:29: error: Module has no attribute "_get_sdp_priority_order" [attr-defined] +torch/nn/attention/__init__.py:109:9: error: Module has no attribute "_set_sdp_priority_order" [attr-defined] +torch/multiprocessing/__init__.py:37:1: error: Module has no attribute "_multiprocessing_init" [attr-defined] +torch/multiprocessing/__init__.py:89:5: error: Module has no attribute "_set_thread_name" [attr-defined] +torch/multiprocessing/__init__.py:98:12: error: Module has no attribute "_get_thread_name" [attr-defined] +torch/mtia/_utils.py:28:18: error: Module has no attribute "device" [attr-defined] +torch/mtia/_utils.py:29:27: error: Module has no attribute "device" [attr-defined] +torch/masked/maskedtensor/core.py:47:32: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/maskedtensor/core.py:51:34: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/maskedtensor/core.py:58:41: error: Module has no attribute "eq" [attr-defined] +torch/masked/maskedtensor/core.py:59:37: error: Module has no attribute "allclose" [attr-defined] +torch/masked/maskedtensor/core.py:108:24: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/maskedtensor/core.py:108:42: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/maskedtensor/core.py:185:27: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/maskedtensor/core.py:189:54: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/maskedtensor/core.py:190:29: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/maskedtensor/core.py:192:54: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/maskedtensor/core.py:205:32: error: Module has no attribute "strided" [attr-defined] +torch/masked/maskedtensor/core.py:205:47: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/maskedtensor/core.py:205:65: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/maskedtensor/core.py:207:27: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/maskedtensor/core.py:212:29: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/maskedtensor/core.py:219:26: error: Module has no attribute "bool" [attr-defined] +torch/masked/maskedtensor/core.py:222:27: error: Module has no attribute "float16" [attr-defined] +torch/masked/maskedtensor/core.py:223:30: error: Module has no attribute "float32" [attr-defined] +torch/masked/maskedtensor/core.py:224:30: error: Module has no attribute "float64" [attr-defined] +torch/masked/maskedtensor/core.py:225:30: error: Module has no attribute "bool" [attr-defined] +torch/masked/maskedtensor/core.py:226:30: error: Module has no attribute "int8" [attr-defined] +torch/masked/maskedtensor/core.py:227:30: error: Module has no attribute "int16" [attr-defined] +torch/masked/maskedtensor/core.py:228:30: error: Module has no attribute "int32" [attr-defined] +torch/masked/maskedtensor/core.py:229:30: error: Module has no attribute "int64" [attr-defined] +torch/masked/maskedtensor/core.py:298:14: error: Module has no attribute "DisableTorchFunctionSubclass" [attr-defined] +torch/masked/maskedtensor/core.py:356:31: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/maskedtensor/core.py:359:31: error: Module has no attribute "sparse_csr" [attr-defined] +torch/distributed/autograd/__init__.py:16:27: error: Module has no attribute "_dist_autograd_init" [attr-defined] +torch/cuda/streams.py:14:14: error: Name "torch._C._CudaStreamBase" is not defined [name-defined] +torch/cuda/streams.py:156:13: error: Name "torch._C._CudaEventBase" is not defined [name-defined] +torch/cuda/_utils.py:176:34: error: _CudaDeviceProperties? has no attribute "gcnArchName" [attr-defined] +torch/cuda/_utils.py:178:34: error: _CudaDeviceProperties? has no attribute "major" [attr-defined] +torch/cuda/_utils.py:178:34: error: _CudaDeviceProperties? has no attribute "minor" [attr-defined] +torch/cuda/_utils.py:424:26: error: _CudaDeviceProperties? has no attribute "gcnArchName" [attr-defined] +torch/cuda/_utils.py:519:18: error: Module has no attribute "device" [attr-defined] +torch/cuda/_utils.py:520:27: error: Module has no attribute "device" [attr-defined] +torch/backends/nnpack/__init__.py:13:12: error: Module has no attribute "_nnpack_available" [attr-defined] +torch/backends/nnpack/__init__.py:18:19: error: Module has no attribute "_get_nnpack_enabled" [attr-defined] +torch/backends/nnpack/__init__.py:19:5: error: Module has no attribute "_set_nnpack_enabled" [attr-defined] +torch/backends/mkldnn/__init__.py:19:12: error: Module has no attribute "_has_mkldnn" [attr-defined] +torch/backends/mkldnn/__init__.py:25:12: error: Module has no attribute "_has_mkldnn_acl" [attr-defined] +torch/backends/mkldnn/__init__.py:85:9: error: Module has no attribute "_get_mkldnn_enabled" [attr-defined] +torch/backends/mkldnn/__init__.py:86:9: error: Module has no attribute "_get_mkldnn_deterministic" [attr-defined] +torch/backends/mkldnn/__init__.py:87:9: error: Module has no attribute "_get_onednn_allow_tf32" [attr-defined] +torch/backends/mkldnn/__init__.py:88:9: error: Module has no attribute "_get_fp32_precision_getter" [attr-defined] +torch/backends/mkldnn/__init__.py:91:9: error: Module has no attribute "_set_mkldnn_enabled" [attr-defined] +torch/backends/mkldnn/__init__.py:93:9: error: Module has no attribute "_set_mkldnn_deterministic" [attr-defined] +torch/backends/mkldnn/__init__.py:95:9: error: Module has no attribute "_set_onednn_allow_tf32" [attr-defined] +torch/backends/mkldnn/__init__.py:97:9: error: Module has no attribute "_set_fp32_precision_setter" [attr-defined] +torch/backends/mkldnn/__init__.py:119:27: error: Module has no attribute "_get_mkldnn_enabled" [attr-defined] +torch/backends/mkldnn/__init__.py:119:57: error: Module has no attribute "_set_mkldnn_enabled" [attr-defined] +torch/backends/mkldnn/__init__.py:121:9: error: Module has no attribute "_get_mkldnn_deterministic" [attr-defined] +torch/backends/mkldnn/__init__.py:121:45: error: Module has no attribute "_set_mkldnn_deterministic" [attr-defined] +torch/backends/mkldnn/__init__.py:124:9: error: Module has no attribute "_get_onednn_allow_tf32" [attr-defined] +torch/backends/mkldnn/__init__.py:124:42: error: Module has no attribute "_set_onednn_allow_tf32" [attr-defined] +torch/backends/miopen/__init__.py:12:19: error: Module has no attribute "_get_miopen_immediate" [attr-defined] +torch/backends/miopen/__init__.py:14:9: error: Module has no attribute "_set_miopen_immediate" [attr-defined] +torch/backends/miopen/__init__.py:44:9: error: Module has no attribute "_get_miopen_immediate" [attr-defined] +torch/backends/miopen/__init__.py:44:41: error: Module has no attribute "_set_miopen_immediate" [attr-defined] +torch/backends/cudnn/__init__.py:102:5: error: Module has no attribute "half" [attr-defined] +torch/backends/cudnn/__init__.py:103:5: error: Module has no attribute "float" [attr-defined] +torch/backends/cudnn/__init__.py:104:5: error: Module has no attribute "double" [attr-defined] +torch/backends/cudnn/__init__.py:110:12: error: Module has no attribute "_has_cudnn" [attr-defined] +torch/backends/cudnn/__init__.py:114:12: error: Module has no attribute "_get_cudnn_enabled" [attr-defined] +torch/backends/cudnn/__init__.py:147:9: error: Module has no attribute "_get_cudnn_enabled" [attr-defined] +torch/backends/cudnn/__init__.py:148:9: error: Module has no attribute "_get_cudnn_benchmark" [attr-defined] +torch/backends/cudnn/__init__.py:149:41: error: Module has no attribute "_cuda_get_cudnn_benchmark_limit" [attr-defined] +torch/backends/cudnn/__init__.py:150:9: error: Module has no attribute "_get_cudnn_deterministic" [attr-defined] +torch/backends/cudnn/__init__.py:151:9: error: Module has no attribute "_get_cudnn_allow_tf32" [attr-defined] +torch/backends/cudnn/__init__.py:152:9: error: Module has no attribute "_get_fp32_precision_getter" [attr-defined] +torch/backends/cudnn/__init__.py:155:9: error: Module has no attribute "_set_cudnn_enabled" [attr-defined] +torch/backends/cudnn/__init__.py:157:9: error: Module has no attribute "_set_cudnn_benchmark" [attr-defined] +torch/backends/cudnn/__init__.py:159:9: error: Module has no attribute "_cuda_set_cudnn_benchmark_limit" [attr-defined] +torch/backends/cudnn/__init__.py:161:9: error: Module has no attribute "_set_cudnn_deterministic" [attr-defined] +torch/backends/cudnn/__init__.py:163:9: error: Module has no attribute "_set_cudnn_allow_tf32" [attr-defined] +torch/backends/cudnn/__init__.py:165:9: error: Module has no attribute "_set_fp32_precision_setter" [attr-defined] +torch/backends/cudnn/__init__.py:204:27: error: Module has no attribute "_get_cudnn_enabled" [attr-defined] +torch/backends/cudnn/__init__.py:204:56: error: Module has no attribute "_set_cudnn_enabled" [attr-defined] +torch/backends/cudnn/__init__.py:206:9: error: Module has no attribute "_get_cudnn_deterministic" [attr-defined] +torch/backends/cudnn/__init__.py:206:44: error: Module has no attribute "_set_cudnn_deterministic" [attr-defined] +torch/backends/cudnn/__init__.py:209:9: error: Module has no attribute "_get_cudnn_benchmark" [attr-defined] +torch/backends/cudnn/__init__.py:209:40: error: Module has no attribute "_set_cudnn_benchmark" [attr-defined] +torch/backends/cudnn/__init__.py:214:13: error: Module has no attribute "_cuda_get_cudnn_benchmark_limit" [attr-defined] +torch/backends/cudnn/__init__.py:215:13: error: Module has no attribute "_cuda_set_cudnn_benchmark_limit" [attr-defined] +torch/backends/cudnn/__init__.py:218:9: error: Module has no attribute "_get_cudnn_allow_tf32" [attr-defined] +torch/backends/cudnn/__init__.py:218:41: error: Module has no attribute "_set_cudnn_allow_tf32" [attr-defined] +torch/autograd/forward_ad.py:33:17: error: Module has no attribute "_enter_dual_level" [attr-defined] +torch/autograd/forward_ad.py:60:5: error: Module has no attribute "_exit_dual_level" [attr-defined] +torch/autograd/forward_ad.py:128:12: error: Module has no attribute "_make_dual" [attr-defined] +torch/autograd/forward_ad.py:168:20: error: Module has no attribute "_unpack_dual" [attr-defined] +torch/autograd/forward_ad.py:215:24: error: Module has no attribute "_is_fwd_grad_enabled" [attr-defined] +torch/autograd/forward_ad.py:223:9: error: Module has no attribute "_set_fwd_grad_enabled" [attr-defined] +torch/autograd/forward_ad.py:229:9: error: Module has no attribute "_set_fwd_grad_enabled" [attr-defined] +torch/ao/nn/quantized/reference/modules/linear.py:29:17: error: Name "torch.device" is not defined [name-defined] +torch/ao/nn/quantized/reference/modules/linear.py:30:16: error: Name "torch.dtype" is not defined [name-defined] +torch/utils/data/_utils/worker.py:257:9: error: Module has no attribute "set_num_threads" [attr-defined] +torch/utils/data/_utils/worker.py:270:22: error: Module has no attribute "Generator" [attr-defined] +torch/utils/data/_utils/signal_handling.py:39:1: error: Module "torch._C" has no attribute "_error_if_any_worker_fails" [attr-defined] +torch/utils/data/_utils/signal_handling.py:39:1: error: Module "torch._C" has no attribute "_remove_worker_pids" [attr-defined] +torch/utils/data/_utils/signal_handling.py:39:1: error: Module "torch._C" has no attribute "_set_worker_pids" [attr-defined] +torch/utils/data/_utils/signal_handling.py:39:1: error: Module "torch._C" has no attribute "_set_worker_signal_handlers" [attr-defined] +torch/utils/data/_utils/pin_memory.py:21:5: error: Module has no attribute "set_num_threads" [attr-defined] +torch/utils/__init__.py:107:5: error: Module has no attribute "_swap_tensor_impl" [attr-defined] +torch/cuda/_sanitizer.py:473:13: error: Name "torch.FunctionSchema" is not defined [name-defined] +torch/cuda/_sanitizer.py:474:21: error: Name "torch.Argument" is not defined [name-defined] +torch/cuda/_sanitizer.py:514:17: error: Name "torch.FunctionSchema" is not defined [name-defined] +torch/cuda/_sanitizer.py:538:23: error: Name "torch.FunctionSchema" is not defined [name-defined] +torch/cuda/_sanitizer.py:558:9: error: Module has no attribute "_activate_gpu_trace" [attr-defined] +torch/autograd/graph.py:228:28: error: Module has no attribute "_FunctionBase" [attr-defined] +torch/autograd/graph.py:256:5: error: Module has no attribute "_increment_version" [attr-defined] +torch/autograd/graph.py:387:56: error: Name "torch.device" is not defined [name-defined] +torch/autograd/graph.py:390:22: error: Module has no attribute "empty" [attr-defined] +torch/autograd/graph.py:399:43: error: Name "torch.device" is not defined [name-defined] +torch/autograd/graph.py:446:12: error: Module has no attribute "_set_warn_on_accumulate_grad_stream_mismatch" [attr-defined] +torch/autograd/graph.py:539:22: error: Module has no attribute "_current_graph_task_id" [attr-defined] +torch/autograd/graph.py:554:33: error: Module has no attribute "_will_engine_execute_node" [attr-defined] +torch/autograd/graph.py:579:18: error: Module has no attribute "_current_graph_task_id" [attr-defined] +torch/autograd/graph.py:842:16: error: Module has no attribute "_current_autograd_node" [attr-defined] +torch/nn/modules/rnn.py:31:17: error: Module has no attribute "rnn_tanh" [attr-defined] +torch/nn/modules/rnn.py:32:17: error: Module has no attribute "rnn_relu" [attr-defined] +torch/nn/modules/rnn.py:167:21: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/rnn.py:170:21: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/rnn.py:172:34: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/rnn.py:175:34: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/rnn.py:184:25: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/rnn.py:269:20: error: Module has no attribute "_use_cudnn_rnn_flatten_weight" [attr-defined] +torch/nn/modules/rnn.py:273:21: error: Module has no attribute "_cudnn_rnn_flatten_weight" [attr-defined] +torch/nn/modules/rnn.py:305:25: error: Module has no attribute "_is_any_autocast_enabled" [attr-defined] +torch/nn/modules/rnn.py:675:22: error: Module has no attribute "zeros" [attr-defined] +torch/nn/modules/rnn.py:711:22: error: Module has no attribute "zeros" [attr-defined] +torch/nn/modules/rnn.py:728:26: error: Module has no attribute "rnn_tanh" [attr-defined] +torch/nn/modules/rnn.py:740:26: error: Module has no attribute "rnn_relu" [attr-defined] +torch/nn/modules/rnn.py:753:26: error: Module has no attribute "rnn_tanh" [attr-defined] +torch/nn/modules/rnn.py:765:26: error: Module has no attribute "rnn_relu" [attr-defined] +torch/nn/modules/rnn.py:1071:27: error: Module has no attribute "zeros" [attr-defined] +torch/nn/modules/rnn.py:1078:27: error: Module has no attribute "zeros" [attr-defined] +torch/nn/modules/rnn.py:1103:27: error: Module has no attribute "zeros" [attr-defined] +torch/nn/modules/rnn.py:1110:27: error: Module has no attribute "zeros" [attr-defined] +torch/nn/modules/rnn.py:1141:22: error: Module has no attribute "lstm" [attr-defined] +torch/nn/modules/rnn.py:1153:22: error: Module has no attribute "lstm" [attr-defined] +torch/nn/modules/rnn.py:1364:22: error: Module has no attribute "zeros" [attr-defined] +torch/nn/modules/rnn.py:1401:22: error: Module has no attribute "zeros" [attr-defined] +torch/nn/modules/rnn.py:1415:22: error: Module has no attribute "gru" [attr-defined] +torch/nn/modules/rnn.py:1427:22: error: Module has no attribute "gru" [attr-defined] +torch/nn/modules/rnn.py:1484:13: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/rnn.py:1487:13: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/rnn.py:1491:17: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/rnn.py:1494:17: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/rnn.py:1601:18: error: Module has no attribute "zeros" [attr-defined] +torch/nn/modules/rnn.py:1608:19: error: Module has no attribute "rnn_tanh_cell" [attr-defined] +torch/nn/modules/rnn.py:1617:19: error: Module has no attribute "rnn_relu_cell" [attr-defined] +torch/nn/modules/rnn.py:1724:21: error: Module has no attribute "zeros" [attr-defined] +torch/nn/modules/rnn.py:1731:15: error: Module has no attribute "lstm_cell" [attr-defined] +torch/nn/modules/rnn.py:1832:18: error: Module has no attribute "zeros" [attr-defined] +torch/nn/modules/rnn.py:1838:15: error: Module has no attribute "gru_cell" [attr-defined] +torch/types.py:19:1: error: Module "torch" has no attribute "device"; maybe "Device"? [attr-defined] +torch/types.py:19:1: error: Module "torch" has no attribute "DispatchKey" [attr-defined] +torch/types.py:19:1: error: Module "torch" has no attribute "dtype"; maybe "types"? [attr-defined] +torch/types.py:19:1: error: Module "torch" has no attribute "layout" [attr-defined] +torch/types.py:19:1: error: Module "torch" has no attribute "qscheme" [attr-defined] +torch/types.py:19:1: error: Module "torch" has no attribute "Size" [attr-defined] +torch/storage.py:45:13: error: Name "torch.device" is not defined [name-defined] +torch/storage.py:49:29: error: Name "torch.device" is not defined [name-defined] +torch/storage.py:96:19: error: Module has no attribute "device" [attr-defined] +torch/storage.py:111:19: error: Module has no attribute "device" [attr-defined] +torch/storage.py:276:34: error: Module has no attribute "dtype" [attr-defined] +torch/storage.py:279:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/storage.py:279:36: error: Module has no attribute "uint8" [attr-defined] +torch/storage.py:289:35: error: Module has no attribute "device" [attr-defined] +torch/storage.py:290:22: error: Module has no attribute "device" [attr-defined] +torch/storage.py:295:25: error: Module has no attribute "double" [attr-defined] +torch/storage.py:299:25: error: Module has no attribute "float" [attr-defined] +torch/storage.py:303:25: error: Module has no attribute "half" [attr-defined] +torch/storage.py:307:25: error: Module has no attribute "long" [attr-defined] +torch/storage.py:311:25: error: Module has no attribute "int" [attr-defined] +torch/storage.py:315:25: error: Module has no attribute "short" [attr-defined] +torch/storage.py:319:25: error: Module has no attribute "int8" [attr-defined] +torch/storage.py:323:25: error: Module has no attribute "uint8" [attr-defined] +torch/storage.py:327:25: error: Module has no attribute "bool" [attr-defined] +torch/storage.py:331:25: error: Module has no attribute "bfloat16" [attr-defined] +torch/storage.py:335:25: error: Module has no attribute "cdouble" [attr-defined] +torch/storage.py:339:25: error: Module has no attribute "cfloat" [attr-defined] +torch/storage.py:343:25: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/storage.py:347:25: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/storage.py:351:25: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/storage.py:355:25: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/storage.py:357:44: error: Name "torch.device" is not defined [name-defined] +torch/storage.py:368:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/storage.py:368:36: error: Module has no attribute "uint8" [attr-defined] +torch/storage.py:373:45: error: Name "torch.device" is not defined [name-defined] +torch/storage.py:387:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/storage.py:387:36: error: Module has no attribute "uint8" [attr-defined] +torch/storage.py:397:41: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/storage.py:410:18: error: Module has no attribute "device" [attr-defined] +torch/storage.py:411:36: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/storage.py:466:22: error: Name "torch._C.StorageBase" is not defined [name-defined] +torch/storage.py:542:9: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/storage.py:543:9: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/storage.py:544:9: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/storage.py:545:9: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/storage.py:546:9: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/storage.py:547:9: error: Module has no attribute "float4_e2m1fn_x2" [attr-defined] +torch/storage.py:548:9: error: Module has no attribute "bits8" [attr-defined] +torch/storage.py:549:9: error: Module has no attribute "bits16" [attr-defined] +torch/storage.py:550:9: error: Module has no attribute "bits1x8" [attr-defined] +torch/storage.py:551:9: error: Module has no attribute "bits2x4" [attr-defined] +torch/storage.py:552:9: error: Module has no attribute "bits4x2" [attr-defined] +torch/storage.py:553:9: error: Module has no attribute "complex32" [attr-defined] +torch/storage.py:554:9: error: Module has no attribute "uint16" [attr-defined] +torch/storage.py:555:9: error: Module has no attribute "uint32" [attr-defined] +torch/storage.py:556:9: error: Module has no attribute "uint64" [attr-defined] +torch/storage.py:568:9: error: Module has no attribute "double" [attr-defined] +torch/storage.py:569:9: error: Module has no attribute "float" [attr-defined] +torch/storage.py:570:9: error: Module has no attribute "half" [attr-defined] +torch/storage.py:571:9: error: Module has no attribute "long" [attr-defined] +torch/storage.py:572:9: error: Module has no attribute "int" [attr-defined] +torch/storage.py:573:9: error: Module has no attribute "int16" [attr-defined] +torch/storage.py:574:9: error: Module has no attribute "int8" [attr-defined] +torch/storage.py:575:9: error: Module has no attribute "uint8" [attr-defined] +torch/storage.py:576:9: error: Module has no attribute "bool" [attr-defined] +torch/storage.py:577:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/storage.py:578:9: error: Module has no attribute "cdouble" [attr-defined] +torch/storage.py:579:9: error: Module has no attribute "cfloat" [attr-defined] +torch/storage.py:580:9: error: Module has no attribute "qint8" [attr-defined] +torch/storage.py:581:9: error: Module has no attribute "qint32" [attr-defined] +torch/storage.py:582:9: error: Module has no attribute "quint8" [attr-defined] +torch/storage.py:583:9: error: Module has no attribute "quint4x2" [attr-defined] +torch/storage.py:584:9: error: Module has no attribute "quint2x4" [attr-defined] +torch/storage.py:596:9: error: Module has no attribute "quint8" [attr-defined] +torch/storage.py:597:9: error: Module has no attribute "quint4x2" [attr-defined] +torch/storage.py:598:9: error: Module has no attribute "quint2x4" [attr-defined] +torch/storage.py:599:9: error: Module has no attribute "qint32" [attr-defined] +torch/storage.py:600:9: error: Module has no attribute "qint8" [attr-defined] +torch/storage.py:603:13: error: Module has no attribute "quint8" [attr-defined] +torch/storage.py:603:27: error: Module has no attribute "uint8" [attr-defined] +torch/storage.py:604:13: error: Module has no attribute "quint4x2" [attr-defined] +torch/storage.py:604:29: error: Module has no attribute "uint8" [attr-defined] +torch/storage.py:605:13: error: Module has no attribute "quint2x4" [attr-defined] +torch/storage.py:605:29: error: Module has no attribute "uint8" [attr-defined] +torch/storage.py:606:13: error: Module has no attribute "qint32" [attr-defined] +torch/storage.py:606:27: error: Module has no attribute "int32" [attr-defined] +torch/storage.py:607:13: error: Module has no attribute "qint8" [attr-defined] +torch/storage.py:607:26: error: Module has no attribute "int8" [attr-defined] +torch/storage.py:609:22: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/storage.py:614:22: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/storage.py:665:30: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/storage.py:674:29: error: Name "torch.device" is not defined [name-defined] +torch/storage.py:676:12: error: Name "torch.dtype" is not defined [name-defined] +torch/storage.py:817:38: error: Module has no attribute "dtype" [attr-defined] +torch/storage.py:840:26: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/storage.py:841:22: error: Module has no attribute "device" [attr-defined] +torch/storage.py:844:17: error: Module has no attribute "quint8" [attr-defined] +torch/storage.py:845:17: error: Module has no attribute "quint4x2" [attr-defined] +torch/storage.py:846:17: error: Module has no attribute "quint2x4" [attr-defined] +torch/storage.py:847:17: error: Module has no attribute "qint32" [attr-defined] +torch/storage.py:848:17: error: Module has no attribute "qint8" [attr-defined] +torch/storage.py:944:13: error: Module has no attribute "quint8" [attr-defined] +torch/storage.py:945:13: error: Module has no attribute "quint4x2" [attr-defined] +torch/storage.py:946:13: error: Module has no attribute "quint2x4" [attr-defined] +torch/storage.py:947:13: error: Module has no attribute "qint32" [attr-defined] +torch/storage.py:948:13: error: Module has no attribute "qint8" [attr-defined] +torch/storage.py:951:17: error: Module has no attribute "quint8" [attr-defined] +torch/storage.py:951:31: error: Module has no attribute "uint8" [attr-defined] +torch/storage.py:952:17: error: Module has no attribute "quint4x2" [attr-defined] +torch/storage.py:952:33: error: Module has no attribute "uint8" [attr-defined] +torch/storage.py:953:17: error: Module has no attribute "quint2x4" [attr-defined] +torch/storage.py:953:33: error: Module has no attribute "uint8" [attr-defined] +torch/storage.py:954:17: error: Module has no attribute "qint32" [attr-defined] +torch/storage.py:954:31: error: Module has no attribute "int32" [attr-defined] +torch/storage.py:955:17: error: Module has no attribute "qint8" [attr-defined] +torch/storage.py:955:30: error: Module has no attribute "int8" [attr-defined] +torch/storage.py:958:26: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/storage.py:967:26: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/storage.py:993:13: error: Module has no attribute "quint8" [attr-defined] +torch/storage.py:994:13: error: Module has no attribute "quint4x2" [attr-defined] +torch/storage.py:995:13: error: Module has no attribute "quint2x4" [attr-defined] +torch/storage.py:996:13: error: Module has no attribute "qint32" [attr-defined] +torch/storage.py:997:13: error: Module has no attribute "qint8" [attr-defined] +torch/storage.py:1000:17: error: Module has no attribute "quint8" [attr-defined] +torch/storage.py:1000:31: error: Module has no attribute "uint8" [attr-defined] +torch/storage.py:1001:17: error: Module has no attribute "quint4x2" [attr-defined] +torch/storage.py:1001:33: error: Module has no attribute "uint8" [attr-defined] +torch/storage.py:1002:17: error: Module has no attribute "quint2x4" [attr-defined] +torch/storage.py:1002:33: error: Module has no attribute "uint8" [attr-defined] +torch/storage.py:1003:17: error: Module has no attribute "qint32" [attr-defined] +torch/storage.py:1003:31: error: Module has no attribute "int32" [attr-defined] +torch/storage.py:1004:17: error: Module has no attribute "qint8" [attr-defined] +torch/storage.py:1004:30: error: Module has no attribute "int8" [attr-defined] +torch/storage.py:1016:26: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/storage.py:1057:13: error: Module has no attribute "quint8" [attr-defined] +torch/storage.py:1058:13: error: Module has no attribute "quint4x2" [attr-defined] +torch/storage.py:1059:13: error: Module has no attribute "quint2x4" [attr-defined] +torch/storage.py:1060:13: error: Module has no attribute "qint32" [attr-defined] +torch/storage.py:1061:13: error: Module has no attribute "qint8" [attr-defined] +torch/storage.py:1070:13: error: Module has no attribute "quint8" [attr-defined] +torch/storage.py:1071:13: error: Module has no attribute "quint4x2" [attr-defined] +torch/storage.py:1072:13: error: Module has no attribute "quint2x4" [attr-defined] +torch/storage.py:1073:13: error: Module has no attribute "qint32" [attr-defined] +torch/storage.py:1074:13: error: Module has no attribute "qint8" [attr-defined] +torch/storage.py:1082:35: error: Module has no attribute "device" [attr-defined] +torch/storage.py:1083:22: error: Module has no attribute "device" [attr-defined] +torch/storage.py:1085:13: error: Module has no attribute "quint8" [attr-defined] +torch/storage.py:1086:13: error: Module has no attribute "quint4x2" [attr-defined] +torch/storage.py:1087:13: error: Module has no attribute "quint2x4" [attr-defined] +torch/storage.py:1088:13: error: Module has no attribute "qint32" [attr-defined] +torch/storage.py:1089:13: error: Module has no attribute "qint8" [attr-defined] +torch/storage.py:1160:44: error: Name "torch.device" is not defined [name-defined] +torch/storage.py:1173:45: error: Name "torch.device" is not defined [name-defined] +torch/storage.py:1202:18: error: Module has no attribute "device" [attr-defined] +torch/storage.py:1280:21: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/storage.py:1281:22: error: Module has no attribute "device" [attr-defined] +torch/storage.py:1310:34: error: Module has no attribute "dtype" [attr-defined] +torch/storage.py:1313:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/storage.py:1325:25: error: Module has no attribute "double" [attr-defined] +torch/storage.py:1330:25: error: Module has no attribute "float" [attr-defined] +torch/storage.py:1335:25: error: Module has no attribute "half" [attr-defined] +torch/storage.py:1340:25: error: Module has no attribute "long" [attr-defined] +torch/storage.py:1345:25: error: Module has no attribute "int" [attr-defined] +torch/storage.py:1350:25: error: Module has no attribute "short" [attr-defined] +torch/storage.py:1355:25: error: Module has no attribute "int8" [attr-defined] +torch/storage.py:1360:25: error: Module has no attribute "uint8" [attr-defined] +torch/storage.py:1365:25: error: Module has no attribute "bool" [attr-defined] +torch/storage.py:1370:25: error: Module has no attribute "bfloat16" [attr-defined] +torch/storage.py:1375:25: error: Module has no attribute "cdouble" [attr-defined] +torch/storage.py:1380:25: error: Module has no attribute "cfloat" [attr-defined] +torch/storage.py:1385:25: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/storage.py:1390:25: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/storage.py:1395:25: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/storage.py:1400:25: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/storage.py:1492:13: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/storage.py:1513:12: error: Name "torch.dtype" is not defined [name-defined] +torch/serialization.py:70:46: error: Name "torch.device" is not defined [name-defined] +torch/serialization.py:553:24: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/serialization.py:604:18: error: Module has no attribute "device" [attr-defined] +torch/serialization.py:606:18: error: Module has no attribute "device" [attr-defined] +torch/serialization.py:638:24: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/serialization.py:778:36: error: Name "torch._C.PyTorchFileReader" is not defined [name-defined] +torch/serialization.py:780:26: error: Module has no attribute "PyTorchFileReader" [attr-defined] +torch/serialization.py:783:41: error: Name "torch._C.PyTorchFileWriter" is not defined [name-defined] +torch/serialization.py:796:17: error: Module has no attribute "PyTorchFileWriter" [attr-defined] +torch/serialization.py:802:17: error: Module has no attribute "PyTorchFileWriter" [attr-defined] +torch/serialization.py:813:43: error: Name "torch._C.PyTorchFileWriter" is not defined [name-defined] +torch/serialization.py:822:13: error: Module has no attribute "PyTorchFileWriter" [attr-defined] +torch/serialization.py:968:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/serialization.py:999:64: error: Name "torch.dtype" is not defined [name-defined] +torch/serialization.py:1005:31: error: Name "torch.dtype" is not defined [name-defined] +torch/serialization.py:1047:33: error: Module has no attribute "uint8" [attr-defined] +torch/serialization.py:1049:25: error: Module has no attribute "uint8" [attr-defined] +torch/serialization.py:1171:31: error: Name "torch.dtype" is not defined [name-defined] +torch/serialization.py:1191:33: error: Module has no attribute "uint8" [attr-defined] +torch/serialization.py:1277:35: error: Module has no attribute "empty" [attr-defined] +torch/serialization.py:1278:42: error: Module has no attribute "uint8" [attr-defined] +torch/serialization.py:1414:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/serialization.py:1585:30: error: Module has no attribute "layout" [attr-defined] +torch/serialization.py:1592:16: error: Module has no attribute "layout" [attr-defined] +torch/serialization.py:1728:30: error: Module has no attribute "empty" [attr-defined] +torch/serialization.py:1881:35: error: Module has no attribute "device" [attr-defined] +torch/serialization.py:2099:21: error: Module has no attribute "uint8" [attr-defined] +torch/serialization.py:2147:5: error: Module has no attribute "_log_api_usage_metadata" [attr-defined] +torch/functional.py:10:1: error: Module "torch._C" has no attribute "_add_docstr" [attr-defined] +torch/functional.py:110:20: error: Module has no attribute "Size" [attr-defined] +torch/functional.py:111:16: error: Module has no attribute "Size" [attr-defined] +torch/functional.py:115:22: error: Module has no attribute "zeros" [attr-defined] +torch/functional.py:695:5: error: Cannot determine type of "istft" [has-type] +torch/functional.py:938:43: error: Module has no attribute "unique_dim" [attr-defined] +torch/functional.py:946:43: error: Module has no attribute "_unique2" [attr-defined] +torch/functional.py:1770:24: error: Module has no attribute "strided" [attr-defined] +torch/functional.py:1826:24: error: Module has no attribute "frobenius_norm" [attr-defined] +torch/functional.py:1850:24: error: Module has no attribute "frobenius_norm" [attr-defined] +torch/functional.py:1850:24: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/functional.py:1852:24: error: Module has no attribute "frobenius_norm" [attr-defined] +torch/functional.py:1852:24: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/functional.py:1858:28: error: Module has no attribute "nuclear_norm" [attr-defined] +torch/functional.py:1858:28: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/functional.py:1860:28: error: Module has no attribute "nuclear_norm" [attr-defined] +torch/functional.py:1860:28: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/functional.py:1863:28: error: Module has no attribute "nuclear_norm" [attr-defined] +torch/functional.py:1863:28: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/functional.py:1865:28: error: Module has no attribute "nuclear_norm" [attr-defined] +torch/functional.py:1865:28: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/functional.py:1885:38: error: Name "torch.Size" is not defined [name-defined] +torch/functional.py:1945:30: error: Module has no attribute "bool" [attr-defined] +torch/functional.py:1955:17: error: Module has no attribute "Size" [attr-defined] +torch/functional.py:1962:17: error: Module has no attribute "Size" [attr-defined] +torch/functional.py:1965:33: error: Item "int" of "int | Sequence[int]" has no attribute "__iter__" (not iterable) [union-attr] +torch/functional.py:1966:71: error: Argument 1 to "tuple" has incompatible type "int | Sequence[int]"; expected "Iterable[int]" [arg-type] +torch/functional.py:1973:30: error: Value of type "int | Sequence[int]" is not indexable [index] +torch/functional.py:1973:42: error: Module has no attribute "Size" [attr-defined] +torch/functional.py:1979:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/functional.py:1979:58: error: Module has no attribute "int64" [attr-defined] +torch/functional.py:1980:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/functional.py:1980:58: error: Module has no attribute "int64" [attr-defined] +torch/functional.py:2128:12: error: Module has no attribute "_lu_with_info" [attr-defined] +torch/_vmap_internals.py:110:36: error: Module has no attribute "_add_batch_dim" [attr-defined] +torch/_vmap_internals.py:138:16: error: Module has no attribute "_remove_batch_dim" [attr-defined] +torch/_vmap_internals.py:138:16: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_vmap_internals.py:142:17: error: Module has no attribute "_remove_batch_dim" [attr-defined] +torch/_vmap_internals.py:150:13: error: Module has no attribute "_remove_batch_dim" [attr-defined] +torch/_vmap_internals.py:227:22: error: Module has no attribute "_vmapmode_increment_nesting" [attr-defined] +torch/_vmap_internals.py:244:13: error: Module has no attribute "_vmapmode_decrement_nesting" [attr-defined] +torch/_tensor_str.py:119:9: error: Module has no attribute "float" [attr-defined] +torch/_tensor_str.py:122:34: error: _XpuDeviceProperties? has no attribute "has_fp64" [attr-defined] +torch/_tensor_str.py:125:14: error: Module has no attribute "double" [attr-defined] +torch/_tensor_str.py:152:48: error: Module has no attribute "uint8" [attr-defined] +torch/_tensor_str.py:154:35: error: Module has no attribute "masked_select" [attr-defined] +torch/_tensor_str.py:155:30: error: Module has no attribute "isfinite" [attr-defined] +torch/_tensor_str.py:177:29: error: Module has no attribute "ceil" [attr-defined] +torch/_tensor_str.py:271:26: error: Module has no attribute "uint8" [attr-defined] +torch/_tensor_str.py:355:9: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_tensor_str.py:356:9: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/_tensor_str.py:357:9: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_tensor_str.py:358:9: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/_tensor_str.py:401:20: error: Module has no attribute "cat" [attr-defined] +torch/_tensor_str.py:411:16: error: Module has no attribute "stack" [attr-defined] +torch/_tensor_str.py:413:16: error: Module has no attribute "stack" [attr-defined] +torch/_tensor_str.py:445:29: error: Module has no attribute "_get_default_device" [attr-defined] +torch/_tensor_str.py:462:9: error: Module has no attribute "cdouble" [attr-defined] +torch/_tensor_str.py:462:26: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_tensor_str.py:462:55: error: Module has no attribute "double" [attr-defined] +torch/_tensor_str.py:462:73: error: Module has no attribute "cfloat" [attr-defined] +torch/_tensor_str.py:465:9: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_tensor_str.py:467:9: error: Module has no attribute "int64" [attr-defined] +torch/_tensor_str.py:468:9: error: Module has no attribute "bool" [attr-defined] +torch/_tensor_str.py:506:9: error: Module has no attribute "sparse_csr" [attr-defined] +torch/_tensor_str.py:507:9: error: Module has no attribute "sparse_csc" [attr-defined] +torch/_tensor_str.py:508:9: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_tensor_str.py:509:9: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/_tensor_str.py:521:17: error: Module has no attribute "sparse_csr" [attr-defined] +torch/_tensor_str.py:522:17: error: Module has no attribute "sparse_csc" [attr-defined] +torch/_tensor_str.py:523:17: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_tensor_str.py:524:17: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/_tensor_str.py:526:32: error: Module has no attribute "sparse_csr" [attr-defined] +torch/_tensor_str.py:526:50: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_tensor_str.py:579:31: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/_tensor_str.py:580:34: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/_tensor_str.py:585:31: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/_tensor_str.py:586:34: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/_tensor_str.py:587:34: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/_tensor_str.py:605:10: error: Module has no attribute "_is_functional_tensor" [attr-defined] +torch/_tensor_str.py:607:27: error: Module has no attribute "_from_functional_tensor" [attr-defined] +torch/_tensor_str.py:614:30: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_tensor_str.py:628:34: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_tensor_str.py:640:39: error: Module has no attribute "strided" [attr-defined] +torch/_tensor_str.py:645:23: error: Module has no attribute "strided" [attr-defined] +torch/_tensor_str.py:723:17: error: Module has no attribute "_DisableFuncTorch" [attr-defined] +torch/_ops.py:26:1: error: Module "torch._C" has no attribute "_dispatch_is_included_in_alias" [attr-defined] +torch/_ops.py:26:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_ops.py:118:20: error: Module has no attribute "_dispatch_is_alias_key" [attr-defined] +torch/_ops.py:225:9: error: Module has no attribute "_dispatch_get_backend_keyset_from_autograd" [attr-defined] +torch/_ops.py:240:13: error: Module has no attribute "_dispatch_autogradother_backends" [attr-defined] +torch/_ops.py:254:8: error: Module has no attribute "_dispatch_has_backend_fallback" [attr-defined] +torch/_ops.py:295:37: error: Module has no attribute "_dispatch_keyset_full" [attr-defined] +torch/_ops.py:326:20: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_ops.py:331:22: error: Module has no attribute "_AutoDispatchBelowAutograd" [attr-defined] +torch/_ops.py:393:24: error: Module has no attribute "_dispatch_keys" [attr-defined] +torch/_ops.py:440:24: error: Module has no attribute "_disabled_torch_dispatch_impl" [attr-defined] +torch/_ops.py:486:23: error: Module has no attribute "_dispatch_tls_is_dispatch_key_excluded" [attr-defined] +torch/_ops.py:578:15: error: Module has no attribute "_dispatch_tls_local_include_set" [attr-defined] +torch/_ops.py:580:29: error: Module has no attribute "_dispatch_keys" [attr-defined] +torch/_ops.py:581:25: error: Module has no attribute "_dispatch_tls_local_exclude_set" [attr-defined] +torch/_ops.py:624:9: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_ops.py:625:9: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_ops.py:633:24: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_ops.py:637:26: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_ops.py:654:9: error: Module has no attribute "_dispatch_tls_set_dispatch_key_included" [attr-defined] +torch/_ops.py:695:9: error: Module has no attribute "_dispatch_tls_set_dispatch_key_included" [attr-defined] +torch/_ops.py:708:40: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_ops.py:710:40: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_ops.py:719:20: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_ops.py:722:28: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_ops.py:773:17: error: Name "torch._C.FunctionSchema" is not defined [name-defined] +torch/_ops.py:786:45: error: Module has no attribute "Tag" [attr-defined] +torch/_ops.py:821:26: error: Name "torch._C._DispatchOperatorHandle" is not defined [name-defined] +torch/_ops.py:822:16: error: Module has no attribute "_dispatch_find_schema_or_throw" [attr-defined] +torch/_ops.py:841:26: error: Name "torch._C.DispatchKeySet" is not defined [name-defined] +torch/_ops.py:855:14: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_ops.py:857:51: error: Name "torch._C.DispatchKeySet" is not defined [name-defined] +torch/_ops.py:858:16: error: Module has no attribute "_dispatch_has_kernel_for_any_dispatch_key" [attr-defined] +torch/_ops.py:868:41: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_ops.py:880:14: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_ops.py:942:25: error: Module has no attribute "_dispatch_tls_is_dispatch_key_excluded" [attr-defined] +torch/_ops.py:1030:16: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_ops.py:1031:24: error: Module has no attribute "_dispatch_kernel_for_dispatch_key_is_fallthrough" [attr-defined] +torch/_ops.py:1091:32: error: Module has no attribute "_dispatch_keyset_full" [attr-defined] +torch/_ops.py:1107:16: error: Module has no attribute "_dispatch_kernel_for_dispatch_key_is_fallthrough" [attr-defined] +torch/_ops.py:1139:36: error: Name "torch.FunctionSchema" is not defined [name-defined] +torch/_ops.py:1140:37: error: Module has no attribute "ClassType" [attr-defined] +torch/_ops.py:1188:28: error: Module has no attribute "_get_schema" [attr-defined] +torch/_ops.py:1217:26: error: Module has no attribute "_get_operation_overload" [attr-defined] +torch/_ops.py:1226:22: error: Module has no attribute "_get_schema" [attr-defined] +torch/_ops.py:1271:34: error: Module has no attribute "_maybe_call_torch_function_for_op_packet" [attr-defined] +torch/_ops.py:1288:17: error: Module has no attribute "_check_schema_allow_fake_script_object" [attr-defined] +torch/_ops.py:1391:26: error: Module has no attribute "_jit_get_operation" [attr-defined] +torch/_lowrank.py:65:9: error: Module has no attribute "randn" [attr-defined] +torch/_lowrank.py:278:19: error: Module has no attribute "zeros" [attr-defined] +torch/_lowrank.py:285:15: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/_lowrank.py:289:21: error: Module has no attribute "ones" [attr-defined] +torch/_lobpcg.py:24:11: error: Module has no attribute "matmul" [attr-defined] +torch/_lobpcg.py:25:12: error: Module has no attribute "matmul" [attr-defined] +torch/_lobpcg.py:25:25: error: Module has no attribute "diag_embed" [attr-defined] +torch/_lobpcg.py:117:22: error: Module has no attribute "eye" [attr-defined] +torch/_lobpcg.py:132:15: error: Module has no attribute "addcmul" [attr-defined] +torch/_lobpcg.py:153:11: error: Module has no attribute "Generator" [attr-defined] +torch/_lobpcg.py:157:9: error: Module has no attribute "randn" [attr-defined] +torch/_lobpcg.py:216:34: error: Module has no attribute "matmul" [attr-defined] +torch/_lobpcg.py:217:20: error: Module has no attribute "matmul" [attr-defined] +torch/_lobpcg.py:240:11: error: Module has no attribute "cholesky_solve" [attr-defined] +torch/_lobpcg.py:318:25: error: Module has no attribute "complex64" [attr-defined] +torch/_lobpcg.py:318:42: error: Module has no attribute "complex128" [attr-defined] +torch/_lobpcg.py:320:29: error: Module has no attribute "complex64" [attr-defined] +torch/_lobpcg.py:320:46: error: Module has no attribute "complex128" [attr-defined] +torch/_lobpcg.py:610:17: error: Module has no attribute "float32" [attr-defined] +torch/_lobpcg.py:610:41: error: Module has no attribute "float64" [attr-defined] +torch/_lobpcg.py:656:17: error: Module has no attribute "prod" [attr-defined] +torch/_lobpcg.py:656:28: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_lobpcg.py:660:14: error: Module has no attribute "empty" [attr-defined] +torch/_lobpcg.py:661:17: error: Module has no attribute "empty" [attr-defined] +torch/_lobpcg.py:667:17: error: Module has no attribute "randn" [attr-defined] +torch/_lobpcg.py:681:9: error: Module has no attribute "randn" [attr-defined] +torch/_lobpcg.py:723:18: error: Module has no attribute "zeros" [attr-defined] +torch/_lobpcg.py:724:18: error: Module has no attribute "zeros" [attr-defined] +torch/_lobpcg.py:725:18: error: Module has no attribute "zeros" [attr-defined] +torch/_lobpcg.py:790:48: error: Module has no attribute "abs" [attr-defined] +torch/_lobpcg.py:853:14: error: Module has no attribute "matmul" [attr-defined] +torch/_lobpcg.py:896:14: error: Module has no attribute "matmul" [attr-defined] +torch/_lobpcg.py:1014:12: error: Module has no attribute "numel" [attr-defined] +torch/_lobpcg.py:1026:14: error: Module has no attribute "where" [attr-defined] +torch/_lobpcg.py:1030:16: error: Module has no attribute "numel" [attr-defined] +torch/_lobpcg.py:1034:18: error: Module has no attribute "where" [attr-defined] +torch/_lobpcg.py:1043:20: error: Module has no attribute "where" [attr-defined] +torch/_lobpcg.py:1049:16: error: Module has no attribute "where" [attr-defined] +torch/_lobpcg.py:1051:16: error: Module has no attribute "matmul" [attr-defined] +torch/_lobpcg.py:1082:14: error: Module has no attribute "matmul" [attr-defined] +torch/_lobpcg.py:1116:20: error: Module has no attribute "numel" [attr-defined] +torch/_lobpcg.py:1125:27: error: Module has no attribute "eye" [attr-defined] +torch/_linalg_utils.py:13:28: error: Module has no attribute "sparse_coo" [attr-defined] +torch/_linalg_utils.py:27:18: error: Module has no attribute "float16" [attr-defined] +torch/_linalg_utils.py:27:33: error: Module has no attribute "float32" [attr-defined] +torch/_linalg_utils.py:27:48: error: Module has no attribute "float64" [attr-defined] +torch/_linalg_utils.py:29:12: error: Module has no attribute "float32" [attr-defined] +torch/_linalg_utils.py:42:12: error: Module has no attribute "matmul" [attr-defined] +torch/_linalg_utils.py:67:13: error: Module has no attribute "flip" [attr-defined] +torch/_linalg_utils.py:68:13: error: Module has no attribute "flip" [attr-defined] +torch/_jit_internal.py:47:1: error: Module "torch._C" has no attribute "_Await" [attr-defined] +torch/_jit_internal.py:47:1: error: Module "torch._C" has no attribute "Future" [attr-defined] +torch/_jit_internal.py:132:24: error: Module has no attribute "ScriptFunction" [attr-defined] +torch/_jit_internal.py:1314:32: error: Module has no attribute "TensorType" [attr-defined] +torch/_jit_internal.py:1330:13: error: Module has no attribute "_jit_get_emit_hooks" [attr-defined] +torch/_jit_internal.py:1331:5: error: Module has no attribute "_jit_set_emit_hooks" [attr-defined] +torch/_jit_internal.py:1335:9: error: Module has no attribute "_jit_set_emit_hooks" [attr-defined] +torch/_jit_internal.py:1341:22: error: Module has no attribute "_jit_get_emit_hooks" [attr-defined] +torch/_jit_internal.py:1342:9: error: Module has no attribute "_jit_set_emit_hooks" [attr-defined] +torch/_jit_internal.py:1345:9: error: Module has no attribute "_jit_set_emit_hooks" [attr-defined] +torch/utils/weak.py:155:9: error: Need type annotation for "data" (hint: "data: dict[, ] = ...") [var-annotated] +torch/utils/weak.py:172:9: error: Need type annotation for "_pending_removals" (hint: "_pending_removals: list[] = ...") [var-annotated] +torch/utils/weak.py:173:9: error: Need type annotation for "_iterating" (hint: "_iterating: set[] = ...") [var-annotated] +torch/utils/dlpack.py:6:1: error: Module "torch._C" has no attribute "_to_dlpack" [attr-defined] +torch/utils/dlpack.py:33:1: error: Module has no attribute "_add_docstr" [attr-defined] +torch/utils/dlpack.py:135:26: error: Module has no attribute "device" [attr-defined] +torch/utils/dlpack.py:136:39: error: Module has no attribute "device" [attr-defined] +torch/utils/dlpack.py:138:35: error: Module has no attribute "_torchDeviceToDLDevice" [attr-defined] +torch/utils/dlpack.py:171:12: error: Module has no attribute "_from_dlpack" [attr-defined] +torch/package/package_importer.py:88:41: error: Name "torch._C.PyTorchFileReader" is not defined [name-defined] +torch/package/package_importer.py:104:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/package/package_importer.py:107:39: error: Module has no attribute "PyTorchFileReader" [attr-defined] +torch/package/package_importer.py:113:35: error: Module has no attribute "PyTorchFileReader" [attr-defined] +torch/package/package_importer.py:118:31: error: Module has no attribute "PyTorchFileReader" [attr-defined] +torch/package/package_importer.py:120:9: error: Module has no attribute "_log_api_usage_metadata" [attr-defined] +torch/package/package_importer.py:231:27: error: Module has no attribute "DeserializationStorageContext" [attr-defined] +torch/package/package_importer.py:242:48: error: Module has no attribute "PyTorchFileReader" [attr-defined] +torch/package/package_importer.py:255:29: error: Module has no attribute "uint8" [attr-defined] +torch/package/package_exporter.py:219:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/package/package_exporter.py:227:25: error: Module has no attribute "PyTorchFileWriter" [attr-defined] +torch/package/package_exporter.py:239:41: error: Module has no attribute "ScriptModuleSerializer" [attr-defined] +torch/nn/init.py:70:62: error: Name "torch.Generator" is not defined [name-defined] +torch/nn/init.py:80:26: error: Name "torch.Generator" is not defined [name-defined] +torch/nn/init.py:92:26: error: Name "torch.Generator" is not defined [name-defined] +torch/nn/init.py:218:26: error: Name "torch.Generator" is not defined [name-defined] +torch/nn/init.py:245:26: error: Name "torch.Generator" is not defined [name-defined] +torch/nn/init.py:274:26: error: Name "torch.Generator" is not defined [name-defined] +torch/nn/init.py:360:9: error: Module has no attribute "eye" [attr-defined] +torch/nn/init.py:441:26: error: Name "torch.Generator" is not defined [name-defined] +torch/nn/init.py:474:26: error: Name "torch.Generator" is not defined [name-defined] +torch/nn/init.py:518:26: error: Name "torch.Generator" is not defined [name-defined] +torch/nn/init.py:583:26: error: Name "torch.Generator" is not defined [name-defined] +torch/nn/init.py:634:26: error: Name "torch.Generator" is not defined [name-defined] +torch/nn/init.py:669:9: error: Module has no attribute "diag" [attr-defined] +torch/nn/init.py:686:26: error: Name "torch.Generator" is not defined [name-defined] +torch/nn/init.py:714:27: error: Module has no attribute "randperm" [attr-defined] +torch/nn/parameter.pyi:3:1: error: Module "torch" has no attribute "device"; maybe "Device"? [attr-defined] +torch/nn/parameter.pyi:3:1: error: Module "torch" has no attribute "dtype"; maybe "types"? [attr-defined] +torch/nn/utils/rnn.py:105:16: error: Name "torch.dtype" is not defined [name-defined] +torch/nn/utils/rnn.py:113:23: error: Name "torch.device" is not defined [name-defined] +torch/nn/utils/rnn.py:114:16: error: Name "torch.dtype" is not defined [name-defined] +torch/nn/utils/rnn.py:160:14: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/nn/utils/rnn.py:169:14: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/nn/utils/rnn.py:178:30: error: Module has no attribute "double" [attr-defined] +torch/nn/utils/rnn.py:181:30: error: Module has no attribute "float" [attr-defined] +torch/nn/utils/rnn.py:184:30: error: Module has no attribute "half" [attr-defined] +torch/nn/utils/rnn.py:187:30: error: Module has no attribute "long" [attr-defined] +torch/nn/utils/rnn.py:190:30: error: Module has no attribute "int" [attr-defined] +torch/nn/utils/rnn.py:193:30: error: Module has no attribute "short" [attr-defined] +torch/nn/utils/rnn.py:196:30: error: Module has no attribute "int8" [attr-defined] +torch/nn/utils/rnn.py:199:30: error: Module has no attribute "uint8" [attr-defined] +torch/nn/utils/rnn.py:268:14: error: Module has no attribute "empty_like" [attr-defined] +torch/nn/utils/rnn.py:270:25: error: Module has no attribute "arange" [attr-defined] +torch/nn/utils/rnn.py:320:12: error: Module has no attribute "_get_tracing_state" [attr-defined] +torch/nn/utils/rnn.py:328:19: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/nn/utils/rnn.py:328:50: error: Module has no attribute "int64" [attr-defined] +torch/nn/utils/rnn.py:330:36: error: Module has no attribute "int64" [attr-defined] +torch/nn/utils/rnn.py:335:35: error: Module has no attribute "sort" [attr-defined] +torch/nn/utils/rnn.py:340:25: error: Module has no attribute "_pack_padded_sequence" [attr-defined] +torch/nn/utils/rnn.py:408:30: error: Module has no attribute "_pad_packed_sequence" [attr-defined] +torch/nn/utils/rnn.py:482:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/utils/rnn.py:529:11: error: Module has no attribute "arange" [attr-defined] +torch/nn/utils/rnn.py:572:15: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/nn/parallel/scatter_gather.py:36:33: error: Name "torch.device" is not defined [name-defined] +torch/nn/parallel/scatter_gather.py:44:33: error: Name "torch.device" is not defined [name-defined] +torch/nn/parallel/scatter_gather.py:97:33: error: Name "torch.device" is not defined [name-defined] +torch/nn/parallel/scatter_gather.py:114:47: error: Name "torch.device" is not defined [name-defined] +torch/nn/parallel/replicate.py:13:5: error: Module "torch._C" has no attribute "ScriptMethod" [attr-defined] +torch/nn/parallel/replicate.py:30:31: error: Module has no attribute "ScriptMethod" [attr-defined] +torch/nn/parallel/replicate.py:85:29: error: Name "torch.device" is not defined [name-defined] +torch/nn/parallel/replicate.py:109:29: error: Name "torch.device" is not defined [name-defined] +torch/nn/parallel/parallel_apply.py:35:29: error: Name "torch.device" is not defined [name-defined] +torch/nn/parallel/parallel_apply.py:67:9: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/nn/parallel/parallel_apply.py:68:9: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/nn/parallel/parallel_apply.py:76:23: error: Name "torch.device" is not defined [name-defined] +torch/nn/parallel/parallel_apply.py:77:17: error: Name "torch.Stream" is not defined [name-defined] +torch/nn/parallel/parallel_apply.py:90:31: error: Module has no attribute "device" [attr-defined] +torch/nn/parallel/distributed.py:90:18: error: Name "torch.dtype" is not defined [name-defined] +torch/nn/parallel/distributed.py:91:19: error: Name "torch.dtype" is not defined [name-defined] +torch/nn/parallel/distributed.py:92:19: error: Name "torch.dtype" is not defined [name-defined] +torch/nn/parallel/distributed.py:116:31: error: Module has no attribute "zeros_like" [attr-defined] +torch/nn/parallel/distributed.py:889:31: error: Module has no attribute "Stream" [attr-defined] +torch/nn/parallel/distributed.py:915:31: error: Module has no attribute "Stream" [attr-defined] +torch/nn/parallel/distributed.py:1004:18: error: Module has no attribute "device" [attr-defined] +torch/nn/parallel/distributed.py:1005:35: error: Module has no attribute "zeros" [attr-defined] +torch/nn/parallel/distributed.py:1050:13: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/nn/parallel/distributed.py:1125:30: error: Module has no attribute "Event" [attr-defined] +torch/nn/parallel/distributed.py:1531:12: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/nn/parallel/distributed.py:1551:12: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/nn/parallel/distributed.py:1568:17: error: Module has no attribute "device" [attr-defined] +torch/nn/parallel/distributed.py:1604:12: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/nn/parallel/distributed.py:1678:13: error: Module has no attribute "device" [attr-defined] +torch/nn/parallel/distributed.py:1693:36: error: Module has no attribute "ones" [attr-defined] +torch/nn/parallel/distributed.py:1695:36: error: Module has no attribute "zeros" [attr-defined] +torch/nn/parallel/distributed.py:2165:23: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/nn/parallel/data_parallel.py:24:47: error: Name "torch.device" is not defined [name-defined] +torch/nn/parallel/data_parallel.py:139:36: error: Name "torch.device" is not defined [name-defined] +torch/nn/parallel/data_parallel.py:140:30: error: Name "torch.device" is not defined [name-defined] +torch/nn/parallel/data_parallel.py:144:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/nn/parallel/data_parallel.py:165:31: error: Module has no attribute "device" [attr-defined] +torch/nn/parallel/data_parallel.py:200:63: error: Name "torch.device" is not defined [name-defined] +torch/nn/parallel/data_parallel.py:201:50: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/nn/parallel/data_parallel.py:207:36: error: Name "torch.device" is not defined [name-defined] +torch/nn/parallel/data_parallel.py:218:57: error: Name "torch.device" is not defined [name-defined] +torch/nn/parallel/data_parallel.py:225:32: error: Name "torch.device" is not defined [name-defined] +torch/nn/parallel/data_parallel.py:226:26: error: Name "torch.device" is not defined [name-defined] +torch/nn/parallel/data_parallel.py:264:22: error: Module has no attribute "device" [attr-defined] +torch/nn/modules/transformer.py:31:22: error: Name "torch.device" is not defined [name-defined] +torch/nn/modules/transformer.py:32:21: error: Name "torch.dtype" is not defined [name-defined] +torch/nn/modules/transformer.py:38:12: error: Module has no attribute "triu" [attr-defined] +torch/nn/modules/transformer.py:39:9: error: Module has no attribute "full" [attr-defined] +torch/nn/modules/transformer.py:120:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/nn/modules/transformer.py:304:26: error: Name "torch.device" is not defined [name-defined] +torch/nn/modules/transformer.py:305:25: error: Name "torch.dtype" is not defined [name-defined] +torch/nn/modules/transformer.py:362:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/nn/modules/transformer.py:482:36: error: Module has no attribute "_nested_tensor_from_mask_left_aligned" [attr-defined] +torch/nn/modules/transformer.py:492:14: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/nn/modules/transformer.py:522:18: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/nn/modules/transformer.py:530:26: error: Module has no attribute "_nested_tensor_from_mask" [attr-defined] +torch/nn/modules/transformer.py:593:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/nn/modules/transformer.py:868:14: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/nn/modules/transformer.py:909:18: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/nn/modules/transformer.py:919:24: error: Module has no attribute "_transformer_encoder_layer_fwd" [attr-defined] +torch/nn/modules/transformer.py:1250:32: error: "bool" has no attribute "all" [attr-defined] +torch/nn/modules/sparse.py:169:17: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/sparse.py:407:17: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/padding.py:42:29: error: Argument 2 to "pad" has incompatible type "Sequence[int]"; expected "list[int]" [arg-type] +torch/nn/modules/padding.py:221:29: error: Argument 2 to "pad" has incompatible type "Sequence[int]"; expected "list[int]" [arg-type] +torch/nn/modules/padding.py:377:29: error: Argument 2 to "pad" has incompatible type "Sequence[int]"; expected "list[int]" [arg-type] +torch/nn/modules/padding.py:541:29: error: Argument 2 to "pad" has incompatible type "Sequence[int]"; expected "list[int]" [arg-type] +torch/nn/modules/normalization.py:6:1: error: Module "torch" has no attribute "Size" [attr-defined] +torch/nn/modules/normalization.py:208:17: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/normalization.py:212:21: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/normalization.py:230:20: error: Argument 2 to "layer_norm" has incompatible type "tuple[int, ...]"; expected "list[int]" [arg-type] +torch/nn/modules/normalization.py:311:37: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/normalization.py:312:35: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/normalization.py:397:17: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/normalization.py:414:30: error: Argument 2 to "rms_norm" has incompatible type "tuple[int, ...]"; expected "list[int]" [arg-type] +torch/nn/modules/module.py:14:1: error: Module "torch" has no attribute "device"; maybe "Device"? [attr-defined] +torch/nn/modules/module.py:14:1: error: Module "torch" has no attribute "dtype"; maybe "types"? [attr-defined] +torch/nn/modules/module.py:484:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/nn/modules/module.py:938:16: error: Module has no attribute "_has_compatible_shallow_copy_type" [attr-defined] +torch/nn/modules/module.py:1236:23: error: Module has no attribute "empty_like" [attr-defined] +torch/nn/modules/module.py:1339:58: error: Module has no attribute "_nn" [attr-defined] +torch/nn/modules/module.py:1755:25: error: Module has no attribute "_get_tracing_state" [attr-defined] +torch/nn/modules/module.py:1756:58: error: Module has no attribute "ScriptMethod" [attr-defined] +torch/nn/modules/module.py:1783:47: error: Module has no attribute "_get_tracing_state" [attr-defined] +torch/nn/modules/linear.py:109:13: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/linear.py:112:35: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/linear.py:221:13: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/linear.py:225:35: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/conv.py:163:17: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/conv.py:170:17: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/conv.py:176:35: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/container.py:771:46: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/nn/modules/container.py:1008:46: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/nn/modules/batchnorm.py:56:37: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/batchnorm.py:57:35: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/batchnorm.py:63:33: error: Module has no attribute "zeros" [attr-defined] +torch/nn/modules/batchnorm.py:66:32: error: Module has no attribute "ones" [attr-defined] +torch/nn/modules/batchnorm.py:72:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/nn/modules/batchnorm.py:74:27: error: Module has no attribute "long" [attr-defined] +torch/nn/modules/batchnorm.py:129:60: error: Module has no attribute "device" [attr-defined] +torch/nn/modules/batchnorm.py:130:26: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/nn/modules/batchnorm.py:130:48: error: Module has no attribute "long" [attr-defined] +torch/nn/modules/batchnorm.py:248:40: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/nn/modules/batchnorm.py:250:23: error: Module has no attribute "long" [attr-defined] +torch/nn/modules/batchnorm.py:802:17: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/nn/modules/batchnorm.py:806:24: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/nn/modules/adaptive.py:182:9: error: Module has no attribute "__iter__"; maybe "__dir__"? (not iterable) [attr-defined] +torch/nn/modules/adaptive.py:182:9: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/nn/modules/adaptive.py:231:27: error: Item "bool" of "bool | Any" has no attribute "nonzero" [union-attr] +torch/nn/modules/adaptive.py:323:18: error: Module has no attribute "argmax" [attr-defined] +torch/nn/modules/adaptive.py:332:20: error: Module has no attribute "argmax" [attr-defined] +torch/nn/modules/adaptive.py:338:40: error: Module has no attribute "argmax" [attr-defined] +torch/nn/modules/activation.py:359:16: error: Module has no attribute "sigmoid" [attr-defined] +torch/nn/modules/activation.py:430:16: error: Module has no attribute "tanh" [attr-defined] +torch/nn/modules/activation.py:1198:17: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/activation.py:1201:17: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/activation.py:1204:17: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/activation.py:1209:17: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/activation.py:1216:43: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/activation.py:1224:37: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/activation.py:1225:37: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/activation.py:1329:40: error: Module has no attribute "is_floating_point" [attr-defined] +torch/nn/modules/activation.py:1331:17: error: Module has no attribute "is_floating_point" [attr-defined] +torch/nn/modules/activation.py:1395:14: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/nn/modules/activation.py:1419:18: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/nn/modules/activation.py:1432:28: error: Module has no attribute "_native_multi_head_attention" [attr-defined] +torch/nn/modules/activation.py:1629:33: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/_functions.py:23:47: error: Module has no attribute "channels_last" [attr-defined] +torch/nn/modules/_functions.py:24:50: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/nn/modules/_functions.py:39:28: error: Module has no attribute "batch_norm_stats" [attr-defined] +torch/nn/modules/_functions.py:41:21: error: Module has no attribute "full" [attr-defined] +torch/nn/modules/_functions.py:49:24: error: Module has no attribute "cat" [attr-defined] +torch/nn/modules/_functions.py:55:24: error: Module has no attribute "zeros" [attr-defined] +torch/nn/modules/_functions.py:68:29: error: Module has no attribute "empty" [attr-defined] +torch/nn/modules/_functions.py:77:24: error: Module has no attribute "reshape" [attr-defined] +torch/nn/modules/_functions.py:82:30: error: Module has no attribute "empty_like" [attr-defined] +torch/nn/modules/_functions.py:84:24: error: Module has no attribute "stack" [attr-defined] +torch/nn/modules/_functions.py:106:24: error: Module has no attribute "batch_norm_gather_stats_with_counts" [attr-defined] +torch/nn/modules/_functions.py:117:74: error: Module has no attribute "int32" [attr-defined] +torch/nn/modules/_functions.py:122:20: error: Module has no attribute "batch_norm_elemt" [attr-defined] +torch/nn/modules/_functions.py:124:20: error: Module has no attribute "empty_like" [attr-defined] +torch/nn/modules/_functions.py:129:53: error: Module has no attribute "channels_last" [attr-defined] +torch/nn/modules/_functions.py:130:56: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/nn/modules/_functions.py:144:17: error: Module has no attribute "batch_norm_backward_reduce" [attr-defined] +torch/nn/modules/_functions.py:158:28: error: Module has no attribute "cat" [attr-defined] +torch/nn/modules/_functions.py:170:30: error: Module has no attribute "batch_norm_backward_elemt" [attr-defined] +torch/nn/modules/_functions.py:196:28: error: Module has no attribute "zeros" [attr-defined] +torch/nn/modules/_functions.py:236:9: error: Module has no attribute "pow" [attr-defined] +torch/nn/modules/_functions.py:263:9: error: Module has no attribute "pow" [attr-defined] +torch/nn/modules/_functions.py:287:9: error: Module has no attribute "pow" [attr-defined] +torch/nn/modules/_functions.py:292:13: error: Module has no attribute "mul" [attr-defined] +torch/nn/modules/_functions.py:294:13: error: Module has no attribute "sum" [attr-defined] +torch/fx/operator_schemas.py:61:19: error: Module has no attribute "nonzero" [attr-defined] +torch/fx/operator_schemas.py:73:15: error: Module has no attribute "device" [attr-defined] +torch/fx/operator_schemas.py:74:15: error: Module has no attribute "layout" [attr-defined] +torch/fx/operator_schemas.py:78:16: error: Module has no attribute "qscheme" [attr-defined] +torch/fx/operator_schemas.py:89:2: error: Name "torch._C.JitType" is not defined [name-defined] +torch/fx/operator_schemas.py:99:16: error: Name "torch._C.FunctionSchema" is not defined [name-defined] +torch/fx/operator_schemas.py:155:16: error: Name "torch._C.FunctionSchema" is not defined [name-defined] +torch/fx/operator_schemas.py:237:19: error: Module has no attribute "_jit_get_schemas_for_operator" [attr-defined] +torch/fx/operator_schemas.py:328:51: error: Module has no attribute "dtype" [attr-defined] +torch/fx/node.py:12:1: error: Module "torch._C" has no attribute "_fx_map_aggregate" [attr-defined] +torch/fx/node.py:12:1: error: Module "torch._C" has no attribute "_fx_map_arg" [attr-defined] +torch/fx/node.py:12:1: error: Module "torch._C" has no attribute "_NodeBase" [attr-defined] +torch/fx/node.py:37:5: error: Name "torch.dtype" is not defined [name-defined] +torch/fx/node.py:39:5: error: Name "torch.device" is not defined [name-defined] +torch/fx/node.py:40:5: error: Name "torch.memory_format" is not defined [name-defined] +torch/fx/node.py:41:5: error: Name "torch.layout" is not defined [name-defined] +torch/fx/node.py:83:5: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/fx/node.py:92:5: error: Module has no attribute "_assert_async" [attr-defined] +torch/fx/node.py:640:21: error: Module has no attribute "sparse_csc" [attr-defined] +torch/fx/node.py:641:21: error: Module has no attribute "sparse_csr" [attr-defined] +torch/fx/node.py:738:17: error: Module has no attribute "rand" [attr-defined] +torch/fx/node.py:739:17: error: Module has no attribute "randn" [attr-defined] +torch/fx/node.py:740:17: error: Module has no attribute "randint" [attr-defined] +torch/fx/node.py:741:17: error: Module has no attribute "randperm" [attr-defined] +torch/fx/node.py:742:17: error: Module has no attribute "rand_like" [attr-defined] +torch/fx/node.py:743:17: error: Module has no attribute "randn_like" [attr-defined] +torch/fx/node.py:744:17: error: Module has no attribute "randint_like" [attr-defined] +torch/fx/node.py:745:17: error: Module has no attribute "normal" [attr-defined] +torch/fx/node.py:746:17: error: Module has no attribute "poisson" [attr-defined] +torch/fx/node.py:747:17: error: Module has no attribute "bernoulli" [attr-defined] +torch/fx/node.py:748:17: error: Module has no attribute "multinomial" [attr-defined] +torch/fx/graph.py:23:1: error: Module "torch._C" has no attribute "_fx_map_arg" [attr-defined] +torch/fx/graph.py:23:1: error: Module "torch._C" has no attribute "_NodeIter" [attr-defined] +torch/fx/graph.py:89:64: error: Module has no attribute "device" [attr-defined] +torch/fx/graph.py:476:48: error: Module has no attribute "device" [attr-defined] +torch/fx/graph.py:684:21: error: Module has no attribute "sparse_csc" [attr-defined] +torch/fx/graph.py:685:21: error: Module has no attribute "sparse_csr" [attr-defined] +torch/fx/_symbolic_trace.py:44:19: error: Name "torch.ScriptObject" is not defined [name-defined] +torch/fx/experimental/proxy_tensor.py:105:21: error: Module has no attribute "ScriptObject" [attr-defined] +torch/fx/experimental/proxy_tensor.py:106:30: error: Name "torch.ScriptObject" is not defined [name-defined] +torch/fx/experimental/proxy_tensor.py:128:5: error: Module has no attribute "Size" [attr-defined] +torch/fx/experimental/proxy_tensor.py:144:38: error: Module has no attribute "Size" [attr-defined] +torch/fx/experimental/proxy_tensor.py:614:24: error: Module has no attribute "empty_strided" [attr-defined] +torch/fx/experimental/proxy_tensor.py:952:18: error: Module has no attribute "bfloat16" [attr-defined] +torch/fx/experimental/proxy_tensor.py:952:34: error: Module has no attribute "float16" [attr-defined] +torch/fx/experimental/proxy_tensor.py:1073:8: error: Module has no attribute "Tag" [attr-defined] +torch/fx/experimental/proxy_tensor.py:1190:9: error: Module has no attribute "Tag" [attr-defined] +torch/fx/experimental/proxy_tensor.py:1411:53: error: Module has no attribute "Tag" [attr-defined] +torch/fx/experimental/proxy_tensor.py:1569:22: error: Name "torch._C._TensorMeta" is not defined [name-defined] +torch/fx/experimental/proxy_tensor.py:1599:22: error: Name "torch._C._TensorMeta" is not defined [name-defined] +torch/fx/experimental/proxy_tensor.py:1616:17: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/fx/experimental/proxy_tensor.py:1623:24: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/fx/experimental/proxy_tensor.py:1670:14: error: Module has no attribute "DispatchKey" [attr-defined] +torch/fx/experimental/proxy_tensor.py:1679:26: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/fx/experimental/proxy_tensor.py:1693:22: error: Name "torch._C._TensorMeta" is not defined [name-defined] +torch/fx/experimental/proxy_tensor.py:1707:51: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/fx/experimental/proxy_tensor.py:1733:22: error: Name "torch._C._TensorMeta" is not defined [name-defined] +torch/fx/experimental/proxy_tensor.py:1946:5: error: Function is missing a type annotation [no-untyped-def] +torch/fx/experimental/proxy_tensor.py:1955:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/fx/experimental/proxy_tensor.py:1968:9: error: Function is missing a return type annotation [no-untyped-def] +torch/fx/experimental/proxy_tensor.py:1974:9: error: Function is missing a type annotation [no-untyped-def] +torch/fx/experimental/proxy_tensor.py:1974:9: error: All conditional function variants must have identical signatures [misc] +torch/fx/experimental/proxy_tensor.py:1974:9: note: Original: +torch/fx/experimental/proxy_tensor.py:1974:9: note: def wrap_fn(primals: list[Any], tangents: list[Any]) -> Any +torch/fx/experimental/proxy_tensor.py:1974:9: note: Redefinition: +torch/fx/experimental/proxy_tensor.py:1974:9: note: def wrap_fn(*args: Any) -> Any +torch/fx/experimental/proxy_tensor.py:1998:17: error: Module has no attribute "is_autocast_cache_enabled" [attr-defined] +torch/fx/experimental/proxy_tensor.py:1999:5: error: Module has no attribute "set_autocast_cache_enabled" [attr-defined] +torch/fx/experimental/proxy_tensor.py:2003:9: error: Module has no attribute "set_autocast_cache_enabled" [attr-defined] +torch/fx/experimental/proxy_tensor.py:2537:36: error: Module has no attribute "ScriptObject" [attr-defined] +torch/fx/experimental/proxy_tensor.py:2723:9: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/fx/experimental/proxy_tensor.py:2725:12: error: Module has no attribute "_get_dispatch_mode" [attr-defined] +torch/fx/experimental/proxy_tensor.py:2725:40: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/fx/experimental/proxy_tensor.py:2754:32: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/fx/experimental/proxy_tensor.py:2813:17: error: Module has no attribute "_get_dispatch_mode" [attr-defined] +torch/fx/experimental/proxy_tensor.py:2813:45: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/distributed/utils.py:47:21: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/utils.py:60:16: error: Module has no attribute "is_floating_point" [attr-defined] +torch/distributed/utils.py:87:31: error: Name "torch.device" is not defined [name-defined] +torch/distributed/utils.py:93:31: error: Name "torch.device" is not defined [name-defined] +torch/distributed/utils.py:167:48: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/utils.py:261:20: error: Name "torch.device" is not defined [name-defined] +torch/distributed/distributed_c10d.py:24:1: error: Module "torch._C" has no attribute "_DistStoreError" [attr-defined] +torch/distributed/distributed_c10d.py:384:27: error: Module has no attribute "_get_accelerator" [attr-defined] +torch/distributed/distributed_c10d.py:836:10: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:846:69: error: Name "torch.device" is not defined [name-defined] +torch/distributed/distributed_c10d.py:913:12: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:914:18: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:1203:17: error: Module has no attribute "float32" [attr-defined] +torch/distributed/distributed_c10d.py:1203:50: error: Module has no attribute "complex64" [attr-defined] +torch/distributed/distributed_c10d.py:1203:71: error: Module has no attribute "complex128" [attr-defined] +torch/distributed/distributed_c10d.py:1410:55: error: Name "torch.device" is not defined [name-defined] +torch/distributed/distributed_c10d.py:1421:27: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:1424:22: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:1436:35: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:1523:12: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:1524:39: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:1557:8: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:1558:38: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:1561:8: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:1562:38: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:1586:31: error: Name "torch.device" is not defined [name-defined] +torch/distributed/distributed_c10d.py:1720:21: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:1723:34: error: Item "int" of "Any | int" has no attribute "type" [union-attr] +torch/distributed/distributed_c10d.py:1725:27: error: Item "int" of "Any | int" has no attribute "type" [union-attr] +torch/distributed/distributed_c10d.py:1731:12: error: Item "int" of "Any | int" has no attribute "index" [union-attr] +torch/distributed/distributed_c10d.py:1734:12: error: Item "int" of "Any | int" has no attribute "index" [union-attr] +torch/distributed/distributed_c10d.py:1748:58: error: Item "int" of "Any | int" has no attribute "type" [union-attr] +torch/distributed/distributed_c10d.py:1880:42: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:2182:38: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:2187:30: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:2337:35: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:2486:18: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/distributed_c10d.py:2526:18: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/distributed_c10d.py:2638:22: error: Name "torch.device" is not defined [name-defined] +torch/distributed/distributed_c10d.py:2740:22: error: Name "torch.device" is not defined [name-defined] +torch/distributed/distributed_c10d.py:2903:18: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/distributed_c10d.py:2987:18: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/distributed_c10d.py:3067:45: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/distributed_c10d.py:3145:23: error: Module has no attribute "ByteTensor" [attr-defined] +torch/distributed/distributed_c10d.py:3155:22: error: Module has no attribute "LongTensor" [attr-defined] +torch/distributed/distributed_c10d.py:3241:27: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/distributed_c10d.py:3242:27: error: Module has no attribute "long" [attr-defined] +torch/distributed/distributed_c10d.py:3252:31: error: Module has no attribute "empty" [attr-defined] +torch/distributed/distributed_c10d.py:3253:45: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/distributed_c10d.py:3263:30: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/distributed_c10d.py:3357:27: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/distributed_c10d.py:3358:27: error: Module has no attribute "long" [attr-defined] +torch/distributed/distributed_c10d.py:3372:35: error: Module has no attribute "empty" [attr-defined] +torch/distributed/distributed_c10d.py:3373:49: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/distributed_c10d.py:3394:30: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/distributed_c10d.py:3404:22: error: Name "torch.device" is not defined [name-defined] +torch/distributed/distributed_c10d.py:3491:27: error: Module has no attribute "cat" [attr-defined] +torch/distributed/distributed_c10d.py:3507:25: error: Module has no attribute "cat" [attr-defined] +torch/distributed/distributed_c10d.py:3522:22: error: Name "torch.device" is not defined [name-defined] +torch/distributed/distributed_c10d.py:3604:27: error: Module has no attribute "empty" [attr-defined] +torch/distributed/distributed_c10d.py:3605:33: error: Module has no attribute "long" [attr-defined] +torch/distributed/distributed_c10d.py:3626:21: error: Module has no attribute "empty" [attr-defined] +torch/distributed/distributed_c10d.py:3626:21: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/distributed/distributed_c10d.py:3627:9: error: Module has no attribute "sum" [attr-defined] +torch/distributed/distributed_c10d.py:3627:9: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/distributed/distributed_c10d.py:3628:15: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/distributed_c10d.py:3653:34: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/distributed_c10d.py:3664:22: error: Name "torch.device" is not defined [name-defined] +torch/distributed/distributed_c10d.py:3754:31: error: Module has no attribute "cat" [attr-defined] +torch/distributed/distributed_c10d.py:3756:31: error: Module has no attribute "empty" [attr-defined] +torch/distributed/distributed_c10d.py:3757:37: error: Module has no attribute "long" [attr-defined] +torch/distributed/distributed_c10d.py:3772:29: error: Module has no attribute "cat" [attr-defined] +torch/distributed/distributed_c10d.py:3774:25: error: Module has no attribute "empty" [attr-defined] +torch/distributed/distributed_c10d.py:3774:25: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/distributed/distributed_c10d.py:3775:13: error: Module has no attribute "sum" [attr-defined] +torch/distributed/distributed_c10d.py:3775:13: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/distributed/distributed_c10d.py:3776:19: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/distributed_c10d.py:3786:38: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/distributed_c10d.py:3896:27: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/distributed_c10d.py:3896:51: error: Module has no attribute "long" [attr-defined] +torch/distributed/distributed_c10d.py:3901:21: error: Module has no attribute "empty" [attr-defined] +torch/distributed/distributed_c10d.py:3902:39: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/distributed_c10d.py:3912:23: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/distributed_c10d.py:3912:47: error: Module has no attribute "long" [attr-defined] +torch/distributed/distributed_c10d.py:4008:38: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/distributed_c10d.py:4010:53: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/distributed_c10d.py:4100:14: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/distributed_c10d.py:4105:14: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/distributed_c10d.py:4232:39: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/distributed_c10d.py:4236:38: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/distributed_c10d.py:4419:38: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/distributed_c10d.py:4421:53: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/distributed_c10d.py:4753:17: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/distributed_c10d.py:4755:18: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/distributed_c10d.py:4878:38: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/distributed_c10d.py:4881:38: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/distributed_c10d.py:4933:14: error: Module has no attribute "_get_accelerator" [attr-defined] +torch/distributed/distributed_c10d.py:4938:23: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:4944:23: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:5194:45: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:5260:49: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:5293:25: error: Name "torch.device" is not defined [name-defined] +torch/distributed/distributed_c10d.py:5383:25: error: Name "torch.device" is not defined [name-defined] +torch/distributed/distributed_c10d.py:5898:55: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:5900:55: error: Module has no attribute "device" [attr-defined] +torch/distributed/distributed_c10d.py:6081:26: error: Module has no attribute "device" [attr-defined] +torch/distributed/device_mesh.py:198:13: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/device_mesh.py:209:44: error: Module has no attribute "int" [attr-defined] +torch/distributed/device_mesh.py:211:26: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/device_mesh.py:211:65: error: Module has no attribute "int" [attr-defined] +torch/distributed/device_mesh.py:290:31: error: "bool" has no attribute "nonzero" [attr-defined] +torch/distributed/device_mesh.py:310:25: error: "bool" has no attribute "nonzero" [attr-defined] +torch/distributed/device_mesh.py:432:51: error: Module has no attribute "device" [attr-defined] +torch/distributed/device_mesh.py:949:24: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/device_mesh.py:949:70: error: Module has no attribute "int" [attr-defined] +torch/distributed/device_mesh.py:974:40: error: Module has no attribute "int" [attr-defined] +torch/distributed/device_mesh.py:976:22: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/device_mesh.py:976:61: error: Module has no attribute "int" [attr-defined] +torch/distributed/device_mesh.py:1362:14: error: Module has no attribute "device" [attr-defined] +torch/distributed/device_mesh.py:1363:24: error: Module has no attribute "arange" [attr-defined] +torch/distributed/device_mesh.py:1363:59: error: Module has no attribute "int" [attr-defined] +torch/distributed/rpc/options.py:9:30: error: Name "torch.device" is not defined [name-defined] +torch/distributed/rpc/options.py:14:39: error: Name "torch.device" is not defined [name-defined] +torch/distributed/rpc/options.py:15:14: error: Module has no attribute "device" [attr-defined] +torch/distributed/rpc/options.py:26:11: error: Name "torch.device" is not defined [name-defined] +torch/distributed/rpc/options.py:27:27: error: Name "torch.device" is not defined [name-defined] +torch/distributed/rpc/options.py:28:23: error: Name "torch.device" is not defined [name-defined] +torch/distributed/rpc/options.py:30:16: error: Module has no attribute "device" [attr-defined] +torch/distributed/rpc/options.py:41:56: error: Name "torch.device" is not defined [name-defined] +torch/distributed/rpc/api.py:649:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/rpc/api.py:827:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/rpc/api.py:921:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/rpc/__init__.py:28:27: error: Module has no attribute "_rpc_init" [attr-defined] +torch/distributed/rpc/__init__.py:127:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/__init__.py:29:27: error: Module has no attribute "_c10d_init" [attr-defined] +torch/distributed/__init__.py:33:13: error: Module has no attribute "_DistError" [attr-defined] +torch/distributed/__init__.py:34:20: error: Module has no attribute "_DistBackendError" [attr-defined] +torch/distributed/__init__.py:35:20: error: Module has no attribute "_DistNetworkError" [attr-defined] +torch/distributed/__init__.py:36:18: error: Module has no attribute "_DistStoreError" [attr-defined] +torch/distributed/__init__.py:37:19: error: Module has no attribute "_DistQueueEmptyError" [attr-defined] +torch/distributed/__init__.py:119:23: error: Module has no attribute "_meta_in_tls_dispatch_include" [attr-defined] +torch/distributed/__init__.py:121:9: error: Module has no attribute "_set_meta_in_tls_dispatch_include" [attr-defined] +torch/distributed/__init__.py:125:13: error: Module has no attribute "_set_meta_in_tls_dispatch_include" [attr-defined] +torch/autograd/profiler_util.py:975:21: error: Module has no attribute "_demangle" [attr-defined] +torch/autograd/profiler_util.py:1439:5: error: Name "lines" already defined on line 1423 [no-redef] +torch/autograd/gradcheck.py:38:9: error: Module has no attribute "sparse_csr" [attr-defined] +torch/autograd/gradcheck.py:39:9: error: Module has no attribute "sparse_csc" [attr-defined] +torch/autograd/gradcheck.py:40:9: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/autograd/gradcheck.py:41:9: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/autograd/gradcheck.py:46:63: error: Module has no attribute "sparse_coo" [attr-defined] +torch/autograd/gradcheck.py:62:55: error: Module has no attribute "strided" [attr-defined] +torch/autograd/gradcheck.py:76:60: error: Module has no attribute "strided" [attr-defined] +torch/autograd/gradcheck.py:104:22: error: Module has no attribute "sparse_coo" [attr-defined] +torch/autograd/gradcheck.py:107:15: error: Module has no attribute "ones" [attr-defined] +torch/autograd/gradcheck.py:107:59: error: Module has no attribute "int8" [attr-defined] +torch/autograd/gradcheck.py:109:18: error: Module has no attribute "zeros" [attr-defined] +torch/autograd/gradcheck.py:118:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/autograd/gradcheck.py:126:13: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/autograd/gradcheck.py:133:29: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/autograd/gradcheck.py:133:47: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/autograd/gradcheck.py:138:29: error: Module has no attribute "sparse_csr" [attr-defined] +torch/autograd/gradcheck.py:138:47: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/autograd/gradcheck.py:142:50: error: Module has no attribute "sparse_coo" [attr-defined] +torch/autograd/gradcheck.py:189:31: error: Module has no attribute "sparse_coo" [attr-defined] +torch/autograd/gradcheck.py:192:33: error: Module has no attribute "sparse_csr" [attr-defined] +torch/autograd/gradcheck.py:193:25: error: Module has no attribute "_convert_indices_from_csr_to_coo" [attr-defined] +torch/autograd/gradcheck.py:197:33: error: Module has no attribute "sparse_csc" [attr-defined] +torch/autograd/gradcheck.py:198:25: error: Module has no attribute "_convert_indices_from_csr_to_coo" [attr-defined] +torch/autograd/gradcheck.py:202:33: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/autograd/gradcheck.py:206:17: error: Module has no attribute "_convert_indices_from_csr_to_coo" [attr-defined] +torch/autograd/gradcheck.py:210:23: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/autograd/gradcheck.py:212:21: error: Module has no attribute "stack" [attr-defined] +torch/autograd/gradcheck.py:213:25: error: Module has no attribute "where" [attr-defined] +torch/autograd/gradcheck.py:213:37: error: Module has no attribute "ones" [attr-defined] +torch/autograd/gradcheck.py:220:33: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/autograd/gradcheck.py:224:17: error: Module has no attribute "_convert_indices_from_csr_to_coo" [attr-defined] +torch/autograd/gradcheck.py:228:23: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/autograd/gradcheck.py:230:21: error: Module has no attribute "stack" [attr-defined] +torch/autograd/gradcheck.py:231:25: error: Module has no attribute "where" [attr-defined] +torch/autograd/gradcheck.py:231:37: error: Module has no attribute "ones" [attr-defined] +torch/autograd/gradcheck.py:559:52: error: Module has no attribute "zeros_like" [attr-defined] +torch/autograd/gradcheck.py:752:63: error: Module has no attribute "strided" [attr-defined] +torch/autograd/gradcheck.py:837:22: error: Module has no attribute "view_as_real" [attr-defined] +torch/autograd/gradcheck.py:908:21: error: Module has no attribute "zeros_like" [attr-defined] +torch/autograd/gradcheck.py:942:34: error: Module has no attribute "float64" [attr-defined] +torch/autograd/gradcheck.py:942:64: error: Module has no attribute "complex128" [attr-defined] +torch/autograd/gradcheck.py:1004:16: error: Module has no attribute "ne" [attr-defined] +torch/autograd/gradcheck.py:1019:23: error: Module has no attribute "zeros_like" [attr-defined] +torch/autograd/gradcheck.py:1111:29: error: Module has no attribute "zeros" [attr-defined] +torch/autograd/gradcheck.py:1120:21: error: Module has no attribute "randn_like" [attr-defined] +torch/autograd/gradcheck.py:1122:21: error: Module has no attribute "stack" [attr-defined] +torch/autograd/gradcheck.py:1125:33: error: Module has no attribute "stack" [attr-defined] +torch/autograd/gradcheck.py:1133:16: error: Module has no attribute "allclose" [attr-defined] +torch/autograd/gradcheck.py:1168:21: error: Module has no attribute "randn_like" [attr-defined] +torch/autograd/gradcheck.py:1171:17: error: Module has no attribute "stack" [attr-defined] +torch/autograd/gradcheck.py:1179:32: error: Module has no attribute "stack" [attr-defined] +torch/autograd/gradcheck.py:1190:12: error: Module has no attribute "allclose" [attr-defined] +torch/autograd/gradcheck.py:1207:13: error: Module has no attribute "zeros_like" [attr-defined] +torch/autograd/gradcheck.py:1215:58: error: Module has no attribute "strided" [attr-defined] +torch/autograd/gradcheck.py:1239:20: error: Module has no attribute "allclose" [attr-defined] +torch/autograd/gradcheck.py:1239:39: error: Module has no attribute "zeros_like" [attr-defined] +torch/autograd/gradcheck.py:1271:52: error: Module has no attribute "zeros_like" [attr-defined] +torch/autograd/gradcheck.py:1287:61: error: Module has no attribute "zeros_like" [attr-defined] +torch/autograd/gradcheck.py:1304:28: error: Module has no attribute "allclose" [attr-defined] +torch/autograd/gradcheck.py:1335:13: error: Module has no attribute "zeros_like" [attr-defined] +torch/autograd/gradcheck.py:1442:32: error: Module has no attribute "real" [attr-defined] +torch/autograd/gradcheck.py:1442:65: error: Module has no attribute "imag" [attr-defined] +torch/autograd/gradcheck.py:1675:21: error: Module has no attribute "promote_types" [attr-defined] +torch/autograd/gradcheck.py:1678:12: error: Module has no attribute "allclose" [attr-defined] +torch/autograd/gradcheck.py:1682:17: error: Module has no attribute "complex128" [attr-defined] +torch/autograd/gradcheck.py:1683:16: error: Module has no attribute "float64" [attr-defined] +torch/autograd/gradcheck.py:1684:19: error: Module has no attribute "complex64" [attr-defined] +torch/autograd/gradcheck.py:1685:16: error: Module has no attribute "float32" [attr-defined] +torch/autograd/gradcheck.py:1694:20: error: Module has no attribute "sparse_coo" [attr-defined] +torch/autograd/gradcheck.py:1700:13: error: Module has no attribute "rand" [attr-defined] +torch/autograd/gradcheck.py:1705:15: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/autograd/gradcheck.py:1707:25: error: Module has no attribute "sparse_csr" [attr-defined] +torch/autograd/gradcheck.py:1707:43: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/autograd/gradcheck.py:1714:13: error: Module has no attribute "rand" [attr-defined] +torch/autograd/gradcheck.py:1719:15: error: Module has no attribute "sparse_compressed_tensor" [attr-defined] +torch/autograd/gradcheck.py:1729:15: error: Module has no attribute "rand" [attr-defined] +torch/autograd/gradcheck.py:1802:21: error: Module has no attribute "allclose" [attr-defined] +torch/autograd/gradcheck.py:1826:13: error: Module has no attribute "Generator" [attr-defined] +torch/autograd/gradcheck.py:1831:14: error: Module has no attribute "device" [attr-defined] +torch/autograd/gradcheck.py:2248:22: error: Module has no attribute "double" [attr-defined] +torch/autograd/function.py:297:25: error: Name "_C._FunctionBase" is not defined [name-defined] +torch/autograd/function.py:350:5: error: Name "_C._FunctionBase" is not defined [name-defined] +torch/autograd/function.py:580:16: error: Module has no attribute "_are_functorch_transforms_active" [attr-defined] +torch/autograd/function.py:612:16: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/autograd/function.py:754:42: error: Module has no attribute "Value" [attr-defined] +torch/autograd/__init__.py:74:16: error: Module has no attribute "Size" [attr-defined] +torch/autograd/__init__.py:103:24: error: Module has no attribute "Size" [attr-defined] +torch/autograd/__init__.py:135:33: error: Module has no attribute "is_same_size" [attr-defined] +torch/autograd/__init__.py:220:25: error: Module has no attribute "ones" [attr-defined] +torch/autograd/__init__.py:230:25: error: Module has no attribute "ones_like" [attr-defined] +torch/autograd/__init__.py:230:60: error: Module has no attribute "preserve_format" [attr-defined] +torch/autograd/__init__.py:316:8: error: Module has no attribute "_are_functorch_transforms_active" [attr-defined] +torch/autograd/__init__.py:535:18: error: Module has no attribute "zeros_like" [attr-defined] +torch/autograd/__init__.py:570:8: error: Module has no attribute "_autograd_init" [attr-defined] +torch/autograd/__init__.py:607:5: error: Module has no attribute "_register_py_class_for_device" [attr-defined] +torch/autograd/__init__.py:610:29: error: Module has no attribute "_is_multithreading_enabled" [attr-defined] +torch/autograd/__init__.py:611:1: error: Module has no attribute "_add_docstr" [attr-defined] +torch/autograd/__init__.py:615:26: error: Module has no attribute "_is_view_replay_enabled" [attr-defined] +torch/autograd/__init__.py:616:1: error: Module has no attribute "_add_docstr" [attr-defined] +torch/amp/autocast_mode.py:37:12: error: Module has no attribute "_is_autocast_available" [attr-defined] +torch/amp/autocast_mode.py:234:13: error: Module has no attribute "get_autocast_dtype" [attr-defined] +torch/amp/autocast_mode.py:247:36: error: Module has no attribute "bfloat16" [attr-defined] +torch/amp/autocast_mode.py:247:52: error: Module has no attribute "float16" [attr-defined] +torch/amp/autocast_mode.py:249:36: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/amp/autocast_mode.py:268:13: error: Module has no attribute "is_autocast_cache_enabled" [attr-defined] +torch/amp/autocast_mode.py:288:40: error: Module has no attribute "bfloat16" [attr-defined] +torch/amp/autocast_mode.py:306:44: error: Module has no attribute "bfloat16" [attr-defined] +torch/amp/autocast_mode.py:322:35: error: Module has no attribute "is_autocast_cache_enabled" [attr-defined] +torch/amp/autocast_mode.py:323:21: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/amp/autocast_mode.py:324:31: error: Module has no attribute "get_autocast_dtype" [attr-defined] +torch/amp/autocast_mode.py:325:9: error: Module has no attribute "set_autocast_enabled" [attr-defined] +torch/amp/autocast_mode.py:326:9: error: Module has no attribute "set_autocast_dtype" [attr-defined] +torch/amp/autocast_mode.py:326:9: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/amp/autocast_mode.py:327:9: error: Module has no attribute "autocast_increment_nesting" [attr-defined] +torch/amp/autocast_mode.py:328:9: error: Module has no attribute "set_autocast_cache_enabled" [attr-defined] +torch/amp/autocast_mode.py:333:12: error: Module has no attribute "_is_torch_function_mode_enabled" [attr-defined] +torch/amp/autocast_mode.py:356:12: error: Module has no attribute "autocast_decrement_nesting" [attr-defined] +torch/amp/autocast_mode.py:357:13: error: Module has no attribute "clear_autocast_cache" [attr-defined] +torch/amp/autocast_mode.py:358:9: error: Module has no attribute "set_autocast_enabled" [attr-defined] +torch/amp/autocast_mode.py:359:9: error: Module has no attribute "set_autocast_dtype" [attr-defined] +torch/amp/autocast_mode.py:360:9: error: Module has no attribute "set_autocast_cache_enabled" [attr-defined] +torch/amp/autocast_mode.py:365:12: error: Module has no attribute "_is_torch_function_mode_enabled" [attr-defined] +torch/amp/autocast_mode.py:389:8: error: Module has no attribute "_is_torch_function_mode_enabled" [attr-defined] +torch/amp/autocast_mode.py:399:8: error: Module has no attribute "_is_torch_function_mode_enabled" [attr-defined] +torch/amp/autocast_mode.py:411:37: error: Module has no attribute "float64" [attr-defined] +torch/amp/autocast_mode.py:474:26: error: Module has no attribute "get_autocast_dtype" [attr-defined] +torch/amp/autocast_mode.py:476:42: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/amp/autocast_mode.py:479:32: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/_subclasses/meta_utils.py:177:56: error: Module has no attribute "sparse_coo" [attr-defined] +torch/_subclasses/meta_utils.py:180:41: error: Name "torch.layout" is not defined [name-defined] +torch/_subclasses/meta_utils.py:182:9: error: Module has no attribute "sparse_csr" [attr-defined] +torch/_subclasses/meta_utils.py:183:9: error: Module has no attribute "sparse_csc" [attr-defined] +torch/_subclasses/meta_utils.py:184:9: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_subclasses/meta_utils.py:185:9: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/_subclasses/meta_utils.py:292:25: error: Module has no attribute "_is_functional_tensor" [attr-defined] +torch/_subclasses/meta_utils.py:343:21: error: Module has no attribute "_from_functional_tensor" [attr-defined] +torch/_subclasses/meta_utils.py:347:33: error: Module has no attribute "_functionalization_reapply_views_tls" [attr-defined] +torch/_subclasses/meta_utils.py:433:45: error: Module has no attribute "sparse_csr" [attr-defined] +torch/_subclasses/meta_utils.py:433:63: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_subclasses/meta_utils.py:438:45: error: Module has no attribute "sparse_csr" [attr-defined] +torch/_subclasses/meta_utils.py:438:63: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_subclasses/meta_utils.py:443:45: error: Module has no attribute "sparse_csc" [attr-defined] +torch/_subclasses/meta_utils.py:443:63: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/_subclasses/meta_utils.py:448:45: error: Module has no attribute "sparse_csc" [attr-defined] +torch/_subclasses/meta_utils.py:448:63: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/_subclasses/meta_utils.py:582:68: error: Name "torch.device" is not defined [name-defined] +torch/_subclasses/meta_utils.py:587:19: error: Name "torch.device" is not defined [name-defined] +torch/_subclasses/meta_utils.py:607:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_subclasses/meta_utils.py:608:13: error: Name "torch.device" is not defined [name-defined] +torch/_subclasses/meta_utils.py:626:13: error: Name "torch.layout" is not defined [name-defined] +torch/_subclasses/meta_utils.py:626:28: error: Module has no attribute "strided" [attr-defined] +torch/_subclasses/meta_utils.py:721:31: error: Module has no attribute "device" [attr-defined] +torch/_subclasses/meta_utils.py:721:45: error: Module has no attribute "dtype" [attr-defined] +torch/_subclasses/meta_utils.py:721:58: error: Module has no attribute "layout" [attr-defined] +torch/_subclasses/meta_utils.py:836:25: error: Module has no attribute "empty" [attr-defined] +torch/_subclasses/meta_utils.py:836:51: error: Module has no attribute "uint8" [attr-defined] +torch/_subclasses/meta_utils.py:858:32: error: Name "torch.device" is not defined [name-defined] +torch/_subclasses/meta_utils.py:902:20: error: Module has no attribute "_dispatch_tls_local_exclude_set" [attr-defined] +torch/_subclasses/meta_utils.py:903:13: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_subclasses/meta_utils.py:986:20: error: Module has no attribute "empty_strided" [attr-defined] +torch/_subclasses/meta_utils.py:1343:36: error: Module has no attribute "sparse_coo" [attr-defined] +torch/_subclasses/meta_utils.py:1373:37: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_subclasses/meta_utils.py:1373:55: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/_subclasses/meta_utils.py:1381:37: error: Module has no attribute "sparse_csr" [attr-defined] +torch/_subclasses/meta_utils.py:1381:55: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_subclasses/meta_utils.py:1435:33: error: Module has no attribute "empty_strided" [attr-defined] +torch/_subclasses/meta_utils.py:1444:45: error: Module has no attribute "empty_strided" [attr-defined] +torch/_subclasses/meta_utils.py:1492:49: error: Module has no attribute "_DisableFuncTorch" [attr-defined] +torch/_subclasses/meta_utils.py:1535:41: error: Module has no attribute "empty_strided" [attr-defined] +torch/_subclasses/meta_utils.py:1569:25: error: Module has no attribute "_to_functional_tensor" [attr-defined] +torch/_subclasses/meta_utils.py:1603:40: error: Name "torch.dtype" is not defined [name-defined] +torch/_subclasses/meta_utils.py:1616:35: error: Module has no attribute "_dispatch_tls_is_dispatch_key_excluded" [attr-defined] +torch/_subclasses/meta_utils.py:1617:25: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_subclasses/meta_utils.py:1619:21: error: Module has no attribute "_dispatch_tls_set_dispatch_key_excluded" [attr-defined] +torch/_subclasses/meta_utils.py:1620:25: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_subclasses/meta_utils.py:1626:64: error: Module has no attribute "view_as_real" [attr-defined] +torch/_subclasses/meta_utils.py:1629:33: error: Module has no attribute "view_as_complex" [attr-defined] +torch/_subclasses/meta_utils.py:1689:25: error: Module has no attribute "_dispatch_tls_set_dispatch_key_excluded" [attr-defined] +torch/_subclasses/meta_utils.py:1690:29: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_subclasses/meta_utils.py:1720:37: error: Module has no attribute "empty_strided" [attr-defined] +torch/_subclasses/meta_utils.py:1732:49: error: Module has no attribute "empty_strided" [attr-defined] +torch/_subclasses/meta_utils.py:1839:17: error: Module has no attribute "_set_conj" [attr-defined] +torch/_subclasses/meta_utils.py:1841:17: error: Module has no attribute "_set_neg" [attr-defined] +torch/_subclasses/functional_tensor.py:13:1: error: Module "torch._C" has no attribute "_functionalization_reapply_views_tls" [attr-defined] +torch/_subclasses/functional_tensor.py:66:17: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_subclasses/functional_tensor.py:75:28: error: Module has no attribute "_additional_keys_to_prop_for_wrapper_tensors" [attr-defined] +torch/_subclasses/functional_tensor.py:76:9: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_subclasses/functional_tensor.py:102:16: error: Module has no attribute "_is_functional_tensor" [attr-defined] +torch/_subclasses/functional_tensor.py:121:53: error: Module has no attribute "_dispatch_keys" [attr-defined] +torch/_subclasses/functional_tensor.py:146:9: error: Module has no attribute "_set_throw_on_mutable_data_ptr" [attr-defined] +torch/_subclasses/functional_tensor.py:151:17: error: Module has no attribute "is_inference_mode_enabled" [attr-defined] +torch/_subclasses/functional_tensor.py:194:29: error: Module has no attribute "_from_functional_tensor" [attr-defined] +torch/_subclasses/functional_tensor.py:197:25: error: Module has no attribute "_from_functional_tensor" [attr-defined] +torch/_subclasses/functional_tensor.py:216:20: error: Module has no attribute "_is_functional_tensor" [attr-defined] +torch/_subclasses/functional_tensor.py:221:24: error: Module has no attribute "_to_functional_tensor" [attr-defined] +torch/_subclasses/functional_tensor.py:228:46: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_subclasses/functional_tensor.py:239:16: error: Module has no attribute "_from_functional_tensor" [attr-defined] +torch/_subclasses/functional_tensor.py:242:16: error: Module has no attribute "_is_functional_tensor_base" [attr-defined] +torch/_subclasses/functional_tensor.py:245:9: error: Module has no attribute "_functionalize_replace" [attr-defined] +torch/_subclasses/functional_tensor.py:248:9: error: Module has no attribute "_functionalize_commit_update" [attr-defined] +torch/_subclasses/functional_tensor.py:251:9: error: Module has no attribute "_functionalize_sync" [attr-defined] +torch/_subclasses/functional_tensor.py:254:9: error: Module has no attribute "_functionalize_mark_mutation_hidden_from_autograd" [attr-defined] +torch/_subclasses/functional_tensor.py:265:31: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_subclasses/functional_tensor.py:282:46: error: Module has no attribute "int8" [attr-defined] +torch/_subclasses/functional_tensor.py:283:46: error: Module has no attribute "device" [attr-defined] +torch/_subclasses/functional_tensor.py:284:50: error: Module has no attribute "bfloat16" [attr-defined] +torch/_subclasses/functional_tensor.py:285:46: error: Module has no attribute "uint8" [attr-defined] +torch/_subclasses/functional_tensor.py:286:48: error: Module has no attribute "float64" [attr-defined] +torch/_subclasses/functional_tensor.py:287:47: error: Module has no attribute "float32" [attr-defined] +torch/_subclasses/functional_tensor.py:288:46: error: Module has no attribute "bool" [attr-defined] +torch/_subclasses/functional_tensor.py:289:46: error: Module has no attribute "float16" [attr-defined] +torch/_subclasses/functional_tensor.py:290:45: error: Module has no attribute "int32" [attr-defined] +torch/_subclasses/functional_tensor.py:291:46: error: Module has no attribute "int64" [attr-defined] +torch/_subclasses/functional_tensor.py:313:26: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_subclasses/functional_tensor.py:340:38: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_subclasses/functional_tensor.py:342:21: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_subclasses/functional_tensor.py:344:20: error: Module has no attribute "_get_dispatch_mode" [attr-defined] +torch/_subclasses/functional_tensor.py:345:17: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_subclasses/functional_tensor.py:429:17: error: Module has no attribute "_dispatch_has_kernel" [attr-defined] +torch/_subclasses/functional_tensor.py:441:48: error: Module has no attribute "_is_functional_tensor" [attr-defined] +torch/_subclasses/functional_tensor.py:456:19: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_subclasses/functional_tensor.py:457:26: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_subclasses/functional_tensor.py:475:24: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_subclasses/functional_tensor.py:476:30: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_subclasses/functional_tensor.py:489:23: error: Module has no attribute "_dispatch_tls_is_dispatch_key_included" [attr-defined] +torch/_subclasses/functional_tensor.py:490:13: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_subclasses/functional_tensor.py:492:23: error: Module has no attribute "_dispatch_tls_is_dispatch_key_excluded" [attr-defined] +torch/_subclasses/functional_tensor.py:493:13: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_subclasses/functional_tensor.py:497:13: error: Module has no attribute "_dispatch_tls_local_include_set" [attr-defined] +torch/_subclasses/functional_tensor.py:498:15: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_subclasses/functional_tensor.py:498:39: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_subclasses/functional_tensor.py:501:13: error: Module has no attribute "_dispatch_tls_local_exclude_set" [attr-defined] +torch/_subclasses/functional_tensor.py:502:17: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_subclasses/functional_tensor.py:525:18: error: Module has no attribute "_ForceDispatchKeyGuard" [attr-defined] +torch/_subclasses/functional_tensor.py:550:33: error: Module has no attribute "_get_dispatch_mode" [attr-defined] +torch/_subclasses/functional_tensor.py:551:29: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_subclasses/functional_tensor.py:557:37: error: Module has no attribute "_from_functional_tensor" [attr-defined] +torch/_subclasses/functional_tensor.py:568:29: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_subclasses/functional_tensor.py:580:21: error: Module has no attribute "_disable_functionalization" [attr-defined] +torch/_subclasses/functional_tensor.py:583:23: error: Module has no attribute "_dispatch_tls_is_dispatch_key_included" [attr-defined] +torch/_subclasses/functional_tensor.py:584:13: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_subclasses/functional_tensor.py:586:23: error: Module has no attribute "_dispatch_tls_is_dispatch_key_excluded" [attr-defined] +torch/_subclasses/functional_tensor.py:587:13: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_subclasses/functional_tensor.py:606:13: error: Module has no attribute "Tag" [attr-defined] +torch/_subclasses/functional_tensor.py:624:32: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_subclasses/functional_tensor.py:646:28: error: Module has no attribute "_is_functional_tensor" [attr-defined] +torch/_subclasses/functional_tensor.py:649:16: error: Module has no attribute "_from_functional_tensor" [attr-defined] +torch/_subclasses/functional_tensor.py:652:25: error: Module has no attribute "_ExcludeDispatchKeyGuard" [attr-defined] +torch/_subclasses/functional_tensor.py:653:13: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_subclasses/functional_tensor.py:653:37: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_subclasses/functional_tensor.py:771:16: error: Module has no attribute "_ExcludeDispatchKeyGuard" [attr-defined] +torch/_subclasses/functional_tensor.py:772:13: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_subclasses/functional_tensor.py:772:37: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_subclasses/functional_tensor.py:776:9: error: Module has no attribute "_functionalize_replace" [attr-defined] +torch/_subclasses/functional_tensor.py:779:9: error: Module has no attribute "_functionalize_commit_update" [attr-defined] +torch/_subclasses/functional_tensor.py:782:9: error: Module has no attribute "_functionalize_sync" [attr-defined] +torch/_subclasses/functional_tensor.py:785:9: error: Module has no attribute "_functionalize_mark_mutation_hidden_from_autograd" [attr-defined] +torch/_subclasses/functional_tensor.py:822:9: error: Module has no attribute "_functionalize_replace" [attr-defined] +torch/_subclasses/functional_tensor.py:825:9: error: Module has no attribute "_functionalize_commit_update" [attr-defined] +torch/_subclasses/functional_tensor.py:828:9: error: Module has no attribute "_functionalize_sync" [attr-defined] +torch/_subclasses/functional_tensor.py:831:9: error: Module has no attribute "_functionalize_mark_mutation_hidden_from_autograd" [attr-defined] +torch/_subclasses/functional_tensor.py:836:16: error: Module has no attribute "_from_functional_tensor" [attr-defined] +torch/_subclasses/fake_tensor.py:162:11: error: Module has no attribute "_unset_dispatch_mode" [attr-defined] +torch/_subclasses/fake_tensor.py:162:41: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_subclasses/fake_tensor.py:167:13: error: Module has no attribute "_set_dispatch_mode" [attr-defined] +torch/_subclasses/fake_tensor.py:211:36: error: Module has no attribute "_is_functional_tensor" [attr-defined] +torch/_subclasses/fake_tensor.py:212:25: error: Module has no attribute "_functionalization_reapply_views_tls" [attr-defined] +torch/_subclasses/fake_tensor.py:236:36: error: Module has no attribute "_is_functional_tensor" [attr-defined] +torch/_subclasses/fake_tensor.py:237:25: error: Module has no attribute "_functionalization_reapply_views_tls" [attr-defined] +torch/_subclasses/fake_tensor.py:247:42: error: Name "torch._C._SchemaInfo" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:248:12: error: Module has no attribute "_SchemaInfo" [attr-defined] +torch/_subclasses/fake_tensor.py:277:25: error: Module has no attribute "strided" [attr-defined] +torch/_subclasses/fake_tensor.py:283:16: error: Module has no attribute "_is_functional_tensor" [attr-defined] +torch/_subclasses/fake_tensor.py:395:62: error: Name "torch.device" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:441:17: error: Module has no attribute "int64" [attr-defined] +torch/_subclasses/fake_tensor.py:441:30: error: Module has no attribute "int32" [attr-defined] +torch/_subclasses/fake_tensor.py:441:43: error: Module has no attribute "int16" [attr-defined] +torch/_subclasses/fake_tensor.py:441:56: error: Module has no attribute "int8" [attr-defined] +torch/_subclasses/fake_tensor.py:441:68: error: Module has no attribute "float64" [attr-defined] +torch/_subclasses/fake_tensor.py:485:31: error: Module has no attribute "int64" [attr-defined] +torch/_subclasses/fake_tensor.py:491:33: error: Module has no attribute "float64" [attr-defined] +torch/_subclasses/fake_tensor.py:507:17: error: Name "torch.device" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:509:33: error: Name "torch.DispatchKeySet" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:527:30: error: Name "torch.device" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:531:13: error: Module has no attribute "empty" [attr-defined] +torch/_subclasses/fake_tensor.py:533:18: error: Module has no attribute "zeros" [attr-defined] +torch/_subclasses/fake_tensor.py:543:19: error: Module has no attribute "_meta_in_tls_dispatch_include" [attr-defined] +torch/_subclasses/fake_tensor.py:546:10: error: Module has no attribute "_DisableTorchDispatch" [attr-defined] +torch/_subclasses/fake_tensor.py:550:14: error: Module has no attribute "_PreserveDispatchKeyGuard" [attr-defined] +torch/_subclasses/fake_tensor.py:551:13: error: Module has no attribute "_set_meta_in_tls_dispatch_include" [attr-defined] +torch/_subclasses/fake_tensor.py:561:12: error: Module has no attribute "_should_allow_numbers_as_tensors" [attr-defined] +torch/_subclasses/fake_tensor.py:655:18: error: Name "torch.device" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:677:29: error: Name "torch.DispatchKeySet" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:681:17: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_subclasses/fake_tensor.py:685:25: error: Name "torch.device" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:687:20: error: Module has no attribute "device" [attr-defined] +torch/_subclasses/fake_tensor.py:692:25: error: Name "torch.device" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:727:17: error: Name "torch.device" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:731:33: error: Name "torch.DispatchKeySet" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:741:13: error: Module has no attribute "_set_throw_on_mutable_data_ptr" [attr-defined] +torch/_subclasses/fake_tensor.py:743:13: error: Module has no attribute "_set_warn_deprecated_on_mutable_data_ptr" [attr-defined] +torch/_subclasses/fake_tensor.py:746:47: error: Module has no attribute "device" [attr-defined] +torch/_subclasses/fake_tensor.py:768:17: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/_subclasses/fake_tensor.py:773:26: error: Module has no attribute "device" [attr-defined] +torch/_subclasses/fake_tensor.py:777:26: error: Module has no attribute "device" [attr-defined] +torch/_subclasses/fake_tensor.py:840:24: error: Module has no attribute "device" [attr-defined] +torch/_subclasses/fake_tensor.py:885:31: error: Module has no attribute "_get_dispatch_mode" [attr-defined] +torch/_subclasses/fake_tensor.py:886:13: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_subclasses/fake_tensor.py:904:16: error: Name "torch.device" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:924:38: error: Name "torch.device" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:1000:29: error: Module has no attribute "device" [attr-defined] +torch/_subclasses/fake_tensor.py:1037:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:1040:13: error: Name "torch.device" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:1041:13: error: Name "torch.layout" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:1042:29: error: Name "torch.memory_format" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:1065:48: error: Module has no attribute "Size" [attr-defined] +torch/_subclasses/fake_tensor.py:1096:35: error: Module has no attribute "strided" [attr-defined] +torch/_subclasses/fake_tensor.py:1334:26: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_subclasses/fake_tensor.py:1394:13: error: Module has no attribute "_get_dispatch_mode" [attr-defined] +torch/_subclasses/fake_tensor.py:1394:41: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_subclasses/fake_tensor.py:1409:42: error: Module has no attribute "_only_lift_cpu_tensors" [attr-defined] +torch/_subclasses/fake_tensor.py:1410:13: error: Module has no attribute "_set_only_lift_cpu_tensors" [attr-defined] +torch/_subclasses/fake_tensor.py:1415:13: error: Module has no attribute "_ensureCUDADeviceGuardSet" [attr-defined] +torch/_subclasses/fake_tensor.py:1417:32: error: Module has no attribute "_unset_dispatch_mode" [attr-defined] +torch/_subclasses/fake_tensor.py:1425:13: error: Module has no attribute "_set_dispatch_mode" [attr-defined] +torch/_subclasses/fake_tensor.py:1446:17: error: Module has no attribute "_set_dispatch_mode" [attr-defined] +torch/_subclasses/fake_tensor.py:1448:17: error: Module has no attribute "_set_only_lift_cpu_tensors" [attr-defined] +torch/_subclasses/fake_tensor.py:1586:13: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_subclasses/fake_tensor.py:1589:13: error: Module has no attribute "_get_default_device" [attr-defined] +torch/_subclasses/fake_tensor.py:1592:13: error: Module has no attribute "is_inference_mode_enabled" [attr-defined] +torch/_subclasses/fake_tensor.py:1648:12: error: Module has no attribute "Tag" [attr-defined] +torch/_subclasses/fake_tensor.py:1651:12: error: Module has no attribute "Tag" [attr-defined] +torch/_subclasses/fake_tensor.py:1664:25: error: Module has no attribute "bool" [attr-defined] +torch/_subclasses/fake_tensor.py:1665:25: error: Module has no attribute "int8" [attr-defined] +torch/_subclasses/fake_tensor.py:1672:12: error: Module has no attribute "Tag" [attr-defined] +torch/_subclasses/fake_tensor.py:1690:29: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_subclasses/fake_tensor.py:1691:26: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_subclasses/fake_tensor.py:1875:25: error: Module has no attribute "_dispatch_key_set" [attr-defined] +torch/_subclasses/fake_tensor.py:1876:19: error: Module has no attribute "_dispatch_key_set" [attr-defined] +torch/_subclasses/fake_tensor.py:1964:30: error: Argument "output_infos" to "_DispatchCacheValidEntry" has incompatible type "tuple[_DispatchCacheEntryOutputInfo, ...]"; expected "tuple[_DispatchCacheEntryOutputInfo]" [arg-type] +torch/_subclasses/fake_tensor.py:2031:21: error: Module has no attribute "empty_strided" [attr-defined] +torch/_subclasses/fake_tensor.py:2041:13: error: Module has no attribute "_set_conj" [attr-defined] +torch/_subclasses/fake_tensor.py:2043:13: error: Module has no attribute "_set_neg" [attr-defined] +torch/_subclasses/fake_tensor.py:2469:17: error: Module has no attribute "Tag" [attr-defined] +torch/_subclasses/fake_tensor.py:2470:17: error: Module has no attribute "Tag" [attr-defined] +torch/_subclasses/fake_tensor.py:2526:40: error: Name "torch._C.ScriptObject" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:2883:46: error: Module has no attribute "Tag" [attr-defined] +torch/_subclasses/fake_tensor.py:2917:17: error: Name "torch.device" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:3008:12: error: Module has no attribute "Tag" [attr-defined] +torch/_subclasses/fake_tensor.py:3149:8: error: Module has no attribute "Tag" [attr-defined] +torch/_subclasses/fake_tensor.py:3160:23: error: Module has no attribute "zeros_like" [attr-defined] +torch/_subclasses/fake_tensor.py:3236:20: error: Module has no attribute "TensorBase" [attr-defined] +torch/_subclasses/fake_tensor.py:3253:18: error: Module has no attribute "DisableTorchFunctionSubclass" [attr-defined] +torch/_subclasses/fake_tensor.py:3257:48: error: Name "torch.device" is not defined [name-defined] +torch/_subclasses/fake_tensor.py:3266:16: error: Module has no attribute "device" [attr-defined] +torch/_subclasses/fake_tensor.py:3397:16: error: Module has no attribute "empty_strided" [attr-defined] +torch/_prims_common/__init__.py:48:30: error: Name "torch.Size" is not defined [name-defined] +torch/_prims_common/__init__.py:68:40: error: Name "torch.device" is not defined [name-defined] +torch/_prims_common/__init__.py:73:5: error: Module has no attribute "device" [attr-defined] +torch/_prims_common/__init__.py:380:5: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_prims_common/__init__.py:381:5: error: Module has no attribute "preserve_format" [attr-defined] +torch/_prims_common/__init__.py:382:5: error: Module has no attribute "channels_last" [attr-defined] +torch/_prims_common/__init__.py:383:5: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_prims_common/__init__.py:387:43: error: Name "torch.memory_format" is not defined [name-defined] +torch/_prims_common/__init__.py:397:20: error: Name "torch.memory_format" is not defined [name-defined] +torch/_prims_common/__init__.py:403:25: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_prims_common/__init__.py:405:25: error: Module has no attribute "channels_last" [attr-defined] +torch/_prims_common/__init__.py:407:25: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_prims_common/__init__.py:432:34: error: Name "torch.memory_format" is not defined [name-defined] +torch/_prims_common/__init__.py:582:30: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_prims_common/__init__.py:587:34: error: Module has no attribute "channels_last" [attr-defined] +torch/_prims_common/__init__.py:903:52: error: Name "torch.device" is not defined [name-defined] +torch/_prims_common/__init__.py:904:27: error: Module has no attribute "device" [attr-defined] +torch/_prims_common/__init__.py:908:12: error: Module has no attribute "device" [attr-defined] +torch/_prims_common/__init__.py:1091:5: error: Module has no attribute "uint8" [attr-defined] +torch/_prims_common/__init__.py:1092:5: error: Module has no attribute "uint16" [attr-defined] +torch/_prims_common/__init__.py:1093:5: error: Module has no attribute "uint32" [attr-defined] +torch/_prims_common/__init__.py:1094:5: error: Module has no attribute "uint64" [attr-defined] +torch/_prims_common/__init__.py:1095:5: error: Module has no attribute "int8" [attr-defined] +torch/_prims_common/__init__.py:1096:5: error: Module has no attribute "int16" [attr-defined] +torch/_prims_common/__init__.py:1097:5: error: Module has no attribute "int32" [attr-defined] +torch/_prims_common/__init__.py:1098:5: error: Module has no attribute "int64" [attr-defined] +torch/_prims_common/__init__.py:1100:26: error: Module has no attribute "float16" [attr-defined] +torch/_prims_common/__init__.py:1100:41: error: Module has no attribute "bfloat16" [attr-defined] +torch/_prims_common/__init__.py:1100:57: error: Module has no attribute "complex32" [attr-defined] +torch/_prims_common/__init__.py:1101:20: error: Module has no attribute "complex32" [attr-defined] +torch/_prims_common/__init__.py:1101:37: error: Module has no attribute "complex64" [attr-defined] +torch/_prims_common/__init__.py:1101:54: error: Module has no attribute "complex128" [attr-defined] +torch/_prims_common/__init__.py:1104:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1105:30: error: Module has no attribute "dtype" [attr-defined] +torch/_prims_common/__init__.py:1106:21: error: Module has no attribute "bool" [attr-defined] +torch/_prims_common/__init__.py:1109:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1110:30: error: Module has no attribute "dtype" [attr-defined] +torch/_prims_common/__init__.py:1114:35: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1115:30: error: Module has no attribute "dtype" [attr-defined] +torch/_prims_common/__init__.py:1119:27: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1120:30: error: Module has no attribute "dtype" [attr-defined] +torch/_prims_common/__init__.py:1124:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1125:30: error: Module has no attribute "dtype" [attr-defined] +torch/_prims_common/__init__.py:1129:26: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1137:5: error: Module has no attribute "complex128" [attr-defined] +torch/_prims_common/__init__.py:1137:23: error: Module has no attribute "float64" [attr-defined] +torch/_prims_common/__init__.py:1138:5: error: Module has no attribute "complex64" [attr-defined] +torch/_prims_common/__init__.py:1138:22: error: Module has no attribute "float32" [attr-defined] +torch/_prims_common/__init__.py:1139:5: error: Module has no attribute "complex32" [attr-defined] +torch/_prims_common/__init__.py:1139:22: error: Module has no attribute "float16" [attr-defined] +torch/_prims_common/__init__.py:1143:5: error: Module has no attribute "float16" [attr-defined] +torch/_prims_common/__init__.py:1143:20: error: Module has no attribute "complex32" [attr-defined] +torch/_prims_common/__init__.py:1144:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/_prims_common/__init__.py:1144:21: error: Module has no attribute "complex64" [attr-defined] +torch/_prims_common/__init__.py:1145:5: error: Module has no attribute "float32" [attr-defined] +torch/_prims_common/__init__.py:1145:20: error: Module has no attribute "complex64" [attr-defined] +torch/_prims_common/__init__.py:1146:5: error: Module has no attribute "float64" [attr-defined] +torch/_prims_common/__init__.py:1146:20: error: Module has no attribute "complex128" [attr-defined] +torch/_prims_common/__init__.py:1150:37: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1154:40: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1158:26: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1163:30: error: Module has no attribute "dtype" [attr-defined] +torch/_prims_common/__init__.py:1165:17: error: Module has no attribute "bool" [attr-defined] +torch/_prims_common/__init__.py:1177:31: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1182:30: error: Module has no attribute "dtype" [attr-defined] +torch/_prims_common/__init__.py:1184:17: error: Module has no attribute "bool" [attr-defined] +torch/_prims_common/__init__.py:1197:33: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1205:16: error: Module has no attribute "bool" [attr-defined] +torch/_prims_common/__init__.py:1207:16: error: Module has no attribute "long" [attr-defined] +torch/_prims_common/__init__.py:1209:16: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_prims_common/__init__.py:1212:44: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_prims_common/__init__.py:1228:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1278:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1279:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1280:15: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1287:40: error: Module has no attribute "dtype" [attr-defined] +torch/_prims_common/__init__.py:1288:40: error: Module has no attribute "dtype" [attr-defined] +torch/_prims_common/__init__.py:1291:27: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1292:19: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1295:26: error: Module has no attribute "dtype" [attr-defined] +torch/_prims_common/__init__.py:1317:10: error: Module has no attribute "bool" [attr-defined] +torch/_prims_common/__init__.py:1318:10: error: Module has no attribute "uint8" [attr-defined] +torch/_prims_common/__init__.py:1318:23: error: Module has no attribute "int8" [attr-defined] +torch/_prims_common/__init__.py:1319:10: error: Module has no attribute "int16" [attr-defined] +torch/_prims_common/__init__.py:1320:10: error: Module has no attribute "int32" [attr-defined] +torch/_prims_common/__init__.py:1321:10: error: Module has no attribute "int64" [attr-defined] +torch/_prims_common/__init__.py:1322:10: error: Module has no attribute "float16" [attr-defined] +torch/_prims_common/__init__.py:1322:25: error: Module has no attribute "bfloat16" [attr-defined] +torch/_prims_common/__init__.py:1323:10: error: Module has no attribute "float32" [attr-defined] +torch/_prims_common/__init__.py:1324:10: error: Module has no attribute "float64" [attr-defined] +torch/_prims_common/__init__.py:1325:10: error: Module has no attribute "complex32" [attr-defined] +torch/_prims_common/__init__.py:1326:10: error: Module has no attribute "complex64" [attr-defined] +torch/_prims_common/__init__.py:1327:10: error: Module has no attribute "complex128" [attr-defined] +torch/_prims_common/__init__.py:1347:26: error: Name "torch.layout" is not defined [name-defined] +torch/_prims_common/__init__.py:1349:19: error: Module has no attribute "strided" [attr-defined] +torch/_prims_common/__init__.py:1375:34: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1452:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/_prims_common/__init__.py:1452:21: error: Module has no attribute "float32" [attr-defined] +torch/_prims_common/__init__.py:1453:5: error: Module has no attribute "float16" [attr-defined] +torch/_prims_common/__init__.py:1453:20: error: Module has no attribute "float32" [attr-defined] +torch/_prims_common/__init__.py:1454:5: error: Module has no attribute "complex32" [attr-defined] +torch/_prims_common/__init__.py:1454:22: error: Module has no attribute "complex64" [attr-defined] +torch/_prims_common/__init__.py:1458:34: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1463:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/_prims_common/__init__.py:1463:21: error: Module has no attribute "float64" [attr-defined] +torch/_prims_common/__init__.py:1464:5: error: Module has no attribute "float16" [attr-defined] +torch/_prims_common/__init__.py:1464:20: error: Module has no attribute "float64" [attr-defined] +torch/_prims_common/__init__.py:1465:5: error: Module has no attribute "float32" [attr-defined] +torch/_prims_common/__init__.py:1465:20: error: Module has no attribute "float64" [attr-defined] +torch/_prims_common/__init__.py:1466:5: error: Module has no attribute "complex32" [attr-defined] +torch/_prims_common/__init__.py:1466:22: error: Module has no attribute "complex128" [attr-defined] +torch/_prims_common/__init__.py:1467:5: error: Module has no attribute "complex64" [attr-defined] +torch/_prims_common/__init__.py:1467:22: error: Module has no attribute "complex128" [attr-defined] +torch/_prims_common/__init__.py:1471:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1471:46: error: Name "torch.device" is not defined [name-defined] +torch/_prims_common/__init__.py:1539:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1651:19: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1680:13: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_prims_common/__init__.py:1689:56: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_prims_common/__init__.py:1692:24: error: Module has no attribute "long" [attr-defined] +torch/_prims_common/__init__.py:1695:24: error: Module has no attribute "bool" [attr-defined] +torch/_prims_common/__init__.py:1703:28: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_prims_common/__init__.py:1713:20: error: Module has no attribute "long" [attr-defined] +torch/_prims_common/__init__.py:1716:53: error: Module has no attribute "bool" [attr-defined] +torch/_prims_common/__init__.py:1724:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1725:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:1744:24: error: Module has no attribute "bool" [attr-defined] +torch/_prims_common/__init__.py:2033:49: error: Name "torch.memory_format" is not defined [name-defined] +torch/_prims_common/__init__.py:2034:20: error: Module has no attribute "strided" [attr-defined] +torch/_prims_common/__init__.py:2035:16: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_prims_common/__init__.py:2038:16: error: Module has no attribute "channels_last" [attr-defined] +torch/_prims_common/__init__.py:2038:56: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_prims_common/__init__.py:2040:12: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_prims_common/__init__.py:2069:19: error: Module has no attribute "bool" [attr-defined] +torch/_prims_common/__init__.py:2072:16: error: Module has no attribute "where" [attr-defined] +torch/_prims_common/__init__.py:2096:38: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/__init__.py:2097:44: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_prims_common/__init__.py:2101:46: error: Module has no attribute "device" [attr-defined] +torch/_prims_common/__init__.py:2104:40: error: Name "torch.layout" is not defined [name-defined] +torch/_prims_common/__init__.py:2105:46: error: Module has no attribute "strided" [attr-defined] +torch/_prims_common/__init__.py:2119:15: error: Module has no attribute "_dispatch_tls_is_dispatch_key_excluded" [attr-defined] +torch/_prims_common/__init__.py:2120:13: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_prims_common/__init__.py:2122:9: error: Module has no attribute "_dispatch_tls_set_dispatch_key_excluded" [attr-defined] +torch/_prims_common/__init__.py:2123:13: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_prims_common/__init__.py:2125:18: error: Module has no attribute "as_strided" [attr-defined] +torch/_prims_common/__init__.py:2126:16: error: Module has no attribute "as_strided" [attr-defined] +torch/_prims_common/__init__.py:2128:9: error: Module has no attribute "_dispatch_tls_set_dispatch_key_excluded" [attr-defined] +torch/_prims_common/__init__.py:2129:13: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_prims_common/__init__.py:2166:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_prims_common/__init__.py:2167:22: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_prims_common/__init__.py:2173:47: error: Module has no attribute "uint8" [attr-defined] +torch/_prims_common/__init__.py:2174:51: error: Module has no attribute "uint8" [attr-defined] +torch/_prims_common/__init__.py:2175:21: error: Module has no attribute "cat" [attr-defined] +torch/_logging/_internal.py:1149:1: error: Cannot find implementation or library stub for module named "torch.version" [import-not-found] +torch/_library/utils.py:100:31: error: Module has no attribute "FunctionSchema" [attr-defined] +torch/_library/utils.py:102:41: error: Module has no attribute "TensorType" [attr-defined] +torch/_library/utils.py:106:41: error: Module has no attribute "TensorType" [attr-defined] +torch/_library/utils.py:126:27: error: Module has no attribute "FunctionSchema" [attr-defined] +torch/_library/utils.py:141:16: error: Module has no attribute "ListType" [attr-defined] +torch/_library/utils.py:141:28: error: Module has no attribute "TensorType" [attr-defined] +torch/_library/utils.py:142:19: error: Module has no attribute "ListType" [attr-defined] +torch/_library/utils.py:142:31: error: Module has no attribute "OptionalType" [attr-defined] +torch/_library/utils.py:142:47: error: Module has no attribute "TensorType" [attr-defined] +torch/_library/utils.py:143:19: error: Module has no attribute "OptionalType" [attr-defined] +torch/_library/utils.py:143:35: error: Module has no attribute "ListType" [attr-defined] +torch/_library/utils.py:143:47: error: Module has no attribute "TensorType" [attr-defined] +torch/_library/utils.py:144:19: error: Module has no attribute "OptionalType" [attr-defined] +torch/_library/utils.py:144:35: error: Module has no attribute "ListType" [attr-defined] +torch/_library/utils.py:144:63: error: Module has no attribute "TensorType" [attr-defined] +torch/_library/utils.py:150:19: error: Module has no attribute "TensorType" [attr-defined] +torch/_library/utils.py:150:49: error: Module has no attribute "OptionalType" [attr-defined] +torch/_library/utils.py:210:13: error: Name "_C.FunctionSchema" is not defined [name-defined] +torch/_library/utils.py:211:21: error: Name "_C.Argument" is not defined [name-defined] +torch/_library/utils.py:309:13: error: Module has no attribute "_dispatch_keys" [attr-defined] +torch/_library/utils.py:309:44: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_library/utils.py:316:33: error: Name "_C.FunctionSchema" is not defined [name-defined] +torch/_library/utils.py:320:36: error: Name "_C.FunctionSchema" is not defined [name-defined] +torch/_library/utils.py:330:28: error: Name "_C.FunctionSchema" is not defined [name-defined] +torch/_library/utils.py:341:34: error: Name "_C.FunctionSchema" is not defined [name-defined] +torch/_library/utils.py:347:24: error: Module has no attribute "DeviceObjType" [attr-defined] +torch/_library/utils.py:403:8: error: Module has no attribute "_any_output_is_alias_to_input_or_output" [attr-defined] +torch/_library/utils.py:442:17: error: Module has no attribute "equal" [attr-defined] +torch/_library/utils.py:488:8: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_library/utils.py:495:12: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_library/utils.py:502:12: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_library/utils.py:511:33: error: Name "_C.FunctionSchema" is not defined [name-defined] +torch/_library/utils.py:524:5: error: Module has no attribute "Tag" [attr-defined] +torch/_library/utils.py:525:5: error: Module has no attribute "Tag" [attr-defined] +torch/_library/utils.py:526:5: error: Module has no attribute "Tag" [attr-defined] +torch/_library/utils.py:527:5: error: Module has no attribute "Tag" [attr-defined] +torch/_library/utils.py:535:6: error: Name "_C.Tag" is not defined [name-defined] +torch/_library/utils.py:542:15: error: Name "_C.Tag" is not defined [name-defined] +torch/_library/utils.py:551:20: error: Module has no attribute "Tag" [attr-defined] +torch/_library/utils.py:555:24: error: Module has no attribute "Tag" [attr-defined] +torch/_library/opaque_object.py:23:1: error: Argument 2 to NewType(...) must be subclassable (got "Any") [valid-newtype] +torch/_library/opaque_object.py:23:36: error: Name "torch._C.ScriptObject" is not defined [name-defined] +torch/_library/opaque_object.py:26:41: error: Name "torch._C.ScriptObject" is not defined [name-defined] +torch/_library/opaque_object.py:84:12: error: Module has no attribute "_make_opaque_object" [attr-defined] +torch/_library/opaque_object.py:87:32: error: Name "torch._C.ScriptObject" is not defined [name-defined] +torch/_library/opaque_object.py:108:35: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_library/opaque_object.py:113:42: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_library/opaque_object.py:119:12: error: Module has no attribute "_get_opaque_object_payload" [attr-defined] +torch/_library/opaque_object.py:122:32: error: Name "torch._C.ScriptObject" is not defined [name-defined] +torch/_library/opaque_object.py:141:35: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_library/opaque_object.py:146:42: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_library/opaque_object.py:152:5: error: Module has no attribute "_set_opaque_object_payload" [attr-defined] +torch/_library/opaque_object.py:177:5: error: Module has no attribute "_register_opaque_type" [attr-defined] +torch/_library/opaque_object.py:187:12: error: Module has no attribute "_is_opaque_type_registered" [attr-defined] +torch/_library/fake_profile.py:27:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_library/fake_profile.py:28:13: error: Name "torch.device" is not defined [name-defined] +torch/_library/fake_profile.py:29:13: error: Name "torch.layout" is not defined [name-defined] +torch/_library/fake_profile.py:65:20: error: Module has no attribute "empty_strided" [attr-defined] +torch/_library/fake_profile.py:277:20: error: Module has no attribute "device" [attr-defined] +torch/_library/fake_class_registry.py:16:69: error: Name "torch.ScriptObject" is not defined [name-defined] +torch/_library/fake_class_registry.py:65:26: error: Name "torch.FunctionSchema" is not defined [name-defined] +torch/_library/fake_class_registry.py:79:34: error: Name "torch.ScriptObject" is not defined [name-defined] +torch/_library/fake_class_registry.py:141:26: error: Name "torch.ScriptObject" is not defined [name-defined] +torch/_library/fake_class_registry.py:155:30: error: Name "torch.ScriptObject" is not defined [name-defined] +torch/_library/fake_class_registry.py:214:27: error: Module has no attribute "empty_strided" [attr-defined] +torch/_library/fake_class_registry.py:238:37: error: Name "torch.FunctionSchema" is not defined [name-defined] +torch/_library/fake_class_registry.py:239:38: error: Module has no attribute "ScriptMethod" [attr-defined] +torch/_library/fake_class_registry.py:326:9: error: Module has no attribute "_get_custom_class_python_wrapper" [attr-defined] +torch/_library/fake_class_registry.py:368:14: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_library/fake_class_registry.py:382:43: error: Name "torch.ScriptObject" is not defined [name-defined] +torch/_library/effects.py:51:12: error: Module has no attribute "_get_operation_overload" [attr-defined] +torch/_library/effects.py:54:22: error: Module has no attribute "_get_schema" [attr-defined] +torch/_library/effects.py:56:41: error: Module has no attribute "ClassType" [attr-defined] +torch/_library/effects.py:68:5: error: Function is missing a type annotation [no-untyped-def] +torch/_library/effects.py:79:9: error: Function is missing a return type annotation [no-untyped-def] +torch/_library/effects.py:79:9: note: Use "-> None" if function does not return a value +torch/_library/custom_ops.py:32:29: error: Name "_C.Tag" is not defined [name-defined] +torch/_library/custom_ops.py:45:29: error: Name "_C.Tag" is not defined [name-defined] +torch/_library/custom_ops.py:58:29: error: Name "_C.Tag" is not defined [name-defined] +torch/_library/custom_ops.py:194:33: error: Name "_C.Tag" is not defined [name-defined] +torch/_library/custom_ops.py:371:29: error: Module has no attribute "_dispatch_key_for_device" [attr-defined] +torch/_library/custom_ops.py:606:54: error: Name "_C.Tag" is not defined [name-defined] +torch/_library/custom_ops.py:609:22: error: Module has no attribute "parse_schema" [attr-defined] +torch/_library/custom_ops.py:621:19: error: Module has no attribute "Tag" [attr-defined] +torch/_library/custom_ops.py:649:31: error: Module has no attribute "_dispatch_get_computed_kernel_for_dispatch_key" [attr-defined] +torch/_library/custom_ops.py:682:28: error: Module has no attribute "_dispatch_key_for_device" [attr-defined] +torch/_library/custom_ops.py:683:36: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_library/custom_ops.py:685:17: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_library/custom_ops.py:845:31: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_library/custom_ops.py:846:17: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_library/custom_ops.py:847:17: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_library/custom_ops.py:847:41: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_library/custom_ops.py:848:18: error: Module has no attribute "_ExcludeDispatchKeyGuard" [attr-defined] +torch/_library/custom_ops.py:866:37: error: Module has no attribute "float64" [attr-defined] +torch/_functorch/functional_call.py:260:14: error: Module has no attribute "stack" [attr-defined] +torch/_functorch/autograd_function.py:48:12: error: Module has no attribute "_are_functorch_transforms_active" [attr-defined] +torch/_functorch/autograd_function.py:336:20: error: Module has no attribute "_ExcludeDispatchKeyGuard" [attr-defined] +torch/_functorch/autograd_function.py:337:17: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_functorch/autograd_function.py:337:41: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_C/_distributed_rpc.pyi:7:1: error: Module "torch._C" has no attribute "Future" [attr-defined] +torch/_C/_distributed_rpc.pyi:47:56: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_rpc.pyi:72:33: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_rpc.pyi:73:19: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_rpc.pyi:81:37: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_rpc.pyi:82:23: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_rpc.pyi:87:26: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_rpc.pyi:98:45: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_rpc.pyi:99:23: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_rpc.pyi:110:56: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_rpc.pyi:114:26: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_rpc.pyi:115:44: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:10:1: error: Module "torch._C" has no attribute "ScriptObject" [attr-defined] +torch/_C/_distributed_c10d.pyi:191:13: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:339:51: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:343:45: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:348:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:349:17: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:585:41: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:586:39: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:590:37: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:591:36: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:595:17: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:606:34: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:608:39: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:691:45: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:779:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:780:17: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:793:29: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:795:39: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:808:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:815:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_C/_distributed_c10d.pyi:835:16: error: Name "torch.dtype" is not defined [name-defined] +torch/__init__.py:291:1: error: Cannot find implementation or library stub for module named "torch.version" [import-not-found] +torch/__init__.py:1018:12: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/__init__.py:1025:5: error: Module "torch._C" has no attribute "_initExtension" [attr-defined] +torch/__init__.py:1184:2: error: Name "torch.device" is not defined [name-defined] +torch/__init__.py:1197:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/__init__.py:1215:16: error: Module has no attribute "device" [attr-defined] +torch/__init__.py:1308:5: error: Module has no attribute "_set_default_tensor_type" [attr-defined] +torch/__init__.py:1311:2: error: Name "torch.dtype" is not defined [name-defined] +torch/__init__.py:1361:5: error: Module has no attribute "_set_default_dtype" [attr-defined] +torch/__init__.py:1510:5: error: Module has no attribute "_set_deterministic_algorithms" [attr-defined] +torch/__init__.py:1517:12: error: Module has no attribute "_get_deterministic_algorithms" [attr-defined] +torch/__init__.py:1525:12: error: Module has no attribute "_get_deterministic_algorithms_warn_only" [attr-defined] +torch/__init__.py:1561:9: error: Module has no attribute "_set_deterministic_algorithms" [attr-defined] +torch/__init__.py:1563:9: error: Module has no attribute "_set_deterministic_algorithms" [attr-defined] +torch/__init__.py:1565:9: error: Module has no attribute "_set_deterministic_algorithms" [attr-defined] +torch/__init__.py:1578:8: error: Module has no attribute "_get_deterministic_algorithms" [attr-defined] +torch/__init__.py:1579:12: error: Module has no attribute "_get_deterministic_algorithms_warn_only" [attr-defined] +torch/__init__.py:1591:12: error: Module has no attribute "_get_float32_matmul_precision" [attr-defined] +torch/__init__.py:1657:5: error: Module has no attribute "_set_float32_matmul_precision" [attr-defined] +torch/__init__.py:1670:5: error: Module has no attribute "_set_warnAlways" [attr-defined] +torch/__init__.py:1677:12: error: Module has no attribute "_get_warnAlways" [attr-defined] +torch/__init__.py:1851:26: error: Module has no attribute "bool" [attr-defined] +torch/__init__.py:1917:16: error: Module has no attribute "uint8" [attr-defined] +torch/__init__.py:1928:16: error: Module has no attribute "double" [attr-defined] +torch/__init__.py:1939:16: error: Module has no attribute "float" [attr-defined] +torch/__init__.py:1950:16: error: Module has no attribute "half" [attr-defined] +torch/__init__.py:1961:16: error: Module has no attribute "long" [attr-defined] +torch/__init__.py:1972:16: error: Module has no attribute "int" [attr-defined] +torch/__init__.py:1983:16: error: Module has no attribute "short" [attr-defined] +torch/__init__.py:1994:16: error: Module has no attribute "int8" [attr-defined] +torch/__init__.py:2005:16: error: Module has no attribute "bool" [attr-defined] +torch/__init__.py:2016:16: error: Module has no attribute "bfloat16" [attr-defined] +torch/__init__.py:2027:16: error: Module has no attribute "cdouble" [attr-defined] +torch/__init__.py:2038:16: error: Module has no attribute "cfloat" [attr-defined] +torch/__init__.py:2049:16: error: Module has no attribute "quint8" [attr-defined] +torch/__init__.py:2060:16: error: Module has no attribute "qint8" [attr-defined] +torch/__init__.py:2071:16: error: Module has no attribute "qint32" [attr-defined] +torch/__init__.py:2082:16: error: Module has no attribute "quint4x2" [attr-defined] +torch/__init__.py:2093:16: error: Module has no attribute "quint2x4" [attr-defined] +torch/__init__.py:2145:1: error: Module has no attribute "_initExtension" [attr-defined] +torch/__init__.py:2157:1: error: Cannot find implementation or library stub for module named "torch._C._VariableFunctions" [import-not-found] +torch/__init__.py:2157:1: note: Error code "import-not-found" not covered by "type: ignore" comment +torch/__init__.py:2157:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports +torch/__init__.py:2160:23: error: Name "segment_reduce" is not defined [name-defined] +torch/__init__.py:2161:9: error: Name "segment_reduce" is not defined [name-defined] +torch/__init__.py:2192:69: error: Module has no attribute "dtype" [attr-defined] +torch/__init__.py:2296:1: error: Module has no attribute "_init_names" [attr-defined] +torch/__init__.py:2330:28: error: Name "contiguous_format" is not defined [name-defined] +torch/__init__.py:2336:21: error: Module has no attribute "get_num_threads" [attr-defined] +torch/__init__.py:2664:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/__init__.py:2720:20: error: Incompatible types in assignment (expression has type "str | int | Callable[..., Any]", variable has type "bool") [assignment] +torch/__init__.py:2771:19: error: Module has no attribute "device" [attr-defined] +torch/__init__.py:2789:1: error: Name "cond" already defined (by an import) [no-redef] +torch/__init__.py:2789:1: error: Name "while_loop" already defined (by an import) [no-redef] +torch/__init__.py:2875:48: error: Name "torch.device" is not defined [name-defined] +torch/__init__.py:2880:27: error: Module has no attribute "device" [attr-defined] +torch/__init__.py:2883:30: error: Module has no attribute "device" [attr-defined] +torch/__init__.py:2886:30: error: Module has no attribute "_get_accelerator" [attr-defined] +torch/__init__.py:2922:5: error: Module has no attribute "sym_constrain_range_for_size" [attr-defined] +torch/__init__.py:2978:16: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/__init__.py:2978:41: error: Module has no attribute "float64" [attr-defined] +torch/__init__.py:2980:16: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/__init__.py:2980:41: error: Module has no attribute "int64" [attr-defined] +torch/__init__.py:2982:16: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "_GeneratorType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "AnyType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "AwaitType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "BoolType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "ComplexType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "DeviceObjType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "DictType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "EnumType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "FloatType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "FutureType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "InterfaceType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "IntType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "ListType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "NoneType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "NumberType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "OptionalType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "StreamObjType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "StringType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "TensorType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "TupleType" [attr-defined] +torch/jit/annotations.py:13:1: error: Module "torch._C" has no attribute "UnionType" [attr-defined] +torch/jit/annotations.py:64:5: error: Module "torch._C" has no attribute "RRefType" [attr-defined] +torch/jit/annotations.py:365:11: error: Module has no attribute "unify_type_list" [attr-defined] +torch/jit/annotations.py:378:13: error: Module has no attribute "LongTensor" [attr-defined] +torch/jit/annotations.py:379:13: error: Module has no attribute "DoubleTensor" [attr-defined] +torch/jit/annotations.py:380:13: error: Module has no attribute "FloatTensor" [attr-defined] +torch/jit/annotations.py:381:13: error: Module has no attribute "IntTensor" [attr-defined] +torch/jit/annotations.py:382:13: error: Module has no attribute "ShortTensor" [attr-defined] +torch/jit/annotations.py:383:13: error: Module has no attribute "HalfTensor" [attr-defined] +torch/jit/annotations.py:384:13: error: Module has no attribute "CharTensor" [attr-defined] +torch/jit/annotations.py:385:13: error: Module has no attribute "ByteTensor" [attr-defined] +torch/jit/annotations.py:386:13: error: Module has no attribute "BoolTensor" [attr-defined] +torch/jit/annotations.py:483:15: error: Module has no attribute "device" [attr-defined] +torch/jit/annotations.py:485:15: error: Module has no attribute "Generator" [attr-defined] +torch/jit/annotations.py:487:15: error: Module has no attribute "Stream" [attr-defined] +torch/jit/annotations.py:489:15: error: Module has no attribute "dtype" [attr-defined] +torch/jit/annotations.py:491:15: error: Module has no attribute "qscheme" [attr-defined] +torch/jit/annotations.py:511:12: error: Module has no attribute "_resolve_type_from_object" [attr-defined] +torch/nn/functional.py:11:1: error: Module "torch._C" has no attribute "_add_docstr" [attr-defined] +torch/nn/functional.py:11:1: error: Module "torch._C" has no attribute "_infer_size" [attr-defined] +torch/nn/functional.py:11:1: error: Module "torch._C" has no attribute "_ScalingType" [attr-defined] +torch/nn/functional.py:11:1: error: Module "torch._C" has no attribute "_SwizzleType" [attr-defined] +torch/nn/functional.py:17:1: error: Module "torch._jit_internal" has no attribute "BroadcastingList2"; maybe "BroadcastingList1"? [attr-defined] +torch/nn/functional.py:17:1: error: Module "torch._jit_internal" has no attribute "BroadcastingList3"; maybe "BroadcastingList1"? [attr-defined] +torch/nn/functional.py:48:10: error: Incompatible types in assignment (expression has type "None", variable has type Module) [assignment] +torch/nn/functional.py:52:5: error: Module has no attribute "conv1d"; maybe "cond"? [attr-defined] +torch/nn/functional.py:101:5: error: Module has no attribute "conv2d"; maybe "cond"? [attr-defined] +torch/nn/functional.py:152:5: error: Module has no attribute "conv3d"; maybe "cond"? [attr-defined] +torch/nn/functional.py:202:5: error: Module has no attribute "conv_transpose1d" [attr-defined] +torch/nn/functional.py:243:5: error: Module has no attribute "conv_transpose2d" [attr-defined] +torch/nn/functional.py:286:5: error: Module has no attribute "conv_transpose3d" [attr-defined] +torch/nn/functional.py:328:5: error: Module has no attribute "conv_tbc" [attr-defined] +torch/nn/functional.py:344:5: error: Module has no attribute "avg_pool1d" [attr-defined] +torch/nn/functional.py:379:5: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:409:5: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:508:27: error: Module has no attribute "rand" [attr-defined] +torch/nn/functional.py:511:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:624:27: error: Module has no attribute "rand" [attr-defined] +torch/nn/functional.py:627:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:669:18: error: Variable "torch._jit_internal.BroadcastingList1" is not valid as a type [valid-type] +torch/nn/functional.py:669:18: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/nn/functional.py:670:22: error: Variable "torch._jit_internal.BroadcastingList1" is not valid as a type [valid-type] +torch/nn/functional.py:670:22: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/nn/functional.py:671:14: error: Variable "torch._jit_internal.BroadcastingList1" is not valid as a type [valid-type] +torch/nn/functional.py:671:14: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/nn/functional.py:672:15: error: Variable "torch._jit_internal.BroadcastingList1" is not valid as a type [valid-type] +torch/nn/functional.py:672:15: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/nn/functional.py:715:12: error: Module has no attribute "max_pool1d_with_indices" [attr-defined] +torch/nn/functional.py:722:18: error: Variable "torch._jit_internal.BroadcastingList1" is not valid as a type [valid-type] +torch/nn/functional.py:722:18: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/nn/functional.py:723:22: error: Variable "torch._jit_internal.BroadcastingList1" is not valid as a type [valid-type] +torch/nn/functional.py:723:22: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/nn/functional.py:724:14: error: Variable "torch._jit_internal.BroadcastingList1" is not valid as a type [valid-type] +torch/nn/functional.py:724:14: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/nn/functional.py:725:15: error: Variable "torch._jit_internal.BroadcastingList1" is not valid as a type [valid-type] +torch/nn/functional.py:725:15: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/nn/functional.py:743:12: error: Module has no attribute "max_pool1d" [attr-defined] +torch/nn/functional.py:805:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:833:12: error: Module has no attribute "max_pool2d" [attr-defined] +torch/nn/functional.py:895:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:923:12: error: Module has no attribute "max_pool3d" [attr-defined] +torch/nn/functional.py:977:18: error: Variable "torch._jit_internal.BroadcastingList1" is not valid as a type [valid-type] +torch/nn/functional.py:977:18: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/nn/functional.py:978:22: error: Variable "torch._jit_internal.BroadcastingList1" is not valid as a type [valid-type] +torch/nn/functional.py:978:22: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/nn/functional.py:979:14: error: Variable "torch._jit_internal.BroadcastingList1" is not valid as a type [valid-type] +torch/nn/functional.py:979:14: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/nn/functional.py:980:27: error: Variable "torch._jit_internal.BroadcastingList1" is not valid as a type [valid-type] +torch/nn/functional.py:980:27: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/nn/functional.py:1008:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1043:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1076:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1116:10: error: Module has no attribute "sign" [attr-defined] +torch/nn/functional.py:1116:33: error: Module has no attribute "abs" [attr-defined] +torch/nn/functional.py:1156:13: error: Module has no attribute "sign" [attr-defined] +torch/nn/functional.py:1156:36: error: Module has no attribute "abs" [attr-defined] +torch/nn/functional.py:1163:22: error: Variable "torch._jit_internal.BroadcastingList1" is not valid as a type [valid-type] +torch/nn/functional.py:1163:22: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/nn/functional.py:1194:10: error: Module has no attribute "sign" [attr-defined] +torch/nn/functional.py:1194:33: error: Module has no attribute "abs" [attr-defined] +torch/nn/functional.py:1200:18: error: Variable "torch._jit_internal.BroadcastingList1" is not valid as a type [valid-type] +torch/nn/functional.py:1200:18: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/nn/functional.py:1223:12: error: Module has no attribute "adaptive_max_pool1d" [attr-defined] +torch/nn/functional.py:1228:18: error: Variable "torch._jit_internal.BroadcastingList1" is not valid as a type [valid-type] +torch/nn/functional.py:1228:18: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/nn/functional.py:1280:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1338:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1369:5: error: Module has no attribute "adaptive_avg_pool1d" [attr-defined] +torch/nn/functional.py:1397:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1413:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1441:9: error: Module has no attribute "dropout_" [attr-defined] +torch/nn/functional.py:1441:58: error: Module has no attribute "dropout" [attr-defined] +torch/nn/functional.py:1462:9: error: Module has no attribute "alpha_dropout_" [attr-defined] +torch/nn/functional.py:1464:14: error: Module has no attribute "alpha_dropout" [attr-defined] +torch/nn/functional.py:1508:9: error: Module has no attribute "feature_dropout_" [attr-defined] +torch/nn/functional.py:1510:14: error: Module has no attribute "feature_dropout" [attr-defined] +torch/nn/functional.py:1571:9: error: Module has no attribute "feature_dropout_" [attr-defined] +torch/nn/functional.py:1573:14: error: Module has no attribute "feature_dropout" [attr-defined] +torch/nn/functional.py:1621:9: error: Module has no attribute "feature_dropout_" [attr-defined] +torch/nn/functional.py:1623:14: error: Module has no attribute "feature_dropout" [attr-defined] +torch/nn/functional.py:1668:9: error: Module has no attribute "feature_alpha_dropout_" [attr-defined] +torch/nn/functional.py:1670:14: error: Module has no attribute "feature_alpha_dropout" [attr-defined] +torch/nn/functional.py:1689:18: error: Module has no attribute "threshold_" [attr-defined] +torch/nn/functional.py:1691:18: error: Module has no attribute "threshold" [attr-defined] +torch/nn/functional.py:1701:5: error: Module has no attribute "threshold_" [attr-defined] +torch/nn/functional.py:1719:18: error: Module has no attribute "relu_" [attr-defined] +torch/nn/functional.py:1721:18: error: Module has no attribute "relu" [attr-defined] +torch/nn/functional.py:1726:5: error: Module has no attribute "relu_" [attr-defined] +torch/nn/functional.py:1759:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1781:18: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1783:18: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1788:5: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1807:18: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1809:18: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1821:18: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1823:18: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1828:5: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1850:18: error: Module has no attribute "selu_" [attr-defined] +torch/nn/functional.py:1852:18: error: Module has no attribute "selu" [attr-defined] +torch/nn/functional.py:1857:5: error: Module has no attribute "selu_" [attr-defined] +torch/nn/functional.py:1883:18: error: Module has no attribute "celu_" [attr-defined] +torch/nn/functional.py:1885:18: error: Module has no attribute "celu" [attr-defined] +torch/nn/functional.py:1890:5: error: Module has no attribute "celu_" [attr-defined] +torch/nn/functional.py:1917:18: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1919:18: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1924:5: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:1934:5: error: Module has no attribute "prelu" [attr-defined] +torch/nn/functional.py:1978:18: error: Module has no attribute "rrelu_" [attr-defined] +torch/nn/functional.py:1980:18: error: Module has no attribute "rrelu" [attr-defined] +torch/nn/functional.py:1985:5: error: Module has no attribute "rrelu_" [attr-defined] +torch/nn/functional.py:1994:5: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:2005:5: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:2024:5: error: Module has no attribute "hardshrink" [attr-defined] +torch/nn/functional.py:2035:1: error: Function is missing a type annotation [no-untyped-def] +torch/nn/functional.py:2047:1: error: Function is missing a type annotation [no-untyped-def] +torch/nn/functional.py:2060:5: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:2217:10: error: Module has no attribute "empty_like" [attr-defined] +torch/nn/functional.py:2227:18: error: Module has no attribute "zeros_like" [attr-defined] +torch/nn/functional.py:2272:5: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:2283:1: error: Function is missing a type annotation [no-untyped-def] +torch/nn/functional.py:2294:1: error: Function is missing a type annotation [no-untyped-def] +torch/nn/functional.py:2322:16: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:2323:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:2327:5: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:2351:5: error: Module has no attribute "bilinear" [attr-defined] +torch/nn/functional.py:2394:16: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:2395:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:2414:16: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:2415:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:2439:16: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:2440:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:2443:1: error: Missing return statement [return] +torch/nn/functional.py:2450:5: error: Module has no attribute "embedding_renorm_" [attr-defined] +torch/nn/functional.py:2567:12: error: Module has no attribute "embedding" [attr-defined] +torch/nn/functional.py:2681:24: error: Module has no attribute "long" [attr-defined] +torch/nn/functional.py:2724:19: error: Module has no attribute "arange" [attr-defined] +torch/nn/functional.py:2772:20: error: Module has no attribute "embedding_bag" [attr-defined] +torch/nn/functional.py:2844:12: error: Module has no attribute "batch_norm" [attr-defined] +torch/nn/functional.py:2899:12: error: Module has no attribute "instance_norm" [attr-defined] +torch/nn/functional.py:2933:12: error: Module has no attribute "layer_norm" [attr-defined] +torch/nn/functional.py:2952:12: error: Module has no attribute "rms_norm" [attr-defined] +torch/nn/functional.py:2988:12: error: Module has no attribute "group_norm" [attr-defined] +torch/nn/functional.py:3024:24: error: Argument 2 to "pad" has incompatible type "tuple[int, int, int, int]"; expected "list[int]" [arg-type] +torch/nn/functional.py:3030:24: error: Argument 2 to "pad" has incompatible type "tuple[int, int, int, int, int, int]"; expected "list[int]" [arg-type] +torch/nn/functional.py:3105:12: error: Module has no attribute "ctc_loss" [attr-defined] +torch/nn/functional.py:3177:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:3241:11: error: Module has no attribute "poisson_nll_loss" [attr-defined] +torch/nn/functional.py:3289:21: error: Module has no attribute "ones_like" [attr-defined] +torch/nn/functional.py:3290:10: error: Module has no attribute "any" [attr-defined] +torch/nn/functional.py:3296:8: error: Item "float" of "Tensor | float" has no attribute "size" [union-attr] +torch/nn/functional.py:3301:33: error: Item "float" of "Tensor | float" has no attribute "size" [union-attr] +torch/nn/functional.py:3302:19: error: Module has no attribute "unsqueeze" [attr-defined] +torch/nn/functional.py:3309:27: error: Item "float" of "Tensor | float" has no attribute "ndim" [union-attr] +torch/nn/functional.py:3310:53: error: Item "float" of "Tensor | float" has no attribute "size" [union-attr] +torch/nn/functional.py:3324:11: error: Item "float" of "Tensor | float" has no attribute "clone" [union-attr] +torch/nn/functional.py:3330:19: error: Module has no attribute "log" [attr-defined] +torch/nn/functional.py:3411:15: error: Module has no attribute "kl_div" [attr-defined] +torch/nn/functional.py:3502:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:3572:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:3639:12: error: Module has no attribute "binary_cross_entropy_with_logits" [attr-defined] +torch/nn/functional.py:3699:16: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:3706:16: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:3768:16: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:3780:27: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:3794:20: error: Module has no attribute "sum" [attr-defined] +torch/nn/functional.py:3857:27: error: Module has no attribute "abs" [attr-defined] +torch/nn/functional.py:3863:20: error: Module has no attribute "sum" [attr-defined] +torch/nn/functional.py:3865:20: error: Module has no attribute "sum" [attr-defined] +torch/nn/functional.py:3871:16: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:3935:26: error: Module has no attribute "pow" [attr-defined] +torch/nn/functional.py:3941:20: error: Module has no attribute "sum" [attr-defined] +torch/nn/functional.py:3943:20: error: Module has no attribute "sum" [attr-defined] +torch/nn/functional.py:3949:16: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:4005:12: error: Module has no attribute "margin_ranking_loss" [attr-defined] +torch/nn/functional.py:4049:12: error: Module has no attribute "hinge_embedding_loss" [attr-defined] +torch/nn/functional.py:4091:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:4133:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:4240:12: error: Module has no attribute "cosine_embedding_loss" [attr-defined] +torch/nn/functional.py:4296:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:4308:5: error: Module has no attribute "pixel_shuffle" [attr-defined] +torch/nn/functional.py:4331:5: error: Module has no attribute "pixel_unshuffle" [attr-defined] +torch/nn/functional.py:4355:5: error: Module has no attribute "channel_shuffle" [attr-defined] +torch/nn/functional.py:4397:5: error: Module has no attribute "native_channel_shuffle" [attr-defined] +torch/nn/functional.py:4454:2: error: Name "upsample" already defined on line 4442 [no-redef] +torch/nn/functional.py:4466:1: error: Name "upsample" already defined on line 4442 [no-redef] +torch/nn/functional.py:4543:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/nn/functional.py:4569:2: error: Name "interpolate" already defined on line 4555 [no-redef] +torch/nn/functional.py:4583:2: error: Name "interpolate" already defined on line 4555 [no-redef] +torch/nn/functional.py:4597:2: error: Name "interpolate" already defined on line 4555 [no-redef] +torch/nn/functional.py:4611:1: error: Name "interpolate" already defined on line 4555 [no-redef] +torch/nn/functional.py:4943:2: error: Name "upsample_nearest" already defined on line 4933 [no-redef] +torch/nn/functional.py:4953:1: error: Name "upsample_nearest" already defined on line 4933 [no-redef] +torch/nn/functional.py:4995:2: error: Name "upsample_bilinear" already defined on line 4985 [no-redef] +torch/nn/functional.py:5005:2: error: Name "upsample_bilinear" already defined on line 4985 [no-redef] +torch/nn/functional.py:5015:2: error: Name "upsample_bilinear" already defined on line 4985 [no-redef] +torch/nn/functional.py:5025:1: error: Name "upsample_bilinear" already defined on line 4985 [no-redef] +torch/nn/functional.py:5228:12: error: Module has no attribute "grid_sampler" [attr-defined] +torch/nn/functional.py:5332:12: error: Module has no attribute "affine_grid_generator" [attr-defined] +torch/nn/functional.py:5416:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:5426:5: error: Module has no attribute "pairwise_distance" [attr-defined] +torch/nn/functional.py:5436:5: error: Module has no attribute "pdist" [attr-defined] +torch/nn/functional.py:5463:5: error: Module has no attribute "cosine_similarity" [attr-defined] +torch/nn/functional.py:5495:5: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:5581:12: error: Module has no attribute "triplet_margin_loss" [attr-defined] +torch/nn/functional.py:5640:29: error: Module has no attribute "pairwise_distance" [attr-defined] +torch/nn/functional.py:5651:20: error: Module has no attribute "minimum" [attr-defined] +torch/nn/functional.py:5652:12: error: Module has no attribute "clamp_min" [attr-defined] +torch/nn/functional.py:5656:16: error: Module has no attribute "sum" [attr-defined] +torch/nn/functional.py:5658:16: error: Module has no attribute "mean" [attr-defined] +torch/nn/functional.py:5697:16: error: Module has no attribute "div" [attr-defined] +torch/nn/functional.py:5737:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:5768:12: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:5831:20: error: Incompatible return value type (got "tuple[Any, Any, Any]", expected "list[Tensor]") [return-value] +torch/nn/functional.py:5850:20: error: Incompatible return value type (got "tuple[Any, Any, Any]", expected "list[Tensor]") [return-value] +torch/nn/functional.py:5858:16: error: Incompatible return value type (got "tuple[Any, Any, Any]", expected "list[Tensor]") [return-value] +torch/nn/functional.py:5931:5: error: Module has no attribute "_nn" [attr-defined] +torch/nn/functional.py:6090:1: error: Function is missing a return type annotation [no-untyped-def] +torch/nn/functional.py:6162:26: error: Module has no attribute "is_floating_point" [attr-defined] +torch/nn/functional.py:6163:27: error: Module has no attribute "bool" [attr-defined] +torch/nn/functional.py:6175:20: error: Module has no attribute "zeros_like" [attr-defined] +torch/nn/functional.py:6486:13: error: Module has no attribute "cat" [attr-defined] +torch/nn/functional.py:6487:13: error: Module has no attribute "cat" [attr-defined] +torch/nn/functional.py:6490:40: error: Argument 2 to "pad" has incompatible type "tuple[int, int]"; expected "list[int]" [arg-type] +torch/nn/functional.py:6493:54: error: Argument 2 to "pad" has incompatible type "tuple[int, int]"; expected "list[int]" [arg-type] +torch/nn/functional.py:6531:13: error: Module has no attribute "cat" [attr-defined] +torch/nn/functional.py:6533:17: error: Module has no attribute "zeros" [attr-defined] +torch/nn/functional.py:6536:13: error: Module has no attribute "cat" [attr-defined] +torch/nn/functional.py:6538:17: error: Module has no attribute "zeros" [attr-defined] +torch/nn/functional.py:6543:40: error: Argument 2 to "pad" has incompatible type "tuple[int, int]"; expected "list[int]" [arg-type] +torch/nn/functional.py:6546:54: error: Argument 2 to "pad" has incompatible type "tuple[int, int]"; expected "list[int]" [arg-type] +torch/nn/functional.py:6583:35: error: Module has no attribute "baddbmm" [attr-defined] +torch/nn/functional.py:6587:35: error: Module has no attribute "bmm" [attr-defined] +torch/nn/functional.py:6592:23: error: Module has no attribute "bmm" [attr-defined] +torch/nn/functional.py:6653:28: error: Name "torch.dtype" is not defined [name-defined] +torch/nn/functional.py:6653:43: error: Module has no attribute "bfloat16" [attr-defined] +torch/nn/functional.py:6654:47: error: Incompatible default for argument "contraction_dim" (default has type "tuple[()]", argument has type "list[int] | tuple[int]") [assignment] +torch/nn/functional.py:6709:11: error: Module has no attribute "_scaled_mm_v2" [attr-defined] +torch/nn/functional.py:6738:28: error: Name "torch.dtype" is not defined [name-defined] +torch/nn/functional.py:6738:43: error: Module has no attribute "bfloat16" [attr-defined] +torch/nn/functional.py:6739:47: error: Incompatible default for argument "contraction_dim" (default has type "tuple[()]", argument has type "list[int] | tuple[int]") [assignment] +torch/nn/functional.py:6795:11: error: Module has no attribute "_scaled_grouped_mm_v2" [attr-defined] +torch/xpu/random.py:11:43: error: Name "torch.device" is not defined [name-defined] +torch/xpu/random.py:23:18: error: Module has no attribute "device" [attr-defined] +torch/xpu/random.py:25:18: error: Module has no attribute "device" [attr-defined] +torch/xpu/random.py:40:48: error: Name "torch.device" is not defined [name-defined] +torch/xpu/random.py:49:10: error: Module has no attribute "_DisableFuncTorch" [attr-defined] +torch/xpu/random.py:50:56: error: Module has no attribute "contiguous_format" [attr-defined] +torch/xpu/random.py:52:18: error: Module has no attribute "device" [attr-defined] +torch/xpu/random.py:54:18: error: Module has no attribute "device" [attr-defined] +torch/xpu/memory.py:23:9: error: Module has no attribute "_xpu_emptyCache" [attr-defined] +torch/xpu/memory.py:38:12: error: Module has no attribute "_xpu_resetPeakMemoryStats" [attr-defined] +torch/xpu/memory.py:53:12: error: Module has no attribute "_xpu_resetAccumulatedMemoryStats" [attr-defined] +torch/xpu/memory.py:61:12: error: Module has no attribute "_xpu_memoryStats" [attr-defined] +torch/xpu/memory.py:195:12: error: Module has no attribute "_xpu_getMemoryInfo" [attr-defined] +torch/xpu/memory.py:215:12: error: Module has no attribute "_xpu_getMemoryFraction" [attr-defined] +torch/xpu/memory.py:241:5: error: Module has no attribute "_xpu_setMemoryFraction" [attr-defined] +torch/xpu/__init__.py:18:1: error: Module "torch" has no attribute "device"; maybe "Device"? [attr-defined] +torch/xpu/__init__.py:34:27: error: Name "torch._C.Generator" is not defined [name-defined] +torch/xpu/__init__.py:34:27: note: Error code "name-defined" not covered by "type: ignore" comment +torch/xpu/__init__.py:39:12: error: Module has no attribute "_has_xpu" [attr-defined] +torch/xpu/__init__.py:43:28: error: Module has no attribute "_XpuDeviceProperties" [attr-defined] +torch/xpu/__init__.py:44:24: error: Module has no attribute "_xpu_exchangeDevice" [attr-defined] +torch/xpu/__init__.py:45:30: error: Module has no attribute "_xpu_maybeExchangeDevice" [attr-defined] +torch/xpu/__init__.py:62:12: error: Module has no attribute "_xpu_getDeviceCount" [attr-defined] +torch/xpu/__init__.py:77:12: error: _XpuDeviceProperties? has no attribute "has_bfloat16_conversions" [attr-defined] +torch/xpu/__init__.py:89:12: error: _XpuDeviceProperties? has no attribute "has_subgroup_matrix_multiply_accumulate" [attr-defined] +torch/xpu/__init__.py:138:9: error: Module has no attribute "_xpu_init" [attr-defined] +torch/xpu/__init__.py:218:9: error: Module has no attribute "_xpu_setDevice" [attr-defined] +torch/xpu/__init__.py:233:12: error: _XpuDeviceProperties? has no attribute "name" [attr-defined] +torch/xpu/__init__.py:263:6: error: Variable "torch.xpu._XpuDeviceProperties" is not valid as a type [valid-type] +torch/xpu/__init__.py:263:6: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/xpu/__init__.py:281:12: error: Module has no attribute "_xpu_getDevice" [attr-defined] +torch/xpu/__init__.py:284:41: error: Name "torch.device" is not defined [name-defined] +torch/xpu/__init__.py:291:18: error: Module has no attribute "device" [attr-defined] +torch/xpu/__init__.py:293:18: error: Module has no attribute "device" [attr-defined] +torch/xpu/__init__.py:310:12: error: Module has no attribute "_xpu_canDeviceAccessPeer" [attr-defined] +torch/xpu/__init__.py:372:5: error: Module has no attribute "_xpu_setStream" [attr-defined] +torch/xpu/__init__.py:408:18: error: Module has no attribute "_xpu_getCurrentStream" [attr-defined] +torch/xpu/__init__.py:435:18: error: Module has no attribute "_xpu_getStreamFromExternal" [attr-defined] +torch/xpu/__init__.py:453:12: error: Module has no attribute "_xpu_synchronize" [attr-defined] +torch/xpu/__init__.py:460:18: error: Module has no attribute "_xpu_getArchFlags" [attr-defined] +torch/xpu/__init__.py:474:28: error: Name "torch.device" is not defined [name-defined] +torch/xpu/__init__.py:474:45: error: Name "torch._C.Generator" is not defined [name-defined] +torch/xpu/__init__.py:487:42: error: Name "torch.device" is not defined [name-defined] +torch/xpu/__init__.py:505:51: error: Name "torch.device" is not defined [name-defined] +torch/utils/_foreach_utils.py:10:36: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/utils/_foreach_utils.py:22:9: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/utils/_foreach_utils.py:46:17: error: Name "torch.device" is not defined [name-defined] +torch/utils/_foreach_utils.py:46:31: error: Name "torch.dtype" is not defined [name-defined] +torch/utils/_foreach_utils.py:47:12: error: Module has no attribute "_group_tensors_by_device_and_dtype" [attr-defined] +torch/utils/_foreach_utils.py:50:41: error: Name "torch.device" is not defined [name-defined] +torch/utils/_foreach_utils.py:57:57: error: Name "torch.device" is not defined [name-defined] +torch/utils/data/dataset.py:17:1: error: Module "torch" has no attribute "default_generator" [attr-defined] +torch/utils/data/dataset.py:17:1: error: Module "torch" has no attribute "Generator" [attr-defined] +torch/utils/data/dataset.py:17:1: error: Module "torch" has no attribute "randperm" [attr-defined] +torch/sparse/__init__.py:260:20: error: Module has no attribute "_sparse_sum" [attr-defined] +torch/sparse/__init__.py:262:20: error: Module has no attribute "_sparse_sum" [attr-defined] +torch/sparse/__init__.py:265:20: error: Module has no attribute "_sparse_sum" [attr-defined] +torch/sparse/__init__.py:267:20: error: Module has no attribute "_sparse_sum" [attr-defined] +torch/sparse/__init__.py:491:16: error: Module has no attribute "_check_sparse_tensor_invariants" [attr-defined] +torch/sparse/__init__.py:511:9: error: Module has no attribute "_set_check_sparse_tensor_invariants" [attr-defined] +torch/sparse/__init__.py:519:9: error: Module has no attribute "_set_check_sparse_tensor_invariants" [attr-defined] +torch/sparse/__init__.py:533:9: error: Module has no attribute "_set_check_sparse_tensor_invariants" [attr-defined] +torch/sparse/__init__.py:537:9: error: Module has no attribute "_set_check_sparse_tensor_invariants" [attr-defined] +torch/sparse/__init__.py:579:13: error: Module has no attribute "sparse_coo" [attr-defined] +torch/sparse/__init__.py:580:13: error: Module has no attribute "sparse_csr" [attr-defined] +torch/sparse/__init__.py:581:13: error: Module has no attribute "sparse_csc" [attr-defined] +torch/sparse/__init__.py:582:13: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/sparse/__init__.py:583:13: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/sparse/__init__.py:586:13: error: Module has no attribute "sparse_csr" [attr-defined] +torch/sparse/__init__.py:587:13: error: Module has no attribute "sparse_csc" [attr-defined] +torch/sparse/__init__.py:588:13: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/sparse/__init__.py:589:13: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/sparse/__init__.py:591:33: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/sparse/__init__.py:591:51: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/sparse/__init__.py:617:37: error: Module has no attribute "ones" [attr-defined] +torch/sparse/__init__.py:618:65: error: Module has no attribute "bool" [attr-defined] +torch/sparse/__init__.py:625:38: error: Module has no attribute "sparse_coo" [attr-defined] +torch/sparse/__init__.py:631:41: error: Module has no attribute "sparse_csr" [attr-defined] +torch/sparse/__init__.py:631:59: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/sparse/__init__.py:660:39: error: Module has no attribute "sparse_coo" [attr-defined] +torch/sparse/__init__.py:661:29: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/sparse/__init__.py:668:29: error: Module has no attribute "sparse_compressed_tensor" [attr-defined] +torch/signal/windows/windows.py:64:40: error: Name "torch.dtype" is not defined [name-defined] +torch/signal/windows/windows.py:64:61: error: Name "torch.layout" is not defined [name-defined] +torch/signal/windows/windows.py:79:22: error: Module has no attribute "strided" [attr-defined] +torch/signal/windows/windows.py:83:22: error: Module has no attribute "float32" [attr-defined] +torch/signal/windows/windows.py:83:37: error: Module has no attribute "float64" [attr-defined] +torch/signal/windows/windows.py:139:12: error: Name "torch.dtype" is not defined [name-defined] +torch/signal/windows/windows.py:140:13: error: Name "torch.layout" is not defined [name-defined] +torch/signal/windows/windows.py:140:28: error: Module has no attribute "strided" [attr-defined] +torch/signal/windows/windows.py:141:13: error: Name "torch.device" is not defined [name-defined] +torch/signal/windows/windows.py:145:17: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/signal/windows/windows.py:156:16: error: Module has no attribute "empty" [attr-defined] +torch/signal/windows/windows.py:165:9: error: Module has no attribute "linspace" [attr-defined] +torch/signal/windows/windows.py:175:12: error: Module has no attribute "exp" [attr-defined] +torch/signal/windows/windows.py:175:23: error: Module has no attribute "abs" [attr-defined] +torch/signal/windows/windows.py:223:12: error: Name "torch.dtype" is not defined [name-defined] +torch/signal/windows/windows.py:224:13: error: Name "torch.layout" is not defined [name-defined] +torch/signal/windows/windows.py:224:28: error: Module has no attribute "strided" [attr-defined] +torch/signal/windows/windows.py:225:13: error: Name "torch.device" is not defined [name-defined] +torch/signal/windows/windows.py:229:17: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/signal/windows/windows.py:234:16: error: Module has no attribute "empty" [attr-defined] +torch/signal/windows/windows.py:241:9: error: Module has no attribute "linspace" [attr-defined] +torch/signal/windows/windows.py:251:12: error: Module has no attribute "sin" [attr-defined] +torch/signal/windows/windows.py:297:12: error: Name "torch.dtype" is not defined [name-defined] +torch/signal/windows/windows.py:298:13: error: Name "torch.layout" is not defined [name-defined] +torch/signal/windows/windows.py:298:28: error: Module has no attribute "strided" [attr-defined] +torch/signal/windows/windows.py:299:13: error: Name "torch.device" is not defined [name-defined] +torch/signal/windows/windows.py:303:17: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/signal/windows/windows.py:311:16: error: Module has no attribute "empty" [attr-defined] +torch/signal/windows/windows.py:319:9: error: Module has no attribute "linspace" [attr-defined] +torch/signal/windows/windows.py:329:12: error: Module has no attribute "exp" [attr-defined] +torch/signal/windows/windows.py:376:12: error: Name "torch.dtype" is not defined [name-defined] +torch/signal/windows/windows.py:377:13: error: Name "torch.layout" is not defined [name-defined] +torch/signal/windows/windows.py:377:28: error: Module has no attribute "strided" [attr-defined] +torch/signal/windows/windows.py:378:13: error: Name "torch.device" is not defined [name-defined] +torch/signal/windows/windows.py:382:17: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/signal/windows/windows.py:390:16: error: Module has no attribute "empty" [attr-defined] +torch/signal/windows/windows.py:395:16: error: Module has no attribute "ones" [attr-defined] +torch/signal/windows/windows.py:401:12: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/signal/windows/windows.py:405:11: error: Module has no attribute "minimum" [attr-defined] +torch/signal/windows/windows.py:412:9: error: Module has no attribute "linspace" [attr-defined] +torch/signal/windows/windows.py:422:12: error: Module has no attribute "i0" [attr-defined] +torch/signal/windows/windows.py:422:21: error: Module has no attribute "sqrt" [attr-defined] +torch/signal/windows/windows.py:422:46: error: Module has no attribute "pow" [attr-defined] +torch/signal/windows/windows.py:468:12: error: Name "torch.dtype" is not defined [name-defined] +torch/signal/windows/windows.py:469:13: error: Name "torch.layout" is not defined [name-defined] +torch/signal/windows/windows.py:469:28: error: Module has no attribute "strided" [attr-defined] +torch/signal/windows/windows.py:470:13: error: Name "torch.device" is not defined [name-defined] +torch/signal/windows/windows.py:522:12: error: Name "torch.dtype" is not defined [name-defined] +torch/signal/windows/windows.py:523:13: error: Name "torch.layout" is not defined [name-defined] +torch/signal/windows/windows.py:523:28: error: Module has no attribute "strided" [attr-defined] +torch/signal/windows/windows.py:524:13: error: Name "torch.device" is not defined [name-defined] +torch/signal/windows/windows.py:576:12: error: Name "torch.dtype" is not defined [name-defined] +torch/signal/windows/windows.py:577:13: error: Name "torch.layout" is not defined [name-defined] +torch/signal/windows/windows.py:577:28: error: Module has no attribute "strided" [attr-defined] +torch/signal/windows/windows.py:578:13: error: Name "torch.device" is not defined [name-defined] +torch/signal/windows/windows.py:582:17: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/signal/windows/windows.py:637:12: error: Name "torch.dtype" is not defined [name-defined] +torch/signal/windows/windows.py:638:13: error: Name "torch.layout" is not defined [name-defined] +torch/signal/windows/windows.py:638:28: error: Module has no attribute "strided" [attr-defined] +torch/signal/windows/windows.py:639:13: error: Name "torch.device" is not defined [name-defined] +torch/signal/windows/windows.py:643:17: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/signal/windows/windows.py:648:16: error: Module has no attribute "empty" [attr-defined] +torch/signal/windows/windows.py:653:16: error: Module has no attribute "ones" [attr-defined] +torch/signal/windows/windows.py:660:9: error: Module has no attribute "linspace" [attr-defined] +torch/signal/windows/windows.py:670:16: error: Module has no attribute "abs" [attr-defined] +torch/signal/windows/windows.py:713:12: error: Name "torch.dtype" is not defined [name-defined] +torch/signal/windows/windows.py:714:13: error: Name "torch.layout" is not defined [name-defined] +torch/signal/windows/windows.py:714:28: error: Module has no attribute "strided" [attr-defined] +torch/signal/windows/windows.py:715:13: error: Name "torch.device" is not defined [name-defined] +torch/signal/windows/windows.py:719:17: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/signal/windows/windows.py:724:16: error: Module has no attribute "empty" [attr-defined] +torch/signal/windows/windows.py:729:16: error: Module has no attribute "ones" [attr-defined] +torch/signal/windows/windows.py:741:9: error: Module has no attribute "linspace" [attr-defined] +torch/signal/windows/windows.py:751:11: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/signal/windows/windows.py:757:9: error: Module has no attribute "arange" [attr-defined] +torch/signal/windows/windows.py:763:33: error: Module has no attribute "cos" [attr-defined] +torch/signal/windows/windows.py:806:12: error: Name "torch.dtype" is not defined [name-defined] +torch/signal/windows/windows.py:807:13: error: Name "torch.layout" is not defined [name-defined] +torch/signal/windows/windows.py:807:28: error: Module has no attribute "strided" [attr-defined] +torch/signal/windows/windows.py:808:13: error: Name "torch.device" is not defined [name-defined] +torch/signal/windows/windows.py:870:12: error: Name "torch.dtype" is not defined [name-defined] +torch/signal/windows/windows.py:871:13: error: Name "torch.layout" is not defined [name-defined] +torch/signal/windows/windows.py:871:28: error: Module has no attribute "strided" [attr-defined] +torch/signal/windows/windows.py:872:13: error: Name "torch.device" is not defined [name-defined] +torch/profiler/profiler.py:17:1: error: Module "torch._C" has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/nn/utils/weight_norm.py:7:1: error: Module "torch" has no attribute "_weight_norm" [attr-defined] +torch/nn/utils/weight_norm.py:7:1: error: Module "torch" has no attribute "norm_except_dim" [attr-defined] +torch/nn/utils/spectral_norm.py:104:25: error: Module has no attribute "mv" [attr-defined] +torch/nn/utils/spectral_norm.py:106:37: error: Module has no attribute "mv" [attr-defined] +torch/nn/utils/spectral_norm.py:109:47: error: Module has no attribute "contiguous_format" [attr-defined] +torch/nn/utils/spectral_norm.py:110:47: error: Module has no attribute "contiguous_format" [attr-defined] +torch/nn/utils/spectral_norm.py:112:17: error: Module has no attribute "dot" [attr-defined] +torch/nn/utils/spectral_norm.py:112:30: error: Module has no attribute "mv" [attr-defined] +torch/nn/utils/spectral_norm.py:139:38: error: Module has no attribute "dot" [attr-defined] +torch/nn/utils/spectral_norm.py:139:51: error: Module has no attribute "mv" [attr-defined] +torch/nn/utils/parametrize.py:411:18: error: Module has no attribute "_get_tracing_state" [attr-defined] +torch/nn/utils/parametrize.py:813:31: error: Item Module of "Any | Module" has no attribute "__iter__" (not iterable) [union-attr] +torch/nn/utils/parametrize.py:813:31: note: Error code "union-attr" not covered by "type: ignore" comment +torch/nn/utils/parametrizations.py:16:10: error: Module has no attribute "eye" [attr-defined] +torch/nn/utils/parametrizations.py:18:22: error: Module has no attribute "finfo" [attr-defined] +torch/nn/utils/parametrizations.py:19:12: error: Module has no attribute "allclose" [attr-defined] +torch/nn/utils/parametrizations.py:27:14: error: Module has no attribute "geqrf" [attr-defined] +torch/nn/utils/parametrizations.py:85:21: error: Module has no attribute "cat" [attr-defined] +torch/nn/utils/parametrizations.py:91:21: error: Module has no attribute "matrix_exp" [attr-defined] +torch/nn/utils/parametrizations.py:94:22: error: Module has no attribute "eye" [attr-defined] +torch/nn/utils/parametrizations.py:96:21: error: Module has no attribute "add" [attr-defined] +torch/nn/utils/parametrizations.py:159:22: error: Module has no attribute "geqrf" [attr-defined] +torch/nn/utils/parametrizations.py:177:21: error: Module has no attribute "randn" [attr-defined] +torch/nn/utils/parametrizations.py:180:21: error: Module has no attribute "cat" [attr-defined] +torch/nn/utils/parametrizations.py:188:22: error: Module has no attribute "zeros_like" [attr-defined] +torch/nn/utils/parametrizations.py:327:16: error: Module has no attribute "_weight_norm" [attr-defined] +torch/nn/utils/parametrizations.py:330:20: error: Module has no attribute "norm_except_dim" [attr-defined] +torch/nn/utils/parametrizations.py:494:17: error: Module has no attribute "mv" [attr-defined] +torch/nn/utils/parametrizations.py:494:17: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/nn/utils/parametrizations.py:500:17: error: Module has no attribute "mv" [attr-defined] +torch/nn/utils/parametrizations.py:500:17: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/nn/utils/parametrizations.py:515:45: error: Module has no attribute "contiguous_format" [attr-defined] +torch/nn/utils/parametrizations.py:516:45: error: Module has no attribute "contiguous_format" [attr-defined] +torch/nn/utils/parametrizations.py:520:21: error: Module has no attribute "vdot" [attr-defined] +torch/nn/utils/parametrizations.py:520:35: error: Module has no attribute "mv" [attr-defined] +torch/nested/_internal/nested_tensor.py:5:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/nested/_internal/nested_tensor.py:5:1: error: Module "torch._C" has no attribute "DispatchKeySet" [attr-defined] +torch/nested/_internal/nested_tensor.py:41:12: error: Module has no attribute "zeros" [attr-defined] +torch/nested/_internal/nested_tensor.py:115:13: error: Module has no attribute "contiguous_format" [attr-defined] +torch/nested/_internal/nested_tensor.py:117:13: error: Module has no attribute "jagged" [attr-defined] +torch/nested/_internal/nested_tensor.py:177:17: error: Module has no attribute "max" [attr-defined] +torch/nested/_internal/nested_tensor.py:189:17: error: Module has no attribute "min" [attr-defined] +torch/nested/_internal/nested_tensor.py:243:41: error: Module has no attribute "contiguous_format" [attr-defined] +torch/nested/_internal/nested_tensor.py:351:13: error: Module has no attribute "DispatchKey" [attr-defined] +torch/nested/_internal/nested_tensor.py:352:13: error: Module has no attribute "DispatchKey" [attr-defined] +torch/nested/_internal/nested_tensor.py:355:16: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/nested/_internal/nested_tensor.py:377:18: error: Module has no attribute "DisableTorchFunctionSubclass" [attr-defined] +torch/nested/_internal/nested_tensor.py:491:14: error: Module has no attribute "cat" [attr-defined] +torch/nested/_internal/nested_tensor.py:504:19: error: Module has no attribute "cat" [attr-defined] +torch/nested/_internal/nested_tensor.py:506:17: error: Module has no attribute "zeros" [attr-defined] +torch/nested/_internal/nested_tensor.py:506:38: error: Module has no attribute "int64" [attr-defined] +torch/nested/_internal/nested_tensor.py:507:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/nested/_internal/nested_tensor.py:547:36: error: Module has no attribute "arange" [attr-defined] +torch/nested/_internal/nested_tensor.py:548:30: error: Module has no attribute "int64" [attr-defined] +torch/nested/_internal/nested_tensor.py:551:15: error: Module has no attribute "cat" [attr-defined] +torch/nested/_internal/nested_tensor.py:567:8: error: Module has no attribute "any" [attr-defined] +torch/nested/_internal/nested_tensor.py:569:8: error: Module has no attribute "any" [attr-defined] +torch/nested/_internal/nested_tensor.py:574:29: error: Module has no attribute "max" [attr-defined] +torch/nested/_internal/nested_tensor.py:575:22: error: Module has no attribute "min" [attr-defined] +torch/nested/_internal/nested_tensor.py:607:20: error: Module has no attribute "zeros" [attr-defined] +torch/nested/_internal/nested_tensor.py:608:21: error: Module has no attribute "zeros" [attr-defined] +torch/nested/_internal/nested_tensor.py:608:57: error: Module has no attribute "int64" [attr-defined] +torch/nested/_internal/nested_tensor.py:668:12: error: Module has no attribute "_nested_from_padded_tensor" [attr-defined] +torch/mtia/memory.py:23:12: error: Module has no attribute "_mtia_memoryStats" [attr-defined] +torch/mtia/memory.py:63:5: error: Module has no attribute "_mtia_resetPeakMemoryStats" [attr-defined] +torch/mtia/__init__.py:12:1: error: Module "torch" has no attribute "device"; maybe "Device"? [attr-defined] +torch/mtia/__init__.py:22:9: error: Module has no attribute "Event" [attr-defined] +torch/mtia/__init__.py:23:10: error: Module has no attribute "Stream" [attr-defined] +torch/mtia/__init__.py:64:12: error: Module has no attribute "_mtia_isInBadFork" [attr-defined] +torch/mtia/__init__.py:95:9: error: Module has no attribute "_mtia_init" [attr-defined] +torch/mtia/__init__.py:124:12: error: Module has no attribute "_mtia_isBuilt" [attr-defined] +torch/mtia/__init__.py:138:16: error: Module has no attribute "_mtia_deviceSynchronize" [attr-defined] +torch/mtia/__init__.py:144:12: error: Module has no attribute "_mtia_getDeviceCount" [attr-defined] +torch/mtia/__init__.py:149:12: error: Module has no attribute "_accelerator_hooks_get_current_device" [attr-defined] +torch/mtia/__init__.py:152:59: error: Variable "torch.mtia.Stream" is not valid as a type [valid-type] +torch/mtia/__init__.py:152:59: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/mtia/__init__.py:161:12: error: Module has no attribute "_mtia_getCurrentStream" [attr-defined] +torch/mtia/__init__.py:164:59: error: Variable "torch.mtia.Stream" is not valid as a type [valid-type] +torch/mtia/__init__.py:164:59: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/mtia/__init__.py:173:12: error: Module has no attribute "_mtia_getDefaultStream" [attr-defined] +torch/mtia/__init__.py:192:5: error: Module has no attribute "_mtia_recordMemoryHistory" [attr-defined] +torch/mtia/__init__.py:198:12: error: Module has no attribute "_mtia_memorySnapshot" [attr-defined] +torch/mtia/__init__.py:205:5: error: Module has no attribute "_mtia_attachOutOfMemoryObserver" [attr-defined] +torch/mtia/__init__.py:221:12: error: Module has no attribute "_mtia_getDeviceCapability" [attr-defined] +torch/mtia/__init__.py:226:12: error: Module has no attribute "_mtia_emptyCache" [attr-defined] +torch/mtia/__init__.py:229:24: error: Variable "torch.mtia.Stream" is not valid as a type [valid-type] +torch/mtia/__init__.py:229:24: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/mtia/__init__.py:252:9: error: Module has no attribute "_accelerator_hooks_set_current_device" [attr-defined] +torch/mtia/__init__.py:263:12: error: Module has no attribute "_mtia_getDeviceProperties" [attr-defined] +torch/mtia/__init__.py:279:25: error: Module has no attribute "_accelerator_hooks_maybe_exchange_device" [attr-defined] +torch/mtia/__init__.py:282:20: error: Module has no attribute "_accelerator_hooks_maybe_exchange_device" [attr-defined] +torch/mtia/__init__.py:298:2: error: Variable "torch.mtia.Stream" is not valid as a type [valid-type] +torch/mtia/__init__.py:298:2: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/mtia/__init__.py:300:2: error: Variable "torch.mtia.Stream" is not valid as a type [valid-type] +torch/mtia/__init__.py:300:2: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/mtia/__init__.py:352:5: error: Module has no attribute "_mtia_setStream" [attr-defined] +torch/mtia/__init__.py:355:2: error: Variable "torch.mtia.Stream" is not valid as a type [valid-type] +torch/mtia/__init__.py:355:2: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/mtia/__init__.py:366:43: error: Name "torch.device" is not defined [name-defined] +torch/mtia/__init__.py:378:12: error: Module has no attribute "zeros" [attr-defined] +torch/mtia/__init__.py:378:35: error: Module has no attribute "uint8" [attr-defined] +torch/mtia/__init__.py:382:48: error: Name "torch.device" is not defined [name-defined] +torch/mps/__init__.py:16:25: error: Name "torch._C.Generator" is not defined [name-defined] +torch/mps/__init__.py:16:25: note: Error code "name-defined" not covered by "type: ignore" comment +torch/mps/__init__.py:20:37: error: Name "torch._C.Generator" is not defined [name-defined] +torch/mps/__init__.py:23:34: error: Module has no attribute "_mps_get_default_generator" [attr-defined] +torch/mps/__init__.py:29:16: error: Module has no attribute "_has_mps" [attr-defined] +torch/mps/__init__.py:29:38: error: Module has no attribute "_mps_is_available" [attr-defined] +torch/mps/__init__.py:34:12: error: Module has no attribute "_mps_deviceSynchronize" [attr-defined] +torch/mps/__init__.py:37:43: error: Name "torch.device" is not defined [name-defined] +torch/mps/__init__.py:48:48: error: Name "torch.device" is not defined [name-defined] +torch/mps/__init__.py:57:52: error: Module has no attribute "contiguous_format" [attr-defined] +torch/mps/__init__.py:71:12: error: Module has no attribute "_has_mps" [attr-defined] +torch/mps/__init__.py:86:5: error: Module has no attribute "_mps_emptyCache" [attr-defined] +torch/mps/__init__.py:111:5: error: Module has no attribute "_mps_setMemoryFraction" [attr-defined] +torch/mps/__init__.py:121:12: error: Module has no attribute "_mps_currentAllocatedMemory" [attr-defined] +torch/mps/__init__.py:131:12: error: Module has no attribute "_mps_driverAllocatedMemory" [attr-defined] +torch/mps/__init__.py:141:12: error: Module has no attribute "_mps_recommendedMaxMemory" [attr-defined] +torch/masked/_ops.py:295:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:296:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:300:48: error: Module has no attribute "float32" [attr-defined] +torch/masked/_ops.py:305:48: error: Module has no attribute "float32" [attr-defined] +torch/masked/_ops.py:335:48: error: Module has no attribute "float32" [attr-defined] +torch/masked/_ops.py:359:32: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:359:54: error: Module has no attribute "uint8" [attr-defined] +torch/masked/_ops.py:362:32: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:362:54: error: Module has no attribute "int32" [attr-defined] +torch/masked/_ops.py:365:32: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:365:54: error: Module has no attribute "float32" [attr-defined] +torch/masked/_ops.py:371:36: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:371:58: error: Module has no attribute "float32" [attr-defined] +torch/masked/_ops.py:424:16: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:426:16: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:428:12: error: Module has no attribute "is_floating_point" [attr-defined] +torch/masked/_ops.py:429:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:430:14: error: Module has no attribute "is_signed" [attr-defined] +torch/masked/_ops.py:430:49: error: Module has no attribute "uint8" [attr-defined] +torch/masked/_ops.py:431:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:431:33: error: Module has no attribute "iinfo" [attr-defined] +torch/masked/_ops.py:433:12: error: Module has no attribute "is_floating_point" [attr-defined] +torch/masked/_ops.py:434:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:435:14: error: Module has no attribute "is_complex" [attr-defined] +torch/masked/_ops.py:436:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:437:14: error: Module has no attribute "is_signed" [attr-defined] +torch/masked/_ops.py:437:49: error: Module has no attribute "uint8" [attr-defined] +torch/masked/_ops.py:438:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:438:33: error: Module has no attribute "iinfo" [attr-defined] +torch/masked/_ops.py:440:12: error: Module has no attribute "is_floating_point" [attr-defined] +torch/masked/_ops.py:441:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:442:14: error: Module has no attribute "is_signed" [attr-defined] +torch/masked/_ops.py:442:49: error: Module has no attribute "uint8" [attr-defined] +torch/masked/_ops.py:443:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:443:33: error: Module has no attribute "iinfo" [attr-defined] +torch/masked/_ops.py:454:20: error: Module has no attribute "is_floating_point" [attr-defined] +torch/masked/_ops.py:455:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:456:16: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:460:32: error: Module has no attribute "is_floating_point" [attr-defined] +torch/masked/_ops.py:460:68: error: Module has no attribute "float" [attr-defined] +torch/masked/_ops.py:461:16: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:535:28: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/_ops.py:561:25: error: Module has no attribute "cat" [attr-defined] +torch/masked/_ops.py:562:23: error: Module has no attribute "where" [attr-defined] +torch/masked/_ops.py:565:25: error: Module has no attribute "cat" [attr-defined] +torch/masked/_ops.py:566:35: error: Module has no attribute "where" [attr-defined] +torch/masked/_ops.py:586:30: error: Module has no attribute "where" [attr-defined] +torch/masked/_ops.py:604:18: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/masked/_ops.py:609:21: error: Module has no attribute "cat" [attr-defined] +torch/masked/_ops.py:610:20: error: Module has no attribute "cat" [attr-defined] +torch/masked/_ops.py:616:14: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/masked/_ops.py:705:24: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:720:29: error: Module has no attribute "bfloat16" [attr-defined] +torch/masked/_ops.py:720:45: error: Module has no attribute "float16" [attr-defined] +torch/masked/_ops.py:721:40: error: Module has no attribute "float" [attr-defined] +torch/masked/_ops.py:733:12: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/masked/_ops.py:780:32: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:792:32: error: Module has no attribute "cat" [attr-defined] +torch/masked/_ops.py:795:21: error: Module has no attribute "cumsum" [attr-defined] +torch/masked/_ops.py:795:34: error: Module has no attribute "diff" [attr-defined] +torch/masked/_ops.py:813:26: error: Module has no attribute "empty" [attr-defined] +torch/masked/_ops.py:815:28: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/_ops.py:818:12: error: Module has no attribute "sparse_csr_tensor" [attr-defined] +torch/masked/_ops.py:860:23: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:861:16: error: Module has no attribute "where" [attr-defined] +torch/masked/_ops.py:862:25: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/_ops.py:864:25: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/_ops.py:905:29: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:905:44: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/_ops.py:905:62: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/_ops.py:922:27: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:923:20: error: Module has no attribute "broadcast_to" [attr-defined] +torch/masked/_ops.py:923:75: error: Module has no attribute "bool" [attr-defined] +torch/masked/_ops.py:924:29: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/_ops.py:925:20: error: Module has no attribute "_sparse_broadcast_to" [attr-defined] +torch/masked/_ops.py:927:35: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/_ops.py:930:20: error: Module has no attribute "_sparse_broadcast_to" [attr-defined] +torch/masked/_ops.py:936:28: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:938:30: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/_ops.py:939:31: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:944:36: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/_ops.py:948:23: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/_ops.py:952:26: error: Module has no attribute "bool" [attr-defined] +torch/masked/_ops.py:1059:28: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/_ops.py:1061:17: error: Module has no attribute "uint8" [attr-defined] +torch/masked/_ops.py:1062:17: error: Module has no attribute "bool" [attr-defined] +torch/masked/_ops.py:1063:17: error: Module has no attribute "int8" [attr-defined] +torch/masked/_ops.py:1064:17: error: Module has no attribute "int16" [attr-defined] +torch/masked/_ops.py:1065:17: error: Module has no attribute "int32" [attr-defined] +torch/masked/_ops.py:1069:56: error: Module has no attribute "int64" [attr-defined] +torch/masked/_ops.py:1075:17: error: Module has no attribute "uint8" [attr-defined] +torch/masked/_ops.py:1076:17: error: Module has no attribute "bool" [attr-defined] +torch/masked/_ops.py:1077:17: error: Module has no attribute "int8" [attr-defined] +torch/masked/_ops.py:1078:17: error: Module has no attribute "int16" [attr-defined] +torch/masked/_ops.py:1079:17: error: Module has no attribute "int32" [attr-defined] +torch/masked/_ops.py:1081:25: error: Module has no attribute "int64" [attr-defined] +torch/masked/_ops.py:1084:29: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:1085:16: error: Module has no attribute "sum" [attr-defined] +torch/masked/_ops.py:1086:31: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/_ops.py:1088:13: error: Module has no attribute "sum" [attr-defined] +torch/masked/_ops.py:1090:31: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/_ops.py:1091:16: error: Module has no attribute "_sparse_csr_sum" [attr-defined] +torch/masked/_ops.py:1112:28: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/_ops.py:1114:17: error: Module has no attribute "uint8" [attr-defined] +torch/masked/_ops.py:1115:17: error: Module has no attribute "bool" [attr-defined] +torch/masked/_ops.py:1116:17: error: Module has no attribute "int8" [attr-defined] +torch/masked/_ops.py:1117:17: error: Module has no attribute "int16" [attr-defined] +torch/masked/_ops.py:1118:17: error: Module has no attribute "int32" [attr-defined] +torch/masked/_ops.py:1122:56: error: Module has no attribute "int64" [attr-defined] +torch/masked/_ops.py:1128:17: error: Module has no attribute "uint8" [attr-defined] +torch/masked/_ops.py:1129:17: error: Module has no attribute "bool" [attr-defined] +torch/masked/_ops.py:1130:17: error: Module has no attribute "int8" [attr-defined] +torch/masked/_ops.py:1131:17: error: Module has no attribute "int16" [attr-defined] +torch/masked/_ops.py:1132:17: error: Module has no attribute "int32" [attr-defined] +torch/masked/_ops.py:1134:25: error: Module has no attribute "int64" [attr-defined] +torch/masked/_ops.py:1137:29: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:1144:31: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/_ops.py:1151:13: error: Module has no attribute "prod" [attr-defined] +torch/masked/_ops.py:1153:31: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/_ops.py:1168:16: error: Module has no attribute "_sparse_csr_prod" [attr-defined] +torch/masked/_ops.py:1189:29: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:1190:16: error: Module has no attribute "cumsum" [attr-defined] +torch/masked/_ops.py:1209:29: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:1210:16: error: Module has no attribute "cumprod" [attr-defined] +torch/masked/_ops.py:1241:29: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:1242:16: error: Module has no attribute "amax" [attr-defined] +torch/masked/_ops.py:1243:31: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/_ops.py:1251:13: error: Module has no attribute "amax" [attr-defined] +torch/masked/_ops.py:1253:31: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/_ops.py:1259:13: error: Module has no attribute "amax" [attr-defined] +torch/masked/_ops.py:1291:29: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:1292:16: error: Module has no attribute "amin" [attr-defined] +torch/masked/_ops.py:1293:31: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/_ops.py:1301:13: error: Module has no attribute "amin" [attr-defined] +torch/masked/_ops.py:1303:31: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/_ops.py:1309:13: error: Module has no attribute "amin" [attr-defined] +torch/masked/_ops.py:1335:29: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:1336:16: error: Module has no attribute "argmax" [attr-defined] +torch/masked/_ops.py:1361:29: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:1362:16: error: Module has no attribute "argmin" [attr-defined] +torch/masked/_ops.py:1403:24: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:1408:17: error: Module has no attribute "ones" [attr-defined] +torch/masked/_ops.py:1408:47: error: Module has no attribute "int64" [attr-defined] +torch/masked/_ops.py:1420:26: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/_ops.py:1428:13: error: Module has no attribute "mean" [attr-defined] +torch/masked/_ops.py:1459:16: error: Module has no attribute "is_floating_point" [attr-defined] +torch/masked/_ops.py:1461:32: error: Module has no attribute "float" [attr-defined] +torch/masked/_ops.py:1463:29: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:1464:18: error: Module has no attribute "nanmedian" [attr-defined] +torch/masked/_ops.py:1467:35: error: Module has no attribute "isnan" [attr-defined] +torch/masked/_ops.py:1492:29: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:1493:16: error: Module has no attribute "logsumexp" [attr-defined] +torch/masked/_ops.py:1552:24: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:1555:16: error: Module has no attribute "logaddexp" [attr-defined] +torch/masked/_ops.py:1587:29: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:1621:21: error: Module has no attribute "float32" [attr-defined] +torch/masked/_ops.py:1624:25: error: Module has no attribute "float32" [attr-defined] +torch/masked/_ops.py:1625:24: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:1630:17: error: Module has no attribute "ones" [attr-defined] +torch/masked/_ops.py:1630:47: error: Module has no attribute "int64" [attr-defined] +torch/masked/_ops.py:1644:23: error: Module has no attribute "divide" [attr-defined] +torch/masked/_ops.py:1645:13: error: Module has no attribute "subtract" [attr-defined] +torch/masked/_ops.py:1666:21: error: Module has no attribute "subtract" [attr-defined] +torch/masked/_ops.py:1667:21: error: Module has no attribute "maximum" [attr-defined] +torch/masked/_ops.py:1668:18: error: Module has no attribute "divide" [attr-defined] +torch/masked/_ops.py:1670:22: error: Module has no attribute "sqrt" [attr-defined] +torch/masked/_ops.py:1752:29: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:1772:29: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:1792:29: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:1814:29: error: Module has no attribute "strided" [attr-defined] +torch/masked/_ops.py:1817:17: error: Module has no attribute "maximum" [attr-defined] +torch/masked/_ops.py:1819:16: error: Module has no attribute "divide" [attr-defined] +torch/jit/_decomposition_utils.py:6:52: error: Name "torch._C.Graph" is not defined [name-defined] +torch/jit/_decomposition_utils.py:12:5: error: Module has no attribute "_jit_register_decomposition_for_schema" [attr-defined] +torch/jit/_await.py:13:12: error: Module has no attribute "_awaitable" [attr-defined] +torch/jit/_await.py:18:12: error: Module has no attribute "_awaitable_wait" [attr-defined] +torch/jit/_await.py:23:12: error: Module has no attribute "_awaitable_nowait" [attr-defined] +torch/jit/_async.py:99:12: error: Module has no attribute "fork" [attr-defined] +torch/jit/_async.py:112:12: error: Module has no attribute "wait" [attr-defined] +torch/export/graph_signature.py:564:5: error: Module "torch" has no attribute "ScriptObject" [attr-defined] +torch/distributions/utils.py:49:46: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/distributions/utils.py:55:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributions/utils.py:66:8: error: Module has no attribute "_get_tracing_state" [attr-defined] +torch/distributions/utils.py:68:16: error: Module has no attribute "normal" [attr-defined] +torch/distributions/utils.py:69:13: error: Module has no attribute "zeros" [attr-defined] +torch/distributions/utils.py:70:13: error: Module has no attribute "ones" [attr-defined] +torch/distributions/utils.py:72:12: error: Module has no attribute "empty" [attr-defined] +torch/distributions/utils.py:97:16: error: Module has no attribute "sigmoid" [attr-defined] +torch/distributions/utils.py:123:11: error: Module has no attribute "finfo" [attr-defined] +torch/distributions/utils.py:136:16: error: Module has no attribute "log" [attr-defined] +torch/distributions/utils.py:136:40: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/utils.py:137:12: error: Module has no attribute "log" [attr-defined] +torch/distributions/utils.py:192:12: error: Module has no attribute "_get_tracing_state" [attr-defined] +torch/distributions/utils.py:194:14: error: Module has no attribute "arange" [attr-defined] +torch/distributions/utils.py:210:11: error: Module has no attribute "finfo" [attr-defined] +torch/distributions/utils.py:211:12: error: Module has no attribute "_get_tracing_state" [attr-defined] +torch/distributions/utils.py:217:42: error: Module has no attribute "Size" [attr-defined] +torch/distributions/utils.py:218:14: error: Module has no attribute "arange" [attr-defined] +torch/cuda/jiterator.py:88:16: error: Module has no attribute "_cuda_jiterator_compile_and_launch_kernel" [attr-defined] +torch/cuda/graphs.py:41:1: error: Module "torch._C" has no attribute "_cuda_isCurrentStreamCapturing" [attr-defined] +torch/cuda/graphs.py:41:1: error: Module "torch._C" has no attribute "_CUDAGraph" [attr-defined] +torch/cuda/graphs.py:41:1: error: Module "torch._C" has no attribute "_graph_pool_handle" [attr-defined] +torch/cuda/graphs.py:69:17: error: Name "torch._C._CUDAGraph" is not defined [name-defined] +torch/cuda/graphs.py:368:8: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/cuda/graphs.py:368:40: error: Module has no attribute "is_autocast_cache_enabled" [attr-defined] +torch/cuda/graphs.py:443:29: error: Module has no attribute "empty_like" [attr-defined] +torch/cuda/graphs.py:479:13: error: Module has no attribute "empty_like" [attr-defined] +torch/cuda/gds.py:52:5: error: Module has no attribute "_gds_register_buffer" [attr-defined] +torch/cuda/gds.py:69:5: error: Module has no attribute "_gds_deregister_buffer" [attr-defined] +torch/cuda/gds.py:126:23: error: Module has no attribute "_gds_register_handle" [attr-defined] +torch/cuda/gds.py:136:9: error: Module has no attribute "_gds_deregister_handle" [attr-defined] +torch/cuda/gds.py:152:9: error: Module has no attribute "_gds_load_storage" [attr-defined] +torch/cuda/gds.py:167:9: error: Module has no attribute "_gds_save_storage" [attr-defined] +torch/cpu/__init__.py:12:1: error: Module "torch" has no attribute "device"; maybe "Device"? [attr-defined] +torch/cpu/__init__.py:33:12: error: Module has no attribute "_is_avx2_supported" [attr-defined] +torch/cpu/__init__.py:38:12: error: Module has no attribute "_is_avx512_supported" [attr-defined] +torch/cpu/__init__.py:43:12: error: Module has no attribute "_is_avx512_bf16_supported" [attr-defined] +torch/cpu/__init__.py:49:12: error: Module has no attribute "_is_avx512_vnni_supported" [attr-defined] +torch/cpu/__init__.py:54:12: error: Module has no attribute "_is_amx_tile_supported" [attr-defined] +torch/cpu/__init__.py:59:12: error: Module has no attribute "_is_amx_fp16_supported" [attr-defined] +torch/cpu/__init__.py:64:12: error: Module has no attribute "_init_amx" [attr-defined] +torch/autograd/profiler.py:12:1: error: Module "torch._C" has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/autograd/profiler.py:818:18: error: Module has no attribute "DisableTorchFunctionSubclass" [attr-defined] +torch/autograd/profiler.py:856:18: error: Module has no attribute "DisableTorchFunctionSubclass" [attr-defined] +torch/autograd/profiler.py:1094:28: error: Module has no attribute "_demangle" [attr-defined] +torch/autograd/functional.py:248:23: error: Module has no attribute "zeros_like" [attr-defined] +torch/autograd/functional.py:351:45: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/autograd/functional.py:451:13: error: Module has no attribute "zeros_like" [attr-defined] +torch/autograd/functional.py:555:35: error: Module has no attribute "zeros_like" [attr-defined] +torch/autograd/functional.py:772:34: error: Module has no attribute "zeros_like" [attr-defined] +torch/autograd/functional.py:838:41: error: Module has no attribute "zeros_like" [attr-defined] +torch/autograd/functional.py:842:21: error: Module has no attribute "stack" [attr-defined] +torch/autograd/functional.py:1083:45: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/autograd/functional.py:1193:26: error: Module has no attribute "zeros_like" [attr-defined] +torch/autograd/functional.py:1198:45: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:75:28: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:76:26: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:103:17: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:104:17: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:113:26: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:113:52: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:120:26: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:120:49: error: Module has no attribute "int" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:123:38: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:128:30: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:128:55: error: Module has no attribute "int" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:134:40: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:134:62: error: Module has no attribute "int" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:196:18: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:203:19: error: Module has no attribute "rnn_tanh_cell" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:212:19: error: Module has no attribute "rnn_relu_cell" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:287:21: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:294:15: error: Module has no attribute "lstm_cell" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:362:18: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:368:15: error: Module has no attribute "gru_cell" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:431:28: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:432:26: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:453:17: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:454:17: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:461:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:462:56: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:467:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:468:61: error: Module has no attribute "int" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:471:38: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:474:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:475:59: error: Module has no attribute "int" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:481:40: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:481:62: error: Module has no attribute "int" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:599:23: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:606:23: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:638:22: error: Module has no attribute "lstm" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:650:22: error: Module has no attribute "lstm" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:787:18: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:801:22: error: Module has no attribute "gru" [attr-defined] +torch/ao/nn/quantized/reference/modules/rnn.py:813:22: error: Module has no attribute "gru" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:34:18: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:34:31: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:34:45: error: Module has no attribute "qint32" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:35:16: error: Module has no attribute "iinfo" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:48:18: error: Module has no attribute "clone" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:49:18: error: Module has no attribute "clone" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:50:14: error: Module has no attribute "minimum" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:50:28: error: Module has no attribute "maximum" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:52:29: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:52:57: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:53:19: error: Module has no attribute "_make_per_tensor_quantized_tensor" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:57:9: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:58:9: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:59:9: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:61:19: error: Module has no attribute "_make_per_channel_quantized_tensor" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:71:29: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:71:57: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:72:19: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:73:52: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:76:31: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:76:60: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:78:19: error: Module has no attribute "quantize_per_channel" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:80:25: error: Module has no attribute "double" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:81:22: error: Module has no attribute "int64" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:83:13: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:86:30: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:87:19: error: Module has no attribute "quantize_per_channel" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:89:25: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/modules/utils.py:90:22: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/modules/functional_modules.py:51:13: error: Module has no attribute "add" [attr-defined] +torch/ao/nn/quantized/modules/functional_modules.py:58:13: error: Module has no attribute "add" [attr-defined] +torch/ao/nn/quantized/modules/functional_modules.py:66:13: error: Module has no attribute "mul" [attr-defined] +torch/ao/nn/quantized/modules/functional_modules.py:73:13: error: Module has no attribute "mul" [attr-defined] +torch/ao/nn/quantized/modules/functional_modules.py:81:13: error: Module has no attribute "cat" [attr-defined] +torch/ao/nn/quantized/modules/functional_modules.py:88:13: error: Module has no attribute "add" [attr-defined] +torch/ao/nn/quantized/modules/functional_modules.py:96:13: error: Module has no attribute "matmul" [attr-defined] +torch/ao/nn/quantized/modules/functional_modules.py:123:13: error: Module has no attribute "add" [attr-defined] +torch/ao/nn/quantized/modules/functional_modules.py:129:13: error: Module has no attribute "add" [attr-defined] +torch/ao/nn/quantized/modules/functional_modules.py:135:13: error: Module has no attribute "mul" [attr-defined] +torch/ao/nn/quantized/modules/functional_modules.py:141:13: error: Module has no attribute "mul" [attr-defined] +torch/ao/nn/quantized/modules/functional_modules.py:147:13: error: Module has no attribute "cat" [attr-defined] +torch/ao/nn/quantized/modules/functional_modules.py:153:13: error: Module has no attribute "add" [attr-defined] +torch/ao/nn/quantized/modules/functional_modules.py:160:13: error: Module has no attribute "matmul" [attr-defined] +torch/ao/nn/quantized/modules/functional_modules.py:200:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/functional_modules.py:201:46: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantizable/modules/rnn.py:99:34: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/nn/quantizable/modules/rnn.py:99:48: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantizable/modules/rnn.py:100:32: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/nn/quantizable/modules/rnn.py:100:46: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantizable/modules/rnn.py:141:19: error: Module has no attribute "tanh" [attr-defined] +torch/ao/nn/quantizable/modules/rnn.py:149:13: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantizable/modules/rnn.py:150:13: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantizable/modules/rnn.py:155:17: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/nn/quantizable/modules/rnn.py:158:17: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/nn/quantizable/modules/rnn.py:255:25: error: Module has no attribute "stack" [attr-defined] +torch/ao/nn/quantizable/modules/rnn.py:334:22: error: Module has no attribute "cat" [attr-defined] +torch/ao/nn/quantizable/modules/rnn.py:343:21: error: Module has no attribute "stack" [attr-defined] +torch/ao/nn/quantizable/modules/rnn.py:343:21: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/ao/nn/quantizable/modules/rnn.py:344:21: error: Module has no attribute "stack" [attr-defined] +torch/ao/nn/quantizable/modules/rnn.py:344:21: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/ao/nn/quantizable/modules/rnn.py:515:21: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantizable/modules/rnn.py:519:23: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantizable/modules/rnn.py:524:25: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/nn/quantizable/modules/rnn.py:550:21: error: Module has no attribute "stack" [attr-defined] +torch/ao/nn/quantizable/modules/rnn.py:551:21: error: Module has no attribute "stack" [attr-defined] +torch/ao/nn/quantizable/modules/activation.py:400:35: error: Module has no attribute "uint8" [attr-defined] +torch/ao/nn/quantizable/modules/activation.py:406:42: error: Module has no attribute "bool" [attr-defined] +torch/ao/nn/quantizable/modules/activation.py:407:72: error: Module has no attribute "bool" [attr-defined] +torch/ao/nn/quantizable/modules/activation.py:429:71: error: Module has no attribute "uint8" [attr-defined] +torch/ao/nn/quantizable/modules/activation.py:435:52: error: Module has no attribute "bool" [attr-defined] +torch/ao/nn/quantizable/modules/activation.py:445:21: error: Module has no attribute "cat" [attr-defined] +torch/ao/nn/quantizable/modules/activation.py:446:21: error: Module has no attribute "cat" [attr-defined] +torch/ao/nn/quantizable/modules/activation.py:448:50: error: Argument 2 to "pad" has incompatible type "tuple[int, int]"; expected "list[int]" [arg-type] +torch/ao/nn/quantizable/modules/activation.py:450:64: error: Argument 2 to "pad" has incompatible type "tuple[int, int]"; expected "list[int]" [arg-type] +torch/ao/nn/quantizable/modules/activation.py:484:23: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantizable/modules/activation.py:487:27: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/nn/quantizable/modules/activation.py:497:17: error: Module has no attribute "cat" [attr-defined] +torch/ao/nn/quantizable/modules/activation.py:499:23: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantizable/modules/activation.py:502:27: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/nn/quantizable/modules/activation.py:512:17: error: Module has no attribute "cat" [attr-defined] +torch/ao/nn/quantizable/modules/activation.py:515:46: error: Argument 2 to "pad" has incompatible type "tuple[int, int]"; expected "list[int]" [arg-type] +torch/ao/nn/quantizable/modules/activation.py:517:60: error: Argument 2 to "pad" has incompatible type "tuple[int, int]"; expected "list[int]" [arg-type] +torch/ao/nn/quantizable/modules/activation.py:523:31: error: Module has no attribute "bmm" [attr-defined] +torch/ao/nn/quantizable/modules/activation.py:531:35: error: Module has no attribute "bool" [attr-defined] +torch/ao/nn/quantizable/modules/activation.py:553:23: error: Module has no attribute "bmm" [attr-defined] +torch/ao/nn/qat/modules/embedding_ops.py:57:44: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/nn/qat/modules/embedding_ops.py:91:34: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/nn/qat/modules/embedding_ops.py:176:44: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/nn/qat/modules/embedding_ops.py:214:34: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/nn/intrinsic/qat/modules/linear_fused.py:56:35: error: Module has no attribute "empty" [attr-defined] +torch/ao/nn/intrinsic/qat/modules/linear_fused.py:114:23: error: Module has no attribute "sqrt" [attr-defined] +torch/ao/nn/intrinsic/qat/modules/linear_fused.py:124:25: error: Module has no attribute "zeros_like" [attr-defined] +torch/accelerator/_utils.py:9:18: error: Module has no attribute "device" [attr-defined] +torch/accelerator/_utils.py:11:27: error: Module has no attribute "device" [attr-defined] +torch/_library/infer_schema.py:9:1: error: Module "torch" has no attribute "device"; maybe "Device"? [attr-defined] +torch/_library/infer_schema.py:9:1: error: Module "torch" has no attribute "dtype"; maybe "types"? [attr-defined] +torch/_library/infer_schema.py:132:37: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_library/infer_schema.py:185:50: error: Module has no attribute "device" [attr-defined] +torch/_library/fake_impl.py:50:16: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_library/fake_impl.py:59:16: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_library/autograd.py:32:17: error: Name "_C.DispatchKeySet" is not defined [name-defined] +torch/_library/autograd.py:39:14: error: Module has no attribute "_AutoDispatchBelowAutograd" [attr-defined] +torch/_library/autograd.py:42:45: error: Module has no attribute "_after_autograd_keyset" [attr-defined] +torch/_library/autograd.py:49:14: error: Module has no attribute "_AutoDispatchBelowAutograd" [attr-defined] +torch/_library/autograd.py:52:45: error: Module has no attribute "_after_autograd_keyset" [attr-defined] +torch/_library/autograd.py:110:12: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_library/autograd.py:110:37: error: Module has no attribute "_any_requires_grad" [attr-defined] +torch/_library/autograd.py:241:12: error: Module has no attribute "_get_autograd_fallback_mode" [attr-defined] +torch/_library/autograd.py:243:9: error: Module has no attribute "_set_autograd_fallback_mode" [attr-defined] +torch/_library/autograd.py:246:9: error: Module has no attribute "_set_autograd_fallback_mode" [attr-defined] +torch/_higher_order_ops/schema.py:53:14: error: Module has no attribute "IntType" [attr-defined] +torch/_higher_order_ops/schema.py:54:16: error: Module has no attribute "FloatType" [attr-defined] +torch/_higher_order_ops/schema.py:55:14: error: Module has no attribute "StringType" [attr-defined] +torch/_higher_order_ops/schema.py:56:15: error: Module has no attribute "BoolType" [attr-defined] +torch/_higher_order_ops/schema.py:65:20: error: Module has no attribute "AnyType" [attr-defined] +torch/_higher_order_ops/schema.py:67:20: error: Module has no attribute "SymIntType" [attr-defined] +torch/_higher_order_ops/schema.py:69:20: error: Module has no attribute "SymBoolType" [attr-defined] +torch/_higher_order_ops/schema.py:70:16: error: Module has no attribute "_jit_try_infer_type" [attr-defined] +torch/_higher_order_ops/schema.py:80:20: error: Module has no attribute "Argument" [attr-defined] +torch/_higher_order_ops/schema.py:84:16: error: Module has no attribute "Argument" [attr-defined] +torch/_higher_order_ops/schema.py:146:29: error: Name "torch._C.FunctionSchema" is not defined [name-defined] +torch/_higher_order_ops/schema.py:247:17: error: Name "torch._C.FunctionSchema" is not defined [name-defined] +torch/_higher_order_ops/schema.py:252:25: error: Name "torch._C.Argument" is not defined [name-defined] +torch/_higher_order_ops/schema.py:253:23: error: Name "torch._C.Argument" is not defined [name-defined] +torch/_higher_order_ops/schema.py:286:11: error: Name "torch._C.FunctionSchema" is not defined [name-defined] +torch/_higher_order_ops/print.py:28:64: error: Name "torch.FunctionSchema" is not defined [name-defined] +torch/_higher_order_ops/print.py:57:1: error: Function is missing a return type annotation [no-untyped-def] +torch/_higher_order_ops/print.py:57:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_higher_order_ops/print.py:61:16: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/print.py:79:19: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/print.py:80:19: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/print.py:84:1: error: Function is missing a return type annotation [no-untyped-def] +torch/_higher_order_ops/print.py:84:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_functorch/_aot_autograd/utils.py:39:5: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_functorch/_aot_autograd/utils.py:97:9: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/_functorch/_aot_autograd/utils.py:98:9: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/_functorch/_aot_autograd/utils.py:99:9: error: Module has no attribute "get_autocast_dtype" [attr-defined] +torch/_functorch/_aot_autograd/utils.py:100:9: error: Module has no attribute "get_autocast_dtype" [attr-defined] +torch/_functorch/_aot_autograd/utils.py:101:9: error: Module has no attribute "is_autocast_cache_enabled" [attr-defined] +torch/_functorch/_aot_autograd/utils.py:131:15: error: Module has no attribute "_DisableAutocast" [attr-defined] +torch/_functorch/_aot_autograd/utils.py:288:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_functorch/_aot_autograd/utils.py:289:50: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_functorch/_aot_autograd/utils.py:545:17: error: Module has no attribute "Tag" [attr-defined] +torch/utils/data/distributed.py:110:17: error: Module has no attribute "Generator" [attr-defined] +torch/utils/data/distributed.py:112:23: error: Module has no attribute "randperm" [attr-defined] +torch/utils/data/distributed.py:112:23: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/utils/data/datapipes/datapipe.py:141:5: error: Function is missing a type annotation [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:156:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:160:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:168:9: error: Function is missing a type annotation [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:185:5: error: Function is missing a return type annotation [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:197:5: error: Function is missing a type annotation [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:206:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:212:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:229:5: error: Function is missing a return type annotation [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:289:5: error: Function is missing a type annotation [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:304:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:308:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:314:9: error: Function is missing a type annotation [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:324:5: error: Function is missing a return type annotation [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:336:5: error: Function is missing a type annotation [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:345:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:351:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:368:5: error: Function is missing a return type annotation [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:374:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:377:5: error: Function is missing a return type annotation [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:384:25: error: Item "None" of Module | None has no attribute "dumps" [union-attr] +torch/utils/data/datapipes/datapipe.py:390:5: error: Function is missing a type annotation [no-untyped-def] +torch/utils/data/datapipes/datapipe.py:394:30: error: Item "None" of Module | None has no attribute "loads" [union-attr] +torch/utils/data/datapipes/datapipe.py:422:16: error: Incompatible return value type (got "_T_co@__init__", expected "_T_co@__next__") [return-value] +torch/utils/data/datapipes/datapipe.py:426:5: error: Function is missing a type annotation [no-untyped-def] +torch/optim/optimizer.py:31:39: error: Name "torch.device" is not defined [name-defined] +torch/optim/optimizer.py:33:20: error: Name "torch.device" is not defined [name-defined] +torch/optim/optimizer.py:33:34: error: Name "torch.dtype" is not defined [name-defined] +torch/optim/optimizer.py:67:21: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/optim/optimizer.py:103:16: error: Module has no attribute "stack" [attr-defined] +torch/optim/optimizer.py:179:17: error: Module has no attribute "is_floating_point" [attr-defined] +torch/optim/optimizer.py:200:58: error: Module has no attribute "is_floating_point" [attr-defined] +torch/optim/optimizer.py:209:12: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/optimizer.py:210:25: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/optimizer.py:212:24: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/optimizer.py:217:16: error: Module has no attribute "float32" [attr-defined] +torch/optim/optimizer.py:219:9: error: Module has no attribute "float64" [attr-defined] +torch/optim/optimizer.py:219:26: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/optim/optimizer.py:219:74: error: Module has no attribute "float32" [attr-defined] +torch/optim/optimizer.py:227:45: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/optim/optimizer.py:381:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/optim/optimizer.py:544:20: error: Name "torch.device" is not defined [name-defined] +torch/optim/optimizer.py:544:34: error: Name "torch.dtype" is not defined [name-defined] +torch/optim/optimizer.py:792:39: error: Module has no attribute "float32" [attr-defined] +torch/optim/optimizer.py:1044:25: error: Name "torch.device" is not defined [name-defined] +torch/optim/optimizer.py:1044:51: error: Name "torch.dtype" is not defined [name-defined] +torch/optim/optimizer.py:1080:25: error: Module has no attribute "_foreach_zero_" [attr-defined] +torch/nn/utils/clip_grad.py:83:16: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/nn/utils/clip_grad.py:85:15: error: Name "torch.device" is not defined [name-defined] +torch/nn/utils/clip_grad.py:85:29: error: Name "torch.dtype" is not defined [name-defined] +torch/nn/utils/clip_grad.py:96:26: error: Module has no attribute "_foreach_norm" [attr-defined] +torch/nn/utils/clip_grad.py:107:9: error: Module has no attribute "stack" [attr-defined] +torch/nn/utils/clip_grad.py:110:31: error: Module has no attribute "logical_or" [attr-defined] +torch/nn/utils/clip_grad.py:161:15: error: Name "torch.device" is not defined [name-defined] +torch/nn/utils/clip_grad.py:161:29: error: Name "torch.dtype" is not defined [name-defined] +torch/nn/utils/clip_grad.py:169:25: error: Module has no attribute "clamp" [attr-defined] +torch/nn/utils/clip_grad.py:174:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/nn/utils/clip_grad.py:291:13: error: Module has no attribute "_foreach_clamp_min_" [attr-defined] +torch/nn/utils/clip_grad.py:292:13: error: Module has no attribute "_foreach_clamp_max_" [attr-defined] +torch/nested/__init__.py:103:18: error: Module has no attribute "strided" [attr-defined] +torch/nested/__init__.py:104:18: error: Module has no attribute "strided" [attr-defined] +torch/nested/__init__.py:109:28: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/nested/__init__.py:110:20: error: Module has no attribute "_nested_view_from_buffer" [attr-defined] +torch/nested/__init__.py:113:18: error: Module has no attribute "_nested_compute_contiguous_strides_offsets" [attr-defined] +torch/nested/__init__.py:117:20: error: Module has no attribute "_nested_tensor_from_tensor_list" [attr-defined] +torch/nested/__init__.py:118:20: error: Module has no attribute "jagged" [attr-defined] +torch/nested/__init__.py:128:23: error: Module has no attribute "arange" [attr-defined] +torch/nested/__init__.py:129:76: error: Module has no attribute "int64" [attr-defined] +torch/nested/__init__.py:248:18: error: Module has no attribute "strided" [attr-defined] +torch/nested/__init__.py:249:18: error: Module has no attribute "strided" [attr-defined] +torch/nested/__init__.py:257:20: error: Module has no attribute "jagged" [attr-defined] +torch/nested/__init__.py:260:45: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/nested/__init__.py:286:12: error: Module has no attribute "strided" [attr-defined] +torch/nested/__init__.py:329:18: error: Module has no attribute "strided" [attr-defined] +torch/nested/__init__.py:335:31: error: Module has no attribute "unbind" [attr-defined] +torch/nested/__init__.py:335:60: error: Module has no attribute "strided" [attr-defined] +torch/nested/__init__.py:338:20: error: Module has no attribute "jagged" [attr-defined] +torch/nested/__init__.py:345:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/nested/__init__.py:345:71: error: Module has no attribute "int64" [attr-defined] +torch/nested/__init__.py:348:22: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/nested/__init__.py:348:73: error: Module has no attribute "int64" [attr-defined] +torch/nested/__init__.py:350:59: error: Argument 2 to "jagged_from_tensor_and_lengths" has incompatible type "int | Tensor"; expected "Tensor" [arg-type] +torch/nested/__init__.py:350:66: error: Argument 3 to "jagged_from_tensor_and_lengths" has incompatible type "int | Tensor"; expected "Tensor" [arg-type] +torch/nested/__init__.py:448:48: error: Argument 2 to "pad" has incompatible type "tuple[int, int]"; expected "list[int]" [arg-type] +torch/nested/__init__.py:500:25: error: Module has no attribute "strided" [attr-defined] +torch/nested/__init__.py:505:23: error: Module has no attribute "strided" [attr-defined] +torch/nested/__init__.py:517:50: error: Argument 2 to "pad" has incompatible type "tuple[int, int]"; expected "list[int]" [arg-type] +torch/jit/frontend.py:156:29: error: Module has no attribute "ErrorReport" [attr-defined] +torch/jit/frontend.py:272:14: error: Module has no attribute "ErrorReport" [attr-defined] +torch/jit/frontend.py:435:29: error: Module has no attribute "parse_type_comment" [attr-defined] +torch/jit/frontend.py:436:16: error: Module has no attribute "merge_type_from_type_comment" [attr-defined] +torch/fx/passes/split_module.py:285:9: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/fx/passes/split_module.py:329:31: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/fx/passes/runtime_assert.py:149:72: error: Module has no attribute "Size" [attr-defined] +torch/distributions/distribution.py:49:22: error: Name "torch.Size" is not defined [name-defined] +torch/distributions/distribution.py:49:35: error: Module has no attribute "Size" [attr-defined] +torch/distributions/distribution.py:50:22: error: Name "torch.Size" is not defined [name-defined] +torch/distributions/distribution.py:50:35: error: Module has no attribute "Size" [attr-defined] +torch/distributions/distribution.py:77:24: error: Module has no attribute "_is_all_true" [attr-defined] +torch/distributions/distribution.py:109:30: error: Name "torch.Size" is not defined [name-defined] +torch/distributions/distribution.py:116:30: error: Name "torch.Size" is not defined [name-defined] +torch/distributions/distribution.py:168:44: error: Module has no attribute "Size" [attr-defined] +torch/distributions/distribution.py:176:45: error: Module has no attribute "Size" [attr-defined] +torch/distributions/distribution.py:193:28: error: Module has no attribute "Size" [attr-defined] +torch/distributions/distribution.py:265:16: error: Module has no attribute "exp" [attr-defined] +torch/distributions/distribution.py:267:53: error: Module has no attribute "Size" [attr-defined] +torch/distributions/distribution.py:267:70: error: Name "torch.Size" is not defined [name-defined] +torch/distributions/distribution.py:277:41: error: Module has no attribute "Size" [attr-defined] +torch/distributions/distribution.py:278:28: error: Module has no attribute "Size" [attr-defined] +torch/distributions/distribution.py:279:16: error: Module has no attribute "Size" [attr-defined] +torch/distributions/distribution.py:323:16: error: Module has no attribute "_is_all_true" [attr-defined] +torch/cuda/random.py:24:43: error: Name "torch.device" is not defined [name-defined] +torch/cuda/random.py:36:18: error: Module has no attribute "device" [attr-defined] +torch/cuda/random.py:38:18: error: Module has no attribute "device" [attr-defined] +torch/cuda/random.py:53:48: error: Name "torch.device" is not defined [name-defined] +torch/cuda/random.py:63:14: error: Module has no attribute "_DisableFuncTorch" [attr-defined] +torch/cuda/random.py:66:55: error: Module has no attribute "contiguous_format" [attr-defined] +torch/cuda/random.py:68:18: error: Module has no attribute "device" [attr-defined] +torch/cuda/random.py:70:18: error: Module has no attribute "device" [attr-defined] +torch/cuda/memory.py:142:1: error: Module "torch._C" has no attribute "_cuda_beginAllocateCurrentThreadToPool" [attr-defined] +torch/cuda/memory.py:142:1: error: Module "torch._C" has no attribute "_cuda_beginAllocateToPool" [attr-defined] +torch/cuda/memory.py:142:1: error: Module "torch._C" has no attribute "_cuda_CUDAAllocator" [attr-defined] +torch/cuda/memory.py:142:1: error: Module "torch._C" has no attribute "_cuda_endAllocateToPool" [attr-defined] +torch/cuda/memory.py:142:1: error: Module "torch._C" has no attribute "_cuda_releasePool" [attr-defined] +torch/cuda/memory.py:142:1: error: Module "torch._C" has no attribute "_MemPool" [attr-defined] +torch/cuda/memory.py:154:12: error: Module has no attribute "_cuda_cudaHostAllocator" [attr-defined] +torch/cuda/memory.py:159:5: error: Module has no attribute "_cuda_lock_mutex" [attr-defined] +torch/cuda/memory.py:163:9: error: Module has no attribute "_cuda_unlock_mutex" [attr-defined] +torch/cuda/memory.py:199:16: error: Module has no attribute "_cuda_cudaCachingAllocator_raw_alloc" [attr-defined] +torch/cuda/memory.py:216:5: error: Module has no attribute "_cuda_cudaCachingAllocator_raw_delete" [attr-defined] +torch/cuda/memory.py:222:9: error: Module has no attribute "_cuda_cudaCachingAllocator_enable" [attr-defined] +torch/cuda/memory.py:249:5: error: Module has no attribute "_cuda_setMemoryFraction" [attr-defined] +torch/cuda/memory.py:265:12: error: Module has no attribute "_cuda_getMemoryFraction" [attr-defined] +torch/cuda/memory.py:280:9: error: Module has no attribute "_cuda_emptyCache" [attr-defined] +torch/cuda/memory.py:393:12: error: Module has no attribute "_cuda_memoryStats" [attr-defined] +torch/cuda/memory.py:413:12: error: Module has no attribute "_cuda_resetAccumulatedMemoryStats" [attr-defined] +torch/cuda/memory.py:432:12: error: Module has no attribute "_cuda_resetPeakMemoryStats" [attr-defined] +torch/cuda/memory.py:508:12: error: Module has no attribute "_cuda_hostMemoryStats" [attr-defined] +torch/cuda/memory.py:517:12: error: Module has no attribute "_cuda_resetAccumulatedHostMemoryStats" [attr-defined] +torch/cuda/memory.py:526:12: error: Module has no attribute "_cuda_resetPeakHostMemoryStats" [attr-defined] +torch/cuda/memory.py:685:12: error: Module has no attribute "_cuda_memorySnapshot" [attr-defined] +torch/cuda/memory.py:911:5: error: Module has no attribute "_cuda_record_memory_history_legacy" [attr-defined] +torch/cuda/memory.py:911:5: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/cuda/memory.py:1009:5: error: Module has no attribute "_cuda_record_memory_history" [attr-defined] +torch/cuda/memory.py:1009:5: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/cuda/memory.py:1228:9: error: Module has no attribute "_cuda_memorySnapshot" [attr-defined] +torch/cuda/memory.py:1270:5: error: Module has no attribute "_cuda_setMemoryMetadata" [attr-defined] +torch/cuda/memory.py:1281:12: error: Module has no attribute "_cuda_getMemoryMetadata" [attr-defined] +torch/cuda/memory.py:1304:12: error: Module has no attribute "_accelerator_setAllocatorSettings" [attr-defined] +torch/cuda/memory.py:1316:12: error: Module has no attribute "_cuda_getAllocatorBackend" [attr-defined] +torch/cuda/memory.py:1322:35: error: Name "torch._C._cuda_CUDAAllocator" is not defined [name-defined] +torch/cuda/memory.py:1358:27: error: Module has no attribute "_cuda_customAllocator" [attr-defined] +torch/cuda/memory.py:1372:5: error: Module has no attribute "_cuda_changeCurrentAllocator" [attr-defined] +torch/cuda/memory.py:1381:27: error: Module has no attribute "_cuda_getAllocator" [attr-defined] +torch/cuda/__init__.py:26:1: error: Module "torch" has no attribute "device"; maybe "Device"? [attr-defined] +torch/cuda/__init__.py:151:19: error: Module has no attribute "_has_magma" [attr-defined] +torch/cuda/__init__.py:153:27: error: Name "torch._C.Generator" is not defined [name-defined] +torch/cuda/__init__.py:153:27: note: Error code "name-defined" not covered by "type: ignore" comment +torch/cuda/__init__.py:184:16: error: Module has no attribute "_cuda_getDeviceCount" [attr-defined] +torch/cuda/__init__.py:203:37: error: _CudaDeviceProperties? has no attribute "major" [attr-defined] +torch/cuda/__init__.py:216:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/cuda/__init__.py:216:35: error: Module has no attribute "bfloat16" [attr-defined] +torch/cuda/__init__.py:225:21: error: _CudaDeviceProperties? has no attribute "gcnArchName" [attr-defined] +torch/cuda/__init__.py:238:5: error: Module has no attribute "_cuda_sleep" [attr-defined] +torch/cuda/__init__.py:242:5: error: Module has no attribute "_cuda_busy_wait_for_flag" [attr-defined] +torch/cuda/__init__.py:246:5: error: Module has no attribute "_cuda_clear_flag" [attr-defined] +torch/cuda/__init__.py:378:20: error: Module has no attribute "AcceleratorError" [attr-defined] +torch/cuda/__init__.py:379:20: error: Module has no attribute "OutOfMemoryError" [attr-defined] +torch/cuda/__init__.py:424:9: error: Module has no attribute "_cuda_init" [attr-defined] +torch/cuda/__init__.py:584:9: error: Module has no attribute "_cuda_setDevice" [attr-defined] +torch/cuda/__init__.py:599:12: error: _CudaDeviceProperties? has no attribute "name" [attr-defined] +torch/cuda/__init__.py:616:12: error: _CudaDeviceProperties? has no attribute "major" [attr-defined] +torch/cuda/__init__.py:616:24: error: _CudaDeviceProperties? has no attribute "minor" [attr-defined] +torch/cuda/__init__.py:620:55: error: Variable "torch.cuda._CudaDeviceProperties" is not valid as a type [valid-type] +torch/cuda/__init__.py:620:55: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/cuda/__init__.py:648:12: error: Module has no attribute "_cuda_canDeviceAccessPeer" [attr-defined] +torch/cuda/__init__.py:730:5: error: Module has no attribute "_cuda_setStream" [attr-defined] +torch/cuda/__init__.py:1059:9: error: Module has no attribute "_cuda_getDeviceCount" [attr-defined] +torch/cuda/__init__.py:1072:18: error: Module has no attribute "_cuda_getArchFlags" [attr-defined] +torch/cuda/__init__.py:1095:12: error: Module has no attribute "_cuda_getDevice" [attr-defined] +torch/cuda/__init__.py:1108:16: error: Module has no attribute "_cuda_synchronize" [attr-defined] +torch/cuda/__init__.py:1121:12: error: Module has no attribute "_cuda_ipc_collect" [attr-defined] +torch/cuda/__init__.py:1134:18: error: Module has no attribute "_cuda_getCurrentStream" [attr-defined] +torch/cuda/__init__.py:1152:18: error: Module has no attribute "_cuda_getDefaultStream" [attr-defined] +torch/cuda/__init__.py:1178:18: error: Module has no attribute "_cuda_getStreamFromExternal" [attr-defined] +torch/cuda/__init__.py:1189:12: error: Module has no attribute "_cuda_getCurrentBlasHandle" [attr-defined] +torch/cuda/__init__.py:1216:5: error: Module has no attribute "_cuda_set_sync_debug_mode" [attr-defined] +torch/cuda/__init__.py:1222:12: error: Module has no attribute "_cuda_get_sync_debug_mode" [attr-defined] +torch/cuda/__init__.py:1452:41: error: Name "torch.device" is not defined [name-defined] +torch/cuda/__init__.py:1459:18: error: Module has no attribute "device" [attr-defined] +torch/cuda/__init__.py:1461:18: error: Module has no attribute "device" [attr-defined] +torch/cuda/__init__.py:1465:28: error: Name "torch.device" is not defined [name-defined] +torch/cuda/__init__.py:1465:45: error: Name "torch._C.Generator" is not defined [name-defined] +torch/cuda/__init__.py:1478:42: error: Name "torch.device" is not defined [name-defined] +torch/cuda/__init__.py:1496:51: error: Name "torch.device" is not defined [name-defined] +torch/cuda/__init__.py:1570:16: error: Module has no attribute "uint8" [attr-defined] +torch/cuda/__init__.py:1581:16: error: Module has no attribute "double" [attr-defined] +torch/cuda/__init__.py:1592:16: error: Module has no attribute "float" [attr-defined] +torch/cuda/__init__.py:1603:16: error: Module has no attribute "half" [attr-defined] +torch/cuda/__init__.py:1614:16: error: Module has no attribute "long" [attr-defined] +torch/cuda/__init__.py:1625:16: error: Module has no attribute "int" [attr-defined] +torch/cuda/__init__.py:1636:16: error: Module has no attribute "short" [attr-defined] +torch/cuda/__init__.py:1647:16: error: Module has no attribute "int8" [attr-defined] +torch/cuda/__init__.py:1658:16: error: Module has no attribute "bool" [attr-defined] +torch/cuda/__init__.py:1669:16: error: Module has no attribute "bfloat16" [attr-defined] +torch/cuda/__init__.py:1680:16: error: Module has no attribute "cdouble" [attr-defined] +torch/cuda/__init__.py:1691:16: error: Module has no attribute "cfloat" [attr-defined] +torch/ao/quantization/utils.py:106:5: error: Module has no attribute "transpose" [attr-defined] +torch/ao/quantization/utils.py:107:5: error: Module has no attribute "repeat_interleave" [attr-defined] +torch/ao/quantization/utils.py:108:5: error: Module has no attribute "sigmoid" [attr-defined] +torch/ao/quantization/utils.py:109:5: error: Module has no attribute "squeeze" [attr-defined] +torch/ao/quantization/utils.py:110:5: error: Module has no attribute "stack" [attr-defined] +torch/ao/quantization/utils.py:111:5: error: Module has no attribute "sum" [attr-defined] +torch/ao/quantization/utils.py:112:5: error: Module has no attribute "tanh" [attr-defined] +torch/ao/quantization/utils.py:113:5: error: Module has no attribute "unsqueeze" [attr-defined] +torch/ao/quantization/utils.py:114:5: error: Module has no attribute "cat" [attr-defined] +torch/ao/quantization/utils.py:117:5: error: Module has no attribute "mean" [attr-defined] +torch/ao/quantization/utils.py:182:23: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/utils.py:182:61: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/utils.py:187:9: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/quantization/utils.py:188:9: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/quantization/utils.py:189:9: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/utils.py:202:9: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/utils.py:202:23: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/utils.py:203:9: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/utils.py:203:22: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/utils.py:204:9: error: Module has no attribute "qint32" [attr-defined] +torch/ao/quantization/utils.py:204:23: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/utils.py:205:9: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/quantization/utils.py:205:25: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/utils.py:206:9: error: Module has no attribute "quint2x4" [attr-defined] +torch/ao/quantization/utils.py:206:25: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/utils.py:207:9: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/utils.py:208:9: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/utils.py:209:9: error: Module has no attribute "uint16" [attr-defined] +torch/ao/quantization/utils.py:210:9: error: Module has no attribute "int16" [attr-defined] +torch/ao/quantization/utils.py:211:9: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/utils.py:212:9: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/ao/quantization/utils.py:213:9: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/ao/quantization/utils.py:231:19: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/utils.py:235:23: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/utils.py:236:23: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/quantization/utils.py:298:9: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/utils.py:299:9: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/utils.py:300:9: error: Module has no attribute "qint32" [attr-defined] +torch/ao/quantization/utils.py:301:9: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/utils.py:302:9: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/utils.py:303:9: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/utils.py:304:9: error: Module has no attribute "int16" [attr-defined] +torch/ao/quantization/utils.py:305:9: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/utils.py:306:9: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/ao/quantization/utils.py:307:9: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/ao/quantization/utils.py:325:9: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/utils.py:326:9: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/utils.py:327:9: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/utils.py:328:9: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/utils.py:336:42: error: Module has no attribute "qint32" [attr-defined] +torch/ao/quantization/utils.py:336:56: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/utils.py:344:9: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/utils.py:345:9: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/utils.py:346:9: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/utils.py:347:9: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/quantization/utils.py:348:9: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/utils.py:349:9: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/utils.py:350:9: error: Module has no attribute "int16" [attr-defined] +torch/ao/quantization/utils.py:351:9: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/utils.py:352:9: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/ao/quantization/utils.py:353:9: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/ao/quantization/utils.py:361:38: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/utils.py:361:52: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/utils.py:361:65: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/utils.py:361:78: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/utils.py:370:30: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/utils.py:370:44: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/utils.py:373:26: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/utils.py:373:39: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/utils.py:396:9: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/utils.py:397:9: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/utils.py:398:9: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/quantization/utils.py:399:9: error: Module has no attribute "qint32" [attr-defined] +torch/ao/quantization/utils.py:400:9: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/utils.py:401:9: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/utils.py:402:9: error: Module has no attribute "int16" [attr-defined] +torch/ao/quantization/utils.py:403:9: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/utils.py:404:9: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/ao/quantization/utils.py:405:9: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/ao/quantization/utils.py:415:24: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/utils.py:418:34: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/utils.py:452:12: error: Module has no attribute "any" [attr-defined] +torch/ao/quantization/utils.py:462:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/utils.py:473:22: error: Module has no attribute "qint32" [attr-defined] +torch/ao/quantization/utils.py:473:36: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/utils.py:487:22: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/utils.py:487:35: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/utils.py:492:24: error: Module has no attribute "qint32" [attr-defined] +torch/ao/quantization/utils.py:492:38: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/utils.py:501:22: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/utils.py:501:35: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/utils.py:506:24: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/utils.py:506:38: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/utils.py:511:24: error: Module has no attribute "qint32" [attr-defined] +torch/ao/quantization/utils.py:511:38: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/utils.py:513:23: error: Module has no attribute "uint16" [attr-defined] +torch/ao/quantization/utils.py:515:23: error: Module has no attribute "int16" [attr-defined] +torch/ao/quantization/utils.py:661:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/utils.py:664:14: error: Name "torch.qscheme" is not defined [name-defined] +torch/ao/quantization/utils.py:664:30: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/utils.py:678:16: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/utils.py:682:19: error: Module has no attribute "min" [attr-defined] +torch/ao/quantization/utils.py:682:38: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/quantization/utils.py:683:19: error: Module has no attribute "max" [attr-defined] +torch/ao/quantization/utils.py:683:38: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/quantization/utils.py:686:13: error: Module has no attribute "ones" [attr-defined] +torch/ao/quantization/utils.py:686:50: error: Module has no attribute "double" [attr-defined] +torch/ao/quantization/utils.py:687:18: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/utils.py:687:56: error: Module has no attribute "int64" [attr-defined] +torch/ao/quantization/utils.py:690:19: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/utils.py:690:60: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/utils.py:691:23: error: Module has no attribute "max" [attr-defined] +torch/ao/quantization/utils.py:693:17: error: Module has no attribute "max" [attr-defined] +torch/ao/quantization/utils.py:694:22: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/utils.py:694:35: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/utils.py:702:21: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/quantization/utils.py:704:17: error: Module has no attribute "where" [attr-defined] +torch/ao/quantization/utils.py:704:49: error: Module has no attribute "ones_like" [attr-defined] +torch/ao/quantization/utils.py:712:17: error: Module has no attribute "max" [attr-defined] +torch/ao/quantization/utils.py:713:34: error: Module has no attribute "round" [attr-defined] +torch/ao/quantization/utils.py:713:70: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/utils.py:714:22: error: Module has no attribute "clamp" [attr-defined] +torch/ao/quantization/utils.py:720:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/utils.py:723:22: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/utils.py:726:23: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/quantization/utils.py:727:26: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/utils.py:731:21: error: Module has no attribute "double" [attr-defined] +torch/ao/quantization/utils.py:731:50: error: Module has no attribute "int64" [attr-defined] +torch/ao/quantization/utils.py:815:9: error: Module has no attribute "device" [attr-defined] +torch/ao/quantization/utils.py:820:20: error: Module has no attribute "device" [attr-defined] +torch/ao/nn/sparse/quantized/linear.py:17:66: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/sparse/quantized/linear.py:20:21: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/sparse/quantized/linear.py:23:14: error: Module has no attribute "_empty_affine_quantized" [attr-defined] +torch/ao/nn/sparse/quantized/linear.py:24:52: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/sparse/quantized/linear.py:116:15: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/sparse/quantized/linear.py:120:21: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/sparse/quantized/linear.py:129:20: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/sparse/quantized/linear.py:129:57: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/sparse/quantized/linear.py:133:19: error: Module has no attribute "_empty_affine_quantized" [attr-defined] +torch/ao/nn/sparse/quantized/linear.py:134:71: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/sparse/quantized/linear.py:165:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/sparse/quantized/linear.py:166:46: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/sparse/quantized/linear.py:249:25: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/sparse/quantized/linear.py:252:24: error: Module has no attribute "any" [attr-defined] +torch/ao/nn/sparse/quantized/dynamic/linear.py:32:15: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/sparse/quantized/dynamic/linear.py:36:21: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/sparse/quantized/dynamic/linear.py:45:20: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/sparse/quantized/dynamic/linear.py:45:57: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/sparse/quantized/dynamic/linear.py:49:19: error: Module has no attribute "_empty_affine_quantized" [attr-defined] +torch/ao/nn/sparse/quantized/dynamic/linear.py:50:71: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/sparse/quantized/dynamic/linear.py:173:25: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/sparse/quantized/dynamic/linear.py:176:24: error: Module has no attribute "any" [attr-defined] +torch/ao/nn/quantized/functional.py:184:11: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/functional.py:227:23: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/functional.py:231:24: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/functional.py:256:11: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/functional.py:299:23: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/functional.py:303:24: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/functional.py:328:11: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/functional.py:375:23: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/functional.py:379:24: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/functional.py:580:18: error: Module has no attribute "_empty_affine_quantized" [attr-defined] +torch/ao/nn/quantized/functional.py:583:9: error: Module has no attribute "_nn" [attr-defined] +torch/ao/nn/quantized/functional.py:586:18: error: Module has no attribute "_nn" [attr-defined] +torch/ao/nn/quantized/functional.py:588:18: error: Module has no attribute "_nn" [attr-defined] +torch/ao/nn/quantized/functional.py:599:16: error: Module has no attribute "_nn" [attr-defined] +torch/ao/nn/quantized/functional.py:600:12: error: Module has no attribute "_nn" [attr-defined] +torch/ao/nn/quantized/functional.py:656:12: error: Module has no attribute "_nn" [attr-defined] +torch/ao/nn/quantized/functional.py:672:12: error: Module has no attribute "clamp" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:21:30: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:24:26: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:25:18: error: Module has no attribute "_empty_affine_quantized" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:26:56: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:28:28: error: Module has no attribute "float16" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:29:18: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:29:44: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:34:26: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:36:28: error: Module has no attribute "float16" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:43:26: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:45:28: error: Module has no attribute "float16" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:86:26: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:149:69: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:159:20: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:159:52: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:161:21: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:162:23: error: Module has no attribute "_empty_affine_quantized" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:163:75: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:165:23: error: Module has no attribute "float16" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:166:23: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:166:70: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/modules/linear.py:223:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/linear.py:224:46: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/linear.py:337:25: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:16:61: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:19:27: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:19:41: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:20:22: error: Module has no attribute "ones" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:20:55: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:21:27: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:21:61: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:22:18: error: Module has no attribute "_empty_per_channel_affine_quantized" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:37:27: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:37:41: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:46:27: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:46:41: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:131:15: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:139:22: error: Module has no attribute "ones" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:139:55: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:140:27: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:140:61: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:141:23: error: Module has no attribute "_empty_per_channel_affine_quantized" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:146:23: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:161:26: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:226:40: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:232:25: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:232:50: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:297:15: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:313:26: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:370:40: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:376:25: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/modules/embedding_ops.py:376:50: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:41:17: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:105:15: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:157:24: error: Module has no attribute "randn" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:157:68: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:158:24: error: Module has no attribute "randn" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:158:63: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:159:24: error: Module has no attribute "randn" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:159:50: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:160:24: error: Module has no attribute "randn" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:160:50: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:161:29: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:162:28: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:163:62: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:165:28: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:166:62: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:328:34: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:372:35: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:372:48: error: Module has no attribute "float16" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:425:29: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:449:31: error: Module has no attribute "float16" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:546:21: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:842:21: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:957:71: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:965:28: error: Module has no attribute "randn" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:965:75: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:966:28: error: Module has no attribute "randn" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:966:75: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:971:21: error: Module has no attribute "randn" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:971:74: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:972:21: error: Module has no attribute "randn" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:972:75: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:973:21: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:974:25: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:975:57: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:977:25: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:978:57: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:981:21: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:1060:35: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:1060:48: error: Module has no attribute "float16" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:1093:25: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:1223:78: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:1234:18: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:1299:21: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:1340:66: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/rnn.py:1349:18: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/linear.py:42:69: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/linear.py:52:41: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/linear.py:61:43: error: Module has no attribute "float16" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/linear.py:74:41: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/linear.py:134:26: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/linear.py:134:39: error: Module has no attribute "float16" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/linear.py:139:21: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/dynamic/modules/linear.py:141:23: error: Module has no attribute "float16" [attr-defined] +torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:36:68: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:78:75: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:108:25: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:153:68: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:174:25: error: Module has no attribute "qint8" [attr-defined] +torch/accelerator/memory.py:29:12: error: Module has no attribute "_accelerator_isAllocatorInitialized" [attr-defined] +torch/accelerator/memory.py:31:5: error: Module has no attribute "_accelerator_emptyCache" [attr-defined] +torch/accelerator/memory.py:95:12: error: Module has no attribute "_accelerator_isAllocatorInitialized" [attr-defined] +torch/accelerator/memory.py:98:13: error: Module has no attribute "_accelerator_getDeviceStats" [attr-defined] +torch/accelerator/memory.py:201:12: error: Module has no attribute "_accelerator_resetAccumulatedStats" [attr-defined] +torch/accelerator/memory.py:218:12: error: Module has no attribute "_accelerator_resetPeakStats" [attr-defined] +torch/accelerator/memory.py:236:12: error: Module has no attribute "_accelerator_getMemoryInfo" [attr-defined] +torch/_export/verifier.py:49:19: error: Module has no attribute "memory_format" [attr-defined] +torch/_export/verifier.py:49:40: error: Module has no attribute "dtype" [attr-defined] +torch/_export/verifier.py:49:53: error: Module has no attribute "device" [attr-defined] +torch/_export/verifier.py:49:67: error: Module has no attribute "layout" [attr-defined] +torch/_export/verifier.py:223:17: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/_export/utils.py:216:12: error: Module has no attribute "_is_torch_function_mode_enabled" [attr-defined] +torch/_export/utils.py:884:37: error: Incompatible types in assignment (expression has type "stmt", variable has type "FunctionDef") [assignment] +torch/_export/utils.py:1236:9: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_export/utils.py:1237:24: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_export/utils.py:1239:12: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_export/utils.py:1262:15: error: Module has no attribute "_dispatch_get_registrations_for_dispatch_key" [attr-defined] +torch/_export/utils.py:1311:12: error: Module has no attribute "_dispatch_has_kernel" [attr-defined] +torch/_export/utils.py:1374:10: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_export/utils.py:1375:66: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_export/utils.py:1383:14: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_export/utils.py:1384:12: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_export/utils.py:1385:28: error: Module has no attribute "DispatchKey" [attr-defined] +torch/library.py:101:33: error: Module has no attribute "_dispatch_library" [attr-defined] +torch/library.py:155:29: error: Module has no attribute "Tag" [attr-defined] +torch/library.py:247:16: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/library.py:247:55: error: Module has no attribute "DispatchKey" [attr-defined] +torch/library.py:346:16: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/library.py:718:27: error: Module has no attribute "_parse_dispatch_key" [attr-defined] +torch/library.py:764:12: error: Module has no attribute "_dispatch_key_for_device" [attr-defined] +torch/library.py:928:35: error: Module has no attribute "DispatchKey" [attr-defined] +torch/library.py:929:35: error: Module has no attribute "DispatchKey" [attr-defined] +torch/library.py:932:27: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/library.py:933:13: error: Module has no attribute "DispatchKey" [attr-defined] +torch/library.py:934:13: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/library.py:934:37: error: Module has no attribute "DispatchKey" [attr-defined] +torch/library.py:935:14: error: Module has no attribute "_ExcludeDispatchKeyGuard" [attr-defined] +torch/library.py:1480:24: error: Module has no attribute "_dispatch_pystub" [attr-defined] +torch/library.py:1528:50: error: Name "torch.DispatchKey" is not defined [name-defined] +torch/library.py:1529:6: error: Name "torch._C._SafeKernelFunction" is not defined [name-defined] +torch/library.py:1594:28: error: Module has no attribute "DispatchKey" [attr-defined] +torch/library.py:1598:12: error: Module has no attribute "_dispatch_get_computed_kernel_for_dispatch_key" [attr-defined] +torch/utils/data/dataloader.py:135:20: error: Module has no attribute "empty" [attr-defined] +torch/utils/data/dataloader.py:135:42: error: Module has no attribute "int64" [attr-defined] +torch/utils/data/dataloader.py:268:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/data/dataloader.py:650:26: error: Module has no attribute "Generator" [attr-defined] +torch/utils/data/dataloader.py:706:13: error: Module has no attribute "empty" [attr-defined] +torch/utils/data/dataloader.py:706:35: error: Module has no attribute "int64" [attr-defined] +torch/utils/data/dataloader.py:723:26: error: Module has no attribute "Generator" [attr-defined] +torch/utils/data/dataloader.py:740:20: error: Need type annotation for "data" [var-annotated] +torch/utils/data/dataloader.py:1258:9: error: Need type annotation for "_task_info" (hint: "_task_info: dict[, ] = ...") [var-annotated] +torch/optim/sparse_adam.py:101:44: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/sparse_adam.py:102:46: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/sparse_adam.py:105:47: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/sparse_adam.py:106:46: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/sgd.py:423:28: error: Module has no attribute "_foreach_neg" [attr-defined] +torch/optim/sgd.py:423:28: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/sgd.py:428:17: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/sgd.py:430:32: error: Module has no attribute "_foreach_add" [attr-defined] +torch/optim/sgd.py:430:32: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/sgd.py:446:17: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/sgd.py:447:17: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/sgd.py:463:17: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/sgd.py:470:30: error: Module has no attribute "_foreach_mul" [attr-defined] +torch/optim/sgd.py:471:17: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/sgd.py:473:17: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/sgd.py:512:39: error: Module has no attribute "empty_like" [attr-defined] +torch/optim/sgd.py:530:9: error: Module has no attribute "_fused_sgd_" [attr-defined] +torch/optim/rprop.py:73:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/rprop.py:77:30: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/rprop.py:85:28: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/rprop.py:97:21: error: Module has no attribute "zeros" [attr-defined] +torch/optim/rprop.py:99:26: error: Module has no attribute "zeros" [attr-defined] +torch/optim/rprop.py:102:33: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/rprop.py:102:67: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/rprop.py:106:42: error: Module has no attribute "full_like" [attr-defined] +torch/optim/rprop.py:110:42: error: Module has no attribute "full_like" [attr-defined] +torch/optim/rprop.py:257:9: error: Incompatible types in assignment (expression has type "int", variable has type "Tensor") [assignment] +torch/optim/rprop.py:259:12: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/rprop.py:260:20: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/rprop.py:261:20: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/rprop.py:262:21: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/rprop.py:263:25: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/rprop.py:270:24: error: Module has no attribute "where" [attr-defined] +torch/optim/rprop.py:271:24: error: Module has no attribute "where" [attr-defined] +torch/optim/rprop.py:272:24: error: Module has no attribute "where" [attr-defined] +torch/optim/rprop.py:283:41: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/rprop.py:285:24: error: Module has no attribute "where" [attr-defined] +torch/optim/rprop.py:349:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/rprop.py:350:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/rprop.py:353:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/rprop.py:361:17: error: Module has no attribute "_foreach_mul" [attr-defined] +torch/optim/rprop.py:363:13: error: Module has no attribute "_foreach_neg_" [attr-defined] +torch/optim/rprop.py:368:9: error: Module has no attribute "_foreach_copy_" [attr-defined] +torch/optim/rprop.py:370:13: error: Module has no attribute "_foreach_neg_" [attr-defined] +torch/optim/rprop.py:373:9: error: Module has no attribute "_foreach_sign_" [attr-defined] +torch/optim/rprop.py:376:28: error: Module has no attribute "where" [attr-defined] +torch/optim/rprop.py:377:28: error: Module has no attribute "where" [attr-defined] +torch/optim/rprop.py:378:28: error: Module has no attribute "where" [attr-defined] +torch/optim/rprop.py:386:9: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/rprop.py:395:17: error: Module has no attribute "where" [attr-defined] +torch/optim/rprop.py:403:9: error: Module has no attribute "_foreach_addcmul_" [attr-defined] +torch/optim/rmsprop.py:86:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/rmsprop.py:90:30: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/rmsprop.py:107:28: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/rmsprop.py:119:21: error: Module has no attribute "zeros" [attr-defined] +torch/optim/rmsprop.py:121:26: error: Module has no attribute "zeros" [attr-defined] +torch/optim/rmsprop.py:123:39: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/rmsprop.py:124:38: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/rmsprop.py:127:48: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/rmsprop.py:128:42: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/rmsprop.py:131:41: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/rmsprop.py:132:42: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/rmsprop.py:305:9: error: Incompatible types in assignment (expression has type "int", variable has type "Tensor") [assignment] +torch/optim/rmsprop.py:310:28: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/rmsprop.py:312:21: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/rmsprop.py:313:20: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/rmsprop.py:314:26: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/rmsprop.py:321:28: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/rmsprop.py:335:23: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/rmsprop.py:412:29: error: Module has no attribute "_foreach_neg" [attr-defined] +torch/optim/rmsprop.py:412:29: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/rmsprop.py:419:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/rmsprop.py:420:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/rmsprop.py:423:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/rmsprop.py:428:17: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/rmsprop.py:430:33: error: Module has no attribute "_foreach_add" [attr-defined] +torch/optim/rmsprop.py:430:33: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/rmsprop.py:434:9: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/rmsprop.py:435:9: error: Module has no attribute "_foreach_addcmul_" [attr-defined] +torch/optim/rmsprop.py:441:13: error: Module has no attribute "_foreach_lerp_" [attr-defined] +torch/optim/rmsprop.py:442:19: error: Module has no attribute "_foreach_addcmul" [attr-defined] +torch/optim/rmsprop.py:445:13: error: Module has no attribute "_foreach_sqrt_" [attr-defined] +torch/optim/rmsprop.py:446:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/rmsprop.py:448:19: error: Module has no attribute "_foreach_sqrt" [attr-defined] +torch/optim/rmsprop.py:449:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/rmsprop.py:455:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/rmsprop.py:456:13: error: Module has no attribute "_foreach_addcdiv_" [attr-defined] +torch/optim/rmsprop.py:460:31: error: Module has no attribute "_foreach_mul" [attr-defined] +torch/optim/rmsprop.py:461:17: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/rmsprop.py:463:17: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/rmsprop.py:470:17: error: Module has no attribute "_foreach_div_" [attr-defined] +torch/optim/rmsprop.py:471:17: error: Module has no attribute "_foreach_addcdiv_" [attr-defined] +torch/optim/rmsprop.py:473:17: error: Module has no attribute "_foreach_addcdiv_" [attr-defined] +torch/optim/radam.py:85:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/radam.py:89:30: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/radam.py:98:32: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/radam.py:108:25: error: Module has no attribute "zeros" [attr-defined] +torch/optim/radam.py:110:30: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/radam.py:113:40: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/radam.py:114:42: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/radam.py:117:43: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/radam.py:118:42: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/radam.py:294:12: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/radam.py:295:21: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/radam.py:296:20: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/radam.py:297:23: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/radam.py:298:26: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/radam.py:301:9: error: Incompatible types in assignment (expression has type "int", variable has type "Tensor") [assignment] +torch/optim/radam.py:346:22: error: Module has no attribute "where" [attr-defined] +torch/optim/radam.py:424:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/radam.py:425:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/radam.py:428:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/radam.py:436:29: error: Module has no attribute "_foreach_neg" [attr-defined] +torch/optim/radam.py:436:29: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/radam.py:445:32: error: Module has no attribute "_foreach_pow" [attr-defined] +torch/optim/radam.py:446:13: error: Module has no attribute "_foreach_neg_" [attr-defined] +torch/optim/radam.py:447:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/radam.py:448:32: error: Module has no attribute "_foreach_pow" [attr-defined] +torch/optim/radam.py:449:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/radam.py:450:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/radam.py:451:13: error: Module has no attribute "_foreach_div_" [attr-defined] +torch/optim/radam.py:452:13: error: Module has no attribute "_foreach_neg_" [attr-defined] +torch/optim/radam.py:453:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/radam.py:467:17: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/radam.py:471:21: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/radam.py:475:37: error: Module has no attribute "_foreach_add" [attr-defined] +torch/optim/radam.py:475:37: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/radam.py:480:9: error: Module has no attribute "_foreach_lerp_" [attr-defined] +torch/optim/radam.py:482:9: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/radam.py:483:9: error: Module has no attribute "_foreach_addcmul_" [attr-defined] +torch/optim/radam.py:491:19: error: Module has no attribute "_foreach_sub" [attr-defined] +torch/optim/radam.py:492:20: error: Module has no attribute "_foreach_sub" [attr-defined] +torch/optim/radam.py:493:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/radam.py:495:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/radam.py:497:21: error: Module has no attribute "_foreach_mul" [attr-defined] +torch/optim/radam.py:498:13: error: Module has no attribute "_foreach_div_" [attr-defined] +torch/optim/radam.py:500:13: error: Module has no attribute "_foreach_sqrt_" [attr-defined] +torch/optim/radam.py:504:17: error: Module has no attribute "where" [attr-defined] +torch/optim/radam.py:509:33: error: Module has no attribute "where" [attr-defined] +torch/optim/radam.py:510:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/radam.py:512:32: error: Module has no attribute "_foreach_pow" [attr-defined] +torch/optim/radam.py:513:13: error: Module has no attribute "_foreach_neg_" [attr-defined] +torch/optim/radam.py:514:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/radam.py:516:13: error: Module has no attribute "_foreach_div_" [attr-defined] +torch/optim/radam.py:517:13: error: Module has no attribute "_foreach_neg_" [attr-defined] +torch/optim/radam.py:519:32: error: Module has no attribute "_foreach_pow" [attr-defined] +torch/optim/radam.py:520:13: error: Module has no attribute "_foreach_neg_" [attr-defined] +torch/optim/radam.py:521:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/radam.py:522:13: error: Module has no attribute "_foreach_sqrt_" [attr-defined] +torch/optim/radam.py:523:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/radam.py:524:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/radam.py:526:13: error: Module has no attribute "_foreach_neg_" [attr-defined] +torch/optim/radam.py:527:13: error: Module has no attribute "_foreach_div_" [attr-defined] +torch/optim/radam.py:558:18: error: Module has no attribute "_foreach_sqrt" [attr-defined] +torch/optim/radam.py:559:9: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/radam.py:560:9: error: Module has no attribute "_foreach_div_" [attr-defined] +torch/optim/radam.py:561:9: error: Module has no attribute "_foreach_reciprocal_" [attr-defined] +torch/optim/radam.py:562:9: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/radam.py:565:9: error: Module has no attribute "_foreach_addcmul_" [attr-defined] +torch/optim/nadam.py:90:29: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/nadam.py:94:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/nadam.py:99:29: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/nadam.py:103:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/nadam.py:119:32: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/nadam.py:132:25: error: Module has no attribute "zeros" [attr-defined] +torch/optim/nadam.py:134:30: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/nadam.py:137:25: error: Module has no attribute "ones" [attr-defined] +torch/optim/nadam.py:139:30: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/nadam.py:142:40: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/nadam.py:143:42: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/nadam.py:146:43: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/nadam.py:147:42: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/nadam.py:311:12: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/nadam.py:312:21: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/nadam.py:313:20: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/nadam.py:314:23: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/nadam.py:315:26: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/nadam.py:330:9: error: Incompatible types in assignment (expression has type "int", variable has type "Tensor") [assignment] +torch/optim/nadam.py:450:29: error: Module has no attribute "_foreach_neg" [attr-defined] +torch/optim/nadam.py:450:29: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/nadam.py:457:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/nadam.py:458:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/nadam.py:461:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/nadam.py:466:17: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/nadam.py:470:21: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/nadam.py:474:37: error: Module has no attribute "_foreach_add" [attr-defined] +torch/optim/nadam.py:474:37: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/nadam.py:479:9: error: Module has no attribute "_foreach_lerp_" [attr-defined] +torch/optim/nadam.py:481:9: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/nadam.py:482:9: error: Module has no attribute "_foreach_addcmul_" [attr-defined] +torch/optim/nadam.py:486:27: error: Module has no attribute "_foreach_sqrt" [attr-defined] +torch/optim/nadam.py:493:24: error: Module has no attribute "_foreach_mul" [attr-defined] +torch/optim/nadam.py:494:19: error: Module has no attribute "_foreach_pow" [attr-defined] +torch/optim/nadam.py:495:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/nadam.py:496:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/nadam.py:497:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/nadam.py:500:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/nadam.py:501:24: error: Module has no attribute "_foreach_pow" [attr-defined] +torch/optim/nadam.py:502:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/nadam.py:503:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/nadam.py:504:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/nadam.py:509:36: error: Module has no attribute "_foreach_pow" [attr-defined] +torch/optim/nadam.py:511:13: error: Module has no attribute "_foreach_sub_" [attr-defined] +torch/optim/nadam.py:512:13: error: Module has no attribute "_foreach_neg_" [attr-defined] +torch/optim/nadam.py:513:13: error: Module has no attribute "_foreach_sqrt_" [attr-defined] +torch/optim/nadam.py:529:9: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/nadam.py:531:9: error: Module has no attribute "_foreach_div_" [attr-defined] +torch/optim/nadam.py:532:9: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/nadam.py:539:13: error: Module has no attribute "_foreach_sub_" [attr-defined] +torch/optim/nadam.py:540:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/nadam.py:542:21: error: Module has no attribute "_foreach_sub" [attr-defined] +torch/optim/nadam.py:543:13: error: Module has no attribute "_foreach_neg_" [attr-defined] +torch/optim/nadam.py:544:13: error: Module has no attribute "_foreach_div_" [attr-defined] +torch/optim/nadam.py:551:21: error: Module has no attribute "_foreach_mul" [attr-defined] +torch/optim/nadam.py:552:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/nadam.py:555:13: error: Module has no attribute "_foreach_sub_" [attr-defined] +torch/optim/nadam.py:556:13: error: Module has no attribute "_foreach_div_" [attr-defined] +torch/optim/nadam.py:564:25: error: Module has no attribute "_foreach_mul" [attr-defined] +torch/optim/nadam.py:565:13: error: Module has no attribute "_foreach_addcmul_" [attr-defined] +torch/optim/nadam.py:568:13: error: Module has no attribute "_foreach_addcdiv_" [attr-defined] +torch/optim/nadam.py:590:13: error: Module has no attribute "_foreach_addcdiv_" [attr-defined] +torch/optim/nadam.py:596:13: error: Module has no attribute "_foreach_addcdiv_" [attr-defined] +torch/optim/lbfgs.py:46:31: error: Module has no attribute "contiguous_format" [attr-defined] +torch/optim/lbfgs.py:61:60: error: Module has no attribute "contiguous_format" [attr-defined] +torch/optim/lbfgs.py:75:60: error: Module has no attribute "contiguous_format" [attr-defined] +torch/optim/lbfgs.py:90:44: error: Module has no attribute "contiguous_format" [attr-defined] +torch/optim/lbfgs.py:173:61: error: Module has no attribute "contiguous_format" [attr-defined] +torch/optim/lbfgs.py:173:61: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/lbfgs.py:201:60: error: Module has no attribute "contiguous_format" [attr-defined] +torch/optim/lbfgs.py:201:60: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/lbfgs.py:286:33: error: Incompatible types in assignment (expression has type "int", variable has type "None") [assignment] +torch/optim/lbfgs.py:287:34: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/lbfgs.py:302:16: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/lbfgs.py:303:24: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/lbfgs.py:305:16: error: Module has no attribute "cat" [attr-defined] +torch/optim/lbfgs.py:310:16: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/lbfgs.py:311:21: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/lbfgs.py:320:39: error: Module has no attribute "contiguous_format" [attr-defined] +torch/optim/lbfgs.py:440:25: error: Module has no attribute "mul" [attr-defined] +torch/optim/lbfgs.py:446:64: error: Module has no attribute "contiguous_format" [attr-defined] +torch/optim/asgd.py:75:43: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/asgd.py:79:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/asgd.py:83:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/asgd.py:91:32: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/asgd.py:100:37: error: Module has no attribute "zeros" [attr-defined] +torch/optim/asgd.py:104:25: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/optim/asgd.py:112:35: error: Module has no attribute "ones" [attr-defined] +torch/optim/asgd.py:115:35: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/asgd.py:116:42: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/asgd.py:241:12: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/asgd.py:242:20: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/asgd.py:243:21: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/asgd.py:244:18: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/asgd.py:247:9: error: Incompatible types in assignment (expression has type "int", variable has type "Tensor") [assignment] +torch/optim/asgd.py:269:26: error: Module has no attribute "maximum" [attr-defined] +torch/optim/asgd.py:269:53: error: Module has no attribute "ones_like" [attr-defined] +torch/optim/asgd.py:272:23: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/optim/asgd.py:274:22: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/optim/asgd.py:344:29: error: Module has no attribute "_foreach_neg" [attr-defined] +torch/optim/asgd.py:344:29: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/asgd.py:351:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/asgd.py:352:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/asgd.py:355:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/asgd.py:361:17: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/asgd.py:364:32: error: Module has no attribute "_foreach_add" [attr-defined] +torch/optim/asgd.py:368:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/asgd.py:370:28: error: Module has no attribute "_foreach_add" [attr-defined] +torch/optim/asgd.py:378:9: error: Module has no attribute "_foreach_addcmul_" [attr-defined] +torch/optim/asgd.py:389:24: error: Module has no attribute "_foreach_sub" [attr-defined] +torch/optim/asgd.py:390:9: error: Module has no attribute "_foreach_addcmul_" [attr-defined] +torch/optim/asgd.py:397:23: error: Module has no attribute "_foreach_sub" [attr-defined] +torch/optim/asgd.py:398:13: error: Module has no attribute "_foreach_maximum_" [attr-defined] +torch/optim/asgd.py:399:13: error: Module has no attribute "_foreach_reciprocal_" [attr-defined] +torch/optim/asgd.py:400:13: error: Module has no attribute "_foreach_copy_" [attr-defined] +torch/optim/asgd.py:404:24: error: Module has no attribute "_foreach_mul" [attr-defined] +torch/optim/asgd.py:405:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/asgd.py:406:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/asgd.py:407:13: error: Module has no attribute "_foreach_pow_" [attr-defined] +torch/optim/asgd.py:408:13: error: Module has no attribute "_foreach_reciprocal_" [attr-defined] +torch/optim/asgd.py:409:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/asgd.py:410:13: error: Module has no attribute "_foreach_copy_" [attr-defined] +torch/optim/asgd.py:413:17: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/optim/asgd.py:417:17: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/optim/asgd.py:420:13: error: Module has no attribute "_foreach_copy_" [attr-defined] +torch/optim/asgd.py:421:13: error: Module has no attribute "_foreach_copy_" [attr-defined] +torch/optim/adamax.py:80:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/adamax.py:84:30: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/adamax.py:94:28: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/adamax.py:105:21: error: Module has no attribute "zeros" [attr-defined] +torch/optim/adamax.py:107:26: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/adamax.py:109:36: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/adamax.py:110:38: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/adamax.py:112:36: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/adamax.py:113:38: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/adamax.py:265:9: error: Incompatible types in assignment (expression has type "int", variable has type "Tensor") [assignment] +torch/optim/adamax.py:270:12: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/adamax.py:271:21: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/adamax.py:272:20: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/adamax.py:273:23: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/adamax.py:274:23: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/adamax.py:280:13: error: Module has no attribute "maximum" [attr-defined] +torch/optim/adamax.py:286:24: error: Module has no attribute "cat" [attr-defined] +torch/optim/adamax.py:290:27: error: Module has no attribute "amax" [attr-defined] +torch/optim/adamax.py:296:13: error: "int" has no attribute "div_" [attr-defined] +torch/optim/adamax.py:367:29: error: Module has no attribute "_foreach_neg" [attr-defined] +torch/optim/adamax.py:367:29: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/adamax.py:374:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adamax.py:375:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/adamax.py:378:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adamax.py:383:17: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adamax.py:385:33: error: Module has no attribute "_foreach_add" [attr-defined] +torch/optim/adamax.py:385:33: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/adamax.py:390:9: error: Module has no attribute "_foreach_lerp_" [attr-defined] +torch/optim/adamax.py:393:9: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/adamax.py:398:29: error: Module has no attribute "_foreach_abs" [attr-defined] +torch/optim/adamax.py:398:29: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/adamax.py:400:13: error: Module has no attribute "_foreach_abs_" [attr-defined] +torch/optim/adamax.py:402:9: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adamax.py:403:9: error: Module has no attribute "_foreach_maximum_" [attr-defined] +torch/optim/adamax.py:407:32: error: Module has no attribute "_foreach_pow" [attr-defined] +torch/optim/adamax.py:409:13: error: Module has no attribute "_foreach_sub_" [attr-defined] +torch/optim/adamax.py:410:13: error: Module has no attribute "_foreach_div_" [attr-defined] +torch/optim/adamax.py:412:21: error: Module has no attribute "_foreach_mul" [attr-defined] +torch/optim/adamax.py:413:13: error: Module has no attribute "_foreach_addcdiv_" [attr-defined] +torch/optim/adamax.py:419:13: error: Module has no attribute "_foreach_addcdiv_" [attr-defined] +torch/optim/adam.py:130:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/adam.py:136:30: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/adam.py:152:32: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/adam.py:169:25: error: Module has no attribute "zeros" [attr-defined] +torch/optim/adam.py:175:30: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/adam.py:178:40: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/adam.py:179:42: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/adam.py:182:43: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/adam.py:183:42: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/adam.py:187:51: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/adam.py:188:46: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/adam.py:414:9: error: Incompatible types in assignment (expression has type "int", variable has type "Tensor") [assignment] +torch/optim/adam.py:431:12: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/adam.py:432:20: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/adam.py:433:23: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/adam.py:434:26: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/adam.py:436:38: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/adam.py:437:21: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/adam.py:470:34: error: Module has no attribute "square" [attr-defined] +torch/optim/adam.py:511:42: error: Module has no attribute "maximum" [attr-defined] +torch/optim/adam.py:540:17: error: Module has no attribute "maximum" [attr-defined] +torch/optim/adam.py:550:24: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/adam.py:551:34: error: Module has no attribute "view_as_complex" [attr-defined] +torch/optim/adam.py:676:28: error: Module has no attribute "_foreach_neg" [attr-defined] +torch/optim/adam.py:676:28: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/adam.py:683:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adam.py:684:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/adam.py:687:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adam.py:692:17: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/adam.py:696:21: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adam.py:698:36: error: Module has no attribute "_foreach_add" [attr-defined] +torch/optim/adam.py:698:36: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/adam.py:705:9: error: Module has no attribute "_foreach_lerp_" [attr-defined] +torch/optim/adam.py:709:9: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/adam.py:716:35: error: Module has no attribute "_foreach_mul" [attr-defined] +torch/optim/adam.py:716:35: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/adam.py:722:9: error: Module has no attribute "_foreach_addcmul_" [attr-defined] +torch/optim/adam.py:735:32: error: Module has no attribute "_foreach_pow" [attr-defined] +torch/optim/adam.py:735:32: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/adam.py:736:32: error: Module has no attribute "_foreach_pow" [attr-defined] +torch/optim/adam.py:736:32: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/adam.py:738:13: error: Module has no attribute "_foreach_sub_" [attr-defined] +torch/optim/adam.py:739:13: error: Module has no attribute "_foreach_sub_" [attr-defined] +torch/optim/adam.py:741:13: error: Module has no attribute "_foreach_neg_" [attr-defined] +torch/optim/adam.py:744:13: error: Module has no attribute "_foreach_div_" [attr-defined] +torch/optim/adam.py:745:13: error: Module has no attribute "_foreach_reciprocal_" [attr-defined] +torch/optim/adam.py:747:13: error: Module has no attribute "_foreach_sqrt_" [attr-defined] +torch/optim/adam.py:758:17: error: Module has no attribute "_foreach_maximum_" [attr-defined] +torch/optim/adam.py:758:17: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/adam.py:761:35: error: Module has no attribute "_foreach_sqrt" [attr-defined] +torch/optim/adam.py:763:35: error: Module has no attribute "_foreach_sqrt" [attr-defined] +torch/optim/adam.py:765:13: error: Module has no attribute "_foreach_div_" [attr-defined] +torch/optim/adam.py:766:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adam.py:767:13: error: Module has no attribute "_foreach_div_" [attr-defined] +torch/optim/adam.py:770:13: error: Module has no attribute "_foreach_addcdiv_" [attr-defined] +torch/optim/adam.py:786:17: error: Module has no attribute "_foreach_maximum_" [attr-defined] +torch/optim/adam.py:789:35: error: Module has no attribute "_foreach_sqrt" [attr-defined] +torch/optim/adam.py:791:35: error: Module has no attribute "_foreach_sqrt" [attr-defined] +torch/optim/adam.py:793:13: error: Module has no attribute "_foreach_div_" [attr-defined] +torch/optim/adam.py:794:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adam.py:795:13: error: Module has no attribute "_foreach_addcdiv_" [attr-defined] +torch/optim/adam.py:877:9: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adam.py:878:16: error: Module has no attribute "_fused_adam_" [attr-defined] +torch/optim/adam.py:878:70: error: Module has no attribute "_fused_adamw_" [attr-defined] +torch/optim/adam.py:897:13: error: Module has no attribute "_foreach_sub_" [attr-defined] +torch/optim/adagrad.py:81:21: error: Module has no attribute "zeros" [attr-defined] +torch/optim/adagrad.py:87:26: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/adagrad.py:91:24: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/adagrad.py:94:32: error: Module has no attribute "full_like" [attr-defined] +torch/optim/adagrad.py:95:50: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/adagrad.py:115:29: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/adagrad.py:138:32: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/adagrad.py:320:12: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/optim/adagrad.py:350:9: error: Incompatible types in assignment (expression has type "int", variable has type "Tensor") [assignment] +torch/optim/adagrad.py:375:26: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/adagrad.py:377:24: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/adagrad.py:378:29: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/adagrad.py:379:25: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/adagrad.py:387:25: error: Module has no attribute "view_as_complex" [attr-defined] +torch/optim/adagrad.py:388:29: error: Module has no attribute "view_as_complex" [attr-defined] +torch/optim/adagrad.py:461:28: error: Module has no attribute "_foreach_neg" [attr-defined] +torch/optim/adagrad.py:461:28: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/adagrad.py:468:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adagrad.py:469:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/adagrad.py:472:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adagrad.py:477:17: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adagrad.py:479:32: error: Module has no attribute "_foreach_add" [attr-defined] +torch/optim/adagrad.py:479:32: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/adagrad.py:487:9: error: Module has no attribute "_foreach_addcmul_" [attr-defined] +torch/optim/adagrad.py:489:15: error: Module has no attribute "_foreach_sqrt" [attr-defined] +torch/optim/adagrad.py:490:9: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adagrad.py:494:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/adagrad.py:497:25: error: Module has no attribute "_foreach_mul" [attr-defined] +torch/optim/adagrad.py:497:25: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/adagrad.py:499:9: error: Module has no attribute "_foreach_addcdiv_" [attr-defined] +torch/optim/adagrad.py:562:9: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adagrad.py:563:9: error: Module has no attribute "_fused_adagrad_" [attr-defined] +torch/optim/adagrad.py:577:13: error: Module has no attribute "_foreach_sub_" [attr-defined] +torch/optim/adadelta.py:77:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/adadelta.py:81:30: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/adadelta.py:98:28: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/adadelta.py:109:21: error: Module has no attribute "zeros" [attr-defined] +torch/optim/adadelta.py:111:26: error: Module has no attribute "zeros" [attr-defined] +torch/optim/adadelta.py:114:39: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/adadelta.py:115:38: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/adadelta.py:117:38: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/adadelta.py:118:38: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/adadelta.py:281:9: error: Incompatible types in assignment (expression has type "int", variable has type "Tensor") [assignment] +torch/optim/adadelta.py:287:12: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/adadelta.py:288:26: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/adadelta.py:289:25: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/adadelta.py:290:20: error: Module has no attribute "view_as_real" [attr-defined] +torch/optim/adadelta.py:300:12: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/adadelta.py:301:21: error: Module has no attribute "view_as_complex" [attr-defined] +torch/optim/adadelta.py:368:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adadelta.py:369:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/adadelta.py:372:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adadelta.py:375:28: error: Module has no attribute "_foreach_neg" [attr-defined] +torch/optim/adadelta.py:375:28: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/adadelta.py:380:17: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adadelta.py:382:32: error: Module has no attribute "_foreach_add" [attr-defined] +torch/optim/adadelta.py:382:32: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/adadelta.py:386:9: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/adadelta.py:387:9: error: Module has no attribute "_foreach_addcmul_" [attr-defined] +torch/optim/adadelta.py:391:15: error: Module has no attribute "_foreach_add" [attr-defined] +torch/optim/adadelta.py:392:9: error: Module has no attribute "_foreach_sqrt_" [attr-defined] +torch/optim/adadelta.py:394:18: error: Module has no attribute "_foreach_add" [attr-defined] +torch/optim/adadelta.py:395:9: error: Module has no attribute "_foreach_sqrt_" [attr-defined] +torch/optim/adadelta.py:396:9: error: Module has no attribute "_foreach_div_" [attr-defined] +torch/optim/adadelta.py:397:9: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/adadelta.py:399:9: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/adadelta.py:400:9: error: Module has no attribute "_foreach_addcmul_" [attr-defined] +torch/optim/adadelta.py:405:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/adadelta.py:406:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/adadelta.py:408:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/_muon.py:64:23: error: Module has no attribute "addmm" [attr-defined] +torch/optim/_muon.py:67:22: error: Module has no attribute "addmm" [attr-defined] +torch/optim/_muon.py:75:58: error: Name "torch.Size" is not defined [name-defined] +torch/optim/_muon.py:149:16: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/_muon.py:160:44: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/_muon.py:161:43: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/_adafactor.py:69:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/_adafactor.py:84:16: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/_adafactor.py:98:33: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/_adafactor.py:111:41: error: Module has no attribute "zeros_like" [attr-defined] +torch/optim/_adafactor.py:112:47: error: Module has no attribute "preserve_format" [attr-defined] +torch/optim/_adafactor.py:373:20: error: Module has no attribute "finfo" [attr-defined] +torch/optim/_adafactor.py:376:9: error: Incompatible types in assignment (expression has type "int", variable has type "Tensor") [assignment] +torch/optim/_adafactor.py:421:20: error: Name "torch.device" is not defined [name-defined] +torch/optim/_adafactor.py:421:44: error: Name "torch.dtype" is not defined [name-defined] +torch/optim/_adafactor.py:429:24: error: Name "torch.device" is not defined [name-defined] +torch/optim/_adafactor.py:429:48: error: Name "torch.dtype" is not defined [name-defined] +torch/optim/_adafactor.py:506:20: error: Module has no attribute "finfo" [attr-defined] +torch/optim/_adafactor.py:512:28: error: Module has no attribute "_foreach_neg" [attr-defined] +torch/optim/_adafactor.py:512:28: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/optim/_adafactor.py:519:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/_adafactor.py:520:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/_adafactor.py:523:13: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/_adafactor.py:540:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/_adafactor.py:553:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/_adafactor.py:554:13: error: Module has no attribute "_foreach_div_" [attr-defined] +torch/optim/_adafactor.py:555:13: error: Module has no attribute "_foreach_lerp_" [attr-defined] +torch/optim/_adafactor.py:562:13: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/_adafactor.py:563:13: error: Module has no attribute "_foreach_div_" [attr-defined] +torch/optim/_adafactor.py:564:13: error: Module has no attribute "_foreach_lerp_" [attr-defined] +torch/optim/_adafactor.py:576:13: error: Module has no attribute "_foreach_clamp_min_" [attr-defined] +torch/optim/_adafactor.py:577:13: error: Module has no attribute "_foreach_div_" [attr-defined] +torch/optim/_adafactor.py:584:29: error: Module has no attribute "_foreach_mul" [attr-defined] +torch/optim/_adafactor.py:585:13: error: Module has no attribute "_foreach_lerp_" [attr-defined] +torch/optim/_adafactor.py:592:9: error: Module has no attribute "_foreach_clamp_min_" [attr-defined] +torch/optim/_adafactor.py:593:9: error: Module has no attribute "_foreach_rsqrt_" [attr-defined] +torch/optim/_adafactor.py:594:9: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/_adafactor.py:601:9: error: Module has no attribute "_foreach_mul_" [attr-defined] +torch/optim/_adafactor.py:602:9: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/jit/_recursive.py:59:24: error: Module has no attribute "_jit_script_class_compile" [attr-defined] +torch/jit/_recursive.py:128:5: error: Module has no attribute "device" [attr-defined] +torch/jit/_recursive.py:129:5: error: Module has no attribute "layout" [attr-defined] +torch/jit/_recursive.py:130:5: error: Module has no attribute "dtype" [attr-defined] +torch/jit/_recursive.py:131:5: error: Module has no attribute "qscheme" [attr-defined] +torch/jit/_recursive.py:189:29: error: Module has no attribute "ConcreteModuleTypeBuilder" [attr-defined] +torch/jit/_recursive.py:227:29: error: Module has no attribute "InferredType" [attr-defined] +torch/jit/_recursive.py:230:29: error: Module has no attribute "InferredType" [attr-defined] +torch/jit/_recursive.py:232:29: error: Module has no attribute "_jit_try_infer_type" [attr-defined] +torch/jit/_recursive.py:277:33: error: Module has no attribute "ConcreteModuleType" [attr-defined] +torch/jit/_recursive.py:364:27: error: Module has no attribute "_jit_try_infer_type" [attr-defined] +torch/jit/_recursive.py:389:23: error: Module has no attribute "_jit_try_infer_type" [attr-defined] +torch/jit/_recursive.py:423:41: error: Name "torch._C.ConcreteModuleType" is not defined [name-defined] +torch/jit/_recursive.py:424:27: error: Name "torch._C.ConcreteModuleType" is not defined [name-defined] +torch/jit/_recursive.py:526:18: error: Module has no attribute "_create_object_with_type" [attr-defined] +torch/jit/_recursive.py:568:18: error: Module has no attribute "_create_module_with_type" [attr-defined] +torch/jit/_recursive.py:594:40: error: Module has no attribute "InterfaceType" [attr-defined] +torch/jit/_recursive.py:635:9: error: Module has no attribute "_run_emit_module_hook" [attr-defined] +torch/jit/_recursive.py:802:23: error: Module has no attribute "_replace_overloaded_method_decl" [attr-defined] +torch/jit/_recursive.py:1006:33: error: Module has no attribute "ModuleDict" [attr-defined] +torch/jit/_recursive.py:1008:40: error: Module has no attribute "ConcreteModuleType" [attr-defined] +torch/distributions/von_mises.py:88:14: error: Module has no attribute "where" [attr-defined] +torch/distributions/von_mises.py:94:12: error: Module has no attribute "zeros" [attr-defined] +torch/distributions/von_mises.py:94:39: error: Module has no attribute "bool" [attr-defined] +torch/distributions/von_mises.py:97:13: error: Module has no attribute "rand" [attr-defined] +torch/distributions/von_mises.py:99:13: error: Module has no attribute "cos" [attr-defined] +torch/distributions/von_mises.py:105:17: error: Module has no attribute "where" [attr-defined] +torch/distributions/von_mises.py:141:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/von_mises.py:147:41: error: Module has no attribute "cos" [attr-defined] +torch/distributions/von_mises.py:157:28: error: Module has no attribute "double" [attr-defined] +torch/distributions/von_mises.py:161:38: error: Module has no attribute "double" [attr-defined] +torch/distributions/von_mises.py:167:19: error: "int" has no attribute "sqrt" [attr-defined] +torch/distributions/von_mises.py:173:16: error: Module has no attribute "where" [attr-defined] +torch/distributions/von_mises.py:176:35: error: Module has no attribute "Size" [attr-defined] +torch/distributions/von_mises.py:187:13: error: Module has no attribute "empty" [attr-defined] +torch/distributions/uniform.py:48:16: error: Incompatible return value type (got "float", expected "Tensor") [return-value] +torch/distributions/uniform.py:67:27: error: Module has no attribute "Size" [attr-defined] +torch/distributions/uniform.py:74:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/uniform.py:86:45: error: Module has no attribute "Size" [attr-defined] +torch/distributions/uniform.py:88:16: error: Module has no attribute "rand" [attr-defined] +torch/distributions/uniform.py:96:16: error: Module has no attribute "log" [attr-defined] +torch/distributions/uniform.py:109:16: error: Module has no attribute "log" [attr-defined] +torch/distributions/transforms.py:370:20: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributions/transforms.py:505:19: error: Name "torch.Size" is not defined [name-defined] +torch/distributions/transforms.py:506:20: error: Name "torch.Size" is not defined [name-defined] +torch/distributions/transforms.py:509:25: error: Module has no attribute "Size" [attr-defined] +torch/distributions/transforms.py:510:26: error: Module has no attribute "Size" [attr-defined] +torch/distributions/transforms.py:630:13: error: Module has no attribute "finfo" [attr-defined] +torch/distributions/transforms.py:631:12: error: Module has no attribute "clamp" [attr-defined] +torch/distributions/transforms.py:631:24: error: Module has no attribute "sigmoid" [attr-defined] +torch/distributions/transforms.py:651:17: error: Module has no attribute "finfo" [attr-defined] +torch/distributions/transforms.py:720:16: error: Module has no attribute "atanh" [attr-defined] +torch/distributions/transforms.py:803:20: error: "bool" has no attribute "all" [attr-defined] +torch/distributions/transforms.py:803:20: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/distributions/transforms.py:810:20: error: "bool" has no attribute "all" [attr-defined] +torch/distributions/transforms.py:810:20: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/distributions/transforms.py:831:22: error: Module has no attribute "full_like" [attr-defined] +torch/distributions/transforms.py:833:22: error: Module has no attribute "abs" [attr-defined] +torch/distributions/transforms.py:873:13: error: Module has no attribute "tanh" [attr-defined] +torch/distributions/transforms.py:874:15: error: Module has no attribute "finfo" [attr-defined] +torch/distributions/transforms.py:884:17: error: Module has no attribute "eye" [attr-defined] +torch/distributions/transforms.py:891:24: error: Module has no attribute "cumsum" [attr-defined] +torch/distributions/transforms.py:1005:14: error: Module has no attribute "clamp" [attr-defined] +torch/distributions/transforms.py:1005:34: error: Module has no attribute "finfo" [attr-defined] +torch/distributions/transforms.py:1126:16: error: Module has no attribute "cat" [attr-defined] +torch/distributions/transforms.py:1137:16: error: Module has no attribute "cat" [attr-defined] +torch/distributions/transforms.py:1160:20: error: Module has no attribute "cat" [attr-defined] +torch/distributions/transforms.py:1222:16: error: Module has no attribute "stack" [attr-defined] +torch/distributions/transforms.py:1230:16: error: Module has no attribute "stack" [attr-defined] +torch/distributions/transforms.py:1242:16: error: Module has no attribute "stack" [attr-defined] +torch/distributions/multivariate_normal.py:27:12: error: Module has no attribute "matmul" [attr-defined] +torch/distributions/multivariate_normal.py:82:32: error: Module has no attribute "flip" [attr-defined] +torch/distributions/multivariate_normal.py:83:13: error: Module has no attribute "transpose" [attr-defined] +torch/distributions/multivariate_normal.py:83:29: error: Module has no attribute "flip" [attr-defined] +torch/distributions/multivariate_normal.py:84:10: error: Module has no attribute "eye" [attr-defined] +torch/distributions/multivariate_normal.py:199:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/multivariate_normal.py:224:16: error: Module has no attribute "matmul" [attr-defined] +torch/distributions/multivariate_normal.py:230:16: error: Module has no attribute "cholesky_inverse" [attr-defined] +torch/distributions/multivariate_normal.py:250:45: error: Module has no attribute "Size" [attr-defined] +torch/distributions/laplace.py:50:16: error: Incompatible return value type (got "float", expected "Tensor") [return-value] +torch/distributions/laplace.py:60:27: error: Module has no attribute "Size" [attr-defined] +torch/distributions/laplace.py:67:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/laplace.py:74:45: error: Module has no attribute "Size" [attr-defined] +torch/distributions/laplace.py:76:17: error: Module has no attribute "finfo" [attr-defined] +torch/distributions/laplace.py:77:12: error: Module has no attribute "_get_tracing_state" [attr-defined] +torch/distributions/laplace.py:79:17: error: Module has no attribute "rand" [attr-defined] +torch/distributions/laplace.py:80:55: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/laplace.py:86:51: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/laplace.py:91:17: error: Module has no attribute "log" [attr-defined] +torch/distributions/laplace.py:91:45: error: Module has no attribute "abs" [attr-defined] +torch/distributions/laplace.py:96:56: error: Module has no attribute "expm1" [attr-defined] +torch/distributions/laplace.py:102:56: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/laplace.py:105:20: error: Module has no attribute "log" [attr-defined] +torch/distributions/independent.py:5:1: error: Module "torch" has no attribute "Size" [attr-defined] +torch/distributions/independent.py:72:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/independent.py:113:35: error: Module has no attribute "Size" [attr-defined] +torch/distributions/independent.py:116:45: error: Module has no attribute "Size" [attr-defined] +torch/distributions/geometric.py:70:27: error: Module has no attribute "Size" [attr-defined] +torch/distributions/geometric.py:79:20: error: "bool" has no attribute "all" [attr-defined] +torch/distributions/geometric.py:90:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/geometric.py:101:16: error: Incompatible return value type (got "float", expected "Tensor") [return-value] +torch/distributions/geometric.py:105:16: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributions/geometric.py:119:35: error: Module has no attribute "Size" [attr-defined] +torch/distributions/geometric.py:121:16: error: Module has no attribute "finfo" [attr-defined] +torch/distributions/geometric.py:123:16: error: Module has no attribute "_get_tracing_state" [attr-defined] +torch/distributions/geometric.py:125:21: error: Module has no attribute "rand" [attr-defined] +torch/distributions/geometric.py:135:43: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributions/cauchy.py:47:27: error: Module has no attribute "Size" [attr-defined] +torch/distributions/cauchy.py:54:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/cauchy.py:63:16: error: Module has no attribute "full" [attr-defined] +torch/distributions/cauchy.py:73:16: error: Module has no attribute "full" [attr-defined] +torch/distributions/cauchy.py:77:45: error: Module has no attribute "Size" [attr-defined] +torch/distributions/cauchy.py:94:16: error: Module has no attribute "atan" [attr-defined] +torch/distributions/cauchy.py:97:16: error: Module has no attribute "tan" [attr-defined] +torch/distributions/categorical.py:82:74: error: Module has no attribute "Size" [attr-defined] +torch/distributions/categorical.py:88:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/categorical.py:89:37: error: Module has no attribute "Size" [attr-defined] +torch/distributions/categorical.py:118:30: error: Name "torch.Size" is not defined [name-defined] +torch/distributions/categorical.py:123:16: error: Module has no attribute "full" [attr-defined] +torch/distributions/categorical.py:136:16: error: Module has no attribute "full" [attr-defined] +torch/distributions/categorical.py:143:35: error: Module has no attribute "Size" [attr-defined] +torch/distributions/categorical.py:144:41: error: Module has no attribute "Size" [attr-defined] +torch/distributions/categorical.py:145:28: error: Module has no attribute "Size" [attr-defined] +torch/distributions/categorical.py:147:22: error: Module has no attribute "multinomial" [attr-defined] +torch/distributions/categorical.py:159:20: error: Module has no attribute "finfo" [attr-defined] +torch/distributions/categorical.py:160:18: error: Module has no attribute "clamp" [attr-defined] +torch/distributions/categorical.py:166:18: error: Module has no attribute "arange" [attr-defined] +torch/distributions/categorical.py:166:49: error: Module has no attribute "long" [attr-defined] +torch/distributions/binomial.py:89:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/binomial.py:115:16: error: "int" has no attribute "floor" [attr-defined] +torch/distributions/binomial.py:130:30: error: Name "torch.Size" is not defined [name-defined] +torch/distributions/binomial.py:133:35: error: Module has no attribute "Size" [attr-defined] +torch/distributions/binomial.py:136:20: error: Module has no attribute "binomial" [attr-defined] +torch/distributions/binomial.py:143:27: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/binomial.py:144:27: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/binomial.py:145:29: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/binomial.py:153:34: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/binomial.py:153:46: error: Module has no attribute "exp" [attr-defined] +torch/distributions/binomial.py:153:57: error: Module has no attribute "abs" [attr-defined] +torch/distributions/binomial.py:168:18: error: Module has no attribute "exp" [attr-defined] +torch/distributions/binomial.py:176:18: error: Module has no attribute "arange" [attr-defined] +torch/ao/quantization/observer.py:232:15: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/observer.py:233:17: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/observer.py:238:13: error: Module has no attribute "finfo" [attr-defined] +torch/ao/quantization/observer.py:238:25: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/observer.py:252:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:254:13: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/observer.py:255:13: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/observer.py:256:13: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/quantization/observer.py:257:13: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/observer.py:258:13: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/quantization/observer.py:266:13: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/observer.py:267:13: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/observer.py:268:13: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/quantization/observer.py:269:13: error: Module has no attribute "qint32" [attr-defined] +torch/ao/quantization/observer.py:270:13: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/observer.py:271:13: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/observer.py:272:13: error: Module has no attribute "int16" [attr-defined] +torch/ao/quantization/observer.py:273:13: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/observer.py:274:13: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/ao/quantization/observer.py:275:13: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/ao/quantization/observer.py:276:13: error: Module has no attribute "uint16" [attr-defined] +torch/ao/quantization/observer.py:311:19: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:311:33: error: Module has no attribute "finfo" [attr-defined] +torch/ao/quantization/observer.py:311:45: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/observer.py:369:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:374:23: error: Module has no attribute "min" [attr-defined] +torch/ao/quantization/observer.py:374:42: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/quantization/observer.py:375:23: error: Module has no attribute "max" [attr-defined] +torch/ao/quantization/observer.py:375:42: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/quantization/observer.py:378:17: error: Module has no attribute "ones" [attr-defined] +torch/ao/quantization/observer.py:378:54: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/observer.py:379:22: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/observer.py:379:60: error: Module has no attribute "int64" [attr-defined] +torch/ao/quantization/observer.py:382:29: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/observer.py:383:32: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/observer.py:385:27: error: Module has no attribute "max" [attr-defined] +torch/ao/quantization/observer.py:387:21: error: Module has no attribute "max" [attr-defined] +torch/ao/quantization/observer.py:388:31: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/observer.py:388:45: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/observer.py:396:32: error: Module has no attribute "uint16" [attr-defined] +torch/ao/quantization/observer.py:398:30: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/quantization/observer.py:400:21: error: Module has no attribute "where" [attr-defined] +torch/ao/quantization/observer.py:400:58: error: Module has no attribute "ones_like" [attr-defined] +torch/ao/quantization/observer.py:408:21: error: Module has no attribute "max" [attr-defined] +torch/ao/quantization/observer.py:409:38: error: Module has no attribute "round" [attr-defined] +torch/ao/quantization/observer.py:409:74: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/observer.py:410:26: error: Module has no attribute "clamp" [attr-defined] +torch/ao/quantization/observer.py:416:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:419:26: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:422:32: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/quantization/observer.py:423:30: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:509:15: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/observer.py:510:17: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/observer.py:515:13: error: Module has no attribute "finfo" [attr-defined] +torch/ao/quantization/observer.py:515:25: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/observer.py:546:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:547:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:549:29: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/observer.py:551:31: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/observer.py:564:36: error: Module has no attribute "aminmax" [attr-defined] +torch/ao/quantization/observer.py:565:19: error: Module has no attribute "min" [attr-defined] +torch/ao/quantization/observer.py:566:19: error: Module has no attribute "max" [attr-defined] +torch/ao/quantization/observer.py:583:28: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:584:28: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:636:15: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/observer.py:637:17: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/observer.py:641:13: error: Module has no attribute "finfo" [attr-defined] +torch/ao/quantization/observer.py:641:25: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/observer.py:676:32: error: Module has no attribute "aminmax" [attr-defined] +torch/ao/quantization/observer.py:678:40: error: Module has no attribute "aminmax" [attr-defined] +torch/ao/quantization/observer.py:720:15: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/observer.py:721:17: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/quantization/observer.py:726:13: error: Module has no attribute "finfo" [attr-defined] +torch/ao/quantization/observer.py:726:25: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/observer.py:752:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:753:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:755:29: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/observer.py:757:31: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/observer.py:781:13: error: Module has no attribute "flatten" [attr-defined] +torch/ao/quantization/observer.py:783:32: error: Module has no attribute "aminmax" [attr-defined] +torch/ao/quantization/observer.py:785:40: error: Module has no attribute "aminmax" [attr-defined] +torch/ao/quantization/observer.py:786:23: error: Module has no attribute "min" [attr-defined] +torch/ao/quantization/observer.py:787:23: error: Module has no attribute "max" [attr-defined] +torch/ao/quantization/observer.py:889:24: error: Module has no attribute "rand" [attr-defined] +torch/ao/quantization/observer.py:892:24: error: Module has no attribute "rand" [attr-defined] +torch/ao/quantization/observer.py:929:15: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/observer.py:930:17: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/quantization/observer.py:934:13: error: Module has no attribute "finfo" [attr-defined] +torch/ao/quantization/observer.py:934:25: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/observer.py:973:13: error: Module has no attribute "flatten" [attr-defined] +torch/ao/quantization/observer.py:975:32: error: Module has no attribute "aminmax" [attr-defined] +torch/ao/quantization/observer.py:977:40: error: Module has no attribute "aminmax" [attr-defined] +torch/ao/quantization/observer.py:1019:16: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/observer.py:1019:30: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/observer.py:1020:17: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/observer.py:1025:13: error: Module has no attribute "finfo" [attr-defined] +torch/ao/quantization/observer.py:1025:25: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/observer.py:1052:43: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/observer.py:1053:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:1054:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:1055:31: error: Module has no attribute "iinfo" [attr-defined] +torch/ao/quantization/observer.py:1087:19: error: Module has no attribute "arange" [attr-defined] +torch/ao/quantization/observer.py:1094:28: error: Module has no attribute "clamp" [attr-defined] +torch/ao/quantization/observer.py:1095:13: error: Module has no attribute "div" [attr-defined] +torch/ao/quantization/observer.py:1101:26: error: Module has no attribute "clamp" [attr-defined] +torch/ao/quantization/observer.py:1102:13: error: Module has no attribute "div" [attr-defined] +torch/ao/quantization/observer.py:1108:16: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/observer.py:1114:13: error: Module has no attribute "ones" [attr-defined] +torch/ao/quantization/observer.py:1119:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:1126:32: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:1143:17: error: Module has no attribute "sum" [attr-defined] +torch/ao/quantization/observer.py:1144:16: error: Module has no attribute "cumsum" [attr-defined] +torch/ao/quantization/observer.py:1207:13: error: Module has no attribute "linspace" [attr-defined] +torch/ao/quantization/observer.py:1215:36: error: Module has no attribute "linspace" [attr-defined] +torch/ao/quantization/observer.py:1220:13: error: Module has no attribute "bucketize" [attr-defined] +torch/ao/quantization/observer.py:1230:28: error: Module has no attribute "bincount" [attr-defined] +torch/ao/quantization/observer.py:1252:25: error: Module has no attribute "sum" [attr-defined] +torch/ao/quantization/observer.py:1254:17: error: Module has no attribute "histc" [attr-defined] +torch/ao/quantization/observer.py:1254:17: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/ao/quantization/observer.py:1285:25: error: Module has no attribute "histc" [attr-defined] +torch/ao/quantization/observer.py:1285:25: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/ao/quantization/observer.py:1293:24: error: Module has no attribute "aminmax" [attr-defined] +torch/ao/quantization/observer.py:1304:28: error: Module has no attribute "aminmax" [attr-defined] +torch/ao/quantization/observer.py:1314:23: error: Module has no attribute "min" [attr-defined] +torch/ao/quantization/observer.py:1315:23: error: Module has no attribute "max" [attr-defined] +torch/ao/quantization/observer.py:1320:32: error: Module has no attribute "histc" [attr-defined] +torch/ao/quantization/observer.py:1359:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:1394:54: error: Module has no attribute "Size" [attr-defined] +torch/ao/quantization/observer.py:1395:48: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:1397:54: error: Module has no attribute "Size" [attr-defined] +torch/ao/quantization/observer.py:1398:48: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:1441:15: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/observer.py:1442:17: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/observer.py:1455:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:1455:67: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/observer.py:1456:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/observer.py:1456:77: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/observer.py:1493:15: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/observer.py:1504:23: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/observer.py:1506:19: error: Module has no attribute "finfo" [attr-defined] +torch/ao/quantization/observer.py:1506:31: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/observer.py:1552:30: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/observer.py:1585:30: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/observer.py:1615:26: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/observer.py:1839:23: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/observer.py:1844:22: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/observer.py:1845:27: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/observer.py:2070:11: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/observer.py:2070:32: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/observer.py:2077:11: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/observer.py:2078:13: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/observer.py:2093:11: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/observer.py:2093:32: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/observer.py:2101:11: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/observer.py:2102:13: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/observer.py:2112:11: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/observer.py:2122:11: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/observer.py:2122:33: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/quantization/observer.py:2129:11: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/quantization/observer.py:2129:35: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/quantization/observer.py:2138:46: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/observer.py:2141:44: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/pt2e/export_utils.py:66:27: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/export_utils.py:140:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/export_utils.py:141:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/export_utils.py:142:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/export_utils.py:143:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/export_utils.py:144:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/pruning/sparsifier/base_sparsifier.py:129:34: error: Module has no attribute "ones" [attr-defined] +torch/ao/pruning/sparsifier/base_sparsifier.py:222:39: error: Module has no attribute "ones_like" [attr-defined] +torch/accelerator/__init__.py:96:59: error: Name "torch.device" is not defined [name-defined] +torch/accelerator/__init__.py:122:16: error: Module has no attribute "_accelerator_getAccelerator" [attr-defined] +torch/accelerator/__init__.py:134:12: error: Module has no attribute "_accelerator_getDeviceIndex" [attr-defined] +torch/accelerator/__init__.py:165:5: error: Module has no attribute "_accelerator_setDeviceIndex" [attr-defined] +torch/accelerator/__init__.py:187:52: error: Name "torch.Stream" is not defined [name-defined] +torch/accelerator/__init__.py:199:12: error: Module has no attribute "_accelerator_getStream" [attr-defined] +torch/accelerator/__init__.py:202:24: error: Name "torch.Stream" is not defined [name-defined] +torch/accelerator/__init__.py:210:5: error: Module has no attribute "_accelerator_setStream" [attr-defined] +torch/accelerator/__init__.py:237:5: error: Module has no attribute "_accelerator_synchronizeDevice" [attr-defined] +torch/accelerator/__init__.py:270:29: error: Module has no attribute "_accelerator_exchangeDevice" [attr-defined] +torch/accelerator/__init__.py:274:13: error: Module has no attribute "_accelerator_maybeExchangeDevice" [attr-defined] +torch/_higher_order_ops/utils.py:52:10: error: Module has no attribute "_AutoDispatchBelowAutograd" [attr-defined] +torch/_higher_order_ops/utils.py:55:12: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_higher_order_ops/utils.py:65:24: error: Module has no attribute "is_floating_point" [attr-defined] +torch/_higher_order_ops/utils.py:65:59: error: Module has no attribute "is_complex" [attr-defined] +torch/_higher_order_ops/utils.py:458:23: error: Module has no attribute "bool" [attr-defined] +torch/_higher_order_ops/utils.py:459:20: error: Module has no attribute "empty_strided" [attr-defined] +torch/_higher_order_ops/utils.py:473:18: error: Module has no attribute "_is_functional_tensor" [attr-defined] +torch/_higher_order_ops/utils.py:478:34: error: Module has no attribute "_from_functional_tensor" [attr-defined] +torch/_higher_order_ops/utils.py:528:16: error: Module has no attribute "_is_functional_tensor" [attr-defined] +torch/_higher_order_ops/utils.py:529:21: error: Module has no attribute "_from_functional_tensor" [attr-defined] +torch/_higher_order_ops/utils.py:555:17: error: Module has no attribute "zeros_like" [attr-defined] +torch/_higher_order_ops/utils.py:688:32: error: Module has no attribute "stack" [attr-defined] +torch/_higher_order_ops/utils.py:828:13: error: Module has no attribute "zeros_like" [attr-defined] +torch/_higher_order_ops/utils.py:858:12: error: Module has no attribute "select_copy" [attr-defined] +torch/_higher_order_ops/utils.py:1144:31: error: Name "torch._C.DispatchKeySet" is not defined [name-defined] +torch/_higher_order_ops/utils.py:1145:31: error: Name "torch._C.DispatchKeySet" is not defined [name-defined] +torch/_higher_order_ops/utils.py:1149:27: error: Module has no attribute "_dispatch_tls_local_include_set" [attr-defined] +torch/_higher_order_ops/utils.py:1151:27: error: Module has no attribute "_dispatch_tls_local_exclude_set" [attr-defined] +torch/_higher_order_ops/utils.py:1164:21: error: Module has no attribute "_ForceDispatchKeyGuard" [attr-defined] +torch/_higher_order_ops/utils.py:1194:31: error: Module has no attribute "FunctionSchema" [attr-defined] +torch/profiler/_utils.py:323:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/profiler/_utils.py:325:23: error: Module has no attribute "float32" [attr-defined] +torch/profiler/_utils.py:327:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/profiler/_utils.py:329:23: error: Module has no attribute "float32" [attr-defined] +torch/profiler/_utils.py:331:44: error: Module has no attribute "mean" [attr-defined] +torch/profiler/_utils.py:331:69: error: Module has no attribute "std" [attr-defined] +torch/profiler/_utils.py:332:44: error: Module has no attribute "mean" [attr-defined] +torch/profiler/_utils.py:332:69: error: Module has no attribute "std" [attr-defined] +torch/optim/swa_utils.py:50:12: error: Module has no attribute "is_floating_point" [attr-defined] +torch/optim/swa_utils.py:50:58: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/swa_utils.py:53:13: error: Module has no attribute "_foreach_lerp_" [attr-defined] +torch/optim/swa_utils.py:71:12: error: Module has no attribute "is_floating_point" [attr-defined] +torch/optim/swa_utils.py:71:63: error: Module has no attribute "is_complex" [attr-defined] +torch/optim/swa_utils.py:74:13: error: Module has no attribute "_foreach_lerp_" [attr-defined] +torch/optim/swa_utils.py:77:17: error: Redundant cast to "float" [redundant-cast] +torch/optim/swa_utils.py:80:21: error: Module has no attribute "_foreach_sub" [attr-defined] +torch/optim/swa_utils.py:82:17: error: Module has no attribute "_foreach_addcdiv_" [attr-defined] +torch/optim/swa_utils.py:88:17: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/optim/swa_utils.py:226:37: error: Name "torch.device" is not defined [name-defined] +torch/optim/swa_utils.py:242:27: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/optim/swa_utils.py:242:49: error: Module has no attribute "long" [attr-defined] +torch/optim/swa_utils.py:326:9: error: Incompatible types in assignment (expression has type "int", variable has type "Tensor") [assignment] +torch/optim/swa_utils.py:333:33: error: Name "torch.device" is not defined [name-defined] +torch/nn/attention/_fa4.py:39:31: error: Name "torch.device" is not defined [name-defined] +torch/nn/attention/_fa4.py:94:28: error: Module has no attribute "float16" [attr-defined] +torch/nn/attention/_fa4.py:94:43: error: Module has no attribute "bfloat16" [attr-defined] +torch/nn/attention/_fa4.py:97:28: error: Module has no attribute "float32" [attr-defined] +torch/nn/attention/_fa4.py:127:31: error: Module has no attribute "int32" [attr-defined] +torch/nn/attention/_fa4.py:278:17: error: Module has no attribute "zeros" [attr-defined] +torch/nn/attention/_fa4.py:278:41: error: Module has no attribute "uint64" [attr-defined] +torch/nn/attention/_fa4.py:279:21: error: Module has no attribute "zeros" [attr-defined] +torch/nn/attention/_fa4.py:279:43: error: Module has no attribute "uint64" [attr-defined] +torch/nn/attention/_fa4.py:280:18: error: Module has no attribute "empty" [attr-defined] +torch/jit/_serialization.py:190:10: error: Module has no attribute "CompilationUnit" [attr-defined] +torch/jit/_serialization.py:192:22: error: Module has no attribute "import_ir_module" [attr-defined] +torch/jit/_serialization.py:201:22: error: Module has no attribute "import_ir_module_from_buffer" [attr-defined] +torch/jit/_serialization.py:219:24: error: Module has no attribute "device" [attr-defined] +torch/jit/_serialization.py:220:64: error: Module has no attribute "device" [attr-defined] +torch/jit/_serialization.py:235:32: error: Module has no attribute "_load_jit_module_from_file" [attr-defined] +torch/jit/_serialization.py:237:32: error: Module has no attribute "_load_jit_module_from_bytes" [attr-defined] +torch/jit/_serialization.py:284:9: error: Module has no attribute "_save_jit_module" [attr-defined] +torch/jit/_serialization.py:286:13: error: Module has no attribute "_save_jit_module_to_bytes" [attr-defined] +torch/jit/_serialization.py:315:12: error: Module has no attribute "_get_module_info_from_flatbuffer" [attr-defined] +torch/distributions/wishart.py:22:12: error: Module has no attribute "digamma" [attr-defined] +torch/distributions/wishart.py:24:11: error: Module has no attribute "arange" [attr-defined] +torch/distributions/wishart.py:30:24: error: Module has no attribute "finfo" [attr-defined] +torch/distributions/wishart.py:106:27: error: Module has no attribute "Size" [attr-defined] +torch/distributions/wishart.py:107:23: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributions/wishart.py:148:19: error: Module has no attribute "arange" [attr-defined] +torch/distributions/wishart.py:158:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/wishart.py:176:19: error: Module has no attribute "arange" [attr-defined] +torch/distributions/wishart.py:203:20: error: Module has no attribute "eye" [attr-defined] +torch/distributions/wishart.py:208:16: error: Module has no attribute "cholesky_solve" [attr-defined] +torch/distributions/wishart.py:230:47: error: Module has no attribute "Size" [attr-defined] +torch/distributions/wishart.py:238:16: error: Module has no attribute "tril_indices" [attr-defined] +torch/distributions/wishart.py:239:28: error: Module has no attribute "randn" [attr-defined] +torch/distributions/wishart.py:240:13: error: Module has no attribute "Size" [attr-defined] +torch/distributions/wishart.py:248:37: error: Module has no attribute "Size" [attr-defined] +torch/distributions/wishart.py:260:39: error: Module has no attribute "_get_tracing_state" [attr-defined] +torch/distributions/wishart.py:262:24: error: Module has no attribute "Size" [attr-defined] +torch/distributions/wishart.py:270:12: error: Module has no attribute "_get_tracing_state" [attr-defined] +torch/distributions/wishart.py:274:26: error: Module has no attribute "where" [attr-defined] +torch/distributions/wishart.py:312:15: error: Module has no attribute "mvlgamma" [attr-defined] +torch/distributions/wishart.py:314:15: error: Module has no attribute "cholesky_solve" [attr-defined] +torch/distributions/wishart.py:331:15: error: Module has no attribute "mvlgamma" [attr-defined] +torch/distributions/wishart.py:347:13: error: Module has no attribute "mvlgamma" [attr-defined] +torch/distributions/transformed_distribution.py:112:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/transformed_distribution.py:141:35: error: Module has no attribute "Size" [attr-defined] +torch/distributions/transformed_distribution.py:154:45: error: Module has no attribute "Size" [attr-defined] +torch/distributions/poisson.py:58:27: error: Module has no attribute "Size" [attr-defined] +torch/distributions/poisson.py:65:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/poisson.py:71:35: error: Module has no attribute "Size" [attr-defined] +torch/distributions/poisson.py:74:20: error: Module has no attribute "poisson" [attr-defined] +torch/distributions/poisson.py:80:43: error: "int" has no attribute "lgamma" [attr-defined] +torch/distributions/poisson.py:84:17: error: Module has no attribute "log" [attr-defined] +torch/distributions/poisson.py:88:16: error: Module has no attribute "exp" [attr-defined] +torch/distributions/one_hot_categorical.py:63:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/one_hot_categorical.py:101:30: error: Name "torch.Size" is not defined [name-defined] +torch/distributions/one_hot_categorical.py:104:35: error: Module has no attribute "Size" [attr-defined] +torch/distributions/one_hot_categorical.py:105:24: error: Module has no attribute "Size" [attr-defined] +torch/distributions/one_hot_categorical.py:122:18: error: Module has no attribute "eye" [attr-defined] +torch/distributions/one_hot_categorical.py:140:45: error: Module has no attribute "Size" [attr-defined] +torch/distributions/normal.py:64:27: error: Module has no attribute "Size" [attr-defined] +torch/distributions/normal.py:71:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/normal.py:78:35: error: Module has no attribute "Size" [attr-defined] +torch/distributions/normal.py:81:20: error: Module has no attribute "normal" [attr-defined] +torch/distributions/normal.py:83:45: error: Module has no attribute "Size" [attr-defined] +torch/distributions/normal.py:109:17: error: Module has no attribute "erf" [attr-defined] +torch/distributions/normal.py:113:40: error: Module has no attribute "erfinv" [attr-defined] +torch/distributions/normal.py:116:52: error: Module has no attribute "log" [attr-defined] +torch/distributions/normal.py:124:45: error: Module has no attribute "log" [attr-defined] +torch/distributions/lowrank_multivariate_normal.py:24:9: error: Module has no attribute "matmul" [attr-defined] +torch/distributions/lowrank_multivariate_normal.py:143:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/lowrank_multivariate_normal.py:181:13: error: Module has no attribute "matmul" [attr-defined] +torch/distributions/lowrank_multivariate_normal.py:190:29: error: Module has no attribute "matmul" [attr-defined] +torch/distributions/lowrank_multivariate_normal.py:192:13: error: Module has no attribute "diag_embed" [attr-defined] +torch/distributions/lowrank_multivariate_normal.py:208:13: error: Module has no attribute "diag_embed" [attr-defined] +torch/distributions/lowrank_multivariate_normal.py:214:45: error: Module has no attribute "Size" [attr-defined] +torch/distributions/gamma.py:16:12: error: Module has no attribute "_standard_gamma" [attr-defined] +torch/distributions/gamma.py:66:27: error: Module has no attribute "Size" [attr-defined] +torch/distributions/gamma.py:73:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/gamma.py:80:45: error: Module has no attribute "Size" [attr-defined] +torch/distributions/gamma.py:86:17: error: Module has no attribute "finfo" [attr-defined] +torch/distributions/gamma.py:91:17: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/distributions/gamma.py:95:13: error: Module has no attribute "xlogy" [attr-defined] +torch/distributions/gamma.py:96:15: error: Module has no attribute "xlogy" [attr-defined] +torch/distributions/gamma.py:98:15: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/gamma.py:104:15: error: Module has no attribute "log" [attr-defined] +torch/distributions/gamma.py:105:15: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/gamma.py:106:44: error: Module has no attribute "digamma" [attr-defined] +torch/distributions/gamma.py:111:16: error: Incompatible return value type (got "tuple[int, Any]", expected "tuple[Tensor, Tensor]") [return-value] +torch/distributions/gamma.py:115:16: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/gamma.py:115:48: error: Module has no attribute "log" [attr-defined] +torch/distributions/exponential.py:42:16: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributions/exponential.py:58:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/exponential.py:63:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/exponential.py:69:45: error: Module has no attribute "Size" [attr-defined] +torch/distributions/exponential.py:81:20: error: Module has no attribute "exp" [attr-defined] +torch/distributions/exponential.py:84:17: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/exponential.py:87:22: error: Module has no attribute "log" [attr-defined] +torch/distributions/exponential.py:95:17: error: Module has no attribute "log" [attr-defined] +torch/distributions/dirichlet.py:19:12: error: Module has no attribute "_dirichlet_grad" [attr-defined] +torch/distributions/dirichlet.py:27:13: error: Module has no attribute "_sample_dirichlet" [attr-defined] +torch/distributions/dirichlet.py:77:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/dirichlet.py:94:13: error: Module has no attribute "xlogy" [attr-defined] +torch/distributions/dirichlet.py:95:15: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/dirichlet.py:96:15: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/dirichlet.py:105:27: error: "int" has no attribute "clamp" [attr-defined] +torch/distributions/dirichlet.py:107:16: error: "bool" has no attribute "all" [attr-defined] +torch/distributions/dirichlet.py:126:13: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/dirichlet.py:127:15: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/dirichlet.py:128:26: error: Module has no attribute "digamma" [attr-defined] +torch/distributions/dirichlet.py:129:45: error: Module has no attribute "digamma" [attr-defined] +torch/distributions/dirichlet.py:138:37: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/continuous_bernoulli.py:85:27: error: Module has no attribute "Size" [attr-defined] +torch/distributions/continuous_bernoulli.py:94:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/continuous_bernoulli.py:109:16: error: Module has no attribute "max" [attr-defined] +torch/distributions/continuous_bernoulli.py:110:13: error: Module has no attribute "le" [attr-defined] +torch/distributions/continuous_bernoulli.py:110:50: error: Module has no attribute "gt" [attr-defined] +torch/distributions/continuous_bernoulli.py:114:16: error: Module has no attribute "where" [attr-defined] +torch/distributions/continuous_bernoulli.py:117:29: error: Module has no attribute "ones_like" [attr-defined] +torch/distributions/continuous_bernoulli.py:123:32: error: Module has no attribute "where" [attr-defined] +torch/distributions/continuous_bernoulli.py:124:13: error: Module has no attribute "le" [attr-defined] +torch/distributions/continuous_bernoulli.py:124:50: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributions/continuous_bernoulli.py:126:32: error: Module has no attribute "where" [attr-defined] +torch/distributions/continuous_bernoulli.py:127:13: error: Module has no attribute "ge" [attr-defined] +torch/distributions/continuous_bernoulli.py:127:50: error: Module has no attribute "ones_like" [attr-defined] +torch/distributions/continuous_bernoulli.py:129:20: error: Module has no attribute "log" [attr-defined] +torch/distributions/continuous_bernoulli.py:130:13: error: Module has no attribute "abs" [attr-defined] +torch/distributions/continuous_bernoulli.py:130:23: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/continuous_bernoulli.py:130:49: error: Module has no attribute "log" [attr-defined] +torch/distributions/continuous_bernoulli.py:131:13: error: Module has no attribute "where" [attr-defined] +torch/distributions/continuous_bernoulli.py:132:13: error: Module has no attribute "le" [attr-defined] +torch/distributions/continuous_bernoulli.py:133:13: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/continuous_bernoulli.py:134:13: error: Module has no attribute "log" [attr-defined] +torch/distributions/continuous_bernoulli.py:136:13: error: Module has no attribute "pow" [attr-defined] +torch/distributions/continuous_bernoulli.py:138:16: error: Module has no attribute "where" [attr-defined] +torch/distributions/continuous_bernoulli.py:144:13: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/continuous_bernoulli.py:144:39: error: Module has no attribute "log" [attr-defined] +torch/distributions/continuous_bernoulli.py:147:51: error: Module has no attribute "pow" [attr-defined] +torch/distributions/continuous_bernoulli.py:148:16: error: Module has no attribute "where" [attr-defined] +torch/distributions/continuous_bernoulli.py:152:16: error: Module has no attribute "sqrt" [attr-defined] +torch/distributions/continuous_bernoulli.py:157:48: error: Module has no attribute "pow" [attr-defined] +torch/distributions/continuous_bernoulli.py:159:19: error: Module has no attribute "pow" [attr-defined] +torch/distributions/continuous_bernoulli.py:159:29: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/continuous_bernoulli.py:159:55: error: Module has no attribute "log" [attr-defined] +torch/distributions/continuous_bernoulli.py:160:13: error: Module has no attribute "pow" [attr-defined] +torch/distributions/continuous_bernoulli.py:162:16: error: Module has no attribute "where" [attr-defined] +torch/distributions/continuous_bernoulli.py:173:30: error: Name "torch.Size" is not defined [name-defined] +torch/distributions/continuous_bernoulli.py:176:35: error: Module has no attribute "Size" [attr-defined] +torch/distributions/continuous_bernoulli.py:178:13: error: Module has no attribute "rand" [attr-defined] +torch/distributions/continuous_bernoulli.py:182:45: error: Module has no attribute "Size" [attr-defined] +torch/distributions/continuous_bernoulli.py:184:13: error: Module has no attribute "rand" [attr-defined] +torch/distributions/continuous_bernoulli.py:201:13: error: Module has no attribute "pow" [attr-defined] +torch/distributions/continuous_bernoulli.py:205:26: error: Module has no attribute "where" [attr-defined] +torch/distributions/continuous_bernoulli.py:206:16: error: Module has no attribute "where" [attr-defined] +torch/distributions/continuous_bernoulli.py:207:13: error: Module has no attribute "le" [attr-defined] +torch/distributions/continuous_bernoulli.py:208:13: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributions/continuous_bernoulli.py:209:13: error: Module has no attribute "where" [attr-defined] +torch/distributions/continuous_bernoulli.py:209:25: error: Module has no attribute "ge" [attr-defined] +torch/distributions/continuous_bernoulli.py:209:47: error: Module has no attribute "ones_like" [attr-defined] +torch/distributions/continuous_bernoulli.py:214:16: error: Module has no attribute "where" [attr-defined] +torch/distributions/continuous_bernoulli.py:217:17: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/continuous_bernoulli.py:218:19: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/continuous_bernoulli.py:220:16: error: Module has no attribute "log" [attr-defined] +torch/distributions/continuous_bernoulli.py:220:39: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/continuous_bernoulli.py:225:22: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/continuous_bernoulli.py:226:22: error: Module has no attribute "log" [attr-defined] +torch/distributions/continuous_bernoulli.py:240:24: error: Module has no attribute "max" [attr-defined] +torch/distributions/continuous_bernoulli.py:241:13: error: Module has no attribute "le" [attr-defined] +torch/distributions/continuous_bernoulli.py:241:47: error: Module has no attribute "gt" [attr-defined] +torch/distributions/continuous_bernoulli.py:243:26: error: Module has no attribute "where" [attr-defined] +torch/distributions/continuous_bernoulli.py:244:54: error: Module has no attribute "ones_like" [attr-defined] +torch/distributions/continuous_bernoulli.py:246:20: error: Module has no attribute "log" [attr-defined] +torch/distributions/continuous_bernoulli.py:247:13: error: Module has no attribute "abs" [attr-defined] +torch/distributions/continuous_bernoulli.py:248:13: error: Module has no attribute "log" [attr-defined] +torch/distributions/continuous_bernoulli.py:248:23: error: Module has no attribute "abs" [attr-defined] +torch/distributions/continuous_bernoulli.py:249:28: error: Module has no attribute "pow" [attr-defined] +torch/distributions/continuous_bernoulli.py:250:16: error: Module has no attribute "where" [attr-defined] +torch/distributions/bernoulli.py:69:27: error: Module has no attribute "Size" [attr-defined] +torch/distributions/bernoulli.py:76:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/bernoulli.py:96:16: error: "bool" has no attribute "to" [attr-defined] +torch/distributions/bernoulli.py:113:30: error: Name "torch.Size" is not defined [name-defined] +torch/distributions/bernoulli.py:116:35: error: Module has no attribute "Size" [attr-defined] +torch/distributions/bernoulli.py:119:20: error: Module has no attribute "bernoulli" [attr-defined] +torch/distributions/bernoulli.py:133:18: error: Module has no attribute "arange" [attr-defined] +torch/distributions/bernoulli.py:141:17: error: Module has no attribute "logit" [attr-defined] +torch/distributions/bernoulli.py:145:16: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/bernoulli.py:145:28: error: Module has no attribute "exp" [attr-defined] +torch/backends/mps/__init__.py:25:12: error: Module has no attribute "_has_mps" [attr-defined] +torch/backends/mps/__init__.py:31:12: error: Module has no attribute "_mps_is_available" [attr-defined] +torch/backends/mps/__init__.py:37:12: error: Module has no attribute "_mps_is_on_macos_or_newer" [attr-defined] +torch/backends/mps/__init__.py:43:12: error: Module has no attribute "_mps_is_on_macos_or_newer" [attr-defined] +torch/backends/mps/__init__.py:49:12: error: Module has no attribute "_mps_get_name" [attr-defined] +torch/backends/mps/__init__.py:60:12: error: Module has no attribute "_mps_get_core_count" [attr-defined] +torch/ao/quantization/fake_quantize.py:50:2: error: Name "torch.qscheme" is not defined [name-defined] +torch/ao/quantization/fake_quantize.py:52:9: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/fake_quantize.py:53:9: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/quantization/fake_quantize.py:54:9: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/quantization/fake_quantize.py:58:2: error: Name "torch.qscheme" is not defined [name-defined] +torch/ao/quantization/fake_quantize.py:59:24: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/fake_quantize.py:59:52: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/fake_quantize.py:62:2: error: Name "torch.qscheme" is not defined [name-defined] +torch/ao/quantization/fake_quantize.py:63:24: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/fake_quantize.py:63:52: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/fake_quantize.py:66:2: error: Name "torch.qscheme" is not defined [name-defined] +torch/ao/quantization/fake_quantize.py:67:23: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/quantization/fake_quantize.py:92:52: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fake_quantize.py:92:76: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/fake_quantize.py:93:50: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fake_quantize.py:93:74: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/fake_quantize.py:182:50: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/fake_quantize.py:190:16: error: Module has no attribute "iinfo" [attr-defined] +torch/ao/quantization/fake_quantize.py:193:28: error: Module has no attribute "iinfo" [attr-defined] +torch/ao/quantization/fake_quantize.py:204:32: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/fake_quantize.py:206:32: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/fake_quantize.py:207:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fake_quantize.py:207:65: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/fake_quantize.py:208:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fake_quantize.py:244:21: error: Module has no attribute "fake_quantize_per_channel_affine" [attr-defined] +torch/ao/quantization/fake_quantize.py:253:21: error: Module has no attribute "fake_quantize_per_tensor_affine" [attr-defined] +torch/ao/quantization/fake_quantize.py:404:52: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fake_quantize.py:404:76: error: Module has no attribute "long" [attr-defined] +torch/ao/quantization/fake_quantize.py:405:50: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fake_quantize.py:405:74: error: Module has no attribute "long" [attr-defined] +torch/ao/quantization/fake_quantize.py:424:16: error: Module has no attribute "fused_moving_avg_obs_fake_quant" [attr-defined] +torch/ao/quantization/fake_quantize.py:445:11: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/fake_quantize.py:446:13: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/fake_quantize.py:457:11: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/fake_quantize.py:458:13: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/fake_quantize.py:471:11: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/fake_quantize.py:494:11: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/fake_quantize.py:495:13: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/fake_quantize.py:505:13: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/quantization/fake_quantize.py:506:11: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/fake_quantize.py:519:13: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/quantization/fake_quantize.py:521:11: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/quantization/fake_quantize.py:529:11: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/fake_quantize.py:530:13: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/fake_quantize.py:542:11: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/fake_quantize.py:554:11: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/fake_quantize.py:555:13: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/fake_quantize.py:565:11: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/fake_quantize.py:566:13: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/fake_quantize.py:576:11: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/fake_quantize.py:577:13: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/fake_quantize.py:589:15: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/fake_quantize.py:590:17: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:99:20: error: Module has no attribute "ones" [attr-defined] +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:123:20: error: Module has no attribute "ones" [attr-defined] +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:126:25: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:129:25: error: Module has no attribute "ones_like" [attr-defined] +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:148:25: error: Module has no attribute "topk" [attr-defined] +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:178:20: error: Module has no attribute "ones" [attr-defined] +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:182:25: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:186:23: error: Module has no attribute "ones" [attr-defined] +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:197:25: error: Module has no attribute "topk" [attr-defined] +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:231:25: error: Module has no attribute "ones_like" [attr-defined] +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:233:25: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:249:31: error: Module has no attribute "logical_or" [attr-defined] +torch/ao/nn/quantized/modules/conv.py:99:19: error: Module has no attribute "_empty_affine_quantized" [attr-defined] +torch/ao/nn/quantized/modules/conv.py:103:19: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/modules/conv.py:107:13: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/quantized/modules/conv.py:109:23: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/modules/conv.py:163:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/conv.py:164:46: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/conv.py:250:45: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/modules/conv.py:269:49: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/quantized/modules/conv.py:815:45: error: Module has no attribute "qint8" [attr-defined] +torch/ao/nn/quantized/modules/conv.py:835:53: error: Module has no attribute "float" [attr-defined] +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:85:35: error: Module has no attribute "empty" [attr-defined] +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:138:23: error: Module has no attribute "sqrt" [attr-defined] +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:150:25: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:152:25: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:197:21: error: Module has no attribute "zeros" [attr-defined] +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:219:27: error: Module has no attribute "sqrt" [attr-defined] +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:229:25: error: Module has no attribute "square" [attr-defined] +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:232:25: error: Module has no attribute "sqrt" [attr-defined] +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:243:27: error: Module has no attribute "sqrt" [attr-defined] +torch/_higher_order_ops/while_loop.py:9:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/while_loop.py:269:32: error: Module has no attribute "Size" [attr-defined] +torch/_higher_order_ops/while_loop.py:270:31: error: Module has no attribute "bool" [attr-defined] +torch/_higher_order_ops/while_loop.py:320:25: error: Module has no attribute "stack" [attr-defined] +torch/_higher_order_ops/while_loop.py:716:14: error: Module has no attribute "_AutoDispatchBelowAutograd" [attr-defined] +torch/_higher_order_ops/while_loop.py:756:35: error: Module has no attribute "_dispatch_tls_local_include_set" [attr-defined] +torch/_higher_order_ops/while_loop.py:757:35: error: Module has no attribute "_dispatch_tls_local_exclude_set" [attr-defined] +torch/_higher_order_ops/while_loop.py:783:20: error: Module has no attribute "zeros" [attr-defined] +torch/_higher_order_ops/while_loop.py:783:42: error: Module has no attribute "int64" [attr-defined] +torch/_higher_order_ops/while_loop.py:786:13: error: Module has no attribute "zeros_like" [attr-defined] +torch/_higher_order_ops/while_loop.py:796:13: error: Module has no attribute "cat" [attr-defined] +torch/_higher_order_ops/torchbind.py:6:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/torchbind.py:37:32: error: Name "torch.FunctionSchema" is not defined [name-defined] +torch/_higher_order_ops/torchbind.py:51:22: error: Module has no attribute "parse_schema" [attr-defined] +torch/_higher_order_ops/torchbind.py:64:27: error: Module has no attribute "ScriptMethod" [attr-defined] +torch/_higher_order_ops/torchbind.py:80:28: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_higher_order_ops/torchbind.py:81:9: error: Module has no attribute "ScriptMethod" [attr-defined] +torch/_higher_order_ops/torchbind.py:81:9: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_higher_order_ops/torchbind.py:84:37: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_higher_order_ops/torchbind.py:87:9: error: Module has no attribute "ScriptMethod" [attr-defined] +torch/_higher_order_ops/torchbind.py:87:9: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_higher_order_ops/torchbind.py:92:24: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_higher_order_ops/torchbind.py:114:24: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_higher_order_ops/cond.py:12:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/cond.py:308:35: error: Module has no attribute "_dispatch_tls_local_include_set" [attr-defined] +torch/_higher_order_ops/cond.py:309:35: error: Module has no attribute "_dispatch_tls_local_exclude_set" [attr-defined] +torch/_higher_order_ops/cond.py:312:14: error: Module has no attribute "_AutoDispatchBelowAutograd" [attr-defined] +torch/_higher_order_ops/cond.py:567:20: error: Name "torch.Size" is not defined [name-defined] +torch/_higher_order_ops/cond.py:568:20: error: Name "torch.Size" is not defined [name-defined] +torch/_higher_order_ops/cond.py:654:16: error: Module has no attribute "empty_strided" [attr-defined] +torch/_higher_order_ops/cond.py:708:20: error: Module has no attribute "where" [attr-defined] +torch/utils/data/graph_settings.py:144:48: error: Name "torch.Generator" is not defined [name-defined] +torch/utils/data/graph_settings.py:169:13: error: Module has no attribute "empty" [attr-defined] +torch/utils/data/graph_settings.py:169:35: error: Module has no attribute "int64" [attr-defined] +torch/jit/_script.pyi:53:18: error: Module has no attribute "ScriptFunction" [attr-defined] +torch/jit/_script.pyi:140:24: error: Name "torch.Graph" is not defined [name-defined] +torch/jit/_script.pyi:142:32: error: Name "torch.Graph" is not defined [name-defined] +torch/jit/_script.pyi:205:6: error: Name "torch.ScriptDict" is not defined [name-defined] +torch/jit/_script.pyi:213:6: error: Name "torch.ScriptList" is not defined [name-defined] +torch/jit/_script.pyi:237:6: error: Variable "torch.jit._script.ScriptFunction" is not valid as a type [valid-type] +torch/jit/_script.pyi:237:6: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/export/exported_program.py:158:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:159:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:160:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:161:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:162:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:163:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:164:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:165:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:166:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:167:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:168:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:169:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:179:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:180:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:181:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:182:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:183:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:184:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:185:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:186:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:187:5: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:214:12: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:215:40: error: Module has no attribute "DispatchKey" [attr-defined] +torch/export/exported_program.py:217:29: error: Module has no attribute "DispatchKey" [attr-defined] +torch/distributions/relaxed_categorical.py:63:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/relaxed_categorical.py:76:30: error: Name "torch.Size" is not defined [name-defined] +torch/distributions/relaxed_categorical.py:87:45: error: Module has no attribute "Size" [attr-defined] +torch/distributions/relaxed_categorical.py:90:13: error: Module has no attribute "rand" [attr-defined] +torch/distributions/relaxed_categorical.py:101:21: error: Module has no attribute "full_like" [attr-defined] +torch/distributions/relaxed_bernoulli.py:70:27: error: Module has no attribute "Size" [attr-defined] +torch/distributions/relaxed_bernoulli.py:77:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/relaxed_bernoulli.py:101:30: error: Name "torch.Size" is not defined [name-defined] +torch/distributions/relaxed_bernoulli.py:104:45: error: Module has no attribute "Size" [attr-defined] +torch/distributions/relaxed_bernoulli.py:108:13: error: Module has no attribute "rand" [attr-defined] +torch/distributions/negative_binomial.py:77:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/negative_binomial.py:94:35: error: Module has no attribute "exp" [attr-defined] +torch/distributions/negative_binomial.py:102:28: error: Module has no attribute "sigmoid" [attr-defined] +torch/distributions/negative_binomial.py:113:30: error: Name "torch.Size" is not defined [name-defined] +torch/distributions/negative_binomial.py:121:18: error: Module has no attribute "exp" [attr-defined] +torch/distributions/negative_binomial.py:125:35: error: Module has no attribute "Size" [attr-defined] +torch/distributions/negative_binomial.py:128:20: error: Module has no attribute "poisson" [attr-defined] +torch/distributions/negative_binomial.py:139:14: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/negative_binomial.py:140:15: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/negative_binomial.py:141:15: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/kumaraswamy.py:21:17: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/kumaraswamy.py:22:16: error: Module has no attribute "exp" [attr-defined] +torch/distributions/kumaraswamy.py:61:13: error: Module has no attribute "full_like" [attr-defined] +torch/distributions/kumaraswamy.py:62:13: error: Module has no attribute "full_like" [attr-defined] +torch/distributions/kumaraswamy.py:95:72: error: Module has no attribute "pow" [attr-defined] +torch/distributions/kumaraswamy.py:102:14: error: Module has no attribute "digamma" [attr-defined] +torch/distributions/kumaraswamy.py:106:15: error: Module has no attribute "log" [attr-defined] +torch/distributions/kumaraswamy.py:107:15: error: Module has no attribute "log" [attr-defined] +torch/distributions/inverse_gamma.py:74:16: error: Module has no attribute "where" [attr-defined] +torch/distributions/inverse_gamma.py:78:16: error: Incompatible return value type (got "float", expected "Tensor") [return-value] +torch/distributions/inverse_gamma.py:83:13: error: "int" has no attribute "square" [attr-defined] +torch/distributions/inverse_gamma.py:85:16: error: Module has no attribute "where" [attr-defined] +torch/distributions/half_normal.py:59:16: error: Incompatible return value type (got "float", expected "Tensor") [return-value] +torch/distributions/half_normal.py:63:16: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributions/half_normal.py:73:20: error: Module has no attribute "where" [attr-defined] +torch/distributions/half_cauchy.py:59:16: error: Module has no attribute "full" [attr-defined] +torch/distributions/half_cauchy.py:68:16: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributions/half_cauchy.py:77:17: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/distributions/half_cauchy.py:81:20: error: Module has no attribute "where" [attr-defined] +torch/distributions/gumbel.py:45:17: error: Module has no attribute "finfo" [attr-defined] +torch/distributions/gumbel.py:50:17: error: Module has no attribute "full_like" [attr-defined] +torch/distributions/gumbel.py:51:17: error: Module has no attribute "full_like" [attr-defined] +torch/distributions/gumbel.py:56:43: error: Module has no attribute "ones_like" [attr-defined] +torch/distributions/gumbel.py:77:16: error: Incompatible return value type (got "float", expected "Tensor") [return-value] +torch/distributions/gumbel.py:85:16: error: Incompatible return value type (got "float", expected "Tensor") [return-value] +torch/distributions/fishersnedecor.py:48:27: error: Module has no attribute "Size" [attr-defined] +torch/distributions/fishersnedecor.py:55:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/fishersnedecor.py:66:44: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributions/fishersnedecor.py:78:44: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributions/fishersnedecor.py:87:45: error: Module has no attribute "Size" [attr-defined] +torch/distributions/fishersnedecor.py:93:16: error: Module has no attribute "finfo" [attr-defined] +torch/distributions/fishersnedecor.py:105:14: error: "float" has no attribute "lgamma" [attr-defined] +torch/distributions/fishersnedecor.py:106:44: error: Module has no attribute "log" [attr-defined] +torch/distributions/fishersnedecor.py:107:28: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/chi2.py:43:16: error: Incompatible return value type (got "int", expected "Tensor") [return-value] +torch/distributions/beta.py:49:45: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributions/beta.py:56:45: error: Module has no attribute "stack" [attr-defined] +torch/distributions/beta.py:66:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/beta.py:91:23: error: Module has no attribute "stack" [attr-defined] +torch/distributions/beta.py:101:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributions/beta.py:109:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributions/beta.py:119:16: error: Module has no attribute "lgamma" [attr-defined] +torch/ao/quantization/qconfig.py:181:52: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/qconfig.py:182:48: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/qconfig.py:189:52: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/qconfig.py:190:48: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/qconfig.py:348:15: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/qconfig.py:355:15: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/qconfig.py:361:45: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/qconfig.py:366:45: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/qconfig.py:496:15: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/qconfig.py:508:15: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/qconfig.py:516:52: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/qconfig.py:517:48: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/qconfig.py:521:52: error: Module has no attribute "quint8" [attr-defined] +torch/ao/nn/quantized/modules/__init__.py:111:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/__init__.py:114:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/nn/quantized/modules/__init__.py:116:23: error: Module has no attribute "long" [attr-defined] +torch/ao/nn/quantized/modules/__init__.py:123:16: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/_higher_order_ops/effects.py:6:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/effects.py:130:12: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_higher_order_ops/effects.py:201:61: error: Name "torch.FunctionSchema" is not defined [name-defined] +torch/_higher_order_ops/effects.py:243:29: error: Module has no attribute "_get_dispatch_mode" [attr-defined] +torch/_higher_order_ops/effects.py:244:13: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_higher_order_ops/effects.py:299:29: error: Argument 1 to "wrap_tensors" of "PythonFunctionalizeAPI" has incompatible type "list[Any]"; expected "tuple[Any]" [arg-type] +torch/jit/_trace.py:39:12: error: Module has no attribute "_jit_flatten" [attr-defined] +torch/jit/_trace.py:40:14: error: Module has no attribute "_jit_unflatten" [attr-defined] +torch/jit/_trace.py:127:49: error: Module has no attribute "preserve_format" [attr-defined] +torch/jit/_trace.py:140:23: error: Module has no attribute "_create_graph_by_tracing" [attr-defined] +torch/jit/_trace.py:164:63: error: Module has no attribute "preserve_format" [attr-defined] +torch/jit/_trace.py:171:42: error: Module has no attribute "preserve_format" [attr-defined] +torch/jit/_trace.py:202:33: error: Module has no attribute "sum" [attr-defined] +torch/jit/_trace.py:263:23: error: Module has no attribute "sum" [attr-defined] +torch/jit/_trace.py:270:44: error: Module has no attribute "preserve_format" [attr-defined] +torch/jit/_trace.py:276:44: error: Module has no attribute "preserve_format" [attr-defined] +torch/jit/_trace.py:350:35: error: Module has no attribute "CompilationUnit" [attr-defined] +torch/jit/_trace.py:386:33: error: Module has no attribute "_jit_pass_canonicalize" [attr-defined] +torch/jit/_trace.py:387:13: error: Module has no attribute "_jit_pass_inline" [attr-defined] +torch/jit/_trace.py:388:13: error: Module has no attribute "_jit_pass_erase_shape_information" [attr-defined] +torch/jit/_trace.py:391:35: error: Module has no attribute "_jit_pass_canonicalize" [attr-defined] +torch/jit/_trace.py:392:13: error: Module has no attribute "_jit_pass_inline" [attr-defined] +torch/jit/_trace.py:393:13: error: Module has no attribute "_jit_pass_erase_shape_information" [attr-defined] +torch/jit/_trace.py:530:37: error: Module has no attribute "cdouble" [attr-defined] +torch/jit/_trace.py:531:36: error: Module has no attribute "cdouble" [attr-defined] +torch/jit/_trace.py:610:1: error: Module has no attribute "_tracer_warn_use_python" [attr-defined] +torch/jit/_trace.py:664:20: error: Module has no attribute "allclose" [attr-defined] +torch/jit/_trace.py:760:18: error: Module has no attribute "_create_function_from_trace_with_dict" [attr-defined] +torch/jit/_trace.py:770:18: error: Module has no attribute "_create_function_from_trace" [attr-defined] +torch/jit/_trace.py:1263:12: error: Module has no attribute "_is_tracing" [attr-defined] +torch/jit/_trace.py:1310:17: error: Module has no attribute "_jit_is_script_object" [attr-defined] +torch/jit/_freeze.py:117:33: error: Module has no attribute "_freeze_module" [attr-defined] +torch/jit/_freeze.py:174:9: error: Module has no attribute "_jit_pass_optimize_frozen_graph" [attr-defined] +torch/jit/_freeze.py:180:9: error: Module has no attribute "_jit_pass_optimize_frozen_graph" [attr-defined] +torch/jit/_freeze.py:232:5: error: Module has no attribute "_jit_pass_optimize_for_inference" [attr-defined] +torch/export/_remove_effect_tokens_pass.py:147:13: error: Need type annotation for "input_tokens" (hint: "input_tokens: list[] = ...") [var-annotated] +torch/export/_remove_effect_tokens_pass.py:148:13: error: Need type annotation for "output_tokens" (hint: "output_tokens: list[] = ...") [var-annotated] +torch/distributions/weibull.py:50:13: error: Module has no attribute "ones_like" [attr-defined] +torch/distributions/weibull.py:75:29: error: Module has no attribute "exp" [attr-defined] +torch/distributions/weibull.py:75:39: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/weibull.py:88:13: error: Module has no attribute "exp" [attr-defined] +torch/distributions/weibull.py:88:23: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/weibull.py:89:15: error: Module has no attribute "exp" [attr-defined] +torch/distributions/weibull.py:89:29: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/weibull.py:95:15: error: Module has no attribute "log" [attr-defined] +torch/distributions/kl.py:145:12: error: Module has no attribute "full_like" [attr-defined] +torch/distributions/kl.py:225:50: error: Module has no attribute "digamma" [attr-defined] +torch/distributions/kl.py:226:50: error: Module has no attribute "digamma" [attr-defined] +torch/distributions/kl.py:227:42: error: Module has no attribute "digamma" [attr-defined] +torch/distributions/kl.py:258:36: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/kl.py:259:37: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/kl.py:303:10: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/kl.py:304:48: error: Module has no attribute "digamma" [attr-defined] +torch/distributions/kl.py:316:10: error: Module has no attribute "exp" [attr-defined] +torch/distributions/kl.py:322:27: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/kl.py:337:24: error: Module has no attribute "exp" [attr-defined] +torch/distributions/kl.py:421:28: error: Module has no attribute "_infer_size" [attr-defined] +torch/distributions/kl.py:429:18: error: Module has no attribute "diag_embed" [attr-defined] +torch/distributions/kl.py:454:28: error: Module has no attribute "_infer_size" [attr-defined] +torch/distributions/kl.py:523:11: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/kl.py:588:27: error: Module has no attribute "log" [attr-defined] +torch/distributions/kl.py:598:43: error: Module has no attribute "square" [attr-defined] +torch/distributions/kl.py:598:76: error: Module has no attribute "log" [attr-defined] +torch/distributions/kl.py:601:24: error: Module has no attribute "square" [attr-defined] +torch/distributions/kl.py:602:15: error: Module has no attribute "square" [attr-defined] +torch/distributions/kl.py:610:12: error: Module has no attribute "where" [attr-defined] +torch/distributions/kl.py:611:9: error: Module has no attribute "max" [attr-defined] +torch/distributions/kl.py:612:13: error: Module has no attribute "ge" [attr-defined] +torch/distributions/kl.py:613:13: error: Module has no attribute "le" [attr-defined] +torch/distributions/kl.py:615:9: error: Module has no attribute "ones_like" [attr-defined] +torch/distributions/kl.py:631:29: error: Module has no attribute "log" [attr-defined] +torch/distributions/kl.py:646:10: error: Module has no attribute "exp" [attr-defined] +torch/distributions/kl.py:658:16: error: Module has no attribute "log" [attr-defined] +torch/distributions/kl.py:689:9: error: Module has no attribute "exp" [attr-defined] +torch/distributions/kl.py:704:15: error: Module has no attribute "log" [attr-defined] +torch/distributions/kl.py:754:16: error: Module has no attribute "log" [attr-defined] +torch/distributions/kl.py:778:10: error: Module has no attribute "exp" [attr-defined] +torch/distributions/kl.py:787:10: error: Module has no attribute "log" [attr-defined] +torch/distributions/kl.py:789:44: error: Module has no attribute "exp" [attr-defined] +torch/distributions/kl.py:791:21: error: Module has no attribute "erf" [attr-defined] +torch/distributions/kl.py:850:10: error: Module has no attribute "log" [attr-defined] +torch/distributions/kl.py:876:11: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/kl.py:879:12: error: Module has no attribute "where" [attr-defined] +torch/distributions/kl.py:880:9: error: Module has no attribute "max" [attr-defined] +torch/distributions/kl.py:881:13: error: Module has no attribute "ge" [attr-defined] +torch/distributions/kl.py:882:13: error: Module has no attribute "le" [attr-defined] +torch/distributions/kl.py:884:9: error: Module has no attribute "ones_like" [attr-defined] +torch/distributions/kl.py:918:25: error: Module has no attribute "exp" [attr-defined] +torch/ao/quantization/quantize_jit.py:58:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize_jit.py:60:15: error: Module has no attribute "_jit_pass_fold_convbn" [attr-defined] +torch/ao/quantization/quantize_jit.py:75:15: error: Module has no attribute "_jit_pass_insert_observers" [attr-defined] +torch/ao/quantization/quantize_jit.py:97:5: error: Module has no attribute "_jit_pass_inline" [attr-defined] +torch/ao/quantization/quantize_jit.py:99:15: error: Module has no attribute "_jit_pass_insert_observer_method_for_ondevice_ptq" [attr-defined] +torch/ao/quantization/quantize_jit.py:110:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize_jit.py:115:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize_jit.py:133:15: error: Module has no attribute "_jit_pass_insert_quant_dequant" [attr-defined] +torch/ao/quantization/quantize_jit.py:144:19: error: Module has no attribute "_jit_pass_quant_finalize" [attr-defined] +torch/ao/quantization/quantize_jit.py:151:5: error: Module has no attribute "_jit_pass_constant_propagation" [attr-defined] +torch/ao/quantization/quantize_jit.py:152:5: error: Module has no attribute "_jit_pass_dce" [attr-defined] +torch/ao/quantization/quantize_jit.py:169:15: error: Module has no attribute "_jit_pass_insert_quant_dequant_for_ondevice_ptq" [attr-defined] +torch/ao/quantization/quantize_jit.py:172:15: error: Module has no attribute "_jit_pass_quant_finalize_for_ondevice_ptq" [attr-defined] +torch/ao/quantization/quantize_jit.py:183:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize_jit.py:194:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize_jit.py:245:5: error: Module has no attribute "_jit_pass_constant_propagation" [attr-defined] +torch/ao/quantization/quantize_jit.py:246:5: error: Module has no attribute "_jit_pass_dce" [attr-defined] +torch/ao/quantization/quantize_jit.py:303:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize_jit.py:356:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/qconfig_mapping.py:54:5: error: Module has no attribute "sigmoid" [attr-defined] +torch/ao/quantization/qconfig_mapping.py:59:5: error: Module has no attribute "tanh" [attr-defined] +torch/jit/__init__.py:117:12: error: Module has no attribute "_export_opnames" [attr-defined] +torch/jit/__init__.py:121:9: error: Module has no attribute "JITException" [attr-defined] +torch/jit/__init__.py:284:5: error: Module has no attribute "_jit_set_llga_enabled" [attr-defined] +torch/jit/__init__.py:289:12: error: Module has no attribute "_jit_llga_enabled" [attr-defined] +torch/jit/__init__.py:294:8: error: Module has no attribute "_jit_init" [attr-defined] +torch/export/unflatten.py:84:35: error: Name "torch.ScriptObject" is not defined [name-defined] +torch/export/unflatten.py:125:21: error: Module has no attribute "ScriptObject" [attr-defined] +torch/export/unflatten.py:449:56: error: Name "torch._C.ScriptObject" is not defined [name-defined] +torch/export/unflatten.py:1771:58: error: Module has no attribute "ScriptObject" [attr-defined] +torch/distributions/studentT.py:45:42: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributions/studentT.py:55:41: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributions/studentT.py:79:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/studentT.py:88:45: error: Module has no attribute "Size" [attr-defined] +torch/distributions/studentT.py:99:17: error: Module has no attribute "rsqrt" [attr-defined] +torch/distributions/studentT.py:110:15: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/studentT.py:111:15: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/studentT.py:113:41: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/studentT.py:117:13: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/studentT.py:119:15: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/studentT.py:125:16: error: Module has no attribute "digamma" [attr-defined] +torch/distributions/multinomial.py:59:16: error: Incompatible return value type (got "int", expected "Tensor") [return-value] +torch/distributions/multinomial.py:63:16: error: Incompatible return value type (got "int", expected "Tensor") [return-value] +torch/distributions/multinomial.py:83:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/multinomial.py:109:30: error: Name "torch.Size" is not defined [name-defined] +torch/distributions/multinomial.py:112:35: error: Module has no attribute "Size" [attr-defined] +torch/distributions/multinomial.py:113:24: error: Module has no attribute "Size" [attr-defined] +torch/distributions/multinomial.py:115:13: error: Module has no attribute "Size" [attr-defined] +torch/distributions/multinomial.py:123:42: error: Module has no attribute "ones_like" [attr-defined] +torch/distributions/multinomial.py:127:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributions/multinomial.py:130:35: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/multinomial.py:133:26: error: Module has no attribute "exp" [attr-defined] +torch/distributions/multinomial.py:134:19: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/multinomial.py:143:45: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributions/multinomial.py:144:27: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/multinomial.py:145:28: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/mixture_same_family.py:110:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/mixture_same_family.py:142:16: error: Module has no attribute "sum" [attr-defined] +torch/distributions/mixture_same_family.py:150:25: error: Module has no attribute "sum" [attr-defined] +torch/distributions/mixture_same_family.py:153:25: error: Module has no attribute "sum" [attr-defined] +torch/distributions/mixture_same_family.py:164:16: error: Module has no attribute "sum" [attr-defined] +torch/distributions/mixture_same_family.py:171:24: error: Module has no attribute "log_softmax" [attr-defined] +torch/distributions/mixture_same_family.py:174:16: error: Module has no attribute "logsumexp" [attr-defined] +torch/distributions/mixture_same_family.py:176:35: error: Module has no attribute "Size" [attr-defined] +torch/distributions/mixture_same_family.py:192:29: error: Module has no attribute "Size" [attr-defined] +torch/distributions/mixture_same_family.py:195:17: error: Module has no attribute "Size" [attr-defined] +torch/distributions/mixture_same_family.py:198:23: error: Module has no attribute "gather" [attr-defined] +torch/distributions/mixture_same_family.py:211:15: error: Module has no attribute "Size" [attr-defined] +torch/distributions/mixture_same_family.py:213:15: error: Module has no attribute "Size" [attr-defined] +torch/distributions/lkj_cholesky.py:80:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/lkj_cholesky.py:83:18: error: Module has no attribute "arange" [attr-defined] +torch/distributions/lkj_cholesky.py:88:18: error: Module has no attribute "cat" [attr-defined] +torch/distributions/lkj_cholesky.py:90:22: error: "float" has no attribute "unsqueeze" [attr-defined] +torch/distributions/lkj_cholesky.py:96:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/lkj_cholesky.py:106:35: error: Module has no attribute "Size" [attr-defined] +torch/distributions/lkj_cholesky.py:114:20: error: Module has no attribute "randn" [attr-defined] +torch/distributions/lkj_cholesky.py:120:13: error: Module has no attribute "sqrt" [attr-defined] +torch/distributions/lkj_cholesky.py:122:15: error: Module has no attribute "finfo" [attr-defined] +torch/distributions/lkj_cholesky.py:123:22: error: Module has no attribute "clamp" [attr-defined] +torch/distributions/lkj_cholesky.py:123:38: error: Module has no attribute "sum" [attr-defined] +torch/distributions/lkj_cholesky.py:124:14: error: Module has no attribute "diag_embed" [attr-defined] +torch/distributions/lkj_cholesky.py:140:17: error: Module has no attribute "arange" [attr-defined] +torch/distributions/lkj_cholesky.py:141:21: error: "int" has no attribute "unsqueeze" [attr-defined] +torch/distributions/lkj_cholesky.py:142:32: error: Module has no attribute "sum" [attr-defined] +torch/distributions/lkj_cholesky.py:146:23: error: Module has no attribute "lgamma" [attr-defined] +torch/distributions/lkj_cholesky.py:147:21: error: Module has no attribute "mvlgamma" [attr-defined] +torch/distributions/generalized_pareto.py:55:27: error: Module has no attribute "Size" [attr-defined] +torch/distributions/generalized_pareto.py:62:23: error: Module has no attribute "Size" [attr-defined] +torch/distributions/generalized_pareto.py:70:36: error: Module has no attribute "Size" [attr-defined] +torch/distributions/generalized_pareto.py:72:13: error: Module has no attribute "rand" [attr-defined] +torch/distributions/generalized_pareto.py:79:19: error: Module has no attribute "isclose" [attr-defined] +torch/distributions/generalized_pareto.py:79:53: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributions/generalized_pareto.py:80:21: error: Module has no attribute "where" [attr-defined] +torch/distributions/generalized_pareto.py:81:22: error: Module has no attribute "ones_like" [attr-defined] +torch/distributions/generalized_pareto.py:83:29: error: Module has no attribute "ones_like" [attr-defined] +torch/distributions/generalized_pareto.py:84:25: error: Module has no attribute "where" [attr-defined] +torch/distributions/generalized_pareto.py:84:52: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/generalized_pareto.py:88:29: error: Module has no attribute "where" [attr-defined] +torch/distributions/generalized_pareto.py:94:19: error: Module has no attribute "isclose" [attr-defined] +torch/distributions/generalized_pareto.py:94:53: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributions/generalized_pareto.py:95:21: error: Module has no attribute "where" [attr-defined] +torch/distributions/generalized_pareto.py:96:22: error: Module has no attribute "ones_like" [attr-defined] +torch/distributions/generalized_pareto.py:98:26: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/generalized_pareto.py:99:16: error: Module has no attribute "where" [attr-defined] +torch/distributions/generalized_pareto.py:102:16: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/generalized_pareto.py:102:29: error: Module has no attribute "exp" [attr-defined] +torch/distributions/generalized_pareto.py:105:16: error: Module has no attribute "exp" [attr-defined] +torch/distributions/generalized_pareto.py:111:19: error: Module has no attribute "isclose" [attr-defined] +torch/distributions/generalized_pareto.py:111:48: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributions/generalized_pareto.py:112:21: error: Module has no attribute "where" [attr-defined] +torch/distributions/generalized_pareto.py:112:42: error: Module has no attribute "ones_like" [attr-defined] +torch/distributions/generalized_pareto.py:113:16: error: Module has no attribute "log1p" [attr-defined] +torch/distributions/generalized_pareto.py:114:51: error: Module has no attribute "expm1" [attr-defined] +torch/distributions/generalized_pareto.py:116:16: error: Module has no attribute "where" [attr-defined] +torch/distributions/generalized_pareto.py:125:21: error: Module has no attribute "where" [attr-defined] +torch/distributions/generalized_pareto.py:127:16: error: Module has no attribute "where" [attr-defined] +torch/distributions/generalized_pareto.py:133:21: error: Module has no attribute "where" [attr-defined] +torch/distributions/generalized_pareto.py:136:16: error: Module has no attribute "where" [attr-defined] +torch/distributions/generalized_pareto.py:139:15: error: Module has no attribute "log" [attr-defined] +torch/distributions/generalized_pareto.py:140:16: error: Module has no attribute "broadcast_to" [attr-defined] +torch/distributions/generalized_pareto.py:150:17: error: Module has no attribute "where" [attr-defined] +torch/ao/quantization/pt2e/graph_utils.py:32:6: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/pt2e/graph_utils.py:33:6: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/quantize.py:377:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize.py:471:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize.py:485:37: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/quantize.py:515:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize.py:517:21: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/quantize.py:526:23: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/quantize.py:535:23: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/quantize.py:540:23: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/quantization/quantize.py:549:21: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/quantize.py:551:23: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/quantize.py:553:23: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/quantize.py:555:23: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/quantization/quantize.py:590:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize.py:619:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize.py:666:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize.py:800:43: error: Module has no attribute "device" [attr-defined] +torch/ao/quantization/pt2e/_numeric_debugger.py:112:26: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/__init__.py:217:16: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/__init__.py:224:18: error: Name "torch.qscheme" is not defined [name-defined] +torch/ao/ns/fx/utils.py:149:45: error: Module has no attribute "float16" [attr-defined] +torch/ao/ns/fx/utils.py:206:32: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/ns/fx/utils.py:341:25: error: Module has no attribute "add" [attr-defined] +torch/ao/ns/fx/utils.py:342:28: error: Module has no attribute "mul" [attr-defined] +torch/ao/ns/fx/utils.py:460:24: error: Module has no attribute "float" [attr-defined] +torch/ao/ns/fx/utils.py:483:17: error: Module has no attribute "log10" [attr-defined] +torch/ao/ns/fx/utils.py:499:12: error: Module has no attribute "sqrt" [attr-defined] +torch/ao/ns/fx/utils.py:525:13: error: Module has no attribute "add" [attr-defined] +torch/ao/ns/fx/utils.py:526:13: error: Module has no attribute "mul" [attr-defined] +torch/ao/ns/fx/utils.py:529:13: error: Module has no attribute "cat" [attr-defined] +torch/ao/ns/fx/utils.py:530:13: error: Module has no attribute "stack" [attr-defined] +functorch/dim/op_properties.py:64:5: error: Module has no attribute "where" [attr-defined] +functorch/dim/op_properties.py:66:5: error: Module has no attribute "abs" [attr-defined] +functorch/dim/op_properties.py:68:5: error: Module has no attribute "acos" [attr-defined] +functorch/dim/op_properties.py:70:5: error: Module has no attribute "acosh" [attr-defined] +functorch/dim/op_properties.py:72:5: error: Module has no attribute "add" [attr-defined] +functorch/dim/op_properties.py:74:5: error: Module has no attribute "addcdiv" [attr-defined] +functorch/dim/op_properties.py:76:5: error: Module has no attribute "addcmul" [attr-defined] +functorch/dim/op_properties.py:78:5: error: Module has no attribute "addr" [attr-defined] +functorch/dim/op_properties.py:80:5: error: Module has no attribute "angle" [attr-defined] +functorch/dim/op_properties.py:82:5: error: Module has no attribute "asin" [attr-defined] +functorch/dim/op_properties.py:84:5: error: Module has no attribute "asinh" [attr-defined] +functorch/dim/op_properties.py:86:5: error: Module has no attribute "atan" [attr-defined] +functorch/dim/op_properties.py:88:5: error: Module has no attribute "atan2" [attr-defined] +functorch/dim/op_properties.py:90:5: error: Module has no attribute "atanh" [attr-defined] +functorch/dim/op_properties.py:92:5: error: Module has no attribute "bitwise_and" [attr-defined] +functorch/dim/op_properties.py:94:5: error: Module has no attribute "bitwise_left_shift" [attr-defined] +functorch/dim/op_properties.py:96:5: error: Module has no attribute "bitwise_not" [attr-defined] +functorch/dim/op_properties.py:98:5: error: Module has no attribute "bitwise_or" [attr-defined] +functorch/dim/op_properties.py:100:5: error: Module has no attribute "bitwise_right_shift" [attr-defined] +functorch/dim/op_properties.py:102:5: error: Module has no attribute "bitwise_xor" [attr-defined] +functorch/dim/op_properties.py:104:5: error: Module has no attribute "ceil" [attr-defined] +functorch/dim/op_properties.py:105:5: error: Module has no attribute "celu" [attr-defined] +functorch/dim/op_properties.py:108:5: error: Module has no attribute "clamp" [attr-defined] +functorch/dim/op_properties.py:110:5: error: Module has no attribute "clamp_max" [attr-defined] +functorch/dim/op_properties.py:112:5: error: Module has no attribute "clamp_min" [attr-defined] +functorch/dim/op_properties.py:114:5: error: Module has no attribute "copysign" [attr-defined] +functorch/dim/op_properties.py:116:5: error: Module has no attribute "cos" [attr-defined] +functorch/dim/op_properties.py:118:5: error: Module has no attribute "cosh" [attr-defined] +functorch/dim/op_properties.py:120:5: error: Module has no attribute "deg2rad" [attr-defined] +functorch/dim/op_properties.py:122:5: error: Module has no attribute "digamma" [attr-defined] +functorch/dim/op_properties.py:124:5: error: Module has no attribute "div" [attr-defined] +functorch/dim/op_properties.py:125:5: error: Module has no attribute "dropout" [attr-defined] +functorch/dim/op_properties.py:129:5: error: Module has no attribute "eq" [attr-defined] +functorch/dim/op_properties.py:131:5: error: Module has no attribute "erf" [attr-defined] +functorch/dim/op_properties.py:133:5: error: Module has no attribute "erfc" [attr-defined] +functorch/dim/op_properties.py:135:5: error: Module has no attribute "erfinv" [attr-defined] +functorch/dim/op_properties.py:137:5: error: Module has no attribute "exp" [attr-defined] +functorch/dim/op_properties.py:139:5: error: Module has no attribute "exp2" [attr-defined] +functorch/dim/op_properties.py:141:5: error: Module has no attribute "expm1" [attr-defined] +functorch/dim/op_properties.py:142:5: error: Module has no attribute "feature_dropout" [attr-defined] +functorch/dim/op_properties.py:144:5: error: Module has no attribute "float_power" [attr-defined] +functorch/dim/op_properties.py:146:5: error: Module has no attribute "floor" [attr-defined] +functorch/dim/op_properties.py:148:5: error: Module has no attribute "floor_divide" [attr-defined] +functorch/dim/op_properties.py:150:5: error: Module has no attribute "fmod" [attr-defined] +functorch/dim/op_properties.py:152:5: error: Module has no attribute "frac" [attr-defined] +functorch/dim/op_properties.py:154:5: error: Module has no attribute "frexp" [attr-defined] +functorch/dim/op_properties.py:156:5: error: Module has no attribute "gcd" [attr-defined] +functorch/dim/op_properties.py:158:5: error: Module has no attribute "ge" [attr-defined] +functorch/dim/op_properties.py:162:5: error: Module has no attribute "gt" [attr-defined] +functorch/dim/op_properties.py:164:5: error: Module has no attribute "hardshrink" [attr-defined] +functorch/dim/op_properties.py:170:5: error: Module has no attribute "heaviside" [attr-defined] +functorch/dim/op_properties.py:172:5: error: Module has no attribute "hypot" [attr-defined] +functorch/dim/op_properties.py:174:5: error: Module has no attribute "i0" [attr-defined] +functorch/dim/op_properties.py:176:5: error: Module has no attribute "igamma" [attr-defined] +functorch/dim/op_properties.py:178:5: error: Module has no attribute "igammac" [attr-defined] +functorch/dim/op_properties.py:180:5: error: Module has no attribute "isclose" [attr-defined] +functorch/dim/op_properties.py:182:5: error: Module has no attribute "isfinite" [attr-defined] +functorch/dim/op_properties.py:184:5: error: Module has no attribute "isinf" [attr-defined] +functorch/dim/op_properties.py:186:5: error: Module has no attribute "isnan" [attr-defined] +functorch/dim/op_properties.py:188:5: error: Module has no attribute "isneginf" [attr-defined] +functorch/dim/op_properties.py:190:5: error: Module has no attribute "isposinf" [attr-defined] +functorch/dim/op_properties.py:192:5: error: Module has no attribute "isreal" [attr-defined] +functorch/dim/op_properties.py:194:5: error: Module has no attribute "kron" [attr-defined] +functorch/dim/op_properties.py:196:5: error: Module has no attribute "lcm" [attr-defined] +functorch/dim/op_properties.py:198:5: error: Module has no attribute "ldexp" [attr-defined] +functorch/dim/op_properties.py:200:5: error: Module has no attribute "le" [attr-defined] +functorch/dim/op_properties.py:203:5: error: Module has no attribute "lerp" [attr-defined] +functorch/dim/op_properties.py:205:5: error: Module has no attribute "lgamma" [attr-defined] +functorch/dim/op_properties.py:207:5: error: Module has no attribute "log" [attr-defined] +functorch/dim/op_properties.py:209:5: error: Module has no attribute "log10" [attr-defined] +functorch/dim/op_properties.py:211:5: error: Module has no attribute "log1p" [attr-defined] +functorch/dim/op_properties.py:213:5: error: Module has no attribute "log2" [attr-defined] +functorch/dim/op_properties.py:216:5: error: Module has no attribute "logical_and" [attr-defined] +functorch/dim/op_properties.py:218:5: error: Module has no attribute "logical_not" [attr-defined] +functorch/dim/op_properties.py:220:5: error: Module has no attribute "logical_or" [attr-defined] +functorch/dim/op_properties.py:222:5: error: Module has no attribute "logical_xor" [attr-defined] +functorch/dim/op_properties.py:224:5: error: Module has no attribute "logit" [attr-defined] +functorch/dim/op_properties.py:226:5: error: Module has no attribute "lt" [attr-defined] +functorch/dim/op_properties.py:228:5: error: Module has no attribute "maximum" [attr-defined] +functorch/dim/op_properties.py:230:5: error: Module has no attribute "minimum" [attr-defined] +functorch/dim/op_properties.py:233:5: error: Module has no attribute "mvlgamma" [attr-defined] +functorch/dim/op_properties.py:235:5: error: Module has no attribute "nan_to_num" [attr-defined] +functorch/dim/op_properties.py:237:5: error: Module has no attribute "ne" [attr-defined] +functorch/dim/op_properties.py:239:5: error: Module has no attribute "neg" [attr-defined] +functorch/dim/op_properties.py:241:5: error: Module has no attribute "nextafter" [attr-defined] +functorch/dim/op_properties.py:243:5: error: Module has no attribute "outer" [attr-defined] +functorch/dim/op_properties.py:244:5: error: Module has no attribute "polar" [attr-defined] +functorch/dim/op_properties.py:246:5: error: Module has no attribute "polygamma" [attr-defined] +functorch/dim/op_properties.py:248:5: error: Module has no attribute "positive" [attr-defined] +functorch/dim/op_properties.py:250:5: error: Module has no attribute "pow" [attr-defined] +functorch/dim/op_properties.py:252:5: error: Module has no attribute "prelu" [attr-defined] +functorch/dim/op_properties.py:255:5: error: Module has no attribute "rad2deg" [attr-defined] +functorch/dim/op_properties.py:257:5: error: Module has no attribute "reciprocal" [attr-defined] +functorch/dim/op_properties.py:259:5: error: Module has no attribute "relu" [attr-defined] +functorch/dim/op_properties.py:263:5: error: Module has no attribute "remainder" [attr-defined] +functorch/dim/op_properties.py:265:5: error: Module has no attribute "round" [attr-defined] +functorch/dim/op_properties.py:266:5: error: Module has no attribute "rrelu" [attr-defined] +functorch/dim/op_properties.py:269:5: error: Module has no attribute "rsqrt" [attr-defined] +functorch/dim/op_properties.py:270:5: error: Module has no attribute "rsub" [attr-defined] +functorch/dim/op_properties.py:271:5: error: Module has no attribute "selu" [attr-defined] +functorch/dim/op_properties.py:274:5: error: Module has no attribute "sgn" [attr-defined] +functorch/dim/op_properties.py:276:5: error: Module has no attribute "sigmoid" [attr-defined] +functorch/dim/op_properties.py:279:5: error: Module has no attribute "sign" [attr-defined] +functorch/dim/op_properties.py:281:5: error: Module has no attribute "signbit" [attr-defined] +functorch/dim/op_properties.py:284:5: error: Module has no attribute "sin" [attr-defined] +functorch/dim/op_properties.py:286:5: error: Module has no attribute "sinc" [attr-defined] +functorch/dim/op_properties.py:288:5: error: Module has no attribute "sinh" [attr-defined] +functorch/dim/op_properties.py:292:5: error: Module has no attribute "sqrt" [attr-defined] +functorch/dim/op_properties.py:294:5: error: Module has no attribute "square" [attr-defined] +functorch/dim/op_properties.py:296:5: error: Module has no attribute "sub" [attr-defined] +functorch/dim/op_properties.py:298:5: error: Module has no attribute "tan" [attr-defined] +functorch/dim/op_properties.py:300:5: error: Module has no attribute "tanh" [attr-defined] +functorch/dim/op_properties.py:302:5: error: Module has no attribute "threshold" [attr-defined] +functorch/dim/op_properties.py:304:5: error: Module has no attribute "trapz" [attr-defined] +functorch/dim/op_properties.py:306:5: error: Module has no attribute "true_divide" [attr-defined] +functorch/dim/op_properties.py:308:5: error: Module has no attribute "trunc" [attr-defined] +functorch/dim/op_properties.py:310:5: error: Module has no attribute "xlogy" [attr-defined] +functorch/dim/op_properties.py:311:5: error: Module has no attribute "rand_like" [attr-defined] +torch/utils/module_tracker.py:88:16: error: Module has no attribute "_current_graph_task_id" [attr-defined] +torch/utils/mkldnn.py:17:17: error: Module has no attribute "zeros" [attr-defined] +torch/utils/mkldnn.py:17:66: error: Module has no attribute "float" [attr-defined] +torch/utils/mkldnn.py:32:20: error: Module has no attribute "_nn" [attr-defined] +torch/utils/mkldnn.py:58:17: error: Module has no attribute "zeros" [attr-defined] +torch/utils/mkldnn.py:58:66: error: Module has no attribute "float" [attr-defined] +torch/utils/mkldnn.py:66:16: error: Module has no attribute "mkldnn_convolution" [attr-defined] +torch/utils/mkldnn.py:93:40: error: Module has no attribute "_nn" [attr-defined] +torch/utils/mkldnn.py:102:23: error: Module has no attribute "_nn" [attr-defined] +torch/utils/mkldnn.py:115:40: error: Module has no attribute "_nn" [attr-defined] +torch/utils/mkldnn.py:124:23: error: Module has no attribute "_nn" [attr-defined] +torch/utils/mkldnn.py:176:16: error: Module has no attribute "batch_norm" [attr-defined] +torch/utils/mkldnn.py:205:20: error: Module has no attribute "prelu" [attr-defined] +torch/utils/mkldnn.py:209:29: error: Module has no attribute "float" [attr-defined] +torch/utils/mkldnn.py:210:22: error: Module has no attribute "float" [attr-defined] +torch/utils/mkldnn.py:210:35: error: Module has no attribute "bfloat16" [attr-defined] +torch/utils/mkldnn.py:210:51: error: Module has no attribute "half" [attr-defined] +torch/utils/cpp_extension.py:2515:21: error: Module has no attribute "_cuda_getArchFlags" [attr-defined] +torch/utils/_device.py:5:1: error: Module "torch._C" has no attribute "_len_torch_function_stack" [attr-defined] +torch/utils/_device.py:10:17: error: Name "torch.device" is not defined [name-defined] +torch/utils/_device.py:17:9: error: Module has no attribute "empty" [attr-defined] +torch/utils/_device.py:18:9: error: Module has no attribute "empty_permuted" [attr-defined] +torch/utils/_device.py:19:9: error: Module has no attribute "empty_strided" [attr-defined] +torch/utils/_device.py:20:9: error: Module has no attribute "empty_quantized" [attr-defined] +torch/utils/_device.py:21:9: error: Module has no attribute "ones" [attr-defined] +torch/utils/_device.py:22:9: error: Module has no attribute "arange" [attr-defined] +torch/utils/_device.py:23:9: error: Module has no attribute "bartlett_window" [attr-defined] +torch/utils/_device.py:24:9: error: Module has no attribute "blackman_window" [attr-defined] +torch/utils/_device.py:25:9: error: Module has no attribute "eye" [attr-defined] +torch/utils/_device.py:28:9: error: Module has no attribute "full" [attr-defined] +torch/utils/_device.py:29:9: error: Module has no attribute "hamming_window" [attr-defined] +torch/utils/_device.py:30:9: error: Module has no attribute "hann_window" [attr-defined] +torch/utils/_device.py:31:9: error: Module has no attribute "kaiser_window" [attr-defined] +torch/utils/_device.py:32:9: error: Module has no attribute "linspace" [attr-defined] +torch/utils/_device.py:33:9: error: Module has no attribute "logspace" [attr-defined] +torch/utils/_device.py:37:9: error: Module has no attribute "rand" [attr-defined] +torch/utils/_device.py:38:9: error: Module has no attribute "randn" [attr-defined] +torch/utils/_device.py:39:9: error: Module has no attribute "randint" [attr-defined] +torch/utils/_device.py:40:9: error: Module has no attribute "randperm" [attr-defined] +torch/utils/_device.py:41:9: error: Module has no attribute "range" [attr-defined] +torch/utils/_device.py:42:9: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/utils/_device.py:43:9: error: Module has no attribute "sparse_compressed_tensor" [attr-defined] +torch/utils/_device.py:44:9: error: Module has no attribute "sparse_csr_tensor" [attr-defined] +torch/utils/_device.py:45:9: error: Module has no attribute "sparse_csc_tensor" [attr-defined] +torch/utils/_device.py:46:9: error: Module has no attribute "sparse_bsr_tensor" [attr-defined] +torch/utils/_device.py:47:9: error: Module has no attribute "sparse_bsc_tensor" [attr-defined] +torch/utils/_device.py:48:9: error: Module has no attribute "tril_indices" [attr-defined] +torch/utils/_device.py:49:9: error: Module has no attribute "triu_indices" [attr-defined] +torch/utils/_device.py:50:9: error: Module has no attribute "zeros" [attr-defined] +torch/utils/_device.py:51:9: error: Module has no attribute "asarray" [attr-defined] +torch/utils/_device.py:53:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/utils/_device.py:54:9: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/utils/_device.py:55:9: error: Module has no attribute "scalar_tensor" [attr-defined] +torch/utils/_device.py:63:23: error: Module has no attribute "device" [attr-defined] +torch/utils/_device.py:124:42: error: Module has no attribute "device" [attr-defined] +torch/utils/_debug_mode.py:77:1: error: Need type annotation for "_TRITON_OUTPUT_HASH_FN" (hint: "_TRITON_OUTPUT_HASH_FN: | None = ...") [var-annotated] +torch/utils/_debug_mode.py:79:1: error: Need type annotation for "_TRITON_INPUT_HASH_FN" (hint: "_TRITON_INPUT_HASH_FN: | None = ...") [var-annotated] +torch/utils/_debug_mode.py:116:14: error: Module has no attribute "_DisablePythonDispatcher" [attr-defined] +torch/utils/_debug_mode.py:168:10: error: Module has no attribute "_DisablePythonDispatcher" [attr-defined] +torch/utils/_debug_mode.py:174:34: error: Module has no attribute "complex128" [attr-defined] +torch/utils/_debug_mode.py:176:34: error: Module has no attribute "float64" [attr-defined] +torch/utils/_debug_mode.py:201:30: error: Module has no attribute "float64" [attr-defined] +torch/utils/_debug_mode.py:203:30: error: Module has no attribute "complex128" [attr-defined] +torch/utils/_debug_mode.py:203:53: error: Module has no attribute "float64" [attr-defined] +torch/utils/_debug_mode.py:205:30: error: Module has no attribute "int64" [attr-defined] +torch/utils/_debug_mode.py:207:11: error: Module has no attribute "hash_tensor" [attr-defined] +torch/utils/_debug_mode.py:236:8: error: Module has no attribute "_current_autograd_node" [attr-defined] +torch/utils/_debug_mode.py:646:9: error: Need type annotation for "operators" (hint: "operators: list[] = ...") [var-annotated] +torch/utils/_debug_mode.py:751:13: error: Module has no attribute "_push_on_torch_function_stack" [attr-defined] +torch/utils/_debug_mode.py:770:13: error: Module has no attribute "_pop_torch_function_stack" [attr-defined] +torch/utils/_debug_mode.py:829:14: error: Module has no attribute "DisableTorchFunction" [attr-defined] +torch/utils/_debug_mode.py:840:13: error: Need type annotation for "lines" (hint: "lines: list[] = ...") [var-annotated] +torch/utils/_debug_mode.py:989:41: error: Name "_old_input_hfn" may be undefined [possibly-undefined] +torch/utils/_debug_mode.py:989:41: note: Error code "possibly-undefined" not covered by "type: ignore" comment +torch/utils/_debug_mode.py:1186:25: error: Value of type "dict[str, Any] | None" is not indexable [index] +torch/utils/_debug_mode.py:1186:25: note: Error code "index" not covered by "type: ignore" comment +torch/utils/_debug_mode.py:1203:29: error: Value of type "dict[str, Any] | None" is not indexable [index] +torch/utils/_debug_mode.py:1203:29: note: Error code "index" not covered by "type: ignore" comment +torch/utils/_sympy/reference.py:114:21: error: Module has no attribute "float64" [attr-defined] +torch/utils/_sympy/reference.py:222:21: error: Module has no attribute "int64" [attr-defined] +torch/utils/_sympy/reference.py:224:23: error: Module has no attribute "double" [attr-defined] +torch/utils/_sympy/reference.py:226:23: error: Module has no attribute "bool" [attr-defined] +torch/utils/_sympy/reference.py:260:21: error: Module has no attribute "float64" [attr-defined] +torch/utils/_sympy/reference.py:348:39: error: Name "torch.dtype" is not defined [name-defined] +torch/utils/_sympy/reference.py:372:21: error: Module has no attribute "int64" [attr-defined] +torch/utils/_sympy/reference.py:374:23: error: Module has no attribute "double" [attr-defined] +torch/utils/_sympy/reference.py:376:23: error: Module has no attribute "bool" [attr-defined] +torch/utils/_sympy/interp.py:125:58: error: Module has no attribute "int64" [attr-defined] +torch/utils/_sympy/interp.py:132:43: error: Module has no attribute "float64" [attr-defined] +torch/utils/_sympy/interp.py:191:17: error: Module has no attribute "int64" [attr-defined] +torch/utils/_sympy/interp.py:197:17: error: Module has no attribute "bool" [attr-defined] +torch/utils/_sympy/interp.py:199:17: error: Module has no attribute "int64" [attr-defined] +torch/utils/_sympy/interp.py:201:17: error: Module has no attribute "double" [attr-defined] +torch/sparse/_triton_ops_meta.py:114:53: error: Module has no attribute "float16" [attr-defined] +torch/sparse/_triton_ops_meta.py:236:44: error: Module has no attribute "dtype" [attr-defined] +torch/sparse/_triton_ops_meta.py:453:9: error: Module has no attribute "bernoulli" [attr-defined] +torch/sparse/_triton_ops_meta.py:454:9: error: Module has no attribute "full" [attr-defined] +torch/sparse/_triton_ops_meta.py:454:47: error: Module has no attribute "float32" [attr-defined] +torch/sparse/_triton_ops_meta.py:460:29: error: Module has no attribute "randperm" [attr-defined] +torch/sparse/_triton_ops_meta.py:464:26: error: Module has no attribute "randperm" [attr-defined] +torch/sparse/_triton_ops_meta.py:468:9: error: Module has no attribute "repeat_interleave" [attr-defined] +torch/sparse/_triton_ops_meta.py:469:9: error: Module has no attribute "repeat_interleave" [attr-defined] +torch/sparse/_triton_ops_meta.py:474:28: error: Module has no attribute "float16" [attr-defined] +torch/sparse/_triton_ops_meta.py:559:14: error: Module has no attribute "float32" [attr-defined] +torch/sparse/_triton_ops_meta.py:560:14: error: Module has no attribute "float32" [attr-defined] +torch/sparse/_triton_ops_meta.py:561:14: error: Module has no attribute "float32" [attr-defined] +torch/sparse/_triton_ops_meta.py:562:14: error: Module has no attribute "float32" [attr-defined] +torch/sparse/_triton_ops_meta.py:563:14: error: Module has no attribute "float32" [attr-defined] +torch/sparse/_triton_ops_meta.py:760:11: error: Module has no attribute "float16" [attr-defined] +torch/sparse/_triton_ops_meta.py:798:46: error: Module has no attribute "float16" [attr-defined] +torch/sparse/_triton_ops_meta.py:819:17: error: Module has no attribute "int8" [attr-defined] +torch/sparse/_triton_ops_meta.py:962:59: error: Module has no attribute "int8" [attr-defined] +torch/sparse/_triton_ops_meta.py:2182:59: error: Module has no attribute "int8" [attr-defined] +torch/sparse/_triton_ops_meta.py:2244:59: error: Module has no attribute "int8" [attr-defined] +torch/sparse/_triton_ops_meta.py:2268:54: error: Module has no attribute "bfloat16" [attr-defined] +torch/sparse/_triton_ops_meta.py:3658:54: error: Module has no attribute "bfloat16" [attr-defined] +torch/sparse/_triton_ops_meta.py:3700:54: error: Module has no attribute "float16" [attr-defined] +torch/sparse/_triton_ops_meta.py:5409:54: error: Module has no attribute "float16" [attr-defined] +torch/sparse/_triton_ops_meta.py:5451:54: error: Module has no attribute "float32" [attr-defined] +torch/sparse/_triton_ops_meta.py:6845:54: error: Module has no attribute "float32" [attr-defined] +torch/sparse/_triton_ops_meta.py:6887:54: error: Module has no attribute "int8" [attr-defined] +torch/sparse/_triton_ops_meta.py:6905:49: error: Module has no attribute "bfloat16" [attr-defined] +torch/sparse/_triton_ops_meta.py:7187:49: error: Module has no attribute "float16" [attr-defined] +torch/sparse/_triton_ops_meta.py:7477:49: error: Module has no attribute "float32" [attr-defined] +torch/sparse/_triton_ops_meta.py:7763:19: error: Module has no attribute "int8" [attr-defined] +torch/sparse/_triton_ops_meta.py:7766:19: error: Module has no attribute "float16" [attr-defined] +torch/sparse/_triton_ops_meta.py:7766:34: error: Module has no attribute "bfloat16" [attr-defined] +torch/sparse/_triton_ops_meta.py:7766:50: error: Module has no attribute "float32" [attr-defined] +torch/sparse/_triton_ops_meta.py:7766:65: error: Module has no attribute "int8" [attr-defined] +torch/nested/_internal/sdpa.py:352:52: error: Module has no attribute "int32" [attr-defined] +torch/nested/_internal/sdpa.py:358:46: error: Module has no attribute "int32" [attr-defined] +torch/nested/_internal/sdpa.py:694:47: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/nested/_internal/sdpa.py:700:24: error: Module has no attribute "get_autocast_dtype" [attr-defined] +torch/nested/_internal/sdpa.py:704:27: error: Module has no attribute "float64" [attr-defined] +torch/nested/_internal/sdpa.py:904:25: error: Module has no attribute "transpose" [attr-defined] +torch/nested/_internal/sdpa.py:914:20: error: Module has no attribute "_scaled_dot_product_attention_math" [attr-defined] +torch/masked/maskedtensor/unary.py:130:26: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/maskedtensor/unary.py:136:23: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/masked/maskedtensor/unary.py:138:28: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/maskedtensor/unary.py:143:23: error: Module has no attribute "sparse_csr_tensor" [attr-defined] +torch/masked/maskedtensor/reductions.py:23:16: error: Module has no attribute "all" [attr-defined] +torch/masked/maskedtensor/reductions.py:24:12: error: Module has no attribute "all" [attr-defined] +torch/masked/maskedtensor/reductions.py:37:16: error: Module has no attribute "any" [attr-defined] +torch/masked/maskedtensor/reductions.py:59:71: error: Module has no attribute "int" [attr-defined] +torch/masked/maskedtensor/reductions.py:66:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/masked/maskedtensor/reductions.py:69:27: error: Module has no attribute "sum" [attr-defined] +torch/masked/maskedtensor/reductions.py:78:46: error: Module has no attribute "any" [attr-defined] +torch/masked/maskedtensor/binary.py:107:24: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/maskedtensor/binary.py:124:23: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/masked/maskedtensor/binary.py:126:26: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/maskedtensor/binary.py:145:23: error: Module has no attribute "sparse_csr_tensor" [attr-defined] +torch/masked/maskedtensor/binary.py:156:28: error: Module has no attribute "strided" [attr-defined] +torch/fx/passes/reinplace.py:546:67: error: Module has no attribute "TensorType" [attr-defined] +torch/fx/passes/reinplace.py:567:24: error: Module has no attribute "_debug_has_internal_overlap" [attr-defined] +torch/fx/passes/graph_manipulation.py:106:31: error: Module has no attribute "_empty_affine_quantized" [attr-defined] +torch/fx/passes/graph_manipulation.py:110:31: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/fx/passes/graph_drawer.py:349:21: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/fx/passes/graph_drawer.py:350:21: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/fx/passes/graph_drawer.py:361:21: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/fx/passes/graph_drawer.py:362:21: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/fx/passes/graph_drawer.py:363:21: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/export/pt2_archive/_package_weights.py:125:35: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/tensor/_ops/_mask_buffer.py:20:20: error: Module has no attribute "equal" [attr-defined] +torch/distributed/optim/zero_redundancy_optimizer.pyi:19:13: error: Name "torch.device" is not defined [name-defined] +torch/distributed/optim/zero_redundancy_optimizer.pyi:52:35: error: Name "torch.device" is not defined [name-defined] +torch/distributed/optim/zero_redundancy_optimizer.pyi:84:30: error: Name "torch.device" is not defined [name-defined] +torch/distributed/nn/functional.py:259:13: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/nn/functional.py:281:18: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/nn/functional.py:336:13: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/nn/functional.py:346:18: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/nn/functional.py:351:28: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/nn/functional.py:353:18: error: Module has no attribute "sum" [attr-defined] +torch/distributed/nn/functional.py:353:28: error: Module has no attribute "stack" [attr-defined] +torch/distributed/nn/functional.py:377:18: error: Module has no attribute "empty" [attr-defined] +torch/distributed/nn/functional.py:414:13: error: Module has no attribute "empty" [attr-defined] +torch/distributed/nn/functional.py:442:18: error: Module has no attribute "empty" [attr-defined] +torch/distributed/nn/functional.py:462:45: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/fsdp/api.py:221:27: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/api.py:222:28: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/api.py:223:28: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_limiter_utils.py:15:40: error: Name "torch.Event" is not defined [name-defined] +torch/distributed/fsdp/_limiter_utils.py:18:35: error: Name "torch.Event" is not defined [name-defined] +torch/distributed/fsdp/_limiter_utils.py:22:45: error: Name "torch.Event" is not defined [name-defined] +torch/distributed/fsdp/_limiter_utils.py:28:36: error: Name "torch.Event" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_api.py:50:27: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_api.py:51:28: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_api.py:52:28: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_api.py:79:16: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_api.py:80:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/checkpoint/metadata.py:30:14: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/checkpoint/metadata.py:31:12: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/checkpoint/metadata.py:47:12: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/checkpoint/metadata.py:47:48: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/distributed/checkpoint/metadata.py:49:13: error: Name "torch.layout" is not defined [name-defined] +torch/distributed/checkpoint/metadata.py:49:42: error: Module has no attribute "strided" [attr-defined] +torch/distributed/checkpoint/metadata.py:53:20: error: Name "torch.memory_format" is not defined [name-defined] +torch/distributed/checkpoint/metadata.py:53:56: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/checkpoint/metadata.py:60:29: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/checkpoint/metadata.py:62:31: error: Module has no attribute "channels_last" [attr-defined] +torch/distributed/checkpoint/metadata.py:64:31: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/checkpoint/metadata.py:90:29: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/checkpoint/metadata.py:92:29: error: Module has no attribute "channels_last" [attr-defined] +torch/distributed/checkpoint/metadata.py:94:29: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/checkpoint/metadata.py:108:27: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/checkpoint/metadata.py:116:11: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/checkpoint/metadata.py:160:22: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/checkpoint/metadata.py:185:48: error: Module has no attribute "Size" [attr-defined] +torch/distributed/algorithms/model_averaging/utils.py:40:19: error: Module has no attribute "cat" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py:45:19: error: Name "torch.Stream" is not defined [name-defined] +torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py:20:20: error: Name "torch.Stream" is not defined [name-defined] +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:58:12: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:113:27: error: Module has no attribute "float16" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:134:27: error: Module has no attribute "bfloat16" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:158:46: error: Module has no attribute "float16" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:197:46: error: Module has no attribute "bfloat16" [attr-defined] +torch/distributed/algorithms/_comm_hooks/default_hooks.py:66:24: error: Module has no attribute "float32" [attr-defined] +torch/distributed/algorithms/_comm_hooks/default_hooks.py:81:27: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/distributed/algorithms/_comm_hooks/default_hooks.py:136:11: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/algorithms/_comm_hooks/default_hooks.py:170:56: error: Module has no attribute "float16" [attr-defined] +torch/distributed/algorithms/_comm_hooks/default_hooks.py:191:56: error: Module has no attribute "bfloat16" [attr-defined] +torch/distributed/_tools/mod_tracker.py:91:16: error: Module has no attribute "_current_graph_task_id" [attr-defined] +torch/distributed/_shard/common_op_utils.py:64:14: error: Module has no attribute "DisableTorchFunctionSubclass" [attr-defined] +torch/distributed/_local_tensor/_c10d.py:8:1: error: Module "torch._C" has no attribute "ScriptObject" [attr-defined] +torch/distributed/_local_tensor/_c10d.py:126:27: error: Module has no attribute "cat" [attr-defined] +torch/distributed/_local_tensor/_c10d.py:197:27: error: Module has no attribute "cat" [attr-defined] +torch/distributed/_local_tensor/_c10d.py:271:14: error: Module has no attribute "minimum" [attr-defined] +torch/distributed/_local_tensor/_c10d.py:273:14: error: Module has no attribute "maximum" [attr-defined] +torch/distributed/_local_tensor/_c10d.py:275:14: error: Module has no attribute "bitwise_and" [attr-defined] +torch/distributed/_local_tensor/_c10d.py:277:14: error: Module has no attribute "bitwise_or" [attr-defined] +torch/distributed/_local_tensor/_c10d.py:279:14: error: Module has no attribute "bitwise_xor" [attr-defined] +torch/distributed/_local_tensor/_c10d.py:286:16: error: Incompatible return value type (got "float", expected "Tensor") [return-value] +torch/distributed/_local_tensor/_c10d.py:513:32: error: Module has no attribute "cat" [attr-defined] +torch/backends/xnnpack/__init__.py:10:16: error: Module has no attribute "_is_xnnpack_enabled" [attr-defined] +torch/backends/cudnn/rnn.py:59:17: error: Module has no attribute "_cudnn_init_dropout_state" [attr-defined] +torch/backends/cudnn/rnn.py:59:17: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/backends/cudnn/rnn.py:64:29: error: Module has no attribute "uint8" [attr-defined] +torch/backends/cudnn/rnn.py:65:28: error: Module has no attribute "device" [attr-defined] +torch/ao/quantization/quantizer/quantizer.py:38:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/quantizer/quantizer.py:46:14: error: Name "torch.qscheme" is not defined [name-defined] +torch/ao/quantization/quantizer/quantizer.py:70:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/quantizer/quantizer.py:75:14: error: Name "torch.qscheme" is not defined [name-defined] +torch/ao/quantization/quantizer/quantizer.py:105:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/quantizer/quantizer.py:108:14: error: Name "torch.qscheme" is not defined [name-defined] +torch/ao/quantization/fx/graph_module.py:96:35: error: Module has no attribute "__iter__"; maybe "__dir__"? (not iterable) [attr-defined] +torch/ao/quantization/fx/graph_module.py:96:35: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/ao/quantization/fx/graph_module.py:136:39: error: Module has no attribute "ScriptObject" [attr-defined] +torch/ao/quantization/fx/graph_module.py:179:40: error: Module has no attribute "ScriptObject" [attr-defined] +torch/ao/quantization/backend_config/backend_config.py:105:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/backend_config/backend_config.py:188:17: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/backend_config/backend_config.py:193:22: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/backend_config/backend_config.py:194:23: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/backend_config/backend_config.py:195:23: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/backend_config/backend_config.py:196:21: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/backend_config/backend_config.py:222:30: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/backend_config/backend_config.py:226:31: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/backend_config/backend_config.py:230:31: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/backend_config/backend_config.py:245:27: error: Module has no attribute "dtype" [attr-defined] +torch/ao/quantization/backend_config/backend_config.py:252:28: error: Module has no attribute "dtype" [attr-defined] +torch/ao/quantization/backend_config/backend_config.py:259:28: error: Module has no attribute "dtype" [attr-defined] +torch/_prims_common/wrappers.py:32:55: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/wrappers.py:38:51: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/wrappers.py:44:49: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/wrappers.py:49:45: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims_common/wrappers.py:191:29: error: Name "torch.memory_format" is not defined [name-defined] +torch/_prims_common/wrappers.py:433:14: error: Module has no attribute "_AutoDispatchBelowAutograd" [attr-defined] +torch/_prims_common/wrappers.py:450:12: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_prims_common/wrappers.py:486:24: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/test_operators.py:9:61: error: Module has no attribute "Tag" [attr-defined] +torch/_inductor/runtime/runtime_utils.py:192:39: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/runtime/runtime_utils.py:205:1: error: Cannot find implementation or library stub for module named "jax.numpy" [import-not-found] +torch/_inductor/runtime/runtime_utils.py:205:1: error: Cannot find implementation or library stub for module named "jax" [import-not-found] +torch/_inductor/runtime/runtime_utils.py:208:9: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/runtime/runtime_utils.py:209:9: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/runtime/runtime_utils.py:210:9: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/runtime/runtime_utils.py:211:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/runtime/runtime_utils.py:212:9: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/runtime/runtime_utils.py:213:9: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/runtime/runtime_utils.py:214:9: error: Module has no attribute "int16" [attr-defined] +torch/_inductor/runtime/runtime_utils.py:215:9: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/runtime/runtime_utils.py:216:9: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/runtime/runtime_utils.py:217:9: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/runtime/runtime_utils.py:218:9: error: Module has no attribute "complex64" [attr-defined] +torch/_inductor/runtime/runtime_utils.py:219:9: error: Module has no attribute "complex128" [attr-defined] +torch/_inductor/runtime/runtime_utils.py:226:31: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/runtime/debug_utils.py:110:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/runtime/debug_utils.py:111:13: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/runtime/debug_utils.py:114:9: error: Module has no attribute "empty_strided" [attr-defined] +torch/_inductor/autoheuristic/autoheuristic_utils.py:336:55: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/autoheuristic/autoheuristic_utils.py:338:17: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/analysis/device_info.py:22:22: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/analysis/device_info.py:34:13: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/analysis/device_info.py:35:13: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/analysis/device_info.py:37:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/analysis/device_info.py:38:13: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/analysis/device_info.py:39:13: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/analysis/device_info.py:40:13: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/analysis/device_info.py:41:13: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/_inductor/analysis/device_info.py:42:13: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/analysis/device_info.py:43:13: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/_inductor/analysis/device_info.py:44:13: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/analysis/device_info.py:45:13: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/analysis/device_info.py:55:13: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/analysis/device_info.py:56:13: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/analysis/device_info.py:57:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/analysis/device_info.py:58:13: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/analysis/device_info.py:60:13: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/analysis/device_info.py:71:13: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/analysis/device_info.py:72:13: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/analysis/device_info.py:74:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/analysis/device_info.py:75:13: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/analysis/device_info.py:76:13: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/analysis/device_info.py:77:13: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/analysis/device_info.py:78:13: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/_inductor/analysis/device_info.py:79:13: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/analysis/device_info.py:80:13: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/_inductor/analysis/device_info.py:81:13: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/analysis/device_info.py:82:13: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/analysis/device_info.py:92:13: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/analysis/device_info.py:93:13: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/analysis/device_info.py:96:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/analysis/device_info.py:97:13: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/analysis/device_info.py:98:13: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/analysis/device_info.py:99:13: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/analysis/device_info.py:100:13: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/_inductor/analysis/device_info.py:101:13: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/analysis/device_info.py:102:13: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/_inductor/analysis/device_info.py:103:13: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/analysis/device_info.py:104:13: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/analysis/device_info.py:114:13: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/analysis/device_info.py:115:13: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/analysis/device_info.py:117:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/analysis/device_info.py:118:13: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/analysis/device_info.py:119:13: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/analysis/device_info.py:120:13: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/analysis/device_info.py:121:13: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/_inductor/analysis/device_info.py:122:13: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/analysis/device_info.py:123:13: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/_inductor/analysis/device_info.py:124:13: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/analysis/device_info.py:125:13: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/analysis/device_info.py:135:13: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/analysis/device_info.py:136:13: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/analysis/device_info.py:138:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/analysis/device_info.py:139:13: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/analysis/device_info.py:140:13: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/analysis/device_info.py:141:13: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/analysis/device_info.py:142:13: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/_inductor/analysis/device_info.py:143:13: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/analysis/device_info.py:144:13: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/_inductor/analysis/device_info.py:145:13: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/analysis/device_info.py:146:13: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/analysis/device_info.py:156:13: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/analysis/device_info.py:157:13: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/analysis/device_info.py:160:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/analysis/device_info.py:161:13: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/analysis/device_info.py:163:13: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/analysis/device_info.py:164:13: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/analysis/device_info.py:165:13: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/_inductor/analysis/device_info.py:166:13: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/analysis/device_info.py:167:13: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/_inductor/analysis/device_info.py:168:13: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/analysis/device_info.py:169:13: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/analysis/device_info.py:192:27: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/analysis/device_info.py:215:34: error: Module has no attribute "float32" [attr-defined] +torch/_higher_order_ops/strict_mode.py:7:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/run_const_graph.py:4:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/partitioner.py:318:27: error: Module has no attribute "zeros_like" [attr-defined] +torch/_higher_order_ops/out_dtype.py:5:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/out_dtype.py:59:56: error: Module has no attribute "TensorType" [attr-defined] +torch/_higher_order_ops/out_dtype.py:101:62: error: Name "torch.dtype" is not defined [name-defined] +torch/_higher_order_ops/out_dtype.py:103:16: error: Module has no attribute "_int_mm" [attr-defined] +torch/_higher_order_ops/out_dtype.py:110:29: error: Module has no attribute "int32" [attr-defined] +torch/_higher_order_ops/out_dtype.py:112:30: error: Module has no attribute "int8" [attr-defined] +torch/_higher_order_ops/out_dtype.py:113:30: error: Module has no attribute "int8" [attr-defined] +torch/_higher_order_ops/out_dtype.py:120:52: error: Module has no attribute "ones" [attr-defined] +torch/_higher_order_ops/out_dtype.py:121:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_higher_order_ops/out_dtype.py:140:19: error: Name "torch.dtype" is not defined [name-defined] +torch/_higher_order_ops/out_dtype.py:150:19: error: Name "torch.dtype" is not defined [name-defined] +torch/_higher_order_ops/map.py:9:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/map.py:136:35: error: Module has no attribute "_dispatch_tls_local_include_set" [attr-defined] +torch/_higher_order_ops/map.py:137:35: error: Module has no attribute "_dispatch_tls_local_exclude_set" [attr-defined] +torch/_higher_order_ops/map.py:139:14: error: Module has no attribute "_AutoDispatchBelowAutograd" [attr-defined] +torch/_higher_order_ops/invoke_subgraph.py:10:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/invoke_subgraph.py:81:61: error: Module has no attribute "Generator" [attr-defined] +torch/_higher_order_ops/invoke_subgraph.py:443:21: error: Module has no attribute "_ForceDispatchKeyGuard" [attr-defined] +torch/_higher_order_ops/invoke_subgraph.py:474:35: error: Module has no attribute "_dispatch_tls_local_include_set" [attr-defined] +torch/_higher_order_ops/invoke_subgraph.py:475:35: error: Module has no attribute "_dispatch_tls_local_exclude_set" [attr-defined] +torch/_higher_order_ops/invoke_subgraph.py:479:14: error: Module has no attribute "_AutoDispatchBelowAutograd" [attr-defined] +torch/_higher_order_ops/hints_wrap.py:4:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/executorch_call_delegate.py:37:38: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/executorch_call_delegate.py:38:38: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/executorch_call_delegate.py:39:38: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/executorch_call_delegate.py:40:38: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/executorch_call_delegate.py:76:35: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/executorch_call_delegate.py:102:10: error: Module has no attribute "_ExcludeDispatchKeyGuard" [attr-defined] +torch/_higher_order_ops/executorch_call_delegate.py:103:9: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_higher_order_ops/executorch_call_delegate.py:103:33: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/executorch_call_delegate.py:116:24: error: Module has no attribute "is_floating_point" [attr-defined] +torch/_higher_order_ops/executorch_call_delegate.py:116:56: error: Module has no attribute "is_complex" [attr-defined] +torch/_higher_order_ops/auto_functionalize.py:12:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/auto_functionalize.py:32:32: error: Name "torch.FunctionSchema" is not defined [name-defined] +torch/_higher_order_ops/auto_functionalize.py:54:8: error: Module has no attribute "is_inference_mode_enabled" [attr-defined] +torch/_higher_order_ops/auto_functionalize.py:84:16: error: Module has no attribute "as_strided" [attr-defined] +torch/_higher_order_ops/auto_functionalize.py:173:29: error: Name "torch.Type" is not defined [name-defined] +torch/_higher_order_ops/auto_functionalize.py:251:29: error: Name "torch.Type" is not defined [name-defined] +torch/_higher_order_ops/auto_functionalize.py:444:72: error: Module has no attribute "NoneType" [attr-defined] +torch/_higher_order_ops/auto_functionalize.py:450:61: error: Module has no attribute "TensorType" [attr-defined] +torch/_higher_order_ops/auto_functionalize.py:454:12: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_higher_order_ops/auto_functionalize.py:460:13: error: Name "torch.FunctionSchema" is not defined [name-defined] +torch/_higher_order_ops/auto_functionalize.py:461:28: error: Name "torch.Type" is not defined [name-defined] +torch/_higher_order_ops/auto_functionalize.py:480:63: error: Name "torch.Type" is not defined [name-defined] +torch/_higher_order_ops/auto_functionalize.py:854:17: error: Name "torch._C.FunctionSchema" is not defined [name-defined] +torch/_higher_order_ops/associative_scan.py:10:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/associative_scan.py:58:15: error: Module has no attribute "stack" [attr-defined] +torch/_higher_order_ops/associative_scan.py:59:19: error: Module has no attribute "flatten" [attr-defined] +torch/_higher_order_ops/associative_scan.py:240:18: error: Module has no attribute "movedim" [attr-defined] +torch/_higher_order_ops/associative_scan.py:243:22: error: Module has no attribute "flip" [attr-defined] +torch/_higher_order_ops/associative_scan.py:295:40: error: Module has no attribute "movedim" [attr-defined] +torch/_higher_order_ops/associative_scan.py:384:13: error: Module has no attribute "cat" [attr-defined] +torch/_higher_order_ops/associative_scan.py:673:35: error: Module has no attribute "_dispatch_tls_local_include_set" [attr-defined] +torch/_higher_order_ops/associative_scan.py:674:35: error: Module has no attribute "_dispatch_tls_local_exclude_set" [attr-defined] +torch/_higher_order_ops/associative_scan.py:676:14: error: Module has no attribute "_AutoDispatchBelowAutograd" [attr-defined] +torch/_higher_order_ops/associative_scan.py:742:32: error: Module has no attribute "ones_like" [attr-defined] +torch/_higher_order_ops/associative_scan.py:756:29: error: Module has no attribute "tril" [attr-defined] +torch/_higher_order_ops/associative_scan.py:757:21: error: Module has no attribute "ones" [attr-defined] +torch/_higher_order_ops/associative_scan.py:758:77: error: Module has no attribute "bool" [attr-defined] +torch/_higher_order_ops/associative_scan.py:789:13: error: Module has no attribute "select" [attr-defined] +torch/_higher_order_ops/associative_scan.py:807:31: error: Module has no attribute "stack" [attr-defined] +torch/_higher_order_ops/associative_scan.py:808:31: error: Module has no attribute "stack" [attr-defined] +torch/_higher_order_ops/associative_scan.py:809:32: error: Module has no attribute "stack" [attr-defined] +torch/_higher_order_ops/associative_scan.py:909:9: error: Module has no attribute "stack" [attr-defined] +torch/_higher_order_ops/aoti_call_delegate.py:57:32: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/aoti_call_delegate.py:58:32: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/aoti_call_delegate.py:59:32: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/aoti_call_delegate.py:60:32: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/aoti_call_delegate.py:63:29: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_functorch/_activation_checkpointing/knapsack.py:71:24: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_functorch/_activation_checkpointing/knapsack.py:72:47: error: Module has no attribute "long" [attr-defined] +torch/_functorch/_activation_checkpointing/knapsack.py:74:16: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_functorch/_activation_checkpointing/knapsack.py:74:44: error: Module has no attribute "float32" [attr-defined] +torch/_functorch/_activation_checkpointing/knapsack.py:85:10: error: Module has no attribute "zeros" [attr-defined] +torch/_functorch/_activation_checkpointing/knapsack.py:86:50: error: Module has no attribute "float32" [attr-defined] +torch/_functorch/_activation_checkpointing/knapsack.py:100:38: error: Module has no attribute "maximum" [attr-defined] +torch/_export/passes/lift_constants_pass.py:43:44: error: Name "torch.ScriptObject" is not defined [name-defined] +torch/_export/passes/lift_constants_pass.py:46:49: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_export/passes/lift_constants_pass.py:58:28: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_export/passes/lift_constants_pass.py:73:49: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_export/passes/lift_constants_pass.py:88:49: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_export/passes/lift_constants_pass.py:256:42: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_export/passes/lift_constants_pass.py:322:47: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_export/passes/lift_constants_pass.py:392:33: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_dynamo/graph_utils.py:87:26: error: Module has no attribute "device" [attr-defined] +torch/_dynamo/external_utils.py:103:59: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/_dynamo/device_interface.py:30:5: error: Module "torch._C" has no attribute "_cuda_getCurrentRawStream" [attr-defined] +torch/_dynamo/device_interface.py:30:5: error: Name "get_cuda_stream" already defined on line 28 [no-redef] +torch/_dynamo/device_interface.py:106:24: error: Name "torch.Stream" is not defined [name-defined] +torch/_dynamo/device_interface.py:110:29: error: Name "torch.Stream" is not defined [name-defined] +torch/_dynamo/device_interface.py:114:28: error: Name "torch.Stream" is not defined [name-defined] +torch/_dynamo/device_interface.py:143:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_dynamo/device_interface.py:145:25: error: Module has no attribute "bfloat16" [attr-defined] +torch/_dynamo/device_interface.py:224:30: error: Module has no attribute "device" [attr-defined] +torch/_dynamo/device_interface.py:225:28: error: Item "str" of "Any | str | int" has no attribute "type" [union-attr] +torch/_dynamo/device_interface.py:225:28: error: Item "int" of "Any | str | int" has no attribute "type" [union-attr] +torch/_dynamo/device_interface.py:226:39: error: Module has no attribute "device" [attr-defined] +torch/_dynamo/device_interface.py:267:20: error: _CudaDeviceProperties? has no attribute "gcnArchName" [attr-defined] +torch/_dynamo/device_interface.py:273:16: error: _CudaDeviceProperties? has no attribute "major" [attr-defined] +torch/_dynamo/device_interface.py:295:5: error: Module "torch._C" has no attribute "_mtia_getCurrentRawStream" [attr-defined] +torch/_dynamo/device_interface.py:295:5: error: Name "get_mtia_stream" already defined on line 293 [no-redef] +torch/_dynamo/device_interface.py:321:30: error: Module has no attribute "device" [attr-defined] +torch/_dynamo/device_interface.py:322:28: error: Item "str" of "Any | str | int" has no attribute "type" [union-attr] +torch/_dynamo/device_interface.py:322:28: error: Item "int" of "Any | str | int" has no attribute "type" [union-attr] +torch/_dynamo/device_interface.py:323:39: error: Module has no attribute "device" [attr-defined] +torch/_dynamo/device_interface.py:378:5: error: Module "torch._C" has no attribute "_xpu_getCurrentRawStream" [attr-defined] +torch/_dynamo/device_interface.py:378:5: error: Name "get_xpu_stream" already defined on line 376 [no-redef] +torch/_dynamo/device_interface.py:404:30: error: Module has no attribute "device" [attr-defined] +torch/_dynamo/device_interface.py:405:28: error: Item "str" of "Any | str | int" has no attribute "type" [union-attr] +torch/_dynamo/device_interface.py:405:28: error: Item "int" of "Any | str | int" has no attribute "type" [union-attr] +torch/_dynamo/device_interface.py:406:39: error: Module has no attribute "device" [attr-defined] +torch/_dynamo/device_interface.py:468:17: error: Name "torch.Event" is not defined [name-defined] +torch/_dynamo/device_interface.py:532:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_dynamo/device_interface.py:534:22: error: Module has no attribute "float64" [attr-defined] +torch/_dynamo/device_interface.py:534:37: error: Module has no attribute "complex128" [attr-defined] +torch/_dynamo/device_interface.py:536:25: error: Module has no attribute "bfloat16" [attr-defined] +torch/_dynamo/device_interface.py:572:24: error: Name "torch.device" is not defined [name-defined] +torch/_dynamo/device_interface.py:574:27: error: Module has no attribute "device" [attr-defined] +torch/_dynamo/device_interface.py:579:49: error: Name "torch.device" is not defined [name-defined] +torch/_dynamo/device_interface.py:580:27: error: Module has no attribute "device" [attr-defined] +torch/_dynamo/create_parameter_op.py:43:35: error: Name "torch.dtype" is not defined [name-defined] +torch/_dynamo/create_parameter_op.py:43:56: error: Name "torch.device" is not defined [name-defined] +torch/_dynamo/create_parameter_op.py:47:9: error: Module has no attribute "empty" [attr-defined] +torch/_custom_op/autograd.py:53:12: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_custom_op/autograd.py:57:14: error: Module has no attribute "_AutoDispatchBelowAutograd" [attr-defined] +torch/_custom_op/autograd.py:113:18: error: Module has no attribute "_AutoDispatchBelowAutograd" [attr-defined] +functorch/dim/_getsetitem.py:173:9: error: Module has no attribute "TensorBase" [attr-defined] +functorch/dim/_getsetitem.py:221:9: error: Module has no attribute "TensorBase" [attr-defined] +torch/utils/checkpoint.py:94:16: error: Module has no attribute "device" [attr-defined] +torch/utils/checkpoint.py:212:24: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/utils/checkpoint.py:213:22: error: Module has no attribute "get_autocast_dtype" [attr-defined] +torch/utils/checkpoint.py:214:30: error: Module has no attribute "is_autocast_cache_enabled" [attr-defined] +torch/utils/checkpoint.py:220:20: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/utils/checkpoint.py:221:18: error: Module has no attribute "get_autocast_dtype" [attr-defined] +torch/utils/checkpoint.py:222:26: error: Module has no attribute "is_autocast_cache_enabled" [attr-defined] +torch/utils/checkpoint.py:795:16: error: Module has no attribute "empty" [attr-defined] +torch/utils/checkpoint.py:851:9: error: Need type annotation for "x_metadatas" (hint: "x_metadatas: list[] = ...") [var-annotated] +torch/utils/checkpoint.py:1017:43: error: Incompatible types in assignment (expression has type "str", variable has type "None") [assignment] +torch/utils/checkpoint.py:1156:23: error: Module has no attribute "_current_graph_task_id" [attr-defined] +torch/utils/checkpoint.py:1180:20: error: Module has no attribute "_get_graph_exec_group" [attr-defined] +torch/utils/checkpoint.py:1210:12: error: Module has no attribute "_get_dispatch_mode" [attr-defined] +torch/utils/checkpoint.py:1210:40: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/utils/checkpoint.py:1238:14: error: Module has no attribute "_SetExcludeDispatchKeyGuard" [attr-defined] +torch/utils/checkpoint.py:1238:51: error: Module has no attribute "DispatchKey" [attr-defined] +torch/utils/checkpoint.py:1596:13: error: Module has no attribute "empty" [attr-defined] +torch/utils/checkpoint.py:1600:8: error: "None" has no attribute "grad_fn" [attr-defined] +torch/utils/checkpoint.py:1637:12: error: Module has no attribute "_get_graph_exec_group" [attr-defined] +torch/utils/checkpoint.py:1640:41: error: Module has no attribute "_get_graph_exec_group" [attr-defined] +torch/utils/checkpoint.py:1642:9: error: Module has no attribute "_set_graph_exec_group" [attr-defined] +torch/utils/checkpoint.py:1646:9: error: Module has no attribute "_set_graph_exec_group" [attr-defined] +torch/utils/checkpoint.py:1651:16: error: Module has no attribute "_get_graph_exec_group" [attr-defined] +torch/utils/_sympy/value_ranges.py:459:25: error: Module has no attribute "bool" [attr-defined] +torch/utils/_sympy/value_ranges.py:472:25: error: Module has no attribute "bool" [attr-defined] +torch/utils/_sympy/value_ranges.py:490:21: error: Module has no attribute "float64" [attr-defined] +torch/utils/_sympy/value_ranges.py:493:23: error: Module has no attribute "bool" [attr-defined] +torch/nested/_internal/ops.py:23:13: error: Module has no attribute "finfo" [attr-defined] +torch/nested/_internal/ops.py:25:19: error: Module has no attribute "int64" [attr-defined] +torch/nested/_internal/ops.py:33:13: error: Module has no attribute "iinfo" [attr-defined] +torch/nested/_internal/ops.py:257:8: error: Module has no attribute "Tag" [attr-defined] +torch/nested/_internal/ops.py:276:41: error: Module has no attribute "TensorType" [attr-defined] +torch/nested/_internal/ops.py:392:16: error: Module has no attribute "_nn" [attr-defined] +torch/nested/_internal/ops.py:443:14: error: Module has no attribute "DisableTorchFunctionSubclass" [attr-defined] +torch/nested/_internal/ops.py:485:14: error: Module has no attribute "DisableTorchFunctionSubclass" [attr-defined] +torch/nested/_internal/ops.py:527:12: error: Module has no attribute "jagged" [attr-defined] +torch/nested/_internal/ops.py:530:2: error: Untyped decorator makes function "tensor_attr_unsupported_getter" untyped [misc] +torch/nested/_internal/ops.py:556:26: error: Module has no attribute "contiguous_format" [attr-defined] +torch/nested/_internal/ops.py:558:39: error: Module has no attribute "preserve_format" [attr-defined] +torch/nested/_internal/ops.py:582:26: error: Module has no attribute "contiguous_format" [attr-defined] +torch/nested/_internal/ops.py:585:39: error: Module has no attribute "preserve_format" [attr-defined] +torch/nested/_internal/ops.py:604:43: error: Module has no attribute "contiguous_format" [attr-defined] +torch/nested/_internal/ops.py:648:13: error: Module has no attribute "matmul" [attr-defined] +torch/nested/_internal/ops.py:658:14: error: Module has no attribute "matmul" [attr-defined] +torch/nested/_internal/ops.py:667:18: error: Module has no attribute "sum" [attr-defined] +torch/nested/_internal/ops.py:780:28: error: Module has no attribute "strided" [attr-defined] +torch/nested/_internal/ops.py:1099:28: error: Module has no attribute "cumsum" [attr-defined] +torch/nested/_internal/ops.py:1186:9: error: Module has no attribute "narrow" [attr-defined] +torch/nested/_internal/ops.py:1362:20: error: Module has no attribute "stack" [attr-defined] +torch/nested/_internal/ops.py:1824:13: error: Module has no attribute "ones" [attr-defined] +torch/nested/_internal/ops.py:1836:13: error: Module has no attribute "sum" [attr-defined] +torch/nested/_internal/ops.py:1849:13: error: Module has no attribute "sum" [attr-defined] +torch/nested/_internal/ops.py:1850:17: error: Module has no attribute "square" [attr-defined] +torch/nested/_internal/ops.py:1857:15: error: Module has no attribute "sqrt" [attr-defined] +torch/nested/_internal/ops.py:2009:5: error: Module has no attribute "_assert_async" [attr-defined] +torch/nested/_internal/ops.py:2011:9: error: Module has no attribute "all" [attr-defined] +torch/nested/_internal/ops.py:2410:31: error: Module has no attribute "bool" [attr-defined] +torch/nested/_internal/ops.py:2412:28: error: Module has no attribute "half" [attr-defined] +torch/nested/_internal/ops.py:2420:36: error: Module has no attribute "bool" [attr-defined] +torch/nested/_internal/ops.py:2457:31: error: Module has no attribute "bool" [attr-defined] +torch/nested/_internal/ops.py:2459:28: error: Module has no attribute "half" [attr-defined] +torch/nested/_internal/ops.py:2464:28: error: Module has no attribute "bool" [attr-defined] +torch/nested/_internal/ops.py:2610:18: error: Module has no attribute "zeros_like" [attr-defined] +torch/nested/_internal/ops.py:2616:2: error: Untyped decorator makes function "record_stream_default" untyped [misc] +torch/nested/_internal/ops.py:2728:21: error: Module has no attribute "matmul" [attr-defined] +torch/nested/_internal/ops.py:2732:22: error: Module has no attribute "matmul" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:76:28: error: Module has no attribute "strided" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:90:22: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:92:24: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:94:24: error: Module has no attribute "strided" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:107:28: error: Module has no attribute "sparse_coo" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:135:28: error: Module has no attribute "sparse_csr" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:165:48: error: Module has no attribute "zeros_like" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:214:46: error: Module has no attribute "where" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:368:30: error: Module has no attribute "bool" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:434:31: error: Module has no attribute "ones_like" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:434:57: error: Module has no attribute "bool" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:436:31: error: Module has no attribute "ones_like" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:436:57: error: Module has no attribute "bool" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:451:31: error: Module has no attribute "ones_like" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:451:57: error: Module has no attribute "bool" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:468:31: error: Module has no attribute "ones_like" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:485:31: error: Module has no attribute "ones_like" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:498:31: error: Module has no attribute "ones_like" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:507:31: error: Module has no attribute "ones_like" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:519:20: error: Module has no attribute "ones_like" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:542:22: error: Module has no attribute "bool" [attr-defined] +torch/masked/maskedtensor/_ops_refs.py:547:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/fx/passes/operator_support.py:28:31: error: Name "torch.dtype" is not defined [name-defined] +torch/fx/passes/operator_support.py:29:30: error: Name "torch.dtype" is not defined [name-defined] +torch/fx/passes/operator_support.py:191:44: error: Name "torch.dtype" is not defined [name-defined] +torch/fx/experimental/optimization.py:165:5: error: Module has no attribute "relu" [attr-defined] +torch/fx/experimental/optimization.py:166:5: error: Module has no attribute "transpose" [attr-defined] +torch/fx/experimental/optimization.py:167:5: error: Module has no attribute "sigmoid" [attr-defined] +torch/fx/experimental/optimization.py:197:71: error: Module has no attribute "float" [attr-defined] +torch/fx/experimental/optimization.py:375:54: error: Module has no attribute "float" [attr-defined] +torch/fx/experimental/optimization.py:378:55: error: Module has no attribute "device" [attr-defined] +torch/distributed/_functional_collectives.py:211:15: error: Module has no attribute "cat" [attr-defined] +torch/distributed/_functional_collectives.py:211:25: error: Module has no attribute "chunk" [attr-defined] +torch/distributed/_functional_collectives.py:244:15: error: Module has no attribute "cat" [attr-defined] +torch/distributed/_functional_collectives.py:244:25: error: Module has no attribute "chunk" [attr-defined] +torch/distributed/_functional_collectives.py:278:23: error: Module has no attribute "chunk" [attr-defined] +torch/distributed/_functional_collectives.py:279:16: error: Module has no attribute "cat" [attr-defined] +torch/distributed/_functional_collectives.py:318:23: error: Module has no attribute "chunk" [attr-defined] +torch/distributed/_functional_collectives.py:319:16: error: Module has no attribute "cat" [attr-defined] +torch/distributed/_functional_collectives.py:423:27: error: Module has no attribute "chunk" [attr-defined] +torch/distributed/_functional_collectives.py:424:27: error: Module has no attribute "cat" [attr-defined] +torch/distributed/_functional_collectives.py:443:8: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/distributed/_functional_collectives.py:444:21: error: Module has no attribute "DispatchKey" [attr-defined] +torch/distributed/_functional_collectives.py:845:8: error: Module has no attribute "_get_dispatch_mode" [attr-defined] +torch/distributed/_functional_collectives.py:845:36: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/distributed/_functional_collectives.py:848:8: error: Module has no attribute "_dispatch_tls_is_dispatch_key_included" [attr-defined] +torch/distributed/_functional_collectives.py:849:9: error: Module has no attribute "DispatchKey" [attr-defined] +torch/distributed/_functional_collectives.py:917:12: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/_functional_collectives.py:921:12: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/_functional_collectives.py:925:12: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/_functional_collectives.py:939:13: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/_functional_collectives.py:1062:36: error: Module has no attribute "Tag" [attr-defined] +torch/distributed/optim/functional_rprop.py:75:32: error: Module has no attribute "is_complex" [attr-defined] +torch/distributed/optim/functional_rprop.py:82:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/optim/functional_rprop.py:83:37: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_rprop.py:84:46: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_rprop.py:86:42: error: Module has no attribute "full_like" [attr-defined] +torch/distributed/optim/functional_rmsprop.py:84:32: error: Module has no attribute "is_complex" [attr-defined] +torch/distributed/optim/functional_rmsprop.py:91:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/optim/functional_rmsprop.py:92:43: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_rmsprop.py:93:46: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_rmsprop.py:96:52: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_rmsprop.py:97:50: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_rmsprop.py:100:45: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_rmsprop.py:101:50: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_adamw.py:78:23: error: Module has no attribute "is_complex" [attr-defined] +torch/distributed/optim/functional_adamw.py:86:29: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/optim/functional_adamw.py:88:32: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_adamw.py:89:38: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_adamw.py:92:35: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_adamw.py:93:38: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_adamw.py:97:43: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_adamw.py:98:42: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_adamw.py:151:32: error: Module has no attribute "is_complex" [attr-defined] +torch/distributed/optim/functional_adamw.py:158:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/optim/functional_adamw.py:160:40: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_adamw.py:161:46: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_adamw.py:164:43: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_adamw.py:165:46: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_adamw.py:169:51: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_adamw.py:170:50: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_adamax.py:85:32: error: Module has no attribute "is_complex" [attr-defined] +torch/distributed/optim/functional_adamax.py:92:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/optim/functional_adamax.py:94:40: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_adamax.py:95:46: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_adamax.py:98:40: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_adamax.py:99:46: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_adam.py:82:23: error: Module has no attribute "is_complex" [attr-defined] +torch/distributed/optim/functional_adam.py:89:29: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/optim/functional_adam.py:90:32: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_adam.py:91:38: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_adam.py:93:35: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_adam.py:94:38: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_adam.py:97:43: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_adam.py:98:42: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_adam.py:150:32: error: Module has no attribute "is_complex" [attr-defined] +torch/distributed/optim/functional_adam.py:157:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/optim/functional_adam.py:159:40: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_adam.py:160:46: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_adam.py:163:43: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_adam.py:164:46: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_adam.py:168:51: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_adam.py:169:50: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_adagrad.py:69:24: error: Module has no attribute "full_like" [attr-defined] +torch/distributed/optim/functional_adagrad.py:70:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/optim/functional_adagrad.py:91:32: error: Module has no attribute "is_complex" [attr-defined] +torch/distributed/optim/functional_adadelta.py:77:32: error: Module has no attribute "is_complex" [attr-defined] +torch/distributed/optim/functional_adadelta.py:84:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/optim/functional_adadelta.py:85:43: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_adadelta.py:86:46: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/optim/functional_adadelta.py:88:42: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/optim/functional_adadelta.py:89:46: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/checkpoint/planner.py:54:11: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/checkpoint/planner.py:93:19: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/checkpoint/planner.py:98:22: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/checkpoint/planner.py:101:14: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/_shard/sharded_tensor/metadata.py:20:12: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/_shard/sharded_tensor/metadata.py:20:40: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/distributed/_shard/sharded_tensor/metadata.py:21:13: error: Name "torch.layout" is not defined [name-defined] +torch/distributed/_shard/sharded_tensor/metadata.py:21:42: error: Module has no attribute "strided" [attr-defined] +torch/distributed/_shard/sharded_tensor/metadata.py:23:20: error: Name "torch.memory_format" is not defined [name-defined] +torch/distributed/_shard/sharded_tensor/metadata.py:23:56: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/metadata.py:29:29: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/metadata.py:31:31: error: Module has no attribute "channels_last" [attr-defined] +torch/distributed/_shard/sharded_tensor/metadata.py:33:31: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/metadata.py:59:29: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/metadata.py:61:29: error: Module has no attribute "channels_last" [attr-defined] +torch/distributed/_shard/sharded_tensor/metadata.py:63:29: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/metadata.py:77:27: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/metadata.py:92:11: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/_shard/sharded_tensor/metadata.py:92:38: error: Module has no attribute "Size" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:104:11: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:111:11: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:123:5: error: Module has no attribute "sigmoid" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:128:5: error: Module has no attribute "tanh" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:148:9: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:150:9: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:155:52: error: Module has no attribute "relu" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:168:30: error: Module has no attribute "matmul" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:474:30: error: Module has no attribute "cat" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:625:9: error: Module has no attribute "adaptive_avg_pool1d" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:638:9: error: Module has no attribute "avg_pool1d" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:639:9: error: Module has no attribute "_nn" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:640:9: error: Module has no attribute "_nn" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:641:9: error: Module has no attribute "clamp" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:642:9: error: Module has no attribute "flatten" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:643:9: error: Module has no attribute "mean" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:644:9: error: Module has no attribute "narrow" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:645:9: error: Module has no attribute "repeat_interleave" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:646:9: error: Module has no attribute "transpose" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:647:9: error: Module has no attribute "squeeze" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:648:9: error: Module has no attribute "stack" [attr-defined] +torch/ao/quantization/backend_config/_common_operator_config_utils.py:649:9: error: Module has no attribute "unsqueeze" [attr-defined] +torch/utils/_content_store.py:72:9: error: Module has no attribute "randint" [attr-defined] +torch/utils/_content_store.py:73:58: error: Module has no attribute "int32" [attr-defined] +torch/utils/_content_store.py:77:9: error: Module has no attribute "randint" [attr-defined] +torch/utils/_content_store.py:77:72: error: Module has no attribute "int32" [attr-defined] +torch/utils/_content_store.py:112:21: error: Module has no attribute "default_generator" [attr-defined] +torch/utils/_content_store.py:124:13: error: Module has no attribute "empty" [attr-defined] +torch/utils/_content_store.py:124:13: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/utils/_content_store.py:124:34: error: Module has no attribute "uint8" [attr-defined] +torch/utils/_content_store.py:130:26: error: Argument 2 to "pad" has incompatible type "tuple[int, Any]"; expected "list[int]" [arg-type] +torch/utils/_content_store.py:131:20: error: Module has no attribute "int32" [attr-defined] +torch/utils/_content_store.py:195:18: error: Name "torch.device" is not defined [name-defined] +torch/utils/_content_store.py:203:22: error: Module has no attribute "device" [attr-defined] +torch/utils/_content_store.py:238:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_prims/rng_prims.py:7:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_prims/rng_prims.py:52:12: error: Name "torch.Size" is not defined [name-defined] +torch/_prims/rng_prims.py:54:30: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_prims/rng_prims.py:54:52: error: Module has no attribute "int64" [attr-defined] +torch/_prims/rng_prims.py:58:12: error: Name "torch.Size" is not defined [name-defined] +torch/_prims/rng_prims.py:66:13: error: Module has no attribute "scalar_tensor" [attr-defined] +torch/_prims/rng_prims.py:66:53: error: Module has no attribute "int64" [attr-defined] +torch/_prims/rng_prims.py:72:21: error: _CudaDeviceProperties? has no attribute "max_threads_per_multi_processor" [attr-defined] +torch/_prims/rng_prims.py:75:32: error: _CudaDeviceProperties? has no attribute "multi_processor_count" [attr-defined] +torch/_prims/rng_prims.py:84:16: error: Name "torch.Size" is not defined [name-defined] +torch/_prims/rng_prims.py:101:16: error: Name "torch.Size" is not defined [name-defined] +torch/_prims/rng_prims.py:120:29: error: Module has no attribute "rand" [attr-defined] +torch/_prims/rng_prims.py:130:15: error: Module has no attribute "Tag" [attr-defined] +torch/_prims/rng_prims.py:138:22: error: Module has no attribute "device" [attr-defined] +torch/_prims/debug_prims.py:40:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/debug_prims.py:41:17: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:12:1: error: Module "torch._C" has no attribute "_get_default_device" [attr-defined] +torch/_prims/__init__.py:228:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:229:28: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:237:27: error: Module has no attribute "device" [attr-defined] +torch/_prims/__init__.py:261:18: error: Module has no attribute "device" [attr-defined] +torch/_prims/__init__.py:263:12: error: Module has no attribute "empty_strided" [attr-defined] +torch/_prims/__init__.py:273:29: error: Name "torch.Tag" is not defined [name-defined] +torch/_prims/__init__.py:299:30: error: Module has no attribute "device" [attr-defined] +torch/_prims/__init__.py:308:18: error: Module has no attribute "parse_schema" [attr-defined] +torch/_prims/__init__.py:310:41: error: Module has no attribute "Tag" [attr-defined] +torch/_prims/__init__.py:345:35: error: Module has no attribute "Tag" [attr-defined] +torch/_prims/__init__.py:348:35: error: Module has no attribute "Tag" [attr-defined] +torch/_prims/__init__.py:451:21: error: Module has no attribute "bool" [attr-defined] +torch/_prims/__init__.py:454:25: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_prims/__init__.py:460:16: error: Module has no attribute "empty_permuted" [attr-defined] +torch/_prims/__init__.py:460:16: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_prims/__init__.py:525:15: error: Module has no attribute "abs" [attr-defined] +torch/_prims/__init__.py:532:15: error: Module has no attribute "acos" [attr-defined] +torch/_prims/__init__.py:539:15: error: Module has no attribute "acosh" [attr-defined] +torch/_prims/__init__.py:546:15: error: Module has no attribute "asin" [attr-defined] +torch/_prims/__init__.py:553:15: error: Module has no attribute "asinh" [attr-defined] +torch/_prims/__init__.py:560:15: error: Module has no attribute "atan" [attr-defined] +torch/_prims/__init__.py:567:15: error: Module has no attribute "atanh" [attr-defined] +torch/_prims/__init__.py:574:15: error: Module has no attribute "cos" [attr-defined] +torch/_prims/__init__.py:581:15: error: Module has no attribute "cosh" [attr-defined] +torch/_prims/__init__.py:602:15: error: Module has no attribute "i0" [attr-defined] +torch/_prims/__init__.py:630:15: error: Module has no attribute "bitwise_not" [attr-defined] +torch/_prims/__init__.py:647:12: error: Module has no attribute "copysign" [attr-defined] +torch/_prims/__init__.py:647:27: error: Module has no attribute "pow" [attr-defined] +torch/_prims/__init__.py:659:15: error: Module has no attribute "ceil" [attr-defined] +torch/_prims/__init__.py:676:15: error: Module has no attribute "_conj_physical" [attr-defined] +torch/_prims/__init__.py:683:46: error: Name "torch.memory_format" is not defined [name-defined] +torch/_prims/__init__.py:683:68: error: Module has no attribute "preserve_format" [attr-defined] +torch/_prims/__init__.py:685:25: error: Module has no attribute "preserve_format" [attr-defined] +torch/_prims/__init__.py:686:16: error: Module has no attribute "empty" [attr-defined] +torch/_prims/__init__.py:702:16: error: Module has no attribute "empty_strided" [attr-defined] +torch/_prims/__init__.py:714:15: error: Module has no attribute "clone" [attr-defined] +torch/_prims/__init__.py:722:15: error: Module has no attribute "digamma" [attr-defined] +torch/_prims/__init__.py:729:15: error: Module has no attribute "erf" [attr-defined] +torch/_prims/__init__.py:757:15: error: Module has no attribute "exp" [attr-defined] +torch/_prims/__init__.py:788:15: error: Module has no attribute "fill" [attr-defined] +torch/_prims/__init__.py:794:15: error: Module has no attribute "floor" [attr-defined] +torch/_prims/__init__.py:806:15: error: Module has no attribute "imag" [attr-defined] +torch/_prims/__init__.py:812:15: error: Module has no attribute "isfinite" [attr-defined] +torch/_prims/__init__.py:819:15: error: Module has no attribute "lgamma" [attr-defined] +torch/_prims/__init__.py:826:15: error: Module has no attribute "log" [attr-defined] +torch/_prims/__init__.py:833:15: error: Module has no attribute "log1p" [attr-defined] +torch/_prims/__init__.py:840:15: error: Module has no attribute "log2" [attr-defined] +torch/_prims/__init__.py:847:15: error: Module has no attribute "log10" [attr-defined] +torch/_prims/__init__.py:859:15: error: Module has no attribute "real" [attr-defined] +torch/_prims/__init__.py:865:15: error: Module has no attribute "reciprocal" [attr-defined] +torch/_prims/__init__.py:879:15: error: Module has no attribute "neg" [attr-defined] +torch/_prims/__init__.py:886:15: error: Module has no attribute "round" [attr-defined] +torch/_prims/__init__.py:893:15: error: Module has no attribute "rsqrt" [attr-defined] +torch/_prims/__init__.py:900:15: error: Module has no attribute "sign" [attr-defined] +torch/_prims/__init__.py:907:15: error: Module has no attribute "signbit" [attr-defined] +torch/_prims/__init__.py:914:15: error: Module has no attribute "sin" [attr-defined] +torch/_prims/__init__.py:921:15: error: Module has no attribute "sinh" [attr-defined] +torch/_prims/__init__.py:935:15: error: Module has no attribute "sqrt" [attr-defined] +torch/_prims/__init__.py:942:15: error: Module has no attribute "tan" [attr-defined] +torch/_prims/__init__.py:949:15: error: Module has no attribute "tanh" [attr-defined] +torch/_prims/__init__.py:956:15: error: Module has no attribute "trunc" [attr-defined] +torch/_prims/__init__.py:967:15: error: Module has no attribute "add" [attr-defined] +torch/_prims/__init__.py:974:15: error: Module has no attribute "atan2" [attr-defined] +torch/_prims/__init__.py:981:15: error: Module has no attribute "bitwise_and" [attr-defined] +torch/_prims/__init__.py:988:15: error: Module has no attribute "bitwise_or" [attr-defined] +torch/_prims/__init__.py:995:15: error: Module has no attribute "bitwise_xor" [attr-defined] +torch/_prims/__init__.py:1016:16: error: Module has no attribute "div" [attr-defined] +torch/_prims/__init__.py:1019:16: error: Module has no attribute "true_divide" [attr-defined] +torch/_prims/__init__.py:1031:15: error: Module has no attribute "eq" [attr-defined] +torch/_prims/__init__.py:1038:15: error: Module has no attribute "fmax" [attr-defined] +torch/_prims/__init__.py:1045:15: error: Module has no attribute "fmin" [attr-defined] +torch/_prims/__init__.py:1052:15: error: Module has no attribute "fmod" [attr-defined] +torch/_prims/__init__.py:1060:15: error: Module has no attribute "gcd" [attr-defined] +torch/_prims/__init__.py:1068:15: error: Module has no attribute "ge" [attr-defined] +torch/_prims/__init__.py:1075:15: error: Module has no attribute "gt" [attr-defined] +torch/_prims/__init__.py:1082:15: error: Module has no attribute "hypot" [attr-defined] +torch/_prims/__init__.py:1103:15: error: Module has no attribute "le" [attr-defined] +torch/_prims/__init__.py:1110:15: error: Module has no attribute "lt" [attr-defined] +torch/_prims/__init__.py:1125:12: error: Module has no attribute "maximum" [attr-defined] +torch/_prims/__init__.py:1125:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_prims/__init__.py:1144:12: error: Module has no attribute "minimum" [attr-defined] +torch/_prims/__init__.py:1144:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_prims/__init__.py:1156:15: error: Module has no attribute "mul" [attr-defined] +torch/_prims/__init__.py:1163:15: error: Module has no attribute "ne" [attr-defined] +torch/_prims/__init__.py:1170:15: error: Module has no attribute "nextafter" [attr-defined] +torch/_prims/__init__.py:1177:15: error: Module has no attribute "pow" [attr-defined] +torch/_prims/__init__.py:1184:15: error: Module has no attribute "remainder" [attr-defined] +torch/_prims/__init__.py:1192:15: error: Module has no attribute "bitwise_left_shift" [attr-defined] +torch/_prims/__init__.py:1199:15: error: Module has no attribute "bitwise_right_shift" [attr-defined] +torch/_prims/__init__.py:1208:15: error: Module has no attribute "sub" [attr-defined] +torch/_prims/__init__.py:1240:12: error: Module has no attribute "as_strided" [attr-defined] +torch/_prims/__init__.py:1246:12: error: Module has no attribute "as_strided" [attr-defined] +torch/_prims/__init__.py:1524:5: error: Module has no attribute "_set_conj" [attr-defined] +torch/_prims/__init__.py:1535:15: error: Module has no attribute "conj" [attr-defined] +torch/_prims/__init__.py:1648:15: error: Module has no attribute "squeeze" [attr-defined] +torch/_prims/__init__.py:1673:12: error: Module has no attribute "permute" [attr-defined] +torch/_prims/__init__.py:1714:55: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:1718:47: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:1775:15: error: Module has no attribute "as_strided_scatter" [attr-defined] +torch/_prims/__init__.py:1846:12: error: Module has no attribute "cat" [attr-defined] +torch/_prims/__init__.py:1879:49: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_prims/__init__.py:1897:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_prims/__init__.py:1897:46: error: Module has no attribute "preserve_format" [attr-defined] +torch/_prims/__init__.py:1907:15: error: Module has no attribute "flip" [attr-defined] +torch/_prims/__init__.py:1938:15: error: Module has no attribute "where" [attr-defined] +torch/_prims/__init__.py:1947:58: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:1950:30: error: Module has no attribute "dtype" [attr-defined] +torch/_prims/__init__.py:1961:50: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:1972:14: error: Module has no attribute "empty_like" [attr-defined] +torch/_prims/__init__.py:1989:11: error: Module has no attribute "Tag" [attr-defined] +torch/_prims/__init__.py:1994:43: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:1997:37: error: Module has no attribute "device" [attr-defined] +torch/_prims/__init__.py:2004:35: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:2056:32: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2061:32: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2062:17: error: Module has no attribute "bool" [attr-defined] +torch/_prims/__init__.py:2065:16: error: Module has no attribute "finfo" [attr-defined] +torch/_prims/__init__.py:2067:16: error: Module has no attribute "iinfo" [attr-defined] +torch/_prims/__init__.py:2088:32: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2093:32: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2094:17: error: Module has no attribute "bool" [attr-defined] +torch/_prims/__init__.py:2097:16: error: Module has no attribute "finfo" [attr-defined] +torch/_prims/__init__.py:2099:16: error: Module has no attribute "iinfo" [attr-defined] +torch/_prims/__init__.py:2162:12: error: Module has no attribute "empty_strided" [attr-defined] +torch/_prims/__init__.py:2173:11: error: Module has no attribute "empty_strided" [attr-defined] +torch/_prims/__init__.py:2297:15: error: Module has no attribute "sum" [attr-defined] +torch/_prims/__init__.py:2306:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2322:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2329:19: error: Module has no attribute "prod" [attr-defined] +torch/_prims/__init__.py:2332:16: error: Module has no attribute "prod" [attr-defined] +torch/_prims/__init__.py:2344:12: error: Module has no attribute "var" [attr-defined] +torch/_prims/__init__.py:2355:15: error: Module has no attribute "amax" [attr-defined] +torch/_prims/__init__.py:2361:15: error: Module has no attribute "amin" [attr-defined] +torch/_prims/__init__.py:2378:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2379:13: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:2387:12: error: Module has no attribute "empty" [attr-defined] +torch/_prims/__init__.py:2400:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2401:13: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:2405:12: error: Module has no attribute "arange" [attr-defined] +torch/_prims/__init__.py:2422:33: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2422:54: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:2429:33: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2429:54: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:2431:12: error: Module has no attribute "empty" [attr-defined] +torch/_prims/__init__.py:2451:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2452:13: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:2467:15: error: Module has no attribute "empty_strided" [attr-defined] +torch/_prims/__init__.py:2476:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2477:13: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:2522:15: error: Module has no attribute "empty_permuted" [attr-defined] +torch/_prims/__init__.py:2531:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2532:13: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:2543:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2544:13: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:2548:12: error: Module has no attribute "full" [attr-defined] +torch/_prims/__init__.py:2575:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2576:13: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:2590:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2591:13: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:2595:12: error: Module has no attribute "full_like" [attr-defined] +torch/_prims/__init__.py:2622:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2623:13: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:2633:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2634:13: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:2641:12: error: Module has no attribute "scalar_tensor" [attr-defined] +torch/_prims/__init__.py:2641:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_prims/__init__.py:2731:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2732:13: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:2734:25: error: Name "torch.Generator" is not defined [name-defined] +torch/_prims/__init__.py:2755:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2756:13: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:2758:25: error: Name "torch.Generator" is not defined [name-defined] +torch/_prims/__init__.py:2760:9: error: Module has no attribute "empty" [attr-defined] +torch/_prims/__init__.py:2790:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2791:13: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:2792:25: error: Name "torch.Generator" is not defined [name-defined] +torch/_prims/__init__.py:2803:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_prims/__init__.py:2804:13: error: Name "torch.device" is not defined [name-defined] +torch/_prims/__init__.py:2805:25: error: Name "torch.Generator" is not defined [name-defined] +torch/_prims/__init__.py:2807:9: error: Module has no attribute "empty" [attr-defined] +torch/_prims/__init__.py:2858:12: error: Module has no attribute "_fft_r2c" [attr-defined] +torch/_prims/__init__.py:2898:12: error: Module has no attribute "_fft_c2c" [attr-defined] +torch/_prims/__init__.py:2938:12: error: Module has no attribute "_fft_c2r" [attr-defined] +torch/_prims/__init__.py:2960:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_prims/__init__.py:2960:65: error: Module has no attribute "int32" [attr-defined] +torch/_prims/__init__.py:2967:15: error: Module has no attribute "frexp" [attr-defined] +torch/_inductor/rocm_multiarch_utils.py:147:43: error: Missing type parameters for generic type "dict" [type-arg] +torch/_inductor/constant_folding.py:129:55: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/constant_folding.py:129:55: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_inductor/constant_folding.py:130:37: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/constant_folding.py:242:17: error: Module has no attribute "Tag" [attr-defined] +torch/_inductor/constant_folding.py:253:28: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_higher_order_ops/scan.py:12:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/scan.py:69:30: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_higher_order_ops/scan.py:191:26: error: Module has no attribute "movedim" [attr-defined] +torch/_higher_order_ops/scan.py:194:22: error: Module has no attribute "flip" [attr-defined] +torch/_higher_order_ops/scan.py:321:13: error: Module has no attribute "zeros" [attr-defined] +torch/_higher_order_ops/scan.py:329:13: error: Module has no attribute "ones_like" [attr-defined] +torch/_higher_order_ops/scan.py:329:38: error: Module has no attribute "int64" [attr-defined] +torch/_higher_order_ops/scan.py:467:14: error: Module has no attribute "_AutoDispatchBelowAutograd" [attr-defined] +torch/_higher_order_ops/scan.py:683:13: error: Module has no attribute "zeros_like" [attr-defined] +torch/_higher_order_ops/scan.py:773:14: error: Module has no attribute "flip" [attr-defined] +torch/_higher_order_ops/scan.py:782:15: error: Module has no attribute "flip" [attr-defined] +torch/_higher_order_ops/scan.py:959:9: error: Module has no attribute "stack" [attr-defined] +torch/_dynamo/graph_region_tracker.py:55:5: error: Name "torch.dtype" is not defined [name-defined] +torch/_dynamo/graph_region_tracker.py:155:9: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_dynamo/graph_region_tracker.py:156:9: error: Module has no attribute "is_inference_mode_enabled" [attr-defined] +torch/_dynamo/graph_region_tracker.py:157:9: error: Module has no attribute "get_num_threads" [attr-defined] +torch/_dynamo/graph_region_tracker.py:158:9: error: Module has no attribute "_get_cublas_allow_fp16_reduced_precision_reduction" [attr-defined] +torch/_dynamo/graph_region_tracker.py:159:9: error: Module has no attribute "_get_cublas_allow_bf16_reduced_precision_reduction" [attr-defined] +torch/_dynamo/graph_region_tracker.py:160:9: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_dynamo/graph_region_tracker.py:162:9: error: Module has no attribute "_get_cublas_allow_tf32" [attr-defined] +torch/_custom_op/impl.py:113:9: error: Module has no attribute "_dispatch_set_report_error_callback" [attr-defined] +torch/_custom_op/impl.py:150:25: error: Name "_C._DispatchOperatorHandle" is not defined [name-defined] +torch/_custom_op/impl.py:216:18: error: Module has no attribute "_dispatch_call_boxed" [attr-defined] +torch/_custom_op/impl.py:246:12: error: Module has no attribute "_dispatch_has_computed_kernel_for_dispatch_key" [attr-defined] +torch/_custom_op/impl.py:341:12: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_custom_op/impl.py:356:16: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_custom_op/impl.py:374:12: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_custom_op/impl.py:376:19: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_custom_op/impl.py:384:12: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_custom_op/impl.py:396:12: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_custom_op/impl.py:484:12: error: Module has no attribute "_dispatch_find_schema_or_throw" [attr-defined] +torch/_custom_op/impl.py:706:13: error: Module has no attribute "Tag" [attr-defined] +torch/_custom_op/impl.py:713:5: error: Module has no attribute "_dispatch_set_report_error_callback" [attr-defined] +torch/fx/experimental/symbolic_shapes.py:940:26: error: Module has no attribute "Generator" [attr-defined] +torch/fx/experimental/symbolic_shapes.py:958:40: error: Module has no attribute "Size" [attr-defined] +torch/fx/experimental/symbolic_shapes.py:1227:13: error: Module has no attribute "sparse_csr" [attr-defined] +torch/fx/experimental/symbolic_shapes.py:1228:13: error: Module has no attribute "sparse_csc" [attr-defined] +torch/fx/experimental/symbolic_shapes.py:1229:13: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/fx/experimental/symbolic_shapes.py:1230:13: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:124:13: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:125:13: error: Module has no attribute "device" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:437:11: error: Module has no attribute "Tag" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:447:11: error: Module has no attribute "Tag" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:451:11: error: Module has no attribute "Tag" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:461:11: error: Module has no attribute "Tag" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:499:18: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:541:22: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/_symmetric_memory/__init__.py:745:22: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/_symmetric_memory/__init__.py:767:9: error: Module has no attribute "empty" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:801:32: error: Module has no attribute "cat" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:823:16: error: Module has no attribute "cat" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:824:16: error: Module has no attribute "matmul" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:831:12: error: Module has no attribute "matmul" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:939:17: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:939:47: error: Module has no attribute "uint32" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:999:15: error: Module has no attribute "Size" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1005:13: error: Module has no attribute "matmul" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1018:22: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/_symmetric_memory/__init__.py:1056:20: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/_symmetric_memory/__init__.py:1092:22: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/_symmetric_memory/__init__.py:1243:16: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/_symmetric_memory/__init__.py:1255:29: error: Module has no attribute "sum" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1257:29: error: Module has no attribute "mean" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1273:28: error: Module has no attribute "empty" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1336:16: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/_symmetric_memory/__init__.py:1390:16: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/_symmetric_memory/__init__.py:1407:9: error: Module has no attribute "_scaled_mm" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1434:16: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/_symmetric_memory/__init__.py:1453:29: error: Module has no attribute "sum" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1455:29: error: Module has no attribute "mean" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1576:11: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/_symmetric_memory/__init__.py:1584:12: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1585:12: error: Module has no attribute "int8" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1586:12: error: Module has no attribute "short" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1587:12: error: Module has no attribute "int" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1588:12: error: Module has no attribute "int64" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1589:12: error: Module has no attribute "half" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1590:12: error: Module has no attribute "float" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1591:12: error: Module has no attribute "double" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1592:12: error: Module has no attribute "complex32" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1593:12: error: Module has no attribute "complex64" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1594:13: error: Module has no attribute "complex128" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1595:13: error: Module has no attribute "bool" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1596:13: error: Module has no attribute "qint8" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1597:13: error: Module has no attribute "quint8" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1598:13: error: Module has no attribute "qint32" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1599:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1600:13: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1601:13: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1602:13: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1603:13: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1608:18: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/_symmetric_memory/__init__.py:1735:15: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1921:17: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:1930:16: error: Module has no attribute "device" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:2001:41: error: Module has no attribute "device" [attr-defined] +torch/distributed/_symmetric_memory/__init__.py:2012:51: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharding_spec/api.py:60:23: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/_shard/sharding_spec/api.py:171:23: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/_shard/sharded_tensor/utils.py:58:11: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/_shard/sharded_tensor/utils.py:77:35: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/_shard/sharded_tensor/utils.py:91:12: error: Module has no attribute "Size" [attr-defined] +torch/distributed/_shard/sharded_tensor/utils.py:116:18: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/_shard/sharded_tensor/utils.py:138:42: error: Module has no attribute "strided" [attr-defined] +torch/distributed/_shard/sharded_tensor/utils.py:192:23: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/utils.py:325:43: error: Module has no attribute "Size" [attr-defined] +torch/distributed/_composable/replicate.py:105:42: error: Module has no attribute "device" [attr-defined] +torch/distributed/_composable/replicate.py:194:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/_composable/replicate.py:199:54: error: Module has no attribute "device" [attr-defined] +torch/distributed/_composable/checkpoint_activation.py:70:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/backend_config/tensorrt.py:34:21: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/tensorrt.py:35:22: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/tensorrt.py:36:22: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/tensorrt.py:37:20: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/tensorrt.py:40:21: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/tensorrt.py:41:22: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/tensorrt.py:45:30: error: Module has no attribute "addmm" [attr-defined] +torch/ao/quantization/backend_config/tensorrt.py:57:30: error: Module has no attribute "cat" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:27:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:28:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:29:18: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:30:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:34:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:35:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:39:17: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:40:18: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:41:18: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:42:16: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:46:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:47:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:48:18: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:49:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:54:17: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:55:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:56:18: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:57:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:62:17: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:63:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:64:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:68:17: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:69:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:70:18: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:86:11: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:91:11: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/qnnpack.py:101:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:39:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:40:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:41:18: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:42:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:46:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:47:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:51:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:52:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:53:18: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:54:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:59:17: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:60:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:61:18: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:65:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:66:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:67:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:68:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:184:6: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:267:6: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:370:6: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:463:6: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/backend_config/onednn.py:588:5: error: Module has no attribute "tanh" [attr-defined] +torch/ao/quantization/backend_config/native.py:42:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/native.py:43:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/native.py:44:18: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/native.py:45:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/native.py:49:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/native.py:50:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/native.py:54:17: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/native.py:55:18: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/native.py:56:18: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/native.py:57:16: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/native.py:61:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/native.py:62:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/native.py:63:18: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/native.py:64:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/native.py:72:17: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/native.py:73:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/native.py:74:18: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/native.py:75:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/native.py:84:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/native.py:85:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/native.py:86:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/native.py:87:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/native.py:91:17: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/native.py:92:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/native.py:93:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/native.py:97:17: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/native.py:98:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/native.py:99:18: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:33:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:34:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:35:18: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:36:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:40:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:41:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:45:17: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:46:18: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:47:18: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:48:16: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:52:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:53:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:54:18: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:55:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:60:17: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:61:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:62:18: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:63:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:68:17: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:69:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:70:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:74:17: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:75:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/fbgemm.py:76:18: error: Module has no attribute "quint4x2" [attr-defined] +torch/_inductor/inductor_prims.py:25:29: error: Name "torch.Tag" is not defined [name-defined] +torch/_inductor/inductor_prims.py:59:12: error: Module has no attribute "amax" [attr-defined] +torch/_inductor/inductor_prims.py:60:18: error: Module has no attribute "sum" [attr-defined] +torch/_inductor/inductor_prims.py:60:28: error: Module has no attribute "exp" [attr-defined] +torch/_inductor/inductor_prims.py:66:20: error: Module has no attribute "randint" [attr-defined] +torch/_inductor/inductor_prims.py:68:11: error: Module has no attribute "Tag" [attr-defined] +torch/_inductor/inductor_prims.py:72:27: error: Module has no attribute "randint" [attr-defined] +torch/_inductor/inductor_prims.py:74:11: error: Module has no attribute "Tag" [attr-defined] +torch/_inductor/inductor_prims.py:90:41: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/inductor_prims.py:96:35: error: Module has no attribute "randint" [attr-defined] +torch/_inductor/inductor_prims.py:115:11: error: Module has no attribute "Tag" [attr-defined] +torch/_inductor/inductor_prims.py:178:14: error: Module has no attribute "arange" [attr-defined] +torch/_inductor/inductor_prims.py:179:44: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/inductor_prims.py:187:29: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/inductor_prims.py:199:26: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/inductor_prims.py:206:14: error: Module has no attribute "arange" [attr-defined] +torch/_inductor/inductor_prims.py:207:44: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/runtime/static_cuda_launcher.py:134:9: error: Module "torch._C" has no attribute "_StaticCudaLauncher" [attr-defined] +torch/_inductor/runtime/static_cuda_launcher.py:238:9: error: Module "torch._C" has no attribute "_StaticCudaLauncher" [attr-defined] +torch/_inductor/fx_passes/numeric_utils.py:61:16: error: Module has no attribute "allclose" [attr-defined] +torch/_inductor/fx_passes/numeric_utils.py:90:16: error: Module has no attribute "allclose" [attr-defined] +torch/_higher_order_ops/wrap.py:9:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/wrap.py:88:20: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_higher_order_ops/wrap.py:291:28: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/local_map.py:16:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/local_map.py:59:16: error: Module has no attribute "empty_strided" [attr-defined] +torch/_higher_order_ops/local_map.py:407:14: error: Module has no attribute "_AutoDispatchBelowAutograd" [attr-defined] +torch/_higher_order_ops/local_map.py:434:14: error: Module has no attribute "_AutoDispatchBelowAutograd" [attr-defined] +torch/_higher_order_ops/local_map.py:454:24: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/flex_attention.py:8:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/flex_attention.py:172:25: error: Module has no attribute "float64" [attr-defined] +torch/_higher_order_ops/flex_attention.py:172:76: error: Module has no attribute "float32" [attr-defined] +torch/_higher_order_ops/flex_attention.py:176:9: error: Module has no attribute "arange" [attr-defined] +torch/_higher_order_ops/flex_attention.py:177:9: error: Module has no attribute "arange" [attr-defined] +torch/_higher_order_ops/flex_attention.py:178:9: error: Module has no attribute "arange" [attr-defined] +torch/_higher_order_ops/flex_attention.py:179:9: error: Module has no attribute "arange" [attr-defined] +torch/_higher_order_ops/flex_attention.py:193:27: error: Module has no attribute "where" [attr-defined] +torch/_higher_order_ops/flex_attention.py:196:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_higher_order_ops/flex_attention.py:228:13: error: Module has no attribute "repeat_interleave" [attr-defined] +torch/_higher_order_ops/flex_attention.py:229:11: error: Module has no attribute "repeat_interleave" [attr-defined] +torch/_higher_order_ops/flex_attention.py:252:19: error: Module has no attribute "all" [attr-defined] +torch/_higher_order_ops/flex_attention.py:253:17: error: Module has no attribute "where" [attr-defined] +torch/_higher_order_ops/flex_attention.py:256:18: error: Module has no attribute "max" [attr-defined] +torch/_higher_order_ops/flex_attention.py:258:23: error: Module has no attribute "_safe_softmax" [attr-defined] +torch/_higher_order_ops/flex_attention.py:329:35: error: Module has no attribute "int" [attr-defined] +torch/_higher_order_ops/flex_attention.py:331:52: error: Module has no attribute "int" [attr-defined] +torch/_higher_order_ops/flex_attention.py:454:48: error: Module has no attribute "int" [attr-defined] +torch/_higher_order_ops/flex_attention.py:516:73: error: Module has no attribute "float32" [attr-defined] +torch/_higher_order_ops/flex_attention.py:517:74: error: Module has no attribute "float32" [attr-defined] +torch/_higher_order_ops/flex_attention.py:561:28: error: Module has no attribute "empty_strided" [attr-defined] +torch/_higher_order_ops/flex_attention.py:658:14: error: Module has no attribute "_AutoDispatchBelowAutograd" [attr-defined] +torch/_higher_order_ops/flex_attention.py:789:12: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_higher_order_ops/flex_attention.py:797:43: error: Module has no attribute "int" [attr-defined] +torch/_higher_order_ops/flex_attention.py:798:43: error: Module has no attribute "int" [attr-defined] +torch/_higher_order_ops/flex_attention.py:799:43: error: Module has no attribute "int" [attr-defined] +torch/_higher_order_ops/flex_attention.py:800:43: error: Module has no attribute "int" [attr-defined] +torch/_higher_order_ops/flex_attention.py:864:17: error: Module has no attribute "empty_like" [attr-defined] +torch/_higher_order_ops/flex_attention.py:864:56: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_higher_order_ops/flex_attention.py:882:11: error: Module has no attribute "repeat_interleave" [attr-defined] +torch/_higher_order_ops/flex_attention.py:883:13: error: Module has no attribute "repeat_interleave" [attr-defined] +torch/_higher_order_ops/flex_attention.py:886:17: error: Incompatible types in assignment (expression has type "float", variable has type "Tensor") [assignment] +torch/_higher_order_ops/flex_attention.py:888:22: error: Incompatible types in assignment (expression has type "float", variable has type "Tensor") [assignment] +torch/_higher_order_ops/flex_attention.py:901:22: error: Module has no attribute "exp" [attr-defined] +torch/_higher_order_ops/flex_attention.py:902:22: error: Module has no attribute "where" [attr-defined] +torch/_higher_order_ops/flex_attention.py:902:34: error: "bool" has no attribute "unsqueeze" [attr-defined] +torch/_higher_order_ops/flex_attention.py:910:18: error: Module has no attribute "sum" [attr-defined] +torch/_higher_order_ops/flex_attention.py:919:9: error: Module has no attribute "arange" [attr-defined] +torch/_higher_order_ops/flex_attention.py:920:9: error: Module has no attribute "arange" [attr-defined] +torch/_higher_order_ops/flex_attention.py:921:9: error: Module has no attribute "arange" [attr-defined] +torch/_higher_order_ops/flex_attention.py:922:9: error: Module has no attribute "arange" [attr-defined] +torch/_higher_order_ops/flex_attention.py:950:23: error: Module has no attribute "where" [attr-defined] +torch/_higher_order_ops/flex_attention.py:951:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_higher_order_ops/flex_attention.py:965:16: error: Module has no attribute "sum" [attr-defined] +torch/_higher_order_ops/flex_attention.py:966:18: error: Module has no attribute "sum" [attr-defined] +torch/_higher_order_ops/flex_attention.py:978:27: error: Module has no attribute "sum" [attr-defined] +torch/_higher_order_ops/flex_attention.py:979:29: error: Module has no attribute "sum" [attr-defined] +torch/_higher_order_ops/flex_attention.py:1037:35: error: Module has no attribute "int" [attr-defined] +torch/_higher_order_ops/flex_attention.py:1040:52: error: Module has no attribute "int" [attr-defined] +torch/_higher_order_ops/flex_attention.py:1277:18: error: Module has no attribute "empty_like" [attr-defined] +torch/_higher_order_ops/flex_attention.py:1281:13: error: Module has no attribute "empty_like" [attr-defined] +torch/_higher_order_ops/flex_attention.py:1281:52: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_higher_order_ops/flex_attention.py:1295:20: error: Module has no attribute "sum" [attr-defined] +torch/_higher_order_ops/flex_attention.py:1296:22: error: Module has no attribute "sum" [attr-defined] +torch/_higher_order_ops/base_hop.py:7:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_higher_order_ops/base_hop.py:226:14: error: Module has no attribute "_AutoDispatchBelowAutograd" [attr-defined] +torch/_dynamo/_trace_wrapped_higher_order_op.py:35:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_dynamo/_trace_wrapped_higher_order_op.py:59:12: error: Module has no attribute "zeros" [attr-defined] +torch/_dynamo/_trace_wrapped_higher_order_op.py:139:22: error: Name "torch._C._TensorMeta" is not defined [name-defined] +torch/_dynamo/_trace_wrapped_higher_order_op.py:171:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_dynamo/_trace_wrapped_higher_order_op.py:215:40: error: Module has no attribute "empty_like" [attr-defined] +torch/_decomp/__init__.py:59:8: error: Module has no attribute "Tag" [attr-defined] +torch/_decomp/__init__.py:89:12: error: Module has no attribute "_dispatch_has_kernel" [attr-defined] +torch/_refs/fft.py:50:16: error: Incompatible return value type (got "float", expected "Tensor") [return-value] +torch/_refs/fft.py:55:12: error: Incompatible return value type (got "float | Tensor", expected "Tensor") [return-value] +torch/_refs/fft.py:59:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/fft.py:59:56: error: Name "torch.device" is not defined [name-defined] +torch/_refs/fft.py:60:6: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/fft.py:67:17: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_refs/fft.py:69:22: error: Module has no attribute "float32" [attr-defined] +torch/_refs/fft.py:69:37: error: Module has no attribute "float64" [attr-defined] +torch/_refs/fft.py:73:30: error: Module has no attribute "float16" [attr-defined] +torch/_refs/fft.py:115:12: error: Module has no attribute "constant_pad_nd" [attr-defined] +torch/_refs/fft.py:139:17: error: Module has no attribute "conj" [attr-defined] +torch/_refs/fft.py:171:32: error: Module has no attribute "conj" [attr-defined] +torch/_refs/fft.py:586:12: error: Module has no attribute "roll" [attr-defined] +torch/_refs/fft.py:593:12: error: Module has no attribute "roll" [attr-defined] +torch/_refs/__init__.py:751:12: error: Module has no attribute "zeros_like" [attr-defined] +torch/_refs/__init__.py:767:15: error: Module has no attribute "mul" [attr-defined] +torch/_refs/__init__.py:767:25: error: Module has no attribute "floor" [attr-defined] +torch/_refs/__init__.py:767:37: error: Module has no attribute "abs" [attr-defined] +torch/_refs/__init__.py:767:52: error: Module has no attribute "sign" [attr-defined] +torch/_refs/__init__.py:768:12: error: Module has no attribute "sub" [attr-defined] +torch/_refs/__init__.py:788:31: error: Module has no attribute "bool" [attr-defined] +torch/_refs/__init__.py:794:16: error: Module has no attribute "logical_or" [attr-defined] +torch/_refs/__init__.py:794:39: error: Module has no attribute "real" [attr-defined] +torch/_refs/__init__.py:794:61: error: Module has no attribute "imag" [attr-defined] +torch/_refs/__init__.py:796:16: error: Module has no attribute "abs" [attr-defined] +torch/_refs/__init__.py:797:12: error: Module has no attribute "zeros_like" [attr-defined] +torch/_refs/__init__.py:797:38: error: Module has no attribute "bool" [attr-defined] +torch/_refs/__init__.py:810:16: error: Incompatible return value type (got "bool", expected "Tensor") [return-value] +torch/_refs/__init__.py:811:12: error: Module has no attribute "zeros_like" [attr-defined] +torch/_refs/__init__.py:811:38: error: Module has no attribute "bool" [attr-defined] +torch/_refs/__init__.py:824:16: error: Incompatible return value type (got "bool", expected "Tensor") [return-value] +torch/_refs/__init__.py:825:12: error: Module has no attribute "zeros_like" [attr-defined] +torch/_refs/__init__.py:825:38: error: Module has no attribute "bool" [attr-defined] +torch/_refs/__init__.py:843:16: error: Module has no attribute "imag" [attr-defined] +torch/_refs/__init__.py:844:12: error: Module has no attribute "ones_like" [attr-defined] +torch/_refs/__init__.py:844:37: error: Module has no attribute "bool" [attr-defined] +torch/_refs/__init__.py:885:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:906:16: error: Module has no attribute "sum" [attr-defined] +torch/_refs/__init__.py:906:26: error: Module has no attribute "exp" [attr-defined] +torch/_refs/__init__.py:908:13: error: Module has no attribute "amax" [attr-defined] +torch/_refs/__init__.py:908:24: error: Module has no attribute "real" [attr-defined] +torch/_refs/__init__.py:909:13: error: Module has no attribute "masked_fill" [attr-defined] +torch/_refs/__init__.py:911:44: error: Module has no attribute "squeeze" [attr-defined] +torch/_refs/__init__.py:913:14: error: Module has no attribute "sum" [attr-defined] +torch/_refs/__init__.py:913:24: error: Module has no attribute "exp" [attr-defined] +torch/_refs/__init__.py:934:18: error: Module has no attribute "finfo" [attr-defined] +torch/_refs/__init__.py:937:18: error: Module has no attribute "finfo" [attr-defined] +torch/_refs/__init__.py:939:14: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:939:14: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:939:26: error: Module has no attribute "isnan" [attr-defined] +torch/_refs/__init__.py:940:14: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:940:14: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:940:26: error: Module has no attribute "isneginf" [attr-defined] +torch/_refs/__init__.py:941:14: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:941:14: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:941:26: error: Module has no attribute "isposinf" [attr-defined] +torch/_refs/__init__.py:947:24: error: Module has no attribute "bool" [attr-defined] +torch/_refs/__init__.py:967:19: error: Module has no attribute "bool" [attr-defined] +torch/_refs/__init__.py:1018:16: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:1049:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:1049:35: error: Module has no attribute "sin" [attr-defined] +torch/_refs/__init__.py:1327:20: error: Module has no attribute "sqrt" [attr-defined] +torch/_refs/__init__.py:1327:20: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:1330:20: error: Module has no attribute "fill" [attr-defined] +torch/_refs/__init__.py:1334:20: error: Module has no attribute "exp2" [attr-defined] +torch/_refs/__init__.py:1355:17: error: Module has no attribute "complex128" [attr-defined] +torch/_refs/__init__.py:1357:17: error: Module has no attribute "float64" [attr-defined] +torch/_refs/__init__.py:1420:24: error: Module has no attribute "device" [attr-defined] +torch/_refs/__init__.py:1443:15: error: Module has no attribute "signbit" [attr-defined] +torch/_refs/__init__.py:1443:65: error: Module has no attribute "fmod" [attr-defined] +torch/_refs/__init__.py:1502:12: error: Module has no attribute "frexp" [attr-defined] +torch/_refs/__init__.py:1536:21: error: Module has no attribute "eq" [attr-defined] +torch/_refs/__init__.py:1537:21: error: Module has no attribute "logical_or" [attr-defined] +torch/_refs/__init__.py:1537:38: error: Module has no attribute "lt" [attr-defined] +torch/_refs/__init__.py:1537:58: error: Module has no attribute "isnan" [attr-defined] +torch/_refs/__init__.py:1538:22: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:1539:14: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:1621:43: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_refs/__init__.py:1622:43: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_refs/__init__.py:1644:32: error: Module has no attribute "int8" [attr-defined] +torch/_refs/__init__.py:1644:44: error: Module has no attribute "int16" [attr-defined] +torch/_refs/__init__.py:1646:43: error: Module has no attribute "int32" [attr-defined] +torch/_refs/__init__.py:1647:43: error: Module has no attribute "int32" [attr-defined] +torch/_refs/__init__.py:1649:9: error: Module has no attribute "gcd" [attr-defined] +torch/_refs/__init__.py:1651:9: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:1652:11: error: Module has no attribute "abs" [attr-defined] +torch/_refs/__init__.py:1671:12: error: Module has no attribute "real" [attr-defined] +torch/_refs/__init__.py:1672:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:1673:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:1674:16: error: Module has no attribute "logical_and" [attr-defined] +torch/_refs/__init__.py:1675:9: error: Module has no attribute "logical_not" [attr-defined] +torch/_refs/__init__.py:1675:27: error: Module has no attribute "isfinite" [attr-defined] +torch/_refs/__init__.py:1675:42: error: Module has no attribute "real" [attr-defined] +torch/_refs/__init__.py:1679:24: error: Module has no attribute "real" [attr-defined] +torch/_refs/__init__.py:1680:20: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:1681:33: error: Module has no attribute "log" [attr-defined] +torch/_refs/__init__.py:1681:43: error: Module has no attribute "exp" [attr-defined] +torch/_refs/__init__.py:1683:24: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:1684:40: error: Module has no attribute "log1p" [attr-defined] +torch/_refs/__init__.py:1684:52: error: Module has no attribute "exp" [attr-defined] +torch/_refs/__init__.py:1687:20: error: Module has no attribute "isnan" [attr-defined] +torch/_refs/__init__.py:1688:16: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:1688:16: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:1690:16: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:1690:48: error: Module has no attribute "log1p" [attr-defined] +torch/_refs/__init__.py:1690:60: error: Module has no attribute "exp" [attr-defined] +torch/_refs/__init__.py:1705:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:1706:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:1707:16: error: Module has no attribute "logical_and" [attr-defined] +torch/_refs/__init__.py:1707:34: error: Module has no attribute "isinf" [attr-defined] +torch/_refs/__init__.py:1709:21: error: Module has no attribute "log1p" [attr-defined] +torch/_refs/__init__.py:1709:33: error: Module has no attribute "exp2" [attr-defined] +torch/_refs/__init__.py:1710:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:1718:13: error: Incompatible types in assignment (expression has type "bool", variable has type "Tensor") [assignment] +torch/_refs/__init__.py:1720:13: error: Incompatible types in assignment (expression has type "bool", variable has type "Tensor") [assignment] +torch/_refs/__init__.py:1736:13: error: Incompatible types in assignment (expression has type "bool", variable has type "Tensor") [assignment] +torch/_refs/__init__.py:1738:13: error: Incompatible types in assignment (expression has type "bool", variable has type "Tensor") [assignment] +torch/_refs/__init__.py:1748:13: error: Incompatible types in assignment (expression has type "bool", variable has type "Tensor") [assignment] +torch/_refs/__init__.py:1750:13: error: Incompatible types in assignment (expression has type "bool", variable has type "Tensor") [assignment] +torch/_refs/__init__.py:1820:12: error: Module has no attribute "sub" [attr-defined] +torch/_refs/__init__.py:1903:11: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:1903:23: error: Module has no attribute "eq" [attr-defined] +torch/_refs/__init__.py:1903:42: error: Module has no attribute "mul" [attr-defined] +torch/_refs/__init__.py:1903:55: error: Module has no attribute "log" [attr-defined] +torch/_refs/__init__.py:1904:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:1904:24: error: Module has no attribute "isnan" [attr-defined] +torch/_refs/__init__.py:1978:12: error: Incompatible return value type (got "int | float | complex", expected "Tensor") [return-value] +torch/_refs/__init__.py:1997:19: error: Module has no attribute "isnan" [attr-defined] +torch/_refs/__init__.py:1998:21: error: Module has no attribute "bitwise_or" [attr-defined] +torch/_refs/__init__.py:1998:21: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:1998:38: error: Module has no attribute "ge" [attr-defined] +torch/_refs/__init__.py:2003:13: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:2003:13: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:2005:19: error: Module has no attribute "isnan" [attr-defined] +torch/_refs/__init__.py:2007:21: error: Module has no attribute "bitwise_or" [attr-defined] +torch/_refs/__init__.py:2007:21: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:2007:38: error: Module has no attribute "le" [attr-defined] +torch/_refs/__init__.py:2008:13: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:2008:13: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:2019:12: error: Module has no attribute "clamp" [attr-defined] +torch/_refs/__init__.py:2019:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:2028:12: error: Module has no attribute "clamp" [attr-defined] +torch/_refs/__init__.py:2028:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:2060:23: error: Module has no attribute "bool" [attr-defined] +torch/_refs/__init__.py:2074:42: error: Name "torch.memory_format" is not defined [name-defined] +torch/_refs/__init__.py:2074:64: error: Module has no attribute "preserve_format" [attr-defined] +torch/_refs/__init__.py:2104:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:2106:22: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:2107:29: error: Name "torch.memory_format" is not defined [name-defined] +torch/_refs/__init__.py:2120:33: error: Module has no attribute "preserve_format" [attr-defined] +torch/_refs/__init__.py:2133:13: error: Name "torch.device" is not defined [name-defined] +torch/_refs/__init__.py:2134:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:2137:29: error: Name "torch.memory_format" is not defined [name-defined] +torch/_refs/__init__.py:2152:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:2155:29: error: Name "torch.memory_format" is not defined [name-defined] +torch/_refs/__init__.py:2158:19: error: Module has no attribute "device" [attr-defined] +torch/_refs/__init__.py:2169:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:2172:29: error: Name "torch.memory_format" is not defined [name-defined] +torch/_refs/__init__.py:2188:29: error: Name "torch.memory_format" is not defined [name-defined] +torch/_refs/__init__.py:2211:31: error: Module has no attribute "device" [attr-defined] +torch/_refs/__init__.py:2216:61: error: Module has no attribute "preserve_format" [attr-defined] +torch/_refs/__init__.py:2259:14: error: Module has no attribute "empty_like" [attr-defined] +torch/_refs/__init__.py:2278:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:2355:45: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_refs/__init__.py:2373:14: error: Module has no attribute "logical_not" [attr-defined] +torch/_refs/__init__.py:2373:32: error: Module has no attribute "any" [attr-defined] +torch/_refs/__init__.py:2375:19: error: Module has no attribute "uint8" [attr-defined] +torch/_refs/__init__.py:2376:34: error: Module has no attribute "uint8" [attr-defined] +torch/_refs/__init__.py:2388:37: error: Module has no attribute "bool" [attr-defined] +torch/_refs/__init__.py:2395:19: error: Module has no attribute "uint8" [attr-defined] +torch/_refs/__init__.py:2396:51: error: Module has no attribute "uint8" [attr-defined] +torch/_refs/__init__.py:2407:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:2414:21: error: Module has no attribute "int64" [attr-defined] +torch/_refs/__init__.py:2450:12: error: Module has no attribute "sum" [attr-defined] +torch/_refs/__init__.py:2466:21: error: Module has no attribute "int64" [attr-defined] +torch/_refs/__init__.py:2587:13: error: Module has no attribute "var" [attr-defined] +torch/_refs/__init__.py:2588:13: error: Module has no attribute "sqrt" [attr-defined] +torch/_refs/__init__.py:2656:21: error: Module has no attribute "var_mean" [attr-defined] +torch/_refs/__init__.py:2657:13: error: Module has no attribute "sqrt" [attr-defined] +torch/_refs/__init__.py:2723:20: error: Module has no attribute "outer" [attr-defined] +torch/_refs/__init__.py:2723:58: error: Module has no attribute "full_like" [attr-defined] +torch/_refs/__init__.py:2725:20: error: Module has no attribute "logical_or" [attr-defined] +torch/_refs/__init__.py:2727:17: error: Module has no attribute "outer" [attr-defined] +torch/_refs/__init__.py:2727:55: error: Module has no attribute "full_like" [attr-defined] +torch/_refs/__init__.py:2740:28: error: Module has no attribute "outer" [attr-defined] +torch/_refs/__init__.py:2742:42: error: Module has no attribute "outer" [attr-defined] +torch/_refs/__init__.py:2825:12: error: Module has no attribute "Size" [attr-defined] +torch/_refs/__init__.py:2854:21: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_refs/__init__.py:2857:24: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_refs/__init__.py:2981:16: error: Module has no attribute "conj_physical" [attr-defined] +torch/_refs/__init__.py:3044:14: error: Module has no attribute "empty" [attr-defined] +torch/_refs/__init__.py:3052:38: error: Module has no attribute "bool" [attr-defined] +torch/_refs/__init__.py:3055:14: error: Module has no attribute "fill" [attr-defined] +torch/_refs/__init__.py:3055:14: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:3072:34: error: Name "torch.memory_format" is not defined [name-defined] +torch/_refs/__init__.py:3072:56: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_refs/__init__.py:3075:26: error: Module has no attribute "preserve_format" [attr-defined] +torch/_refs/__init__.py:3083:12: error: Module has no attribute "clone" [attr-defined] +torch/_refs/__init__.py:3289:24: error: Module has no attribute "var_mean" [attr-defined] +torch/_refs/__init__.py:3292:12: error: Module has no attribute "rsqrt" [attr-defined] +torch/_refs/__init__.py:3300:13: error: Module has no attribute "unsqueeze" [attr-defined] +torch/_refs/__init__.py:3329:22: error: Module has no attribute "reshape" [attr-defined] +torch/_refs/__init__.py:3334:24: error: Module has no attribute "var_mean" [attr-defined] +torch/_refs/__init__.py:3337:12: error: Module has no attribute "rsqrt" [attr-defined] +torch/_refs/__init__.py:3339:27: error: Module has no attribute "reshape" [attr-defined] +torch/_refs/__init__.py:3345:29: error: Module has no attribute "reshape" [attr-defined] +torch/_refs/__init__.py:3371:12: error: Module has no attribute "squeeze" [attr-defined] +torch/_refs/__init__.py:3372:12: error: Module has no attribute "squeeze" [attr-defined] +torch/_refs/__init__.py:3503:19: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:3593:22: error: Module has no attribute "ones" [attr-defined] +torch/_refs/__init__.py:3623:40: error: Module has no attribute "view_as_real" [attr-defined] +torch/_refs/__init__.py:3700:19: error: Module has no attribute "ones" [attr-defined] +torch/_refs/__init__.py:3815:16: error: Module has no attribute "clone" [attr-defined] +torch/_refs/__init__.py:3829:16: error: Module has no attribute "empty" [attr-defined] +torch/_refs/__init__.py:3854:21: error: Module has no attribute "clone" [attr-defined] +torch/_refs/__init__.py:3981:20: error: Module has no attribute "as_strided" [attr-defined] +torch/_refs/__init__.py:3986:20: error: Module has no attribute "as_strided" [attr-defined] +torch/_refs/__init__.py:4046:20: error: Module has no attribute "roll" [attr-defined] +torch/_refs/__init__.py:4046:31: error: Module has no attribute "flatten" [attr-defined] +torch/_refs/__init__.py:4057:28: error: Module has no attribute "roll" [attr-defined] +torch/_refs/__init__.py:4058:16: error: Module has no attribute "roll" [attr-defined] +torch/_refs/__init__.py:4067:11: error: Module has no attribute "arange" [attr-defined] +torch/_refs/__init__.py:4068:32: error: Module has no attribute "fmod" [attr-defined] +torch/_refs/__init__.py:4094:16: error: Module has no attribute "transpose" [attr-defined] +torch/_refs/__init__.py:4094:32: error: Module has no attribute "flip" [attr-defined] +torch/_refs/__init__.py:4096:16: error: Module has no attribute "flip" [attr-defined] +torch/_refs/__init__.py:4098:16: error: Module has no attribute "transpose" [attr-defined] +torch/_refs/__init__.py:4098:32: error: Module has no attribute "flip" [attr-defined] +torch/_refs/__init__.py:4100:38: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_refs/__init__.py:4124:15: error: Module has no attribute "cat" [attr-defined] +torch/_refs/__init__.py:4128:12: error: Module has no attribute "cat" [attr-defined] +torch/_refs/__init__.py:4136:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:4192:13: error: Module has no attribute "squeeze" [attr-defined] +torch/_refs/__init__.py:4192:44: error: Module has no attribute "tensor_split" [attr-defined] +torch/_refs/__init__.py:4198:34: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_refs/__init__.py:4250:17: error: Module has no attribute "scalar_tensor" [attr-defined] +torch/_refs/__init__.py:4263:13: error: Item "int" of "Tensor | int | float | complex" has no attribute "expand" [union-attr] +torch/_refs/__init__.py:4263:13: error: Item "float" of "Tensor | int | float | complex" has no attribute "expand" [union-attr] +torch/_refs/__init__.py:4263:13: error: Item "complex" of "Tensor | int | float | complex" has no attribute "expand" [union-attr] +torch/_refs/__init__.py:4264:53: error: Module has no attribute "index_copy" [attr-defined] +torch/_refs/__init__.py:4274:23: error: Module has no attribute "empty_like" [attr-defined] +torch/_refs/__init__.py:4290:34: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_refs/__init__.py:4311:16: error: Module has no attribute "empty_like" [attr-defined] +torch/_refs/__init__.py:4398:41: error: Module has no attribute "long" [attr-defined] +torch/_refs/__init__.py:4548:16: error: Module has no attribute "diag_embed" [attr-defined] +torch/_refs/__init__.py:4550:16: error: Module has no attribute "diagonal_copy" [attr-defined] +torch/_refs/__init__.py:4648:13: error: Module has no attribute "zeros" [attr-defined] +torch/_refs/__init__.py:4650:13: error: Module has no attribute "cat" [attr-defined] +torch/_refs/__init__.py:4658:15: error: Module has no attribute "arange" [attr-defined] +torch/_refs/__init__.py:4658:61: error: Module has no attribute "int64" [attr-defined] +torch/_refs/__init__.py:4659:15: error: Module has no attribute "arange" [attr-defined] +torch/_refs/__init__.py:4660:59: error: Module has no attribute "int64" [attr-defined] +torch/_refs/__init__.py:4701:16: error: Module has no attribute "zeros" [attr-defined] +torch/_refs/__init__.py:4702:17: error: Module has no attribute "zeros" [attr-defined] +torch/_refs/__init__.py:4705:20: error: Module has no attribute "cat" [attr-defined] +torch/_refs/__init__.py:4708:12: error: Module has no attribute "cat" [attr-defined] +torch/_refs/__init__.py:4750:12: error: Module has no attribute "transpose" [attr-defined] +torch/_refs/__init__.py:4781:12: error: Module has no attribute "permute" [attr-defined] +torch/_refs/__init__.py:4802:23: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_refs/__init__.py:4812:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:4822:10: error: Module has no attribute "arange" [attr-defined] +torch/_refs/__init__.py:4826:16: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:4835:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:4846:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:4905:16: error: Module has no attribute "gather" [attr-defined] +torch/_refs/__init__.py:4917:16: error: Module has no attribute "gather" [attr-defined] +torch/_refs/__init__.py:4923:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:4924:13: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:4924:28: error: Module has no attribute "strided" [attr-defined] +torch/_refs/__init__.py:4928:20: error: Name "torch.memory_format" is not defined [name-defined] +torch/_refs/__init__.py:4928:42: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_refs/__init__.py:4931:26: error: Module has no attribute "preserve_format" [attr-defined] +torch/_refs/__init__.py:4937:25: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_refs/__init__.py:4939:27: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_refs/__init__.py:4943:30: error: Module has no attribute "channels_last" [attr-defined] +torch/_refs/__init__.py:4948:12: error: Module has no attribute "empty_strided" [attr-defined] +torch/_refs/__init__.py:4963:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:4964:13: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:4964:28: error: Module has no attribute "strided" [attr-defined] +torch/_refs/__init__.py:4984:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:4985:22: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:4993:12: error: Module has no attribute "empty" [attr-defined] +torch/_refs/__init__.py:5009:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5010:22: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:5022:12: error: Module has no attribute "empty_strided" [attr-defined] +torch/_refs/__init__.py:5036:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5037:13: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:5037:28: error: Module has no attribute "strided" [attr-defined] +torch/_refs/__init__.py:5045:17: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_refs/__init__.py:5047:12: error: Module has no attribute "full" [attr-defined] +torch/_refs/__init__.py:5049:27: error: Module has no attribute "bool" [attr-defined] +torch/_refs/__init__.py:5064:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5065:22: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:5074:12: error: Module has no attribute "full" [attr-defined] +torch/_refs/__init__.py:5076:40: error: Module has no attribute "bool" [attr-defined] +torch/_refs/__init__.py:5089:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5090:13: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:5090:28: error: Module has no attribute "strided" [attr-defined] +torch/_refs/__init__.py:5098:17: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_refs/__init__.py:5100:12: error: Module has no attribute "full" [attr-defined] +torch/_refs/__init__.py:5102:26: error: Module has no attribute "bool" [attr-defined] +torch/_refs/__init__.py:5117:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5118:22: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:5127:12: error: Module has no attribute "full" [attr-defined] +torch/_refs/__init__.py:5129:39: error: Module has no attribute "bool" [attr-defined] +torch/_refs/__init__.py:5145:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5146:22: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:5154:12: error: Module has no attribute "full" [attr-defined] +torch/_refs/__init__.py:5168:29: error: Name "torch.memory_format" is not defined [name-defined] +torch/_refs/__init__.py:5178:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5180:22: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:5183:20: error: Name "torch.memory_format" is not defined [name-defined] +torch/_refs/__init__.py:5183:42: error: Module has no attribute "preserve_format" [attr-defined] +torch/_refs/__init__.py:5189:25: error: Module has no attribute "preserve_format" [attr-defined] +torch/_refs/__init__.py:5190:16: error: Module has no attribute "empty" [attr-defined] +torch/_refs/__init__.py:5205:12: error: Module has no attribute "empty_permuted" [attr-defined] +torch/_refs/__init__.py:5223:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5224:13: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:5224:28: error: Module has no attribute "strided" [attr-defined] +torch/_refs/__init__.py:5231:14: error: Module has no attribute "device" [attr-defined] +torch/_refs/__init__.py:5269:17: error: Module has no attribute "int64" [attr-defined] +torch/_refs/__init__.py:5269:50: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_refs/__init__.py:5279:17: error: Module has no attribute "int64" [attr-defined] +torch/_refs/__init__.py:5300:15: error: Module has no attribute "int64" [attr-defined] +torch/_refs/__init__.py:5306:9: error: Module has no attribute "long" [attr-defined] +torch/_refs/__init__.py:5337:13: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:5338:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:5355:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5357:13: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:5357:28: error: Module has no attribute "strided" [attr-defined] +torch/_refs/__init__.py:5366:48: error: Module has no attribute "float64" [attr-defined] +torch/_refs/__init__.py:5372:44: error: Module has no attribute "float64" [attr-defined] +torch/_refs/__init__.py:5376:13: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_refs/__init__.py:5386:26: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_refs/__init__.py:5387:30: error: Module has no attribute "dtype" [attr-defined] +torch/_refs/__init__.py:5405:16: error: Module has no attribute "full" [attr-defined] +torch/_refs/__init__.py:5405:16: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:5408:28: error: Module has no attribute "empty" [attr-defined] +torch/_refs/__init__.py:5408:28: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:5411:20: error: Module has no attribute "full" [attr-defined] +torch/_refs/__init__.py:5411:20: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:5414:10: error: Module has no attribute "arange" [attr-defined] +torch/_refs/__init__.py:5414:10: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:5418:9: error: Module has no attribute "int64" [attr-defined] +torch/_refs/__init__.py:5430:11: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:5446:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5448:13: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:5448:28: error: Module has no attribute "strided" [attr-defined] +torch/_refs/__init__.py:5453:17: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_refs/__init__.py:5476:13: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_refs/__init__.py:5481:18: error: Module has no attribute "float64" [attr-defined] +torch/_refs/__init__.py:5486:11: error: Module has no attribute "linspace" [attr-defined] +torch/_refs/__init__.py:5486:11: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:5496:36: error: Module has no attribute "pow" [attr-defined] +torch/_refs/__init__.py:5496:36: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:5634:14: error: Module has no attribute "permute" [attr-defined] +torch/_refs/__init__.py:5646:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5648:13: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:5648:28: error: Module has no attribute "strided" [attr-defined] +torch/_refs/__init__.py:5657:13: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_refs/__init__.py:5658:14: error: Module has no attribute "device" [attr-defined] +torch/_refs/__init__.py:5669:43: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5670:28: error: Module has no attribute "uint8" [attr-defined] +torch/_refs/__init__.py:5670:41: error: Module has no attribute "uint16" [attr-defined] +torch/_refs/__init__.py:5670:55: error: Module has no attribute "int32" [attr-defined] +torch/_refs/__init__.py:5671:19: error: Module has no attribute "iinfo" [attr-defined] +torch/_refs/__init__.py:5673:12: error: Module has no attribute "int64" [attr-defined] +torch/_refs/__init__.py:5682:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5683:13: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:5683:28: error: Module has no attribute "strided" [attr-defined] +torch/_refs/__init__.py:5697:19: error: Module has no attribute "int64" [attr-defined] +torch/_refs/__init__.py:5700:15: error: Module has no attribute "arange" [attr-defined] +torch/_refs/__init__.py:5701:15: error: Module has no attribute "arange" [attr-defined] +torch/_refs/__init__.py:5704:19: error: Module has no attribute "strided" [attr-defined] +torch/_refs/__init__.py:5705:33: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_refs/__init__.py:5707:15: error: Module has no attribute "ones" [attr-defined] +torch/_refs/__init__.py:5715:16: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:5727:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5728:13: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:5728:28: error: Module has no attribute "strided" [attr-defined] +torch/_refs/__init__.py:5737:48: error: Module has no attribute "device" [attr-defined] +torch/_refs/__init__.py:5747:12: error: Module has no attribute "fill" [attr-defined] +torch/_refs/__init__.py:5747:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:5754:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5755:22: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:5759:20: error: Name "torch.memory_format" is not defined [name-defined] +torch/_refs/__init__.py:5759:42: error: Module has no attribute "preserve_format" [attr-defined] +torch/_refs/__init__.py:5761:9: error: Module has no attribute "empty_like" [attr-defined] +torch/_refs/__init__.py:5778:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5779:22: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:5783:20: error: Name "torch.memory_format" is not defined [name-defined] +torch/_refs/__init__.py:5783:42: error: Module has no attribute "preserve_format" [attr-defined] +torch/_refs/__init__.py:5785:12: error: Module has no attribute "full_like" [attr-defined] +torch/_refs/__init__.py:5787:40: error: Module has no attribute "bool" [attr-defined] +torch/_refs/__init__.py:5802:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5803:22: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:5807:20: error: Name "torch.memory_format" is not defined [name-defined] +torch/_refs/__init__.py:5807:42: error: Module has no attribute "preserve_format" [attr-defined] +torch/_refs/__init__.py:5809:12: error: Module has no attribute "full_like" [attr-defined] +torch/_refs/__init__.py:5811:39: error: Module has no attribute "bool" [attr-defined] +torch/_refs/__init__.py:5825:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5827:22: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:5851:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5852:13: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:5852:28: error: Module has no attribute "strided" [attr-defined] +torch/_refs/__init__.py:5859:48: error: Module has no attribute "device" [attr-defined] +torch/_refs/__init__.py:5873:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:5883:30: error: Module has no attribute "dtype" [attr-defined] +torch/_refs/__init__.py:5906:39: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/_refs/__init__.py:5929:9: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:5929:9: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:5940:9: error: Module has no attribute "masked_fill" [attr-defined] +torch/_refs/__init__.py:5940:9: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/__init__.py:5959:9: error: Module has no attribute "all" [attr-defined] +torch/_refs/__init__.py:5959:19: error: Module has no attribute "isclose" [attr-defined] +torch/_refs/__init__.py:5990:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:6016:12: error: Module has no attribute "sum" [attr-defined] +torch/_refs/__init__.py:6016:22: error: Module has no attribute "diag" [attr-defined] +torch/_refs/__init__.py:6042:9: error: Module has no attribute "arange" [attr-defined] +torch/_refs/__init__.py:6043:11: error: Module has no attribute "arange" [attr-defined] +torch/_refs/__init__.py:6059:9: error: Module has no attribute "arange" [attr-defined] +torch/_refs/__init__.py:6060:11: error: Module has no attribute "arange" [attr-defined] +torch/_refs/__init__.py:6095:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:6096:13: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:6102:19: error: Module has no attribute "int32" [attr-defined] +torch/_refs/__init__.py:6102:32: error: Module has no attribute "int64" [attr-defined] +torch/_refs/__init__.py:6115:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:6115:26: error: Module has no attribute "long" [attr-defined] +torch/_refs/__init__.py:6116:13: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:6116:28: error: Module has no attribute "strided" [attr-defined] +torch/_refs/__init__.py:6126:9: error: Module has no attribute "arange" [attr-defined] +torch/_refs/__init__.py:6130:46: error: Module has no attribute "float64" [attr-defined] +torch/_refs/__init__.py:6132:17: error: Module has no attribute "floor" [attr-defined] +torch/_refs/__init__.py:6132:34: error: Module has no attribute "sqrt" [attr-defined] +torch/_refs/__init__.py:6133:17: error: Module has no attribute "floor" [attr-defined] +torch/_refs/__init__.py:6142:12: error: Module has no attribute "stack" [attr-defined] +torch/_refs/__init__.py:6143:10: error: Module has no attribute "cat" [attr-defined] +torch/_refs/__init__.py:6175:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:6175:26: error: Module has no attribute "long" [attr-defined] +torch/_refs/__init__.py:6176:13: error: Name "torch.layout" is not defined [name-defined] +torch/_refs/__init__.py:6176:28: error: Module has no attribute "strided" [attr-defined] +torch/_refs/__init__.py:6186:9: error: Module has no attribute "arange" [attr-defined] +torch/_refs/__init__.py:6195:46: error: Module has no attribute "float64" [attr-defined] +torch/_refs/__init__.py:6197:17: error: Module has no attribute "floor" [attr-defined] +torch/_refs/__init__.py:6197:34: error: Module has no attribute "sqrt" [attr-defined] +torch/_refs/__init__.py:6198:17: error: Module has no attribute "floor" [attr-defined] +torch/_refs/__init__.py:6206:12: error: Module has no attribute "stack" [attr-defined] +torch/_refs/__init__.py:6207:10: error: Module has no attribute "cat" [attr-defined] +torch/_refs/__init__.py:6225:47: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_refs/__init__.py:6226:17: error: Module has no attribute "int32" [attr-defined] +torch/_refs/__init__.py:6226:47: error: Module has no attribute "int64" [attr-defined] +torch/_refs/__init__.py:6229:16: error: Module has no attribute "zeros_like" [attr-defined] +torch/_refs/__init__.py:6234:13: error: Module has no attribute "zeros" [attr-defined] +torch/_refs/__init__.py:6234:57: error: Module has no attribute "int64" [attr-defined] +torch/_refs/__init__.py:6248:13: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:6251:23: error: Module has no attribute "ones_like" [attr-defined] +torch/_refs/__init__.py:6251:48: error: Module has no attribute "bool" [attr-defined] +torch/_refs/__init__.py:6254:19: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:6257:19: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:6266:21: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:6290:29: error: Module has no attribute "tan" [attr-defined] +torch/_refs/__init__.py:6290:50: error: Module has no attribute "rand_like" [attr-defined] +torch/_refs/__init__.py:6313:19: error: Module has no attribute "rand_like" [attr-defined] +torch/_refs/__init__.py:6319:15: error: Module has no attribute "finfo" [attr-defined] +torch/_refs/__init__.py:6321:19: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:6321:52: error: Module has no attribute "log" [attr-defined] +torch/_refs/__init__.py:6344:12: error: Module has no attribute "floor" [attr-defined] +torch/_refs/__init__.py:6344:24: error: Module has no attribute "log1p" [attr-defined] +torch/_refs/__init__.py:6344:37: error: Module has no attribute "rand_like" [attr-defined] +torch/_refs/__init__.py:6365:12: error: Module has no attribute "exp" [attr-defined] +torch/_refs/__init__.py:6365:28: error: Module has no attribute "randn_like" [attr-defined] +torch/_refs/__init__.py:6390:40: error: Module has no attribute "strided" [attr-defined] +torch/_refs/__init__.py:6416:17: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_refs/__init__.py:6417:18: error: Module has no attribute "device" [attr-defined] +torch/_refs/__init__.py:6503:24: error: Module has no attribute "dot" [attr-defined] +torch/_refs/__init__.py:6505:24: error: Module has no attribute "vdot" [attr-defined] +torch/_refs/__init__.py:6507:20: error: Module has no attribute "vdot" [attr-defined] +torch/_refs/__init__.py:6521:16: error: Module has no attribute "dot" [attr-defined] +torch/_refs/__init__.py:6525:20: error: Module has no attribute "vdot" [attr-defined] +torch/_refs/__init__.py:6527:20: error: Module has no attribute "dot" [attr-defined] +torch/_refs/__init__.py:6529:16: error: Module has no attribute "dot" [attr-defined] +torch/_refs/__init__.py:6543:12: error: Module has no attribute "arange" [attr-defined] +torch/_refs/__init__.py:6544:11: error: Module has no attribute "unsqueeze" [attr-defined] +torch/_refs/__init__.py:6545:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/__init__.py:6695:16: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_refs/__init__.py:6697:16: error: Module has no attribute "int64" [attr-defined] +torch/_refs/__init__.py:6699:16: error: Module has no attribute "bool" [attr-defined] +torch/_refs/__init__.py:6701:25: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_refs/__init__.py:6702:29: error: Module has no attribute "float" [attr-defined] +torch/_refs/__init__.py:6703:20: error: Module has no attribute "cfloat" [attr-defined] +torch/_refs/__init__.py:6704:31: error: Module has no attribute "double" [attr-defined] +torch/_refs/__init__.py:6705:20: error: Module has no attribute "cdouble" [attr-defined] +torch/_refs/__init__.py:6706:31: error: Module has no attribute "half" [attr-defined] +torch/_refs/__init__.py:6707:20: error: Module has no attribute "chalf" [attr-defined] +torch/_refs/__init__.py:6721:20: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_refs/__init__.py:6732:30: error: Module has no attribute "promote_types" [attr-defined] +torch/_refs/__init__.py:6735:30: error: Module has no attribute "cdouble" [attr-defined] +torch/_refs/__init__.py:6746:17: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/__init__.py:6761:16: error: Module has no attribute "scalar_tensor" [attr-defined] +torch/_refs/__init__.py:6766:9: error: Module has no attribute "empty" [attr-defined] +torch/_refs/__init__.py:6768:14: error: Module has no attribute "stack" [attr-defined] +torch/_refs/__init__.py:6813:12: error: Module has no attribute "device" [attr-defined] +torch/_refs/__init__.py:6844:41: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_decomp/decompositions.py:143:9: error: "float" has no attribute "exp" [attr-defined] +torch/_decomp/decompositions.py:144:12: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:162:16: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:168:16: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:170:50: error: Module has no attribute "exp" [attr-defined] +torch/_decomp/decompositions.py:177:12: error: Module has no attribute "full_like" [attr-defined] +torch/_decomp/decompositions.py:193:12: error: Module has no attribute "clamp" [attr-defined] +torch/_decomp/decompositions.py:200:12: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:212:12: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:219:19: error: Module has no attribute "clamp" [attr-defined] +torch/_decomp/decompositions.py:226:12: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:229:9: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:236:12: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:245:12: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:261:22: error: Module has no attribute "tanh" [attr-defined] +torch/_decomp/decompositions.py:276:26: error: Module has no attribute "erf" [attr-defined] +torch/_decomp/decompositions.py:277:23: error: Module has no attribute "exp" [attr-defined] +torch/_decomp/decompositions.py:284:27: error: Module has no attribute "tanh" [attr-defined] +torch/_decomp/decompositions.py:285:21: error: Module has no attribute "sigmoid" [attr-defined] +torch/_decomp/decompositions.py:294:19: error: Module has no attribute "sigmoid" [attr-defined] +torch/_decomp/decompositions.py:301:24: error: Module has no attribute "exp" [attr-defined] +torch/_decomp/decompositions.py:307:12: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:316:18: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:317:19: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:347:17: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:348:12: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:349:9: error: Module has no attribute "exp" [attr-defined] +torch/_decomp/decompositions.py:349:20: error: Module has no attribute "abs" [attr-defined] +torch/_decomp/decompositions.py:357:16: error: Module has no attribute "mean" [attr-defined] +torch/_decomp/decompositions.py:359:16: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions.py:364:26: error: Name "torch.dtype" is not defined [name-defined] +torch/_decomp/decompositions.py:365:17: error: Module has no attribute "complex32" [attr-defined] +torch/_decomp/decompositions.py:366:16: error: Module has no attribute "float16" [attr-defined] +torch/_decomp/decompositions.py:367:19: error: Module has no attribute "complex64" [attr-defined] +torch/_decomp/decompositions.py:368:16: error: Module has no attribute "float32" [attr-defined] +torch/_decomp/decompositions.py:369:19: error: Module has no attribute "complex128" [attr-defined] +torch/_decomp/decompositions.py:370:16: error: Module has no attribute "float64" [attr-defined] +torch/_decomp/decompositions.py:402:11: error: Module has no attribute "softmax" [attr-defined] +torch/_decomp/decompositions.py:404:19: error: Module has no attribute "all" [attr-defined] +torch/_decomp/decompositions.py:405:13: error: Module has no attribute "zeros_like" [attr-defined] +torch/_decomp/decompositions.py:406:12: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:420:12: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:431:13: error: Module has no attribute "abs" [attr-defined] +torch/_decomp/decompositions.py:433:12: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:436:21: error: Module has no attribute "sign" [attr-defined] +torch/_decomp/decompositions.py:462:12: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:465:9: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:499:19: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:500:18: error: Module has no attribute "zeros_like" [attr-defined] +torch/_decomp/decompositions.py:501:18: error: Module has no attribute "scatter" [attr-defined] +torch/_decomp/decompositions.py:512:19: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:530:26: error: Module has no attribute "sigmoid" [attr-defined] +torch/_decomp/decompositions.py:535:12: error: Module has no attribute "cat" [attr-defined] +torch/_decomp/decompositions.py:631:27: error: Module has no attribute "maximum" [attr-defined] +torch/_decomp/decompositions.py:632:9: error: Module has no attribute "log1p" [attr-defined] +torch/_decomp/decompositions.py:633:18: error: Module has no attribute "maximum" [attr-defined] +torch/_decomp/decompositions.py:633:32: error: Module has no attribute "log" [attr-defined] +torch/_decomp/decompositions.py:650:46: error: Module has no attribute "clamp" [attr-defined] +torch/_decomp/decompositions.py:666:12: error: Module has no attribute "log1p" [attr-defined] +torch/_decomp/decompositions.py:666:24: error: Module has no attribute "exp" [attr-defined] +torch/_decomp/decompositions.py:679:42: error: Module has no attribute "sigmoid" [attr-defined] +torch/_decomp/decompositions.py:695:14: error: Module has no attribute "ones_like" [attr-defined] +torch/_decomp/decompositions.py:695:53: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_decomp/decompositions.py:697:14: error: Module has no attribute "ones_like" [attr-defined] +torch/_decomp/decompositions.py:697:53: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_decomp/decompositions.py:698:11: error: Module has no attribute "cat" [attr-defined] +torch/_decomp/decompositions.py:699:11: error: Module has no attribute "cat" [attr-defined] +torch/_decomp/decompositions.py:715:12: error: Module has no attribute "slice_scatter" [attr-defined] +torch/_decomp/decompositions.py:818:11: error: Module has no attribute "arange" [attr-defined] +torch/_decomp/decompositions.py:821:12: error: Module has no attribute "ones" [attr-defined] +torch/_decomp/decompositions.py:821:60: error: Module has no attribute "bool" [attr-defined] +torch/_decomp/decompositions.py:823:16: error: Module has no attribute "logical_and" [attr-defined] +torch/_decomp/decompositions.py:826:16: error: Module has no attribute "logical_and" [attr-defined] +torch/_decomp/decompositions.py:829:16: error: Module has no attribute "logical_and" [attr-defined] +torch/_decomp/decompositions.py:841:12: error: Module has no attribute "select_scatter" [attr-defined] +torch/_decomp/decompositions.py:850:12: error: Module has no attribute "diagonal_scatter" [attr-defined] +torch/_decomp/decompositions.py:854:59: error: Name "torch.dtype" is not defined [name-defined] +torch/_decomp/decompositions.py:865:65: error: Name "torch.dtype" is not defined [name-defined] +torch/_decomp/decompositions.py:868:45: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions.py:883:65: error: Name "torch.dtype" is not defined [name-defined] +torch/_decomp/decompositions.py:885:32: error: Module has no attribute "exp" [attr-defined] +torch/_decomp/decompositions.py:885:52: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions.py:897:25: error: Module has no attribute "arange" [attr-defined] +torch/_decomp/decompositions.py:897:45: error: Module has no attribute "int64" [attr-defined] +torch/_decomp/decompositions.py:976:33: error: Argument 2 to "pad" has incompatible type "tuple[int, int, int, int]"; expected "list[int]" [arg-type] +torch/_decomp/decompositions.py:1084:28: error: Argument 2 to "pad" has incompatible type "tuple[int, int, int, int]"; expected "list[int]" [arg-type] +torch/_decomp/decompositions.py:1112:16: error: Module has no attribute "squeeze_copy" [attr-defined] +torch/_decomp/decompositions.py:1114:11: error: Module has no attribute "arange" [attr-defined] +torch/_decomp/decompositions.py:1114:67: error: Module has no attribute "int32" [attr-defined] +torch/_decomp/decompositions.py:1133:16: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:1134:13: error: Module has no attribute "logical_and" [attr-defined] +torch/_decomp/decompositions.py:1139:16: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:1140:13: error: Module has no attribute "logical_and" [attr-defined] +torch/_decomp/decompositions.py:1161:21: error: Module has no attribute "zeros_like" [attr-defined] +torch/_decomp/decompositions.py:1161:76: error: Module has no attribute "bool" [attr-defined] +torch/_decomp/decompositions.py:1166:21: error: Module has no attribute "rand_like" [attr-defined] +torch/_decomp/decompositions.py:1170:24: error: Module has no attribute "ones_like" [attr-defined] +torch/_decomp/decompositions.py:1170:53: error: Module has no attribute "bool" [attr-defined] +torch/_decomp/decompositions.py:1182:27: error: Module has no attribute "half" [attr-defined] +torch/_decomp/decompositions.py:1188:24: error: Module has no attribute "exp" [attr-defined] +torch/_decomp/decompositions.py:1190:17: error: Module has no attribute "amax" [attr-defined] +torch/_decomp/decompositions.py:1191:24: error: Module has no attribute "exp" [attr-defined] +torch/_decomp/decompositions.py:1192:29: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions.py:1207:27: error: Module has no attribute "half" [attr-defined] +torch/_decomp/decompositions.py:1215:17: error: Module has no attribute "amax" [attr-defined] +torch/_decomp/decompositions.py:1217:25: error: Module has no attribute "log" [attr-defined] +torch/_decomp/decompositions.py:1217:35: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions.py:1217:45: error: Module has no attribute "exp" [attr-defined] +torch/_decomp/decompositions.py:1258:48: error: Module has no attribute "long" [attr-defined] +torch/_decomp/decompositions.py:1258:48: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_decomp/decompositions.py:1261:16: error: Module has no attribute "ones_like" [attr-defined] +torch/_decomp/decompositions.py:1266:30: error: Argument 1 to "_unsqueeze_to_dim" has incompatible type "bool"; expected "Tensor" [arg-type] +torch/_decomp/decompositions.py:1299:41: error: Module has no attribute "Size" [attr-defined] +torch/_decomp/decompositions.py:1368:16: error: Module has no attribute "cat" [attr-defined] +torch/_decomp/decompositions.py:1370:9: error: Module has no attribute "cat" [attr-defined] +torch/_decomp/decompositions.py:1386:39: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_decomp/decompositions.py:1433:48: error: Module has no attribute "int64" [attr-defined] +torch/_decomp/decompositions.py:1476:19: error: Module has no attribute "mm" [attr-defined] +torch/_decomp/decompositions.py:1516:19: error: Module has no attribute "mv" [attr-defined] +torch/_decomp/decompositions.py:1563:10: error: Module has no attribute "mul" [attr-defined] +torch/_decomp/decompositions.py:1572:22: error: Module has no attribute "mul" [attr-defined] +torch/_decomp/decompositions.py:1573:22: error: Module has no attribute "mul" [attr-defined] +torch/_decomp/decompositions.py:1574:18: error: Module has no attribute "mul" [attr-defined] +torch/_decomp/decompositions.py:1581:18: error: Module has no attribute "mul" [attr-defined] +torch/_decomp/decompositions.py:1583:17: error: Module has no attribute "ones" [attr-defined] +torch/_decomp/decompositions.py:1592:13: error: Module has no attribute "mul" [attr-defined] +torch/_decomp/decompositions.py:1593:15: error: Module has no attribute "mul" [attr-defined] +torch/_decomp/decompositions.py:1664:47: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_decomp/decompositions.py:1701:9: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions.py:1702:10: error: Module has no attribute "mul" [attr-defined] +torch/_decomp/decompositions.py:1703:10: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions.py:1704:10: error: Module has no attribute "mul" [attr-defined] +torch/_decomp/decompositions.py:1715:24: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions.py:1721:22: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions.py:1777:34: error: Module has no attribute "float32" [attr-defined] +torch/_decomp/decompositions.py:1777:49: error: Module has no attribute "complex64" [attr-defined] +torch/_decomp/decompositions.py:1778:23: error: Module has no attribute "finfo" [attr-defined] +torch/_decomp/decompositions.py:1778:35: error: Module has no attribute "float32" [attr-defined] +torch/_decomp/decompositions.py:1780:23: error: Module has no attribute "finfo" [attr-defined] +torch/_decomp/decompositions.py:1780:35: error: Module has no attribute "float64" [attr-defined] +torch/_decomp/decompositions.py:1784:19: error: Module has no attribute "rsqrt" [attr-defined] +torch/_decomp/decompositions.py:1788:13: error: Module has no attribute "pow" [attr-defined] +torch/_decomp/decompositions.py:1801:9: error: Module has no attribute "channels_last" [attr-defined] +torch/_decomp/decompositions.py:1802:9: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_decomp/decompositions.py:1829:42: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_decomp/decompositions.py:1831:60: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_decomp/decompositions.py:1833:52: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_decomp/decompositions.py:1872:19: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions.py:1878:24: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions.py:1908:28: error: Module has no attribute "var_mean" [attr-defined] +torch/_decomp/decompositions.py:1911:16: error: Module has no attribute "rsqrt" [attr-defined] +torch/_decomp/decompositions.py:1915:21: error: Module has no attribute "squeeze" [attr-defined] +torch/_decomp/decompositions.py:1916:21: error: Module has no attribute "squeeze" [attr-defined] +torch/_decomp/decompositions.py:1926:28: error: Module has no attribute "squeeze" [attr-defined] +torch/_decomp/decompositions.py:1938:23: error: Module has no attribute "sqrt" [attr-defined] +torch/_decomp/decompositions.py:2152:12: error: Module has no attribute "empty" [attr-defined] +torch/_decomp/decompositions.py:2153:29: error: Module has no attribute "uint8" [attr-defined] +torch/_decomp/decompositions.py:2243:13: error: Module has no attribute "rand_like" [attr-defined] +torch/_decomp/decompositions.py:2243:50: error: Module has no attribute "uint8" [attr-defined] +torch/_decomp/decompositions.py:2253:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_decomp/decompositions.py:2255:22: error: Name "torch.device" is not defined [name-defined] +torch/_decomp/decompositions.py:2258:29: error: Name "torch.memory_format" is not defined [name-defined] +torch/_decomp/decompositions.py:2260:36: error: Module has no attribute "strided" [attr-defined] +torch/_decomp/decompositions.py:2273:20: error: Module has no attribute "scalar_tensor" [attr-defined] +torch/_decomp/decompositions.py:2287:16: error: Module has no attribute "clone" [attr-defined] +torch/_decomp/decompositions.py:2327:54: error: Module has no attribute "uint8" [attr-defined] +torch/_decomp/decompositions.py:2332:37: error: Module has no attribute "uint8" [attr-defined] +torch/_decomp/decompositions.py:2424:18: error: Module has no attribute "rsqrt" [attr-defined] +torch/_decomp/decompositions.py:2436:23: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions.py:2436:23: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_decomp/decompositions.py:2437:13: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions.py:2437:13: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_decomp/decompositions.py:2441:9: error: Module has no attribute "mul" [attr-defined] +torch/_decomp/decompositions.py:2441:9: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_decomp/decompositions.py:2595:16: error: Module has no attribute "div" [attr-defined] +torch/_decomp/decompositions.py:2598:16: error: Module has no attribute "div" [attr-defined] +torch/_decomp/decompositions.py:2601:18: error: Module has no attribute "arange" [attr-defined] +torch/_decomp/decompositions.py:2601:62: error: Module has no attribute "int64" [attr-defined] +torch/_decomp/decompositions.py:2614:21: error: Module has no attribute "arange" [attr-defined] +torch/_decomp/decompositions.py:2614:66: error: Module has no attribute "int64" [attr-defined] +torch/_decomp/decompositions.py:2619:22: error: Module has no attribute "scalar_tensor" [attr-defined] +torch/_decomp/decompositions.py:2622:19: error: Module has no attribute "minimum" [attr-defined] +torch/_decomp/decompositions.py:2638:16: error: Module has no attribute "mean" [attr-defined] +torch/_decomp/decompositions.py:2650:20: error: Module has no attribute "masked_fill" [attr-defined] +torch/_decomp/decompositions.py:2704:26: error: Module has no attribute "int64" [attr-defined] +torch/_decomp/decompositions.py:2753:26: error: Module has no attribute "int64" [attr-defined] +torch/_decomp/decompositions.py:2852:18: error: Incompatible types in assignment (expression has type "int | float | complex", variable has type "Tensor") [assignment] +torch/_decomp/decompositions.py:2929:11: error: Module has no attribute "minimum" [attr-defined] +torch/_decomp/decompositions.py:2930:9: error: Module has no attribute "exp" [attr-defined] +torch/_decomp/decompositions.py:2930:20: error: Module has no attribute "abs" [attr-defined] +torch/_decomp/decompositions.py:2935:18: error: Module has no attribute "log1p" [attr-defined] +torch/_decomp/decompositions.py:2944:25: error: Name "torch.Generator" is not defined [name-defined] +torch/_decomp/decompositions.py:3062:26: error: Module has no attribute "arange" [attr-defined] +torch/_decomp/decompositions.py:3062:52: error: Module has no attribute "float32" [attr-defined] +torch/_decomp/decompositions.py:3063:64: error: Module has no attribute "int64" [attr-defined] +torch/_decomp/decompositions.py:3177:29: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_decomp/decompositions.py:3222:12: error: Module has no attribute "concat" [attr-defined] +torch/_decomp/decompositions.py:3271:11: error: Module has no attribute "cat" [attr-defined] +torch/_decomp/decompositions.py:3272:18: error: Module has no attribute "cat" [attr-defined] +torch/_decomp/decompositions.py:3308:11: error: Module has no attribute "cat" [attr-defined] +torch/_decomp/decompositions.py:3320:14: error: Module has no attribute "zeros" [attr-defined] +torch/_decomp/decompositions.py:3321:14: error: Module has no attribute "zeros" [attr-defined] +torch/_decomp/decompositions.py:3393:21: error: Module has no attribute "cat" [attr-defined] +torch/_decomp/decompositions.py:3393:21: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_decomp/decompositions.py:3398:21: error: Module has no attribute "dropout" [attr-defined] +torch/_decomp/decompositions.py:3430:51: error: Module has no attribute "tanh" [attr-defined] +torch/_decomp/decompositions.py:3432:17: error: Module has no attribute "stack" [attr-defined] +torch/_decomp/decompositions.py:3461:51: error: Module has no attribute "relu" [attr-defined] +torch/_decomp/decompositions.py:3463:17: error: Module has no attribute "stack" [attr-defined] +torch/_decomp/decompositions.py:3495:37: error: Module has no attribute "relu" [attr-defined] +torch/_decomp/decompositions.py:3498:17: error: Module has no attribute "stack" [attr-defined] +torch/_decomp/decompositions.py:3530:37: error: Module has no attribute "tanh" [attr-defined] +torch/_decomp/decompositions.py:3533:17: error: Module has no attribute "stack" [attr-defined] +torch/_decomp/decompositions.py:3572:11: error: Module has no attribute "cat" [attr-defined] +torch/_decomp/decompositions.py:3617:18: error: Module has no attribute "concat" [attr-defined] +torch/_decomp/decompositions.py:3620:18: error: Module has no attribute "concat" [attr-defined] +torch/_decomp/decompositions.py:3635:22: error: Module has no attribute "cat" [attr-defined] +torch/_decomp/decompositions.py:3637:11: error: Module has no attribute "cat" [attr-defined] +torch/_decomp/decompositions.py:3657:16: error: Module has no attribute "_get_mkldnn_enabled" [attr-defined] +torch/_decomp/decompositions.py:3666:22: error: Module has no attribute "device" [attr-defined] +torch/_decomp/decompositions.py:3671:30: error: Module has no attribute "float" [attr-defined] +torch/_decomp/decompositions.py:3671:43: error: Module has no attribute "bfloat16" [attr-defined] +torch/_decomp/decompositions.py:3722:17: error: Module has no attribute "stack" [attr-defined] +torch/_decomp/decompositions.py:3755:17: error: Module has no attribute "stack" [attr-defined] +torch/_decomp/decompositions.py:3803:17: error: Module has no attribute "stack" [attr-defined] +torch/_decomp/decompositions.py:3833:17: error: Module has no attribute "stack" [attr-defined] +torch/_decomp/decompositions.py:3935:14: error: Module has no attribute "int32" [attr-defined] +torch/_decomp/decompositions.py:3938:12: error: Module has no attribute "clamp" [attr-defined] +torch/_decomp/decompositions.py:3938:43: error: Module has no attribute "uint8" [attr-defined] +torch/_decomp/decompositions.py:3942:18: error: Module has no attribute "stack" [attr-defined] +torch/_decomp/decompositions.py:3944:18: error: Module has no attribute "arange" [attr-defined] +torch/_decomp/decompositions.py:3972:13: error: Module has no attribute "arange" [attr-defined] +torch/_decomp/decompositions.py:3976:22: error: Module has no attribute "int64" [attr-defined] +torch/_decomp/decompositions.py:3999:18: error: Module has no attribute "mul" [attr-defined] +torch/_decomp/decompositions.py:4011:25: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_decomp/decompositions.py:4050:33: error: Module has no attribute "long" [attr-defined] +torch/_decomp/decompositions.py:4050:45: error: Module has no attribute "int" [attr-defined] +torch/_decomp/decompositions.py:4055:23: error: Module has no attribute "bool" [attr-defined] +torch/_decomp/decompositions.py:4078:33: error: Module has no attribute "long" [attr-defined] +torch/_decomp/decompositions.py:4078:45: error: Module has no attribute "int" [attr-defined] +torch/_decomp/decompositions.py:4083:23: error: Module has no attribute "bool" [attr-defined] +torch/_decomp/decompositions.py:4124:19: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:4128:15: error: Module has no attribute "gather" [attr-defined] +torch/_decomp/decompositions.py:4130:14: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:4139:16: error: Module has no attribute "gather" [attr-defined] +torch/_decomp/decompositions.py:4140:16: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:4143:24: error: "bool" has no attribute "sum" [attr-defined] +torch/_decomp/decompositions.py:4197:12: error: Incompatible return value type (got "float", expected "Tensor") [return-value] +torch/_decomp/decompositions.py:4201:12: error: Incompatible return value type (got "float", expected "Tensor") [return-value] +torch/_decomp/decompositions.py:4207:20: error: Module has no attribute "device" [attr-defined] +torch/_decomp/decompositions.py:4208:15: error: Module has no attribute "stack" [attr-defined] +torch/_decomp/decompositions.py:4209:15: error: Module has no attribute "stack" [attr-defined] +torch/_decomp/decompositions.py:4212:18: error: Module has no attribute "unbind" [attr-defined] +torch/_decomp/decompositions.py:4213:18: error: Module has no attribute "unbind" [attr-defined] +torch/_decomp/decompositions.py:4217:42: error: Argument 1 to "_upsample_cubic_convolution2" has incompatible type "float"; expected "Tensor" [arg-type] +torch/_decomp/decompositions.py:4231:19: error: Module has no attribute "add" [attr-defined] +torch/_decomp/decompositions.py:4235:49: error: Name "torch.dtype" is not defined [name-defined] +torch/_decomp/decompositions.py:4235:70: error: Name "torch.device" is not defined [name-defined] +torch/_decomp/decompositions.py:4238:16: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_decomp/decompositions.py:4241:12: error: Module has no attribute "linspace" [attr-defined] +torch/_decomp/decompositions.py:4252:16: error: Module has no attribute "ones" [attr-defined] +torch/_decomp/decompositions.py:4255:50: error: Argument "pad" to "pad" has incompatible type "tuple[int, int]"; expected "list[int]" [arg-type] +torch/_decomp/decompositions.py:4256:50: error: Argument "pad" to "pad" has incompatible type "tuple[int, int]"; expected "list[int]" [arg-type] +torch/_decomp/decompositions.py:4257:54: error: Argument "pad" to "pad" has incompatible type "tuple[int, int]"; expected "list[int]" [arg-type] +torch/_decomp/decompositions.py:4268:16: error: Module has no attribute "ones" [attr-defined] +torch/_decomp/decompositions.py:4271:50: error: Argument "pad" to "pad" has incompatible type "tuple[int, int]"; expected "list[int]" [arg-type] +torch/_decomp/decompositions.py:4272:50: error: Argument "pad" to "pad" has incompatible type "tuple[int, int]"; expected "list[int]" [arg-type] +torch/_decomp/decompositions.py:4273:50: error: Argument "pad" to "pad" has incompatible type "tuple[int, int]"; expected "list[int]" [arg-type] +torch/_decomp/decompositions.py:4274:54: error: Argument "pad" to "pad" has incompatible type "tuple[int, int]"; expected "list[int]" [arg-type] +torch/_decomp/decompositions.py:4341:16: error: Incompatible return value type (got "float", expected "Tensor") [return-value] +torch/_decomp/decompositions.py:4348:20: error: Module has no attribute "zeros_like" [attr-defined] +torch/_decomp/decompositions.py:4351:19: error: "float" has no attribute "abs" [attr-defined] +torch/_decomp/decompositions.py:4352:17: error: Module has no attribute "fmod" [attr-defined] +torch/_decomp/decompositions.py:4353:58: error: Module has no attribute "int8" [attr-defined] +torch/_decomp/decompositions.py:4354:16: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:4362:20: error: Module has no attribute "clamp" [attr-defined] +torch/_decomp/decompositions.py:4368:20: error: Module has no attribute "clamp" [attr-defined] +torch/_decomp/decompositions.py:4387:16: error: Module has no attribute "logical_and" [attr-defined] +torch/_decomp/decompositions.py:4388:22: error: Module has no attribute "logical_and" [attr-defined] +torch/_decomp/decompositions.py:4391:13: error: Module has no attribute "arange" [attr-defined] +torch/_decomp/decompositions.py:4392:13: error: Module has no attribute "arange" [attr-defined] +torch/_decomp/decompositions.py:4402:13: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:4403:35: error: Module has no attribute "int64" [attr-defined] +torch/_decomp/decompositions.py:4571:16: error: Module has no attribute "dot" [attr-defined] +torch/_decomp/decompositions.py:4573:16: error: Module has no attribute "mv" [attr-defined] +torch/_decomp/decompositions.py:4575:16: error: Module has no attribute "squeeze" [attr-defined] +torch/_decomp/decompositions.py:4575:30: error: Module has no attribute "mm" [attr-defined] +torch/_decomp/decompositions.py:4575:39: error: Module has no attribute "unsqueeze" [attr-defined] +torch/_decomp/decompositions.py:4577:16: error: Module has no attribute "mm" [attr-defined] +torch/_decomp/decompositions.py:4709:9: error: Module has no attribute "arange" [attr-defined] +torch/_decomp/decompositions.py:4710:9: error: Module has no attribute "arange" [attr-defined] +torch/_decomp/decompositions.py:4723:14: error: Module has no attribute "int64" [attr-defined] +torch/_decomp/decompositions.py:4724:14: error: Module has no attribute "int64" [attr-defined] +torch/_decomp/decompositions.py:4733:23: error: Module has no attribute "uint8" [attr-defined] +torch/_decomp/decompositions.py:4738:47: error: Module has no attribute "sign" [attr-defined] +torch/_decomp/decompositions.py:4738:71: error: Module has no attribute "int16" [attr-defined] +torch/_decomp/decompositions.py:4742:47: error: Module has no attribute "sign" [attr-defined] +torch/_decomp/decompositions.py:4742:71: error: Module has no attribute "int16" [attr-defined] +torch/_decomp/decompositions.py:4747:17: error: Module has no attribute "clamp" [attr-defined] +torch/_decomp/decompositions.py:4748:17: error: Module has no attribute "clamp" [attr-defined] +torch/_decomp/decompositions.py:4754:27: error: Module has no attribute "uint8" [attr-defined] +torch/_decomp/decompositions.py:4760:23: error: Module has no attribute "uint8" [attr-defined] +torch/_decomp/decompositions.py:4807:19: error: Module has no attribute "arange" [attr-defined] +torch/_decomp/decompositions.py:4824:19: error: Module has no attribute "arange" [attr-defined] +torch/_decomp/decompositions.py:4825:16: error: Module has no attribute "clamp" [attr-defined] +torch/_decomp/decompositions.py:4878:24: error: Module has no attribute "arange" [attr-defined] +torch/_decomp/decompositions.py:4885:16: error: Module has no attribute "logical_and" [attr-defined] +torch/_decomp/decompositions.py:4957:12: error: Module has no attribute "amin" [attr-defined] +torch/_decomp/decompositions.py:4959:12: error: Module has no attribute "amax" [attr-defined] +torch/_decomp/decompositions.py:4966:21: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:4966:33: error: Module has no attribute "isnan" [attr-defined] +torch/_decomp/decompositions.py:4974:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_decomp/decompositions.py:4975:13: error: Name "torch.layout" is not defined [name-defined] +torch/_decomp/decompositions.py:4975:28: error: Module has no attribute "strided" [attr-defined] +torch/_decomp/decompositions.py:4976:22: error: Name "torch.device" is not defined [name-defined] +torch/_decomp/decompositions.py:4989:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_decomp/decompositions.py:4990:13: error: Name "torch.layout" is not defined [name-defined] +torch/_decomp/decompositions.py:4990:28: error: Module has no attribute "strided" [attr-defined] +torch/_decomp/decompositions.py:4991:22: error: Name "torch.device" is not defined [name-defined] +torch/_decomp/decompositions.py:5037:9: error: Module has no attribute "gather" [attr-defined] +torch/_decomp/decompositions.py:5043:11: error: Module has no attribute "arange" [attr-defined] +torch/_decomp/decompositions.py:5044:9: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:5075:11: error: Module has no attribute "arange" [attr-defined] +torch/_decomp/decompositions.py:5077:15: error: Module has no attribute "amin" [attr-defined] +torch/_decomp/decompositions.py:5077:26: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:5081:13: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:5082:9: error: Module has no attribute "gather" [attr-defined] +torch/_decomp/decompositions.py:5084:13: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:5085:17: error: Module has no attribute "any" [attr-defined] +torch/_decomp/decompositions.py:5091:9: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:5128:9: error: Module has no attribute "is_floating_point" [attr-defined] +torch/_decomp/decompositions.py:5179:35: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_decomp/decompositions.py:5201:14: error: Module has no attribute "bmm" [attr-defined] +torch/_decomp/decompositions.py:5215:12: error: Module has no attribute "div" [attr-defined] +torch/_decomp/decompositions.py:5227:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_decomp/decompositions.py:5253:18: error: Module has no attribute "float" [attr-defined] +torch/_decomp/decompositions.py:5253:44: error: Module has no attribute "bfloat16" [attr-defined] +torch/_decomp/decompositions.py:5263:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_decomp/decompositions.py:5266:20: error: Module has no attribute "ne" [attr-defined] +torch/_decomp/decompositions.py:5268:20: error: Module has no attribute "eq" [attr-defined] +torch/_decomp/decompositions.py:5282:25: error: Name "torch.Generator" is not defined [name-defined] +torch/_decomp/decompositions.py:5285:17: error: Module has no attribute "rand" [attr-defined] +torch/_decomp/decompositions.py:5285:47: error: Module has no attribute "float32" [attr-defined] +torch/_decomp/decompositions.py:5287:17: error: Module has no attribute "rand" [attr-defined] +torch/_decomp/decompositions.py:5290:19: error: Module has no attribute "float32" [attr-defined] +torch/_decomp/decompositions.py:5299:16: error: Module has no attribute "empty_like" [attr-defined] +torch/_decomp/decompositions.py:5299:49: error: Module has no attribute "bool" [attr-defined] +torch/_decomp/decompositions.py:5314:24: error: Module has no attribute "cat" [attr-defined] +torch/_decomp/decompositions.py:5315:41: error: Module has no attribute "sort" [attr-defined] +torch/_decomp/decompositions.py:5318:26: error: Module has no attribute "constant_pad_nd" [attr-defined] +torch/_decomp/decompositions.py:5323:16: error: Module has no attribute "empty_like" [attr-defined] +torch/_decomp/decompositions.py:5328:35: error: Module has no attribute "sort" [attr-defined] +torch/_decomp/decompositions.py:5329:15: error: Module has no attribute "searchsorted" [attr-defined] +torch/_decomp/decompositions.py:5330:20: error: Module has no attribute "where" [attr-defined] +torch/_decomp/decompositions.py:5346:25: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_decomp/decompositions.py:5347:25: error: Module has no attribute "preserve_format" [attr-defined] +torch/_meta_registrations.py:99:9: error: Module has no attribute "complex32" [attr-defined] +torch/_meta_registrations.py:99:26: error: Module has no attribute "half" [attr-defined] +torch/_meta_registrations.py:100:9: error: Module has no attribute "cfloat" [attr-defined] +torch/_meta_registrations.py:100:23: error: Module has no attribute "float" [attr-defined] +torch/_meta_registrations.py:101:9: error: Module has no attribute "cdouble" [attr-defined] +torch/_meta_registrations.py:101:24: error: Module has no attribute "double" [attr-defined] +torch/_meta_registrations.py:123:12: error: Module has no attribute "strided" [attr-defined] +torch/_meta_registrations.py:140:13: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_meta_registrations.py:150:26: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_meta_registrations.py:151:30: error: Module has no attribute "dtype" [attr-defined] +torch/_meta_registrations.py:162:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:177:24: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:213:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:213:49: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:221:14: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:222:15: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:222:65: error: Module has no attribute "int64" [attr-defined] +torch/_meta_registrations.py:234:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:234:49: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:279:50: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:379:65: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:392:35: error: Module has no attribute "Size" [attr-defined] +torch/_meta_registrations.py:399:11: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:404:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:415:11: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:425:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:437:11: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:446:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:454:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:474:42: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:484:49: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:512:45: error: Module has no attribute "_debug_has_internal_overlap" [attr-defined] +torch/_meta_registrations.py:552:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_meta_registrations.py:568:31: error: Module has no attribute "int8" [attr-defined] +torch/_meta_registrations.py:568:59: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:584:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_meta_registrations.py:593:30: error: Module has no attribute "int8" [attr-defined] +torch/_meta_registrations.py:593:58: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:613:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_meta_registrations.py:628:30: error: Module has no attribute "int8" [attr-defined] +torch/_meta_registrations.py:628:58: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:645:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_meta_registrations.py:652:9: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:653:9: error: Module has no attribute "float16" [attr-defined] +torch/_meta_registrations.py:654:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/_meta_registrations.py:655:9: error: Module has no attribute "int8" [attr-defined] +torch/_meta_registrations.py:656:9: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_meta_registrations.py:661:49: error: Module has no attribute "int8" [attr-defined] +torch/_meta_registrations.py:661:61: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_meta_registrations.py:675:13: error: Module has no attribute "float16" [attr-defined] +torch/_meta_registrations.py:676:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/_meta_registrations.py:677:13: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:678:13: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_meta_registrations.py:696:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:696:49: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:740:16: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:744:27: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:770:44: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:786:44: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:799:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:804:5: error: Module has no attribute "_resize_output_" [attr-defined] +torch/_meta_registrations.py:805:22: error: Module has no attribute "angle" [attr-defined] +torch/_meta_registrations.py:832:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:943:23: error: Module has no attribute "float" [attr-defined] +torch/_meta_registrations.py:943:36: error: Module has no attribute "double" [attr-defined] +torch/_meta_registrations.py:943:50: error: Module has no attribute "cfloat" [attr-defined] +torch/_meta_registrations.py:943:64: error: Module has no attribute "cdouble" [attr-defined] +torch/_meta_registrations.py:1042:39: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:1072:16: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:1099:54: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:1148:12: error: Module has no attribute "empty_strided" [attr-defined] +torch/_meta_registrations.py:1165:45: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:1179:10: error: Module has no attribute "empty_strided" [attr-defined] +torch/_meta_registrations.py:1185:52: error: Module has no attribute "int" [attr-defined] +torch/_meta_registrations.py:1186:50: error: Module has no attribute "int" [attr-defined] +torch/_meta_registrations.py:1226:12: error: Module has no attribute "empty_strided" [attr-defined] +torch/_meta_registrations.py:1279:10: error: Module has no attribute "empty_strided" [attr-defined] +torch/_meta_registrations.py:1289:39: error: Module has no attribute "int" [attr-defined] +torch/_meta_registrations.py:1293:37: error: Module has no attribute "int" [attr-defined] +torch/_meta_registrations.py:1318:25: error: Module has no attribute "int" [attr-defined] +torch/_meta_registrations.py:1341:14: error: Module has no attribute "empty_strided" [attr-defined] +torch/_meta_registrations.py:1369:29: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:1454:10: error: Module has no attribute "empty_strided" [attr-defined] +torch/_meta_registrations.py:1460:44: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:1581:15: error: Module has no attribute "empty_strided" [attr-defined] +torch/_meta_registrations.py:1588:11: error: Module has no attribute "empty_strided" [attr-defined] +torch/_meta_registrations.py:1594:45: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:1595:43: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:1660:20: error: Module has no attribute "strided" [attr-defined] +torch/_meta_registrations.py:1662:20: error: Module has no attribute "empty_strided" [attr-defined] +torch/_meta_registrations.py:1668:30: error: Module has no attribute "empty_strided" [attr-defined] +torch/_meta_registrations.py:1674:22: error: Module has no attribute "sparse_csr" [attr-defined] +torch/_meta_registrations.py:1674:54: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_meta_registrations.py:1675:20: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:1693:46: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:1781:12: error: Module has no attribute "empty_strided" [attr-defined] +torch/_meta_registrations.py:1868:24: error: Module has no attribute "bool" [attr-defined] +torch/_meta_registrations.py:1979:24: error: Module has no attribute "bool" [attr-defined] +torch/_meta_registrations.py:1989:14: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:1990:14: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:2105:24: error: Module has no attribute "bool" [attr-defined] +torch/_meta_registrations.py:2183:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:2221:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:2221:49: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:2232:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:2232:49: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:2238:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:2261:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:2261:41: error: Module has no attribute "bool" [attr-defined] +torch/_meta_registrations.py:2262:13: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:2267:39: error: Name "torch.dtype" is not defined [name-defined] +torch/_meta_registrations.py:2280:30: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:2281:33: error: Module has no attribute "float16" [attr-defined] +torch/_meta_registrations.py:2281:48: error: Module has no attribute "bfloat16" [attr-defined] +torch/_meta_registrations.py:2431:62: error: Module has no attribute "channels_last" [attr-defined] +torch/_meta_registrations.py:2455:20: error: Module has no attribute "channels_last" [attr-defined] +torch/_meta_registrations.py:2456:53: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:2457:20: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:2458:16: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:2504:4: error: Module has no attribute "_has_mkldnn" [attr-defined] +torch/_meta_registrations.py:2526:29: error: Module has no attribute "channels_last" [attr-defined] +torch/_meta_registrations.py:2528:33: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_meta_registrations.py:2538:8: error: Module has no attribute "has_mkl" [attr-defined] +torch/_meta_registrations.py:2587:13: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:2588:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/_meta_registrations.py:2589:13: error: Module has no attribute "uint8" [attr-defined] +torch/_meta_registrations.py:2590:13: error: Module has no attribute "int8" [attr-defined] +torch/_meta_registrations.py:2591:13: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_meta_registrations.py:2598:16: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:2599:16: error: Module has no attribute "channels_last" [attr-defined] +torch/_meta_registrations.py:2600:16: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_meta_registrations.py:2654:13: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:2655:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/_meta_registrations.py:2656:13: error: Module has no attribute "int8" [attr-defined] +torch/_meta_registrations.py:2657:13: error: Module has no attribute "uint8" [attr-defined] +torch/_meta_registrations.py:2658:13: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_meta_registrations.py:2691:13: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:2692:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/_meta_registrations.py:2693:13: error: Module has no attribute "uint8" [attr-defined] +torch/_meta_registrations.py:2694:13: error: Module has no attribute "int8" [attr-defined] +torch/_meta_registrations.py:2695:13: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_meta_registrations.py:2734:25: error: Module has no attribute "channels_last" [attr-defined] +torch/_meta_registrations.py:2739:16: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:2751:25: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:2751:40: error: Module has no attribute "float16" [attr-defined] +torch/_meta_registrations.py:2751:55: error: Module has no attribute "bfloat16" [attr-defined] +torch/_meta_registrations.py:2755:24: error: Module has no attribute "uint8" [attr-defined] +torch/_meta_registrations.py:2758:35: error: Module has no attribute "int64" [attr-defined] +torch/_meta_registrations.py:2802:29: error: Module has no attribute "uint8" [attr-defined] +torch/_meta_registrations.py:2802:42: error: Module has no attribute "uint16" [attr-defined] +torch/_meta_registrations.py:2802:56: error: Module has no attribute "uint32" [attr-defined] +torch/_meta_registrations.py:2802:70: error: Module has no attribute "uint64" [attr-defined] +torch/_meta_registrations.py:2850:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:2968:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:3000:29: error: Module has no attribute "uint8" [attr-defined] +torch/_meta_registrations.py:3000:42: error: Module has no attribute "uint16" [attr-defined] +torch/_meta_registrations.py:3000:56: error: Module has no attribute "uint32" [attr-defined] +torch/_meta_registrations.py:3000:70: error: Module has no attribute "uint64" [attr-defined] +torch/_meta_registrations.py:3156:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:3190:21: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:3192:25: error: Module has no attribute "channels_last" [attr-defined] +torch/_meta_registrations.py:3200:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:3251:52: error: Module has no attribute "int64" [attr-defined] +torch/_meta_registrations.py:3257:52: error: Module has no attribute "int64" [attr-defined] +torch/_meta_registrations.py:3322:48: error: Module has no attribute "int64" [attr-defined] +torch/_meta_registrations.py:3357:53: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:3371:12: error: Module has no attribute "empty_strided" [attr-defined] +torch/_meta_registrations.py:3374:15: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:3388:33: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:3388:45: error: Module has no attribute "int" [attr-defined] +torch/_meta_registrations.py:3388:56: error: Module has no attribute "int8" [attr-defined] +torch/_meta_registrations.py:3388:68: error: Module has no attribute "bool" [attr-defined] +torch/_meta_registrations.py:3391:32: error: Module has no attribute "int8" [attr-defined] +torch/_meta_registrations.py:3391:44: error: Module has no attribute "bool" [attr-defined] +torch/_meta_registrations.py:3624:17: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:3641:20: error: Module has no attribute "int8" [attr-defined] +torch/_meta_registrations.py:3645:20: error: Module has no attribute "int8" [attr-defined] +torch/_meta_registrations.py:3655:54: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:3662:20: error: Module has no attribute "uint8" [attr-defined] +torch/_meta_registrations.py:3674:15: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:3682:20: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:3689:15: error: Module has no attribute "uint8" [attr-defined] +torch/_meta_registrations.py:3698:21: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:3698:36: error: Module has no attribute "float16" [attr-defined] +torch/_meta_registrations.py:3698:51: error: Module has no attribute "bfloat16" [attr-defined] +torch/_meta_registrations.py:3702:20: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:3713:21: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:3713:36: error: Module has no attribute "float16" [attr-defined] +torch/_meta_registrations.py:3713:51: error: Module has no attribute "bfloat16" [attr-defined] +torch/_meta_registrations.py:3717:20: error: Module has no attribute "uint8" [attr-defined] +torch/_meta_registrations.py:3728:21: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:3728:36: error: Module has no attribute "float16" [attr-defined] +torch/_meta_registrations.py:3728:51: error: Module has no attribute "bfloat16" [attr-defined] +torch/_meta_registrations.py:3732:20: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:3856:26: error: Module has no attribute "uint8" [attr-defined] +torch/_meta_registrations.py:3860:62: error: Module has no attribute "float" [attr-defined] +torch/_meta_registrations.py:3865:39: error: Module has no attribute "bfloat16" [attr-defined] +torch/_meta_registrations.py:3871:65: error: Module has no attribute "uint8" [attr-defined] +torch/_meta_registrations.py:3873:56: error: Module has no attribute "float" [attr-defined] +torch/_meta_registrations.py:3886:22: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:3897:21: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:3897:36: error: Module has no attribute "float16" [attr-defined] +torch/_meta_registrations.py:3897:51: error: Module has no attribute "bfloat16" [attr-defined] +torch/_meta_registrations.py:3902:20: error: Module has no attribute "int8" [attr-defined] +torch/_meta_registrations.py:3957:16: error: Module has no attribute "zeros_like" [attr-defined] +torch/_meta_registrations.py:3960:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:3960:47: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:3980:27: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:3980:39: error: Module has no attribute "int" [attr-defined] +torch/_meta_registrations.py:3984:27: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:3984:39: error: Module has no attribute "int" [attr-defined] +torch/_meta_registrations.py:4026:27: error: Module has no attribute "float" [attr-defined] +torch/_meta_registrations.py:4026:55: error: Module has no attribute "half" [attr-defined] +torch/_meta_registrations.py:4085:16: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:4125:45: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:4293:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:4314:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:4321:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:4333:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:4353:24: error: Module has no attribute "bool" [attr-defined] +torch/_meta_registrations.py:4353:36: error: Module has no attribute "uint8" [attr-defined] +torch/_meta_registrations.py:4367:14: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:4367:51: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:4403:29: error: Module has no attribute "float16" [attr-defined] +torch/_meta_registrations.py:4403:62: error: Module has no attribute "bfloat16" [attr-defined] +torch/_meta_registrations.py:4404:28: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:4521:25: error: Module has no attribute "channels_last" [attr-defined] +torch/_meta_registrations.py:4792:25: error: Module has no attribute "channels_last" [attr-defined] +torch/_meta_registrations.py:4797:27: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:4868:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:4900:9: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:4906:9: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:4908:19: error: Module has no attribute "int64" [attr-defined] +torch/_meta_registrations.py:4987:9: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:4992:9: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:4994:19: error: Module has no attribute "int64" [attr-defined] +torch/_meta_registrations.py:5082:67: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_meta_registrations.py:5089:27: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_meta_registrations.py:5096:48: error: Module has no attribute "int64" [attr-defined] +torch/_meta_registrations.py:5099:36: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_meta_registrations.py:5100:44: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_meta_registrations.py:5190:67: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_meta_registrations.py:5197:27: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_meta_registrations.py:5203:50: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_meta_registrations.py:5217:25: error: Module has no attribute "strided" [attr-defined] +torch/_meta_registrations.py:5284:22: error: Module has no attribute "zeros_like" [attr-defined] +torch/_meta_registrations.py:5284:60: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:5287:17: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:5287:54: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:5325:22: error: Module has no attribute "zeros_like" [attr-defined] +torch/_meta_registrations.py:5330:17: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:5341:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5354:18: error: Module has no attribute "sparse_coo" [attr-defined] +torch/_meta_registrations.py:5360:15: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5402:17: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_meta_registrations.py:5406:18: error: Module has no attribute "strided" [attr-defined] +torch/_meta_registrations.py:5407:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5424:17: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_meta_registrations.py:5428:18: error: Module has no attribute "strided" [attr-defined] +torch/_meta_registrations.py:5429:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5486:28: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:5486:57: error: Module has no attribute "int" [attr-defined] +torch/_meta_registrations.py:5526:28: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:5526:57: error: Module has no attribute "int" [attr-defined] +torch/_meta_registrations.py:5658:17: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:5659:17: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5661:15: error: Module has no attribute "float" [attr-defined] +torch/_meta_registrations.py:5672:22: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5678:22: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5687:16: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5687:38: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:5688:18: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5688:40: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:5690:16: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5690:39: error: Module has no attribute "uint64" [attr-defined] +torch/_meta_registrations.py:5691:18: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5691:40: error: Module has no attribute "uint64" [attr-defined] +torch/_meta_registrations.py:5712:15: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:5719:15: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5747:18: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5749:15: error: Module has no attribute "float" [attr-defined] +torch/_meta_registrations.py:5754:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5754:34: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:5755:14: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5755:36: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:5790:18: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5792:15: error: Module has no attribute "float" [attr-defined] +torch/_meta_registrations.py:5797:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5797:34: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:5798:14: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5798:36: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:5835:14: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:5836:14: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:5837:14: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:5859:17: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:5860:17: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:5866:15: error: Module has no attribute "float" [attr-defined] +torch/_meta_registrations.py:5894:14: error: Module has no attribute "empty_permuted" [attr-defined] +torch/_meta_registrations.py:5900:14: error: Module has no attribute "empty_permuted" [attr-defined] +torch/_meta_registrations.py:5906:14: error: Module has no attribute "empty_permuted" [attr-defined] +torch/_meta_registrations.py:5991:11: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6001:18: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6003:15: error: Module has no attribute "float" [attr-defined] +torch/_meta_registrations.py:6010:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6010:34: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:6011:14: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6011:36: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:6044:14: error: Module has no attribute "empty_permuted" [attr-defined] +torch/_meta_registrations.py:6050:14: error: Module has no attribute "empty_permuted" [attr-defined] +torch/_meta_registrations.py:6056:14: error: Module has no attribute "empty_permuted" [attr-defined] +torch/_meta_registrations.py:6068:21: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6099:14: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:6100:14: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:6101:14: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:6138:17: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:6140:21: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6142:19: error: Module has no attribute "float" [attr-defined] +torch/_meta_registrations.py:6147:21: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6148:41: error: Module has no attribute "float" [attr-defined] +torch/_meta_registrations.py:6158:22: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6164:22: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6171:16: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6171:38: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:6172:18: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6172:40: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:6174:16: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6174:39: error: Module has no attribute "uint64" [attr-defined] +torch/_meta_registrations.py:6175:18: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6175:40: error: Module has no attribute "uint64" [attr-defined] +torch/_meta_registrations.py:6209:18: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:6210:16: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:6211:18: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:6244:11: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6255:18: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6257:15: error: Module has no attribute "float" [attr-defined] +torch/_meta_registrations.py:6262:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6262:34: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:6263:14: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6263:36: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:6302:17: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6311:22: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:6312:20: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:6313:22: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:6320:21: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6323:21: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6335:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_meta_registrations.py:6340:13: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_meta_registrations.py:6341:13: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_meta_registrations.py:6342:13: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/_meta_registrations.py:6343:13: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/_meta_registrations.py:6344:13: error: Module has no attribute "float4_e2m1fn_x2" [attr-defined] +torch/_meta_registrations.py:6391:34: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_meta_registrations.py:6392:38: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_meta_registrations.py:6395:34: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_meta_registrations.py:6396:38: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_meta_registrations.py:6403:34: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:6409:33: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_meta_registrations.py:6453:34: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:6505:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6516:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_meta_registrations.py:6532:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_meta_registrations.py:6539:13: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_meta_registrations.py:6540:13: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_meta_registrations.py:6541:13: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/_meta_registrations.py:6542:13: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/_meta_registrations.py:6543:13: error: Module has no attribute "float4_e2m1fn_x2" [attr-defined] +torch/_meta_registrations.py:6547:26: error: Module has no attribute "float4_e2m1fn_x2" [attr-defined] +torch/_meta_registrations.py:6679:41: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:6680:41: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:6687:41: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:6689:41: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:6700:37: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:6731:37: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:6762:37: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:6803:41: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_meta_registrations.py:6805:41: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_meta_registrations.py:6809:21: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_meta_registrations.py:6821:41: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_meta_registrations.py:6823:41: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:6825:41: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_meta_registrations.py:6827:41: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:6853:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6867:28: error: Name "torch.dtype" is not defined [name-defined] +torch/_meta_registrations.py:6907:16: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6907:47: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:6908:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:6909:43: error: Module has no attribute "long" [attr-defined] +torch/_meta_registrations.py:6976:25: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:7043:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:7043:65: error: Module has no attribute "int64" [attr-defined] +torch/_meta_registrations.py:7110:17: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:7110:61: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:7111:10: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:7111:45: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:7112:10: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:7112:45: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:7159:14: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:7167:52: error: Module has no attribute "uint8" [attr-defined] +torch/_meta_registrations.py:7201:14: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:7205:14: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:7208:17: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:7208:59: error: Module has no attribute "uint8" [attr-defined] +torch/_meta_registrations.py:7242:40: error: Module has no attribute "int64" [attr-defined] +torch/_meta_registrations.py:7250:18: error: Module has no attribute "jagged" [attr-defined] +torch/_meta_registrations.py:7251:18: error: Module has no attribute "strided" [attr-defined] +torch/_meta_registrations.py:7252:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:7268:69: error: Module has no attribute "int64" [attr-defined] +torch/_meta_registrations.py:7281:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:7304:63: error: Module has no attribute "int64" [attr-defined] +torch/_meta_registrations.py:7307:35: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:7331:18: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:7334:15: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:7362:66: error: Module has no attribute "channels_last" [attr-defined] +torch/_meta_registrations.py:7367:24: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:7369:24: error: Module has no attribute "channels_last" [attr-defined] +torch/_meta_registrations.py:7370:47: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:7371:20: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:7372:47: error: Module has no attribute "preserve_format" [attr-defined] +torch/_meta_registrations.py:7373:20: error: Module has no attribute "preserve_format" [attr-defined] +torch/_meta_registrations.py:7423:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:7425:15: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:7425:45: error: Module has no attribute "int64" [attr-defined] +torch/_meta_registrations.py:7426:23: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:7455:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:7531:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:7537:9: error: Module has no attribute "sparse_csr" [attr-defined] +torch/_meta_registrations.py:7538:9: error: Module has no attribute "sparse_csc" [attr-defined] +torch/_meta_registrations.py:7539:9: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_meta_registrations.py:7540:9: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/_meta_registrations.py:7623:13: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:7623:43: error: Module has no attribute "int64" [attr-defined] +torch/_meta_registrations.py:7625:16: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:7626:46: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:7629:16: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:7634:23: error: Module has no attribute "bool" [attr-defined] +torch/_meta_registrations.py:7634:35: error: Module has no attribute "complex128" [attr-defined] +torch/_meta_registrations.py:7634:53: error: Module has no attribute "complex64" [attr-defined] +torch/_meta_registrations.py:7708:24: error: Module has no attribute "float16" [attr-defined] +torch/_meta_registrations.py:7708:39: error: Module has no attribute "bfloat16" [attr-defined] +torch/_meta_registrations.py:7708:55: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:7708:70: error: Module has no attribute "float64" [attr-defined] +torch/_meta_registrations.py:7749:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_meta_registrations.py:7752:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_meta_registrations.py:7756:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:7756:45: error: Module has no attribute "bool" [attr-defined] +torch/_meta_registrations.py:7767:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:7778:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:7788:12: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:7825:15: error: Module has no attribute "empty_strided" [attr-defined] +torch/_meta_registrations.py:7829:15: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:7841:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_meta_registrations.py:7855:21: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/_meta_registrations.py:7855:69: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_meta_registrations.py:7862:28: error: Module has no attribute "bfloat16" [attr-defined] +torch/_meta_registrations.py:7928:31: error: Module has no attribute "float32" [attr-defined] +torch/_meta_registrations.py:7930:34: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_meta_registrations.py:7931:38: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_meta_registrations.py:7936:30: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_meta_registrations.py:7937:34: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_meta_registrations.py:8022:31: error: Module has no attribute "int32" [attr-defined] +torch/_meta_registrations.py:8037:43: error: Module has no attribute "bfloat16" [attr-defined] +torch/_meta_registrations.py:8051:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_meta_registrations.py:8074:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_meta_registrations.py:8078:30: error: Module has no attribute "bfloat16" [attr-defined] +torch/_meta_registrations.py:8097:27: error: Module has no attribute "half" [attr-defined] +torch/_meta_registrations.py:8103:11: error: Module has no attribute "empty_like" [attr-defined] +torch/_meta_registrations.py:8103:65: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_meta_registrations.py:8154:12: error: Module has no attribute "empty" [attr-defined] +torch/_meta_registrations.py:8400:29: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_meta_registrations.py:8402:12: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_refs/_conversions.py:40:47: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/_conversions.py:42:46: error: Name "torch.memory_format" is not defined [name-defined] +torch/_refs/_conversions.py:42:68: error: Module has no attribute "preserve_format" [attr-defined] +torch/_refs/_conversions.py:50:48: error: Module has no attribute "bfloat16" [attr-defined] +torch/_refs/_conversions.py:52:40: error: Module has no attribute "bool" [attr-defined] +torch/_refs/_conversions.py:54:40: error: Module has no attribute "uint8" [attr-defined] +torch/_refs/_conversions.py:56:46: error: Module has no attribute "cdouble" [attr-defined] +torch/_refs/_conversions.py:58:44: error: Module has no attribute "cfloat" [attr-defined] +torch/_refs/_conversions.py:60:42: error: Module has no attribute "complex32" [attr-defined] +torch/_refs/_conversions.py:62:40: error: Module has no attribute "int8" [attr-defined] +torch/_refs/_conversions.py:64:44: error: Module has no attribute "double" [attr-defined] +torch/_refs/_conversions.py:66:42: error: Module has no attribute "float" [attr-defined] +torch/_refs/_conversions.py:68:40: error: Module has no attribute "half" [attr-defined] +torch/_refs/_conversions.py:70:38: error: Module has no attribute "int" [attr-defined] +torch/_refs/_conversions.py:72:40: error: Module has no attribute "long" [attr-defined] +torch/_refs/_conversions.py:74:42: error: Module has no attribute "short" [attr-defined] +torch/_refs/_conversions.py:82:23: error: Module has no attribute "float32" [attr-defined] +torch/_refs/_conversions.py:82:38: error: Module has no attribute "float64" [attr-defined] +torch/_refs/_conversions.py:82:53: error: Module has no attribute "float16" [attr-defined] +torch/_refs/_conversions.py:116:14: error: Module has no attribute "complex"; maybe "compile"? [attr-defined] +torch/_refs/_conversions.py:117:25: error: Module has no attribute "cos" [attr-defined] +torch/_refs/_conversions.py:118:25: error: Module has no attribute "sin" [attr-defined] +torch/_refs/special/__init__.py:70:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/special/__init__.py:71:9: error: Module has no attribute "isnan" [attr-defined] +torch/_refs/special/__init__.py:73:9: error: Module has no attribute "where" [attr-defined] +torch/_refs/special/__init__.py:73:33: error: Module has no attribute "log" [attr-defined] +torch/_refs/special/__init__.py:88:21: error: Module has no attribute "sigmoid" [attr-defined] +torch/_refs/special/__init__.py:122:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/special/__init__.py:124:9: error: Module has no attribute "log" [attr-defined] +torch/_refs/special/__init__.py:125:9: error: Module has no attribute "log1p" [attr-defined] +torch/_refs/special/__init__.py:125:22: error: Module has no attribute "erfc" [attr-defined] +torch/_refs/special/__init__.py:140:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/special/__init__.py:141:12: error: Module has no attribute "log" [attr-defined] +torch/_refs/special/__init__.py:141:22: error: Module has no attribute "true_divide" [attr-defined] +torch/_refs/special/__init__.py:141:46: error: Module has no attribute "sub" [attr-defined] +torch/_refs/special/__init__.py:167:11: error: Module has no attribute "where" [attr-defined] +torch/_refs/special/__init__.py:167:23: error: Module has no attribute "eq" [attr-defined] +torch/_refs/special/__init__.py:167:42: error: Module has no attribute "mul" [attr-defined] +torch/_refs/special/__init__.py:167:55: error: Module has no attribute "log1p" [attr-defined] +torch/_refs/special/__init__.py:168:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/special/__init__.py:168:24: error: Module has no attribute "isnan" [attr-defined] +torch/_refs/special/__init__.py:179:15: error: Module has no attribute "arange" [attr-defined] +torch/_refs/special/__init__.py:180:12: error: Module has no attribute "sum" [attr-defined] +torch/_refs/special/__init__.py:180:22: error: Module has no attribute "lgamma" [attr-defined] +torch/_refs/special/__init__.py:193:17: error: Module has no attribute "erf" [attr-defined] +torch/_refs/special/__init__.py:211:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/special/__init__.py:213:12: error: Module has no attribute "log_softmax" [attr-defined] +torch/_refs/special/__init__.py:213:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/special/__init__.py:221:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/special/__init__.py:223:12: error: Module has no attribute "softmax" [attr-defined] +torch/_refs/special/__init__.py:223:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/nn/functional/__init__.py:93:9: error: Incompatible return value type (got "bool", expected "Tensor") [return-value] +torch/_refs/nn/functional/__init__.py:94:50: error: Module has no attribute "float32" [attr-defined] +torch/_refs/nn/functional/__init__.py:116:16: error: Module has no attribute "zeros_like" [attr-defined] +torch/_refs/nn/functional/__init__.py:130:9: error: Module has no attribute "logical_not" [attr-defined] +torch/_refs/nn/functional/__init__.py:189:23: error: Module has no attribute "expm1" [attr-defined] +torch/_refs/nn/functional/__init__.py:189:23: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/nn/functional/__init__.py:189:35: error: Module has no attribute "true_divide" [attr-defined] +torch/_refs/nn/functional/__init__.py:191:15: error: Module has no attribute "expm1" [attr-defined] +torch/_refs/nn/functional/__init__.py:193:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/nn/functional/__init__.py:213:16: error: Module has no attribute "zeros_like" [attr-defined] +torch/_refs/nn/functional/__init__.py:259:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/nn/functional/__init__.py:259:60: error: Module has no attribute "expm1" [attr-defined] +torch/_refs/nn/functional/__init__.py:277:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/nn/functional/__init__.py:277:24: error: Module has no attribute "le" [attr-defined] +torch/_refs/nn/functional/__init__.py:346:12: error: Module has no attribute "native_group_norm" [attr-defined] +torch/_refs/nn/functional/__init__.py:368:12: error: Module has no attribute "native_layer_norm" [attr-defined] +torch/_refs/nn/functional/__init__.py:392:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/nn/functional/__init__.py:392:24: error: Module has no attribute "gt" [attr-defined] +torch/_refs/nn/functional/__init__.py:392:43: error: Module has no attribute "mul" [attr-defined] +torch/_refs/nn/functional/__init__.py:409:16: error: Module has no attribute "tanh" [attr-defined] +torch/_refs/nn/functional/__init__.py:429:19: error: Module has no attribute "expm1" [attr-defined] +torch/_refs/nn/functional/__init__.py:431:20: error: Module has no attribute "where" [attr-defined] +torch/_refs/nn/functional/__init__.py:440:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/nn/functional/__init__.py:447:12: error: Module has no attribute "softmax" [attr-defined] +torch/_refs/nn/functional/__init__.py:447:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/nn/functional/__init__.py:455:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/nn/functional/__init__.py:462:12: error: Module has no attribute "softmax" [attr-defined] +torch/_refs/nn/functional/__init__.py:462:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/nn/functional/__init__.py:493:15: error: Module has no attribute "true_divide" [attr-defined] +torch/_refs/nn/functional/__init__.py:493:15: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/nn/functional/__init__.py:493:33: error: Module has no attribute "log1p" [attr-defined] +torch/_refs/nn/functional/__init__.py:493:45: error: Module has no attribute "exp" [attr-defined] +torch/_refs/nn/functional/__init__.py:497:15: error: Module has no attribute "log1p" [attr-defined] +torch/_refs/nn/functional/__init__.py:497:27: error: Module has no attribute "exp" [attr-defined] +torch/_refs/nn/functional/__init__.py:499:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/nn/functional/__init__.py:499:24: error: Unsupported operand types for > ("int" and "complex") [operator] +torch/_refs/nn/functional/__init__.py:499:24: error: Unsupported operand types for > ("float" and "complex") [operator] +torch/_refs/nn/functional/__init__.py:499:24: error: Unsupported operand types for < ("bool" and "complex") [operator] +torch/_refs/nn/functional/__init__.py:499:24: error: Unsupported operand types for < ("int" and "complex") [operator] +torch/_refs/nn/functional/__init__.py:499:24: error: Unsupported operand types for < ("float" and "complex") [operator] +torch/_refs/nn/functional/__init__.py:499:24: error: Unsupported left operand type for > ("complex") [operator] +torch/_refs/nn/functional/__init__.py:499:24: note: Both left and right operands are unions +torch/_refs/nn/functional/__init__.py:510:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/nn/functional/__init__.py:510:24: error: Module has no attribute "abs" [attr-defined] +torch/_refs/nn/functional/__init__.py:528:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/nn/functional/__init__.py:528:24: error: Module has no attribute "abs" [attr-defined] +torch/_refs/nn/functional/__init__.py:528:50: error: Module has no attribute "sign" [attr-defined] +torch/_refs/nn/functional/__init__.py:547:16: error: Module has no attribute "sum" [attr-defined] +torch/_refs/nn/functional/__init__.py:549:16: error: Module has no attribute "mean" [attr-defined] +torch/_refs/nn/functional/__init__.py:598:12: error: Module has no attribute "abs" [attr-defined] +torch/_refs/nn/functional/__init__.py:629:16: error: Module has no attribute "abs" [attr-defined] +torch/_refs/nn/functional/__init__.py:631:16: error: Module has no attribute "where" [attr-defined] +torch/_refs/nn/functional/__init__.py:641:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/nn/functional/__init__.py:648:12: error: Module has no attribute "log_softmax" [attr-defined] +torch/_refs/nn/functional/__init__.py:648:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/nn/functional/__init__.py:666:12: error: Module has no attribute "clamp_min" [attr-defined] +torch/_refs/nn/functional/__init__.py:687:12: error: Module has no attribute "pow" [attr-defined] +torch/_refs/nn/functional/__init__.py:701:20: error: Module has no attribute "clamp_min" [attr-defined] +torch/_refs/nn/functional/__init__.py:702:21: error: Module has no attribute "where" [attr-defined] +torch/_refs/nn/functional/__init__.py:703:19: error: Module has no attribute "where" [attr-defined] +torch/_refs/nn/functional/__init__.py:727:19: error: Module has no attribute "flatten" [attr-defined] +torch/_refs/nn/functional/__init__.py:728:27: error: Module has no attribute "eq" [attr-defined] +torch/_refs/nn/functional/__init__.py:746:27: error: Module has no attribute "scalar_tensor" [attr-defined] +torch/_refs/nn/functional/__init__.py:748:9: error: Module has no attribute "scalar_tensor" [attr-defined] +torch/_refs/nn/functional/__init__.py:752:22: error: Module has no attribute "where" [attr-defined] +torch/_refs/nn/functional/__init__.py:765:23: error: Module has no attribute "arange" [attr-defined] +torch/_refs/nn/functional/__init__.py:772:19: error: Module has no attribute "arange" [attr-defined] +torch/_refs/nn/functional/__init__.py:776:12: error: Module has no attribute "reshape" [attr-defined] +torch/_refs/nn/functional/__init__.py:781:16: error: Module has no attribute "sum" [attr-defined] +torch/_refs/nn/functional/__init__.py:784:16: error: Module has no attribute "sum" [attr-defined] +torch/_refs/nn/functional/__init__.py:824:20: error: Module has no attribute "zeros_like" [attr-defined] +torch/_refs/nn/functional/__init__.py:826:20: error: Module has no attribute "empty_like" [attr-defined] +torch/_refs/nn/functional/__init__.py:828:20: error: Module has no attribute "full_like" [attr-defined] +torch/_refs/nn/functional/__init__.py:856:13: error: Module has no attribute "reshape" [attr-defined] +torch/_refs/nn/functional/__init__.py:857:14: error: Module has no attribute "reshape" [attr-defined] +torch/_refs/nn/functional/__init__.py:863:16: error: Module has no attribute "reshape" [attr-defined] +torch/_refs/nn/functional/__init__.py:893:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/nn/functional/__init__.py:911:16: error: Module has no attribute "tanh" [attr-defined] +torch/_refs/nn/functional/__init__.py:934:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/nn/functional/__init__.py:966:40: error: Module has no attribute "pairwise_distance" [attr-defined] +torch/_refs/nn/functional/__init__.py:1002:29: error: Module has no attribute "pairwise_distance" [attr-defined] +torch/_refs/nn/functional/__init__.py:1013:20: error: Module has no attribute "minimum" [attr-defined] +torch/_refs/nn/functional/__init__.py:1014:12: error: Module has no attribute "clamp_min" [attr-defined] +torch/_refs/nn/functional/__init__.py:1044:28: error: Module has no attribute "uint8" [attr-defined] +torch/_refs/nn/functional/__init__.py:1052:12: error: Module has no attribute "clamp" [attr-defined] +torch/_refs/nn/functional/__init__.py:1052:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/nn/functional/__init__.py:1078:31: error: Module has no attribute "tanh" [attr-defined] +torch/_refs/nn/functional/__init__.py:1081:31: error: Module has no attribute "erf" [attr-defined] +torch/_refs/nn/functional/__init__.py:1111:16: error: Module has no attribute "exp" [attr-defined] +torch/_refs/nn/functional/__init__.py:1113:33: error: Module has no attribute "log" [attr-defined] +torch/_refs/nn/functional/__init__.py:1117:22: error: Module has no attribute "log" [attr-defined] +torch/_refs/nn/functional/__init__.py:1163:12: error: Module has no attribute "where" [attr-defined] +torch/_refs/nn/functional/__init__.py:1194:12: error: Module has no attribute "tensor_split" [attr-defined] +torch/_refs/nn/functional/__init__.py:1196:16: error: Module has no attribute "sigmoid" [attr-defined] +torch/_refs/nn/functional/__init__.py:1223:15: error: Module has no attribute "mm" [attr-defined] +torch/_refs/nn/functional/__init__.py:1224:20: error: Module has no attribute "diag" [attr-defined] +torch/_refs/nn/functional/__init__.py:1225:13: error: Module has no attribute "sqrt" [attr-defined] +torch/_refs/nn/functional/__init__.py:1225:24: error: Module has no attribute "clamp" [attr-defined] +torch/_refs/nn/functional/__init__.py:1228:9: error: Module has no attribute "triu_indices" [attr-defined] +torch/_refs/linalg/__init__.py:39:39: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/linalg/__init__.py:84:11: error: Module has no attribute "arange" [attr-defined] +torch/_refs/linalg/__init__.py:97:12: error: Module has no attribute "diagonal" [attr-defined] +torch/_refs/linalg/__init__.py:136:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/linalg/__init__.py:157:16: error: Module has no attribute "sum" [attr-defined] +torch/_refs/linalg/__init__.py:157:26: error: Module has no attribute "ne" [attr-defined] +torch/_refs/linalg/__init__.py:159:32: error: Module has no attribute "amax" [attr-defined] +torch/_refs/linalg/__init__.py:159:32: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/linalg/__init__.py:159:43: error: Module has no attribute "abs" [attr-defined] +torch/_refs/linalg/__init__.py:161:32: error: Module has no attribute "amin" [attr-defined] +torch/_refs/linalg/__init__.py:161:32: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/linalg/__init__.py:161:43: error: Module has no attribute "abs" [attr-defined] +torch/_refs/linalg/__init__.py:165:30: error: Module has no attribute "sum" [attr-defined] +torch/_refs/linalg/__init__.py:179:17: error: Module has no attribute "abs" [attr-defined] +torch/_refs/linalg/__init__.py:189:17: error: Module has no attribute "abs" [attr-defined] +torch/_refs/linalg/__init__.py:190:32: error: Module has no attribute "pow" [attr-defined] +torch/_refs/linalg/__init__.py:190:32: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_refs/linalg/__init__.py:214:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_refs/linalg/__init__.py:253:22: error: Module has no attribute "sum" [attr-defined] +torch/_refs/linalg/__init__.py:256:42: error: Module has no attribute "unsqueeze" [attr-defined] +torch/_refs/linalg/__init__.py:270:27: error: Module has no attribute "amax" [attr-defined] +torch/_refs/linalg/__init__.py:270:56: error: Module has no attribute "amin" [attr-defined] +torch/_refs/linalg/__init__.py:280:42: error: Module has no attribute "unsqueeze" [attr-defined] +torch/_refs/linalg/__init__.py:302:21: error: Name "torch.dtype" is not defined [name-defined] +functorch/dim/__init__.py:522:20: error: Module has no attribute "softmax" [attr-defined] +functorch/dim/__init__.py:526:20: error: Module has no attribute "stack" [attr-defined] +functorch/dim/__init__.py:937:27: error: Module has no attribute "arange" [attr-defined] +functorch/dim/__init__.py:1154:18: error: Module has no attribute "stack" [attr-defined] +functorch/dim/__init__.py:1192:14: error: Module has no attribute "stack" [attr-defined] +functorch/dim/__init__.py:1417:16: error: Module has no attribute "matmul" [attr-defined] +functorch/dim/__init__.py:1478:18: error: Module has no attribute "bmm" [attr-defined] +functorch/dim/__init__.py:1484:18: error: Module has no attribute "mm" [attr-defined] +torch/nn/utils/_expanded_weights/expanded_weights_impl.py:18:5: error: Module has no attribute "rnn_relu" [attr-defined] +torch/nn/utils/_expanded_weights/expanded_weights_impl.py:22:5: error: Module has no attribute "rnn_tanh" [attr-defined] +torch/nn/utils/_expanded_weights/expanded_weights_impl.py:26:5: error: Module has no attribute "lstm" [attr-defined] +torch/nn/utils/_expanded_weights/expanded_weights_impl.py:30:5: error: Module has no attribute "gru" [attr-defined] +torch/nn/utils/_expanded_weights/expanded_weights_impl.py:143:20: error: Module has no attribute "_cudnn_rnn_flatten_weight" [attr-defined] +torch/nn/attention/flex_attention.py:357:42: error: Module has no attribute "bool" [attr-defined] +torch/nn/attention/flex_attention.py:398:73: error: Module has no attribute "int32" [attr-defined] +torch/nn/attention/flex_attention.py:400:23: error: Module has no attribute "arange" [attr-defined] +torch/nn/attention/flex_attention.py:400:52: error: Module has no attribute "int" [attr-defined] +torch/nn/attention/flex_attention.py:403:21: error: Module has no attribute "arange" [attr-defined] +torch/nn/attention/flex_attention.py:403:50: error: Module has no attribute "int" [attr-defined] +torch/nn/attention/flex_attention.py:407:25: error: Module has no attribute "where" [attr-defined] +torch/nn/attention/flex_attention.py:422:38: error: Module has no attribute "int32" [attr-defined] +torch/nn/attention/flex_attention.py:424:19: error: Module has no attribute "argsort" [attr-defined] +torch/nn/attention/flex_attention.py:426:30: error: Module has no attribute "int32" [attr-defined] +torch/nn/attention/flex_attention.py:426:57: error: Module has no attribute "contiguous_format" [attr-defined] +torch/nn/attention/flex_attention.py:427:24: error: Module has no attribute "int32" [attr-defined] +torch/nn/attention/flex_attention.py:427:51: error: Module has no attribute "contiguous_format" [attr-defined] +torch/nn/attention/flex_attention.py:444:18: error: Module has no attribute "where" [attr-defined] +torch/nn/attention/flex_attention.py:445:18: error: Module has no attribute "sum" [attr-defined] +torch/nn/attention/flex_attention.py:445:76: error: Module has no attribute "int32" [attr-defined] +torch/nn/attention/flex_attention.py:910:26: error: Name "torch.device" is not defined [name-defined] +torch/nn/attention/flex_attention.py:977:26: error: Module has no attribute "bool" [attr-defined] +torch/nn/attention/flex_attention.py:985:9: error: Argument 2 to "pad" has incompatible type "tuple[int, Any, int, Any]"; expected "list[int]" [arg-type] +torch/nn/attention/flex_attention.py:1008:50: error: Module has no attribute "int8" [attr-defined] +torch/nn/attention/flex_attention.py:1009:44: error: Module has no attribute "int8" [attr-defined] +torch/nn/attention/flex_attention.py:1013:50: error: Module has no attribute "int8" [attr-defined] +torch/nn/attention/flex_attention.py:1023:40: error: Module has no attribute "bool" [attr-defined] +torch/nn/attention/flex_attention.py:1037:39: error: Module has no attribute "bool" [attr-defined] +torch/nn/attention/flex_attention.py:1112:9: error: Module has no attribute "arange" [attr-defined] +torch/nn/attention/flex_attention.py:1113:9: error: Module has no attribute "arange" [attr-defined] +torch/nn/attention/flex_attention.py:1114:9: error: Module has no attribute "arange" [attr-defined] +torch/nn/attention/flex_attention.py:1115:9: error: Module has no attribute "arange" [attr-defined] +torch/nn/attention/flex_attention.py:1124:29: error: Module has no attribute "zeros" [attr-defined] +torch/nn/attention/flex_attention.py:1125:20: error: Module has no attribute "where" [attr-defined] +torch/nn/attention/flex_attention.py:1125:32: error: Module has no attribute "isneginf" [attr-defined] +torch/nn/attention/flex_attention.py:1228:23: error: Module has no attribute "ones" [attr-defined] +torch/nn/attention/flex_attention.py:1228:51: error: Module has no attribute "int32" [attr-defined] +torch/nn/attention/flex_attention.py:1229:20: error: Module has no attribute "zeros" [attr-defined] +torch/nn/attention/flex_attention.py:1229:52: error: Module has no attribute "int32" [attr-defined] +torch/nn/attention/flex_attention.py:1272:46: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/nn/attention/flex_attention.py:1340:9: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/nn/attention/flex_attention.py:1341:9: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/distributed/optim/optimizer.py:189:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:78:23: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:126:27: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:166:39: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:175:32: error: Module has no attribute "empty" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:14:20: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:14:33: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:14:45: error: Module has no attribute "uint16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:14:59: error: Module has no attribute "int16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:14:72: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:15:18: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:15:37: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:18:9: error: Module has no attribute "iinfo" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:21:14: error: Module has no attribute "finfo" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:57:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:74:24: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:74:39: error: Module has no attribute "bfloat16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:75:26: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:76:23: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:83:12: error: Module has no attribute "clamp" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:84:9: error: Module has no attribute "round" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:95:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:97:24: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:97:39: error: Module has no attribute "bfloat16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:98:26: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:99:23: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:103:12: error: Module has no attribute "empty_like" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:121:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:153:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:155:24: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:155:39: error: Module has no attribute "bfloat16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:156:26: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:165:23: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:169:12: error: Module has no attribute "empty_like" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:188:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:220:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:249:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:251:16: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:284:21: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:301:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:303:16: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:306:21: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:307:12: error: Module has no attribute "empty_like" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:327:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:329:16: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:362:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:364:16: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:367:21: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:381:16: error: Module has no attribute "empty_like" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:404:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:406:16: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:441:16: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:456:67: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:472:9: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:473:9: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:474:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:485:24: error: Module has no attribute "aminmax" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:510:67: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:526:9: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:527:9: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:528:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:539:24: error: Module has no attribute "aminmax" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:548:17: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:554:77: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:557:9: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:558:9: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:559:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:568:12: error: Module has no attribute "empty" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:568:33: error: Module has no attribute "double" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:569:18: error: Module has no attribute "int64" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:575:77: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:577:12: error: Module has no attribute "empty" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:577:33: error: Module has no attribute "double" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:578:18: error: Module has no attribute "int64" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:605:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:624:24: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:624:39: error: Module has no attribute "bfloat16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:625:26: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:626:23: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:640:11: error: Module has no attribute "clamp" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:641:9: error: Module has no attribute "round" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:655:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:657:24: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:657:39: error: Module has no attribute "bfloat16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:658:26: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:659:23: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:666:12: error: Module has no attribute "empty_like" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:687:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:689:16: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:724:21: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:752:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:754:16: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:761:21: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:765:12: error: Module has no attribute "empty_like" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:780:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:796:24: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:800:17: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:809:19: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:820:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:823:12: error: Module has no attribute "empty" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:823:36: error: Module has no attribute "double" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:824:21: error: Module has no attribute "int64" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:840:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:856:15: error: Module has no attribute "amin" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:857:15: error: Module has no attribute "amax" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:858:19: error: Module has no attribute "min" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:858:38: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:859:19: error: Module has no attribute "max" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:859:38: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:860:11: error: Module has no attribute "finfo" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:860:23: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:871:18: error: Module has no attribute "where" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:876:18: error: Module has no attribute "clamp" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:878:21: error: Module has no attribute "float64" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:878:51: error: Module has no attribute "int64" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:893:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:905:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:908:12: error: Module has no attribute "empty" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:908:36: error: Module has no attribute "double" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:909:21: error: Module has no attribute "int64" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:936:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:975:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:978:12: error: Module has no attribute "empty_like" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:994:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:995:19: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:995:33: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:1028:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:1029:19: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:1029:33: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:1033:12: error: Module has no attribute "empty_like" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:1052:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:1068:8: error: Module has no attribute "isnan" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:1093:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:1124:12: error: Module has no attribute "empty_like" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:1144:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:1146:19: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:1146:33: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:1182:14: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:1182:36: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:1197:28: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:1198:32: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:1199:33: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:1200:42: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:1201:27: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:1210:16: error: Module has no attribute "round" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:1212:13: error: Module has no attribute "clamp" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:1214:16: error: Module has no attribute "logical_and" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:1249:12: error: Module has no attribute "empty_like" [attr-defined] +torch/ao/quantization/fx/_decomposed.py:1262:54: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:1267:59: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_decomposed.py:1268:12: error: Module has no attribute "empty_like" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:41:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:42:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:43:18: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:44:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:48:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:49:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:53:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:54:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:55:18: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:56:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:61:11: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:66:11: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:74:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:76:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:81:17: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:82:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:83:18: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:84:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:89:17: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:90:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:91:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:315:9: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:317:9: error: Module has no attribute "sub" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:319:9: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:324:18: error: Module has no attribute "relu" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:371:9: error: Module has no attribute "clamp" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:372:9: error: Module has no attribute "flatten" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:373:9: error: Module has no attribute "mean" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:374:9: error: Module has no attribute "permute" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:375:9: error: Module has no attribute "permute_copy" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:376:9: error: Module has no attribute "squeeze" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:421:30: error: Module has no attribute "cat" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:426:30: error: Module has no attribute "concat" [attr-defined] +torch/ao/quantization/backend_config/executorch.py:431:30: error: Module has no attribute "concatenate" [attr-defined] +torch/_inductor/fx_passes/memory_estimator.py:20:13: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/fx_passes/memory_estimator.py:150:27: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/fx_passes/memory_estimator.py:329:34: error: Name "torch.device" is not defined [name-defined] +torch/_higher_order_ops/triton_kernel_wrap.py:20:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_functorch/_aot_autograd/functional_utils.py:75:12: error: Module has no attribute "_from_functional_tensor" [attr-defined] +torch/_functorch/_aot_autograd/functional_utils.py:119:16: error: Module has no attribute "_functionalize_are_all_mutations_hidden_from_autograd" [attr-defined] +torch/_functorch/_aot_autograd/functional_utils.py:133:16: error: Module has no attribute "_functionalize_are_all_mutations_under_no_grad_or_inference_mode" [attr-defined] +torch/_functorch/_aot_autograd/functional_utils.py:149:16: error: Module has no attribute "_functionalize_was_inductor_storage_resized" [attr-defined] +torch/_functorch/_aot_autograd/functional_utils.py:181:21: error: Module has no attribute "_from_functional_tensor" [attr-defined] +torch/_functorch/_aot_autograd/functional_utils.py:295:23: error: Module has no attribute "view_as_real" [attr-defined] +torch/_functorch/_aot_autograd/functional_utils.py:299:23: error: Module has no attribute "view_as_complex" [attr-defined] +torch/_functorch/_aot_autograd/functional_utils.py:336:13: error: Name "torch.layout" is not defined [name-defined] +torch/_functorch/_aot_autograd/functional_utils.py:376:16: error: Module has no attribute "_is_functional_tensor" [attr-defined] +torch/_export/wrappers.py:8:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/_export/wrappers.py:296:48: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_export/wrappers.py:302:26: error: Module has no attribute "_dispatch_tls_local_include_set" [attr-defined] +torch/_export/wrappers.py:303:13: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_export/wrappers.py:306:13: error: Module has no attribute "_dispatch_tls_local_exclude_set" [attr-defined] +torch/_export/wrappers.py:307:15: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_export/wrappers.py:307:39: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_export/wrappers.py:310:14: error: Module has no attribute "_ForceDispatchKeyGuard" [attr-defined] +torch/_export/passes/replace_set_grad_with_hop_pass.py:25:28: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/_export/passes/replace_set_grad_with_hop_pass.py:41:40: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/_export/passes/replace_set_grad_with_hop_pass.py:44:41: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_decomp/decompositions_for_rng.py:33:36: error: Module has no attribute "strided" [attr-defined] +torch/_decomp/decompositions_for_rng.py:37:22: error: Module has no attribute "float32" [attr-defined] +torch/_decomp/decompositions_for_rng.py:52:19: error: Module has no attribute "preserve_format" [attr-defined] +torch/_decomp/decompositions_for_rng.py:78:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_decomp/decompositions_for_rng.py:79:28: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_decomp/decompositions_for_rng.py:102:16: error: Module has no attribute "stack" [attr-defined] +torch/_decomp/decompositions_for_rng.py:106:39: error: Module has no attribute "unbind" [attr-defined] +torch/_decomp/decompositions_for_rng.py:253:23: error: Module has no attribute "device" [attr-defined] +torch/_decomp/decompositions_for_rng.py:255:23: error: Module has no attribute "rand_like" [attr-defined] +torch/_decomp/decompositions_for_rng.py:255:51: error: Module has no attribute "float32" [attr-defined] +torch/_decomp/decompositions_for_rng.py:260:23: error: Module has no attribute "device" [attr-defined] +torch/_decomp/decompositions_for_rng.py:263:12: error: Module has no attribute "rand_like" [attr-defined] +torch/_decomp/decompositions_for_rng.py:263:40: error: Module has no attribute "float32" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:104:12: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:104:22: error: Module has no attribute "diag" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:109:11: error: Module has no attribute "minimum" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:110:9: error: Module has no attribute "exp" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:110:20: error: Module has no attribute "abs" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:115:18: error: Module has no attribute "log1p" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:124:12: error: Module has no attribute "mean" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:125:11: error: Module has no attribute "var" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:126:11: error: Module has no attribute "pow" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:128:16: error: Module has no attribute "sqrt" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:173:9: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:174:10: error: Module has no attribute "mul" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:175:10: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:176:10: error: Module has no attribute "mul" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:182:19: error: Module has no attribute "zeros_like" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:186:42: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:192:20: error: Module has no attribute "zeros_like" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:194:20: error: Module has no attribute "zeros" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:198:40: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:202:18: error: Module has no attribute "zeros_like" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:204:18: error: Module has no attribute "zeros" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:248:18: error: Module has no attribute "rsqrt" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:260:12: error: Module has no attribute "reshape" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:262:23: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:263:13: error: Module has no attribute "sum" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:265:17: error: Module has no attribute "reshape" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:266:18: error: Module has no attribute "reshape" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:266:32: error: Module has no attribute "mul" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:269:22: error: Module has no attribute "reshape" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:271:22: error: Module has no attribute "reshape" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:282:23: error: Module has no attribute "zeros_like" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:286:23: error: Module has no attribute "zeros" [attr-defined] +torch/_decomp/decompositions_for_jvp.py:291:21: error: Module has no attribute "zeros_like" [attr-defined] +torch/nn/utils/_expanded_weights/expanded_weights_utils.py:134:28: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/_local_tensor/__init__.py:68:1: error: Module "torch" has no attribute "Size" [attr-defined] +torch/distributed/_local_tensor/__init__.py:69:1: error: Module "torch._C" has no attribute "DispatchKey" [attr-defined] +torch/distributed/_local_tensor/__init__.py:69:1: error: Module "torch._C" has no attribute "DispatchKeySet" [attr-defined] +torch/distributed/_local_tensor/__init__.py:69:1: error: Module "torch._C" has no attribute "ScriptObject" [attr-defined] +torch/distributed/_local_tensor/__init__.py:252:20: error: Module has no attribute "empty" [attr-defined] +torch/distributed/_local_tensor/__init__.py:307:45: error: Module has no attribute "Tag" [attr-defined] +torch/distributed/_local_tensor/__init__.py:320:27: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/distributed/_local_tensor/__init__.py:321:8: error: Module has no attribute "_dispatch_keys" [attr-defined] +torch/distributed/_local_tensor/__init__.py:321:39: error: Module has no attribute "DispatchKey" [attr-defined] +torch/distributed/_local_tensor/__init__.py:322:55: error: Module has no attribute "DispatchKey" [attr-defined] +torch/distributed/_local_tensor/__init__.py:323:8: error: Module has no attribute "_dispatch_keys" [attr-defined] +torch/distributed/_local_tensor/__init__.py:323:39: error: Module has no attribute "DispatchKey" [attr-defined] +torch/distributed/_local_tensor/__init__.py:324:55: error: Module has no attribute "DispatchKey" [attr-defined] +torch/distributed/_local_tensor/__init__.py:435:16: error: Module has no attribute "_get_constant_bool_symnode" [attr-defined] +torch/distributed/_local_tensor/__init__.py:439:16: error: Module has no attribute "_get_constant_bool_symnode" [attr-defined] +torch/distributed/_local_tensor/__init__.py:444:16: error: Module has no attribute "_get_constant_bool_symnode" [attr-defined] +torch/distributed/_local_tensor/__init__.py:449:16: error: Module has no attribute "_get_constant_bool_symnode" [attr-defined] +torch/distributed/_local_tensor/__init__.py:454:16: error: Module has no attribute "_get_constant_bool_symnode" [attr-defined] +torch/distributed/_local_tensor/__init__.py:472:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/distributed/_local_tensor/__init__.py:483:5: error: Function is missing a return type annotation [no-untyped-def] +torch/distributed/_local_tensor/__init__.py:515:5: error: Function is missing a type annotation [no-untyped-def] +torch/distributed/_local_tensor/__init__.py:538:5: error: Function is missing a type annotation [no-untyped-def] +torch/distributed/_local_tensor/__init__.py:567:5: error: Function is missing a return type annotation [no-untyped-def] +torch/distributed/_local_tensor/__init__.py:568:16: error: Module has no attribute "device" [attr-defined] +torch/distributed/_local_tensor/__init__.py:570:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/distributed/_local_tensor/__init__.py:609:61: error: Module has no attribute "int64" [attr-defined] +torch/distributed/_local_tensor/__init__.py:620:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/distributed/_local_tensor/__init__.py:649:5: error: Function is missing a type annotation [no-untyped-def] +torch/distributed/_local_tensor/__init__.py:727:5: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_local_tensor/__init__.py:727:5: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/_local_tensor/__init__.py:727:5: error: Name "torch.layout" is not defined [name-defined] +torch/distributed/_local_tensor/__init__.py:892:21: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/_local_tensor/__init__.py:952:24: error: Name "torch.memory_format" is not defined [name-defined] +torch/distributed/_local_tensor/__init__.py:952:46: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_local_tensor/__init__.py:965:24: error: Name "torch.memory_format" is not defined [name-defined] +torch/distributed/_local_tensor/__init__.py:965:46: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_local_tensor/__init__.py:994:20: error: Module has no attribute "equal" [attr-defined] +torch/distributed/_local_tensor/__init__.py:1269:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/distributed/_local_tensor/__init__.py:1269:36: error: Name "torch._C.Generator" is not defined [name-defined] +torch/distributed/_local_tensor/__init__.py:1298:5: error: Function is missing a return type annotation [no-untyped-def] +torch/distributed/_local_tensor/__init__.py:1334:27: error: "bool" has no attribute "nonzero" [attr-defined] +torch/distributed/_local_tensor/__init__.py:1448:1: error: Function is missing a return type annotation [no-untyped-def] +torch/distributed/_local_tensor/__init__.py:1448:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/distributed/_local_tensor/__init__.py:1472:1: error: Function is missing a return type annotation [no-untyped-def] +torch/distributed/_local_tensor/__init__.py:1489:59: error: Module has no attribute "int64" [attr-defined] +torch/distributed/_local_tensor/__init__.py:1499:60: error: Module has no attribute "int64" [attr-defined] +torch/distributed/_local_tensor/__init__.py:1512:55: error: Module has no attribute "int64" [attr-defined] +torch/distributed/_local_tensor/__init__.py:1653:5: error: Function is missing a return type annotation [no-untyped-def] +torch/distributed/_local_tensor/__init__.py:1713:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/distributed/_local_tensor/__init__.py:1734:29: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/_local_tensor/__init__.py:1735:39: error: Module has no attribute "uint64" [attr-defined] +torch/distributed/_local_tensor/__init__.py:1736:20: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/pt2e/utils.py:475:46: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/pt2e/utils.py:517:50: error: Name "torch.dtype" is not defined [name-defined] +torch/_functorch/_aot_autograd/schemas.py:175:29: error: Name "torch.memory_format" is not defined [name-defined] +torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py:32:13: error: Module has no attribute "native_layer_norm" [attr-defined] +torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py:21:33: error: Module has no attribute "instance_norm" [attr-defined] +torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py:59:20: error: Module has no attribute "mean" [attr-defined] +torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py:62:19: error: Module has no attribute "var" [attr-defined] +torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py:68:24: error: Module has no attribute "sqrt" [attr-defined] +torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py:35:13: error: Module has no attribute "native_group_norm" [attr-defined] +torch/nn/utils/_expanded_weights/conv_utils.py:184:23: error: Module has no attribute "narrow" [attr-defined] +torch/nn/utils/_expanded_weights/conv_utils.py:336:17: error: Argument 2 to "pad" has incompatible type "tuple[Any, Any, Any, Any, Any, Any]"; expected "list[int]" [arg-type] +torch/distributed/tensor/_collective_utils.py:35:21: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/tensor/_collective_utils.py:40:9: error: Module has no attribute "cat" [attr-defined] +torch/distributed/tensor/_collective_utils.py:57:15: error: Module has no attribute "chunk" [attr-defined] +torch/distributed/tensor/placement_types.py:71:28: error: Module has no attribute "chunk" [attr-defined] +torch/distributed/tensor/placement_types.py:188:18: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/tensor/placement_types.py:235:22: error: Module has no attribute "cat" [attr-defined] +torch/distributed/tensor/placement_types.py:605:21: error: Module has no attribute "cat" [attr-defined] +torch/distributed/tensor/placement_types.py:637:26: error: Module has no attribute "arange" [attr-defined] +torch/distributed/tensor/placement_types.py:674:23: error: Module has no attribute "cat" [attr-defined] +torch/distributed/tensor/placement_types.py:675:27: error: Module has no attribute "argsort" [attr-defined] +torch/distributed/tensor/placement_types.py:676:28: error: Module has no attribute "index_select" [attr-defined] +torch/distributed/tensor/placement_types.py:696:26: error: Module has no attribute "arange" [attr-defined] +torch/distributed/tensor/placement_types.py:826:16: error: Incompatible return value type (got "float", expected "Tensor") [return-value] +torch/distributed/tensor/placement_types.py:862:28: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/placement_types.py:895:16: error: Incompatible return value type (got "tuple[bool, Any]", expected "tuple[Tensor, Tensor]") [return-value] +torch/distributed/tensor/_dtensor_spec.py:62:12: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/_dtensor_spec.py:64:12: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/tensor/_dtensor_spec.py:510:24: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/_shard/sharded_tensor/reshard.py:43:14: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/_shard/sharded_tensor/reshard.py:84:14: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/_shard/sharded_tensor/reshard.py:135:22: error: Module has no attribute "empty" [attr-defined] +torch/distributed/_shard/sharded_tensor/reshard.py:153:14: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/_shard/sharded_tensor/reshard.py:206:26: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/_shard/sharded_tensor/reshard.py:211:27: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/_shard/sharded_tensor/reshard.py:222:48: error: Module has no attribute "empty" [attr-defined] +torch/distributed/_shard/sharded_tensor/reshard.py:222:48: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/distributed/_shard/sharded_tensor/reshard.py:241:20: error: Module has no attribute "cat" [attr-defined] +torch/ao/quantization/fx/qconfig_mapping_utils.py:274:51: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/fx/qconfig_mapping_utils.py:275:53: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/fx/qconfig_mapping_utils.py:276:49: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/fx/qconfig_mapping_utils.py:277:53: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/fx/qconfig_mapping_utils.py:284:13: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/qconfig_mapping_utils.py:286:45: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/qconfig_mapping_utils.py:287:45: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/qconfig_mapping_utils.py:290:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/fx/qconfig_mapping_utils.py:297:37: error: Module has no attribute "float" [attr-defined] +torch/_functorch/_aot_autograd/subclass_utils.py:287:26: error: Item "None" of "SubclassCreationMeta | None" has no attribute "attrs" [union-attr] +torch/_functorch/_aot_autograd/subclass_utils.py:288:44: error: Argument 2 to "flatten_subclass" has incompatible type "SubclassCreationMeta | PlainTensorMeta | Any | None"; expected "SubclassCreationMeta | None" [arg-type] +torch/_functorch/_aot_autograd/subclass_utils.py:320:31: error: Redundant cast to "Tensor" [redundant-cast] +torch/_functorch/_aot_autograd/subclass_utils.py:324:30: error: Redundant cast to "Tensor" [redundant-cast] +torch/distributed/tensor/_random.py:127:47: error: Module has no attribute "int64" [attr-defined] +torch/distributed/tensor/_random.py:131:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/tensor/_random.py:131:54: error: Module has no attribute "uint64" [attr-defined] +torch/distributed/tensor/_random.py:132:13: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/tensor/_random.py:138:47: error: Module has no attribute "int64" [attr-defined] +torch/distributed/tensor/_random.py:142:23: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/tensor/_random.py:142:50: error: Module has no attribute "uint64" [attr-defined] +torch/distributed/tensor/_random.py:143:13: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/tensor/_random.py:157:32: error: Name "torch.device" is not defined [name-defined] +torch/distributed/tensor/_random.py:177:54: error: Name "torch.Generator" is not defined [name-defined] +torch/distributed/tensor/_random.py:213:24: error: Argument 1 to "all" has incompatible type "bool"; expected "Iterable[object]" [arg-type] +torch/distributed/tensor/_random.py:243:54: error: Name "torch.Generator" is not defined [name-defined] +torch/distributed/tensor/_random.py:448:49: error: Name "torch.device" is not defined [name-defined] +torch/distributed/tensor/_random.py:453:12: error: Module has no attribute "device" [attr-defined] +torch/distributed/tensor/_op_schema.py:33:1: error: Module "torch._C" has no attribute "_DTensor_OpSchema_post_init" [attr-defined] +torch/distributed/tensor/_op_schema.py:33:1: error: Module "torch._C" has no attribute "_DTensor_OpSchema_recompute_comparison_key" [attr-defined] +torch/distributed/tensor/_op_schema.py:75:12: error: Module has no attribute "empty_strided" [attr-defined] +torch/distributed/tensor/_op_schema.py:412:35: error: Module has no attribute "TensorType" [attr-defined] +torch/distributed/tensor/_op_schema.py:419:35: error: Module has no attribute "ListType" [attr-defined] +torch/distributed/tensor/_op_schema.py:426:49: error: Module has no attribute "TensorType" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:85:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:98:21: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:158:40: error: Module has no attribute "strided" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:252:16: error: Module has no attribute "strided" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:255:23: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:263:22: error: Module has no attribute "strided" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:266:29: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:373:40: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_shard/sharded_tensor/api.py:380:20: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:382:20: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:387:28: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:390:16: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:397:25: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/_shard/sharded_tensor/api.py:455:17: error: Module has no attribute "empty" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:465:20: error: Module has no attribute "empty" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:511:29: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:527:30: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:528:34: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:548:42: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:548:42: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/distributed/_shard/sharded_tensor/api.py:554:42: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:554:42: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/distributed/_shard/sharded_tensor/api.py:569:23: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:585:30: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:586:34: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:594:22: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:596:36: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:602:26: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:636:25: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_shard/sharded_tensor/api.py:640:30: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:642:30: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:647:36: error: Module has no attribute "dtype" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:649:38: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:652:29: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:665:13: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:678:25: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:682:53: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:905:27: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:979:40: error: Module has no attribute "strided" [attr-defined] +torch/distributed/_shard/sharded_tensor/api.py:1360:12: error: Module has no attribute "empty" [attr-defined] +torch/ao/quantization/fx/utils.py:150:17: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/utils.py:152:19: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/fx/utils.py:268:13: error: Name "torch.device" is not defined [name-defined] +torch/ao/quantization/fx/utils.py:281:14: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/utils.py:398:27: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/utils.py:402:9: error: Module has no attribute "bool" [attr-defined] +torch/ao/quantization/fx/utils.py:410:29: error: Module has no attribute "transpose" [attr-defined] +torch/ao/quantization/fx/utils.py:413:29: error: Module has no attribute "unsqueeze" [attr-defined] +torch/ao/quantization/fx/utils.py:417:29: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/utils.py:422:18: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/tensor/_utils.py:42:5: error: Function is missing a return type annotation [no-untyped-def] +torch/distributed/tensor/_utils.py:50:5: error: Function is missing a type annotation [no-untyped-def] +torch/distributed/tensor/_utils.py:55:5: error: Function is missing a type annotation [no-untyped-def] +torch/distributed/tensor/_utils.py:261:30: error: Module has no attribute "_DTensor_compute_global_tensor_info" [attr-defined] +torch/distributed/tensor/_utils.py:329:12: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/_utils.py:330:6: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/_utils.py:365:23: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/tensor/_utils.py:367:13: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/tensor/_utils.py:375:20: error: Module has no attribute "equal" [attr-defined] +torch/distributed/tensor/_utils.py:383:16: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/_utils.py:433:38: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/_utils.py:433:38: note: Error code "name-defined" not covered by "type: ignore" comment +torch/distributed/tensor/_utils.py:440:25: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/_utils.py:449:12: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/_tp_conv.py:47:23: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/tensor/_tp_conv.py:48:22: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/tensor/_tp_conv.py:62:21: error: Module has no attribute "cat" [attr-defined] +torch/distributed/tensor/_tp_conv.py:64:21: error: Module has no attribute "cat" [attr-defined] +torch/distributed/tensor/_tp_conv.py:66:21: error: Module has no attribute "cat" [attr-defined] +torch/distributed/tensor/_tp_conv.py:75:23: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/tensor/_tp_conv.py:76:22: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/tensor/_tp_conv.py:91:41: error: Module has no attribute "add" [attr-defined] +torch/distributed/tensor/_tp_conv.py:96:40: error: Module has no attribute "add" [attr-defined] +torch/distributed/tensor/_tp_conv.py:101:41: error: Module has no attribute "add" [attr-defined] +torch/distributed/tensor/_tp_conv.py:104:40: error: Module has no attribute "add" [attr-defined] +torch/distributed/tensor/_tp_conv.py:203:34: error: Argument 2 to "pad" has incompatible type "tuple[int, Any]"; expected "list[int]" [arg-type] +torch/distributed/tensor/_tp_conv.py:207:34: error: Argument 2 to "pad" has incompatible type "tuple[Any, int]"; expected "list[int]" [arg-type] +torch/distributed/tensor/_tp_conv.py:211:34: error: Argument 2 to "pad" has incompatible type "tuple[Any, Any]"; expected "list[int]" [arg-type] +torch/distributed/tensor/_redistribute.py:849:33: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/tensor/_redistribute.py:850:34: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/tensor/_sharding_prop.py:365:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/tensor/_api.py:138:25: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/_api.py:153:43: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/_api.py:363:25: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/_api.py:475:16: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/distributed/tensor/_api.py:490:33: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/tensor/_api.py:491:34: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/tensor/_api.py:736:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/tensor/_api.py:928:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/tensor/_api.py:1044:11: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/_api.py:1061:32: error: Module has no attribute "strided" [attr-defined] +torch/distributed/tensor/_api.py:1070:19: error: Module has no attribute "full" [attr-defined] +torch/distributed/tensor/_api.py:1073:21: error: Module has no attribute "rand" [attr-defined] +torch/distributed/tensor/_api.py:1073:46: error: Module has no attribute "randn" [attr-defined] +torch/distributed/tensor/_api.py:1075:37: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/distributed/tensor/_api.py:1111:21: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/tensor/_api.py:1112:13: error: Name "torch.layout" is not defined [name-defined] +torch/distributed/tensor/_api.py:1112:28: error: Module has no attribute "strided" [attr-defined] +torch/distributed/tensor/_api.py:1142:9: error: Module has no attribute "ones" [attr-defined] +torch/distributed/tensor/_api.py:1154:21: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/tensor/_api.py:1155:13: error: Name "torch.layout" is not defined [name-defined] +torch/distributed/tensor/_api.py:1155:28: error: Module has no attribute "strided" [attr-defined] +torch/distributed/tensor/_api.py:1185:9: error: Module has no attribute "empty" [attr-defined] +torch/distributed/tensor/_api.py:1199:21: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/tensor/_api.py:1200:13: error: Name "torch.layout" is not defined [name-defined] +torch/distributed/tensor/_api.py:1200:28: error: Module has no attribute "strided" [attr-defined] +torch/distributed/tensor/_api.py:1231:9: error: Module has no attribute "full" [attr-defined] +torch/distributed/tensor/_api.py:1245:21: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/tensor/_api.py:1246:13: error: Name "torch.layout" is not defined [name-defined] +torch/distributed/tensor/_api.py:1246:28: error: Module has no attribute "strided" [attr-defined] +torch/distributed/tensor/_api.py:1276:9: error: Module has no attribute "rand" [attr-defined] +torch/distributed/tensor/_api.py:1289:21: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/tensor/_api.py:1290:13: error: Name "torch.layout" is not defined [name-defined] +torch/distributed/tensor/_api.py:1290:28: error: Module has no attribute "strided" [attr-defined] +torch/distributed/tensor/_api.py:1320:9: error: Module has no attribute "randn" [attr-defined] +torch/distributed/tensor/_api.py:1333:21: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/tensor/_api.py:1334:13: error: Name "torch.layout" is not defined [name-defined] +torch/distributed/tensor/_api.py:1334:28: error: Module has no attribute "strided" [attr-defined] +torch/distributed/tensor/_api.py:1361:9: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/tensor/_dispatch.py:46:1: error: Function is missing a return type annotation [no-untyped-def] +torch/distributed/tensor/_dispatch.py:163:16: error: Module has no attribute "_get_dtensor_allow_implicit_replication" [attr-defined] +torch/distributed/tensor/_dispatch.py:167:16: error: Module has no attribute "_set_dtensor_allow_implicit_replication" [attr-defined] +torch/distributed/tensor/_dispatch.py:181:16: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/distributed/tensor/_dispatch.py:182:33: error: Module has no attribute "DispatchKey" [attr-defined] +torch/distributed/tensor/_dispatch.py:248:43: error: Module has no attribute "Generator" [attr-defined] +torch/distributed/tensor/_dispatch.py:287:36: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/tensor/_dispatch.py:290:36: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/tensor/_dispatch.py:332:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:191:12: error: Module has no attribute "min" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:194:17: error: Module has no attribute "min" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:197:12: error: Module has no attribute "max" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:200:17: error: Module has no attribute "max" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:365:22: error: Module has no attribute "cat" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:367:34: error: Module has no attribute "cat" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:370:28: error: Module has no attribute "cat" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:388:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:388:72: error: Module has no attribute "long" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:398:9: error: Module has no attribute "cat" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:411:9: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:422:27: error: Module has no attribute "sum" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:423:17: error: Module has no attribute "ne" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:426:27: error: Module has no attribute "cat" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:435:16: error: Module has no attribute "div" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:467:34: error: Module has no attribute "stack" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:157:12: error: Module has no attribute "min" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:160:17: error: Module has no attribute "min" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:163:12: error: Module has no attribute "max" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:166:17: error: Module has no attribute "max" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:282:9: error: Module has no attribute "cat" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:291:9: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:151:24: error: Module has no attribute "transpose" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:159:12: error: Module has no attribute "transpose" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:185:24: error: Module has no attribute "cat" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:186:14: error: Module has no attribute "empty" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:220:35: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:255:31: error: Module has no attribute "cat" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:256:23: error: Module has no attribute "sum" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:257:9: error: Module has no attribute "pow" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:257:19: error: Module has no attribute "abs" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:262:24: error: Module has no attribute "pow" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:263:23: error: Module has no attribute "full" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:271:25: error: Module has no attribute "where" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:277:9: error: Module has no attribute "div" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:277:19: error: Module has no attribute "mul" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:298:18: error: Module has no attribute "empty" [attr-defined] +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:347:19: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/init.py:128:5: error: Module has no attribute "full_like" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/init.py:129:5: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/init.py:130:5: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/init.py:131:5: error: Module has no attribute "ones_like" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/init.py:132:5: error: Module has no attribute "rand_like" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/init.py:133:5: error: Module has no attribute "randn_like" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/init.py:159:29: error: Module has no attribute "full_like" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/init.py:160:29: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/init.py:161:29: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/init.py:162:29: error: Module has no attribute "ones_like" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/init.py:163:29: error: Module has no attribute "rand_like" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/init.py:164:29: error: Module has no attribute "randn_like" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:11:25: error: Module has no attribute "ones" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:11:46: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:13:25: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:13:47: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:17:23: error: Module has no attribute "ones" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:18:19: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:21:12: error: Module has no attribute "equal" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:71:19: error: Module has no attribute "equal" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:73:23: error: Module has no attribute "equal" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:76:19: error: Module has no attribute "allclose" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:78:23: error: Module has no attribute "allclose" [attr-defined] +torch/distributed/_shard/sharded_tensor/__init__.py:30:12: error: Module has no attribute "strided" [attr-defined] +torch/distributed/_shard/sharded_tensor/__init__.py:33:19: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/__init__.py:85:12: error: Module has no attribute "strided" [attr-defined] +torch/distributed/_shard/sharded_tensor/__init__.py:88:19: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/__init__.py:139:12: error: Module has no attribute "strided" [attr-defined] +torch/distributed/_shard/sharded_tensor/__init__.py:142:19: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/__init__.py:195:12: error: Module has no attribute "strided" [attr-defined] +torch/distributed/_shard/sharded_tensor/__init__.py:198:19: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/__init__.py:249:12: error: Module has no attribute "strided" [attr-defined] +torch/distributed/_shard/sharded_tensor/__init__.py:252:19: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/__init__.py:305:12: error: Module has no attribute "strided" [attr-defined] +torch/distributed/_shard/sharded_tensor/__init__.py:308:19: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:48:10: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:52:15: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:54:15: error: Module has no attribute "device" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:160:57: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:218:10: error: Module has no attribute "DisableTorchFunctionSubclass" [attr-defined] +torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py:10:19: error: Module has no attribute "_has_compatible_shallow_copy_type" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:58:9: error: Module has no attribute "sigmoid" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:59:9: error: Module has no attribute "tanh" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:111:9: error: Module has no attribute "adaptive_avg_pool1d" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:122:9: error: Module has no attribute "avg_pool1d" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:123:9: error: Module has no attribute "_nn" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:124:9: error: Module has no attribute "_nn" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:125:9: error: Module has no attribute "clamp" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:126:9: error: Module has no attribute "flatten" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:127:9: error: Module has no attribute "mean" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:131:9: error: Module has no attribute "channel_shuffle" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:159:9: error: Module has no attribute "narrow" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:160:9: error: Module has no attribute "transpose" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:161:9: error: Module has no attribute "repeat_interleave" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:162:9: error: Module has no attribute "squeeze" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:163:9: error: Module has no attribute "stack" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:164:9: error: Module has no attribute "unsqueeze" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:196:9: error: Module has no attribute "cat" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:362:26: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:366:10: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:366:24: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:370:10: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:377:10: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:377:24: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:380:10: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:380:24: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:383:10: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:383:24: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:402:5: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:405:5: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:406:5: error: Module has no attribute "matmul" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:410:5: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:412:5: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:421:39: error: Module has no attribute "ScriptObject" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:440:36: error: Module has no attribute "ScriptObject" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:584:53: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:592:72: error: Module has no attribute "relu" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:664:53: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:861:47: error: Module has no attribute "quantize_per_tensor_dynamic" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:866:39: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:867:40: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:867:54: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:945:13: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:946:13: error: Module has no attribute "quantize_per_channel" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:1072:47: error: Module has no attribute "quantize_per_tensor_dynamic" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:1078:39: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:1079:40: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:1079:54: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:1154:9: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:1156:9: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:1157:9: error: Module has no attribute "matmul" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:1227:40: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/quantization/fx/_lower_to_native_backend.py:1232:35: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/_equalize.py:39:5: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/fx/_equalize.py:39:30: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/quantization/fx/_equalize.py:40:5: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/fx/_equalize.py:40:33: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/fx/_equalize.py:65:15: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/fx/_equalize.py:66:17: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/fx/_equalize.py:73:28: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/fx/_equalize.py:73:53: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/fx/_equalize.py:89:35: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_equalize.py:110:73: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_equalize.py:112:35: error: Module has no attribute "reshape" [attr-defined] +torch/ao/quantization/fx/_equalize.py:120:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_equalize.py:136:28: error: Module has no attribute "min" [attr-defined] +torch/ao/quantization/fx/_equalize.py:136:38: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/_equalize.py:137:28: error: Module has no attribute "max" [attr-defined] +torch/ao/quantization/fx/_equalize.py:137:38: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/_equalize.py:167:15: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/fx/_equalize.py:168:17: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/fx/_equalize.py:180:24: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/fx/_equalize.py:180:49: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/fx/_equalize.py:191:35: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_equalize.py:233:16: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_equalize.py:241:26: error: Module has no attribute "sqrt" [attr-defined] +torch/ao/quantization/fx/_equalize.py:246:26: error: Module has no attribute "nan_to_num" [attr-defined] +torch/ao/quantization/fx/_equalize.py:285:11: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/fx/_equalize.py:285:33: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/fx/_equalize.py:288:11: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/fx/_equalize.py:288:32: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/fx/_equalize.py:492:55: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_equalize.py:566:21: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/_equalize.py:566:39: error: Module has no attribute "reciprocal" [attr-defined] +torch/ao/quantization/fx/_equalize.py:575:21: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/_equalize.py:588:19: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/_equalize.py:640:21: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/_equalize.py:640:39: error: Module has no attribute "reciprocal" [attr-defined] +torch/ao/quantization/fx/_equalize.py:651:21: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/_equalize.py:654:12: error: Module has no attribute "allclose" [attr-defined] +torch/ao/quantization/fx/_equalize.py:672:19: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/_equalize.py:854:69: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/_equalize.py:871:43: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_equalize.py:960:51: error: Module has no attribute "mul" [attr-defined] +torch/_functorch/_aot_autograd/input_output_analysis.py:77:61: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:138:36: error: Module has no attribute "_autocast_supported_devices" [attr-defined] +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:355:17: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:455:56: error: Name "torch.device" is not defined [name-defined] +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:459:59: error: Name "torch.device" is not defined [name-defined] +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:777:29: error: Module has no attribute "_ExcludeDispatchKeyGuard" [attr-defined] +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:778:17: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:778:41: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1074:25: error: Module has no attribute "_ExcludeDispatchKeyGuard" [attr-defined] +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1075:13: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1075:37: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1093:17: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1140:36: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_dynamo/utils.py:72:1: error: Module "torch._C" has no attribute "_len_torch_function_stack" [attr-defined] +torch/_dynamo/utils.py:72:1: error: Module "torch._C" has no attribute "_pop_torch_function_stack" [attr-defined] +torch/_dynamo/utils.py:72:1: error: Module "torch._C" has no attribute "_push_on_torch_function_stack" [attr-defined] +torch/_dynamo/utils.py:857:5: error: Module has no attribute "FloatTensor" [attr-defined] +torch/_dynamo/utils.py:857:25: error: Module has no attribute "float32" [attr-defined] +torch/_dynamo/utils.py:857:40: error: Module has no attribute "float" [attr-defined] +torch/_dynamo/utils.py:858:5: error: Module has no attribute "DoubleTensor" [attr-defined] +torch/_dynamo/utils.py:858:26: error: Module has no attribute "float64" [attr-defined] +torch/_dynamo/utils.py:858:41: error: Module has no attribute "double" [attr-defined] +torch/_dynamo/utils.py:859:5: error: Module has no attribute "HalfTensor" [attr-defined] +torch/_dynamo/utils.py:859:24: error: Module has no attribute "float16" [attr-defined] +torch/_dynamo/utils.py:859:39: error: Module has no attribute "half" [attr-defined] +torch/_dynamo/utils.py:860:5: error: Module has no attribute "BFloat16Tensor" [attr-defined] +torch/_dynamo/utils.py:860:28: error: Module has no attribute "bfloat16" [attr-defined] +torch/_dynamo/utils.py:861:5: error: Module has no attribute "ByteTensor" [attr-defined] +torch/_dynamo/utils.py:861:24: error: Module has no attribute "uint8" [attr-defined] +torch/_dynamo/utils.py:862:5: error: Module has no attribute "CharTensor" [attr-defined] +torch/_dynamo/utils.py:862:24: error: Module has no attribute "int8" [attr-defined] +torch/_dynamo/utils.py:863:5: error: Module has no attribute "LongTensor" [attr-defined] +torch/_dynamo/utils.py:863:24: error: Module has no attribute "int64" [attr-defined] +torch/_dynamo/utils.py:863:37: error: Module has no attribute "long" [attr-defined] +torch/_dynamo/utils.py:864:5: error: Module has no attribute "IntTensor" [attr-defined] +torch/_dynamo/utils.py:864:23: error: Module has no attribute "int32" [attr-defined] +torch/_dynamo/utils.py:864:36: error: Module has no attribute "int" [attr-defined] +torch/_dynamo/utils.py:865:5: error: Module has no attribute "ShortTensor" [attr-defined] +torch/_dynamo/utils.py:865:25: error: Module has no attribute "int16" [attr-defined] +torch/_dynamo/utils.py:865:38: error: Module has no attribute "short" [attr-defined] +torch/_dynamo/utils.py:866:5: error: Module has no attribute "BoolTensor" [attr-defined] +torch/_dynamo/utils.py:866:24: error: Module has no attribute "bool" [attr-defined] +torch/_dynamo/utils.py:922:5: error: Function is missing a type annotation [no-untyped-def] +torch/_dynamo/utils.py:2161:41: error: Name "torch.dtype" is not defined [name-defined] +torch/_dynamo/utils.py:2170:13: error: Module has no attribute "clone" [attr-defined] +torch/_dynamo/utils.py:2185:24: error: Module has no attribute "sparse_coo" [attr-defined] +torch/_dynamo/utils.py:2186:20: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/_dynamo/utils.py:2193:29: error: Module has no attribute "sparse_csr" [attr-defined] +torch/_dynamo/utils.py:2193:47: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_dynamo/utils.py:2199:20: error: Module has no attribute "sparse_compressed_tensor" [attr-defined] +torch/_dynamo/utils.py:2215:22: error: Module has no attribute "empty_quantized" [attr-defined] +torch/_dynamo/utils.py:2217:22: error: Module has no attribute "empty" [attr-defined] +torch/_dynamo/utils.py:2287:25: error: Module has no attribute "_DisableFuncTorch" [attr-defined] +torch/_dynamo/utils.py:2290:21: error: Module has no attribute "clone" [attr-defined] +torch/_dynamo/utils.py:2293:30: error: Module has no attribute "clone" [attr-defined] +torch/_dynamo/utils.py:2305:9: error: Variable "torch.jit._script.ScriptFunction" is not valid as a type [valid-type] +torch/_dynamo/utils.py:2305:9: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/_dynamo/utils.py:2413:21: error: Module has no attribute "clone" [attr-defined] +torch/_dynamo/utils.py:2415:30: error: Module has no attribute "clone" [attr-defined] +torch/_dynamo/utils.py:2417:37: error: Module has no attribute "clone" [attr-defined] +torch/_dynamo/utils.py:2479:5: error: Module has no attribute "device" [attr-defined] +torch/_dynamo/utils.py:2480:5: error: Module has no attribute "dtype" [attr-defined] +torch/_dynamo/utils.py:2481:5: error: Module has no attribute "memory_format" [attr-defined] +torch/_dynamo/utils.py:2482:5: error: Module has no attribute "layout" [attr-defined] +torch/_dynamo/utils.py:2483:5: error: Module has no attribute "finfo" [attr-defined] +torch/_dynamo/utils.py:2484:5: error: Module has no attribute "iinfo" [attr-defined] +torch/_dynamo/utils.py:2510:13: error: Module has no attribute "Size" [attr-defined] +torch/_dynamo/utils.py:2981:12: error: Module has no attribute "sqrt" [attr-defined] +torch/_dynamo/utils.py:2981:23: error: Module has no attribute "mean" [attr-defined] +torch/_dynamo/utils.py:2981:34: error: Module has no attribute "square" [attr-defined] +torch/_dynamo/utils.py:3011:71: error: Module has no attribute "Size" [attr-defined] +torch/_dynamo/utils.py:3542:32: error: Module has no attribute "_dispatch_pystub" [attr-defined] +torch/_dynamo/utils.py:3980:16: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/_dynamo/utils.py:4072:9: error: Module has no attribute "empty_strided" [attr-defined] +torch/_dynamo/utils.py:4133:12: error: Module has no attribute "device" [attr-defined] +torch/_dynamo/utils.py:4438:9: error: Module has no attribute "Generator" [attr-defined] +torch/_dynamo/utils.py:4439:9: error: Module has no attribute "default_generator" [attr-defined] +torch/_dynamo/utils.py:4444:9: error: Module has no attribute "Generator" [attr-defined] +torch/_dynamo/utils.py:4445:9: error: Module has no attribute "default_generator" [attr-defined] +torch/_dynamo/utils.py:4496:35: error: Module has no attribute "_disabled_torch_function_impl" [attr-defined] +torch/_dynamo/utils.py:4697:52: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_dynamo/utils.py:4708:12: error: Module has no attribute "_get_function_stack_at" [attr-defined] +torch/_dynamo/utils.py:4724:32: error: Name "torch.device" is not defined [name-defined] +torch/_dynamo/utils.py:4724:49: error: Name "torch.Stream" is not defined [name-defined] +torch/_dynamo/utils.py:4792:63: error: Name "torch.Stream" is not defined [name-defined] +torch/_dynamo/utils.py:4793:12: error: Module has no attribute "Stream" [attr-defined] +torch/_dynamo/utils.py:4796:62: error: Name "torch.Event" is not defined [name-defined] +torch/_dynamo/utils.py:4797:12: error: Module has no attribute "Event" [attr-defined] +torch/_dynamo/utils.py:4890:55: error: Module has no attribute "is_inference_mode_enabled" [attr-defined] +torch/sparse/_triton_ops.py:27:21: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/sparse/_triton_ops.py:60:14: error: Module has no attribute "half" [attr-defined] +torch/sparse/_triton_ops.py:60:26: error: Module has no attribute "bfloat16" [attr-defined] +torch/sparse/_triton_ops.py:60:42: error: Module has no attribute "float" [attr-defined] +torch/sparse/_triton_ops.py:228:12: error: Module has no attribute "sparse_compressed_tensor" [attr-defined] +torch/sparse/_triton_ops.py:375:28: error: Module has no attribute "zeros" [attr-defined] +torch/sparse/_triton_ops.py:407:28: error: Module has no attribute "zeros" [attr-defined] +torch/sparse/_triton_ops.py:457:28: error: Module has no attribute "zeros" [attr-defined] +torch/sparse/_triton_ops.py:483:25: error: Module has no attribute "empty" [attr-defined] +torch/sparse/_triton_ops.py:522:25: error: Module has no attribute "float16" [attr-defined] +torch/sparse/_triton_ops.py:762:17: error: Module has no attribute "float16" [attr-defined] +torch/sparse/_triton_ops.py:883:26: error: Module has no attribute "strided" [attr-defined] +torch/sparse/_triton_ops.py:885:29: error: Module has no attribute "sparse_csr" [attr-defined] +torch/sparse/_triton_ops.py:885:47: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/sparse/_triton_ops.py:890:29: error: Module has no attribute "sparse_csc" [attr-defined] +torch/sparse/_triton_ops.py:890:47: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/sparse/_triton_ops.py:925:21: error: Module has no attribute "int32" [attr-defined] +torch/sparse/_triton_ops.py:930:13: error: Module has no attribute "arange" [attr-defined] +torch/sparse/_triton_ops.py:940:21: error: Module has no attribute "cat" [attr-defined] +torch/sparse/_triton_ops.py:956:13: error: Module has no attribute "arange" [attr-defined] +torch/sparse/_triton_ops.py:963:17: error: Module has no attribute "arange" [attr-defined] +torch/sparse/_triton_ops.py:969:21: error: Module has no attribute "cat" [attr-defined] +torch/sparse/_triton_ops.py:974:21: error: Module has no attribute "cat" [attr-defined] +torch/sparse/_triton_ops.py:977:17: error: Module has no attribute "cumsum" [attr-defined] +torch/sparse/_triton_ops.py:983:21: error: Module has no attribute "cat" [attr-defined] +torch/sparse/_triton_ops.py:1004:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/sparse/_triton_ops.py:1005:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/sparse/_triton_ops.py:1031:46: error: Module has no attribute "float16" [attr-defined] +torch/sparse/_triton_ops.py:1031:61: error: Module has no attribute "bfloat16" [attr-defined] +torch/sparse/_triton_ops.py:1064:15: error: Module has no attribute "empty" [attr-defined] +torch/sparse/_triton_ops.py:1077:24: error: Module has no attribute "zeros" [attr-defined] +torch/sparse/_triton_ops.py:1132:39: error: Module has no attribute "int8" [attr-defined] +torch/sparse/_triton_ops.py:1139:15: error: Module has no attribute "empty" [attr-defined] +torch/sparse/_triton_ops.py:1141:19: error: Module has no attribute "int32" [attr-defined] +torch/sparse/_triton_ops.py:1269:9: error: Module has no attribute "float16" [attr-defined] +torch/sparse/_triton_ops.py:1270:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/sparse/_triton_ops.py:1271:9: error: Module has no attribute "float32" [attr-defined] +torch/sparse/_triton_ops.py:1272:9: error: Module has no attribute "float64" [attr-defined] +torch/sparse/_triton_ops.py:1273:9: error: Module has no attribute "int8" [attr-defined] +torch/sparse/_triton_ops.py:1274:9: error: Module has no attribute "int32" [attr-defined] +torch/sparse/_triton_ops.py:1633:29: error: Module has no attribute "half" [attr-defined] +torch/sparse/_triton_ops.py:1633:41: error: Module has no attribute "bfloat16" [attr-defined] +torch/sparse/_triton_ops.py:1681:47: error: Module has no attribute "bool" [attr-defined] +torch/sparse/_triton_ops.py:1686:35: error: Module has no attribute "bool" [attr-defined] +torch/sparse/_triton_ops.py:1763:52: error: Module has no attribute "int8" [attr-defined] +torch/sparse/_triton_ops.py:1957:16: error: Module has no attribute "sparse_compressed_tensor" [attr-defined] +torch/sparse/_triton_ops.py:1980:33: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/sparse/_triton_ops.py:1981:13: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/sparse/_triton_ops.py:1992:35: error: Module has no attribute "bool" [attr-defined] +torch/sparse/_triton_ops.py:2107:13: error: Module has no attribute "float16" [attr-defined] +torch/sparse/_triton_ops.py:2108:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/sparse/_triton_ops.py:2109:13: error: Module has no attribute "float32" [attr-defined] +torch/sparse/_triton_ops.py:2110:13: error: Module has no attribute "float64" [attr-defined] +torch/sparse/_triton_ops.py:2284:13: error: Module has no attribute "float16" [attr-defined] +torch/sparse/_triton_ops.py:2285:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/sparse/_triton_ops.py:2286:13: error: Module has no attribute "float32" [attr-defined] +torch/sparse/_triton_ops.py:2287:13: error: Module has no attribute "float64" [attr-defined] +torch/distributed/tensor/_ops/utils.py:224:19: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/_ops/utils.py:239:12: error: Name "torch.Size" is not defined [name-defined] +torch/ao/ns/fx/pattern_utils.py:115:21: error: Module has no attribute "float16" [attr-defined] +torch/ao/ns/fx/mappings.py:63:13: error: Module has no attribute "avg_pool1d" [attr-defined] +torch/ao/ns/fx/mappings.py:67:13: error: Module has no attribute "_nn" [attr-defined] +torch/ao/ns/fx/mappings.py:71:13: error: Module has no attribute "_nn" [attr-defined] +torch/ao/ns/fx/mappings.py:92:13: error: Module has no attribute "add" [attr-defined] +torch/ao/ns/fx/mappings.py:97:13: error: Module has no attribute "cat" [attr-defined] +torch/ao/ns/fx/mappings.py:101:13: error: Module has no attribute "mul" [attr-defined] +torch/ao/ns/fx/mappings.py:110:13: error: Module has no attribute "relu" [attr-defined] +torch/ao/ns/fx/mappings.py:127:13: error: Module has no attribute "sigmoid" [attr-defined] +torch/ao/ns/fx/mappings.py:241:13: error: Module has no attribute "tanh" [attr-defined] +torch/ao/ns/fx/mappings.py:264:13: error: Module has no attribute "unsqueeze" [attr-defined] +torch/ao/ns/fx/mappings.py:268:13: error: Module has no attribute "stack" [attr-defined] +torch/ao/ns/fx/mappings.py:272:13: error: Module has no attribute "squeeze" [attr-defined] +torch/ao/ns/fx/mappings.py:276:13: error: Module has no attribute "sort" [attr-defined] +torch/ao/ns/fx/mappings.py:280:13: error: Module has no attribute "repeat_interleave" [attr-defined] +torch/ao/ns/fx/mappings.py:284:13: error: Module has no attribute "min" [attr-defined] +torch/ao/ns/fx/mappings.py:288:13: error: Module has no attribute "mean" [attr-defined] +torch/ao/ns/fx/mappings.py:292:13: error: Module has no attribute "max" [attr-defined] +torch/ao/ns/fx/mappings.py:296:13: error: Module has no attribute "transpose" [attr-defined] +torch/ao/ns/fx/mappings.py:300:13: error: Module has no attribute "flatten" [attr-defined] +torch/ao/ns/fx/mappings.py:304:13: error: Module has no attribute "clamp" [attr-defined] +torch/ao/ns/fx/mappings.py:308:13: error: Module has no attribute "chunk" [attr-defined] +torch/ao/ns/fx/mappings.py:324:13: error: Module has no attribute "matmul" [attr-defined] +torch/ao/ns/fx/mappings.py:356:13: error: Module has no attribute "narrow" [attr-defined] +torch/ao/ns/fx/mappings.py:497:9: error: Module has no attribute "cat" [attr-defined] +torch/ao/ns/fx/mappings.py:507:9: error: Module has no attribute "add" [attr-defined] +torch/ao/ns/fx/mappings.py:509:9: error: Module has no attribute "mul" [attr-defined] +torch/ao/ns/fx/mappings.py:510:9: error: Module has no attribute "sum" [attr-defined] +torch/ao/ns/fx/mappings.py:542:9: error: Module has no attribute "tanh" [attr-defined] +torch/ao/ns/fx/mappings.py:544:9: error: Module has no attribute "sigmoid" [attr-defined] +torch/ao/ns/fx/mappings.py:547:9: error: Module has no attribute "adaptive_avg_pool1d" [attr-defined] +torch/ao/ns/fx/mappings.py:560:9: error: Module has no attribute "avg_pool1d" [attr-defined] +torch/ao/ns/fx/mappings.py:561:9: error: Module has no attribute "_nn" [attr-defined] +torch/ao/ns/fx/mappings.py:562:9: error: Module has no attribute "_nn" [attr-defined] +torch/ao/ns/fx/mappings.py:563:9: error: Module has no attribute "cat" [attr-defined] +torch/ao/ns/fx/mappings.py:564:9: error: Module has no attribute "chunk" [attr-defined] +torch/ao/ns/fx/mappings.py:565:9: error: Module has no attribute "clamp" [attr-defined] +torch/ao/ns/fx/mappings.py:566:9: error: Module has no attribute "flatten" [attr-defined] +torch/ao/ns/fx/mappings.py:567:9: error: Module has no attribute "transpose" [attr-defined] +torch/ao/ns/fx/mappings.py:568:9: error: Module has no attribute "max" [attr-defined] +torch/ao/ns/fx/mappings.py:569:9: error: Module has no attribute "mean" [attr-defined] +torch/ao/ns/fx/mappings.py:570:9: error: Module has no attribute "min" [attr-defined] +torch/ao/ns/fx/mappings.py:571:9: error: Module has no attribute "narrow" [attr-defined] +torch/ao/ns/fx/mappings.py:572:9: error: Module has no attribute "repeat_interleave" [attr-defined] +torch/ao/ns/fx/mappings.py:573:9: error: Module has no attribute "sort" [attr-defined] +torch/ao/ns/fx/mappings.py:574:9: error: Module has no attribute "squeeze" [attr-defined] +torch/ao/ns/fx/mappings.py:575:9: error: Module has no attribute "stack" [attr-defined] +torch/ao/ns/fx/mappings.py:576:9: error: Module has no attribute "unsqueeze" [attr-defined] +torch/ao/ns/fx/mappings.py:726:9: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/_inductor/utils.py:211:13: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/utils.py:211:48: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/utils.py:247:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/utils.py:251:11: error: Module has no attribute "mean" [attr-defined] +torch/_inductor/utils.py:319:13: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/utils.py:319:48: error: Module has no attribute "int" [attr-defined] +torch/_inductor/utils.py:397:9: error: Module has no attribute "_dispatch_has_kernel_for_dispatch_key" [attr-defined] +torch/_inductor/utils.py:408:42: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/utils.py:410:16: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/utils.py:412:18: error: Module has no attribute "device" [attr-defined] +torch/_inductor/utils.py:413:8: error: Item "str" of "Any | str" has no attribute "type" [union-attr] +torch/_inductor/utils.py:415:16: error: Module has no attribute "device" [attr-defined] +torch/_inductor/utils.py:446:28: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/utils.py:550:12: error: Module has no attribute "Tag" [attr-defined] +torch/_inductor/utils.py:611:15: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/utils.py:614:12: error: Module has no attribute "median" [attr-defined] +torch/_inductor/utils.py:785:9: error: Function is missing a type annotation [no-untyped-def] +torch/_inductor/utils.py:1231:61: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/utils.py:1233:31: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/utils.py:1241:29: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/utils.py:1417:27: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/utils.py:1420:17: error: Module has no attribute "uint64" [attr-defined] +torch/_inductor/utils.py:1422:12: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/utils.py:1671:44: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/utils.py:1672:36: error: Module has no attribute "device" [attr-defined] +torch/_inductor/utils.py:1675:18: error: Module has no attribute "device" [attr-defined] +torch/_inductor/utils.py:1702:16: error: _XpuDeviceProperties? has no attribute "gpu_subslice_count" [attr-defined] +torch/_inductor/utils.py:1703:12: error: _CudaDeviceProperties? has no attribute "multi_processor_count" [attr-defined] +torch/_inductor/utils.py:1713:12: error: _CudaDeviceProperties? has no attribute "major" [attr-defined] +torch/_inductor/utils.py:1721:16: error: Module has no attribute "_get_sm_carveout_experimental" [attr-defined] +torch/_inductor/utils.py:1727:13: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/utils.py:1746:49: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/utils.py:1782:22: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/utils.py:1782:37: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/utils.py:1782:53: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/utils.py:1784:26: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/utils.py:1784:41: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/utils.py:1784:57: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/utils.py:1784:72: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/utils.py:1786:31: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/utils.py:1786:52: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/utils.py:1853:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/utils.py:1864:26: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/utils.py:1864:41: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/utils.py:1864:57: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/utils.py:1865:43: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/utils.py:1903:21: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/utils.py:1996:22: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/utils.py:2036:22: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/utils.py:2036:37: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/utils.py:2036:53: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/utils.py:2171:12: error: _CudaDeviceProperties? has no attribute "gcnArchName" [attr-defined] +torch/_inductor/utils.py:2227:29: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/utils.py:2227:44: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/utils.py:2227:60: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/utils.py:2285:33: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/utils.py:2316:38: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/utils.py:2316:51: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/utils.py:2317:22: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/utils.py:2317:37: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/utils.py:2317:53: error: Module has no attribute "half" [attr-defined] +torch/_inductor/utils.py:2317:65: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/utils.py:2601:24: error: Module has no attribute "device" [attr-defined] +torch/_inductor/utils.py:2607:46: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/utils.py:2612:16: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/utils.py:2614:16: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/utils.py:2629:19: error: Module has no attribute "get_num_threads" [attr-defined] +torch/_inductor/utils.py:2642:30: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/utils.py:2658:22: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/utils.py:2658:37: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/utils.py:2658:53: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/utils.py:2665:22: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/utils.py:2665:37: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/utils.py:2669:46: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/utils.py:2671:40: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/utils.py:2673:22: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/utils.py:2673:37: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/utils.py:2679:46: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/utils.py:2682:40: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/utils.py:3037:57: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/utils.py:3038:17: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/utils.py:3041:26: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/utils.py:3041:39: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/utils.py:3047:17: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/utils.py:3048:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/utils.py:3078:60: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/utils.py:3078:72: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/utils.py:3224:13: error: Module has no attribute "_foreach_copy_" [attr-defined] +torch/_inductor/utils.py:3239:14: error: Module has no attribute "as_strided" [attr-defined] +torch/_inductor/utils.py:3240:12: error: Module has no attribute "as_strided" [attr-defined] +torch/_inductor/utils.py:3294:15: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/utils.py:3294:27: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/utils.py:3400:24: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/utils.py:3406:41: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/utils.py:3410:34: error: Module has no attribute "dtype" [attr-defined] +torch/_inductor/utils.py:3459:37: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/utils.py:3468:37: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/utils.py:3497:32: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/utils.py:3500:19: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/utils.py:3500:34: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/utils.py:3504:16: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/utils.py:3665:35: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/utils.py:3671:16: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/utils.py:3673:16: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/utils.py:4033:16: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/runtime/benchmarking.py:106:64: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/runtime/benchmarking.py:107:35: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/runtime/benchmarking.py:136:37: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/runtime/benchmarking.py:167:35: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/runtime/benchmarking.py:170:17: error: Module has no attribute "device" [attr-defined] +torch/_inductor/runtime/benchmarking.py:182:44: error: Module has no attribute "device" [attr-defined] +torch/_inductor/runtime/benchmarking.py:195:35: error: Module has no attribute "device" [attr-defined] +torch/_inductor/runtime/benchmarking.py:297:16: error: _CudaDeviceProperties? has no attribute "L2_cache_size" [attr-defined] +torch/_inductor/runtime/benchmarking.py:377:18: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/runtime/benchmarking.py:377:61: error: Module has no attribute "int" [attr-defined] +torch/_functorch/partitioners.py:156:17: error: Module has no attribute "Tag" [attr-defined] +torch/_functorch/partitioners.py:394:30: error: Module has no attribute "float64" [attr-defined] +torch/_functorch/partitioners.py:397:36: error: Module has no attribute "float64" [attr-defined] +torch/_functorch/partitioners.py:436:29: error: Module has no attribute "float32" [attr-defined] +torch/_functorch/partitioners.py:440:35: error: Module has no attribute "float32" [attr-defined] +torch/_functorch/partitioners.py:450:17: error: Name "torch.dtype" is not defined [name-defined] +torch/_functorch/partitioners.py:458:25: error: Module has no attribute "float32" [attr-defined] +torch/_functorch/partitioners.py:461:31: error: Module has no attribute "float32" [attr-defined] +torch/_functorch/partitioners.py:533:34: error: Name "torch.dtype" is not defined [name-defined] +torch/_functorch/partitioners.py:569:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_functorch/partitioners.py:577:28: error: Name "torch.dtype" is not defined [name-defined] +torch/_functorch/partitioners.py:585:12: error: Module has no attribute "finfo" [attr-defined] +torch/_functorch/partitioners.py:1187:16: error: Module has no attribute "Tag" [attr-defined] +torch/_functorch/partitioners.py:1285:13: error: Name "torch.device" is not defined [name-defined] +torch/_functorch/partitioners.py:1406:21: error: Module has no attribute "Tag" [attr-defined] +torch/_functorch/partitioners.py:1411:38: error: Name "torch.device" is not defined [name-defined] +torch/_functorch/partitioners.py:1427:16: error: Module has no attribute "device" [attr-defined] +torch/_functorch/partitioners.py:1429:47: error: Name "torch.device" is not defined [name-defined] +torch/_functorch/partitioners.py:1448:17: error: Module has no attribute "Tag" [attr-defined] +torch/_functorch/partitioners.py:1477:21: error: Module has no attribute "device" [attr-defined] +torch/_functorch/partitioners.py:2662:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_functorch/partitioners.py:2670:35: error: Module has no attribute "argmin" [attr-defined] +torch/_functorch/_aot_autograd/runtime_wrappers.py:352:28: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_functorch/_aot_autograd/runtime_wrappers.py:355:21: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/_functorch/_aot_autograd/runtime_wrappers.py:362:21: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/_functorch/_aot_autograd/runtime_wrappers.py:465:13: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/_functorch/_aot_autograd/runtime_wrappers.py:1487:30: error: Module has no attribute "empty" [attr-defined] +torch/_functorch/_aot_autograd/runtime_wrappers.py:1798:9: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_functorch/_aot_autograd/runtime_wrappers.py:1811:26: error: Name "torch.Generator" is not defined [name-defined] +torch/_functorch/_aot_autograd/runtime_wrappers.py:1812:26: error: Name "torch.Generator" is not defined [name-defined] +torch/_functorch/_aot_autograd/runtime_wrappers.py:1828:17: error: Module has no attribute "randint" [attr-defined] +torch/_functorch/_aot_autograd/runtime_wrappers.py:1828:34: error: Module has no attribute "iinfo" [attr-defined] +torch/_functorch/_aot_autograd/runtime_wrappers.py:1828:46: error: Module has no attribute "int64" [attr-defined] +torch/_functorch/_aot_autograd/runtime_wrappers.py:1897:17: error: Module has no attribute "empty_strided" [attr-defined] +torch/_functorch/_aot_autograd/runtime_wrappers.py:2096:30: error: Name "torch.Generator" is not defined [name-defined] +torch/_functorch/_aot_autograd/runtime_wrappers.py:2097:30: error: Name "torch.Generator" is not defined [name-defined] +torch/_functorch/_aot_autograd/runtime_wrappers.py:2331:30: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_functorch/_aot_autograd/runtime_wrappers.py:2442:31: error: Module has no attribute "_DisableAutocast" [attr-defined] +torch/_dynamo/polyfills/__init__.py:96:24: error: Module has no attribute "empty_like" [attr-defined] +torch/_dynamo/polyfills/__init__.py:100:10: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_dynamo/polyfills/__init__.py:362:14: error: Module has no attribute "_foreach_sub" [attr-defined] +torch/_dynamo/polyfills/__init__.py:363:14: error: Module has no attribute "_foreach_mul" [attr-defined] +torch/_dynamo/polyfills/__init__.py:364:12: error: Module has no attribute "_foreach_add_" [attr-defined] +torch/_dynamo/polyfills/__init__.py:368:12: error: Module has no attribute "_foreach_pow" [attr-defined] +torch/fx/experimental/validator.py:387:47: error: Name "torch.dtype" is not defined [name-defined] +torch/fx/experimental/validator.py:389:25: error: Module has no attribute "int64" [attr-defined] +torch/fx/experimental/validator.py:391:25: error: Module has no attribute "double" [attr-defined] +torch/fx/experimental/validator.py:393:25: error: Module has no attribute "bool" [attr-defined] +torch/fx/experimental/validator.py:397:51: error: Name "torch.dtype" is not defined [name-defined] +torch/fx/experimental/validator.py:398:25: error: Module has no attribute "float64" [attr-defined] +torch/fx/experimental/validator.py:402:55: error: Name "torch.dtype" is not defined [name-defined] +torch/fx/experimental/validator.py:405:55: error: Name "torch.dtype" is not defined [name-defined] +torch/fx/experimental/validator.py:435:54: error: Name "torch.dtype" is not defined [name-defined] +torch/fx/experimental/validator.py:438:55: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/tensor/_ops/_view_ops.py:482:5: error: Module has no attribute "broadcast_to" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:484:5: error: Module has no attribute "flatten" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:485:5: error: Module has no attribute "movedim" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:488:5: error: Module has no attribute "permute" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:491:5: error: Module has no attribute "ravel" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:493:5: error: Module has no attribute "reshape" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:494:5: error: Module has no attribute "squeeze" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:495:5: error: Module has no attribute "tile" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:496:5: error: Module has no attribute "transpose" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:497:5: error: Module has no attribute "unsqueeze" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:499:5: error: Module has no attribute "view_as_complex" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:500:5: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:756:48: error: Module has no attribute "squeeze" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:758:24: error: Module has no attribute "squeeze" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:761:23: error: Module has no attribute "squeeze" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:770:27: error: Module has no attribute "reshape" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:779:29: error: Module has no attribute "unsqueeze" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:785:27: error: Module has no attribute "permute" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:791:25: error: Module has no attribute "transpose" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:793:56: error: Module has no attribute "view_as_complex" [attr-defined] +torch/distributed/tensor/_ops/_view_ops.py:794:53: error: Module has no attribute "view_as_real" [attr-defined] +torch/distributed/tensor/_ops/_matrix_ops.py:114:20: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/_ops/_matrix_ops.py:1095:31: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/_ops/_math_ops.py:108:24: error: Incompatible return value type (got "float", expected "Tensor") [return-value] +torch/distributed/tensor/_ops/_math_ops.py:113:20: error: Incompatible return value type (got "float", expected "Tensor") [return-value] +torch/distributed/tensor/_ops/_math_ops.py:912:57: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/_ops/_math_ops.py:1058:57: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/_ops/_conv_ops.py:54:9: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/_ops/_conv_ops.py:97:13: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/_ops/_common_rules.py:212:9: error: Module has no attribute "Size" [attr-defined] +torch/ao/quantization/fx/prepare.py:90:39: error: Module has no attribute "bool" [attr-defined] +torch/ao/quantization/fx/prepare.py:92:5: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/fx/prepare.py:93:5: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/fx/prepare.py:94:5: error: Module has no attribute "qint32" [attr-defined] +torch/ao/quantization/fx/prepare.py:95:5: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/prepare.py:96:5: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/fx/prepare.py:97:5: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/fx/prepare.py:98:5: error: Module has no attribute "int16" [attr-defined] +torch/ao/quantization/fx/prepare.py:99:5: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/fx/prepare.py:100:5: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/ao/quantization/fx/prepare.py:101:5: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/ao/quantization/fx/prepare.py:104:67: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/fx/prepare.py:233:53: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/fx/prepare.py:253:12: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/prepare.py:362:32: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/prepare.py:388:35: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/fx/prepare.py:388:49: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/fx/prepare.py:487:19: error: Name "torch.device" is not defined [name-defined] +torch/ao/quantization/fx/prepare.py:621:13: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/prepare.py:623:30: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/prepare.py:624:37: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/fx/prepare.py:627:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/fx/prepare.py:746:6: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/prepare.py:821:19: error: Name "torch.device" is not defined [name-defined] +torch/ao/quantization/fx/prepare.py:847:16: error: Missing positional arguments "args", "kwargs", "name", "op", "target" in call to "Node" [call-arg] +torch/ao/quantization/fx/prepare.py:847:26: error: Argument 1 to "Node" has incompatible type "list[Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | Node | int | <8 more items> | None]"; expected "Graph" [arg-type] +torch/ao/quantization/fx/prepare.py:927:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/fx/prepare.py:929:22: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/fx/prepare.py:933:49: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/fx/prepare.py:993:19: error: Name "torch.device" is not defined [name-defined] +torch/ao/quantization/fx/prepare.py:1155:9: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/fx/prepare.py:1227:41: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/fx/prepare.py:1238:50: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/fx/prepare.py:1287:19: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/fx/prepare.py:1678:13: error: Module has no attribute "bool" [attr-defined] +torch/ao/ns/fx/graph_passes.py:227:9: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/ns/fx/graph_passes.py:228:52: error: Module has no attribute "quint8" [attr-defined] +torch/ao/ns/fx/graph_passes.py:292:25: error: Module has no attribute "dequantize" [attr-defined] +torch/ao/ns/fx/graph_passes.py:308:29: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/ns/fx/graph_passes.py:308:29: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/ao/ns/fx/graph_passes.py:315:35: error: Module has no attribute "float16" [attr-defined] +torch/ao/ns/fx/graph_passes.py:647:43: error: Module has no attribute "dtype" [attr-defined] +torch/_inductor/ops_handler.py:88:63: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ops_handler.py:128:51: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ops_handler.py:139:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ops_handler.py:140:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ops_handler.py:149:41: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ops_handler.py:163:40: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ops_handler.py:169:41: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ops_handler.py:175:41: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ops_handler.py:181:45: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ops_handler.py:240:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ops_handler.py:241:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ops_handler.py:269:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ops_handler.py:281:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ops_handler.py:296:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ops_handler.py:722:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ops_handler.py:722:30: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/ops_handler.py:1017:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ops_handler.py:1018:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ops_handler.py:1107:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ops_handler.py:1138:41: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ops_handler.py:1141:43: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/exc.py:136:23: error: Variable "torch.cuda._CudaDeviceProperties" is not valid as a type [valid-type] +torch/_inductor/exc.py:136:23: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/_inductor/exc.py:140:13: error: _CudaDeviceProperties? has no attribute "name" [attr-defined] +torch/_inductor/exc.py:140:13: error: _CudaDeviceProperties? has no attribute "major" [attr-defined] +torch/_inductor/exc.py:140:13: error: _CudaDeviceProperties? has no attribute "minor" [attr-defined] +torch/_inductor/decomposition.py:195:16: error: Module has no attribute "full" [attr-defined] +torch/_inductor/decomposition.py:211:39: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/decomposition.py:230:12: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/decomposition.py:277:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/decomposition.py:292:20: error: Module has no attribute "sum" [attr-defined] +torch/_inductor/decomposition.py:304:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/decomposition.py:313:19: error: Module has no attribute "sum" [attr-defined] +torch/_inductor/decomposition.py:333:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/decomposition.py:351:33: error: Module has no attribute "numel" [attr-defined] +torch/_inductor/decomposition.py:359:20: error: Module has no attribute "sum" [attr-defined] +torch/_inductor/decomposition.py:434:16: error: Module has no attribute "where" [attr-defined] +torch/_inductor/decomposition.py:435:13: error: Module has no attribute "isnan" [attr-defined] +torch/_inductor/decomposition.py:435:48: error: Module has no attribute "atan2" [attr-defined] +torch/_inductor/decomposition.py:446:10: error: Module has no attribute "scalar_tensor" [attr-defined] +torch/_inductor/decomposition.py:447:11: error: Module has no attribute "where" [attr-defined] +torch/_inductor/decomposition.py:448:12: error: Module has no attribute "where" [attr-defined] +torch/_inductor/decomposition.py:448:24: error: Module has no attribute "isnan" [attr-defined] +torch/_inductor/decomposition.py:481:13: error: Incompatible types in assignment (expression has type "int | float", variable has type "Tensor") [assignment] +torch/_inductor/decomposition.py:482:20: error: Module has no attribute "promote_types" [attr-defined] +torch/_inductor/decomposition.py:507:9: error: Incompatible types in assignment (expression has type "int", variable has type "Tensor") [assignment] +torch/_inductor/decomposition.py:508:9: error: Incompatible types in assignment (expression has type "int", variable has type "Tensor") [assignment] +torch/_inductor/decomposition.py:512:14: error: Module has no attribute "flatten" [attr-defined] +torch/_inductor/decomposition.py:533:12: error: Module has no attribute "where" [attr-defined] +torch/_inductor/decomposition.py:533:24: error: Module has no attribute "isnan" [attr-defined] +torch/_inductor/decomposition.py:538:12: error: Module has no attribute "where" [attr-defined] +torch/_inductor/decomposition.py:538:24: error: Module has no attribute "isnan" [attr-defined] +torch/_inductor/decomposition.py:547:22: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/decomposition.py:548:16: error: Module has no attribute "any" [attr-defined] +torch/_inductor/decomposition.py:558:22: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/decomposition.py:559:16: error: Module has no attribute "all" [attr-defined] +torch/_inductor/decomposition.py:570:12: error: Module has no attribute "narrow" [attr-defined] +torch/_inductor/decomposition.py:584:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/decomposition.py:607:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/decomposition.py:608:22: error: Name "torch.layout" is not defined [name-defined] +torch/_inductor/decomposition.py:609:22: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/decomposition.py:612:20: error: Name "torch.memory_format" is not defined [name-defined] +torch/_inductor/decomposition.py:612:42: error: Module has no attribute "preserve_format" [attr-defined] +torch/_inductor/decomposition.py:618:25: error: Module has no attribute "preserve_format" [attr-defined] +torch/_inductor/decomposition.py:619:18: error: Module has no attribute "full" [attr-defined] +torch/_inductor/decomposition.py:631:26: error: Module has no attribute "strided" [attr-defined] +torch/_inductor/decomposition.py:633:18: error: Module has no attribute "full" [attr-defined] +torch/_inductor/decomposition.py:651:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/decomposition.py:652:22: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/decomposition.py:653:20: error: Name "torch.memory_format" is not defined [name-defined] +torch/_inductor/decomposition.py:653:42: error: Module has no attribute "preserve_format" [attr-defined] +torch/_inductor/decomposition.py:659:25: error: Module has no attribute "preserve_format" [attr-defined] +torch/_inductor/decomposition.py:681:23: error: Module has no attribute "rand" [attr-defined] +torch/_inductor/decomposition.py:686:23: error: Module has no attribute "randn" [attr-defined] +torch/_inductor/decomposition.py:752:37: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/decomposition.py:754:64: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/decomposition.py:756:64: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/decomposition.py:760:32: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/decomposition.py:778:21: error: Module has no attribute "device" [attr-defined] +torch/_inductor/decomposition.py:780:43: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_inductor/decomposition.py:846:41: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_inductor/decomposition.py:911:16: error: Module has no attribute "where" [attr-defined] +torch/_inductor/decomposition.py:921:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/decomposition.py:923:24: error: Module has no attribute "aminmax" [attr-defined] +torch/_inductor/decomposition.py:925:13: error: Module has no attribute "max" [attr-defined] +torch/_inductor/decomposition.py:926:30: error: Module has no attribute "round" [attr-defined] +torch/_inductor/decomposition.py:926:62: error: Module has no attribute "int" [attr-defined] +torch/_inductor/decomposition.py:927:18: error: Module has no attribute "clamp" [attr-defined] +torch/_inductor/decomposition.py:928:21: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/decomposition.py:928:51: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/decomposition.py:939:17: error: Module has no attribute "index_put" [attr-defined] +torch/_inductor/decomposition.py:962:18: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/decomposition.py:965:20: error: Module has no attribute "sum" [attr-defined] +torch/_inductor/decomposition.py:992:16: error: Module has no attribute "ones_like" [attr-defined] +torch/_inductor/decomposition.py:995:22: error: Module has no attribute "ones_like" [attr-defined] +torch/_inductor/decomposition.py:998:22: error: Module has no attribute "zeros_like" [attr-defined] +torch/_inductor/decomposition.py:1017:18: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/decomposition.py:1064:26: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/decomposition.py:1064:38: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/decomposition.py:1124:63: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/decomposition.py:1145:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/decomposition.py:1160:25: error: Name "torch.Generator" is not defined [name-defined] +torch/_inductor/decomposition.py:1165:18: error: Module has no attribute "where" [attr-defined] +torch/_inductor/decomposition.py:1166:21: error: Module has no attribute "where" [attr-defined] +torch/_inductor/decomposition.py:1186:29: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/decomposition.py:1186:42: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/decomposition.py:1189:11: error: Module has no attribute "arange" [attr-defined] +torch/_inductor/decomposition.py:1190:15: error: Module has no attribute "searchsorted" [attr-defined] +torch/_inductor/decomposition.py:1191:49: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/decomposition.py:1193:12: error: Module has no attribute "clamp" [attr-defined] +torch/_inductor/cudagraph_utils.py:172:31: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/cudagraph_utils.py:175:29: error: Module has no attribute "device" [attr-defined] +torch/_inductor/cudagraph_utils.py:180:33: error: Module has no attribute "device" [attr-defined] +torch/_inductor/cudagraph_utils.py:182:44: error: Module has no attribute "device" [attr-defined] +torch/_inductor/cudagraph_utils.py:200:31: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/cpu_vec_isa.py:40:28: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/cpu_vec_isa.py:81:32: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/cpu_vec_isa.py:81:46: error: Module has no attribute "float" [attr-defined] +torch/_inductor/cpu_vec_isa.py:162:25: error: Module has no attribute "float" [attr-defined] +torch/_inductor/cpu_vec_isa.py:162:41: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/cpu_vec_isa.py:162:60: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/cpu_vec_isa.py:184:25: error: Module has no attribute "float" [attr-defined] +torch/_inductor/cpu_vec_isa.py:184:41: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/cpu_vec_isa.py:184:61: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/cpu_vec_isa.py:203:25: error: Module has no attribute "float" [attr-defined] +torch/_inductor/cpu_vec_isa.py:203:42: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/cpu_vec_isa.py:203:62: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/cpu_vec_isa.py:328:25: error: Module has no attribute "float" [attr-defined] +torch/_inductor/cpu_vec_isa.py:328:41: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/cpu_vec_isa.py:328:61: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/cpu_vec_isa.py:345:25: error: Module has no attribute "float" [attr-defined] +torch/_inductor/cpu_vec_isa.py:345:41: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/cpu_vec_isa.py:345:61: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/cpu_vec_isa.py:358:25: error: Module has no attribute "float" [attr-defined] +torch/_inductor/cpu_vec_isa.py:358:41: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/cpu_vec_isa.py:358:61: error: Module has no attribute "float16" [attr-defined] +torch/_dynamo/source.py:26:1: error: Module "torch" has no attribute "device"; maybe "Device"? [attr-defined] +torch/_inductor/runtime/triton_heuristics.py:962:31: error: Module has no attribute "empty_strided" [attr-defined] +torch/_inductor/runtime/triton_heuristics.py:1194:24: error: Incompatible types in assignment (expression has type "str | None", variable has type "str") [assignment] +torch/_inductor/runtime/triton_heuristics.py:1354:24: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/runtime/triton_heuristics.py:1355:33: error: Module has no attribute "int8" [attr-defined] +torch/ao/ns/fx/n_shadows_utils.py:29:5: error: Module has no attribute "add" [attr-defined] +torch/ao/ns/fx/n_shadows_utils.py:32:5: error: Module has no attribute "mul" [attr-defined] +torch/ao/ns/fx/n_shadows_utils.py:409:55: error: Module has no attribute "dtype" [attr-defined] +torch/ao/ns/fx/n_shadows_utils.py:1053:33: error: Module has no attribute "quantize_per_channel" [attr-defined] +torch/ao/ns/fx/n_shadows_utils.py:1059:37: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/ns/fx/n_shadows_utils.py:1336:30: error: Module has no attribute "stack" [attr-defined] +torch/ao/ns/fx/n_shadows_utils.py:1342:29: error: Module has no attribute "mean" [attr-defined] +torch/_inductor/virtualized.py:180:20: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/virtualized.py:182:20: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/output_code.py:137:8: error: Module has no attribute "_debug_has_internal_overlap" [attr-defined] +torch/_inductor/output_code.py:421:36: error: Name "torch._C.ScriptObject" is not defined [name-defined] +torch/_inductor/output_code.py:561:72: error: Module has no attribute "Generator" [attr-defined] +torch/_inductor/output_code.py:727:13: error: Function is missing a type annotation [no-untyped-def] +torch/_inductor/output_code.py:800:5: error: Function is missing a return type annotation [no-untyped-def] +torch/_inductor/output_code.py:800:5: note: Use "-> None" if function does not return a value +torch/_inductor/output_code.py:824:32: error: Incompatible types in assignment (expression has type "str | GraphModule", variable has type "str") [assignment] +torch/_inductor/output_code.py:832:17: error: No overload variant of "AOTIModelContainerRunnerCuda" matches argument types "bool", "int", "str", "str", "str" [call-overload] +torch/_inductor/output_code.py:832:17: note: Error code "call-overload" not covered by "type: ignore" comment +torch/_inductor/output_code.py:832:17: note: Possible overload variants: +torch/_inductor/output_code.py:832:17: note: def __init__(self, model_so_path: str, num_models: int) -> AOTIModelContainerRunnerCuda +torch/_inductor/output_code.py:832:17: note: def __init__(self, model_so_path: str, num_models: int, device_str: str) -> AOTIModelContainerRunnerCuda +torch/_inductor/output_code.py:832:17: note: def __init__(self, model_so_path: str, num_models: int, device_str: str, cubin_dir: str) -> AOTIModelContainerRunnerCuda +torch/_inductor/output_code.py:842:17: error: Incompatible types in assignment (expression has type "Callable[[list[Tensor], c_void_p], list[Tensor]]", variable has type "str") [assignment] +torch/_inductor/output_code.py:842:17: note: Error code "assignment" not covered by "type: ignore" comment +torch/_inductor/output_code.py:848:33: error: Incompatible types in assignment (expression has type "str", variable has type "Callable[..., Any] | None") [assignment] +torch/_inductor/output_code.py:872:5: error: Function is missing a return type annotation [no-untyped-def] +torch/_dynamo/compiled_autograd.py:167:28: error: Module has no attribute "isnan" [attr-defined] +torch/_dynamo/compiled_autograd.py:192:20: error: Module has no attribute "isnan" [attr-defined] +torch/_dynamo/compiled_autograd.py:473:12: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_dynamo/compiled_autograd.py:604:28: error: Module has no attribute "zeros" [attr-defined] +torch/_dynamo/compiled_autograd.py:689:21: error: Module has no attribute "empty" [attr-defined] +torch/_dynamo/compiled_autograd.py:731:20: error: Module has no attribute "zeros" [attr-defined] +torch/_dynamo/compiled_autograd.py:783:30: error: Module has no attribute "add" [attr-defined] +torch/_dynamo/compiled_autograd.py:1123:51: error: Module has no attribute "empty" [attr-defined] +torch/_dynamo/compiled_autograd.py:1597:64: error: Module has no attribute "contiguous_format" [attr-defined] +torch/ao/quantization/quantize_fx.py:237:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize_fx.py:393:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize_fx.py:507:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize_fx.py:624:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize_fx.py:675:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize_fx.py:727:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/_inductor/shape_propagation.py:20:63: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/shape_propagation.py:65:30: error: Module has no attribute "dtype" [attr-defined] +torch/_inductor/shape_propagation.py:84:52: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/shape_propagation.py:102:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/shape_propagation.py:103:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/shape_propagation.py:118:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/shape_propagation.py:119:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/shape_propagation.py:132:45: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/fx_utils.py:125:30: error: Module has no attribute "strided" [attr-defined] +torch/_inductor/fx_utils.py:261:12: error: Module has no attribute "_has_storage" [attr-defined] +torch/_inductor/dtype_propagation.py:22:24: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:34:27: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:39:20: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/dtype_propagation.py:41:20: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/dtype_propagation.py:124:74: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/dtype_propagation.py:138:10: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:142:46: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:148:52: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:152:46: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:156:67: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:157:16: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/dtype_propagation.py:162:10: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:174:57: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:178:45: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:181:26: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/dtype_propagation.py:181:39: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/dtype_propagation.py:191:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:192:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:194:10: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:199:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:200:10: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:204:30: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:208:42: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:212:46: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:216:42: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:220:42: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:226:10: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:227:16: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/dtype_propagation.py:230:42: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:231:16: error: Module has no attribute "float" [attr-defined] +torch/_inductor/dtype_propagation.py:234:41: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:235:16: error: Module has no attribute "float" [attr-defined] +torch/_inductor/dtype_propagation.py:243:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:244:10: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:261:35: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:265:31: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:271:41: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:275:50: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:282:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:285:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:289:43: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:293:42: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:297:34: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:301:37: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:303:37: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/dtype_propagation.py:307:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:311:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:315:31: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:323:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:327:10: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:331:45: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:335:31: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:341:42: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:345:42: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:349:47: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:353:47: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:359:16: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/dtype_propagation.py:362:42: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:364:16: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/dtype_propagation.py:368:47: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/dtype_propagation.py:373:45: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dtype_propagation.py:387:42: error: Name "torch.dtype" is not defined [name-defined] +torch/fx/_graph_pickler.py:278:68: error: Name "torch.device" is not defined [name-defined] +torch/ao/ns/_numeric_suite_fx.py:312:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/ns/_numeric_suite_fx.py:336:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/ns/_numeric_suite_fx.py:404:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/ns/_numeric_suite_fx.py:443:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/ns/_numeric_suite_fx.py:476:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/ns/_numeric_suite_fx.py:548:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/ns/_numeric_suite_fx.py:583:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/ns/_numeric_suite_fx.py:652:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/ns/_numeric_suite_fx.py:678:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/ns/_numeric_suite_fx.py:721:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/ns/_numeric_suite_fx.py:772:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/_inductor/index_propagation.py:60:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/index_propagation.py:72:24: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/index_propagation.py:94:57: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/index_propagation.py:98:58: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/index_propagation.py:104:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/index_propagation.py:105:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/index_propagation.py:120:23: error: Module has no attribute "promote_types" [attr-defined] +torch/_inductor/index_propagation.py:125:23: error: Module has no attribute "promote_types" [attr-defined] +torch/_inductor/index_propagation.py:130:23: error: Module has no attribute "promote_types" [attr-defined] +torch/_inductor/index_propagation.py:139:23: error: Module has no attribute "promote_types" [attr-defined] +torch/_inductor/index_propagation.py:147:23: error: Module has no attribute "promote_types" [attr-defined] +torch/_inductor/index_propagation.py:156:23: error: Module has no attribute "promote_types" [attr-defined] +torch/_inductor/index_propagation.py:174:23: error: Module has no attribute "promote_types" [attr-defined] +torch/_inductor/index_propagation.py:179:23: error: Module has no attribute "promote_types" [attr-defined] +torch/_inductor/index_propagation.py:234:57: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/fx_passes/ddp_fusion.py:65:12: error: Name "torch.Size" is not defined [name-defined] +torch/_inductor/fx_passes/ddp_fusion.py:131:12: error: Name "torch.Size" is not defined [name-defined] +torch/_inductor/fx_passes/ddp_fusion.py:442:27: error: Name "torch.Size" is not defined [name-defined] +torch/_inductor/codegen/common.py:183:13: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/codegen/common.py:186:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:186:26: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/common.py:224:29: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/codegen/common.py:229:28: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:285:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:310:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:448:19: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/codegen/common.py:453:27: error: Module has no attribute "device" [attr-defined] +torch/_inductor/codegen/common.py:458:18: error: Module has no attribute "device" [attr-defined] +torch/_inductor/codegen/common.py:466:19: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/codegen/common.py:578:23: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/_inductor/codegen/common.py:631:34: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:632:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/common.py:632:21: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/common.py:633:5: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/common.py:633:20: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/common.py:637:13: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/common.py:638:13: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/common.py:639:13: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/codegen/common.py:640:13: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/common.py:641:13: error: Module has no attribute "int16" [attr-defined] +torch/_inductor/codegen/common.py:642:13: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/common.py:643:13: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/common.py:644:13: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/common.py:645:13: error: Module has no attribute "uint16" [attr-defined] +torch/_inductor/codegen/common.py:646:13: error: Module has no attribute "uint32" [attr-defined] +torch/_inductor/codegen/common.py:647:13: error: Module has no attribute "uint64" [attr-defined] +torch/_inductor/codegen/common.py:657:15: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:662:16: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/common.py:672:16: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/common.py:678:16: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/common.py:696:58: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:705:21: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/common.py:750:76: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:767:13: error: Module has no attribute "promote_types" [attr-defined] +torch/_inductor/codegen/common.py:771:69: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:777:66: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:806:66: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:808:31: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:824:37: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:828:61: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:832:72: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:871:44: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/common.py:879:40: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/common.py:887:52: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/common.py:891:67: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/common.py:895:66: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/common.py:899:61: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/common.py:903:51: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/common.py:907:31: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/common.py:912:47: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/common.py:920:40: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:924:39: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:928:40: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:935:39: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/common.py:941:40: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:977:57: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:1059:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:1060:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:1070:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:1083:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:1097:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:1121:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:1121:30: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/common.py:1579:58: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:1579:72: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/common.py:1642:19: error: Module has no attribute "uint32" [attr-defined] +torch/_inductor/codegen/common.py:1690:45: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:1697:48: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:1848:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:1880:9: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:1966:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:2038:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:2050:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:2184:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:2185:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:2202:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:2212:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:2227:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:2385:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:2469:26: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:2476:37: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:2604:33: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:2715:57: error: Module has no attribute "long" [attr-defined] +torch/_inductor/codegen/common.py:2812:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:2813:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:2822:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:2833:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/common.py:2845:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codecache.py:214:44: error: _CudaDeviceProperties? has no attribute "name" [attr-defined] +torch/_inductor/codecache.py:217:44: error: _CudaDeviceProperties? has no attribute "gcnArchName" [attr-defined] +torch/_inductor/codecache.py:1442:47: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_inductor/codecache.py:2326:26: error: Module has no attribute "randint" [attr-defined] +torch/_inductor/codecache.py:2326:43: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/codecache.py:2326:55: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codecache.py:2345:45: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_inductor/codecache.py:2351:36: error: Module has no attribute "_pickle_save" [attr-defined] +torch/distributed/_state_dict_utils.py:26:22: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_state_dict_utils.py:35:22: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_state_dict_utils.py:55:24: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/_state_dict_utils.py:59:14: error: Module has no attribute "empty" [attr-defined] +torch/distributed/_state_dict_utils.py:81:22: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_state_dict_utils.py:110:18: error: Module has no attribute "device" [attr-defined] +torch/distributed/_state_dict_utils.py:218:22: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_state_dict_utils.py:255:22: error: Module has no attribute "device" [attr-defined] +torch/distributed/_state_dict_utils.py:414:26: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_state_dict_utils.py:418:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/_state_dict_utils.py:424:17: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/_state_dict_utils.py:430:17: error: Module has no attribute "empty" [attr-defined] +torch/distributed/_state_dict_utils.py:438:20: error: Module has no attribute "empty" [attr-defined] +torch/distributed/_state_dict_utils.py:440:20: error: Module has no attribute "empty" [attr-defined] +torch/distributed/_state_dict_utils.py:445:26: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_state_dict_utils.py:451:26: error: Module has no attribute "device" [attr-defined] +torch/distributed/_state_dict_utils.py:461:26: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_state_dict_utils.py:467:26: error: Module has no attribute "device" [attr-defined] +torch/distributed/_state_dict_utils.py:507:26: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_state_dict_utils.py:534:11: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/_state_dict_utils.py:535:12: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/_state_dict_utils.py:542:13: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_state_dict_utils.py:562:27: error: Module has no attribute "empty" [attr-defined] +torch/distributed/_state_dict_utils.py:602:13: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_state_dict_utils.py:644:13: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_state_dict_utils.py:703:13: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_shard_utils.py:36:22: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_shard_utils.py:87:27: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:109:40: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:111:12: error: Module has no attribute "Size" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:117:19: error: Module has no attribute "chunk" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:124:42: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:125:6: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:129:35: error: Module has no attribute "Size" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:163:43: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:170:28: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:173:16: error: Module has no attribute "is_floating_point" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:181:12: error: Module has no attribute "_current_graph_task_id" [attr-defined] +torch/distributed/checkpoint/planner_helpers.py:144:17: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/planner_helpers.py:150:17: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/planner_helpers.py:151:15: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/planner_helpers.py:179:22: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/planner_helpers.py:198:15: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/planner_helpers.py:207:15: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/planner_helpers.py:232:22: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/planner_helpers.py:234:25: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/planner_helpers.py:235:17: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/planner_helpers.py:245:22: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/planner_helpers.py:247:25: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/planner_helpers.py:248:17: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/planner_helpers.py:343:22: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/planner_helpers.py:399:22: error: Module has no attribute "device" [attr-defined] +torch/distributed/checkpoint/planner_helpers.py:402:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/checkpoint/planner_helpers.py:404:32: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/checkpoint/planner_helpers.py:420:22: error: Module has no attribute "device" [attr-defined] +torch/distributed/checkpoint/planner_helpers.py:429:22: error: Module has no attribute "device" [attr-defined] +torch/distributed/checkpoint/planner_helpers.py:432:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/checkpoint/planner_helpers.py:434:22: error: Module has no attribute "empty_like" [attr-defined] +torch/_inductor/dependencies.py:577:61: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dependencies.py:585:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dependencies.py:840:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/dependencies.py:841:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/analyze_preserves_zero_mask.py:20:41: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/analyze_preserves_zero_mask.py:51:51: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/analyze_preserves_zero_mask.py:79:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/analyze_preserves_zero_mask.py:117:35: error: Module has no attribute "float" [attr-defined] +torch/_inductor/analyze_preserves_zero_mask.py:131:31: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/analyze_preserves_zero_mask.py:131:46: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/analyze_preserves_zero_mask.py:139:27: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton_utils.py:39:25: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/triton_utils.py:41:27: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/codegen/triton_utils.py:43:27: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/_inductor/codegen/triton_utils.py:45:27: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:23:32: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:25:18: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:25:33: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:26:16: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:39:9: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:40:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:41:9: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:42:9: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:43:9: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:44:9: error: Module has no attribute "int16" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:45:9: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:46:9: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:47:9: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:48:9: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:49:9: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:81:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:147:57: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:269:23: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:273:28: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:273:43: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:273:59: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:292:31: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cuda/device_op_overrides.py:131:36: error: _CudaDeviceProperties? has no attribute "warp_size" [attr-defined] +torch/distributed/fsdp/_fsdp_extensions.py:48:26: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:136:20: error: Module has no attribute "_from_functional_tensor" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:137:18: error: Module has no attribute "_from_functional_tensor" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:138:10: error: Module has no attribute "_ExcludeDispatchKeyGuard" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:139:9: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:139:33: error: Module has no attribute "DispatchKey" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:186:38: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:199:17: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:200:27: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:201:28: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:202:17: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:203:19: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:205:32: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:206:32: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:228:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:243:43: error: Name "torch.Event" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:263:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:468:39: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:470:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:476:13: error: Module has no attribute "empty" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:476:25: error: Module has no attribute "Size" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:535:27: error: Module has no attribute "as_strided" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:602:39: error: Module has no attribute "as_strided" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:797:17: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/loop_body.py:690:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_functorch/_aot_autograd/aot_autograd_result.py:515:23: error: Module has no attribute "_is_any_autocast_enabled" [attr-defined] +torch/distributed/fsdp/_common_utils.py:64:32: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_common_utils.py:78:34: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_common_utils.py:132:39: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_common_utils.py:137:39: error: Name "torch.Event" is not defined [name-defined] +torch/distributed/fsdp/_common_utils.py:501:24: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_common_utils.py:503:24: error: Module has no attribute "is_floating_point" [attr-defined] +torch/distributed/fsdp/_common_utils.py:509:59: error: Module has no attribute "float32" [attr-defined] +torch/distributed/fsdp/_common_utils.py:528:62: error: Name "torch.Stream" is not defined [name-defined] +torch/distributed/fsdp/_common_utils.py:534:9: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/distributed/fsdp/_flat_param.py:185:25: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:329:31: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:330:29: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:331:20: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:334:20: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:378:22: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:518:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:521:34: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:522:35: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:678:22: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:805:25: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:808:26: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:877:21: error: Module has no attribute "flatten" [attr-defined] +torch/distributed/fsdp/_flat_param.py:891:17: error: Module has no attribute "flatten" [attr-defined] +torch/distributed/fsdp/_flat_param.py:896:16: error: Module has no attribute "cat" [attr-defined] +torch/distributed/fsdp/_flat_param.py:909:34: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:910:35: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:1107:13: error: Module has no attribute "flatten" [attr-defined] +torch/distributed/fsdp/_flat_param.py:1145:74: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:1162:16: error: Module has no attribute "Size" [attr-defined] +torch/distributed/fsdp/_flat_param.py:1472:17: error: Module has no attribute "chunk" [attr-defined] +torch/distributed/fsdp/_flat_param.py:1573:25: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/fsdp/_flat_param.py:1573:46: error: Module has no attribute "int32" [attr-defined] +torch/distributed/fsdp/_flat_param.py:1597:33: error: Module has no attribute "empty" [attr-defined] +torch/distributed/fsdp/_flat_param.py:1755:28: error: Module has no attribute "device" [attr-defined] +torch/distributed/fsdp/_flat_param.py:1834:17: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/distributed/fsdp/_flat_param.py:1845:27: error: Module has no attribute "device" [attr-defined] +torch/distributed/fsdp/_flat_param.py:2407:25: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:2642:30: error: Module has no attribute "device" [attr-defined] +torch/distributed/fsdp/_flat_param.py:2778:41: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:2788:12: error: Module has no attribute "empty" [attr-defined] +torch/distributed/fsdp/_flat_param.py:2792:32: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:2792:74: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_flat_param.py:2797:9: error: Module has no attribute "ones" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:25:32: error: Name "torch.Event" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:28:46: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:56:16: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:57:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:59:16: error: Module has no attribute "empty" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:71:16: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:72:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:78:16: error: Module has no attribute "empty" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:187:9: error: Module has no attribute "_foreach_copy_" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:209:5: error: Module has no attribute "split_with_sizes_copy" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:232:5: error: Module has no attribute "_chunk_cat" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:240:32: error: Name "torch.Stream" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:241:24: error: Name "torch.Stream" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:242:13: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:254:21: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:256:24: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:333:35: error: Module has no attribute "empty" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:337:9: error: Module has no attribute "_foreach_copy_" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:388:17: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:394:35: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:395:44: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:437:26: error: Module has no attribute "chunk" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:443:17: error: Module has no attribute "cat" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:451:28: error: Name "torch.Stream" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:453:26: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:454:28: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:455:13: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:458:24: error: Name "torch.Stream" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:463:5: error: Name "torch.Event" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:513:22: error: Module has no attribute "chunk" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:514:34: error: Module has no attribute "cat" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:610:32: error: Module has no attribute "as_strided" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:626:21: error: Module has no attribute "device" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:679:22: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:680:46: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:684:28: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:688:36: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:703:19: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:719:42: error: Module has no attribute "float32" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:719:57: error: Module has no attribute "bfloat16" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:738:33: error: Incompatible types in assignment (expression has type "ReduceOp", variable has type "RedOpType") [assignment] +torch/_inductor/optimize_indexing.py:29:17: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/optimize_indexing.py:29:29: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/optimize_indexing.py:53:13: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/optimize_indexing.py:54:13: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/optimize_indexing.py:55:13: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/optimize_indexing.py:92:15: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/optimize_indexing.py:108:33: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/bounds.py:185:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/bounds.py:186:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/bounds.py:193:44: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/bounds.py:200:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/bounds.py:201:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/bounds.py:206:21: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/bounds.py:216:33: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/tensor/parallel/fsdp.py:31:40: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/parallel/fsdp.py:44:13: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/parallel/fsdp.py:47:54: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/parallel/fsdp.py:49:13: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/parallel/fsdp.py:52:46: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/parallel/fsdp.py:368:26: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:61:33: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:93:16: error: Name "torch.Stream" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:107:21: error: Name "torch.Event" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:112:21: error: Name "torch.Event" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:117:21: error: Name "torch.Event" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:123:27: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:124:29: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:132:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:173:35: error: Module has no attribute "empty" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:213:43: error: Name "torch.Event" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:216:53: error: Name "torch.Event" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:422:65: error: Name "torch.Event" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:713:16: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/distributed/fsdp/_exec_order_utils.py:200:44: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_exec_order_utils.py:200:57: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_exec_order_utils.py:201:26: error: Module has no attribute "int32" [attr-defined] +torch/distributed/fsdp/_exec_order_utils.py:204:39: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/fsdp/_exec_order_utils.py:204:39: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/distributed/fsdp/_exec_order_utils.py:205:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/fsdp/_exec_order_utils.py:205:39: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/distributed/fsdp/_exec_order_utils.py:235:29: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/fsdp/_exec_order_utils.py:235:29: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/distributed/fsdp/_exec_order_utils.py:238:29: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/fsdp/_exec_order_utils.py:238:29: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/distributed/fsdp/_fully_shard/_fsdp_state.py:55:41: error: Name "torch.Event" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_state.py:92:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_state.py:145:17: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_state.py:342:16: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_dynamo/guards.py:220:5: error: Module "torch._C" has no attribute "DispatchKeySet" [attr-defined] +torch/_dynamo/guards.py:726:16: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/_dynamo/guards.py:770:23: error: Module has no attribute "device" [attr-defined] +torch/_dynamo/guards.py:852:25: error: Module has no attribute "_dispatch_tls_local_include_set" [attr-defined] +torch/_dynamo/guards.py:853:9: error: Module has no attribute "_dispatch_tls_local_exclude_set" [attr-defined] +torch/_dynamo/guards.py:2074:32: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_dynamo/guards.py:2205:17: error: Module has no attribute "Size" [attr-defined] +torch/_dynamo/guards.py:2206:17: error: Module has no attribute "Stream" [attr-defined] +torch/_dynamo/guards.py:2810:29: error: Module has no attribute "_dispatch_keys" [attr-defined] +torch/_dynamo/guards.py:2861:44: error: Module has no attribute "device" [attr-defined] +torch/_dynamo/guards.py:2861:58: error: Module has no attribute "dtype" [attr-defined] +torch/_dynamo/guards.py:3195:9: error: Module has no attribute "Stream" [attr-defined] +torch/_dynamo/guards.py:3231:17: error: Name "torch.device" is not defined [name-defined] +torch/_dynamo/guards.py:3243:13: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_dynamo/guards.py:3252:17: error: Name "torch.device" is not defined [name-defined] +torch/_dynamo/guards.py:3268:29: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_dynamo/guards.py:3276:59: error: Name "torch._C.DispatchKeySet" is not defined [name-defined] +torch/_dynamo/guards.py:3277:16: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_dynamo/guards.py:3361:21: error: Module has no attribute "empty_like" [attr-defined] +torch/_dynamo/guards.py:3362:21: error: "TensorWithFlatten" has no attribute "device" [attr-defined] +torch/_dynamo/guards.py:3364:21: error: Module has no attribute "_dispatch_keys" [attr-defined] +torch/_dynamo/guards.py:3370:17: error: Module has no attribute "empty_like" [attr-defined] +torch/_dynamo/guards.py:3373:17: error: Module has no attribute "_dispatch_keys" [attr-defined] +torch/_dynamo/guards.py:3395:30: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_dynamo/guards.py:4114:34: error: Incompatible types in assignment (expression has type "Any | None", variable has type "Callable[[], bool]") [assignment] +torch/_dynamo/eval_frame.py:868:26: error: Module has no attribute "_is_tracing" [attr-defined] +torch/_dynamo/eval_frame.py:1429:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/_dynamo/eval_frame.py:1670:12: error: Module has no attribute "__iter__"; maybe "__dir__"? (not iterable) [attr-defined] +torch/_dynamo/eval_frame.py:1670:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_dynamo/eval_frame.py:1674:12: error: Module has no attribute "__iter__"; maybe "__dir__"? (not iterable) [attr-defined] +torch/_dynamo/eval_frame.py:1674:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_dynamo/eval_frame.py:1739:9: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_dynamo/eval_frame.py:1954:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/_dynamo/variables/sdpa.py:72:28: error: Module has no attribute "_SDPAParams" [attr-defined] +torch/_dynamo/variables/constant.py:127:55: error: Module has no attribute "Size" [attr-defined] +torch/_dynamo/variables/functions.py:369:5: error: Function is missing a return type annotation [no-untyped-def] +torch/_dynamo/variables/functions.py:369:5: note: Use "-> None" if function does not return a value +torch/_dynamo/variables/functions.py:398:5: error: Function is missing a return type annotation [no-untyped-def] +torch/_dynamo/variables/functions.py:418:34: error: Variable "torch.jit._script.ScriptFunction" is not valid as a type [valid-type] +torch/_dynamo/variables/functions.py:418:34: note: Error code "valid-type" not covered by "type: ignore" comment +torch/_dynamo/variables/functions.py:418:34: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/_dynamo/variables/functions.py:812:5: error: Function is missing a return type annotation [no-untyped-def] +torch/_dynamo/variables/functions.py:1053:5: error: Function is missing a type annotation [no-untyped-def] +torch/_dynamo/variables/functions.py:1657:34: error: Incompatible types in assignment (expression has type "str", variable has type "VariableTracker | None") [assignment] +torch/_dynamo/variables/lists.py:71:13: error: Module has no attribute "Size" [attr-defined] +torch/_dynamo/variables/lists.py:1160:16: error: Module has no attribute "Size" [attr-defined] +torch/_dynamo/variables/lists.py:1195:20: error: Module has no attribute "Size" [attr-defined] +torch/_dynamo/variables/lists.py:1197:54: error: Module has no attribute "Size" [attr-defined] +torch/_dynamo/variables/lists.py:1200:13: error: Module has no attribute "Size" [attr-defined] +torch/_dynamo/variables/lists.py:1296:58: error: Module has no attribute "Size" [attr-defined] +torch/_dynamo/variables/script_object.py:65:37: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_dynamo/variables/ctx_manager.py:382:27: error: Module has no attribute "_is_fwd_grad_enabled" [attr-defined] +torch/_dynamo/variables/ctx_manager.py:383:9: error: Module has no attribute "_set_fwd_grad_enabled" [attr-defined] +torch/_dynamo/variables/ctx_manager.py:386:21: error: Module has no attribute "_set_fwd_grad_enabled" [attr-defined] +torch/_dynamo/variables/ctx_manager.py:390:13: error: Module has no attribute "_set_fwd_grad_enabled" [attr-defined] +torch/_dynamo/variables/ctx_manager.py:402:13: error: Module has no attribute "_set_fwd_grad_enabled" [attr-defined] +torch/_dynamo/variables/ctx_manager.py:430:13: error: Module has no attribute "_enter_dual_level" [attr-defined] +torch/_dynamo/variables/ctx_manager.py:442:13: error: Module has no attribute "_exit_dual_level" [attr-defined] +torch/_dynamo/variables/ctx_manager.py:603:29: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_dynamo/variables/ctx_manager.py:645:12: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_dynamo/variables/ctx_manager.py:647:34: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/_dynamo/variables/ctx_manager.py:649:13: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/_dynamo/variables/ctx_manager.py:664:44: error: Module has no attribute "is_inference_mode_enabled" [attr-defined] +torch/_dynamo/variables/ctx_manager.py:676:30: error: Module has no attribute "is_inference_mode_enabled" [attr-defined] +torch/_dynamo/variables/ctx_manager.py:703:21: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_dynamo/variables/ctx_manager.py:704:13: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/_dynamo/variables/ctx_manager.py:710:17: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/_dynamo/variables/ctx_manager.py:898:30: error: Module has no attribute "_set_deterministic_algorithms" [attr-defined] +torch/_dynamo/variables/ctx_manager.py:900:9: error: Module has no attribute "_set_deterministic_algorithms" [attr-defined] +torch/_dynamo/variables/torch_function.py:209:13: error: Module has no attribute "_push_on_torch_function_stack" [attr-defined] +torch/_dynamo/variables/torch_function.py:216:38: error: Module has no attribute "_pop_torch_function_stack" [attr-defined] +torch/_dynamo/variables/torch_function.py:283:48: error: Module has no attribute "_is_torch_function_enabled" [attr-defined] +torch/_dynamo/variables/torch_function.py:290:17: error: Module has no attribute "_is_torch_function_all_disabled" [attr-defined] +torch/_dynamo/variables/streams.py:36:13: error: Module has no attribute "Event" [attr-defined] +torch/_dynamo/variables/streams.py:46:14: error: Module has no attribute "Stream" [attr-defined] +torch/_dynamo/variables/streams.py:46:14: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_dynamo/variables/streams.py:55:37: error: Name "torch.device" is not defined [name-defined] +torch/_dynamo/variables/streams.py:66:32: error: Name "torch.device" is not defined [name-defined] +torch/_dynamo/variables/streams.py:73:41: error: Name "torch.Stream" is not defined [name-defined] +torch/_dynamo/variables/streams.py:75:31: error: Module has no attribute "Stream" [attr-defined] +torch/_dynamo/variables/streams.py:81:40: error: Name "torch.Event" is not defined [name-defined] +torch/_dynamo/variables/streams.py:83:30: error: Module has no attribute "Event" [attr-defined] +torch/_dynamo/variables/streams.py:202:43: error: Name "torch.device" is not defined [name-defined] +torch/_dynamo/variables/streams.py:266:16: error: Name "torch.Stream" is not defined [name-defined] +torch/_dynamo/variables/streams.py:284:16: error: Module has no attribute "Stream" [attr-defined] +torch/_dynamo/variables/streams.py:399:16: error: Name "torch.Event" is not defined [name-defined] +torch/_dynamo/codegen.py:311:42: error: Module has no attribute "float64" [attr-defined] +torch/_dynamo/variables/builtin.py:245:12: error: Module has no attribute "ones" [attr-defined] +torch/_dynamo/variables/builtin.py:246:12: error: Module has no attribute "ones" [attr-defined] +torch/_dynamo/variables/builtin.py:247:16: error: Module has no attribute "ones" [attr-defined] +torch/_dynamo/variables/builtin.py:247:36: error: Module has no attribute "int32" [attr-defined] +torch/_dynamo/variables/builtin.py:248:16: error: Module has no attribute "ones" [attr-defined] +torch/_dynamo/variables/builtin.py:248:36: error: Module has no attribute "int32" [attr-defined] +torch/_dynamo/variables/builtin.py:935:19: error: Module has no attribute "bool" [attr-defined] +torch/_dynamo/variables/builtin.py:936:18: error: Module has no attribute "int64" [attr-defined] +torch/_dynamo/variables/builtin.py:937:20: error: Module has no attribute "float64" [attr-defined] +torch/_dynamo/variables/builtin.py:1327:22: error: Module has no attribute "select" [attr-defined] +torch/_dynamo/variables/builtin.py:1611:5: error: Function is missing a return type annotation [no-untyped-def] +torch/_dynamo/variables/builtin.py:1611:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_dynamo/variables/builtin.py:1622:32: error: "Callable[[], str]" has no attribute "__func__" [attr-defined] +torch/_dynamo/variables/builtin.py:1724:60: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_dynamo/variables/builtin.py:1750:65: error: Module has no attribute "clamp" [attr-defined] +torch/_dynamo/variables/builtin.py:1760:38: error: Module has no attribute "maximum" [attr-defined] +torch/_dynamo/variables/builtin.py:1760:58: error: Module has no attribute "minimum" [attr-defined] +torch/_dynamo/variables/torch.py:115:9: error: Module has no attribute "DisableTorchFunctionSubclass" [attr-defined] +torch/_dynamo/variables/torch.py:116:9: error: Module has no attribute "DisableTorchFunction" [attr-defined] +torch/_dynamo/variables/torch.py:145:9: error: Module has no attribute "_shape_as_tensor" [attr-defined] +torch/_dynamo/variables/torch.py:161:5: error: Module has no attribute "_get_cublas_allow_tf32" [attr-defined] +torch/_dynamo/variables/torch.py:162:5: error: Module has no attribute "_is_any_autocast_enabled" [attr-defined] +torch/_dynamo/variables/torch.py:167:5: error: Module has no attribute "get_autocast_dtype" [attr-defined] +torch/_dynamo/variables/torch.py:168:5: error: Module has no attribute "get_autocast_gpu_dtype" [attr-defined] +torch/_dynamo/variables/torch.py:169:5: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_dynamo/variables/torch.py:170:5: error: Module has no attribute "is_autocast_cache_enabled" [attr-defined] +torch/_dynamo/variables/torch.py:171:5: error: Module has no attribute "is_autocast_cpu_enabled" [attr-defined] +torch/_dynamo/variables/torch.py:172:5: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/_dynamo/variables/torch.py:173:5: error: Module has no attribute "is_complex" [attr-defined] +torch/_dynamo/variables/torch.py:174:5: error: Module has no attribute "is_floating_point" [attr-defined] +torch/_dynamo/variables/torch.py:176:5: error: Module has no attribute "promote_types" [attr-defined] +torch/_dynamo/variables/torch.py:177:5: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/_dynamo/variables/torch.py:201:9: error: Module has no attribute "_get_tracing_state" [attr-defined] +torch/_dynamo/variables/torch.py:219:5: error: Module has no attribute "_dispatch_keys" [attr-defined] +torch/_dynamo/variables/torch.py:220:5: error: Module has no attribute "_dispatch_tls_local_include_set" [attr-defined] +torch/_dynamo/variables/torch.py:221:5: error: Module has no attribute "_dispatch_tls_local_exclude_set" [attr-defined] +torch/_dynamo/variables/torch.py:233:9: error: Module has no attribute "ones" [attr-defined] +torch/_dynamo/variables/torch.py:234:9: error: Module has no attribute "ones_like" [attr-defined] +torch/_dynamo/variables/torch.py:235:9: error: Module has no attribute "zeros" [attr-defined] +torch/_dynamo/variables/torch.py:236:9: error: Module has no attribute "zeros_like" [attr-defined] +torch/_dynamo/variables/torch.py:237:9: error: Module has no attribute "empty" [attr-defined] +torch/_dynamo/variables/torch.py:238:9: error: Module has no attribute "full" [attr-defined] +torch/_dynamo/variables/torch.py:393:69: error: Module has no attribute "Stream" [attr-defined] +torch/_dynamo/variables/torch.py:424:27: error: Module has no attribute "DisableTorchFunctionSubclass" [attr-defined] +torch/_dynamo/variables/torch.py:425:30: error: Module has no attribute "DisableTorchFunction" [attr-defined] +torch/_dynamo/variables/torch.py:429:49: error: Module has no attribute "DisableTorchFunctionSubclass" [attr-defined] +torch/_dynamo/variables/torch.py:557:30: error: Module has no attribute "_dispatch_keys" [attr-defined] +torch/_dynamo/variables/torch.py:570:27: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_dynamo/variables/torch.py:570:51: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_dynamo/variables/torch.py:571:27: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_dynamo/variables/torch.py:572:29: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_dynamo/variables/torch.py:615:63: error: Module has no attribute "addcmul" [attr-defined] +torch/_dynamo/variables/torch.py:621:19: error: Module has no attribute "is_inference_mode_enabled" [attr-defined] +torch/_dynamo/variables/torch.py:645:13: error: Module has no attribute "is_floating_point" [attr-defined] +torch/_dynamo/variables/torch.py:646:13: error: Module has no attribute "is_complex" [attr-defined] +torch/_dynamo/variables/torch.py:651:34: error: Module has no attribute "is_floating_point" [attr-defined] +torch/_dynamo/variables/torch.py:653:36: error: Module has no attribute "is_complex" [attr-defined] +torch/_dynamo/variables/torch.py:658:19: error: Module has no attribute "numel" [attr-defined] +torch/_dynamo/variables/torch.py:697:19: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_dynamo/variables/torch.py:700:44: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_dynamo/variables/torch.py:724:19: error: Module has no attribute "_is_torch_function_enabled" [attr-defined] +torch/_dynamo/variables/torch.py:733:19: error: Module has no attribute "_is_torch_function_all_disabled" [attr-defined] +torch/_dynamo/variables/torch.py:764:19: error: Module has no attribute "from_numpy" [attr-defined] +torch/_dynamo/variables/torch.py:793:21: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/_dynamo/variables/torch.py:816:26: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_dynamo/variables/torch.py:840:19: error: Module has no attribute "addcdiv" [attr-defined] +torch/_dynamo/variables/torch.py:845:55: error: Module has no attribute "div" [attr-defined] +torch/_dynamo/variables/torch.py:848:55: error: Module has no attribute "mul" [attr-defined] +torch/_dynamo/variables/torch.py:851:53: error: Module has no attribute "add" [attr-defined] +torch/_dynamo/variables/torch.py:855:19: error: Module has no attribute "full" [attr-defined] +torch/_dynamo/variables/torch.py:860:61: error: Module has no attribute "empty" [attr-defined] +torch/_dynamo/variables/torch.py:866:19: error: Module has no attribute "_foreach_lerp_" [attr-defined] +torch/_dynamo/variables/torch.py:877:19: error: Module has no attribute "_foreach_pow" [attr-defined] +torch/_dynamo/variables/torch.py:902:21: error: Module has no attribute "_SDPAParams" [attr-defined] +torch/_dynamo/variables/torch.py:999:58: error: Module has no attribute "strided" [attr-defined] +torch/_dynamo/variables/torch.py:1177:19: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_dynamo/variables/torch.py:1204:19: error: Module has no attribute "_pop_torch_function_stack" [attr-defined] +torch/_dynamo/variables/torch.py:1222:19: error: Module has no attribute "_push_on_torch_function_stack" [attr-defined] +torch/_dynamo/variables/torch.py:1235:19: error: Module has no attribute "_len_torch_function_stack" [attr-defined] +torch/_dynamo/variables/torch.py:1245:19: error: Module has no attribute "_get_function_stack_at" [attr-defined] +torch/_dynamo/variables/torch.py:1311:30: error: Module has no attribute "device" [attr-defined] +torch/_dynamo/variables/torch.py:1313:30: error: Module has no attribute "device" [attr-defined] +torch/_dynamo/variables/torch.py:1632:29: error: Module has no attribute "Tag" [attr-defined] +torch/_dynamo/variables/torch.py:2057:53: error: Module has no attribute "TensorBase" [attr-defined] +torch/_dynamo/output_graph.py:336:30: error: Name "torch.device" is not defined [name-defined] +torch/_dynamo/output_graph.py:671:44: error: Module has no attribute "_is_torch_function_mode_enabled" [attr-defined] +torch/_dynamo/output_graph.py:995:65: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_dynamo/output_graph.py:998:31: error: Module has no attribute "set_autocast_enabled" [attr-defined] +torch/_dynamo/output_graph.py:999:13: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/_dynamo/output_graph.py:1002:31: error: Module has no attribute "set_autocast_enabled" [attr-defined] +torch/_dynamo/output_graph.py:1003:13: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/_dynamo/output_graph.py:1006:31: error: Module has no attribute "set_autocast_dtype" [attr-defined] +torch/_dynamo/output_graph.py:1007:13: error: Module has no attribute "get_autocast_dtype" [attr-defined] +torch/_dynamo/output_graph.py:1010:31: error: Module has no attribute "set_autocast_dtype" [attr-defined] +torch/_dynamo/output_graph.py:1011:13: error: Module has no attribute "get_autocast_dtype" [attr-defined] +torch/_dynamo/output_graph.py:1014:13: error: Module has no attribute "set_autocast_cache_enabled" [attr-defined] +torch/_dynamo/output_graph.py:1015:13: error: Module has no attribute "is_autocast_cache_enabled" [attr-defined] +torch/_dynamo/output_graph.py:1942:24: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_dynamo/output_graph.py:1945:33: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/_dynamo/output_graph.py:1951:37: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/_dynamo/output_graph.py:2591:66: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_dynamo/output_graph.py:2829:12: error: Module has no attribute "Tag" [attr-defined] +torch/_dynamo/output_graph.py:2844:16: error: Module has no attribute "Tag" [attr-defined] +torch/_dynamo/output_graph.py:2859:24: error: Module has no attribute "_jit_resolve_packet" [attr-defined] +torch/_dynamo/output_graph.py:2872:12: error: Module has no attribute "Tag" [attr-defined] +torch/_dynamo/output_graph.py:3005:12: error: Module has no attribute "is_inference_mode_enabled" [attr-defined] +torch/_dynamo/output_graph.py:3012:5: error: Function is missing a return type annotation [no-untyped-def] +torch/_dynamo/output_graph.py:3573:40: error: Module has no attribute "strided" [attr-defined] +torch/_dynamo/output_graph.py:3595:42: error: Module has no attribute "sparse_coo" [attr-defined] +torch/_dynamo/output_graph.py:3598:43: error: Module has no attribute "sparse_csr" [attr-defined] +torch/_dynamo/output_graph.py:3598:61: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_dynamo/output_graph.py:3601:43: error: Module has no attribute "sparse_csc" [attr-defined] +torch/_dynamo/output_graph.py:3601:61: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/_dynamo/output_graph.py:3701:40: error: Module has no attribute "strided" [attr-defined] +torch/_dynamo/output_graph.py:3721:42: error: Module has no attribute "sparse_coo" [attr-defined] +torch/_dynamo/output_graph.py:3724:43: error: Module has no attribute "sparse_csr" [attr-defined] +torch/_dynamo/output_graph.py:3724:61: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_dynamo/output_graph.py:3727:43: error: Module has no attribute "sparse_csc" [attr-defined] +torch/_dynamo/output_graph.py:3727:61: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/_dynamo/symbolic_convert.py:686:21: error: Module has no attribute "_assert_async" [attr-defined] +torch/_dynamo/symbolic_convert.py:711:34: error: Module has no attribute "scalar_tensor" [attr-defined] +torch/_dynamo/symbolic_convert.py:722:17: error: Module has no attribute "_assert_async" [attr-defined] +torch/_dynamo/convert_frame.py:289:27: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_dynamo/convert_frame.py:296:13: error: Module has no attribute "_PreserveDispatchKeyGuard" [attr-defined] +torch/_dynamo/convert_frame.py:300:36: error: Module has no attribute "is_inference_mode_enabled" [attr-defined] +torch/_dynamo/convert_frame.py:304:17: error: Module has no attribute "_is_default_mobile_cpu_allocator_set" [attr-defined] +torch/_dynamo/convert_frame.py:307:27: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_dynamo/convert_frame.py:311:22: error: Module has no attribute "DisableTorchFunction" [attr-defined] +torch/_dynamo/convert_frame.py:313:37: error: Module has no attribute "_get_fp32_precision_getter" [attr-defined] +torch/_dynamo/convert_frame.py:329:24: error: Module has no attribute "_len_torch_function_stack" [attr-defined] +torch/_dynamo/convert_frame.py:333:17: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/_dynamo/convert_frame.py:342:21: error: Module has no attribute "_is_default_mobile_cpu_allocator_set" [attr-defined] +torch/_dynamo/convert_frame.py:345:21: error: Module has no attribute "_unset_default_mobile_cpu_allocator" [attr-defined] +torch/_dynamo/convert_frame.py:347:26: error: Module has no attribute "DisableTorchFunction" [attr-defined] +torch/_dynamo/convert_frame.py:349:17: error: Module has no attribute "_set_fp32_precision_setter" [attr-defined] +torch/_dynamo/convert_frame.py:1049:32: error: "Callable[..., Any]" has no attribute "__func__" [attr-defined] +torch/fx/passes/_tensorify_python_scalars.py:157:25: error: Module has no attribute "bool" [attr-defined] +torch/fx/passes/_tensorify_python_scalars.py:160:25: error: Module has no attribute "int64" [attr-defined] +torch/fx/passes/_tensorify_python_scalars.py:163:25: error: Module has no attribute "float64" [attr-defined] +torch/fx/passes/_tensorify_python_scalars.py:228:46: error: Module has no attribute "float64" [attr-defined] +torch/fx/passes/_tensorify_python_scalars.py:296:46: error: Module has no attribute "bool" [attr-defined] +torch/distributed/fsdp/_init_utils.py:407:43: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_init_utils.py:802:36: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_init_utils.py:817:30: error: Module has no attribute "device" [attr-defined] +torch/distributed/fsdp/_init_utils.py:830:36: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_init_utils.py:833:15: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_init_utils.py:843:44: error: Module has no attribute "device" [attr-defined] +torch/distributed/fsdp/_init_utils.py:855:18: error: Module has no attribute "device" [attr-defined] +torch/distributed/fsdp/_init_utils.py:905:37: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_init_utils.py:910:55: error: Module has no attribute "device" [attr-defined] +torch/distributed/fsdp/_init_utils.py:967:37: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_init_utils.py:981:18: error: Module has no attribute "device" [attr-defined] +torch/distributed/fsdp/_init_utils.py:1020:37: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_init_utils.py:1034:18: error: Module has no attribute "device" [attr-defined] +torch/distributed/fsdp/_init_utils.py:1064:37: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_init_utils.py:1067:6: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_init_utils.py:1086:26: error: Module has no attribute "device" [attr-defined] +torch/distributed/fsdp/_init_utils.py:1144:26: error: Module has no attribute "device" [attr-defined] +torch/distributed/fsdp/_runtime_utils.py:151:18: error: Module has no attribute "device" [attr-defined] +torch/distributed/fsdp/_runtime_utils.py:404:35: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_runtime_utils.py:623:31: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_runtime_utils.py:1440:12: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/distributed/fsdp/_runtime_utils.py:1487:12: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/distributed/fsdp/_runtime_utils.py:1544:25: error: Name "torch.Stream" is not defined [name-defined] +torch/distributed/fsdp/_runtime_utils.py:1545:21: error: Name "torch.Stream" is not defined [name-defined] +torch/distributed/fsdp/_runtime_utils.py:1546:25: error: Name "torch.Stream" is not defined [name-defined] +torch/distributed/fsdp/_runtime_utils.py:1591:34: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_runtime_utils.py:1622:25: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_runtime_utils.py:1636:34: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_runtime_utils.py:1637:13: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_runtime_utils.py:1651:16: error: Module has no attribute "is_floating_point" [attr-defined] +torch/distributed/fsdp/_optim_utils.py:105:12: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_optim_utils.py:106:12: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_optim_utils.py:364:18: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/fsdp/_optim_utils.py:703:35: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/fsdp/_optim_utils.py:762:18: error: Module has no attribute "device" [attr-defined] +torch/distributed/fsdp/_optim_utils.py:764:9: error: Module has no attribute "flatten" [attr-defined] +torch/distributed/fsdp/_optim_utils.py:835:12: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/fsdp/_optim_utils.py:835:52: error: Module has no attribute "device" [attr-defined] +torch/distributed/fsdp/_optim_utils.py:1191:19: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/fsdp/_optim_utils.py:1191:59: error: Module has no attribute "int32" [attr-defined] +torch/distributed/fsdp/_optim_utils.py:1368:21: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_optim_utils.py:1382:25: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/fsdp/_optim_utils.py:1442:24: error: Module has no attribute "equal" [attr-defined] +torch/distributed/fsdp/_optim_utils.py:1486:32: error: Module has no attribute "Size" [attr-defined] +torch/distributed/fsdp/_optim_utils.py:1573:9: error: Module has no attribute "empty" [attr-defined] +torch/distributed/fsdp/_optim_utils.py:1659:23: error: Module has no attribute "cat" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_init.py:71:14: error: Module has no attribute "_get_accelerator" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_init.py:76:48: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_init.py:78:16: error: Module has no attribute "device" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_init.py:80:12: error: Module has no attribute "device" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fsdp_init.py:214:13: error: Name "torch.device" is not defined [name-defined] +torch/_functorch/_aot_autograd/streams.py:20:31: error: Name "torch.device" is not defined [name-defined] +torch/_functorch/_aot_autograd/streams.py:104:5: error: Need type annotation for "node_to_wait_event_ind" (hint: "node_to_wait_event_ind: dict[, ] = ...") [var-annotated] +torch/_functorch/_aot_autograd/autograd_cache.py:340:29: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_functorch/_aot_autograd/autograd_cache.py:341:28: error: Module has no attribute "_is_any_autocast_enabled" [attr-defined] +torch/_export/non_strict_utils.py:172:51: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_export/non_strict_utils.py:312:54: error: Module has no attribute "maximum" [attr-defined] +torch/_export/non_strict_utils.py:313:24: error: Module has no attribute "clamp" [attr-defined] +torch/_export/non_strict_utils.py:313:24: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_export/non_strict_utils.py:321:39: error: Module has no attribute "maximum" [attr-defined] +torch/_export/non_strict_utils.py:363:70: error: Module has no attribute "maximum" [attr-defined] +torch/_export/non_strict_utils.py:368:70: error: Module has no attribute "minimum" [attr-defined] +torch/_export/non_strict_utils.py:822:21: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_export/non_strict_utils.py:974:13: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_export/non_strict_utils.py:1035:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_export/non_strict_utils.py:1050:38: error: Module has no attribute "unsqueeze" [attr-defined] +torch/_export/non_strict_utils.py:1052:34: error: Module has no attribute "select" [attr-defined] +torch/_dynamo/functional_export.py:372:16: error: Module has no attribute "__iter__"; maybe "__dir__"? (not iterable) [attr-defined] +torch/_dynamo/functional_export.py:379:16: error: Module has no attribute "__iter__"; maybe "__dir__"? (not iterable) [attr-defined] +torch/distributed/fsdp/_fully_shard/_fully_shard.py:189:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/fsdp/_fully_shard/_fully_shard.py:524:43: error: Name "torch.Event" is not defined [name-defined] +torch/_export/serde/serialize.py:134:5: error: Module has no attribute "uint8" [attr-defined] +torch/_export/serde/serialize.py:135:5: error: Module has no attribute "int8" [attr-defined] +torch/_export/serde/serialize.py:136:5: error: Module has no attribute "uint16" [attr-defined] +torch/_export/serde/serialize.py:137:5: error: Module has no attribute "int16" [attr-defined] +torch/_export/serde/serialize.py:138:5: error: Module has no attribute "int32" [attr-defined] +torch/_export/serde/serialize.py:139:5: error: Module has no attribute "int64" [attr-defined] +torch/_export/serde/serialize.py:140:5: error: Module has no attribute "float16" [attr-defined] +torch/_export/serde/serialize.py:141:5: error: Module has no attribute "float32" [attr-defined] +torch/_export/serde/serialize.py:142:5: error: Module has no attribute "float64" [attr-defined] +torch/_export/serde/serialize.py:143:5: error: Module has no attribute "complex32" [attr-defined] +torch/_export/serde/serialize.py:144:5: error: Module has no attribute "complex64" [attr-defined] +torch/_export/serde/serialize.py:145:5: error: Module has no attribute "complex128" [attr-defined] +torch/_export/serde/serialize.py:146:5: error: Module has no attribute "bool" [attr-defined] +torch/_export/serde/serialize.py:147:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/_export/serde/serialize.py:148:5: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_export/serde/serialize.py:149:5: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_export/serde/serialize.py:150:5: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/_export/serde/serialize.py:151:5: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/_export/serde/serialize.py:159:5: error: Module has no attribute "sparse_coo" [attr-defined] +torch/_export/serde/serialize.py:160:5: error: Module has no attribute "sparse_csr" [attr-defined] +torch/_export/serde/serialize.py:161:5: error: Module has no attribute "sparse_csc" [attr-defined] +torch/_export/serde/serialize.py:162:5: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/_export/serde/serialize.py:163:5: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/_export/serde/serialize.py:165:5: error: Module has no attribute "strided" [attr-defined] +torch/_export/serde/serialize.py:173:5: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_export/serde/serialize.py:174:5: error: Module has no attribute "channels_last" [attr-defined] +torch/_export/serde/serialize.py:175:5: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_export/serde/serialize.py:176:5: error: Module has no attribute "preserve_format" [attr-defined] +torch/_export/serde/serialize.py:256:38: error: Name "torch.device" is not defined [name-defined] +torch/_export/serde/serialize.py:258:16: error: Module has no attribute "device" [attr-defined] +torch/_export/serde/serialize.py:258:16: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_export/serde/serialize.py:259:12: error: Module has no attribute "device" [attr-defined] +torch/_export/serde/serialize.py:278:48: error: Name "torch.dtype" is not defined [name-defined] +torch/_export/serde/serialize.py:662:37: error: Name "torch._C.ScriptObject" is not defined [name-defined] +torch/_export/serde/serialize.py:1201:45: error: Module has no attribute "OptionalType" [attr-defined] +torch/_export/serde/serialize.py:1203:49: error: Module has no attribute "ListType" [attr-defined] +torch/_export/serde/serialize.py:1205:46: error: Module has no attribute "OptionalType" [attr-defined] +torch/_export/serde/serialize.py:1208:46: error: Module has no attribute "BoolType" [attr-defined] +torch/_export/serde/serialize.py:1210:48: error: Module has no attribute "IntType" [attr-defined] +torch/_export/serde/serialize.py:1212:48: error: Module has no attribute "FloatType" [attr-defined] +torch/_export/serde/serialize.py:1214:48: error: Module has no attribute "StringType" [attr-defined] +torch/_export/serde/serialize.py:1216:48: error: Module has no attribute "TensorType" [attr-defined] +torch/_export/serde/serialize.py:1333:30: error: Module has no attribute "dtype" [attr-defined] +torch/_export/serde/serialize.py:1335:30: error: Module has no attribute "device" [attr-defined] +torch/_export/serde/serialize.py:1337:30: error: Module has no attribute "memory_format" [attr-defined] +torch/_export/serde/serialize.py:1341:30: error: Module has no attribute "layout" [attr-defined] +torch/_export/serde/serialize.py:1343:30: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_export/serde/serialize.py:1648:44: error: Module has no attribute "ListType" [attr-defined] +torch/_export/serde/serialize.py:1649:47: error: Module has no attribute "TensorType" [attr-defined] +torch/_export/serde/serialize.py:1687:47: error: Module has no attribute "OptionalType" [attr-defined] +torch/_export/serde/serialize.py:1687:67: error: Module has no attribute "TensorType" [attr-defined] +torch/_export/serde/serialize.py:1694:47: error: Module has no attribute "OptionalType" [attr-defined] +torch/_export/serde/serialize.py:1694:67: error: Module has no attribute "TensorType" [attr-defined] +torch/_export/serde/serialize.py:1701:46: error: Module has no attribute "ListType" [attr-defined] +torch/_export/serde/serialize.py:1703:63: error: Module has no attribute "TensorType" [attr-defined] +torch/_export/serde/serialize.py:1891:42: error: Module has no attribute "_get_max_operator_version" [attr-defined] +torch/_export/serde/serialize.py:2124:17: error: Module has no attribute "empty_strided" [attr-defined] +torch/_export/serde/serialize.py:2285:39: error: Module has no attribute "TensorType" [attr-defined] +torch/_export/serde/serialize.py:3101:51: error: Module has no attribute "_get_max_operator_version" [attr-defined] +torch/_export/serde/serialize.py:3865:31: error: Name "torch.FunctionSchema" is not defined [name-defined] +torch/export/pt2_archive/_package.py:99:29: error: Module has no attribute "PyTorchFileWriter" [attr-defined] +torch/export/pt2_archive/_package.py:99:29: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/export/pt2_archive/_package.py:197:29: error: Module has no attribute "PyTorchFileReader" [attr-defined] +torch/export/pt2_archive/_package.py:197:29: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/export/pt2_archive/_package.py:494:37: error: Name "torch._C.ScriptObject" is not defined [name-defined] +torch/export/pt2_archive/_package.py:504:35: error: Module has no attribute "ScriptObject" [attr-defined] +torch/export/pt2_archive/_package.py:543:28: error: Module has no attribute "_pickle_save" [attr-defined] +torch/export/pt2_archive/_package.py:789:18: error: Module has no attribute "frombuffer" [attr-defined] +torch/export/pt2_archive/_package.py:798:18: error: Module has no attribute "zeros" [attr-defined] +torch/export/pt2_archive/_package.py:879:33: error: Module has no attribute "as_strided" [attr-defined] +torch/export/pt2_archive/_package.py:935:39: error: Module has no attribute "as_strided" [attr-defined] +torch/export/pt2_archive/_package.py:949:43: error: Module has no attribute "_pickle_load_obj" [attr-defined] +torch/_inductor/ir.py:380:13: error: Module has no attribute "empty_strided" [attr-defined] +torch/_inductor/ir.py:397:34: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:401:24: error: Module has no attribute "device" [attr-defined] +torch/_inductor/ir.py:406:18: error: Argument 1 to "assert_never" has incompatible type "str"; expected "Never" [arg-type] +torch/_inductor/ir.py:409:32: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:429:29: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:658:28: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:661:43: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:729:38: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:732:38: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:830:42: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:845:28: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:853:38: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:926:13: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:927:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:959:38: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:1051:42: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:1057:63: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:1093:42: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:1110:42: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:1152:33: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:1219:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:1269:42: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:1286:17: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:1287:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:1288:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:1459:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:1490:59: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/ir.py:1502:17: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:1503:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:1504:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:1523:33: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/ir.py:1711:37: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:1719:24: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/ir.py:1726:24: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/ir.py:1743:37: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:1873:17: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:1874:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:1875:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:1894:34: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/ir.py:1894:49: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/ir.py:1895:18: error: Module has no attribute "float" [attr-defined] +torch/_inductor/ir.py:1937:17: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:1938:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:1939:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:1983:17: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:1984:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:1985:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:2047:17: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:2048:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:2053:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:2104:17: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:2105:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:2106:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:2142:17: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:2143:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:2262:37: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:2269:17: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:2270:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:2369:19: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:2438:17: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:2439:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:2537:17: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:2538:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:2577:19: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:2645:17: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:2646:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:2860:24: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:2866:38: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:2916:42: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:3373:38: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:3380:24: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:3440:19: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:3443:43: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:3463:24: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:3578:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:3579:13: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:3584:38: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:3597:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:3598:13: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:3609:42: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:3616:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:3617:13: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:3625:42: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:3649:32: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:3657:38: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:3680:17: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:3681:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:3741:29: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:3746:20: error: Module has no attribute "empty_strided" [attr-defined] +torch/_inductor/ir.py:3824:65: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:4013:46: error: Name "torch.memory_format" is not defined [name-defined] +torch/_inductor/ir.py:4025:29: error: Module has no attribute "channels_last" [attr-defined] +torch/_inductor/ir.py:4027:31: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_inductor/ir.py:4029:31: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_inductor/ir.py:4159:17: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:4160:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:4266:22: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:4276:38: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:4395:38: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:4402:24: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:4539:31: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:4551:42: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:5030:42: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:5601:61: error: Module has no attribute "channels_last" [attr-defined] +torch/_inductor/ir.py:5602:64: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_inductor/ir.py:5996:31: error: Name "torch._C.ScriptObject" is not defined [name-defined] +torch/_inductor/ir.py:5996:72: error: Name "torch.Generator" is not defined [name-defined] +torch/_inductor/ir.py:6089:35: error: Module has no attribute "channels_last" [attr-defined] +torch/_inductor/ir.py:6092:35: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_inductor/ir.py:6145:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/ir.py:6687:44: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:6688:18: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/ir.py:6688:30: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/ir.py:6692:23: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/ir.py:7158:38: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:7431:40: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:7507:50: error: Module has no attribute "device" [attr-defined] +torch/_inductor/ir.py:7560:50: error: Module has no attribute "device" [attr-defined] +torch/_inductor/ir.py:7599:37: error: Module has no attribute "device" [attr-defined] +torch/_inductor/ir.py:7626:31: error: Module has no attribute "device" [attr-defined] +torch/_inductor/ir.py:7760:48: error: Name "torch._C.Argument" is not defined [name-defined] +torch/_inductor/ir.py:7762:38: error: Module has no attribute "ListType" [attr-defined] +torch/_inductor/ir.py:7869:43: error: Module has no attribute "device" [attr-defined] +torch/_inductor/ir.py:7938:32: error: Name "torch.TensorType" is not defined [name-defined] +torch/_inductor/ir.py:7938:50: error: Name "torch.ListType" is not defined [name-defined] +torch/_inductor/ir.py:7938:66: error: Name "torch.JitType" is not defined [name-defined] +torch/_inductor/ir.py:7941:41: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/ir.py:7941:59: error: Module has no attribute "NoneType" [attr-defined] +torch/_inductor/ir.py:7947:44: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/ir.py:7955:42: error: Module has no attribute "ListType" [attr-defined] +torch/_inductor/ir.py:7956:47: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/ir.py:7966:42: error: Module has no attribute "OptionalType" [attr-defined] +torch/_inductor/ir.py:7967:47: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/ir.py:7985:42: error: Module has no attribute "IntType" [attr-defined] +torch/_inductor/ir.py:8065:30: error: Name "torch.JitType" is not defined [name-defined] +torch/_inductor/ir.py:8066:34: error: Module has no attribute "OptionalType" [attr-defined] +torch/_inductor/ir.py:8068:38: error: Module has no attribute "NumberType" [attr-defined] +torch/_inductor/ir.py:8156:22: error: Module has no attribute "device" [attr-defined] +torch/_inductor/ir.py:8285:13: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:8287:38: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:8346:38: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:8419:42: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/ir.py:8464:24: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/ir.py:9089:37: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/ir.py:9280:36: error: Name "torch.ScriptObject" is not defined [name-defined] +torch/_inductor/ir.py:9288:52: error: Name "torch.ScriptObject" is not defined [name-defined] +torch/_inductor/ir.py:9291:31: error: Name "torch.ScriptObject" is not defined [name-defined] +torch/_inductor/ir.py:9292:35: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_inductor/ir.py:9318:13: error: Name "torch.device" is not defined [name-defined] +torch/_functorch/_aot_autograd/graph_compile.py:231:17: error: Incompatible types in assignment (expression has type "list[AOTInput]", variable has type "tuple[list[AOTInput], list[AOTInput]]") [assignment] +torch/_functorch/_aot_autograd/graph_compile.py:510:19: error: Module has no attribute "_is_any_autocast_enabled" [attr-defined] +torch/_functorch/_aot_autograd/graph_compile.py:1027:29: error: Module has no attribute "_ExcludeDispatchKeyGuard" [attr-defined] +torch/_functorch/_aot_autograd/graph_compile.py:1028:17: error: Module has no attribute "DispatchKeySet" [attr-defined] +torch/_functorch/_aot_autograd/graph_compile.py:1028:41: error: Module has no attribute "DispatchKey" [attr-defined] +torch/_functorch/_aot_autograd/graph_compile.py:1574:19: error: Module has no attribute "_is_any_autocast_enabled" [attr-defined] +torch/_functorch/_aot_autograd/graph_compile.py:1578:19: error: Module has no attribute "_DisableAutocast" [attr-defined] +torch/_functorch/_aot_autograd/graph_compile.py:1819:61: error: Module has no attribute "_DisableAutocast" [attr-defined] +torch/_functorch/_aot_autograd/graph_compile.py:2069:19: error: Module has no attribute "_is_any_autocast_enabled" [attr-defined] +torch/_functorch/_aot_autograd/graph_compile.py:2248:13: error: Module has no attribute "_DisableAutocast" [attr-defined] +torch/_functorch/_aot_autograd/graph_compile.py:2249:16: error: Module has no attribute "_is_any_autocast_enabled" [attr-defined] +torch/_functorch/_aot_autograd/graph_compile.py:2256:24: error: Module has no attribute "_DisableAutocast" [attr-defined] +torch/_inductor/mkldnn_ir.py:676:29: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_ir.py:676:44: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/mkldnn_ir.py:1051:29: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_ir.py:1051:44: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/mkldnn_ir.py:1174:29: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_ir.py:1174:44: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/kernel_inputs.py:31:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/kernel_inputs.py:85:25: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/kernel_inputs.py:105:37: error: _CudaDeviceProperties? has no attribute "gcnArchName" [attr-defined] +torch/_inductor/kernel_inputs.py:156:31: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/kernel_inputs.py:165:38: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/kernel_inputs.py:178:28: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/kernel_inputs.py:220:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/kernel_inputs.py:275:28: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/jagged_lowerings.py:52:13: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/jagged_lowerings.py:53:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/jagged_lowerings.py:97:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/comm_analysis.py:72:26: error: Name "torch.Size" is not defined [name-defined] +torch/_inductor/comm_analysis.py:191:14: error: Module has no attribute "device" [attr-defined] +torch/_inductor/comm_analysis.py:353:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_inductor/comm_analysis.py:356:5: error: Function is missing a return type annotation [no-untyped-def] +torch/_inductor/comm_analysis.py:457:20: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/codegen/subgraph.py:373:31: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:411:46: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:416:16: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:416:71: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:431:68: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:444:31: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:444:46: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:448:29: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:466:60: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/fx_passes/bucketing.py:51:59: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/fx_passes/bucketing.py:69:23: error: Item "function" of "Callable[..., Any] | str" has no attribute "name" [union-attr] +torch/_inductor/fx_passes/bucketing.py:69:23: error: Item "str" of "Callable[..., Any] | str" has no attribute "name" [union-attr] +torch/_inductor/fx_passes/bucketing.py:71:60: error: Item "function" of "Callable[..., Any] | str" has no attribute "name" [union-attr] +torch/_inductor/fx_passes/bucketing.py:71:60: error: Item "str" of "Callable[..., Any] | str" has no attribute "name" [union-attr] +torch/_inductor/fx_passes/bucketing.py:409:17: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/bucketing.py:418:12: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/bucketing.py:462:17: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/bucketing.py:482:17: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/bucketing.py:498:45: error: Module has no attribute "dtype" [attr-defined] +torch/_inductor/fx_passes/bucketing.py:526:18: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/bucketing.py:536:5: error: Module has no attribute "_foreach_copy_" [attr-defined] +torch/_inductor/fx_passes/bucketing.py:559:18: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/bucketing.py:602:25: error: Module has no attribute "split_with_sizes" [attr-defined] +torch/_inductor/fx_passes/bucketing.py:626:18: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/bucketing.py:630:5: error: Module has no attribute "_foreach_copy_" [attr-defined] +torch/_inductor/fx_passes/bucketing.py:637:12: error: Module has no attribute "split_with_sizes" [attr-defined] +torch/_inductor/fx_passes/bucketing.py:664:18: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/bucketing.py:671:21: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/bucketing.py:678:12: error: Module has no attribute "split_with_sizes" [attr-defined] +torch/_inductor/fx_passes/bucketing.py:805:44: error: Argument 1 to "append" of "list" has incompatible type "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | <9 more items> | None"; expected "Node" [arg-type] +torch/_inductor/fx_passes/bucketing.py:806:23: error: Item "tuple[Argument, ...]" of "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | <9 more items> | None" has no attribute "args" [union-attr] +torch/_inductor/fx_passes/bucketing.py:806:23: error: Item "Sequence[Argument]" of "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | <9 more items> | None" has no attribute "args" [union-attr] +torch/_inductor/fx_passes/bucketing.py:806:23: error: Item "Mapping[str, Argument]" of "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | <9 more items> | None" has no attribute "args" [union-attr] +torch/_inductor/fx_passes/bucketing.py:806:23: error: Item "slice[Any, Any, Any]" of "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | <9 more items> | None" has no attribute "args" [union-attr] +torch/_inductor/fx_passes/bucketing.py:806:23: error: Item "range" of "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | <9 more items> | None" has no attribute "args" [union-attr] +torch/_inductor/fx_passes/bucketing.py:806:23: error: Item "str" of "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | <9 more items> | None" has no attribute "args" [union-attr] +torch/_inductor/fx_passes/bucketing.py:806:23: error: Item "int" of "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | <9 more items> | None" has no attribute "args" [union-attr] +torch/_inductor/fx_passes/bucketing.py:806:23: error: Item "float" of "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | <9 more items> | None" has no attribute "args" [union-attr] +torch/_inductor/fx_passes/bucketing.py:806:23: error: Item "bool" of "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | <9 more items> | None" has no attribute "args" [union-attr] +torch/_inductor/fx_passes/bucketing.py:806:23: error: Item "complex" of "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | <9 more items> | None" has no attribute "args" [union-attr] +torch/_inductor/fx_passes/bucketing.py:806:23: error: Item "OpOverload[[VarArg(Any), KwArg(Any)], Any]" of "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | <9 more items> | None" has no attribute "args" [union-attr] +torch/_inductor/fx_passes/bucketing.py:806:23: error: Item "SymInt" of "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | <9 more items> | None" has no attribute "args" [union-attr] +torch/_inductor/fx_passes/bucketing.py:806:23: error: Item "SymBool" of "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | <9 more items> | None" has no attribute "args" [union-attr] +torch/_inductor/fx_passes/bucketing.py:806:23: error: Item "SymFloat" of "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | <9 more items> | None" has no attribute "args" [union-attr] +torch/_inductor/fx_passes/bucketing.py:806:23: error: Item "None" of "tuple[Argument, ...] | Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | range | Node | str | int | float | bool | complex | <9 more items> | None" has no attribute "args" [union-attr] +torch/export/_trace.py:1502:22: error: Module has no attribute "_jit_texpr_fuser_enabled" [attr-defined] +torch/export/_trace.py:1503:5: error: Module has no attribute "_jit_set_texpr_fuser_enabled" [attr-defined] +torch/export/_trace.py:1507:9: error: Module has no attribute "_jit_set_texpr_fuser_enabled" [attr-defined] +torch/export/_trace.py:1728:24: error: Module has no attribute "_is_torch_function_mode_enabled" [attr-defined] +torch/export/_trace.py:1806:29: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/export/_trace.py:1810:21: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/distributed/optim/named_optimizer.py:72:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/optim/named_optimizer.py:304:21: error: Module has no attribute "zeros_like" [attr-defined] +torch/_inductor/comms.py:69:34: error: Module has no attribute "median" [attr-defined] +torch/_inductor/comms.py:70:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/comms.py:504:54: error: Missing type parameters for generic type "dict" [type-arg] +torch/_inductor/comms.py:505:18: error: Missing type parameters for generic type "dict" [type-arg] +torch/_inductor/comms.py:570:54: error: Missing type parameters for generic type "dict" [type-arg] +torch/_inductor/comms.py:572:18: error: Missing type parameters for generic type "dict" [type-arg] +torch/_inductor/comms.py:573:28: error: Missing type parameters for generic type "dict" [type-arg] +torch/_inductor/comms.py:574:23: error: Missing type parameters for generic type "dict" [type-arg] +torch/_inductor/comms.py:644:28: error: Missing type parameters for generic type "dict" [type-arg] +torch/_inductor/comms.py:716:33: error: Missing type parameters for generic type "dict" [type-arg] +torch/_inductor/comms.py:1387:62: error: Missing type parameters for generic type "dict" [type-arg] +torch/_inductor/comms.py:1390:18: error: Missing type parameters for generic type "dict" [type-arg] +torch/_inductor/comms.py:1391:23: error: Missing type parameters for generic type "dict" [type-arg] +torch/_inductor/comms.py:1442:62: error: Missing type parameters for generic type "dict" [type-arg] +torch/_inductor/comms.py:1443:18: error: Missing type parameters for generic type "dict" [type-arg] +torch/_inductor/comms.py:1444:23: error: Missing type parameters for generic type "dict" [type-arg] +torch/_inductor/comms.py:1560:33: error: Missing type parameters for generic type "dict" [type-arg] +torch/_inductor/comms.py:1648:28: error: Missing type parameters for generic type "dict" [type-arg] +torch/_inductor/codegen/debug_utils.py:11:1: error: Module "torch" has no attribute "dtype"; maybe "types"? [attr-defined] +torch/_dynamo/backends/common.py:166:58: error: Name "torch.device" is not defined [name-defined] +torch/_dynamo/backends/common.py:170:12: error: Module has no attribute "device" [attr-defined] +torch/_dynamo/backends/common.py:173:57: error: Name "torch.dtype" is not defined [name-defined] +torch/_dynamo/backends/common.py:177:12: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/scheduler.py:462:38: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/scheduler.py:473:18: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/scheduler.py:706:38: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/scheduler.py:1989:29: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/scheduler.py:2594:29: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/scheduler.py:2615:47: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/scheduler.py:2792:42: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/scheduler.py:2796:47: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/scheduler.py:3165:42: error: Module has no attribute "device" [attr-defined] +torch/_inductor/scheduler.py:3439:43: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/scheduler.py:4628:32: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/scheduler.py:5186:38: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/scheduler.py:5199:21: error: _CudaDeviceProperties? has no attribute "major" [attr-defined] +torch/_inductor/scheduler.py:5207:44: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/scheduler.py:5901:73: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/scheduler.py:5907:54: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/scheduler.py:6210:44: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/codegen/simd_kernel_features.py:133:37: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/simd_kernel_features.py:149:20: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/simd_kernel_features.py:150:16: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:32:5: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:33:5: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:34:5: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:35:5: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:36:5: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:37:5: error: Module has no attribute "int16" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:38:5: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:39:5: error: Module has no attribute "uint64" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:40:5: error: Module has no attribute "uint32" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:41:5: error: Module has no attribute "uint16" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:42:5: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:43:5: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:44:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:45:5: error: Module has no attribute "complex32" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:46:5: error: Module has no attribute "complex64" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:47:5: error: Module has no attribute "complex128" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:48:5: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:49:5: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:50:5: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:51:5: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:55:5: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:56:5: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:57:5: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:58:5: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:59:5: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:60:5: error: Module has no attribute "int16" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:61:5: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:62:5: error: Module has no attribute "uint64" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:63:5: error: Module has no attribute "uint32" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:64:5: error: Module has no attribute "uint16" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:65:5: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:66:5: error: Module has no attribute "uint32" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:67:5: error: Module has no attribute "uint64" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:68:5: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:69:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:70:5: error: Module has no attribute "complex32" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:71:5: error: Module has no attribute "complex64" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:72:5: error: Module has no attribute "complex128" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:73:5: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:74:5: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:75:5: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:76:5: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:88:5: error: Module has no attribute "strided" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:105:13: error: Module has no attribute "promote_types" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:105:13: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_inductor/codegen/cpp_utils.py:148:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp_utils.py:462:11: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:482:19: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:483:27: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:484:22: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:489:57: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:517:24: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:517:37: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:518:17: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:520:17: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:539:29: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:540:49: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:541:42: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:542:41: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:543:58: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:545:29: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:554:29: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:555:49: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:556:42: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:557:41: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:558:59: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:559:49: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:568:29: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:592:36: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:593:35: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:594:37: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:595:62: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:602:25: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:603:45: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:607:25: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:618:25: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:619:45: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:620:36: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:622:75: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:624:25: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:636:25: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:637:45: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:639:60: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:640:41: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:642:25: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:674:45: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_utils.py:709:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cuda/cutlass_python_evt.py:60:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_dynamo/backends/debugging.py:372:27: error: Module has no attribute "relu" [attr-defined] +torch/_dynamo/backends/debugging.py:382:27: error: Module has no attribute "relu" [attr-defined] +torch/_dynamo/backends/debugging.py:394:27: error: Module has no attribute "relu" [attr-defined] +torch/_dynamo/backends/debugging.py:395:27: error: Module has no attribute "add" [attr-defined] +torch/_inductor/codegen/wrapper.py:25:1: error: Module "torch" has no attribute "dtype"; maybe "types"? [attr-defined] +torch/_inductor/codegen/wrapper.py:91:18: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/codegen/wrapper.py:91:32: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/wrapper.py:568:13: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/codegen/wrapper.py:1233:13: error: Module "torch._C" has no attribute "_cuda_getCurrentRawStream" [attr-defined] +torch/_inductor/codegen/wrapper.py:2131:38: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_inductor/codegen/simd.py:473:35: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/simd.py:476:49: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/simd.py:1585:19: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/simd.py:1817:19: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/codegen/simd.py:1817:31: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/rocm/rocm_utils.py:11:5: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/rocm/rocm_utils.py:12:5: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/_inductor/codegen/rocm/rocm_utils.py:13:5: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/_inductor/codegen/rocm/rocm_utils.py:14:5: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/rocm/rocm_utils.py:15:5: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/codegen/rocm/rocm_utils.py:16:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:32:32: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:32:59: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:32:72: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:33:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:34:6: error: Module has no attribute "half" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:34:18: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:34:34: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:34:55: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:298:5: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:299:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:300:5: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:306:18: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:312:23: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:314:25: error: Module has no attribute "half" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:316:25: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:324:27: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:331:23: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:336:25: error: Module has no attribute "half" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:338:25: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:340:25: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:342:25: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:344:25: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:346:25: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:353:30: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:354:15: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:370:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:371:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:376:23: error: Module has no attribute "half" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:376:35: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:377:13: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:378:13: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:382:24: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:382:39: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:382:55: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:382:68: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:383:29: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:384:25: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:385:29: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:396:33: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:402:24: error: Module has no attribute "half" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:402:36: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:404:25: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:406:26: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:406:39: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:406:51: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/cuda/cutlass_utils.py:408:25: error: Module has no attribute "int32" [attr-defined] +torch/_dynamo/testing.py:116:20: error: Module has no attribute "zeros_like" [attr-defined] +torch/_dynamo/testing.py:383:14: error: Module has no attribute "randn" [attr-defined] +torch/_dynamo/testing.py:384:14: error: Module has no attribute "randn" [attr-defined] +torch/_dynamo/testing.py:425:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_dynamo/testing.py:425:26: error: Module has no attribute "float32" [attr-defined] +torch/_dynamo/testing.py:426:24: error: Name "torch.device" is not defined [name-defined] +torch/_dynamo/testing.py:441:22: error: Module has no attribute "randn" [attr-defined] +torch/_dynamo/testing.py:441:53: error: Module has no attribute "float16" [attr-defined] +torch/_dynamo/testing.py:445:22: error: Module has no attribute "randn" [attr-defined] +torch/_dynamo/testing.py:447:18: error: Module has no attribute "zeros" [attr-defined] +torch/_dynamo/testing.py:448:12: error: Module has no attribute "as_strided" [attr-defined] +torch/_inductor/autotune_process.py:362:13: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/autotune_process.py:363:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/autotune_process.py:751:30: error: Module has no attribute "zeros" [attr-defined] +torch/_inductor/autotune_process.py:753:23: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/codegen/pallas.py:45:5: error: Function is missing a type annotation [no-untyped-def] +torch/_inductor/codegen/pallas.py:195:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/pallas.py:196:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/pallas.py:204:45: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/pallas.py:215:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_inductor/codegen/pallas.py:215:30: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/pallas.py:218:21: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/pallas.py:424:5: error: Function is missing a type annotation [no-untyped-def] +torch/_inductor/codegen/pallas.py:619:28: error: Need type annotation for "all_buffer_names" [var-annotated] +torch/_inductor/codegen/pallas.py:783:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/pallas.py:784:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/pallas.py:1150:43: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/codegen/mps.py:44:5: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/mps.py:45:5: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/mps.py:46:5: error: Module has no attribute "int16" [attr-defined] +torch/_inductor/codegen/mps.py:47:5: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/mps.py:48:5: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/mps.py:49:5: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/mps.py:50:5: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/mps.py:51:5: error: Module has no attribute "half" [attr-defined] +torch/_inductor/codegen/mps.py:52:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/mps.py:177:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/mps.py:178:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/mps.py:181:21: error: Module has no attribute "double" [attr-defined] +torch/_inductor/codegen/mps.py:190:32: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/mps.py:195:55: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/mps.py:199:45: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/mps.py:486:35: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/mps.py:495:22: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/mps.py:495:37: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/mps.py:500:21: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/mps.py:537:28: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/mps.py:543:30: error: Module has no attribute "dtype" [attr-defined] +torch/_inductor/codegen/mps.py:559:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/mps.py:560:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/mps.py:575:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/mps.py:576:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/mps.py:722:27: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/mps.py:734:23: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/mps.py:753:23: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/mps.py:899:33: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/codegen/mps.py:1034:20: error: Module has no attribute "device" [attr-defined] +torch/_inductor/codegen/memory_planning.py:387:13: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/codegen/memory_planning.py:467:27: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/memory_planning.py:489:27: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:1073:22: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:1078:21: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:1078:47: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:1316:17: error: Module has no attribute "Tag" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:1993:21: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2082:38: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2122:17: error: Module has no attribute "FloatType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2123:17: error: Module has no attribute "BoolType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2124:17: error: Module has no attribute "StringType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2125:17: error: Module has no attribute "Type" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2126:17: error: Module has no attribute "DeviceObjType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2133:37: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2136:39: error: Module has no attribute "IntType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2139:39: error: Module has no attribute "SymIntType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2143:39: error: Module has no attribute "NumberType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2152:39: error: Module has no attribute "ListType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2156:58: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2160:48: error: Module has no attribute "OptionalType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2162:65: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2168:60: error: Module has no attribute "IntType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2171:60: error: Module has no attribute "SymIntType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2177:60: error: Module has no attribute "NumberType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2202:41: error: Module has no attribute "OptionalType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2208:36: error: Name "torch.JitType" is not defined [name-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2210:40: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2218:42: error: Module has no attribute "SymIntType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2220:42: error: Module has no attribute "ListType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2221:47: error: Module has no attribute "SymIntType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2230:31: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2230:49: error: Module has no attribute "NoneType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2230:65: error: Module has no attribute "IntType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2233:42: error: Module has no attribute "OptionalType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2234:65: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2235:42: error: Module has no attribute "ListType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2236:65: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2253:25: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2259:21: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2273:13: error: Module has no attribute "BoolType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2274:13: error: Module has no attribute "DeviceObjType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2275:13: error: Module has no attribute "FloatType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2278:13: error: Module has no attribute "IntType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2279:13: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2282:31: error: Name "torch.JitType" is not defined [name-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2283:30: error: Module has no attribute "OptionalType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2461:39: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2473:39: error: Module has no attribute "OptionalType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2475:39: error: Module has no attribute "IntType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2478:39: error: Module has no attribute "SymIntType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2484:39: error: Module has no attribute "FloatType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2486:39: error: Module has no attribute "BoolType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2488:39: error: Module has no attribute "StringType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2490:39: error: Module has no attribute "NumberType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2494:38: error: Module has no attribute "device" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2497:38: error: Module has no attribute "dtype" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2499:38: error: Module has no attribute "layout" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2501:38: error: Module has no attribute "memory_format" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2512:33: error: Module has no attribute "ListType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2564:37: error: Name "torch.JitType" is not defined [name-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2578:41: error: Module has no attribute "OptionalType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2597:41: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2766:30: error: Module has no attribute "OptionalType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2768:32: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2770:33: error: Module has no attribute "IntType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2770:48: error: Module has no attribute "SymIntType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2773:21: error: Module has no attribute "BoolType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2773:37: error: Module has no attribute "SymBoolType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2773:56: error: Module has no attribute "EnumType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2776:32: error: Module has no attribute "FloatType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2778:32: error: Module has no attribute "NumberType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2790:32: error: Module has no attribute "StringType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2810:30: error: Module has no attribute "device" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2812:30: error: Module has no attribute "dtype" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2814:30: error: Module has no attribute "layout" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2816:30: error: Module has no attribute "memory_format" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2833:51: error: Module has no attribute "OptionalType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2837:25: error: Module has no attribute "DeviceObjType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2838:25: error: Module has no attribute "ListType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2839:25: error: Module has no attribute "TupleType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2845:34: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2857:30: error: Module has no attribute "OptionalType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2863:42: error: Module has no attribute "ListType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2863:58: error: Module has no attribute "TupleType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2868:41: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2873:41: error: Module has no attribute "DeviceObjType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2883:31: error: Module has no attribute "ListType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2883:47: error: Module has no attribute "TupleType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2895:41: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2901:41: error: Module has no attribute "OptionalType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu.py:2913:30: error: Module has no attribute "TensorType" [attr-defined] +torch/_dynamo/debug_utils.py:226:18: error: Module has no attribute "is_floating_point" [attr-defined] +torch/_dynamo/debug_utils.py:461:65: error: Module has no attribute "float64" [attr-defined] +torch/_dynamo/debug_utils.py:462:44: error: Module has no attribute "float64" [attr-defined] +torch/_dynamo/debug_utils.py:467:39: error: Module has no attribute "float64" [attr-defined] +torch/_dynamo/debug_utils.py:476:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_dynamo/debug_utils.py:481:17: error: Module has no attribute "float64" [attr-defined] +torch/_dynamo/debug_utils.py:498:20: error: Module has no attribute "float64" [attr-defined] +torch/_dynamo/debug_utils.py:554:35: error: Module has no attribute "float32" [attr-defined] +torch/_dynamo/debug_utils.py:555:36: error: Module has no attribute "device" [attr-defined] +torch/_dynamo/debug_utils.py:571:30: error: Name "torch.dtype" is not defined [name-defined] +torch/_dynamo/debug_utils.py:602:30: error: Name "torch.dtype" is not defined [name-defined] +torch/_dynamo/debug_utils.py:632:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_dynamo/debug_utils.py:642:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_dynamo/debug_utils.py:650:43: error: Module has no attribute "preserve_format" [attr-defined] +torch/_dynamo/debug_utils.py:708:30: error: Name "torch.dtype" is not defined [name-defined] +torch/_dynamo/debug_utils.py:822:26: error: Name "torch.dtype" is not defined [name-defined] +torch/_dynamo/debug_utils.py:850:65: error: Name "torch.dtype" is not defined [name-defined] +torch/_dynamo/debug_utils.py:864:23: error: Module has no attribute "randn" [attr-defined] +torch/_dynamo/debug_utils.py:864:67: error: Module has no attribute "zeros" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_gpu.py:14:1: error: Module "torch" has no attribute "dtype"; maybe "types"? [attr-defined] +torch/_inductor/codegen/cpp_wrapper_gpu.py:750:60: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:858:35: error: Module has no attribute "OptionalType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:859:52: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:862:52: error: Module has no attribute "TensorType" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:873:22: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:878:21: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:878:47: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/rocm/rocm_benchmark_request.py:77:30: error: Module has no attribute "zeros" [attr-defined] +torch/_inductor/codegen/rocm/rocm_benchmark_request.py:79:23: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/codegen/cuda/cuda_kernel.py:13:1: error: Module "torch" has no attribute "dtype"; maybe "types"? [attr-defined] +torch/_dynamo/repro/after_dynamo.py:231:42: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/_inductor/debug.py:855:13: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/codegen/cpp_wrapper_mps.py:39:26: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/codegen/cpp_wrapper_mps.py:84:37: error: Module has no attribute "dtype" [attr-defined] +torch/_inductor/codegen/cuda/cuda_template.py:354:9: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/cuda/cuda_template.py:355:9: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/codegen/cuda/cuda_template.py:356:9: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cuda/cuda_template.py:357:9: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cuda/cuda_template.py:358:9: error: Module has no attribute "int16" [attr-defined] +torch/_inductor/codegen/cuda/cuda_template.py:359:9: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cuda/cuda_template.py:360:9: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cuda/cuda_template.py:361:9: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cuda/cuda_template.py:362:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cuda/cuda_template.py:363:9: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/cuda/cuda_template.py:367:9: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cuda/cuda_template.py:368:9: error: Module has no attribute "int16" [attr-defined] +torch/_inductor/codegen/triton.py:152:44: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:158:53: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/triton.py:158:68: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/codegen/triton.py:924:32: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:929:30: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:931:17: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/triton.py:932:17: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/triton.py:936:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:939:16: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/triton.py:943:28: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:948:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:957:57: error: Module has no attribute "dtype" [attr-defined] +torch/_inductor/codegen/triton.py:965:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:1005:31: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/triton.py:1005:46: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/triton.py:1031:51: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/triton.py:1052:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:1053:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:1057:24: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:1067:17: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/triton.py:1068:17: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/codegen/triton.py:1076:29: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/codegen/triton.py:1078:29: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/triton.py:1092:21: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/triton.py:1094:23: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/triton.py:1111:36: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:1163:24: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/triton.py:1164:28: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/triton.py:1181:30: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/triton.py:1181:45: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/triton.py:1191:30: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/triton.py:1191:45: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/triton.py:1240:48: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/triton.py:1453:47: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/triton.py:1709:29: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/triton.py:1710:45: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/triton.py:1711:46: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/triton.py:1762:31: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/codegen/triton.py:1777:31: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/codegen/triton.py:1813:40: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/triton.py:1813:53: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/triton.py:1829:26: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/triton.py:1829:39: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/triton.py:1844:29: error: Module has no attribute "promote_types" [attr-defined] +torch/_inductor/codegen/triton.py:1865:23: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/triton.py:1920:46: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/triton.py:2071:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:2354:35: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:2968:45: error: Module has no attribute "uint64" [attr-defined] +torch/_inductor/codegen/triton.py:3080:65: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/triton.py:3116:73: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/triton.py:3222:26: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/triton.py:3222:41: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/triton.py:3224:29: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/triton.py:3259:27: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/triton.py:3259:42: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/triton.py:3263:25: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/triton.py:3264:25: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/triton.py:3269:25: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/triton.py:3290:31: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/triton.py:3427:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:3449:30: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/triton.py:3451:32: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/triton.py:3501:50: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:3522:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:3523:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:3536:37: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/triton.py:3539:21: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/triton.py:3540:21: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/triton.py:3547:22: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/triton.py:3547:37: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/triton.py:3549:25: error: Module has no attribute "promote_types" [attr-defined] +torch/_inductor/codegen/triton.py:3549:56: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/triton.py:3550:21: error: Module has no attribute "promote_types" [attr-defined] +torch/_inductor/codegen/triton.py:3550:48: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/triton.py:3605:35: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:3606:34: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:3639:35: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:3686:64: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/triton.py:3692:32: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/codegen/triton.py:3693:28: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/codegen/triton.py:3694:34: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/codegen/triton.py:3695:28: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/codegen/triton.py:3807:24: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/codegen/triton.py:3887:33: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/triton.py:3897:31: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/triton.py:3922:46: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/codegen/triton.py:4011:69: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:4027:62: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:4263:66: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:4328:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:4457:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/triton.py:4566:76: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/triton.py:4572:69: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/triton.py:4600:55: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/triton.py:5626:43: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:143:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp.py:144:5: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cpp.py:147:27: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:148:5: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/codegen/cpp.py:149:5: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:150:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp.py:151:5: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cpp.py:152:5: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:153:5: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp.py:154:5: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp.py:155:5: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cpp.py:156:5: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/cpp.py:157:5: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/cpp.py:158:5: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/codegen/cpp.py:161:34: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:162:5: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/codegen/cpp.py:163:5: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:164:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp.py:165:5: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cpp.py:166:5: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp.py:167:5: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp.py:168:5: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/cpp.py:169:5: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/codegen/cpp.py:177:17: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/cpp.py:184:21: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:185:35: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:212:21: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:213:40: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:226:28: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:255:37: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:331:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:723:52: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:943:46: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cpp.py:1179:59: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/cpp.py:1181:57: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/cpp.py:1307:23: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:1308:31: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:1455:58: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/cpp.py:1598:23: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:1599:31: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:1607:23: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:1608:31: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:1621:23: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:1622:31: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:1648:13: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:1649:13: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/codegen/cpp.py:1650:13: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:1651:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp.py:1652:13: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cpp.py:1653:13: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp.py:1654:13: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp.py:1655:13: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cpp.py:1656:13: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/cpp.py:1657:13: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/cpp.py:1658:13: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/codegen/cpp.py:1665:52: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:1700:29: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:1792:46: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cpp.py:2055:30: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:2111:43: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/cpp.py:2118:47: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/cpp.py:2166:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:2204:49: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:2689:39: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:2696:43: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:2701:36: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:2708:37: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:2708:51: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:2709:21: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:2714:59: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:2715:30: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:2723:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:2741:56: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:2743:67: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:2745:21: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:2760:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:2787:36: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:2793:36: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:2806:33: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:2807:33: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:2923:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:2946:33: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:2950:25: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:2986:47: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/cpp.py:2988:47: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/cpp.py:3175:28: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:3206:36: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:3208:29: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:3243:57: error: Module has no attribute "double" [attr-defined] +torch/_inductor/codegen/cpp.py:3244:21: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:3261:33: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:3262:83: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:3280:32: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:3337:21: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:3349:43: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/cpp.py:3350:25: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:3351:54: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:3353:21: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:3366:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:3366:44: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/cpp.py:3368:32: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:3434:29: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:3435:39: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:3437:43: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/cpp.py:3453:44: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:3505:25: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:3507:27: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/cpp.py:3689:17: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp.py:3690:17: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp.py:3691:17: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/cpp.py:3692:17: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/codegen/cpp.py:3739:62: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:3747:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:3803:17: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:4049:66: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:4063:67: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:4075:60: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:4080:58: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:4091:71: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp.py:4113:59: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:4151:29: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:4152:29: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp.py:4153:29: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cpp.py:4154:29: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/cpp.py:4158:29: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:4159:29: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:4168:47: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:4187:43: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:4218:67: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp.py:4695:43: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/codegen/halide.py:64:16: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/codegen/halide.py:64:28: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/halide.py:215:5: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/halide.py:216:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/halide.py:217:5: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/halide.py:218:5: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/halide.py:219:5: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/codegen/halide.py:220:5: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/halide.py:221:5: error: Module has no attribute "int16" [attr-defined] +torch/_inductor/codegen/halide.py:222:5: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/halide.py:223:5: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/halide.py:224:5: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/halide.py:225:5: error: Module has no attribute "uint16" [attr-defined] +torch/_inductor/codegen/halide.py:226:5: error: Module has no attribute "uint32" [attr-defined] +torch/_inductor/codegen/halide.py:227:5: error: Module has no attribute "uint64" [attr-defined] +torch/_inductor/codegen/halide.py:236:65: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/halide.py:237:17: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/halide.py:238:18: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/halide.py:238:33: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/halide.py:239:17: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/halide.py:247:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/halide.py:248:29: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/halide.py:251:21: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/codegen/halide.py:256:36: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/halide.py:257:26: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/halide.py:257:41: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/halide.py:260:22: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/halide.py:260:37: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/halide.py:493:45: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/halide.py:494:46: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/halide.py:526:26: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/halide.py:526:39: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/codegen/halide.py:533:45: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/halide.py:594:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/halide.py:720:35: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/halide.py:1133:22: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/halide.py:1133:37: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/halide.py:1134:21: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/halide.py:1199:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/halide.py:1200:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/halide.py:1301:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/halide.py:1495:24: error: _CudaDeviceProperties? has no attribute "major" [attr-defined] +torch/_inductor/codegen/halide.py:1495:54: error: _CudaDeviceProperties? has no attribute "minor" [attr-defined] +torch/_inductor/codegen/halide.py:1500:32: error: _CudaDeviceProperties? has no attribute "multi_processor_count" [attr-defined] +torch/_inductor/codegen/halide.py:1693:43: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/codegen/rocm/ck_tile_template.py:13:9: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/rocm/ck_tile_template.py:14:9: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/codegen/rocm/ck_tile_template.py:15:9: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/rocm/ck_tile_template.py:16:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/rocm/ck_tile_template.py:17:9: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/rocm/ck_tile_template.py:18:9: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/rocm/ck_tile_template.py:19:9: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/_inductor/codegen/rocm/ck_tile_template.py:20:9: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/rocm/ck_tile_template.py:21:9: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/_inductor/codegen/rocm/ck_tile_template.py:22:9: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/codegen/rocm/ck_template.py:18:9: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/rocm/ck_template.py:19:9: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/codegen/rocm/ck_template.py:20:9: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/rocm/ck_template.py:21:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/rocm/ck_template.py:22:9: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/rocm/ck_template.py:23:9: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/rocm/ck_template.py:24:9: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/_inductor/codegen/rocm/ck_template.py:25:9: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/codegen/rocm/ck_template.py:26:9: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/_inductor/codegen/rocm/ck_template.py:27:9: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/_inductor/select_algorithm.py:314:31: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/select_algorithm.py:314:46: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/select_algorithm.py:318:29: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/select_algorithm.py:328:19: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/select_algorithm.py:1298:22: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/select_algorithm.py:2021:32: error: Module has no attribute "empty_strided" [attr-defined] +torch/_inductor/select_algorithm.py:2024:23: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/select_algorithm.py:3327:32: error: Module has no attribute "randn" [attr-defined] +torch/_inductor/select_algorithm.py:3338:21: error: Module has no attribute "as_strided" [attr-defined] +torch/_inductor/select_algorithm.py:3352:28: error: Module has no attribute "randn" [attr-defined] +torch/_inductor/select_algorithm.py:3362:22: error: Module has no attribute "as_strided" [attr-defined] +torch/_inductor/lowering.py:185:15: error: Module has no attribute "Tag" [attr-defined] +torch/_inductor/lowering.py:189:15: error: Module has no attribute "Tag" [attr-defined] +torch/_inductor/lowering.py:191:15: error: Module has no attribute "Tag" [attr-defined] +torch/_inductor/lowering.py:241:8: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/lowering.py:242:8: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/lowering.py:243:8: error: Module has no attribute "int16" [attr-defined] +torch/_inductor/lowering.py:244:8: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:245:8: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:246:8: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/lowering.py:247:8: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:248:8: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/lowering.py:249:8: error: Module has no attribute "complex32" [attr-defined] +torch/_inductor/lowering.py:250:8: error: Module has no attribute "complex64" [attr-defined] +torch/_inductor/lowering.py:251:9: error: Module has no attribute "complex32" [attr-defined] +torch/_inductor/lowering.py:252:9: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:253:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/lowering.py:326:49: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/lowering.py:365:21: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:639:22: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/lowering.py:639:38: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/lowering.py:650:25: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:754:56: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/lowering.py:812:48: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/lowering.py:827:43: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/lowering.py:834:20: error: Module has no attribute "finfo" [attr-defined] +torch/_inductor/lowering.py:836:20: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/lowering.py:848:38: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/lowering.py:856:37: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/lowering.py:864:39: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/lowering.py:926:54: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:1052:42: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:1054:53: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:1060:42: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:1062:53: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:1385:44: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:1391:33: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:1393:58: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:1395:55: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:1451:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/lowering.py:1456:29: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/lowering.py:1457:33: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1458:33: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1475:68: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1477:28: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1478:41: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1479:33: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:1480:51: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:1496:27: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:1532:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/lowering.py:1534:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/lowering.py:1546:21: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1559:28: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1560:41: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1561:33: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1562:51: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1563:43: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1584:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/lowering.py:1586:29: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/lowering.py:1587:33: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1588:33: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1597:44: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1600:68: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1623:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/lowering.py:1625:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/lowering.py:1632:21: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1638:72: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1639:43: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1662:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/lowering.py:1664:29: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/lowering.py:1665:33: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1666:33: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1684:27: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1685:43: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1686:32: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1687:53: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1689:68: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1710:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/lowering.py:1712:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/lowering.py:1725:21: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1735:27: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1736:43: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1737:32: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1738:53: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1739:43: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:1755:31: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/lowering.py:1755:43: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/lowering.py:2155:19: error: Module has no attribute "float8_e8m0fnu" [attr-defined] +torch/_inductor/lowering.py:2288:32: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:2307:57: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:2308:61: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:2311:47: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:2343:56: error: Module has no attribute "device" [attr-defined] +torch/_inductor/lowering.py:2358:56: error: Module has no attribute "device" [attr-defined] +torch/_inductor/lowering.py:2418:27: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/lowering.py:2446:13: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:2456:47: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:2475:13: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:2485:47: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:2486:33: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:2487:34: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:2551:19: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:2551:49: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:2644:19: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:2644:49: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:3199:42: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:3200:39: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:3234:44: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:3243:57: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:3250:55: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:3257:69: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:3259:37: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:3289:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/lowering.py:3291:33: error: Module has no attribute "strided" [attr-defined] +torch/_inductor/lowering.py:3294:26: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:3296:26: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_inductor/lowering.py:3322:50: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:3323:43: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:3335:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/lowering.py:3346:20: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/_inductor/lowering.py:3357:20: error: Module has no attribute "LongTensor" [attr-defined] +torch/_inductor/lowering.py:3359:31: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:3470:37: error: Module has no attribute "strided" [attr-defined] +torch/_inductor/lowering.py:3473:26: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_inductor/lowering.py:3474:65: error: Module has no attribute "Size" [attr-defined] +torch/_inductor/lowering.py:3486:21: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/lowering.py:3498:61: error: Module has no attribute "Size" [attr-defined] +torch/_inductor/lowering.py:3514:37: error: Module has no attribute "strided" [attr-defined] +torch/_inductor/lowering.py:3543:37: error: Module has no attribute "strided" [attr-defined] +torch/_inductor/lowering.py:3576:33: error: Module has no attribute "strided" [attr-defined] +torch/_inductor/lowering.py:3578:36: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/_inductor/lowering.py:3579:24: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/lowering.py:3627:21: error: Module has no attribute "full" [attr-defined] +torch/_inductor/lowering.py:3706:27: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:3706:40: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:3706:53: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:3706:65: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/lowering.py:3713:27: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:3713:39: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/lowering.py:3958:40: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:3958:52: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/lowering.py:3971:56: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:3971:68: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/lowering.py:4064:26: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:4065:55: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:4124:14: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/lowering.py:4317:31: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:4319:46: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:4320:44: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:4321:29: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:4566:27: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:4567:44: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:4573:27: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:4574:30: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:4708:21: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:4709:61: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/lowering.py:4741:19: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:4789:42: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/lowering.py:4811:71: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:4816:15: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:4986:52: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:4990:66: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:4993:66: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:4995:60: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:4996:60: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:4998:56: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:4999:56: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5000:66: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5001:65: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5006:57: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5007:57: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5011:72: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5016:72: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5029:61: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:5065:52: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:5066:45: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:5069:52: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:5070:45: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:5169:67: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:5194:25: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:5269:25: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:5286:27: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:5342:15: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:5379:50: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:5380:50: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:5382:32: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/lowering.py:5386:37: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:5450:23: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:5677:56: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5769:44: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5770:44: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5771:42: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5772:42: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5773:49: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5774:49: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5779:44: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5783:43: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5785:54: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5786:54: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5787:57: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5788:56: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5797:66: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5800:66: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5802:60: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5803:60: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5805:56: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5806:56: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5807:66: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5808:65: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5813:57: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5814:57: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5829:72: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5836:72: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5851:72: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:5939:57: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5940:48: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5942:29: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5953:64: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5963:48: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5967:50: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5980:52: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5985:48: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5990:49: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:5994:58: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:6006:58: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:6025:76: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:6032:76: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:6039:76: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/lowering.py:6055:59: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/lowering.py:6149:55: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:6214:25: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/lowering.py:6214:40: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/lowering.py:6215:25: error: Module has no attribute "float" [attr-defined] +torch/_inductor/lowering.py:6291:51: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:6599:17: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:6617:17: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:6641:17: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:6686:46: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:6694:32: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:6697:47: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:6709:46: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:6717:32: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:6720:47: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:6733:17: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:6741:21: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:6771:52: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:6774:52: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:6793:43: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:6796:59: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/lowering.py:6796:71: error: Module has no attribute "int16" [attr-defined] +torch/_inductor/lowering.py:6800:42: error: Module has no attribute "int16" [attr-defined] +torch/_inductor/lowering.py:6821:38: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:6880:27: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:6886:27: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:6892:27: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:6898:27: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:6910:56: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:6914:51: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:6915:51: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:6916:51: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:6917:56: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:6918:51: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:6919:51: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/lowering.py:7180:25: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_inductor/lowering.py:7181:25: error: Module has no attribute "preserve_format" [attr-defined] +torch/_inductor/lowering.py:7184:25: error: Module has no attribute "channels_last" [attr-defined] +torch/_inductor/lowering.py:7186:25: error: Module has no attribute "channels_last_3d" [attr-defined] +torch/_inductor/lowering.py:7203:33: error: Module has no attribute "iinfo" [attr-defined] +torch/_inductor/lowering.py:7228:54: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/lowering.py:7229:43: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/kernel/mm_common.py:48:18: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/kernel/mm_common.py:48:33: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/kernel/mm_common.py:159:9: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/kernel/mm_common.py:160:9: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/kernel/mm_common.py:161:9: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/kernel/mm_common.py:162:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/kernel/mm_common.py:163:9: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/kernel/flex/common.py:56:42: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/kernel/flex/common.py:206:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/kernel/flex/common.py:207:13: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/kernel/flex/common.py:266:15: error: Module has no attribute "arange" [attr-defined] +torch/_inductor/kernel/flex/common.py:289:16: error: Module has no attribute "full" [attr-defined] +torch/_inductor/codegen/cpp_template_kernel.py:129:33: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/cpp_template_kernel.py:129:48: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_template_kernel.py:129:64: error: Module has no attribute "half" [attr-defined] +torch/_inductor/codegen/cpp_template_kernel.py:207:59: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_template_kernel.py:211:46: error: Module has no attribute "device" [attr-defined] +torch/_inductor/codegen/cpp_template_kernel.py:219:45: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_template_kernel.py:224:46: error: Module has no attribute "device" [attr-defined] +torch/_inductor/codegen/cuda/gemm_template.py:1321:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cuda/gemm_template.py:1322:28: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cuda/gemm_template.py:1483:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cuda/gemm_template.py:1484:28: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/kernel/flex/flex_flash_attention.py:234:15: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/kernel/flex/flex_decoding.py:108:18: error: _XpuDeviceProperties? has no attribute "gpu_subslice_count" [attr-defined] +torch/_inductor/kernel/flex/flex_decoding.py:110:18: error: _CudaDeviceProperties? has no attribute "multi_processor_count" [attr-defined] +torch/_inductor/kernel/flex/flex_decoding.py:234:15: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/kernel/flex/flex_decoding.py:240:15: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/kernel/flex/flex_decoding.py:246:9: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:96:33: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:96:46: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:97:42: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:98:41: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:99:41: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:113:47: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:113:60: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:114:52: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:114:65: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:229:18: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:230:19: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:231:19: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:232:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:256:17: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:347:21: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:352:21: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:353:22: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:358:21: error: Module has no attribute "half" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:359:22: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:364:21: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:365:22: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:366:22: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:367:23: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:376:21: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:377:22: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:378:22: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:379:23: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:385:21: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:390:21: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:391:22: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:396:21: error: Module has no attribute "half" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:397:22: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:402:21: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:403:22: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:404:22: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:405:23: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:414:21: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:415:22: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:416:22: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:417:23: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:423:21: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:424:22: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:425:22: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:426:23: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:431:21: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:432:22: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:433:22: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:434:23: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:963:45: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:963:58: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:978:34: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:978:75: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:989:21: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:990:22: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:991:22: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:992:23: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:998:21: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:999:22: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1000:22: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1001:23: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1007:21: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1008:22: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1014:21: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1015:22: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1021:21: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1022:22: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1023:22: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1024:23: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1281:33: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1281:46: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1289:37: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1290:43: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1290:55: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1330:33: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1330:46: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1338:34: error: Module has no attribute "half" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1338:72: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1348:21: error: Module has no attribute "half" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1349:22: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1407:36: error: Module has no attribute "half" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1430:21: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1431:22: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1432:22: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1433:23: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1681:21: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1682:22: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1683:22: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1684:23: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1955:31: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1956:37: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_micro_gemm.py:1956:49: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:379:39: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:379:52: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:382:33: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:382:46: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:401:21: error: Incompatible types in assignment (expression has type "TensorBox", variable has type "Tensor") [assignment] +torch/_inductor/codegen/cpp_gemm_template.py:420:21: error: Incompatible types in assignment (expression has type "TensorBox", variable has type "Tensor | None") [assignment] +torch/_inductor/codegen/cpp_gemm_template.py:605:33: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:605:46: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:605:62: error: Module has no attribute "half" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:605:74: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:772:17: error: Module has no attribute "_L1d_cache_size" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:780:17: error: Module has no attribute "_L2_cache_size" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:788:24: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:794:27: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:794:57: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:818:32: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:821:31: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:828:33: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:1217:35: error: Module has no attribute "sum" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:1217:35: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_inductor/codegen/cpp_gemm_template.py:1217:61: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:1233:35: error: Module has no attribute "sum" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:1233:35: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_inductor/codegen/cpp_gemm_template.py:1233:61: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:1275:44: error: Argument 2 to "pad" has incompatible type "tuple[int, Any]"; expected "list[int]" [arg-type] +torch/_inductor/codegen/cpp_gemm_template.py:1275:44: note: Error code "arg-type" not covered by "type: ignore" comment +torch/_inductor/codegen/cpp_gemm_template.py:1354:57: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:1354:70: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:1401:34: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:1556:25: error: Module has no attribute "_L1d_cache_size" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:1559:25: error: Module has no attribute "_L2_cache_size" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:1589:27: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:1589:57: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:1615:34: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:1616:34: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:1776:25: error: Module has no attribute "eye" [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:1782:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/codegen/cpp_gemm_template.py:1793:26: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/codegen/cpp_flex_attention_template.py:705:33: error: Module has no attribute "float" [attr-defined] +torch/_inductor/codegen/cpp_flex_attention_template.py:705:46: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/cpp_flex_attention_template.py:705:62: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cpp_flex_attention_template.py:984:33: error: Module has no attribute "float" [attr-defined] +torch/_inductor/quantized_lowerings.py:24:5: error: Module has no attribute "_weight_int8pack_mm" [attr-defined] +torch/_inductor/quantized_lowerings.py:65:34: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/quantized_lowerings.py:65:50: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/quantized_lowerings.py:65:65: error: Module has no attribute "float" [attr-defined] +torch/_inductor/quantized_lowerings.py:66:37: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/quantized_lowerings.py:110:34: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/quantized_lowerings.py:110:50: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/quantized_lowerings.py:110:65: error: Module has no attribute "float" [attr-defined] +torch/_inductor/quantized_lowerings.py:111:37: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/quantized_lowerings.py:114:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/quantized_lowerings.py:114:44: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/quantized_lowerings.py:153:20: error: Module has no attribute "randint" [attr-defined] +torch/_inductor/quantized_lowerings.py:153:55: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/kernel/mm.py:926:30: error: Module has no attribute "mm" [attr-defined] +torch/_inductor/kernel/mm.py:928:5: error: Module has no attribute "mm" [attr-defined] +torch/_inductor/kernel/mm.py:935:5: error: Module has no attribute "addmm" [attr-defined] +torch/_inductor/kernel/mm.py:939:5: error: Module has no attribute "_int_mm" [attr-defined] +torch/_inductor/kernel/mm.py:943:5: error: Module has no attribute "_sparse_semi_structured_mm" [attr-defined] +torch/_inductor/kernel/mm.py:950:5: error: Module has no attribute "_scaled_mm" [attr-defined] +torch/_inductor/kernel/mm.py:955:32: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/kernel/mm.py:955:44: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/kernel/mm.py:965:16: error: Module has no attribute "addmm" [attr-defined] +torch/_inductor/kernel/mm.py:966:12: error: Module has no attribute "addmm" [attr-defined] +torch/_inductor/kernel/mm.py:1005:18: error: Module has no attribute "permute" [attr-defined] +torch/_inductor/kernel/mm.py:1007:14: error: Module has no attribute "bmm" [attr-defined] +torch/_inductor/kernel/mm.py:1007:58: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/kernel/mm.py:1008:19: error: Module has no attribute "sum" [attr-defined] +torch/_inductor/kernel/mm.py:1085:12: error: Module has no attribute "mm" [attr-defined] +torch/_inductor/kernel/mm.py:1089:12: error: Module has no attribute "addmm" [attr-defined] +torch/_inductor/kernel/mm.py:1118:30: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/kernel/mm.py:1119:37: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/kernel/mm.py:1119:52: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/kernel/mm.py:1150:13: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/kernel/mm.py:1151:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/kernel/mm.py:1336:46: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/kernel/mm.py:1356:60: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/kernel/mm.py:1716:26: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/kernel/mm.py:1781:25: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/kernel/mm.py:1805:12: error: _CudaDeviceProperties? has no attribute "major" [attr-defined] +torch/_inductor/kernel/flex/flex_cpu.py:97:19: error: Module has no attribute "float" [attr-defined] +torch/_inductor/kernel/flex/flex_cpu.py:102:19: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/kernel/flex/flex_cpu.py:103:19: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/kernel/flex/flex_cpu.py:104:23: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/kernel/flex/flex_cpu.py:105:24: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/kernel/flex/flex_cpu.py:122:19: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/kernel/flex/flex_cpu.py:123:19: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/kernel/flex/flex_cpu.py:124:23: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/kernel/flex/flex_cpu.py:125:24: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/kernel/flex/flex_cpu.py:165:17: error: Module has no attribute "full" [attr-defined] +torch/_inductor/kernel/flex/flex_cpu.py:241:34: error: Module has no attribute "float" [attr-defined] +torch/_inductor/kernel/flex/flex_cpu.py:241:47: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/kernel/flex/flex_cpu.py:241:63: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/codegen/cpp_grouped_gemm_template.py:415:25: error: Module has no attribute "_L1d_cache_size" [attr-defined] +torch/_inductor/codegen/cpp_grouped_gemm_template.py:418:25: error: Module has no attribute "_L2_cache_size" [attr-defined] +torch/_inductor/codegen/cpp_grouped_gemm_template.py:491:27: error: Module has no attribute "float" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:60:33: error: Module has no attribute "sum" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:60:55: error: Module has no attribute "float" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:68:33: error: Module has no attribute "sum" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:68:55: error: Module has no attribute "float" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:199:8: error: Module has no attribute "_has_mkldnn" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:557:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/mkldnn_lowerings.py:557:45: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:561:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/mkldnn_lowerings.py:561:42: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:619:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/mkldnn_lowerings.py:619:45: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:623:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/mkldnn_lowerings.py:623:42: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:628:38: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:628:53: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:629:43: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:629:58: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:681:50: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:681:62: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:691:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/mkldnn_lowerings.py:691:49: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:708:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/mkldnn_lowerings.py:708:43: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:713:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/mkldnn_lowerings.py:713:46: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:733:36: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:738:69: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:740:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/mkldnn_lowerings.py:740:53: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:757:25: error: Module has no attribute "equal" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:758:25: error: Module has no attribute "zeros_like" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:781:29: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:782:29: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:783:29: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:784:29: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:805:57: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:835:55: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:835:70: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:836:50: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:837:65: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:844:35: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:856:44: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:869:47: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:869:60: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:877:68: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:880:52: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:882:55: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:886:58: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:904:46: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:904:59: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1006:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1006:49: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1019:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1019:43: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1031:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1031:46: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1041:36: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1045:69: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1047:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1047:53: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1051:21: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1052:21: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1053:42: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1053:57: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1083:25: error: Module has no attribute "equal" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1084:25: error: Module has no attribute "zeros_like" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1108:29: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1109:29: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1110:29: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1111:29: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1142:57: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1163:55: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1163:70: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1164:50: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1165:65: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1170:49: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1170:64: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1171:44: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1172:57: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1179:35: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1194:44: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1207:47: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1207:60: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1215:68: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1218:52: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1220:55: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1224:58: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1227:62: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1231:39: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/mkldnn_lowerings.py:1301:12: error: Module has no attribute "has_mkl" [attr-defined] +torch/_inductor/kernel/flex/flex_attention.py:148:19: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/kernel/flex/flex_attention.py:149:19: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/kernel/flex/flex_attention.py:150:19: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/kernel/flex/flex_attention.py:151:19: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/kernel/flex/flex_attention.py:162:19: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/kernel/flex/flex_attention.py:163:19: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/kernel/flex/flex_attention.py:164:19: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/kernel/flex/flex_attention.py:165:19: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/kernel/flex/flex_attention.py:293:15: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/kernel/flex/flex_attention.py:299:15: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/kernel/flex/flex_attention.py:656:19: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/kernel/flex/flex_attention.py:657:19: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/kernel/flex/flex_attention.py:658:19: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/kernel/flex/flex_attention.py:659:19: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/kernel/flex/flex_attention.py:690:19: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/kernel/flex/flex_attention.py:691:19: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/kernel/flex/flex_attention.py:692:19: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/kernel/flex/flex_attention.py:693:19: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/pattern_matcher.py:1482:31: error: Module has no attribute "empty_strided" [attr-defined] +torch/_inductor/pattern_matcher.py:1581:12: error: Module has no attribute "is_inference_mode_enabled" [attr-defined] +torch/_inductor/pattern_matcher.py:1803:45: error: Module has no attribute "device" [attr-defined] +torch/_inductor/pattern_matcher.py:1803:59: error: Module has no attribute "dtype" [attr-defined] +torch/_inductor/graph.py:22:1: error: Module "torch" has no attribute "device"; maybe "Device"? [attr-defined] +torch/_inductor/graph.py:152:76: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/graph.py:159:16: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/graph.py:165:16: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/graph.py:167:16: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/graph.py:179:20: error: Name "torch._C.ScriptObject" is not defined [name-defined] +torch/_inductor/graph.py:298:16: error: Module has no attribute "Tag" [attr-defined] +torch/_inductor/graph.py:417:24: error: Name "torch._C.ScriptObject" is not defined [name-defined] +torch/_inductor/graph.py:470:39: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/graph.py:487:40: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/graph.py:630:46: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/graph.py:637:42: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/graph.py:907:39: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/graph.py:947:46: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/graph.py:1005:31: error: Module has no attribute "device" [attr-defined] +torch/_inductor/graph.py:1058:16: error: Module has no attribute "__iter__"; maybe "__dir__"? (not iterable) [attr-defined] +torch/_inductor/graph.py:1058:16: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_inductor/graph.py:1106:66: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/graph.py:1161:34: error: Module has no attribute "Generator" [attr-defined] +torch/_inductor/graph.py:1256:31: error: Name "torch._C.Tag" is not defined [name-defined] +torch/_inductor/graph.py:1275:34: error: Name "torch._C.Tag" is not defined [name-defined] +torch/_inductor/graph.py:1373:30: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_inductor/graph.py:1568:25: error: Name "torch._C.Argument" is not defined [name-defined] +torch/_inductor/graph.py:1763:48: error: Module has no attribute "channels_last" [attr-defined] +torch/_inductor/graph.py:1818:28: error: Module has no attribute "_has_mkldnn" [attr-defined] +torch/_inductor/graph.py:1836:32: error: Module has no attribute "has_mkl" [attr-defined] +torch/_inductor/graph.py:2143:66: error: Module has no attribute "clone" [attr-defined] +torch/_inductor/kernel/bmm.py:122:31: error: Module has no attribute "bmm" [attr-defined] +torch/_inductor/kernel/bmm.py:124:5: error: Module has no attribute "bmm" [attr-defined] +torch/_inductor/kernel/bmm.py:130:5: error: Module has no attribute "baddbmm" [attr-defined] +torch/_inductor/kernel/bmm.py:188:13: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/kernel/bmm.py:189:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/codegen/wrapper_fxir.py:325:13: error: Module has no attribute "as_strided" [attr-defined] +torch/_inductor/codegen/wrapper_fxir.py:687:13: error: Module has no attribute "empty_strided" [attr-defined] +torch/_inductor/codegen/wrapper_fxir.py:974:24: error: Module has no attribute "empty_strided" [attr-defined] +torch/_inductor/subgraph_lowering.py:134:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/subgraph_lowering.py:135:13: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/template_heuristics/triton.py:654:32: error: _CudaDeviceProperties? has no attribute "shared_memory_per_block_optin" [attr-defined] +torch/_inductor/template_heuristics/triton.py:775:25: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:780:25: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:911:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:912:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:913:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:914:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:915:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:916:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:917:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:918:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:919:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:923:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:924:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:925:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:926:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:927:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:928:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:929:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:930:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:931:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:932:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:933:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:934:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:938:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:939:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:940:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:941:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:942:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:943:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:944:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:945:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:946:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:950:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:951:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:952:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:953:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:954:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:955:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:956:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:957:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:958:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:981:25: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1002:25: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1024:21: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1084:44: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1189:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1190:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1191:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1192:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1193:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1194:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1195:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1196:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1197:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1358:25: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1366:25: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1386:21: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1429:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1430:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1431:14: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1432:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1433:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1434:14: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1435:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1436:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1437:14: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1479:25: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1487:25: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1507:21: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1648:20: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/template_heuristics/triton.py:1679:36: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/template_heuristics/triton.py:1684:22: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/template_heuristics/triton.py:1684:37: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/replace_random.py:62:40: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/replace_random.py:63:56: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/fx_passes/replace_random.py:88:12: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/replace_random.py:139:11: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/fx_passes/pad_mm.py:69:37: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/fx_passes/pad_mm.py:70:17: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/pad_mm.py:70:43: error: Module has no attribute "half" [attr-defined] +torch/_inductor/fx_passes/pad_mm.py:70:66: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/pad_mm.py:72:19: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/pad_mm.py:72:45: error: Module has no attribute "float" [attr-defined] +torch/_inductor/fx_passes/pad_mm.py:137:12: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/pad_mm.py:217:56: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/fx_passes/pad_mm.py:225:18: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/pad_mm.py:279:40: error: Name "torch.Size" is not defined [name-defined] +torch/_inductor/fx_passes/pad_mm.py:279:69: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/fx_passes/pad_mm.py:284:26: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/pad_mm.py:375:31: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/fx_passes/pad_mm.py:381:18: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/pad_mm.py:443:17: error: Name "torch.Size" is not defined [name-defined] +torch/_inductor/fx_passes/pad_mm.py:883:31: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/pad_mm.py:884:31: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/pad_mm.py:886:31: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/pad_mm.py:887:31: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/pad_mm.py:889:31: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/overlap_scheduling.py:471:42: error: Module has no attribute "median" [attr-defined] +torch/_inductor/fx_passes/overlap_scheduling.py:472:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/fx_passes/overlap_scheduling.py:627:58: error: Module has no attribute "Tag" [attr-defined] +torch/_inductor/fx_passes/misc_patterns.py:34:17: error: Module has no attribute "randperm" [attr-defined] +torch/_inductor/fx_passes/misc_patterns.py:35:16: error: Module has no attribute "index_add" [attr-defined] +torch/_inductor/fx_passes/misc_patterns.py:38:17: error: Module has no attribute "randperm" [attr-defined] +torch/_inductor/fx_passes/misc_patterns.py:51:10: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/misc_patterns.py:59:17: error: Module has no attribute "randperm" [attr-defined] +torch/_inductor/fx_passes/misc_patterns.py:63:17: error: Module has no attribute "randperm" [attr-defined] +torch/_inductor/fx_passes/misc_patterns.py:71:10: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/micro_pipeline_tp.py:459:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/fx_passes/micro_pipeline_tp.py:526:32: error: Module has no attribute "Size" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:69:58: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:74:18: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:75:29: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:76:20: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:77:29: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:77:29: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_inductor/fx_passes/group_batch_fusion.py:88:18: error: Module has no attribute "add" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:89:29: error: Module has no attribute "add" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:90:20: error: Module has no attribute "mul" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:91:29: error: Module has no attribute "mul" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:241:37: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:244:38: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:457:33: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:460:33: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:529:17: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:531:49: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:533:17: error: Module has no attribute "transpose" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:535:56: error: Module has no attribute "transpose" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:540:21: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:542:52: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:544:21: error: Module has no attribute "addmm" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:547:51: error: Module has no attribute "addmm" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:554:21: error: Module has no attribute "mm" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:557:51: error: Module has no attribute "mm" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:668:17: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:672:17: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:676:17: error: Module has no attribute "transpose" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:678:54: error: Module has no attribute "transpose" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:683:21: error: Module has no attribute "bmm" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:686:45: error: Module has no attribute "bmm" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:693:21: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:697:21: error: Module has no attribute "unsqueeze" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:699:58: error: Module has no attribute "unsqueeze" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:703:21: error: Module has no attribute "baddbmm" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:709:49: error: Module has no attribute "baddbmm" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:721:39: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:721:39: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_inductor/fx_passes/group_batch_fusion.py:723:45: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:809:17: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:814:21: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:821:21: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:837:21: error: Module has no attribute "mul" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:844:21: error: Module has no attribute "mul" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:848:21: error: Module has no attribute "add" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:855:21: error: Module has no attribute "add" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:885:17: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:892:20: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:950:17: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:973:17: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:975:47: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:1087:17: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:1099:17: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:1101:47: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:1116:26: error: Module has no attribute "tanh" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:1122:26: error: Module has no attribute "sigmoid" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:1134:26: error: Module has no attribute "detach" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:1140:26: error: Module has no attribute "nan_to_num" [attr-defined] +torch/_inductor/fx_passes/group_batch_fusion.py:1146:26: error: Module has no attribute "clamp" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:26:9: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:48:9: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:70:9: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:92:9: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:111:19: error: Module has no attribute "softmax" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:131:19: error: Module has no attribute "softmax" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:134:19: error: Module has no attribute "dropout" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:158:18: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:159:19: error: Module has no attribute "softmax" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:160:19: error: Module has no attribute "dropout" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:161:34: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:191:18: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:192:19: error: Module has no attribute "softmax" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:193:34: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:218:18: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:219:19: error: Module has no attribute "softmax" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:220:19: error: Module has no attribute "dropout" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:221:34: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:247:18: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:248:19: error: Module has no attribute "softmax" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:249:34: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:273:12: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:294:9: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:313:19: error: Module has no attribute "bmm" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:315:12: error: Module has no attribute "bmm" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:336:10: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:366:18: error: Module has no attribute "full" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:368:12: error: Module has no attribute "softmax" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:385:38: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:399:14: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:431:18: error: Module has no attribute "full" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:435:13: error: Module has no attribute "softmax" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:455:38: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:468:20: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:469:17: error: Module has no attribute "full" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:476:25: error: Module has no attribute "full" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:477:13: error: Module has no attribute "finfo" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:479:20: error: Module has no attribute "where" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:512:20: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:513:17: error: Module has no attribute "full" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:520:25: error: Module has no attribute "full" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:521:13: error: Module has no attribute "finfo" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:523:20: error: Module has no attribute "where" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:531:18: error: Module has no attribute "full" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:532:17: error: Module has no attribute "where" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:553:18: error: Module has no attribute "full" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:557:13: error: Module has no attribute "softmax" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:577:38: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:589:13: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:621:13: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:659:13: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:703:20: error: Module has no attribute "bmm" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:707:23: error: Module has no attribute "half" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:708:40: error: Module has no attribute "half" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:709:19: error: Module has no attribute "bmm" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:749:39: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:750:39: error: Module has no attribute "float" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:820:9: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:823:31: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:824:31: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:826:34: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:828:31: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:835:9: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:842:9: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:844:35: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:848:19: error: Module has no attribute "float" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:848:32: error: Module has no attribute "half" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:851:50: error: Module has no attribute "float" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:852:49: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:854:50: error: Module has no attribute "float" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:855:49: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:861:58: error: Module has no attribute "float" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:862:57: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:1071:21: error: Module has no attribute "half" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:1098:25: error: Module has no attribute "float" [attr-defined] +torch/_inductor/fx_passes/fuse_attention.py:1102:42: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/b2b_gemm.py:447:9: error: Module has no attribute "mm" [attr-defined] +torch/_inductor/fx_passes/b2b_gemm.py:449:9: error: Module has no attribute "mm" [attr-defined] +torch/_inductor/fx_passes/b2b_gemm.py:515:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/fx_passes/b2b_gemm.py:515:44: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/fx_passes/b2b_gemm.py:590:18: error: Module has no attribute "Tag" [attr-defined] +torch/_inductor/codegen/cuda_combined_scheduling.py:50:44: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/fx_passes/split_cat.py:129:23: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:268:25: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:298:13: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:309:26: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:309:37: error: Module has no attribute "concat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:353:32: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:359:13: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:370:25: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:442:17: error: Module has no attribute "squeeze" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:446:17: error: Module has no attribute "squeeze" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:470:13: error: Module has no attribute "reshape" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:483:25: error: Module has no attribute "clamp" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:506:13: error: Module has no attribute "clamp" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:531:13: error: Module has no attribute "detach" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:734:32: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:734:43: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:807:34: error: Module has no attribute "cumsum" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:807:47: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/fx_passes/split_cat.py:859:41: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:859:52: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:866:65: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:888:41: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:941:34: error: Module has no attribute "cumsum" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:941:47: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/fx_passes/split_cat.py:978:41: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:978:52: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1021:29: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1023:63: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1023:63: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_inductor/fx_passes/split_cat.py:1044:29: error: Module has no attribute "unflatten" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1046:64: error: Module has no attribute "unflatten" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1046:64: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_inductor/fx_passes/split_cat.py:1054:29: error: Module has no attribute "movedim" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1056:64: error: Module has no attribute "movedim" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1056:64: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_inductor/fx_passes/split_cat.py:1064:29: error: Module has no attribute "flatten" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1066:64: error: Module has no attribute "flatten" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1066:64: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_inductor/fx_passes/split_cat.py:1077:25: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1079:59: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1079:59: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_inductor/fx_passes/split_cat.py:1091:25: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1095:58: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1107:37: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1114:25: error: Module has no attribute "flatten" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1116:58: error: Module has no attribute "flatten" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1134:41: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1134:52: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1223:44: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1229:41: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1261:13: error: Module has no attribute "squeeze" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1278:13: error: Module has no attribute "squeeze" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1302:31: error: Module has no attribute "squeeze" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1306:13: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1309:44: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1330:13: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1343:19: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1343:32: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1348:10: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1348:23: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1354:10: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1354:23: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1359:71: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1379:9: error: Module has no attribute "reshape" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1398:10: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1398:23: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1407:10: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1407:23: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1416:10: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1416:23: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1502:9: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1521:31: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1609:9: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:1626:31: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2142:16: error: Name "torch.Size" is not defined [name-defined] +torch/_inductor/fx_passes/split_cat.py:2154:17: error: Module has no attribute "permute" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2157:50: error: Module has no attribute "permute" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2164:13: error: Module has no attribute "reshape" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2166:46: error: Module has no attribute "reshape" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2188:21: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2203:21: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2220:48: error: Module has no attribute "narrow" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2342:9: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2366:31: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2391:21: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2425:9: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2433:71: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2442:31: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2469:21: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2473:54: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2503:13: error: Module has no attribute "reshape" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2506:46: error: Module has no attribute "reshape" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2516:13: error: Module has no attribute "permute" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2519:46: error: Module has no attribute "permute" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2543:23: error: Name "torch.Size" is not defined [name-defined] +torch/_inductor/fx_passes/split_cat.py:2556:13: error: Module has no attribute "permute" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2559:46: error: Module has no attribute "permute" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2599:9: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2618:33: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2638:21: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2642:50: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2642:50: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_inductor/fx_passes/split_cat.py:2672:9: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2680:71: error: Module has no attribute "unbind" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2689:33: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2712:21: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2716:54: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2754:74: error: Module has no attribute "reshape" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2770:9: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2781:67: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2794:38: error: Module has no attribute "reshape" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2834:33: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2838:75: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2844:40: error: Module has no attribute "reshape" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2865:25: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2869:67: error: Module has no attribute "stack" [attr-defined] +torch/_inductor/fx_passes/split_cat.py:2876:21: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/overlap_preserving_bucketer.py:181:24: error: Need type annotation for "hiding_nodes" [var-annotated] +torch/_inductor/fx_passes/overlap_preserving_bucketer.py:841:13: error: Incompatible types in assignment (expression has type "Argument", variable has type "Node") [assignment] +torch/_inductor/choices.py:95:37: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/choices.py:101:37: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/choices.py:107:37: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/choices.py:391:17: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/fx_passes/pre_grad.py:392:8: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_inductor/fx_passes/pre_grad.py:573:29: error: Module has no attribute "allclose" [attr-defined] +torch/_inductor/fx_passes/pre_grad.py:574:29: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/fx_passes/pre_grad.py:575:29: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/fx_passes/pre_grad.py:647:32: error: Module has no attribute "bmm" [attr-defined] +torch/_inductor/fx_passes/pre_grad.py:647:43: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/pre_grad.py:691:21: error: Module has no attribute "relu" [attr-defined] +torch/_inductor/fx_passes/pre_grad.py:691:33: error: Module has no attribute "tanh" [attr-defined] +torch/_inductor/fx_passes/pre_grad.py:696:57: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/pre_grad.py:721:38: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/pre_grad.py:769:16: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/pre_grad.py:770:12: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/pre_grad.py:809:60: error: Module has no attribute "bmm" [attr-defined] +torch/_inductor/fx_passes/pre_grad.py:810:60: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/pre_grad.py:866:16: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/pre_grad.py:867:12: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/pre_grad.py:877:12: error: Module has no attribute "matmul" [attr-defined] +torch/_inductor/fx_passes/decompose_mem_bound_mm.py:230:16: error: Module has no attribute "sum" [attr-defined] +torch/_inductor/fx_passes/decompose_mem_bound_mm.py:255:13: error: Module has no attribute "sum" [attr-defined] +torch/_inductor/fx_passes/decompose_mem_bound_mm.py:277:16: error: Module has no attribute "sum" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:119:8: error: Module has no attribute "_has_mkldnn" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:398:24: error: Module has no attribute "zeros" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:398:46: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:398:66: error: Module has no attribute "device" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:407:17: error: Module has no attribute "empty_strided" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:597:24: error: Module has no attribute "zeros" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:597:46: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:597:66: error: Module has no attribute "device" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:613:17: error: Module has no attribute "empty_strided" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:691:8: error: Module has no attribute "_has_mkldnn" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:705:10: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:867:70: error: Module has no attribute "device" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:868:16: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:881:50: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:930:17: error: Module has no attribute "int64" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:934:15: error: Module has no attribute "arange" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:1049:28: error: Module has no attribute "strided" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:1117:41: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/fx_passes/post_grad.py:1677:54: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:1677:66: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/fx_passes/post_grad.py:1782:49: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/fx_passes/post_grad.py:1812:37: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/fx_passes/post_grad.py:1839:45: error: Module has no attribute "device" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:172:41: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/fx_passes/joint_graph.py:278:17: error: Module has no attribute "full" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:363:13: error: Module has no attribute "Tag" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:422:60: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:427:17: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:428:17: error: Module has no attribute "uint16" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:429:17: error: Module has no attribute "uint32" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:430:17: error: Module has no attribute "uint64" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:472:35: error: Module has no attribute "strided" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:645:31: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/fx_passes/joint_graph.py:689:50: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/fx_passes/joint_graph.py:693:15: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:693:30: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:693:46: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:693:61: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:816:16: error: Module has no attribute "mm" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:911:19: error: Module has no attribute "scalar_tensor" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:912:20: error: Module has no attribute "where" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:915:16: error: Module has no attribute "amax" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:941:19: error: Module has no attribute "scalar_tensor" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:942:20: error: Module has no attribute "where" [attr-defined] +torch/_inductor/fx_passes/joint_graph.py:945:16: error: Module has no attribute "amax" [attr-defined] +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:44:27: error: Module has no attribute "zeros_like" [attr-defined] +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:61:20: error: Module has no attribute "rsqrt" [attr-defined] +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:109:27: error: Module has no attribute "zeros_like" [attr-defined] +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:112:21: error: Module has no attribute "ones_like" [attr-defined] +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:115:19: error: Module has no attribute "zeros_like" [attr-defined] +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:122:20: error: Module has no attribute "rsqrt" [attr-defined] +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:166:9: error: Module has no attribute "_nn" [attr-defined] +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:167:9: error: Module has no attribute "conv1d"; maybe "cond"? [attr-defined] +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:168:9: error: Module has no attribute "conv2d"; maybe "cond"? [attr-defined] +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:169:9: error: Module has no attribute "conv3d"; maybe "cond"? [attr-defined] +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:170:9: error: Module has no attribute "conv_transpose1d" [attr-defined] +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:171:9: error: Module has no attribute "conv_transpose2d" [attr-defined] +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:172:9: error: Module has no attribute "conv_transpose3d" [attr-defined] +torch/_inductor/compile_fx.py:384:21: error: Module has no attribute "equal" [attr-defined] +torch/_inductor/compile_fx.py:649:47: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/compile_fx.py:1840:12: error: Module has no attribute "empty_strided" [attr-defined] +torch/_inductor/compile_fx.py:2150:30: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/compile_fx.py:2681:36: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_inductor/compile_fx.py:2754:49: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_inductor/compile_fx.py:2780:27: error: Module has no attribute "_is_any_autocast_enabled" [attr-defined] +torch/_inductor/compile_fx.py:2782:17: error: Module has no attribute "_DisableAutocast" [attr-defined] +torch/_inductor/compile_fx.py:2881:40: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/compile_fx.py:2900:36: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/compile_fx.py:2959:29: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_inductor/cudagraph_trees.py:103:5: error: Module "torch._C" has no attribute "_cuda_CUDAAllocator_AllocatorState" [attr-defined] +torch/_inductor/cudagraph_trees.py:103:5: error: Module "torch._C" has no attribute "_set_cached_tensors_enabled" [attr-defined] +torch/_inductor/cudagraph_trees.py:142:5: error: Module has no attribute "_cuda_clearCublasWorkspaces" [attr-defined] +torch/_inductor/cudagraph_trees.py:157:12: error: Module has no attribute "_cuda_get_conv_benchmark_empty_cache" [attr-defined] +torch/_inductor/cudagraph_trees.py:158:5: error: Module has no attribute "_cudnn_set_conv_benchmark_empty_cache" [attr-defined] +torch/_inductor/cudagraph_trees.py:162:9: error: Module has no attribute "_cudnn_set_conv_benchmark_empty_cache" [attr-defined] +torch/_inductor/cudagraph_trees.py:168:15: error: Module has no attribute "_cuda_isHistoryEnabled" [attr-defined] +torch/_inductor/cudagraph_trees.py:293:1: error: Module has no attribute "_stash_obj_in_tls" [attr-defined] +torch/_inductor/cudagraph_trees.py:294:1: error: Module has no attribute "_stash_obj_in_tls" [attr-defined] +torch/_inductor/cudagraph_trees.py:327:16: error: Module has no attribute "_is_key_in_tls" [attr-defined] +torch/_inductor/cudagraph_trees.py:328:16: error: Module has no attribute "_get_obj_in_tls" [attr-defined] +torch/_inductor/cudagraph_trees.py:539:22: error: Module has no attribute "_storage_Use_Count" [attr-defined] +torch/_inductor/cudagraph_trees.py:584:37: error: Module has no attribute "device" [attr-defined] +torch/_inductor/cudagraph_trees.py:588:9: error: Module has no attribute "_cuda_beginAllocateCurrentThreadToPool" [attr-defined] +torch/_inductor/cudagraph_trees.py:592:13: error: Module has no attribute "_cuda_endAllocateToPool" [attr-defined] +torch/_inductor/cudagraph_trees.py:593:13: error: Module has no attribute "_cuda_releasePool" [attr-defined] +torch/_inductor/cudagraph_trees.py:977:64: error: Module has no attribute "Generator" [attr-defined] +torch/_inductor/cudagraph_trees.py:1080:13: error: Module has no attribute "_foreach_copy_" [attr-defined] +torch/_inductor/cudagraph_trees.py:1086:21: error: Module has no attribute "_tensors_data_ptrs_at_indices_equal" [attr-defined] +torch/_inductor/cudagraph_trees.py:1384:43: error: Module has no attribute "_cuda_getCheckpointState" [attr-defined] +torch/_inductor/cudagraph_trees.py:1438:13: error: Module has no attribute "_add_cached_tensor" [attr-defined] +torch/_inductor/cudagraph_trees.py:1449:20: error: Item "None" of "Tensor | None" has no attribute "_use_count" [union-attr] +torch/_inductor/cudagraph_trees.py:1629:17: error: Module has no attribute "_remove_cached_tensor" [attr-defined] +torch/_inductor/cudagraph_trees.py:1667:16: error: Module has no attribute "_construct_CUDA_Tensor_From_Storage_And_Metadata" [attr-defined] +torch/_inductor/cudagraph_trees.py:1667:16: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_inductor/cudagraph_trees.py:1670:16: error: Module has no attribute "_construct_storage_from_data_pointer" [attr-defined] +torch/_inductor/cudagraph_trees.py:1697:50: error: Module has no attribute "Generator" [attr-defined] +torch/_inductor/cudagraph_trees.py:1728:16: error: Module has no attribute "_tensors_data_ptrs_at_indices_equal" [attr-defined] +torch/_inductor/cudagraph_trees.py:1753:21: error: Module has no attribute "_tensors_data_ptrs_at_indices_equal" [attr-defined] +torch/_inductor/cudagraph_trees.py:1831:8: error: Module has no attribute "_cuda_checkPoolLiveAllocations" [attr-defined] +torch/_inductor/cudagraph_trees.py:1932:9: error: Module has no attribute "_set_cached_tensors_enabled" [attr-defined] +torch/_inductor/cudagraph_trees.py:2503:17: error: Module has no attribute "_set_storage_access_error_msg" [attr-defined] +torch/_inductor/cudagraph_trees.py:2531:17: error: Module has no attribute "_free_And_Remove_DeleterFn" [attr-defined] +torch/_inductor/cudagraph_trees.py:2536:17: error: Module has no attribute "_set_storage_data_ptr_access_error_msg" [attr-defined] +torch/_inductor/cudagraph_trees.py:2570:9: error: Module has no attribute "_cuda_setCheckpointPoolState" [attr-defined] +torch/_inductor/cudagraph_trees.py:2580:13: error: Module has no attribute "_cuda_cudaCachingAllocator_raw_delete" [attr-defined] +torch/_inductor/cudagraph_trees.py:2590:24: error: Module has no attribute "_has_Standard_Deleter" [attr-defined] +torch/_inductor/fx_passes/freezing_patterns.py:78:9: error: Module has no attribute "_has_mkldnn" [attr-defined] +torch/_inductor/fx_passes/freezing_patterns.py:93:8: error: Module has no attribute "_has_mkldnn" [attr-defined] +torch/_inductor/fx_passes/freezing_patterns.py:133:29: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/freezing_patterns.py:134:31: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/fx_passes/freezing_patterns.py:154:16: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/fx_passes/freezing_patterns.py:160:52: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/freezing_patterns.py:200:17: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/freezing_patterns.py:201:17: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/freezing_patterns.py:224:17: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/freezing_patterns.py:246:17: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/freezing_patterns.py:272:17: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/freezing_patterns.py:273:17: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/freezing.py:279:43: error: Module has no attribute "channels_last" [attr-defined] +torch/_inductor/freezing.py:287:39: error: Module has no attribute "channels_last" [attr-defined] +torch/_inductor/fx_passes/quantization.py:77:9: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:78:9: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:79:9: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:80:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:81:9: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/_inductor/fx_passes/quantization.py:115:22: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:115:37: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:121:22: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:367:29: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:367:44: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:434:33: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:434:45: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:434:58: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:434:73: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:473:29: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:473:44: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:680:29: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:680:44: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:724:38: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:724:51: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1111:24: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1112:29: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1113:29: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1114:29: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1115:33: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1140:24: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1141:33: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1142:33: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1379:47: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1381:26: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1381:41: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1396:29: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1404:29: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1425:66: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1456:26: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1456:41: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1545:26: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1545:41: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1563:33: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1584:26: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1584:41: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1599:21: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1698:25: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1708:41: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1710:22: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1710:37: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1731:11: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1733:22: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1733:37: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1737:25: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1748:25: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1830:26: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1830:41: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1863:53: error: Module has no attribute "Size" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1900:11: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1926:26: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1926:41: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:1954:21: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2057:25: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2069:11: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2074:22: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2074:37: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2116:11: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2124:22: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2124:37: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2157:11: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2188:13: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2253:10: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2253:25: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2283:30: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2295:10: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2295:25: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2297:21: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2348:10: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2348:25: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2358:21: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2387:10: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2387:25: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2389:21: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2419:46: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2760:72: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2913:33: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2913:45: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2913:58: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2913:73: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2917:33: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2917:64: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2922:33: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2922:64: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2958:41: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2958:54: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2963:41: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2963:54: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2968:41: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:2968:54: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:3021:43: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:3021:58: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:3025:52: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:3284:34: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:3284:47: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:3288:49: error: Module has no attribute "uint8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:3288:62: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/fx_passes/quantization.py:3363:43: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:3363:58: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:3364:52: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/quantization.py:3746:17: error: Module has no attribute "eye" [attr-defined] +torch/_inductor/fx_passes/quantization.py:3748:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/fx_passes/quantization.py:3762:21: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/fx_passes/quantization.py:3764:31: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/quantization.py:3768:27: error: Module has no attribute "cat" [attr-defined] +torch/_inductor/fx_passes/quantization.py:3848:55: error: Module has no attribute "contiguous_format" [attr-defined] +torch/_inductor/fx_passes/binary_folding.py:19:39: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/binary_folding.py:19:54: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/binary_folding.py:29:51: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/binary_folding.py:154:13: error: Module has no attribute "Size" [attr-defined] +torch/_inductor/fx_passes/binary_folding.py:159:13: error: Module has no attribute "Size" [attr-defined] +torch/_inductor/fx_passes/binary_folding.py:160:13: error: Module has no attribute "Size" [attr-defined] +torch/_inductor/fx_passes/binary_folding.py:165:13: error: Module has no attribute "Size" [attr-defined] +torch/_inductor/fx_passes/binary_folding.py:170:21: error: Module has no attribute "Size" [attr-defined] +torch/_inductor/fx_passes/binary_folding.py:171:21: error: Module has no attribute "Size" [attr-defined] +torch/_inductor/fx_passes/binary_folding.py:206:17: error: Module has no attribute "promote_types" [attr-defined] +torch/_inductor/fx_passes/binary_folding.py:206:17: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_inductor/fx_passes/binary_folding.py:213:47: error: Module has no attribute "float" [attr-defined] +torch/_inductor/fx_passes/binary_folding.py:213:47: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_inductor/fx_passes/binary_folding.py:214:57: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/binary_folding.py:214:72: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/binary_folding.py:260:17: error: Module has no attribute "promote_types" [attr-defined] +torch/_inductor/fx_passes/binary_folding.py:260:17: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_inductor/fx_passes/binary_folding.py:267:47: error: Module has no attribute "float" [attr-defined] +torch/_inductor/fx_passes/binary_folding.py:267:47: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_inductor/fx_passes/binary_folding.py:268:57: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/binary_folding.py:268:72: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/binary_folding.py:311:32: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:42:4: error: Module has no attribute "_has_mkldnn" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:293:26: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:295:28: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:441:51: error: Module has no attribute "float" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:481:38: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:484:49: error: Module has no attribute "float" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:501:76: error: Module has no attribute "float" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:531:38: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:534:49: error: Module has no attribute "float" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:550:76: error: Module has no attribute "float" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:602:25: error: Module has no attribute "Size" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:610:21: error: Module has no attribute "Size" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:614:21: error: Module has no attribute "Size" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:618:21: error: Module has no attribute "Size" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:871:28: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:871:44: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1037:18: error: Module has no attribute "Size" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1135:62: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1141:62: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1175:39: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1176:43: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1181:39: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1182:43: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1234:39: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1235:43: error: Module has no attribute "float64" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1239:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1240:13: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1247:71: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1255:21: error: Module has no attribute "has_mkl" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1277:39: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1278:43: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1283:39: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1284:43: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1463:21: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1464:21: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1470:68: error: Module has no attribute "float32" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1507:13: error: Module has no attribute "_nn" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1508:13: error: Module has no attribute "_nn" [attr-defined] +torch/_inductor/fx_passes/mkldnn_fusion.py:1513:12: error: Module has no attribute "has_mkl" [attr-defined] +torch/utils/tensorboard/_proto_graph.py:41:12: error: Name "torch.dtype" is not defined [name-defined] +torch/utils/tensorboard/_convert_np.py:32:19: error: Module has no attribute "bfloat16" [attr-defined] +torch/utils/tensorboard/_convert_np.py:33:18: error: Module has no attribute "float16" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:4:38: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/ops/_dtype_mappings.py:5:8: error: Module has no attribute "float32" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:6:8: error: Module has no attribute "uint8" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:7:8: error: Module has no attribute "int8" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:8:8: error: Module has no attribute "uint16" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:9:8: error: Module has no attribute "int16" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:10:8: error: Module has no attribute "int32" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:11:8: error: Module has no attribute "int64" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:12:8: error: Module has no attribute "bool" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:13:9: error: Module has no attribute "float16" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:14:9: error: Module has no attribute "double" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:15:9: error: Module has no attribute "uint32" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:16:9: error: Module has no attribute "uint64" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:17:9: error: Module has no attribute "complex64" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:18:9: error: Module has no attribute "complex128" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:19:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:20:9: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:21:9: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:22:9: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:23:9: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:24:9: error: Module has no attribute "uint8" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:25:9: error: Module has no attribute "uint8" [attr-defined] +torch/onnx/ops/_dtype_mappings.py:26:9: error: Module has no attribute "float4_e2m1fn_x2" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:25:24: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/type_utils.py:28:42: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/type_utils.py:33:34: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/type_utils.py:37:65: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/type_utils.py:45:47: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/type_utils.py:77:37: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/type_utils.py:83:59: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/type_utils.py:89:52: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/type_utils.py:90:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:91:5: error: Module has no attribute "bool" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:92:5: error: Module has no attribute "float64" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:93:5: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:94:5: error: Module has no attribute "float16" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:95:5: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:96:5: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:97:5: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:98:5: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:99:5: error: Module has no attribute "int16" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:100:5: error: Module has no attribute "int32" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:101:5: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:102:5: error: Module has no attribute "int8" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:103:5: error: Module has no attribute "uint8" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:109:5: error: Module has no attribute "complex32" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:110:5: error: Module has no attribute "complex64" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:111:5: error: Module has no attribute "complex128" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:121:11: error: Module has no attribute "bool" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:122:10: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:123:12: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:124:14: error: Module has no attribute "complex64" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:127:25: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/type_utils.py:128:5: error: Module has no attribute "complex32" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:128:22: error: Module has no attribute "float16" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:129:5: error: Module has no attribute "complex64" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:129:22: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:130:5: error: Module has no attribute "complex128" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:130:23: error: Module has no attribute "float64" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:134:19: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:135:21: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:136:20: error: Module has no attribute "bool" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:139:41: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/type_utils.py:145:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:146:5: error: Module has no attribute "float64" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:147:5: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:148:5: error: Module has no attribute "float16" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:149:5: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:150:5: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:151:5: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:152:5: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:153:5: error: Module has no attribute "complex32" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:154:5: error: Module has no attribute "complex64" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:155:5: error: Module has no attribute "complex128" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:156:5: error: Module has no attribute "int8" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:157:5: error: Module has no attribute "int16" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:158:5: error: Module has no attribute "int32" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:159:5: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:160:5: error: Module has no attribute "bool" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:161:5: error: Module has no attribute "uint8" [attr-defined] +torch/onnx/_internal/fx/type_utils.py:174:5: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/type_utils.py:176:5: error: Name "torch.device" is not defined [name-defined] +torch/onnx/_internal/fx/type_utils.py:177:5: error: Name "torch.memory_format" is not defined [name-defined] +torch/onnx/_internal/fx/type_utils.py:178:5: error: Name "torch.layout" is not defined [name-defined] +torch/onnx/_internal/exporter/_verification.py:55:21: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/exporter/_verification.py:56:19: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/exporter/_verification.py:78:24: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/exporter/_verification.py:80:22: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/exporter/_verification.py:83:13: error: Argument 1 to "_compare_tensors" has incompatible type "Tensor | float | int"; expected "Tensor" [arg-type] +torch/onnx/_internal/exporter/_verification.py:83:23: error: Argument 2 to "_compare_tensors" has incompatible type "Tensor | float | int"; expected "Tensor" [arg-type] +torch/onnx/_internal/exporter/_verification.py:85:16: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/exporter/_verification.py:87:19: error: Module has no attribute "float" [attr-defined] +torch/onnx/_internal/exporter/_verification.py:89:25: error: Module has no attribute "histogram" [attr-defined] +torch/onnx/_internal/exporter/_verification.py:90:25: error: Module has no attribute "histogram" [attr-defined] +torch/onnx/_internal/exporter/_verification.py:97:28: error: Item "float" of "Tensor | float | int" has no attribute "dtype" [union-attr] +torch/onnx/_internal/exporter/_verification.py:97:28: error: Item "int" of "Tensor | float | int" has no attribute "dtype" [union-attr] +torch/onnx/_internal/exporter/_verification.py:98:26: error: Item "float" of "Tensor | float | int" has no attribute "dtype" [union-attr] +torch/onnx/_internal/exporter/_verification.py:98:26: error: Item "int" of "Tensor | float | int" has no attribute "dtype" [union-attr] +torch/onnx/_internal/exporter/_verification.py:132:36: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/exporter/_verification.py:133:26: error: Module has no attribute "bool" [attr-defined] +torch/onnx/_internal/exporter/_verification.py:134:32: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/exporter/_verification.py:135:28: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/exporter/_verification.py:136:8: error: Module has no attribute "is_complex" [attr-defined] +torch/onnx/_internal/exporter/_verification.py:137:20: error: Module has no attribute "view_as_real" [attr-defined] +torch/onnx/_internal/exporter/_verification.py:138:16: error: Module has no attribute "abs" [attr-defined] +torch/onnx/_internal/exporter/_verification.py:140:18: error: Module has no attribute "abs" [attr-defined] +torch/onnx/_internal/exporter/_type_casting.py:8:28: error: Module has no attribute "float4_e2m1fn_x2" [attr-defined] +torch/onnx/_internal/exporter/_type_casting.py:9:24: error: Module has no attribute "uint8" [attr-defined] +torch/onnx/_internal/exporter/_type_casting.py:31:28: error: Module has no attribute "float4_e2m1fn_x2" [attr-defined] +torch/_dynamo/polyfills/pytree.py:93:7: error: Item "function" of "Callable[[type], bool] | Callable[[tuple[Any, ...] | type[tuple[Any, ...]]], tuple[str, ...]]" has no attribute "__python_implementation__" [union-attr] +torch/_dynamo/polyfills/pytree.py:93:7: note: Error code "union-attr" not covered by "type: ignore" comment +torch/utils/tensorboard/summary.py:81:12: error: Module has no attribute "view_as_real" [attr-defined] +torch/utils/tensorboard/summary.py:88:5: error: Module has no attribute "half" [attr-defined] +torch/utils/tensorboard/summary.py:89:5: error: Module has no attribute "float16" [attr-defined] +torch/utils/tensorboard/summary.py:90:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/utils/tensorboard/summary.py:91:5: error: Module has no attribute "float32" [attr-defined] +torch/utils/tensorboard/summary.py:92:5: error: Module has no attribute "float" [attr-defined] +torch/utils/tensorboard/summary.py:93:5: error: Module has no attribute "float64" [attr-defined] +torch/utils/tensorboard/summary.py:94:5: error: Module has no attribute "double" [attr-defined] +torch/utils/tensorboard/summary.py:95:5: error: Module has no attribute "int8" [attr-defined] +torch/utils/tensorboard/summary.py:96:5: error: Module has no attribute "uint8" [attr-defined] +torch/utils/tensorboard/summary.py:97:5: error: Module has no attribute "qint8" [attr-defined] +torch/utils/tensorboard/summary.py:98:5: error: Module has no attribute "int16" [attr-defined] +torch/utils/tensorboard/summary.py:99:5: error: Module has no attribute "short" [attr-defined] +torch/utils/tensorboard/summary.py:100:5: error: Module has no attribute "int" [attr-defined] +torch/utils/tensorboard/summary.py:101:5: error: Module has no attribute "int32" [attr-defined] +torch/utils/tensorboard/summary.py:102:5: error: Module has no attribute "qint32" [attr-defined] +torch/utils/tensorboard/summary.py:103:5: error: Module has no attribute "int64" [attr-defined] +torch/utils/tensorboard/summary.py:104:5: error: Module has no attribute "complex32" [attr-defined] +torch/utils/tensorboard/summary.py:105:5: error: Module has no attribute "chalf" [attr-defined] +torch/utils/tensorboard/summary.py:106:5: error: Module has no attribute "complex64" [attr-defined] +torch/utils/tensorboard/summary.py:107:5: error: Module has no attribute "cfloat" [attr-defined] +torch/utils/tensorboard/summary.py:108:5: error: Module has no attribute "bool" [attr-defined] +torch/utils/tensorboard/summary.py:109:5: error: Module has no attribute "complex128" [attr-defined] +torch/utils/tensorboard/summary.py:110:5: error: Module has no attribute "cdouble" [attr-defined] +torch/utils/tensorboard/summary.py:111:5: error: Module has no attribute "uint8" [attr-defined] +torch/utils/tensorboard/summary.py:112:5: error: Module has no attribute "quint8" [attr-defined] +torch/utils/tensorboard/summary.py:113:5: error: Module has no attribute "quint4x2" [attr-defined] +torch/utils/tensorboard/summary.py:932:14: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/utils/tensorboard/_pytorch_graph.py:144:9: error: Need type annotation for "nodes_op" (hint: "nodes_op: list[] = ...") [var-annotated] +torch/utils/tensorboard/_pytorch_graph.py:145:9: error: Need type annotation for "nodes_io" [var-annotated] +torch/utils/tensorboard/_pytorch_graph.py:146:9: error: Need type annotation for "unique_name_to_scoped_name" (hint: "unique_name_to_scoped_name: dict[, ] = ...") [var-annotated] +torch/utils/tensorboard/_pytorch_graph.py:148:9: error: Need type annotation for "scope_name_appeared" (hint: "scope_name_appeared: list[] = ...") [var-annotated] +torch/utils/tensorboard/_pytorch_graph.py:330:13: error: Module has no attribute "_jit_pass_inline" [attr-defined] +torch/utils/tensorboard/_pytorch_graph.py:375:21: error: Name "torch._C.Node" is not defined [name-defined] +torch/onnx/ops/_symbolic_impl.py:204:12: error: Module has no attribute "zeros" [attr-defined] +torch/onnx/ops/_symbolic_impl.py:233:12: error: Module has no attribute "zeros" [attr-defined] +torch/onnx/ops/_symbolic_impl.py:277:13: error: Module has no attribute "zeros" [attr-defined] +torch/onnx/ops/_symbolic_impl.py:315:13: error: Module has no attribute "zeros" [attr-defined] +torch/onnx/ops/_impl.py:117:13: error: Module has no attribute "permute" [attr-defined] +torch/onnx/ops/_impl.py:126:13: error: Module has no attribute "reshape" [attr-defined] +torch/onnx/ops/_impl.py:167:11: error: Module has no attribute "unsqueeze" [attr-defined] +torch/onnx/ops/_impl.py:170:11: error: Module has no attribute "unsqueeze" [attr-defined] +torch/onnx/ops/_impl.py:179:18: error: Module has no attribute "chunk" [attr-defined] +torch/onnx/ops/_impl.py:189:16: error: Module has no attribute "unsqueeze" [attr-defined] +torch/onnx/ops/_impl.py:190:16: error: Module has no attribute "unsqueeze" [attr-defined] +torch/onnx/ops/_impl.py:191:27: error: Module has no attribute "cat" [attr-defined] +torch/onnx/ops/_impl.py:192:20: error: Module has no attribute "reshape" [attr-defined] +torch/onnx/ops/_impl.py:194:20: error: Module has no attribute "cat" [attr-defined] +torch/onnx/ops/_impl.py:195:14: error: Module has no attribute "cat" [attr-defined] +torch/onnx/ops/_impl.py:197:16: error: Module has no attribute "reshape" [attr-defined] +torch/onnx/ops/_impl.py:200:12: error: Module has no attribute "permute" [attr-defined] +torch/onnx/ops/_impl.py:236:16: error: Module has no attribute "zeros_like" [attr-defined] +torch/onnx/ops/_impl.py:236:33: error: Module has no attribute "matmul" [attr-defined] +torch/onnx/ops/_impl.py:268:12: error: Module has no attribute "matmul" [attr-defined] +torch/onnx/ops/_impl.py:268:35: error: "float" has no attribute "transpose" [attr-defined] +torch/onnx/ops/_impl.py:347:14: error: Module has no attribute "empty" [attr-defined] +torch/onnx/ops/_impl.py:348:19: error: Module has no attribute "empty" [attr-defined] +torch/onnx/ops/_impl.py:349:21: error: Module has no attribute "empty" [attr-defined] +torch/onnx/ops/_impl.py:350:17: error: Module has no attribute "empty" [attr-defined] +torch/onnx/ops/_impl.py:402:9: error: Module has no attribute "cat" [attr-defined] +torch/onnx/ops/_impl.py:407:9: error: Module has no attribute "cat" [attr-defined] +torch/onnx/ops/_impl.py:426:54: error: Module has no attribute "bool" [attr-defined] +torch/onnx/ops/_impl.py:464:21: error: Module has no attribute "zeros" [attr-defined] +torch/onnx/ops/_impl.py:473:27: error: Module has no attribute "tril" [attr-defined] +torch/onnx/ops/_impl.py:474:17: error: Module has no attribute "ones" [attr-defined] +torch/onnx/ops/_impl.py:477:27: error: Module has no attribute "bool" [attr-defined] +torch/onnx/ops/_impl.py:485:35: error: Module has no attribute "bool" [attr-defined] +torch/onnx/ops/_impl.py:501:28: error: Module has no attribute "matmul" [attr-defined] +torch/onnx/ops/_impl.py:514:38: error: Module has no attribute "tanh" [attr-defined] +torch/onnx/ops/_impl.py:527:30: error: Module has no attribute "softmax" [attr-defined] +torch/onnx/ops/_impl.py:530:30: error: Module has no attribute "softmax" [attr-defined] +torch/onnx/ops/_impl.py:532:26: error: Module has no attribute "softmax" [attr-defined] +torch/onnx/ops/_impl.py:538:18: error: Module has no attribute "matmul" [attr-defined] +torch/onnx/ops/__init__.py:32:5: error: Module has no attribute "float32" [attr-defined] +torch/onnx/ops/__init__.py:33:5: error: Module has no attribute "uint8" [attr-defined] +torch/onnx/ops/__init__.py:34:5: error: Module has no attribute "int8" [attr-defined] +torch/onnx/ops/__init__.py:35:5: error: Module has no attribute "uint16" [attr-defined] +torch/onnx/ops/__init__.py:36:5: error: Module has no attribute "int16" [attr-defined] +torch/onnx/ops/__init__.py:37:5: error: Module has no attribute "int32" [attr-defined] +torch/onnx/ops/__init__.py:38:5: error: Module has no attribute "int64" [attr-defined] +torch/onnx/ops/__init__.py:40:5: error: Module has no attribute "bool" [attr-defined] +torch/onnx/ops/__init__.py:41:5: error: Module has no attribute "float16" [attr-defined] +torch/onnx/ops/__init__.py:42:5: error: Module has no attribute "double" [attr-defined] +torch/onnx/ops/__init__.py:43:5: error: Module has no attribute "uint32" [attr-defined] +torch/onnx/ops/__init__.py:44:5: error: Module has no attribute "uint64" [attr-defined] +torch/onnx/ops/__init__.py:45:5: error: Module has no attribute "complex64" [attr-defined] +torch/onnx/ops/__init__.py:46:5: error: Module has no attribute "complex128" [attr-defined] +torch/onnx/ops/__init__.py:47:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/onnx/ops/__init__.py:48:5: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/onnx/ops/__init__.py:49:5: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/onnx/ops/__init__.py:50:5: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/onnx/ops/__init__.py:51:5: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/onnx/ops/__init__.py:54:5: error: Module has no attribute "float4_e2m1fn_x2" [attr-defined] +torch/onnx/ops/__init__.py:91:12: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/ops/__init__.py:192:22: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/passes/type_promotion.py:53:31: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/passes/type_promotion.py:56:33: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/passes/type_promotion.py:59:16: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/passes/type_promotion.py:168:31: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/passes/type_promotion.py:169:10: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/passes/type_promotion.py:290:16: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/passes/type_promotion.py:329:29: error: Module has no attribute "bool" [attr-defined] +torch/onnx/_internal/fx/passes/type_promotion.py:331:24: error: Module has no attribute "uint8" [attr-defined] +torch/onnx/_internal/fx/passes/type_promotion.py:331:69: error: Module has no attribute "bool" [attr-defined] +torch/onnx/_internal/fx/passes/type_promotion.py:354:16: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/passes/type_promotion.py:360:25: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/fx/passes/type_promotion.py:1209:9: error: Need type annotation for "_rule_table" (hint: "_rule_table: dict[, ] = ...") [var-annotated] +torch/onnx/_internal/fx/passes/type_promotion.py:1267:9: error: Need type annotation for "traced_ops" (hint: "traced_ops: list[] = ...") [var-annotated] +torch/onnx/_internal/fx/passes/type_promotion.py:1381:29: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/passes/type_promotion.py:1446:16: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/fx/passes/type_promotion.py:1533:20: error: Missing positional arguments "args", "kwargs", "name", "op", "target" in call to "Node" [call-arg] +torch/onnx/_internal/fx/passes/type_promotion.py:1533:32: error: Argument 1 to "Node" has incompatible type "Generator[Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | Node | int | <8 more items> | None, None, None]"; expected "Graph" [arg-type] +torch/utils/tensorboard/writer.py:233:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:269:32: error: Incompatible types in assignment (expression has type "FileWriter", variable has type "None") [assignment] +torch/utils/tensorboard/writer.py:273:32: error: Incompatible types in assignment (expression has type "dict[Any, None]", variable has type "None") [assignment] +torch/utils/tensorboard/writer.py:273:33: error: "None" has no attribute "get_logdir" [attr-defined] +torch/utils/tensorboard/writer.py:277:17: error: "None" has no attribute "add_event" [attr-defined] +torch/utils/tensorboard/writer.py:281:17: error: "None" has no attribute "add_event" [attr-defined] +torch/utils/tensorboard/writer.py:335:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:384:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:420:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:463:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:504:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:573:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:632:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:676:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:713:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:752:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:785:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:805:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:824:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:830:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:847:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:911:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:1008:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:1046:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:1075:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:1096:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:1125:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/tensorboard/writer.py:1190:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:137:32: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:180:28: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:196:35: error: Module has no attribute "Value" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:197:31: error: Module has no attribute "Value" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:213:37: error: Module has no attribute "ListType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:218:37: error: Module has no attribute "OptionalType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:229:27: error: Module has no attribute "NoneType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:254:24: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:370:25: error: Module has no attribute "bool" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:371:26: error: Module has no attribute "uint8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:372:25: error: Module has no attribute "int8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:373:26: error: Module has no attribute "short" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:374:24: error: Module has no attribute "int" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:375:26: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:376:25: error: Module has no attribute "half" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:377:26: error: Module has no attribute "float" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:378:27: error: Module has no attribute "double" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:379:30: error: Module has no attribute "complex32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:380:30: error: Module has no attribute "complex64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:381:31: error: Module has no attribute "complex128" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:382:26: error: Module has no attribute "qint8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:383:27: error: Module has no attribute "quint8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:384:27: error: Module has no attribute "qint32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:385:29: error: Module has no attribute "bfloat16" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:386:31: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:387:33: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:388:35: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/onnx/_internal/torchscript_exporter/_type_utils.py:389:35: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/onnx/_internal/exporter/_onnx_program.py:175:17: error: Item "int" of "Tensor | int | float | str | bool" has no attribute "view" [union-attr] +torch/onnx/_internal/exporter/_onnx_program.py:175:17: error: Item "float" of "Tensor | int | float | str | bool" has no attribute "view" [union-attr] +torch/onnx/_internal/exporter/_onnx_program.py:175:17: error: Item "str" of "Tensor | int | float | str | bool" has no attribute "view" [union-attr] +torch/onnx/_internal/exporter/_onnx_program.py:175:17: error: Item "bool" of "Tensor | int | float | str | bool" has no attribute "view" [union-attr] +torch/onnx/_internal/exporter/_capture_strategies.py:112:34: error: Variable "torch.jit._script.ScriptFunction" is not valid as a type [valid-type] +torch/onnx/_internal/exporter/_capture_strategies.py:112:34: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/onnx/_internal/exporter/_capture_strategies.py:142:47: error: Variable "torch.jit._script.ScriptFunction" is not valid as a type [valid-type] +torch/onnx/_internal/exporter/_capture_strategies.py:142:47: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/onnx/_internal/exporter/_capture_strategies.py:145:49: error: Variable "torch.jit._script.ScriptFunction" is not valid as a type [valid-type] +torch/onnx/_internal/exporter/_capture_strategies.py:145:49: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/onnx/_internal/exporter/_capture_strategies.py:149:40: error: Variable "torch.jit._script.ScriptFunction" is not valid as a type [valid-type] +torch/onnx/_internal/exporter/_capture_strategies.py:149:40: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/onnx/_internal/exporter/_torchlib/ops/nn.py:70:15: error: Module has no attribute "finfo" [attr-defined] +torch/onnx/_internal/exporter/_torchlib/ops/nn.py:70:27: error: Module has no attribute "float" [attr-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:41:12: error: Name "_C.Graph" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:42:12: error: Name "_C.Block" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:44:20: error: Name "_C.Node" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:45:28: error: Name "_C.IValue" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:46:15: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:47:24: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:48:21: error: Name "_C.Node" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:58:35: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:111:35: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:154:14: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:158:43: error: Name "_C.Node" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:201:27: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:262:24: error: Module has no attribute "Value" [attr-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:269:21: error: Name "_C.Graph" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:269:32: error: Name "_C.Block" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:277:6: error: Name "_C.Node" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:279:35: error: Module has no attribute "Graph" [attr-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:283:37: error: Module has no attribute "Block" [attr-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:305:9: error: Module has no attribute "_jit_pass_onnx_node_shape_type_inference" [attr-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:322:26: error: Name "_C.Node" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:337:19: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:338:33: error: Module has no attribute "TensorType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:341:34: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:341:47: error: Name "torch.device" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/jit_utils.py:344:31: error: Name "_C.TensorType" is not defined [name-defined] +torch/onnx/_internal/exporter/_dispatching.py:18:39: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/exporter/_dispatching.py:19:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:20:5: error: Module has no attribute "bool" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:21:5: error: Module has no attribute "complex128" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:22:5: error: Module has no attribute "complex64" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:23:5: error: Module has no attribute "float16" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:24:5: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:25:5: error: Module has no attribute "float64" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:26:5: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:27:5: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:28:5: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:29:5: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:30:5: error: Module has no attribute "float4_e2m1fn_x2" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:31:5: error: Module has no attribute "int16" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:32:5: error: Module has no attribute "int32" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:33:5: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:34:5: error: Module has no attribute "int8" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:35:5: error: Module has no attribute "uint8" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:36:5: error: Module has no attribute "uint16" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:37:5: error: Module has no attribute "uint32" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:38:5: error: Module has no attribute "uint64" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:42:50: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/exporter/_dispatching.py:66:26: error: Module has no attribute "dtype" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:68:27: error: Module has no attribute "device" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:68:41: error: Module has no attribute "memory_format" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:68:62: error: Module has no attribute "layout" [attr-defined] +torch/onnx/_internal/exporter/_dispatching.py:211:19: error: Name "torch.FunctionSchema" is not defined [name-defined] +torch/onnx/_internal/exporter/_dispatching.py:211:19: note: Error code "name-defined" not covered by "type: ignore" comment +torch/onnx/_internal/exporter/_dispatching.py:242:28: error: Name "torch.Argument" is not defined [name-defined] +torch/onnx/_internal/exporter/_dispatching.py:327:13: error: Module has no attribute "is_complex" [attr-defined] +torch/onnx/_internal/exporter/_analysis.py:28:34: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/exporter/_analysis.py:31:31: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/exporter/_analysis.py:54:24: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/exporter/_analysis.py:57:34: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/exporter/_analysis.py:58:31: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:149:62: error: Variable "torch.jit._script.ScriptFunction" is not valid as a type [valid-type] +torch/onnx/_internal/torchscript_exporter/utils.py:149:62: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/onnx/_internal/torchscript_exporter/utils.py:161:23: error: Item torch.jit.ScriptFunction? of Module | torch.jit.ScriptFunction? has no attribute "modules" [union-attr] +torch/onnx/_internal/torchscript_exporter/utils.py:192:29: error: Module has no attribute "_jit_is_onnx_log_enabled" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:194:9: error: Module has no attribute "_jit_set_onnx_log_enabled" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:199:13: error: Module has no attribute "_jit_set_onnx_log_enabled" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:224:55: error: Variable "torch.jit._script.ScriptFunction" is not valid as a type [valid-type] +torch/onnx/_internal/torchscript_exporter/utils.py:224:55: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/onnx/_internal/torchscript_exporter/utils.py:574:1: error: Missing return statement [return] +torch/onnx/_internal/torchscript_exporter/utils.py:578:32: error: Module has no attribute "ListType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:580:32: error: Module has no attribute "ListType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:580:44: error: Module has no attribute "OptionalType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:604:26: error: Module has no attribute "ListType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:611:12: error: Name "_C.Graph" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:624:5: error: Module has no attribute "_jit_pass_inline" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:627:5: error: Module has no attribute "_jit_pass_inline_fork_wait" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:628:5: error: Module has no attribute "_jit_pass_lint" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:630:9: error: Module has no attribute "_jit_pass_onnx_autograd_function_process" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:631:5: error: Module has no attribute "_jit_pass_lower_all_tuples" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:638:9: error: Module has no attribute "_jit_pass_constant_propagation" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:643:5: error: Module has no attribute "_jit_pass_dce" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:644:5: error: Module has no attribute "_jit_pass_lint" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:649:8: error: Module has no attribute "_jit_pass_cse" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:650:9: error: Module has no attribute "_jit_pass_onnx_lint" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:652:5: error: Module has no attribute "_jit_pass_canonicalize_graph_fuser_ops" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:653:5: error: Module has no attribute "_jit_pass_lint" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:654:5: error: Module has no attribute "_jit_pass_peephole" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:655:5: error: Module has no attribute "_jit_pass_fuse_addmm" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:656:5: error: Module has no attribute "_jit_pass_lint" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:658:5: error: Module has no attribute "_jit_pass_peephole" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:659:5: error: Module has no attribute "_jit_pass_lower_all_tuples" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:666:5: error: Module has no attribute "_jit_pass_onnx_remove_inplace_ops_for_onnx" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:667:5: error: Module has no attribute "_jit_pass_onnx_preprocess" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:670:5: error: Module has no attribute "_jit_pass_lint" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:673:5: error: Module has no attribute "_jit_pass_prepare_division_for_onnx" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:675:5: error: Module has no attribute "_jit_pass_onnx_remove_print" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:676:5: error: Module has no attribute "_jit_pass_onnx_preprocess_caffe2" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:680:5: error: Module has no attribute "_jit_pass_onnx_unpack_quantized_weights" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:682:5: error: Module has no attribute "_jit_pass_erase_number_types" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:686:9: error: Module has no attribute "_jit_pass_onnx_set_dynamic_input_shape" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:687:5: error: Module has no attribute "_jit_pass_onnx_lint" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:689:13: error: Module has no attribute "_jit_pass_onnx" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:690:5: error: Module has no attribute "_jit_pass_onnx_lint" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:691:5: error: Module has no attribute "_jit_pass_lint" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:693:5: error: Module has no attribute "_jit_pass_onnx_scalar_type_analysis" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:696:5: error: Module has no attribute "_jit_pass_lint" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:698:5: error: Module has no attribute "_jit_pass_onnx_peephole" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:701:5: error: Module has no attribute "_jit_pass_lint" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:708:5: error: Module has no attribute "_jit_pass_dce_allow_deleting_nodes_with_side_effects" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:709:5: error: Module has no attribute "_jit_pass_lint" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:710:13: error: Module has no attribute "_jit_pass_canonicalize" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:711:5: error: Module has no attribute "_jit_pass_lint" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:714:13: error: Module has no attribute "_jit_pass_onnx_graph_shape_type_inference" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:901:35: error: Module has no attribute "is_autocast_cache_enabled" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:902:5: error: Module has no attribute "set_autocast_cache_enabled" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:910:5: error: Module has no attribute "set_autocast_cache_enabled" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:960:30: error: Variable "torch.jit._script.ScriptFunction" is not valid as a type [valid-type] +torch/onnx/_internal/torchscript_exporter/utils.py:960:30: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/onnx/_internal/torchscript_exporter/utils.py:961:12: error: Name "_C.Graph" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:961:27: error: Name "_C.IValue" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:961:51: error: Name "_C.ScriptModule" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:972:13: error: Module has no attribute "_jit_pass_onnx_function_substitution" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:973:30: error: Module has no attribute "_freeze_module" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:974:22: error: Name "_C.ScriptModule" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:976:30: error: Module has no attribute "_jit_onnx_list_model_parameters" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:981:21: error: Module has no attribute "_propagate_and_assign_input_shapes" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:989:9: error: Module has no attribute "_jit_pass_onnx_function_substitution" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:991:17: error: Module has no attribute "_propagate_and_assign_input_shapes" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:997:5: error: Module has no attribute "_jit_pass_onnx_lint" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1006:5: error: Module has no attribute "_jit_pass_onnx_function_substitution" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1034:5: error: Module has no attribute "quint8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1034:19: error: Module has no attribute "uint8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1035:5: error: Module has no attribute "qint8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1035:18: error: Module has no attribute "int8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1036:5: error: Module has no attribute "qint32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1036:19: error: Module has no attribute "int32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1037:5: error: Module has no attribute "quint4x2" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1037:21: error: Module has no attribute "int8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1045:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1045:49: error: Module has no attribute "double" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1047:18: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1047:54: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1050:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1050:54: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1052:18: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1086:5: error: Name "_C.Graph" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1127:9: error: Module has no attribute "_jit_onnx_log" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1137:9: error: Module has no attribute "_jit_pass_onnx_assign_output_shape" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1159:13: error: Module has no attribute "_jit_pass_onnx_assign_output_shape" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1177:27: error: Module has no attribute "_jit_pass_onnx_eval_peephole" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1179:23: error: Module has no attribute "_jit_pass_onnx_constant_fold" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1182:9: error: Module has no attribute "_jit_pass_dce_allow_deleting_nodes_with_side_effects" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1186:13: error: Module has no attribute "_jit_pass_onnx_graph_shape_type_inference" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1194:19: error: Module has no attribute "_jit_pass_onnx_eliminate_unused_items" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1199:9: error: Module has no attribute "_jit_pass_onnx_cast_all_constant_to_floating" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1201:19: error: Module has no attribute "_jit_pass_filter_non_tensor_arguments" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1202:5: error: Module has no attribute "_jit_decay_packed_param_input_types" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1219:12: error: Name "_C.Graph" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1255:13: error: Module has no attribute "_jit_pass_inline" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1256:13: error: Module has no attribute "_jit_pass_onnx_remove_inplace_ops_for_onnx" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1257:13: error: Module has no attribute "_jit_pass_erase_number_types" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1258:13: error: Module has no attribute "_jit_pass_dce_allow_deleting_nodes_with_side_effects" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1296:29: error: Module has no attribute "_get_tracing_state" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1306:13: error: Module has no attribute "_jit_pass_onnx_track_scope_attributes" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1332:13: error: Module has no attribute "_jit_onnx_create_full_scope_name" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1364:5: error: Module has no attribute "_jit_pass_onnx_clear_scope_records" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1386:13: error: Module has no attribute "_jit_onnx_log" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1529:13: error: Module has no attribute "_jit_pass_dce_allow_deleting_nodes_with_side_effects" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1533:37: error: Module has no attribute "_jit_pass_onnx_function_extraction" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1540:31: error: Module has no attribute "_jit_pass_onnx_deduplicate_initializers" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1540:31: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/onnx/_internal/torchscript_exporter/utils.py:1545:13: error: Module has no attribute "_jit_pass_onnx_assign_scoped_names_for_node_and_value" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1591:17: error: Module has no attribute "_jit_onnx_log" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1670:22: error: Name "_C.Node" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1670:34: error: Name "_C.Block" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1674:32: error: Name "_C.Block" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1678:33: error: Name "_C.Block" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1678:50: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1703:35: error: Name "_C.Node" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1708:12: error: Module has no attribute "parse_schema" [attr-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1712:12: error: Name "_C.Graph" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1713:12: error: Name "_C.Block" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1714:11: error: Name "_C.Node" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1716:15: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1717:24: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1718:21: error: Name "_C.Node" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/utils.py:1720:6: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:218:21: error: Name "_C.Node" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:220:29: error: Module has no attribute "Node" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:225:30: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:231:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:237:26: error: Module has no attribute "Value" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:259:30: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:269:32: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:280:43: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:442:51: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:446:56: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:541:25: error: Module has no attribute "Value" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:554:65: error: Module has no attribute "Value" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:558:26: error: Module has no attribute "Value" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:568:19: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:569:33: error: Module has no attribute "TensorType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:573:29: error: Name "_C.JitType" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:573:44: error: Name "_C.ListType" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:574:29: error: Module has no attribute "ListType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:579:17: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:583:24: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:587:48: error: Module has no attribute "TensorType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:590:24: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:603:28: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:607:25: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:618:25: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:622:26: error: Name "_C.TensorType" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:626:26: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:630:26: error: Name "_C.TensorType" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:640:29: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:645:27: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:660:46: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:666:44: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:672:26: error: Module has no attribute "Value" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:684:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:690:26: error: Module has no attribute "Value" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:703:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:709:26: error: Module has no attribute "Value" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:747:21: error: Module has no attribute "promote_types" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:747:21: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:771:42: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:776:52: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:844:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:844:68: error: Module has no attribute "double" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:845:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:855:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:855:60: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:873:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:873:62: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:875:60: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:923:45: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:923:72: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:937:45: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:937:72: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:971:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:971:68: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:994:44: error: Module has no attribute "ones" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:994:69: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1011:33: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1011:69: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1024:40: error: Module has no attribute "ones" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1024:60: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1026:29: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1044:40: error: Module has no attribute "ones" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1044:60: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1046:40: error: Module has no attribute "ListType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1097:12: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1098:10: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1115:48: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1124:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1124:49: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1161:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1161:64: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1164:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1164:64: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1183:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1183:64: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1261:50: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1261:73: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1263:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1263:60: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1285:50: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1285:73: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1331:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1345:44: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1352:69: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1360:18: error: Module has no attribute "ones" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1360:18: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1360:65: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1369:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1372:52: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1383:5: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1410:17: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1437:59: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1480:42: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1505:24: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1516:22: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1534:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1534:76: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1541:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1541:65: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1590:48: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1590:73: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1597:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1597:63: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1622:15: error: Module has no attribute "OptionalType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1639:14: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1641:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1687:13: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1688:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1689:17: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1690:11: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1691:6: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1757:54: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1757:78: error: Module has no attribute "int" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1878:49: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1878:73: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1882:49: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1882:75: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1970:45: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1970:71: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1990:45: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1990:71: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2016:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2031:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2031:75: error: Module has no attribute "float" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2042:45: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2042:69: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2050:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2068:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2068:75: error: Module has no attribute "float" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2093:47: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2095:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2099:59: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2116:71: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2155:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2155:61: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2165:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2165:61: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2182:11: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2186:12: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2194:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2194:65: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2226:46: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2226:71: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2232:62: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2269:43: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2269:67: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2278:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2278:64: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2333:5: error: Module has no attribute "uint8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2334:5: error: Module has no attribute "int8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2335:5: error: Module has no attribute "short" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2336:5: error: Module has no attribute "int" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2337:5: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2338:5: error: Module has no attribute "half" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2339:5: error: Module has no attribute "float" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2340:5: error: Module has no attribute "double" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2341:5: error: Module has no attribute "complex32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2342:5: error: Module has no attribute "complex64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2343:5: error: Module has no attribute "complex128" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2344:5: error: Module has no attribute "bool" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2345:5: error: Module has no attribute "qint8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2346:5: error: Module has no attribute "quint8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2347:5: error: Module has no attribute "qint32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2348:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2355:13: error: Module has no attribute "uint8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2356:13: error: Module has no attribute "int8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2357:15: error: Module has no attribute "double" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2358:14: error: Module has no attribute "float" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2359:13: error: Module has no attribute "half" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2360:12: error: Module has no attribute "int" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2361:13: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2362:14: error: Module has no attribute "short" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2363:13: error: Module has no attribute "bool" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2364:21: error: Module has no attribute "complex64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2365:22: error: Module has no attribute "complex128" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2366:14: error: Module has no attribute "qint8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2367:15: error: Module has no attribute "quint8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2368:15: error: Module has no attribute "qint32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2369:17: error: Module has no attribute "bfloat16" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:54:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:55:11: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:80:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:81:11: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:94:43: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:47:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:49:13: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:50:11: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:64:24: error: Module has no attribute "ones" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:67:22: error: Module has no attribute "zeros" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:109:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:113:22: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:118:6: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:155:29: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:155:66: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:158:29: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:158:55: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:169:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:169:62: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:191:49: error: Module has no attribute "zeros" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:192:50: error: Module has no attribute "zeros" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:208:28: error: Module has no attribute "hstack" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:209:18: error: Module has no attribute "zeros" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:209:37: error: Module has no attribute "ones" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:213:28: error: Module has no attribute "ones" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:241:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:241:62: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:246:21: error: Module has no attribute "sqrt" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:246:32: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:99:43: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:129:11: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:131:12: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:132:10: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:158:54: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:158:76: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:163:47: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:163:72: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:87:9: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:144:12: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:145:10: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:146:12: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:147:16: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:150:12: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:194:47: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:195:50: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:222:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:222:68: error: Module has no attribute "float" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:229:39: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:230:6: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:243:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:243:59: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:245:33: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:245:76: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:253:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:253:68: error: Module has no attribute "float" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:265:39: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:266:6: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:285:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:285:66: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:286:48: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:286:73: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:291:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:296:43: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:297:46: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/exporter/_core.py:53:28: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/exporter/_core.py:54:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/onnx/_internal/exporter/_core.py:55:5: error: Module has no attribute "bool" [attr-defined] +torch/onnx/_internal/exporter/_core.py:56:5: error: Module has no attribute "complex128" [attr-defined] +torch/onnx/_internal/exporter/_core.py:57:5: error: Module has no attribute "complex64" [attr-defined] +torch/onnx/_internal/exporter/_core.py:58:5: error: Module has no attribute "float16" [attr-defined] +torch/onnx/_internal/exporter/_core.py:59:5: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/exporter/_core.py:60:5: error: Module has no attribute "float64" [attr-defined] +torch/onnx/_internal/exporter/_core.py:61:5: error: Module has no attribute "float8_e4m3fn" [attr-defined] +torch/onnx/_internal/exporter/_core.py:62:5: error: Module has no attribute "float8_e4m3fnuz" [attr-defined] +torch/onnx/_internal/exporter/_core.py:63:5: error: Module has no attribute "float8_e5m2" [attr-defined] +torch/onnx/_internal/exporter/_core.py:64:5: error: Module has no attribute "float8_e5m2fnuz" [attr-defined] +torch/onnx/_internal/exporter/_core.py:65:5: error: Module has no attribute "float4_e2m1fn_x2" [attr-defined] +torch/onnx/_internal/exporter/_core.py:66:5: error: Module has no attribute "int16" [attr-defined] +torch/onnx/_internal/exporter/_core.py:67:5: error: Module has no attribute "int32" [attr-defined] +torch/onnx/_internal/exporter/_core.py:68:5: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/exporter/_core.py:69:5: error: Module has no attribute "int8" [attr-defined] +torch/onnx/_internal/exporter/_core.py:70:5: error: Module has no attribute "uint8" [attr-defined] +torch/onnx/_internal/exporter/_core.py:71:5: error: Module has no attribute "uint16" [attr-defined] +torch/onnx/_internal/exporter/_core.py:72:5: error: Module has no attribute "uint32" [attr-defined] +torch/onnx/_internal/exporter/_core.py:73:5: error: Module has no attribute "uint64" [attr-defined] +torch/onnx/_internal/exporter/_core.py:107:38: error: Name "torch.dtype" is not defined [name-defined] +torch/onnx/_internal/exporter/_core.py:114:28: error: Module has no attribute "float4_e2m1fn_x2" [attr-defined] +torch/onnx/_internal/exporter/_core.py:139:31: error: Module has no attribute "uint16" [attr-defined] +torch/onnx/_internal/exporter/_core.py:148:34: error: Module has no attribute "uint8" [attr-defined] +torch/onnx/_internal/exporter/_core.py:245:30: error: Module has no attribute "float4_e2m1fn_x2" [attr-defined] +torch/onnx/_internal/exporter/_core.py:266:38: error: Module has no attribute "complex64" [attr-defined] +torch/onnx/_internal/exporter/_core.py:270:40: error: Module has no attribute "complex128" [attr-defined] +torch/onnx/_internal/exporter/_core.py:480:25: error: Module has no attribute "device" [attr-defined] +torch/onnx/_internal/exporter/_core.py:480:39: error: Module has no attribute "memory_format" [attr-defined] +torch/onnx/_internal/exporter/_core.py:480:60: error: Module has no attribute "layout" [attr-defined] +torch/onnx/_internal/exporter/_core.py:482:24: error: Module has no attribute "dtype" [attr-defined] +torch/onnx/_internal/exporter/_core.py:856:18: error: Name "torch.FunctionSchema" is not defined [name-defined] +torch/onnx/_internal/exporter/_core.py:876:34: error: Module has no attribute "device" [attr-defined] +torch/onnx/_internal/exporter/_core.py:878:34: error: Module has no attribute "dtype" [attr-defined] +torch/onnx/_internal/exporter/_core.py:892:36: error: Module has no attribute "device" [attr-defined] +torch/onnx/_internal/exporter/_core.py:894:36: error: Module has no attribute "dtype" [attr-defined] +torch/onnx/_internal/exporter/_core.py:1274:7: error: Variable "torch.jit._script.ScriptFunction" is not valid as a type [valid-type] +torch/onnx/_internal/exporter/_core.py:1274:7: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:322:15: error: Module has no attribute "OptionalType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:423:43: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:481:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:481:63: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:492:40: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:492:62: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:525:19: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:527:27: error: Module has no attribute "float" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:527:57: error: Module has no attribute "double" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:528:8: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:528:37: error: Module has no attribute "double" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:603:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:648:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:654:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:697:51: error: Module has no attribute "ones" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:743:43: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:744:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:853:41: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:859:60: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:863:54: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:873:41: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:879:60: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:883:54: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:894:28: error: Module has no attribute "double" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:897:16: error: Module has no attribute "equal" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:967:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1254:51: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1274:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1555:16: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1777:53: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1847:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1848:10: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1849:11: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1850:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2004:32: error: Module has no attribute "DeviceObjType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2005:23: error: Module has no attribute "DeviceObjType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2009:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2009:66: error: Module has no attribute "bool" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2019:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2021:27: error: Module has no attribute "bool" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2164:36: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2164:58: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2193:36: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2193:58: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2216:52: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2659:9: error: Module has no attribute "is_autocast_enabled" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2704:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2706:13: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2707:11: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2709:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2721:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2721:63: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2746:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2746:63: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2785:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2787:13: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2788:11: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2791:6: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2818:24: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2829:22: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2858:49: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2858:73: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2861:47: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2861:71: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2866:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2866:62: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2871:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2871:62: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2876:38: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2890:54: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3067:68: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3075:40: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3078:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3078:58: error: Module has no attribute "float" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3110:61: error: Module has no attribute "ones" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3116:63: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3454:56: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3485:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3485:62: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3489:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3515:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3545:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3545:62: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3549:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3575:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3597:60: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3606:46: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3606:66: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3636:65: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3642:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3696:27: error: Module has no attribute "NoneType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3699:25: error: Module has no attribute "NoneType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3742:27: error: Module has no attribute "NoneType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3745:25: error: Module has no attribute "NoneType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3763:47: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3801:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3810:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3823:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3832:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3842:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3935:47: error: Module has no attribute "ListType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3936:47: error: Module has no attribute "DeviceObjType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4038:47: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4040:15: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4040:37: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4099:38: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4101:38: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4108:38: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4129:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4138:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4144:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4155:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4174:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4200:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4206:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4213:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4224:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4243:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4463:42: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4664:56: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4694:39: error: Module has no attribute "TensorType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4749:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4749:45: error: Module has no attribute "float" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4814:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4814:45: error: Module has no attribute "float" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4840:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4840:45: error: Module has no attribute "float" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5014:54: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5014:76: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5040:12: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5041:10: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5051:12: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5052:10: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5086:43: error: Module has no attribute "zeros" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5096:63: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5102:41: error: Module has no attribute "BoolTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5103:37: error: Module has no attribute "BoolTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5110:45: error: Module has no attribute "BoolTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5111:41: error: Module has no attribute "BoolTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5123:39: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5145:39: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5146:52: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5278:48: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5278:70: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5392:46: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5428:46: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5475:11: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5476:10: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5479:12: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5486:44: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5499:48: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5510:11: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5514:12: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5523:11: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5524:10: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5527:12: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5568:51: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5576:51: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5652:44: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5660:45: error: Module has no attribute "ones" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5660:65: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5680:43: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5685:16: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5685:42: error: Module has no attribute "double" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5686:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5686:44: error: Module has no attribute "double" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5687:15: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5687:39: error: Module has no attribute "double" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5688:16: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5688:40: error: Module has no attribute "double" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5695:45: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5695:72: error: Module has no attribute "double" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5697:46: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5697:68: error: Module has no attribute "double" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5702:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5702:62: error: Module has no attribute "double" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5721:44: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5729:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5736:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5748:24: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5753:22: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5808:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5822:53: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5833:43: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5833:68: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5852:52: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5900:43: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5900:68: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5904:15: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5904:39: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5908:25: error: Module has no attribute "arange" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5920:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5921:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5926:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5929:58: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5937:53: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5967:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5967:64: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5968:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5968:63: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5991:18: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5993:22: error: Module has no attribute "float" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6001:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6001:65: error: Module has no attribute "float" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6006:56: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6006:78: error: Module has no attribute "int" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6265:55: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6273:54: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6344:60: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6358:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6369:11: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6403:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6425:32: error: Module has no attribute "DeviceObjType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6436:68: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6466:49: error: Module has no attribute "OptionalType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6469:9: error: Module has no attribute "_jit_pass_onnx_block" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6477:21: error: Module has no attribute "_jit_pass_fixup_onnx_controlflow_node" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6482:9: error: Module has no attribute "_jit_pass_onnx_node_shape_type_inference" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6489:66: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6532:15: error: Module has no attribute "_jit_pass_onnx_block" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6560:13: error: Module has no attribute "_jit_pass_onnx_block" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6568:25: error: Module has no attribute "_jit_pass_fixup_onnx_controlflow_node" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6573:13: error: Module has no attribute "_jit_pass_onnx_node_shape_type_inference" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6588:41: error: Module has no attribute "DeviceObjType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6595:9: error: Module has no attribute "ListType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6596:43: error: Module has no attribute "ListType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6598:33: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6600:41: error: Module has no attribute "ListType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6615:56: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6635:12: error: Module has no attribute "_jit_onnx_convert_pattern_from_subblock" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6642:62: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6653:69: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6671:44: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6672:36: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:102:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:102:63: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:109:40: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:109:62: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:130:11: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:137:6: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:143:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:143:62: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:161:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:161:62: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:214:11: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:224:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:230:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:230:62: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:252:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:253:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:254:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:261:45: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:261:69: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:263:52: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:263:76: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:315:16: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:406:16: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:495:12: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:496:33: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:497:35: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:498:33: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:499:34: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:505:31: error: Module has no attribute "Value" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:507:42: error: Module has no attribute "NoneType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:518:45: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:628:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:635:52: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:641:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:645:46: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:771:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:777:13: error: Module has no attribute "finfo" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:783:59: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:788:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:798:60: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:804:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:1181:15: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:1183:15: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:1184:20: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:1185:6: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/__init__.py:60:7: error: Variable "torch.jit._script.ScriptFunction" is not valid as a type [valid-type] +torch/onnx/__init__.py:60:7: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py:258:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py:432:67: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py:457:44: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py:468:51: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:68:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:69:18: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:70:18: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:123:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:125:13: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:126:11: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:128:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:175:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:175:61: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:183:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:183:61: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:193:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:193:67: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:217:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:217:65: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:225:11: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:226:10: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:229:12: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:266:11: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:270:12: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py:47:36: error: Module has no attribute "OptionalType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py:51:45: error: Module has no attribute "BoolTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py:81:32: error: Module has no attribute "OptionalType" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:90:39: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:91:12: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:97:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:98:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:98:60: error: Module has no attribute "bool" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:215:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:274:12: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:275:10: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:285:12: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:286:10: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:319:46: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:320:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:321:43: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:326:54: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:329:53: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:338:51: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:354:52: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:428:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:428:59: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:437:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:437:59: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:451:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:451:59: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:460:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:460:59: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:100:47: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:106:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:110:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:189:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:193:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:320:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:420:43: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:420:67: error: Module has no attribute "int" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:444:57: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:448:14: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:449:16: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:450:36: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:462:51: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:591:54: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:594:48: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:621:46: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:621:70: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:622:45: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:622:71: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:635:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:635:66: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:656:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:656:60: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:683:60: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:689:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:689:66: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:692:52: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:692:74: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:702:51: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:702:75: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:711:47: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:715:47: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:751:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:752:10: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:753:11: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:754:12: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:787:17: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:791:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:796:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:801:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:816:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:820:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:844:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:859:56: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:892:49: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:894:46: error: Module has no attribute "ones" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:894:66: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:996:36: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:996:58: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1030:36: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1030:58: error: Module has no attribute "float32" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1054:50: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1059:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1065:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1067:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1071:19: error: Module has no attribute "arange" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1080:50: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1091:36: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1096:57: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1097:59: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1099:54: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1106:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1117:55: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1118:55: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1258:62: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1260:16: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1282:49: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1282:73: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1318:49: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1330:61: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1338:47: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1344:49: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1357:61: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1369:47: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1377:49: error: Name "torch._C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1391:61: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1410:47: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1423:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1423:63: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1425:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1425:62: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1426:43: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1426:72: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1428:29: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1428:62: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1434:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1434:70: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1442:52: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1447:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1447:56: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1452:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1452:64: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1474:52: error: Name "_C.Value" is not defined [name-defined] +torch/onnx/_internal/exporter/_compat.py:43:7: error: Variable "torch.jit._script.ScriptFunction" is not valid as a type [valid-type] +torch/onnx/_internal/exporter/_compat.py:43:7: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:78:46: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:78:70: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:79:45: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:79:71: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:92:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:92:66: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:115:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:144:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:144:61: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:146:40: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:146:62: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:152:46: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:152:70: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:159:46: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:159:70: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:189:33: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:189:71: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:199:62: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:206:46: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:206:70: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:242:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:242:61: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:285:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:285:60: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:290:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:294:55: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:315:52: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:351:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:351:62: error: Module has no attribute "uint8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:389:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:389:62: error: Module has no attribute "uint8" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:471:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:471:74: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:477:47: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:477:71: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:479:50: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:479:74: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:484:46: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:484:70: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:489:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:489:58: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:492:29: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:492:72: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:510:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:510:60: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:527:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:527:66: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:537:43: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:548:59: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:566:56: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:614:47: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:616:15: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:616:37: error: Module has no attribute "int64" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:646:54: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:649:63: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:664:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:664:41: error: Module has no attribute "long" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:682:47: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:704:45: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:706:45: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:711:57: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:737:47: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:740:47: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:768:42: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:773:38: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:780:38: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:795:34: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:800:34: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:804:61: error: Module has no attribute "LongTensor" [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:826:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:826:60: error: Module has no attribute "int64" [attr-defined] +torch/_streambase.py:11:19: error: Name "torch.Stream" is not defined [name-defined] +torch/_streambase.py:19:18: error: Name "torch.Event" is not defined [name-defined] +torch/_python_dispatcher.py:75:20: error: Module has no attribute "_dispatch_library" [attr-defined] +torch/utils/mobile_optimizer.py:6:1: error: Module "torch._C" has no attribute "_MobileOptimizerType" [attr-defined] +torch/utils/mobile_optimizer.py:59:32: error: Module has no attribute "_jit_pass_optimize_for_mobile" [attr-defined] +torch/utils/mobile_optimizer.py:64:32: error: Module has no attribute "_jit_pass_vulkan_optimize_for_mobile" [attr-defined] +torch/utils/mobile_optimizer.py:69:32: error: Module has no attribute "_jit_pass_metal_optimize_for_mobile" [attr-defined] +torch/utils/bundled_inputs.py:7:1: error: Module "torch._C" has no attribute "TupleType" [attr-defined] +torch/utils/bundled_inputs.py:7:1: error: Module "torch._C" has no attribute "ListType" [attr-defined] +torch/utils/bundled_inputs.py:401:21: error: Module has no attribute "contiguous_format" [attr-defined] +torch/utils/bundled_inputs.py:401:46: error: Module has no attribute "channels_last" [attr-defined] +torch/utils/bundled_inputs.py:466:12: error: Module has no attribute "zeros" [attr-defined] +torch/utils/_pallas.py:10:1: error: Cannot find implementation or library stub for module named "jax" [import-not-found] +torch/utils/_pallas.py:23:1: error: Cannot find implementation or library stub for module named "jax.experimental" [import-not-found] +torch/utils/data/datapipes/utils/decoder.py:224:28: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/utils/data/datapipes/utils/decoder.py:227:28: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/utils/data/datapipes/map/combinatorics.py:93:30: error: Module has no attribute "empty" [attr-defined] +torch/utils/data/datapipes/map/combinatorics.py:93:52: error: Module has no attribute "int64" [attr-defined] +torch/utils/data/datapipes/iter/combinatorics.py:159:34: error: Module has no attribute "empty" [attr-defined] +torch/utils/data/datapipes/iter/combinatorics.py:159:56: error: Module has no attribute "int64" [attr-defined] +torch/utils/benchmark/utils/fuzzer.py:170:17: error: Module has no attribute "bool" [attr-defined] +torch/utils/benchmark/utils/fuzzer.py:173:20: error: Module has no attribute "finfo" [attr-defined] +torch/utils/benchmark/utils/fuzzer.py:174:16: error: Module has no attribute "iinfo" [attr-defined] +torch/utils/benchmark/utils/fuzzer.py:199:15: error: Module has no attribute "float32" [attr-defined] +torch/utils/benchmark/utils/fuzzer.py:271:20: error: Module has no attribute "rand" [attr-defined] +torch/utils/benchmark/utils/fuzzer.py:273:20: error: Module has no attribute "randint" [attr-defined] +torch/utils/benchmark/utils/common.py:147:27: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/utils/benchmark/utils/common.py:149:15: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/utils/benchmark/utils/common.py:150:18: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/utils/benchmark/utils/common.py:154:23: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/utils/benchmark/utils/common.py:155:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/utils/benchmark/utils/common.py:166:29: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/utils/benchmark/utils/common.py:166:68: error: Module has no attribute "float64" [attr-defined] +torch/utils/benchmark/utils/common.py:263:56: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/utils/benchmark/utils/common.py:281:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/utils/benchmark/utils/common.py:283:18: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/utils/benchmark/utils/common.py:292:25: error: Module has no attribute "get_num_threads" [attr-defined] +torch/utils/benchmark/utils/common.py:294:9: error: Module has no attribute "set_num_threads" [attr-defined] +torch/utils/benchmark/utils/common.py:297:9: error: Module has no attribute "set_num_threads" [attr-defined] +torch/utils/_strobelight/examples/cli_function_profiler_example.py:22:20: error: Module has no attribute "rand" [attr-defined] +torch/quantization/_quantized_conversions.py:11:28: error: Module has no attribute "int8" [attr-defined] +torch/quantization/_quantized_conversions.py:20:28: error: Module has no attribute "int8" [attr-defined] +torch/quantization/_quantized_conversions.py:21:12: error: Module has no attribute "stack" [attr-defined] +torch/quantization/_quantized_conversions.py:33:28: error: Module has no attribute "int8" [attr-defined] +torch/quantization/_quantized_conversions.py:34:22: error: Module has no attribute "int8" [attr-defined] +torch/quantization/_quantized_conversions.py:34:46: error: Module has no attribute "quint4x2" [attr-defined] +torch/quantization/_quantized_conversions.py:41:22: error: Module has no attribute "int8" [attr-defined] +torch/quantization/_quantized_conversions.py:43:24: error: Module has no attribute "quint4x2" [attr-defined] +torch/quantization/_quantized_conversions.py:44:70: error: Module has no attribute "int8" [attr-defined] +torch/quantization/_quantized_conversions.py:49:37: error: Module has no attribute "quint4x2" [attr-defined] +torch/quantization/_quantized_conversions.py:54:18: error: Module has no attribute "quint4x2" [attr-defined] +torch/quantization/_quantized_conversions.py:56:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/quantization/_quantized_conversions.py:60:16: error: Module has no attribute "arange" [attr-defined] +torch/quantization/_quantized_conversions.py:66:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/quantization/_quantized_conversions.py:70:16: error: Module has no attribute "arange" [attr-defined] +torch/quantization/_quantized_conversions.py:78:29: error: Module has no attribute "quint4x2" [attr-defined] +torch/quantization/_quantized_conversions.py:82:10: error: Module has no attribute "arange" [attr-defined] +torch/quantization/_quantized_conversions.py:88:10: error: Module has no attribute "arange" [attr-defined] +torch/quantization/_quantized_conversions.py:95:10: error: Module has no attribute "arange" [attr-defined] +torch/quantization/_quantized_conversions.py:101:12: error: Module has no attribute "arange" [attr-defined] +torch/quantization/_quantized_conversions.py:105:30: error: Module has no attribute "int32" [attr-defined] +torch/quantization/_quantized_conversions.py:106:12: error: Module has no attribute "zeros_like" [attr-defined] +torch/quantization/_quantized_conversions.py:113:12: error: Module has no attribute "empty_like" [attr-defined] +torch/quantization/_quantized_conversions.py:114:18: error: Module has no attribute "int8" [attr-defined] +torch/quantization/_quantized_conversions.py:115:23: error: Module has no attribute "int" [attr-defined] +torch/quantization/_quantized_conversions.py:120:20: error: Module has no attribute "quint4x2" [attr-defined] +torch/quantization/_quantized_conversions.py:130:18: error: Module has no attribute "quint4x2" [attr-defined] +torch/quantization/_quantized_conversions.py:134:41: error: Module has no attribute "uint8" [attr-defined] +torch/onnx/operators.py:33:19: error: Module has no attribute "_shape_as_tensor" [attr-defined] +torch/onnx/operators.py:47:29: error: Module has no attribute "_reshape_from_tensor" [attr-defined] +torch/onnx/_internal/exporter/_testing.py:78:42: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/onnx/_internal/exporter/_testing.py:79:14: error: Module has no attribute "is_complex" [attr-defined] +torch/onnx/_internal/exporter/_testing.py:80:42: error: Module has no attribute "view_as_real" [attr-defined] +torch/nn/utils/prune.py:171:28: error: Module has no attribute "ones_like" [attr-defined] +torch/nn/utils/prune.py:179:38: error: Module has no attribute "contiguous_format" [attr-defined] +torch/nn/utils/prune.py:231:70: error: Module has no attribute "ones_like" [attr-defined] +torch/nn/utils/prune.py:468:49: error: Module has no attribute "contiguous_format" [attr-defined] +torch/nn/utils/prune.py:471:20: error: Module has no attribute "rand_like" [attr-defined] +torch/nn/utils/prune.py:472:20: error: Module has no attribute "topk" [attr-defined] +torch/nn/utils/prune.py:525:49: error: Module has no attribute "contiguous_format" [attr-defined] +torch/nn/utils/prune.py:530:20: error: Module has no attribute "topk" [attr-defined] +torch/nn/utils/prune.py:530:31: error: Module has no attribute "abs" [attr-defined] +torch/nn/utils/prune.py:625:20: error: Module has no attribute "rand" [attr-defined] +torch/nn/utils/prune.py:628:25: error: Module has no attribute "kthvalue" [attr-defined] +torch/nn/utils/prune.py:631:20: error: Module has no attribute "zeros_like" [attr-defined] +torch/nn/utils/prune.py:735:16: error: Module has no attribute "topk" [attr-defined] +torch/nn/utils/prune.py:743:20: error: Module has no attribute "zeros_like" [attr-defined] +torch/nn/utils/prune.py:1115:13: error: List comprehension has incompatible type List[Any | None]; expected List[Tensor] [misc] +torch/nn/utils/prune.py:1115:45: error: Module has no attribute "ones_like" [attr-defined] +torch/nn/attention/varlen.py:88:18: error: Module has no attribute "zeros" [attr-defined] +torch/nn/attention/varlen.py:89:21: error: Module has no attribute "uint64" [attr-defined] +torch/nn/attention/varlen.py:113:14: error: Module has no attribute "empty_like" [attr-defined] +torch/nn/attention/varlen.py:118:17: error: Module has no attribute "empty" [attr-defined] +torch/nn/attention/varlen.py:119:37: error: Module has no attribute "float" [attr-defined] +torch/nn/attention/varlen.py:122:17: error: Module has no attribute "empty" [attr-defined] +torch/nn/attention/varlen.py:122:41: error: Module has no attribute "uint64" [attr-defined] +torch/nn/attention/varlen.py:232:14: error: Module has no attribute "empty" [attr-defined] +torch/nn/attention/varlen.py:293:18: error: Module has no attribute "empty_like" [attr-defined] +torch/nn/attention/varlen.py:294:16: error: Module has no attribute "empty_like" [attr-defined] +torch/nn/attention/varlen.py:295:18: error: Module has no attribute "empty_like" [attr-defined] +torch/nn/attention/bias.py:140:35: error: Name "torch.device" is not defined [name-defined] +torch/nn/attention/bias.py:142:16: error: Module has no attribute "tril" [attr-defined] +torch/nn/attention/bias.py:143:13: error: Module has no attribute "ones" [attr-defined] +torch/nn/attention/bias.py:143:78: error: Module has no attribute "bool" [attr-defined] +torch/nn/attention/bias.py:146:36: error: Name "torch.device" is not defined [name-defined] +torch/nn/attention/bias.py:149:16: error: Module has no attribute "tril" [attr-defined] +torch/nn/attention/bias.py:150:13: error: Module has no attribute "ones" [attr-defined] +torch/nn/attention/bias.py:151:71: error: Module has no attribute "bool" [attr-defined] +torch/nn/attention/bias.py:157:36: error: Name "torch.device" is not defined [name-defined] +torch/nn/attention/bias.py:171:22: error: Module has no attribute "device" [attr-defined] +torch/nn/attention/bias.py:239:60: error: Argument 2 to "pad" has incompatible type "tuple[int, Any]"; expected "list[int]" [arg-type] +torch/nn/attention/bias.py:240:56: error: Argument 2 to "pad" has incompatible type "tuple[int, Any]"; expected "list[int]" [arg-type] +torch/nn/attention/bias.py:241:60: error: Argument 2 to "pad" has incompatible type "tuple[int, Any]"; expected "list[int]" [arg-type] +torch/nn/attention/experimental/_paged_attention.py:47:28: error: Module has no attribute "ones" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:48:51: error: Module has no attribute "int64" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:52:25: error: Module has no attribute "zeros" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:52:59: error: Module has no attribute "int64" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:58:37: error: Module has no attribute "ones" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:59:46: error: Module has no attribute "int64" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:88:27: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:101:64: error: Module has no attribute "arange" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:179:30: error: Module has no attribute "gather" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:180:65: error: Module has no attribute "int64" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:181:14: error: Module has no attribute "int32" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:230:25: error: Module has no attribute "arange" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:235:26: error: Module has no attribute "zeros" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:236:47: error: Module has no attribute "int32" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:239:13: error: Module has no attribute "gather" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:240:69: error: Module has no attribute "int64" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:243:17: error: Module has no attribute "int32" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:250:35: error: Module has no attribute "zeros" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:251:51: error: Module has no attribute "int32" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:254:17: error: Module has no attribute "gather" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:257:63: error: Module has no attribute "int64" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:260:21: error: Module has no attribute "int32" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:309:20: error: Module has no attribute "where" [attr-defined] +torch/nn/attention/experimental/_paged_attention.py:348:20: error: Module has no attribute "where" [attr-defined] +torch/jit/unsupported_tensor_ops.py:14:14: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/jit/supported_ops.py:66:38: error: Module has no attribute "TensorType" [attr-defined] +torch/jit/supported_ops.py:74:23: error: Module has no attribute "_jit_get_schemas_for_operator" [attr-defined] +torch/jit/supported_ops.py:105:31: error: ScriptFunction? has no attribute "schema" [attr-defined] +torch/jit/supported_ops.py:117:27: error: Module has no attribute "_jit_get_schemas_for_operator" [attr-defined] +torch/jit/supported_ops.py:166:23: error: Module has no attribute "_jit_get_schemas_for_operator" [attr-defined] +torch/jit/supported_ops.py:184:23: error: Module has no attribute "_jit_get_schemas_for_operator" [attr-defined] +torch/jit/supported_ops.py:274:19: error: Module has no attribute "_jit_get_schemas_for_operator" [attr-defined] +torch/jit/quantized.py:59:37: error: Module has no attribute "int8" [attr-defined] +torch/jit/quantized.py:89:43: error: Module has no attribute "int8" [attr-defined] +torch/jit/quantized.py:96:40: error: Module has no attribute "int8" [attr-defined] +torch/jit/_shape_functions.py:1190:12: error: Module has no attribute "ScriptFunction" [attr-defined] +torch/jit/_shape_functions.py:1191:40: error: Variable "torch.jit._shape_functions.ScriptFn" is not valid as a type [valid-type] +torch/jit/_shape_functions.py:1191:40: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/jit/_shape_functions.py:1192:48: error: Variable "torch.jit._shape_functions.ScriptFn" is not valid as a type [valid-type] +torch/jit/_shape_functions.py:1192:48: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/jit/_shape_functions.py:1193:33: error: Variable "torch.jit._shape_functions.ScriptFn" is not valid as a type [valid-type] +torch/jit/_shape_functions.py:1193:33: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#variables-vs-type-aliases +torch/jit/_shape_functions.py:1200:9: error: Module has no attribute "_jit_pass_inline" [attr-defined] +torch/jit/_shape_functions.py:1203:13: error: Module has no attribute "_jit_pass_peephole" [attr-defined] +torch/jit/_shape_functions.py:1204:13: error: Module has no attribute "_jit_pass_constant_propagation" [attr-defined] +torch/jit/_logging.py:6:14: error: Module has no attribute "_logging_set_logger" [attr-defined] +torch/jit/_logging.py:7:17: error: Module has no attribute "LockingLogger" [attr-defined] +torch/jit/_logging.py:8:19: error: Module has no attribute "AggregationType" [attr-defined] +torch/jit/_logging.py:9:14: error: Module has no attribute "NoopLogger" [attr-defined] +torch/jit/_decompositions.py:87:9: error: Module has no attribute "_jit_pass_inline" [attr-defined] +torch/jit/_decompositions.py:87:35: error: ScriptFunction? has no attribute "graph" [attr-defined] +torch/jit/_decompositions.py:90:13: error: Module has no attribute "_jit_pass_peephole" [attr-defined] +torch/jit/_decompositions.py:90:41: error: ScriptFunction? has no attribute "graph" [attr-defined] +torch/jit/_decompositions.py:91:13: error: Module has no attribute "_jit_pass_constant_propagation" [attr-defined] +torch/jit/_decompositions.py:91:53: error: ScriptFunction? has no attribute "graph" [attr-defined] +torch/jit/mobile/__init__.py:47:22: error: Module has no attribute "_load_for_lite_interpreter" [attr-defined] +torch/jit/mobile/__init__.py:49:22: error: Module has no attribute "_load_for_lite_interpreter_from_buffer" [attr-defined] +torch/jit/mobile/__init__.py:78:12: error: Module has no attribute "_export_operator_list" [attr-defined] +torch/jit/mobile/__init__.py:108:16: error: Module has no attribute "_get_model_bytecode_version" [attr-defined] +torch/jit/mobile/__init__.py:111:16: error: Module has no attribute "_get_model_bytecode_version_from_buffer" [attr-defined] +torch/jit/mobile/__init__.py:141:16: error: Module has no attribute "_get_mobile_model_contained_types" [attr-defined] +torch/jit/mobile/__init__.py:144:16: error: Module has no attribute "_get_mobile_model_contained_types_from_buffer" [attr-defined] +torch/jit/mobile/__init__.py:167:16: error: Module has no attribute "_backport_for_mobile" [attr-defined] +torch/jit/mobile/__init__.py:173:16: error: Module has no attribute "_backport_for_mobile_from_buffer" [attr-defined] +torch/jit/mobile/__init__.py:196:16: error: Module has no attribute "_backport_for_mobile_to_buffer" [attr-defined] +torch/jit/mobile/__init__.py:198:16: error: Module has no attribute "_backport_for_mobile_from_buffer_to_buffer" [attr-defined] +torch/jit/mobile/__init__.py:241:16: error: Module has no attribute "_get_model_ops_and_info" [attr-defined] +torch/jit/mobile/__init__.py:244:16: error: Module has no attribute "_get_model_ops_and_info" [attr-defined] +torch/jit/_passes/_property_propagation.py:11:1: error: Module "torch" has no attribute "TensorType" [attr-defined] +torch/jit/_passes/_property_propagation.py:12:1: error: Module "torch._C" has no attribute "Graph" [attr-defined] +torch/jit/_passes/_property_propagation.py:26:32: error: Module has no attribute "ClassType" [attr-defined] +torch/fx/experimental/schema_type_annotation.py:110:38: error: Module has no attribute "_jit_try_infer_type" [attr-defined] +torch/fx/experimental/meta_tracer.py:13:12: error: Module has no attribute "empty" [attr-defined] +torch/fx/experimental/meta_tracer.py:47:5: error: Module has no attribute "relu" [attr-defined] +torch/fx/experimental/meta_tracer.py:50:5: error: Module has no attribute "where" [attr-defined] +torch/fx/experimental/meta_tracer.py:51:5: error: Module has no attribute "abs" [attr-defined] +torch/fx/experimental/merge_matmul.py:111:61: error: Module has no attribute "matmul" [attr-defined] +torch/fx/experimental/merge_matmul.py:143:47: error: Module has no attribute "cat" [attr-defined] +torch/fx/experimental/merge_matmul.py:149:13: error: Module has no attribute "matmul" [attr-defined] +torch/fx/experimental/graph_gradual_typechecker.py:164:26: error: Module has no attribute "add" [attr-defined] +torch/fx/experimental/graph_gradual_typechecker.py:247:26: error: Module has no attribute "transpose" [attr-defined] +torch/fx/experimental/graph_gradual_typechecker.py:253:20: error: Module has no attribute "transpose" [attr-defined] +torch/fx/experimental/graph_gradual_typechecker.py:282:26: error: Module has no attribute "reshape" [attr-defined] +torch/fx/experimental/graph_gradual_typechecker.py:600:26: error: Module has no attribute "flatten" [attr-defined] +torch/fx/experimental/graph_gradual_typechecker.py:770:27: error: Module has no attribute "add" [attr-defined] +torch/fx/experimental/graph_gradual_typechecker.py:812:27: error: Module has no attribute "flatten" [attr-defined] +torch/export/_safeguard.py:21:13: error: Module has no attribute "_set_grad_enabled" [attr-defined] +torch/export/_safeguard.py:25:25: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/export/_safeguard.py:29:20: error: Module has no attribute "_get_dispatch_mode" [attr-defined] +torch/export/_safeguard.py:29:48: error: Module has no attribute "_TorchDispatchModeKey" [attr-defined] +torch/export/passes/__init__.py:12:42: error: Name "torch.device" is not defined [name-defined] +torch/export/passes/__init__.py:29:22: error: Name "torch.device" is not defined [name-defined] +torch/export/passes/__init__.py:30:25: error: Name "torch.device" is not defined [name-defined] +torch/distributed/collective_utils.py:291:16: error: Name "torch.Generator" is not defined [name-defined] +torch/distributed/collective_utils.py:294:19: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/collective_utils.py:297:25: error: Module has no attribute "uint64" [attr-defined] +torch/distributed/collective_utils.py:307:16: error: Name "torch.Generator" is not defined [name-defined] +torch/distributed/collective_utils.py:311:26: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/collective_utils.py:318:21: error: Module has no attribute "hash_tensor" [attr-defined] +torch/distributed/collective_utils.py:323:16: error: Name "torch.Generator" is not defined [name-defined] +torch/distributed/collective_utils.py:349:16: error: Name "torch.Generator" is not defined [name-defined] +torch/distributed/_serialization.py:63:31: error: Module has no attribute "frombuffer" [attr-defined] +torch/distributed/_serialization.py:65:31: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/_serialization.py:84:16: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/_serialization.py:84:57: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/_dist2.py:45:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_dist2.py:69:13: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_dist2.py:86:9: error: Module has no attribute "device" [attr-defined] +torch/distributed/_dist2.py:90:13: error: Module has no attribute "device" [attr-defined] +torch/distributed/_dist2.py:100:13: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_dist2.py:130:24: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_dist2.py:151:14: error: Module has no attribute "device" [attr-defined] +torch/distributed/tensor/_shards_wrapper.py:50:17: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/_shards_wrapper.py:55:22: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/_shards_wrapper.py:58:33: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/_shards_wrapper.py:76:25: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/_shards_wrapper.py:79:25: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/_shards_wrapper.py:87:13: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/_shards_wrapper.py:124:22: error: Module has no attribute "cat" [attr-defined] +torch/distributed/tensor/_shards_wrapper.py:208:63: error: Module has no attribute "preserve_format" [attr-defined] +torch/distributed/tensor/_shards_wrapper.py:222:14: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/tensor/_shards_wrapper.py:227:25: error: Name "torch._C.device" is not defined [name-defined] +torch/distributed/tensor/_shards_wrapper.py:227:25: note: Error code "name-defined" not covered by "type: ignore" comment +torch/distributed/tensor/_shards_wrapper.py:229:69: error: Module has no attribute "device" [attr-defined] +torch/distributed/tensor/_shards_wrapper.py:252:35: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/_shards_wrapper.py:260:37: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/_shards_wrapper.py:339:20: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/_shards_wrapper.py:340:20: error: Module has no attribute "empty" [attr-defined] +torch/distributed/tensor/parallel/loss.py:130:27: error: Module has no attribute "half" [attr-defined] +torch/distributed/tensor/parallel/loss.py:134:53: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/tensor/parallel/loss.py:138:17: error: Module has no attribute "amax" [attr-defined] +torch/distributed/tensor/parallel/loss.py:143:22: error: Module has no attribute "sum" [attr-defined] +torch/distributed/tensor/parallel/loss.py:143:32: error: Module has no attribute "exp" [attr-defined] +torch/distributed/tensor/parallel/loss.py:147:25: error: Module has no attribute "log" [attr-defined] +torch/distributed/tensor/parallel/loss.py:195:24: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/tensor/parallel/loss.py:208:18: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/parallel/loss.py:234:19: error: Module has no attribute "where" [attr-defined] +torch/distributed/tensor/parallel/loss.py:243:22: error: Module has no attribute "gather" [attr-defined] +torch/distributed/tensor/parallel/loss.py:248:14: error: Module has no attribute "where" [attr-defined] +torch/distributed/tensor/parallel/loss.py:259:16: error: Module has no attribute "gather" [attr-defined] +torch/distributed/tensor/parallel/loss.py:260:16: error: Module has no attribute "where" [attr-defined] +torch/distributed/tensor/parallel/loss.py:263:24: error: "bool" has no attribute "sum" [attr-defined] +torch/distributed/tensor/parallel/loss.py:363:18: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/parallel/loss.py:373:19: error: Module has no attribute "where" [attr-defined] +torch/distributed/tensor/parallel/loss.py:374:18: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/tensor/parallel/loss.py:384:17: error: Module has no attribute "arange" [attr-defined] +torch/distributed/tensor/parallel/loss.py:412:20: error: Module has no attribute "gather" [attr-defined] +torch/distributed/tensor/parallel/loss.py:415:19: error: Module has no attribute "where" [attr-defined] +torch/distributed/tensor/parallel/loss.py:421:26: error: Module has no attribute "exp" [attr-defined] +torch/distributed/tensor/experimental/_register_sharding.py:116:41: error: Module has no attribute "IntType" [attr-defined] +torch/distributed/tensor/experimental/_register_sharding.py:117:42: error: Module has no attribute "OptionalType" [attr-defined] +torch/distributed/tensor/experimental/_register_sharding.py:118:63: error: Module has no attribute "IntType" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py:31:13: error: Module has no attribute "empty" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py:32:13: error: Module has no attribute "empty" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py:64:18: error: Module has no attribute "empty" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py:67:18: error: Module has no attribute "empty" [attr-defined] +torch/distributed/tensor/examples/flex_attention_cp.py:63:13: error: Module has no attribute "float32" [attr-defined] +torch/distributed/tensor/examples/flex_attention_cp.py:70:9: error: Module has no attribute "rand" [attr-defined] +torch/distributed/tensor/examples/flex_attention_cp.py:113:19: error: Argument 3 has incompatible type "int"; expected "Tensor" [arg-type] +torch/distributed/tensor/examples/flex_attention_cp.py:149:16: error: Module has no attribute "randn" [attr-defined] +torch/distributed/tensor/examples/convnext_example.py:31:64: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/tensor/examples/convnext_example.py:33:36: error: Module has no attribute "ones" [attr-defined] +torch/distributed/tensor/examples/convnext_example.py:34:34: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/tensor/examples/convnext_example.py:37:32: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/tensor/examples/convnext_example.py:44:23: error: Module has no attribute "sqrt" [attr-defined] +torch/distributed/tensor/examples/convnext_example.py:55:58: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/tensor/examples/convnext_example.py:65:42: error: Module has no attribute "ones" [attr-defined] +torch/distributed/tensor/examples/convnext_example.py:92:65: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/tensor/examples/convnext_example.py:101:48: error: Module has no attribute "contiguous_format" [attr-defined] +torch/distributed/tensor/examples/convnext_example.py:140:39: error: Module has no attribute "linspace" [attr-defined] +torch/distributed/tensor/examples/convnext_example.py:204:9: error: Module has no attribute "randn" [attr-defined] +torch/distributed/tensor/examples/convnext_example.py:206:9: error: Module has no attribute "empty" [attr-defined] +torch/distributed/tensor/examples/convnext_example.py:206:44: error: Module has no attribute "long" [attr-defined] +torch/distributed/rpc/rref_proxy.py:27:24: error: Module has no attribute "ScriptModule" [attr-defined] +torch/distributed/pipelining/microbatch.py:52:28: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/pipelining/microbatch.py:143:28: error: Module has no attribute "tensor_split" [attr-defined] +torch/distributed/pipelining/microbatch.py:146:25: error: Module has no attribute "tensor_split" [attr-defined] +torch/distributed/pipelining/microbatch.py:148:9: error: Module has no attribute "tensor_split" [attr-defined] +torch/distributed/pipelining/microbatch.py:153:9: error: Module has no attribute "tensor_split" [attr-defined] +torch/distributed/pipelining/microbatch.py:164:28: error: Module has no attribute "full_like" [attr-defined] +torch/distributed/pipelining/microbatch.py:203:21: error: Module has no attribute "tensor_split" [attr-defined] +torch/distributed/pipelining/microbatch.py:211:19: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/pipelining/microbatch.py:503:31: error: Module has no attribute "tensor_split" [attr-defined] +torch/distributed/pipelining/microbatch.py:504:21: error: Module has no attribute "empty" [attr-defined] +torch/distributed/pipelining/microbatch.py:527:35: error: Module has no attribute "cat" [attr-defined] +torch/distributed/fsdp/sharded_grad_scaler.py:27:9: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/distributed/fsdp/sharded_grad_scaler.py:43:40: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/sharded_grad_scaler.py:184:15: error: Name "torch.device" is not defined [name-defined] +torch/distributed/fsdp/sharded_grad_scaler.py:200:65: error: Module has no attribute "float16" [attr-defined] +torch/distributed/fsdp/sharded_grad_scaler.py:207:48: error: Module has no attribute "float16" [attr-defined] +torch/distributed/fsdp/sharded_grad_scaler.py:209:63: error: Module has no attribute "float32" [attr-defined] +torch/distributed/fsdp/sharded_grad_scaler.py:210:63: error: Module has no attribute "float16" [attr-defined] +torch/distributed/fsdp/sharded_grad_scaler.py:221:21: error: Module has no attribute "_amp_foreach_non_finite_check_and_unscale_" [attr-defined] +torch/distributed/fsdp/sharded_grad_scaler.py:254:21: error: Module has no attribute "full" [attr-defined] +torch/distributed/fsdp/sharded_grad_scaler.py:255:30: error: Module has no attribute "float32" [attr-defined] +torch/distributed/fsdp/sharded_grad_scaler.py:286:13: error: Module has no attribute "_foreach_copy_" [attr-defined] +torch/distributed/fsdp/sharded_grad_scaler.py:299:13: error: Incompatible types in assignment (expression has type "float", variable has type "Tensor | None") [assignment] +torch/distributed/fsdp/sharded_grad_scaler.py:304:17: error: Incompatible types in assignment (expression has type "float", variable has type "Tensor | None") [assignment] +torch/distributed/fsdp/sharded_grad_scaler.py:307:40: error: Incompatible types in assignment (expression has type "int", variable has type "Tensor | None") [assignment] +torch/distributed/fsdp/sharded_grad_scaler.py:367:17: error: Module has no attribute "_amp_update_scale_" [attr-defined] +torch/distributed/elastic/utils/store.py:18:18: error: Module has no attribute "_DistStoreError" [attr-defined] +torch/distributed/elastic/utils/data/elastic_distributed_sampler.py:73:13: error: Module has no attribute "Generator" [attr-defined] +torch/distributed/elastic/utils/data/elastic_distributed_sampler.py:77:13: error: Module has no attribute "randperm" [attr-defined] +torch/distributed/checkpoint/utils.py:337:17: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/utils.py:342:12: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/utils.py:355:28: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/state_dict.py:586:12: error: Module has no attribute "device" [attr-defined] +torch/distributed/checkpoint/state_dict.py:587:28: error: Module has no attribute "device" [attr-defined] +torch/distributed/checkpoint/state_dict.py:635:30: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/checkpoint/state_dict.py:644:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/checkpoint/_pg_transport.py:42:12: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/checkpoint/_pg_transport.py:43:12: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/checkpoint/_pg_transport.py:112:30: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/checkpoint/_pg_transport.py:125:13: error: Name "torch.device" is not defined [name-defined] +torch/distributed/checkpoint/_pg_transport.py:186:47: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/checkpoint/_pg_transport.py:199:11: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/checkpoint/_pg_transport.py:224:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/checkpoint/_pg_transport.py:254:21: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/checkpoint/_pg_transport.py:254:52: error: Module has no attribute "int64" [attr-defined] +torch/distributed/checkpoint/_pg_transport.py:255:21: error: Module has no attribute "frombuffer" [attr-defined] +torch/distributed/checkpoint/_pg_transport.py:255:49: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/checkpoint/_pg_transport.py:269:39: error: Module has no attribute "device" [attr-defined] +torch/distributed/checkpoint/_pg_transport.py:297:17: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/checkpoint/_pg_transport.py:297:38: error: Module has no attribute "int64" [attr-defined] +torch/distributed/checkpoint/_pg_transport.py:301:15: error: Module has no attribute "empty" [attr-defined] +torch/distributed/checkpoint/_pg_transport.py:301:41: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/checkpoint/_pg_transport.py:319:43: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/checkpoint/_pg_transport.py:323:21: error: Module has no attribute "empty" [attr-defined] +torch/distributed/checkpoint/_pg_transport.py:323:49: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/checkpoint/_pg_transport.py:335:20: error: Module has no attribute "as_strided" [attr-defined] +torch/distributed/checkpoint/_hf_utils.py:26:12: error: Module has no attribute "float16" [attr-defined] +torch/distributed/checkpoint/_hf_utils.py:27:12: error: Module has no attribute "float32" [attr-defined] +torch/distributed/checkpoint/_hf_utils.py:28:12: error: Module has no attribute "float64" [attr-defined] +torch/distributed/checkpoint/_hf_utils.py:29:11: error: Module has no attribute "int8" [attr-defined] +torch/distributed/checkpoint/_hf_utils.py:30:11: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/checkpoint/_hf_utils.py:31:12: error: Module has no attribute "int16" [attr-defined] +torch/distributed/checkpoint/_hf_utils.py:32:12: error: Module has no attribute "int32" [attr-defined] +torch/distributed/checkpoint/_hf_utils.py:33:12: error: Module has no attribute "int64" [attr-defined] +torch/distributed/checkpoint/_hf_utils.py:34:13: error: Module has no attribute "bfloat16" [attr-defined] +torch/distributed/checkpoint/_hf_utils.py:54:12: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/checkpoint/_hf_utils.py:55:12: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/checkpoint/_hf_utils.py:92:35: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/checkpoint/_hf_utils.py:96:17: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/distributed/checkpoint/_experimental/checkpoint_reader.py:149:30: error: Module has no attribute "empty" [attr-defined] +torch/distributed/checkpoint/_experimental/checkpoint_reader.py:154:30: error: Module has no attribute "frombuffer" [attr-defined] +torch/distributed/benchmarks/benchmark_ddp_rpc.py:71:31: error: Module has no attribute "cat" [attr-defined] +torch/distributed/benchmarks/benchmark_ddp_rpc.py:115:20: error: Module has no attribute "ByteTensor" [attr-defined] +torch/distributed/benchmarks/benchmark_ddp_rpc.py:156:23: error: Module has no attribute "LongTensor" [attr-defined] +torch/distributed/benchmarks/benchmark_ddp_rpc.py:168:30: error: Module has no attribute "LongTensor" [attr-defined] +torch/distributed/benchmarks/benchmark_ddp_rpc.py:169:22: error: Module has no attribute "LongTensor" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:8:9: error: Module has no attribute "round" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:9:9: error: Module has no attribute "clamp" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:9:35: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:14:23: error: Module has no attribute "float32" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:19:9: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:21:19: error: Module has no attribute "round" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:22:9: error: Module has no attribute "clamp" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:22:35: error: Module has no attribute "uint8" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:27:14: error: Module has no attribute "float32" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:28:9: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:36:9: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:78:15: error: Module has no attribute "FloatTensor" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:107:41: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:108:72: error: Module has no attribute "float32" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:159:17: error: Argument "pad" to "pad" has incompatible type "tuple[int, Any]"; expected "list[int]" [arg-type] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:173:15: error: Module has no attribute "stack" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:203:41: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:204:72: error: Module has no attribute "float32" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:214:13: error: Module has no attribute "flatten" [attr-defined] +torch/distributed/algorithms/_quantization/quantization.py:9:18: error: Module has no attribute "finfo" [attr-defined] +torch/distributed/algorithms/_quantization/quantization.py:9:30: error: Module has no attribute "float16" [attr-defined] +torch/distributed/algorithms/_quantization/quantization.py:10:18: error: Module has no attribute "finfo" [attr-defined] +torch/distributed/algorithms/_quantization/quantization.py:10:30: error: Module has no attribute "float16" [attr-defined] +torch/distributed/algorithms/_quantization/quantization.py:28:12: error: Module has no attribute "clamp" [attr-defined] +torch/distributed/algorithms/_quantization/quantization.py:61:28: error: Module has no attribute "float16" [attr-defined] +torch/distributed/algorithms/_quantization/quantization.py:65:30: error: Module has no attribute "float16" [attr-defined] +torch/distributed/algorithms/_quantization/quantization.py:71:28: error: Module has no attribute "float16" [attr-defined] +torch/distributed/_tools/runtime_estimator.py:128:23: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/_tools/runtime_estimator.py:129:9: error: Module has no attribute "float16" [attr-defined] +torch/distributed/_tools/runtime_estimator.py:130:9: error: Module has no attribute "bfloat16" [attr-defined] +torch/distributed/_tools/runtime_estimator.py:131:9: error: Module has no attribute "float32" [attr-defined] +torch/distributed/_tools/runtime_estimator.py:132:9: error: Module has no attribute "float64" [attr-defined] +torch/distributed/_tools/runtime_estimator.py:190:31: error: Module has no attribute "rand_like" [attr-defined] +torch/distributed/_tools/runtime_estimator.py:192:31: error: Module has no attribute "ones_like" [attr-defined] +torch/distributed/_tools/memory_tracker.py:75:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/_composable/replicate_with_fsdp.py:64:41: error: Name "torch.Event" is not defined [name-defined] +torch/distributed/_composable/replicate_with_fsdp.py:89:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_composable/replicate_with_fsdp.py:166:36: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_composable/replicate_with_fsdp.py:171:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/_composable/replicate_with_fsdp.py:352:14: error: Module has no attribute "_get_accelerator" [attr-defined] +torch/contrib/_tensorboard_vis.py:37:26: error: Module has no attribute "GraphExecutorState" [attr-defined] +torch/backends/_nnapi/serializer.py:1022:21: error: Module has no attribute "zeros" [attr-defined] +torch/backends/_nnapi/serializer.py:1849:40: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/backends/_nnapi/serializer.py:1850:32: error: Module has no attribute "quint8" [attr-defined] +torch/backends/_nnapi/serializer.py:1853:40: error: Module has no attribute "qint8" [attr-defined] +torch/backends/_nnapi/serializer.py:1854:31: error: Module has no attribute "_make_per_tensor_quantized_tensor" [attr-defined] +torch/backends/_nnapi/serializer.py:1855:56: error: Module has no attribute "uint8" [attr-defined] +torch/backends/_nnapi/serializer.py:1861:20: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/backends/_nnapi/serializer.py:1861:71: error: Module has no attribute "qint32" [attr-defined] +torch/backends/_nnapi/serializer.py:1900:33: error: Module has no attribute "zeros" [attr-defined] +torch/backends/_nnapi/serializer.py:2030:40: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/backends/_nnapi/serializer.py:2031:32: error: Module has no attribute "quint8" [attr-defined] +torch/backends/_nnapi/serializer.py:2034:40: error: Module has no attribute "qint8" [attr-defined] +torch/backends/_nnapi/serializer.py:2035:31: error: Module has no attribute "_make_per_tensor_quantized_tensor" [attr-defined] +torch/backends/_nnapi/serializer.py:2036:56: error: Module has no attribute "uint8" [attr-defined] +torch/backends/_nnapi/serializer.py:2043:20: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/backends/_nnapi/serializer.py:2043:71: error: Module has no attribute "qint32" [attr-defined] +torch/backends/_coreml/preprocess.py:87:31: error: Name "torch._C.ScriptObject" is not defined [name-defined] +torch/ao/quantization/_learnable_fake_quantize.py:57:36: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:58:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:62:36: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:63:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:66:12: error: Module has no attribute "iinfo" [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:68:24: error: Module has no attribute "iinfo" [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:77:52: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:77:76: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:78:48: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:78:72: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:79:50: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:79:74: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:81:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:82:29: error: Module has no attribute "log2" [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:83:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:83:51: error: Module has no attribute "finfo" [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:83:63: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:170:17: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:171:17: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:179:33: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:179:62: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:180:21: error: Module has no attribute "_fake_quantize_learnable_per_channel_affine" [attr-defined] +torch/ao/quantization/_learnable_fake_quantize.py:190:21: error: Module has no attribute "_fake_quantize_learnable_per_tensor_affine" [attr-defined] +torch/ao/quantization/_equalize.py:149:23: error: Module has no attribute "sqrt" [attr-defined] +torch/ao/quantization/_equalize.py:150:31: error: Module has no attribute "reciprocal" [attr-defined] +torch/ao/quantization/_equalize.py:162:23: error: Module has no attribute "reshape" [attr-defined] +torch/ao/quantization/_equalize.py:163:31: error: Module has no attribute "reshape" [attr-defined] +torch/ao/quantization/_equalize.py:270:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:51:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:51:58: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:52:39: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:52:63: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:54:36: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:54:60: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:55:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:55:65: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:57:31: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:102:23: error: Module has no attribute "sqrt" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:110:21: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:144:23: error: Module has no attribute "sqrt" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:184:13: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:222:23: error: Module has no attribute "sqrt" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:236:25: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:656:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:657:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:658:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:659:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:660:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:661:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:662:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:667:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:668:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:669:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:670:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:671:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:672:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:673:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:903:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:904:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:905:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:906:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:907:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:908:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:913:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:914:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:915:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:916:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:917:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/qat_utils.py:918:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/prepare.py:326:19: error: Name "torch.device" is not defined [name-defined] +torch/ao/quantization/pt2e/prepare.py:348:16: error: Missing positional arguments "args", "kwargs", "name", "op", "target" in call to "Node" [call-arg] +torch/ao/quantization/pt2e/prepare.py:348:26: error: Argument 1 to "Node" has incompatible type "list[Sequence[Argument] | Mapping[str, Argument] | slice[Any, Any, Any] | Node | int | <8 more items> | None]"; expected "Graph" [arg-type] +torch/ao/quantization/pt2e/prepare.py:423:19: error: Name "torch.device" is not defined [name-defined] +torch/ao/quantization/pt2e/prepare.py:476:19: error: Name "torch.device" is not defined [name-defined] +torch/ao/quantization/pt2e/prepare.py:509:19: error: Name "torch.device" is not defined [name-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:45:64: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:53:9: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:57:76: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:85:21: error: Module has no attribute "int16" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:86:31: error: Module has no attribute "int16" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:91:9: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:99:53: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:105:13: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:111:77: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:128:50: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:131:66: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:134:64: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:142:9: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:161:50: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:168:14: error: Module has no attribute "round" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:169:29: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:172:13: error: Module has no attribute "clamp" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:173:27: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:177:21: error: Module has no attribute "int16" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:178:31: error: Module has no attribute "int16" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:183:9: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:189:53: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:219:64: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:227:9: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:241:76: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:275:21: error: Module has no attribute "int16" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:276:31: error: Module has no attribute "int16" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:281:9: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:307:53: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:318:13: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:324:77: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:341:60: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:344:60: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:349:68: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:370:21: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:371:21: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:375:9: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:381:9: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:387:74: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:404:60: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:407:60: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:411:68: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:445:21: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:446:21: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:448:13: error: Module has no attribute "round" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:448:76: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:449:13: error: Module has no attribute "round" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:449:76: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:453:69: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:474:64: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:480:76: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:502:12: error: Module has no attribute "clamp" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:503:21: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:508:16: error: Module has no attribute "clamp" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:509:26: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:515:58: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:527:9: error: Module has no attribute "round" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:528:20: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:531:9: error: Module has no attribute "clamp" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:532:20: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:538:56: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:553:22: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:560:69: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:568:14: error: Module has no attribute "transpose" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:570:9: error: Module has no attribute "round" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:570:41: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:572:15: error: Module has no attribute "transpose" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:573:23: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:581:67: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:593:12: error: Module has no attribute "transpose" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:594:21: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:595:41: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:596:16: error: Module has no attribute "transpose" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:623:9: error: Module has no attribute "randint" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:623:48: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:624:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:624:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:625:9: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:625:30: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:626:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:626:36: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:627:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:627:35: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:628:9: error: Module has no attribute "randint" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:628:48: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:629:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:629:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:630:9: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:630:30: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:631:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:631:36: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:632:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:632:35: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:633:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:633:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:634:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:634:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:635:9: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:635:30: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:636:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:636:36: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:637:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:637:35: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:641:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:641:35: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:644:9: error: Module has no attribute "finfo" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:644:21: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:645:9: error: Module has no attribute "randint" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:645:48: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:646:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:646:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:647:9: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:647:30: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:648:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:648:36: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:649:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:649:35: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:650:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:650:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:654:9: error: Module has no attribute "randint" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:654:54: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:655:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:655:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:656:9: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:656:30: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:657:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:657:36: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:658:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:658:35: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:659:9: error: Module has no attribute "randint" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:659:54: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:660:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:660:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:661:9: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:661:30: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:662:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:662:36: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:663:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:663:35: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:664:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:664:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:665:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:665:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:666:9: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:666:30: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:667:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:667:36: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:668:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:668:35: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:672:9: error: Module has no attribute "randint" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:672:54: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:673:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:673:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:674:9: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:674:30: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:675:9: error: Module has no attribute "randint" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:675:54: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:676:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:676:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:677:9: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:677:30: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:678:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:678:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:679:9: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:679:30: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:680:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:680:36: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:681:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:681:35: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:685:9: error: Module has no attribute "randint" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:685:54: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:686:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:686:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:687:9: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:687:30: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:688:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:688:36: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:689:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:689:35: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:690:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:690:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:691:9: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:691:30: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:692:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:692:36: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:693:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:693:35: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:697:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:697:39: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:698:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:698:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:699:9: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:699:30: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:700:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:700:36: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:701:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:701:35: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:705:9: error: Module has no attribute "randint" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:705:54: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:706:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:706:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:707:9: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:707:30: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:708:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:708:36: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:709:9: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:709:35: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:713:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:713:39: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:714:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:714:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:715:9: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:715:30: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:722:9: error: Module has no attribute "randint" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:722:54: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:723:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:723:30: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:724:9: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:724:30: error: Module has no attribute "int" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:737:53: error: Module has no attribute "finfo" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:737:65: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:741:53: error: Module has no attribute "finfo" [attr-defined] +torch/ao/quantization/pt2e/representation/rewrite.py:741:65: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/fx/lstm_utils.py:122:18: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/fx/lstm_utils.py:123:18: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/lstm_utils.py:124:18: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/lstm_utils.py:125:18: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/fx/lstm_utils.py:126:18: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/lstm_utils.py:130:18: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/fx/lstm_utils.py:131:18: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/fx/lstm_utils.py:132:18: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/fx/lstm_utils.py:133:18: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/fx/lstm_utils.py:134:18: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/lstm_utils.py:135:18: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/lstm_utils.py:136:18: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/fx/lstm_utils.py:137:18: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/lstm_utils.py:143:31: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/fx/lstm_utils.py:144:29: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/fx/lstm_utils.py:146:33: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/lstm_utils.py:147:29: error: Module has no attribute "mul" [attr-defined] +torch/ao/quantization/fx/lstm_utils.py:211:31: error: Module has no attribute "quantize_per_tensor" [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:56:26: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:60:61: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:61:54: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:62:54: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:66:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:67:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:70:49: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:71:58: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:72:60: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:73:51: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:95:36: error: Module has no attribute "aminmax" [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:98:25: error: Module has no attribute "min" [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:99:25: error: Module has no attribute "max" [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:137:13: error: Module has no attribute "flatten" [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:139:32: error: Module has no attribute "aminmax" [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:141:40: error: Module has no attribute "aminmax" [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:142:23: error: Module has no attribute "min" [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:143:23: error: Module has no attribute "max" [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:171:13: error: Module has no attribute "flatten" [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:178:29: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:181:29: error: Module has no attribute "quantile" [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:190:30: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:191:35: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:199:14: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:212:27: error: Module has no attribute "nan_to_num" [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:221:47: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:224:45: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:228:38: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:239:22: error: Module has no attribute "nan_to_num" [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:257:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:259:40: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:272:47: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:273:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:274:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:275:24: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:276:24: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:277:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:278:43: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/model_report_observer.py:279:34: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/experimental/observer.py:25:36: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/experimental/observer.py:30:24: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/experimental/observer.py:31:24: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/experimental/observer.py:58:17: error: Module has no attribute "max" [attr-defined] +torch/ao/quantization/experimental/observer.py:76:22: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/experimental/observer.py:80:28: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/experimental/observer.py:81:26: error: Module has no attribute "cat" [attr-defined] +torch/ao/quantization/experimental/observer.py:84:30: error: Module has no attribute "cat" [attr-defined] +torch/ao/quantization/experimental/observer.py:84:49: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/experimental/observer.py:88:36: error: Module has no attribute "sort" [attr-defined] +torch/ao/quantization/experimental/observer.py:123:31: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/experimental/observer.py:124:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/experimental/observer.py:137:28: error: Module has no attribute "aminmax" [attr-defined] +torch/ao/quantization/experimental/observer.py:139:23: error: Module has no attribute "min" [attr-defined] +torch/ao/quantization/experimental/observer.py:141:23: error: Module has no attribute "max" [attr-defined] +torch/ao/quantization/experimental/adaround_loss.py:43:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/experimental/adaround_loss.py:57:23: error: Module has no attribute "clamp" [attr-defined] +torch/ao/quantization/experimental/adaround_loss.py:58:17: error: Module has no attribute "sigmoid" [attr-defined] +torch/ao/quantization/experimental/adaround_loss.py:65:26: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/experimental/adaround_loss.py:66:35: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/experimental/adaround_fake_quantize.py:27:18: error: Name "torch.qscheme" is not defined [name-defined] +torch/ao/quantization/experimental/adaround_fake_quantize.py:27:34: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/experimental/adaround_fake_quantize.py:48:23: error: Name "torch.qscheme" is not defined [name-defined] +torch/ao/quantization/experimental/adaround_fake_quantize.py:55:22: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/experimental/adaround_fake_quantize.py:56:27: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/experimental/adaround_fake_quantize.py:57:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/experimental/adaround_fake_quantize.py:59:35: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/experimental/adaround_fake_quantize.py:60:36: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/experimental/adaround_fake_quantize.py:74:92: error: "bool" has no attribute "int" [attr-defined] +torch/ao/quantization/experimental/adaround_fake_quantize.py:82:20: error: Module has no attribute "clamp" [attr-defined] +torch/ao/quantization/experimental/adaround_fake_quantize.py:89:20: error: "bool" has no attribute "int" [attr-defined] +torch/ao/quantization/experimental/adaround_fake_quantize.py:103:35: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/quantization/experimental/adaround_fake_quantize.py:109:21: error: Module has no attribute "floor" [attr-defined] +torch/ao/quantization/experimental/adaround_fake_quantize.py:111:16: error: Module has no attribute "all" [attr-defined] +torch/ao/quantization/experimental/adaround_fake_quantize.py:111:26: error: Module has no attribute "ge" [attr-defined] +torch/ao/quantization/experimental/adaround_fake_quantize.py:113:19: error: Module has no attribute "log" [attr-defined] +torch/ao/quantization/experimental/adaround_fake_quantize.py:142:25: error: Module has no attribute "floor" [attr-defined] +torch/ao/quantization/experimental/adaround_fake_quantize.py:146:17: error: Module has no attribute "clamp" [attr-defined] +torch/ao/quantization/experimental/quantizer.py:43:18: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/experimental/quantizer.py:84:18: error: Module has no attribute "from_numpy" [attr-defined] +torch/ao/quantization/backend_config/x86.py:30:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/x86.py:31:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/x86.py:32:18: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/x86.py:33:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/x86.py:37:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/x86.py:38:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/x86.py:42:17: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/x86.py:43:18: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/x86.py:44:18: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/x86.py:45:16: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/x86.py:49:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/x86.py:50:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/x86.py:51:18: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/x86.py:52:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/x86.py:57:17: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/x86.py:58:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/x86.py:59:18: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/backend_config/x86.py:60:16: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/x86.py:65:17: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/x86.py:66:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/x86.py:67:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/x86.py:71:17: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/x86.py:72:18: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/backend_config/x86.py:73:18: error: Module has no attribute "quint4x2" [attr-defined] +torch/ao/quantization/backend_config/_qnnpack_pt2e.py:14:17: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/_qnnpack_pt2e.py:15:18: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/backend_config/_qnnpack_pt2e.py:16:18: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/backend_config/_qnnpack_pt2e.py:17:16: error: Module has no attribute "float" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py:127:56: error: Module has no attribute "dequantize" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py:146:34: error: Module has no attribute "quantize_per_channel" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py:103:39: error: Module has no attribute "ones_like" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py:214:42: error: Module has no attribute "ones_like" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/benchmarks/evaluate_model_metrics.py:87:14: error: Module has no attribute "device" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/benchmarks/evaluate_forward_time.py:98:14: error: Module has no attribute "device" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/benchmarks/dlrm_utils.py:35:13: error: Module has no attribute "mm" [attr-defined] +torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:156:28: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:157:48: error: Module has no attribute "ones_like" [attr-defined] +torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:177:36: error: Module has no attribute "index_select" [attr-defined] +torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:181:37: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:182:65: error: Module has no attribute "ones_like" [attr-defined] +torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:351:25: error: Module has no attribute "index_select" [attr-defined] +torch/ao/ns/_numeric_suite.py:86:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/ns/_numeric_suite.py:166:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/ns/_numeric_suite.py:182:22: error: Module has no attribute "quint8" [attr-defined] +torch/ao/ns/_numeric_suite.py:367:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/ns/_numeric_suite.py:446:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/ns/_numeric_suite.py:468:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/ns/_numeric_suite.py:500:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/ns/_numeric_suite.py:559:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/_subclasses/complex_tensor/_core.py:97:5: error: Function is missing a return type annotation [no-untyped-def] +torch/_subclasses/complex_tensor/_core.py:116:18: error: Module has no attribute "real" [attr-defined] +torch/_subclasses/complex_tensor/_core.py:117:18: error: Module has no attribute "imag" [attr-defined] +torch/_subclasses/complex_tensor/_core.py:117:59: error: Module has no attribute "zeros_like" [attr-defined] +torch/_subclasses/complex_tensor/_core.py:121:16: error: Module has no attribute "complex"; maybe "compile"? [attr-defined] +torch/_subclasses/complex_tensor/_core.py:137:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_core.py:137:5: error: Signature of "__repr__" incompatible with supertype "Tensor" [override] +torch/_subclasses/complex_tensor/_core.py:137:5: note: Superclass: +torch/_subclasses/complex_tensor/_core.py:137:5: note: def __repr__(self, *, Any = ...) -> Any +torch/_subclasses/complex_tensor/_core.py:137:5: note: Subclass: +torch/_subclasses/complex_tensor/_core.py:137:5: note: def __repr__(self, *, Any = ...) -> str +torch/_subclasses/complex_tensor/_ops/common.py:25:5: error: Module has no attribute "complex128" [attr-defined] +torch/_subclasses/complex_tensor/_ops/common.py:25:23: error: Module has no attribute "float64" [attr-defined] +torch/_subclasses/complex_tensor/_ops/common.py:26:5: error: Module has no attribute "complex64" [attr-defined] +torch/_subclasses/complex_tensor/_ops/common.py:26:22: error: Module has no attribute "float32" [attr-defined] +torch/_subclasses/complex_tensor/_ops/common.py:27:5: error: Module has no attribute "complex32" [attr-defined] +torch/_subclasses/complex_tensor/_ops/common.py:27:22: error: Module has no attribute "float16" [attr-defined] +torch/_subclasses/complex_tensor/_ops/common.py:34:5: error: Module has no attribute "float16" [attr-defined] +torch/_subclasses/complex_tensor/_ops/common.py:34:20: error: Module has no attribute "float32" [attr-defined] +torch/_subclasses/complex_tensor/_ops/common.py:35:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/_subclasses/complex_tensor/_ops/common.py:35:21: error: Module has no attribute "float32" [attr-defined] +torch/_subclasses/complex_tensor/_ops/common.py:36:5: error: Module has no attribute "complex32" [attr-defined] +torch/_subclasses/complex_tensor/_ops/common.py:36:22: error: Module has no attribute "complex64" [attr-defined] +torch/_subclasses/complex_tensor/_ops/common.py:61:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_subclasses/complex_tensor/_ops/common.py:67:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_subclasses/complex_tensor/_ops/common.py:72:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_subclasses/complex_tensor/_ops/common.py:81:22: error: Module has no attribute "promote_types" [attr-defined] +torch/_subclasses/complex_tensor/_ops/common.py:90:1: error: Function is missing a return type annotation [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/common.py:96:5: error: Function is missing a type annotation [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/common.py:111:1: error: Function is missing a return type annotation [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/common.py:111:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/common.py:117:42: error: Argument 1 to "list" has incompatible type "_OpNamespace"; expected "Iterable[OperatorBase | OpOverloadPacket[[VarArg(Any), KwArg(Any)], Any]]" [arg-type] +torch/_subclasses/complex_tensor/_ops/common.py:117:42: note: Error code "arg-type" not covered by "type: ignore" comment +torch/_subclasses/complex_tensor/_ops/common.py:117:42: note: Following member(s) of "_OpNamespace" have conflicts: +torch/_subclasses/complex_tensor/_ops/common.py:117:42: note: Expected: +torch/_subclasses/complex_tensor/_ops/common.py:117:42: note: def __iter__(self) -> Iterator[OperatorBase | OpOverloadPacket[[VarArg(Any), KwArg(Any)], Any]] +torch/_subclasses/complex_tensor/_ops/common.py:117:42: note: Got: +torch/_subclasses/complex_tensor/_ops/common.py:117:42: note: def __iter__(self) -> Iterator[str] +torch/_subclasses/complex_tensor/_ops/common.py:120:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/common.py:167:21: error: Module has no attribute "zeros_like" [attr-defined] +torch/_subclasses/complex_tensor/_ops/common.py:185:34: error: Name "torch.dtype" is not defined [name-defined] +torch/_subclasses/complex_tensor/_ops/common.py:202:1: error: Function is missing a return type annotation [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/common.py:205:5: error: Function is missing a type annotation [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/common.py:218:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/common.py:233:1: error: Function is missing a return type annotation [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/common.py:236:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/common.py:237:44: error: Name "torch.dtype" is not defined [name-defined] +torch/_subclasses/complex_tensor/_ops/common.py:290:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/common.py:300:5: error: Function is missing a return type annotation [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/common.py:312:20: error: Incompatible types in assignment (expression has type "Callable[[VarArg(Any), KwArg(Any)], Any]", variable has type "OpOverload[[VarArg(Any), KwArg(Any)], Any]") [assignment] +torch/_subclasses/complex_tensor/_ops/common.py:312:20: note: Error code "assignment" not covered by "type: ignore" comment +torch/_lazy/tensor_factory_functions.py:15:5: error: Module has no attribute "_cudnn_init_dropout_state" [attr-defined] +torch/_lazy/tensor_factory_functions.py:16:5: error: Module has no attribute "arange" [attr-defined] +torch/_lazy/tensor_factory_functions.py:17:5: error: Module has no attribute "bartlett_window" [attr-defined] +torch/_lazy/tensor_factory_functions.py:18:5: error: Module has no attribute "blackman_window" [attr-defined] +torch/_lazy/tensor_factory_functions.py:19:5: error: Module has no attribute "_empty_affine_quantized" [attr-defined] +torch/_lazy/tensor_factory_functions.py:20:5: error: Module has no attribute "empty_strided" [attr-defined] +torch/_lazy/tensor_factory_functions.py:21:5: error: Module has no attribute "eye" [attr-defined] +torch/_lazy/tensor_factory_functions.py:22:5: error: Module has no attribute "full" [attr-defined] +torch/_lazy/tensor_factory_functions.py:23:5: error: Module has no attribute "from_file" [attr-defined] +torch/_lazy/tensor_factory_functions.py:24:5: error: Module has no attribute "hann_window" [attr-defined] +torch/_lazy/tensor_factory_functions.py:25:5: error: Module has no attribute "hamming_window" [attr-defined] +torch/_lazy/tensor_factory_functions.py:26:5: error: Module has no attribute "kaiser_window" [attr-defined] +torch/_lazy/tensor_factory_functions.py:27:5: error: Module has no attribute "linspace" [attr-defined] +torch/_lazy/tensor_factory_functions.py:28:5: error: Module has no attribute "logspace" [attr-defined] +torch/_lazy/tensor_factory_functions.py:29:5: error: Module has no attribute "ones" [attr-defined] +torch/_lazy/tensor_factory_functions.py:30:5: error: Module has no attribute "scalar_tensor" [attr-defined] +torch/_lazy/tensor_factory_functions.py:31:5: error: Module has no attribute "rand" [attr-defined] +torch/_lazy/tensor_factory_functions.py:32:5: error: Module has no attribute "randint" [attr-defined] +torch/_lazy/tensor_factory_functions.py:33:5: error: Module has no attribute "randn" [attr-defined] +torch/_lazy/tensor_factory_functions.py:34:5: error: Module has no attribute "randperm" [attr-defined] +torch/_lazy/tensor_factory_functions.py:35:5: error: Module has no attribute "range" [attr-defined] +torch/_lazy/tensor_factory_functions.py:36:5: error: Module has no attribute "_efficientzerotensor" [attr-defined] +torch/_lazy/tensor_factory_functions.py:37:5: error: Module has no attribute "zeros" [attr-defined] +torch/_lazy/tensor_factory_functions.py:38:5: error: Module has no attribute "tril_indices" [attr-defined] +torch/_lazy/tensor_factory_functions.py:39:5: error: Module has no attribute "triu_indices" [attr-defined] +torch/_lazy/tensor_factory_functions.py:48:5: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_inductor/aoti_eager.py:85:57: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/aoti_eager.py:86:18: error: Module has no attribute "int32" [attr-defined] +torch/_inductor/aoti_eager.py:86:38: error: Module has no attribute "float" [attr-defined] +torch/_inductor/aoti_eager.py:86:57: error: Module has no attribute "bool" [attr-defined] +torch/_inductor/aoti_eager.py:108:36: error: Module has no attribute "_dispatch_keys" [attr-defined] +torch/_inductor/aoti_eager.py:146:35: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/aoti_eager.py:147:30: error: Module has no attribute "dtype" [attr-defined] +torch/_inductor/aoti_eager.py:153:36: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/aoti_eager.py:154:30: error: Module has no attribute "device" [attr-defined] +torch/_inductor/aoti_eager.py:161:36: error: Name "torch.layout" is not defined [name-defined] +torch/_inductor/aoti_eager.py:162:30: error: Module has no attribute "layout" [attr-defined] +torch/_inductor/aoti_eager.py:195:17: error: Module has no attribute "dtype" [attr-defined] +torch/_inductor/aoti_eager.py:196:17: error: Module has no attribute "device" [attr-defined] +torch/_inductor/aoti_eager.py:197:17: error: Module has no attribute "layout" [attr-defined] +torch/_inductor/aoti_eager.py:253:40: error: Module has no attribute "dtype" [attr-defined] +torch/_inductor/aoti_eager.py:255:40: error: Module has no attribute "device" [attr-defined] +torch/_inductor/aoti_eager.py:257:40: error: Module has no attribute "layout" [attr-defined] +torch/_inductor/lookup_table/choices.py:43:33: error: Name "torch.device" is not defined [name-defined] +torch/_inductor/lookup_table/choices.py:56:16: error: _CudaDeviceProperties? has no attribute "gcnArchName" [attr-defined] +torch/_inductor/kernel/custom_op.py:188:27: error: Module has no attribute "empty" [attr-defined] +torch/_inductor/analysis/profile_analysis.py:358:14: error: Module has no attribute "float" [attr-defined] +torch/_inductor/analysis/profile_analysis.py:359:16: error: Module has no attribute "float" [attr-defined] +torch/_inductor/analysis/profile_analysis.py:360:12: error: Module has no attribute "int" [attr-defined] +torch/_inductor/analysis/profile_analysis.py:361:13: error: Module has no attribute "int8" [attr-defined] +torch/_inductor/analysis/profile_analysis.py:362:14: error: Module has no attribute "int16" [attr-defined] +torch/_inductor/analysis/profile_analysis.py:363:14: error: Module has no attribute "int" [attr-defined] +torch/_inductor/analysis/profile_analysis.py:364:13: error: Module has no attribute "long" [attr-defined] +torch/_inductor/analysis/profile_analysis.py:365:17: error: Module has no attribute "long" [attr-defined] +torch/_inductor/analysis/profile_analysis.py:366:17: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/analysis/profile_analysis.py:367:16: error: Module has no attribute "float16" [attr-defined] +torch/_inductor/analysis/profile_analysis.py:368:16: error: Module has no attribute "double" [attr-defined] +torch/_inductor/analysis/profile_analysis.py:406:31: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/analysis/profile_analysis.py:418:32: error: Module has no attribute "dtype" [attr-defined] +torch/_inductor/analysis/profile_analysis.py:426:64: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/analysis/profile_analysis.py:440:24: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/analysis/profile_analysis.py:442:24: error: Module has no attribute "float16" [attr-defined] +torch/_functorch/make_functional.py:79:32: error: Module has no attribute "empty_like" [attr-defined] +torch/_functorch/make_functional.py:484:9: error: Module has no attribute "stack" [attr-defined] +torch/_functorch/make_functional.py:572:25: error: Module has no attribute "stack" [attr-defined] +torch/_functorch/make_functional.py:610:25: error: Module has no attribute "stack" [attr-defined] +torch/_functorch/make_functional.py:612:25: error: Module has no attribute "stack" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:21:32: error: Name "torch.dtype" is not defined [name-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:26:37: error: Name "torch.dtype" is not defined [name-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:29:24: error: Module has no attribute "dtype" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:32:17: error: Module has no attribute "quint8" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:33:16: error: Module has no attribute "uint8" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:34:19: error: Module has no attribute "qint8" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:35:16: error: Module has no attribute "int8" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:50:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:51:23: error: Name "torch.qscheme" is not defined [name-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:72:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:74:23: error: Name "torch.qscheme" is not defined [name-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:76:19: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:85:21: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:106:23: error: Name "torch.dtype" is not defined [name-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:108:23: error: Name "torch.qscheme" is not defined [name-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:110:19: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:122:21: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:139:26: error: Name "torch.dtype" is not defined [name-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:144:49: error: Name "torch.dtype" is not defined [name-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:156:6: error: Name "torch._C.ScriptObject" is not defined [name-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:165:28: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:231:26: error: Module has no attribute "qint8" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:231:39: error: Module has no attribute "quint8" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:240:23: error: Module has no attribute "per_channel_affine" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:512:9: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:523:9: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:601:25: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:612:25: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:629:34: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:636:29: error: Module has no attribute "qint8" [attr-defined] +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:637:29: error: Module has no attribute "quint8" [attr-defined] +torch/_export/converter.py:54:35: error: Module has no attribute "is_autocast_cache_enabled" [attr-defined] +torch/_export/converter.py:55:5: error: Module has no attribute "set_autocast_cache_enabled" [attr-defined] +torch/_export/converter.py:63:5: error: Module has no attribute "set_autocast_cache_enabled" [attr-defined] +torch/_export/converter.py:76:2: error: Name "_C.IValue" is not defined [name-defined] +torch/_export/converter.py:76:12: error: Name "torch.Graph" is not defined [name-defined] +torch/_export/converter.py:76:58: error: Name "torch.ScriptModule" is not defined [name-defined] +torch/_export/converter.py:86:13: error: Module has no attribute "_jit_pass_onnx_function_substitution" [attr-defined] +torch/_export/converter.py:87:30: error: Module has no attribute "_freeze_module" [attr-defined] +torch/_export/converter.py:88:29: error: Name "_C.ScriptModule" is not defined [name-defined] +torch/_export/converter.py:90:30: error: Module has no attribute "_jit_onnx_list_model_parameters" [attr-defined] +torch/_export/converter.py:95:21: error: Module has no attribute "_propagate_and_assign_input_shapes" [attr-defined] +torch/_export/converter.py:103:9: error: Module has no attribute "_jit_pass_onnx_function_substitution" [attr-defined] +torch/_export/converter.py:105:17: error: Module has no attribute "_propagate_and_assign_input_shapes" [attr-defined] +torch/_export/converter.py:111:5: error: Module has no attribute "_jit_pass_onnx_lint" [attr-defined] +torch/_export/converter.py:120:5: error: Module has no attribute "_jit_pass_onnx_function_substitution" [attr-defined] +torch/_export/converter.py:197:5: error: Module has no attribute "uint8" [attr-defined] +torch/_export/converter.py:198:5: error: Module has no attribute "int8" [attr-defined] +torch/_export/converter.py:199:5: error: Module has no attribute "int16" [attr-defined] +torch/_export/converter.py:200:5: error: Module has no attribute "int32" [attr-defined] +torch/_export/converter.py:201:5: error: Module has no attribute "int64" [attr-defined] +torch/_export/converter.py:202:5: error: Module has no attribute "float16" [attr-defined] +torch/_export/converter.py:203:5: error: Module has no attribute "float32" [attr-defined] +torch/_export/converter.py:204:5: error: Module has no attribute "float64" [attr-defined] +torch/_export/converter.py:205:5: error: Module has no attribute "complex32" [attr-defined] +torch/_export/converter.py:206:5: error: Module has no attribute "complex64" [attr-defined] +torch/_export/converter.py:207:5: error: Module has no attribute "complex128" [attr-defined] +torch/_export/converter.py:208:5: error: Module has no attribute "bool" [attr-defined] +torch/_export/converter.py:209:5: error: Module has no attribute "qint8" [attr-defined] +torch/_export/converter.py:210:5: error: Module has no attribute "quint8" [attr-defined] +torch/_export/converter.py:211:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/_export/converter.py:266:12: error: Name "torch._C.Graph" is not defined [name-defined] +torch/_export/converter.py:267:17: error: Name "torch._C.Block" is not defined [name-defined] +torch/_export/converter.py:284:34: error: Name "torch._C.Block" is not defined [name-defined] +torch/_export/converter.py:335:34: error: Module has no attribute "Graph" [attr-defined] +torch/_export/converter.py:346:50: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:370:27: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:373:13: error: Name "torch._C.FunctionSchema" is not defined [name-defined] +torch/_export/converter.py:373:39: error: Module has no attribute "parse_schema" [attr-defined] +torch/_export/converter.py:395:25: error: Name "torch._C.Graph" is not defined [name-defined] +torch/_export/converter.py:395:41: error: Name "torch._C.Block" is not defined [name-defined] +torch/_export/converter.py:398:38: error: Name "torch._C.Block" is not defined [name-defined] +torch/_export/converter.py:469:60: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_export/converter.py:473:48: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:525:42: error: Module has no attribute "Graph" [attr-defined] +torch/_export/converter.py:532:37: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:543:47: error: Name "torch._C.Value" is not defined [name-defined] +torch/_export/converter.py:550:62: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_export/converter.py:627:64: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_export/converter.py:644:49: error: Module has no attribute "ClassType" [attr-defined] +torch/_export/converter.py:660:40: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:662:31: error: Module has no attribute "float" [attr-defined] +torch/_export/converter.py:671:41: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:680:13: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_export/converter.py:699:41: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:722:43: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:750:45: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:758:41: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:760:35: error: Module has no attribute "TensorType" [attr-defined] +torch/_export/converter.py:767:42: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:795:42: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:807:46: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:828:49: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:831:48: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:834:44: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:840:48: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:863:45: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:866:46: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:869:51: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:877:38: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:881:76: error: Module has no attribute "int32" [attr-defined] +torch/_export/converter.py:893:46: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:903:71: error: Module has no attribute "long" [attr-defined] +torch/_export/converter.py:907:47: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:911:47: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:922:38: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:955:46: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:965:37: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:1003:38: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:1005:52: error: Module has no attribute "ListType" [attr-defined] +torch/_export/converter.py:1006:42: error: Module has no attribute "ListType" [attr-defined] +torch/_export/converter.py:1050:39: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:1129:52: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:1139:37: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:1167:49: error: Argument 1 to "call_function" of "Graph" has incompatible type Module; expected "Callable[..., Any]" [arg-type] +torch/_export/converter.py:1179:39: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:1182:40: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:1189:39: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:1193:38: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:1204:60: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:1212:41: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:1221:48: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:1229:49: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:1236:34: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:1270:59: error: Module has no attribute "clone" [attr-defined] +torch/_export/converter.py:1333:25: error: Name "torch._C.Graph" is not defined [name-defined] +torch/_export/converter.py:1333:41: error: Name "torch._C.Block" is not defined [name-defined] +torch/_export/converter.py:1336:38: error: Name "torch._C.Block" is not defined [name-defined] +torch/_export/converter.py:1352:42: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:1409:46: error: Module has no attribute "ScriptFunction" [attr-defined] +torch/_export/converter.py:1412:42: error: Module has no attribute "ScriptFunction" [attr-defined] +torch/_export/converter.py:1471:42: error: Module has no attribute "ScriptFunction" [attr-defined] +torch/_export/converter.py:1538:49: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_export/converter.py:1582:27: error: Name "torch._C.Node" is not defined [name-defined] +torch/_export/converter.py:1604:44: error: Module has no attribute "ScriptObject" [attr-defined] +torch/_export/passes/constant_folding.py:70:51: error: Module has no attribute "int8" [attr-defined] +torch/_export/passes/constant_folding.py:70:51: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_export/passes/constant_folding.py:71:33: error: Module has no attribute "bfloat16" [attr-defined] +torch/_export/passes/constant_folding.py:162:17: error: Module has no attribute "Tag" [attr-defined] +torch/_export/db/examples/user_input_mutation.py:15:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/unsupported_operator.py:15:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/type_reflection_method.py:20:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/tensor_setattr.py:10:26: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/tensor_setattr.py:13:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/static_if.py:12:24: error: Module has no attribute "ones" [attr-defined] +torch/_export/db/examples/static_if.py:16:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/static_for_loop.py:14:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/specialized_attribute.py:25:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/scalar_output.py:6:5: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/pytree_flatten.py:15:21: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/optional_input.py:11:28: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/optional_input.py:17:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/null_context_manager.py:19:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/nested_function.py:21:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/model_attr_mutation.py:12:27: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/model_attr_mutation.py:15:17: error: Module has no attribute "zeros" [attr-defined] +torch/_export/db/examples/model_attr_mutation.py:22:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/list_unpack.py:19:18: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/list_unpack.py:19:37: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_export/db/examples/list_contains.py:15:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/fn_with_kwargs.py:20:5: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/fn_with_kwargs.py:21:6: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/fn_with_kwargs.py:22:7: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/fn_with_kwargs.py:25:14: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/fn_with_kwargs.py:26:15: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/fn_with_kwargs.py:27:15: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/dynamic_shape_view.py:15:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/dynamic_shape_slicing.py:13:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/dynamic_shape_round.py:15:5: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/dynamic_shape_map.py:17:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/dynamic_shape_if_guard.py:17:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/dynamic_shape_constructor.py:11:16: error: Module has no attribute "zeros" [attr-defined] +torch/_export/db/examples/dynamic_shape_constructor.py:13:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/dynamic_shape_assert.py:16:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/dictionary.py:15:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/dictionary.py:15:36: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_export/db/examples/decorator.py:22:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/constrain_as_value_example.py:21:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_export/db/examples/constrain_as_value_example.py:21:34: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/constrain_as_size_example.py:15:16: error: Module has no attribute "zeros" [attr-defined] +torch/_export/db/examples/constrain_as_size_example.py:18:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_export/db/examples/cond_predicate.py:18:16: error: Module not callable [operator] +torch/_export/db/examples/cond_predicate.py:20:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/cond_operands.py:6:5: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/cond_operands.py:7:5: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/cond_operands.py:26:16: error: Module not callable [operator] +torch/_export/db/examples/cond_operands.py:33:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/cond_closed_over_variable.py:18:16: error: Module not callable [operator] +torch/_export/db/examples/cond_closed_over_variable.py:20:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_export/db/examples/cond_closed_over_variable.py:20:37: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/cond_branch_nonlocal_variables.py:47:16: error: Module not callable [operator] +torch/_export/db/examples/cond_branch_nonlocal_variables.py:51:32: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_export/db/examples/cond_branch_nonlocal_variables.py:54:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/cond_branch_nested_function.py:34:16: error: Module not callable [operator] +torch/_export/db/examples/cond_branch_nested_function.py:36:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/cond_branch_class_method.py:37:16: error: Module not callable [operator] +torch/_export/db/examples/cond_branch_class_method.py:39:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/class_method.py:21:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/autograd_function.py:24:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/assume_constant_result.py:18:17: error: Module has no attribute "randn" [attr-defined] +torch/_export/db/examples/assume_constant_result.py:18:36: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/_dynamo/test_dont_skip_tracing_functions.py:12:12: error: Incompatible return value type (got "int", expected "Tensor") [return-value] +torch/_dynamo/test_dont_skip_tracing_functions.py:16:12: error: Incompatible return value type (got "int", expected "Tensor") [return-value] +torch/_dynamo/test_dont_skip_tracing_functions.py:32:16: error: Incompatible return value type (got "int", expected "Tensor") [return-value] +torch/_dynamo/polyfills/tensor.py:14:10: error: Module has no attribute "DisableTorchFunctionSubclass" [attr-defined] +torch/_dynamo/polyfills/fx.py:4:1: error: Module "torch._C" has no attribute "_fx_map_aggregate" [attr-defined] +torch/_dynamo/polyfills/fx.py:4:1: error: Module "torch._C" has no attribute "_fx_map_arg" [attr-defined] +torch/_dynamo/backends/tvm.py:164:20: error: Module has no attribute "from_numpy" [attr-defined] +torch/_dynamo/backends/tvm.py:169:34: error: Module has no attribute "bool" [attr-defined] +torch/_dynamo/backends/cudagraphs.py:95:11: error: Name "torch.device" is not defined [name-defined] +torch/_dynamo/backends/cudagraphs.py:96:31: error: Name "torch.device" is not defined [name-defined] +torch/_dynamo/backends/cudagraphs.py:267:26: error: Module has no attribute "zeros_like" [attr-defined] +torch/_C/_distributed_rpc_testing.pyi:30:45: error: Name "torch.device" is not defined [name-defined] +torch/_C/_distributed_rpc_testing.pyi:31:23: error: Name "torch.device" is not defined [name-defined] +torch/utils/model_dump/__main__.py:5:10: error: "main" does not return a value (it only ever returns None) [func-returns-value] +torch/utils/data/datapipes/iter/callable.py:79:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/utils/benchmark/utils/compare.py:8:1: error: Module "torch" has no attribute "tensor"; maybe "Tensor"? [attr-defined] +torch/fx/experimental/normalize.py:131:9: error: Module has no attribute "add" [attr-defined] +torch/fx/experimental/normalize.py:132:9: error: Module has no attribute "mul" [attr-defined] +torch/fx/experimental/normalize.py:133:9: error: Module has no attribute "sub" [attr-defined] +torch/fx/experimental/normalize.py:134:9: error: Module has no attribute "div" [attr-defined] +torch/fx/experimental/normalize.py:135:9: error: Module has no attribute "floor_divide" [attr-defined] +torch/fx/experimental/normalize.py:136:9: error: Module has no attribute "remainder" [attr-defined] +torch/fx/experimental/normalize.py:137:9: error: Module has no attribute "eq" [attr-defined] +torch/fx/experimental/normalize.py:138:9: error: Module has no attribute "ne" [attr-defined] +torch/fx/experimental/normalize.py:139:9: error: Module has no attribute "lt" [attr-defined] +torch/fx/experimental/normalize.py:140:9: error: Module has no attribute "le" [attr-defined] +torch/fx/experimental/normalize.py:141:9: error: Module has no attribute "gt" [attr-defined] +torch/fx/experimental/normalize.py:142:9: error: Module has no attribute "ge" [attr-defined] +torch/fx/experimental/shape_inference/infer_shape.py:53:30: error: Module has no attribute "randn" [attr-defined] +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:155:26: error: Module has no attribute "bmm" [attr-defined] +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:332:26: error: Module has no attribute "ones" [attr-defined] +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:333:26: error: Module has no attribute "zeros" [attr-defined] +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:498:26: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:606:26: error: Module has no attribute "cumsum" [attr-defined] +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:974:26: error: Module has no attribute "full" [attr-defined] +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:989:26: error: Module has no attribute "arange" [attr-defined] +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1047:26: error: Module has no attribute "ne" [attr-defined] +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1049:26: error: Module has no attribute "add" [attr-defined] +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1053:48: error: Module has no attribute "add" [attr-defined] +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1123:26: error: Module has no attribute "flatten" [attr-defined] +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1259:26: error: Module has no attribute "_nn" [attr-defined] +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1337:26: error: Module has no attribute "reshape" [attr-defined] +torch/distributed/tensor/parallel/api.py:70:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/tensor/experimental/_tp_transform.py:87:45: error: Module has no attribute "arange" [attr-defined] +torch/distributed/tensor/debug/__init__.py:29:12: error: Module has no attribute "_get_DTensor_sharding_propagator_cache_stats" [attr-defined] +torch/distributed/tensor/debug/__init__.py:47:5: error: Module has no attribute "_clear_DTensor_sharding_propagator_cache" [attr-defined] +torch/distributed/rpc/_testing/__init__.py:8:27: error: Module has no attribute "_faulty_agent_init" [attr-defined] +torch/distributed/pipelining/_backward.py:196:13: error: Module has no attribute "ones_like" [attr-defined] +torch/distributed/pipelining/_backward.py:418:16: error: Module has no attribute "add" [attr-defined] +torch/distributed/nn/api/remote_module.py:13:1: error: Module "torch" has no attribute "device"; maybe "Device"? [attr-defined] +torch/distributed/nn/api/remote_module.py:13:1: error: Module "torch" has no attribute "dtype"; maybe "types"? [attr-defined] +torch/distributed/nn/api/remote_module.py:118:9: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/nn/api/remote_module.py:484:45: error: Module has no attribute "device" [attr-defined] +torch/distributed/debug/_frontend.py:33:1: error: Function is missing a return type annotation [no-untyped-def] +torch/distributed/debug/_frontend.py:224:5: error: Function is missing a return type annotation [no-untyped-def] +torch/distributed/debug/_frontend.py:224:5: note: Use "-> None" if function does not return a value +torch/distributed/checkpoint/staging.py:193:40: error: Module has no attribute "Stream" [attr-defined] +torch/distributed/checkpoint/staging.py:353:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/checkpoint/staging.py:353:32: error: Module has no attribute "device" [attr-defined] +torch/distributed/checkpoint/_consolidate_hf_safetensors.py:138:32: error: Module has no attribute "finfo" [attr-defined] +torch/distributed/checkpoint/_experimental/staging.py:158:40: error: Module has no attribute "Stream" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:30:31: error: Module has no attribute "float16" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:30:46: error: Module has no attribute "bfloat16" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:37:17: error: Module has no attribute "empty" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:74:21: error: Module has no attribute "sum" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:430:46: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:469:9: error: Module has no attribute "cat" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:471:14: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:489:45: error: Module has no attribute "empty" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:492:45: error: Module has no attribute "empty" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:511:27: error: Module has no attribute "stack" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:554:21: error: Module has no attribute "randn" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:564:9: error: Module has no attribute "bmm" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:598:13: error: Module has no attribute "bmm" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:617:13: error: Module has no attribute "bmm" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:753:46: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:786:28: error: Module has no attribute "randn" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:793:24: error: Module has no attribute "empty" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:808:5: error: Module has no attribute "matmul" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:819:9: error: Module has no attribute "matmul" [attr-defined] +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:839:9: error: Module has no attribute "matmul" [attr-defined] +torch/distributed/_tools/sac_estimator.py:398:27: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_tools/sac_estimator.py:426:22: error: Module has no attribute "Tag" [attr-defined] +torch/backends/_nnapi/prepare.py:68:17: error: Module has no attribute "empty_like" [attr-defined] +torch/backends/_nnapi/prepare.py:175:24: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/backends/_nnapi/prepare.py:175:54: error: Module has no attribute "int32" [attr-defined] +torch/ao/quantization/_correct_bias.py:147:30: error: Module has no attribute "mean" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:125:9: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:126:9: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:141:9: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:142:9: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:159:9: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:160:9: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:177:35: error: Module has no attribute "float" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:510:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:511:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:512:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:513:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:514:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:515:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:516:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:521:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:522:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:523:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:524:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:525:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:526:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:527:9: error: Module has no attribute "randn" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:761:38: error: Module has no attribute "float32" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:1026:55: error: Module has no attribute "cat" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:1139:28: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/detector.py:1059:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/detector.py:1060:41: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/quantization/fx/_model_report/detector.py:1072:21: error: Module has no attribute "flatten" [attr-defined] +torch/ao/quantization/fx/_model_report/detector.py:1074:40: error: Module has no attribute "aminmax" [attr-defined] +torch/ao/quantization/fx/_model_report/detector.py:1076:48: error: Module has no attribute "aminmax" [attr-defined] +torch/ao/quantization/fx/_model_report/detector.py:1077:31: error: Module has no attribute "min" [attr-defined] +torch/ao/quantization/fx/_model_report/detector.py:1078:31: error: Module has no attribute "max" [attr-defined] +torch/ao/quantization/fx/_model_report/detector.py:1178:17: error: Module has no attribute "sqrt" [attr-defined] +torch/ao/quantization/experimental/linear.py:63:34: error: Module has no attribute "transpose" [attr-defined] +torch/ao/quantization/experimental/linear.py:126:18: error: Module has no attribute "zeros" [attr-defined] +torch/ao/quantization/experimental/linear.py:141:52: error: Name "torch.FloatTensor" is not defined [name-defined] +torch/ao/quantization/experimental/linear.py:166:66: error: Module has no attribute "FloatTensor" [attr-defined] +torch/ao/quantization/experimental/adaround_optimization.py:33:16: error: Name "torch.dtype" is not defined [name-defined] +torch/ao/quantization/experimental/adaround_optimization.py:33:30: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/experimental/adaround_optimization.py:36:18: error: Name "torch.qscheme" is not defined [name-defined] +torch/ao/quantization/experimental/adaround_optimization.py:36:34: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/experimental/adaround_optimization.py:47:23: error: Module has no attribute "device" [attr-defined] +torch/ao/quantization/experimental/adaround_optimization.py:190:12: error: Module has no attribute "abs" [attr-defined] +torch/ao/quantization/experimental/adaround_optimization.py:196:22: error: Module has no attribute "vstack" [attr-defined] +torch/ao/quantization/experimental/adaround_optimization.py:197:22: error: Module has no attribute "vstack" [attr-defined] +torch/ao/quantization/experimental/adaround_optimization.py:205:57: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/pruning/_experimental/pruner/prune_functions.py:52:27: error: Module has no attribute "matmul" [attr-defined] +torch/ao/pruning/_experimental/pruner/prune_functions.py:53:43: error: Module has no attribute "transpose" [attr-defined] +torch/ao/pruning/_experimental/pruner/prune_functions.py:58:25: error: Module has no attribute "sum" [attr-defined] +torch/ao/pruning/_experimental/pruner/prune_functions.py:60:25: error: Module has no attribute "matmul" [attr-defined] +torch/ao/pruning/_experimental/pruner/prune_functions.py:61:28: error: Module has no attribute "transpose" [attr-defined] +torch/ao/pruning/_experimental/pruner/prune_functions.py:207:24: error: Module has no attribute "zeros" [attr-defined] +torch/ao/pruning/_experimental/pruner/prune_functions.py:341:22: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/pruning/_experimental/pruner/prune_functions.py:342:56: error: Module has no attribute "bool" [attr-defined] +torch/ao/pruning/_experimental/pruner/prune_functions.py:349:35: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/ao/pruning/_experimental/pruner/prune_functions.py:430:30: error: Module has no attribute "cat" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:64:16: error: Module has no attribute "ones_like" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:72:24: error: Module has no attribute "int8" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:83:20: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:83:49: error: Module has no attribute "int8" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:90:23: error: Module has no attribute "ones" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:103:25: error: Module has no attribute "sort" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:142:25: error: Module has no attribute "sort" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:173:25: error: Module has no attribute "abs" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:185:25: error: Module has no attribute "ones_like" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:187:25: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:204:21: error: Module has no attribute "where" [attr-defined] +torch/_subclasses/complex_tensor/_ops/prims.py:17:2: error: Untyped decorator makes function "convert_element_type_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/prims.py:18:56: error: Name "torch.dtype" is not defined [name-defined] +torch/_subclasses/complex_tensor/_ops/prims.py:27:2: error: Untyped decorator makes function "conj_physical_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/prims.py:32:2: error: Untyped decorator makes function "conj_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:32:1: error: Function is missing a return type annotation [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:33:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:38:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:52:2: error: Untyped decorator makes function "real_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:58:2: error: Untyped decorator makes function "imag_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:64:2: error: Untyped decorator makes function "is_pinned_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:65:49: error: Name "torch.device" is not defined [name-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:153:2: error: Untyped decorator makes function "rsub_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:154:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:156:16: error: Module has no attribute "sub" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:156:16: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_subclasses/complex_tensor/_ops/aten.py:157:12: error: Module has no attribute "sub" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:157:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_subclasses/complex_tensor/_ops/aten.py:160:2: error: Untyped decorator makes function "div_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:161:2: error: Untyped decorator makes function "div_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:162:1: error: Function is missing a return type annotation [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:162:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:181:2: error: Untyped decorator makes function "reciprocal_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:182:1: error: Function is missing a return type annotation [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:193:2: error: Untyped decorator makes function "prod_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:194:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:199:14: error: Module has no attribute "prod" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:199:25: error: Module has no attribute "abs" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:200:15: error: Module has no attribute "sum" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:200:25: error: Module has no attribute "angle" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:201:18: error: Module has no attribute "cos" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:202:18: error: Module has no attribute "sin" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:206:2: error: Untyped decorator makes function "pow_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:209:12: error: Module has no attribute "exp" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:209:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_subclasses/complex_tensor/_ops/aten.py:209:33: error: Module has no attribute "log" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:212:2: error: Untyped decorator makes function "cumprod_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:213:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:217:14: error: Module has no attribute "cumprod" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:217:28: error: Module has no attribute "abs" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:218:15: error: Module has no attribute "cumsum" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:218:28: error: Module has no attribute "angle" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:219:18: error: Module has no attribute "cos" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:220:18: error: Module has no attribute "sin" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:226:2: error: Untyped decorator makes function "abs_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:230:14: error: Module has no attribute "hypot" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:234:2: error: Untyped decorator makes function "angle_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:237:12: error: Module has no attribute "atan2" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:240:2: error: Untyped decorator makes function "acos_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:243:15: error: Module has no attribute "acosh" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:246:19: error: Module has no attribute "signbit" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:247:26: error: Module has no attribute "abs" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:250:2: error: Untyped decorator makes function "asin_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:253:16: error: Module has no attribute "asinh" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:259:2: error: Untyped decorator makes function "atan_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:262:15: error: Module has no attribute "atanh" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:268:2: error: Untyped decorator makes function "asinh_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:271:12: error: Module has no attribute "log" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:271:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_subclasses/complex_tensor/_ops/aten.py:271:29: error: Module has no attribute "sqrt" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:274:2: error: Untyped decorator makes function "acosh_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:277:12: error: Module has no attribute "log" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:277:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_subclasses/complex_tensor/_ops/aten.py:277:29: error: Module has no attribute "sqrt" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:280:2: error: Untyped decorator makes function "atanh_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:286:9: error: Module has no attribute "log" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:286:33: error: Argument 1 to "ComplexTensor" has incompatible type "int"; expected "Tensor" [arg-type] +torch/_subclasses/complex_tensor/_ops/aten.py:294:2: error: Untyped decorator makes function "cos_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:297:12: error: Module has no attribute "cosh" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:297:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_subclasses/complex_tensor/_ops/aten.py:300:2: error: Untyped decorator makes function "cosh_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:304:9: error: Module has no attribute "cosh" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:304:25: error: Module has no attribute "cos" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:305:9: error: Module has no attribute "sinh" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:305:25: error: Module has no attribute "sin" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:309:2: error: Untyped decorator makes function "sin_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:312:15: error: Module has no attribute "sinh" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:318:2: error: Untyped decorator makes function "sinh_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:322:9: error: Module has no attribute "sinh" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:322:25: error: Module has no attribute "cos" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:323:9: error: Module has no attribute "cosh" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:323:25: error: Module has no attribute "sin" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:327:2: error: Untyped decorator makes function "tan_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:330:15: error: Module has no attribute "tanh" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:336:2: error: Untyped decorator makes function "tanh_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:343:10: error: Module has no attribute "cosh" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:343:28: error: Module has no attribute "cos" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:344:13: error: Module has no attribute "sinh" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:347:14: error: Module has no attribute "sin" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:352:2: error: Untyped decorator makes function "exp_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:356:10: error: Module has no attribute "exp" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:357:14: error: Module has no attribute "cos" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:358:14: error: Module has no attribute "sin" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:362:2: error: Untyped decorator makes function "expm1_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:367:10: error: Module has no attribute "exp" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:368:14: error: Module has no attribute "cos" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:369:14: error: Module has no attribute "sin" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:373:2: error: Untyped decorator makes function "log_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:376:10: error: Module has no attribute "log" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:376:20: error: Module has no attribute "abs" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:377:10: error: Module has no attribute "angle" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:381:2: error: Untyped decorator makes function "log1p_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:385:12: error: Module has no attribute "log" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:385:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_subclasses/complex_tensor/_ops/aten.py:385:36: error: Argument 1 to "ComplexTensor" has incompatible type "int"; expected "Tensor" [arg-type] +torch/_subclasses/complex_tensor/_ops/aten.py:385:36: note: Error code "arg-type" not covered by "type: ignore" comment +torch/_subclasses/complex_tensor/_ops/aten.py:388:2: error: Untyped decorator makes function "any_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:389:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:391:12: error: Module has no attribute "any" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:394:2: error: Untyped decorator makes function "all_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:395:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:397:12: error: Module has no attribute "any" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:400:2: error: Untyped decorator makes function "eq_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:401:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:404:12: error: Module has no attribute "eq" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:407:2: error: Untyped decorator makes function "ne_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:408:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:411:12: error: Module has no attribute "ne" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:414:2: error: Untyped decorator makes function "isnan_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:417:12: error: Module has no attribute "isnan" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:420:2: error: Untyped decorator makes function "isinf_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:423:12: error: Module has no attribute "isinf" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:426:2: error: Untyped decorator makes function "isfinite_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:429:12: error: Module has no attribute "isfinite" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:432:2: error: Untyped decorator makes function "isclose_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:433:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:440:16: error: Module has no attribute "abs" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:441:17: error: Module has no attribute "abs" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:449:19: error: Module has no attribute "isnan" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:450:19: error: Module has no attribute "isnan" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:451:19: error: Module has no attribute "isnan" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:452:19: error: Module has no attribute "isnan" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:504:2: error: Untyped decorator makes function "masked_scatter_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:510:13: error: Module has no attribute "masked_scatter" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:511:13: error: Module has no attribute "masked_scatter" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:516:2: error: Untyped decorator makes function "where_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:521:13: error: Module has no attribute "where" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:522:13: error: Module has no attribute "where" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:527:2: error: Untyped decorator makes function "full_like_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:528:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:532:12: error: Name "torch.dtype" is not defined [name-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:538:16: error: Module has no attribute "full_like" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:544:13: error: Module has no attribute "full_like" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:545:13: error: Module has no attribute "full_like" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:551:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:552:44: error: Name "torch.dtype" is not defined [name-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:587:2: error: Untyped decorator makes function "cat_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:597:13: error: Module has no attribute "cat" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:598:13: error: Module has no attribute "cat" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:603:2: error: Untyped decorator makes function "sgn_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:607:16: error: Module has no attribute "abs" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:612:12: error: Module has no attribute "where" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:612:12: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/_subclasses/complex_tensor/_ops/aten.py:615:2: error: Untyped decorator makes function "sqrt_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:620:21: error: Module has no attribute "sqrt" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:620:32: error: Module has no attribute "abs" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:621:29: error: Module has no attribute "angle" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:623:29: error: Module has no attribute "cos" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:624:29: error: Module has no attribute "sin" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:629:2: error: Untyped decorator makes function "rsqrt_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:634:22: error: Module has no attribute "rsqrt" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:634:34: error: Module has no attribute "abs" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:635:34: error: Module has no attribute "angle" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:637:30: error: Module has no attribute "cos" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:638:30: error: Module has no attribute "sin" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:643:2: error: Untyped decorator makes function "addmm_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:648:16: error: Name "torch.dtype" is not defined [name-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:652:34: error: Module has no attribute "mm" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:663:12: error: Incompatible return value type (got "bool", expected "Tensor") [return-value] +torch/_subclasses/complex_tensor/_ops/aten.py:666:1: error: Function is missing a return type annotation [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:667:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:684:2: error: Untyped decorator makes function "logical_not_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:685:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:686:12: error: Module has no attribute "logical_not" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:689:2: error: Untyped decorator makes function "view_as_real_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:692:12: error: Module has no attribute "stack" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:695:2: error: Untyped decorator makes function "linalg_vector_norm_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:696:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:697:37: error: Module has no attribute "abs" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:700:2: error: Untyped decorator makes function "copy__impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:701:1: error: Function is missing a return type annotation [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:701:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:711:2: error: Untyped decorator makes function "_local_scalar_dense_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:712:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:719:2: error: Untyped decorator makes function "allclose_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:727:12: error: Module has no attribute "all" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:728:9: error: Module has no attribute "isclose" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:732:2: error: Untyped decorator makes function "stack_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:733:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:735:9: error: Module has no attribute "stack" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:736:9: error: Module has no attribute "stack" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:741:2: error: Untyped decorator makes function "conj_physical_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:742:2: error: Untyped decorator makes function "conj_physical_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:749:2: error: Untyped decorator makes function "_conj_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:752:30: error: Module has no attribute "_neg_view" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:755:2: error: Untyped decorator makes function "index_add_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:756:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:772:2: error: Untyped decorator makes function "index_add__impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:773:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:789:2: error: Untyped decorator makes function "masked_fill_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:803:2: error: Untyped decorator makes function "masked_fill__impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:816:2: error: Untyped decorator makes function "constant_pad_nd_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:817:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:832:2: error: Untyped decorator makes function "var_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:833:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:835:12: error: Module has no attribute "var" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:838:2: error: Untyped decorator makes function "scatter_add_impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:839:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:845:14: error: Module has no attribute "scatter_add" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:846:14: error: Module has no attribute "scatter_add" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:851:2: error: Untyped decorator makes function "scatter_add__impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:852:1: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:864:2: error: Untyped decorator makes function "index_put__impl" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:880:2: error: Untyped decorator makes function "tanh_backward" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:881:1: error: Function is missing a return type annotation [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:885:2: error: Untyped decorator makes function "diagonal_backward" untyped [misc] +torch/_subclasses/complex_tensor/_ops/aten.py:886:1: error: Function is missing a return type annotation [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:890:12: error: Module has no attribute "diagonal_scatter" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:893:21: error: Name "torch.dtype" is not defined [name-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:894:27: error: Module has no attribute "dtype" [attr-defined] +torch/_subclasses/complex_tensor/_ops/aten.py:900:1: error: Function is missing a return type annotation [no-untyped-def] +torch/_subclasses/complex_tensor/_ops/aten.py:903:5: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +torch/_inductor/runtime/caching/interfaces.py:332: error: Unexpected "..." [misc] +torch/_inductor/runtime/caching/interfaces.py:333: error: Unexpected "..." [misc] +torch/_inductor/kernel/mm_grouped.py:581:5: error: Module has no attribute "_grouped_mm" [attr-defined] +torch/_inductor/kernel/mm_grouped.py:589:5: error: Module has no attribute "_scaled_grouped_mm" [attr-defined] +torch/_inductor/kernel/mm_grouped.py:633:20: error: Module has no attribute "linspace" [attr-defined] +torch/_inductor/kernel/mm_grouped.py:641:20: error: Module has no attribute "linspace" [attr-defined] +torch/_inductor/kernel/mm_grouped.py:649:20: error: Module has no attribute "linspace" [attr-defined] +torch/_inductor/kernel/mm_grouped.py:668:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/kernel/mm_grouped.py:833:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/kernel/mm_grouped.py:865:25: error: Name "torch.dtype" is not defined [name-defined] +torch/_inductor/kernel/mm_grouped.py:872:30: error: Module has no attribute "bfloat16" [attr-defined] +torch/_inductor/kernel/conv.py:326:5: error: Module has no attribute "convolution" [attr-defined] +torch/_inductor/kernel/conv.py:334:9: error: Module has no attribute "squeeze" [attr-defined] +torch/_inductor/kernel/conv.py:335:12: error: Module has no attribute "matmul" [attr-defined] +torch/_export/pass_base.py:123:29: error: Module has no attribute "dequantize" [attr-defined] +torch/_export/pass_base.py:167:29: error: Module has no attribute "dequantize" [attr-defined] +torch/_export/pass_base.py:341:21: error: Module has no attribute "empty" [attr-defined] +torch/_export/pass_base.py:348:21: error: Module has no attribute "device" [attr-defined] +torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py:495:46: error: Module has no attribute "_valgrind_supported_platform" [attr-defined] +torch/distributed/tensor/examples/visualize_sharding_example.py:38:5: error: Module has no attribute "ones" [attr-defined] +torch/distributed/tensor/examples/visualize_sharding_example.py:50:5: error: Module has no attribute "ones" [attr-defined] +torch/distributed/tensor/examples/visualize_sharding_example.py:66:5: error: Module has no attribute "ones" [attr-defined] +torch/distributed/tensor/examples/visualize_sharding_example.py:86:5: error: Module has no attribute "ones" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:52:62: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:67:25: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:113:35: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:117:37: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:131:14: error: Module has no attribute "device" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:138:25: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:142:26: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:144:20: error: Module has no attribute "randn" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:187:12: error: Module has no attribute "equal" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:206:14: error: Module has no attribute "device" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:212:23: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:215:9: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:217:14: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:220:26: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:222:20: error: Module has no attribute "randn" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:262:12: error: Module has no attribute "equal" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:275:14: error: Module has no attribute "device" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:283:23: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:296:13: error: Module has no attribute "randn" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:298:18: error: Module has no attribute "empty" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:302:30: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:326:18: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:327:35: error: Module has no attribute "int64" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:363:20: error: Module has no attribute "equal" [attr-defined] +torch/distributed/tensor/examples/torchrec_sharding_example.py:367:61: error: Module has no attribute "Size" [attr-defined] +torch/distributed/pipelining/stage.py:103:13: error: Name "torch.device" is not defined [name-defined] +torch/distributed/pipelining/stage.py:108:12: error: Module has no attribute "empty" [attr-defined] +torch/distributed/pipelining/stage.py:128:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/pipelining/stage.py:935:23: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/pipelining/stage.py:935:64: error: Module has no attribute "float32" [attr-defined] +torch/distributed/pipelining/stage.py:936:23: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/pipelining/stage.py:937:57: error: Module has no attribute "float32" [attr-defined] +torch/distributed/pipelining/stage.py:1021:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/pipelining/stage.py:1295:13: error: Name "torch.device" is not defined [name-defined] +torch/distributed/pipelining/stage.py:1349:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/pipelining/stage.py:1458:37: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/checkpoint/filesystem.py:145:26: error: Name "torch.Stream" is not defined [name-defined] +torch/distributed/checkpoint/filesystem.py:187:39: error: Module has no attribute "device" [attr-defined] +torch/distributed/checkpoint/filesystem.py:342:27: error: Module has no attribute "device" [attr-defined] +torch/distributed/checkpoint/filesystem.py:390:35: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/distributed/_tools/mem_tracker.py:121:31: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_tools/mem_tracker.py:122:51: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_tools/mem_tracker.py:131:53: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_tools/mem_tracker.py:180:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_tools/mem_tracker.py:219:36: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_tools/mem_tracker.py:240:20: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_tools/mem_tracker.py:268:39: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_tools/mem_tracker.py:279:39: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_tools/mem_tracker.py:376:35: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_tools/mem_tracker.py:377:30: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_tools/mem_tracker.py:378:35: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_tools/mem_tracker.py:550:15: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_tools/fsdp2_mem_tracker.py:107:31: error: Name "torch.device" is not defined [name-defined] +torch/distributed/_tools/fsdp2_mem_tracker.py:108:38: error: Name "torch.device" is not defined [name-defined] +torch/ao/quantization/quantize_pt2e.py:93:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize_pt2e.py:171:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantize_pt2e.py:238:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer.py:59:14: error: Module has no attribute "ones" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer.py:60:12: error: Module has no attribute "ones" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer.py:61:11: error: Module has no attribute "ones" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer.py:82:18: error: Module has no attribute "add" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer.py:134:15: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer.py:137:17: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer.py:144:9: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer.py:144:60: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer.py:157:30: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/quantizer/xnnpack_quantizer.py:162:15: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/quantizer/x86_inductor_quantizer.py:194:17: error: Module has no attribute "cat" [attr-defined] +torch/ao/quantization/quantizer/x86_inductor_quantizer.py:205:17: error: Module has no attribute "flatten" [attr-defined] +torch/ao/quantization/quantizer/x86_inductor_quantizer.py:211:17: error: Module has no attribute "matmul" [attr-defined] +torch/ao/quantization/quantizer/x86_inductor_quantizer.py:300:15: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/quantizer/x86_inductor_quantizer.py:303:17: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/quantizer/x86_inductor_quantizer.py:318:15: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/quantizer/x86_inductor_quantizer.py:321:17: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/quantizer/x86_inductor_quantizer.py:346:15: error: Module has no attribute "float16" [attr-defined] +torch/ao/quantization/quantizer/embedding_quantizer.py:29:15: error: Module has no attribute "uint8" [attr-defined] +torch/ao/quantization/quantizer/embedding_quantizer.py:30:17: error: Module has no attribute "per_channel_affine_float_qparams" [attr-defined] +torch/ao/quantization/fx/_model_report/model_report.py:378:24: error: No overload variant of "sum" matches argument type "bool" [call-overload] +torch/ao/quantization/fx/_model_report/model_report.py:378:24: note: Possible overload variants: +torch/ao/quantization/fx/_model_report/model_report.py:378:24: note: def sum(Iterable[bool], /, start: int = ...) -> int +torch/ao/quantization/fx/_model_report/model_report.py:378:24: note: def [_SupportsSumNoDefaultT: _SupportsSumWithNoDefaultGiven] sum(Iterable[_SupportsSumNoDefaultT], /) -> _SupportsSumNoDefaultT | Literal[0] +torch/ao/quantization/fx/_model_report/model_report.py:378:24: note: def [_AddableT1: SupportsAdd[Any, Any], _AddableT2: SupportsAdd[Any, Any]] sum(Iterable[_AddableT1], /, start: _AddableT2) -> _AddableT1 | _AddableT2 +torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:188:21: error: Module has no attribute "flatten" [attr-defined] +torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:200:21: error: Module has no attribute "flatten" [attr-defined] +torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:248:17: error: Module has no attribute "ones" [attr-defined] +torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:248:51: error: Module has no attribute "bool" [attr-defined] +torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py:18:24: error: Name "torch._C.FunctionSchema" is not defined [name-defined] +torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py:25:38: error: Name "torch._C.FunctionSchema" is not defined [name-defined] +torch/utils/benchmark/utils/timer.py:311:24: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:80:72: error: Name "torch.device" is not defined [name-defined] +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:169:30: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:170:32: error: Module has no attribute "int" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:173:34: error: Module has no attribute "argsort" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:183:23: error: Name "torch.device" is not defined [name-defined] +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:255:16: error: Module has no attribute "stack" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:282:21: error: Module has no attribute "arange" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:289:21: error: Module has no attribute "arange" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:298:26: error: Module has no attribute "cat" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:300:30: error: Module has no attribute "argsort" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:358:40: error: Module has no attribute "sort" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:361:46: error: Module has no attribute "flip" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:364:26: error: Module has no attribute "where" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:365:13: error: Module has no attribute "arange" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:375:29: error: Module has no attribute "sort" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:468:19: error: Module has no attribute "arange" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:474:34: error: Module has no attribute "argsort" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:480:53: error: Name "torch.device" is not defined [name-defined] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:135:12: error: Module has no attribute "cat" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:147:27: error: Module has no attribute "float32" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:148:27: error: Module has no attribute "float32" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:210:26: error: Module has no attribute "float32" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:211:26: error: Module has no attribute "float32" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:431:23: error: Module has no attribute "cat" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:505:19: error: Module has no attribute "float32" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:506:18: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:507:16: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:508:18: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:526:23: error: Module has no attribute "cat" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:577:27: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:578:25: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:579:27: error: Module has no attribute "zeros_like" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:618:24: error: Module has no attribute "cat" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:1035:1: error: Need type annotation for "_compiled_create_block_mask" (hint: "_compiled_create_block_mask: | None = ...") [var-annotated] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:1096:30: error: Module has no attribute "index_select" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:1106:37: error: Module has no attribute "index_select" [attr-defined] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:1231:20: error: Incompatible return value type (got "int", expected "Tensor") [return-value] +torch/distributed/tensor/experimental/_context_parallel/_attention.py:1625:39: error: Module has no attribute "index_select" [attr-defined] +torch/distributed/pipelining/schedules.py:626:39: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/distributed/pipelining/schedules.py:644:34: error: Module has no attribute "tensor_split" [attr-defined] +torch/distributed/pipelining/schedules.py:1621:21: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/distributed/pipelining/schedules.py:1642:34: error: Module has no attribute "tensor_split" [attr-defined] +torch/distributed/pipelining/_IR.py:503:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/pipelining/_IR.py:1122:17: error: Name "torch.device" is not defined [name-defined] +torch/distributed/examples/memory_tracker_example.py:37:9: error: Module has no attribute "rand" [attr-defined] +torch/distributed/_tools/ilp_utils.py:83:10: error: Name "torch.device" is not defined [name-defined] +torch/ao/quantization/quantizer/xpu_inductor_quantizer.py:32:15: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/quantizer/xpu_inductor_quantizer.py:35:17: error: Module has no attribute "per_tensor_affine" [attr-defined] +torch/ao/quantization/quantizer/xpu_inductor_quantizer.py:47:15: error: Module has no attribute "int8" [attr-defined] +torch/ao/quantization/quantizer/xpu_inductor_quantizer.py:50:17: error: Module has no attribute "per_channel_symmetric" [attr-defined] +torch/ao/quantization/experimental/qconfig.py:12:38: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/experimental/qconfig.py:12:72: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/experimental/qconfig.py:19:38: error: Module has no attribute "per_tensor_symmetric" [attr-defined] +torch/ao/quantization/experimental/qconfig.py:19:72: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/experimental/qconfig.py:31:55: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/experimental/qconfig.py:36:59: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/experimental/qconfig.py:37:55: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/experimental/qconfig.py:49:55: error: Module has no attribute "qint8" [attr-defined] +torch/ao/quantization/experimental/qconfig.py:54:59: error: Module has no attribute "quint8" [attr-defined] +torch/ao/quantization/experimental/qconfig.py:55:55: error: Module has no attribute "qint8" [attr-defined] +torch/ao/pruning/_experimental/pruner/FPGM_pruner.py:66:21: error: Module has no attribute "stack" [attr-defined] +torch/ao/pruning/_experimental/pruner/FPGM_pruner.py:73:20: error: Module has no attribute "sum" [attr-defined] +torch/ao/pruning/_experimental/pruner/FPGM_pruner.py:73:30: error: Module has no attribute "abs" [attr-defined] +torch/ao/pruning/_experimental/pruner/FPGM_pruner.py:84:25: error: Module has no attribute "ones_like" [attr-defined] +torch/ao/pruning/_experimental/pruner/FPGM_pruner.py:86:25: error: Module has no attribute "zeros_like" [attr-defined] +torch/ao/pruning/_experimental/pruner/FPGM_pruner.py:95:20: error: Module has no attribute "topk" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/benchmarks/evaluate_disk_savings.py:108:14: error: Module has no attribute "device" [attr-defined] +torch/testing/_internal/common_utils.py:137:20: error: _CudaDeviceProperties? has no attribute "gcnArchName" [attr-defined] +torch/testing/_internal/common_utils.py:334:64: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/testing/_internal/common_utils.py:687:30: error: Module has no attribute "dtype" [attr-defined] +torch/testing/_internal/common_utils.py:689:32: error: Module has no attribute "device" [attr-defined] +torch/testing/_internal/common_utils.py:877:27: error: Module has no attribute "_jit_set_profiling_executor" [attr-defined] +torch/testing/_internal/common_utils.py:878:27: error: Module has no attribute "_get_graph_executor_optimize" [attr-defined] +torch/testing/_internal/common_utils.py:879:5: error: Module has no attribute "_jit_set_profiling_executor" [attr-defined] +torch/testing/_internal/common_utils.py:880:5: error: Module has no attribute "_get_graph_executor_optimize" [attr-defined] +torch/testing/_internal/common_utils.py:896:31: error: Module has no attribute "_jit_set_profiling_executor" [attr-defined] +torch/testing/_internal/common_utils.py:897:31: error: Module has no attribute "_get_graph_executor_optimize" [attr-defined] +torch/testing/_internal/common_utils.py:902:13: error: Module has no attribute "_jit_set_profiling_executor" [attr-defined] +torch/testing/_internal/common_utils.py:903:13: error: Module has no attribute "_get_graph_executor_optimize" [attr-defined] +torch/testing/_internal/common_utils.py:907:27: error: Module has no attribute "_jit_set_profiling_executor" [attr-defined] +torch/testing/_internal/common_utils.py:908:27: error: Module has no attribute "_get_graph_executor_optimize" [attr-defined] +torch/testing/_internal/common_utils.py:912:9: error: Module has no attribute "_jit_set_profiling_executor" [attr-defined] +torch/testing/_internal/common_utils.py:913:9: error: Module has no attribute "_get_graph_executor_optimize" [attr-defined] +torch/testing/_internal/common_utils.py:917:20: error: Module has no attribute "_jit_set_num_profiled_runs" [attr-defined] +torch/testing/_internal/common_utils.py:921:9: error: Module has no attribute "_jit_set_num_profiled_runs" [attr-defined] +torch/testing/_internal/common_utils.py:923:13: error: Module has no attribute "ScriptFunction" [attr-defined] +torch/testing/_internal/common_utils.py:924:13: error: Module has no attribute "ScriptMethod" [attr-defined] +torch/testing/_internal/common_utils.py:948:1: error: Module has no attribute "ScriptFunction" [attr-defined] +torch/testing/_internal/common_utils.py:948:1: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/testing/_internal/common_utils.py:949:1: error: Module has no attribute "ScriptMethod" [attr-defined] +torch/testing/_internal/common_utils.py:949:1: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/testing/_internal/common_utils.py:1460:32: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/testing/_internal/common_utils.py:1517:36: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/testing/_internal/common_utils.py:1519:32: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +torch/testing/_internal/common_utils.py:1931:21: error: Module has no attribute "bool" [attr-defined] +torch/testing/_internal/common_utils.py:1932:21: error: Module has no attribute "uint8" [attr-defined] +torch/testing/_internal/common_utils.py:1933:21: error: Module has no attribute "uint16" [attr-defined] +torch/testing/_internal/common_utils.py:1934:21: error: Module has no attribute "uint32" [attr-defined] +torch/testing/_internal/common_utils.py:1935:21: error: Module has no attribute "uint64" [attr-defined] +torch/testing/_internal/common_utils.py:1936:21: error: Module has no attribute "int8" [attr-defined] +torch/testing/_internal/common_utils.py:1937:21: error: Module has no attribute "int16" [attr-defined] +torch/testing/_internal/common_utils.py:1938:21: error: Module has no attribute "int32" [attr-defined] +torch/testing/_internal/common_utils.py:1939:21: error: Module has no attribute "int64" [attr-defined] +torch/testing/_internal/common_utils.py:1940:21: error: Module has no attribute "float16" [attr-defined] +torch/testing/_internal/common_utils.py:1941:21: error: Module has no attribute "float32" [attr-defined] +torch/testing/_internal/common_utils.py:1942:21: error: Module has no attribute "float64" [attr-defined] +torch/testing/_internal/common_utils.py:1943:21: error: Module has no attribute "complex64" [attr-defined] +torch/testing/_internal/common_utils.py:1944:21: error: Module has no attribute "complex128" [attr-defined] +torch/testing/_internal/common_utils.py:1971:42: error: Module has no attribute "int" [attr-defined] +torch/testing/_internal/common_utils.py:1976:5: error: Module has no attribute "bfloat16" [attr-defined] +torch/testing/_internal/common_utils.py:1977:5: error: Module has no attribute "complex32" [attr-defined] +torch/testing/_internal/common_utils.py:2021:12: error: _CudaDeviceProperties? has no attribute "gcnArchName" [attr-defined] +torch/testing/_internal/common_utils.py:2360:13: error: Module has no attribute "from_numpy" [attr-defined] +torch/testing/_internal/common_utils.py:2389:16: error: Module has no attribute "has_lapack" [attr-defined] +torch/testing/_internal/common_utils.py:2508:19: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/testing/_internal/common_utils.py:2517:25: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/testing/_internal/common_utils.py:2574:13: error: Module has no attribute "_cuda_setStream" [attr-defined] +torch/testing/_internal/common_utils.py:2577:9: error: Module has no attribute "_cuda_setDevice" [attr-defined] +torch/testing/_internal/common_utils.py:2584:13: error: Module has no attribute "_cuda_setStream" [attr-defined] +torch/testing/_internal/common_utils.py:2587:9: error: Module has no attribute "_cuda_setDevice" [attr-defined] +torch/testing/_internal/common_utils.py:2616:17: error: Module has no attribute "_cuda_clearCublasWorkspaces" [attr-defined] +torch/testing/_internal/common_utils.py:2639:13: error: Module has no attribute "_cuda_clearCublasWorkspaces" [attr-defined] +torch/testing/_internal/common_utils.py:2953:14: error: Module has no attribute "int64" [attr-defined] +torch/testing/_internal/common_utils.py:2954:16: error: Module has no attribute "float32" [attr-defined] +torch/testing/_internal/common_utils.py:2955:18: error: Module has no attribute "complex64" [attr-defined] +torch/testing/_internal/common_utils.py:3036:16: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/testing/_internal/common_utils.py:3039:17: error: Module has no attribute "quint8" [attr-defined] +torch/testing/_internal/common_utils.py:3039:31: error: Module has no attribute "uint8" [attr-defined] +torch/testing/_internal/common_utils.py:3040:17: error: Module has no attribute "quint4x2" [attr-defined] +torch/testing/_internal/common_utils.py:3040:33: error: Module has no attribute "uint8" [attr-defined] +torch/testing/_internal/common_utils.py:3041:17: error: Module has no attribute "quint2x4" [attr-defined] +torch/testing/_internal/common_utils.py:3041:33: error: Module has no attribute "uint8" [attr-defined] +torch/testing/_internal/common_utils.py:3042:17: error: Module has no attribute "qint32" [attr-defined] +torch/testing/_internal/common_utils.py:3042:31: error: Module has no attribute "int32" [attr-defined] +torch/testing/_internal/common_utils.py:3043:17: error: Module has no attribute "qint8" [attr-defined] +torch/testing/_internal/common_utils.py:3043:30: error: Module has no attribute "int8" [attr-defined] +torch/testing/_internal/common_utils.py:3537:20: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/testing/_internal/common_utils.py:3537:49: error: Module has no attribute "float" [attr-defined] +torch/testing/_internal/common_utils.py:3540:33: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/testing/_internal/common_utils.py:3554:20: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/testing/_internal/common_utils.py:3554:49: error: Module has no attribute "float" [attr-defined] +torch/testing/_internal/common_utils.py:3627:18: error: Module has no attribute "zeros" [attr-defined] +torch/testing/_internal/common_utils.py:3627:62: error: Module has no attribute "device" [attr-defined] +torch/testing/_internal/common_utils.py:3680:27: error: Module has no attribute "arange" [attr-defined] +torch/testing/_internal/common_utils.py:3682:36: error: Module has no attribute "arange" [attr-defined] +torch/testing/_internal/common_utils.py:3694:20: error: Module has no attribute "randperm" [attr-defined] +torch/testing/_internal/common_utils.py:3721:29: error: Module has no attribute "zeros" [attr-defined] +torch/testing/_internal/common_utils.py:3724:85: error: Module has no attribute "sort" [attr-defined] +torch/testing/_internal/common_utils.py:3725:21: error: Module has no attribute "randperm" [attr-defined] +torch/testing/_internal/common_utils.py:3726:34: error: Module has no attribute "uint8" [attr-defined] +torch/testing/_internal/common_utils.py:3727:34: error: Module has no attribute "uint8" [attr-defined] +torch/testing/_internal/common_utils.py:3734:23: error: Module has no attribute "sparse_csr" [attr-defined] +torch/testing/_internal/common_utils.py:3734:41: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/testing/_internal/common_utils.py:3742:18: error: Module has no attribute "stack" [attr-defined] +torch/testing/_internal/common_utils.py:3743:30: error: Module has no attribute "stack" [attr-defined] +torch/testing/_internal/common_utils.py:3744:25: error: Module has no attribute "stack" [attr-defined] +torch/testing/_internal/common_utils.py:3745:16: error: Module has no attribute "sparse_compressed_tensor" [attr-defined] +torch/testing/_internal/common_utils.py:3749:65: error: Module has no attribute "sparse_csr" [attr-defined] +torch/testing/_internal/common_utils.py:3753:65: error: Module has no attribute "sparse_csc" [attr-defined] +torch/testing/_internal/common_utils.py:3758:65: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/testing/_internal/common_utils.py:3763:65: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/testing/_internal/common_utils.py:3773:13: error: Module has no attribute "rand" [attr-defined] +torch/testing/_internal/common_utils.py:3774:16: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/testing/_internal/common_utils.py:3775:18: error: Module has no attribute "long" [attr-defined] +torch/testing/_internal/common_utils.py:3779:17: error: Module has no attribute "cat" [attr-defined] +torch/testing/_internal/common_utils.py:3780:13: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/testing/_internal/common_utils.py:3780:43: error: Module has no attribute "Size" [attr-defined] +torch/testing/_internal/common_utils.py:3833:27: error: Module has no attribute "int64" [attr-defined] +torch/testing/_internal/common_utils.py:3835:50: error: Module has no attribute "sparse_csr" [attr-defined] +torch/testing/_internal/common_utils.py:3835:68: error: Module has no attribute "sparse_csc" [attr-defined] +torch/testing/_internal/common_utils.py:3835:86: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/testing/_internal/common_utils.py:3835:104: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/testing/_internal/common_utils.py:3848:30: error: Module has no attribute "strided" [attr-defined] +torch/testing/_internal/common_utils.py:3856:32: error: Module has no attribute "sparse_coo" [attr-defined] +torch/testing/_internal/common_utils.py:3857:27: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/testing/_internal/common_utils.py:3860:27: error: Module has no attribute "sparse_compressed_tensor" [attr-defined] +torch/testing/_internal/common_utils.py:3873:25: error: Module has no attribute "arange" [attr-defined] +torch/testing/_internal/common_utils.py:3887:23: error: Module has no attribute "where" [attr-defined] +torch/testing/_internal/common_utils.py:3888:27: error: Module has no attribute "stack" [attr-defined] +torch/testing/_internal/common_utils.py:3889:28: error: Module has no attribute "zeros" [attr-defined] +torch/testing/_internal/common_utils.py:3889:63: error: Module has no attribute "int64" [attr-defined] +torch/testing/_internal/common_utils.py:3890:32: error: Module has no attribute "cumsum" [attr-defined] +torch/testing/_internal/common_utils.py:3892:30: error: Module has no attribute "zeros" [attr-defined] +torch/testing/_internal/common_utils.py:3892:58: error: Module has no attribute "int64" [attr-defined] +torch/testing/_internal/common_utils.py:3897:22: error: Module has no attribute "arange" [attr-defined] +torch/testing/_internal/common_utils.py:3897:65: error: Module has no attribute "int64" [attr-defined] +torch/testing/_internal/common_utils.py:3900:25: error: Module has no attribute "where" [attr-defined] +torch/testing/_internal/common_utils.py:3901:29: error: Module has no attribute "stack" [attr-defined] +torch/testing/_internal/common_utils.py:3902:28: error: Module has no attribute "zeros" [attr-defined] +torch/testing/_internal/common_utils.py:3902:63: error: Module has no attribute "int64" [attr-defined] +torch/testing/_internal/common_utils.py:3903:32: error: Module has no attribute "cumsum" [attr-defined] +torch/testing/_internal/common_utils.py:3907:21: error: Module has no attribute "sparse_coo" [attr-defined] +torch/testing/_internal/common_utils.py:3908:21: error: Module has no attribute "sparse_csr" [attr-defined] +torch/testing/_internal/common_utils.py:3909:21: error: Module has no attribute "sparse_csc" [attr-defined] +torch/testing/_internal/common_utils.py:3910:21: error: Module has no attribute "strided" [attr-defined] +torch/testing/_internal/common_utils.py:3917:44: error: Module has no attribute "strided" [attr-defined] +torch/testing/_internal/common_utils.py:3918:40: error: Module has no attribute "sparse_coo" [attr-defined] +torch/testing/_internal/common_utils.py:3919:26: error: Module has no attribute "stack" [attr-defined] +torch/testing/_internal/common_utils.py:3926:48: error: Module has no attribute "sparse_csc" [attr-defined] +torch/testing/_internal/common_utils.py:3928:21: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/testing/_internal/common_utils.py:3928:52: error: Module has no attribute "sparse_csr" [attr-defined] +torch/testing/_internal/common_utils.py:3929:21: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/testing/_internal/common_utils.py:3929:52: error: Module has no attribute "sparse_csc" [attr-defined] +torch/testing/_internal/common_utils.py:3942:34: error: Module has no attribute "sparse_coo" [attr-defined] +torch/testing/_internal/common_utils.py:3946:44: error: Module has no attribute "cat" [attr-defined] +torch/testing/_internal/common_utils.py:3946:55: error: Module has no attribute "full" [attr-defined] +torch/testing/_internal/common_utils.py:3946:91: error: Module has no attribute "int64" [attr-defined] +torch/testing/_internal/common_utils.py:3950:44: error: Module has no attribute "cat" [attr-defined] +torch/testing/_internal/common_utils.py:3950:44: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/testing/_internal/common_utils.py:3951:44: error: Module has no attribute "cat" [attr-defined] +torch/testing/_internal/common_utils.py:3957:48: error: Module has no attribute "cat" [attr-defined] +torch/testing/_internal/common_utils.py:3957:48: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/testing/_internal/common_utils.py:3975:24: error: Module has no attribute "stack" [attr-defined] +torch/testing/_internal/common_utils.py:3977:24: error: Module has no attribute "zeros" [attr-defined] +torch/testing/_internal/common_utils.py:3977:53: error: Module has no attribute "int64" [attr-defined] +torch/testing/_internal/common_utils.py:3978:17: error: Module has no attribute "arange" [attr-defined] +torch/testing/_internal/common_utils.py:3978:50: error: Module has no attribute "int64" [attr-defined] +torch/testing/_internal/common_utils.py:3980:21: error: Module has no attribute "arange" [attr-defined] +torch/testing/_internal/common_utils.py:3980:43: error: Module has no attribute "int64" [attr-defined] +torch/testing/_internal/common_utils.py:4050:19: error: Module has no attribute "zeros" [attr-defined] +torch/testing/_internal/common_utils.py:4063:23: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/testing/_internal/common_utils.py:4063:51: error: Module has no attribute "int64" [attr-defined] +torch/testing/_internal/common_utils.py:4099:38: error: Module has no attribute "strided" [attr-defined] +torch/testing/_internal/common_utils.py:4101:38: error: Module has no attribute "empty" [attr-defined] +torch/testing/_internal/common_utils.py:4102:40: error: Module has no attribute "sparse_coo" [attr-defined] +torch/testing/_internal/common_utils.py:4103:40: error: Module has no attribute "empty" [attr-defined] +torch/testing/_internal/common_utils.py:4103:40: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/testing/_internal/common_utils.py:4104:38: error: Module has no attribute "empty" [attr-defined] +torch/testing/_internal/common_utils.py:4105:40: error: Module has no attribute "sparse_csr" [attr-defined] +torch/testing/_internal/common_utils.py:4106:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/testing/_internal/common_utils.py:4107:43: error: Module has no attribute "empty" [attr-defined] +torch/testing/_internal/common_utils.py:4109:38: error: Module has no attribute "empty" [attr-defined] +torch/testing/_internal/common_utils.py:4110:40: error: Module has no attribute "sparse_csc" [attr-defined] +torch/testing/_internal/common_utils.py:4111:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/testing/_internal/common_utils.py:4112:43: error: Module has no attribute "empty" [attr-defined] +torch/testing/_internal/common_utils.py:4114:38: error: Module has no attribute "empty" [attr-defined] +torch/testing/_internal/common_utils.py:4115:40: error: Module has no attribute "sparse_bsr" [attr-defined] +torch/testing/_internal/common_utils.py:4116:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/testing/_internal/common_utils.py:4117:43: error: Module has no attribute "empty" [attr-defined] +torch/testing/_internal/common_utils.py:4119:38: error: Module has no attribute "empty" [attr-defined] +torch/testing/_internal/common_utils.py:4120:40: error: Module has no attribute "sparse_bsc" [attr-defined] +torch/testing/_internal/common_utils.py:4121:44: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/testing/_internal/common_utils.py:4122:43: error: Module has no attribute "empty" [attr-defined] +torch/testing/_internal/common_utils.py:4124:38: error: Module has no attribute "empty" [attr-defined] +torch/testing/_internal/common_utils.py:4134:24: error: Module has no attribute "sparse_coo" [attr-defined] +torch/testing/_internal/common_utils.py:4163:31: error: Module has no attribute "bfloat16" [attr-defined] +torch/testing/_internal/common_utils.py:4169:15: error: Module has no attribute "bfloat16" [attr-defined] +torch/testing/_internal/common_utils.py:4171:17: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/testing/_internal/common_utils.py:4179:29: error: Module has no attribute "from_numpy" [attr-defined] +torch/testing/_internal/common_utils.py:4183:29: error: Module has no attribute "from_numpy" [attr-defined] +torch/testing/_internal/common_utils.py:4184:27: error: Module has no attribute "bfloat16" [attr-defined] +torch/testing/_internal/common_utils.py:4184:106: error: Module has no attribute "float" [attr-defined] +torch/testing/_internal/common_utils.py:4185:48: error: Module has no attribute "float" [attr-defined] +torch/testing/_internal/common_utils.py:4199:17: error: Module has no attribute "ones_like" [attr-defined] +torch/testing/_internal/common_utils.py:4202:17: error: Module has no attribute "ones_like" [attr-defined] +torch/testing/_internal/common_utils.py:4202:38: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/testing/_internal/common_utils.py:4240:17: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/testing/_internal/common_utils.py:4242:17: error: Module has no attribute "as_tensor"; maybe "is_tensor"? [attr-defined] +torch/testing/_internal/common_utils.py:4245:72: error: Module has no attribute "strided" [attr-defined] +torch/testing/_internal/common_utils.py:4247:72: error: Module has no attribute "strided" [attr-defined] +torch/testing/_internal/common_utils.py:4758:49: error: Module has no attribute "double" [attr-defined] +torch/testing/_internal/common_utils.py:4760:9: error: Module has no attribute "randn" [attr-defined] +torch/testing/_internal/common_utils.py:4778:9: error: Module has no attribute "float" [attr-defined] +torch/testing/_internal/common_utils.py:4779:9: error: Module has no attribute "double" [attr-defined] +torch/testing/_internal/common_utils.py:4780:9: error: Module has no attribute "cfloat" [attr-defined] +torch/testing/_internal/common_utils.py:4780:23: error: Module has no attribute "float" [attr-defined] +torch/testing/_internal/common_utils.py:4781:9: error: Module has no attribute "cdouble" [attr-defined] +torch/testing/_internal/common_utils.py:4781:24: error: Module has no attribute "double" [attr-defined] +torch/testing/_internal/common_utils.py:4783:9: error: Module has no attribute "rand" [attr-defined] +torch/testing/_internal/common_utils.py:4787:10: error: Module has no attribute "randn" [attr-defined] +torch/testing/_internal/common_utils.py:4803:21: error: Module has no attribute "bool" [attr-defined] +torch/testing/_internal/common_utils.py:4817:33: error: Module has no attribute "double" [attr-defined] +torch/testing/_internal/common_utils.py:4819:9: error: Module has no attribute "randn" [attr-defined] +torch/testing/_internal/common_utils.py:4832:33: error: Module has no attribute "double" [attr-defined] +torch/testing/_internal/common_utils.py:4834:9: error: Module has no attribute "randn" [attr-defined] +torch/testing/_internal/common_utils.py:4847:33: error: Module has no attribute "double" [attr-defined] +torch/testing/_internal/common_utils.py:4849:9: error: Module has no attribute "randn" [attr-defined] +torch/testing/_internal/common_utils.py:4853:65: error: Module has no attribute "double" [attr-defined] +torch/testing/_internal/common_utils.py:4861:9: error: Module has no attribute "randn" [attr-defined] +torch/testing/_internal/common_utils.py:4867:33: error: Module has no attribute "double" [attr-defined] +torch/testing/_internal/common_utils.py:4869:9: error: Module has no attribute "randn" [attr-defined] +torch/testing/_internal/common_utils.py:4871:12: error: Module has no attribute "matmul" [attr-defined] +torch/testing/_internal/common_utils.py:4872:11: error: Module has no attribute "eye" [attr-defined] +torch/testing/_internal/common_utils.py:4880:9: error: Module has no attribute "eye" [attr-defined] +torch/testing/_internal/common_utils.py:4891:9: error: Module has no attribute "randn" [attr-defined] +torch/testing/_internal/common_utils.py:4893:23: error: Module has no attribute "eye" [attr-defined] +torch/testing/_internal/common_utils.py:4906:13: error: Module has no attribute "arange" [attr-defined] +torch/testing/_internal/common_utils.py:4926:33: error: Module has no attribute "double" [attr-defined] +torch/testing/_internal/common_utils.py:4930:23: error: Module has no attribute "has_lapack" [attr-defined] +torch/testing/_internal/common_utils.py:4931:16: error: Module has no attribute "ones" [attr-defined] +torch/testing/_internal/common_utils.py:4933:9: error: Module has no attribute "randn" [attr-defined] +torch/testing/_internal/common_utils.py:4938:9: error: Module has no attribute "linspace" [attr-defined] +torch/testing/_internal/common_utils.py:4968:12: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/testing/_internal/common_utils.py:4979:33: error: Module has no attribute "double" [attr-defined] +torch/testing/_internal/common_utils.py:4984:14: error: Module has no attribute "randn" [attr-defined] +torch/testing/_internal/common_utils.py:4987:15: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/testing/_internal/common_utils.py:4988:9: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/testing/_internal/common_utils.py:5051:21: error: Module has no attribute "float16" [attr-defined] +torch/testing/_internal/common_utils.py:5052:19: error: Module has no attribute "zeros" [attr-defined] +torch/testing/_internal/common_utils.py:5059:13: error: Module has no attribute "Size" [attr-defined] +torch/testing/_internal/common_utils.py:5075:20: error: Module has no attribute "int64" [attr-defined] +torch/testing/_internal/common_utils.py:5078:21: error: Module has no attribute "get_default_dtype"; maybe "get_default_device"? [attr-defined] +torch/testing/_internal/common_utils.py:5079:17: error: Module has no attribute "empty" [attr-defined] +torch/testing/_internal/common_utils.py:5079:52: error: Module has no attribute "strided" [attr-defined] +torch/testing/_internal/common_utils.py:5080:17: error: Module has no attribute "full" [attr-defined] +torch/testing/_internal/common_utils.py:5080:56: error: Module has no attribute "strided" [attr-defined] +torch/testing/_internal/common_utils.py:5084:17: error: Module has no attribute "empty" [attr-defined] +torch/testing/_internal/common_utils.py:5087:25: error: Module has no attribute "empty" [attr-defined] +torch/testing/_internal/common_utils.py:5092:25: error: Module has no attribute "empty_like" [attr-defined] +torch/testing/_internal/common_utils.py:5093:25: error: Module has no attribute "empty_like" [attr-defined] +torch/testing/_internal/common_utils.py:5096:29: error: Module has no attribute "float16" [attr-defined] +torch/testing/_internal/common_utils.py:5096:57: error: Module has no attribute "sparse_coo" [attr-defined] +torch/testing/_internal/common_utils.py:5098:21: error: Module has no attribute "full" [attr-defined] +torch/testing/_internal/common_utils.py:5102:29: error: Module has no attribute "full" [attr-defined] +torch/testing/_internal/common_utils.py:5106:29: error: Module has no attribute "full_like" [attr-defined] +torch/testing/_internal/common_utils.py:5107:29: error: Module has no attribute "full_like" [attr-defined] +torch/testing/_internal/common_utils.py:5230:23: error: Module has no attribute "float" [attr-defined] +torch/testing/_internal/common_utils.py:5231:23: error: Module has no attribute "double" [attr-defined] +torch/testing/_internal/common_utils.py:5232:23: error: Module has no attribute "half" [attr-defined] +torch/testing/_internal/common_utils.py:5233:23: error: Module has no attribute "bfloat16" [attr-defined] +torch/testing/_internal/common_utils.py:5249:20: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/testing/_internal/common_utils.py:5257:11: error: Module has no attribute "allclose" [attr-defined] +torch/testing/_internal/common_utils.py:5260:19: error: Module has no attribute "allclose" [attr-defined] +torch/testing/_internal/common_utils.py:5328:50: error: Name "torch.dtype" is not defined [name-defined] +torch/testing/_internal/common_utils.py:5328:71: error: Name "torch.device" is not defined [name-defined] +torch/testing/_internal/common_utils.py:5329:26: error: Name "torch.dtype" is not defined [name-defined] +torch/testing/_internal/common_utils.py:5330:9: error: Module has no attribute "int8" [attr-defined] +torch/testing/_internal/common_utils.py:5331:9: error: Module has no attribute "uint8" [attr-defined] +torch/testing/_internal/common_utils.py:5332:9: error: Module has no attribute "uint16" [attr-defined] +torch/testing/_internal/common_utils.py:5333:9: error: Module has no attribute "uint32" [attr-defined] +torch/testing/_internal/common_utils.py:5334:9: error: Module has no attribute "uint64" [attr-defined] +torch/testing/_internal/common_utils.py:5335:9: error: Module has no attribute "int16" [attr-defined] +torch/testing/_internal/common_utils.py:5336:9: error: Module has no attribute "int32" [attr-defined] +torch/testing/_internal/common_utils.py:5337:9: error: Module has no attribute "int64" [attr-defined] +torch/testing/_internal/common_utils.py:5338:9: error: Module has no attribute "bool" [attr-defined] +torch/testing/_internal/common_utils.py:5339:9: error: Module has no attribute "float32" [attr-defined] +torch/testing/_internal/common_utils.py:5340:9: error: Module has no attribute "complex64" [attr-defined] +torch/testing/_internal/common_utils.py:5341:9: error: Module has no attribute "float64" [attr-defined] +torch/testing/_internal/common_utils.py:5342:9: error: Module has no attribute "complex128" [attr-defined] +torch/testing/_internal/common_utils.py:5365:12: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/testing/_internal/common_utils.py:5466:16: error: Module has no attribute "clone" [attr-defined] +torch/testing/_internal/common_utils.py:5518:41: error: Module has no attribute "device" [attr-defined] +torch/testing/_internal/common_utils.py:5633:54: error: Module has no attribute "device" [attr-defined] +torch/testing/_internal/common_utils.py:5647:76: error: Module has no attribute "jagged" [attr-defined] +torch/utils/benchmark/utils/sparse_fuzzer.py:19:15: error: Module has no attribute "float32" [attr-defined] +torch/utils/benchmark/utils/sparse_fuzzer.py:76:17: error: Module has no attribute "rand" [attr-defined] +torch/utils/benchmark/utils/sparse_fuzzer.py:78:17: error: Module has no attribute "randint" [attr-defined] +torch/utils/benchmark/utils/sparse_fuzzer.py:80:13: error: Module has no attribute "rand" [attr-defined] +torch/utils/benchmark/utils/sparse_fuzzer.py:81:16: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/utils/benchmark/utils/sparse_fuzzer.py:82:18: error: Module has no attribute "long" [attr-defined] +torch/utils/benchmark/utils/sparse_fuzzer.py:85:17: error: Module has no attribute "cat" [attr-defined] +torch/utils/benchmark/utils/sparse_fuzzer.py:85:31: error: Module has no attribute "randn_like" [attr-defined] +torch/utils/benchmark/utils/sparse_fuzzer.py:86:17: error: Module has no attribute "cat" [attr-defined] +torch/utils/benchmark/utils/sparse_fuzzer.py:88:13: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/utils/benchmark/utils/sparse_fuzzer.py:88:43: error: Module has no attribute "Size" [attr-defined] +torch/_lazy/extract_compiled_graph.py:106:28: error: Module has no attribute "device" [attr-defined] +torch/_lazy/extract_compiled_graph.py:107:20: error: Module has no attribute "device" [attr-defined] +torch/_lazy/extract_compiled_graph.py:112:29: error: Module has no attribute "device" [attr-defined] +torch/_lazy/extract_compiled_graph.py:135:32: error: Module has no attribute "device" [attr-defined] +torch/_lazy/extract_compiled_graph.py:163:49: error: Module has no attribute "device" [attr-defined] +torch/utils/jit/log_extract.py:30:37: error: Name "torch._C.TensorType" is not defined [name-defined] +torch/utils/jit/log_extract.py:43:12: error: Module has no attribute "empty_strided" [attr-defined] +torch/utils/jit/log_extract.py:46:13: error: Module has no attribute "parse_ir" [attr-defined] +torch/utils/jit/log_extract.py:50:35: error: Module has no attribute "FloatType" [attr-defined] +torch/utils/jit/log_extract.py:52:37: error: Module has no attribute "IntType" [attr-defined] +torch/utils/jit/log_extract.py:54:37: error: Module has no attribute "TensorType" [attr-defined] +torch/utils/jit/log_extract.py:55:31: error: Name "torch._C.TensorType" is not defined [name-defined] +torch/utils/jit/log_extract.py:57:37: error: Module has no attribute "BoolType" [attr-defined] +torch/utils/jit/log_extract.py:62:12: error: Module has no attribute "_create_function_from_graph" [attr-defined] +torch/utils/jit/log_extract.py:63:5: error: Module has no attribute "_jit_pass_erase_shape_information" [attr-defined] +torch/utils/jit/log_extract.py:96:20: error: Module has no attribute "_get_graph_executor_optimize" [attr-defined] +torch/utils/jit/log_extract.py:100:9: error: Module has no attribute "_get_graph_executor_optimize" [attr-defined] +torch/utils/benchmark/op_fuzzers/unary.py:17:36: error: Module has no attribute "float32" [attr-defined] +torch/utils/benchmark/op_fuzzers/spectral.py:31:44: error: Module has no attribute "float64" [attr-defined] +torch/utils/benchmark/op_fuzzers/sparse_binary.py:17:36: error: Module has no attribute "float32" [attr-defined] +torch/utils/benchmark/op_fuzzers/binary.py:17:36: error: Module has no attribute "float32" [attr-defined] +torch/utils/benchmark/examples/simple_timeit.py:14:23: error: Module has no attribute "ones" [attr-defined] +torch/utils/benchmark/examples/compare.py:61:22: error: Module has no attribute "ones" [attr-defined] +torch/utils/benchmark/examples/compare.py:62:22: error: Module has no attribute "ones" [attr-defined] +torch/utils/benchmark/examples/compare.py:63:25: error: Module has no attribute "zeros" [attr-defined] +torch/utils/benchmark/examples/sparse/compare.py:63:15: error: Module has no attribute "rand" [attr-defined] +torch/utils/benchmark/examples/sparse/compare.py:64:18: error: Module has no attribute "tensor"; maybe "Tensor" or "is_tensor"? [attr-defined] +torch/utils/benchmark/examples/sparse/compare.py:65:26: error: Module has no attribute "long" [attr-defined] +torch/utils/benchmark/examples/sparse/compare.py:67:14: error: Module has no attribute "rand" [attr-defined] +torch/utils/benchmark/examples/sparse/compare.py:74:12: error: Module has no attribute "sparse_coo_tensor" [attr-defined] +torch/utils/benchmark/examples/sparse/compare.py:89:67: error: Module has no attribute "float32" [attr-defined] +torch/utils/benchmark/examples/sparse/compare.py:90:22: error: Module has no attribute "rand" [attr-defined] +torch/utils/benchmark/examples/sparse/compare.py:90:45: error: Module has no attribute "float32" [attr-defined] +torch/utils/benchmark/examples/sparse/compare.py:91:25: error: Module has no attribute "zeros" [attr-defined] +torch/profiler/_pattern_matcher.py:337:23: error: Module has no attribute "randn" [attr-defined] +torch/profiler/_pattern_matcher.py:337:66: error: Module has no attribute "float32" [attr-defined] +torch/profiler/_pattern_matcher.py:338:23: error: Module has no attribute "randn" [attr-defined] +torch/profiler/_pattern_matcher.py:338:66: error: Module has no attribute "float32" [attr-defined] +torch/profiler/_pattern_matcher.py:555:26: error: Module has no attribute "bfloat16" [attr-defined] +torch/profiler/_pattern_matcher.py:555:42: error: Module has no attribute "half" [attr-defined] +torch/profiler/_pattern_matcher.py:567:23: error: Module has no attribute "randn" [attr-defined] +torch/profiler/_pattern_matcher.py:567:66: error: Module has no attribute "float16" [attr-defined] +torch/profiler/_pattern_matcher.py:568:23: error: Module has no attribute "randn" [attr-defined] +torch/profiler/_pattern_matcher.py:568:66: error: Module has no attribute "float16" [attr-defined] +torch/profiler/_pattern_matcher.py:573:23: error: Module has no attribute "randn" [attr-defined] +torch/profiler/_pattern_matcher.py:574:69: error: Module has no attribute "float16" [attr-defined] +torch/profiler/_pattern_matcher.py:576:23: error: Module has no attribute "randn" [attr-defined] +torch/profiler/_pattern_matcher.py:577:69: error: Module has no attribute "float16" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/lightning/tests/test_callbacks.py:127:20: error: Module has no attribute "all" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/lightning/tests/test_callbacks.py:222:20: error: Module has no attribute "all" [attr-defined] +torch/ao/pruning/_experimental/data_sparsifier/lightning/tests/test_callbacks.py:231:20: error: Module has no attribute "all" [attr-defined] +torch/_dynamo/test_case.py:87:39: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/_dynamo/test_case.py:101:47: error: Module has no attribute "is_grad_enabled" [attr-defined] +torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:23:55: error: Name "torch.dtype" is not defined [name-defined] +torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:56:43: error: Module has no attribute "float32" [attr-defined] +torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:57:46: error: Module has no attribute "complex64" [attr-defined] +torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:58:40: error: Module has no attribute "complex64" [attr-defined] +torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:59:40: error: Module has no attribute "float32" [attr-defined] +torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:60:42: error: Module has no attribute "complex64" [attr-defined] +torch/utils/benchmark/examples/op_benchmark.py:32:43: error: Module has no attribute "float32" [attr-defined] +torch/utils/benchmark/examples/op_benchmark.py:33:41: error: Module has no attribute "int32" [attr-defined] +torch/utils/benchmark/examples/sparse/op_benchmark.py:29:43: error: Module has no attribute "float32" [attr-defined] +torch/utils/benchmark/examples/sparse/op_benchmark.py:30:44: error: Module has no attribute "float64" [attr-defined] +torch/distributed/checkpoint/default_planner.py:448:21: error: Module has no attribute "empty" [attr-defined] +torch/distributed/checkpoint/default_planner.py:448:21: note: Error code "attr-defined" not covered by "type: ignore" comment +torch/distributed/checkpoint/default_planner.py:618:21: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/checkpoint/state_dict_saver.py:180:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/checkpoint/state_dict_saver.py:292:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/checkpoint/state_dict_saver.py:296:12: error: Module has no attribute "device" [attr-defined] +torch/distributed/checkpoint/state_dict_saver.py:394:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/checkpoint/state_dict_loader.py:213:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/checkpoint/state_dict_loader.py:362:5: error: Module has no attribute "_log_api_usage_once" [attr-defined] +torch/distributed/checkpoint/optimizer.py:106:23: error: Name "torch.device" is not defined [name-defined] +torch/distributed/checkpoint/optimizer.py:108:18: error: Module has no attribute "device" [attr-defined] +torch/distributed/checkpoint/optimizer.py:112:12: error: Module has no attribute "empty" [attr-defined] +torch/distributed/checkpoint/optimizer.py:190:29: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/optimizer.py:193:27: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/optimizer.py:207:43: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/optimizer.py:326:50: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/quantized_hf_storage.py:35:23: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/checkpoint/quantized_hf_storage.py:35:37: error: Module has no attribute "float32" [attr-defined] +torch/distributed/checkpoint/quantized_hf_storage.py:49:28: error: Name "torch.dtype" is not defined [name-defined] +torch/distributed/checkpoint/quantized_hf_storage.py:55:45: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/checkpoint/quantized_hf_storage.py:156:28: error: Name "torch.Size" is not defined [name-defined] +torch/distributed/checkpoint/quantized_hf_storage.py:176:37: error: Module has no attribute "float32" [attr-defined] +torch/distributed/checkpoint/hf_storage.py:348:34: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/hf_storage.py:353:45: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/hf_storage.py:354:43: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/hf_storage.py:361:33: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/hf_storage.py:367:57: error: Module has no attribute "Size" [attr-defined] +torch/distributed/checkpoint/hf_storage.py:378:31: error: Module has no attribute "Size" [attr-defined] +torch/distributed/tensor/examples/comm_mode_features_example.py:72:13: error: Module has no attribute "arange" [attr-defined] +torch/distributed/tensor/examples/comm_mode_features_example.py:76:15: error: Module has no attribute "rand" [attr-defined] +torch/distributed/tensor/examples/comm_mode_features_example.py:90:13: error: Module has no attribute "arange" [attr-defined] +torch/distributed/tensor/examples/comm_mode_features_example.py:98:15: error: Module has no attribute "randint" [attr-defined] +torch/distributed/tensor/examples/comm_mode_features_example.py:704:13: error: Module has no attribute "randn" [attr-defined] +torch/distributed/checkpoint/format_utils.py:110:26: error: Module has no attribute "empty_like" [attr-defined] +torch/distributed/checkpoint/examples/stateful_example.py:39:16: error: Module has no attribute "rand" [attr-defined] +torch/distributed/checkpoint/examples/fsdp_checkpoint_example.py:33:11: error: Module has no attribute "rand" [attr-defined] +torch/distributed/checkpoint/examples/async_checkpointing_example.py:75:9: error: Module has no attribute "rand" [attr-defined] +torch/distributed/checkpoint/examples/async_checkpointing_example.py:76:9: error: Module has no attribute "zeros" [attr-defined] +torch/distributed/checkpoint/examples/async_checkpointing_example.py:78:7: error: Module has no attribute "sum" [attr-defined] +torch/distributed/run.py:754:32: error: Module has no attribute "_get_privateuse1_backend_name" [attr-defined] +Found 16623 errors in 939 files (checked 2034 source files) +Warning: unused section(s) in mypy.ini: [mypy-torch.for_onnx.onnx], [mypy-test_torch], [mypy-torch.testing._internal.common_methods_invocations.*], [mypy-torch.testing._internal.hypothesis_utils.*], [mypy-torch.testing._internal.common_quantization.*], [mypy-torch.testing._internal.generated.*], [mypy-torch.multiprocessing.pool], [mypy-tools.render_junit], [mypy-tools.generate_torch_version], [mypy-caffe2.python.*], [mypy-caffe2.proto.*], [mypy-caffe2.distributed.store_ops_test_util], [mypy-caffe2.experiments.*], [mypy-caffe2.contrib.*], [mypy-caffe2.quantization.server.*], [mypy-distutils.*], [mypy-nvd3.*], [mypy-future.utils], [mypy-past.builtins], [mypy-cv2.*], [mypy-pycuda.*], [mypy-tensorrt.*], [mypy-tornado.*], [mypy-google.protobuf.textformat], [mypy-lmdb.*], [mypy-mpi4py.*], [mypy-skimage.*], [mypy-librosa.*], [mypy-mypy.*], [mypy-boto3.*], [mypy-usort.*], [mypy-torch.fb.*] diff --git a/scripts/ty_benchmark/snapshots/pytorch_ty.txt b/scripts/ty_benchmark/snapshots/pytorch_ty.txt new file mode 100644 index 0000000000..5814462426 --- /dev/null +++ b/scripts/ty_benchmark/snapshots/pytorch_ty.txt @@ -0,0 +1,23499 @@ +torch/_C/_distributed_c10d.pyi:10:22: error[unresolved-import] Module `torch._C` has no member `ScriptObject` +torch/_C/_distributed_c10d.pyi:191:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_c10d.pyi:339:51: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_c10d.pyi:343:45: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_c10d.pyi:348:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_C/_distributed_c10d.pyi:349:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_c10d.pyi:585:41: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_c10d.pyi:586:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_c10d.pyi:590:37: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_c10d.pyi:591:36: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_c10d.pyi:595:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_c10d.pyi:606:34: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_c10d.pyi:608:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_c10d.pyi:691:45: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_c10d.pyi:779:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_C/_distributed_c10d.pyi:780:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_c10d.pyi:793:29: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_c10d.pyi:795:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_c10d.pyi:808:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_C/_distributed_c10d.pyi:815:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_C/_distributed_c10d.pyi:835:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_C/_distributed_rpc.pyi:7:22: error[unresolved-import] Module `torch._C` has no member `Future` +torch/_C/_distributed_rpc.pyi:47:56: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc.pyi:47:70: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc.pyi:72:33: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc.pyi:72:47: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc.pyi:73:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc.pyi:81:37: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc.pyi:81:51: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc.pyi:82:23: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc.pyi:87:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc.pyi:87:40: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc.pyi:98:45: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc.pyi:98:59: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc.pyi:99:23: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc.pyi:110:56: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc.pyi:110:70: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc.pyi:114:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc.pyi:115:44: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc.pyi:115:58: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc_testing.pyi:30:45: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc_testing.pyi:30:59: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_distributed_rpc_testing.pyi:31:23: error[unresolved-attribute] Module `torch` has no member `device` +torch/_C/_profiler.pyi:4:22: error[unresolved-import] Module `torch._C` has no member `device` +torch/_C/_profiler.pyi:4:30: error[unresolved-import] Module `torch._C` has no member `dtype` +torch/_C/_profiler.pyi:4:37: error[unresolved-import] Module `torch._C` has no member `layout` +torch/_C/_profiler.pyi:130:25: error[invalid-type-form] Variable of type `property` is not allowed in a type expression +torch/_C/_profiler.pyi:132:25: error[invalid-type-form] Variable of type `property` is not allowed in a type expression +torch/_C/_profiler.pyi:134:24: error[invalid-type-form] Variable of type `property` is not allowed in a type expression +torch/_C/_profiler.pyi:165:25: error[invalid-type-form] Variable of type `property` is not allowed in a type expression +torch/_C_flatbuffer/__init__.pyi:2:22: error[unresolved-import] Module `torch._C` has no member `LiteScriptModule` +torch/_C_flatbuffer/__init__.pyi:2:40: error[unresolved-import] Module `torch._C` has no member `ScriptModule` +torch/_VF.py:25:19: error[unresolved-attribute] Module `torch._C` has no member `_VariableFunctions` +torch/__config__.py:9:12: error[unresolved-attribute] Module `torch._C` has no member `_show_config` +torch/__config__.py:17:12: error[unresolved-attribute] Module `torch._C` has no member `_cxx_flags` +torch/__config__.py:22:12: error[unresolved-attribute] Module `torch._C` has no member `_parallel_info` +torch/__init__.py:291:10: error[unresolved-import] Cannot resolve imported module `torch.version` +torch/__init__.py:1018:12: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/__init__.py:1025:26: error[unresolved-import] Module `torch._C` has no member `_initExtension` +torch/__init__.py:1029:8: error[unresolved-attribute] Module `torch._C` has no member `__file__` +torch/__init__.py:1184:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/__init__.py:1197:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/__init__.py:1215:16: error[unresolved-attribute] Module `torch` has no member `device` +torch/__init__.py:1308:5: error[unresolved-attribute] Module `torch._C` has no member `_set_default_tensor_type` +torch/__init__.py:1311:27: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/__init__.py:1361:5: error[unresolved-attribute] Module `torch._C` has no member `_set_default_dtype` +torch/__init__.py:1510:5: error[unresolved-attribute] Module `torch._C` has no member `_set_deterministic_algorithms` +torch/__init__.py:1517:12: error[unresolved-attribute] Module `torch._C` has no member `_get_deterministic_algorithms` +torch/__init__.py:1525:12: error[unresolved-attribute] Module `torch._C` has no member `_get_deterministic_algorithms_warn_only` +torch/__init__.py:1561:9: error[unresolved-attribute] Module `torch._C` has no member `_set_deterministic_algorithms` +torch/__init__.py:1563:9: error[unresolved-attribute] Module `torch._C` has no member `_set_deterministic_algorithms` +torch/__init__.py:1565:9: error[unresolved-attribute] Module `torch._C` has no member `_set_deterministic_algorithms` +torch/__init__.py:1578:8: error[unresolved-attribute] Module `torch._C` has no member `_get_deterministic_algorithms` +torch/__init__.py:1579:12: error[unresolved-attribute] Module `torch._C` has no member `_get_deterministic_algorithms_warn_only` +torch/__init__.py:1591:12: error[unresolved-attribute] Module `torch._C` has no member `_get_float32_matmul_precision` +torch/__init__.py:1657:5: error[unresolved-attribute] Module `torch._C` has no member `_set_float32_matmul_precision` +torch/__init__.py:1670:5: error[unresolved-attribute] Module `torch._C` has no member `_set_warnAlways` +torch/__init__.py:1677:12: error[unresolved-attribute] Module `torch._C` has no member `_get_warnAlways` +torch/__init__.py:1735:37: error[invalid-argument-type] Argument to function `_check_with` is incorrect: Expected `() -> str`, found `Unknown | None` +torch/__init__.py:1785:35: error[invalid-argument-type] Argument to function `_check_with` is incorrect: Expected `() -> str`, found `Unknown | None` +torch/__init__.py:1803:35: error[invalid-argument-type] Argument to function `_check_with` is incorrect: Expected `() -> str`, found `Unknown | None` +torch/__init__.py:1821:34: error[invalid-argument-type] Argument to function `_check_with` is incorrect: Expected `() -> str`, found `Unknown | None` +torch/__init__.py:1843:9: error[invalid-argument-type] Argument to function `_check_with` is incorrect: Expected `() -> str`, found `Unknown | None` +torch/__init__.py:1851:26: error[unresolved-attribute] Module `torch` has no member `bool` +torch/__init__.py:1917:16: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/__init__.py:1928:16: error[unresolved-attribute] Module `torch` has no member `double` +torch/__init__.py:1939:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/__init__.py:1950:16: error[unresolved-attribute] Module `torch` has no member `half` +torch/__init__.py:1961:16: error[unresolved-attribute] Module `torch` has no member `long` +torch/__init__.py:1972:16: error[unresolved-attribute] Module `torch` has no member `int` +torch/__init__.py:1983:16: error[unresolved-attribute] Module `torch` has no member `short` +torch/__init__.py:1994:16: error[unresolved-attribute] Module `torch` has no member `int8` +torch/__init__.py:2005:16: error[unresolved-attribute] Module `torch` has no member `bool` +torch/__init__.py:2016:16: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/__init__.py:2027:16: error[unresolved-attribute] Module `torch` has no member `cdouble` +torch/__init__.py:2038:16: error[unresolved-attribute] Module `torch` has no member `cfloat` +torch/__init__.py:2049:16: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/__init__.py:2060:16: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/__init__.py:2071:16: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/__init__.py:2082:16: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/__init__.py:2093:16: error[unresolved-attribute] Module `torch` has no member `quint2x4` +torch/__init__.py:2145:1: error[unresolved-attribute] Module `torch._C` has no member `_initExtension` +torch/__init__.py:2160:23: error[unresolved-reference] Name `segment_reduce` used when not defined +torch/__init__.py:2161:9: error[unresolved-reference] Name `segment_reduce` used when not defined +torch/__init__.py:2168:19: error[unresolved-attribute] Module `torch._C` has no member `_VariableFunctions` +torch/__init__.py:2171:21: error[unresolved-attribute] Module `torch._C` has no member `_VariableFunctions` +torch/__init__.py:2192:69: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/__init__.py:2279:5: error[unresolved-import] Module `torch` has no member `version` +torch/__init__.py:2296:1: error[unresolved-attribute] Module `torch._C` has no member `_init_names` +torch/__init__.py:2330:28: error[unresolved-reference] Name `contiguous_format` used when not defined +torch/__init__.py:2336:21: error[unresolved-attribute] Module `torch` has no member `get_num_threads` +torch/__init__.py:2516:13: error[call-non-callable] Object of type `object` is not callable +torch/__init__.py:2664:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/__init__.py:2771:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/__init__.py:2875:48: error[unresolved-attribute] Module `torch` has no member `device` +torch/__init__.py:2880:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/__init__.py:2883:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/__init__.py:2886:30: error[unresolved-attribute] Module `torch._C` has no member `_get_accelerator` +torch/__init__.py:2922:5: error[unresolved-attribute] Module `torch` has no member `sym_constrain_range_for_size` +torch/__init__.py:2978:16: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/__init__.py:2978:41: error[unresolved-attribute] Module `torch` has no member `float64` +torch/__init__.py:2980:16: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/__init__.py:2980:41: error[unresolved-attribute] Module `torch` has no member `int64` +torch/__init__.py:2982:16: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_awaits/__init__.py:14:14: error[unresolved-attribute] Module `torch._C` has no member `_Await` +torch/_classes.py:13:17: error[unresolved-attribute] Module `torch._C` has no member `_get_custom_class_python_wrapper` +torch/_custom_op/autograd.py:53:12: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_custom_op/autograd.py:57:14: error[unresolved-attribute] Module `torch._C` has no member `_AutoDispatchBelowAutograd` +torch/_custom_op/autograd.py:113:18: error[unresolved-attribute] Module `torch._C` has no member `_AutoDispatchBelowAutograd` +torch/_custom_op/impl.py:113:9: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_set_report_error_callback` +torch/_custom_op/impl.py:150:25: error[unresolved-attribute] Module `torch._C` has no member `_DispatchOperatorHandle` +torch/_custom_op/impl.py:216:18: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_call_boxed` +torch/_custom_op/impl.py:246:12: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_computed_kernel_for_dispatch_key` +torch/_custom_op/impl.py:290:22: error[unresolved-attribute] Module `torch._library` has no member `fake_impl` +torch/_custom_op/impl.py:341:12: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_custom_op/impl.py:356:16: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_custom_op/impl.py:374:12: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_custom_op/impl.py:376:19: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_custom_op/impl.py:384:12: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_custom_op/impl.py:396:12: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_custom_op/impl.py:414:13: error[unresolved-attribute] Object of type `Self@_register_autograd_kernel` has no attribute `_output_differentiability` +torch/_custom_op/impl.py:467:13: error[unresolved-attribute] Unresolved attribute `_output_differentiability` on type `Self@impl_backward`. +torch/_custom_op/impl.py:484:12: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_find_schema_or_throw` +torch/_custom_op/impl.py:503:12: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/_custom_op/impl.py:691:24: error[unresolved-attribute] Module `torch` has no member `_custom_op` +torch/_custom_op/impl.py:693:17: error[unresolved-attribute] Module `torch` has no member `_custom_op` +torch/_custom_op/impl.py:706:13: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_custom_op/impl.py:713:5: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_set_report_error_callback` +torch/_decomp/__init__.py:59:8: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_decomp/__init__.py:89:12: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel` +torch/_decomp/decompositions.py:144:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:162:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:168:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:170:50: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_decomp/decompositions.py:177:12: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/_decomp/decompositions.py:193:12: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_decomp/decompositions.py:193:24: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_decomp/decompositions.py:200:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:212:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:219:19: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_decomp/decompositions.py:219:31: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_decomp/decompositions.py:226:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:229:9: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:236:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:245:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:261:22: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/_decomp/decompositions.py:276:26: error[unresolved-attribute] Module `torch` has no member `erf` +torch/_decomp/decompositions.py:277:23: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_decomp/decompositions.py:284:27: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/_decomp/decompositions.py:285:21: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/_decomp/decompositions.py:294:19: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/_decomp/decompositions.py:301:24: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_decomp/decompositions.py:307:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:316:18: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:317:19: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:347:17: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:348:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:349:9: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_decomp/decompositions.py:349:20: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_decomp/decompositions.py:357:16: error[unresolved-attribute] Module `torch` has no member `mean` +torch/_decomp/decompositions.py:359:16: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_decomp/decompositions.py:364:26: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_decomp/decompositions.py:365:17: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/_decomp/decompositions.py:366:16: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_decomp/decompositions.py:367:19: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_decomp/decompositions.py:368:16: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_decomp/decompositions.py:369:19: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_decomp/decompositions.py:370:16: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_decomp/decompositions.py:402:11: error[unresolved-attribute] Module `torch` has no member `softmax` +torch/_decomp/decompositions.py:404:19: error[unresolved-attribute] Module `torch` has no member `all` +torch/_decomp/decompositions.py:405:13: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_decomp/decompositions.py:406:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:420:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:431:13: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_decomp/decompositions.py:433:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:436:21: error[unresolved-attribute] Module `torch` has no member `sign` +torch/_decomp/decompositions.py:462:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:465:9: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:499:19: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:500:18: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_decomp/decompositions.py:501:18: error[unresolved-attribute] Module `torch` has no member `scatter` +torch/_decomp/decompositions.py:512:19: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:530:26: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/_decomp/decompositions.py:535:12: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_decomp/decompositions.py:631:27: error[unresolved-attribute] Module `torch` has no member `maximum` +torch/_decomp/decompositions.py:632:9: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/_decomp/decompositions.py:633:18: error[unresolved-attribute] Module `torch` has no member `maximum` +torch/_decomp/decompositions.py:633:32: error[unresolved-attribute] Module `torch` has no member `log` +torch/_decomp/decompositions.py:650:46: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_decomp/decompositions.py:666:12: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/_decomp/decompositions.py:666:24: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_decomp/decompositions.py:679:42: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/_decomp/decompositions.py:695:14: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/_decomp/decompositions.py:695:53: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_decomp/decompositions.py:697:14: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/_decomp/decompositions.py:697:53: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_decomp/decompositions.py:698:11: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_decomp/decompositions.py:699:11: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_decomp/decompositions.py:715:12: error[unresolved-attribute] Module `torch` has no member `slice_scatter` +torch/_decomp/decompositions.py:818:11: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_decomp/decompositions.py:821:12: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_decomp/decompositions.py:821:60: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_decomp/decompositions.py:823:16: error[unresolved-attribute] Module `torch` has no member `logical_and` +torch/_decomp/decompositions.py:826:16: error[unresolved-attribute] Module `torch` has no member `logical_and` +torch/_decomp/decompositions.py:829:16: error[unresolved-attribute] Module `torch` has no member `logical_and` +torch/_decomp/decompositions.py:841:12: error[unresolved-attribute] Module `torch` has no member `select_scatter` +torch/_decomp/decompositions.py:850:12: error[unresolved-attribute] Module `torch` has no member `diagonal_scatter` +torch/_decomp/decompositions.py:854:59: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_decomp/decompositions.py:865:65: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_decomp/decompositions.py:868:45: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_decomp/decompositions.py:883:65: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_decomp/decompositions.py:885:32: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_decomp/decompositions.py:885:52: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_decomp/decompositions.py:897:25: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_decomp/decompositions.py:897:45: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_decomp/decompositions.py:976:33: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[int, int, int, int]` +torch/_decomp/decompositions.py:1084:28: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[int, int, int, int]` +torch/_decomp/decompositions.py:1112:16: error[unresolved-attribute] Module `torch` has no member `squeeze_copy` +torch/_decomp/decompositions.py:1114:11: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_decomp/decompositions.py:1114:67: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_decomp/decompositions.py:1133:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:1134:13: error[unresolved-attribute] Module `torch` has no member `logical_and` +torch/_decomp/decompositions.py:1139:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:1140:13: error[unresolved-attribute] Module `torch` has no member `logical_and` +torch/_decomp/decompositions.py:1161:21: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_decomp/decompositions.py:1161:46: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_decomp/decompositions.py:1161:76: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_decomp/decompositions.py:1166:21: error[unresolved-attribute] Module `torch` has no member `rand_like` +torch/_decomp/decompositions.py:1170:24: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/_decomp/decompositions.py:1170:53: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_decomp/decompositions.py:1182:27: error[unresolved-attribute] Module `torch` has no member `half` +torch/_decomp/decompositions.py:1188:24: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_decomp/decompositions.py:1190:17: error[unresolved-attribute] Module `torch` has no member `amax` +torch/_decomp/decompositions.py:1191:24: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_decomp/decompositions.py:1192:29: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_decomp/decompositions.py:1207:27: error[unresolved-attribute] Module `torch` has no member `half` +torch/_decomp/decompositions.py:1215:17: error[unresolved-attribute] Module `torch` has no member `amax` +torch/_decomp/decompositions.py:1217:25: error[unresolved-attribute] Module `torch` has no member `log` +torch/_decomp/decompositions.py:1217:35: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_decomp/decompositions.py:1217:45: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_decomp/decompositions.py:1261:16: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/_decomp/decompositions.py:1299:41: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_decomp/decompositions.py:1368:16: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_decomp/decompositions.py:1370:9: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_decomp/decompositions.py:1386:39: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_decomp/decompositions.py:1433:48: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_decomp/decompositions.py:1446:26: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_decomp/decompositions.py:1476:19: error[unresolved-attribute] Module `torch` has no member `mm` +torch/_decomp/decompositions.py:1516:19: error[unresolved-attribute] Module `torch` has no member `mv` +torch/_decomp/decompositions.py:1563:10: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_decomp/decompositions.py:1572:22: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_decomp/decompositions.py:1573:22: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_decomp/decompositions.py:1574:18: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_decomp/decompositions.py:1581:18: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_decomp/decompositions.py:1583:17: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_decomp/decompositions.py:1592:13: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_decomp/decompositions.py:1593:15: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_decomp/decompositions.py:1664:47: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_decomp/decompositions.py:1701:9: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_decomp/decompositions.py:1702:10: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_decomp/decompositions.py:1703:10: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_decomp/decompositions.py:1704:10: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_decomp/decompositions.py:1715:24: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_decomp/decompositions.py:1721:22: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_decomp/decompositions.py:1777:34: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_decomp/decompositions.py:1777:49: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_decomp/decompositions.py:1778:23: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_decomp/decompositions.py:1778:35: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_decomp/decompositions.py:1780:23: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_decomp/decompositions.py:1780:35: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_decomp/decompositions.py:1784:19: error[unresolved-attribute] Module `torch` has no member `rsqrt` +torch/_decomp/decompositions.py:1788:13: error[unresolved-attribute] Module `torch` has no member `pow` +torch/_decomp/decompositions.py:1801:9: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_decomp/decompositions.py:1802:9: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_decomp/decompositions.py:1829:42: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_decomp/decompositions.py:1831:60: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_decomp/decompositions.py:1833:52: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_decomp/decompositions.py:1872:19: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_decomp/decompositions.py:1878:24: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_decomp/decompositions.py:1908:28: error[unresolved-attribute] Module `torch` has no member `var_mean` +torch/_decomp/decompositions.py:1911:16: error[unresolved-attribute] Module `torch` has no member `rsqrt` +torch/_decomp/decompositions.py:1915:21: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_decomp/decompositions.py:1916:21: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_decomp/decompositions.py:1926:28: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_decomp/decompositions.py:1938:23: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/_decomp/decompositions.py:2152:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_decomp/decompositions.py:2153:29: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_decomp/decompositions.py:2243:13: error[unresolved-attribute] Module `torch` has no member `rand_like` +torch/_decomp/decompositions.py:2243:50: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_decomp/decompositions.py:2253:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_decomp/decompositions.py:2255:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/_decomp/decompositions.py:2258:29: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_decomp/decompositions.py:2260:36: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_decomp/decompositions.py:2273:20: error[unresolved-attribute] Module `torch` has no member `scalar_tensor` +torch/_decomp/decompositions.py:2287:16: error[unresolved-attribute] Module `torch` has no member `clone` +torch/_decomp/decompositions.py:2327:54: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_decomp/decompositions.py:2332:37: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_decomp/decompositions.py:2424:18: error[unresolved-attribute] Module `torch` has no member `rsqrt` +torch/_decomp/decompositions.py:2595:16: error[unresolved-attribute] Module `torch` has no member `div` +torch/_decomp/decompositions.py:2598:16: error[unresolved-attribute] Module `torch` has no member `div` +torch/_decomp/decompositions.py:2601:18: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_decomp/decompositions.py:2601:62: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_decomp/decompositions.py:2614:21: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_decomp/decompositions.py:2614:66: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_decomp/decompositions.py:2619:22: error[unresolved-attribute] Module `torch` has no member `scalar_tensor` +torch/_decomp/decompositions.py:2622:19: error[unresolved-attribute] Module `torch` has no member `minimum` +torch/_decomp/decompositions.py:2638:16: error[unresolved-attribute] Module `torch` has no member `mean` +torch/_decomp/decompositions.py:2650:20: error[unresolved-attribute] Module `torch` has no member `masked_fill` +torch/_decomp/decompositions.py:2704:26: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_decomp/decompositions.py:2753:26: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_decomp/decompositions.py:2929:11: error[unresolved-attribute] Module `torch` has no member `minimum` +torch/_decomp/decompositions.py:2930:9: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_decomp/decompositions.py:2930:20: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_decomp/decompositions.py:2935:18: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/_decomp/decompositions.py:2944:25: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_decomp/decompositions.py:3062:26: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_decomp/decompositions.py:3062:52: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_decomp/decompositions.py:3063:64: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_decomp/decompositions.py:3177:29: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_decomp/decompositions.py:3222:12: error[unresolved-attribute] Module `torch` has no member `concat` +torch/_decomp/decompositions.py:3271:11: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_decomp/decompositions.py:3272:18: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_decomp/decompositions.py:3308:11: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_decomp/decompositions.py:3320:14: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_decomp/decompositions.py:3321:14: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_decomp/decompositions.py:3398:21: error[unresolved-attribute] Module `torch` has no member `dropout` +torch/_decomp/decompositions.py:3430:51: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/_decomp/decompositions.py:3432:17: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_decomp/decompositions.py:3461:51: error[unresolved-attribute] Module `torch` has no member `relu` +torch/_decomp/decompositions.py:3463:17: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_decomp/decompositions.py:3495:37: error[unresolved-attribute] Module `torch` has no member `relu` +torch/_decomp/decompositions.py:3498:17: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_decomp/decompositions.py:3530:37: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/_decomp/decompositions.py:3533:17: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_decomp/decompositions.py:3572:11: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_decomp/decompositions.py:3617:18: error[unresolved-attribute] Module `torch` has no member `concat` +torch/_decomp/decompositions.py:3620:18: error[unresolved-attribute] Module `torch` has no member `concat` +torch/_decomp/decompositions.py:3635:22: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_decomp/decompositions.py:3635:45: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_decomp/decompositions.py:3637:11: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_decomp/decompositions.py:3657:16: error[unresolved-attribute] Module `torch._C` has no member `_get_mkldnn_enabled` +torch/_decomp/decompositions.py:3666:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/_decomp/decompositions.py:3671:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/_decomp/decompositions.py:3671:43: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_decomp/decompositions.py:3722:17: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_decomp/decompositions.py:3722:51: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_decomp/decompositions.py:3755:17: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_decomp/decompositions.py:3755:51: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_decomp/decompositions.py:3803:17: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_decomp/decompositions.py:3833:17: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_decomp/decompositions.py:3935:14: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_decomp/decompositions.py:3935:34: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_decomp/decompositions.py:3938:12: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_decomp/decompositions.py:3938:43: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_decomp/decompositions.py:3942:18: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_decomp/decompositions.py:3944:18: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_decomp/decompositions.py:3972:13: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_decomp/decompositions.py:3976:22: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_decomp/decompositions.py:3999:18: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_decomp/decompositions.py:4011:25: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_decomp/decompositions.py:4050:33: error[unresolved-attribute] Module `torch` has no member `long` +torch/_decomp/decompositions.py:4050:45: error[unresolved-attribute] Module `torch` has no member `int` +torch/_decomp/decompositions.py:4055:23: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_decomp/decompositions.py:4078:33: error[unresolved-attribute] Module `torch` has no member `long` +torch/_decomp/decompositions.py:4078:45: error[unresolved-attribute] Module `torch` has no member `int` +torch/_decomp/decompositions.py:4083:23: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_decomp/decompositions.py:4124:19: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:4128:15: error[unresolved-attribute] Module `torch` has no member `gather` +torch/_decomp/decompositions.py:4130:14: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:4139:16: error[unresolved-attribute] Module `torch` has no member `gather` +torch/_decomp/decompositions.py:4140:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:4197:12: error[invalid-return-type] Return type does not match returned value: expected `Tensor`, found `int | float` +torch/_decomp/decompositions.py:4201:12: error[invalid-return-type] Return type does not match returned value: expected `Tensor`, found `int | float` +torch/_decomp/decompositions.py:4207:20: error[unresolved-attribute] Module `torch` has no member `device` +torch/_decomp/decompositions.py:4208:15: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_decomp/decompositions.py:4209:15: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_decomp/decompositions.py:4212:18: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_decomp/decompositions.py:4213:18: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_decomp/decompositions.py:4219:42: error[invalid-argument-type] Argument to function `_upsample_cubic_convolution1` is incorrect: Expected `Tensor`, found `int | float` +torch/_decomp/decompositions.py:4220:42: error[invalid-argument-type] Argument to function `_upsample_cubic_convolution2` is incorrect: Expected `Tensor`, found `int | float` +torch/_decomp/decompositions.py:4231:19: error[unresolved-attribute] Module `torch` has no member `add` +torch/_decomp/decompositions.py:4235:49: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_decomp/decompositions.py:4235:70: error[unresolved-attribute] Module `torch` has no member `device` +torch/_decomp/decompositions.py:4238:16: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_decomp/decompositions.py:4241:12: error[unresolved-attribute] Module `torch` has no member `linspace` +torch/_decomp/decompositions.py:4252:16: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_decomp/decompositions.py:4255:46: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[0], Literal[2]]` +torch/_decomp/decompositions.py:4256:46: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[1], Literal[1]]` +torch/_decomp/decompositions.py:4257:50: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[2], Literal[0]]` +torch/_decomp/decompositions.py:4268:16: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_decomp/decompositions.py:4271:46: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[0], Literal[3]]` +torch/_decomp/decompositions.py:4272:46: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[1], Literal[2]]` +torch/_decomp/decompositions.py:4273:46: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[2], Literal[1]]` +torch/_decomp/decompositions.py:4274:50: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[3], Literal[0]]` +torch/_decomp/decompositions.py:4348:20: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_decomp/decompositions.py:4352:17: error[unresolved-attribute] Module `torch` has no member `fmod` +torch/_decomp/decompositions.py:4353:58: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_decomp/decompositions.py:4354:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:4362:20: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_decomp/decompositions.py:4368:20: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_decomp/decompositions.py:4387:16: error[unresolved-attribute] Module `torch` has no member `logical_and` +torch/_decomp/decompositions.py:4388:22: error[unresolved-attribute] Module `torch` has no member `logical_and` +torch/_decomp/decompositions.py:4388:49: error[unresolved-attribute] Module `torch` has no member `logical_and` +torch/_decomp/decompositions.py:4391:13: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_decomp/decompositions.py:4392:13: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_decomp/decompositions.py:4402:13: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:4403:35: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_decomp/decompositions.py:4403:61: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_decomp/decompositions.py:4571:16: error[unresolved-attribute] Module `torch` has no member `dot` +torch/_decomp/decompositions.py:4573:16: error[unresolved-attribute] Module `torch` has no member `mv` +torch/_decomp/decompositions.py:4575:16: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_decomp/decompositions.py:4575:30: error[unresolved-attribute] Module `torch` has no member `mm` +torch/_decomp/decompositions.py:4575:39: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/_decomp/decompositions.py:4577:16: error[unresolved-attribute] Module `torch` has no member `mm` +torch/_decomp/decompositions.py:4709:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_decomp/decompositions.py:4710:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_decomp/decompositions.py:4723:14: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_decomp/decompositions.py:4724:14: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_decomp/decompositions.py:4733:23: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_decomp/decompositions.py:4738:47: error[unresolved-attribute] Module `torch` has no member `sign` +torch/_decomp/decompositions.py:4738:71: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_decomp/decompositions.py:4742:47: error[unresolved-attribute] Module `torch` has no member `sign` +torch/_decomp/decompositions.py:4742:71: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_decomp/decompositions.py:4747:17: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_decomp/decompositions.py:4748:17: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_decomp/decompositions.py:4754:27: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_decomp/decompositions.py:4760:23: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_decomp/decompositions.py:4807:19: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_decomp/decompositions.py:4824:19: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_decomp/decompositions.py:4825:16: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_decomp/decompositions.py:4878:24: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_decomp/decompositions.py:4885:16: error[unresolved-attribute] Module `torch` has no member `logical_and` +torch/_decomp/decompositions.py:4957:12: error[unresolved-attribute] Module `torch` has no member `amin` +torch/_decomp/decompositions.py:4959:12: error[unresolved-attribute] Module `torch` has no member `amax` +torch/_decomp/decompositions.py:4966:21: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:4966:33: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_decomp/decompositions.py:4974:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_decomp/decompositions.py:4975:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_decomp/decompositions.py:4975:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_decomp/decompositions.py:4976:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/_decomp/decompositions.py:4989:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_decomp/decompositions.py:4990:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_decomp/decompositions.py:4990:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_decomp/decompositions.py:4991:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/_decomp/decompositions.py:5037:9: error[unresolved-attribute] Module `torch` has no member `gather` +torch/_decomp/decompositions.py:5043:11: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_decomp/decompositions.py:5044:9: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:5075:11: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_decomp/decompositions.py:5077:15: error[unresolved-attribute] Module `torch` has no member `amin` +torch/_decomp/decompositions.py:5077:26: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:5081:13: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:5082:9: error[unresolved-attribute] Module `torch` has no member `gather` +torch/_decomp/decompositions.py:5084:13: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:5085:17: error[unresolved-attribute] Module `torch` has no member `any` +torch/_decomp/decompositions.py:5091:9: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:5128:9: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/_decomp/decompositions.py:5179:35: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_decomp/decompositions.py:5201:14: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/_decomp/decompositions.py:5215:12: error[unresolved-attribute] Module `torch` has no member `div` +torch/_decomp/decompositions.py:5227:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_decomp/decompositions.py:5253:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/_decomp/decompositions.py:5253:44: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_decomp/decompositions.py:5263:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_decomp/decompositions.py:5266:20: error[unresolved-attribute] Module `torch` has no member `ne` +torch/_decomp/decompositions.py:5268:20: error[unresolved-attribute] Module `torch` has no member `eq` +torch/_decomp/decompositions.py:5282:25: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_decomp/decompositions.py:5285:17: error[unresolved-attribute] Module `torch` has no member `rand` +torch/_decomp/decompositions.py:5285:47: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_decomp/decompositions.py:5287:17: error[unresolved-attribute] Module `torch` has no member `rand` +torch/_decomp/decompositions.py:5290:19: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_decomp/decompositions.py:5299:16: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_decomp/decompositions.py:5299:49: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_decomp/decompositions.py:5314:24: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_decomp/decompositions.py:5315:41: error[unresolved-attribute] Module `torch` has no member `sort` +torch/_decomp/decompositions.py:5318:26: error[unresolved-attribute] Module `torch` has no member `constant_pad_nd` +torch/_decomp/decompositions.py:5323:16: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_decomp/decompositions.py:5328:35: error[unresolved-attribute] Module `torch` has no member `sort` +torch/_decomp/decompositions.py:5329:15: error[unresolved-attribute] Module `torch` has no member `searchsorted` +torch/_decomp/decompositions.py:5330:20: error[unresolved-attribute] Module `torch` has no member `where` +torch/_decomp/decompositions.py:5346:25: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_decomp/decompositions.py:5347:25: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_decomp/decompositions_for_jvp.py:104:12: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_decomp/decompositions_for_jvp.py:104:22: error[unresolved-attribute] Module `torch` has no member `diag` +torch/_decomp/decompositions_for_jvp.py:109:11: error[unresolved-attribute] Module `torch` has no member `minimum` +torch/_decomp/decompositions_for_jvp.py:110:9: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_decomp/decompositions_for_jvp.py:110:20: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_decomp/decompositions_for_jvp.py:115:18: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/_decomp/decompositions_for_jvp.py:124:12: error[unresolved-attribute] Module `torch` has no member `mean` +torch/_decomp/decompositions_for_jvp.py:125:11: error[unresolved-attribute] Module `torch` has no member `var` +torch/_decomp/decompositions_for_jvp.py:126:11: error[unresolved-attribute] Module `torch` has no member `pow` +torch/_decomp/decompositions_for_jvp.py:128:16: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/_decomp/decompositions_for_jvp.py:173:9: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_decomp/decompositions_for_jvp.py:174:10: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_decomp/decompositions_for_jvp.py:175:10: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_decomp/decompositions_for_jvp.py:176:10: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_decomp/decompositions_for_jvp.py:182:19: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_decomp/decompositions_for_jvp.py:186:42: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_decomp/decompositions_for_jvp.py:192:20: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_decomp/decompositions_for_jvp.py:194:20: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_decomp/decompositions_for_jvp.py:198:40: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_decomp/decompositions_for_jvp.py:202:18: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_decomp/decompositions_for_jvp.py:204:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_decomp/decompositions_for_jvp.py:248:18: error[unresolved-attribute] Module `torch` has no member `rsqrt` +torch/_decomp/decompositions_for_jvp.py:260:12: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_decomp/decompositions_for_jvp.py:262:23: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_decomp/decompositions_for_jvp.py:263:13: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_decomp/decompositions_for_jvp.py:265:17: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_decomp/decompositions_for_jvp.py:266:18: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_decomp/decompositions_for_jvp.py:266:32: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_decomp/decompositions_for_jvp.py:269:22: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_decomp/decompositions_for_jvp.py:271:22: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_decomp/decompositions_for_jvp.py:282:23: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_decomp/decompositions_for_jvp.py:286:23: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_decomp/decompositions_for_jvp.py:291:21: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_decomp/decompositions_for_rng.py:33:36: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_decomp/decompositions_for_rng.py:37:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_decomp/decompositions_for_rng.py:52:19: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_decomp/decompositions_for_rng.py:78:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_decomp/decompositions_for_rng.py:79:28: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_decomp/decompositions_for_rng.py:102:16: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_decomp/decompositions_for_rng.py:106:39: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_decomp/decompositions_for_rng.py:253:23: error[unresolved-attribute] Module `torch` has no member `device` +torch/_decomp/decompositions_for_rng.py:255:23: error[unresolved-attribute] Module `torch` has no member `rand_like` +torch/_decomp/decompositions_for_rng.py:255:51: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_decomp/decompositions_for_rng.py:260:23: error[unresolved-attribute] Module `torch` has no member `device` +torch/_decomp/decompositions_for_rng.py:263:12: error[unresolved-attribute] Module `torch` has no member `rand_like` +torch/_decomp/decompositions_for_rng.py:263:40: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_dispatch/python.py:14:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_dispatch/python.py:19:24: error[unresolved-attribute] Module `torch._C` has no member `_DisablePythonDispatcher` +torch/_dispatch/python.py:20:28: error[unresolved-attribute] Module `torch._C` has no member `_EnablePythonDispatcher` +torch/_dispatch/python.py:21:23: error[unresolved-attribute] Module `torch._C` has no member `_EnablePreDispatch` +torch/_dispatch/python.py:57:13: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_is_dispatch_key_included` +torch/_dispatch/python.py:58:9: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_dispatch/python.py:60:12: error[unresolved-attribute] Module `torch._C` has no member `_functionalization_reapply_views_tls` +torch/_dispatch/python.py:62:9: error[unresolved-attribute] Module `torch` has no member `_disable_functionalization` +torch/_dispatch/python.py:67:13: error[unresolved-attribute] Module `torch` has no member `_enable_functionalization` +torch/_dispatch/python.py:74:25: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/_dispatch/python.py:126:20: error[unresolved-attribute] Module `torch` has no member `_is_functional_tensor` +torch/_dispatch/python.py:127:25: error[unresolved-attribute] Module `torch` has no member `_from_functional_tensor` +torch/_dispatch/python.py:183:30: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_dispatch/python.py:192:34: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_dynamo/__init__.py:61:29: warning[deprecated] The function `is_compiling` is deprecated: `torch._dynamo.external_utils.is_compiling` is deprecated. Use `torch.compiler.is_compiling` instead. +torch/_dynamo/__init__.py:122:5: error[invalid-assignment] Implicit shadowing of function `manual_seed` +torch/_dynamo/__init__.py:153:9: error[unresolved-attribute] Module `torch._dynamo` has no member `compiled_autograd` +torch/_dynamo/__init__.py:160:9: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_dynamo/_trace_wrapped_higher_order_op.py:35:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_dynamo/_trace_wrapped_higher_order_op.py:59:12: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_dynamo/_trace_wrapped_higher_order_op.py:121:6: error[unresolved-attribute] Module `torch` has no member `_export` +torch/_dynamo/_trace_wrapped_higher_order_op.py:139:22: error[unresolved-attribute] Module `torch._C` has no member `_TensorMeta` +torch/_dynamo/_trace_wrapped_higher_order_op.py:171:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_dynamo/_trace_wrapped_higher_order_op.py:215:40: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_dynamo/_trace_wrapped_higher_order_op.py:247:17: error[invalid-assignment] Object of type `list[Any]` is not assignable to `tuple[Any, ...]` +torch/_dynamo/aot_compile.py:112:17: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__globals__` +torch/_dynamo/aot_compile.py:226:13: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_dynamo/aot_compile.py:227:13: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/aot_compile_types.py:49:14: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/backends/common.py:166:58: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/backends/common.py:170:12: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/backends/common.py:173:57: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_dynamo/backends/common.py:177:12: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_dynamo/backends/cudagraphs.py:95:11: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/backends/cudagraphs.py:96:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/backends/cudagraphs.py:203:23: error[unresolved-attribute] Module `torch._inductor` has no member `cudagraph_trees` +torch/_dynamo/backends/cudagraphs.py:267:26: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_dynamo/backends/debugging.py:101:19: error[unresolved-attribute] Module `torch._dynamo` has no member `exc` +torch/_dynamo/backends/debugging.py:224:12: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/backends/debugging.py:226:10: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/backends/debugging.py:229:16: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/backends/debugging.py:372:27: error[unresolved-attribute] Module `torch` has no member `relu` +torch/_dynamo/backends/debugging.py:382:27: error[unresolved-attribute] Module `torch` has no member `relu` +torch/_dynamo/backends/debugging.py:394:27: error[unresolved-attribute] Module `torch` has no member `relu` +torch/_dynamo/backends/debugging.py:395:27: error[unresolved-attribute] Module `torch` has no member `add` +torch/_dynamo/backends/distributed.py:30:58: warning[possibly-missing-import] Member `detect_fake_mode` of module `torch._dynamo.utils` may be missing +torch/_dynamo/backends/distributed.py:191:15: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_dynamo/backends/distributed.py:210:17: error[unresolved-attribute] Cannot assign object of type `(...) -> Any` to attribute `submod` on type `Self@__init__` with custom `__setattr__` method. +torch/_dynamo/backends/distributed.py:211:17: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `unwrap_singleton_tuple` on type `Self@__init__` with custom `__setattr__` method. +torch/_dynamo/backends/distributed.py:311:31: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_dynamo/backends/distributed.py:319:35: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_dynamo/backends/distributed.py:346:35: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_dynamo/backends/distributed.py:441:37: warning[possibly-missing-attribute] Member `_DEFAULT_FIRST_BUCKET_BYTES` may be missing on module `torch.distributed` +torch/_dynamo/backends/distributed.py:576:20: error[unresolved-attribute] Module `torch.fx` has no member `passes` +torch/_dynamo/backends/registry.py:104:20: error[unresolved-attribute] Object of type `((GraphModule, list[Tensor], /) -> CompiledFn) & (() -> object)` has no attribute `__name__` +torch/_dynamo/backends/torchxla.py:33:16: error[unresolved-import] Cannot resolve imported module `torch_xla.core.dynamo_bridge` +torch/_dynamo/backends/tvm.py:83:14: error[unresolved-import] Cannot resolve imported module `tvm` +torch/_dynamo/backends/tvm.py:88:31: error[invalid-argument-type] Argument to function `exists` is incorrect: Expected `int | str | bytes | PathLike[str] | PathLike[bytes]`, found `_TemporaryFileWrapper[bytes]` +torch/_dynamo/backends/tvm.py:95:39: error[invalid-argument-type] Argument to function `exists` is incorrect: Expected `int | str | bytes | PathLike[str] | PathLike[bytes]`, found `_TemporaryFileWrapper[bytes]` +torch/_dynamo/backends/tvm.py:106:43: error[invalid-argument-type] Argument to function `exists` is incorrect: Expected `int | str | bytes | PathLike[str] | PathLike[bytes]`, found `_TemporaryFileWrapper[bytes]` +torch/_dynamo/backends/tvm.py:108:39: error[invalid-argument-type] Argument to function `unlink` is incorrect: Expected `str | bytes | PathLike[str] | PathLike[bytes]`, found `_TemporaryFileWrapper[bytes]` +torch/_dynamo/backends/tvm.py:118:14: error[unresolved-import] Cannot resolve imported module `tvm` +torch/_dynamo/backends/tvm.py:164:20: error[unresolved-attribute] Module `torch` has no member `from_numpy` +torch/_dynamo/backends/tvm.py:165:16: error[unresolved-attribute] Module `torch.utils` has no member `dlpack` +torch/_dynamo/backends/tvm.py:169:34: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_dynamo/bytecode_transformation.py:1364:21: error[unresolved-attribute] Module `torch._C` has no member `_dynamo` +torch/_dynamo/bytecode_transformation.py:1783:34: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__code__` +torch/_dynamo/codegen.py:311:42: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_dynamo/compiled_autograd.py:167:28: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_dynamo/compiled_autograd.py:192:20: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_dynamo/compiled_autograd.py:420:13: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/_dynamo/compiled_autograd.py:422:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[str, list[Tensor], list[int | SymInt], list[int | float | SymFloat]]`, found `tuple[str, list[Tensor], list[Unknown], list[int | float]]` +torch/_dynamo/compiled_autograd.py:473:12: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_dynamo/compiled_autograd.py:486:19: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/compiled_autograd.py:604:28: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_dynamo/compiled_autograd.py:634:19: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/compiled_autograd.py:689:21: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_dynamo/compiled_autograd.py:731:20: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_dynamo/compiled_autograd.py:783:30: error[unresolved-attribute] Module `torch` has no member `add` +torch/_dynamo/compiled_autograd.py:849:13: error[unresolved-attribute] Module `torch._C` has no member `_dynamo` +torch/_dynamo/compiled_autograd.py:869:16: error[invalid-return-type] Return type does not match returned value: expected `list[Tensor]`, found `list[Tensor | None | Unknown]` +torch/_dynamo/compiled_autograd.py:1123:51: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_dynamo/compiled_autograd.py:1398:41: error[unresolved-attribute] Module `torch.fx.experimental` has no member `proxy_tensor` +torch/_dynamo/compiled_autograd.py:1521:17: error[unresolved-attribute] Module `torch._C` has no member `_dynamo` +torch/_dynamo/compiled_autograd.py:1537:17: error[unresolved-attribute] Module `torch._C` has no member `_dynamo` +torch/_dynamo/compiled_autograd.py:1551:9: error[unresolved-attribute] Module `torch._C` has no member `_dynamo` +torch/_dynamo/compiled_autograd.py:1563:9: error[unresolved-attribute] Module `torch._C` has no member `_dynamo` +torch/_dynamo/compiled_autograd.py:1573:5: error[unresolved-attribute] Module `torch._C` has no member `_dynamo` +torch/_dynamo/compiled_autograd.py:1574:5: error[unresolved-attribute] Module `torch._C` has no member `_dynamo` +torch/_dynamo/compiled_autograd.py:1575:5: error[unresolved-attribute] Module `torch._C` has no member `_dynamo` +torch/_dynamo/compiled_autograd.py:1597:64: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_dynamo/convert_frame.py:159:5: warning[possibly-missing-import] Member `LazyString` of module `torch._dynamo.utils` may be missing +torch/_dynamo/convert_frame.py:176:5: error[conflicting-declarations] Conflicting declared types for `np`: `ModuleType | None` and `` +torch/_dynamo/convert_frame.py:289:27: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_dynamo/convert_frame.py:296:13: error[unresolved-attribute] Module `torch._C` has no member `_PreserveDispatchKeyGuard` +torch/_dynamo/convert_frame.py:300:36: error[unresolved-attribute] Module `torch` has no member `is_inference_mode_enabled` +torch/_dynamo/convert_frame.py:304:17: error[unresolved-attribute] Module `torch._C` has no member `_is_default_mobile_cpu_allocator_set` +torch/_dynamo/convert_frame.py:307:27: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_dynamo/convert_frame.py:311:22: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunction` +torch/_dynamo/convert_frame.py:313:37: error[unresolved-attribute] Module `torch._C` has no member `_get_fp32_precision_getter` +torch/_dynamo/convert_frame.py:317:13: error[invalid-assignment] Implicit shadowing of function `_forward_from_src` +torch/_dynamo/convert_frame.py:449:47: error[invalid-argument-type] Argument to function `write_record_to_file` is incorrect: Expected `ExecutionRecord`, found `object` +torch/_dynamo/convert_frame.py:473:21: error[unresolved-attribute] Object of type `(...) -> _T@cprofile_wrapper` has no attribute `__name__` +torch/_dynamo/convert_frame.py:489:13: error[unresolved-attribute] Object of type `(...) -> _T@cprofile_wrapper` has no attribute `__name__` +torch/_dynamo/convert_frame.py:628:13: error[no-matching-overload] No overload of function `dirname` matches arguments +torch/_dynamo/convert_frame.py:1247:6: error[invalid-return-type] Function can implicitly return `None`, which is not assignable to return type `DynamoOutput` +torch/_dynamo/convert_frame.py:1938:51: error[invalid-argument-type] Argument to function `format_list` is incorrect: Expected `Iterable[FrameSummary | tuple[str, int, str, str | None]]`, found `object` +torch/_dynamo/convert_frame.py:2132:25: error[call-non-callable] Object of type `object` is not callable +torch/_dynamo/create_parameter_op.py:43:35: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_dynamo/create_parameter_op.py:43:56: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/create_parameter_op.py:47:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_dynamo/debug_utils.py:69:12: error[unresolved-import] Cannot resolve imported module `libfb.py.build_info` +torch/_dynamo/debug_utils.py:226:18: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/_dynamo/debug_utils.py:461:65: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_dynamo/debug_utils.py:462:44: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_dynamo/debug_utils.py:467:39: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_dynamo/debug_utils.py:476:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_dynamo/debug_utils.py:481:17: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_dynamo/debug_utils.py:498:20: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_dynamo/debug_utils.py:554:35: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_dynamo/debug_utils.py:555:36: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/debug_utils.py:571:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_dynamo/debug_utils.py:602:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_dynamo/debug_utils.py:632:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_dynamo/debug_utils.py:638:53: error[invalid-argument-type] Argument is incorrect: Expected `Literal[0] | None`, found `int | None` +torch/_dynamo/debug_utils.py:640:39: error[invalid-argument-type] Argument is incorrect: Expected `Literal[False] | None`, found `bool | None` +torch/_dynamo/debug_utils.py:641:51: error[invalid-argument-type] Argument is incorrect: Expected `Literal[False] | None`, found `bool | None` +torch/_dynamo/debug_utils.py:642:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_dynamo/debug_utils.py:650:43: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_dynamo/debug_utils.py:708:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_dynamo/debug_utils.py:822:26: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_dynamo/debug_utils.py:850:65: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_dynamo/debug_utils.py:864:23: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_dynamo/debug_utils.py:864:67: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_dynamo/decorators.py:121:15: error[unresolved-attribute] Object of type `((...) -> Any) & (() -> object)` has no attribute `__code__` +torch/_dynamo/decorators.py:823:12: error[unresolved-import] Cannot resolve imported module `einops` +torch/_dynamo/device_interface.py:30:26: error[unresolved-import] Module `torch._C` has no member `_cuda_getCurrentRawStream` +torch/_dynamo/device_interface.py:106:24: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_dynamo/device_interface.py:110:29: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_dynamo/device_interface.py:114:28: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_dynamo/device_interface.py:143:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_dynamo/device_interface.py:145:25: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_dynamo/device_interface.py:224:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/device_interface.py:226:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/device_interface.py:238:20: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `(Unknown & ~None) | str | int` on object of type `list[Unknown]` +torch/_dynamo/device_interface.py:284:16: error[unresolved-import] Cannot resolve imported module `triton.backends` +torch/_dynamo/device_interface.py:295:26: error[unresolved-import] Module `torch._C` has no member `_mtia_getCurrentRawStream` +torch/_dynamo/device_interface.py:321:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/device_interface.py:323:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/device_interface.py:335:20: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> dict[str, Any] | Unknown, (s: slice[Any, Any, Any], /) -> list[dict[str, Any] | Unknown]]` cannot be called with key of type `(Unknown & ~None) | str | int` on object of type `list[dict[str, Any] | Unknown]` +torch/_dynamo/device_interface.py:370:16: error[unresolved-import] Cannot resolve imported module `triton.backends` +torch/_dynamo/device_interface.py:378:26: error[unresolved-import] Module `torch._C` has no member `_xpu_getCurrentRawStream` +torch/_dynamo/device_interface.py:404:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/device_interface.py:406:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/device_interface.py:418:20: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `(Unknown & ~None) | str | int` on object of type `list[Unknown]` +torch/_dynamo/device_interface.py:455:16: error[unresolved-import] Cannot resolve imported module `triton.backends` +torch/_dynamo/device_interface.py:468:17: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_dynamo/device_interface.py:519:16: error[unresolved-import] Cannot resolve imported module `triton.backends` +torch/_dynamo/device_interface.py:532:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_dynamo/device_interface.py:534:22: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_dynamo/device_interface.py:534:37: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_dynamo/device_interface.py:536:25: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_dynamo/device_interface.py:572:24: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/device_interface.py:574:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/device_interface.py:579:49: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/device_interface.py:580:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/distributed.py:24:23: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/_dynamo/distributed.py:25:21: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/_dynamo/distributed.py:28:34: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/_dynamo/distributed.py:32:13: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/_dynamo/distributed.py:37:27: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/_dynamo/distributed.py:47:32: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/_dynamo/distributed.py:48:32: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/_dynamo/distributed.py:51:25: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/_dynamo/eval_frame.py:337:13: error[call-non-callable] Object of type `object` is not callable +torch/_dynamo/eval_frame.py:356:16: error[unresolved-attribute] Object of type `((...) -> Any) & (() -> object)` has no attribute `__code__` +torch/_dynamo/eval_frame.py:357:12: error[unresolved-attribute] Module `torch._C` has no member `_dynamo` +torch/_dynamo/eval_frame.py:520:13: error[invalid-assignment] Object of type `bool` is not assignable to attribute `training` on type `Unknown | Module` +torch/_dynamo/eval_frame.py:657:13: warning[possibly-missing-attribute] Member `all_gather_object` may be missing on module `torch.distributed` +torch/_dynamo/eval_frame.py:811:38: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__code__` +torch/_dynamo/eval_frame.py:868:26: error[unresolved-attribute] Module `torch._C` has no member `_is_tracing` +torch/_dynamo/eval_frame.py:876:39: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_dynamo/eval_frame.py:914:21: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/eval_frame.py:917:61: error[invalid-argument-type] Argument to function `_callback_from_stance` is incorrect: Expected `DynamoCallbackFn | None | bool`, found `(def do_nothing(...) -> None) | ((...) -> Any)` +torch/_dynamo/eval_frame.py:1121:13: error[invalid-assignment] Object of type `(...) -> Any` is not assignable to attribute `__call__` on type `((...) -> Any) & type & ~Module` +torch/_dynamo/eval_frame.py:1125:17: error[invalid-assignment] Object of type `(...) -> Any` is not assignable to attribute `_call_impl` on type `((...) -> Any) & type[Module] & ~Module` +torch/_dynamo/eval_frame.py:1160:19: error[invalid-assignment] Implicit shadowing of function `_fn` +torch/_dynamo/eval_frame.py:1429:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/_dynamo/eval_frame.py:1475:13: error[call-non-callable] Object of type `object` is not callable +torch/_dynamo/eval_frame.py:1739:9: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_dynamo/eval_frame.py:1954:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/_dynamo/eval_frame.py:2228:22: error[unresolved-attribute] Module `torch.fx` has no member `traceback` +torch/_dynamo/external_utils.py:103:59: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_dynamo/functional_export.py:372:16: error[unsupported-operator] Operator `in` is not supported for types `str` and `Module`, in comparing `Literal["dynamo_flat_name_to_original_fqn"]` with `Unknown | Tensor | Module` +torch/_dynamo/functional_export.py:374:70: error[non-subscriptable] Cannot subscript object of type `Module` with no `__getitem__` method +torch/_dynamo/functional_export.py:379:16: error[unsupported-operator] Operator `in` is not supported for types `str` and `Module`, in comparing `Literal["dynamo_compile_id"]` with `Unknown | Tensor | Module` +torch/_dynamo/functional_export.py:381:55: error[non-subscriptable] Cannot subscript object of type `Module` with no `__getitem__` method +torch/_dynamo/functional_export.py:512:13: error[unresolved-attribute] Cannot assign object of type `int` to attribute `num_inputs` on type `Self@__init__` with custom `__setattr__` method. +torch/_dynamo/functional_export.py:513:13: error[unresolved-attribute] Cannot assign object of type `None` to attribute `gm_inputs` on type `Self@__init__` with custom `__setattr__` method. +torch/_dynamo/functional_export.py:521:17: error[unresolved-attribute] Cannot assign object of type `tuple[Unknown, ...]` to attribute `gm_inputs` on type `Self@forward` with custom `__setattr__` method. +torch/_dynamo/functional_export.py:531:17: warning[possibly-missing-attribute] Member `detect_fake_mode` may be missing on module `torch._dynamo.utils` +torch/_dynamo/functional_export.py:544:13: error[unresolved-attribute] Cannot assign object of type `int` to attribute `num_inputs` on type `Self@__init__` with custom `__setattr__` method. +torch/_dynamo/functional_export.py:546:13: error[unresolved-attribute] Cannot assign object of type `int` to attribute `num_outputs` on type `Self@__init__` with custom `__setattr__` method. +torch/_dynamo/functional_export.py:561:18: error[unresolved-attribute] Cannot assign object of type `TreeSpec` to attribute `out_spec` on type `Self@forward` with custom `__setattr__` method. +torch/_dynamo/functional_export.py:575:17: warning[possibly-missing-attribute] Member `detect_fake_mode` may be missing on module `torch._dynamo.utils` +torch/_dynamo/functional_export.py:643:13: error[unresolved-attribute] Cannot assign object of type `dict[str, Parameter | None]` to attribute `_parameters` on type `GraphModule` with custom `__setattr__` method. +torch/_dynamo/functional_export.py:644:13: error[unresolved-attribute] Cannot assign object of type `dict[str, Tensor | None]` to attribute `_buffers` on type `GraphModule` with custom `__setattr__` method. +torch/_dynamo/functional_export.py:647:13: error[unresolved-attribute] Cannot assign object of type `set[str]` to attribute `_non_persistent_buffers_set` on type `GraphModule` with custom `__setattr__` method. +torch/_dynamo/functional_export.py:654:9: error[unresolved-attribute] Cannot assign object of type `TreeSpec` to attribute `_in_spec` on type `GraphModule` with custom `__setattr__` method. +torch/_dynamo/functional_export.py:655:9: error[unresolved-attribute] Cannot assign object of type `TreeSpec` to attribute `_out_spec` on type `GraphModule` with custom `__setattr__` method. +torch/_dynamo/functional_export.py:800:43: error[unresolved-attribute] Module `torch._dynamo` has no member `source` +torch/_dynamo/graph_region_tracker.py:55:5: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_dynamo/graph_region_tracker.py:155:9: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_dynamo/graph_region_tracker.py:156:9: error[unresolved-attribute] Module `torch` has no member `is_inference_mode_enabled` +torch/_dynamo/graph_region_tracker.py:157:9: error[unresolved-attribute] Module `torch` has no member `get_num_threads` +torch/_dynamo/graph_region_tracker.py:158:9: error[unresolved-attribute] Module `torch._C` has no member `_get_cublas_allow_fp16_reduced_precision_reduction` +torch/_dynamo/graph_region_tracker.py:159:9: error[unresolved-attribute] Module `torch._C` has no member `_get_cublas_allow_bf16_reduced_precision_reduction` +torch/_dynamo/graph_region_tracker.py:160:9: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_dynamo/graph_region_tracker.py:162:9: error[unresolved-attribute] Module `torch._C` has no member `_get_cublas_allow_tf32` +torch/_dynamo/graph_utils.py:87:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/guards.py:220:26: error[unresolved-import] Module `torch._C` has no member `DispatchKeySet` +torch/_dynamo/guards.py:726:16: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_dynamo/guards.py:770:23: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/guards.py:783:23: error[unresolved-attribute] Module `torch._C` has no member `_dynamo` +torch/_dynamo/guards.py:852:25: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_include_set` +torch/_dynamo/guards.py:853:9: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_exclude_set` +torch/_dynamo/guards.py:1011:14: error[unresolved-attribute] Module `torch` has no member `package` +torch/_dynamo/guards.py:1818:24: error[unresolved-attribute] Module `torch._C` has no member `_dynamo` +torch/_dynamo/guards.py:2074:32: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_dynamo/guards.py:2102:22: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/guards.py:2112:21: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/guards.py:2114:13: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/guards.py:2205:17: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_dynamo/guards.py:2206:17: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_dynamo/guards.py:2214:55: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/_dynamo/guards.py:2771:20: error[unresolved-attribute] Module `torch._inductor` has no member `exc` +torch/_dynamo/guards.py:2810:29: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_keys` +torch/_dynamo/guards.py:2861:44: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/guards.py:2861:58: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_dynamo/guards.py:3195:9: error[unresolved-attribute] Module `torch._C` has no member `Stream` +torch/_dynamo/guards.py:3199:17: error[unresolved-attribute] Module `torch._C` has no member `_distributed_c10d` +torch/_dynamo/guards.py:3231:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/guards.py:3242:13: error[invalid-argument-type] Argument to bound method `from_meta_and_device` is incorrect: Expected `type[Tensor] | None`, found `type` +torch/_dynamo/guards.py:3243:13: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_dynamo/guards.py:3252:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/guards.py:3268:29: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_dynamo/guards.py:3276:59: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_dynamo/guards.py:3277:16: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_dynamo/guards.py:3282:10: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/guards.py:3283:16: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/guards.py:3299:16: error[unresolved-attribute] Module `torch.distributed` has no member `fsdp` +torch/_dynamo/guards.py:3361:21: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_dynamo/guards.py:3364:21: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_keys` +torch/_dynamo/guards.py:3370:17: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_dynamo/guards.py:3373:17: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_keys` +torch/_dynamo/guards.py:3395:30: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_dynamo/guards.py:3398:30: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/guards.py:3461:19: error[unresolved-attribute] Module `torch._dynamo` has no member `exc` +torch/_dynamo/guards.py:3507:15: error[unresolved-attribute] Module `torch._dynamo` has no member `exc` +torch/_dynamo/guards.py:3538:37: error[unresolved-reference] Name `OutputGraphCommon` used when not defined +torch/_dynamo/guards.py:3553:37: error[unresolved-attribute] Module `torch._C` has no member `_dynamo` +torch/_dynamo/guards.py:3776:23: error[unresolved-attribute] Module `torch._dynamo` has no member `exc` +torch/_dynamo/guards.py:3788:23: error[unresolved-attribute] Module `torch._dynamo` has no member `exc` +torch/_dynamo/guards.py:3855:21: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_dynamo/metrics_context.py:124:35: error[invalid-type-form] Invalid subscript of object of type `def set(self, metric: str, value: Any, overwrite: bool = Literal[False]) -> None` in type expression +torch/_dynamo/output_graph.py:144:5: warning[possibly-missing-import] Member `LazyString` of module `torch._dynamo.utils` may be missing +torch/_dynamo/output_graph.py:335:28: error[unresolved-attribute] Module `torch._functorch` has no member `pyfunctorch` +torch/_dynamo/output_graph.py:336:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/output_graph.py:337:25: error[unresolved-attribute] Module `torch._C` has no member `_dynamo` +torch/_dynamo/output_graph.py:411:71: warning[deprecated] The class `LeafSpec` is deprecated: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. +torch/_dynamo/output_graph.py:416:75: warning[deprecated] The class `LeafSpec` is deprecated: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. +torch/_dynamo/output_graph.py:437:12: error[invalid-return-type] Return type does not match returned value: expected `dict[str, Any]`, found `Top[dict[Unknown, Unknown]]` +torch/_dynamo/output_graph.py:549:30: error[unresolved-attribute] Module `torch._functorch` has no member `pyfunctorch` +torch/_dynamo/output_graph.py:550:28: error[unresolved-attribute] Module `torch.utils` has no member `_device` +torch/_dynamo/output_graph.py:553:16: error[unresolved-attribute] Module `torch._C` has no member `_dynamo` +torch/_dynamo/output_graph.py:671:44: error[unresolved-attribute] Module `torch._C` has no member `_is_torch_function_mode_enabled` +torch/_dynamo/output_graph.py:802:14: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/output_graph.py:807:16: error[unresolved-attribute] Module `torch._dynamo` has no member `compiled_autograd` +torch/_dynamo/output_graph.py:815:12: error[unresolved-attribute] Module `torch._dynamo` has no member `compiled_autograd` +torch/_dynamo/output_graph.py:818:21: error[unresolved-attribute] Module `torch._functorch` has no member `_aot_autograd` +torch/_dynamo/output_graph.py:820:13: error[unresolved-attribute] Module `torch._functorch` has no member `_aot_autograd` +torch/_dynamo/output_graph.py:851:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `InstructionTranslatorBase`, found `Unknown | InstructionTranslatorBase | None` +torch/_dynamo/output_graph.py:855:17: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +torch/_dynamo/output_graph.py:995:65: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_dynamo/output_graph.py:998:31: error[unresolved-attribute] Module `torch` has no member `set_autocast_enabled` +torch/_dynamo/output_graph.py:999:13: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/_dynamo/output_graph.py:1002:31: error[unresolved-attribute] Module `torch` has no member `set_autocast_enabled` +torch/_dynamo/output_graph.py:1003:13: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/_dynamo/output_graph.py:1006:31: error[unresolved-attribute] Module `torch` has no member `set_autocast_dtype` +torch/_dynamo/output_graph.py:1007:13: error[unresolved-attribute] Module `torch` has no member `get_autocast_dtype` +torch/_dynamo/output_graph.py:1010:31: error[unresolved-attribute] Module `torch` has no member `set_autocast_dtype` +torch/_dynamo/output_graph.py:1011:13: error[unresolved-attribute] Module `torch` has no member `get_autocast_dtype` +torch/_dynamo/output_graph.py:1014:13: error[unresolved-attribute] Module `torch` has no member `set_autocast_cache_enabled` +torch/_dynamo/output_graph.py:1015:13: error[unresolved-attribute] Module `torch` has no member `is_autocast_cache_enabled` +torch/_dynamo/output_graph.py:1026:16: error[invalid-return-type] Return type does not match returned value: expected `InstructionTranslatorBase`, found `Unknown | InstructionTranslatorBase | None` +torch/_dynamo/output_graph.py:1942:24: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_dynamo/output_graph.py:1945:33: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/_dynamo/output_graph.py:1951:37: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/_dynamo/output_graph.py:1966:19: error[unresolved-attribute] Module `torch._dynamo` has no member `exc` +torch/_dynamo/output_graph.py:2064:17: warning[possibly-missing-attribute] Member `all_gather_object` may be missing on module `torch.distributed` +torch/_dynamo/output_graph.py:2323:25: error[unresolved-attribute] Module `torch._dynamo` has no member `graph_bytecode_inputs` +torch/_dynamo/output_graph.py:2416:17: warning[possibly-missing-attribute] Attribute `f_code` may be missing on object of type `Unknown | InstructionTranslatorBase | None` +torch/_dynamo/output_graph.py:2418:77: warning[possibly-missing-attribute] Attribute `format_frame_summary` may be missing on object of type `Unknown | InstructionTranslatorBase | None` +torch/_dynamo/output_graph.py:2591:66: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_dynamo/output_graph.py:2829:12: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_dynamo/output_graph.py:2844:16: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_dynamo/output_graph.py:2859:24: error[unresolved-attribute] Module `torch._C` has no member `_jit_resolve_packet` +torch/_dynamo/output_graph.py:2872:12: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_dynamo/output_graph.py:3005:12: error[unresolved-attribute] Module `torch` has no member `is_inference_mode_enabled` +torch/_dynamo/output_graph.py:3573:40: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_dynamo/output_graph.py:3595:42: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/_dynamo/output_graph.py:3598:43: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_dynamo/output_graph.py:3598:61: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_dynamo/output_graph.py:3601:43: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/_dynamo/output_graph.py:3601:61: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/_dynamo/output_graph.py:3701:40: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_dynamo/output_graph.py:3721:42: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/_dynamo/output_graph.py:3724:43: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_dynamo/output_graph.py:3724:61: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_dynamo/output_graph.py:3727:43: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/_dynamo/output_graph.py:3727:61: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/_dynamo/package.py:123:12: error[unresolved-attribute] Module `torch._dynamo` has no member `guards` +torch/_dynamo/package.py:323:35: warning[possibly-missing-attribute] Attribute `strip` may be missing on object of type `str | None` +torch/_dynamo/package.py:619:28: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__code__` +torch/_dynamo/package.py:624:17: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__code__` +torch/_dynamo/package.py:756:43: warning[possibly-missing-attribute] Attribute `__code__` may be missing on object of type `(Unknown & ~None) | ((...) -> Any)` +torch/_dynamo/package.py:773:35: warning[possibly-missing-attribute] Attribute `__code__` may be missing on object of type `(Unknown & ~None) | ((...) -> Any)` +torch/_dynamo/package.py:849:53: error[unresolved-attribute] Module `torch._dynamo` has no member `guards` +torch/_dynamo/package.py:867:21: warning[possibly-missing-attribute] Attribute `__qualname__` may be missing on object of type `(Unknown & ~None) | ((...) -> Any)` +torch/_dynamo/package.py:868:29: warning[possibly-missing-attribute] Attribute `__code__` may be missing on object of type `(Unknown & ~None) | ((...) -> Any)` +torch/_dynamo/package.py:878:28: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__qualname__` +torch/_dynamo/package.py:879:32: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__code__` +torch/_dynamo/pgo.py:529:32: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/_dynamo/pgo.py:530:16: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/_dynamo/pgo.py:598:14: error[unresolved-import] Cannot resolve imported module `torch._inductor.fb.remote_cache` +torch/_dynamo/pgo.py:958:39: error[invalid-argument-type] Argument to function `render_code_state` is incorrect: Expected `defaultdict[CodeId, CodeState]`, found `defaultdict[CodeId, CodeState] | None` +torch/_dynamo/pgo.py:995:39: error[invalid-argument-type] Argument to function `render_code_state` is incorrect: Expected `defaultdict[CodeId, CodeState]`, found `defaultdict[CodeId, CodeState] | None` +torch/_dynamo/polyfills/__init__.py:96:24: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_dynamo/polyfills/__init__.py:100:10: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_dynamo/polyfills/__init__.py:362:14: error[unresolved-attribute] Module `torch` has no member `_foreach_sub` +torch/_dynamo/polyfills/__init__.py:363:14: error[unresolved-attribute] Module `torch` has no member `_foreach_mul` +torch/_dynamo/polyfills/__init__.py:364:12: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/_dynamo/polyfills/__init__.py:368:12: error[unresolved-attribute] Module `torch` has no member `_foreach_pow` +torch/_dynamo/polyfills/fx.py:4:22: error[unresolved-import] Module `torch._C` has no member `_fx_map_aggregate` +torch/_dynamo/polyfills/fx.py:4:41: error[unresolved-import] Module `torch._C` has no member `_fx_map_arg` +torch/_dynamo/polyfills/os.py:21:16: error[invalid-return-type] Return type does not match returned value: expected `AnyStr@fspath`, found `str | bytes` +torch/_dynamo/polyfills/tensor.py:14:10: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunctionSubclass` +torch/_dynamo/profiler.py:55:13: error[invalid-argument-type] Argument is incorrect: Expected `int`, found `int | float | Any` +torch/_dynamo/profiler.py:57:13: error[invalid-argument-type] Argument is incorrect: Expected `int`, found `int | float | Any` +torch/_dynamo/repro/after_aot.py:42:10: error[unresolved-import] Cannot resolve imported module `triton.runtime.autotuner` +torch/_dynamo/repro/after_aot.py:43:10: error[unresolved-import] Cannot resolve imported module `triton.runtime.jit` +torch/_dynamo/repro/after_aot.py:376:31: warning[possibly-missing-attribute] Attribute `fn` may be missing on object of type `Unknown | (Autotuner & Autotuner) | (JITFunction & Autotuner)` +torch/_dynamo/repro/after_aot.py:383:38: warning[possibly-missing-attribute] Attribute `configs` may be missing on object of type `Unknown | (Autotuner & Autotuner) | (JITFunction & Autotuner)` +torch/_dynamo/repro/after_aot.py:403:24: warning[possibly-missing-attribute] Attribute `src` may be missing on object of type `Unknown | (Autotuner & JITFunction) | (JITFunction & JITFunction)` +torch/_dynamo/repro/after_aot.py:406:17: warning[possibly-missing-attribute] Attribute `_fn_name` may be missing on object of type `Unknown | (Autotuner & JITFunction) | (JITFunction & JITFunction)` +torch/_dynamo/repro/after_aot.py:507:25: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/repro/after_aot.py:792:5: error[invalid-assignment] Object of type `Literal[True]` is not assignable to attribute `generate_intermediate_hooks` of type `Literal[False]` +torch/_dynamo/repro/after_aot.py:883:14: error[unresolved-attribute] Module `torch.utils` has no member `_content_store` +torch/_dynamo/repro/after_aot.py:886:14: error[unresolved-attribute] Module `torch.utils` has no member `_content_store` +torch/_dynamo/repro/after_dynamo.py:231:42: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/_dynamo/repro/aoti.py:305:5: error[invalid-assignment] Object of type `Literal[True]` is not assignable to attribute `generate_intermediate_hooks` of type `Literal[False]` +torch/_dynamo/repro/aoti.py:427:14: error[invalid-assignment] Object of type `Module | None` is not assignable to `GraphModule` +torch/_dynamo/resume_execution.py:106:12: warning[unresolved-global] Invalid global declaration of `__import_torch_dot__dynamo_dot_utils`: `__import_torch_dot__dynamo_dot_utils` has no declarations or bindings in the global scope +torch/_dynamo/side_effects.py:502:19: error[no-matching-overload] No overload of function `__new__` matches arguments +torch/_dynamo/side_effects.py:724:26: error[unresolved-attribute] Module `torch._dynamo.variables` has no member `torch_function` +torch/_dynamo/side_effects.py:958:22: error[unresolved-attribute] Module `torch._dynamo.variables` has no member `torch_function` +torch/_dynamo/side_effects.py:967:24: error[unresolved-attribute] Module `torch._dynamo.variables` has no member `torch_function` +torch/_dynamo/source.py:26:19: error[unresolved-import] Module `torch` has no member `device` +torch/_dynamo/symbolic_convert.py:134:5: warning[possibly-missing-import] Member `LazyString` of module `torch._dynamo.utils` may be missing +torch/_dynamo/symbolic_convert.py:434:45: error[invalid-argument-type] Argument to class `tuple` is incorrect: Expected `Iterable[object]`, found `~AlwaysFalsy` +torch/_dynamo/symbolic_convert.py:686:21: error[unresolved-attribute] Module `torch` has no member `_assert_async` +torch/_dynamo/symbolic_convert.py:699:26: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/_dynamo/symbolic_convert.py:711:34: error[unresolved-attribute] Module `torch` has no member `scalar_tensor` +torch/_dynamo/symbolic_convert.py:722:17: error[unresolved-attribute] Module `torch` has no member `_assert_async` +torch/_dynamo/symbolic_convert.py:921:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `InstructionTranslatorBase`, found `Unknown | InstructionTranslatorBase | None` +torch/_dynamo/symbolic_convert.py:1004:9: error[unresolved-attribute] Unresolved attribute `dispatch_table` on type `type`. +torch/_dynamo/symbolic_convert.py:1292:17: error[missing-argument] No argument provided for required parameter `self` of function `is_non_empty_graph` +torch/_dynamo/symbolic_convert.py:1602:28: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `InstructionTranslatorBase`, found `Unknown | InstructionTranslatorBase | None` +torch/_dynamo/symbolic_convert.py:1654:42: error[unsupported-operator] Operator `in` is not supported for types `str` and `object`, in comparing `Literal["Data-dependent"]` with `object` +torch/_dynamo/symbolic_convert.py:1843:21: error[unresolved-attribute] Module `torch` has no member `package` +torch/_dynamo/symbolic_convert.py:1988:17: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `str | None` +torch/_dynamo/symbolic_convert.py:2228:60: error[invalid-argument-type] Argument to function `get_dynamo_observed_exception` is incorrect: Expected `type[Exception]`, found `Unknown | type` +torch/_dynamo/symbolic_convert.py:2469:17: warning[possibly-missing-attribute] Attribute `fn` may be missing on object of type `VariableTracker | Unknown` +torch/_dynamo/symbolic_convert.py:2558:22: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `keys_as_python_constant` +torch/_dynamo/symbolic_convert.py:2560:32: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `items` +torch/_dynamo/symbolic_convert.py:2951:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `InstructionTranslatorBase`, found `Unknown | InstructionTranslatorBase | None` +torch/_dynamo/symbolic_convert.py:4176:26: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_dynamo/symbolic_convert.py:4196:49: error[invalid-argument-type] Argument to function `collapse_resume_frames` is incorrect: Expected `StackSummary`, found `StackSummary | None` +torch/_dynamo/symbolic_convert.py:4562:14: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/symbolic_convert.py:4564:13: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/symbolic_convert.py:4565:13: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/symbolic_convert.py:4566:13: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/symbolic_convert.py:5075:21: error[unresolved-attribute] Module `torch` has no member `package` +torch/_dynamo/tensor_version_op.py:53:15: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_dynamo/tensor_version_op.py:70:5: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_dynamo/test_case.py:87:39: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_dynamo/test_case.py:101:47: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_dynamo/test_case.py:125:9: error[invalid-assignment] Object of type `Literal[True]` is not assignable to attribute `nested_graph_breaks` of type `Literal[False]` +torch/_dynamo/testing.py:52:5: error[conflicting-declarations] Conflicting declared types for `np`: `ModuleType | None` and `` +torch/_dynamo/testing.py:116:20: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_dynamo/testing.py:383:14: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_dynamo/testing.py:384:14: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_dynamo/testing.py:425:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_dynamo/testing.py:425:26: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_dynamo/testing.py:426:24: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/testing.py:441:22: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_dynamo/testing.py:441:53: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_dynamo/testing.py:445:22: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_dynamo/testing.py:447:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_dynamo/testing.py:448:12: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/_dynamo/testing.py:490:13: error[unresolved-attribute] Unresolved attribute `__name__` on type `(...) -> Unknown`. +torch/_dynamo/testing.py:558:16: error[unresolved-import] Cannot resolve imported module `torch_xla.core.xla_model` +torch/_dynamo/trace_rules.py:56:5: warning[possibly-missing-import] Member `NP_SUPPORTED_MODULES` of module `torch._dynamo.utils` may be missing +torch/_dynamo/trace_rules.py:3011:27: warning[possibly-missing-attribute] Attribute `__wrapped__` may be missing on object of type `(Any & ~None) | str` +torch/_dynamo/trace_rules.py:3616:20: error[invalid-argument-type] Argument to function `_as_posix_path` is incorrect: Expected `str`, found `str | None` +torch/_dynamo/trace_rules.py:4036:5: error[unresolved-attribute] Module `torch._dynamo` has no member `trace_rules` +torch/_dynamo/trace_rules.py:4037:5: error[unresolved-attribute] Module `torch._dynamo` has no member `trace_rules` +torch/_dynamo/trace_rules.py:4038:5: error[unresolved-attribute] Module `torch._dynamo` has no member `trace_rules` +torch/_dynamo/trace_rules.py:4039:5: error[unresolved-attribute] Module `torch._dynamo` has no member `trace_rules` +torch/_dynamo/trace_rules.py:4040:5: error[unresolved-attribute] Module `torch._dynamo` has no member `trace_rules` +torch/_dynamo/utils.py:74:5: error[unresolved-import] Module `torch._C` has no member `_len_torch_function_stack` +torch/_dynamo/utils.py:75:5: error[unresolved-import] Module `torch._C` has no member `_pop_torch_function_stack` +torch/_dynamo/utils.py:76:5: error[unresolved-import] Module `torch._C` has no member `_push_on_torch_function_stack` +torch/_dynamo/utils.py:740:23: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_dynamo/utils.py:857:5: error[unresolved-attribute] Module `torch` has no member `FloatTensor` +torch/_dynamo/utils.py:857:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_dynamo/utils.py:857:40: error[unresolved-attribute] Module `torch` has no member `float` +torch/_dynamo/utils.py:858:5: error[unresolved-attribute] Module `torch` has no member `DoubleTensor` +torch/_dynamo/utils.py:858:26: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_dynamo/utils.py:858:41: error[unresolved-attribute] Module `torch` has no member `double` +torch/_dynamo/utils.py:859:5: error[unresolved-attribute] Module `torch` has no member `HalfTensor` +torch/_dynamo/utils.py:859:24: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_dynamo/utils.py:859:39: error[unresolved-attribute] Module `torch` has no member `half` +torch/_dynamo/utils.py:860:5: error[unresolved-attribute] Module `torch` has no member `BFloat16Tensor` +torch/_dynamo/utils.py:860:28: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_dynamo/utils.py:861:5: error[unresolved-attribute] Module `torch` has no member `ByteTensor` +torch/_dynamo/utils.py:861:24: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_dynamo/utils.py:862:5: error[unresolved-attribute] Module `torch` has no member `CharTensor` +torch/_dynamo/utils.py:862:24: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_dynamo/utils.py:863:5: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/_dynamo/utils.py:863:24: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_dynamo/utils.py:863:37: error[unresolved-attribute] Module `torch` has no member `long` +torch/_dynamo/utils.py:864:5: error[unresolved-attribute] Module `torch` has no member `IntTensor` +torch/_dynamo/utils.py:864:23: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_dynamo/utils.py:864:36: error[unresolved-attribute] Module `torch` has no member `int` +torch/_dynamo/utils.py:865:5: error[unresolved-attribute] Module `torch` has no member `ShortTensor` +torch/_dynamo/utils.py:865:25: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_dynamo/utils.py:865:38: error[unresolved-attribute] Module `torch` has no member `short` +torch/_dynamo/utils.py:866:5: error[unresolved-attribute] Module `torch` has no member `BoolTensor` +torch/_dynamo/utils.py:866:24: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_dynamo/utils.py:1665:18: error[unresolved-import] Cannot resolve imported module `torch._inductor.fb.remote_cache` +torch/_dynamo/utils.py:1680:22: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_dynamo/utils.py:1901:36: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_dynamo/utils.py:1944:36: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_dynamo/utils.py:2044:26: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_dynamo/utils.py:2161:41: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_dynamo/utils.py:2170:13: error[unresolved-attribute] Module `torch` has no member `clone` +torch/_dynamo/utils.py:2185:24: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/_dynamo/utils.py:2186:20: error[unresolved-attribute] Module `torch` has no member `sparse_coo_tensor` +torch/_dynamo/utils.py:2193:29: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_dynamo/utils.py:2193:47: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_dynamo/utils.py:2199:20: error[unresolved-attribute] Module `torch` has no member `sparse_compressed_tensor` +torch/_dynamo/utils.py:2215:22: error[unresolved-attribute] Module `torch` has no member `empty_quantized` +torch/_dynamo/utils.py:2217:22: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_dynamo/utils.py:2287:25: error[unresolved-attribute] Module `torch._C` has no member `_DisableFuncTorch` +torch/_dynamo/utils.py:2288:29: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_dynamo/utils.py:2290:21: error[unresolved-attribute] Module `torch` has no member `clone` +torch/_dynamo/utils.py:2293:30: error[unresolved-attribute] Module `torch` has no member `clone` +torch/_dynamo/utils.py:2297:14: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_dynamo/utils.py:2394:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[str, ...]`, found `object` +torch/_dynamo/utils.py:2413:21: error[unresolved-attribute] Module `torch` has no member `clone` +torch/_dynamo/utils.py:2415:30: error[unresolved-attribute] Module `torch` has no member `clone` +torch/_dynamo/utils.py:2417:37: error[unresolved-attribute] Module `torch` has no member `clone` +torch/_dynamo/utils.py:2479:5: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/utils.py:2480:5: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_dynamo/utils.py:2481:5: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_dynamo/utils.py:2482:5: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_dynamo/utils.py:2483:5: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_dynamo/utils.py:2484:5: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_dynamo/utils.py:2490:12: error[unresolved-import] Cannot resolve imported module `triton` +torch/_dynamo/utils.py:2510:13: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_dynamo/utils.py:2532:21: error[unresolved-attribute] Module `torch.nested._internal` has no member `nested_int` +torch/_dynamo/utils.py:2742:50: error[invalid-argument-type] Argument to function `keys` is incorrect: Argument type `dict[Any, Any]` does not satisfy upper bound `OrderedDict[_KT@OrderedDict, _VT@OrderedDict]` of type variable `Self` +torch/_dynamo/utils.py:2981:12: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/_dynamo/utils.py:2981:23: error[unresolved-attribute] Module `torch` has no member `mean` +torch/_dynamo/utils.py:2981:34: error[unresolved-attribute] Module `torch` has no member `square` +torch/_dynamo/utils.py:3011:71: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_dynamo/utils.py:3088:58: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_dynamo/utils.py:3101:29: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_dynamo/utils.py:3105:21: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/_dynamo/utils.py:3106:34: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_dynamo/utils.py:3107:34: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_dynamo/utils.py:3117:36: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_dynamo/utils.py:3118:36: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_dynamo/utils.py:3119:16: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/_dynamo/utils.py:3132:16: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/_dynamo/utils.py:3136:34: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_dynamo/utils.py:3148:25: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/_dynamo/utils.py:3178:46: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_dynamo/utils.py:3178:61: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_dynamo/utils.py:3233:55: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/utils.py:3251:13: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_dynamo/utils.py:3252:13: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_dynamo/utils.py:3306:5: error[invalid-assignment] Object of type `int` is not assignable to attribute `recompile_limit` of type `Literal[8]` +torch/_dynamo/utils.py:3309:5: error[invalid-assignment] Object of type `int` is not assignable to attribute `accumulated_recompile_limit` of type `Literal[256]` +torch/_dynamo/utils.py:3325:27: error[unresolved-attribute] Module `torch._dynamo` has no member `output_graph` +torch/_dynamo/utils.py:3542:32: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_pystub` +torch/_dynamo/utils.py:3880:44: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__code__` +torch/_dynamo/utils.py:3980:16: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_dynamo/utils.py:3992:38: error[unresolved-attribute] Object of type `(...) -> R@numpy_to_tensor_wrapper` has no attribute `__name__` +torch/_dynamo/utils.py:3995:47: warning[possibly-missing-attribute] Attribute `__name__` may be missing on object of type `Unknown | ((...) -> R@numpy_to_tensor_wrapper)` +torch/_dynamo/utils.py:4035:36: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +torch/_dynamo/utils.py:4044:16: error[invalid-assignment] Object of type `GeneratorType[ndarray | (@Todo & ~Tensor), None, None]` is not assignable to `tuple[@Todo, ...]` +torch/_dynamo/utils.py:4054:11: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/_dynamo/utils.py:4055:13: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/_dynamo/utils.py:4072:9: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_dynamo/utils.py:4133:12: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/utils.py:4438:9: error[unresolved-attribute] Module `torch._C` has no member `Generator` +torch/_dynamo/utils.py:4439:9: error[unresolved-attribute] Module `torch` has no member `default_generator` +torch/_dynamo/utils.py:4444:9: error[unresolved-attribute] Module `torch._C` has no member `Generator` +torch/_dynamo/utils.py:4445:9: error[unresolved-attribute] Module `torch` has no member `default_generator` +torch/_dynamo/utils.py:4487:47: error[call-non-callable] Object of type `object` is not callable +torch/_dynamo/utils.py:4496:35: error[unresolved-attribute] Module `torch._C` has no member `_disabled_torch_function_impl` +torch/_dynamo/utils.py:4507:27: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_dynamo/utils.py:4557:14: error[unresolved-attribute] Module `torch._dynamo` has no member `compiled_autograd` +torch/_dynamo/utils.py:4590:9: error[unresolved-attribute] Cannot assign object of type `(list[Any], /) -> Any` to attribute `unflatten_fn` on type `Self@__init__` with custom `__setattr__` method. +torch/_dynamo/utils.py:4612:8: error[unresolved-attribute] Module `torch._dynamo` has no member `compiled_autograd` +torch/_dynamo/utils.py:4690:17: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_dynamo/utils.py:4693:9: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_dynamo/utils.py:4697:52: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_dynamo/utils.py:4708:12: error[unresolved-attribute] Module `torch._C` has no member `_get_function_stack_at` +torch/_dynamo/utils.py:4724:32: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/utils.py:4724:49: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_dynamo/utils.py:4792:63: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_dynamo/utils.py:4793:12: error[unresolved-attribute] Module `torch._C` has no member `Stream` +torch/_dynamo/utils.py:4796:62: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_dynamo/utils.py:4797:12: error[unresolved-attribute] Module `torch._C` has no member `Event` +torch/_dynamo/utils.py:4890:55: error[unresolved-attribute] Module `torch` has no member `is_inference_mode_enabled` +torch/_dynamo/utils.py:4910:14: error[unresolved-attribute] Module `torch._subclasses` has no member `meta_utils` +torch/_dynamo/utils.py:4936:9: error[unresolved-attribute] Module `torch._C` has no member `_profiler` +torch/_dynamo/variables/builder.py:301:10: error[invalid-assignment] Object of type `None` is not assignable to `` +torch/_dynamo/variables/builder.py:398:13: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `None` +torch/_dynamo/variables/builder.py:399:13: error[invalid-argument-type] Argument is incorrect: Expected `TensorWeakRef | SymInt`, found `BackwardState` +torch/_dynamo/variables/builder.py:534:21: error[unresolved-attribute] Module `torch._subclasses` has no member `functional_tensor` +torch/_dynamo/variables/builder.py:539:64: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_dynamo/variables/builder.py:667:18: error[unresolved-import] Cannot resolve imported module `triton.runtime.autotuner` +torch/_dynamo/variables/builder.py:668:18: error[unresolved-import] Cannot resolve imported module `triton.runtime.jit` +torch/_dynamo/variables/builder.py:690:18: error[unresolved-import] Cannot resolve imported module `triton.tools.experimental_descriptor` +torch/_dynamo/variables/builder.py:695:18: error[unresolved-import] Cannot resolve imported module `triton.tools.tensor_descriptor` +torch/_dynamo/variables/builder.py:854:22: error[unresolved-attribute] Module `torch.utils` has no member `_pytree` +torch/_dynamo/variables/builder.py:866:32: error[unresolved-attribute] Module `torch` has no member `DispatchKey` +torch/_dynamo/variables/builder.py:866:51: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/builder.py:1019:32: error[unresolved-attribute] Module `torch._C` has no member `_ImperativeEngine` +torch/_dynamo/variables/builder.py:1043:20: error[unresolved-attribute] Object of type `type[VariableTracker] | None` has no attribute `create_with_source` +torch/_dynamo/variables/builder.py:1063:32: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_dynamo/variables/builder.py:1075:33: error[unresolved-attribute] Module `torch._C` has no member `_SDPAParams` +torch/_dynamo/variables/builder.py:1078:32: error[unresolved-attribute] Module `torch._functorch` has no member `pyfunctorch` +torch/_dynamo/variables/builder.py:1081:32: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_dynamo/variables/builder.py:1112:32: error[unresolved-attribute] Module `torch` has no member `DispatchKeySet` +torch/_dynamo/variables/builder.py:1322:20: error[unresolved-attribute] Object of type `type[VariableTracker] | None` has no attribute `create_with_source` +torch/_dynamo/variables/builder.py:1347:47: error[unresolved-attribute] Module `torch.utils` has no member `_pytree` +torch/_dynamo/variables/builder.py:1396:24: error[unresolved-attribute] Object of type `type[VariableTracker] | None` has no attribute `create_with_source` +torch/_dynamo/variables/builder.py:1498:57: error[invalid-argument-type] Argument is incorrect: Expected `Tensor | None`, found `FakeScriptObject | Unknown` +torch/_dynamo/variables/builder.py:1765:17: error[invalid-argument-type] Argument is incorrect: Expected `TensorWeakRef | SymInt`, found `list[Unknown] | (@Todo & Top[list[Unknown]])` +torch/_dynamo/variables/builder.py:1924:34: error[unresolved-attribute] Module `torch.fx.experimental` has no member `proxy_tensor` +torch/_dynamo/variables/builder.py:2159:39: error[unresolved-attribute] Module `torch.nested._internal` has no member `nested_tensor` +torch/_dynamo/variables/builder.py:2187:32: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `Tensor | None` +torch/_dynamo/variables/builder.py:2191:69: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `Tensor | None` +torch/_dynamo/variables/builder.py:2244:20: error[unresolved-attribute] Module `torch.distributed` has no member `tensor` +torch/_dynamo/variables/builder.py:2321:29: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `proxy` +torch/_dynamo/variables/builder.py:2472:21: error[no-matching-overload] No overload of bound method `__init__` matches arguments +torch/_dynamo/variables/builder.py:2575:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_dynamo/variables/builder.py:2575:51: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_dynamo/variables/builder.py:2580:12: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/builder.py:2664:57: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `sym_num` +torch/_dynamo/variables/builder.py:2674:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_dynamo/variables/builder.py:2757:17: error[unresolved-attribute] Module `torch` has no member `_is_functional_tensor` +torch/_dynamo/variables/builder.py:2791:14: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunctionSubclass` +torch/_dynamo/variables/builder.py:2864:17: error[unresolved-attribute] Module `torch._dynamo` has no member `variables` +torch/_dynamo/variables/builder.py:2865:17: error[unresolved-attribute] Module `torch._dynamo` has no member `variables` +torch/_dynamo/variables/builder.py:2910:22: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunctionSubclass` +torch/_dynamo/variables/builder.py:2924:68: error[invalid-argument-type] Argument to function `wrap_to_fake_tensor_and_record` is incorrect: Expected `Source | None`, found `Unknown | bool` +torch/_dynamo/variables/builder.py:3001:52: error[unresolved-attribute] Module `torch._C` has no member `Generator` +torch/_dynamo/variables/builder.py:3006:30: error[unresolved-attribute] Module `torch._C` has no member `_DisableFuncTorch` +torch/_dynamo/variables/builder.py:3010:32: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_dynamo/variables/builder.py:3055:38: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_dynamo/variables/builder.py:3078:35: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_dynamo/variables/builder.py:3090:35: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_dynamo/variables/builder.py:3103:43: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_dynamo/variables/builder.py:3115:39: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_dynamo/variables/builder.py:3131:13: error[unresolved-attribute] Module `torch._functorch` has no member `predispatch` +torch/_dynamo/variables/builder.py:3132:13: error[unresolved-attribute] Module `torch._functorch` has no member `predispatch` +torch/_dynamo/variables/builder.py:3155:13: error[unresolved-attribute] Module `torch._C` has no member `_are_functorch_transforms_active` +torch/_dynamo/variables/builder.py:3156:13: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/builder.py:3160:13: error[unresolved-attribute] Module `torch._C` has no member `_get_cudnn_sdp_enabled` +torch/_dynamo/variables/builder.py:3161:13: error[unresolved-attribute] Module `torch._C` has no member `_get_flash_sdp_enabled` +torch/_dynamo/variables/builder.py:3162:13: error[unresolved-attribute] Module `torch._C` has no member `_get_mem_efficient_sdp_enabled` +torch/_dynamo/variables/builder.py:3163:13: error[unresolved-attribute] Module `torch._C` has no member `_get_math_sdp_enabled` +torch/_dynamo/variables/builder.py:3164:13: error[unresolved-attribute] Module `torch._C` has no member `_get_overrideable_sdp_enabled` +torch/_dynamo/variables/builder.py:3195:9: error[unresolved-attribute] Module `torch._subclasses` has no member `functional_tensor` +torch/_dynamo/variables/builder.py:3380:12: error[unresolved-attribute] Module `torch.nested._internal` has no member `nested_tensor` +torch/_dynamo/variables/builder.py:3418:27: error[unresolved-attribute] Object of type `SymbolicContext` has no attribute `dynamic_sizes` +torch/_dynamo/variables/builder.py:3419:29: error[unresolved-attribute] Object of type `SymbolicContext` has no attribute `dynamic_strides` +torch/_dynamo/variables/builder.py:3420:30: error[unresolved-attribute] Object of type `SymbolicContext` has no attribute `constraint_sizes` +torch/_dynamo/variables/builder.py:3421:32: error[unresolved-attribute] Object of type `SymbolicContext` has no attribute `constraint_strides` +torch/_dynamo/variables/builder.py:3423:27: error[unresolved-attribute] Object of type `SymbolicContext` has no attribute `tensor_source` +torch/_dynamo/variables/builder.py:3424:49: error[unresolved-attribute] Object of type `SymbolicContext` has no attribute `shape_env_to_source_to_symbol_cache` +torch/_dynamo/variables/builder.py:3436:13: error[invalid-argument-type] Argument is incorrect: Expected `dict[int, dict[str, Expr]]`, found `Unknown | None` +torch/_dynamo/variables/builder.py:3454:13: error[invalid-argument-type] Argument is incorrect: Expected `dict[int, dict[str, Expr]]`, found `Unknown | None` +torch/_dynamo/variables/builder.py:3637:9: error[invalid-argument-type] Argument is incorrect: Expected `dict[int, dict[str, Expr]]`, found `Unknown | None` +torch/_dynamo/variables/builder.py:3768:24: error[unresolved-attribute] Class `SourcelessBuilder` has no attribute `_type_handlers` +torch/_dynamo/variables/builder.py:3775:32: error[unresolved-attribute] Module `dataclasses` has no member `_HAS_DEFAULT_FACTORY_CLASS` +torch/_dynamo/variables/builder.py:3782:20: error[call-non-callable] Object of type `None` is not callable +torch/_dynamo/variables/builder.py:3787:19: error[call-non-callable] Object of type `None` is not callable +torch/_dynamo/variables/builder.py:3790:20: error[call-non-callable] Object of type `None` is not callable +torch/_dynamo/variables/builder.py:3792:32: error[unresolved-attribute] Module `torch` has no member `DispatchKey` +torch/_dynamo/variables/builder.py:3792:51: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/builder.py:3814:32: error[unresolved-attribute] Module `torch.utils` has no member `_pytree` +torch/_dynamo/variables/builder.py:3824:32: error[unresolved-attribute] Module `torch._dynamo` has no member `variables` +torch/_dynamo/variables/builder.py:3827:20: error[unresolved-attribute] Module `torch._dynamo` has no member `variables` +torch/_dynamo/variables/builder.py:3876:18: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_dynamo/variables/builder.py:3885:18: error[unresolved-attribute] Module `torch` has no member `DispatchKeySet` +torch/_dynamo/variables/builder.py:3888:18: error[unresolved-attribute] Module `torch._functorch` has no member `pyfunctorch` +torch/_dynamo/variables/builder.py:3894:18: error[unresolved-attribute] Module `torch.distributions` has no member `constraints` +torch/_dynamo/variables/builder.py:3899:18: error[unresolved-attribute] Module `torch.distributions` has no member `constraints` +torch/_dynamo/variables/builder.py:3904:18: error[unresolved-attribute] Module `torch.distributions` has no member `constraints` +torch/_dynamo/variables/builder.py:3918:1: error[unresolved-attribute] Unresolved attribute `_type_handlers` on type ``. +torch/_dynamo/variables/builtin.py:245:12: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_dynamo/variables/builtin.py:246:12: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_dynamo/variables/builtin.py:247:16: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_dynamo/variables/builtin.py:247:36: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_dynamo/variables/builtin.py:248:16: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_dynamo/variables/builtin.py:248:36: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_dynamo/variables/builtin.py:778:66: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +torch/_dynamo/variables/builtin.py:879:56: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +torch/_dynamo/variables/builtin.py:935:19: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_dynamo/variables/builtin.py:936:18: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_dynamo/variables/builtin.py:937:20: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_dynamo/variables/builtin.py:1062:70: error[invalid-argument-type] Argument to function `_find_binop_handler` is incorrect: Expected `type[VariableTracker]`, found `type` +torch/_dynamo/variables/builtin.py:1082:45: error[unresolved-attribute] Object of type `((...) -> Any) & ~type[Exception] & ~` has no attribute `__name__` +torch/_dynamo/variables/builtin.py:1110:95: error[unresolved-attribute] Object of type `((...) -> Any) & ~type[Exception] & ~` has no attribute `__name__` +torch/_dynamo/variables/builtin.py:1198:36: error[unresolved-attribute] Object of type `((...) -> Any) & ~type[Exception] & ~` has no attribute `__name__` +torch/_dynamo/variables/builtin.py:1199:84: error[unresolved-attribute] Object of type `((...) -> Any) & ~type[Exception] & ~` has no attribute `__name__` +torch/_dynamo/variables/builtin.py:1202:47: error[unresolved-attribute] Object of type `((...) -> Any) & ~type[Exception] & ~` has no attribute `__name__` +torch/_dynamo/variables/builtin.py:1203:85: error[unresolved-attribute] Object of type `((...) -> Any) & ~type[Exception] & ~` has no attribute `__name__` +torch/_dynamo/variables/builtin.py:1327:22: error[unresolved-attribute] Module `torch` has no member `select` +torch/_dynamo/variables/builtin.py:1530:28: warning[possibly-missing-attribute] Attribute `call_method` may be missing on object of type `Unknown | None | ConstDictVariable` +torch/_dynamo/variables/builtin.py:1539:28: warning[possibly-missing-attribute] Attribute `call_method` may be missing on object of type `Unknown | None | VariableTracker` +torch/_dynamo/variables/builtin.py:1724:60: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_dynamo/variables/builtin.py:1750:65: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_dynamo/variables/builtin.py:1760:38: error[unresolved-attribute] Module `torch` has no member `maximum` +torch/_dynamo/variables/builtin.py:1760:58: error[unresolved-attribute] Module `torch` has no member `minimum` +torch/_dynamo/variables/builtin.py:2652:19: error[unresolved-attribute] Module `torch._dynamo` has no member `trace_rules` +torch/_dynamo/variables/builtin.py:2774:25: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_dynamo/variables/constant.py:127:55: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_dynamo/variables/ctx_manager.py:78:13: error[call-non-callable] Object of type `object` is not callable +torch/_dynamo/variables/ctx_manager.py:89:21: error[call-non-callable] Object of type `object` is not callable +torch/_dynamo/variables/ctx_manager.py:253:27: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:254:9: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:257:21: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:263:13: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:275:13: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:296:22: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:299:21: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:303:13: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:315:13: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:345:21: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:347:25: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:351:13: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:362:30: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:382:27: error[unresolved-attribute] Module `torch._C` has no member `_is_fwd_grad_enabled` +torch/_dynamo/variables/ctx_manager.py:383:9: error[unresolved-attribute] Module `torch._C` has no member `_set_fwd_grad_enabled` +torch/_dynamo/variables/ctx_manager.py:386:21: error[unresolved-attribute] Module `torch._C` has no member `_set_fwd_grad_enabled` +torch/_dynamo/variables/ctx_manager.py:390:13: error[unresolved-attribute] Module `torch._C` has no member `_set_fwd_grad_enabled` +torch/_dynamo/variables/ctx_manager.py:402:13: error[unresolved-attribute] Module `torch._C` has no member `_set_fwd_grad_enabled` +torch/_dynamo/variables/ctx_manager.py:430:13: error[unresolved-attribute] Module `torch._C` has no member `_enter_dual_level` +torch/_dynamo/variables/ctx_manager.py:442:13: error[unresolved-attribute] Module `torch._C` has no member `_exit_dual_level` +torch/_dynamo/variables/ctx_manager.py:472:22: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:473:43: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:476:13: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:487:30: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:564:22: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:567:43: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:570:13: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:582:13: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/variables/ctx_manager.py:603:29: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_dynamo/variables/ctx_manager.py:645:12: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_dynamo/variables/ctx_manager.py:647:34: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/_dynamo/variables/ctx_manager.py:649:13: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/_dynamo/variables/ctx_manager.py:664:44: error[unresolved-attribute] Module `torch` has no member `is_inference_mode_enabled` +torch/_dynamo/variables/ctx_manager.py:676:30: error[unresolved-attribute] Module `torch` has no member `is_inference_mode_enabled` +torch/_dynamo/variables/ctx_manager.py:703:21: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_dynamo/variables/ctx_manager.py:704:13: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/_dynamo/variables/ctx_manager.py:710:17: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/_dynamo/variables/ctx_manager.py:898:30: error[unresolved-attribute] Module `torch._C` has no member `_set_deterministic_algorithms` +torch/_dynamo/variables/ctx_manager.py:900:9: error[unresolved-attribute] Module `torch._C` has no member `_set_deterministic_algorithms` +torch/_dynamo/variables/ctx_manager.py:919:17: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_dynamo/variables/ctx_manager.py:951:17: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_dynamo/variables/ctx_manager.py:955:13: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_dynamo/variables/ctx_manager.py:959:34: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_dynamo/variables/ctx_manager.py:961:13: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_dynamo/variables/ctx_manager.py:979:28: warning[deprecated] The class `autocast` is deprecated: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead. +torch/_dynamo/variables/ctx_manager.py:980:27: warning[deprecated] The class `autocast` is deprecated: `torch.cpu.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cpu', args...)` instead. +torch/_dynamo/variables/ctx_manager.py:993:32: warning[deprecated] The class `autocast` is deprecated: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead. +torch/_dynamo/variables/ctx_manager.py:994:31: warning[deprecated] The class `autocast` is deprecated: `torch.cpu.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cpu', args...)` instead. +torch/_dynamo/variables/ctx_manager.py:996:56: warning[deprecated] The class `autocast` is deprecated: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead. +torch/_dynamo/variables/ctx_manager.py:1367:29: error[unresolved-attribute] Module `torch.fx` has no member `traceback` +torch/_dynamo/variables/ctx_manager.py:1368:29: error[unresolved-attribute] Module `torch.fx` has no member `traceback` +torch/_dynamo/variables/dicts.py:1022:17: error[invalid-assignment] Object of type `dict[VariableTracker, VariableTracker]` is not assignable to `list[VariableTracker]` +torch/_dynamo/variables/dicts.py:1024:26: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[VariableTracker, VariableTracker]`, found `list[VariableTracker]` +torch/_dynamo/variables/distributed.py:273:51: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/_dynamo/variables/distributed.py:367:68: error[invalid-argument-type] Argument to bound method `call_method` is incorrect: Expected `list[VariableTracker]`, found `tuple[Unknown, ...]` +torch/_dynamo/variables/functions.py:628:18: error[unresolved-attribute] Module `torch._dynamo` has no member `side_effects` +torch/_dynamo/variables/functions.py:645:22: error[unresolved-attribute] Module `torch._dynamo` has no member `side_effects` +torch/_dynamo/variables/functions.py:1011:50: error[invalid-argument-type] Argument to function `get_dynamo_observed_exception` is incorrect: Expected `type[Exception]`, found `type` +torch/_dynamo/variables/functions.py:1839:34: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_dynamo/variables/functions.py:1895:18: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +torch/_dynamo/variables/functions.py:1979:13: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/_dynamo/variables/functions.py:1980:13: warning[possibly-missing-attribute] Member `reduce_scatter_tensor` may be missing on module `torch.distributed` +torch/_dynamo/variables/functions.py:1981:13: warning[possibly-missing-attribute] Member `_reduce_scatter_base` may be missing on module `torch.distributed` +torch/_dynamo/variables/functions.py:1981:18: warning[deprecated] The function `_reduce_scatter_base` is deprecated: `torch.distributed._reduce_scatter_base` is a private function and will be deprecated. Please use `torch.distributed.reduce_scatter_tensor` instead. +torch/_dynamo/variables/functions.py:2108:44: error[invalid-argument-type] Argument to bound method `call_function` is incorrect: Expected `Sequence[VariableTracker]`, found `Unknown | Top[list[VariableTracker | Unknown]]` +torch/_dynamo/variables/functions.py:2124:43: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `list[VariableTracker]`, found `Unknown | (Sequence[VariableTracker] & Top[list[Unknown]])` +torch/_dynamo/variables/functions.py:2276:65: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Argument type `Any | None` does not satisfy upper bound `(...) -> Any` of type variable `_F` +torch/_dynamo/variables/functions.py:2290:10: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `VariableTracker` +torch/_dynamo/variables/higher_order_ops.py:98:24: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `list[bool] | None` +torch/_dynamo/variables/higher_order_ops.py:98:66: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `list[Any] | None` +torch/_dynamo/variables/higher_order_ops.py:189:17: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_dynamo/variables/higher_order_ops.py:315:41: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[Unknown]`, found `VariableTracker | tuple[VariableTracker, ...]` +torch/_dynamo/variables/higher_order_ops.py:315:59: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `items` +torch/_dynamo/variables/higher_order_ops.py:349:55: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `items` +torch/_dynamo/variables/higher_order_ops.py:362:13: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `items` +torch/_dynamo/variables/higher_order_ops.py:532:23: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:560:33: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `supports_input_mutation` +torch/_dynamo/variables/higher_order_ops.py:561:27: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `supports_aliasing` +torch/_dynamo/variables/higher_order_ops.py:570:33: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_dynamo/variables/higher_order_ops.py:570:68: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_dynamo/variables/higher_order_ops.py:605:23: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:669:9: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:1029:50: error[unresolved-attribute] Object of type `tuple[Node]` has no attribute `values` +torch/_dynamo/variables/higher_order_ops.py:1065:32: error[unresolved-attribute] Object of type `tuple[Node]` has no attribute `values` +torch/_dynamo/variables/higher_order_ops.py:1210:23: error[unresolved-attribute] Module `torch._dynamo` has no member `output_graph` +torch/_dynamo/variables/higher_order_ops.py:1361:21: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `list[Unknown] | tuple[Unknown, ...]` +torch/_dynamo/variables/higher_order_ops.py:1410:44: error[invalid-argument-type] Argument to function `validate_subgraph_output_types` is incorrect: Expected `VariableTracker`, found `tuple[Unknown, ...]` +torch/_dynamo/variables/higher_order_ops.py:1603:29: error[invalid-argument-type] Argument is incorrect: Expected `TreeSpec`, found `None | Unknown` +torch/_dynamo/variables/higher_order_ops.py:1648:29: error[invalid-argument-type] Argument is incorrect: Expected `TreeSpec`, found `None | Unknown` +torch/_dynamo/variables/higher_order_ops.py:1753:16: error[unresolved-attribute] Module `torch._dynamo` has no member `variables` +torch/_dynamo/variables/higher_order_ops.py:1755:13: error[unresolved-attribute] Module `torch._dynamo` has no member `variables` +torch/_dynamo/variables/higher_order_ops.py:1758:31: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/higher_order_ops.py:1892:13: warning[possibly-missing-attribute] Attribute `epoch` may be missing on object of type `FakeTensorMode | None` +torch/_dynamo/variables/higher_order_ops.py:2261:14: error[invalid-context-manager] Object of type `FakeTensorMode | None` cannot be used with `with` because the methods `__enter__` and `__exit__` are possibly missing +torch/_dynamo/variables/higher_order_ops.py:2738:14: error[invalid-context-manager] Object of type `FakeTensorMode | None` cannot be used with `with` because the methods `__enter__` and `__exit__` are possibly missing +torch/_dynamo/variables/higher_order_ops.py:2739:29: error[unresolved-attribute] Object of type `object` has no attribute `original_module` +torch/_dynamo/variables/higher_order_ops.py:2798:53: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ContextWrappingVariable`, found `VariableTracker` +torch/_dynamo/variables/higher_order_ops.py:2907:16: error[invalid-return-type] Return type does not match returned value: expected `VariableTracker`, found `VariableTracker | None` +torch/_dynamo/variables/higher_order_ops.py:3168:16: error[invalid-return-type] Return type does not match returned value: expected `VariableTracker`, found `VariableTracker | None` +torch/_dynamo/variables/higher_order_ops.py:3319:32: error[unresolved-attribute] Module `torch._dynamo` has no member `variables` +torch/_dynamo/variables/higher_order_ops.py:3322:22: error[unresolved-attribute] Module `torch._dynamo` has no member `variables` +torch/_dynamo/variables/higher_order_ops.py:3355:16: error[invalid-return-type] Return type does not match returned value: expected `VariableTracker`, found `VariableTracker | None` +torch/_dynamo/variables/higher_order_ops.py:3378:33: error[unresolved-attribute] Module `torch._dynamo` has no member `variables` +torch/_dynamo/variables/higher_order_ops.py:3381:23: error[unresolved-attribute] Module `torch._dynamo` has no member `variables` +torch/_dynamo/variables/higher_order_ops.py:3409:16: error[invalid-return-type] Return type does not match returned value: expected `VariableTracker`, found `VariableTracker | None` +torch/_dynamo/variables/higher_order_ops.py:3578:17: error[invalid-argument-type] Argument to bound method `call_method` is incorrect: Expected `list[VariableTracker]`, found `tuple[Any]` +torch/_dynamo/variables/higher_order_ops.py:3580:56: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_dynamo/variables/higher_order_ops.py:3587:45: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `requires_grad` +torch/_dynamo/variables/higher_order_ops.py:3591:21: error[invalid-argument-type] Argument to bound method `call_method` is incorrect: Expected `list[VariableTracker]`, found `tuple[Any]` +torch/_dynamo/variables/higher_order_ops.py:3654:44: error[unresolved-attribute] Module `torch.nn.attention` has no member `_flex_attention` +torch/_dynamo/variables/higher_order_ops.py:3679:14: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/higher_order_ops.py:3754:22: error[unresolved-attribute] Module `torch._dynamo` has no member `output_graph` +torch/_dynamo/variables/higher_order_ops.py:3814:22: error[unresolved-attribute] Module `torch._dynamo` has no member `output_graph` +torch/_dynamo/variables/higher_order_ops.py:3869:20: error[unresolved-attribute] Module `torch._dynamo` has no member `exc` +torch/_dynamo/variables/higher_order_ops.py:3871:24: error[unresolved-attribute] Module `torch._dynamo` has no member `exc` +torch/_dynamo/variables/higher_order_ops.py:3875:34: error[unresolved-attribute] Module `torch._dynamo` has no member `output_graph` +torch/_dynamo/variables/higher_order_ops.py:4056:18: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | list[Unknown | bool] | list[Unknown]]` is not assignable to `dict[str, VariableTracker]` +torch/_dynamo/variables/higher_order_ops.py:4156:16: error[invalid-return-type] Return type does not match returned value: expected `VariableTracker`, found `VariableTracker | None` +torch/_dynamo/variables/higher_order_ops.py:4267:16: error[invalid-return-type] Return type does not match returned value: expected `VariableTracker`, found `VariableTracker | None` +torch/_dynamo/variables/higher_order_ops.py:4364:50: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4365:50: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4368:31: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4369:30: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4370:36: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4371:35: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4372:28: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4388:20: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4389:26: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4401:35: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4437:35: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4439:36: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4507:33: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4508:35: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4533:31: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4534:30: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4535:36: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4536:35: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4537:28: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/higher_order_ops.py:4540:16: error[invalid-return-type] Return type does not match returned value: expected `VariableTracker`, found `VariableTracker | None` +torch/_dynamo/variables/lazy.py:76:16: error[invalid-return-type] Return type does not match returned value: expected `VariableTracker`, found `Unknown | VariableTracker | None` +torch/_dynamo/variables/lists.py:71:13: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_dynamo/variables/lists.py:1160:16: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_dynamo/variables/lists.py:1195:20: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_dynamo/variables/lists.py:1197:54: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_dynamo/variables/lists.py:1200:13: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_dynamo/variables/lists.py:1296:58: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_dynamo/variables/misc.py:131:23: warning[possibly-missing-attribute] Attribute `python_type` may be missing on object of type `Unknown | None` +torch/_dynamo/variables/misc.py:133:24: warning[possibly-missing-attribute] Attribute `source` may be missing on object of type `Unknown | None` +torch/_dynamo/variables/misc.py:133:47: warning[possibly-missing-attribute] Attribute `source` may be missing on object of type `Unknown | None` +torch/_dynamo/variables/misc.py:136:27: warning[possibly-missing-attribute] Attribute `value` may be missing on object of type `Unknown | None` +torch/_dynamo/variables/misc.py:137:34: warning[possibly-missing-attribute] Attribute `source` may be missing on object of type `Unknown | None` +torch/_dynamo/variables/misc.py:184:59: error[invalid-argument-type] Argument to bound method `_resolved_getattr_and_source` is incorrect: Expected `InstructionTranslator`, found `Self@var_getattr` +torch/_dynamo/variables/misc.py:198:62: error[invalid-argument-type] Argument to bound method `_resolved_getattr_and_source` is incorrect: Expected `InstructionTranslator`, found `Self@call_method` +torch/_dynamo/variables/misc.py:233:13: warning[possibly-missing-attribute] Attribute `source` may be missing on object of type `Unknown | None` +torch/_dynamo/variables/misc.py:268:20: warning[possibly-missing-attribute] Attribute `source` may be missing on object of type `(Unknown & ~UserDefinedClassVariable) | None` +torch/_dynamo/variables/misc.py:269:45: warning[possibly-missing-attribute] Attribute `source` may be missing on object of type `(Unknown & ~UserDefinedClassVariable) | None` +torch/_dynamo/variables/misc.py:271:25: warning[possibly-missing-attribute] Attribute `value_type` may be missing on object of type `(Unknown & ~UserDefinedClassVariable) | None` +torch/_dynamo/variables/misc.py:283:36: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `VariableTracker`, found `Unknown | None` +torch/_dynamo/variables/misc.py:304:65: error[invalid-argument-type] Argument to bound method `is_attribute_mutation` is incorrect: Expected `VariableTracker`, found `Unknown | None` +torch/_dynamo/variables/misc.py:319:17: error[invalid-argument-type] Argument to bound method `store_attr` is incorrect: Expected `VariableTracker`, found `Unknown | None` +torch/_dynamo/variables/misc.py:345:25: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/misc.py:347:17: error[invalid-argument-type] Argument to bound method `has_pending_mutation_of_attr` is incorrect: Expected `VariableTracker`, found `Unknown | None` +torch/_dynamo/variables/misc.py:350:21: error[invalid-argument-type] Argument to bound method `load_attr` is incorrect: Expected `VariableTracker`, found `Unknown | None` +torch/_dynamo/variables/misc.py:358:54: warning[possibly-missing-attribute] Attribute `value` may be missing on object of type `Unknown | None` +torch/_dynamo/variables/misc.py:363:16: warning[possibly-missing-attribute] Attribute `source` may be missing on object of type `Unknown | None` +torch/_dynamo/variables/misc.py:365:49: warning[possibly-missing-attribute] Attribute `source` may be missing on object of type `Unknown | None` +torch/_dynamo/variables/misc.py:367:26: error[unresolved-attribute] Module `torch._C` has no member `_disabled_torch_function_impl` +torch/_dynamo/variables/misc.py:374:23: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `items` +torch/_dynamo/variables/misc.py:375:42: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `items` +torch/_dynamo/variables/misc.py:475:30: error[invalid-argument-type] Argument to bound method `set_context` is incorrect: Expected `ExceptionVariable`, found `VariableTracker` +torch/_dynamo/variables/misc.py:575:30: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | Source | None` +torch/_dynamo/variables/misc.py:594:60: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/misc.py:629:23: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `(Unknown & ~AlwaysFalsy) | (VariableTracker & ~AlwaysFalsy)` +torch/_dynamo/variables/misc.py:673:5: error[unresolved-attribute] Unresolved attribute `_origin` on type `def trampoline_autograd_apply(...) -> Unknown`. +torch/_dynamo/variables/misc.py:791:37: error[unresolved-attribute] Object of type `Signature` has no attribute `_parameters` +torch/_dynamo/variables/misc.py:819:32: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/misc.py:864:25: error[unresolved-attribute] Object of type `type[VariableTracker] | None` has no attribute `create_with_source` +torch/_dynamo/variables/misc.py:869:28: error[call-non-callable] Object of type `None` is not callable +torch/_dynamo/variables/misc.py:933:13: error[invalid-argument-type] Argument to bound method `track_object_new` is incorrect: Expected `Source`, found `None` +torch/_dynamo/variables/misc.py:946:12: error[unresolved-attribute] Object of type `Self@as_proxy` has no attribute `proxy` +torch/_dynamo/variables/misc.py:954:16: error[unresolved-attribute] Object of type `Self@as_proxy` has no attribute `proxy` +torch/_dynamo/variables/misc.py:1002:16: warning[possibly-missing-attribute] Attribute `tensors` may be missing on object of type `Unknown | None` +torch/_dynamo/variables/misc.py:1003:13: error[invalid-assignment] Object of type `list[Unknown]` is not assignable to attribute `tensors` on type `Unknown | None` +torch/_dynamo/variables/misc.py:1005:13: warning[possibly-missing-attribute] Attribute `tensors` may be missing on object of type `Unknown | None` +torch/_dynamo/variables/misc.py:1011:68: error[invalid-argument-type] Argument to bound method `call_method` is incorrect: Expected `list[VariableTracker]`, found `tuple[Unknown, ...]` +torch/_dynamo/variables/misc.py:1020:50: error[unresolved-attribute] Object of type `object` has no attribute `needs_input_grad` +torch/_dynamo/variables/misc.py:1046:16: error[unresolved-attribute] Module `torch._dynamo` has no member `compiled_autograd` +torch/_dynamo/variables/misc.py:1403:20: error[unresolved-attribute] Object of type `InstructionTranslator` has no attribute `side_effects` +torch/_dynamo/variables/misc.py:1450:25: warning[possibly-missing-import] Member `NP_TO_TNP_MODULE` of module `torch._dynamo.utils` may be missing +torch/_dynamo/variables/misc.py:1734:16: warning[possibly-missing-attribute] Attribute `reconstruct` may be missing on object of type `Unknown | Source | None` +torch/_dynamo/variables/misc.py:1737:47: error[invalid-type-form] Boolean literals are not allowed in this context in a type expression +torch/_dynamo/variables/misc.py:1775:13: error[invalid-return-type] Return type does not match returned value: expected `VariableTracker`, found `None` +torch/_dynamo/variables/misc.py:1801:23: error[invalid-assignment] Implicit shadowing of class `floating` +torch/_dynamo/variables/misc.py:1802:20: error[invalid-assignment] Implicit shadowing of class `dtype` +torch/_dynamo/variables/misc.py:1854:60: warning[possibly-missing-attribute] Attribute `np_generic` may be missing on object of type `Self@var_getattr` +torch/_dynamo/variables/nn_module.py:210:57: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/nn_module.py:237:39: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/nn_module.py:319:63: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `((...) -> Any) | None`, found `Unknown | AttrSource` +torch/_dynamo/variables/nn_module.py:383:68: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `(Unknown & ~AlwaysTruthy) | (Source & ~AlwaysTruthy) | None | AttrSource` +torch/_dynamo/variables/nn_module.py:419:73: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `(Unknown & ~AlwaysTruthy) | (Source & ~AlwaysTruthy) | None | AttrSource` +torch/_dynamo/variables/nn_module.py:476:62: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/nn_module.py:508:26: error[unresolved-attribute] Module `torch.ao.quantization.pt2e` has no member `export_utils` +torch/_dynamo/variables/nn_module.py:621:23: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `items` +torch/_dynamo/variables/nn_module.py:621:37: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `value` +torch/_dynamo/variables/nn_module.py:630:53: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/nn_module.py:697:57: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/nn_module.py:710:57: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/nn_module.py:718:57: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/nn_module.py:726:57: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/nn_module.py:734:57: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/nn_module.py:744:57: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/nn_module.py:747:57: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/nn_module.py:750:57: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/nn_module.py:841:45: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/nn_module.py:919:47: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/nn_module.py:1044:16: error[unresolved-attribute] Object of type `object` has no attribute `cls_to_become` +torch/_dynamo/variables/nn_module.py:1045:35: error[unresolved-attribute] Object of type `object` has no attribute `cls_to_become` +torch/_dynamo/variables/nn_module.py:1058:20: error[unresolved-attribute] Object of type `object` has no attribute `__call__` +torch/_dynamo/variables/nn_module.py:1059:24: error[unresolved-attribute] Object of type `object` has no attribute `_call_impl` +torch/_dynamo/variables/nn_module.py:1060:17: error[unresolved-attribute] Object of type `object` has no attribute `__call__` +torch/_dynamo/variables/nn_module.py:1061:17: error[unresolved-attribute] Object of type `object` has no attribute `_call_impl` +torch/_dynamo/variables/optimizer.py:125:27: error[call-non-callable] Object of type `object` is not callable +torch/_dynamo/variables/optimizer.py:156:26: error[unresolved-attribute] Object of type `object` has no attribute `param_groups` +torch/_dynamo/variables/optimizer.py:169:18: error[unresolved-attribute] Object of type `object` has no attribute `param_groups` +torch/_dynamo/variables/optimizer.py:194:47: error[unresolved-attribute] Object of type `object` has no attribute `state` +torch/_dynamo/variables/optimizer.py:201:22: error[unresolved-attribute] Object of type `object` has no attribute `param_groups` +torch/_dynamo/variables/optimizer.py:207:39: error[unresolved-attribute] Object of type `object` has no attribute `param_groups` +torch/_dynamo/variables/optimizer.py:231:24: error[unresolved-attribute] Object of type `object` has no attribute `param_groups` +torch/_dynamo/variables/optimizer.py:246:25: error[unresolved-attribute] Object of type `object` has no attribute `state` +torch/_dynamo/variables/optimizer.py:260:50: error[unresolved-attribute] Object of type `object` has no attribute `state` +torch/_dynamo/variables/optimizer.py:266:39: error[unresolved-attribute] Object of type `object` has no attribute `param_groups` +torch/_dynamo/variables/optimizer.py:270:46: error[unresolved-attribute] Object of type `object` has no attribute `state` +torch/_dynamo/variables/optimizer.py:280:36: error[unresolved-attribute] Object of type `object` has no attribute `param_groups` +torch/_dynamo/variables/optimizer.py:287:47: error[unresolved-attribute] Object of type `object` has no attribute `state` +torch/_dynamo/variables/optimizer.py:295:37: error[unresolved-attribute] Object of type `object` has no attribute `state` +torch/_dynamo/variables/optimizer.py:338:37: error[unresolved-attribute] Object of type `object` has no attribute `state` +torch/_dynamo/variables/script_object.py:65:37: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_dynamo/variables/sdpa.py:72:28: error[unresolved-attribute] Module `torch._C` has no member `_SDPAParams` +torch/_dynamo/variables/streams.py:36:13: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_dynamo/variables/streams.py:55:37: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/variables/streams.py:66:32: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/variables/streams.py:73:41: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_dynamo/variables/streams.py:75:31: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_dynamo/variables/streams.py:81:40: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_dynamo/variables/streams.py:83:30: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_dynamo/variables/streams.py:202:43: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/variables/streams.py:266:16: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_dynamo/variables/streams.py:284:16: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_dynamo/variables/streams.py:356:21: error[unresolved-attribute] Module `torch._dynamo` has no member `graph_bytecode_inputs` +torch/_dynamo/variables/streams.py:399:16: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_dynamo/variables/tensor.py:79:10: error[invalid-assignment] Object of type `None` is not assignable to `` +torch/_dynamo/variables/tensor.py:133:20: error[unresolved-attribute] Module `torch._C` has no member `TensorBase` +torch/_dynamo/variables/tensor.py:268:16: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/tensor.py:275:30: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/_dynamo/variables/tensor.py:402:13: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_dynamo/variables/tensor.py:495:21: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_dynamo/variables/tensor.py:554:49: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | Source | None` +torch/_dynamo/variables/tensor.py:573:23: warning[possibly-missing-attribute] Attribute `make_guard` may be missing on object of type `Unknown | Source | None` +torch/_dynamo/variables/tensor.py:827:18: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_dynamo/variables/tensor.py:840:41: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/variables/tensor.py:904:36: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/variables/tensor.py:933:27: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_dynamo/variables/tensor.py:968:17: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_dynamo/variables/tensor.py:969:17: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_dynamo/variables/tensor.py:970:17: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_dynamo/variables/tensor.py:971:17: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_dynamo/variables/tensor.py:1039:17: error[unresolved-attribute] Module `torch` has no member `select` +torch/_dynamo/variables/tensor.py:1059:22: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_dynamo/variables/tensor.py:1202:61: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_dynamo/variables/tensor.py:1212:61: error[unresolved-attribute] Module `torch` has no member `div` +torch/_dynamo/variables/tensor.py:1215:61: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_dynamo/variables/tensor.py:1229:57: error[unresolved-attribute] Module `torch` has no member `eq` +torch/_dynamo/variables/tensor.py:1232:57: error[unresolved-attribute] Module `torch` has no member `any` +torch/_dynamo/variables/tensor.py:1459:21: error[unresolved-attribute] Module `torch` has no member `scalar_tensor` +torch/_dynamo/variables/tensor.py:1467:16: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:115:9: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunctionSubclass` +torch/_dynamo/variables/torch.py:116:9: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunction` +torch/_dynamo/variables/torch.py:117:9: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/variables/torch.py:118:9: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/variables/torch.py:119:9: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/variables/torch.py:120:9: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/variables/torch.py:127:37: warning[deprecated] The class `autocast` is deprecated: `torch.cpu.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cpu', args...)` instead. +torch/_dynamo/variables/torch.py:128:38: warning[deprecated] The class `autocast` is deprecated: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead. +torch/_dynamo/variables/torch.py:129:9: error[unresolved-attribute] Module `torch.fx` has no member `traceback` +torch/_dynamo/variables/torch.py:145:9: error[unresolved-attribute] Module `torch` has no member `_shape_as_tensor` +torch/_dynamo/variables/torch.py:161:5: error[unresolved-attribute] Module `torch._C` has no member `_get_cublas_allow_tf32` +torch/_dynamo/variables/torch.py:162:5: error[unresolved-attribute] Module `torch._C` has no member `_is_any_autocast_enabled` +torch/_dynamo/variables/torch.py:167:5: error[unresolved-attribute] Module `torch` has no member `get_autocast_dtype` +torch/_dynamo/variables/torch.py:168:5: error[unresolved-attribute] Module `torch` has no member `get_autocast_gpu_dtype` +torch/_dynamo/variables/torch.py:169:5: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_dynamo/variables/torch.py:170:5: error[unresolved-attribute] Module `torch` has no member `is_autocast_cache_enabled` +torch/_dynamo/variables/torch.py:171:5: error[unresolved-attribute] Module `torch` has no member `is_autocast_cpu_enabled` +torch/_dynamo/variables/torch.py:172:5: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/_dynamo/variables/torch.py:173:5: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/_dynamo/variables/torch.py:174:5: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/_dynamo/variables/torch.py:176:5: error[unresolved-attribute] Module `torch` has no member `promote_types` +torch/_dynamo/variables/torch.py:177:5: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/_dynamo/variables/torch.py:185:13: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/_dynamo/variables/torch.py:186:13: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/_dynamo/variables/torch.py:187:13: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/_dynamo/variables/torch.py:201:9: error[unresolved-attribute] Module `torch._C` has no member `_get_tracing_state` +torch/_dynamo/variables/torch.py:205:38: warning[deprecated] The function `is_compiling` is deprecated: `torch._dynamo.external_utils.is_compiling` is deprecated. Use `torch.compiler.is_compiling` instead. +torch/_dynamo/variables/torch.py:206:22: warning[deprecated] The function `is_compiling` is deprecated: `torch._utils.is_compiling` is deprecated. Use `torch.compiler.is_compiling` instead. +torch/_dynamo/variables/torch.py:219:5: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_keys` +torch/_dynamo/variables/torch.py:220:5: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_include_set` +torch/_dynamo/variables/torch.py:221:5: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_exclude_set` +torch/_dynamo/variables/torch.py:233:9: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_dynamo/variables/torch.py:234:9: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/_dynamo/variables/torch.py:235:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_dynamo/variables/torch.py:236:9: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_dynamo/variables/torch.py:237:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_dynamo/variables/torch.py:238:9: error[unresolved-attribute] Module `torch` has no member `full` +torch/_dynamo/variables/torch.py:260:20: error[unresolved-attribute] Module `torch._dynamo` has no member `compiled_autograd` +torch/_dynamo/variables/torch.py:386:13: error[unresolved-attribute] Module `torch.fx` has no member `traceback` +torch/_dynamo/variables/torch.py:393:69: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_dynamo/variables/torch.py:408:28: warning[deprecated] The class `autocast` is deprecated: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead. +torch/_dynamo/variables/torch.py:409:27: warning[deprecated] The class `autocast` is deprecated: `torch.cpu.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cpu', args...)` instead. +torch/_dynamo/variables/torch.py:424:27: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunctionSubclass` +torch/_dynamo/variables/torch.py:425:30: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunction` +torch/_dynamo/variables/torch.py:429:49: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunctionSubclass` +torch/_dynamo/variables/torch.py:431:28: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/variables/torch.py:437:28: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/variables/torch.py:449:28: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/variables/torch.py:453:27: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/variables/torch.py:543:30: warning[deprecated] The function `is_compiling` is deprecated: `torch._utils.is_compiling` is deprecated. Use `torch.compiler.is_compiling` instead. +torch/_dynamo/variables/torch.py:544:46: warning[deprecated] The function `is_compiling` is deprecated: `torch._dynamo.external_utils.is_compiling` is deprecated. Use `torch.compiler.is_compiling` instead. +torch/_dynamo/variables/torch.py:557:30: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_keys` +torch/_dynamo/variables/torch.py:570:27: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_dynamo/variables/torch.py:570:51: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_dynamo/variables/torch.py:571:27: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_dynamo/variables/torch.py:572:29: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_dynamo/variables/torch.py:615:63: error[unresolved-attribute] Module `torch` has no member `addcmul` +torch/_dynamo/variables/torch.py:621:19: error[unresolved-attribute] Module `torch` has no member `is_inference_mode_enabled` +torch/_dynamo/variables/torch.py:645:13: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/_dynamo/variables/torch.py:646:13: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/_dynamo/variables/torch.py:651:34: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/_dynamo/variables/torch.py:653:36: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/_dynamo/variables/torch.py:658:19: error[unresolved-attribute] Module `torch` has no member `numel` +torch/_dynamo/variables/torch.py:688:13: error[unresolved-attribute] Module `torch.nn.modules` has no member `utils` +torch/_dynamo/variables/torch.py:689:13: error[unresolved-attribute] Module `torch.nn.modules` has no member `utils` +torch/_dynamo/variables/torch.py:690:13: error[unresolved-attribute] Module `torch.nn.modules` has no member `utils` +torch/_dynamo/variables/torch.py:691:13: error[unresolved-attribute] Module `torch.nn.modules` has no member `utils` +torch/_dynamo/variables/torch.py:692:13: error[unresolved-attribute] Module `torch.nn.modules` has no member `utils` +torch/_dynamo/variables/torch.py:697:19: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_dynamo/variables/torch.py:700:44: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_dynamo/variables/torch.py:724:19: error[unresolved-attribute] Module `torch._C` has no member `_is_torch_function_enabled` +torch/_dynamo/variables/torch.py:733:19: error[unresolved-attribute] Module `torch._C` has no member `_is_torch_function_all_disabled` +torch/_dynamo/variables/torch.py:764:19: error[unresolved-attribute] Module `torch` has no member `from_numpy` +torch/_dynamo/variables/torch.py:793:21: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_dynamo/variables/torch.py:816:26: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_dynamo/variables/torch.py:840:19: error[unresolved-attribute] Module `torch` has no member `addcdiv` +torch/_dynamo/variables/torch.py:845:55: error[unresolved-attribute] Module `torch` has no member `div` +torch/_dynamo/variables/torch.py:848:55: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_dynamo/variables/torch.py:851:53: error[unresolved-attribute] Module `torch` has no member `add` +torch/_dynamo/variables/torch.py:855:19: error[unresolved-attribute] Module `torch` has no member `full` +torch/_dynamo/variables/torch.py:860:61: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_dynamo/variables/torch.py:866:19: error[unresolved-attribute] Module `torch` has no member `_foreach_lerp_` +torch/_dynamo/variables/torch.py:877:19: error[unresolved-attribute] Module `torch` has no member `_foreach_pow` +torch/_dynamo/variables/torch.py:902:21: error[unresolved-attribute] Module `torch._C` has no member `_SDPAParams` +torch/_dynamo/variables/torch.py:999:58: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_dynamo/variables/torch.py:1037:19: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:1043:21: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:1050:19: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:1056:21: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:1061:19: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:1067:21: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:1072:19: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:1076:21: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:1083:19: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:1098:17: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:1101:19: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:1105:21: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:1112:19: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:1117:21: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:1123:19: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:1128:21: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:1134:19: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:1145:17: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_dynamo/variables/torch.py:1148:19: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_dynamo/variables/torch.py:1158:19: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/torch.py:1165:17: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_dynamo/variables/torch.py:1168:19: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/variables/torch.py:1174:17: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_dynamo/variables/torch.py:1177:19: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_dynamo/variables/torch.py:1204:19: error[unresolved-attribute] Module `torch._C` has no member `_pop_torch_function_stack` +torch/_dynamo/variables/torch.py:1222:19: error[unresolved-attribute] Module `torch._C` has no member `_push_on_torch_function_stack` +torch/_dynamo/variables/torch.py:1235:19: error[unresolved-attribute] Module `torch._C` has no member `_len_torch_function_stack` +torch/_dynamo/variables/torch.py:1245:19: error[unresolved-attribute] Module `torch._C` has no member `_get_function_stack_at` +torch/_dynamo/variables/torch.py:1311:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/variables/torch.py:1313:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/variables/torch.py:1579:17: error[unresolved-attribute] Module `torch._dynamo` has no member `exc` +torch/_dynamo/variables/torch.py:1581:17: error[unresolved-attribute] Module `torch._dynamo` has no member `exc` +torch/_dynamo/variables/torch.py:1632:29: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_dynamo/variables/torch.py:1789:28: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/_dynamo/variables/torch.py:1818:24: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/_dynamo/variables/torch.py:1834:26: error[unresolved-attribute] Module `torch.nn.modules` has no member `utils` +torch/_dynamo/variables/torch.py:1849:21: error[unresolved-attribute] Module `torch.nn.modules` has no member `utils` +torch/_dynamo/variables/torch.py:1861:26: error[unresolved-attribute] Module `torch.nn.modules` has no member `utils` +torch/_dynamo/variables/torch.py:1907:12: warning[possibly-missing-attribute] Attribute `source` may be missing on object of type `Unknown | None` +torch/_dynamo/variables/torch.py:2057:53: error[unresolved-attribute] Module `torch._C` has no member `TensorBase` +torch/_dynamo/variables/torch_function.py:209:13: error[unresolved-attribute] Module `torch._C` has no member `_push_on_torch_function_stack` +torch/_dynamo/variables/torch_function.py:216:38: error[unresolved-attribute] Module `torch._C` has no member `_pop_torch_function_stack` +torch/_dynamo/variables/torch_function.py:283:48: error[unresolved-attribute] Module `torch._C` has no member `_is_torch_function_enabled` +torch/_dynamo/variables/torch_function.py:290:17: error[unresolved-attribute] Module `torch._C` has no member `_is_torch_function_all_disabled` +torch/_dynamo/variables/user_defined.py:26:8: error[unresolved-import] Cannot resolve imported module `_collections` +torch/_dynamo/variables/user_defined.py:105:10: error[invalid-assignment] Object of type `None` is not assignable to `` +torch/_dynamo/variables/user_defined.py:110:18: error[invalid-assignment] Implicit shadowing of class `PyTreeSpec` +torch/_dynamo/variables/user_defined.py:130:14: error[unresolved-import] Cannot resolve imported module `_pytest.python_api` +torch/_dynamo/variables/user_defined.py:131:14: error[unresolved-import] Cannot resolve imported module `_pytest.recwarn` +torch/_dynamo/variables/user_defined.py:180:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_dynamo/variables/user_defined.py:181:13: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_dynamo/variables/user_defined.py:182:13: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_dynamo/variables/user_defined.py:183:13: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_dynamo/variables/user_defined.py:191:13: error[unresolved-attribute] Module `torch.cuda` has no member `FloatTensor` +torch/_dynamo/variables/user_defined.py:192:13: error[unresolved-attribute] Module `torch.cuda` has no member `DoubleTensor` +torch/_dynamo/variables/user_defined.py:193:13: error[unresolved-attribute] Module `torch.cuda` has no member `HalfTensor` +torch/_dynamo/variables/user_defined.py:194:13: error[unresolved-attribute] Module `torch.cuda` has no member `BFloat16Tensor` +torch/_dynamo/variables/user_defined.py:195:13: error[unresolved-attribute] Module `torch.cuda` has no member `ByteTensor` +torch/_dynamo/variables/user_defined.py:196:13: error[unresolved-attribute] Module `torch.cuda` has no member `CharTensor` +torch/_dynamo/variables/user_defined.py:197:13: error[unresolved-attribute] Module `torch.cuda` has no member `IntTensor` +torch/_dynamo/variables/user_defined.py:198:13: error[unresolved-attribute] Module `torch.cuda` has no member `ShortTensor` +torch/_dynamo/variables/user_defined.py:199:13: error[unresolved-attribute] Module `torch.cuda` has no member `LongTensor` +torch/_dynamo/variables/user_defined.py:200:13: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_dynamo/variables/user_defined.py:201:13: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_dynamo/variables/user_defined.py:511:17: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `items` +torch/_dynamo/variables/user_defined.py:517:16: error[unresolved-attribute] Object of type `type & ~ & ~ & ~ & ~` has no attribute `__optional_keys__` +torch/_dynamo/variables/user_defined.py:681:33: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `items` +torch/_dynamo/variables/user_defined.py:682:35: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `keys_as_python_constant` +torch/_dynamo/variables/user_defined.py:715:34: error[unresolved-attribute] Object of type `type & ~ & ~ & ~ & ~ & ~ & ~ & ~` has no attribute `_field_defaults` +torch/_dynamo/variables/user_defined.py:718:30: error[invalid-argument-type] Argument to bound method `extend` is incorrect: Expected `Iterable[VariableTracker]`, found `list[Unknown | None]` +torch/_dynamo/variables/user_defined.py:744:28: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_dynamo/variables/user_defined.py:747:33: error[unresolved-attribute] Object of type `VariableTracker` has no attribute `items` +torch/_dynamo/variables/user_defined.py:750:51: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/user_defined.py:752:26: error[invalid-argument-type] Argument to bound method `extend` is incorrect: Expected `Iterable[VariableTracker]`, found `list[Unknown | None]` +torch/_dynamo/variables/user_defined.py:808:25: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_dynamo/variables/user_defined.py:814:39: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_dynamo/variables/user_defined.py:842:41: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_dynamo/variables/user_defined.py:1147:45: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `~_local` +torch/_dynamo/variables/user_defined.py:1208:21: error[non-subscriptable] Cannot subscript object of type `object` with no `__getitem__` method +torch/_dynamo/variables/user_defined.py:1211:36: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `object` +torch/_dynamo/variables/user_defined.py:1262:25: error[unresolved-attribute] Module `torch.utils` has no member `_contextlib` +torch/_dynamo/variables/user_defined.py:1291:35: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/user_defined.py:1293:34: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/user_defined.py:1298:37: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | None | TypeSource` +torch/_dynamo/variables/user_defined.py:1317:14: error[unresolved-attribute] Module `torch._C` has no member `_dynamo` +torch/_dynamo/variables/user_defined.py:1334:56: error[invalid-argument-type] Argument to bound method `__getattribute__` is incorrect: Expected `str`, found `object` +torch/_dynamo/variables/user_defined.py:1334:68: error[too-many-positional-arguments] Too many positional arguments to bound method `__getattribute__`: expected 2, got 3 +torch/_dynamo/variables/user_defined.py:1402:25: error[unsupported-operator] Operator `not in` is not supported for types `Unknown` and `object` +torch/_dynamo/variables/user_defined.py:1478:32: error[unresolved-attribute] Object of type `object` has no attribute `_parameters` +torch/_dynamo/variables/user_defined.py:1479:32: error[unresolved-attribute] Object of type `object` has no attribute `_buffers` +torch/_dynamo/variables/user_defined.py:1480:32: error[unresolved-attribute] Object of type `object` has no attribute `_modules` +torch/_dynamo/variables/user_defined.py:1504:40: error[unresolved-attribute] Object of type `Self@var_getattr` has no attribute `get_nn_module_stack_source` +torch/_dynamo/variables/user_defined.py:1532:17: error[unsupported-operator] Operator `not in` is not supported for types `Unknown` and `object`, in comparing `Unknown & ~Literal["__dict__"] & ~Literal["__class__"]` with `object` +torch/_dynamo/variables/user_defined.py:1551:20: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `Unknown | None | TupleVariable` +torch/_dynamo/variables/user_defined.py:1573:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `((...) -> Any) | None`, found `None | AttrSource` +torch/_dynamo/variables/user_defined.py:1689:57: error[invalid-argument-type] Argument is incorrect: Expected `Source`, found `Unknown | Source | None` +torch/_dynamo/variables/user_defined.py:1695:20: error[unresolved-attribute] Module `torch._C` has no member `_dynamo` +torch/_dynamo/variables/user_defined.py:1795:50: warning[deprecated] The class `LeafSpec` is deprecated: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. +torch/_dynamo/variables/user_defined.py:1822:29: error[invalid-argument-type] Argument to function `fields` is incorrect: Expected `DataclassInstance | type[@Todo]`, found `object` +torch/_dynamo/variables/user_defined.py:1877:49: error[unresolved-attribute] Object of type `object` has no attribute `forward` +torch/_dynamo/variables/user_defined.py:1903:13: error[unresolved-attribute] Unresolved attribute `args` on type `object`. +torch/_dynamo/variables/user_defined.py:1940:14: error[unresolved-import] Cannot resolve imported module `torchrec.sparse.jagged_tensor` +torch/_dynamo/variables/user_defined.py:1988:52: error[invalid-argument-type] Argument to bound method `remove_hook` is incorrect: Expected `int`, found `Unknown | None | Literal[-1]` +torch/_dynamo/variables/user_defined.py:2046:24: warning[possibly-missing-attribute] Attribute `call_method` may be missing on object of type `Unknown | None | ConstDictVariable` +torch/_dynamo/variables/user_defined.py:2059:12: error[unresolved-attribute] Object of type `type` has no attribute `__iter__` +torch/_dynamo/variables/user_defined.py:2063:20: warning[possibly-missing-attribute] Attribute `unpack_var_sequence` may be missing on object of type `Unknown | None | ConstDictVariable` +torch/_dynamo/variables/user_defined.py:2071:16: warning[possibly-missing-attribute] Attribute `user_cls` may be missing on object of type `Unknown | None | ConstDictVariable` +torch/_dynamo/variables/user_defined.py:2075:16: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `Unknown | None | ConstDictVariable` +torch/_dynamo/variables/user_defined.py:2078:16: warning[possibly-missing-attribute] Attribute `install_dict_keys_match_guard` may be missing on object of type `Unknown | None | ConstDictVariable` +torch/_dynamo/variables/user_defined.py:2081:16: error[missing-argument] No arguments provided for required parameters `tx`, `args` of bound method `install_dict_contains_guard` +torch/_dynamo/variables/user_defined.py:2081:16: warning[possibly-missing-attribute] Attribute `install_dict_contains_guard` may be missing on object of type `Unknown | None | ConstDictVariable` +torch/_dynamo/variables/user_defined.py:2109:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `list[VariableTracker]`, found `dict[Unknown, Unknown]` +torch/_dynamo/variables/user_defined.py:2127:20: warning[possibly-missing-attribute] Attribute `call_method` may be missing on object of type `Unknown | None | VariableTracker` +torch/_dynamo/variables/user_defined.py:2131:16: warning[possibly-missing-attribute] Attribute `as_python_constant` may be missing on object of type `Unknown | None | VariableTracker` +torch/_dynamo/variables/user_defined.py:2138:20: warning[possibly-missing-attribute] Attribute `unpack_var_sequence` may be missing on object of type `Unknown | None | VariableTracker` +torch/_dynamo/variables/user_defined.py:2143:16: warning[possibly-missing-attribute] Attribute `set_items` may be missing on object of type `Unknown | None | VariableTracker` +torch/_dynamo/variables/user_defined.py:2147:16: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `Unknown | None | VariableTracker` +torch/_dynamo/variables/user_defined.py:2153:16: warning[possibly-missing-attribute] Attribute `install_dict_keys_match_guard` may be missing on object of type `Unknown | None | VariableTracker` +torch/_dynamo/variables/user_defined.py:2156:16: warning[possibly-missing-attribute] Attribute `install_dict_contains_guard` may be missing on object of type `Unknown | None | VariableTracker` +torch/_dynamo/variables/user_defined.py:2194:12: error[unresolved-attribute] Object of type `type` has no attribute `__iter__` +torch/_dynamo/variables/user_defined.py:2227:21: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/_dynamo/variables/user_defined.py:2247:12: error[unresolved-attribute] Object of type `type` has no attribute `__iter__` +torch/_dynamo/variables/user_defined.py:2267:30: error[unresolved-attribute] Object of type `type` has no attribute `get` +torch/_dynamo/variables/user_defined.py:2268:13: error[unresolved-attribute] Module `collections` has no member `abc` +torch/_export/__init__.py:137:14: error[unresolved-attribute] Module `torch` has no member `_export` +torch/_export/__init__.py:169:44: error[unresolved-attribute] Module `torch._C` has no member `_aoti` +torch/_export/__init__.py:171:18: error[unresolved-attribute] Module `torch._C` has no member `_aoti` +torch/_export/__init__.py:173:18: error[unresolved-attribute] Module `torch._C` has no member `_aoti` +torch/_export/__init__.py:175:18: error[unresolved-attribute] Module `torch._C` has no member `_aoti` +torch/_export/converter.py:54:35: error[unresolved-attribute] Module `torch` has no member `is_autocast_cache_enabled` +torch/_export/converter.py:55:5: error[unresolved-attribute] Module `torch` has no member `set_autocast_cache_enabled` +torch/_export/converter.py:63:5: error[unresolved-attribute] Module `torch` has no member `set_autocast_cache_enabled` +torch/_export/converter.py:76:12: error[unresolved-attribute] Module `torch` has no member `Graph` +torch/_export/converter.py:76:31: error[unresolved-attribute] Module `torch._C` has no member `IValue` +torch/_export/converter.py:76:58: error[unresolved-attribute] Module `torch` has no member `ScriptModule` +torch/_export/converter.py:86:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_function_substitution` +torch/_export/converter.py:87:30: error[unresolved-attribute] Module `torch._C` has no member `_freeze_module` +torch/_export/converter.py:88:29: error[unresolved-attribute] Module `torch._C` has no member `ScriptModule` +torch/_export/converter.py:90:30: error[unresolved-attribute] Module `torch._C` has no member `_jit_onnx_list_model_parameters` +torch/_export/converter.py:95:21: error[unresolved-attribute] Module `torch._C` has no member `_propagate_and_assign_input_shapes` +torch/_export/converter.py:103:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_function_substitution` +torch/_export/converter.py:105:17: error[unresolved-attribute] Module `torch._C` has no member `_propagate_and_assign_input_shapes` +torch/_export/converter.py:111:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_lint` +torch/_export/converter.py:120:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_function_substitution` +torch/_export/converter.py:197:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_export/converter.py:198:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_export/converter.py:199:5: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_export/converter.py:200:5: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_export/converter.py:201:5: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_export/converter.py:202:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_export/converter.py:203:5: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_export/converter.py:204:5: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_export/converter.py:205:5: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/_export/converter.py:206:5: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_export/converter.py:207:5: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_export/converter.py:208:5: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_export/converter.py:209:5: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/_export/converter.py:210:5: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/_export/converter.py:211:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_export/converter.py:266:12: error[unresolved-attribute] Module `torch._C` has no member `Graph` +torch/_export/converter.py:267:17: error[unresolved-attribute] Module `torch._C` has no member `Block` +torch/_export/converter.py:284:34: error[unresolved-attribute] Module `torch._C` has no member `Block` +torch/_export/converter.py:335:34: error[unresolved-attribute] Module `torch._C` has no member `Graph` +torch/_export/converter.py:346:50: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:370:27: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:373:13: error[unresolved-attribute] Module `torch._C` has no member `FunctionSchema` +torch/_export/converter.py:373:39: error[unresolved-attribute] Module `torch._C` has no member `parse_schema` +torch/_export/converter.py:395:25: error[unresolved-attribute] Module `torch._C` has no member `Graph` +torch/_export/converter.py:395:41: error[unresolved-attribute] Module `torch._C` has no member `Block` +torch/_export/converter.py:398:38: error[unresolved-attribute] Module `torch._C` has no member `Block` +torch/_export/converter.py:469:60: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_export/converter.py:473:48: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:525:42: error[unresolved-attribute] Module `torch._C` has no member `Graph` +torch/_export/converter.py:532:37: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:543:47: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/_export/converter.py:550:62: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_export/converter.py:627:64: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_export/converter.py:644:49: error[unresolved-attribute] Module `torch` has no member `ClassType` +torch/_export/converter.py:660:40: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:662:31: error[unresolved-attribute] Module `torch` has no member `float` +torch/_export/converter.py:671:41: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:680:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_export/converter.py:682:18: error[unresolved-attribute] Module `torch` has no member `_refs` +torch/_export/converter.py:699:41: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:722:43: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:750:45: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:758:41: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:760:35: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/_export/converter.py:767:42: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:795:42: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:807:46: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:828:49: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:831:48: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:834:44: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:840:48: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:863:45: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:866:46: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:869:51: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:877:38: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:881:76: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_export/converter.py:893:46: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:903:71: error[unresolved-attribute] Module `torch` has no member `long` +torch/_export/converter.py:907:47: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:911:47: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:922:38: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:955:46: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:965:37: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:1003:38: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:1005:52: error[unresolved-attribute] Module `torch` has no member `ListType` +torch/_export/converter.py:1006:42: error[unresolved-attribute] Module `torch` has no member `ListType` +torch/_export/converter.py:1050:39: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:1129:52: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:1139:37: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:1179:39: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:1182:40: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:1189:39: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:1193:38: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:1204:60: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:1212:41: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:1221:48: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:1229:49: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:1236:34: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:1270:59: error[unresolved-attribute] Module `torch` has no member `clone` +torch/_export/converter.py:1333:25: error[unresolved-attribute] Module `torch._C` has no member `Graph` +torch/_export/converter.py:1333:41: error[unresolved-attribute] Module `torch._C` has no member `Block` +torch/_export/converter.py:1336:38: error[unresolved-attribute] Module `torch._C` has no member `Block` +torch/_export/converter.py:1352:42: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:1409:46: error[unresolved-attribute] Module `torch._C` has no member `ScriptFunction` +torch/_export/converter.py:1412:42: error[unresolved-attribute] Module `torch._C` has no member `ScriptFunction` +torch/_export/converter.py:1471:42: error[unresolved-attribute] Module `torch._C` has no member `ScriptFunction` +torch/_export/converter.py:1538:49: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_export/converter.py:1582:27: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/_export/converter.py:1604:44: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_export/db/examples/assume_constant_result.py:18:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/assume_constant_result.py:18:36: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_export/db/examples/autograd_function.py:24:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/class_method.py:21:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/cond_branch_class_method.py:39:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/cond_branch_nested_function.py:36:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/cond_branch_nonlocal_variables.py:51:32: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_export/db/examples/cond_branch_nonlocal_variables.py:54:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/cond_closed_over_variable.py:20:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_export/db/examples/cond_closed_over_variable.py:20:37: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/cond_operands.py:6:5: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/cond_operands.py:7:5: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/cond_operands.py:33:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/cond_operands.py:33:36: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/cond_predicate.py:20:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/constrain_as_size_example.py:15:16: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_export/db/examples/constrain_as_size_example.py:18:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_export/db/examples/constrain_as_value_example.py:21:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_export/db/examples/constrain_as_value_example.py:21:34: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/decorator.py:22:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/decorator.py:22:36: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/dictionary.py:15:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/dictionary.py:15:36: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_export/db/examples/dynamic_shape_assert.py:16:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/dynamic_shape_constructor.py:11:16: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_export/db/examples/dynamic_shape_constructor.py:13:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/dynamic_shape_if_guard.py:17:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/dynamic_shape_map.py:17:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/dynamic_shape_map.py:17:36: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/dynamic_shape_round.py:15:5: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/dynamic_shape_slicing.py:13:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/dynamic_shape_view.py:15:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/fn_with_kwargs.py:20:5: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/fn_with_kwargs.py:21:6: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/fn_with_kwargs.py:21:22: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/fn_with_kwargs.py:22:7: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/fn_with_kwargs.py:22:23: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/fn_with_kwargs.py:25:14: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/fn_with_kwargs.py:26:15: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/fn_with_kwargs.py:27:15: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/list_contains.py:15:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/list_unpack.py:19:18: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/list_unpack.py:19:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_export/db/examples/list_unpack.py:19:54: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_export/db/examples/model_attr_mutation.py:12:9: error[unresolved-attribute] Cannot assign object of type `list[Unknown]` to attribute `attr_list` on type `Self@__init__` with custom `__setattr__` method. +torch/_export/db/examples/model_attr_mutation.py:12:27: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/model_attr_mutation.py:12:46: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/model_attr_mutation.py:15:17: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_export/db/examples/model_attr_mutation.py:15:36: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_export/db/examples/model_attr_mutation.py:22:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/nested_function.py:21:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/nested_function.py:21:36: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/null_context_manager.py:19:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/optional_input.py:11:28: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/optional_input.py:17:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/pytree_flatten.py:15:21: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/pytree_flatten.py:15:43: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/scalar_output.py:6:5: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/specialized_attribute.py:16:9: error[unresolved-attribute] Cannot assign object of type `Literal["moo"]` to attribute `a` on type `Self@__init__` with custom `__setattr__` method. +torch/_export/db/examples/specialized_attribute.py:17:9: error[unresolved-attribute] Cannot assign object of type `Literal[4]` to attribute `b` on type `Self@__init__` with custom `__setattr__` method. +torch/_export/db/examples/specialized_attribute.py:25:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/static_for_loop.py:14:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/static_if.py:12:24: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_export/db/examples/static_if.py:16:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/tensor_setattr.py:10:26: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/tensor_setattr.py:13:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/type_reflection_method.py:20:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/unsupported_operator.py:15:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/db/examples/user_input_mutation.py:15:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_export/non_strict_utils.py:172:51: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_export/non_strict_utils.py:312:54: error[unresolved-attribute] Module `torch` has no member `maximum` +torch/_export/non_strict_utils.py:321:39: error[unresolved-attribute] Module `torch` has no member `maximum` +torch/_export/non_strict_utils.py:362:5: error[invalid-assignment] Implicit shadowing of function `max` +torch/_export/non_strict_utils.py:363:70: error[unresolved-attribute] Module `torch` has no member `maximum` +torch/_export/non_strict_utils.py:367:5: error[invalid-assignment] Implicit shadowing of function `min` +torch/_export/non_strict_utils.py:368:70: error[unresolved-attribute] Module `torch` has no member `minimum` +torch/_export/non_strict_utils.py:415:15: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_export/non_strict_utils.py:647:25: error[unresolved-attribute] Module `torch.fx.experimental` has no member `_config` +torch/_export/non_strict_utils.py:660:12: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/non_strict_utils.py:822:21: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_export/non_strict_utils.py:855:9: error[unresolved-attribute] Module `torch` has no member `_export` +torch/_export/non_strict_utils.py:862:9: error[unresolved-attribute] Module `torch` has no member `_export` +torch/_export/non_strict_utils.py:974:13: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_export/non_strict_utils.py:1028:21: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/_export/non_strict_utils.py:1029:21: warning[possibly-missing-attribute] Member `reduce_scatter_tensor` may be missing on module `torch.distributed` +torch/_export/non_strict_utils.py:1030:21: warning[possibly-missing-attribute] Member `_reduce_scatter_base` may be missing on module `torch.distributed` +torch/_export/non_strict_utils.py:1030:39: warning[deprecated] The function `_reduce_scatter_base` is deprecated: `torch.distributed._reduce_scatter_base` is a private function and will be deprecated. Please use `torch.distributed.reduce_scatter_tensor` instead. +torch/_export/non_strict_utils.py:1035:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_export/non_strict_utils.py:1044:24: error[unresolved-attribute] Module `torch` has no member `_refs` +torch/_export/non_strict_utils.py:1050:38: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/_export/non_strict_utils.py:1052:34: error[unresolved-attribute] Module `torch` has no member `select` +torch/_export/pass_base.py:123:29: error[unresolved-attribute] Module `torch` has no member `dequantize` +torch/_export/pass_base.py:167:29: error[unresolved-attribute] Module `torch` has no member `dequantize` +torch/_export/pass_base.py:341:21: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_export/pass_base.py:348:21: error[unresolved-attribute] Module `torch` has no member `device` +torch/_export/passes/_node_metadata_hook.py:36:17: error[invalid-assignment] Object of type `(FakeTensorMode & ~AlwaysFalsy) | nullcontext[None]` is not assignable to `FakeTensorMode | None` +torch/_export/passes/_node_metadata_hook.py:44:17: error[unresolved-attribute] Object of type `object` has no attribute `returns` +torch/_export/passes/_node_metadata_hook.py:52:14: error[invalid-context-manager] Object of type `FakeTensorMode | None` cannot be used with `with` because the methods `__enter__` and `__exit__` are possibly missing +torch/_export/passes/_node_metadata_hook.py:86:16: error[unresolved-attribute] Object of type `(((...) -> Any) & (() -> object)) | (str & (() -> object))` has no attribute `__name__` +torch/_export/passes/_node_metadata_hook.py:88:49: error[unresolved-attribute] Object of type `(((...) -> Any) & (() -> object)) | (str & (() -> object))` has no attribute `__name__` +torch/_export/passes/constant_folding.py:71:33: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_export/passes/constant_folding.py:162:17: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_export/passes/constant_folding.py:211:10: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_export/passes/constant_folding.py:251:10: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_export/passes/lift_constants_pass.py:26:23: error[unresolved-attribute] Module `collections` has no member `abc` +torch/_export/passes/lift_constants_pass.py:37:56: error[unresolved-attribute] Module `torch.utils` has no member `_pytree` +torch/_export/passes/lift_constants_pass.py:43:44: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_export/passes/lift_constants_pass.py:46:49: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_export/passes/lift_constants_pass.py:58:28: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_export/passes/lift_constants_pass.py:73:49: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_export/passes/lift_constants_pass.py:88:49: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_export/passes/lift_constants_pass.py:234:41: error[unresolved-attribute] Module `torch.utils` has no member `_pytree` +torch/_export/passes/lift_constants_pass.py:256:42: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_export/passes/lift_constants_pass.py:322:47: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_export/passes/lift_constants_pass.py:392:33: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:21:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:26:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:29:24: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:32:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:33:16: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:34:19: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:35:16: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:50:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:51:23: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:72:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:74:23: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:76:19: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:85:21: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:106:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:108:23: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:110:19: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:122:21: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:139:26: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:144:49: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:156:6: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:165:28: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:231:26: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:231:39: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:240:23: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:499:52: error[invalid-argument-type] Argument to function `insert_fused_activation_node` is incorrect: Expected `str`, found `object` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:512:9: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:523:9: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:601:25: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:612:25: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:629:34: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:636:29: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py:637:29: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/_export/passes/replace_set_grad_with_hop_pass.py:25:28: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/_export/passes/replace_set_grad_with_hop_pass.py:41:40: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/_export/passes/replace_set_grad_with_hop_pass.py:44:41: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py:18:24: error[unresolved-attribute] Module `torch._C` has no member `FunctionSchema` +torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py:25:38: error[unresolved-attribute] Module `torch._C` has no member `FunctionSchema` +torch/_export/serde/dynamic_shapes.py:49:12: error[invalid-assignment] Object of type `dict[str | Unknown, RootDim | Unknown]` is not assignable to `dict[str, dict[str, int | list[str] | None]]` +torch/_export/serde/dynamic_shapes.py:58:61: error[invalid-argument-type] Argument is incorrect: Expected `dict[str, RootDim]`, found `dict[str, dict[str, int | list[str] | None]]` +torch/_export/serde/dynamic_shapes.py:188:28: error[invalid-argument-type] Argument to class `tuple` is incorrect: Expected `Iterable[object]`, found `tuple[Any] | list[Any] | dict[str, Any] | None` +torch/_export/serde/dynamic_shapes.py:219:19: error[invalid-argument-type] Argument to function `sorted` is incorrect: Argument type `object` does not satisfy upper bound `SupportsDunderLT[Any] | SupportsDunderGT[Any]` of type variable `SupportsRichComparisonT` +torch/_export/serde/schema_check.py:627:40: error[invalid-argument-type] Argument to function `is_resource` is incorrect: Expected `str | ModuleType`, found `str | None` +torch/_export/serde/schema_check.py:629:49: error[invalid-argument-type] Argument to function `read_text` is incorrect: Expected `str | ModuleType`, found `str | None` +torch/_export/serde/schema_check.py:637:13: error[invalid-argument-type] Argument to function `read_text` is incorrect: Expected `str | ModuleType`, found `str | None` +torch/_export/serde/schema_check.py:662:17: warning[possibly-missing-attribute] Attribute `replace` may be missing on object of type `str | None` +torch/_export/serde/schema_check.py:664:26: warning[possibly-missing-attribute] Attribute `replace` may be missing on object of type `str | None` +torch/_export/serde/serialize.py:134:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_export/serde/serialize.py:135:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_export/serde/serialize.py:136:5: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_export/serde/serialize.py:137:5: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_export/serde/serialize.py:138:5: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_export/serde/serialize.py:139:5: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_export/serde/serialize.py:140:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_export/serde/serialize.py:141:5: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_export/serde/serialize.py:142:5: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_export/serde/serialize.py:143:5: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/_export/serde/serialize.py:144:5: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_export/serde/serialize.py:145:5: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_export/serde/serialize.py:146:5: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_export/serde/serialize.py:147:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_export/serde/serialize.py:148:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_export/serde/serialize.py:149:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_export/serde/serialize.py:150:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/_export/serde/serialize.py:151:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/_export/serde/serialize.py:159:5: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/_export/serde/serialize.py:160:5: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_export/serde/serialize.py:161:5: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/_export/serde/serialize.py:162:5: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_export/serde/serialize.py:163:5: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/_export/serde/serialize.py:165:5: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_export/serde/serialize.py:173:5: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_export/serde/serialize.py:174:5: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_export/serde/serialize.py:175:5: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_export/serde/serialize.py:176:5: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_export/serde/serialize.py:256:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_export/serde/serialize.py:259:12: error[unresolved-attribute] Module `torch` has no member `device` +torch/_export/serde/serialize.py:278:48: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_export/serde/serialize.py:340:73: error[invalid-argument-type] Argument to function `_print_sympy` is incorrect: Expected `SymInt | SymBool | SymFloat | Expr`, found `SymBool | bool` +torch/_export/serde/serialize.py:472:16: error[invalid-return-type] Return type does not match returned value: expected `Expr`, found `int` +torch/_export/serde/serialize.py:537:12: error[unresolved-attribute] Module `torch._higher_order_ops` has no member `triton_kernel_wrap` +torch/_export/serde/serialize.py:541:10: error[unresolved-import] Cannot resolve imported module `triton.runtime.autotuner` +torch/_export/serde/serialize.py:542:10: error[unresolved-import] Cannot resolve imported module `triton.runtime.jit` +torch/_export/serde/serialize.py:545:14: error[unresolved-attribute] Module `torch._higher_order_ops` has no member `triton_kernel_wrap` +torch/_export/serde/serialize.py:662:37: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_export/serde/serialize.py:816:20: error[unresolved-attribute] Module `torch._higher_order_ops` has no member `triton_kernel_wrap` +torch/_export/serde/serialize.py:1201:45: error[unresolved-attribute] Module `torch` has no member `OptionalType` +torch/_export/serde/serialize.py:1203:49: error[unresolved-attribute] Module `torch` has no member `ListType` +torch/_export/serde/serialize.py:1205:46: error[unresolved-attribute] Module `torch` has no member `OptionalType` +torch/_export/serde/serialize.py:1208:46: error[unresolved-attribute] Module `torch` has no member `BoolType` +torch/_export/serde/serialize.py:1210:48: error[unresolved-attribute] Module `torch` has no member `IntType` +torch/_export/serde/serialize.py:1212:48: error[unresolved-attribute] Module `torch` has no member `FloatType` +torch/_export/serde/serialize.py:1214:48: error[unresolved-attribute] Module `torch` has no member `StringType` +torch/_export/serde/serialize.py:1216:48: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_export/serde/serialize.py:1333:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_export/serde/serialize.py:1335:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/_export/serde/serialize.py:1337:30: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_export/serde/serialize.py:1341:30: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_export/serde/serialize.py:1343:30: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_export/serde/serialize.py:1648:44: error[unresolved-attribute] Module `torch` has no member `ListType` +torch/_export/serde/serialize.py:1649:47: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_export/serde/serialize.py:1687:47: error[unresolved-attribute] Module `torch` has no member `OptionalType` +torch/_export/serde/serialize.py:1687:67: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_export/serde/serialize.py:1694:47: error[unresolved-attribute] Module `torch` has no member `OptionalType` +torch/_export/serde/serialize.py:1694:67: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_export/serde/serialize.py:1701:46: error[unresolved-attribute] Module `torch` has no member `ListType` +torch/_export/serde/serialize.py:1703:63: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_export/serde/serialize.py:1891:42: error[unresolved-attribute] Module `torch._C` has no member `_get_max_operator_version` +torch/_export/serde/serialize.py:2040:42: error[invalid-argument-type] Argument to bound method `_parse_sym_expr` is incorrect: Expected `str`, found `Basic` +torch/_export/serde/serialize.py:2045:21: error[invalid-assignment] Invalid subscript assignment with key of type `str` and value of type `Expr` on object of type `dict[str, Symbol]` +torch/_export/serde/serialize.py:2124:17: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_export/serde/serialize.py:2285:39: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_export/serde/serialize.py:2300:16: error[unresolved-attribute] Module `torch._higher_order_ops` has no member `triton_kernel_wrap` +torch/_export/serde/serialize.py:2537:29: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2538:36: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2539:26: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2540:30: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2541:24: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2542:29: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2543:30: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2544:31: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2545:28: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2546:27: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2547:27: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2548:33: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2549:29: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2550:33: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2551:31: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2552:54: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2553:33: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2554:31: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2555:31: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2556:33: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2557:28: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:2558:29: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_export/serde/serialize.py:3101:51: error[unresolved-attribute] Module `torch._C` has no member `_get_max_operator_version` +torch/_export/serde/serialize.py:3865:31: error[unresolved-attribute] Module `torch` has no member `FunctionSchema` +torch/_export/serde/union.py:49:12: error[call-non-callable] Object of type `` is not callable +torch/_export/verifier.py:49:19: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_export/verifier.py:49:40: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_export/verifier.py:49:53: error[unresolved-attribute] Module `torch` has no member `device` +torch/_export/verifier.py:49:67: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_export/verifier.py:162:39: error[unresolved-attribute] Module `torch.utils` has no member `_pytree` +torch/_export/verifier.py:170:13: error[unresolved-attribute] Module `torch.utils` has no member `_pytree` +torch/_export/verifier.py:219:17: error[unresolved-attribute] Module `torch.export` has no member `custom_ops` +torch/_export/verifier.py:223:17: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/_export/verifier.py:226:17: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/_export/verifier.py:227:17: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_export/verifier.py:228:17: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_export/verifier.py:229:17: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_export/verifier.py:230:17: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_export/verifier.py:231:17: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_export/wrappers.py:8:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_export/wrappers.py:296:48: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_export/wrappers.py:302:26: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_include_set` +torch/_export/wrappers.py:303:13: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_export/wrappers.py:306:13: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_exclude_set` +torch/_export/wrappers.py:307:15: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_export/wrappers.py:307:39: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_export/wrappers.py:310:14: error[unresolved-attribute] Module `torch._C` has no member `_ForceDispatchKeyGuard` +torch/_functorch/_activation_checkpointing/graph_info_provider.py:3:8: error[unresolved-import] Cannot resolve imported module `networkx` +torch/_functorch/_activation_checkpointing/graph_info_provider.py:256:14: error[unresolved-import] Cannot resolve imported module `matplotlib` +torch/_functorch/_activation_checkpointing/knapsack.py:34:14: error[unresolved-import] Cannot resolve imported module `scipy.optimize` +torch/_functorch/_activation_checkpointing/knapsack.py:71:24: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_functorch/_activation_checkpointing/knapsack.py:72:47: error[unresolved-attribute] Module `torch` has no member `long` +torch/_functorch/_activation_checkpointing/knapsack.py:74:16: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_functorch/_activation_checkpointing/knapsack.py:74:44: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_functorch/_activation_checkpointing/knapsack.py:85:10: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_functorch/_activation_checkpointing/knapsack.py:86:50: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_functorch/_activation_checkpointing/knapsack.py:100:38: error[unresolved-attribute] Module `torch` has no member `maximum` +torch/_functorch/_activation_checkpointing/knapsack_evaluator.py:5:8: error[unresolved-import] Cannot resolve imported module `networkx` +torch/_functorch/_aot_autograd/aot_autograd_result.py:163:9: error[unresolved-attribute] Module `torch._inductor` has no member `async_compile` +torch/_functorch/_aot_autograd/aot_autograd_result.py:312:5: error[unresolved-attribute] Cannot assign object of type `dict[Unknown, Unknown]` to attribute `meta` on type `GraphModule` with custom `__setattr__` method. +torch/_functorch/_aot_autograd/aot_autograd_result.py:515:23: error[unresolved-attribute] Module `torch._C` has no member `_is_any_autocast_enabled` +torch/_functorch/_aot_autograd/aot_autograd_result.py:643:15: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_functorch/_aot_autograd/aot_autograd_result.py:647:19: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_functorch/_aot_autograd/aot_autograd_result.py:648:10: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_functorch/_aot_autograd/autograd_cache.py:105:14: error[unresolved-import] Cannot resolve imported module `torch._inductor.fb.remote_cache` +torch/_functorch/_aot_autograd/autograd_cache.py:171:17: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_functorch/_aot_autograd/autograd_cache.py:264:23: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_functorch/_aot_autograd/autograd_cache.py:319:18: error[unresolved-import] Cannot resolve imported module `triton.runtime.autotuner` +torch/_functorch/_aot_autograd/autograd_cache.py:340:29: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_functorch/_aot_autograd/autograd_cache.py:341:28: error[unresolved-attribute] Module `torch._C` has no member `_is_any_autocast_enabled` +torch/_functorch/_aot_autograd/autograd_cache.py:383:9: warning[possibly-missing-attribute] Attribute `update` may be missing on object of type `Mapping[type, (Any, /) -> str | tuple[(...) -> Any, tuple[Any, ...]] | tuple[(...) -> Any, tuple[Any, ...], Any] | tuple[(...) -> Any, tuple[Any, ...], Any, Iterator[Any] | None] | tuple[(...) -> Any, tuple[Any, ...], Any, Iterator[Any] | None, Iterator[Any] | None]] | dict[Unknown, Unknown]` +torch/_functorch/_aot_autograd/autograd_cache.py:486:16: error[unresolved-import] Cannot resolve imported module `triton` +torch/_functorch/_aot_autograd/collect_metadata_analysis.py:90:8: warning[possibly-missing-attribute] Attribute `memory_format` may be missing on object of type `MemoryFormatMeta | None` +torch/_functorch/_aot_autograd/collect_metadata_analysis.py:93:44: warning[possibly-missing-attribute] Attribute `memory_format` may be missing on object of type `MemoryFormatMeta | None` +torch/_functorch/_aot_autograd/collect_metadata_analysis.py:133:13: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `list[Unknown | MemoryFormatMeta | None] | MemoryFormatMeta | None` +torch/_functorch/_aot_autograd/collect_metadata_analysis.py:190:30: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_functorch/_aot_autograd/collect_metadata_analysis.py:194:25: error[unresolved-attribute] Module `torch._C` has no member `_ExcludeDispatchKeyGuard` +torch/_functorch/_aot_autograd/collect_metadata_analysis.py:195:13: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_functorch/_aot_autograd/collect_metadata_analysis.py:195:37: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_functorch/_aot_autograd/collect_metadata_analysis.py:705:18: error[invalid-context-manager] Object of type `FakeTensorMode | None` cannot be used with `with` because the methods `__enter__` and `__exit__` are possibly missing +torch/_functorch/_aot_autograd/collect_metadata_analysis.py:706:24: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_functorch/_aot_autograd/collect_metadata_analysis.py:712:33: error[unresolved-attribute] Module `torch.nested._internal` has no member `nested_tensor` +torch/_functorch/_aot_autograd/collect_metadata_analysis.py:713:20: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_functorch/_aot_autograd/collect_metadata_analysis.py:802:12: error[unresolved-attribute] Module `torch._dynamo` has no member `compiled_autograd` +torch/_functorch/_aot_autograd/collect_metadata_analysis.py:841:12: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_functorch/_aot_autograd/collect_metadata_analysis.py:842:37: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_functorch/_aot_autograd/frontend_utils.py:50:30: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_functorch/_aot_autograd/frontend_utils.py:71:35: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_functorch/_aot_autograd/frontend_utils.py:116:26: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_functorch/_aot_autograd/frontend_utils.py:156:16: error[unsupported-operator] Operator `in` is not supported for types `str` and `Module`, in comparing `str` with `Tensor | Module` +torch/_functorch/_aot_autograd/frontend_utils.py:157:18: error[non-subscriptable] Cannot subscript object of type `Module` with no `__getitem__` method +torch/_functorch/_aot_autograd/functional_utils.py:75:12: error[unresolved-attribute] Module `torch` has no member `_from_functional_tensor` +torch/_functorch/_aot_autograd/functional_utils.py:119:16: error[unresolved-attribute] Module `torch` has no member `_functionalize_are_all_mutations_hidden_from_autograd` +torch/_functorch/_aot_autograd/functional_utils.py:133:16: error[unresolved-attribute] Module `torch` has no member `_functionalize_are_all_mutations_under_no_grad_or_inference_mode` +torch/_functorch/_aot_autograd/functional_utils.py:149:16: error[unresolved-attribute] Module `torch` has no member `_functionalize_was_inductor_storage_resized` +torch/_functorch/_aot_autograd/functional_utils.py:181:21: error[unresolved-attribute] Module `torch` has no member `_from_functional_tensor` +torch/_functorch/_aot_autograd/functional_utils.py:295:23: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/_functorch/_aot_autograd/functional_utils.py:299:23: error[unresolved-attribute] Module `torch` has no member `view_as_complex` +torch/_functorch/_aot_autograd/functional_utils.py:336:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_functorch/_aot_autograd/functional_utils.py:376:16: error[unresolved-attribute] Module `torch` has no member `_is_functional_tensor` +torch/_functorch/_aot_autograd/graph_capture.py:15:33: warning[possibly-missing-import] Member `detect_fake_mode` of module `torch._dynamo.utils` may be missing +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:138:36: error[unresolved-attribute] Module `torch._C` has no member `_autocast_supported_devices` +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:354:38: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:355:17: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:376:42: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:455:56: error[unresolved-attribute] Module `torch` has no member `device` +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:459:59: error[unresolved-attribute] Module `torch` has no member `device` +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:777:29: error[unresolved-attribute] Module `torch._C` has no member `_ExcludeDispatchKeyGuard` +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:778:17: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:778:41: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1074:25: error[unresolved-attribute] Module `torch._C` has no member `_ExcludeDispatchKeyGuard` +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1075:13: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1075:37: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1092:38: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1093:17: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1140:36: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1317:9: error[invalid-argument-type] Argument to function `run_functionalized_fw_and_collect_metadata` is incorrect: Expected `list[AOTInput]`, found `list[Unknown] | AOTInput | tuple[list[Unknown], list[Unknown]] | list[AOTInput]` +torch/_functorch/_aot_autograd/graph_compile.py:37:5: warning[possibly-missing-import] Member `detect_fake_mode` of module `torch._dynamo.utils` may be missing +torch/_functorch/_aot_autograd/graph_compile.py:368:32: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_functorch/_aot_autograd/graph_compile.py:510:19: error[unresolved-attribute] Module `torch._C` has no member `_is_any_autocast_enabled` +torch/_functorch/_aot_autograd/graph_compile.py:1027:29: error[unresolved-attribute] Module `torch._C` has no member `_ExcludeDispatchKeyGuard` +torch/_functorch/_aot_autograd/graph_compile.py:1028:17: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_functorch/_aot_autograd/graph_compile.py:1028:41: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_functorch/_aot_autograd/graph_compile.py:1062:8: error[unresolved-attribute] Module `torch._dynamo` has no member `compiled_autograd` +torch/_functorch/_aot_autograd/graph_compile.py:1065:17: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_functorch/_aot_autograd/graph_compile.py:1067:9: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_functorch/_aot_autograd/graph_compile.py:1124:12: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_functorch/_aot_autograd/graph_compile.py:1487:32: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_functorch/_aot_autograd/graph_compile.py:1574:19: error[unresolved-attribute] Module `torch._C` has no member `_is_any_autocast_enabled` +torch/_functorch/_aot_autograd/graph_compile.py:1578:19: error[unresolved-attribute] Module `torch._C` has no member `_DisableAutocast` +torch/_functorch/_aot_autograd/graph_compile.py:1599:25: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_functorch/_aot_autograd/graph_compile.py:1601:24: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_functorch/_aot_autograd/graph_compile.py:1669:16: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_functorch/_aot_autograd/graph_compile.py:1819:61: error[unresolved-attribute] Module `torch._C` has no member `_DisableAutocast` +torch/_functorch/_aot_autograd/graph_compile.py:1943:16: error[unresolved-attribute] Module `torch._dynamo` has no member `compiled_autograd` +torch/_functorch/_aot_autograd/graph_compile.py:2069:19: error[unresolved-attribute] Module `torch._C` has no member `_is_any_autocast_enabled` +torch/_functorch/_aot_autograd/graph_compile.py:2199:36: error[invalid-assignment] Implicit shadowing of function `try_save_cache_entry` +torch/_functorch/_aot_autograd/graph_compile.py:2248:13: error[unresolved-attribute] Module `torch._C` has no member `_DisableAutocast` +torch/_functorch/_aot_autograd/graph_compile.py:2249:16: error[unresolved-attribute] Module `torch._C` has no member `_is_any_autocast_enabled` +torch/_functorch/_aot_autograd/graph_compile.py:2256:24: error[unresolved-attribute] Module `torch._C` has no member `_DisableAutocast` +torch/_functorch/_aot_autograd/graph_compile.py:2287:31: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_functorch/_aot_autograd/graph_compile.py:2293:32: error[call-non-callable] Object of type `None` is not callable +torch/_functorch/_aot_autograd/input_output_analysis.py:77:61: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_functorch/_aot_autograd/input_output_analysis.py:306:23: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_functorch/_aot_autograd/logging_utils.py:51:27: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_functorch/_aot_autograd/logging_utils.py:64:35: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_functorch/_aot_autograd/runtime_wrappers.py:236:8: error[unresolved-attribute] Module `torch._dynamo` has no member `compiled_autograd` +torch/_functorch/_aot_autograd/runtime_wrappers.py:239:17: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_functorch/_aot_autograd/runtime_wrappers.py:241:9: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_functorch/_aot_autograd/runtime_wrappers.py:300:18: error[unresolved-attribute] Module `torch._C` has no member `_profiler` +torch/_functorch/_aot_autograd/runtime_wrappers.py:352:28: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_functorch/_aot_autograd/runtime_wrappers.py:355:21: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/_functorch/_aot_autograd/runtime_wrappers.py:362:21: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/_functorch/_aot_autograd/runtime_wrappers.py:465:13: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/_functorch/_aot_autograd/runtime_wrappers.py:574:27: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_functorch/_aot_autograd/runtime_wrappers.py:966:39: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/_functorch/_aot_autograd/runtime_wrappers.py:969:39: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/_functorch/_aot_autograd/runtime_wrappers.py:1487:30: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_functorch/_aot_autograd/runtime_wrappers.py:1592:13: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_functorch/_aot_autograd/runtime_wrappers.py:1798:9: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_functorch/_aot_autograd/runtime_wrappers.py:1811:26: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_functorch/_aot_autograd/runtime_wrappers.py:1812:26: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_functorch/_aot_autograd/runtime_wrappers.py:1827:10: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_functorch/_aot_autograd/runtime_wrappers.py:1828:17: error[unresolved-attribute] Module `torch` has no member `randint` +torch/_functorch/_aot_autograd/runtime_wrappers.py:1828:34: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_functorch/_aot_autograd/runtime_wrappers.py:1828:46: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_functorch/_aot_autograd/runtime_wrappers.py:1897:17: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_functorch/_aot_autograd/runtime_wrappers.py:1923:13: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_functorch/_aot_autograd/runtime_wrappers.py:1925:9: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_functorch/_aot_autograd/runtime_wrappers.py:1931:13: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_functorch/_aot_autograd/runtime_wrappers.py:1933:13: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_functorch/_aot_autograd/runtime_wrappers.py:1988:26: error[unresolved-attribute] Module `torch._subclasses` has no member `functional_tensor` +torch/_functorch/_aot_autograd/runtime_wrappers.py:2096:30: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_functorch/_aot_autograd/runtime_wrappers.py:2097:30: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_functorch/_aot_autograd/runtime_wrappers.py:2288:25: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_functorch/_aot_autograd/runtime_wrappers.py:2331:30: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_functorch/_aot_autograd/runtime_wrappers.py:2375:25: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_functorch/_aot_autograd/runtime_wrappers.py:2442:31: error[unresolved-attribute] Module `torch._C` has no member `_DisableAutocast` +torch/_functorch/_aot_autograd/runtime_wrappers.py:2478:21: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_functorch/_aot_autograd/schemas.py:175:29: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_functorch/_aot_autograd/schemas.py:185:17: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_functorch/_aot_autograd/schemas.py:200:31: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/_functorch/_aot_autograd/streams.py:20:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/_functorch/_aot_autograd/subclass_utils.py:243:44: error[invalid-argument-type] Argument to function `flatten_subclass` is incorrect: Expected `AOTDescriptor@unwrap_tensor_subclasses`, found `SubclassGetAttrAOTInput | SubclassGetAttrAOTOutput` +torch/_functorch/_aot_autograd/subclass_utils.py:287:26: warning[possibly-missing-attribute] Attribute `attrs` may be missing on object of type `SubclassCreationMeta | None` +torch/_functorch/_aot_autograd/subclass_utils.py:288:44: error[invalid-argument-type] Argument to function `flatten_subclass` is incorrect: Expected `SubclassCreationMeta | None`, found `SubclassCreationMeta | PlainTensorMeta | None` +torch/_functorch/_aot_autograd/utils.py:39:5: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_functorch/_aot_autograd/utils.py:97:9: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/_functorch/_aot_autograd/utils.py:98:9: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/_functorch/_aot_autograd/utils.py:99:9: error[unresolved-attribute] Module `torch` has no member `get_autocast_dtype` +torch/_functorch/_aot_autograd/utils.py:100:9: error[unresolved-attribute] Module `torch` has no member `get_autocast_dtype` +torch/_functorch/_aot_autograd/utils.py:101:9: error[unresolved-attribute] Module `torch` has no member `is_autocast_cache_enabled` +torch/_functorch/_aot_autograd/utils.py:131:15: error[unresolved-attribute] Module `torch._C` has no member `_DisableAutocast` +torch/_functorch/_aot_autograd/utils.py:288:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_functorch/_aot_autograd/utils.py:289:50: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_functorch/_aot_autograd/utils.py:523:26: error[unresolved-attribute] Module `torch.fx.experimental` has no member `proxy_tensor` +torch/_functorch/_aot_autograd/utils.py:525:21: error[unresolved-attribute] Module `torch.fx.experimental` has no member `proxy_tensor` +torch/_functorch/_aot_autograd/utils.py:545:17: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_functorch/_aot_autograd/utils.py:563:12: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_functorch/aot_autograd.py:564:16: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_functorch/aot_autograd.py:598:25: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> InputAliasInfo, (s: slice[Any, Any, Any], /) -> list[InputAliasInfo]]` cannot be called with key of type `int | None` on object of type `list[InputAliasInfo]` +torch/_functorch/aot_autograd.py:785:9: error[invalid-argument-type] Argument is incorrect: Expected `(...) -> Unknown`, found `None` +torch/_functorch/aot_autograd.py:786:9: error[invalid-argument-type] Argument is incorrect: Expected `(...) -> Unknown`, found `None` +torch/_functorch/aot_autograd.py:788:9: error[invalid-argument-type] Argument is incorrect: Expected `(...) -> Unknown`, found `None` +torch/_functorch/aot_autograd.py:789:9: error[invalid-argument-type] Argument is incorrect: Expected `dict[OpOverload[Unknown, Any], (...) -> Unknown]`, found `dict[Unknown, Unknown] | None` +torch/_functorch/aot_autograd.py:871:58: error[invalid-argument-type] Argument to function `assert_no_fake_params_or_buffers` is incorrect: Expected `GraphModule`, found `Module` +torch/_functorch/aot_autograd.py:881:33: error[parameter-already-assigned] Multiple values provided for parameter `num_params_buffers` of function `aot_function` +torch/_functorch/aot_autograd.py:970:27: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_functorch/aot_autograd.py:994:9: error[invalid-argument-type] Argument is incorrect: Expected `(...) -> Unknown`, found `None` +torch/_functorch/aot_autograd.py:995:9: error[invalid-argument-type] Argument is incorrect: Expected `(...) -> Unknown`, found `None` +torch/_functorch/aot_autograd.py:997:9: error[invalid-argument-type] Argument is incorrect: Expected `(...) -> Unknown`, found `None` +torch/_functorch/aot_autograd.py:1081:13: error[invalid-argument-type] Argument to function `prepare_aot_module_simplified` is incorrect: Expected `dict[Unknown, Unknown]`, found `dict[Unknown, Unknown] | None` +torch/_functorch/aot_autograd.py:1083:13: error[invalid-argument-type] Argument to function `prepare_aot_module_simplified` is incorrect: Expected `BoxedDeviceIndex`, found `BoxedDeviceIndex | None` +torch/_functorch/aot_autograd.py:1098:21: error[invalid-argument-type] Argument to function `try_load` is incorrect: Expected `GraphModule | GmWrapper`, found `Module` +torch/_functorch/aot_autograd.py:1155:5: error[unresolved-attribute] Unresolved attribute `zero_grad` on type `(...) -> Unknown`. +torch/_functorch/aot_autograd.py:1156:5: error[unresolved-attribute] Unresolved attribute `named_parameters` on type `(...) -> Unknown`. +torch/_functorch/aot_autograd.py:1157:5: error[unresolved-attribute] Unresolved attribute `named_buffers` on type `(...) -> Unknown`. +torch/_functorch/aot_autograd.py:1169:12: error[invalid-return-type] Return type does not match returned value: expected `Module`, found `(...) -> Unknown` +torch/_functorch/aot_autograd.py:1174:14: error[unresolved-attribute] Module `torch.fx` has no member `traceback` +torch/_functorch/aot_autograd.py:1177:5: error[unresolved-attribute] Unresolved attribute `_boxed_call` on type `def run(args) -> Unknown`. +torch/_functorch/aot_autograd.py:1270:9: error[invalid-argument-type] Argument to function `prepare_aot_module_simplified` is incorrect: Expected `dict[Unknown, Unknown]`, found `dict[Unknown, Unknown] | None` +torch/_functorch/aot_autograd.py:1272:9: error[invalid-argument-type] Argument to function `prepare_aot_module_simplified` is incorrect: Expected `BoxedDeviceIndex`, found `None` +torch/_functorch/aot_autograd.py:1318:5: error[invalid-parameter-default] Default value of type `def boxed_nop_preserve_node_meta(fx_g, example_inputs) -> Unknown` is not assignable to annotated parameter type `AOTDispatchCompiler | None` +torch/_functorch/aot_autograd.py:1319:5: error[invalid-parameter-default] Default value of type `def boxed_nop_preserve_node_meta(fx_g, example_inputs) -> Unknown` is not assignable to annotated parameter type `AOTDispatchCompiler | None` +torch/_functorch/aot_autograd.py:1320:6: error[invalid-type-form] Variable of type `def callable(obj: object, /) -> TypeIs[() -> object]` is not allowed in a type expression +torch/_functorch/aot_autograd.py:1335:9: error[invalid-argument-type] Argument to function `aot_stage2_compile` is incorrect: Expected `(...) -> Unknown`, found `AOTDispatchCompiler | None` +torch/_functorch/aot_autograd.py:1550:9: error[invalid-argument-type] Argument to function `create_graph_signature` is incorrect: Expected `list[Tensor]`, found `tuple[Any, ...]` +torch/_functorch/aot_autograd.py:1710:9: error[invalid-argument-type] Argument is incorrect: Expected `(...) -> Unknown`, found `None` +torch/_functorch/aot_autograd.py:1711:9: error[invalid-argument-type] Argument is incorrect: Expected `(...) -> Unknown`, found `None` +torch/_functorch/aot_autograd.py:1713:9: error[invalid-argument-type] Argument is incorrect: Expected `(...) -> Unknown`, found `None` +torch/_functorch/aot_autograd.py:1714:9: error[invalid-argument-type] Argument is incorrect: Expected `dict[OpOverload[Unknown, Any], (...) -> Unknown]`, found `dict[Unknown, Unknown] | None` +torch/_functorch/aot_autograd.py:1749:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[GraphModule, ViewAndMutationMeta, TreeSpec, TreeSpec]`, found `tuple[(...) -> Unknown, ViewAndMutationMeta, TreeSpec, TreeSpec | None]` +torch/_functorch/apis.py:213:19: error[invalid-assignment] Implicit shadowing of function `wrapped` +torch/_functorch/apis.py:409:19: error[invalid-assignment] Implicit shadowing of function `wrapper` +torch/_functorch/apis.py:454:19: error[invalid-assignment] Implicit shadowing of function `wrapper` +torch/_functorch/autograd_function.py:48:12: error[unresolved-attribute] Module `torch._C` has no member `_are_functorch_transforms_active` +torch/_functorch/autograd_function.py:336:20: error[unresolved-attribute] Module `torch._C` has no member `_ExcludeDispatchKeyGuard` +torch/_functorch/autograd_function.py:337:17: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_functorch/autograd_function.py:337:41: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_functorch/batch_norm_replacement.py:10:9: error[unresolved-attribute] Cannot assign object of type `None` to attribute `running_mean` on type `_BatchNorm` with custom `__setattr__` method. +torch/_functorch/batch_norm_replacement.py:11:9: error[unresolved-attribute] Cannot assign object of type `None` to attribute `running_var` on type `_BatchNorm` with custom `__setattr__` method. +torch/_functorch/batch_norm_replacement.py:12:9: error[unresolved-attribute] Cannot assign object of type `None` to attribute `num_batches_tracked` on type `_BatchNorm` with custom `__setattr__` method. +torch/_functorch/batch_norm_replacement.py:13:9: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `track_running_stats` on type `_BatchNorm` with custom `__setattr__` method. +torch/_functorch/benchmark_utils.py:43:23: error[invalid-assignment] Implicit shadowing of function `synchronize` +torch/_functorch/compile_utils.py:22:16: error[invalid-return-type] Return type does not match returned value: expected `(...) -> Unknown`, found `object` +torch/_functorch/compile_utils.py:23:12: error[invalid-return-type] Return type does not match returned value: expected `(...) -> Unknown`, found `(((...) -> Any) & ~) | (str & ~)` +torch/_functorch/compilers.py:48:29: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_autocast_mode` +torch/_functorch/compilers.py:52:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_autocast_mode` +torch/_functorch/compilers.py:82:34: error[unresolved-attribute] Module `torch` has no member `device` +torch/_functorch/compilers.py:93:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_remove_mutation` +torch/_functorch/compilers.py:127:44: error[invalid-argument-type] Argument to function `bind_symbols` is incorrect: Expected `GraphModule`, found `Unknown | Module` +torch/_functorch/compilers.py:228:45: error[invalid-argument-type] Argument to function `get_decompositions` is incorrect: Expected `Sequence[OperatorBase | OpOverloadPacket[Unknown, Any]]`, found `set[Unknown | OpOverloadPacket[Unknown, Any] | OpOverload[Unknown, Any]]` +torch/_functorch/compilers.py:273:33: error[invalid-argument-type] Argument to function `aot_function` is incorrect: Expected `(...) -> Unknown`, found `Unknown | ((joint_module: GraphModule, _joint_inputs, compiler=Literal["inductor"], *, num_fwd_outputs, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | set[Unknown | OpOverloadPacket[Unknown, Any] | OpOverload[Unknown, Any]] | dict[OperatorBase, (...) -> Unknown]` +torch/_functorch/compilers.py:273:33: error[invalid-argument-type] Argument to function `aot_function` is incorrect: Expected `((...) -> Unknown) | None`, found `Unknown | ((joint_module: GraphModule, _joint_inputs, compiler=Literal["inductor"], *, num_fwd_outputs, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | set[Unknown | OpOverloadPacket[Unknown, Any] | OpOverload[Unknown, Any]] | dict[OperatorBase, (...) -> Unknown]` +torch/_functorch/compilers.py:273:33: error[invalid-argument-type] Argument to function `aot_function` is incorrect: Expected `(...) -> Unknown`, found `Unknown | ((joint_module: GraphModule, _joint_inputs, compiler=Literal["inductor"], *, num_fwd_outputs, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | set[Unknown | OpOverloadPacket[Unknown, Any] | OpOverload[Unknown, Any]] | dict[OperatorBase, (...) -> Unknown]` +torch/_functorch/compilers.py:273:33: error[invalid-argument-type] Argument to function `aot_function` is incorrect: Expected `dict[Unknown, Unknown] | None`, found `Unknown | ((joint_module: GraphModule, _joint_inputs, compiler=Literal["inductor"], *, num_fwd_outputs, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | set[Unknown | OpOverloadPacket[Unknown, Any] | OpOverload[Unknown, Any]] | dict[OperatorBase, (...) -> Unknown]` +torch/_functorch/compilers.py:273:33: error[invalid-argument-type] Argument to function `aot_function` is incorrect: Expected `int`, found `Unknown | ((joint_module: GraphModule, _joint_inputs, compiler=Literal["inductor"], *, num_fwd_outputs, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | set[Unknown | OpOverloadPacket[Unknown, Any] | OpOverload[Unknown, Any]] | dict[OperatorBase, (...) -> Unknown]` +torch/_functorch/compilers.py:273:33: error[invalid-argument-type] Argument to function `aot_function` is incorrect: Expected `bool`, found `Unknown | ((joint_module: GraphModule, _joint_inputs, compiler=Literal["inductor"], *, num_fwd_outputs, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | set[Unknown | OpOverloadPacket[Unknown, Any] | OpOverload[Unknown, Any]] | dict[OperatorBase, (...) -> Unknown]` +torch/_functorch/compilers.py:273:33: error[invalid-argument-type] Argument to function `aot_function` is incorrect: Expected `((...) -> Unknown) | None`, found `Unknown | ((joint_module: GraphModule, _joint_inputs, compiler=Literal["inductor"], *, num_fwd_outputs, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | set[Unknown | OpOverloadPacket[Unknown, Any] | OpOverload[Unknown, Any]] | dict[OperatorBase, (...) -> Unknown]` +torch/_functorch/compilers.py:298:10: error[unresolved-import] Cannot resolve imported module `foo` +torch/_functorch/compilers.py:319:30: error[unresolved-attribute] Module `random` has no member `rand` +torch/_functorch/compilers.py:323:21: error[unresolved-attribute] Module `torch` has no member `int` +torch/_functorch/compilers.py:324:21: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_functorch/compilers.py:325:21: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_functorch/compilers.py:326:21: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_functorch/compilers.py:327:21: error[unresolved-attribute] Module `torch` has no member `int` +torch/_functorch/compilers.py:328:21: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_functorch/compilers.py:332:29: error[unresolved-attribute] Module `torch` has no member `randint` +torch/_functorch/compilers.py:334:29: error[unresolved-attribute] Module `torch` has no member `rand` +torch/_functorch/compilers.py:419:16: error[missing-argument] No argument provided for required parameter `num_fwd_outputs` of function `default_partition` +torch/_functorch/compilers.py:424:9: error[invalid-argument-type] Argument to function `aot_module_simplified` is incorrect: Expected `AOTDispatchCompiler`, found `def graph_saver_forward(gm, fw_args) -> Unknown` +torch/_functorch/compilers.py:425:9: error[invalid-argument-type] Argument to function `aot_module_simplified` is incorrect: Expected `AOTDispatchCompiler | None`, found `def graph_saver_backward(gm, bw_args) -> Unknown` +torch/_functorch/compilers.py:427:9: error[invalid-argument-type] Argument to function `aot_module_simplified` is incorrect: Expected `dict[Unknown, Unknown] | None`, found `set[Unknown | OpOverloadPacket[Unknown, Any] | OpOverload[Unknown, Any]] | dict[OperatorBase, (...) -> Unknown]` +torch/_functorch/eager_transforms.py:17:5: error[unresolved-import] Module `torch._C._functorch` has no member `_assert_wrapped_functional` +torch/_functorch/eager_transforms.py:18:5: error[unresolved-import] Module `torch._C._functorch` has no member `_func_decrement_nesting` +torch/_functorch/eager_transforms.py:19:5: error[unresolved-import] Module `torch._C._functorch` has no member `_func_increment_nesting` +torch/_functorch/eager_transforms.py:24:5: error[unresolved-import] Module `torch._C._functorch` has no member `_propagate_functional_input_mutation` +torch/_functorch/eager_transforms.py:87:40: error[invalid-argument-type] Argument to function `_unwrap_for_grad` is incorrect: Expected `int`, found `Unknown | None` +torch/_functorch/eager_transforms.py:104:20: error[missing-argument] No argument provided for required parameter `treespec` of function `tree_unflatten` +torch/_functorch/eager_transforms.py:141:22: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_functorch/eager_transforms.py:142:10: error[unresolved-attribute] Module `torch._dynamo` has no member `compiled_autograd` +torch/_functorch/eager_transforms.py:152:9: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_functorch/eager_transforms.py:387:32: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_functorch/eager_transforms.py:603:35: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_functorch/eager_transforms.py:619:35: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/_functorch/eager_transforms.py:634:37: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_functorch/eager_transforms.py:661:41: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_functorch/eager_transforms.py:679:39: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/_functorch/eager_transforms.py:808:10: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_functorch/eager_transforms.py:980:19: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_functorch/eager_transforms.py:1402:20: error[invalid-return-type] Return type does not match returned value: expected `(...) -> Unknown`, found `tuple[Unknown, tuple[Unknown, None | @Todo]]` +torch/_functorch/eager_transforms.py:1403:16: error[invalid-return-type] Return type does not match returned value: expected `(...) -> Unknown`, found `tuple[Unknown, Unknown]` +torch/_functorch/eager_transforms.py:1423:15: error[missing-argument] No argument provided for required parameter `mode` of function `__new__` +torch/_functorch/eager_transforms.py:1424:9: error[unresolved-attribute] Module `torch` has no member `_mirror_autograd_meta_to` +torch/_functorch/eager_transforms.py:1448:12: error[unresolved-attribute] Module `torch` has no member `_is_functional_tensor` +torch/_functorch/functional_call.py:155:9: error[invalid-argument-type] Argument to function `_functional_call` is incorrect: Expected `dict[str, Tensor]`, found `dict[str, Tensor] | (Sequence[dict[str, Tensor]] & Top[dict[Unknown, Unknown]]) | dict[str | Unknown, Tensor | Unknown]` +torch/_functorch/functional_call.py:260:14: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_functorch/fx_minifier.py:27:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_functorch/fx_minifier.py:28:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_functorch/fx_minifier.py:66:23: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | Tensor | Module` +torch/_functorch/fx_minifier.py:140:26: error[unknown-argument] Argument `exists_ok` does not match any known parameter of function `makedirs` +torch/_functorch/fx_minifier.py:142:10: error[unresolved-import] Cannot resolve imported module `torch_xla.stablehlo` +torch/_functorch/fx_minifier.py:223:37: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | None` +torch/_functorch/make_functional.py:79:32: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_functorch/make_functional.py:265:9: error[unresolved-attribute] Cannot assign object of type `tuple[str, ...]` to attribute `param_names` on type `Self@__init__` with custom `__setattr__` method. +torch/_functorch/make_functional.py:266:9: error[unresolved-attribute] Cannot assign object of type `tuple[str, ...]` to attribute `buffer_names` on type `Self@__init__` with custom `__setattr__` method. +torch/_functorch/make_functional.py:268:9: error[unresolved-attribute] Cannot assign object of type `dict[Unknown, Unknown]` to attribute `all_names_map` on type `Self@__init__` with custom `__setattr__` method. +torch/_functorch/make_functional.py:319:9: error[unresolved-attribute] Cannot assign object of type `tuple[str, ...]` to attribute `param_names` on type `Self@__init__` with custom `__setattr__` method. +torch/_functorch/make_functional.py:320:9: error[unresolved-attribute] Cannot assign object of type `dict[str, list[str]]` to attribute `names_map` on type `Self@__init__` with custom `__setattr__` method. +torch/_functorch/make_functional.py:484:9: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_functorch/make_functional.py:572:25: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_functorch/make_functional.py:610:25: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_functorch/make_functional.py:612:25: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_functorch/partitioners.py:156:17: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_functorch/partitioners.py:313:13: error[unresolved-attribute] Object of type `object` has no attribute `is_mutable` +torch/_functorch/partitioners.py:327:13: error[unresolved-attribute] Object of type `object` has no attribute `is_mutable` +torch/_functorch/partitioners.py:394:30: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_functorch/partitioners.py:397:36: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_functorch/partitioners.py:436:29: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_functorch/partitioners.py:440:35: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_functorch/partitioners.py:450:17: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_functorch/partitioners.py:458:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_functorch/partitioners.py:461:31: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_functorch/partitioners.py:533:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_functorch/partitioners.py:534:22: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_functorch/partitioners.py:547:22: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_functorch/partitioners.py:552:12: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_functorch/partitioners.py:558:12: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_functorch/partitioners.py:569:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_functorch/partitioners.py:570:18: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_functorch/partitioners.py:577:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_functorch/partitioners.py:585:12: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_functorch/partitioners.py:600:16: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_functorch/partitioners.py:661:16: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_functorch/partitioners.py:789:8: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_functorch/partitioners.py:843:8: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_functorch/partitioners.py:985:18: error[unresolved-attribute] Module `torch.fx` has no member `_lazy_graph_module` +torch/_functorch/partitioners.py:986:18: error[unresolved-attribute] Module `torch.fx` has no member `_lazy_graph_module` +torch/_functorch/partitioners.py:1187:16: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_functorch/partitioners.py:1248:28: error[invalid-assignment] Object of type `list[Node]` is not assignable to `OrderedSet[Node]` +torch/_functorch/partitioners.py:1285:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_functorch/partitioners.py:1325:36: error[unresolved-attribute] Module `torch` has no member `_prims` +torch/_functorch/partitioners.py:1406:21: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_functorch/partitioners.py:1411:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_functorch/partitioners.py:1427:16: error[unresolved-attribute] Module `torch` has no member `device` +torch/_functorch/partitioners.py:1429:47: error[unresolved-attribute] Module `torch` has no member `device` +torch/_functorch/partitioners.py:1448:17: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_functorch/partitioners.py:1455:24: error[unresolved-attribute] Module `torch` has no member `_prims` +torch/_functorch/partitioners.py:1456:26: error[unresolved-attribute] Module `torch` has no member `_prims` +torch/_functorch/partitioners.py:1477:21: error[unresolved-attribute] Module `torch` has no member `device` +torch/_functorch/partitioners.py:1484:18: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_functorch/partitioners.py:1732:16: error[unresolved-import] Cannot resolve imported module `networkx` +torch/_functorch/partitioners.py:2071:12: error[unresolved-import] Cannot resolve imported module `networkx` +torch/_functorch/partitioners.py:2072:12: error[unresolved-import] Cannot resolve imported module `pydot` +torch/_functorch/partitioners.py:2558:16: error[unresolved-import] Cannot resolve imported module `matplotlib.pyplot` +torch/_functorch/partitioners.py:2588:49: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/_functorch/partitioners.py:2589:36: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/_functorch/partitioners.py:2628:43: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/_functorch/partitioners.py:2631:13: warning[possibly-missing-attribute] Member `all_gather_object` may be missing on module `torch.distributed` +torch/_functorch/partitioners.py:2636:13: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/_functorch/partitioners.py:2637:13: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/_functorch/partitioners.py:2644:35: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/_functorch/partitioners.py:2646:13: warning[possibly-missing-attribute] Member `all_gather_object` may be missing on module `torch.distributed` +torch/_functorch/partitioners.py:2657:31: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/_functorch/partitioners.py:2662:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_functorch/partitioners.py:2664:24: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/_functorch/partitioners.py:2666:13: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/_functorch/partitioners.py:2667:40: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/_functorch/partitioners.py:2670:35: error[unresolved-attribute] Module `torch` has no member `argmin` +torch/_functorch/predispatch.py:17:5: error[unresolved-import] Module `torch._C._functorch` has no member `_remove_batch_dim` +torch/_functorch/pyfunctorch.py:102:15: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_functorch/pyfunctorch.py:278:19: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_functorch/pyfunctorch.py:284:11: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_functorch/pyfunctorch.py:296:12: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_functorch/pyfunctorch.py:314:23: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_functorch/vmap.py:225:66: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[Unknown]`, found `list[Unknown | int] | tuple[int, ...] | list[Any] | None` +torch/_functorch/vmap.py:349:16: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `list[Any] | None` +torch/_functorch/vmap.py:351:35: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[Any]`, found `list[Any] | None` +torch/_functorch/vmap.py:352:28: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_functorch/vmap.py:481:13: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_guards.py:279:40: error[unresolved-attribute] Module `torch._dynamo` has no member `guards` +torch/_guards.py:286:13: error[unresolved-attribute] Object of type `(GuardBuilderBase, Guard, /) -> Any` has no attribute `__code__` +torch/_guards.py:294:20: error[invalid-return-type] Return type does not match returned value: expected `(GuardBuilderBase, Guard, /) -> Any`, found `() -> object` +torch/_guards.py:333:78: error[unresolved-attribute] Object of type `(GuardBuilderBase, Guard, /) -> Any` has no attribute `__name__` +torch/_guards.py:347:43: error[unresolved-attribute] Object of type `(GuardBuilderBase, Guard, /) -> Any` has no attribute `__name__` +torch/_guards.py:377:16: error[unresolved-attribute] Object of type `(() -> object) | (((GuardBuilderBase, Guard, /) -> None) & ~Top[partial[Unknown]])` has no attribute `__name__` +torch/_higher_order_ops/aoti_call_delegate.py:57:32: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/aoti_call_delegate.py:58:32: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/aoti_call_delegate.py:59:32: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/aoti_call_delegate.py:60:32: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/aoti_call_delegate.py:63:29: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/associative_scan.py:10:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/associative_scan.py:58:15: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_higher_order_ops/associative_scan.py:59:19: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/_higher_order_ops/associative_scan.py:240:18: error[unresolved-attribute] Module `torch` has no member `movedim` +torch/_higher_order_ops/associative_scan.py:243:22: error[unresolved-attribute] Module `torch` has no member `flip` +torch/_higher_order_ops/associative_scan.py:295:40: error[unresolved-attribute] Module `torch` has no member `movedim` +torch/_higher_order_ops/associative_scan.py:384:13: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_higher_order_ops/associative_scan.py:673:35: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_include_set` +torch/_higher_order_ops/associative_scan.py:674:35: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_exclude_set` +torch/_higher_order_ops/associative_scan.py:676:14: error[unresolved-attribute] Module `torch._C` has no member `_AutoDispatchBelowAutograd` +torch/_higher_order_ops/associative_scan.py:742:32: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/_higher_order_ops/associative_scan.py:756:29: error[unresolved-attribute] Module `torch` has no member `tril` +torch/_higher_order_ops/associative_scan.py:757:21: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_higher_order_ops/associative_scan.py:758:77: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_higher_order_ops/associative_scan.py:789:13: error[unresolved-attribute] Module `torch` has no member `select` +torch/_higher_order_ops/associative_scan.py:807:31: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_higher_order_ops/associative_scan.py:808:31: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_higher_order_ops/associative_scan.py:809:32: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_higher_order_ops/associative_scan.py:909:9: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_higher_order_ops/auto_functionalize.py:12:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/auto_functionalize.py:32:32: error[unresolved-attribute] Module `torch` has no member `FunctionSchema` +torch/_higher_order_ops/auto_functionalize.py:54:8: error[unresolved-attribute] Module `torch` has no member `is_inference_mode_enabled` +torch/_higher_order_ops/auto_functionalize.py:84:16: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/_higher_order_ops/auto_functionalize.py:173:29: error[unresolved-attribute] Module `torch` has no member `Type` +torch/_higher_order_ops/auto_functionalize.py:251:29: error[unresolved-attribute] Module `torch` has no member `Type` +torch/_higher_order_ops/auto_functionalize.py:428:14: warning[possibly-missing-attribute] Attribute `_schema` may be missing on object of type `OperatorBase | HopInstance` +torch/_higher_order_ops/auto_functionalize.py:431:14: warning[possibly-missing-attribute] Attribute `_schema` may be missing on object of type `OperatorBase | HopInstance` +torch/_higher_order_ops/auto_functionalize.py:444:72: error[unresolved-attribute] Module `torch` has no member `NoneType` +torch/_higher_order_ops/auto_functionalize.py:450:61: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_higher_order_ops/auto_functionalize.py:454:12: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_higher_order_ops/auto_functionalize.py:460:13: error[unresolved-attribute] Module `torch` has no member `FunctionSchema` +torch/_higher_order_ops/auto_functionalize.py:461:28: error[unresolved-attribute] Module `torch` has no member `Type` +torch/_higher_order_ops/auto_functionalize.py:480:63: error[unresolved-attribute] Module `torch` has no member `Type` +torch/_higher_order_ops/auto_functionalize.py:485:12: error[unresolved-attribute] Module `torch._subclasses` has no member `functional_tensor` +torch/_higher_order_ops/auto_functionalize.py:599:12: error[unresolved-attribute] Module `torch._subclasses` has no member `functional_tensor` +torch/_higher_order_ops/auto_functionalize.py:614:10: error[invalid-assignment] Object of type `Unknown | HigherOrderOperator | (OpOverload[Unknown, Any] & ~HopInstance)` is not assignable to `OpOverload[Unknown, Any] | HopInstance` +torch/_higher_order_ops/auto_functionalize.py:854:17: error[unresolved-attribute] Module `torch._C` has no member `FunctionSchema` +torch/_higher_order_ops/base_hop.py:7:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/base_hop.py:226:14: error[unresolved-attribute] Module `torch._C` has no member `_AutoDispatchBelowAutograd` +torch/_higher_order_ops/cond.py:12:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/cond.py:247:15: error[unresolved-attribute] Module `torch._dynamo` has no member `exc` +torch/_higher_order_ops/cond.py:308:35: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_include_set` +torch/_higher_order_ops/cond.py:309:35: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_exclude_set` +torch/_higher_order_ops/cond.py:312:14: error[unresolved-attribute] Module `torch._C` has no member `_AutoDispatchBelowAutograd` +torch/_higher_order_ops/cond.py:442:17: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_higher_order_ops/cond.py:567:20: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_higher_order_ops/cond.py:568:20: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_higher_order_ops/cond.py:654:16: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_higher_order_ops/cond.py:680:18: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_higher_order_ops/cond.py:708:20: error[unresolved-attribute] Module `torch` has no member `where` +torch/_higher_order_ops/effects.py:6:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/effects.py:24:6: error[unresolved-attribute] Module `torch._library` has no member `custom_ops` +torch/_higher_order_ops/effects.py:35:16: error[invalid-return-type] Return type does not match returned value: expected `str`, found `object` +torch/_higher_order_ops/effects.py:50:13: error[unresolved-attribute] Module `torch._library` has no member `simple_registry` +torch/_higher_order_ops/effects.py:57:13: error[unresolved-attribute] Module `torch._library` has no member `simple_registry` +torch/_higher_order_ops/effects.py:130:12: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_higher_order_ops/effects.py:201:61: error[unresolved-attribute] Module `torch` has no member `FunctionSchema` +torch/_higher_order_ops/effects.py:243:29: error[unresolved-attribute] Module `torch._C` has no member `_get_dispatch_mode` +torch/_higher_order_ops/effects.py:244:13: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_higher_order_ops/effects.py:299:29: error[invalid-argument-type] Argument to bound method `wrap_tensors` is incorrect: Expected `tuple[Any]`, found `list[Any] | None | Any` +torch/_higher_order_ops/executorch_call_delegate.py:37:38: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/executorch_call_delegate.py:38:38: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/executorch_call_delegate.py:39:38: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/executorch_call_delegate.py:40:38: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/executorch_call_delegate.py:76:35: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/executorch_call_delegate.py:102:10: error[unresolved-attribute] Module `torch._C` has no member `_ExcludeDispatchKeyGuard` +torch/_higher_order_ops/executorch_call_delegate.py:103:9: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_higher_order_ops/executorch_call_delegate.py:103:33: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/executorch_call_delegate.py:116:24: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/_higher_order_ops/executorch_call_delegate.py:116:56: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/_higher_order_ops/flex_attention.py:8:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/flex_attention.py:172:25: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_higher_order_ops/flex_attention.py:172:57: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_higher_order_ops/flex_attention.py:172:76: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_higher_order_ops/flex_attention.py:176:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_higher_order_ops/flex_attention.py:177:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_higher_order_ops/flex_attention.py:178:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_higher_order_ops/flex_attention.py:179:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_higher_order_ops/flex_attention.py:193:27: error[unresolved-attribute] Module `torch` has no member `where` +torch/_higher_order_ops/flex_attention.py:196:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_higher_order_ops/flex_attention.py:228:13: error[unresolved-attribute] Module `torch` has no member `repeat_interleave` +torch/_higher_order_ops/flex_attention.py:229:11: error[unresolved-attribute] Module `torch` has no member `repeat_interleave` +torch/_higher_order_ops/flex_attention.py:252:19: error[unresolved-attribute] Module `torch` has no member `all` +torch/_higher_order_ops/flex_attention.py:253:17: error[unresolved-attribute] Module `torch` has no member `where` +torch/_higher_order_ops/flex_attention.py:256:18: error[unresolved-attribute] Module `torch` has no member `max` +torch/_higher_order_ops/flex_attention.py:258:23: error[unresolved-attribute] Module `torch` has no member `_safe_softmax` +torch/_higher_order_ops/flex_attention.py:329:35: error[unresolved-attribute] Module `torch` has no member `int` +torch/_higher_order_ops/flex_attention.py:331:52: error[unresolved-attribute] Module `torch` has no member `int` +torch/_higher_order_ops/flex_attention.py:358:34: warning[possibly-missing-attribute] Attribute `unwrap_proxy` may be missing on object of type `(Unknown & Tracer) | PythonKeyTracer | (_GraphAppendingTracerEx & Tracer)` +torch/_higher_order_ops/flex_attention.py:359:10: error[unresolved-attribute] Module `torch.fx.experimental` has no member `proxy_tensor` +torch/_higher_order_ops/flex_attention.py:402:10: error[unresolved-attribute] Module `torch._subclasses` has no member `functional_tensor` +torch/_higher_order_ops/flex_attention.py:454:48: error[unresolved-attribute] Module `torch` has no member `int` +torch/_higher_order_ops/flex_attention.py:516:73: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_higher_order_ops/flex_attention.py:517:74: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_higher_order_ops/flex_attention.py:561:28: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_higher_order_ops/flex_attention.py:658:14: error[unresolved-attribute] Module `torch._C` has no member `_AutoDispatchBelowAutograd` +torch/_higher_order_ops/flex_attention.py:789:12: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_higher_order_ops/flex_attention.py:797:43: error[unresolved-attribute] Module `torch` has no member `int` +torch/_higher_order_ops/flex_attention.py:798:43: error[unresolved-attribute] Module `torch` has no member `int` +torch/_higher_order_ops/flex_attention.py:799:43: error[unresolved-attribute] Module `torch` has no member `int` +torch/_higher_order_ops/flex_attention.py:800:43: error[unresolved-attribute] Module `torch` has no member `int` +torch/_higher_order_ops/flex_attention.py:864:17: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_higher_order_ops/flex_attention.py:864:56: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_higher_order_ops/flex_attention.py:882:11: error[unresolved-attribute] Module `torch` has no member `repeat_interleave` +torch/_higher_order_ops/flex_attention.py:883:13: error[unresolved-attribute] Module `torch` has no member `repeat_interleave` +torch/_higher_order_ops/flex_attention.py:901:22: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_higher_order_ops/flex_attention.py:902:22: error[unresolved-attribute] Module `torch` has no member `where` +torch/_higher_order_ops/flex_attention.py:910:18: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_higher_order_ops/flex_attention.py:919:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_higher_order_ops/flex_attention.py:920:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_higher_order_ops/flex_attention.py:921:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_higher_order_ops/flex_attention.py:922:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_higher_order_ops/flex_attention.py:950:23: error[unresolved-attribute] Module `torch` has no member `where` +torch/_higher_order_ops/flex_attention.py:951:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_higher_order_ops/flex_attention.py:965:16: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_higher_order_ops/flex_attention.py:966:18: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_higher_order_ops/flex_attention.py:978:27: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_higher_order_ops/flex_attention.py:979:29: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_higher_order_ops/flex_attention.py:1037:35: error[unresolved-attribute] Module `torch` has no member `int` +torch/_higher_order_ops/flex_attention.py:1040:52: error[unresolved-attribute] Module `torch` has no member `int` +torch/_higher_order_ops/flex_attention.py:1080:34: warning[possibly-missing-attribute] Attribute `unwrap_proxy` may be missing on object of type `(Unknown & Tracer) | PythonKeyTracer | (_GraphAppendingTracerEx & Tracer)` +torch/_higher_order_ops/flex_attention.py:1118:10: error[unresolved-attribute] Module `torch.fx.experimental` has no member `proxy_tensor` +torch/_higher_order_ops/flex_attention.py:1142:10: error[unresolved-attribute] Module `torch._subclasses` has no member `functional_tensor` +torch/_higher_order_ops/flex_attention.py:1277:18: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_higher_order_ops/flex_attention.py:1281:13: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_higher_order_ops/flex_attention.py:1281:52: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_higher_order_ops/flex_attention.py:1295:20: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_higher_order_ops/flex_attention.py:1296:22: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_higher_order_ops/hints_wrap.py:4:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/invoke_subgraph.py:10:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/invoke_subgraph.py:81:61: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_higher_order_ops/invoke_subgraph.py:187:23: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_higher_order_ops/invoke_subgraph.py:410:18: error[unresolved-attribute] Module `torch.fx` has no member `traceback` +torch/_higher_order_ops/invoke_subgraph.py:443:21: error[unresolved-attribute] Module `torch._C` has no member `_ForceDispatchKeyGuard` +torch/_higher_order_ops/invoke_subgraph.py:474:35: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_include_set` +torch/_higher_order_ops/invoke_subgraph.py:475:35: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_exclude_set` +torch/_higher_order_ops/invoke_subgraph.py:479:14: error[unresolved-attribute] Module `torch._C` has no member `_AutoDispatchBelowAutograd` +torch/_higher_order_ops/invoke_subgraph.py:536:28: error[invalid-assignment] Object of type `tuple[object, ...]` is not assignable to `list[object]` +torch/_higher_order_ops/local_map.py:16:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/local_map.py:59:16: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_higher_order_ops/local_map.py:124:9: error[unresolved-attribute] Module `torch.distributed` has no member `tensor` +torch/_higher_order_ops/local_map.py:135:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[Tensor, int, SymInt, None]`, found `tuple[@Todo, @Todo]` +torch/_higher_order_ops/local_map.py:140:13: error[unresolved-attribute] Module `torch.distributed` has no member `tensor` +torch/_higher_order_ops/local_map.py:156:9: error[unresolved-attribute] Module `torch.distributed` has no member `tensor` +torch/_higher_order_ops/local_map.py:158:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[Tensor, int, SymInt, None]`, found `tuple[@Todo, @Todo]` +torch/_higher_order_ops/local_map.py:172:9: error[unresolved-attribute] Module `torch.distributed` has no member `tensor` +torch/_higher_order_ops/local_map.py:407:14: error[unresolved-attribute] Module `torch._C` has no member `_AutoDispatchBelowAutograd` +torch/_higher_order_ops/local_map.py:434:14: error[unresolved-attribute] Module `torch._C` has no member `_AutoDispatchBelowAutograd` +torch/_higher_order_ops/local_map.py:454:24: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/map.py:9:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/map.py:136:35: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_include_set` +torch/_higher_order_ops/map.py:137:35: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_exclude_set` +torch/_higher_order_ops/map.py:139:14: error[unresolved-attribute] Module `torch._C` has no member `_AutoDispatchBelowAutograd` +torch/_higher_order_ops/out_dtype.py:5:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/out_dtype.py:59:56: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_higher_order_ops/out_dtype.py:101:62: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_higher_order_ops/out_dtype.py:103:16: error[unresolved-attribute] Module `torch` has no member `_int_mm` +torch/_higher_order_ops/out_dtype.py:110:29: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_higher_order_ops/out_dtype.py:112:30: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_higher_order_ops/out_dtype.py:113:30: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_higher_order_ops/out_dtype.py:120:52: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_higher_order_ops/out_dtype.py:121:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_higher_order_ops/out_dtype.py:140:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_higher_order_ops/out_dtype.py:150:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_higher_order_ops/partitioner.py:318:27: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_higher_order_ops/print.py:28:64: error[unresolved-attribute] Module `torch` has no member `FunctionSchema` +torch/_higher_order_ops/print.py:61:16: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/print.py:79:19: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/print.py:80:19: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/run_const_graph.py:4:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/scan.py:12:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/scan.py:69:30: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_higher_order_ops/scan.py:191:26: error[unresolved-attribute] Module `torch` has no member `movedim` +torch/_higher_order_ops/scan.py:194:22: error[unresolved-attribute] Module `torch` has no member `flip` +torch/_higher_order_ops/scan.py:321:13: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_higher_order_ops/scan.py:329:13: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/_higher_order_ops/scan.py:329:38: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_higher_order_ops/scan.py:467:14: error[unresolved-attribute] Module `torch._C` has no member `_AutoDispatchBelowAutograd` +torch/_higher_order_ops/scan.py:683:13: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_higher_order_ops/scan.py:773:14: error[unresolved-attribute] Module `torch` has no member `flip` +torch/_higher_order_ops/scan.py:869:18: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_higher_order_ops/scan.py:959:9: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_higher_order_ops/schema.py:53:14: error[unresolved-attribute] Module `torch._C` has no member `IntType` +torch/_higher_order_ops/schema.py:54:16: error[unresolved-attribute] Module `torch._C` has no member `FloatType` +torch/_higher_order_ops/schema.py:55:14: error[unresolved-attribute] Module `torch._C` has no member `StringType` +torch/_higher_order_ops/schema.py:56:15: error[unresolved-attribute] Module `torch._C` has no member `BoolType` +torch/_higher_order_ops/schema.py:65:20: error[unresolved-attribute] Module `torch._C` has no member `AnyType` +torch/_higher_order_ops/schema.py:67:20: error[unresolved-attribute] Module `torch._C` has no member `SymIntType` +torch/_higher_order_ops/schema.py:69:20: error[unresolved-attribute] Module `torch._C` has no member `SymBoolType` +torch/_higher_order_ops/schema.py:70:16: error[unresolved-attribute] Module `torch._C` has no member `_jit_try_infer_type` +torch/_higher_order_ops/schema.py:80:20: error[unresolved-attribute] Module `torch._C` has no member `Argument` +torch/_higher_order_ops/schema.py:84:16: error[unresolved-attribute] Module `torch._C` has no member `Argument` +torch/_higher_order_ops/schema.py:146:29: error[unresolved-attribute] Module `torch._C` has no member `FunctionSchema` +torch/_higher_order_ops/schema.py:247:17: error[unresolved-attribute] Module `torch._C` has no member `FunctionSchema` +torch/_higher_order_ops/schema.py:252:25: error[unresolved-attribute] Module `torch._C` has no member `Argument` +torch/_higher_order_ops/schema.py:253:23: error[unresolved-attribute] Module `torch._C` has no member `Argument` +torch/_higher_order_ops/schema.py:286:11: error[unresolved-attribute] Module `torch._C` has no member `FunctionSchema` +torch/_higher_order_ops/strict_mode.py:7:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/torchbind.py:6:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/torchbind.py:37:32: error[unresolved-attribute] Module `torch` has no member `FunctionSchema` +torch/_higher_order_ops/torchbind.py:41:32: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_higher_order_ops/torchbind.py:51:22: error[unresolved-attribute] Module `torch._C` has no member `parse_schema` +torch/_higher_order_ops/torchbind.py:64:27: error[unresolved-attribute] Module `torch` has no member `ScriptMethod` +torch/_higher_order_ops/torchbind.py:80:28: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_higher_order_ops/torchbind.py:84:37: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_higher_order_ops/torchbind.py:92:24: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_higher_order_ops/torchbind.py:114:24: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_higher_order_ops/triton_kernel_wrap.py:20:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/triton_kernel_wrap.py:36:10: error[unresolved-import] Cannot resolve imported module `triton._C.libtriton.ir` +torch/_higher_order_ops/triton_kernel_wrap.py:54:14: error[unresolved-import] Cannot resolve imported module `triton.runtime.autotuner` +torch/_higher_order_ops/triton_kernel_wrap.py:55:14: error[unresolved-import] Cannot resolve imported module `triton.runtime.jit` +torch/_higher_order_ops/triton_kernel_wrap.py:240:12: error[unresolved-import] Cannot resolve imported module `triton` +torch/_higher_order_ops/triton_kernel_wrap.py:241:12: error[unresolved-import] Cannot resolve imported module `triton.runtime.jit` +torch/_higher_order_ops/triton_kernel_wrap.py:242:10: error[unresolved-import] Cannot resolve imported module `triton.compiler.compiler` +torch/_higher_order_ops/triton_kernel_wrap.py:243:10: error[unresolved-import] Cannot resolve imported module `triton.runtime.autotuner` +torch/_higher_order_ops/triton_kernel_wrap.py:244:10: error[unresolved-import] Cannot resolve imported module `triton.runtime.jit` +torch/_higher_order_ops/triton_kernel_wrap.py:297:17: error[invalid-argument-type] Argument to function `maybe_unpack_tma_stable_metadata` is incorrect: Expected `tuple[str, tuple[list[int | SymInt], list[int | SymInt], int | SymInt]] | tuple[str, tuple[list[int | SymInt]]]`, found `tuple[str, tuple[list[int | SymInt], list[int | SymInt], int | SymInt]] | tuple[str, tuple[list[int | SymInt]]] | None` +torch/_higher_order_ops/triton_kernel_wrap.py:300:18: error[unresolved-import] Cannot resolve imported module `triton.tools.tensor_descriptor` +torch/_higher_order_ops/triton_kernel_wrap.py:303:18: error[unresolved-attribute] Module `torch._C` has no member `_DisableTorchDispatch` +torch/_higher_order_ops/triton_kernel_wrap.py:306:31: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_higher_order_ops/triton_kernel_wrap.py:312:18: error[unresolved-attribute] Module `torch._C` has no member `_DisableTorchDispatch` +torch/_higher_order_ops/triton_kernel_wrap.py:313:38: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_higher_order_ops/triton_kernel_wrap.py:319:18: error[unresolved-import] Cannot resolve imported module `triton.tools.tensor_descriptor` +torch/_higher_order_ops/triton_kernel_wrap.py:369:18: error[unresolved-import] Cannot resolve imported module `triton.backends.compiler` +torch/_higher_order_ops/triton_kernel_wrap.py:397:22: error[unresolved-import] Cannot resolve imported module `triton.backends` +torch/_higher_order_ops/triton_kernel_wrap.py:398:22: error[unresolved-import] Cannot resolve imported module `triton.runtime.jit` +torch/_higher_order_ops/triton_kernel_wrap.py:412:22: error[unresolved-import] Cannot resolve imported module `triton.runtime.jit` +torch/_higher_order_ops/triton_kernel_wrap.py:419:18: error[unresolved-import] Cannot resolve imported module `triton._utils` +torch/_higher_order_ops/triton_kernel_wrap.py:434:37: error[non-subscriptable] Cannot subscript object of type `(...) -> Unknown` with no `__getitem__` method +torch/_higher_order_ops/triton_kernel_wrap.py:790:13: error[invalid-assignment] Invalid subscript assignment with key of type `tuple[str, @Todo]` and value of type `None` on object of type `dict[tuple[Any], Any]` +torch/_higher_order_ops/triton_kernel_wrap.py:791:13: error[invalid-assignment] Invalid subscript assignment with key of type `tuple[str, @Todo]` and value of type `Any` on object of type `dict[tuple[Any], Any]` +torch/_higher_order_ops/triton_kernel_wrap.py:792:12: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[tuple[Any], Any].__getitem__(key: tuple[Any], /) -> Any` cannot be called with key of type `tuple[str, @Todo]` on object of type `dict[tuple[Any], Any]` +torch/_higher_order_ops/triton_kernel_wrap.py:794:16: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[tuple[Any], Any].__getitem__(key: tuple[Any], /) -> Any` cannot be called with key of type `tuple[str, @Todo]` on object of type `dict[tuple[Any], Any]` +torch/_higher_order_ops/triton_kernel_wrap.py:973:16: warning[possibly-missing-attribute] Attribute `fn` may be missing on object of type `Unknown | Autotuner | JITFunction` +torch/_higher_order_ops/triton_kernel_wrap.py:1077:13: warning[possibly-missing-attribute] Attribute `fn` may be missing on object of type `Unknown | Autotuner | JITFunction` +torch/_higher_order_ops/triton_kernel_wrap.py:1079:13: warning[possibly-missing-attribute] Attribute `configs` may be missing on object of type `Unknown | Autotuner | JITFunction` +torch/_higher_order_ops/triton_kernel_wrap.py:1080:13: error[invalid-argument-type] Argument to function `user_defined_kernel_grid_fn_code` is incorrect: Expected `list[tuple[int | Expr, ...] | ((dict[str, int], /) -> tuple[int, ...])]`, found `list[tuple[int | Expr | SymInt, ...] | ((dict[str, int], /) -> tuple[int, ...])]` +torch/_higher_order_ops/triton_kernel_wrap.py:1095:22: error[unresolved-import] Cannot resolve imported module `triton.tools.experimental_descriptor` +torch/_higher_order_ops/triton_kernel_wrap.py:1115:22: error[unresolved-import] Cannot resolve imported module `triton.tools.tensor_descriptor` +torch/_higher_order_ops/triton_kernel_wrap.py:1131:17: warning[possibly-missing-attribute] Attribute `arg_names` may be missing on object of type `Unknown | Autotuner | JITFunction` +torch/_higher_order_ops/triton_kernel_wrap.py:1140:5: error[non-subscriptable] Cannot subscript object of type `Autotuner` with no `__getitem__` method +torch/_higher_order_ops/triton_kernel_wrap.py:1140:5: error[non-subscriptable] Cannot subscript object of type `JITFunction` with no `__getitem__` method +torch/_higher_order_ops/triton_kernel_wrap.py:1186:14: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +torch/_higher_order_ops/triton_kernel_wrap.py:1536:14: error[unresolved-import] Cannot resolve imported module `triton.runtime.autotuner` +torch/_higher_order_ops/triton_kernel_wrap.py:1546:9: error[invalid-assignment] Object of type `tuple[int | Expr | SymInt, ...] | ((dict[str, int], /) -> tuple[int, ...]) | None` is not assignable to attribute `grid` on type `TraceableTritonKernelWrapper | TritonKernelVariable` +torch/_higher_order_ops/triton_kernel_wrap.py:1569:21: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_higher_order_ops/triton_kernel_wrap.py:1580:21: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_higher_order_ops/triton_kernel_wrap.py:1650:14: error[unresolved-import] Cannot resolve imported module `triton` +torch/_higher_order_ops/triton_kernel_wrap.py:1651:14: error[unresolved-import] Cannot resolve imported module `triton.runtime.autotuner` +torch/_higher_order_ops/triton_kernel_wrap.py:1887:41: warning[possibly-missing-attribute] Attribute `arg_names` may be missing on object of type `Unknown | Autotuner | JITFunction` +torch/_higher_order_ops/triton_kernel_wrap.py:2014:33: error[unresolved-attribute] Module `collections` has no member `abc` +torch/_higher_order_ops/triton_kernel_wrap.py:2097:20: warning[possibly-missing-attribute] Attribute `run` may be missing on object of type `(Unknown & ~None) | Autotuner | JITFunction` +torch/_higher_order_ops/triton_kernel_wrap.py:2109:20: error[non-subscriptable] Cannot subscript object of type `Autotuner` with no `__getitem__` method +torch/_higher_order_ops/triton_kernel_wrap.py:2109:20: error[non-subscriptable] Cannot subscript object of type `JITFunction` with no `__getitem__` method +torch/_higher_order_ops/utils.py:52:10: error[unresolved-attribute] Module `torch._C` has no member `_AutoDispatchBelowAutograd` +torch/_higher_order_ops/utils.py:55:12: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_higher_order_ops/utils.py:59:26: error[unresolved-attribute] Module `torch._C` has no member `_functions` +torch/_higher_order_ops/utils.py:65:24: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/_higher_order_ops/utils.py:65:59: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/_higher_order_ops/utils.py:206:19: error[unresolved-attribute] Module `torch._dynamo` has no member `exc` +torch/_higher_order_ops/utils.py:223:15: error[unresolved-attribute] Module `torch._dynamo` has no member `exc` +torch/_higher_order_ops/utils.py:274:9: error[invalid-assignment] Object of type `Literal[True]` is not assignable to attribute `allow_empty_graphs` of type `Literal[False]` +torch/_higher_order_ops/utils.py:394:24: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_higher_order_ops/utils.py:396:26: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_higher_order_ops/utils.py:399:31: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_higher_order_ops/utils.py:401:30: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_higher_order_ops/utils.py:402:35: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_higher_order_ops/utils.py:458:23: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_higher_order_ops/utils.py:459:20: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_higher_order_ops/utils.py:473:18: error[unresolved-attribute] Module `torch` has no member `_is_functional_tensor` +torch/_higher_order_ops/utils.py:478:34: error[unresolved-attribute] Module `torch` has no member `_from_functional_tensor` +torch/_higher_order_ops/utils.py:528:16: error[unresolved-attribute] Module `torch` has no member `_is_functional_tensor` +torch/_higher_order_ops/utils.py:529:21: error[unresolved-attribute] Module `torch` has no member `_from_functional_tensor` +torch/_higher_order_ops/utils.py:555:17: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_higher_order_ops/utils.py:688:32: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_higher_order_ops/utils.py:802:47: error[unresolved-import] Module `torch._higher_order_ops.utils` has no member `prepare_fw_with_masks_all_requires_grad` +torch/_higher_order_ops/utils.py:828:13: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_higher_order_ops/utils.py:858:12: error[unresolved-attribute] Module `torch` has no member `select_copy` +torch/_higher_order_ops/utils.py:1144:31: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_higher_order_ops/utils.py:1145:31: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_higher_order_ops/utils.py:1149:27: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_include_set` +torch/_higher_order_ops/utils.py:1151:27: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_exclude_set` +torch/_higher_order_ops/utils.py:1161:21: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_higher_order_ops/utils.py:1164:21: error[unresolved-attribute] Module `torch._C` has no member `_ForceDispatchKeyGuard` +torch/_higher_order_ops/utils.py:1194:31: error[unresolved-attribute] Module `torch._C` has no member `FunctionSchema` +torch/_higher_order_ops/while_loop.py:9:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/while_loop.py:269:32: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_higher_order_ops/while_loop.py:270:31: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_higher_order_ops/while_loop.py:320:25: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_higher_order_ops/while_loop.py:341:17: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_higher_order_ops/while_loop.py:716:14: error[unresolved-attribute] Module `torch._C` has no member `_AutoDispatchBelowAutograd` +torch/_higher_order_ops/while_loop.py:756:35: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_include_set` +torch/_higher_order_ops/while_loop.py:757:35: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_exclude_set` +torch/_higher_order_ops/while_loop.py:783:20: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_higher_order_ops/while_loop.py:783:42: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_higher_order_ops/while_loop.py:786:13: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_higher_order_ops/while_loop.py:796:13: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_higher_order_ops/while_loop.py:887:17: error[invalid-argument-type] Argument to bound method `__call__` is incorrect: Expected `tuple[Tensor | int | float]`, found `tuple[Unknown, @Todo, @Todo]` +torch/_higher_order_ops/wrap.py:9:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_higher_order_ops/wrap.py:88:20: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_higher_order_ops/wrap.py:291:28: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_inductor/__init__.py:212:38: error[invalid-argument-type] Argument to function `package_aoti` is incorrect: Expected `list[str | Weights] | dict[str, list[str | Weights]]`, found `list[str | Weights] | (GraphModule & Top[list[Unknown]])` +torch/_inductor/analysis/device_info.py:22:22: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/analysis/device_info.py:34:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/analysis/device_info.py:35:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/analysis/device_info.py:37:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/analysis/device_info.py:38:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/analysis/device_info.py:39:13: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/analysis/device_info.py:40:13: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/analysis/device_info.py:41:13: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/_inductor/analysis/device_info.py:42:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_inductor/analysis/device_info.py:43:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/_inductor/analysis/device_info.py:44:13: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/analysis/device_info.py:45:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/analysis/device_info.py:55:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/analysis/device_info.py:56:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/analysis/device_info.py:57:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/analysis/device_info.py:58:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/analysis/device_info.py:60:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/analysis/device_info.py:71:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/analysis/device_info.py:72:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/analysis/device_info.py:74:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/analysis/device_info.py:75:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/analysis/device_info.py:76:13: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/analysis/device_info.py:77:13: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/analysis/device_info.py:78:13: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/_inductor/analysis/device_info.py:79:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_inductor/analysis/device_info.py:80:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/_inductor/analysis/device_info.py:81:13: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/analysis/device_info.py:82:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/analysis/device_info.py:92:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/analysis/device_info.py:93:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/analysis/device_info.py:96:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/analysis/device_info.py:97:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/analysis/device_info.py:98:13: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/analysis/device_info.py:99:13: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/analysis/device_info.py:100:13: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/_inductor/analysis/device_info.py:101:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_inductor/analysis/device_info.py:102:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/_inductor/analysis/device_info.py:103:13: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/analysis/device_info.py:104:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/analysis/device_info.py:114:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/analysis/device_info.py:115:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/analysis/device_info.py:117:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/analysis/device_info.py:118:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/analysis/device_info.py:119:13: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/analysis/device_info.py:120:13: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/analysis/device_info.py:121:13: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/_inductor/analysis/device_info.py:122:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_inductor/analysis/device_info.py:123:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/_inductor/analysis/device_info.py:124:13: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/analysis/device_info.py:125:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/analysis/device_info.py:135:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/analysis/device_info.py:136:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/analysis/device_info.py:138:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/analysis/device_info.py:139:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/analysis/device_info.py:140:13: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/analysis/device_info.py:141:13: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/analysis/device_info.py:142:13: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/_inductor/analysis/device_info.py:143:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_inductor/analysis/device_info.py:144:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/_inductor/analysis/device_info.py:145:13: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/analysis/device_info.py:146:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/analysis/device_info.py:156:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/analysis/device_info.py:157:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/analysis/device_info.py:160:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/analysis/device_info.py:161:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/analysis/device_info.py:163:13: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/analysis/device_info.py:164:13: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/analysis/device_info.py:165:13: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/_inductor/analysis/device_info.py:166:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_inductor/analysis/device_info.py:167:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/_inductor/analysis/device_info.py:168:13: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/analysis/device_info.py:169:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/analysis/device_info.py:192:27: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/analysis/device_info.py:215:34: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/analysis/profile_analysis.py:54:16: warning[unresolved-global] Invalid global declaration of `_adapters_map`: `_adapters_map` has no declarations or bindings in the global scope +torch/_inductor/analysis/profile_analysis.py:358:14: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/analysis/profile_analysis.py:359:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/analysis/profile_analysis.py:360:12: error[unresolved-attribute] Module `torch` has no member `int` +torch/_inductor/analysis/profile_analysis.py:361:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/analysis/profile_analysis.py:362:14: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_inductor/analysis/profile_analysis.py:363:14: error[unresolved-attribute] Module `torch` has no member `int` +torch/_inductor/analysis/profile_analysis.py:364:13: error[unresolved-attribute] Module `torch` has no member `long` +torch/_inductor/analysis/profile_analysis.py:365:17: error[unresolved-attribute] Module `torch` has no member `long` +torch/_inductor/analysis/profile_analysis.py:366:17: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/analysis/profile_analysis.py:367:16: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/analysis/profile_analysis.py:368:16: error[unresolved-attribute] Module `torch` has no member `double` +torch/_inductor/analysis/profile_analysis.py:406:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/analysis/profile_analysis.py:418:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/analysis/profile_analysis.py:426:64: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/analysis/profile_analysis.py:440:24: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/analysis/profile_analysis.py:442:24: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/analyze_preserves_zero_mask.py:20:41: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/analyze_preserves_zero_mask.py:51:51: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/analyze_preserves_zero_mask.py:79:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/analyze_preserves_zero_mask.py:117:35: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/analyze_preserves_zero_mask.py:131:31: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/analyze_preserves_zero_mask.py:131:46: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/analyze_preserves_zero_mask.py:139:27: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/aoti_eager.py:85:57: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/aoti_eager.py:86:18: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/aoti_eager.py:86:38: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/aoti_eager.py:86:57: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/aoti_eager.py:108:36: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_keys` +torch/_inductor/aoti_eager.py:146:35: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/aoti_eager.py:147:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/aoti_eager.py:153:36: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/aoti_eager.py:154:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/aoti_eager.py:161:36: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_inductor/aoti_eager.py:162:30: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_inductor/aoti_eager.py:195:17: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/aoti_eager.py:196:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/aoti_eager.py:197:17: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_inductor/aoti_eager.py:253:40: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/aoti_eager.py:255:40: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/aoti_eager.py:257:40: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_inductor/async_compile.py:285:13: error[unresolved-attribute] Module `multiprocessing` has no member `util` +torch/_inductor/async_compile.py:375:17: error[unresolved-attribute] Module `torch._inductor` has no member `codecache` +torch/_inductor/async_compile.py:381:22: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/async_compile.py:585:25: error[unresolved-attribute] Module `torch._inductor` has no member `codecache` +torch/_inductor/async_compile.py:586:19: error[unresolved-attribute] Module `torch._inductor` has no member `codecache` +torch/_inductor/async_compile.py:621:25: error[unresolved-attribute] Module `torch._inductor` has no member `codecache` +torch/_inductor/async_compile.py:622:19: error[unresolved-attribute] Module `torch._inductor` has no member `codecache` +torch/_inductor/augmented_graph_helper.py:94:16: error[unresolved-attribute] Module `torch._dynamo` has no member `graph_deduplication` +torch/_inductor/autoheuristic/autoheuristic_utils.py:336:55: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/autoheuristic/autoheuristic_utils.py:338:17: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/autotune_process.py:362:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/autotune_process.py:363:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/autotune_process.py:364:12: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/_inductor/autotune_process.py:365:14: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/_inductor/autotune_process.py:654:13: error[unresolved-attribute] Module `torch._inductor` has no member `runtime` +torch/_inductor/autotune_process.py:751:30: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_inductor/autotune_process.py:753:23: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/await_utils.py:25:14: error[unresolved-attribute] Module `asyncio` has no member `futures` +torch/_inductor/await_utils.py:62:28: error[unresolved-attribute] Module `asyncio` has no member `events` +torch/_inductor/await_utils.py:63:9: error[unresolved-attribute] Module `asyncio` has no member `events` +torch/_inductor/await_utils.py:67:13: error[unresolved-attribute] Module `asyncio` has no member `events` +torch/_inductor/bounds.py:185:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/bounds.py:186:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/bounds.py:193:44: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/bounds.py:200:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/bounds.py:201:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/bounds.py:206:21: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/bounds.py:214:24: error[no-matching-overload] No overload of bound method `__init__` matches arguments +torch/_inductor/bounds.py:216:33: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/choices.py:38:10: error[unresolved-import] Cannot resolve imported module `triton` +torch/_inductor/choices.py:95:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/choices.py:101:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/choices.py:107:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/choices.py:352:34: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/_inductor/choices.py:391:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/choices.py:608:16: error[invalid-return-type] Return type does not match returned value: expected `Sortable`, found `tuple[int, bool, int, Unknown]` +torch/_inductor/codegen/common.py:183:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/common.py:186:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:186:26: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/common.py:224:29: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/common.py:229:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:242:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr] | None`, found `list[Unknown | int]` +torch/_inductor/codegen/common.py:285:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:310:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:448:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/common.py:453:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/common.py:458:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/common.py:466:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/common.py:578:23: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/_inductor/codegen/common.py:610:77: error[invalid-argument-type] Argument to function `contiguous_strides` is incorrect: Expected `Sequence[int]`, found `Sequence[Expr]` +torch/_inductor/codegen/common.py:631:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:631:47: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:632:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/common.py:632:21: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/common.py:633:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/common.py:633:20: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/common.py:637:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/common.py:638:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/common.py:639:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/codegen/common.py:640:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/common.py:641:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_inductor/codegen/common.py:642:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/common.py:643:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/common.py:644:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/common.py:645:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_inductor/codegen/common.py:646:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_inductor/codegen/common.py:647:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_inductor/codegen/common.py:657:15: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:662:16: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/common.py:672:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/common.py:678:16: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/common.py:696:58: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:705:21: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/common.py:750:76: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:767:13: error[unresolved-attribute] Module `torch` has no member `promote_types` +torch/_inductor/codegen/common.py:771:69: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:777:66: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:806:66: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:808:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:824:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:828:61: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:832:72: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:871:44: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/common.py:879:40: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/common.py:887:52: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/common.py:891:67: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/common.py:895:66: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/common.py:899:61: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/common.py:903:51: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/common.py:907:31: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/common.py:912:47: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/common.py:920:40: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:924:39: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:928:40: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:935:39: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/common.py:941:40: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:977:57: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:1059:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:1060:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:1070:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:1083:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:1097:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:1121:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:1121:30: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/common.py:1579:58: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:1579:72: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/common.py:1617:24: error[invalid-return-type] Return type does not match returned value: expected `tuple[str, str, int]`, found `tuple[str, str, Expr]` +torch/_inductor/codegen/common.py:1642:19: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_inductor/codegen/common.py:1656:17: error[invalid-assignment] Object of type `Integer` is not assignable to `int` +torch/_inductor/codegen/common.py:1658:20: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Expr, str].__getitem__(key: Expr, /) -> str` cannot be called with key of type `int` on object of type `dict[Expr, str]` +torch/_inductor/codegen/common.py:1663:9: error[invalid-assignment] Invalid subscript assignment with key of type `int` and value of type `str` on object of type `dict[Expr, str]` +torch/_inductor/codegen/common.py:1671:35: error[invalid-argument-type] Argument to function `_lookup` is incorrect: Expected `dict[Symbol, str | RemovedArg] | dict[Symbol, str]`, found `dict[Expr, str]` +torch/_inductor/codegen/common.py:1674:16: error[invalid-return-type] Return type does not match returned value: expected `Iterator[str]`, found `chain[str | Expr]` +torch/_inductor/codegen/common.py:1690:45: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:1697:48: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:1744:49: error[invalid-argument-type] Argument to bound method `wrap_size_arg` is incorrect: Expected `str | Symbol`, found `Expr` +torch/_inductor/codegen/common.py:1746:59: error[invalid-argument-type] Argument to bound method `ensure_size_computed` is incorrect: Expected `Symbol`, found `Expr` +torch/_inductor/codegen/common.py:1789:30: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `str`, found `Expr` +torch/_inductor/codegen/common.py:1793:59: error[invalid-argument-type] Argument to bound method `ensure_size_computed` is incorrect: Expected `Symbol`, found `Expr` +torch/_inductor/codegen/common.py:1848:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:1880:9: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:1924:16: error[invalid-return-type] Return type does not match returned value: expected `Self@clone`, found `CSE[CSEVariableType@CSE, AugmentedKeyT@CSE]` +torch/_inductor/codegen/common.py:1966:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:2038:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:2050:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:2184:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:2185:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:2202:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:2212:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:2227:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:2351:20: error[invalid-return-type] Return type does not match returned value: expected `Expr`, found `list[Expr | Unknown]` +torch/_inductor/codegen/common.py:2385:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:2457:50: error[unsupported-operator] Operator `-` is unsupported between objects of type `object` and `Literal[1]` +torch/_inductor/codegen/common.py:2469:26: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:2472:23: error[unresolved-attribute] Object of type `object` has no attribute `get_name` +torch/_inductor/codegen/common.py:2472:39: error[unresolved-attribute] Object of type `object` has no attribute `get_dtype` +torch/_inductor/codegen/common.py:2476:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:2604:33: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:2715:57: error[unresolved-attribute] Module `torch` has no member `long` +torch/_inductor/codegen/common.py:2754:16: error[invalid-return-type] Return type does not match returned value: expected `Symbol`, found `Unknown | Expr` +torch/_inductor/codegen/common.py:2812:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:2813:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:2822:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:2833:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/common.py:2845:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:143:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp.py:144:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cpp.py:147:27: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:148:5: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/codegen/cpp.py:149:5: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:150:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp.py:151:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cpp.py:152:5: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:153:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp.py:154:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp.py:155:5: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cpp.py:156:5: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/cpp.py:157:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/codegen/cpp.py:158:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_inductor/codegen/cpp.py:161:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:162:5: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/codegen/cpp.py:163:5: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:164:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp.py:165:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cpp.py:166:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp.py:167:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp.py:168:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/codegen/cpp.py:169:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_inductor/codegen/cpp.py:177:17: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/cpp.py:184:21: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:185:35: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:212:21: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:213:40: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:226:28: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:255:37: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:331:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:723:52: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:943:46: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cpp.py:1179:59: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/cpp.py:1181:57: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/cpp.py:1307:23: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:1308:31: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:1455:58: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/cpp.py:1598:23: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:1599:31: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:1607:23: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:1608:31: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:1621:23: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:1622:31: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:1648:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:1649:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/codegen/cpp.py:1650:13: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:1651:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp.py:1652:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cpp.py:1653:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp.py:1654:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp.py:1655:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cpp.py:1656:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/cpp.py:1657:13: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/codegen/cpp.py:1658:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_inductor/codegen/cpp.py:1665:52: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:1700:29: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:1792:46: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cpp.py:2022:30: error[invalid-argument-type] Argument to function `replace_acc_name` is incorrect: Expected `IndentedBuffer`, found `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/cpp.py:2030:17: error[call-non-callable] Object of type `object` is not callable +torch/_inductor/codegen/cpp.py:2034:25: error[invalid-argument-type] Argument to bound method `splice` is incorrect: Expected `IndentedBuffer | str`, found `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/cpp.py:2055:30: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:2111:43: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/cpp.py:2118:47: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/cpp.py:2154:9: warning[possibly-missing-attribute] Attribute `writeline` may be missing on object of type `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/cpp.py:2166:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:2204:49: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:2221:43: error[invalid-argument-type] Argument to bound method `check_lt` is incorrect: Expected `Expr`, found `Literal[4096]` +torch/_inductor/codegen/cpp.py:2224:60: error[invalid-argument-type] Argument to bound method `check_leq` is incorrect: Expected `Expr`, found `Literal[4096]` +torch/_inductor/codegen/cpp.py:2252:17: error[call-non-callable] Object of type `object` is not callable +torch/_inductor/codegen/cpp.py:2346:13: warning[possibly-missing-attribute] Attribute `writeline` may be missing on object of type `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/cpp.py:2354:13: warning[possibly-missing-attribute] Attribute `writeline` may be missing on object of type `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/cpp.py:2689:39: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:2696:43: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:2701:36: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:2708:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:2708:51: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:2709:21: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:2714:59: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:2715:30: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:2723:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:2741:56: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:2743:67: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:2745:21: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:2760:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:2787:36: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:2793:36: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:2806:33: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:2807:33: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:2923:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:2946:33: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:2950:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:2973:13: warning[possibly-missing-attribute] Attribute `splice` may be missing on object of type `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/cpp.py:2983:17: warning[possibly-missing-attribute] Attribute `splice` may be missing on object of type `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/cpp.py:2986:47: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/cpp.py:2988:47: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/cpp.py:2991:17: warning[possibly-missing-attribute] Attribute `writeline` may be missing on object of type `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/cpp.py:3127:17: warning[possibly-missing-attribute] Attribute `writeline` may be missing on object of type `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/cpp.py:3131:17: warning[possibly-missing-attribute] Attribute `writeline` may be missing on object of type `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/cpp.py:3145:13: warning[possibly-missing-attribute] Attribute `writeline` may be missing on object of type `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/cpp.py:3146:84: error[invalid-argument-type] Argument to bound method `reduction_combine_vec` is incorrect: Expected `Symbol | None`, found `Unknown | CppCSEVariable | Symbol` +torch/_inductor/codegen/cpp.py:3146:84: error[invalid-argument-type] Argument to bound method `reduction_combine_vec` is incorrect: Expected `bool | None`, found `Unknown | CppCSEVariable | Symbol` +torch/_inductor/codegen/cpp.py:3175:28: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:3206:36: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:3208:29: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:3243:57: error[unresolved-attribute] Module `torch` has no member `double` +torch/_inductor/codegen/cpp.py:3244:21: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:3261:33: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:3262:83: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:3280:32: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:3337:21: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:3349:43: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/cpp.py:3350:25: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:3351:54: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:3353:21: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:3366:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:3366:44: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/cpp.py:3368:32: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:3434:29: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:3435:39: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:3437:43: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/cpp.py:3453:44: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:3505:25: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:3505:49: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:3507:27: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:3507:51: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp.py:3689:17: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp.py:3690:17: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp.py:3691:17: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/codegen/cpp.py:3692:17: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_inductor/codegen/cpp.py:3697:13: warning[possibly-missing-attribute] Attribute `writeline` may be missing on object of type `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/cpp.py:3739:62: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:3747:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:3803:17: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:4049:66: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:4063:67: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:4075:60: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:4080:58: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:4091:71: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp.py:4113:59: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:4151:29: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:4152:29: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp.py:4153:29: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cpp.py:4154:29: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/cpp.py:4158:29: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:4159:29: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:4168:47: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:4187:43: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:4218:67: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp.py:4584:47: error[invalid-argument-type] Argument to bound method `codegen_conditions` is incorrect: Expected `Symbol | None`, found `Expr | None` +torch/_inductor/codegen/cpp.py:4590:49: error[invalid-argument-type] Argument to bound method `codegen_conditions` is incorrect: Expected `Symbol | None`, found `Expr | None` +torch/_inductor/codegen/cpp.py:4597:46: error[invalid-argument-type] Argument to function `replace_acc_name` is incorrect: Expected `IndentedBuffer`, found `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/cpp.py:4603:54: error[invalid-argument-type] Argument to function `replace_cascade_sum_with_add` is incorrect: Expected `IndentedBuffer`, found `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/cpp.py:4607:33: error[invalid-argument-type] Argument to function `move_code_under_inner_loop` is incorrect: Expected `Expr`, found `Expr | None` +torch/_inductor/codegen/cpp.py:4610:33: error[invalid-argument-type] Argument to function `move_code_under_inner_loop` is incorrect: Expected `Expr`, found `Expr | None` +torch/_inductor/codegen/cpp.py:4695:43: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/cpp.py:5200:59: error[invalid-argument-type] Argument to bound method `insert` is incorrect: Expected `int`, found `Expr` +torch/_inductor/codegen/cpp.py:5206:29: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr] | None`, found `list[int]` +torch/_inductor/codegen/cpp.py:5240:25: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, list[Buffer]].__getitem__(key: str, /) -> list[Buffer]` cannot be called with key of type `Unknown | str | None` on object of type `dict[str, list[Buffer]]` +torch/_inductor/codegen/cpp.py:5494:13: error[invalid-argument-type] Argument to function `set_kernel_post_grad_provenance_tracing` is incorrect: Expected `str`, found `Unknown | None` +torch/_inductor/codegen/cpp_bmm_template.py:196:63: error[invalid-argument-type] Argument to bound method `select` is incorrect: Expected `int`, found `Unknown | Symbol` +torch/_inductor/codegen/cpp_flex_attention_template.py:705:33: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_flex_attention_template.py:705:46: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_flex_attention_template.py:705:62: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cpp_flex_attention_template.py:984:33: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_gemm_template.py:379:39: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_gemm_template.py:379:52: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_gemm_template.py:382:33: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_gemm_template.py:382:46: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_gemm_template.py:401:21: error[invalid-assignment] Object of type `TensorBox` is not assignable to `_T@transpose_w` +torch/_inductor/codegen/cpp_gemm_template.py:420:21: error[invalid-assignment] Object of type `TensorBox` is not assignable to `_T@expand_bias | None` +torch/_inductor/codegen/cpp_gemm_template.py:423:47: warning[possibly-missing-attribute] Attribute `get_size` may be missing on object of type `_T@expand_bias | None` +torch/_inductor/codegen/cpp_gemm_template.py:476:21: error[no-matching-overload] No overload of function `__new__` matches arguments +torch/_inductor/codegen/cpp_gemm_template.py:488:21: error[no-matching-overload] No overload of function `__new__` matches arguments +torch/_inductor/codegen/cpp_gemm_template.py:605:33: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_gemm_template.py:605:46: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_gemm_template.py:605:62: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/codegen/cpp_gemm_template.py:605:74: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_gemm_template.py:772:17: error[unresolved-attribute] Module `torch._C` has no member `_cpu` +torch/_inductor/codegen/cpp_gemm_template.py:780:17: error[unresolved-attribute] Module `torch._C` has no member `_cpu` +torch/_inductor/codegen/cpp_gemm_template.py:788:24: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/codegen/cpp_gemm_template.py:794:27: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_gemm_template.py:794:57: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_gemm_template.py:818:32: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_gemm_template.py:821:31: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_gemm_template.py:828:33: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_gemm_template.py:1254:25: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Expr`, found `Literal[0]` +torch/_inductor/codegen/cpp_gemm_template.py:1354:57: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_gemm_template.py:1354:70: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_gemm_template.py:1401:34: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_gemm_template.py:1484:24: warning[possibly-missing-attribute] Attribute `layout` may be missing on object of type `Buffer | (list[Buffer] & IRNode)` +torch/_inductor/codegen/cpp_gemm_template.py:1496:32: warning[possibly-missing-attribute] Attribute `layout` may be missing on object of type `Buffer | (list[Buffer] & IRNode)` +torch/_inductor/codegen/cpp_gemm_template.py:1507:32: warning[possibly-missing-attribute] Attribute `layout` may be missing on object of type `Buffer | (list[Buffer] & IRNode)` +torch/_inductor/codegen/cpp_gemm_template.py:1539:26: warning[possibly-missing-attribute] Attribute `get_dtype` may be missing on object of type `Unknown | IRNode | Sequence[IRNode]` +torch/_inductor/codegen/cpp_gemm_template.py:1556:25: error[unresolved-attribute] Module `torch._C` has no member `_cpu` +torch/_inductor/codegen/cpp_gemm_template.py:1559:25: error[unresolved-attribute] Module `torch._C` has no member `_cpu` +torch/_inductor/codegen/cpp_gemm_template.py:1589:27: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cpp_gemm_template.py:1589:57: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_gemm_template.py:1615:34: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_gemm_template.py:1616:34: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_gemm_template.py:1776:25: error[unresolved-attribute] Module `torch` has no member `eye` +torch/_inductor/codegen/cpp_gemm_template.py:1782:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/codegen/cpp_gemm_template.py:1793:26: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_grouped_gemm_template.py:251:17: error[invalid-assignment] Invalid subscript assignment with key of type `int` and value of type `IRNode` on object of type `list[_T@normalize_shapes]` +torch/_inductor/codegen/cpp_grouped_gemm_template.py:257:17: error[invalid-assignment] Invalid subscript assignment with key of type `int` and value of type `IRNode` on object of type `list[_T@normalize_shapes]` +torch/_inductor/codegen/cpp_grouped_gemm_template.py:302:20: error[invalid-return-type] Return type does not match returned value: expected `tuple[list[_T@preprocessor], _U@preprocessor]`, found `tuple[list[IRNode], Layout]` +torch/_inductor/codegen/cpp_grouped_gemm_template.py:303:71: error[invalid-argument-type] Argument to function `reorder_and_filter` is incorrect: Expected `list[IRNode]`, found `list[_T@preprocessor]` +torch/_inductor/codegen/cpp_grouped_gemm_template.py:374:16: error[non-subscriptable] Cannot subscript object of type `Literal[False]` with no `__getitem__` method +torch/_inductor/codegen/cpp_grouped_gemm_template.py:403:26: warning[possibly-missing-attribute] Attribute `get_dtype` may be missing on object of type `Unknown | IRNode | Sequence[IRNode]` +torch/_inductor/codegen/cpp_grouped_gemm_template.py:415:25: error[unresolved-attribute] Module `torch._C` has no member `_cpu` +torch/_inductor/codegen/cpp_grouped_gemm_template.py:418:25: error[unresolved-attribute] Module `torch._C` has no member `_cpu` +torch/_inductor/codegen/cpp_grouped_gemm_template.py:441:13: error[invalid-assignment] Invalid subscript assignment with key of type `str` and value of type `Unknown | IRNode | Sequence[IRNode]` on object of type `dict[str, IRNode | None]` +torch/_inductor/codegen/cpp_grouped_gemm_template.py:491:27: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:96:33: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_micro_gemm.py:96:46: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_micro_gemm.py:97:42: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cpp_micro_gemm.py:98:41: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cpp_micro_gemm.py:99:41: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_micro_gemm.py:113:47: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_micro_gemm.py:113:60: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_micro_gemm.py:114:52: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_micro_gemm.py:114:65: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_micro_gemm.py:229:18: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp_micro_gemm.py:230:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp_micro_gemm.py:231:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp_micro_gemm.py:232:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp_micro_gemm.py:256:17: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:347:21: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:352:21: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_micro_gemm.py:353:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:358:21: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/codegen/cpp_micro_gemm.py:359:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:364:21: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_micro_gemm.py:365:22: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_micro_gemm.py:366:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:367:23: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:376:21: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_micro_gemm.py:377:22: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_micro_gemm.py:378:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:379:23: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:385:21: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:390:21: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_micro_gemm.py:391:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:396:21: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/codegen/cpp_micro_gemm.py:397:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:402:21: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_micro_gemm.py:403:22: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_micro_gemm.py:404:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:405:23: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:414:21: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_micro_gemm.py:415:22: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_micro_gemm.py:416:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:417:23: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:423:21: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:424:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:425:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:426:23: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:431:21: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:432:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:433:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:434:23: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:963:45: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_micro_gemm.py:963:58: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_micro_gemm.py:978:34: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cpp_micro_gemm.py:978:75: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:989:21: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_micro_gemm.py:990:22: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_micro_gemm.py:991:22: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cpp_micro_gemm.py:992:23: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cpp_micro_gemm.py:998:21: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_micro_gemm.py:999:22: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_micro_gemm.py:1000:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:1001:23: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:1007:21: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_micro_gemm.py:1008:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:1014:21: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cpp_micro_gemm.py:1015:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:1021:21: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_micro_gemm.py:1022:22: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_micro_gemm.py:1023:22: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cpp_micro_gemm.py:1024:23: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cpp_micro_gemm.py:1281:33: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_micro_gemm.py:1281:46: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_micro_gemm.py:1289:37: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_micro_gemm.py:1290:43: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_micro_gemm.py:1290:55: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_micro_gemm.py:1330:33: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_micro_gemm.py:1330:46: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_micro_gemm.py:1338:34: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/codegen/cpp_micro_gemm.py:1338:72: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:1348:21: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/codegen/cpp_micro_gemm.py:1349:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:1407:36: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/codegen/cpp_micro_gemm.py:1430:21: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_micro_gemm.py:1431:22: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_micro_gemm.py:1432:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:1433:23: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:1681:21: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_micro_gemm.py:1682:22: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_micro_gemm.py:1683:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:1684:23: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_micro_gemm.py:1955:31: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_micro_gemm.py:1956:37: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_micro_gemm.py:1956:49: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_template.py:68:35: error[unresolved-attribute] Object of type `object` has no attribute `get_name` +torch/_inductor/codegen/cpp_template_kernel.py:101:13: error[invalid-assignment] Invalid subscript assignment with key of type `Basic` and value of type `str` on object of type `dict[Expr, str]` +torch/_inductor/codegen/cpp_template_kernel.py:129:33: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/cpp_template_kernel.py:129:48: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_template_kernel.py:129:64: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/codegen/cpp_template_kernel.py:173:15: error[invalid-assignment] Object of type `Expr` is not assignable to `int` +torch/_inductor/codegen/cpp_template_kernel.py:173:45: error[invalid-argument-type] Argument to function `handle_negative_index` is incorrect: Expected `Expr`, found `int` +torch/_inductor/codegen/cpp_template_kernel.py:207:59: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_template_kernel.py:211:46: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/cpp_template_kernel.py:219:45: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_template_kernel.py:224:46: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/cpp_template_kernel.py:322:24: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Expr` +torch/_inductor/codegen/cpp_utils.py:32:5: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/cpp_utils.py:33:5: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/codegen/cpp_utils.py:34:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cpp_utils.py:35:5: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/cpp_utils.py:36:5: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cpp_utils.py:37:5: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_inductor/codegen/cpp_utils.py:38:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_utils.py:39:5: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_inductor/codegen/cpp_utils.py:40:5: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_inductor/codegen/cpp_utils.py:41:5: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_inductor/codegen/cpp_utils.py:42:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_utils.py:43:5: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp_utils.py:44:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_utils.py:45:5: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/_inductor/codegen/cpp_utils.py:46:5: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_inductor/codegen/cpp_utils.py:47:5: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_inductor/codegen/cpp_utils.py:48:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/codegen/cpp_utils.py:49:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_inductor/codegen/cpp_utils.py:50:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/_inductor/codegen/cpp_utils.py:51:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/_inductor/codegen/cpp_utils.py:55:5: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/cpp_utils.py:56:5: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/codegen/cpp_utils.py:57:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cpp_utils.py:58:5: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/cpp_utils.py:59:5: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cpp_utils.py:60:5: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_inductor/codegen/cpp_utils.py:61:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_utils.py:62:5: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_inductor/codegen/cpp_utils.py:63:5: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_inductor/codegen/cpp_utils.py:64:5: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_inductor/codegen/cpp_utils.py:65:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_utils.py:66:5: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_inductor/codegen/cpp_utils.py:67:5: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_inductor/codegen/cpp_utils.py:68:5: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp_utils.py:69:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_utils.py:70:5: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/_inductor/codegen/cpp_utils.py:71:5: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_inductor/codegen/cpp_utils.py:72:5: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_inductor/codegen/cpp_utils.py:73:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/codegen/cpp_utils.py:74:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_inductor/codegen/cpp_utils.py:75:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/_inductor/codegen/cpp_utils.py:76:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/_inductor/codegen/cpp_utils.py:88:5: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/codegen/cpp_utils.py:148:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp_utils.py:462:11: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:482:19: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp_utils.py:483:27: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp_utils.py:484:22: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cpp_utils.py:489:57: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/cpp_utils.py:517:24: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_utils.py:517:37: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cpp_utils.py:518:17: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cpp_utils.py:518:30: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cpp_utils.py:520:17: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/cpp_utils.py:520:32: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/cpp_utils.py:539:29: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:540:49: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:541:42: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:542:41: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:543:58: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:545:29: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:554:29: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:555:49: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:556:42: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:557:41: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:558:59: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:559:49: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:568:29: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:592:36: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:593:35: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:594:37: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:595:62: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:602:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:603:45: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:607:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:618:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:619:45: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:620:36: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:622:75: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:624:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:636:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:637:45: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:639:60: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:640:41: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:642:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:674:45: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cpp_utils.py:709:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp_wrapper_cpu.py:177:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:202:13: error[no-matching-overload] No overload of function `dirname` matches arguments +torch/_inductor/codegen/cpp_wrapper_cpu.py:351:36: error[invalid-argument-type] Argument to bound method `add` is incorrect: Expected `Symbol`, found `Basic | Unknown` +torch/_inductor/codegen/cpp_wrapper_cpu.py:360:16: error[unresolved-attribute] Object of type `TensorBox & Symbol` has no attribute `is_integer` +torch/_inductor/codegen/cpp_wrapper_cpu.py:362:18: error[unresolved-attribute] Object of type `TensorBox & Symbol` has no attribute `is_float` +torch/_inductor/codegen/cpp_wrapper_cpu.py:372:32: error[invalid-argument-type] Argument to function `codegen_symbol` is incorrect: Expected `Expr`, found `int | Expr` +torch/_inductor/codegen/cpp_wrapper_cpu.py:697:25: error[call-non-callable] Object of type `object` is not callable +torch/_inductor/codegen/cpp_wrapper_cpu.py:725:25: error[call-non-callable] Object of type `object` is not callable +torch/_inductor/codegen/cpp_wrapper_cpu.py:1073:22: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1078:21: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1078:47: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1080:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1080:30: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1081:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1082:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1084:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1084:30: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1086:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1086:30: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1087:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1088:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1316:17: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1320:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1320:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1336:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1337:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1340:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1340:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1364:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1364:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1371:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1371:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1375:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1375:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1390:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1403:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1403:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1452:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1452:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1470:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1501:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1501:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1508:40: error[invalid-argument-type] Argument to bound method `add` is incorrect: Expected `tuple[str, GraphLowering]`, found `tuple[Symbol, GraphLowering]` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1509:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1509:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1511:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1511:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1518:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1518:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1520:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1520:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1523:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1524:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1542:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1542:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1548:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1548:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1549:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1550:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1566:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1567:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1569:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1570:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1581:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1581:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1582:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1582:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1613:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1614:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1929:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1930:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1952:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1952:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1953:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1954:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1956:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1956:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1970:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1970:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1971:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1971:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1984:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1984:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:1993:21: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2002:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2002:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2003:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2003:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `EnterSubgraphLine` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2005:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2005:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ExitSubgraphLine` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2006:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2006:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `Literal["} else {"]` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2007:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2007:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `EnterSubgraphLine` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2009:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2009:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ExitSubgraphLine` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2010:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2010:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `Literal["}"]` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2020:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2020:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2046:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2046:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2048:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2048:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2057:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2057:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2058:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2059:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2061:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2061:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2072:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2072:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `Literal["while (1) {"]` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2073:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2073:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `EnterSubgraphLine` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2082:38: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2083:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2083:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2085:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2085:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ExitSubgraphLine` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2086:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2086:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `EnterSubgraphLine` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2090:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2090:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ExitSubgraphLine` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2091:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2091:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `Literal["}"]` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2114:43: error[unresolved-attribute] Object of type `~None` has no attribute `arguments` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2115:41: error[unresolved-attribute] Object of type `~None` has no attribute `returns` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2122:17: error[unresolved-attribute] Module `torch` has no member `FloatType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2123:17: error[unresolved-attribute] Module `torch` has no member `BoolType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2124:17: error[unresolved-attribute] Module `torch` has no member `StringType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2125:17: error[unresolved-attribute] Module `torch` has no member `Type` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2126:17: error[unresolved-attribute] Module `torch` has no member `DeviceObjType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2133:37: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2136:39: error[unresolved-attribute] Module `torch` has no member `IntType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2139:39: error[unresolved-attribute] Module `torch` has no member `SymIntType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2143:39: error[unresolved-attribute] Module `torch` has no member `NumberType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2152:39: error[unresolved-attribute] Module `torch` has no member `ListType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2156:58: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2160:48: error[unresolved-attribute] Module `torch` has no member `OptionalType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2162:65: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2168:60: error[unresolved-attribute] Module `torch` has no member `IntType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2171:60: error[unresolved-attribute] Module `torch` has no member `SymIntType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2177:60: error[unresolved-attribute] Module `torch` has no member `NumberType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2202:41: error[unresolved-attribute] Module `torch` has no member `OptionalType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2208:36: error[unresolved-attribute] Module `torch` has no member `JitType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2210:40: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2212:21: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2212:36: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2213:21: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2214:25: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2216:21: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2216:36: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2218:42: error[unresolved-attribute] Module `torch` has no member `SymIntType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2220:42: error[unresolved-attribute] Module `torch` has no member `ListType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2221:47: error[unresolved-attribute] Module `torch` has no member `SymIntType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2230:31: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2230:49: error[unresolved-attribute] Module `torch` has no member `NoneType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2230:65: error[unresolved-attribute] Module `torch` has no member `IntType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2233:42: error[unresolved-attribute] Module `torch` has no member `OptionalType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2234:65: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2235:42: error[unresolved-attribute] Module `torch` has no member `ListType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2236:65: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2253:25: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2259:21: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2273:13: error[unresolved-attribute] Module `torch` has no member `BoolType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2274:13: error[unresolved-attribute] Module `torch` has no member `DeviceObjType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2275:13: error[unresolved-attribute] Module `torch` has no member `FloatType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2278:13: error[unresolved-attribute] Module `torch` has no member `IntType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2279:13: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2282:31: error[unresolved-attribute] Module `torch` has no member `JitType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2283:30: error[unresolved-attribute] Module `torch` has no member `OptionalType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2461:39: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2473:39: error[unresolved-attribute] Module `torch` has no member `OptionalType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2475:39: error[unresolved-attribute] Module `torch` has no member `IntType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2478:39: error[unresolved-attribute] Module `torch` has no member `SymIntType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2484:39: error[unresolved-attribute] Module `torch` has no member `FloatType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2486:39: error[unresolved-attribute] Module `torch` has no member `BoolType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2488:39: error[unresolved-attribute] Module `torch` has no member `StringType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2490:39: error[unresolved-attribute] Module `torch` has no member `NumberType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2494:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2497:38: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2499:38: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2501:38: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2512:33: error[unresolved-attribute] Module `torch` has no member `ListType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2564:37: error[unresolved-attribute] Module `torch` has no member `JitType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2578:41: error[unresolved-attribute] Module `torch` has no member `OptionalType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2597:41: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2750:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2751:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2766:30: error[unresolved-attribute] Module `torch` has no member `OptionalType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2768:32: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2770:33: error[unresolved-attribute] Module `torch` has no member `IntType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2770:48: error[unresolved-attribute] Module `torch` has no member `SymIntType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2773:21: error[unresolved-attribute] Module `torch` has no member `BoolType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2773:37: error[unresolved-attribute] Module `torch` has no member `SymBoolType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2773:56: error[unresolved-attribute] Module `torch` has no member `EnumType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2776:32: error[unresolved-attribute] Module `torch` has no member `FloatType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2778:32: error[unresolved-attribute] Module `torch` has no member `NumberType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2790:32: error[unresolved-attribute] Module `torch` has no member `StringType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2810:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2812:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2814:30: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2816:30: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2833:51: error[unresolved-attribute] Module `torch` has no member `OptionalType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2837:25: error[unresolved-attribute] Module `torch` has no member `DeviceObjType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2838:25: error[unresolved-attribute] Module `torch` has no member `ListType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2839:25: error[unresolved-attribute] Module `torch` has no member `TupleType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2845:34: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2848:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2848:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2849:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2850:21: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2852:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2852:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2857:30: error[unresolved-attribute] Module `torch` has no member `OptionalType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2863:42: error[unresolved-attribute] Module `torch` has no member `ListType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2863:58: error[unresolved-attribute] Module `torch` has no member `TupleType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2868:41: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2873:41: error[unresolved-attribute] Module `torch` has no member `DeviceObjType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2875:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2875:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2878:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2879:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2883:31: error[unresolved-attribute] Module `torch` has no member `ListType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2883:47: error[unresolved-attribute] Module `torch` has no member `TupleType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2895:41: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2901:41: error[unresolved-attribute] Module `torch` has no member `OptionalType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2913:30: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2939:27: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `Never`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2941:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2941:30: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2954:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2954:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `Literal["{"]` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2960:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2960:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `Literal["}"]` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2975:25: error[unresolved-attribute] Object of type `~AlwaysFalsy` has no attribute `get_stack_traces` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2994:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu.py:2994:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:137:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:137:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:152:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:739:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:739:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:766:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:788:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:789:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:858:35: error[unresolved-attribute] Module `torch` has no member `OptionalType` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:859:52: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:862:52: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:873:22: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:878:21: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:878:47: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:880:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:880:30: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:885:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:886:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:888:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:888:30: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:890:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:890:30: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:895:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py:896:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_gpu.py:14:19: error[unresolved-import] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp_wrapper_gpu.py:442:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_gpu.py:443:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_gpu.py:447:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_gpu.py:448:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_gpu.py:560:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_gpu.py:560:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_gpu.py:572:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_gpu.py:572:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_gpu.py:587:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_gpu.py:587:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_gpu.py:591:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_gpu.py:591:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_gpu.py:614:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_gpu.py:614:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_gpu.py:667:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_gpu.py:667:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_gpu.py:704:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_gpu.py:705:21: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_gpu.py:711:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_gpu.py:711:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_gpu.py:714:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_gpu.py:714:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_gpu.py:724:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_gpu.py:725:21: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_gpu.py:733:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_gpu.py:733:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_gpu.py:750:60: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cpp_wrapper_gpu.py:820:18: error[missing-argument] No argument provided for required parameter `graph_name` of function `write_get_raw_stream` +torch/_inductor/codegen/cpp_wrapper_gpu.py:820:58: error[invalid-argument-type] Argument to function `write_get_raw_stream` is incorrect: Expected `int`, found `Unknown | Literal[""]` +torch/_inductor/codegen/cpp_wrapper_gpu.py:827:17: error[invalid-argument-type] Argument to function `prepare_triton_wrapper_args` is incorrect: Expected `list[Any]`, found `Unknown | None` +torch/_inductor/codegen/cpp_wrapper_gpu.py:848:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_gpu.py:848:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_gpu.py:852:38: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | None` +torch/_inductor/codegen/cpp_wrapper_gpu.py:859:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_gpu.py:859:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_mps.py:39:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/cpp_wrapper_mps.py:84:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cpp_wrapper_mps.py:199:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_mps.py:200:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_mps.py:202:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_mps.py:202:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `Literal[" aoti_torch_mps_start_encoding(handle);"]` +torch/_inductor/codegen/cpp_wrapper_mps.py:206:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_mps.py:206:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_mps.py:207:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_mps.py:207:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `Literal["};"]` +torch/_inductor/codegen/cpp_wrapper_mps.py:208:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_mps.py:208:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `Literal[""]` +torch/_inductor/codegen/cpp_wrapper_mps.py:211:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_mps.py:212:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cpp_wrapper_mps.py:214:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/cpp_wrapper_mps.py:215:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/cuda/cuda_kernel.py:13:19: error[unresolved-import] Module `torch` has no member `dtype` +torch/_inductor/codegen/cuda/cuda_kernel.py:387:17: error[invalid-argument-type] Argument is incorrect: Expected `Expr`, found `int` +torch/_inductor/codegen/cuda/cuda_kernel.py:483:16: error[invalid-return-type] Return type does not match returned value: expected `str`, found `Expr` +torch/_inductor/codegen/cuda/cuda_kernel.py:502:50: error[invalid-argument-type] Argument to bound method `statically_known_leq` is incorrect: Expected `Expr`, found `int | Expr` +torch/_inductor/codegen/cuda/cuda_kernel.py:521:50: error[invalid-argument-type] Argument to bound method `statically_known_leq` is incorrect: Expected `Expr`, found `int | Expr` +torch/_inductor/codegen/cuda/cuda_kernel.py:545:47: error[invalid-argument-type] Argument to bound method `rename_indexing` is incorrect: Expected `list[Expr] | tuple[Expr, ...] | Expr`, found `int | Expr` +torch/_inductor/codegen/cuda/cuda_kernel.py:547:47: error[invalid-argument-type] Argument to bound method `rename_indexing` is incorrect: Expected `list[Expr] | tuple[Expr, ...] | Expr`, found `(int & ~Literal[1]) | Expr` +torch/_inductor/codegen/cuda/cuda_kernel.py:661:37: warning[possibly-missing-attribute] Attribute `configuration_name` may be missing on object of type `@Todo | int | float | ... omitted 3 union elements` +torch/_inductor/codegen/cuda/cuda_kernel.py:662:32: warning[possibly-missing-attribute] Attribute `arch` may be missing on object of type `@Todo | int | float | ... omitted 3 union elements` +torch/_inductor/codegen/cuda/cuda_kernel.py:663:35: warning[possibly-missing-attribute] Attribute `tile_description` may be missing on object of type `@Todo | int | float | ... omitted 3 union elements` +torch/_inductor/codegen/cuda/cuda_kernel.py:664:42: warning[possibly-missing-attribute] Attribute `epilogue_schedule` may be missing on object of type `@Todo | int | float | ... omitted 3 union elements` +torch/_inductor/codegen/cuda/cuda_kernel.py:665:40: warning[possibly-missing-attribute] Attribute `kernel_schedule` may be missing on object of type `@Todo | int | float | ... omitted 3 union elements` +torch/_inductor/codegen/cuda/cuda_kernel.py:666:44: warning[possibly-missing-attribute] Attribute `accumulator_type` may be missing on object of type `@Todo | int | float | ... omitted 3 union elements` +torch/_inductor/codegen/cuda/cuda_kernel.py:667:32: warning[possibly-missing-attribute] Attribute `procedural_name` may be missing on object of type `@Todo | int | float | ... omitted 3 union elements` +torch/_inductor/codegen/cuda/cuda_kernel.py:669:21: warning[possibly-missing-attribute] Attribute `tile_description` may be missing on object of type `@Todo | int | float | ... omitted 3 union elements` +torch/_inductor/codegen/cuda/cuda_template.py:354:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/cuda/cuda_template.py:355:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/codegen/cuda/cuda_template.py:356:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cuda/cuda_template.py:357:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cuda/cuda_template.py:358:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_inductor/codegen/cuda/cuda_template.py:359:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cuda/cuda_template.py:360:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cuda/cuda_template.py:361:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cuda/cuda_template.py:362:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cuda/cuda_template.py:363:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/codegen/cuda/cuda_template.py:367:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cuda/cuda_template.py:368:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_inductor/codegen/cuda/cutlass_cache.py:105:14: error[unresolved-import] Cannot resolve imported module `torch._inductor.fb.cutlass_remote_cache` +torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py:52:10: error[unresolved-import] Cannot resolve imported module `cutlass_library` +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:11:10: error[unresolved-import] Cannot resolve imported module `cutlass_library.gemm_operation` +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:12:10: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:14:15: error[unresolved-reference] Name `logging` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:104:34: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:105:36: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:106:31: error[unresolved-reference] Name `LayoutTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:107:37: error[unresolved-reference] Name `EpilogueFunctor3xTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:108:21: error[unresolved-reference] Name `EpilogueFunctor3x` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:110:44: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:111:39: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:112:34: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:114:20: error[unresolved-reference] Name `SubstituteTemplate` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:118:34: error[unresolved-reference] Name `is_grouped` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:130:24: error[unresolved-reference] Name `is_grouped` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:163:21: error[unresolved-reference] Name `OpcodeClass` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:164:21: error[unresolved-reference] Name `OpcodeClass` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:199:45: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:200:41: error[unresolved-reference] Name `EpilogueFunctor3xTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:204:36: error[unresolved-reference] Name `SubstituteTemplate` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:209:21: error[unresolved-reference] Name `is_block_scaled` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:210:59: error[unresolved-reference] Name `DataType` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:214:36: error[unresolved-attribute] Object of type `Self@emit` has no attribute `epilogue_functor` +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:217:17: error[unresolved-reference] Name `is_block_scaled` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:218:55: error[unresolved-reference] Name `DataType` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:226:17: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:228:41: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:229:6: error[unresolved-reference] Name `ComplexTransformTag3x` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:232:17: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:234:41: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:235:6: error[unresolved-reference] Name `ComplexTransformTag3x` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:237:38: error[unresolved-reference] Name `EpilogueScheduleTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:239:37: error[unresolved-reference] Name `OpcodeClass` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:241:21: error[unresolved-reference] Name `EpilogueScheduleType` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:242:21: error[unresolved-reference] Name `EpilogueScheduleType` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:244:27: error[unresolved-reference] Name `is_grouped` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:245:66: error[unresolved-reference] Name `to_grouped_schedule` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:246:21: error[unresolved-reference] Name `KernelScheduleType` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:250:50: error[unresolved-reference] Name `EpilogueScheduleTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:251:29: error[unresolved-reference] Name `to_grouped_schedule` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:252:33: error[unresolved-reference] Name `EpilogueScheduleType` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:255:66: error[unresolved-reference] Name `to_grouped_schedule` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:256:21: error[unresolved-reference] Name `KernelScheduleType` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:260:50: error[unresolved-reference] Name `EpilogueScheduleTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:261:29: error[unresolved-reference] Name `to_grouped_schedule` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:262:33: error[unresolved-reference] Name `EpilogueScheduleType` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:265:65: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:266:65: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:269:28: error[unresolved-reference] Name `LayoutTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:270:28: error[unresolved-reference] Name `LayoutTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:275:32: error[unresolved-reference] Name `DataTypeSize` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:276:32: error[unresolved-reference] Name `DataTypeSize` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:285:30: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:286:28: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:287:29: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:288:28: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:330:21: error[unresolved-reference] Name `MixedInputMode` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:331:21: error[unresolved-reference] Name `MixedInputMode` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:332:21: error[unresolved-reference] Name `MixedInputMode` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:338:36: error[unresolved-reference] Name `DataType` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:339:35: error[unresolved-reference] Name `DataType` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:339:66: error[unresolved-reference] Name `DataType` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:361:30: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:363:32: error[unresolved-reference] Name `LayoutTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:365:30: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:367:32: error[unresolved-reference] Name `LayoutTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:369:40: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:370:38: error[unresolved-reference] Name `OpcodeClassTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:371:37: error[unresolved-reference] Name `OpcodeClassTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:391:40: error[unresolved-reference] Name `KernelScheduleTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:400:32: error[unresolved-reference] Name `ComplexTransformTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:401:32: error[unresolved-reference] Name `ComplexTransformTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:402:35: error[unresolved-reference] Name `MathOperationTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:406:41: error[unresolved-reference] Name `DataTypeTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:407:39: error[unresolved-reference] Name `TileSchedulerTag` used when not defined +torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py:411:20: error[unresolved-reference] Name `SubstituteTemplate` used when not defined +torch/_inductor/codegen/cuda/cutlass_python_evt.py:60:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cuda/cutlass_python_evt.py:172:13: error[invalid-assignment] Invalid subscript assignment with key of type `str` and value of type `TensorBox | ShapeAsConstantBuffer` on object of type `dict[str, Buffer | TensorBox | TorchBindObject | Expr]` +torch/_inductor/codegen/cuda/cutlass_python_evt.py:297:18: warning[possibly-missing-attribute] Attribute `get_layout` may be missing on object of type `Unknown | Buffer | TensorBox | TorchBindObject | Expr` +torch/_inductor/codegen/cuda/cutlass_utils.py:32:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cuda/cutlass_utils.py:32:59: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cuda/cutlass_utils.py:32:72: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cuda/cutlass_utils.py:33:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cuda/cutlass_utils.py:34:6: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/codegen/cuda/cutlass_utils.py:34:18: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cuda/cutlass_utils.py:34:34: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/codegen/cuda/cutlass_utils.py:34:55: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cuda/cutlass_utils.py:102:34: error[no-matching-overload] No overload of function `dirname` matches arguments +torch/_inductor/codegen/cuda/cutlass_utils.py:160:20: error[unresolved-import] Cannot resolve imported module `cutlass_library.generator` +torch/_inductor/codegen/cuda/cutlass_utils.py:161:20: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/cutlass_utils.py:162:20: error[unresolved-import] Cannot resolve imported module `cutlass_library.manifest` +torch/_inductor/codegen/cuda/cutlass_utils.py:242:12: error[unresolved-import] Cannot resolve imported module `cutlass_library.generator` +torch/_inductor/codegen/cuda/cutlass_utils.py:243:12: error[unresolved-import] Cannot resolve imported module `cutlass_library.manifest` +torch/_inductor/codegen/cuda/cutlass_utils.py:298:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cuda/cutlass_utils.py:299:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cuda/cutlass_utils.py:300:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/codegen/cuda/cutlass_utils.py:306:18: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cuda/cutlass_utils.py:312:23: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cuda/cutlass_utils.py:314:25: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/codegen/cuda/cutlass_utils.py:316:25: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cuda/cutlass_utils.py:324:27: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cuda/cutlass_utils.py:329:12: error[unresolved-import] Cannot resolve imported module `cutlass_library` +torch/_inductor/codegen/cuda/cutlass_utils.py:331:23: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cuda/cutlass_utils.py:336:25: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/codegen/cuda/cutlass_utils.py:338:25: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cuda/cutlass_utils.py:340:25: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cuda/cutlass_utils.py:342:25: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cuda/cutlass_utils.py:344:25: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cuda/cutlass_utils.py:346:25: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/codegen/cuda/cutlass_utils.py:353:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cuda/cutlass_utils.py:354:15: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cuda/cutlass_utils.py:370:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/codegen/cuda/cutlass_utils.py:371:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/codegen/cuda/cutlass_utils.py:376:23: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/codegen/cuda/cutlass_utils.py:376:35: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cuda/cutlass_utils.py:377:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cuda/cutlass_utils.py:378:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cuda/cutlass_utils.py:382:24: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cuda/cutlass_utils.py:382:39: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cuda/cutlass_utils.py:382:55: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cuda/cutlass_utils.py:382:68: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/codegen/cuda/cutlass_utils.py:383:29: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cuda/cutlass_utils.py:384:25: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cuda/cutlass_utils.py:385:29: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cuda/cutlass_utils.py:396:33: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cuda/cutlass_utils.py:402:24: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/codegen/cuda/cutlass_utils.py:402:36: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cuda/cutlass_utils.py:404:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/cuda/cutlass_utils.py:406:26: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/cuda/cutlass_utils.py:406:39: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cuda/cutlass_utils.py:406:51: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/codegen/cuda/cutlass_utils.py:408:25: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cuda/gemm_template.py:658:16: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/gemm_template.py:674:16: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/gemm_template.py:1003:16: error[unresolved-import] Cannot resolve imported module `cutlass_library.gemm_operation` +torch/_inductor/codegen/cuda/gemm_template.py:1089:16: error[unresolved-import] Cannot resolve imported module `cutlass_library.gemm_operation` +torch/_inductor/codegen/cuda/gemm_template.py:1090:16: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/gemm_template.py:1321:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cuda/gemm_template.py:1322:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cuda/gemm_template.py:1372:16: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/gemm_template.py:1391:16: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/gemm_template.py:1483:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cuda/gemm_template.py:1484:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cuda/gemm_template.py:1486:60: warning[possibly-missing-import] Member `create_example_tensors` of module `torch._inductor.codegen.cuda.cutlass_lib_extensions.evt_extensions` may be missing +torch/_inductor/codegen/cuda/gemm_template.py:1486:84: warning[possibly-missing-import] Member `trace` of module `torch._inductor.codegen.cuda.cutlass_lib_extensions.evt_extensions` may be missing +torch/_inductor/codegen/cuda/gemm_template.py:1530:16: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/gemm_template.py:1571:16: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/gemm_template.py:1743:16: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/gemm_template.py:1758:16: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/gemm_template.py:1792:16: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/gemm_template.py:1805:16: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/gemm_template.py:1822:16: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/gemm_template.py:1859:16: error[unresolved-import] Cannot resolve imported module `cutlass_library.gemm_operation` +torch/_inductor/codegen/cuda/gemm_template.py:1860:16: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/gemm_template.py:1885:16: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/serialization.py:69:14: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/serialization.py:131:14: error[unresolved-import] Cannot resolve imported module `cutlass_library` +torch/_inductor/codegen/cuda/serialization.py:132:14: error[unresolved-import] Cannot resolve imported module `cutlass_library.gemm_operation` +torch/_inductor/codegen/cuda/serialization.py:133:14: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/serialization.py:275:14: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/serialization.py:360:14: error[unresolved-import] Cannot resolve imported module `cutlass_library` +torch/_inductor/codegen/cuda/serialization.py:361:14: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda/serialization.py:444:14: error[unresolved-import] Cannot resolve imported module `cutlass_library` +torch/_inductor/codegen/cuda/serialization.py:445:14: error[unresolved-import] Cannot resolve imported module `cutlass_library.library` +torch/_inductor/codegen/cuda_combined_scheduling.py:50:44: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/cutedsl/_cutedsl_utils.py:3:8: error[unresolved-import] Cannot resolve imported module `cutlass.cute` +torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:411:46: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:416:16: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:416:71: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:431:68: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:444:31: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:444:46: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:448:29: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/cutedsl/cutedsl_kernel.py:466:60: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:23:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:23:48: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:25:18: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:25:33: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:26:16: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:39:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:40:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:41:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:42:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:43:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:44:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:45:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:46:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:47:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:48:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:49:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:81:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:147:57: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:269:23: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:273:28: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:273:43: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:273:59: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py:292:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/debug_utils.py:11:19: error[unresolved-import] Module `torch` has no member `dtype` +torch/_inductor/codegen/debug_utils.py:207:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/debug_utils.py:208:21: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/debug_utils.py:227:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/debug_utils.py:227:48: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/debug_utils.py:245:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/debug_utils.py:246:21: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/debug_utils.py:265:21: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/debug_utils.py:266:25: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/debug_utils.py:271:30: error[unresolved-attribute] Module `torch._inductor` has no member `codegen` +torch/_inductor/codegen/debug_utils.py:277:21: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/debug_utils.py:278:25: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/debug_utils.py:282:25: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/debug_utils.py:283:29: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/debug_utils.py:286:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/debug_utils.py:287:21: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/halide.py:64:16: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_inductor/codegen/halide.py:64:28: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/halide.py:215:5: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/halide.py:216:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/halide.py:217:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/halide.py:218:5: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/halide.py:219:5: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/codegen/halide.py:220:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/halide.py:221:5: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_inductor/codegen/halide.py:222:5: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/halide.py:223:5: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/halide.py:224:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/halide.py:225:5: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_inductor/codegen/halide.py:226:5: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_inductor/codegen/halide.py:227:5: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_inductor/codegen/halide.py:236:65: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/halide.py:237:17: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/halide.py:238:18: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/halide.py:238:33: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/halide.py:239:17: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/halide.py:247:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/halide.py:248:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/halide.py:251:21: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/halide.py:256:36: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/halide.py:256:60: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/halide.py:257:26: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/halide.py:257:41: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/halide.py:260:22: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/halide.py:260:37: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/halide.py:493:45: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/halide.py:494:46: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/halide.py:526:26: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/halide.py:526:39: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/halide.py:533:45: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/halide.py:594:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/halide.py:720:35: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/halide.py:727:40: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ValueRanges[Any]`, found `Unknown | None` +torch/_inductor/codegen/halide.py:745:19: error[invalid-assignment] Object of type `dict[Unknown, Any | None]` is not assignable to `Sequence[Expr]` +torch/_inductor/codegen/halide.py:811:42: error[invalid-argument-type] Argument to bound method `lookup` is incorrect: Expected `Expr`, found `Literal[1]` +torch/_inductor/codegen/halide.py:1133:22: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/halide.py:1133:37: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/halide.py:1134:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/halide.py:1199:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/halide.py:1200:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/halide.py:1301:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/halide.py:1669:27: error[missing-argument] No argument provided for required parameter `graph_name` of function `write_get_raw_stream` +torch/_inductor/codegen/halide.py:1670:39: error[invalid-argument-type] Argument to bound method `write_get_raw_stream` is incorrect: Expected `str`, found `Unknown | str | None` +torch/_inductor/codegen/halide.py:1670:39: error[invalid-argument-type] Argument to function `write_get_raw_stream` is incorrect: Expected `int`, found `Unknown | str | None` +torch/_inductor/codegen/halide.py:1693:43: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/memory_planning.py:228:35: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `tuple[()]`? +torch/_inductor/codegen/memory_planning.py:229:33: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `tuple[()]`? +torch/_inductor/codegen/memory_planning.py:230:37: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `tuple[()]`? +torch/_inductor/codegen/memory_planning.py:387:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/memory_planning.py:467:27: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/memory_planning.py:489:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/mps.py:44:5: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/mps.py:45:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/mps.py:46:5: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_inductor/codegen/mps.py:47:5: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/mps.py:48:5: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/mps.py:49:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/codegen/mps.py:50:5: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/mps.py:51:5: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/codegen/mps.py:52:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/mps.py:77:12: error[unresolved-attribute] Object of type `Expr` has no attribute `is_integer` +torch/_inductor/codegen/mps.py:86:16: error[unresolved-attribute] Object of type `Expr` has no attribute `is_integer` +torch/_inductor/codegen/mps.py:120:12: error[unresolved-attribute] Object of type `Basic` has no attribute `is_integer` +torch/_inductor/codegen/mps.py:122:20: error[unsupported-operator] Operator `<` is not supported for types `Basic` and `int`, in comparing `Basic` with `Literal[0]` +torch/_inductor/codegen/mps.py:127:82: error[unsupported-operator] Unary operator `-` is unsupported for type `Basic` +torch/_inductor/codegen/mps.py:145:12: error[unresolved-attribute] Object of type `Expr` has no attribute `is_integer` +torch/_inductor/codegen/mps.py:177:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/mps.py:178:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/mps.py:181:21: error[unresolved-attribute] Module `torch` has no member `double` +torch/_inductor/codegen/mps.py:190:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/mps.py:190:56: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/mps.py:195:55: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/mps.py:199:45: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/mps.py:210:22: error[call-non-callable] Object of type `Expr` is not callable +torch/_inductor/codegen/mps.py:486:35: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/mps.py:495:22: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/mps.py:495:37: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/mps.py:500:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/mps.py:522:13: warning[possibly-missing-attribute] Attribute `writeline` may be missing on object of type `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/mps.py:533:9: warning[possibly-missing-attribute] Attribute `writeline` may be missing on object of type `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/mps.py:537:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/mps.py:543:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/mps.py:559:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/mps.py:560:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/mps.py:575:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/mps.py:576:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/mps.py:630:13: warning[possibly-missing-attribute] Attribute `writeline` may be missing on object of type `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/mps.py:639:51: error[invalid-argument-type] Argument to bound method `_new_idxvar` is incorrect: Expected `int | None`, found `int | Expr | Unknown` +torch/_inductor/codegen/mps.py:652:17: error[invalid-argument-type] Argument to bound method `generate` is incorrect: Expected `IndentedBuffer`, found `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/mps.py:657:51: error[invalid-argument-type] Argument to bound method `_new_idxvar` is incorrect: Expected `int | None`, found `int | Expr | Unknown` +torch/_inductor/codegen/mps.py:672:17: error[invalid-argument-type] Argument to bound method `generate` is incorrect: Expected `IndentedBuffer`, found `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/mps.py:677:56: error[invalid-argument-type] Argument to bound method `_new_idxvar` is incorrect: Expected `int | None`, found `int | Expr | Unknown` +torch/_inductor/codegen/mps.py:678:51: error[invalid-argument-type] Argument to bound method `_new_idxvar` is incorrect: Expected `int | None`, found `int | Expr | Unknown` +torch/_inductor/codegen/mps.py:710:17: error[invalid-argument-type] Argument to bound method `generate` is incorrect: Expected `IndentedBuffer`, found `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/mps.py:717:55: error[invalid-argument-type] Argument to bound method `_new_idxvar` is incorrect: Expected `int | None`, found `Min` +torch/_inductor/codegen/mps.py:722:27: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/mps.py:725:50: error[invalid-argument-type] Argument to bound method `_new_idxvar` is incorrect: Expected `int | None`, found `Min` +torch/_inductor/codegen/mps.py:732:17: error[invalid-argument-type] Argument to bound method `generate` is incorrect: Expected `IndentedBuffer`, found `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/mps.py:734:23: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/mps.py:739:50: error[invalid-argument-type] Argument to bound method `_new_idxvar` is incorrect: Expected `int | None`, found `Min` +torch/_inductor/codegen/mps.py:751:17: error[invalid-argument-type] Argument to bound method `generate` is incorrect: Expected `IndentedBuffer`, found `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/mps.py:753:23: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/mps.py:829:17: error[invalid-argument-type] Argument to bound method `invalidate` is incorrect: Expected `OrderedSet[CSEVariable]`, found `OrderedSet[object]` +torch/_inductor/codegen/mps.py:841:26: error[invalid-argument-type] Argument to bound method `splice` is incorrect: Expected `IndentedBuffer | str`, found `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/mps.py:844:9: warning[possibly-missing-attribute] Attribute `clear` may be missing on object of type `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/mps.py:899:33: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/codegen/mps.py:959:42: error[invalid-argument-type] Argument to bound method `ensure_size_computed` is incorrect: Expected `Symbol`, found `Unknown | Expr` +torch/_inductor/codegen/mps.py:1034:20: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/multi_kernel.py:263:21: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/multi_kernel.py:263:39: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/multi_kernel.py:265:21: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/multi_kernel.py:265:39: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/pallas.py:195:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/pallas.py:196:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/pallas.py:204:45: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/pallas.py:215:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/pallas.py:218:21: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/codegen/pallas.py:724:31: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Symbol, IterationRangesEntry].__getitem__(key: Symbol, /) -> IterationRangesEntry` cannot be called with key of type `Basic` on object of type `dict[Symbol, IterationRangesEntry]` +torch/_inductor/codegen/pallas.py:779:9: warning[possibly-missing-attribute] Attribute `writeline` may be missing on object of type `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/pallas.py:783:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/pallas.py:784:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/pallas.py:981:25: warning[possibly-missing-attribute] Attribute `_lines` may be missing on object of type `Unknown | IndentedBuffer | None` +torch/_inductor/codegen/pallas.py:1143:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/pallas.py:1143:27: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/pallas.py:1150:43: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/rocm/ck_template.py:18:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/rocm/ck_template.py:19:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/codegen/rocm/ck_template.py:20:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/rocm/ck_template.py:21:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/rocm/ck_template.py:22:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/rocm/ck_template.py:23:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/rocm/ck_template.py:24:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/_inductor/codegen/rocm/ck_template.py:25:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/codegen/rocm/ck_template.py:26:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/_inductor/codegen/rocm/ck_template.py:27:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_inductor/codegen/rocm/ck_tile_template.py:13:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/codegen/rocm/ck_tile_template.py:14:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/codegen/rocm/ck_tile_template.py:15:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/rocm/ck_tile_template.py:16:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/rocm/ck_tile_template.py:17:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/rocm/ck_tile_template.py:18:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/codegen/rocm/ck_tile_template.py:19:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/_inductor/codegen/rocm/ck_tile_template.py:20:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/codegen/rocm/ck_tile_template.py:21:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/_inductor/codegen/rocm/ck_tile_template.py:22:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_inductor/codegen/rocm/ck_universal_gemm_template.py:508:25: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/codegen/rocm/ck_universal_gemm_template.py:509:25: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/codegen/rocm/compile_command.py:23:14: error[unresolved-import] Cannot resolve imported module `libfb.py` +torch/_inductor/codegen/rocm/rocm_benchmark_request.py:77:30: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_inductor/codegen/rocm/rocm_benchmark_request.py:79:23: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/codegen/rocm/rocm_kernel.py:195:17: error[invalid-argument-type] Argument is incorrect: Expected `Expr`, found `int` +torch/_inductor/codegen/rocm/rocm_template.py:107:13: error[call-non-callable] Object of type `object` is not callable +torch/_inductor/codegen/rocm/rocm_utils.py:11:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/codegen/rocm/rocm_utils.py:12:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/_inductor/codegen/rocm/rocm_utils.py:13:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/_inductor/codegen/rocm/rocm_utils.py:14:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/codegen/rocm/rocm_utils.py:15:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_inductor/codegen/rocm/rocm_utils.py:16:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/codegen/simd.py:333:9: warning[possibly-missing-attribute] Attribute `cache_clear` may be missing on object of type `Unknown | (() -> Unknown)` +torch/_inductor/codegen/simd.py:448:66: error[invalid-argument-type] Argument is incorrect: Expected `dict[Expr, Expr]`, found `dict[Symbol, Expr]` +torch/_inductor/codegen/simd.py:473:35: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/simd.py:476:49: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/simd.py:616:52: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `Symbol`, found `Basic` +torch/_inductor/codegen/simd.py:618:39: error[invalid-argument-type] Argument to function `sympy_subs` is incorrect: Expected `dict[Expr, Any]`, found `dict[Unknown | Basic, Unknown]` +torch/_inductor/codegen/simd.py:1003:60: error[invalid-argument-type] Argument is incorrect: Expected `dict[Expr, Expr]`, found `dict[Symbol, Expr]` +torch/_inductor/codegen/simd.py:1585:19: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/codegen/simd.py:1751:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/simd.py:1752:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/simd.py:1817:19: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_inductor/codegen/simd.py:1817:31: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/simd.py:1926:21: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/simd.py:1927:25: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/simd.py:2266:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/simd.py:2266:40: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/simd.py:2673:27: error[invalid-argument-type] Argument to function `sympy_product` is incorrect: Expected `Iterable[Expr]`, found `list[int | Unknown]` +torch/_inductor/codegen/simd.py:2678:27: error[invalid-argument-type] Argument to function `sympy_product` is incorrect: Expected `Iterable[Expr]`, found `list[int | Unknown]` +torch/_inductor/codegen/simd.py:2703:28: error[invalid-return-type] Return type does not match returned value: expected `tuple[list[int], list[int]]`, found `tuple[list[int | (Expr & ~AlwaysFalsy)], list[int]]` +torch/_inductor/codegen/simd.py:3017:70: error[invalid-argument-type] Argument to bound method `statically_known_multiple_of` is incorrect: Expected `Expr`, found `Expr | Literal[1]` +torch/_inductor/codegen/simd.py:3027:24: error[invalid-return-type] Return type does not match returned value: expected `dict[str, Expr] | None`, found `dict[Unknown | str, Unknown | Expr | int]` +torch/_inductor/codegen/simd.py:3092:20: warning[possibly-missing-attribute] Attribute `replace` may be missing on object of type `Any | str | None` +torch/_inductor/codegen/simd_kernel_features.py:133:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/simd_kernel_features.py:149:20: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/simd_kernel_features.py:150:16: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/codegen/subgraph.py:97:44: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | Expr` +torch/_inductor/codegen/subgraph.py:98:56: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | Expr` +torch/_inductor/codegen/subgraph.py:307:21: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +torch/_inductor/codegen/subgraph.py:342:39: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +torch/_inductor/codegen/subgraph.py:344:29: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +torch/_inductor/codegen/subgraph.py:373:31: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/codegen/triton_combo_kernel.py:481:25: error[unsupported-operator] Unary operator `-` is unsupported for type `int | str` +torch/_inductor/codegen/triton_combo_kernel.py:484:36: warning[redundant-cast] Value is already of type `str` +torch/_inductor/codegen/triton_split_scan.py:92:16: error[unresolved-import] Cannot resolve imported module `triton.language` +torch/_inductor/codegen/triton_split_scan.py:130:55: error[invalid-argument-type] Argument to bound method `index_to_str` is incorrect: Expected `Expr`, found `(Unknown & ~Literal[0]) | (int & ~Literal[0])` +torch/_inductor/codegen/triton_utils.py:39:25: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/codegen/triton_utils.py:41:27: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_inductor/codegen/triton_utils.py:43:27: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/_inductor/codegen/triton_utils.py:45:27: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/_inductor/codegen/triton_utils.py:89:23: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_inductor/codegen/triton_utils.py:89:35: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/codegen/triton_utils.py:187:27: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/codegen/wrapper.py:25:19: error[unresolved-import] Module `torch` has no member `dtype` +torch/_inductor/codegen/wrapper.py:78:12: error[unresolved-import] Cannot resolve imported module `triton` +torch/_inductor/codegen/wrapper.py:91:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/wrapper.py:91:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/codegen/wrapper.py:174:63: error[not-iterable] Object of type `(tuple[int | Expr, ...] & ~(() -> object)) | (((dict[str, int], /) -> tuple[int, ...]) & ~(() -> object))` may not be iterable +torch/_inductor/codegen/wrapper.py:267:12: error[unresolved-import] Cannot resolve imported module `triton` +torch/_inductor/codegen/wrapper.py:568:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/codegen/wrapper.py:1148:19: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/codegen/wrapper.py:1233:34: error[unresolved-import] Module `torch._C` has no member `_cuda_getCurrentRawStream` +torch/_inductor/codegen/wrapper.py:1279:16: error[invalid-assignment] Object of type `str` is not assignable to `dict[str, int]` +torch/_inductor/codegen/wrapper.py:1283:13: error[invalid-assignment] Invalid subscript assignment with key of type `dict[str, int]` and value of type `str` on object of type `dict[str, str]` +torch/_inductor/codegen/wrapper.py:1289:16: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, str].__getitem__(key: str, /) -> str` cannot be called with key of type `dict[str, int]` on object of type `dict[str, str]` +torch/_inductor/codegen/wrapper.py:1323:54: error[invalid-argument-type] Argument to bound method `codegen_python_shape_tuple` is incorrect: Expected `Sequence[Expr]`, found `Sequence[int | Expr]` +torch/_inductor/codegen/wrapper.py:1430:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:1430:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:1454:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:1455:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `EnterDeviceContextManagerLine` +torch/_inductor/codegen/wrapper.py:1473:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:1473:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ExitDeviceContextManagerLine` +torch/_inductor/codegen/wrapper.py:1516:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:1516:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ExternKernelAllocLine` +torch/_inductor/codegen/wrapper.py:1520:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:1520:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ExternKernelAllocLine` +torch/_inductor/codegen/wrapper.py:1538:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:1538:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:1540:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:1541:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:1549:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:1550:21: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:1558:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:1558:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ExternKernelOutLine` +torch/_inductor/codegen/wrapper.py:1574:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:1574:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:1623:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:1623:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:1626:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:1626:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ScatterFallbackLine` +torch/_inductor/codegen/wrapper.py:1646:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:1646:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str | Unknown` +torch/_inductor/codegen/wrapper.py:1661:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:1661:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `IndexPutFallbackLine` +torch/_inductor/codegen/wrapper.py:1666:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:1677:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:1677:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:1727:25: warning[possibly-missing-attribute] Attribute `codegen` may be missing on object of type `MemoryPlanningLine | (LineContext & WrapperLine)` +torch/_inductor/codegen/wrapper.py:1973:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:1973:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `SymbolicCallArgLine` +torch/_inductor/codegen/wrapper.py:2046:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2046:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:2051:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2051:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `MultiOutputLine` +torch/_inductor/codegen/wrapper.py:2057:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2058:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:2082:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2082:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:2083:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2083:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:2085:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2085:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:2089:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2089:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `DynamicScalarLine` +torch/_inductor/codegen/wrapper.py:2094:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2094:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:2096:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2096:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:2098:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2098:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:2099:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2100:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:2103:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2104:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:2110:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2110:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:2131:38: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_inductor/codegen/wrapper.py:2235:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2236:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `KernelDefinitionLine` +torch/_inductor/codegen/wrapper.py:2465:45: error[invalid-argument-type] Argument to function `sympy_subs` is incorrect: Expected `dict[Expr, Any]`, found `dict[Symbol, Symbol]` +torch/_inductor/codegen/wrapper.py:2570:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2570:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `SymbolicCallArgLine` +torch/_inductor/codegen/wrapper.py:2577:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2577:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:2583:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2583:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `AllocateLine` +torch/_inductor/codegen/wrapper.py:2585:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2585:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `AllocateLine` +torch/_inductor/codegen/wrapper.py:2586:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2596:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2596:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `AllocateLine` +torch/_inductor/codegen/wrapper.py:2597:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2620:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2620:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `FreeIfNotReusedLine` +torch/_inductor/codegen/wrapper.py:2811:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2812:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `KernelCallLine` +torch/_inductor/codegen/wrapper.py:2817:17: error[invalid-argument-type] Argument is incorrect: Expected `tuple[Any, ...]`, found `Unknown | None` +torch/_inductor/codegen/wrapper.py:2819:17: error[invalid-argument-type] Argument is incorrect: Expected `tuple[Any, ...]`, found `Unknown | None` +torch/_inductor/codegen/wrapper.py:2821:17: error[invalid-argument-type] Argument is incorrect: Expected `list[str]`, found `Unknown | None` +torch/_inductor/codegen/wrapper.py:2824:17: error[invalid-argument-type] Argument is incorrect: Expected `dict[str, Any]`, found `Unknown | None` +torch/_inductor/codegen/wrapper.py:2826:17: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `Unknown | str | None` +torch/_inductor/codegen/wrapper.py:2828:17: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `Unknown | None` +torch/_inductor/codegen/wrapper.py:2849:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2852:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2866:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:2867:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:2949:43: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | None | list[Unknown | None]` +torch/_inductor/codegen/wrapper.py:3013:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3013:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3021:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3030:20: error[unresolved-import] Cannot resolve imported module `triton` +torch/_inductor/codegen/wrapper.py:3129:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3129:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `CommentLine` +torch/_inductor/codegen/wrapper.py:3149:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3150:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3170:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3171:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `DeferredLine` +torch/_inductor/codegen/wrapper.py:3210:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3210:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ReinterpretLine` +torch/_inductor/codegen/wrapper.py:3214:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3214:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `CommBufferAllocateLine` +torch/_inductor/codegen/wrapper.py:3217:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3217:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `AllocateLine` +torch/_inductor/codegen/wrapper.py:3224:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3224:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `FreeLine` +torch/_inductor/codegen/wrapper.py:3230:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3230:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `CommBufferFreeLine` +torch/_inductor/codegen/wrapper.py:3237:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3237:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `FreeIfNotReusedLine` +torch/_inductor/codegen/wrapper.py:3269:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3269:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ReuseLine` +torch/_inductor/codegen/wrapper.py:3289:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3290:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `UnbackedSymbolDefsLine` +torch/_inductor/codegen/wrapper.py:3365:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3366:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3388:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3389:21: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3397:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3398:21: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3403:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3403:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3433:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3433:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3439:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3439:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3442:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3443:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3445:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3445:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3461:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3461:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3464:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3465:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3474:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3474:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3481:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3482:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3523:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3523:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3546:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3546:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3547:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3547:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3548:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3548:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `EnterSubgraphLine` +torch/_inductor/codegen/wrapper.py:3557:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3557:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ExitSubgraphLine` +torch/_inductor/codegen/wrapper.py:3558:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3558:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `Literal["else:"]` +torch/_inductor/codegen/wrapper.py:3559:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3559:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `EnterSubgraphLine` +torch/_inductor/codegen/wrapper.py:3567:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3567:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ExitSubgraphLine` +torch/_inductor/codegen/wrapper.py:3590:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3590:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3592:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3593:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3598:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3598:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3616:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3616:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3617:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3617:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `Literal["if not should_loop:"]` +torch/_inductor/codegen/wrapper.py:3621:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3621:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `EnterSubgraphLine` +torch/_inductor/codegen/wrapper.py:3622:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3622:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3623:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3623:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ExitSubgraphLine` +torch/_inductor/codegen/wrapper.py:3626:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3626:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `EnterSubgraphLine` +torch/_inductor/codegen/wrapper.py:3627:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3627:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3628:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3628:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ExitSubgraphLine` +torch/_inductor/codegen/wrapper.py:3630:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3630:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `Literal["while should_loop:"]` +torch/_inductor/codegen/wrapper.py:3632:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3632:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `EnterSubgraphLine` +torch/_inductor/codegen/wrapper.py:3636:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3636:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ExitSubgraphLine` +torch/_inductor/codegen/wrapper.py:3640:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3640:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `EnterSubgraphLine` +torch/_inductor/codegen/wrapper.py:3642:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3642:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3643:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3643:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ExitSubgraphLine` +torch/_inductor/codegen/wrapper.py:3646:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3646:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `EnterSubgraphLine` +torch/_inductor/codegen/wrapper.py:3650:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3650:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ExitSubgraphLine` +torch/_inductor/codegen/wrapper.py:3651:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3651:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3655:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3655:28: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `Literal["# Stack outputs after loop completion"]` +torch/_inductor/codegen/wrapper.py:3657:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3657:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3658:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3658:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `EnterSubgraphLine` +torch/_inductor/codegen/wrapper.py:3659:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3660:21: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/codegen/wrapper.py:3662:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper.py:3662:32: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ExitSubgraphLine` +torch/_inductor/codegen/wrapper.py:3805:16: error[invalid-return-type] Return type does not match returned value: expected `dict[str, TensorBox | TorchBindObject | Expr | None]`, found `Unknown | dict[str, TensorBox | TorchBindObject | Expr]` +torch/_inductor/codegen/wrapper_fxir.py:166:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/codegen/wrapper_fxir.py:166:24: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `ConditionalLine` +torch/_inductor/codegen/wrapper_fxir.py:198:16: error[invalid-return-type] Return type does not match returned value: expected `dict[str, TensorBox | TorchBindObject | Expr | None]`, found `dict[str, TensorBox | TorchBindObject | Expr]` +torch/_inductor/codegen/wrapper_fxir.py:325:13: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/_inductor/codegen/wrapper_fxir.py:398:39: error[invalid-argument-type] Argument to bound method `_get_buffer` is incorrect: Expected `IRNode`, found `TensorBox | TorchBindObject | Expr` +torch/_inductor/codegen/wrapper_fxir.py:466:20: warning[possibly-missing-attribute] Attribute `is_integer` may be missing on object of type `Basic | Unknown` +torch/_inductor/codegen/wrapper_fxir.py:473:17: error[invalid-assignment] Invalid subscript assignment with key of type `Basic | Unknown` and value of type `Proxy` on object of type `dict[Expr, Proxy]` +torch/_inductor/codegen/wrapper_fxir.py:488:25: error[invalid-argument-type] Argument to function `_codegen_symbol` is incorrect: Expected `Expr`, found `int | Expr` +torch/_inductor/codegen/wrapper_fxir.py:526:21: error[invalid-argument-type] Argument is incorrect: Expected `Expr`, found `Sequence[Expr]` +torch/_inductor/codegen/wrapper_fxir.py:639:51: error[invalid-argument-type] Argument to function `sympy_interp` is incorrect: Expected `dict[Symbol, Any]`, found `dict[Expr, Proxy]` +torch/_inductor/codegen/wrapper_fxir.py:645:33: error[invalid-argument-type] Argument to bound method `_sympy_interp` is incorrect: Expected `Expr`, found `Basic` +torch/_inductor/codegen/wrapper_fxir.py:687:13: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_inductor/codegen/wrapper_fxir.py:950:18: error[unresolved-import] Cannot resolve imported module `triton.runtime` +torch/_inductor/codegen/wrapper_fxir.py:974:24: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_inductor/codegen/wrapper_fxir.py:1018:56: error[unresolved-attribute] Object of type `object` has no attribute `kwargs` +torch/_inductor/codegen/wrapper_fxir.py:1027:31: error[unresolved-attribute] Object of type `object` has no attribute `kwargs` +torch/_inductor/codegen/wrapper_fxir.py:1101:23: error[call-non-callable] Object of type `object` is not callable +torch/_inductor/comm_analysis.py:72:26: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/comm_analysis.py:188:17: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/_inductor/comm_analysis.py:191:14: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/comm_analysis.py:200:10: warning[possibly-missing-attribute] Member `_time_estimator` may be missing on module `torch.distributed` +torch/_inductor/comm_analysis.py:445:12: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/_inductor/comm_analysis.py:457:20: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/comm_analysis.py:478:14: warning[possibly-missing-attribute] Member `_time_estimator` may be missing on module `torch.distributed` +torch/_inductor/comm_lowering.py:212:15: error[invalid-assignment] Object of type `IRNode` is not assignable to `TensorBox` +torch/_inductor/comm_lowering.py:237:15: error[invalid-assignment] Object of type `IRNode` is not assignable to `TensorBox` +torch/_inductor/comms.py:63:18: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/_inductor/comms.py:66:5: warning[possibly-missing-attribute] Member `all_gather_object` may be missing on module `torch.distributed` +torch/_inductor/comms.py:69:34: error[unresolved-attribute] Module `torch` has no member `median` +torch/_inductor/comms.py:70:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/comms.py:776:8: error[unresolved-attribute] Module `importlib` has no member `util` +torch/_inductor/comms.py:1614:8: error[unresolved-attribute] Module `importlib` has no member `util` +torch/_inductor/comms.py:2138:12: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/_inductor/comms.py:2149:12: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/_inductor/comms.py:2427:9: error[invalid-argument-type] Argument to function `register_graph_pattern` is incorrect: Expected `_PassDictsType`, found `PatternMatcherPass` +torch/_inductor/comms.py:2471:13: error[unresolved-attribute] Module `torch._inductor` has no member `scheduler` +torch/_inductor/comms.py:2472:13: error[unresolved-attribute] Module `torch._inductor` has no member `scheduler` +torch/_inductor/comms.py:2479:18: error[unresolved-attribute] Module `torch._inductor` has no member `scheduler` +torch/_inductor/comms.py:2480:28: error[unresolved-attribute] Module `torch._inductor` has no member `scheduler` +torch/_inductor/comms.py:2482:11: error[unresolved-attribute] Module `torch._inductor` has no member `scheduler` +torch/_inductor/compile_fx.py:44:5: warning[possibly-missing-import] Member `detect_fake_mode` of module `torch._dynamo.utils` may be missing +torch/_inductor/compile_fx.py:252:15: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/compile_fx.py:384:21: error[unresolved-attribute] Module `torch` has no member `equal` +torch/_inductor/compile_fx.py:649:47: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/compile_fx.py:785:29: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_inductor/compile_fx.py:835:22: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/compile_fx.py:886:21: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_inductor/compile_fx.py:922:37: error[invalid-argument-type] Argument to function `prepare_key` is incorrect: Expected `_CompileFxKwargs`, found `dict[str, @Todo]` +torch/_inductor/compile_fx.py:944:12: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_inductor/compile_fx.py:1091:64: error[invalid-argument-type] Argument to bound method `post_compile` is incorrect: Expected `_CompileFxKwargs`, found `dict[str, @Todo]` +torch/_inductor/compile_fx.py:1238:13: error[unresolved-attribute] Module `torch._dynamo` has no member `repro` +torch/_inductor/compile_fx.py:1342:25: error[unresolved-attribute] Module `torch.fx` has no member `traceback` +torch/_inductor/compile_fx.py:1344:21: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/compile_fx.py:1346:29: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/compile_fx.py:1545:29: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/compile_fx.py:1548:29: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/compile_fx.py:1593:25: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/compile_fx.py:1596:21: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/compile_fx.py:1666:25: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/compile_fx.py:1668:29: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/compile_fx.py:1672:29: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/compile_fx.py:1677:29: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/compile_fx.py:1683:25: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `((...) -> Any) | None`, found `Unknown | list[str | Weights] | str | (bound method FileBackedGraphModule.call(args: list[Any]) -> Any)` +torch/_inductor/compile_fx.py:1754:76: error[invalid-argument-type] Argument to bound method `codegen_and_compile` is incorrect: Expected `_CompileFxKwargs`, found `dict[str, @Todo]` +torch/_inductor/compile_fx.py:1754:76: error[invalid-argument-type] Argument to bound method `codegen_and_compile` is incorrect: Expected `_CompileFxKwargs`, found `dict[str, @Todo]` +torch/_inductor/compile_fx.py:1754:76: error[invalid-argument-type] Argument to bound method `codegen_and_compile` is incorrect: Expected `_CompileFxKwargs`, found `dict[str, @Todo]` +torch/_inductor/compile_fx.py:1754:76: error[invalid-argument-type] Argument to bound method `codegen_and_compile` is incorrect: Expected `_CompileFxKwargs`, found `dict[str, @Todo]` +torch/_inductor/compile_fx.py:1754:76: error[invalid-argument-type] Argument to bound method `codegen_and_compile` is incorrect: Expected `_CompileFxKwargs`, found `dict[str, @Todo]` +torch/_inductor/compile_fx.py:1819:24: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/compile_fx.py:1840:12: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_inductor/compile_fx.py:1931:20: error[invalid-return-type] Return type does not match returned value: expected `(list[Tensor | int | SymInt | None], /) -> Any`, found `(Any & Top[list[Unknown]]) | (Any & tuple[object, ...]) | tuple[Any & ~Top[list[Unknown]] & ~tuple[object, ...]]` +torch/_inductor/compile_fx.py:1947:20: error[invalid-return-type] Return type does not match returned value: expected `(list[Tensor | int | SymInt | None], /) -> Any`, found `(Any & Top[list[Unknown]]) | (Any & tuple[object, ...]) | tuple[Any & ~Top[list[Unknown]] & ~tuple[object, ...]]` +torch/_inductor/compile_fx.py:1993:29: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/compile_fx.py:1996:9: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/compile_fx.py:2062:23: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/compile_fx.py:2150:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/compile_fx.py:2296:19: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/compile_fx.py:2421:5: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/compile_fx.py:2426:17: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/compile_fx.py:2633:9: error[unresolved-attribute] Module `torch.fx` has no member `traceback` +torch/_inductor/compile_fx.py:2636:9: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/compile_fx.py:2681:36: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_inductor/compile_fx.py:2717:13: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/compile_fx.py:2718:16: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/compile_fx.py:2754:49: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_inductor/compile_fx.py:2780:27: error[unresolved-attribute] Module `torch._C` has no member `_is_any_autocast_enabled` +torch/_inductor/compile_fx.py:2782:17: error[unresolved-attribute] Module `torch._C` has no member `_DisableAutocast` +torch/_inductor/compile_fx.py:2789:13: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/compile_fx.py:2824:17: error[unresolved-attribute] Object of type `object` has no attribute `returns` +torch/_inductor/compile_fx.py:2825:54: error[unresolved-attribute] Object of type `object` has no attribute `returns` +torch/_inductor/compile_fx.py:2881:40: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/compile_fx.py:2900:36: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/compile_fx.py:2923:29: error[unresolved-import] Module `torch._inductor.compile_fx` has no member `graph_returns_tuple` +torch/_inductor/compile_fx.py:2959:29: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_inductor/compile_fx_ext.py:105:25: error[unresolved-attribute] Module `torch._inductor` has no member `virtualized` +torch/_inductor/compile_fx_ext.py:193:31: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/compile_fx_ext.py:197:9: error[unresolved-attribute] Module `torch.testing` has no member `_internal` +torch/_inductor/compile_fx_ext.py:215:19: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/compile_fx_ext.py:220:17: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_inductor/compile_fx_ext.py:251:25: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/_inductor/compile_fx_ext.py:320:38: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Logger | PlaceHolder` +torch/_inductor/compile_fx_ext.py:320:53: warning[possibly-missing-attribute] Attribute `level` may be missing on object of type `Logger | PlaceHolder` +torch/_inductor/compile_fx_ext.py:451:19: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/compile_fx_ext.py:459:13: error[unresolved-attribute] Module `torch.testing` has no member `_internal` +torch/_inductor/compile_fx_ext.py:520:37: error[unresolved-attribute] Module `unittest` has no member `mock` +torch/_inductor/compile_fx_ext.py:537:33: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/compile_fx_subproc.py:88:9: error[unresolved-attribute] Module `torch._inductor` has no member `metrics` +torch/_inductor/compile_worker/__main__.py:30:12: error[unresolved-import] Cannot resolve imported module `triton` +torch/_inductor/compile_worker/subproc_pool.py:446:9: error[unresolved-attribute] Module `multiprocessing` has no member `util` +torch/_inductor/compile_worker/subproc_pool.py:483:9: error[call-non-callable] Object of type `object` is not callable +torch/_inductor/compile_worker/tracked_process_pool.py:81:24: error[unresolved-attribute] Module `concurrent` has no member `futures` +torch/_inductor/compile_worker/utils.py:42:5: error[unresolved-attribute] Module `torch._C` has no member `_initCrashHandler` +torch/_inductor/config.py:291:16: error[unresolved-attribute] Module `torch._inductor` has no member `scheduler` +torch/_inductor/config.py:292:15: error[unresolved-attribute] Module `torch._inductor` has no member `scheduler` +torch/_inductor/config.py:301:16: error[unresolved-attribute] Module `torch._inductor` has no member `scheduler` +torch/_inductor/config.py:302:15: error[unresolved-attribute] Module `torch._inductor` has no member `scheduler` +torch/_inductor/config.py:393:20: error[unresolved-attribute] Module `torch._inductor` has no member `scheduler` +torch/_inductor/config.py:394:19: error[unresolved-attribute] Module `torch._inductor` has no member `scheduler` +torch/_inductor/config.py:639:20: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/config.py:643:20: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/config.py:1040:14: error[unresolved-import] Cannot resolve imported module `libfb.py` +torch/_inductor/config.py:1853:26: error[no-matching-overload] No overload of function `dirname` matches arguments +torch/_inductor/constant_folding.py:130:37: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/constant_folding.py:242:17: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_inductor/constant_folding.py:253:28: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_inductor/constant_folding.py:312:10: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_inductor/constant_folding.py:342:10: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_inductor/cpp_builder.py:37:10: error[unresolved-import] Cannot resolve imported module `triton.fb.build` +torch/_inductor/cpp_builder.py:39:10: error[unresolved-import] Cannot resolve imported module `torch._inductor.fb.utils` +torch/_inductor/cpu_vec_isa.py:40:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/cpu_vec_isa.py:81:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/cpu_vec_isa.py:81:46: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/cpu_vec_isa.py:162:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/cpu_vec_isa.py:162:41: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/cpu_vec_isa.py:162:60: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/cpu_vec_isa.py:184:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/cpu_vec_isa.py:184:41: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/cpu_vec_isa.py:184:61: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/cpu_vec_isa.py:203:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/cpu_vec_isa.py:203:42: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/cpu_vec_isa.py:203:62: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/cpu_vec_isa.py:328:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/cpu_vec_isa.py:328:41: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/cpu_vec_isa.py:328:61: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/cpu_vec_isa.py:345:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/cpu_vec_isa.py:345:41: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/cpu_vec_isa.py:345:61: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/cpu_vec_isa.py:358:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/cpu_vec_isa.py:358:41: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/cpu_vec_isa.py:358:61: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/cudagraph_trees.py:104:9: error[unresolved-import] Module `torch._C` has no member `_cuda_CUDAAllocator_AllocatorState` +torch/_inductor/cudagraph_trees.py:105:9: error[unresolved-import] Module `torch._C` has no member `_set_cached_tensors_enabled` +torch/_inductor/cudagraph_trees.py:142:5: error[unresolved-attribute] Module `torch._C` has no member `_cuda_clearCublasWorkspaces` +torch/_inductor/cudagraph_trees.py:157:12: error[unresolved-attribute] Module `torch._C` has no member `_cuda_get_conv_benchmark_empty_cache` +torch/_inductor/cudagraph_trees.py:158:5: error[unresolved-attribute] Module `torch._C` has no member `_cudnn_set_conv_benchmark_empty_cache` +torch/_inductor/cudagraph_trees.py:162:9: error[unresolved-attribute] Module `torch._C` has no member `_cudnn_set_conv_benchmark_empty_cache` +torch/_inductor/cudagraph_trees.py:168:15: error[unresolved-attribute] Module `torch._C` has no member `_cuda_isHistoryEnabled` +torch/_inductor/cudagraph_trees.py:293:1: error[unresolved-attribute] Module `torch._C` has no member `_stash_obj_in_tls` +torch/_inductor/cudagraph_trees.py:294:1: error[unresolved-attribute] Module `torch._C` has no member `_stash_obj_in_tls` +torch/_inductor/cudagraph_trees.py:327:16: error[unresolved-attribute] Module `torch._C` has no member `_is_key_in_tls` +torch/_inductor/cudagraph_trees.py:328:16: error[unresolved-attribute] Module `torch._C` has no member `_get_obj_in_tls` +torch/_inductor/cudagraph_trees.py:539:22: error[unresolved-attribute] Module `torch._C` has no member `_storage_Use_Count` +torch/_inductor/cudagraph_trees.py:584:37: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/cudagraph_trees.py:588:9: error[unresolved-attribute] Module `torch._C` has no member `_cuda_beginAllocateCurrentThreadToPool` +torch/_inductor/cudagraph_trees.py:592:13: error[unresolved-attribute] Module `torch._C` has no member `_cuda_endAllocateToPool` +torch/_inductor/cudagraph_trees.py:593:13: error[unresolved-attribute] Module `torch._C` has no member `_cuda_releasePool` +torch/_inductor/cudagraph_trees.py:977:64: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_inductor/cudagraph_trees.py:1080:13: error[unresolved-attribute] Module `torch` has no member `_foreach_copy_` +torch/_inductor/cudagraph_trees.py:1086:21: error[unresolved-attribute] Module `torch._C` has no member `_tensors_data_ptrs_at_indices_equal` +torch/_inductor/cudagraph_trees.py:1384:43: error[unresolved-attribute] Module `torch._C` has no member `_cuda_getCheckpointState` +torch/_inductor/cudagraph_trees.py:1438:13: error[unresolved-attribute] Module `torch._C` has no member `_add_cached_tensor` +torch/_inductor/cudagraph_trees.py:1449:20: warning[possibly-missing-attribute] Attribute `_use_count` may be missing on object of type `Tensor | None` +torch/_inductor/cudagraph_trees.py:1629:17: error[unresolved-attribute] Module `torch._C` has no member `_remove_cached_tensor` +torch/_inductor/cudagraph_trees.py:1670:16: error[unresolved-attribute] Module `torch._C` has no member `_construct_storage_from_data_pointer` +torch/_inductor/cudagraph_trees.py:1697:50: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_inductor/cudagraph_trees.py:1728:16: error[unresolved-attribute] Module `torch._C` has no member `_tensors_data_ptrs_at_indices_equal` +torch/_inductor/cudagraph_trees.py:1753:21: error[unresolved-attribute] Module `torch._C` has no member `_tensors_data_ptrs_at_indices_equal` +torch/_inductor/cudagraph_trees.py:1831:8: error[unresolved-attribute] Module `torch._C` has no member `_cuda_checkPoolLiveAllocations` +torch/_inductor/cudagraph_trees.py:1932:9: error[unresolved-attribute] Module `torch._C` has no member `_set_cached_tensors_enabled` +torch/_inductor/cudagraph_trees.py:2023:20: error[unresolved-attribute] Module `torch` has no member `_environment` +torch/_inductor/cudagraph_trees.py:2503:17: error[unresolved-attribute] Module `torch._C` has no member `_set_storage_access_error_msg` +torch/_inductor/cudagraph_trees.py:2531:17: error[unresolved-attribute] Module `torch._C` has no member `_free_And_Remove_DeleterFn` +torch/_inductor/cudagraph_trees.py:2536:17: error[unresolved-attribute] Module `torch._C` has no member `_set_storage_data_ptr_access_error_msg` +torch/_inductor/cudagraph_trees.py:2570:9: error[unresolved-attribute] Module `torch._C` has no member `_cuda_setCheckpointPoolState` +torch/_inductor/cudagraph_trees.py:2580:13: error[unresolved-attribute] Module `torch._C` has no member `_cuda_cudaCachingAllocator_raw_delete` +torch/_inductor/cudagraph_trees.py:2590:24: error[unresolved-attribute] Module `torch._C` has no member `_has_Standard_Deleter` +torch/_inductor/cudagraph_utils.py:172:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/cudagraph_utils.py:175:29: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/cudagraph_utils.py:180:33: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/cudagraph_utils.py:182:44: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/cudagraph_utils.py:200:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/debug.py:659:25: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Expr`, found `int | Unknown` +torch/_inductor/debug.py:690:20: error[invalid-return-type] Return type does not match returned value: expected `dict[str, str]`, found `dict[Unknown | str, object]` +torch/_inductor/debug.py:855:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/debug.py:1146:24: error[unresolved-attribute] Object of type `object` has no attribute `node` +torch/_inductor/debug.py:1153:49: error[unresolved-attribute] Object of type `object` has no attribute `node` +torch/_inductor/debug.py:1157:43: error[unresolved-attribute] Object of type `object` has no attribute `node` +torch/_inductor/debug.py:1232:20: error[unresolved-attribute] Module `torch._dynamo` has no member `testing` +torch/_inductor/decomposition.py:195:16: error[unresolved-attribute] Module `torch` has no member `full` +torch/_inductor/decomposition.py:211:39: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/decomposition.py:230:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/decomposition.py:277:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/decomposition.py:292:20: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_inductor/decomposition.py:304:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/decomposition.py:313:19: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_inductor/decomposition.py:333:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/decomposition.py:351:33: error[unresolved-attribute] Module `torch` has no member `numel` +torch/_inductor/decomposition.py:351:53: error[unresolved-attribute] Module `torch` has no member `numel` +torch/_inductor/decomposition.py:359:20: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_inductor/decomposition.py:434:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/_inductor/decomposition.py:435:13: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_inductor/decomposition.py:435:48: error[unresolved-attribute] Module `torch` has no member `atan2` +torch/_inductor/decomposition.py:446:10: error[unresolved-attribute] Module `torch` has no member `scalar_tensor` +torch/_inductor/decomposition.py:447:11: error[unresolved-attribute] Module `torch` has no member `where` +torch/_inductor/decomposition.py:448:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_inductor/decomposition.py:448:24: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_inductor/decomposition.py:482:20: error[unresolved-attribute] Module `torch` has no member `promote_types` +torch/_inductor/decomposition.py:484:52: error[invalid-argument-type] Argument to function `_requires_fallback` is incorrect: Expected `Tensor`, found `Tensor | Unknown | int | float` +torch/_inductor/decomposition.py:511:41: warning[possibly-missing-attribute] Attribute `view` may be missing on object of type `Unknown | int | float` +torch/_inductor/decomposition.py:512:14: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/_inductor/decomposition.py:533:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_inductor/decomposition.py:533:24: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_inductor/decomposition.py:538:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_inductor/decomposition.py:538:24: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_inductor/decomposition.py:547:22: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/decomposition.py:548:16: error[unresolved-attribute] Module `torch` has no member `any` +torch/_inductor/decomposition.py:558:22: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/decomposition.py:559:16: error[unresolved-attribute] Module `torch` has no member `all` +torch/_inductor/decomposition.py:570:12: error[unresolved-attribute] Module `torch` has no member `narrow` +torch/_inductor/decomposition.py:584:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/decomposition.py:607:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/decomposition.py:608:22: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_inductor/decomposition.py:609:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/decomposition.py:612:20: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_inductor/decomposition.py:612:42: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_inductor/decomposition.py:618:25: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_inductor/decomposition.py:619:18: error[unresolved-attribute] Module `torch` has no member `full` +torch/_inductor/decomposition.py:631:26: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/decomposition.py:633:18: error[unresolved-attribute] Module `torch` has no member `full` +torch/_inductor/decomposition.py:651:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/decomposition.py:652:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/decomposition.py:653:20: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_inductor/decomposition.py:653:42: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_inductor/decomposition.py:659:25: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_inductor/decomposition.py:681:23: error[unresolved-attribute] Module `torch` has no member `rand` +torch/_inductor/decomposition.py:686:23: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_inductor/decomposition.py:752:37: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/decomposition.py:754:64: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/decomposition.py:756:64: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/decomposition.py:760:32: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/decomposition.py:778:21: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/decomposition.py:780:43: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/decomposition.py:846:41: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_inductor/decomposition.py:911:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/_inductor/decomposition.py:921:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/decomposition.py:923:24: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/_inductor/decomposition.py:925:13: error[unresolved-attribute] Module `torch` has no member `max` +torch/_inductor/decomposition.py:926:30: error[unresolved-attribute] Module `torch` has no member `round` +torch/_inductor/decomposition.py:926:62: error[unresolved-attribute] Module `torch` has no member `int` +torch/_inductor/decomposition.py:927:18: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_inductor/decomposition.py:928:21: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/decomposition.py:928:51: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/decomposition.py:939:17: error[unresolved-attribute] Module `torch` has no member `index_put` +torch/_inductor/decomposition.py:962:18: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/decomposition.py:965:20: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_inductor/decomposition.py:992:16: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/_inductor/decomposition.py:995:22: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/_inductor/decomposition.py:998:22: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_inductor/decomposition.py:1017:18: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/decomposition.py:1050:19: error[invalid-assignment] Object of type `Sequence[int]` is not assignable to `list[int]` +torch/_inductor/decomposition.py:1052:16: error[invalid-assignment] Object of type `Sequence[int]` is not assignable to `int | list[int]` +torch/_inductor/decomposition.py:1054:15: error[invalid-assignment] Object of type `Sequence[int]` is not assignable to `int | list[int]` +torch/_inductor/decomposition.py:1056:14: error[invalid-assignment] Object of type `Sequence[int]` is not assignable to `int | list[int] | None` +torch/_inductor/decomposition.py:1061:9: error[unresolved-attribute] Module `torch._inductor` has no member `lowering` +torch/_inductor/decomposition.py:1064:26: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_inductor/decomposition.py:1064:38: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/decomposition.py:1124:63: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/decomposition.py:1145:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/decomposition.py:1160:25: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_inductor/decomposition.py:1165:18: error[unresolved-attribute] Module `torch` has no member `where` +torch/_inductor/decomposition.py:1166:21: error[unresolved-attribute] Module `torch` has no member `where` +torch/_inductor/decomposition.py:1186:29: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/decomposition.py:1186:42: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/decomposition.py:1189:11: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_inductor/decomposition.py:1190:15: error[unresolved-attribute] Module `torch` has no member `searchsorted` +torch/_inductor/decomposition.py:1191:49: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/decomposition.py:1193:12: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_inductor/decomposition.py:1215:14: error[invalid-assignment] Object of type `int` is not assignable to `tuple[int]` +torch/_inductor/decomposition.py:1217:15: error[invalid-assignment] Object of type `int` is not assignable to `tuple[int]` +torch/_inductor/decomposition.py:1219:16: error[invalid-assignment] Object of type `int` is not assignable to `tuple[int]` +torch/_inductor/dependencies.py:215:35: error[invalid-argument-type] Argument is incorrect: Expected `tuple[Symbol, ...]`, found `tuple[Expr, ...]` +torch/_inductor/dependencies.py:227:69: error[invalid-argument-type] Argument is incorrect: Expected `dict[Expr, Expr]`, found `dict[Symbol, Expr]` +torch/_inductor/dependencies.py:563:41: error[invalid-argument-type] Argument is incorrect: Expected `Expr`, found `Expr | tuple[Expr, ...] | @Todo` +torch/_inductor/dependencies.py:563:41: error[invalid-argument-type] Argument is incorrect: Expected `tuple[Symbol, ...]`, found `Expr | tuple[Expr, ...] | @Todo` +torch/_inductor/dependencies.py:563:41: error[invalid-argument-type] Argument is incorrect: Expected `tuple[Expr, ...]`, found `Expr | tuple[Expr, ...] | @Todo` +torch/_inductor/dependencies.py:563:41: error[invalid-argument-type] Argument is incorrect: Expected `str | None`, found `Expr | tuple[Expr, ...] | @Todo` +torch/_inductor/dependencies.py:572:42: error[invalid-argument-type] Argument is incorrect: Expected `Expr`, found `Expr | tuple[Expr, ...] | @Todo` +torch/_inductor/dependencies.py:572:42: error[invalid-argument-type] Argument is incorrect: Expected `tuple[Symbol, ...]`, found `Expr | tuple[Expr, ...] | @Todo` +torch/_inductor/dependencies.py:572:42: error[invalid-argument-type] Argument is incorrect: Expected `tuple[Expr, ...]`, found `Expr | tuple[Expr, ...] | @Todo` +torch/_inductor/dependencies.py:572:42: error[invalid-argument-type] Argument is incorrect: Expected `str | None`, found `Expr | tuple[Expr, ...] | @Todo` +torch/_inductor/dependencies.py:572:69: error[parameter-already-assigned] Multiple values provided for parameter `mode` +torch/_inductor/dependencies.py:577:61: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dependencies.py:578:44: error[invalid-argument-type] Argument is incorrect: Expected `Expr`, found `Expr | tuple[Expr, ...] | @Todo` +torch/_inductor/dependencies.py:578:44: error[invalid-argument-type] Argument is incorrect: Expected `tuple[Symbol, ...]`, found `Expr | tuple[Expr, ...] | @Todo` +torch/_inductor/dependencies.py:578:44: error[invalid-argument-type] Argument is incorrect: Expected `tuple[Expr, ...]`, found `Expr | tuple[Expr, ...] | @Todo` +torch/_inductor/dependencies.py:585:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dependencies.py:635:26: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `Sequence[Expr]`, found `list[int]` +torch/_inductor/dependencies.py:636:38: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `(int, /) -> Unknown`, found `(Expr, /) -> Symbol` +torch/_inductor/dependencies.py:721:13: error[invalid-argument-type] Argument to bound method `bucketize` is incorrect: Expected `tuple[str, Expr, Expr, Expr]`, found `tuple[Any, None, None, None]` +torch/_inductor/dependencies.py:731:18: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/dependencies.py:840:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dependencies.py:841:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/distributed_autotune.py:37:15: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/_inductor/distributed_autotune.py:61:26: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/_inductor/distributed_autotune.py:62:32: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/_inductor/distributed_autotune.py:65:28: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/_inductor/distributed_autotune.py:73:25: error[unresolved-attribute] Module `torch._inductor` has no member `scheduler` +torch/_inductor/distributed_autotune.py:129:12: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/distributed_autotune.py:200:5: warning[possibly-missing-attribute] Member `all_gather_object` may be missing on module `torch.distributed` +torch/_inductor/distributed_autotune.py:312:16: error[unresolved-attribute] Module `torch._inductor` has no member `scheduler` +torch/_inductor/distributed_autotune.py:363:16: error[unresolved-attribute] Module `torch._inductor` has no member `scheduler` +torch/_inductor/dtype_propagation.py:22:24: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:34:27: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:39:20: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/dtype_propagation.py:41:20: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/dtype_propagation.py:44:16: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/_inductor/dtype_propagation.py:66:36: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/_inductor/dtype_propagation.py:68:28: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/_inductor/dtype_propagation.py:110:19: error[unresolved-attribute] Module `torch._inductor` has no member `codegen` +torch/_inductor/dtype_propagation.py:124:74: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/dtype_propagation.py:138:10: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:142:46: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:142:62: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:148:52: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:148:68: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:152:46: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:156:67: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:157:16: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/dtype_propagation.py:162:10: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:174:57: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:178:45: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:178:61: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:181:26: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/dtype_propagation.py:181:39: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/dtype_propagation.py:191:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:192:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:194:10: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:199:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:199:53: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:200:10: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:204:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:208:42: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:212:46: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:216:42: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:220:42: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:226:10: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:227:16: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/dtype_propagation.py:230:42: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:231:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/dtype_propagation.py:234:41: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:235:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/dtype_propagation.py:243:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:243:40: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:244:10: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:261:35: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:265:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:271:41: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:271:57: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:275:50: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:282:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:285:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:289:43: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:293:42: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:293:58: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:297:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:301:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:301:50: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:303:37: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/dtype_propagation.py:307:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:311:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:315:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:323:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:327:10: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:331:45: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:335:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:341:42: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:341:58: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:345:42: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:345:58: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:349:47: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:353:47: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:359:16: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/dtype_propagation.py:362:42: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:364:16: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/dtype_propagation.py:368:47: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/dtype_propagation.py:373:45: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/dtype_propagation.py:387:42: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/exc.py:136:23: error[invalid-type-form] Variable of type `type` is not allowed in a type expression +torch/_inductor/freezing.py:31:18: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_inductor/freezing.py:108:27: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/freezing.py:157:52: error[invalid-argument-type] Argument expression after ** must be a mapping type: Found `Unknown | None` +torch/_inductor/freezing.py:171:10: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_inductor/freezing.py:174:14: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/freezing.py:185:22: error[unresolved-attribute] Module `torch` has no member `_dispatch` +torch/_inductor/freezing.py:194:10: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_inductor/freezing.py:202:18: error[unresolved-attribute] Module `torch` has no member `_dispatch` +torch/_inductor/freezing.py:223:22: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/_inductor/freezing.py:279:43: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_inductor/freezing.py:287:39: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_inductor/fx_passes/b2b_gemm.py:447:9: error[unresolved-attribute] Module `torch` has no member `mm` +torch/_inductor/fx_passes/b2b_gemm.py:447:40: error[unresolved-attribute] Module `torch` has no member `mm` +torch/_inductor/fx_passes/b2b_gemm.py:449:9: error[unresolved-attribute] Module `torch` has no member `mm` +torch/_inductor/fx_passes/b2b_gemm.py:449:43: error[unresolved-attribute] Module `torch` has no member `mm` +torch/_inductor/fx_passes/b2b_gemm.py:515:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/fx_passes/b2b_gemm.py:515:44: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/fx_passes/b2b_gemm.py:527:8: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/fx_passes/b2b_gemm.py:528:8: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/fx_passes/b2b_gemm.py:529:8: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/fx_passes/b2b_gemm.py:532:6: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/fx_passes/b2b_gemm.py:581:5: error[invalid-argument-type] Argument to function `register_graph_pattern` is incorrect: Expected `_PassDictsType`, found `PatternMatcherPass` +torch/_inductor/fx_passes/b2b_gemm.py:590:18: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_inductor/fx_passes/binary_folding.py:19:39: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/binary_folding.py:19:54: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/binary_folding.py:29:51: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/binary_folding.py:154:13: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/binary_folding.py:159:13: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/binary_folding.py:160:13: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/binary_folding.py:165:13: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/binary_folding.py:170:21: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/binary_folding.py:171:21: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/binary_folding.py:214:57: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/binary_folding.py:214:72: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/binary_folding.py:268:57: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/binary_folding.py:268:72: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/binary_folding.py:310:18: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_inductor/fx_passes/binary_folding.py:311:32: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/fx_passes/ddp_fusion.py:65:12: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/ddp_fusion.py:65:30: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/ddp_fusion.py:131:12: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/ddp_fusion.py:131:30: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/ddp_fusion.py:442:27: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/ddp_fusion.py:448:12: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/_inductor/fx_passes/decompose_mem_bound_mm.py:230:16: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_inductor/fx_passes/decompose_mem_bound_mm.py:255:13: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_inductor/fx_passes/decompose_mem_bound_mm.py:277:16: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:44:27: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:49:21: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:54:19: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:61:20: error[unresolved-attribute] Module `torch` has no member `rsqrt` +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:109:27: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:112:21: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:115:19: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:122:20: error[unresolved-attribute] Module `torch` has no member `rsqrt` +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:166:9: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:167:9: error[unresolved-attribute] Module `torch` has no member `conv1d` +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:168:9: error[unresolved-attribute] Module `torch` has no member `conv2d` +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:169:9: error[unresolved-attribute] Module `torch` has no member `conv3d` +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:170:9: error[unresolved-attribute] Module `torch` has no member `conv_transpose1d` +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:171:9: error[unresolved-attribute] Module `torch` has no member `conv_transpose2d` +torch/_inductor/fx_passes/efficient_conv_bn_eval.py:172:9: error[unresolved-attribute] Module `torch` has no member `conv_transpose3d` +torch/_inductor/fx_passes/freezing_patterns.py:51:5: error[unresolved-attribute] Module `torch._inductor` has no member `fx_passes` +torch/_inductor/fx_passes/freezing_patterns.py:65:5: error[unresolved-attribute] Module `torch._inductor` has no member `fx_passes` +torch/_inductor/fx_passes/freezing_patterns.py:78:9: error[unresolved-attribute] Module `torch._C` has no member `_has_mkldnn` +torch/_inductor/fx_passes/freezing_patterns.py:82:36: warning[possibly-missing-import] Member `_eliminate_duplicate_packed_nodes` of module `torch._inductor.fx_passes.mkldnn_fusion` may be missing +torch/_inductor/fx_passes/freezing_patterns.py:93:8: error[unresolved-attribute] Module `torch._C` has no member `_has_mkldnn` +torch/_inductor/fx_passes/freezing_patterns.py:94:36: warning[possibly-missing-import] Member `_mkldnn_weight_pack_init` of module `torch._inductor.fx_passes.mkldnn_fusion` may be missing +torch/_inductor/fx_passes/freezing_patterns.py:111:9: error[invalid-argument-type] Argument to function `register_graph_pattern` is incorrect: Expected `_PassDictsType`, found `Unknown | PatternMatcherPass` +torch/_inductor/fx_passes/freezing_patterns.py:120:9: error[invalid-argument-type] Argument to function `register_graph_pattern` is incorrect: Expected `_PassDictsType`, found `PatternMatcherPass` +torch/_inductor/fx_passes/freezing_patterns.py:133:29: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/freezing_patterns.py:134:31: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/freezing_patterns.py:154:16: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/fx_passes/freezing_patterns.py:160:52: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/freezing_patterns.py:200:17: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/freezing_patterns.py:201:17: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/freezing_patterns.py:213:9: error[invalid-argument-type] Argument to function `register_replacement` is incorrect: Expected `TraceFn`, found `def fwd_only(fn: (...) -> Any, args: Sequence[Any], *, run_functional_passes: bool = Literal[True], get_decomp_fn: ((...) -> Any) | None = None) -> GraphModule` +torch/_inductor/fx_passes/freezing_patterns.py:215:9: error[invalid-argument-type] Argument to function `register_replacement` is incorrect: Expected `_PassDictsType | Sequence[_PassDictsType]`, found `Unknown | PatternMatcherPass` +torch/_inductor/fx_passes/freezing_patterns.py:224:17: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/freezing_patterns.py:235:9: error[invalid-argument-type] Argument to function `register_replacement` is incorrect: Expected `TraceFn`, found `def fwd_only(fn: (...) -> Any, args: Sequence[Any], *, run_functional_passes: bool = Literal[True], get_decomp_fn: ((...) -> Any) | None = None) -> GraphModule` +torch/_inductor/fx_passes/freezing_patterns.py:237:9: error[invalid-argument-type] Argument to function `register_replacement` is incorrect: Expected `_PassDictsType | Sequence[_PassDictsType]`, found `Unknown | PatternMatcherPass` +torch/_inductor/fx_passes/freezing_patterns.py:246:17: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/freezing_patterns.py:257:9: error[invalid-argument-type] Argument to function `register_replacement` is incorrect: Expected `TraceFn`, found `def fwd_only(fn: (...) -> Any, args: Sequence[Any], *, run_functional_passes: bool = Literal[True], get_decomp_fn: ((...) -> Any) | None = None) -> GraphModule` +torch/_inductor/fx_passes/freezing_patterns.py:259:9: error[invalid-argument-type] Argument to function `register_replacement` is incorrect: Expected `_PassDictsType | Sequence[_PassDictsType]`, found `Unknown | PatternMatcherPass` +torch/_inductor/fx_passes/freezing_patterns.py:272:17: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/freezing_patterns.py:273:17: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/freezing_patterns.py:283:9: error[invalid-argument-type] Argument to function `register_replacement` is incorrect: Expected `TraceFn`, found `def fwd_only(fn: (...) -> Any, args: Sequence[Any], *, run_functional_passes: bool = Literal[True], get_decomp_fn: ((...) -> Any) | None = None) -> GraphModule` +torch/_inductor/fx_passes/freezing_patterns.py:285:9: error[invalid-argument-type] Argument to function `register_replacement` is incorrect: Expected `_PassDictsType | Sequence[_PassDictsType]`, found `Unknown | PatternMatcherPass` +torch/_inductor/fx_passes/freezing_patterns.py:302:5: error[invalid-argument-type] Argument to function `register_graph_pattern` is incorrect: Expected `_PassDictsType`, found `Unknown | PatternMatcherPass` +torch/_inductor/fx_passes/fuse_attention.py:26:9: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/fuse_attention.py:48:9: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/fuse_attention.py:70:9: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/fuse_attention.py:92:9: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/fuse_attention.py:111:19: error[unresolved-attribute] Module `torch` has no member `softmax` +torch/_inductor/fx_passes/fuse_attention.py:131:19: error[unresolved-attribute] Module `torch` has no member `softmax` +torch/_inductor/fx_passes/fuse_attention.py:134:19: error[unresolved-attribute] Module `torch` has no member `dropout` +torch/_inductor/fx_passes/fuse_attention.py:158:18: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/fuse_attention.py:159:19: error[unresolved-attribute] Module `torch` has no member `softmax` +torch/_inductor/fx_passes/fuse_attention.py:160:19: error[unresolved-attribute] Module `torch` has no member `dropout` +torch/_inductor/fx_passes/fuse_attention.py:161:34: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/fuse_attention.py:191:18: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/fuse_attention.py:192:19: error[unresolved-attribute] Module `torch` has no member `softmax` +torch/_inductor/fx_passes/fuse_attention.py:193:34: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/fuse_attention.py:218:18: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/fuse_attention.py:219:19: error[unresolved-attribute] Module `torch` has no member `softmax` +torch/_inductor/fx_passes/fuse_attention.py:220:19: error[unresolved-attribute] Module `torch` has no member `dropout` +torch/_inductor/fx_passes/fuse_attention.py:221:34: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/fuse_attention.py:247:18: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/fuse_attention.py:248:19: error[unresolved-attribute] Module `torch` has no member `softmax` +torch/_inductor/fx_passes/fuse_attention.py:249:34: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/fuse_attention.py:273:12: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/fuse_attention.py:294:9: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/fuse_attention.py:313:19: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/_inductor/fx_passes/fuse_attention.py:315:12: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/_inductor/fx_passes/fuse_attention.py:336:10: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/fuse_attention.py:366:18: error[unresolved-attribute] Module `torch` has no member `full` +torch/_inductor/fx_passes/fuse_attention.py:368:12: error[unresolved-attribute] Module `torch` has no member `softmax` +torch/_inductor/fx_passes/fuse_attention.py:385:38: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/fx_passes/fuse_attention.py:399:14: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/fuse_attention.py:431:18: error[unresolved-attribute] Module `torch` has no member `full` +torch/_inductor/fx_passes/fuse_attention.py:435:13: error[unresolved-attribute] Module `torch` has no member `softmax` +torch/_inductor/fx_passes/fuse_attention.py:455:38: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/fx_passes/fuse_attention.py:468:20: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/fuse_attention.py:469:17: error[unresolved-attribute] Module `torch` has no member `full` +torch/_inductor/fx_passes/fuse_attention.py:476:25: error[unresolved-attribute] Module `torch` has no member `full` +torch/_inductor/fx_passes/fuse_attention.py:477:13: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_inductor/fx_passes/fuse_attention.py:479:20: error[unresolved-attribute] Module `torch` has no member `where` +torch/_inductor/fx_passes/fuse_attention.py:512:20: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/fuse_attention.py:513:17: error[unresolved-attribute] Module `torch` has no member `full` +torch/_inductor/fx_passes/fuse_attention.py:520:25: error[unresolved-attribute] Module `torch` has no member `full` +torch/_inductor/fx_passes/fuse_attention.py:521:13: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_inductor/fx_passes/fuse_attention.py:523:20: error[unresolved-attribute] Module `torch` has no member `where` +torch/_inductor/fx_passes/fuse_attention.py:531:18: error[unresolved-attribute] Module `torch` has no member `full` +torch/_inductor/fx_passes/fuse_attention.py:532:17: error[unresolved-attribute] Module `torch` has no member `where` +torch/_inductor/fx_passes/fuse_attention.py:553:18: error[unresolved-attribute] Module `torch` has no member `full` +torch/_inductor/fx_passes/fuse_attention.py:557:13: error[unresolved-attribute] Module `torch` has no member `softmax` +torch/_inductor/fx_passes/fuse_attention.py:577:38: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/fx_passes/fuse_attention.py:589:13: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/fuse_attention.py:621:13: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/fuse_attention.py:659:13: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/fuse_attention.py:703:20: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/_inductor/fx_passes/fuse_attention.py:707:23: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/fx_passes/fuse_attention.py:708:40: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/fx_passes/fuse_attention.py:709:19: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/_inductor/fx_passes/fuse_attention.py:749:39: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/fx_passes/fuse_attention.py:750:39: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/fx_passes/fuse_attention.py:820:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/fuse_attention.py:823:31: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/fuse_attention.py:824:31: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/fuse_attention.py:826:34: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/fuse_attention.py:828:31: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/fx_passes/fuse_attention.py:835:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/fuse_attention.py:842:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/fuse_attention.py:844:35: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/fuse_attention.py:848:19: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/fx_passes/fuse_attention.py:848:32: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/fx_passes/fuse_attention.py:851:50: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/fx_passes/fuse_attention.py:852:49: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/fx_passes/fuse_attention.py:854:50: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/fx_passes/fuse_attention.py:855:49: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/fx_passes/fuse_attention.py:861:58: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/fx_passes/fuse_attention.py:862:57: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/fx_passes/fuse_attention.py:1071:21: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/fx_passes/fuse_attention.py:1098:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/fx_passes/fuse_attention.py:1102:42: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/group_batch_fusion.py:26:12: error[unresolved-import] Cannot resolve imported module `deeplearning.fbgemm.fbgemm_gpu.fb.inductor_lowerings` +torch/_inductor/fx_passes/group_batch_fusion.py:69:58: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/group_batch_fusion.py:74:18: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/group_batch_fusion.py:75:29: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/group_batch_fusion.py:76:20: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_inductor/fx_passes/group_batch_fusion.py:88:18: error[unresolved-attribute] Module `torch` has no member `add` +torch/_inductor/fx_passes/group_batch_fusion.py:89:29: error[unresolved-attribute] Module `torch` has no member `add` +torch/_inductor/fx_passes/group_batch_fusion.py:90:20: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_inductor/fx_passes/group_batch_fusion.py:91:29: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_inductor/fx_passes/group_batch_fusion.py:241:37: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/group_batch_fusion.py:244:38: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/group_batch_fusion.py:457:33: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/group_batch_fusion.py:460:33: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/group_batch_fusion.py:529:17: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/group_batch_fusion.py:531:49: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/group_batch_fusion.py:533:17: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/_inductor/fx_passes/group_batch_fusion.py:535:56: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/_inductor/fx_passes/group_batch_fusion.py:540:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/group_batch_fusion.py:542:52: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/group_batch_fusion.py:544:21: error[unresolved-attribute] Module `torch` has no member `addmm` +torch/_inductor/fx_passes/group_batch_fusion.py:547:51: error[unresolved-attribute] Module `torch` has no member `addmm` +torch/_inductor/fx_passes/group_batch_fusion.py:554:21: error[unresolved-attribute] Module `torch` has no member `mm` +torch/_inductor/fx_passes/group_batch_fusion.py:557:51: error[unresolved-attribute] Module `torch` has no member `mm` +torch/_inductor/fx_passes/group_batch_fusion.py:668:17: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/group_batch_fusion.py:672:17: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/group_batch_fusion.py:676:17: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/_inductor/fx_passes/group_batch_fusion.py:678:54: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/_inductor/fx_passes/group_batch_fusion.py:683:21: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/_inductor/fx_passes/group_batch_fusion.py:686:45: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/_inductor/fx_passes/group_batch_fusion.py:693:21: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/group_batch_fusion.py:697:21: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/_inductor/fx_passes/group_batch_fusion.py:699:58: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/_inductor/fx_passes/group_batch_fusion.py:703:21: error[unresolved-attribute] Module `torch` has no member `baddbmm` +torch/_inductor/fx_passes/group_batch_fusion.py:709:49: error[unresolved-attribute] Module `torch` has no member `baddbmm` +torch/_inductor/fx_passes/group_batch_fusion.py:723:45: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_inductor/fx_passes/group_batch_fusion.py:809:17: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/group_batch_fusion.py:814:21: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/group_batch_fusion.py:821:21: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/group_batch_fusion.py:837:21: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_inductor/fx_passes/group_batch_fusion.py:842:21: warning[possibly-missing-attribute] Attribute `meta` may be missing on object of type `Unknown | None` +torch/_inductor/fx_passes/group_batch_fusion.py:844:21: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_inductor/fx_passes/group_batch_fusion.py:848:21: error[unresolved-attribute] Module `torch` has no member `add` +torch/_inductor/fx_passes/group_batch_fusion.py:853:21: warning[possibly-missing-attribute] Attribute `meta` may be missing on object of type `Unknown | None` +torch/_inductor/fx_passes/group_batch_fusion.py:855:21: error[unresolved-attribute] Module `torch` has no member `add` +torch/_inductor/fx_passes/group_batch_fusion.py:861:21: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_inductor/fx_passes/group_batch_fusion.py:866:21: warning[possibly-missing-attribute] Attribute `meta` may be missing on object of type `Unknown | None` +torch/_inductor/fx_passes/group_batch_fusion.py:868:21: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_inductor/fx_passes/group_batch_fusion.py:874:21: error[unresolved-attribute] Module `torch` has no member `add` +torch/_inductor/fx_passes/group_batch_fusion.py:879:21: warning[possibly-missing-attribute] Attribute `meta` may be missing on object of type `Unknown | None` +torch/_inductor/fx_passes/group_batch_fusion.py:881:21: error[unresolved-attribute] Module `torch` has no member `add` +torch/_inductor/fx_passes/group_batch_fusion.py:885:17: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_inductor/fx_passes/group_batch_fusion.py:892:20: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_inductor/fx_passes/group_batch_fusion.py:950:17: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/group_batch_fusion.py:973:17: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_inductor/fx_passes/group_batch_fusion.py:975:47: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_inductor/fx_passes/group_batch_fusion.py:1087:17: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/group_batch_fusion.py:1099:17: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_inductor/fx_passes/group_batch_fusion.py:1101:47: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_inductor/fx_passes/group_batch_fusion.py:1116:26: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/_inductor/fx_passes/group_batch_fusion.py:1122:26: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/_inductor/fx_passes/group_batch_fusion.py:1134:26: error[unresolved-attribute] Module `torch` has no member `detach` +torch/_inductor/fx_passes/group_batch_fusion.py:1140:26: error[unresolved-attribute] Module `torch` has no member `nan_to_num` +torch/_inductor/fx_passes/group_batch_fusion.py:1146:26: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_inductor/fx_passes/joint_graph.py:73:10: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_inductor/fx_passes/joint_graph.py:170:10: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_inductor/fx_passes/joint_graph.py:172:41: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/fx_passes/joint_graph.py:278:17: error[unresolved-attribute] Module `torch` has no member `full` +torch/_inductor/fx_passes/joint_graph.py:363:13: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_inductor/fx_passes/joint_graph.py:382:10: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_inductor/fx_passes/joint_graph.py:422:60: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/joint_graph.py:427:17: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/fx_passes/joint_graph.py:428:17: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_inductor/fx_passes/joint_graph.py:429:17: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_inductor/fx_passes/joint_graph.py:430:17: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_inductor/fx_passes/joint_graph.py:472:35: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/fx_passes/joint_graph.py:572:9: error[unresolved-attribute] Module `torch.fx` has no member `passes` +torch/_inductor/fx_passes/joint_graph.py:645:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/fx_passes/joint_graph.py:689:50: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/fx_passes/joint_graph.py:689:71: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/fx_passes/joint_graph.py:693:15: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/joint_graph.py:693:30: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/joint_graph.py:693:46: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/joint_graph.py:693:61: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/fx_passes/joint_graph.py:816:16: error[unresolved-attribute] Module `torch` has no member `mm` +torch/_inductor/fx_passes/joint_graph.py:911:19: error[unresolved-attribute] Module `torch` has no member `scalar_tensor` +torch/_inductor/fx_passes/joint_graph.py:912:20: error[unresolved-attribute] Module `torch` has no member `where` +torch/_inductor/fx_passes/joint_graph.py:915:16: error[unresolved-attribute] Module `torch` has no member `amax` +torch/_inductor/fx_passes/joint_graph.py:941:19: error[unresolved-attribute] Module `torch` has no member `scalar_tensor` +torch/_inductor/fx_passes/joint_graph.py:942:20: error[unresolved-attribute] Module `torch` has no member `where` +torch/_inductor/fx_passes/joint_graph.py:945:16: error[unresolved-attribute] Module `torch` has no member `amax` +torch/_inductor/fx_passes/memory_estimator.py:20:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/fx_passes/memory_estimator.py:150:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/fx_passes/memory_estimator.py:329:34: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/fx_passes/micro_pipeline_tp.py:459:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/fx_passes/micro_pipeline_tp.py:526:32: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/micro_pipeline_tp.py:632:16: warning[possibly-missing-attribute] Member `is_nccl_available` may be missing on module `torch.distributed` +torch/_inductor/fx_passes/micro_pipeline_tp.py:878:16: warning[possibly-missing-attribute] Member `is_nccl_available` may be missing on module `torch.distributed` +torch/_inductor/fx_passes/misc_patterns.py:34:17: error[unresolved-attribute] Module `torch` has no member `randperm` +torch/_inductor/fx_passes/misc_patterns.py:35:16: error[unresolved-attribute] Module `torch` has no member `index_add` +torch/_inductor/fx_passes/misc_patterns.py:38:17: error[unresolved-attribute] Module `torch` has no member `randperm` +torch/_inductor/fx_passes/misc_patterns.py:51:10: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/misc_patterns.py:51:44: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/misc_patterns.py:53:9: error[invalid-argument-type] Argument to function `register_replacement` is incorrect: Expected `TraceFn`, found `def fwd_only(fn: (...) -> Any, args: Sequence[Any], *, run_functional_passes: bool = Literal[True], get_decomp_fn: ((...) -> Any) | None = None) -> GraphModule` +torch/_inductor/fx_passes/misc_patterns.py:59:17: error[unresolved-attribute] Module `torch` has no member `randperm` +torch/_inductor/fx_passes/misc_patterns.py:63:17: error[unresolved-attribute] Module `torch` has no member `randperm` +torch/_inductor/fx_passes/misc_patterns.py:71:10: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/misc_patterns.py:73:9: error[invalid-argument-type] Argument to function `register_replacement` is incorrect: Expected `TraceFn`, found `def fwd_only(fn: (...) -> Any, args: Sequence[Any], *, run_functional_passes: bool = Literal[True], get_decomp_fn: ((...) -> Any) | None = None) -> GraphModule` +torch/_inductor/fx_passes/misc_patterns.py:110:30: error[unresolved-attribute] Module `torch.fx` has no member `operator_schemas` +torch/_inductor/fx_passes/mkldnn_fusion.py:42:4: error[unresolved-attribute] Module `torch._C` has no member `_has_mkldnn` +torch/_inductor/fx_passes/mkldnn_fusion.py:293:26: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/mkldnn_fusion.py:295:28: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/mkldnn_fusion.py:441:51: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/fx_passes/mkldnn_fusion.py:481:38: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/mkldnn_fusion.py:484:49: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/fx_passes/mkldnn_fusion.py:501:76: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/fx_passes/mkldnn_fusion.py:531:38: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/mkldnn_fusion.py:534:49: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/fx_passes/mkldnn_fusion.py:550:76: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/fx_passes/mkldnn_fusion.py:602:25: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/mkldnn_fusion.py:610:21: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/mkldnn_fusion.py:614:21: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/mkldnn_fusion.py:618:21: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/mkldnn_fusion.py:871:28: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/mkldnn_fusion.py:871:44: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/mkldnn_fusion.py:1037:18: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/mkldnn_fusion.py:1135:62: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/mkldnn_fusion.py:1141:62: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/mkldnn_fusion.py:1175:39: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/mkldnn_fusion.py:1176:43: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/mkldnn_fusion.py:1181:39: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/mkldnn_fusion.py:1182:43: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/mkldnn_fusion.py:1234:39: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/fx_passes/mkldnn_fusion.py:1235:43: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/fx_passes/mkldnn_fusion.py:1239:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/mkldnn_fusion.py:1240:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/mkldnn_fusion.py:1247:71: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/mkldnn_fusion.py:1255:21: error[unresolved-attribute] Module `torch._C` has no member `has_mkl` +torch/_inductor/fx_passes/mkldnn_fusion.py:1277:39: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/mkldnn_fusion.py:1278:43: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/mkldnn_fusion.py:1283:39: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/mkldnn_fusion.py:1284:43: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/mkldnn_fusion.py:1463:21: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/mkldnn_fusion.py:1464:21: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/mkldnn_fusion.py:1470:68: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/mkldnn_fusion.py:1507:13: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/_inductor/fx_passes/mkldnn_fusion.py:1508:13: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/_inductor/fx_passes/mkldnn_fusion.py:1513:12: error[unresolved-attribute] Module `torch._C` has no member `has_mkl` +torch/_inductor/fx_passes/node_runtime_estimation.py:51:12: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/_inductor/fx_passes/node_runtime_estimation.py:54:10: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/_inductor/fx_passes/node_runtime_estimation.py:55:8: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/_inductor/fx_passes/node_runtime_estimation.py:81:9: warning[possibly-missing-attribute] Member `barrier` may be missing on module `torch.distributed` +torch/_inductor/fx_passes/node_runtime_estimation.py:106:10: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_inductor/fx_passes/node_runtime_estimation.py:159:5: error[unresolved-attribute] Module `torch.utils` has no member `_pytree` +torch/_inductor/fx_passes/numeric_utils.py:61:16: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/_inductor/fx_passes/numeric_utils.py:90:16: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/_inductor/fx_passes/overlap_scheduling.py:71:12: error[unresolved-attribute] Module `torch._inductor` has no member `comm_analysis` +torch/_inductor/fx_passes/overlap_scheduling.py:83:12: error[unresolved-attribute] Module `torch.utils` has no member `flop_counter` +torch/_inductor/fx_passes/overlap_scheduling.py:100:13: error[unresolved-attribute] Module `torch._inductor` has no member `runtime` +torch/_inductor/fx_passes/overlap_scheduling.py:116:29: error[unresolved-attribute] Module `torch._inductor` has no member `fx_utils` +torch/_inductor/fx_passes/overlap_scheduling.py:139:24: error[unresolved-attribute] Module `torch.utils` has no member `_pytree` +torch/_inductor/fx_passes/overlap_scheduling.py:172:30: error[unresolved-attribute] Module `torch._inductor` has no member `codecache` +torch/_inductor/fx_passes/overlap_scheduling.py:173:12: error[unresolved-attribute] Module `torch._inductor` has no member `codecache` +torch/_inductor/fx_passes/overlap_scheduling.py:376:23: error[unresolved-attribute] Module `torch._inductor` has no member `comm_analysis` +torch/_inductor/fx_passes/overlap_scheduling.py:381:27: error[unresolved-attribute] Module `torch._inductor` has no member `comm_analysis` +torch/_inductor/fx_passes/overlap_scheduling.py:461:22: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/_inductor/fx_passes/overlap_scheduling.py:468:13: warning[possibly-missing-attribute] Member `all_gather_object` may be missing on module `torch.distributed` +torch/_inductor/fx_passes/overlap_scheduling.py:471:42: error[unresolved-attribute] Module `torch` has no member `median` +torch/_inductor/fx_passes/overlap_scheduling.py:472:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/fx_passes/overlap_scheduling.py:627:58: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_inductor/fx_passes/pad_mm.py:69:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/fx_passes/pad_mm.py:70:17: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/pad_mm.py:70:43: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/fx_passes/pad_mm.py:70:66: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/pad_mm.py:72:19: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/pad_mm.py:72:45: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/fx_passes/pad_mm.py:114:9: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/fx_passes/pad_mm.py:137:12: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/pad_mm.py:217:56: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/fx_passes/pad_mm.py:225:18: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/pad_mm.py:251:24: error[unresolved-attribute] Module `torch._inductor` has no member `codecache` +torch/_inductor/fx_passes/pad_mm.py:252:12: error[unresolved-attribute] Module `torch._inductor` has no member `codecache` +torch/_inductor/fx_passes/pad_mm.py:279:40: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/pad_mm.py:279:69: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/fx_passes/pad_mm.py:284:26: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/pad_mm.py:351:11: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/fx_passes/pad_mm.py:365:38: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/fx_passes/pad_mm.py:366:22: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/fx_passes/pad_mm.py:375:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/fx_passes/pad_mm.py:377:32: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/fx_passes/pad_mm.py:381:18: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/pad_mm.py:405:13: error[unresolved-attribute] Module `torch._inductor.runtime` has no member `benchmarking` +torch/_inductor/fx_passes/pad_mm.py:443:17: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/pad_mm.py:455:12: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/fx_passes/pad_mm.py:458:12: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/fx_passes/pad_mm.py:467:35: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/fx_passes/pad_mm.py:724:8: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/fx_passes/pad_mm.py:883:31: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/pad_mm.py:884:31: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/pad_mm.py:886:31: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/pad_mm.py:887:31: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/pad_mm.py:889:31: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/pad_mm.py:927:13: error[invalid-argument-type] Argument to function `gen_register_replacement` is incorrect: Expected `TraceFn`, found `def joint_fwd_bwd(fn: (...) -> Any, args: Sequence[Any]) -> GraphModule` +torch/_inductor/fx_passes/pad_mm.py:940:13: error[invalid-argument-type] Argument to function `gen_register_replacement` is incorrect: Expected `TraceFn`, found `def fwd_only(fn: (...) -> Any, args: Sequence[Any], *, run_functional_passes: bool = Literal[True], get_decomp_fn: ((...) -> Any) | None = None) -> GraphModule` +torch/_inductor/fx_passes/post_grad.py:96:9: error[unresolved-attribute] Module `torch.fx` has no member `passes` +torch/_inductor/fx_passes/post_grad.py:119:8: error[unresolved-attribute] Module `torch._C` has no member `_has_mkldnn` +torch/_inductor/fx_passes/post_grad.py:125:40: warning[possibly-missing-import] Member `grouped_gemm_pass` of module `torch._inductor.fx_passes.mkldnn_fusion` may be missing +torch/_inductor/fx_passes/post_grad.py:398:24: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_inductor/fx_passes/post_grad.py:398:46: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/fx_passes/post_grad.py:398:66: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/fx_passes/post_grad.py:407:17: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_inductor/fx_passes/post_grad.py:597:24: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_inductor/fx_passes/post_grad.py:597:46: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/fx_passes/post_grad.py:597:66: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/fx_passes/post_grad.py:613:17: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_inductor/fx_passes/post_grad.py:691:8: error[unresolved-attribute] Module `torch._C` has no member `_has_mkldnn` +torch/_inductor/fx_passes/post_grad.py:693:36: warning[possibly-missing-import] Member `_mkldnn_fusion_init` of module `torch._inductor.fx_passes.mkldnn_fusion` may be missing +torch/_inductor/fx_passes/post_grad.py:705:10: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/post_grad.py:708:9: error[invalid-argument-type] Argument to function `register_replacement` is incorrect: Expected `TraceFn`, found `def fwd_only(fn: (...) -> Any, args: Sequence[Any], *, run_functional_passes: bool = Literal[True], get_decomp_fn: ((...) -> Any) | None = None) -> GraphModule` +torch/_inductor/fx_passes/post_grad.py:867:70: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/fx_passes/post_grad.py:868:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/post_grad.py:881:50: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/fx_passes/post_grad.py:903:12: error[unresolved-attribute] Module `torch._inductor` has no member `kernel` +torch/_inductor/fx_passes/post_grad.py:930:17: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/fx_passes/post_grad.py:934:15: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_inductor/fx_passes/post_grad.py:1049:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/fx_passes/post_grad.py:1117:41: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/fx_passes/post_grad.py:1677:54: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/fx_passes/post_grad.py:1677:66: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/fx_passes/post_grad.py:1782:49: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/fx_passes/post_grad.py:1812:37: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/fx_passes/post_grad.py:1839:45: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/fx_passes/post_grad.py:2001:9: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/fx_passes/post_grad.py:2002:13: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/fx_passes/pre_grad.py:11:43: warning[possibly-missing-import] Member `detect_fake_mode` of module `torch._dynamo.utils` may be missing +torch/_inductor/fx_passes/pre_grad.py:392:8: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_inductor/fx_passes/pre_grad.py:513:54: error[invalid-argument-type] Argument to function `fuse_conv_bn_eval` is incorrect: Expected `_BatchNorm`, found `Unknown | None` +torch/_inductor/fx_passes/pre_grad.py:573:29: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/_inductor/fx_passes/pre_grad.py:574:29: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/fx_passes/pre_grad.py:575:29: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/fx_passes/pre_grad.py:601:21: error[invalid-argument-type] Argument to function `fuse_conv_bn_weights` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/_inductor/fx_passes/pre_grad.py:603:21: error[invalid-argument-type] Argument to function `fuse_conv_bn_weights` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/_inductor/fx_passes/pre_grad.py:605:21: error[invalid-argument-type] Argument to function `fuse_conv_bn_weights` is incorrect: Expected `int | float`, found `Unknown | None` +torch/_inductor/fx_passes/pre_grad.py:647:32: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/_inductor/fx_passes/pre_grad.py:647:43: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/pre_grad.py:691:21: error[unresolved-attribute] Module `torch` has no member `relu` +torch/_inductor/fx_passes/pre_grad.py:691:33: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/_inductor/fx_passes/pre_grad.py:696:57: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/pre_grad.py:721:38: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/pre_grad.py:769:16: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/pre_grad.py:770:12: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/pre_grad.py:809:60: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/_inductor/fx_passes/pre_grad.py:810:60: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/pre_grad.py:866:16: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/pre_grad.py:867:12: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/pre_grad.py:877:12: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/fx_passes/quantization.py:77:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/fx_passes/quantization.py:78:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/fx_passes/quantization.py:79:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:80:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:81:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/fx_passes/quantization.py:115:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:115:37: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:121:22: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:367:29: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:367:44: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:434:33: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/fx_passes/quantization.py:434:45: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/fx_passes/quantization.py:434:58: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:434:73: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:473:29: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:473:44: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:602:36: warning[possibly-missing-import] Member `_can_be_inplace` of module `torch._inductor.fx_passes.mkldnn_fusion` may be missing +torch/_inductor/fx_passes/quantization.py:680:29: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:680:44: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:717:36: warning[possibly-missing-import] Member `_get_remaining_users` of module `torch._inductor.fx_passes.mkldnn_fusion` may be missing +torch/_inductor/fx_passes/quantization.py:724:38: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/fx_passes/quantization.py:724:51: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/fx_passes/quantization.py:780:36: warning[possibly-missing-import] Member `_can_be_inplace` of module `torch._inductor.fx_passes.mkldnn_fusion` may be missing +torch/_inductor/fx_passes/quantization.py:1111:24: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:1112:29: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/fx_passes/quantization.py:1113:29: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/fx_passes/quantization.py:1114:29: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/fx_passes/quantization.py:1115:33: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:1140:24: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:1141:33: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/fx_passes/quantization.py:1142:33: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:1379:47: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1381:26: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1381:41: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:1396:29: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1404:29: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1425:66: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1456:26: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1456:41: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:1545:26: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1545:41: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:1563:33: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1584:26: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1584:41: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:1599:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1698:25: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:1708:41: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1710:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1710:37: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:1731:11: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1733:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1733:37: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:1737:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1748:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1830:26: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1830:41: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:1863:53: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/quantization.py:1900:11: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1926:26: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:1926:41: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:1954:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:2057:25: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:2069:11: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:2074:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:2074:37: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:2116:11: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:2124:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:2124:37: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:2157:11: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:2188:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:2253:10: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:2253:25: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:2283:30: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:2295:10: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:2295:25: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:2297:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:2348:10: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:2348:25: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:2358:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:2387:10: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:2387:25: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:2389:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:2419:46: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/fx_passes/quantization.py:2760:72: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:2913:33: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/fx_passes/quantization.py:2913:45: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/fx_passes/quantization.py:2913:58: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:2913:73: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:2917:33: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/fx_passes/quantization.py:2917:64: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/fx_passes/quantization.py:2922:33: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/fx_passes/quantization.py:2922:64: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/fx_passes/quantization.py:2958:41: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/fx_passes/quantization.py:2958:54: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/fx_passes/quantization.py:2963:41: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/fx_passes/quantization.py:2963:54: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/fx_passes/quantization.py:2968:41: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/fx_passes/quantization.py:2968:54: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/fx_passes/quantization.py:3019:32: warning[possibly-missing-import] Member `_hardswish_fusion` of module `torch._inductor.fx_passes.mkldnn_fusion` may be missing +torch/_inductor/fx_passes/quantization.py:3019:51: warning[possibly-missing-import] Member `_hardtanh_fusion` of module `torch._inductor.fx_passes.mkldnn_fusion` may be missing +torch/_inductor/fx_passes/quantization.py:3019:69: warning[possibly-missing-import] Member `_silu_fusion` of module `torch._inductor.fx_passes.mkldnn_fusion` may be missing +torch/_inductor/fx_passes/quantization.py:3021:43: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:3021:58: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:3025:52: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:3284:34: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/fx_passes/quantization.py:3284:47: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/fx_passes/quantization.py:3288:49: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/fx_passes/quantization.py:3288:62: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/fx_passes/quantization.py:3359:9: warning[possibly-missing-import] Member `_gelu_fusion_1` of module `torch._inductor.fx_passes.mkldnn_fusion` may be missing +torch/_inductor/fx_passes/quantization.py:3360:9: warning[possibly-missing-import] Member `_gelu_fusion_2` of module `torch._inductor.fx_passes.mkldnn_fusion` may be missing +torch/_inductor/fx_passes/quantization.py:3363:43: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/fx_passes/quantization.py:3363:58: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:3364:52: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/fx_passes/quantization.py:3746:17: error[unresolved-attribute] Module `torch` has no member `eye` +torch/_inductor/fx_passes/quantization.py:3748:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/fx_passes/quantization.py:3762:21: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/fx_passes/quantization.py:3764:31: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/quantization.py:3768:27: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/quantization.py:3848:55: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/reinplace.py:722:18: error[unresolved-import] Cannot resolve imported module `triton.runtime.autotuner` +torch/_inductor/fx_passes/reinplace.py:723:18: error[unresolved-import] Cannot resolve imported module `triton.runtime.jit` +torch/_inductor/fx_passes/reinplace.py:785:26: error[unresolved-attribute] Module `torch._inductor` has no member `fx_utils` +torch/_inductor/fx_passes/replace_random.py:62:40: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/replace_random.py:63:56: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/fx_passes/replace_random.py:88:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/fx_passes/replace_random.py:92:65: error[invalid-argument-type] Argument to function `register_graph_pattern` is incorrect: Expected `_PassDictsType`, found `PatternMatcherPass` +torch/_inductor/fx_passes/replace_random.py:94:67: error[invalid-argument-type] Argument to function `register_graph_pattern` is incorrect: Expected `_PassDictsType`, found `PatternMatcherPass` +torch/_inductor/fx_passes/replace_random.py:96:66: error[invalid-argument-type] Argument to function `register_graph_pattern` is incorrect: Expected `_PassDictsType`, found `PatternMatcherPass` +torch/_inductor/fx_passes/replace_random.py:98:68: error[invalid-argument-type] Argument to function `register_graph_pattern` is incorrect: Expected `_PassDictsType`, found `PatternMatcherPass` +torch/_inductor/fx_passes/replace_random.py:132:64: error[invalid-argument-type] Argument to function `register_graph_pattern` is incorrect: Expected `_PassDictsType`, found `PatternMatcherPass` +torch/_inductor/fx_passes/replace_random.py:139:11: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:37:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:42:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:56:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:95:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:100:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:114:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:123:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:128:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:143:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:182:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:187:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py:202:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:36:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:41:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:55:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:92:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:97:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:111:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:119:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:124:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:140:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:180:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:185:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py:201:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:38:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:43:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:59:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:100:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:105:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:119:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:129:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:134:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:152:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:196:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:201:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py:217:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:36:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:41:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:56:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:94:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:99:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:114:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:122:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:127:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:144:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:185:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:190:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py:207:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:40:82: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:45:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:60:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:64:101: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:104:82: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:109:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:124:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:136:82: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:141:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:158:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:162:101: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:205:82: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:210:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py:227:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:38:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:43:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:60:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:102:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:107:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:122:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:220:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:225:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:244:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:289:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:294:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:311:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:416:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:421:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:439:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:483:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:488:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py:504:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:42:82: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:47:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:64:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:68:101: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:112:82: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:117:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:132:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:146:82: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:151:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:170:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:174:101: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:221:82: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:226:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py:243:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:38:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:43:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:62:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:77:101: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:107:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:112:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:129:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:179:101: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:242:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:247:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:268:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:286:101: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:316:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:321:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:340:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py:395:101: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py:72:101: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py:162:101: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:43:82: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:48:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:64:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:68:101: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:112:82: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:117:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:131:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:146:82: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:151:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:169:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:173:101: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:220:82: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:225:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py:241:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:36:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:41:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:57:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:95:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:100:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:116:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:206:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:211:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:230:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:272:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:277:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py:296:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:36:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:41:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:57:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:97:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:102:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:118:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:218:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:223:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:242:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:286:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:291:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py:310:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:36:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:41:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:56:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:95:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:100:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:115:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:212:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:217:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:236:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:279:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:284:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py:303:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:38:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:43:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:60:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:102:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:107:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:122:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:132:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:137:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:155:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:197:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:202:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py:218:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:36:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:41:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:56:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:94:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:99:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:114:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:122:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:127:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:143:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:181:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:186:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py:202:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:39:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:44:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:60:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:103:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:108:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:122:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:133:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:138:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:155:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:198:80: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:203:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py:218:84: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/fx_passes/split_cat.py:129:23: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_inductor/fx_passes/split_cat.py:268:25: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_inductor/fx_passes/split_cat.py:298:13: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_inductor/fx_passes/split_cat.py:309:26: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:309:37: error[unresolved-attribute] Module `torch` has no member `concat` +torch/_inductor/fx_passes/split_cat.py:353:32: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:359:13: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:370:25: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:442:17: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_inductor/fx_passes/split_cat.py:446:17: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_inductor/fx_passes/split_cat.py:470:13: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_inductor/fx_passes/split_cat.py:483:25: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_inductor/fx_passes/split_cat.py:506:13: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_inductor/fx_passes/split_cat.py:531:13: error[unresolved-attribute] Module `torch` has no member `detach` +torch/_inductor/fx_passes/split_cat.py:734:32: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:734:43: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:807:34: error[unresolved-attribute] Module `torch` has no member `cumsum` +torch/_inductor/fx_passes/split_cat.py:807:47: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/fx_passes/split_cat.py:859:41: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:859:52: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:866:65: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:888:41: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:941:34: error[unresolved-attribute] Module `torch` has no member `cumsum` +torch/_inductor/fx_passes/split_cat.py:941:47: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/fx_passes/split_cat.py:978:41: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:978:52: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:1021:29: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:1044:29: error[unresolved-attribute] Module `torch` has no member `unflatten` +torch/_inductor/fx_passes/split_cat.py:1054:29: error[unresolved-attribute] Module `torch` has no member `movedim` +torch/_inductor/fx_passes/split_cat.py:1064:29: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/_inductor/fx_passes/split_cat.py:1077:25: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:1091:25: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:1095:58: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:1107:37: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:1114:25: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/_inductor/fx_passes/split_cat.py:1116:58: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/_inductor/fx_passes/split_cat.py:1134:41: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:1134:52: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:1223:44: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:1229:41: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:1261:13: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_inductor/fx_passes/split_cat.py:1278:13: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_inductor/fx_passes/split_cat.py:1302:31: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_inductor/fx_passes/split_cat.py:1306:13: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_inductor/fx_passes/split_cat.py:1309:44: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_inductor/fx_passes/split_cat.py:1330:13: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_inductor/fx_passes/split_cat.py:1343:19: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:1343:32: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:1348:10: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:1348:23: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:1354:10: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:1354:23: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:1359:71: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_inductor/fx_passes/split_cat.py:1379:9: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_inductor/fx_passes/split_cat.py:1398:10: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:1398:23: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:1407:10: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:1407:23: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:1416:10: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:1416:23: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:1502:9: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:1521:31: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:1609:9: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:1626:31: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:2142:16: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/split_cat.py:2154:17: error[unresolved-attribute] Module `torch` has no member `permute` +torch/_inductor/fx_passes/split_cat.py:2157:50: error[unresolved-attribute] Module `torch` has no member `permute` +torch/_inductor/fx_passes/split_cat.py:2164:13: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_inductor/fx_passes/split_cat.py:2166:46: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_inductor/fx_passes/split_cat.py:2188:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:2203:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:2220:48: error[unresolved-attribute] Module `torch` has no member `narrow` +torch/_inductor/fx_passes/split_cat.py:2342:9: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:2366:31: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:2391:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:2425:9: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:2433:71: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_inductor/fx_passes/split_cat.py:2442:31: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:2469:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:2473:54: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:2503:13: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_inductor/fx_passes/split_cat.py:2506:46: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_inductor/fx_passes/split_cat.py:2516:13: error[unresolved-attribute] Module `torch` has no member `permute` +torch/_inductor/fx_passes/split_cat.py:2519:46: error[unresolved-attribute] Module `torch` has no member `permute` +torch/_inductor/fx_passes/split_cat.py:2543:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/fx_passes/split_cat.py:2556:13: error[unresolved-attribute] Module `torch` has no member `permute` +torch/_inductor/fx_passes/split_cat.py:2559:46: error[unresolved-attribute] Module `torch` has no member `permute` +torch/_inductor/fx_passes/split_cat.py:2599:9: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:2618:33: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:2638:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:2672:9: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:2680:71: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_inductor/fx_passes/split_cat.py:2689:33: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:2712:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:2716:54: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_passes/split_cat.py:2754:74: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_inductor/fx_passes/split_cat.py:2770:9: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:2781:67: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:2794:38: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_inductor/fx_passes/split_cat.py:2834:33: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:2838:75: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:2844:40: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_inductor/fx_passes/split_cat.py:2865:25: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:2869:67: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_inductor/fx_passes/split_cat.py:2876:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_inductor/fx_utils.py:125:30: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/fx_utils.py:150:28: error[unresolved-attribute] Module `torch._inductor` has no member `fx_passes` +torch/_inductor/fx_utils.py:206:20: error[unresolved-attribute] Module `torch._inductor` has no member `fx_passes` +torch/_inductor/fx_utils.py:261:12: error[unresolved-attribute] Module `torch._C` has no member `_has_storage` +torch/_inductor/fx_utils.py:325:18: error[unresolved-attribute] Module `torch.utils` has no member `flop_counter` +torch/_inductor/graph.py:22:19: error[unresolved-import] Module `torch` has no member `device` +torch/_inductor/graph.py:145:10: error[unresolved-import] Cannot resolve imported module `torch._inductor.fb.utils` +torch/_inductor/graph.py:152:76: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/graph.py:159:16: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/graph.py:179:20: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_inductor/graph.py:279:13: error[invalid-return-type] Return type does not match returned value: expected `OpOverloadPacket[Unknown, Any] | None`, found `object` +torch/_inductor/graph.py:290:13: error[unresolved-attribute] Module `torch._higher_order_ops` has no member `triton_kernel_wrap` +torch/_inductor/graph.py:298:16: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_inductor/graph.py:418:24: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_inductor/graph.py:470:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/graph.py:487:40: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/graph.py:592:20: error[invalid-return-type] Return type does not match returned value: expected `Sequence[Expr]`, found `list[int]` +torch/_inductor/graph.py:607:23: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/graph.py:630:46: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/graph.py:637:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/graph.py:907:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/graph.py:924:20: error[invalid-return-type] Return type does not match returned value: expected `TensorBox | Buffer | TorchBindObject | None`, found `TensorBox | TorchBindObject | Expr` +torch/_inductor/graph.py:947:46: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/graph.py:959:24: warning[possibly-missing-attribute] Attribute `get_dtype` may be missing on object of type `TensorBox | TorchBindObject | Expr` +torch/_inductor/graph.py:963:20: warning[possibly-missing-attribute] Attribute `get_dtype` may be missing on object of type `TensorBox | TorchBindObject | Expr` +torch/_inductor/graph.py:978:20: warning[possibly-missing-attribute] Attribute `get_numel` may be missing on object of type `TensorBox | TorchBindObject | Expr` +torch/_inductor/graph.py:1005:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/graph.py:1025:30: error[invalid-argument-type] Argument to function `register` is incorrect: Expected `Iterable[IRNode] | IRNode`, found `object` +torch/_inductor/graph.py:1106:66: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/graph.py:1114:14: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_inductor/graph.py:1151:20: error[invalid-return-type] Return type does not match returned value: expected `Expr | TensorBox | None`, found `TorchBindObject` +torch/_inductor/graph.py:1161:34: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_inductor/graph.py:1165:17: error[unresolved-attribute] Module `torch` has no member `_prims` +torch/_inductor/graph.py:1171:20: error[invalid-return-type] Return type does not match returned value: expected `Expr | TensorBox | None`, found `GeneratorState` +torch/_inductor/graph.py:1192:71: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr]`, found `Sequence[int | Expr]` +torch/_inductor/graph.py:1192:78: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr] | None`, found `Sequence[int | Expr]` +torch/_inductor/graph.py:1200:71: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr]`, found `Sequence[int | Expr]` +torch/_inductor/graph.py:1200:78: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr] | None`, found `Sequence[int | Expr]` +torch/_inductor/graph.py:1204:9: error[invalid-assignment] Invalid subscript assignment with key of type `str` and value of type `TensorBox | ShapeAsConstantBuffer` on object of type `dict[str, TensorBox | TorchBindObject | Expr]` +torch/_inductor/graph.py:1225:16: error[invalid-return-type] Return type does not match returned value: expected `Expr | TensorBox | None`, found `TensorBox | ShapeAsConstantBuffer` +torch/_inductor/graph.py:1256:31: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_inductor/graph.py:1261:25: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/_inductor/graph.py:1275:34: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_inductor/graph.py:1310:38: error[unresolved-attribute] Module `torch.fx` has no member `operator_schemas` +torch/_inductor/graph.py:1373:30: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_inductor/graph.py:1460:24: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/graph.py:1471:19: error[invalid-assignment] Object of type `TensorBox | TorchBindObject | Expr` is not assignable to `IRNode` +torch/_inductor/graph.py:1475:48: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/graph.py:1547:23: error[unresolved-attribute] Module `torch._higher_order_ops` has no member `triton_kernel_wrap` +torch/_inductor/graph.py:1568:25: error[unresolved-attribute] Module `torch._C` has no member `Argument` +torch/_inductor/graph.py:1589:26: error[unresolved-attribute] Object of type `object` has no attribute `arguments` +torch/_inductor/graph.py:1592:51: error[unresolved-attribute] Object of type `object` has no attribute `arguments` +torch/_inductor/graph.py:1625:21: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/_inductor/graph.py:1748:29: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/_inductor/graph.py:1763:29: error[invalid-argument-type] Argument to function `stride_ordered_for_memory_format` is incorrect: Expected `Sequence[int]`, found `Unknown | Sequence[Expr]` +torch/_inductor/graph.py:1763:48: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_inductor/graph.py:1771:29: warning[possibly-missing-attribute] Attribute `data` may be missing on object of type `Unknown | IRNode` +torch/_inductor/graph.py:1818:28: error[unresolved-attribute] Module `torch._C` has no member `_has_mkldnn` +torch/_inductor/graph.py:1836:32: error[unresolved-attribute] Module `torch._C` has no member `has_mkl` +torch/_inductor/graph.py:1856:39: error[unresolved-attribute] Object of type `IRNode` has no attribute `data` +torch/_inductor/graph.py:2129:23: error[unresolved-attribute] Module `torch._higher_order_ops` has no member `triton_kernel_wrap` +torch/_inductor/graph.py:2143:66: error[unresolved-attribute] Module `torch` has no member `clone` +torch/_inductor/graph.py:2203:32: error[invalid-return-type] Return type does not match returned value: expected `int | float | Tensor`, found `None` +torch/_inductor/graph.py:2215:35: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/graph.py:2286:22: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_inductor/graph.py:2500:17: warning[possibly-missing-attribute] Attribute `get_numel` may be missing on object of type `TensorBox | TorchBindObject | Expr` +torch/_inductor/graph.py:2501:21: warning[possibly-missing-attribute] Attribute `get_size` may be missing on object of type `TensorBox | TorchBindObject | Expr` +torch/_inductor/index_propagation.py:60:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/index_propagation.py:72:24: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_inductor/index_propagation.py:94:57: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/index_propagation.py:98:58: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/index_propagation.py:104:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/index_propagation.py:105:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/index_propagation.py:120:23: error[unresolved-attribute] Module `torch` has no member `promote_types` +torch/_inductor/index_propagation.py:125:23: error[unresolved-attribute] Module `torch` has no member `promote_types` +torch/_inductor/index_propagation.py:130:23: error[unresolved-attribute] Module `torch` has no member `promote_types` +torch/_inductor/index_propagation.py:139:23: error[unresolved-attribute] Module `torch` has no member `promote_types` +torch/_inductor/index_propagation.py:147:23: error[unresolved-attribute] Module `torch` has no member `promote_types` +torch/_inductor/index_propagation.py:156:23: error[unresolved-attribute] Module `torch` has no member `promote_types` +torch/_inductor/index_propagation.py:174:23: error[unresolved-attribute] Module `torch` has no member `promote_types` +torch/_inductor/index_propagation.py:179:23: error[unresolved-attribute] Module `torch` has no member `promote_types` +torch/_inductor/index_propagation.py:234:57: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/index_propagation.py:336:70: error[invalid-argument-type] Argument to function `statically_known_true` is incorrect: Expected `tuple[tuple[Symbol, ValueRanges[Any]]] | None`, found `tuple[@Todo, @Todo]` +torch/_inductor/inductor_prims.py:25:29: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_inductor/inductor_prims.py:59:12: error[unresolved-attribute] Module `torch` has no member `amax` +torch/_inductor/inductor_prims.py:60:18: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_inductor/inductor_prims.py:60:28: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_inductor/inductor_prims.py:66:20: error[unresolved-attribute] Module `torch` has no member `randint` +torch/_inductor/inductor_prims.py:68:11: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_inductor/inductor_prims.py:72:27: error[unresolved-attribute] Module `torch` has no member `randint` +torch/_inductor/inductor_prims.py:74:11: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_inductor/inductor_prims.py:90:41: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/inductor_prims.py:96:35: error[unresolved-attribute] Module `torch` has no member `randint` +torch/_inductor/inductor_prims.py:115:11: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_inductor/inductor_prims.py:178:14: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_inductor/inductor_prims.py:179:44: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/inductor_prims.py:187:29: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/inductor_prims.py:199:26: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/inductor_prims.py:206:14: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_inductor/inductor_prims.py:207:44: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/invert_expr_analysis.py:120:13: error[invalid-argument-type] Argument is incorrect: Expected `Expr`, found `Literal[1]` +torch/_inductor/invert_expr_analysis.py:149:22: error[invalid-argument-type] Argument to function `static_eq` is incorrect: Expected `int | Expr`, found `Basic` +torch/_inductor/invert_expr_analysis.py:150:20: error[invalid-return-type] Return type does not match returned value: expected `tuple[int | Expr | None, int | Expr | None]`, found `tuple[Basic, Basic]` +torch/_inductor/invert_expr_analysis.py:159:26: error[invalid-argument-type] Argument to function `static_eq` is incorrect: Expected `int | Expr`, found `Basic` +torch/_inductor/invert_expr_analysis.py:159:48: error[invalid-argument-type] Argument to function `static_eq` is incorrect: Expected `int | Expr`, found `Basic` +torch/_inductor/invert_expr_analysis.py:161:24: error[invalid-return-type] Return type does not match returned value: expected `tuple[int | Expr | None, int | Expr | None]`, found `tuple[FloorDiv, Basic]` +torch/_inductor/invert_expr_analysis.py:164:24: error[invalid-argument-type] Argument to function `static_eq` is incorrect: Expected `int | Expr`, found `Basic & ~ModularIndexing` +torch/_inductor/invert_expr_analysis.py:165:20: error[invalid-return-type] Return type does not match returned value: expected `tuple[int | Expr | None, int | Expr | None]`, found `tuple[None, Basic]` +torch/_inductor/ir.py:132:12: error[unresolved-import] Cannot resolve imported module `triton` +torch/_inductor/ir.py:243:34: error[invalid-argument-type] Argument to function `_check_tensorbox` is incorrect: Expected `int | IRNode | dict[str, TensorBox] | ... omitted 3 union elements`, found `object` +torch/_inductor/ir.py:246:34: error[invalid-argument-type] Argument to function `_check_tensorbox` is incorrect: Expected `int | IRNode | dict[str, TensorBox] | ... omitted 3 union elements`, found `object` +torch/_inductor/ir.py:371:18: error[invalid-assignment] Object of type `list[Unknown | int | Expr]` is not assignable to `list[int] | tuple[int, ...]` +torch/_inductor/ir.py:373:18: error[invalid-assignment] Object of type `list[Expr]` is not assignable to `list[int] | tuple[int, ...]` +torch/_inductor/ir.py:373:52: error[invalid-argument-type] Argument to function `contiguous_strides` is incorrect: Expected `Sequence[int]`, found `list[Unknown | int | Expr]` +torch/_inductor/ir.py:378:14: error[invalid-assignment] Object of type `list[int | SymInt]` is not assignable to `list[int] | tuple[int, ...]` +torch/_inductor/ir.py:380:13: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_inductor/ir.py:397:34: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:401:24: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:406:5: error[type-assertion-failure] Type `str` is not equivalent to `Never` +torch/_inductor/ir.py:409:32: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:429:29: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:494:38: error[invalid-argument-type] Argument to function `significant_strides_equal` is incorrect: Expected `Sequence[int | Expr]`, found `Sequence[int | SymInt]` +torch/_inductor/ir.py:613:21: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/ir.py:623:25: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/ir.py:658:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:661:43: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:729:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:732:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:830:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:845:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:853:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:858:16: error[invalid-return-type] Return type does not match returned value: expected `Node | None`, found `object` +torch/_inductor/ir.py:862:16: error[invalid-return-type] Return type does not match returned value: expected `OrderedSet[Any]`, found `object` +torch/_inductor/ir.py:926:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:927:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:959:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:966:16: error[invalid-return-type] Return type does not match returned value: expected `Sequence[Expr]`, found `Sequence[int | Expr]` +torch/_inductor/ir.py:969:16: error[invalid-return-type] Return type does not match returned value: expected `Sequence[Expr]`, found `Sequence[int | Expr]` +torch/_inductor/ir.py:1051:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:1057:63: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:1093:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:1110:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:1134:21: error[invalid-argument-type] Argument is incorrect: Expected `Sequence[Expr]`, found `Expr` +torch/_inductor/ir.py:1152:33: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:1219:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:1234:16: error[invalid-return-type] Return type does not match returned value: expected `Sequence[Expr]`, found `Sequence[int | Expr]` +torch/_inductor/ir.py:1269:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:1286:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:1287:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:1288:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:1297:67: error[invalid-argument-type] Argument to function `sympy_product` is incorrect: Expected `Iterable[Expr]`, found `Sequence[int | Expr]` +torch/_inductor/ir.py:1339:44: error[invalid-argument-type] Argument to function `inner_reduction_splits` is incorrect: Expected `int`, found `int | Integer` +torch/_inductor/ir.py:1339:66: error[invalid-argument-type] Argument to function `inner_reduction_splits` is incorrect: Expected `int`, found `int | Integer` +torch/_inductor/ir.py:1436:20: error[invalid-argument-type] Argument to bound method `stride_hints` is incorrect: Expected `Sequence[Symbol]`, found `Sequence[Expr]` +torch/_inductor/ir.py:1436:36: error[invalid-argument-type] Argument to bound method `stride_hints` is incorrect: Expected `Sequence[Symbol] | None`, found `list[Expr]` +torch/_inductor/ir.py:1447:17: error[invalid-argument-type] Argument to function `inner_reduction_splits` is incorrect: Expected `int`, found `int | Integer` +torch/_inductor/ir.py:1447:39: error[invalid-argument-type] Argument to function `inner_reduction_splits` is incorrect: Expected `int`, found `(int & ~Literal[1]) | Integer` +torch/_inductor/ir.py:1451:17: error[invalid-argument-type] Argument to function `inner_reduction_splits` is incorrect: Expected `int`, found `int | Integer` +torch/_inductor/ir.py:1451:39: error[invalid-argument-type] Argument to function `inner_reduction_splits` is incorrect: Expected `int`, found `(int & ~Literal[1]) | Integer` +torch/_inductor/ir.py:1459:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:1481:17: error[invalid-argument-type] Argument to function `_fixed_indexer` is incorrect: Expected `Sequence[int] | None`, found `list[Expr]` +torch/_inductor/ir.py:1490:59: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/ir.py:1502:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:1503:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:1504:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:1523:33: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/ir.py:1689:17: error[invalid-assignment] Object of type `int | Expr` is not assignable to attribute `_split_size` on type `ComputedBuffer & ~AlwaysFalsy` +torch/_inductor/ir.py:1711:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:1719:24: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_inductor/ir.py:1726:24: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_inductor/ir.py:1743:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:1822:34: error[invalid-assignment] Object of type `Sequence[Symbol]` is not assignable to `Sequence[Symbol]` +torch/_inductor/ir.py:1830:47: error[invalid-argument-type] Argument to function `dtype_from_size` is incorrect: Expected `int`, found `int | Expr` +torch/_inductor/ir.py:1833:36: error[invalid-argument-type] Argument to bound method `index_expr` is incorrect: Expected `Expr`, found `int | Expr` +torch/_inductor/ir.py:1873:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:1874:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:1875:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:1894:34: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/ir.py:1894:49: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/ir.py:1895:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/ir.py:1937:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:1938:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:1939:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:1983:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:1984:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:1985:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:2034:16: error[invalid-return-type] Return type does not match returned value: expected `int`, found `Expr | Unknown` +torch/_inductor/ir.py:2036:12: error[invalid-return-type] Return type does not match returned value: expected `(Sequence[Expr], /) -> Expr`, found `def indexer(index: Sequence[int]) -> int` +torch/_inductor/ir.py:2047:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:2048:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:2053:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:2058:25: error[invalid-assignment] Object of type `tuple[(((Sequence[Expr], Sequence[Expr], /) -> OpsValue) & (() -> object)) | (Sequence[(Sequence[Expr], Sequence[Expr], /) -> OpsValue] & (() -> object))]` is not assignable to `((Sequence[Expr], Sequence[Expr], /) -> OpsValue) | Sequence[(Sequence[Expr], Sequence[Expr], /) -> OpsValue]` +torch/_inductor/ir.py:2061:16: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `((Sequence[Expr], Sequence[Expr], /) -> OpsValue) | Sequence[(Sequence[Expr], Sequence[Expr], /) -> OpsValue]` +torch/_inductor/ir.py:2062:22: error[non-subscriptable] Cannot subscript object of type `(Sequence[Expr], Sequence[Expr], /) -> OpsValue` with no `__getitem__` method +torch/_inductor/ir.py:2068:63: error[not-iterable] Object of type `((Sequence[Expr], Sequence[Expr], /) -> OpsValue) | Sequence[(Sequence[Expr], Sequence[Expr], /) -> OpsValue]` may not be iterable +torch/_inductor/ir.py:2080:9: error[invalid-assignment] Property `output_index` defined in `Self@__init__` is read-only +torch/_inductor/ir.py:2104:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:2105:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:2106:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:2123:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Integer]`, found `Sequence[Expr]` +torch/_inductor/ir.py:2124:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Integer]`, found `Sequence[Expr]` +torch/_inductor/ir.py:2142:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:2143:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:2262:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:2269:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:2270:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:2326:13: error[invalid-argument-type] Argument to bound method `create` is incorrect: Expected `list[Integer]`, found `list[Unknown | int | Expr]` +torch/_inductor/ir.py:2327:13: error[invalid-argument-type] Argument to bound method `create` is incorrect: Expected `list[Integer]`, found `list[Unknown | FloorDiv]` +torch/_inductor/ir.py:2353:13: error[invalid-argument-type] Argument to bound method `create` is incorrect: Expected `list[Integer]`, found `list[Unknown | int | Expr]` +torch/_inductor/ir.py:2369:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:2418:16: error[invalid-return-type] Return type does not match returned value: expected `Sequence[Expr]`, found `Sequence[int | Expr]` +torch/_inductor/ir.py:2433:52: error[invalid-argument-type] Argument to function `extract_free_symbols` is incorrect: Expected `Sequence[Expr]`, found `Sequence[int | Expr]` +torch/_inductor/ir.py:2438:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:2439:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:2492:62: error[unsupported-operator] Operator `>=` is not supported for types `None` and `str`, in comparing `Unknown | None` with `Literal["3.3.0"]` +torch/_inductor/ir.py:2537:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:2538:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:2577:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:2625:16: error[invalid-return-type] Return type does not match returned value: expected `Sequence[Expr]`, found `Sequence[int | Expr]` +torch/_inductor/ir.py:2645:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:2646:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:2782:21: error[invalid-argument-type] Argument to bound method `freeze_layout_with_stride_order` is incorrect: Expected `Sequence[int]`, found `Sequence[int | Integer]` +torch/_inductor/ir.py:2786:21: error[invalid-argument-type] Argument to bound method `freeze_layout_with_exact_strides` is incorrect: Expected `Sequence[int]`, found `Sequence[int | Integer]` +torch/_inductor/ir.py:2807:41: error[invalid-argument-type] Argument to bound method `is_stride_ordered` is incorrect: Expected `Sequence[int]`, found `Sequence[int | Integer]` +torch/_inductor/ir.py:2860:24: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:2866:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:2916:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:2945:17: error[invalid-argument-type] Argument to bound method `is_size_one_or_false` is incorrect: Expected `Expr`, found `Expr | Unknown | None` +torch/_inductor/ir.py:3039:46: error[invalid-argument-type] Argument to bound method `_map_neg_dims` is incorrect: Expected `Sequence[int]`, found `list[Expr]` +torch/_inductor/ir.py:3043:17: error[invalid-argument-type] Method `__getitem__` of type `Overload[(index: int) -> Expr, (index: slice[Any, Any, Any]) -> Sequence[Expr]]` cannot be called with key of type `Expr` on object of type `Sequence[Expr]` +torch/_inductor/ir.py:3123:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[list[int], (Sequence[Expr], /) -> tuple[Expr]]`, found `tuple[list[Expr | Unknown], def reindex(index: Sequence[Expr]) -> tuple[Expr]]` +torch/_inductor/ir.py:3251:35: error[invalid-argument-type] Argument to function `sympy_product` is incorrect: Expected `Iterable[Expr]`, found `Sequence[int | Expr]` +torch/_inductor/ir.py:3322:53: error[invalid-argument-type] Argument to bound method `check_equals` is incorrect: Expected `Expr`, found `Literal[1]` +torch/_inductor/ir.py:3327:53: error[invalid-argument-type] Argument to bound method `check_equals` is incorrect: Expected `Expr`, found `Literal[1]` +torch/_inductor/ir.py:3373:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:3380:24: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:3440:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:3443:43: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:3463:24: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:3499:79: error[invalid-argument-type] Argument to bound method `evaluate_max` is incorrect: Expected `Expr`, found `int` +torch/_inductor/ir.py:3504:46: error[invalid-argument-type] Argument to bound method `evaluate_min` is incorrect: Expected `Expr`, found `int` +torch/_inductor/ir.py:3517:17: error[invalid-assignment] Object of type `Expr | int` is not assignable to `int` +torch/_inductor/ir.py:3517:38: error[invalid-argument-type] Argument to function `clamp_wrap` is incorrect: Expected `int`, found `Expr` +torch/_inductor/ir.py:3518:15: error[invalid-assignment] Object of type `Expr | int` is not assignable to `int` +torch/_inductor/ir.py:3518:38: error[invalid-argument-type] Argument to function `clamp_wrap` is incorrect: Expected `int`, found `Expr` +torch/_inductor/ir.py:3578:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:3579:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:3584:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:3597:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:3598:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:3609:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:3616:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:3617:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:3625:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:3649:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:3657:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:3680:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:3681:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:3688:56: error[invalid-argument-type] Argument to function `contiguous_strides` is incorrect: Expected `Sequence[int]`, found `Sequence[Expr]` +torch/_inductor/ir.py:3690:9: error[invalid-assignment] Property `device` defined in `Self@__init__` is read-only +torch/_inductor/ir.py:3691:9: error[invalid-assignment] Property `dtype` defined in `Self@__init__` is read-only +torch/_inductor/ir.py:3694:9: error[invalid-assignment] Property `_size` defined in `Self@__init__` is read-only +torch/_inductor/ir.py:3695:9: error[invalid-assignment] Property `_stride` defined in `Self@__init__` is read-only +torch/_inductor/ir.py:3696:9: error[invalid-assignment] Property `_offset` defined in `Self@__init__` is read-only +torch/_inductor/ir.py:3697:9: error[invalid-assignment] Property `is_pinned` defined in `Self@__init__` is read-only +torch/_inductor/ir.py:3707:9: error[invalid-assignment] Property `_size` defined in `Self@size` is read-only +torch/_inductor/ir.py:3715:9: error[invalid-assignment] Property `_stride` defined in `Self@stride` is read-only +torch/_inductor/ir.py:3723:9: error[invalid-assignment] Property `_offset` defined in `Self@offset` is read-only +torch/_inductor/ir.py:3741:29: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:3746:20: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_inductor/ir.py:3765:53: error[invalid-argument-type] Argument to function `make_channels_last_strides_for` is incorrect: Argument type `int | Expr` does not satisfy upper bound `_WorksWithInt` of type variable `_IntLikeT` +torch/_inductor/ir.py:3810:21: error[invalid-argument-type] Argument to bound method `evaluate_expr` is incorrect: Expected `Basic`, found `Unknown | bool` +torch/_inductor/ir.py:3824:65: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:3861:53: error[invalid-argument-type] Argument to bound method `is_unbacked_symint` is incorrect: Expected `Symbol`, found `Basic` +torch/_inductor/ir.py:3904:9: error[invalid-assignment] Object of type `Sequence[int]` is not assignable to attribute `stride` on type `Self@pad_strides & FlexibleLayout` +torch/_inductor/ir.py:3904:41: error[invalid-argument-type] Argument to function `_pad_strides` is incorrect: Expected `Sequence[int]`, found `Sequence[Expr]` +torch/_inductor/ir.py:3960:31: error[invalid-argument-type] Argument to function `_fixed_indexer` is incorrect: Expected `Sequence[int]`, found `Sequence[Expr]` +torch/_inductor/ir.py:3960:42: error[invalid-argument-type] Argument to function `_fixed_indexer` is incorrect: Expected `Sequence[int] | None`, found `Sequence[Expr]` +torch/_inductor/ir.py:3997:16: error[invalid-return-type] Return type does not match returned value: expected `list[Expr]`, found `list[Unknown | None]` +torch/_inductor/ir.py:4013:46: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_inductor/ir.py:4025:29: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_inductor/ir.py:4027:31: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_inductor/ir.py:4029:31: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/ir.py:4060:9: error[invalid-assignment] Property `_size` defined in `Self@size` is read-only +torch/_inductor/ir.py:4069:9: error[invalid-assignment] Property `_stride` defined in `Self@stride` is read-only +torch/_inductor/ir.py:4078:9: error[invalid-assignment] Property `_offset` defined in `Self@offset` is read-only +torch/_inductor/ir.py:4083:42: error[invalid-argument-type] Argument to function `stride_ordered` is incorrect: Expected `Sequence[int]`, found `Sequence[Expr]` +torch/_inductor/ir.py:4085:44: error[invalid-argument-type] Argument to function `_pad_strides` is incorrect: Expected `Sequence[int]`, found `Sequence[Expr]` +torch/_inductor/ir.py:4091:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr] | None`, found `Sequence[Expr] | Sequence[int]` +torch/_inductor/ir.py:4101:44: error[invalid-argument-type] Argument to function `_pad_strides` is incorrect: Expected `Sequence[int]`, found `Sequence[int | Expr]` +torch/_inductor/ir.py:4107:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr] | None`, found `Sequence[int | Expr]` +torch/_inductor/ir.py:4113:37: error[invalid-assignment] Object of type `list[Expr]` is not assignable to `Sequence[int]` +torch/_inductor/ir.py:4113:55: error[invalid-argument-type] Argument to function `fill_ordered` is incorrect: Expected `Sequence[int]`, found `Sequence[Expr]` +torch/_inductor/ir.py:4120:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr] | None`, found `Sequence[int]` +torch/_inductor/ir.py:4126:40: error[invalid-argument-type] Argument to function `same_ordered` is incorrect: Expected `Sequence[int]`, found `Sequence[Expr]` +torch/_inductor/ir.py:4128:44: error[invalid-argument-type] Argument to function `_pad_strides` is incorrect: Expected `Sequence[int]`, found `Sequence[Expr]` +torch/_inductor/ir.py:4133:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr] | None`, found `Sequence[Expr] | Sequence[int]` +torch/_inductor/ir.py:4159:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:4160:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:4166:51: error[invalid-argument-type] Argument to function `fill_ordered` is incorrect: Expected `Sequence[int]`, found `Sequence[Expr]` +torch/_inductor/ir.py:4166:57: error[invalid-argument-type] Argument to function `fill_ordered` is incorrect: Expected `Sequence[int]`, found `Sequence[int | Integer] & ~AlwaysFalsy` +torch/_inductor/ir.py:4168:57: error[invalid-argument-type] Argument to function `contiguous_strides` is incorrect: Expected `Sequence[int]`, found `Sequence[Expr]` +torch/_inductor/ir.py:4173:9: error[invalid-assignment] Property `initial_free_symbols` defined in `Self@__init__` is read-only +torch/_inductor/ir.py:4187:9: error[invalid-assignment] Property `view` defined in `Self@__init__` is read-only +torch/_inductor/ir.py:4252:9: error[invalid-assignment] Property `comm_buffer_type` defined in `Self@__init__` is read-only +torch/_inductor/ir.py:4253:9: error[invalid-assignment] Property `group_name` defined in `Self@__init__` is read-only +torch/_inductor/ir.py:4266:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:4276:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:4288:9: error[invalid-assignment] Property `target` defined in `Self@__init__` is read-only +torch/_inductor/ir.py:4358:27: error[unresolved-attribute] Object of type `object` has no attribute `layout` +torch/_inductor/ir.py:4358:66: error[unresolved-attribute] Object of type `object` has no attribute `layout` +torch/_inductor/ir.py:4359:9: error[unresolved-attribute] Unresolved attribute `layout` on type `object`. +torch/_inductor/ir.py:4360:16: error[invalid-return-type] Return type does not match returned value: expected `IRNode`, found `object` +torch/_inductor/ir.py:4395:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:4402:24: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:4423:16: error[invalid-return-type] Return type does not match returned value: expected `int`, found `Expr` +torch/_inductor/ir.py:4539:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:4551:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:4637:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr]`, found `Sequence[int | Expr]` +torch/_inductor/ir.py:4663:20: error[invalid-return-type] Return type does not match returned value: expected `str | None`, found `object` +torch/_inductor/ir.py:4775:57: error[invalid-argument-type] Argument to bound method `stride_hints` is incorrect: Expected `Sequence[Symbol]`, found `Sequence[int | Expr]` +torch/_inductor/ir.py:4928:22: error[invalid-assignment] Object of type `Sequence[int] | Sequence[Unknown]` is not assignable to `Sequence[Symbol]` +torch/_inductor/ir.py:4928:31: error[invalid-argument-type] Argument is incorrect: Expected `Sequence[int]`, found `Sequence[Symbol]` +torch/_inductor/ir.py:4934:70: error[invalid-argument-type] Argument to function `index_prevent_reordering` is incorrect: Expected `Sequence[Expr]`, found `list[int] | list[int | Unknown]` +torch/_inductor/ir.py:4962:13: error[invalid-argument-type] Argument to function `index_vars_no_squeeze` is incorrect: Expected `Sequence[Expr]`, found `list[int]` +torch/_inductor/ir.py:4963:13: error[invalid-argument-type] Argument to function `index_vars_no_squeeze` is incorrect: Expected `Sequence[Expr]`, found `list[int]` +torch/_inductor/ir.py:4968:27: error[invalid-argument-type] Argument is incorrect: Expected `Sequence[int]`, found `list[Symbol]` +torch/_inductor/ir.py:4968:54: error[invalid-argument-type] Argument is incorrect: Expected `Sequence[int]`, found `list[Symbol]` +torch/_inductor/ir.py:4973:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[tuple[list[Expr], list[Expr]], LoopBody | None]`, found `tuple[tuple[list[int], list[int]], LoopBody]` +torch/_inductor/ir.py:5003:60: error[invalid-argument-type] Argument to function `pick_loop_order` is incorrect: Expected `Sequence[Expr]`, found `Sequence[int]` +torch/_inductor/ir.py:5030:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:5301:36: error[unresolved-attribute] Module `torch._inductor` has no member `select_algorithm` +torch/_inductor/ir.py:5325:21: error[unresolved-attribute] Module `torch._inductor` has no member `select_algorithm` +torch/_inductor/ir.py:5338:21: error[unresolved-attribute] Module `torch._inductor` has no member `select_algorithm` +torch/_inductor/ir.py:5383:42: error[invalid-argument-type] Argument to bound method `store` is incorrect: Expected `Expr`, found `None` +torch/_inductor/ir.py:5464:38: error[unresolved-attribute] Object of type `object` has no attribute `get_name` +torch/_inductor/ir.py:5510:60: error[invalid-argument-type] Argument to bound method `unwrap_storage_for_input` is incorrect: Expected `IRNode`, found `object` +torch/_inductor/ir.py:5576:40: error[invalid-assignment] Object of type `list[Expr]` is not assignable to `Sequence[int]` +torch/_inductor/ir.py:5576:74: error[invalid-argument-type] Argument to function `contiguous_strides` is incorrect: Expected `Sequence[int]`, found `list[Expr]` +torch/_inductor/ir.py:5592:37: error[invalid-assignment] Object of type `tuple[Expr | int, ...]` is not assignable to `Sequence[int]` +torch/_inductor/ir.py:5601:61: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_inductor/ir.py:5602:64: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_inductor/ir.py:5606:29: error[invalid-assignment] Object of type `tuple[Expr | int, ...]` is not assignable to `Sequence[int]` +torch/_inductor/ir.py:5619:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr] | None`, found `Sequence[int]` +torch/_inductor/ir.py:5631:52: error[invalid-argument-type] Argument to bound method `create` is incorrect: Expected `int`, found `Unknown | Expr` +torch/_inductor/ir.py:5636:41: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `Never`, found `Unknown & Buffer` +torch/_inductor/ir.py:5723:17: error[invalid-assignment] Object of type `NonOwningLayout` is not assignable to attribute `layout` on type `IRNode & ` +torch/_inductor/ir.py:5815:26: error[unresolved-attribute] Object of type `object` has no attribute `arguments` +torch/_inductor/ir.py:5824:26: error[unresolved-attribute] Object of type `object` has no attribute `arguments` +torch/_inductor/ir.py:5834:37: error[unresolved-attribute] Object of type `object` has no attribute `arguments` +torch/_inductor/ir.py:5837:28: error[unresolved-attribute] Object of type `object` has no attribute `arguments` +torch/_inductor/ir.py:5889:40: error[unresolved-attribute] Object of type `object` has no attribute `name` +torch/_inductor/ir.py:5998:31: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_inductor/ir.py:5998:72: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_inductor/ir.py:6017:32: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/ir.py:6089:35: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_inductor/ir.py:6092:35: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_inductor/ir.py:6097:17: error[invalid-argument-type] Argument to bound method `freeze_layout_with_same_order` is incorrect: Expected `Sequence[int]`, found `tuple[Expr | int, ...]` +torch/_inductor/ir.py:6110:53: error[invalid-argument-type] Argument to bound method `offset_var` is incorrect: Expected `Sequence[Symbol]`, found `Sequence[Expr]` +torch/_inductor/ir.py:6139:42: error[invalid-argument-type] Argument is incorrect: Expected `Expr`, found `(IRNode & Expr) | (IRNode & Boolean) | (IRNode & int)` +torch/_inductor/ir.py:6145:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/ir.py:6233:25: error[invalid-argument-type] Argument to function `as_storage_and_layout` is incorrect: Expected `Sequence[int | Integer] | None`, found `Sequence[int | Expr] | None` +torch/_inductor/ir.py:6246:56: error[invalid-argument-type] Argument to function `try_match_insignificant_strides` is incorrect: Expected `Sequence[int | SymInt]`, found `Sequence[int | Expr]` +torch/_inductor/ir.py:6320:21: error[unresolved-attribute] Module `torch._inductor` has no member `lowering` +torch/_inductor/ir.py:6332:13: error[invalid-argument-type] Argument to function `as_storage_and_layout` is incorrect: Expected `Sequence[int | Integer] | None`, found `Sequence[int | Expr] | None` +torch/_inductor/ir.py:6338:17: error[unresolved-attribute] Module `torch._inductor` has no member `lowering` +torch/_inductor/ir.py:6340:55: error[invalid-argument-type] Argument to function `try_match_insignificant_strides` is incorrect: Expected `Sequence[int | SymInt]`, found `Sequence[int | Expr]` +torch/_inductor/ir.py:6381:54: error[invalid-argument-type] Argument to function `contiguous_strides` is incorrect: Expected `Sequence[int]`, found `Sequence[Expr]` +torch/_inductor/ir.py:6389:50: error[invalid-argument-type] Argument to function `contiguous_strides` is incorrect: Expected `Sequence[int]`, found `Sequence[Expr]` +torch/_inductor/ir.py:6548:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/ir.py:6549:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/ir.py:6558:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/ir.py:6559:21: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/ir.py:6562:17: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/ir.py:6563:21: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/ir.py:6575:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/ir.py:6575:27: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/ir.py:6687:44: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:6688:18: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_inductor/ir.py:6688:30: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/ir.py:6692:23: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/ir.py:6693:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr]`, found `list[Unknown | int]` +torch/_inductor/ir.py:6925:40: error[unresolved-attribute] Object of type `Expr` has no attribute `name` +torch/_inductor/ir.py:6926:52: error[unresolved-attribute] Object of type `Expr` has no attribute `name` +torch/_inductor/ir.py:6928:28: error[unresolved-attribute] Object of type `Expr` has no attribute `name` +torch/_inductor/ir.py:6958:14: error[unresolved-import] Cannot resolve imported module `triton.runtime.autotuner` +torch/_inductor/ir.py:7133:28: error[not-iterable] Object of type `object` is not iterable +torch/_inductor/ir.py:7158:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:7174:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/ir.py:7175:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/ir.py:7178:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/ir.py:7179:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/ir.py:7268:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/ir.py:7269:13: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/ir.py:7413:39: error[invalid-argument-type] Argument to bound method `realize_input` is incorrect: Expected `IRNode`, found `Unknown | IRNode | Sequence[Any]` +torch/_inductor/ir.py:7431:40: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:7459:13: error[invalid-assignment] Property `is_pinned` defined in `Layout` is read-only +torch/_inductor/ir.py:7465:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr] | None`, found `None | Sequence[int | Expr]` +torch/_inductor/ir.py:7507:50: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:7560:50: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:7599:37: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:7626:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:7657:17: error[invalid-argument-type] Argument to bound method `codegen_cpp_sizevar` is incorrect: Expected `Expr`, found `Unknown | Boolean` +torch/_inductor/ir.py:7660:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/ir.py:7661:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/ir.py:7665:17: error[invalid-argument-type] Argument to bound method `codegen_python_sizevar` is incorrect: Expected `Expr`, found `Unknown | Boolean` +torch/_inductor/ir.py:7667:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/ir.py:7667:31: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/ir.py:7668:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/ir.py:7668:31: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/ir.py:7671:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/ir.py:7671:31: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/ir.py:7760:48: error[unresolved-attribute] Module `torch._C` has no member `Argument` +torch/_inductor/ir.py:7762:38: error[unresolved-attribute] Module `torch` has no member `ListType` +torch/_inductor/ir.py:7797:32: error[unresolved-attribute] Module `torch` has no member `_prims` +torch/_inductor/ir.py:7836:37: error[unresolved-attribute] Object of type `object` has no attribute `arguments` +torch/_inductor/ir.py:7869:43: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:7938:32: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/ir.py:7938:50: error[unresolved-attribute] Module `torch` has no member `ListType` +torch/_inductor/ir.py:7938:66: error[unresolved-attribute] Module `torch` has no member `JitType` +torch/_inductor/ir.py:7941:41: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/ir.py:7941:59: error[unresolved-attribute] Module `torch` has no member `NoneType` +torch/_inductor/ir.py:7947:44: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/ir.py:7955:42: error[unresolved-attribute] Module `torch` has no member `ListType` +torch/_inductor/ir.py:7956:47: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/ir.py:7962:59: error[unresolved-attribute] Object of type `object` has no attribute `get_name` +torch/_inductor/ir.py:7966:42: error[unresolved-attribute] Module `torch` has no member `OptionalType` +torch/_inductor/ir.py:7967:47: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_inductor/ir.py:7985:42: error[unresolved-attribute] Module `torch` has no member `IntType` +torch/_inductor/ir.py:8065:30: error[unresolved-attribute] Module `torch` has no member `JitType` +torch/_inductor/ir.py:8066:34: error[unresolved-attribute] Module `torch` has no member `OptionalType` +torch/_inductor/ir.py:8068:38: error[unresolved-attribute] Module `torch` has no member `NumberType` +torch/_inductor/ir.py:8085:44: error[unresolved-attribute] Object of type `object` has no attribute `arguments` +torch/_inductor/ir.py:8156:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:8274:13: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/ir.py:8275:17: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `Literal["# note: dont currently distinguish between buffers returned and dealloc'd in last step"]` +torch/_inductor/ir.py:8280:9: error[missing-argument] No argument provided for required parameter `line` of function `writeline` +torch/_inductor/ir.py:8280:27: error[invalid-argument-type] Argument to function `writeline` is incorrect: Expected `PythonWrapperCodegen`, found `str` +torch/_inductor/ir.py:8285:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:8287:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:8346:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:8419:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ir.py:8464:24: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ir.py:8724:25: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr] | None`, found `Sequence[int | Expr]` +torch/_inductor/ir.py:8858:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr]`, found `list[int | Expr | Unknown]` +torch/_inductor/ir.py:8859:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr] | None`, found `list[int | Expr | Unknown]` +torch/_inductor/ir.py:9089:37: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/ir.py:9165:25: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr]`, found `list[int | Expr | Unknown]` +torch/_inductor/ir.py:9166:25: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr] | None`, found `list[int | Expr | Unknown]` +torch/_inductor/ir.py:9189:29: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr] | None`, found `Sequence[int | Expr]` +torch/_inductor/ir.py:9280:36: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_inductor/ir.py:9288:52: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_inductor/ir.py:9291:31: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_inductor/ir.py:9292:35: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_inductor/ir.py:9318:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/jagged_lowerings.py:45:16: error[invalid-return-type] Return type does not match returned value: expected `TensorBox | ShapeAsConstantBuffer`, found `object` +torch/_inductor/jagged_lowerings.py:52:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/jagged_lowerings.py:53:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/jagged_lowerings.py:60:13: error[invalid-argument-type] Argument to bound method `bucketize` is incorrect: Expected `tuple[str, Expr, Expr, Expr]`, found `tuple[str, Expr, Unknown, int | Expr]` +torch/_inductor/jagged_lowerings.py:97:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/jagged_lowerings.py:101:9: error[invalid-argument-type] Argument to bound method `indirect_indexing` is incorrect: Expected `Expr`, found `int | Unknown` +torch/_inductor/jagged_lowerings.py:106:42: error[invalid-argument-type] Argument to bound method `indirect_indexing` is incorrect: Expected `Expr`, found `int | Expr` +torch/_inductor/kernel/bmm.py:122:31: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/_inductor/kernel/bmm.py:124:5: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/_inductor/kernel/bmm.py:130:5: error[unresolved-attribute] Module `torch` has no member `baddbmm` +torch/_inductor/kernel/bmm.py:188:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/kernel/bmm.py:189:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/kernel/conv.py:326:5: error[unresolved-attribute] Module `torch` has no member `convolution` +torch/_inductor/kernel/conv.py:334:9: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_inductor/kernel/conv.py:334:23: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_inductor/kernel/conv.py:335:12: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_inductor/kernel/conv.py:383:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr] | None`, found `Sequence[int]` +torch/_inductor/kernel/custom_op.py:70:23: warning[possibly-missing-attribute] Attribute `__name__` may be missing on object of type `(Unknown & ~AlwaysFalsy) | (((...) -> Any) & (() -> object) & ~AlwaysFalsy)` +torch/_inductor/kernel/custom_op.py:188:27: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/kernel/custom_op.py:354:16: error[unresolved-attribute] Module `torch._library` has no member `custom_ops` +torch/_inductor/kernel/flex/common.py:56:42: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/kernel/flex/common.py:206:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/kernel/flex/common.py:207:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/kernel/flex/common.py:216:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr]`, found `(list[int] & ~AlwaysFalsy) | list[Unknown]` +torch/_inductor/kernel/flex/common.py:266:15: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_inductor/kernel/flex/common.py:289:16: error[unresolved-attribute] Module `torch` has no member `full` +torch/_inductor/kernel/flex/flex_attention.py:148:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/kernel/flex/flex_attention.py:149:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/kernel/flex/flex_attention.py:150:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/kernel/flex/flex_attention.py:151:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/kernel/flex/flex_attention.py:162:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/kernel/flex/flex_attention.py:163:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/kernel/flex/flex_attention.py:164:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/kernel/flex/flex_attention.py:165:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/kernel/flex/flex_attention.py:293:15: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/kernel/flex/flex_attention.py:299:15: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/kernel/flex/flex_attention.py:439:60: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/kernel/flex/flex_attention.py:656:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/kernel/flex/flex_attention.py:657:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/kernel/flex/flex_attention.py:658:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/kernel/flex/flex_attention.py:659:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/kernel/flex/flex_attention.py:690:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/kernel/flex/flex_attention.py:691:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/kernel/flex/flex_attention.py:692:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/kernel/flex/flex_attention.py:693:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/kernel/flex/flex_attention.py:890:60: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/kernel/flex/flex_cpu.py:97:19: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/kernel/flex/flex_cpu.py:102:19: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/kernel/flex/flex_cpu.py:103:19: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/kernel/flex/flex_cpu.py:104:23: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/kernel/flex/flex_cpu.py:105:24: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/kernel/flex/flex_cpu.py:115:21: error[unresolved-attribute] Object of type `~None` has no attribute `freeze_layout` +torch/_inductor/kernel/flex/flex_cpu.py:122:19: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/kernel/flex/flex_cpu.py:123:19: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/kernel/flex/flex_cpu.py:124:23: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/kernel/flex/flex_cpu.py:125:24: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/kernel/flex/flex_cpu.py:165:17: error[unresolved-attribute] Module `torch` has no member `full` +torch/_inductor/kernel/flex/flex_cpu.py:241:34: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/kernel/flex/flex_cpu.py:241:47: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/kernel/flex/flex_cpu.py:241:63: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/kernel/flex/flex_decoding.py:234:15: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/kernel/flex/flex_decoding.py:240:15: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/kernel/flex/flex_decoding.py:246:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/kernel/flex/flex_decoding.py:247:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr]`, found `list[Unknown | int]` +torch/_inductor/kernel/flex/flex_flash_attention.py:234:15: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/kernel/mm.py:66:12: error[unresolved-import] Cannot resolve imported module `triton` +torch/_inductor/kernel/mm.py:926:30: error[unresolved-attribute] Module `torch` has no member `mm` +torch/_inductor/kernel/mm.py:928:5: error[unresolved-attribute] Module `torch` has no member `mm` +torch/_inductor/kernel/mm.py:935:5: error[unresolved-attribute] Module `torch` has no member `addmm` +torch/_inductor/kernel/mm.py:939:5: error[unresolved-attribute] Module `torch` has no member `_int_mm` +torch/_inductor/kernel/mm.py:943:5: error[unresolved-attribute] Module `torch` has no member `_sparse_semi_structured_mm` +torch/_inductor/kernel/mm.py:950:5: error[unresolved-attribute] Module `torch` has no member `_scaled_mm` +torch/_inductor/kernel/mm.py:955:32: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/kernel/mm.py:955:44: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/kernel/mm.py:965:16: error[unresolved-attribute] Module `torch` has no member `addmm` +torch/_inductor/kernel/mm.py:966:12: error[unresolved-attribute] Module `torch` has no member `addmm` +torch/_inductor/kernel/mm.py:1005:18: error[unresolved-attribute] Module `torch` has no member `permute` +torch/_inductor/kernel/mm.py:1007:14: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/_inductor/kernel/mm.py:1007:58: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/kernel/mm.py:1008:19: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_inductor/kernel/mm.py:1085:12: error[unresolved-attribute] Module `torch` has no member `mm` +torch/_inductor/kernel/mm.py:1089:12: error[unresolved-attribute] Module `torch` has no member `addmm` +torch/_inductor/kernel/mm.py:1118:30: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/kernel/mm.py:1119:37: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/kernel/mm.py:1119:52: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/kernel/mm.py:1150:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/kernel/mm.py:1151:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/kernel/mm.py:1336:46: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/kernel/mm.py:1356:60: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/kernel/mm.py:1520:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr] | None`, found `list[Unknown | int]` +torch/_inductor/kernel/mm.py:1537:42: error[invalid-argument-type] Argument to function `use_cutlass_template` is incorrect: Expected `int`, found `Unknown | Expr` +torch/_inductor/kernel/mm.py:1537:48: error[invalid-argument-type] Argument to function `use_cutlass_template` is incorrect: Expected `int`, found `Unknown | Expr` +torch/_inductor/kernel/mm.py:1716:26: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/kernel/mm.py:1781:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/kernel/mm_common.py:48:18: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/kernel/mm_common.py:48:33: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/kernel/mm_common.py:141:13: error[unresolved-attribute] Module `torch.utils` has no member `_triton` +torch/_inductor/kernel/mm_common.py:159:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/kernel/mm_common.py:160:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/kernel/mm_common.py:161:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/kernel/mm_common.py:162:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/kernel/mm_common.py:163:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/kernel/mm_grouped.py:572:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr] | None`, found `list[Unknown | int]` +torch/_inductor/kernel/mm_grouped.py:581:5: error[unresolved-attribute] Module `torch` has no member `_grouped_mm` +torch/_inductor/kernel/mm_grouped.py:589:5: error[unresolved-attribute] Module `torch` has no member `_scaled_grouped_mm` +torch/_inductor/kernel/mm_grouped.py:633:20: error[unresolved-attribute] Module `torch` has no member `linspace` +torch/_inductor/kernel/mm_grouped.py:641:20: error[unresolved-attribute] Module `torch` has no member `linspace` +torch/_inductor/kernel/mm_grouped.py:649:20: error[unresolved-attribute] Module `torch` has no member `linspace` +torch/_inductor/kernel/mm_grouped.py:668:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/kernel/mm_grouped.py:833:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/kernel/mm_grouped.py:865:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/kernel/mm_grouped.py:872:30: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/kernel_inputs.py:31:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/kernel_inputs.py:85:25: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/kernel_inputs.py:156:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/kernel_inputs.py:165:38: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/kernel_inputs.py:178:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/kernel_inputs.py:220:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/kernel_inputs.py:275:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/lookup_table/choices.py:43:33: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/loop_body.py:284:20: error[invalid-assignment] Implicit shadowing of function `new_body` +torch/_inductor/loop_body.py:287:16: error[invalid-return-type] Return type does not match returned value: expected `LoopBody`, found `def new_body(*indices: Sequence[Expr]) -> Any` +torch/_inductor/loop_body.py:690:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/lowering.py:34:5: warning[deprecated] The function `check` is deprecated: `torch._prims_common.check` is deprecated and will be removed in the future. Please use `torch._check*` functions instead. +torch/_inductor/lowering.py:185:15: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_inductor/lowering.py:189:15: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_inductor/lowering.py:191:15: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_inductor/lowering.py:241:8: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/lowering.py:242:8: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/lowering.py:243:8: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_inductor/lowering.py:244:8: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:245:8: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:246:8: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/lowering.py:247:8: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:248:8: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/lowering.py:249:8: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/_inductor/lowering.py:250:8: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_inductor/lowering.py:251:9: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/_inductor/lowering.py:252:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:253:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/lowering.py:295:20: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_inductor/lowering.py:326:49: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/lowering.py:365:21: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:564:13: error[invalid-argument-type] Argument to function `get_promoted_dtype` is incorrect: Expected `ELEMENTWISE_TYPE_PROMOTION_KIND`, found `Unknown | None | Literal[ELEMENTWISE_TYPE_PROMOTION_KIND.DEFAULT]` +torch/_inductor/lowering.py:622:26: error[invalid-assignment] Object of type `list[Unknown]` is not assignable to `tuple[TensorBox, ...]` +torch/_inductor/lowering.py:624:17: error[invalid-assignment] Cannot assign to a subscript on an object of type `tuple[TensorBox, ...]` +torch/_inductor/lowering.py:639:22: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/lowering.py:639:38: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/lowering.py:650:25: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:674:27: warning[possibly-missing-attribute] Attribute `type` may be missing on object of type `Unknown | None` +torch/_inductor/lowering.py:754:56: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/lowering.py:812:48: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/lowering.py:827:43: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/lowering.py:834:20: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_inductor/lowering.py:836:20: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_inductor/lowering.py:848:38: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/lowering.py:856:37: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/lowering.py:864:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/lowering.py:926:54: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:932:10: error[invalid-assignment] Implicit shadowing of function `fn` +torch/_inductor/lowering.py:1052:42: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:1054:53: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:1060:42: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:1062:53: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:1294:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Symbol`, found `None | Symbol` +torch/_inductor/lowering.py:1314:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Symbol`, found `None | Symbol` +torch/_inductor/lowering.py:1315:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Symbol`, found `Unknown | Literal[0]` +torch/_inductor/lowering.py:1385:44: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:1391:33: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:1393:58: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:1395:55: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:1451:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/lowering.py:1456:29: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/lowering.py:1457:33: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1458:33: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1475:68: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1477:28: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1478:41: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1479:33: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:1480:51: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:1496:27: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:1532:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/lowering.py:1534:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/lowering.py:1546:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1559:28: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1560:41: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1561:33: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1562:51: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1563:43: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1584:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/lowering.py:1586:29: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/lowering.py:1587:33: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1588:33: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1597:44: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1600:68: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1623:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/lowering.py:1625:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/lowering.py:1632:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1638:72: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1639:43: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1662:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/lowering.py:1664:29: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/lowering.py:1665:33: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1666:33: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1682:31: error[invalid-argument-type] Argument is incorrect: Expected `Sequence[Expr]`, found `tuple[Literal[0]] | tuple[()]` +torch/_inductor/lowering.py:1683:41: error[invalid-argument-type] Argument is incorrect: Expected `Sequence[Expr]`, found `tuple[Literal[0]] | tuple[()]` +torch/_inductor/lowering.py:1684:27: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1685:43: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1686:32: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1687:53: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1689:68: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1710:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/lowering.py:1712:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/lowering.py:1725:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1733:31: error[invalid-argument-type] Argument is incorrect: Expected `Sequence[Expr]`, found `tuple[Literal[0]] | tuple[()]` +torch/_inductor/lowering.py:1734:41: error[invalid-argument-type] Argument is incorrect: Expected `Sequence[Expr]`, found `tuple[Literal[0]] | tuple[()]` +torch/_inductor/lowering.py:1735:27: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1736:43: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1737:32: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1738:53: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1739:43: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:1755:31: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/lowering.py:1755:43: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/lowering.py:1883:5: warning[deprecated] The function `check` is deprecated: `torch._prims_common.check` is deprecated and will be removed in the future. Please use `torch._check*` functions instead. +torch/_inductor/lowering.py:2098:8: error[unsupported-operator] Operator `<` is not supported for types `Basic` and `int`, in comparing `Unknown | Basic` with `Literal[0]` +torch/_inductor/lowering.py:2099:9: error[unsupported-operator] Operator `+=` is unsupported between objects of type `Basic` and `Unknown | int` +torch/_inductor/lowering.py:2100:12: error[unsupported-operator] Operator `<=` is not supported for types `int` and `Basic`, in comparing `Literal[0]` with `Unknown | Basic` +torch/_inductor/lowering.py:2100:17: error[unsupported-operator] Operator `<` is not supported for types `Basic` and `int`, in comparing `Unknown | Basic` with `Unknown | int` +torch/_inductor/lowering.py:2155:19: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_inductor/lowering.py:2288:32: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:2307:57: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:2308:61: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:2311:47: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:2343:56: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/lowering.py:2358:56: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/lowering.py:2418:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/lowering.py:2446:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:2449:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr]`, found `list[int]` +torch/_inductor/lowering.py:2449:74: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Expr`, found `int` +torch/_inductor/lowering.py:2456:47: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:2475:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:2478:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Sequence[Expr]`, found `list[int]` +torch/_inductor/lowering.py:2478:74: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Expr`, found `int` +torch/_inductor/lowering.py:2485:47: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:2486:28: error[invalid-argument-type] Argument to bound method `index_expr` is incorrect: Expected `Expr`, found `int` +torch/_inductor/lowering.py:2486:33: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:2487:28: error[invalid-argument-type] Argument to bound method `index_expr` is incorrect: Expected `Expr`, found `int` +torch/_inductor/lowering.py:2487:34: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:2506:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[str, Expr, Expr, Expr]`, found `tuple[str, Expr, Unknown, int | Expr]` +torch/_inductor/lowering.py:2515:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[str, Expr]`, found `tuple[str, int | Expr]` +torch/_inductor/lowering.py:2551:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:2551:49: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:2644:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:2644:49: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:3013:15: error[unresolved-attribute] Module `torch` has no member `_prims` +torch/_inductor/lowering.py:3014:15: error[unresolved-attribute] Module `torch` has no member `_prims` +torch/_inductor/lowering.py:3015:15: error[unresolved-attribute] Module `torch` has no member `_prims` +torch/_inductor/lowering.py:3199:42: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:3200:32: error[invalid-argument-type] Argument to bound method `index_expr` is incorrect: Expected `Expr`, found `int | Unknown` +torch/_inductor/lowering.py:3200:39: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:3222:59: error[invalid-argument-type] Argument to bound method `normalize_start_end` is incorrect: Expected `int`, found `Unknown | None` +torch/_inductor/lowering.py:3222:66: error[invalid-argument-type] Argument to bound method `normalize_start_end` is incorrect: Expected `int`, found `Unknown | None` +torch/_inductor/lowering.py:3234:44: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:3243:57: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:3250:55: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:3257:69: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:3259:37: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:3289:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/lowering.py:3291:33: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/lowering.py:3294:26: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:3296:26: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_inductor/lowering.py:3322:50: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:3323:43: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:3335:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/lowering.py:3346:20: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_inductor/lowering.py:3357:20: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/_inductor/lowering.py:3359:31: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:3470:37: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/lowering.py:3473:26: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_inductor/lowering.py:3474:65: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/lowering.py:3486:21: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/lowering.py:3498:61: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_inductor/lowering.py:3514:37: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/lowering.py:3543:37: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/lowering.py:3545:30: error[invalid-argument-type] Argument to function `decode_dtype` is incorrect: Expected `int`, found `Unknown | None` +torch/_inductor/lowering.py:3576:33: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_inductor/lowering.py:3578:26: error[invalid-argument-type] Argument to function `decode_dtype` is incorrect: Expected `int`, found `Unknown | None` +torch/_inductor/lowering.py:3578:36: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_inductor/lowering.py:3579:24: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/lowering.py:3627:21: error[unresolved-attribute] Module `torch` has no member `full` +torch/_inductor/lowering.py:3706:27: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:3706:40: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:3706:53: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:3706:65: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/lowering.py:3713:27: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:3713:39: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/lowering.py:3958:40: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:3958:52: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/lowering.py:3971:56: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:3971:68: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/lowering.py:4064:26: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:4065:55: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:4124:14: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/lowering.py:4227:32: error[invalid-argument-type] Argument to bound method `indirect_indexing` is incorrect: Expected `Expr`, found `Literal[1] | Unknown` +torch/_inductor/lowering.py:4317:31: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:4319:46: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:4320:44: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:4321:29: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:4493:5: error[invalid-assignment] Invalid subscript assignment with key of type `str & ~AlwaysFalsy` and value of type `list[Unknown | Expr]` on object of type `dict[str, list[int]]` +torch/_inductor/lowering.py:4566:27: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:4567:44: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:4573:27: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:4574:30: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:4588:22: error[unsupported-operator] Unary operator `-` is unsupported for type `Unknown | None` +torch/_inductor/lowering.py:4591:28: error[unsupported-operator] Operator `*` is unsupported between objects of type `list[Unknown | int]` and `Unknown | None` +torch/_inductor/lowering.py:4594:25: error[unsupported-operator] Unary operator `-` is unsupported for type `Unknown | None` +torch/_inductor/lowering.py:4595:20: error[unsupported-operator] Unary operator `-` is unsupported for type `Unknown | None` +torch/_inductor/lowering.py:4600:83: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `SupportsIndex`, found `Unknown | None` +torch/_inductor/lowering.py:4708:21: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:4709:61: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_inductor/lowering.py:4741:19: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:4789:42: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/lowering.py:4798:9: error[unresolved-attribute] Module `torch._inductor` has no member `virtualized` +torch/_inductor/lowering.py:4811:71: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:4816:15: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:4986:52: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:4990:66: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:4993:66: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:4995:60: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:4996:60: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:4998:56: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:4999:56: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5000:66: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5001:65: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5006:57: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5007:57: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5011:72: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5016:72: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5029:61: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:5065:52: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:5066:45: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:5069:52: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:5070:45: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:5169:67: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:5194:25: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:5269:25: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:5286:27: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:5342:15: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:5379:50: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:5380:50: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:5382:32: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/lowering.py:5382:74: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/lowering.py:5386:37: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:5450:23: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:5515:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | None` +torch/_inductor/lowering.py:5677:56: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5769:44: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5770:44: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5771:42: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5772:42: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5773:49: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5774:49: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5779:44: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5783:43: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5785:54: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5786:54: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5787:57: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5788:56: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5797:66: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5800:66: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5802:60: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5803:60: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5805:56: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5806:56: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5807:66: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5808:65: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5813:57: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5814:57: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5829:72: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5836:72: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5851:72: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:5939:57: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5940:48: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5942:29: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5953:64: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5963:48: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5967:50: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5980:52: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5985:48: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5990:49: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:5994:58: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:6006:58: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:6025:76: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:6032:76: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:6039:76: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/lowering.py:6055:59: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/lowering.py:6149:55: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:6214:25: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/lowering.py:6214:40: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/lowering.py:6215:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/lowering.py:6291:51: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:6526:15: error[unresolved-attribute] Module `torch._inductor` has no member `ops_handler` +torch/_inductor/lowering.py:6533:28: error[unresolved-attribute] Module `torch._inductor` has no member `virtualized` +torch/_inductor/lowering.py:6599:17: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:6617:17: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:6641:17: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:6686:46: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:6694:32: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:6697:47: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:6709:46: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:6717:32: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:6720:47: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:6733:17: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:6741:21: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:6771:52: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:6774:52: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:6793:43: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:6796:49: error[invalid-argument-type] Argument to bound method `statically_known_lt` is incorrect: Expected `Expr`, found `Unknown | Literal[1]` +torch/_inductor/lowering.py:6796:59: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_inductor/lowering.py:6796:71: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_inductor/lowering.py:6800:42: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_inductor/lowering.py:6821:38: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:6880:27: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:6886:27: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:6892:27: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:6898:27: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:6910:56: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:6914:51: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:6915:51: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:6916:51: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:6917:56: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:6918:51: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:6919:51: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/lowering.py:7180:25: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_inductor/lowering.py:7181:25: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_inductor/lowering.py:7184:25: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_inductor/lowering.py:7186:25: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_inductor/lowering.py:7203:33: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_inductor/lowering.py:7228:54: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/lowering.py:7229:43: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/memory.py:544:9: error[invalid-assignment] Invalid subscript assignment with key of type `BaseSchedulerNode` and value of type `dict[Unknown | str, Unknown | int]` on object of type `dict[BaseSchedulerNode, NodeInfo]` +torch/_inductor/memory.py:553:9: error[invalid-assignment] Invalid subscript assignment with key of type `FreeableInputBuffer | SchedulerBuffer` and value of type `dict[Unknown | str, Unknown | int]` on object of type `dict[SchedulerBuffer | FreeableInputBuffer, BufferInfo]` +torch/_inductor/memory.py:687:9: error[invalid-assignment] Invalid subscript assignment with key of type `BaseSchedulerNode` and value of type `dict[Unknown | str, Unknown | int]` on object of type `dict[BaseSchedulerNode, NodeInfo]` +torch/_inductor/memory.py:944:54: error[unresolved-attribute] Object of type `(...) -> list[BaseSchedulerNode]` has no attribute `__name__` +torch/_inductor/memory.py:946:50: error[unresolved-attribute] Object of type `(...) -> list[BaseSchedulerNode]` has no attribute `__name__` +torch/_inductor/memory.py:948:61: error[unresolved-attribute] Object of type `(...) -> list[BaseSchedulerNode]` has no attribute `__name__` +torch/_inductor/mkldnn_ir.py:87:25: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/_inductor/mkldnn_ir.py:181:37: error[invalid-assignment] Object of type `list[Expr]` is not assignable to `list[int] | tuple[int, ...]` +torch/_inductor/mkldnn_ir.py:216:35: error[invalid-argument-type] Argument to function `convert_shape_to_inductor` is incorrect: Expected `Iterable[int | SymInt]`, found `list[int] | tuple[Unknown | int, ...] | list[Expr]` +torch/_inductor/mkldnn_ir.py:676:29: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_ir.py:676:44: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/mkldnn_ir.py:1051:29: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_ir.py:1051:44: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/mkldnn_ir.py:1174:29: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_ir.py:1174:44: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/mkldnn_lowerings.py:60:33: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_inductor/mkldnn_lowerings.py:60:55: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/mkldnn_lowerings.py:68:33: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_inductor/mkldnn_lowerings.py:68:55: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/mkldnn_lowerings.py:146:9: error[invalid-assignment] Object of type `list[IRNode | Unknown]` is not assignable to `list[TensorBox]` +torch/_inductor/mkldnn_lowerings.py:199:8: error[unresolved-attribute] Module `torch._C` has no member `_has_mkldnn` +torch/_inductor/mkldnn_lowerings.py:557:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/mkldnn_lowerings.py:557:45: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:561:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/mkldnn_lowerings.py:561:42: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/mkldnn_lowerings.py:619:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/mkldnn_lowerings.py:619:45: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:623:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/mkldnn_lowerings.py:623:42: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/mkldnn_lowerings.py:628:38: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:628:53: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/mkldnn_lowerings.py:629:43: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:629:58: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/mkldnn_lowerings.py:681:50: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/mkldnn_lowerings.py:681:62: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/mkldnn_lowerings.py:691:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/mkldnn_lowerings.py:691:49: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:708:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/mkldnn_lowerings.py:708:43: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/mkldnn_lowerings.py:713:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/mkldnn_lowerings.py:713:46: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/mkldnn_lowerings.py:733:36: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/mkldnn_lowerings.py:738:69: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/mkldnn_lowerings.py:740:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/mkldnn_lowerings.py:740:53: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/mkldnn_lowerings.py:757:25: error[unresolved-attribute] Module `torch` has no member `equal` +torch/_inductor/mkldnn_lowerings.py:758:25: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_inductor/mkldnn_lowerings.py:772:25: error[invalid-argument-type] Argument to function `create_int8_compensation` is incorrect: Expected `TensorBox`, found `TensorBox | ShapeAsConstantBuffer | Unknown` +torch/_inductor/mkldnn_lowerings.py:774:25: error[invalid-argument-type] Argument to function `create_int8_compensation` is incorrect: Expected `TensorBox`, found `TensorBox | ShapeAsConstantBuffer` +torch/_inductor/mkldnn_lowerings.py:781:29: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:782:29: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/mkldnn_lowerings.py:783:29: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/mkldnn_lowerings.py:784:29: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/mkldnn_lowerings.py:805:57: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:835:55: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:835:70: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/mkldnn_lowerings.py:836:50: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/mkldnn_lowerings.py:837:65: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:844:35: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:856:44: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/mkldnn_lowerings.py:869:47: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/mkldnn_lowerings.py:869:60: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/mkldnn_lowerings.py:877:68: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:880:52: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/mkldnn_lowerings.py:882:55: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:886:58: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:904:46: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/mkldnn_lowerings.py:904:59: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/mkldnn_lowerings.py:1006:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/mkldnn_lowerings.py:1006:49: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:1019:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/mkldnn_lowerings.py:1019:43: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/mkldnn_lowerings.py:1031:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/mkldnn_lowerings.py:1031:46: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/mkldnn_lowerings.py:1041:36: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/mkldnn_lowerings.py:1045:69: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/mkldnn_lowerings.py:1047:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/mkldnn_lowerings.py:1047:53: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/mkldnn_lowerings.py:1051:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:1052:21: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/mkldnn_lowerings.py:1053:42: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:1053:57: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/mkldnn_lowerings.py:1083:25: error[unresolved-attribute] Module `torch` has no member `equal` +torch/_inductor/mkldnn_lowerings.py:1084:25: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_inductor/mkldnn_lowerings.py:1099:25: error[invalid-argument-type] Argument to function `create_int8_compensation` is incorrect: Expected `TensorBox`, found `TensorBox | ShapeAsConstantBuffer | Unknown` +torch/_inductor/mkldnn_lowerings.py:1101:25: error[invalid-argument-type] Argument to function `create_int8_compensation` is incorrect: Expected `TensorBox`, found `TensorBox | ShapeAsConstantBuffer` +torch/_inductor/mkldnn_lowerings.py:1108:29: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:1109:29: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/mkldnn_lowerings.py:1110:29: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/mkldnn_lowerings.py:1111:29: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/mkldnn_lowerings.py:1142:57: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:1163:55: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:1163:70: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/mkldnn_lowerings.py:1164:50: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/mkldnn_lowerings.py:1165:65: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:1170:49: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:1170:64: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/mkldnn_lowerings.py:1171:44: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/mkldnn_lowerings.py:1172:57: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:1179:35: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:1194:44: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/mkldnn_lowerings.py:1207:47: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/mkldnn_lowerings.py:1207:60: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/mkldnn_lowerings.py:1215:68: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:1218:52: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/mkldnn_lowerings.py:1220:55: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:1224:58: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/mkldnn_lowerings.py:1227:62: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/mkldnn_lowerings.py:1231:39: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/mkldnn_lowerings.py:1301:12: error[unresolved-attribute] Module `torch._C` has no member `has_mkl` +torch/_inductor/ops_handler.py:88:63: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:128:51: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:139:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:140:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:149:41: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:163:40: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:169:41: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:175:41: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:181:45: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:181:69: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:240:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:241:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:269:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:281:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:296:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:722:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:722:30: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/ops_handler.py:1002:16: error[invalid-return-type] Return type does not match returned value: expected `Symbol`, found `Unknown | Expr` +torch/_inductor/ops_handler.py:1017:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:1018:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:1107:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:1138:41: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/ops_handler.py:1141:43: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/ops_handler.py:1141:59: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/optimize_indexing.py:29:17: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_inductor/optimize_indexing.py:29:29: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/optimize_indexing.py:53:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/optimize_indexing.py:54:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/optimize_indexing.py:55:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/optimize_indexing.py:92:15: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/optimize_indexing.py:108:33: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/output_code.py:118:16: error[invalid-return-type] Return type does not match returned value: expected `list[int]`, found `None` +torch/_inductor/output_code.py:137:8: error[unresolved-attribute] Module `torch` has no member `_debug_has_internal_overlap` +torch/_inductor/output_code.py:165:19: error[unresolved-attribute] Module `torch._inductor` has no member `cudagraph_trees` +torch/_inductor/output_code.py:421:36: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_inductor/output_code.py:561:72: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_inductor/output_code.py:604:13: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/output_code.py:605:17: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/output_code.py:609:17: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/output_code.py:611:21: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/output_code.py:614:13: error[unresolved-attribute] Module `torch._inductor` has no member `debug` +torch/_inductor/output_code.py:805:13: error[unresolved-attribute] Module `torch._inductor` has no member `cpp_builder` +torch/_inductor/output_code.py:806:16: error[unresolved-attribute] Module `torch._inductor` has no member `cpp_builder` +torch/_inductor/package/package.py:127:13: error[no-matching-overload] No overload of bound method `write` matches arguments +torch/_inductor/package/package.py:129:22: error[unresolved-attribute] Module `torch._C` has no member `_aoti` +torch/_inductor/package/package.py:135:14: error[unresolved-attribute] Module `torch._C` has no member `_aoti` +torch/_inductor/pattern_matcher.py:549:72: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Iterable[Unknown]`, found `(((...) -> Any) & ~(() -> object) & ~str) | (Sequence[((...) -> Any) | str] & ~(() -> object) & ~str)` +torch/_inductor/pattern_matcher.py:565:26: error[unresolved-attribute] Object of type `((...) -> Any) & ~str` has no attribute `__name__` +torch/_inductor/pattern_matcher.py:1032:19: error[call-non-callable] Object of type `object` is not callable +torch/_inductor/pattern_matcher.py:1088:23: error[not-iterable] Object of type `object` is not iterable +torch/_inductor/pattern_matcher.py:1371:9: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +torch/_inductor/pattern_matcher.py:1474:21: warning[possibly-missing-attribute] Member `detect_fake_mode` may be missing on module `torch._dynamo.utils` +torch/_inductor/pattern_matcher.py:1482:31: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_inductor/pattern_matcher.py:1581:12: error[unresolved-attribute] Module `torch` has no member `is_inference_mode_enabled` +torch/_inductor/pattern_matcher.py:1658:25: error[unresolved-attribute] Module `torch._inductor` has no member `pattern_matcher` +torch/_inductor/pattern_matcher.py:1659:28: error[unresolved-attribute] Module `torch._inductor` has no member `pattern_matcher` +torch/_inductor/pattern_matcher.py:1803:45: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/pattern_matcher.py:1803:59: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/pattern_matcher.py:1896:16: error[unresolved-attribute] Object of type `object` has no attribute `is_mutable` +torch/_inductor/pattern_matcher.py:1903:35: error[unresolved-attribute] Object of type `(((...) -> Any) & (() -> object) & ~AutoFunctionalized) | (str & (() -> object) & ~AutoFunctionalized)` has no attribute `__name__` +torch/_inductor/pattern_matcher.py:2142:48: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int | Multiple`, found `Any | KeywordArg | Ignored` +torch/_inductor/quantized_lowerings.py:24:5: error[unresolved-attribute] Module `torch` has no member `_weight_int8pack_mm` +torch/_inductor/quantized_lowerings.py:65:34: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/quantized_lowerings.py:65:50: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/quantized_lowerings.py:65:65: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/quantized_lowerings.py:66:37: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/quantized_lowerings.py:110:34: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/quantized_lowerings.py:110:50: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/quantized_lowerings.py:110:65: error[unresolved-attribute] Module `torch` has no member `float` +torch/_inductor/quantized_lowerings.py:111:37: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/quantized_lowerings.py:114:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/quantized_lowerings.py:114:44: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/quantized_lowerings.py:149:35: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/quantized_lowerings.py:153:20: error[unresolved-attribute] Module `torch` has no member `randint` +torch/_inductor/quantized_lowerings.py:153:55: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/remote_cache.py:26:12: error[unresolved-import] Cannot resolve imported module `redis` +torch/_inductor/remote_cache.py:181:21: error[invalid-assignment] Object of type `str` is not assignable to attribute `fail_reason` on type `(Unknown & ~AlwaysFalsy) | (type & ~AlwaysFalsy)` +torch/_inductor/remote_cache.py:200:21: error[invalid-assignment] Object of type `str` is not assignable to attribute `fail_reason` on type `(Unknown & ~AlwaysFalsy) | (type & ~AlwaysFalsy)` +torch/_inductor/remote_cache.py:236:31: error[invalid-argument-type] Argument to bound method `put` is incorrect: Expected `_U@__init__`, found `object` +torch/_inductor/remote_cache.py:254:22: warning[possibly-missing-attribute] Attribute `Redis` may be missing on object of type `Unknown | None` +torch/_inductor/remote_cache.py:279:16: warning[possibly-missing-attribute] Attribute `exceptions` may be missing on object of type `Unknown | None` +torch/_inductor/remote_cache.py:299:16: warning[possibly-missing-attribute] Attribute `exceptions` may be missing on object of type `Unknown | None` +torch/_inductor/remote_cache.py:361:20: error[unresolved-import] Cannot resolve imported module `torch._inductor.fb.remote_cache` +torch/_inductor/remote_gemm_autotune_cache.py:16:14: error[unresolved-import] Cannot resolve imported module `torch._inductor.fb.remote_gemm_autotune_cache` +torch/_inductor/runtime/autotune_cache.py:71:28: error[unresolved-attribute] Module `torch.utils` has no member `_triton` +torch/_inductor/runtime/autotune_cache.py:279:15: error[unresolved-attribute] Object of type `object` has no attribute `kwargs` +torch/_inductor/runtime/autotune_cache.py:281:26: error[unresolved-attribute] Object of type `object` has no attribute `num_warps` +torch/_inductor/runtime/autotune_cache.py:283:27: error[unresolved-attribute] Object of type `object` has no attribute `num_stages` +torch/_inductor/runtime/autotune_cache.py:374:18: error[unresolved-import] Cannot resolve imported module `torch._inductor.fb.remote_cache` +torch/_inductor/runtime/autotune_cache.py:514:12: error[unresolved-attribute] Module `torch._inductor` has no member `codecache` +torch/_inductor/runtime/autotune_cache.py:528:14: error[unresolved-import] Cannot resolve imported module `torch._inductor.fb.remote_cache` +torch/_inductor/runtime/autotune_cache.py:577:32: error[too-many-positional-arguments] Too many positional arguments to class `object`: expected 0, got 1 +torch/_inductor/runtime/autotune_cache.py:579:9: error[unresolved-attribute] Unresolved attribute `found_by_coordesc` on type `object`. +torch/_inductor/runtime/autotune_cache.py:586:60: error[unresolved-attribute] Object of type `object` has no attribute `kwargs` +torch/_inductor/runtime/autotune_cache.py:588:13: error[unresolved-attribute] Object of type `object` has no attribute `num_warps` +torch/_inductor/runtime/autotune_cache.py:590:13: error[unresolved-attribute] Object of type `object` has no attribute `num_stages` +torch/_inductor/runtime/benchmarking.py:89:53: error[unresolved-attribute] Object of type `(...) -> T@time_and_count` has no attribute `__name__` +torch/_inductor/runtime/benchmarking.py:106:64: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/runtime/benchmarking.py:107:35: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/runtime/benchmarking.py:136:37: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/runtime/benchmarking.py:167:35: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/runtime/benchmarking.py:170:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/runtime/benchmarking.py:182:44: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/runtime/benchmarking.py:195:35: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/runtime/benchmarking.py:247:18: error[unresolved-import] Cannot resolve imported module `triton.testing` +torch/_inductor/runtime/benchmarking.py:377:18: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/runtime/benchmarking.py:377:61: error[unresolved-attribute] Module `torch` has no member `int` +torch/_inductor/runtime/caching/implementations.py:342:11: error[unresolved-import] Cannot resolve imported module `.fb.implementations` +torch/_inductor/runtime/caching/interfaces.py:67:17: error[unresolved-attribute] Object of type `(...) -> R@_intf_callback` has no attribute `__name__` +torch/_inductor/runtime/caching/interfaces.py:79:17: error[unresolved-attribute] Object of type `(...) -> R@_intf_callback` has no attribute `__name__` +torch/_inductor/runtime/caching/interfaces.py:94:17: error[unresolved-attribute] Object of type `(...) -> R@_intf_callback` has no attribute `__name__` +torch/_inductor/runtime/caching/interfaces.py:110:17: error[unresolved-attribute] Object of type `(...) -> R@_intf_callback` has no attribute `__name__` +torch/_inductor/runtime/caching/interfaces.py:126:17: error[unresolved-attribute] Object of type `(...) -> R@_intf_callback` has no attribute `__name__` +torch/_inductor/runtime/caching/interfaces.py:136:17: error[unresolved-attribute] Object of type `(...) -> R@_intf_callback` has no attribute `__name__` +torch/_inductor/runtime/caching/interfaces.py:149:17: error[unresolved-attribute] Object of type `(...) -> R@_intf_callback` has no attribute `__name__` +torch/_inductor/runtime/caching/interfaces.py:160:17: error[unresolved-attribute] Object of type `(...) -> R@_intf_callback` has no attribute `__name__` +torch/_inductor/runtime/caching/interfaces.py:182:23: error[unresolved-attribute] Object of type `(...) -> R@_make_key` has no attribute `__name__` +torch/_inductor/runtime/caching/interfaces.py:444:65: error[unresolved-attribute] Object of type `(...) -> R@_get` has no attribute `__name__` +torch/_inductor/runtime/caching/interfaces.py:479:65: error[unresolved-attribute] Object of type `(...) -> R@_insert` has no attribute `__name__` +torch/_inductor/runtime/caching/interfaces.py:704:38: error[unresolved-attribute] Object of type `(...) -> R@_get` has no attribute `__name__` +torch/_inductor/runtime/caching/interfaces.py:752:38: error[unresolved-attribute] Object of type `(...) -> R@_insert` has no attribute `__name__` +torch/_inductor/runtime/coordinate_descent_tuner.py:222:26: warning[possibly-missing-attribute] Attribute `Config` may be missing on object of type `Unknown | ` +torch/_inductor/runtime/coordinate_descent_tuner.py:295:26: warning[possibly-missing-attribute] Attribute `Config` may be missing on object of type `Unknown | ` +torch/_inductor/runtime/coordinate_descent_tuner.py:297:27: warning[possibly-missing-attribute] Attribute `Config` may be missing on object of type `Unknown | ` +torch/_inductor/runtime/coordinate_descent_tuner.py:299:11: warning[possibly-missing-attribute] Attribute `Config` may be missing on object of type `Unknown | ` +torch/_inductor/runtime/debug_utils.py:110:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/runtime/debug_utils.py:111:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/runtime/debug_utils.py:114:9: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_inductor/runtime/hints.py:39:12: error[unresolved-import] Cannot resolve imported module `triton` +torch/_inductor/runtime/hints.py:40:12: error[unresolved-import] Cannot resolve imported module `triton.backends.compiler` +torch/_inductor/runtime/hints.py:41:12: error[unresolved-import] Cannot resolve imported module `triton.compiler.compiler` +torch/_inductor/runtime/hints.py:45:14: error[unresolved-import] Cannot resolve imported module `triton.backends.compiler` +torch/_inductor/runtime/hints.py:67:14: error[unresolved-import] Cannot resolve imported module `triton.compiler.compiler` +torch/_inductor/runtime/hints.py:93:62: error[not-iterable] Object of type `Unknown | None` may not be iterable +torch/_inductor/runtime/runtime_utils.py:72:20: error[unresolved-attribute] Object of type `object` has no attribute `kwargs` +torch/_inductor/runtime/runtime_utils.py:74:32: error[unresolved-attribute] Object of type `object` has no attribute `num_warps` +torch/_inductor/runtime/runtime_utils.py:76:33: error[unresolved-attribute] Object of type `object` has no attribute `num_stages` +torch/_inductor/runtime/runtime_utils.py:170:14: error[unresolved-import] Cannot resolve imported module `triton.runtime.cache` +torch/_inductor/runtime/runtime_utils.py:175:18: error[unresolved-import] Cannot resolve imported module `triton.runtime.cache` +torch/_inductor/runtime/runtime_utils.py:192:39: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/runtime/runtime_utils.py:205:12: error[unresolved-import] Cannot resolve imported module `jax.numpy` +torch/_inductor/runtime/runtime_utils.py:208:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/runtime/runtime_utils.py:209:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/runtime/runtime_utils.py:210:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/runtime/runtime_utils.py:211:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/runtime/runtime_utils.py:212:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/runtime/runtime_utils.py:213:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/runtime/runtime_utils.py:214:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_inductor/runtime/runtime_utils.py:215:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/runtime/runtime_utils.py:216:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/runtime/runtime_utils.py:217:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/runtime/runtime_utils.py:218:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_inductor/runtime/runtime_utils.py:219:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_inductor/runtime/runtime_utils.py:226:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/runtime/static_cuda_launcher.py:39:21: error[unresolved-attribute] Object of type `object` has no attribute `src` +torch/_inductor/runtime/static_cuda_launcher.py:41:26: error[unresolved-attribute] Object of type `object` has no attribute `asm` +torch/_inductor/runtime/static_cuda_launcher.py:43:27: error[unresolved-attribute] Object of type `object` has no attribute `_cubin_path` +torch/_inductor/runtime/static_cuda_launcher.py:47:26: error[unresolved-attribute] Object of type `object` has no attribute `src` +torch/_inductor/runtime/static_cuda_launcher.py:52:51: error[unresolved-attribute] Object of type `object` has no attribute `src` +torch/_inductor/runtime/static_cuda_launcher.py:55:21: error[unresolved-attribute] Object of type `object` has no attribute `hash` +torch/_inductor/runtime/static_cuda_launcher.py:59:28: error[unresolved-attribute] Object of type `type` has no attribute `launch_enter_hook` +torch/_inductor/runtime/static_cuda_launcher.py:61:27: error[unresolved-attribute] Object of type `type` has no attribute `launch_exit_hook` +torch/_inductor/runtime/static_cuda_launcher.py:83:26: error[unresolved-attribute] Object of type `object` has no attribute `metadata` +torch/_inductor/runtime/static_cuda_launcher.py:86:61: error[unresolved-attribute] Object of type `~` has no attribute `metadata` +torch/_inductor/runtime/static_cuda_launcher.py:91:24: error[unresolved-attribute] Object of type `object` has no attribute `metadata` +torch/_inductor/runtime/static_cuda_launcher.py:92:28: error[unresolved-attribute] Object of type `object` has no attribute `metadata` +torch/_inductor/runtime/static_cuda_launcher.py:107:51: error[unresolved-attribute] Object of type `object` has no attribute `src` +torch/_inductor/runtime/static_cuda_launcher.py:113:24: error[unresolved-attribute] Object of type `object` has no attribute `num_ctas` +torch/_inductor/runtime/static_cuda_launcher.py:134:30: error[unresolved-import] Module `torch._C` has no member `_StaticCudaLauncher` +torch/_inductor/runtime/static_cuda_launcher.py:187:24: warning[possibly-missing-attribute] Attribute `fn` may be missing on object of type `Unknown | None` +torch/_inductor/runtime/static_cuda_launcher.py:195:62: warning[possibly-missing-attribute] Attribute `signature` may be missing on object of type `Unknown | None` +torch/_inductor/runtime/static_cuda_launcher.py:238:30: error[unresolved-import] Module `torch._C` has no member `_StaticCudaLauncher` +torch/_inductor/runtime/triton_compat.py:10:12: error[unresolved-import] Cannot resolve imported module `triton` +torch/_inductor/runtime/triton_compat.py:16:12: error[unresolved-import] Cannot resolve imported module `triton.language` +torch/_inductor/runtime/triton_compat.py:17:10: error[unresolved-import] Cannot resolve imported module `triton` +torch/_inductor/runtime/triton_compat.py:18:10: error[unresolved-import] Cannot resolve imported module `triton.compiler` +torch/_inductor/runtime/triton_compat.py:19:10: error[unresolved-import] Cannot resolve imported module `triton.runtime.autotuner` +torch/_inductor/runtime/triton_compat.py:20:10: error[unresolved-import] Cannot resolve imported module `triton.runtime.jit` +torch/_inductor/runtime/triton_compat.py:23:14: error[unresolved-import] Cannot resolve imported module `triton.runtime.autotuner` +torch/_inductor/runtime/triton_compat.py:30:14: error[unresolved-import] Cannot resolve imported module `triton.compiler.compiler` +torch/_inductor/runtime/triton_compat.py:35:14: error[unresolved-import] Cannot resolve imported module `triton.backends.compiler` +torch/_inductor/runtime/triton_compat.py:50:14: error[unresolved-import] Cannot resolve imported module `triton.language.extra` +torch/_inductor/runtime/triton_compat.py:66:14: error[unresolved-import] Cannot resolve imported module `triton.language.standard` +torch/_inductor/runtime/triton_compat.py:86:14: error[unresolved-import] Cannot resolve imported module `triton` +torch/_inductor/runtime/triton_compat.py:93:14: error[unresolved-import] Cannot resolve imported module `triton.compiler.compiler` +torch/_inductor/scheduler.py:132:35: error[invalid-argument-type] Argument to function `sympy_product` is incorrect: Expected `Iterable[Expr]`, found `Sequence[int | Expr]` +torch/_inductor/scheduler.py:136:35: error[invalid-argument-type] Argument to function `sympy_product` is incorrect: Expected `Iterable[Expr]`, found `Sequence[int | Expr]` +torch/_inductor/scheduler.py:151:20: error[invalid-return-type] Return type does not match returned value: expected `tuple[Expr, Expr]`, found `tuple[Unknown & ~None, None | Unknown]` +torch/_inductor/scheduler.py:462:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/scheduler.py:473:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/scheduler.py:559:35: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/scheduler.py:563:37: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/scheduler.py:706:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/scheduler.py:754:42: error[unresolved-attribute] Module `torch._inductor` has no member `codegen` +torch/_inductor/scheduler.py:862:39: error[unresolved-attribute] Module `torch._inductor` has no member `codegen` +torch/_inductor/scheduler.py:985:16: error[unresolved-attribute] Module `torch` has no member `_prims` +torch/_inductor/scheduler.py:1040:23: error[invalid-assignment] Object of type `TensorBox | TorchBindObject | Expr` is not assignable to `Buffer | TensorBox | TorchBindObject` +torch/_inductor/scheduler.py:1221:37: error[unresolved-attribute] Module `torch._inductor` has no member `codecache` +torch/_inductor/scheduler.py:1222:12: error[unresolved-attribute] Module `torch._inductor` has no member `codecache` +torch/_inductor/scheduler.py:1399:59: error[call-non-callable] Object of type `object` is not callable +torch/_inductor/scheduler.py:1989:29: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/scheduler.py:2594:29: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/scheduler.py:2615:47: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/scheduler.py:2754:12: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/scheduler.py:2792:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/scheduler.py:2796:47: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/scheduler.py:2896:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Self@compute_dependencies`, found `DedupList[Unknown]` +torch/_inductor/scheduler.py:2899:36: error[invalid-type-form] Variable of type `str` is not allowed in a type expression +torch/_inductor/scheduler.py:2923:36: error[unsupported-operator] Operator `+` is unsupported between objects of type `DedupList[NodeUser]` and `DedupList[NodeUser]` +torch/_inductor/scheduler.py:2936:23: error[invalid-type-form] Variable of type `str` is not allowed in a type expression +torch/_inductor/scheduler.py:2936:31: error[invalid-type-form] Variable of type `str` is not allowed in a type expression +torch/_inductor/scheduler.py:2943:27: error[invalid-type-form] Variable of type `str` is not allowed in a type expression +torch/_inductor/scheduler.py:2948:13: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `Self@compute_dependencies`, found `DedupList[NodeUser]` +torch/_inductor/scheduler.py:2953:69: error[invalid-type-form] Variable of type `str` is not allowed in a type expression +torch/_inductor/scheduler.py:2961:21: error[invalid-assignment] Invalid subscript assignment with key of type `Basic` and value of type `None` on object of type `dict[Symbol, Unknown | None]` +torch/_inductor/scheduler.py:2968:25: error[invalid-assignment] Invalid subscript assignment with key of type `Basic | Unknown` and value of type `None` on object of type `dict[Symbol, Unknown | None]` +torch/_inductor/scheduler.py:3127:16: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/scheduler.py:3165:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/scheduler.py:3439:43: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/scheduler.py:3474:33: error[unresolved-attribute] Module `torch._inductor` has no member `select_algorithm` +torch/_inductor/scheduler.py:3481:21: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/scheduler.py:3607:14: error[unresolved-import] Cannot resolve imported module `triton.compiler.errors` +torch/_inductor/scheduler.py:3667:33: error[unresolved-attribute] Module `torch._inductor` has no member `select_algorithm` +torch/_inductor/scheduler.py:3672:29: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `tuple[Any, LambdaFuture | None, ModuleType]`, found `tuple[ChoiceCaller & Unknown, @Todo]` +torch/_inductor/scheduler.py:3722:43: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/scheduler.py:3745:43: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `tuple[Any, LambdaFuture | None, ModuleType]`, found `tuple[ChoiceCaller & Unknown, @Todo]` +torch/_inductor/scheduler.py:4203:49: error[invalid-argument-type] Argument to bound method `statically_known_gt` is incorrect: Expected `Expr`, found `int` +torch/_inductor/scheduler.py:4628:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/scheduler.py:5158:31: warning[possibly-missing-attribute] Attribute `data` may be missing on object of type `(TensorBox & ~TorchBindObject & ~GeneratorState) | (Expr & ~TorchBindObject & ~GeneratorState)` +torch/_inductor/scheduler.py:5186:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/scheduler.py:5207:44: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/scheduler.py:5252:32: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/scheduler.py:5272:17: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/scheduler.py:5597:17: error[invalid-argument-type] Argument is incorrect: Expected `list[IRNode]`, found `list[IRNode | Expr | Unknown]` +torch/_inductor/scheduler.py:5812:20: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/scheduler.py:5852:58: error[invalid-argument-type] Argument to bound method `define_subgraph_launcher_fn` is incorrect: Expected `str`, found `Unknown | str | None` +torch/_inductor/scheduler.py:5901:73: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/scheduler.py:5907:54: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/scheduler.py:6210:44: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/select_algorithm.py:314:31: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/select_algorithm.py:314:46: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/select_algorithm.py:318:29: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/select_algorithm.py:328:19: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/select_algorithm.py:559:44: error[call-non-callable] Object of type `WrapperHandler` is not callable +torch/_inductor/select_algorithm.py:559:44: error[call-non-callable] Object of type `None` is not callable +torch/_inductor/select_algorithm.py:1298:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/select_algorithm.py:1740:17: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/select_algorithm.py:1962:26: error[invalid-assignment] Object of type `Sequence[Expr]` is not assignable to `Sequence[Symbol] | None` +torch/_inductor/select_algorithm.py:1968:13: error[invalid-argument-type] Argument to bound method `generate_and_load` is incorrect: Expected `Sequence[Symbol]`, found `Sequence[Symbol] | None` +torch/_inductor/select_algorithm.py:2021:32: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_inductor/select_algorithm.py:2024:23: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/select_algorithm.py:2058:17: error[invalid-argument-type] Argument to bound method `size_hints` is incorrect: Expected `Iterable[Expr | int]`, found `Sequence[Symbol] | None` +torch/_inductor/select_algorithm.py:2336:13: error[unresolved-attribute] Module `torch._C` has no member `_dynamo` +torch/_inductor/select_algorithm.py:2745:13: error[unresolved-attribute] Module `torch._inductor` has no member `autotune_process` +torch/_inductor/select_algorithm.py:2798:20: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/select_algorithm.py:2799:17: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/select_algorithm.py:3177:23: error[unresolved-attribute] Module `concurrent` has no member `futures` +torch/_inductor/select_algorithm.py:3178:29: error[unresolved-attribute] Module `concurrent` has no member `futures` +torch/_inductor/select_algorithm.py:3320:31: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/_inductor/select_algorithm.py:3327:32: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_inductor/select_algorithm.py:3338:21: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/_inductor/select_algorithm.py:3345:27: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/_inductor/select_algorithm.py:3352:28: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_inductor/select_algorithm.py:3362:22: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/_inductor/select_algorithm.py:3451:26: error[unresolved-import] Cannot resolve imported module `triton.runtime.autotuner` +torch/_inductor/select_algorithm.py:3682:31: error[unresolved-attribute] Module `torch._inductor` has no member `select_algorithm` +torch/_inductor/select_algorithm.py:3685:35: error[unresolved-attribute] Module `torch._inductor` has no member `select_algorithm` +torch/_inductor/select_algorithm.py:3790:35: error[unresolved-attribute] Module `torch._inductor` has no member `select_algorithm` +torch/_inductor/select_algorithm.py:3794:25: error[unresolved-attribute] Module `torch._inductor` has no member `select_algorithm` +torch/_inductor/select_algorithm.py:3897:17: warning[possibly-missing-attribute] Attribute `offset` may be missing on object of type `@Todo | OutputSpec` +torch/_inductor/select_algorithm.py:4000:13: error[unresolved-attribute] Module `torch._inductor` has no member `config` +torch/_inductor/shape_propagation.py:20:63: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/shape_propagation.py:65:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/shape_propagation.py:84:52: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/shape_propagation.py:102:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/shape_propagation.py:103:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/shape_propagation.py:118:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/shape_propagation.py:119:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/shape_propagation.py:132:45: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/sizevars.py:430:33: error[invalid-argument-type] Argument to function `sympy_subs` is incorrect: Expected `dict[Expr, Any]`, found `dict[Symbol, Expr]` +torch/_inductor/sizevars.py:438:20: error[invalid-argument-type] Argument to bound method `check` is incorrect: Expected `Expr`, found `Equality` +torch/_inductor/sizevars.py:439:16: error[invalid-return-type] Return type does not match returned value: expected `None`, found `Expr` +torch/_inductor/sizevars.py:446:20: error[invalid-argument-type] Argument to bound method `check` is incorrect: Expected `Expr`, found `Equality` +torch/_inductor/sizevars.py:447:33: error[invalid-argument-type] Argument to function `sympy_subs` is incorrect: Expected `dict[Expr, Any]`, found `dict[Symbol, Expr]` +torch/_inductor/sizevars.py:450:20: error[invalid-argument-type] Argument to bound method `check` is incorrect: Expected `Expr`, found `LessThan` +torch/_inductor/sizevars.py:453:20: error[invalid-argument-type] Argument to bound method `check` is incorrect: Expected `Expr`, found `StrictLessThan` +torch/_inductor/sizevars.py:492:16: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `Unknown | Basic` +torch/_inductor/sizevars.py:594:37: error[invalid-argument-type] Argument to function `sympy_subs` is incorrect: Expected `dict[Expr, Any]`, found `Unknown | dict[Symbol, int]` +torch/_inductor/sizevars.py:596:33: error[invalid-argument-type] Argument to function `sympy_subs` is incorrect: Expected `dict[Expr, Any]`, found `Unknown | dict[Symbol, Integer]` +torch/_inductor/sizevars.py:613:20: error[no-matching-overload] No overload of bound method `get` matches arguments +torch/_inductor/sizevars.py:933:17: error[invalid-argument-type] Argument to bound method `size_hint` is incorrect: Expected `Expr | int`, found `Basic` +torch/_inductor/sizevars.py:1029:16: error[unsupported-operator] Operator `%` is unsupported between objects of type `Basic` and `Basic` +torch/_inductor/standalone_compile.py:186:18: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_inductor/standalone_compile.py:210:23: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/standalone_compile.py:211:18: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/standalone_compile.py:377:19: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/standalone_compile.py:414:15: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/standalone_compile.py:416:9: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/standalone_compile.py:419:9: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_inductor/subgraph_lowering.py:134:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/subgraph_lowering.py:135:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/template_heuristics/cutedsl.py:122:28: error[invalid-argument-type] Argument is incorrect: Expected `int`, found `Unknown | int | TensorMapUpdateMode` +torch/_inductor/template_heuristics/cutedsl.py:122:28: error[invalid-argument-type] Argument is incorrect: Expected `int`, found `Unknown | int | TensorMapUpdateMode` +torch/_inductor/template_heuristics/cutedsl.py:122:28: error[invalid-argument-type] Argument is incorrect: Expected `int`, found `Unknown | int | TensorMapUpdateMode` +torch/_inductor/template_heuristics/cutedsl.py:122:28: error[invalid-argument-type] Argument is incorrect: Expected `int`, found `Unknown | int | TensorMapUpdateMode` +torch/_inductor/template_heuristics/cutedsl.py:122:28: error[invalid-argument-type] Argument is incorrect: Expected `bool`, found `Unknown | int | TensorMapUpdateMode` +torch/_inductor/template_heuristics/cutedsl.py:122:28: error[invalid-argument-type] Argument is incorrect: Expected `TensorMapUpdateMode`, found `Unknown | int | TensorMapUpdateMode` +torch/_inductor/template_heuristics/triton.py:46:10: error[unresolved-import] Cannot resolve imported module `triton` +torch/_inductor/template_heuristics/triton.py:635:21: error[invalid-argument-type] Argument is incorrect: Expected `Integer`, found `int` +torch/_inductor/template_heuristics/triton.py:635:44: error[invalid-argument-type] Argument is incorrect: Expected `Integer`, found `int` +torch/_inductor/template_heuristics/triton.py:635:67: error[invalid-argument-type] Argument is incorrect: Expected `Integer`, found `int` +torch/_inductor/template_heuristics/triton.py:775:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:780:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:911:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:912:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:913:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:914:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:915:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:916:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:917:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:918:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:919:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:923:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:924:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:925:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:926:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:927:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:928:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:929:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:930:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:931:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:932:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:933:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:934:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:938:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:939:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:940:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:941:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:942:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:943:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:944:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:945:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:946:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:950:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:951:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:952:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:953:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:954:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:955:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:956:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:957:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:958:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:981:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:1002:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:1024:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:1084:44: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:1189:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:1190:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:1191:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:1192:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:1193:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:1194:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:1195:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:1196:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:1197:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:1358:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:1366:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:1386:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:1429:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:1430:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:1431:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:1432:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:1433:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:1434:14: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/template_heuristics/triton.py:1435:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:1436:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:1437:14: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:1479:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:1487:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:1507:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/template_heuristics/triton.py:1648:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/template_heuristics/triton.py:1679:36: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/template_heuristics/triton.py:1684:22: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/template_heuristics/triton.py:1684:37: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/test_operators.py:9:61: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_inductor/tiling_utils.py:160:13: error[invalid-assignment] Invalid subscript assignment with key of type `Basic` and value of type `Literal[0]` on object of type `dict[Symbol, int]` +torch/_inductor/tiling_utils.py:162:13: error[invalid-assignment] Invalid subscript assignment with key of type `Basic` and value of type `int` on object of type `dict[Symbol, int]` +torch/_inductor/tiling_utils.py:162:37: error[invalid-argument-type] Argument to function `get_hint` is incorrect: Expected `Expr | int`, found `Basic` +torch/_inductor/tiling_utils.py:164:36: error[invalid-argument-type] Argument to function `sympy_subs` is incorrect: Expected `dict[Expr, Any]`, found `dict[Symbol, int]` +torch/_inductor/tiling_utils.py:169:9: error[invalid-assignment] Invalid subscript assignment with key of type `Expr` and value of type `Literal[1]` on object of type `dict[Symbol, int]` +torch/_inductor/tiling_utils.py:171:41: error[invalid-argument-type] Argument to function `sympy_subs` is incorrect: Expected `dict[Expr, Any]`, found `dict[Symbol, int]` +torch/_inductor/tiling_utils.py:178:9: error[invalid-assignment] Invalid subscript assignment with key of type `Expr` and value of type `Literal[0]` on object of type `dict[Symbol, int]` +torch/_inductor/tiling_utils.py:198:13: error[invalid-assignment] Invalid subscript assignment with key of type `Basic` and value of type `Literal[0]` on object of type `dict[Symbol, int]` +torch/_inductor/tiling_utils.py:200:13: error[invalid-assignment] Invalid subscript assignment with key of type `Basic` and value of type `int` on object of type `dict[Symbol, int]` +torch/_inductor/tiling_utils.py:200:37: error[invalid-argument-type] Argument to function `get_hint` is incorrect: Expected `Expr | int`, found `Basic` +torch/_inductor/tiling_utils.py:202:36: error[invalid-argument-type] Argument to function `sympy_subs` is incorrect: Expected `dict[Expr, Any]`, found `dict[Symbol, int]` +torch/_inductor/tiling_utils.py:204:9: error[invalid-assignment] Invalid subscript assignment with key of type `Expr` and value of type `Literal[1]` on object of type `dict[Symbol, int]` +torch/_inductor/tiling_utils.py:206:41: error[invalid-argument-type] Argument to function `sympy_subs` is incorrect: Expected `dict[Expr, Any]`, found `dict[Symbol, int]` +torch/_inductor/tiling_utils.py:211:13: error[invalid-assignment] Invalid subscript assignment with key of type `Expr` and value of type `Literal[2]` on object of type `dict[Symbol, int]` +torch/_inductor/tiling_utils.py:214:35: error[invalid-argument-type] Argument to function `sympy_subs` is incorrect: Expected `dict[Expr, Any]`, found `dict[Symbol, int]` +torch/_inductor/tiling_utils.py:216:9: error[invalid-assignment] Invalid subscript assignment with key of type `Expr` and value of type `Literal[0]` on object of type `dict[Symbol, int]` +torch/_inductor/tiling_utils.py:310:34: error[unresolved-attribute] Module `torch._inductor` has no member `scheduler` +torch/_inductor/tiling_utils.py:327:17: error[unresolved-attribute] Module `torch._inductor` has no member `codegen` +torch/_inductor/tiling_utils.py:500:35: error[invalid-assignment] Object of type `tuple[Expr, ...]` is not assignable to `Expr` +torch/_inductor/tiling_utils.py:501:29: error[invalid-assignment] Object of type `tuple[Expr, ...]` is not assignable to `Expr` +torch/_inductor/tiling_utils.py:518:30: error[unresolved-attribute] Module `torch._inductor` has no member `scheduler` +torch/_inductor/tiling_utils.py:551:13: error[unresolved-attribute] Module `torch._inductor` has no member `codegen` +torch/_inductor/tiling_utils.py:556:13: error[unresolved-attribute] Module `torch._inductor` has no member `codegen` +torch/_inductor/tiling_utils.py:575:47: error[invalid-argument-type] Argument to function `sympy_subs` is incorrect: Expected `dict[Expr, Any]`, found `dict[Symbol, Expr]` +torch/_inductor/tiling_utils.py:578:48: error[invalid-argument-type] Argument to function `sympy_subs` is incorrect: Expected `dict[Expr, Any]`, found `dict[Symbol, Expr]` +torch/_inductor/tiling_utils.py:600:9: error[invalid-argument-type] Argument is incorrect: Expected `dict[Symbol, int]`, found `dict[Expr, Expr]` +torch/_inductor/tiling_utils.py:615:33: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `Symbol`, found `Basic` +torch/_inductor/tiling_utils.py:621:12: error[invalid-return-type] Return type does not match returned value: expected `int`, found `Unknown | Expr | int` +torch/_inductor/tiling_utils.py:630:12: error[invalid-return-type] Return type does not match returned value: expected `int | None`, found `Unknown | Expr | int` +torch/_inductor/tiling_utils.py:712:63: error[invalid-argument-type] Argument to function `find_coalesced_var` is incorrect: Expected `dict[Expr, int]`, found `dict[Symbol, int]` +torch/_inductor/tiling_utils.py:717:67: error[invalid-argument-type] Argument to function `find_broadcast_var` is incorrect: Expected `dict[Expr, int]`, found `dict[Symbol, int]` +torch/_inductor/tiling_utils.py:762:24: error[unresolved-attribute] Object of type `Expr` has no attribute `is_integer` +torch/_inductor/tiling_utils.py:767:57: error[invalid-argument-type] Argument to bound method `statically_known_lt` is incorrect: Expected `Expr`, found `int` +torch/_inductor/tiling_utils.py:775:54: error[invalid-argument-type] Argument to bound method `statically_known_lt` is incorrect: Expected `Expr`, found `Literal[8]` +torch/_inductor/utils.py:115:33: warning[possibly-missing-import] Member `detect_fake_mode` of module `torch._dynamo.utils` may be missing +torch/_inductor/utils.py:164:24: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `(Basic, /) -> Unknown`, found `def _is_aligned(v: Expr) -> bool` +torch/_inductor/utils.py:177:20: error[invalid-return-type] Return type does not match returned value: expected `Expr | None`, found `int` +torch/_inductor/utils.py:211:13: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/utils.py:211:48: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/utils.py:247:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/utils.py:251:11: error[unresolved-attribute] Module `torch` has no member `mean` +torch/_inductor/utils.py:319:13: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/utils.py:319:48: error[unresolved-attribute] Module `torch` has no member `int` +torch/_inductor/utils.py:395:14: error[unresolved-import] Cannot resolve imported module `torchvision.ops` +torch/_inductor/utils.py:397:9: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_inductor/utils.py:408:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/utils.py:408:66: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/utils.py:410:16: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/utils.py:412:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/utils.py:415:16: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/utils.py:446:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/utils.py:550:12: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_inductor/utils.py:611:15: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_inductor/utils.py:614:12: error[unresolved-attribute] Module `torch` has no member `median` +torch/_inductor/utils.py:674:12: error[unresolved-attribute] Object of type `(...) -> RV@cache_on_self` has no attribute `__name__` +torch/_inductor/utils.py:766:17: error[unresolved-attribute] Object of type `~AlwaysFalsy` has no attribute `origins` +torch/_inductor/utils.py:938:55: error[invalid-argument-type] Argument to function `stringify_shape` is incorrect: Expected `Iterable[int]`, found `Sequence[Expr]` +torch/_inductor/utils.py:939:56: error[invalid-argument-type] Argument to function `stringify_shape` is incorrect: Expected `Iterable[int]`, found `Sequence[Expr]` +torch/_inductor/utils.py:1053:73: error[invalid-argument-type] Argument to function `sympy_str_mul` is incorrect: Expected `Expr`, found `Basic` +torch/_inductor/utils.py:1076:58: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `(Basic, /) -> Unknown`, found `def sympy_str(expr: Expr) -> str` +torch/_inductor/utils.py:1146:20: error[invalid-return-type] Return type does not match returned value: expected `Symbol`, found `Expr` +torch/_inductor/utils.py:1231:61: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/utils.py:1233:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/utils.py:1241:29: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/utils.py:1263:29: error[unresolved-attribute] Module `torch._inductor` has no member `runtime` +torch/_inductor/utils.py:1268:29: error[unresolved-attribute] Module `torch._inductor` has no member `runtime` +torch/_inductor/utils.py:1390:20: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `Basic` +torch/_inductor/utils.py:1390:44: error[invalid-argument-type] Argument to bound method `evaluate_expr` is incorrect: Expected `Basic`, found `SymInt | Expr` +torch/_inductor/utils.py:1417:27: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/utils.py:1420:17: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_inductor/utils.py:1422:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/utils.py:1671:44: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/utils.py:1672:36: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/utils.py:1675:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/utils.py:1721:16: error[unresolved-attribute] Module `torch._C` has no member `_get_sm_carveout_experimental` +torch/_inductor/utils.py:1727:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/utils.py:1738:9: error[invalid-argument-type] Argument is incorrect: Expected `Expr`, found `int` +torch/_inductor/utils.py:1746:49: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/utils.py:1782:22: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/utils.py:1782:37: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/utils.py:1782:53: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/utils.py:1784:26: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/utils.py:1784:41: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/utils.py:1784:57: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/utils.py:1784:72: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/utils.py:1786:31: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/utils.py:1786:52: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_inductor/utils.py:1824:62: error[invalid-argument-type] Argument to bound method `statically_known_multiple_of` is incorrect: Expected `Expr`, found `int | Expr` +torch/_inductor/utils.py:1853:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/utils.py:1864:26: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/utils.py:1864:41: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/utils.py:1864:57: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/utils.py:1865:43: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/utils.py:1877:58: error[invalid-argument-type] Argument to bound method `statically_known_geq` is incorrect: Expected `Expr`, found `Unknown | int | Expr` +torch/_inductor/utils.py:1903:21: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_inductor/utils.py:1904:13: error[invalid-argument-type] Argument to bound method `statically_known_geq` is incorrect: Expected `Expr`, found `Unknown | int | Expr` +torch/_inductor/utils.py:1952:16: error[unresolved-attribute] Module `importlib` has no member `util` +torch/_inductor/utils.py:1996:22: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/utils.py:2036:22: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/utils.py:2036:37: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/utils.py:2036:53: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/utils.py:2227:29: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/utils.py:2227:44: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/utils.py:2227:60: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/utils.py:2285:33: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/utils.py:2316:38: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/utils.py:2316:51: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_inductor/utils.py:2317:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/utils.py:2317:37: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/utils.py:2317:53: error[unresolved-attribute] Module `torch` has no member `half` +torch/_inductor/utils.py:2317:65: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_inductor/utils.py:2543:12: error[unresolved-attribute] Module `unittest` has no member `mock` +torch/_inductor/utils.py:2601:24: error[unresolved-attribute] Module `torch` has no member `device` +torch/_inductor/utils.py:2607:46: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/utils.py:2612:16: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/utils.py:2614:16: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_inductor/utils.py:2629:19: error[unresolved-attribute] Module `torch` has no member `get_num_threads` +torch/_inductor/utils.py:2642:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/utils.py:2651:10: error[unresolved-import] Cannot resolve imported module `triton.testing` +torch/_inductor/utils.py:2658:22: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/utils.py:2658:37: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/utils.py:2658:53: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/utils.py:2665:22: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/utils.py:2665:37: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/utils.py:2669:46: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/utils.py:2671:40: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/utils.py:2673:22: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/utils.py:2673:37: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/utils.py:2679:46: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/utils.py:2682:40: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/utils.py:2687:10: error[unresolved-import] Cannot resolve imported module `triton.testing` +torch/_inductor/utils.py:2693:10: error[unresolved-import] Cannot resolve imported module `triton.runtime` +torch/_inductor/utils.py:2954:14: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_inductor/utils.py:3037:57: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/utils.py:3038:17: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/utils.py:3041:26: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/utils.py:3041:39: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/utils.py:3047:17: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/utils.py:3048:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/utils.py:3078:60: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_inductor/utils.py:3078:72: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/utils.py:3142:23: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/utils.py:3159:10: error[unresolved-attribute] Module `unittest` has no member `mock` +torch/_inductor/utils.py:3224:13: error[unresolved-attribute] Module `torch` has no member `_foreach_copy_` +torch/_inductor/utils.py:3239:14: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/_inductor/utils.py:3240:12: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/_inductor/utils.py:3294:15: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_inductor/utils.py:3294:27: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/utils.py:3334:15: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/utils.py:3344:27: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/utils.py:3369:14: error[unresolved-import] Cannot resolve imported module `torch._inductor.fb.remote_cache` +torch/_inductor/utils.py:3400:24: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/utils.py:3406:41: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/utils.py:3410:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/utils.py:3459:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/utils.py:3468:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/utils.py:3497:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/utils.py:3497:48: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/utils.py:3500:19: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_inductor/utils.py:3500:34: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_inductor/utils.py:3504:16: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_inductor/utils.py:3571:23: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_inductor/utils.py:3589:8: error[unresolved-attribute] Module `importlib` has no member `util` +torch/_inductor/utils.py:3592:12: error[unresolved-import] Cannot resolve imported module `triton.backends.compiler` +torch/_inductor/utils.py:3593:12: error[unresolved-import] Cannot resolve imported module `triton.compiler.compiler` +torch/_inductor/utils.py:3639:14: error[unresolved-import] Cannot resolve imported module `libfb.py.parutil` +torch/_inductor/utils.py:3665:35: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_inductor/utils.py:3669:9: error[invalid-argument-type] Argument to bound method `statically_known_lt` is incorrect: Expected `Expr`, found `int` +torch/_inductor/utils.py:3670:49: error[invalid-argument-type] Argument to bound method `statically_known_geq` is incorrect: Expected `Expr`, found `int` +torch/_inductor/utils.py:3671:16: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/utils.py:3673:16: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/utils.py:4021:30: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/utils.py:4022:16: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/utils.py:4026:9: error[unresolved-attribute] Module `torch._inductor` has no member `ir` +torch/_inductor/utils.py:4033:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_inductor/virtualized.py:180:20: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_inductor/virtualized.py:182:20: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_inductor/wrapper_benchmark.py:179:17: error[unresolved-attribute] Module `torch.autograd` has no member `profiler_util` +torch/_inductor/wrapper_benchmark.py:189:13: error[unresolved-attribute] Module `torch.autograd` has no member `profiler_util` +torch/_inductor/wrapper_benchmark.py:199:13: error[unresolved-attribute] Module `torch.autograd` has no member `profiler_util` +torch/_jit_internal.py:47:22: error[unresolved-import] Module `torch._C` has no member `_Await` +torch/_jit_internal.py:47:40: error[unresolved-import] Module `torch._C` has no member `Future` +torch/_jit_internal.py:132:24: error[unresolved-attribute] Module `torch._C` has no member `ScriptFunction` +torch/_jit_internal.py:1210:39: warning[possibly-missing-import] Member `RRef` of module `torch.distributed.rpc` may be missing +torch/_jit_internal.py:1239:19: error[unresolved-attribute] Module `torch._C` has no member `_jit_tree_views` +torch/_jit_internal.py:1311:24: error[unresolved-attribute] Module `torch.jit` has no member `annotations` +torch/_jit_internal.py:1314:32: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/_jit_internal.py:1330:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_get_emit_hooks` +torch/_jit_internal.py:1331:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_emit_hooks` +torch/_jit_internal.py:1335:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_emit_hooks` +torch/_jit_internal.py:1341:22: error[unresolved-attribute] Module `torch._C` has no member `_jit_get_emit_hooks` +torch/_jit_internal.py:1342:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_emit_hooks` +torch/_jit_internal.py:1345:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_emit_hooks` +torch/_jit_internal.py:1467:32: error[unresolved-attribute] Module `collections` has no member `abc` +torch/_lazy/extract_compiled_graph.py:106:28: error[unresolved-attribute] Module `torch` has no member `device` +torch/_lazy/extract_compiled_graph.py:107:20: error[unresolved-attribute] Module `torch` has no member `device` +torch/_lazy/extract_compiled_graph.py:112:29: error[unresolved-attribute] Module `torch` has no member `device` +torch/_lazy/extract_compiled_graph.py:135:32: error[unresolved-attribute] Module `torch` has no member `device` +torch/_lazy/extract_compiled_graph.py:163:49: error[unresolved-attribute] Module `torch` has no member `device` +torch/_lazy/tensor_factory_functions.py:15:5: error[unresolved-attribute] Module `torch` has no member `_cudnn_init_dropout_state` +torch/_lazy/tensor_factory_functions.py:16:5: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_lazy/tensor_factory_functions.py:17:5: error[unresolved-attribute] Module `torch` has no member `bartlett_window` +torch/_lazy/tensor_factory_functions.py:18:5: error[unresolved-attribute] Module `torch` has no member `blackman_window` +torch/_lazy/tensor_factory_functions.py:19:5: error[unresolved-attribute] Module `torch` has no member `_empty_affine_quantized` +torch/_lazy/tensor_factory_functions.py:20:5: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_lazy/tensor_factory_functions.py:21:5: error[unresolved-attribute] Module `torch` has no member `eye` +torch/_lazy/tensor_factory_functions.py:22:5: error[unresolved-attribute] Module `torch` has no member `full` +torch/_lazy/tensor_factory_functions.py:23:5: error[unresolved-attribute] Module `torch` has no member `from_file` +torch/_lazy/tensor_factory_functions.py:24:5: error[unresolved-attribute] Module `torch` has no member `hann_window` +torch/_lazy/tensor_factory_functions.py:25:5: error[unresolved-attribute] Module `torch` has no member `hamming_window` +torch/_lazy/tensor_factory_functions.py:26:5: error[unresolved-attribute] Module `torch` has no member `kaiser_window` +torch/_lazy/tensor_factory_functions.py:27:5: error[unresolved-attribute] Module `torch` has no member `linspace` +torch/_lazy/tensor_factory_functions.py:28:5: error[unresolved-attribute] Module `torch` has no member `logspace` +torch/_lazy/tensor_factory_functions.py:29:5: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_lazy/tensor_factory_functions.py:30:5: error[unresolved-attribute] Module `torch` has no member `scalar_tensor` +torch/_lazy/tensor_factory_functions.py:31:5: error[unresolved-attribute] Module `torch` has no member `rand` +torch/_lazy/tensor_factory_functions.py:32:5: error[unresolved-attribute] Module `torch` has no member `randint` +torch/_lazy/tensor_factory_functions.py:33:5: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_lazy/tensor_factory_functions.py:34:5: error[unresolved-attribute] Module `torch` has no member `randperm` +torch/_lazy/tensor_factory_functions.py:35:5: error[unresolved-attribute] Module `torch` has no member `range` +torch/_lazy/tensor_factory_functions.py:36:5: error[unresolved-attribute] Module `torch` has no member `_efficientzerotensor` +torch/_lazy/tensor_factory_functions.py:37:5: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_lazy/tensor_factory_functions.py:38:5: error[unresolved-attribute] Module `torch` has no member `tril_indices` +torch/_lazy/tensor_factory_functions.py:39:5: error[unresolved-attribute] Module `torch` has no member `triu_indices` +torch/_lazy/tensor_factory_functions.py:48:5: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_library/autograd.py:32:17: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_library/autograd.py:39:14: error[unresolved-attribute] Module `torch._C` has no member `_AutoDispatchBelowAutograd` +torch/_library/autograd.py:42:45: error[unresolved-attribute] Module `torch._C` has no member `_after_autograd_keyset` +torch/_library/autograd.py:49:14: error[unresolved-attribute] Module `torch._C` has no member `_AutoDispatchBelowAutograd` +torch/_library/autograd.py:52:45: error[unresolved-attribute] Module `torch._C` has no member `_after_autograd_keyset` +torch/_library/autograd.py:110:12: error[unresolved-attribute] Module `torch._C` has no member `is_grad_enabled` +torch/_library/autograd.py:110:37: error[unresolved-attribute] Module `torch._C` has no member `_any_requires_grad` +torch/_library/autograd.py:241:12: error[unresolved-attribute] Module `torch._C` has no member `_get_autograd_fallback_mode` +torch/_library/autograd.py:243:9: error[unresolved-attribute] Module `torch._C` has no member `_set_autograd_fallback_mode` +torch/_library/autograd.py:246:9: error[unresolved-attribute] Module `torch._C` has no member `_set_autograd_fallback_mode` +torch/_library/custom_ops.py:32:29: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_library/custom_ops.py:45:29: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_library/custom_ops.py:58:29: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_library/custom_ops.py:194:33: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_library/custom_ops.py:371:29: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_key_for_device` +torch/_library/custom_ops.py:606:54: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_library/custom_ops.py:609:22: error[unresolved-attribute] Module `torch._C` has no member `parse_schema` +torch/_library/custom_ops.py:621:19: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_library/custom_ops.py:632:36: warning[possibly-missing-attribute] Attribute `__name__` may be missing on object of type `Unknown | ((...) -> Unknown)` +torch/_library/custom_ops.py:649:31: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_get_computed_kernel_for_dispatch_key` +torch/_library/custom_ops.py:682:28: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_key_for_device` +torch/_library/custom_ops.py:683:36: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_library/custom_ops.py:685:17: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_library/custom_ops.py:845:31: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_library/custom_ops.py:846:17: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_library/custom_ops.py:847:17: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_library/custom_ops.py:847:41: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_library/custom_ops.py:848:18: error[unresolved-attribute] Module `torch._C` has no member `_ExcludeDispatchKeyGuard` +torch/_library/custom_ops.py:866:37: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_library/custom_ops.py:871:28: error[unresolved-attribute] Module `collections` has no member `abc` +torch/_library/custom_ops.py:937:14: error[invalid-assignment] Object of type `object` is not assignable to `CustomOpDef | OpOverload[Unknown, Any] | str` +torch/_library/effects.py:25:29: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/_library/effects.py:51:12: error[unresolved-attribute] Module `torch._C` has no member `_get_operation_overload` +torch/_library/effects.py:54:22: error[unresolved-attribute] Module `torch._C` has no member `_get_schema` +torch/_library/effects.py:56:41: error[unresolved-attribute] Module `torch` has no member `ClassType` +torch/_library/fake_class_registry.py:16:69: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_library/fake_class_registry.py:65:26: error[unresolved-attribute] Module `torch` has no member `FunctionSchema` +torch/_library/fake_class_registry.py:79:34: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_library/fake_class_registry.py:141:26: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_library/fake_class_registry.py:155:30: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_library/fake_class_registry.py:214:27: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_library/fake_class_registry.py:238:37: error[unresolved-attribute] Module `torch` has no member `FunctionSchema` +torch/_library/fake_class_registry.py:239:38: error[unresolved-attribute] Module `torch` has no member `ScriptMethod` +torch/_library/fake_class_registry.py:326:9: error[unresolved-attribute] Module `torch._C` has no member `_get_custom_class_python_wrapper` +torch/_library/fake_class_registry.py:368:14: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_library/fake_class_registry.py:382:43: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/_library/fake_class_registry.py:413:11: error[unresolved-attribute] Module `torch._library` has no member `fake_impl` +torch/_library/fake_class_registry.py:414:10: error[unresolved-attribute] Module `torch._library` has no member `fake_impl` +torch/_library/fake_impl.py:50:16: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_library/fake_impl.py:59:16: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_library/fake_impl.py:224:5: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/_library/fake_profile.py:27:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_library/fake_profile.py:28:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_library/fake_profile.py:29:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_library/fake_profile.py:65:20: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_library/fake_profile.py:277:20: error[unresolved-attribute] Module `torch` has no member `device` +torch/_library/fake_profile.py:286:69: error[invalid-assignment] Object of type `tuple[TensorMetadata, ...] | TensorMetadata` is not assignable to `tuple[TensorMetadata] | TensorMetadata` +torch/_library/infer_schema.py:9:19: error[unresolved-import] Module `torch` has no member `device` +torch/_library/infer_schema.py:9:27: error[unresolved-import] Module `torch` has no member `dtype` +torch/_library/infer_schema.py:63:18: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__globals__` +torch/_library/infer_schema.py:132:37: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_library/infer_schema.py:185:50: error[unresolved-attribute] Module `torch` has no member `device` +torch/_library/infer_schema.py:187:44: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_library/infer_schema.py:222:80: error[invalid-assignment] Object of type `list[Unknown | tuple[type | _SpecialForm, str] | tuple[types.UnionType, str]]` is not assignable to `list[tuple[type | _SpecialForm | GenericAlias, str]]` +torch/_library/infer_schema.py:232:26: error[unresolved-attribute] Module `collections` has no member `abc` +torch/_library/infer_schema.py:244:46: error[invalid-argument-type] Argument to function `derived_seq_types` is incorrect: Expected `type | _SpecialForm`, found `types.UnionType` +torch/_library/infer_schema.py:248:13: error[invalid-argument-type] Argument to bound method `extend` is incorrect: Expected `Iterable[tuple[type | _SpecialForm | GenericAlias, str]]`, found `GeneratorType[tuple[types.UnionType, str], None, None]` +torch/_library/infer_schema.py:256:82: error[invalid-assignment] Object of type `list[Unknown | tuple[, str, bool, bool, bool] | tuple[, str, bool, bool, bool] | ... omitted 6 union elements]` is not assignable to `list[tuple[type | _SpecialForm, str, bool, bool, bool]]` +torch/_library/opaque_object.py:23:36: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_library/opaque_object.py:26:41: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_library/opaque_object.py:84:12: error[unresolved-attribute] Module `torch._C` has no member `_make_opaque_object` +torch/_library/opaque_object.py:87:32: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_library/opaque_object.py:108:35: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_library/opaque_object.py:113:42: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_library/opaque_object.py:119:12: error[unresolved-attribute] Module `torch._C` has no member `_get_opaque_object_payload` +torch/_library/opaque_object.py:122:32: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_library/opaque_object.py:141:35: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_library/opaque_object.py:146:42: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_library/opaque_object.py:152:5: error[unresolved-attribute] Module `torch._C` has no member `_set_opaque_object_payload` +torch/_library/opaque_object.py:177:5: error[unresolved-attribute] Module `torch._C` has no member `_register_opaque_type` +torch/_library/opaque_object.py:187:12: error[unresolved-attribute] Module `torch._C` has no member `_is_opaque_type_registered` +torch/_library/triton.py:244:25: error[unresolved-attribute] Module `torch._subclasses` has no member `functional_tensor` +torch/_library/triton.py:357:10: error[unresolved-import] Cannot resolve imported module `triton.runtime.autotuner` +torch/_library/triton.py:358:10: error[unresolved-import] Cannot resolve imported module `triton.runtime.jit` +torch/_library/utils.py:100:31: error[unresolved-attribute] Module `torch` has no member `FunctionSchema` +torch/_library/utils.py:102:41: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_library/utils.py:106:41: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/_library/utils.py:109:33: error[unresolved-attribute] Module `torchgen` has no member `model` +torch/_library/utils.py:126:27: error[unresolved-attribute] Module `torch._C` has no member `FunctionSchema` +torch/_library/utils.py:141:16: error[unresolved-attribute] Module `torch._C` has no member `ListType` +torch/_library/utils.py:141:28: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/_library/utils.py:142:19: error[unresolved-attribute] Module `torch._C` has no member `ListType` +torch/_library/utils.py:142:31: error[unresolved-attribute] Module `torch._C` has no member `OptionalType` +torch/_library/utils.py:142:47: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/_library/utils.py:143:19: error[unresolved-attribute] Module `torch._C` has no member `OptionalType` +torch/_library/utils.py:143:35: error[unresolved-attribute] Module `torch._C` has no member `ListType` +torch/_library/utils.py:143:47: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/_library/utils.py:144:19: error[unresolved-attribute] Module `torch._C` has no member `OptionalType` +torch/_library/utils.py:144:35: error[unresolved-attribute] Module `torch._C` has no member `ListType` +torch/_library/utils.py:144:47: error[unresolved-attribute] Module `torch._C` has no member `OptionalType` +torch/_library/utils.py:144:63: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/_library/utils.py:150:19: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/_library/utils.py:150:49: error[unresolved-attribute] Module `torch._C` has no member `OptionalType` +torch/_library/utils.py:150:65: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/_library/utils.py:210:13: error[unresolved-attribute] Module `torch._C` has no member `FunctionSchema` +torch/_library/utils.py:211:21: error[unresolved-attribute] Module `torch._C` has no member `Argument` +torch/_library/utils.py:299:34: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_library/utils.py:309:13: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_keys` +torch/_library/utils.py:309:44: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_library/utils.py:316:33: error[unresolved-attribute] Module `torch._C` has no member `FunctionSchema` +torch/_library/utils.py:320:36: error[unresolved-attribute] Module `torch._C` has no member `FunctionSchema` +torch/_library/utils.py:330:28: error[unresolved-attribute] Module `torch._C` has no member `FunctionSchema` +torch/_library/utils.py:341:34: error[unresolved-attribute] Module `torch._C` has no member `FunctionSchema` +torch/_library/utils.py:347:24: error[unresolved-attribute] Module `torch._C` has no member `DeviceObjType` +torch/_library/utils.py:403:8: error[unresolved-attribute] Module `torch._C` has no member `_any_output_is_alias_to_input_or_output` +torch/_library/utils.py:442:17: error[unresolved-attribute] Module `torch` has no member `equal` +torch/_library/utils.py:488:8: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_library/utils.py:492:13: error[unresolved-attribute] Module `torch._library` has no member `custom_ops` +torch/_library/utils.py:495:12: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_library/utils.py:499:17: error[unresolved-attribute] Module `torch._library` has no member `simple_registry` +torch/_library/utils.py:502:12: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_library/utils.py:511:33: error[unresolved-attribute] Module `torch._C` has no member `FunctionSchema` +torch/_library/utils.py:524:5: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_library/utils.py:525:5: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_library/utils.py:526:5: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_library/utils.py:527:5: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_library/utils.py:535:6: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_library/utils.py:542:15: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_library/utils.py:551:20: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_library/utils.py:555:24: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/_linalg_utils.py:13:28: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/_linalg_utils.py:27:18: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_linalg_utils.py:27:33: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_linalg_utils.py:27:48: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_linalg_utils.py:29:12: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_linalg_utils.py:42:12: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_linalg_utils.py:67:13: error[unresolved-attribute] Module `torch` has no member `flip` +torch/_linalg_utils.py:68:13: error[unresolved-attribute] Module `torch` has no member `flip` +torch/_lobpcg.py:24:11: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_lobpcg.py:25:12: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_lobpcg.py:25:25: error[unresolved-attribute] Module `torch` has no member `diag_embed` +torch/_lobpcg.py:25:52: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_lobpcg.py:117:22: error[unresolved-attribute] Module `torch` has no member `eye` +torch/_lobpcg.py:132:15: error[unresolved-attribute] Module `torch` has no member `addcmul` +torch/_lobpcg.py:153:11: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_lobpcg.py:157:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_lobpcg.py:216:34: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_lobpcg.py:217:20: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_lobpcg.py:240:11: error[unresolved-attribute] Module `torch` has no member `cholesky_solve` +torch/_lobpcg.py:318:25: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_lobpcg.py:318:42: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_lobpcg.py:320:29: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_lobpcg.py:320:46: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_lobpcg.py:532:12: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/_lobpcg.py:610:17: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_lobpcg.py:610:41: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_lobpcg.py:656:17: error[unresolved-attribute] Module `torch` has no member `prod` +torch/_lobpcg.py:656:28: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_lobpcg.py:660:14: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_lobpcg.py:661:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_lobpcg.py:667:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_lobpcg.py:681:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_lobpcg.py:723:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_lobpcg.py:724:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_lobpcg.py:725:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_lobpcg.py:790:48: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_lobpcg.py:853:14: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_lobpcg.py:896:14: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_lobpcg.py:1014:12: error[unresolved-attribute] Module `torch` has no member `numel` +torch/_lobpcg.py:1026:14: error[unresolved-attribute] Module `torch` has no member `where` +torch/_lobpcg.py:1030:16: error[unresolved-attribute] Module `torch` has no member `numel` +torch/_lobpcg.py:1034:18: error[unresolved-attribute] Module `torch` has no member `where` +torch/_lobpcg.py:1043:20: error[unresolved-attribute] Module `torch` has no member `where` +torch/_lobpcg.py:1049:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/_lobpcg.py:1051:16: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_lobpcg.py:1082:14: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_lobpcg.py:1116:20: error[unresolved-attribute] Module `torch` has no member `numel` +torch/_lobpcg.py:1125:27: error[unresolved-attribute] Module `torch` has no member `eye` +torch/_logging/_internal.py:912:59: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/_logging/_internal.py:913:41: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/_logging/_internal.py:1149:24: error[unresolved-import] Cannot resolve imported module `torch.version` +torch/_logging/_internal.py:1178:44: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/_logging/_internal.py:1179:42: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/_logging/_internal.py:1240:9: error[invalid-assignment] Implicit shadowing of function `showwarning` +torch/_logging/_internal.py:1356:40: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/_logging/_internal.py:1357:34: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/_lowrank.py:65:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_lowrank.py:278:19: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_lowrank.py:285:15: error[unresolved-attribute] Module `torch` has no member `sparse_coo_tensor` +torch/_lowrank.py:289:21: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_meta_registrations.py:99:9: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/_meta_registrations.py:99:26: error[unresolved-attribute] Module `torch` has no member `half` +torch/_meta_registrations.py:100:9: error[unresolved-attribute] Module `torch` has no member `cfloat` +torch/_meta_registrations.py:100:23: error[unresolved-attribute] Module `torch` has no member `float` +torch/_meta_registrations.py:101:9: error[unresolved-attribute] Module `torch` has no member `cdouble` +torch/_meta_registrations.py:101:24: error[unresolved-attribute] Module `torch` has no member `double` +torch/_meta_registrations.py:123:12: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_meta_registrations.py:140:13: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_meta_registrations.py:150:26: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_meta_registrations.py:151:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_meta_registrations.py:162:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:177:24: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:213:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:213:49: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:221:14: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:222:15: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:222:65: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_meta_registrations.py:234:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:234:49: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:279:50: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:379:65: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:392:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_meta_registrations.py:399:11: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:404:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:415:11: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:425:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:437:11: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:446:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:454:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:474:42: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:484:49: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:512:45: error[unresolved-attribute] Module `torch` has no member `_debug_has_internal_overlap` +torch/_meta_registrations.py:552:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_meta_registrations.py:568:31: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_meta_registrations.py:568:59: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:584:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_meta_registrations.py:593:30: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_meta_registrations.py:593:58: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:613:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_meta_registrations.py:628:30: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_meta_registrations.py:628:58: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:645:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_meta_registrations.py:652:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:653:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_meta_registrations.py:654:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_meta_registrations.py:655:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_meta_registrations.py:656:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_meta_registrations.py:661:49: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_meta_registrations.py:661:61: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_meta_registrations.py:675:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_meta_registrations.py:676:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_meta_registrations.py:677:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:678:13: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_meta_registrations.py:696:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:696:49: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:740:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:744:27: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:770:44: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:786:44: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:799:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:804:5: error[unresolved-attribute] Module `torch` has no member `_resize_output_` +torch/_meta_registrations.py:805:22: error[unresolved-attribute] Module `torch` has no member `angle` +torch/_meta_registrations.py:832:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:943:23: error[unresolved-attribute] Module `torch` has no member `float` +torch/_meta_registrations.py:943:36: error[unresolved-attribute] Module `torch` has no member `double` +torch/_meta_registrations.py:943:50: error[unresolved-attribute] Module `torch` has no member `cfloat` +torch/_meta_registrations.py:943:64: error[unresolved-attribute] Module `torch` has no member `cdouble` +torch/_meta_registrations.py:1042:39: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:1072:16: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:1099:54: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:1148:12: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_meta_registrations.py:1165:45: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:1179:10: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_meta_registrations.py:1185:52: error[unresolved-attribute] Module `torch` has no member `int` +torch/_meta_registrations.py:1186:50: error[unresolved-attribute] Module `torch` has no member `int` +torch/_meta_registrations.py:1226:12: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_meta_registrations.py:1279:10: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_meta_registrations.py:1289:39: error[unresolved-attribute] Module `torch` has no member `int` +torch/_meta_registrations.py:1293:37: error[unresolved-attribute] Module `torch` has no member `int` +torch/_meta_registrations.py:1318:25: error[unresolved-attribute] Module `torch` has no member `int` +torch/_meta_registrations.py:1341:14: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_meta_registrations.py:1369:29: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:1454:10: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_meta_registrations.py:1460:44: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:1581:15: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_meta_registrations.py:1588:11: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_meta_registrations.py:1594:45: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:1595:43: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:1660:20: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_meta_registrations.py:1662:20: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_meta_registrations.py:1668:30: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_meta_registrations.py:1674:22: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_meta_registrations.py:1674:54: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_meta_registrations.py:1675:20: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:1693:46: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:1781:12: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_meta_registrations.py:1868:24: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_meta_registrations.py:1979:24: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_meta_registrations.py:1989:14: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:1990:14: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:2105:24: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_meta_registrations.py:2183:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:2221:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:2221:49: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:2232:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:2232:49: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:2238:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:2261:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:2261:41: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_meta_registrations.py:2262:13: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:2267:39: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_meta_registrations.py:2280:30: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:2281:33: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_meta_registrations.py:2281:48: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_meta_registrations.py:2371:18: error[invalid-assignment] Object of type `list[Unknown | int | (list[int] & SymInt)]` is not assignable to `list[int] | int` +torch/_meta_registrations.py:2377:19: error[invalid-assignment] Object of type `list[Unknown | int | (list[int] & SymInt)]` is not assignable to `list[int] | int` +torch/_meta_registrations.py:2383:20: error[invalid-assignment] Object of type `list[Unknown | int | (list[int] & SymInt)]` is not assignable to `list[int] | int` +torch/_meta_registrations.py:2391:35: error[invalid-assignment] Object of type `list[Unknown | (int & ~AlwaysFalsy) | (list[int] & SymInt & ~AlwaysFalsy)]` is not assignable to `list[int] | None` +torch/_meta_registrations.py:2404:21: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +torch/_meta_registrations.py:2406:21: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +torch/_meta_registrations.py:2409:21: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +torch/_meta_registrations.py:2416:35: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +torch/_meta_registrations.py:2416:47: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +torch/_meta_registrations.py:2416:76: error[non-subscriptable] Cannot subscript object of type `int` with no `__getitem__` method +torch/_meta_registrations.py:2431:62: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_meta_registrations.py:2455:20: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_meta_registrations.py:2456:53: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:2457:20: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:2458:16: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:2504:4: error[unresolved-attribute] Module `torch._C` has no member `_has_mkldnn` +torch/_meta_registrations.py:2526:29: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_meta_registrations.py:2528:33: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_meta_registrations.py:2538:8: error[unresolved-attribute] Module `torch._C` has no member `has_mkl` +torch/_meta_registrations.py:2587:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:2588:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_meta_registrations.py:2589:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_meta_registrations.py:2590:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_meta_registrations.py:2591:13: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_meta_registrations.py:2598:16: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:2599:16: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_meta_registrations.py:2600:16: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_meta_registrations.py:2654:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:2655:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_meta_registrations.py:2656:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_meta_registrations.py:2657:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_meta_registrations.py:2658:13: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_meta_registrations.py:2691:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:2692:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_meta_registrations.py:2693:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_meta_registrations.py:2694:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_meta_registrations.py:2695:13: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_meta_registrations.py:2734:25: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_meta_registrations.py:2739:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:2751:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:2751:40: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_meta_registrations.py:2751:55: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_meta_registrations.py:2755:24: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_meta_registrations.py:2758:35: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_meta_registrations.py:2802:29: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_meta_registrations.py:2802:42: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_meta_registrations.py:2802:56: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_meta_registrations.py:2802:70: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_meta_registrations.py:2808:18: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/_meta_registrations.py:2808:29: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/_meta_registrations.py:2850:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:2968:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:3000:29: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_meta_registrations.py:3000:42: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_meta_registrations.py:3000:56: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_meta_registrations.py:3000:70: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_meta_registrations.py:3012:43: error[index-out-of-bounds] Index 1 is out of bounds for tuple `tuple[Literal[0]]` with length 1 +torch/_meta_registrations.py:3013:43: error[index-out-of-bounds] Index 2 is out of bounds for tuple `tuple[Literal[0]]` with length 1 +torch/_meta_registrations.py:3156:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:3190:21: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:3192:25: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_meta_registrations.py:3200:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:3251:52: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_meta_registrations.py:3257:52: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_meta_registrations.py:3322:48: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_meta_registrations.py:3357:53: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:3371:12: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_meta_registrations.py:3374:15: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:3388:33: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:3388:45: error[unresolved-attribute] Module `torch` has no member `int` +torch/_meta_registrations.py:3388:56: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_meta_registrations.py:3388:68: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_meta_registrations.py:3391:32: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_meta_registrations.py:3391:44: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_meta_registrations.py:3624:17: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:3641:20: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_meta_registrations.py:3645:20: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_meta_registrations.py:3655:54: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:3662:20: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_meta_registrations.py:3674:15: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:3682:20: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:3689:15: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_meta_registrations.py:3698:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:3698:36: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_meta_registrations.py:3698:51: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_meta_registrations.py:3702:20: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:3713:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:3713:36: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_meta_registrations.py:3713:51: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_meta_registrations.py:3717:20: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_meta_registrations.py:3728:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:3728:36: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_meta_registrations.py:3728:51: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_meta_registrations.py:3732:20: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:3856:26: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_meta_registrations.py:3860:62: error[unresolved-attribute] Module `torch` has no member `float` +torch/_meta_registrations.py:3865:39: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_meta_registrations.py:3871:65: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_meta_registrations.py:3873:56: error[unresolved-attribute] Module `torch` has no member `float` +torch/_meta_registrations.py:3886:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:3897:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:3897:36: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_meta_registrations.py:3897:51: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_meta_registrations.py:3902:20: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_meta_registrations.py:3957:16: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_meta_registrations.py:3960:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:3960:47: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:3980:27: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:3980:39: error[unresolved-attribute] Module `torch` has no member `int` +torch/_meta_registrations.py:3984:27: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:3984:39: error[unresolved-attribute] Module `torch` has no member `int` +torch/_meta_registrations.py:4026:27: error[unresolved-attribute] Module `torch` has no member `float` +torch/_meta_registrations.py:4026:55: error[unresolved-attribute] Module `torch` has no member `half` +torch/_meta_registrations.py:4085:16: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:4125:45: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:4293:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:4314:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:4321:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:4321:36: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:4333:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:4353:24: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_meta_registrations.py:4353:36: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_meta_registrations.py:4367:14: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:4367:51: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:4403:29: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_meta_registrations.py:4403:62: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_meta_registrations.py:4404:28: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:4521:25: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_meta_registrations.py:4792:25: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_meta_registrations.py:4797:27: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:4868:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:4900:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:4906:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:4908:19: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_meta_registrations.py:4987:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:4992:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:4994:19: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_meta_registrations.py:5031:39: error[index-out-of-bounds] Index 1 is out of bounds for tuple `tuple[Literal[0]]` with length 1 +torch/_meta_registrations.py:5032:39: error[index-out-of-bounds] Index 2 is out of bounds for tuple `tuple[Literal[0]]` with length 1 +torch/_meta_registrations.py:5039:54: error[index-out-of-bounds] Index 1 is out of bounds for tuple `tuple[Literal[1]]` with length 1 +torch/_meta_registrations.py:5040:54: error[index-out-of-bounds] Index 2 is out of bounds for tuple `tuple[Literal[1]]` with length 1 +torch/_meta_registrations.py:5082:67: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_meta_registrations.py:5089:27: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_meta_registrations.py:5096:48: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_meta_registrations.py:5099:36: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_meta_registrations.py:5100:44: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_meta_registrations.py:5190:67: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_meta_registrations.py:5197:27: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_meta_registrations.py:5203:50: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_meta_registrations.py:5217:25: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_meta_registrations.py:5217:58: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_meta_registrations.py:5284:22: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_meta_registrations.py:5284:60: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:5287:17: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:5287:54: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:5325:22: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_meta_registrations.py:5330:17: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:5341:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5354:18: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/_meta_registrations.py:5360:15: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5402:17: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_meta_registrations.py:5406:18: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_meta_registrations.py:5407:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5424:17: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_meta_registrations.py:5428:18: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_meta_registrations.py:5429:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5486:28: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:5486:57: error[unresolved-attribute] Module `torch` has no member `int` +torch/_meta_registrations.py:5526:28: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:5526:57: error[unresolved-attribute] Module `torch` has no member `int` +torch/_meta_registrations.py:5658:17: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:5659:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5661:15: error[unresolved-attribute] Module `torch` has no member `float` +torch/_meta_registrations.py:5672:22: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5678:22: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5687:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5687:38: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:5688:18: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5688:40: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:5690:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5690:39: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_meta_registrations.py:5691:18: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5691:40: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_meta_registrations.py:5712:15: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:5719:15: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5747:18: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5749:15: error[unresolved-attribute] Module `torch` has no member `float` +torch/_meta_registrations.py:5754:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5754:34: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:5755:14: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5755:36: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:5790:18: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5792:15: error[unresolved-attribute] Module `torch` has no member `float` +torch/_meta_registrations.py:5797:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5797:34: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:5798:14: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5798:36: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:5835:14: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:5836:14: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:5837:14: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:5859:17: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:5860:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:5866:15: error[unresolved-attribute] Module `torch` has no member `float` +torch/_meta_registrations.py:5894:14: error[unresolved-attribute] Module `torch` has no member `empty_permuted` +torch/_meta_registrations.py:5900:14: error[unresolved-attribute] Module `torch` has no member `empty_permuted` +torch/_meta_registrations.py:5906:14: error[unresolved-attribute] Module `torch` has no member `empty_permuted` +torch/_meta_registrations.py:5991:11: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6001:18: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6003:15: error[unresolved-attribute] Module `torch` has no member `float` +torch/_meta_registrations.py:6010:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6010:34: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:6011:14: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6011:36: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:6044:14: error[unresolved-attribute] Module `torch` has no member `empty_permuted` +torch/_meta_registrations.py:6050:14: error[unresolved-attribute] Module `torch` has no member `empty_permuted` +torch/_meta_registrations.py:6056:14: error[unresolved-attribute] Module `torch` has no member `empty_permuted` +torch/_meta_registrations.py:6068:21: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6099:14: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:6100:14: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:6101:14: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:6138:17: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:6140:21: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6142:19: error[unresolved-attribute] Module `torch` has no member `float` +torch/_meta_registrations.py:6147:21: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6148:41: error[unresolved-attribute] Module `torch` has no member `float` +torch/_meta_registrations.py:6158:22: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6164:22: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6171:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6171:38: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:6172:18: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6172:40: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:6174:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6174:39: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_meta_registrations.py:6175:18: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6175:40: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_meta_registrations.py:6209:18: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:6210:16: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:6211:18: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:6244:11: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6255:18: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6257:15: error[unresolved-attribute] Module `torch` has no member `float` +torch/_meta_registrations.py:6262:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6262:34: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:6263:14: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6263:36: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:6302:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6311:22: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:6312:20: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:6313:22: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:6320:21: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6323:21: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6335:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_meta_registrations.py:6340:13: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_meta_registrations.py:6341:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_meta_registrations.py:6342:13: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/_meta_registrations.py:6343:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/_meta_registrations.py:6344:13: error[unresolved-attribute] Module `torch` has no member `float4_e2m1fn_x2` +torch/_meta_registrations.py:6391:34: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_meta_registrations.py:6392:38: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_meta_registrations.py:6395:34: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_meta_registrations.py:6396:38: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_meta_registrations.py:6403:34: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:6403:69: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:6409:33: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_meta_registrations.py:6453:34: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:6453:69: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:6505:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6516:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_meta_registrations.py:6532:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_meta_registrations.py:6539:13: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_meta_registrations.py:6540:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_meta_registrations.py:6541:13: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/_meta_registrations.py:6542:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/_meta_registrations.py:6543:13: error[unresolved-attribute] Module `torch` has no member `float4_e2m1fn_x2` +torch/_meta_registrations.py:6547:26: error[unresolved-attribute] Module `torch` has no member `float4_e2m1fn_x2` +torch/_meta_registrations.py:6679:41: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:6680:41: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:6687:41: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:6689:41: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:6700:37: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:6700:75: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:6731:37: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:6731:75: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:6762:37: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:6762:75: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:6803:41: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_meta_registrations.py:6805:41: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_meta_registrations.py:6811:35: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_meta_registrations.py:6821:41: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_meta_registrations.py:6823:41: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:6825:41: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_meta_registrations.py:6827:41: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:6853:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6867:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_meta_registrations.py:6907:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6907:47: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:6908:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:6909:43: error[unresolved-attribute] Module `torch` has no member `long` +torch/_meta_registrations.py:6976:25: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:7043:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:7043:36: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:7043:65: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_meta_registrations.py:7110:17: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:7110:61: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:7111:10: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:7111:45: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:7112:10: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:7112:45: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:7159:14: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:7167:52: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_meta_registrations.py:7201:14: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:7205:14: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:7208:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:7208:59: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_meta_registrations.py:7242:40: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_meta_registrations.py:7250:18: error[unresolved-attribute] Module `torch` has no member `jagged` +torch/_meta_registrations.py:7251:18: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_meta_registrations.py:7252:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:7268:69: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_meta_registrations.py:7281:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:7304:63: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_meta_registrations.py:7307:35: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:7331:18: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:7334:15: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:7362:66: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_meta_registrations.py:7367:24: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:7369:24: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_meta_registrations.py:7370:47: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:7371:20: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:7372:47: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_meta_registrations.py:7373:20: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_meta_registrations.py:7423:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:7425:15: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:7425:45: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_meta_registrations.py:7426:23: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:7455:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:7531:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:7537:9: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_meta_registrations.py:7538:9: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/_meta_registrations.py:7539:9: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_meta_registrations.py:7540:9: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/_meta_registrations.py:7623:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:7623:43: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_meta_registrations.py:7625:16: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:7626:46: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:7629:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:7634:23: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_meta_registrations.py:7634:35: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_meta_registrations.py:7634:53: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_meta_registrations.py:7708:24: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_meta_registrations.py:7708:39: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_meta_registrations.py:7708:55: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:7708:70: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_meta_registrations.py:7749:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_meta_registrations.py:7752:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_meta_registrations.py:7756:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:7756:45: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_meta_registrations.py:7767:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:7778:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:7788:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:7825:15: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_meta_registrations.py:7829:15: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:7841:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_meta_registrations.py:7855:21: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/_meta_registrations.py:7855:69: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_meta_registrations.py:7862:28: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_meta_registrations.py:7862:62: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_meta_registrations.py:7928:31: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:7928:66: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_meta_registrations.py:7930:34: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_meta_registrations.py:7931:38: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_meta_registrations.py:7936:30: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_meta_registrations.py:7937:34: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/_meta_registrations.py:8022:31: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_meta_registrations.py:8037:43: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_meta_registrations.py:8051:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_meta_registrations.py:8074:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_meta_registrations.py:8078:30: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_meta_registrations.py:8097:27: error[unresolved-attribute] Module `torch` has no member `half` +torch/_meta_registrations.py:8103:11: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_meta_registrations.py:8103:65: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_meta_registrations.py:8154:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_meta_registrations.py:8400:29: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_meta_registrations.py:8402:12: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_numpy/_binary_ufuncs_impl.py:9:5: error[unresolved-import] Module `torch` has no member `add` +torch/_numpy/_binary_ufuncs_impl.py:10:5: error[unresolved-import] Module `torch` has no member `arctan2` +torch/_numpy/_binary_ufuncs_impl.py:11:5: error[unresolved-import] Module `torch` has no member `bitwise_and` +torch/_numpy/_binary_ufuncs_impl.py:12:5: error[unresolved-import] Module `torch` has no member `bitwise_left_shift` +torch/_numpy/_binary_ufuncs_impl.py:13:5: error[unresolved-import] Module `torch` has no member `bitwise_or` +torch/_numpy/_binary_ufuncs_impl.py:14:5: error[unresolved-import] Module `torch` has no member `bitwise_right_shift` +torch/_numpy/_binary_ufuncs_impl.py:15:5: error[unresolved-import] Module `torch` has no member `bitwise_xor` +torch/_numpy/_binary_ufuncs_impl.py:16:5: error[unresolved-import] Module `torch` has no member `copysign` +torch/_numpy/_binary_ufuncs_impl.py:17:5: error[unresolved-import] Module `torch` has no member `divide` +torch/_numpy/_binary_ufuncs_impl.py:18:5: error[unresolved-import] Module `torch` has no member `eq` +torch/_numpy/_binary_ufuncs_impl.py:19:5: error[unresolved-import] Module `torch` has no member `float_power` +torch/_numpy/_binary_ufuncs_impl.py:20:5: error[unresolved-import] Module `torch` has no member `floor_divide` +torch/_numpy/_binary_ufuncs_impl.py:21:5: error[unresolved-import] Module `torch` has no member `fmax` +torch/_numpy/_binary_ufuncs_impl.py:22:5: error[unresolved-import] Module `torch` has no member `fmin` +torch/_numpy/_binary_ufuncs_impl.py:23:5: error[unresolved-import] Module `torch` has no member `fmod` +torch/_numpy/_binary_ufuncs_impl.py:24:5: error[unresolved-import] Module `torch` has no member `gcd` +torch/_numpy/_binary_ufuncs_impl.py:25:5: error[unresolved-import] Module `torch` has no member `greater` +torch/_numpy/_binary_ufuncs_impl.py:26:5: error[unresolved-import] Module `torch` has no member `greater_equal` +torch/_numpy/_binary_ufuncs_impl.py:27:5: error[unresolved-import] Module `torch` has no member `heaviside` +torch/_numpy/_binary_ufuncs_impl.py:28:5: error[unresolved-import] Module `torch` has no member `hypot` +torch/_numpy/_binary_ufuncs_impl.py:29:5: error[unresolved-import] Module `torch` has no member `lcm` +torch/_numpy/_binary_ufuncs_impl.py:30:5: error[unresolved-import] Module `torch` has no member `ldexp` +torch/_numpy/_binary_ufuncs_impl.py:31:5: error[unresolved-import] Module `torch` has no member `less` +torch/_numpy/_binary_ufuncs_impl.py:32:5: error[unresolved-import] Module `torch` has no member `less_equal` +torch/_numpy/_binary_ufuncs_impl.py:33:5: error[unresolved-import] Module `torch` has no member `logaddexp` +torch/_numpy/_binary_ufuncs_impl.py:34:5: error[unresolved-import] Module `torch` has no member `logaddexp2` +torch/_numpy/_binary_ufuncs_impl.py:35:5: error[unresolved-import] Module `torch` has no member `logical_and` +torch/_numpy/_binary_ufuncs_impl.py:36:5: error[unresolved-import] Module `torch` has no member `logical_or` +torch/_numpy/_binary_ufuncs_impl.py:37:5: error[unresolved-import] Module `torch` has no member `logical_xor` +torch/_numpy/_binary_ufuncs_impl.py:38:5: error[unresolved-import] Module `torch` has no member `maximum` +torch/_numpy/_binary_ufuncs_impl.py:39:5: error[unresolved-import] Module `torch` has no member `minimum` +torch/_numpy/_binary_ufuncs_impl.py:40:5: error[unresolved-import] Module `torch` has no member `multiply` +torch/_numpy/_binary_ufuncs_impl.py:41:5: error[unresolved-import] Module `torch` has no member `nextafter` +torch/_numpy/_binary_ufuncs_impl.py:42:5: error[unresolved-import] Module `torch` has no member `not_equal` +torch/_numpy/_binary_ufuncs_impl.py:43:5: error[unresolved-import] Module `torch` has no member `pow` +torch/_numpy/_binary_ufuncs_impl.py:44:5: error[unresolved-import] Module `torch` has no member `remainder` +torch/_numpy/_binary_ufuncs_impl.py:45:5: error[unresolved-import] Module `torch` has no member `remainder` +torch/_numpy/_binary_ufuncs_impl.py:46:5: error[unresolved-import] Module `torch` has no member `subtract` +torch/_numpy/_binary_ufuncs_impl.py:47:5: error[unresolved-import] Module `torch` has no member `true_divide` +torch/_numpy/_binary_ufuncs_impl.py:60:24: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_binary_ufuncs_impl.py:61:27: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_binary_ufuncs_impl.py:61:55: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_binary_ufuncs_impl.py:67:22: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_binary_ufuncs_impl.py:69:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_binary_ufuncs_impl.py:74:14: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_numpy/_casting_dicts.py:11:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:12:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:13:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:14:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:15:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:16:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:17:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:18:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:19:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:20:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:21:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:22:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:23:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:24:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:25:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:27:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:28:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:29:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:30:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:31:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:32:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:33:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:34:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:35:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:36:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:37:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:38:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:39:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:40:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:41:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:43:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:44:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:45:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:46:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:47:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:48:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:49:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:50:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:51:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:52:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:53:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:54:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:55:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:56:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:57:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:59:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:60:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:61:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:62:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:63:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:64:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:65:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:66:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:67:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:68:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:69:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:70:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:71:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:72:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:73:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:75:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:76:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:77:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:78:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:79:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:80:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:81:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:82:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:83:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:84:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:85:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:86:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:87:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:88:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:89:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:91:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:92:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:93:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:94:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:95:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:96:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:97:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:98:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:99:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:100:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:101:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:102:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:103:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:104:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:105:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:107:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:108:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:109:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:110:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:111:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:112:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:113:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:114:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:115:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:116:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:117:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:118:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:119:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:120:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:121:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:123:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:124:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:125:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:126:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:127:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:128:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:129:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:130:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:131:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:132:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:133:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:134:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:135:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:136:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:137:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:139:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:140:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:141:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:142:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:143:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:144:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:145:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:146:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:147:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:148:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:149:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:150:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:151:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:152:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:153:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:155:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:156:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:157:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:158:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:159:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:160:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:161:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:162:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:163:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:164:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:165:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:166:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:167:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:168:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:169:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:171:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:172:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:173:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:174:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:175:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:176:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:177:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:178:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:179:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:180:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:181:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:182:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:183:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:184:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:185:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:187:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:188:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:189:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:190:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:191:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:192:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:193:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:194:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:195:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:196:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:197:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:198:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:199:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:200:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:201:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:203:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:204:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:205:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:206:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:207:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:208:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:209:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:210:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:211:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:212:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:213:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:214:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:215:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:216:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:217:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:219:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:220:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:221:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:222:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:223:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:224:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:225:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:226:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:227:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:228:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:229:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:230:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:231:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:232:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:233:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:237:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:238:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:239:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:240:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:241:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:242:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:243:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:244:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:245:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:246:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:247:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:248:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:249:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:250:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:251:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:253:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:254:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:255:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:256:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:257:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:258:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:259:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:260:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:261:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:262:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:263:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:264:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:265:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:266:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:267:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:269:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:270:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:271:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:272:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:273:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:274:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:275:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:276:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:277:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:278:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:279:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:280:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:281:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:282:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:283:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:285:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:286:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:287:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:288:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:289:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:290:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:291:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:292:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:293:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:294:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:295:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:296:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:297:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:298:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:299:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:301:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:302:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:303:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:304:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:305:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:306:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:307:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:308:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:309:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:310:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:311:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:312:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:313:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:314:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:315:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:317:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:318:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:319:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:320:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:321:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:322:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:323:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:324:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:325:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:326:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:327:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:328:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:329:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:330:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:331:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:333:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:334:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:335:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:336:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:337:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:338:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:339:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:340:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:341:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:342:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:343:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:344:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:345:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:346:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:347:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:349:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:350:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:351:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:352:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:353:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:354:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:355:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:356:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:357:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:358:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:359:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:360:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:361:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:362:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:363:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:365:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:366:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:367:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:368:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:369:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:370:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:371:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:372:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:373:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:374:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:375:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:376:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:377:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:378:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:379:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:381:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:382:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:383:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:384:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:385:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:386:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:387:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:388:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:389:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:390:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:391:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:392:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:393:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:394:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:395:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:397:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:398:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:399:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:400:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:401:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:402:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:403:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:404:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:405:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:406:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:407:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:408:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:409:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:410:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:411:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:413:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:414:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:415:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:416:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:417:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:418:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:419:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:420:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:421:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:422:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:423:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:424:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:425:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:426:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:427:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:429:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:430:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:431:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:432:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:433:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:434:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:435:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:436:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:437:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:438:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:439:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:440:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:441:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:442:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:443:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:445:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:446:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:447:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:448:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:449:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:450:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:451:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:452:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:453:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:454:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:455:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:456:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:457:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:458:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:459:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:463:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:464:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:465:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:466:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:467:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:468:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:469:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:470:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:471:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:472:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:473:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:474:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:475:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:476:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:477:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:479:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:480:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:481:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:482:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:483:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:484:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:485:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:486:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:487:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:488:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:489:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:490:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:491:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:492:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:493:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:495:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:496:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:497:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:498:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:499:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:500:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:501:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:502:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:503:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:504:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:505:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:506:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:507:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:508:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:509:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:511:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:512:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:513:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:514:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:515:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:516:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:517:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:518:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:519:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:520:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:521:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:522:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:523:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:524:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:525:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:527:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:528:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:529:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:530:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:531:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:532:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:533:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:534:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:535:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:536:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:537:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:538:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:539:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:540:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:541:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:543:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:544:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:545:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:546:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:547:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:548:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:549:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:550:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:551:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:552:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:553:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:554:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:555:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:556:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:557:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:559:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:560:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:561:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:562:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:563:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:564:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:565:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:566:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:567:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:568:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:569:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:570:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:571:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:572:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:573:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:575:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:576:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:577:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:578:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:579:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:580:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:581:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:582:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:583:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:584:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:585:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:586:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:587:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:588:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:589:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:591:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:592:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:593:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:594:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:595:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:596:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:597:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:598:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:599:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:600:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:601:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:602:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:603:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:604:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:605:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:607:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:608:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:609:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:610:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:611:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:612:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:613:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:614:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:615:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:616:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:617:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:618:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:619:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:620:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:621:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:623:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:624:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:625:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:626:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:627:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:628:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:629:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:630:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:631:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:632:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:633:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:634:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:635:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:636:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:637:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:639:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:640:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:641:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:642:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:643:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:644:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:645:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:646:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:647:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:648:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:649:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:650:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:651:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:652:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:653:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:655:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:656:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:657:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:658:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:659:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:660:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:661:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:662:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:663:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:664:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:665:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:666:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:667:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:668:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:669:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:671:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:672:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:673:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:674:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:675:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:676:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:677:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:678:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:679:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:680:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:681:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:682:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:683:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:684:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:685:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:689:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:690:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:691:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:692:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:693:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:694:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:695:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:696:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:697:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:698:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:699:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:700:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:701:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:702:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:703:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:705:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:706:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:707:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:708:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:709:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:710:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:711:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:712:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:713:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:714:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:715:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:716:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:717:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:718:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:719:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:721:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:722:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:723:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:724:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:725:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:726:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:727:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:728:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:729:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:730:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:731:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:732:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:733:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:734:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:735:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:737:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:738:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:739:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:740:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:741:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:742:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:743:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:744:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:745:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:746:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:747:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:748:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:749:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:750:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:751:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:753:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:754:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:755:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:756:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:757:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:758:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:759:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:760:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:761:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:762:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:763:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:764:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:765:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:766:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:767:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:769:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:770:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:771:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:772:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:773:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:774:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:775:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:776:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:777:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:778:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:779:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:780:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:781:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:782:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:783:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:785:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:786:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:787:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:788:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:789:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:790:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:791:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:792:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:793:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:794:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:795:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:796:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:797:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:798:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:799:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:801:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:802:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:803:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:804:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:805:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:806:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:807:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:808:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:809:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:810:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:811:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:812:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:813:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:814:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:815:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:817:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:818:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:819:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:820:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:821:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:822:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:823:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:824:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:825:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:826:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:827:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:828:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:829:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:830:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:831:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:833:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:834:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:835:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:836:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:837:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:838:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:839:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:840:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:841:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:842:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:843:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:844:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:845:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:846:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:847:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:849:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:850:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:851:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:852:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:853:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:854:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:855:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:856:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:857:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:858:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:859:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:860:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:861:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:862:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:863:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:865:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:866:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:867:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:868:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:869:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:870:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:871:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:872:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:873:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:874:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:875:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:876:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:877:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:878:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:879:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:881:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:882:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:883:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:884:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:885:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:886:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:887:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:888:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:889:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:890:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:891:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:892:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:893:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:894:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:895:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:897:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:898:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:899:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:900:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:901:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:902:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:903:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:904:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:905:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:906:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:907:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:908:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:909:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:910:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:911:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:915:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:916:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:917:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:918:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:919:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:920:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:921:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:922:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:923:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:924:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:925:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:926:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:927:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:928:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:929:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:931:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:932:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:933:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:934:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:935:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:936:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:937:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:938:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:939:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:940:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:941:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:942:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:943:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:944:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:945:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:947:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:948:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:949:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:950:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:951:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:952:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:953:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:954:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:955:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:956:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:957:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:958:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:959:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:960:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:961:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:963:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:964:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:965:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:966:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:967:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:968:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:969:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:970:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:971:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:972:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:973:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:974:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:975:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:976:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:977:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:979:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:980:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:981:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:982:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:983:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:984:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:985:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:986:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:987:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:988:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:989:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:990:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:991:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:992:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:993:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:995:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:996:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:997:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:998:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:999:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1000:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1001:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1002:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1003:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1004:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1005:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1006:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1007:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1008:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1009:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1011:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1012:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1013:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1014:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1015:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1016:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1017:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1018:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1019:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1020:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1021:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1022:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1023:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1024:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1025:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1027:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1028:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1029:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1030:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1031:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1032:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1033:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1034:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1035:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1036:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1037:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1038:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1039:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1040:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1041:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1043:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1044:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1045:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1046:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1047:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1048:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1049:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1050:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1051:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1052:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1053:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1054:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1055:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1056:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1057:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1059:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1060:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1061:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1062:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1063:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1064:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1065:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1066:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1067:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1068:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1069:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1070:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1071:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1072:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1073:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1075:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1076:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1077:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1078:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1079:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1080:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1081:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1082:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1083:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1084:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1085:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1086:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1087:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1088:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1089:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1091:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1092:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1093:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1094:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1095:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1096:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1097:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1098:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1099:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1100:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1101:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1102:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1103:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1104:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1105:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1107:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1108:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1109:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1110:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1111:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1112:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1113:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1114:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1115:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1116:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1117:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1118:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1119:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1120:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1121:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1123:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1124:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1125:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1126:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1127:13: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1128:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1129:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1130:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1131:13: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1132:13: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1133:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1134:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1135:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1136:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1137:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1144:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1145:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1145:24: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1146:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1146:24: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1147:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1147:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1148:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1148:26: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1149:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1149:27: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1150:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1150:22: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1151:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1151:23: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1152:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1152:23: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1153:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1153:23: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1154:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1154:21: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1155:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1155:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1156:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1156:22: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1157:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1157:22: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1158:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1158:21: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1160:5: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1161:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1161:24: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1162:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1162:24: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1163:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1163:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1164:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1164:26: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1165:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1165:27: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1166:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1166:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1167:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1167:23: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1168:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1168:23: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1169:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1169:23: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1170:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1170:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1171:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1171:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1172:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1172:22: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1173:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1173:22: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1174:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1174:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1176:5: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1177:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1177:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1178:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1178:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1179:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1179:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1180:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1180:26: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1181:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1181:27: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1182:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1182:22: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1183:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1183:23: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1184:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1184:23: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1185:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1185:23: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1186:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1186:21: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1187:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1187:22: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1188:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1188:22: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1189:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1189:22: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1190:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1190:21: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1192:5: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1193:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1193:24: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1194:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1194:24: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1195:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1195:24: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1196:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1196:26: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1197:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1197:27: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1198:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1198:22: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1199:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1199:23: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1200:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1200:23: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1201:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1201:23: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1202:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1202:21: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1203:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1203:22: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1204:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1204:22: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1205:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1205:22: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1206:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1206:21: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1208:5: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1209:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1209:24: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1210:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1210:24: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1211:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1211:24: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1212:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1212:26: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1213:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1213:27: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1214:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1214:22: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1215:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1215:23: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1216:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1216:23: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1217:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1217:23: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1218:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1218:21: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1219:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1219:22: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1220:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1220:22: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1221:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1221:22: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1222:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1222:21: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1224:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1225:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1225:24: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1226:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1226:24: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1227:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1227:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1228:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1228:26: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1229:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1229:27: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1230:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1230:22: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1231:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1231:23: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1232:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1232:23: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1233:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1233:23: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1234:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1234:21: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1235:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1235:22: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1236:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1236:22: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1237:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1237:22: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1238:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1238:21: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1240:5: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1241:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1241:24: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1242:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1242:24: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1243:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1243:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1244:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1244:26: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1245:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1245:27: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1246:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1246:22: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1247:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1247:23: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1248:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1248:23: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1249:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1249:23: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1250:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1250:21: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1251:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1251:22: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1252:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1252:22: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1253:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1253:22: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1254:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1254:21: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1256:5: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1257:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1257:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1258:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1258:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1259:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1259:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1260:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1260:26: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1261:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1261:27: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1262:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1262:22: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1263:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1263:23: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1264:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1264:23: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1265:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1265:23: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1266:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1266:21: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1267:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1267:22: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1268:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1268:22: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1269:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1269:22: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1270:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1270:21: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1272:5: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1273:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1273:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1274:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1274:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1275:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1275:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1276:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1276:26: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1277:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1277:27: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1278:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1278:22: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1279:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1279:23: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1280:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1280:23: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1281:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1281:23: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1282:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1282:21: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1283:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1283:22: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1284:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1284:22: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1285:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1285:22: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1286:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1286:21: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1288:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1289:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1289:24: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1290:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1290:24: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1291:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1291:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1292:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1292:26: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1293:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1293:27: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1294:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1294:22: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1295:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1295:23: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1296:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1296:23: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1297:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1297:23: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1298:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1298:21: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1299:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1299:22: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1300:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1300:22: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1301:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1301:22: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1302:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1302:21: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1304:5: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1305:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1305:24: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1306:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1306:24: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1307:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1307:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1308:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1308:26: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1309:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1309:27: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1310:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1310:22: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1311:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1311:23: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1312:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1312:23: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1313:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1313:23: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1314:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1314:21: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1315:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1315:22: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1316:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1316:22: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1317:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1317:22: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1318:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1318:21: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1320:5: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1321:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1321:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1322:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1322:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1323:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1323:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1324:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1324:26: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1325:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1325:27: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1326:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1326:22: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1327:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1327:23: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1328:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1328:23: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1329:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1329:23: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1330:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1330:21: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1331:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1331:22: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1332:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1332:22: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1333:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1333:22: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1334:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1334:21: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1336:5: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1337:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1337:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1338:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1338:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1339:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1339:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1340:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1340:26: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1341:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1341:27: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1342:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1342:22: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1343:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1343:23: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1344:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1344:23: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1345:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1345:23: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1346:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1346:21: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1347:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1347:22: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1348:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1348:22: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1349:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1349:22: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1350:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1350:21: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1352:5: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1353:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1353:24: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_casting_dicts.py:1354:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1354:24: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_casting_dicts.py:1355:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1355:24: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_casting_dicts.py:1356:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1356:26: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_casting_dicts.py:1357:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1357:27: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_casting_dicts.py:1358:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1358:22: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_casting_dicts.py:1359:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1359:23: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_casting_dicts.py:1360:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1360:23: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_casting_dicts.py:1361:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1361:23: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_casting_dicts.py:1362:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1362:21: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_casting_dicts.py:1363:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1363:22: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_casting_dicts.py:1364:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1364:22: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_casting_dicts.py:1365:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1365:22: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_casting_dicts.py:1366:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_casting_dicts.py:1366:21: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_dtypes.py:87:19: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_dtypes.py:93:19: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_dtypes.py:99:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_dtypes.py:105:19: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_dtypes.py:114:19: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_dtypes.py:120:19: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_numpy/_dtypes.py:126:19: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_numpy/_dtypes.py:132:19: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_numpy/_dtypes.py:141:19: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_dtypes.py:147:19: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_dtypes.py:153:19: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_dtypes.py:159:19: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_dtypes.py:165:19: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_dtypes.py:171:19: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_dtypes.py:278:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_numpy/_dtypes.py:397:23: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_dtypes.py:399:23: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_dtypes.py:404:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_dtypes.py:404:24: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_dtypes.py:405:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_dtypes.py:405:24: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_dtypes.py:406:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_dtypes.py:406:24: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_dtypes.py:410:21: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_dtypes_impl.py:35:56: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_numpy/_dtypes_impl.py:36:58: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_numpy/_dtypes_impl.py:37:54: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_numpy/_dtypes_impl.py:43:17: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_dtypes_impl.py:78:18: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_dtypes_impl.py:123:15: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_dtypes_impl.py:124:24: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_dtypes_impl.py:125:14: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_dtypes_impl.py:126:23: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_dtypes_impl.py:127:16: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_dtypes_impl.py:128:25: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_dtypes_impl.py:129:18: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_dtypes_impl.py:147:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_dtypes_impl.py:150:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_dtypes_impl.py:151:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_dtypes_impl.py:152:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_dtypes_impl.py:153:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_dtypes_impl.py:154:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_dtypes_impl.py:157:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_dtypes_impl.py:158:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_dtypes_impl.py:159:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_dtypes_impl.py:162:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_dtypes_impl.py:163:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_dtypes_impl.py:174:16: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_numpy/_dtypes_impl.py:197:52: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_dtypes_impl.py:198:14: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_dtypes_impl.py:209:17: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_numpy/_funcs_impl.py:40:12: error[unresolved-attribute] Object of type `ArrayLike@copy` has no attribute `clone` +torch/_numpy/_funcs_impl.py:46:5: error[invalid-parameter-default] Default value of type `Literal["same_kind"]` is not assignable to annotated parameter type `CastingModes@copyto | None` +torch/_numpy/_funcs_impl.py:49:45: error[unresolved-attribute] Object of type `NDArray@copyto` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:50:5: error[unresolved-attribute] Object of type `NDArray@copyto` has no attribute `copy_` +torch/_numpy/_funcs_impl.py:95:21: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `Unknown | None` +torch/_numpy/_funcs_impl.py:106:44: error[invalid-parameter-default] Default value of type `Literal["same_kind"]` is not assignable to annotated parameter type `CastingModes@_concatenate | None` +torch/_numpy/_funcs_impl.py:111:12: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_numpy/_funcs_impl.py:119:5: error[invalid-parameter-default] Default value of type `Literal["same_kind"]` is not assignable to annotated parameter type `CastingModes@concatenate | None` +torch/_numpy/_funcs_impl.py:130:5: error[invalid-parameter-default] Default value of type `Literal["same_kind"]` is not assignable to annotated parameter type `CastingModes@vstack | None` +torch/_numpy/_funcs_impl.py:134:12: error[unresolved-attribute] Module `torch` has no member `vstack` +torch/_numpy/_funcs_impl.py:144:5: error[invalid-parameter-default] Default value of type `Literal["same_kind"]` is not assignable to annotated parameter type `CastingModes@hstack | None` +torch/_numpy/_funcs_impl.py:148:12: error[unresolved-attribute] Module `torch` has no member `hstack` +torch/_numpy/_funcs_impl.py:155:5: error[invalid-parameter-default] Default value of type `Literal["same_kind"]` is not assignable to annotated parameter type `CastingModes@dstack | None` +torch/_numpy/_funcs_impl.py:161:12: error[unresolved-attribute] Module `torch` has no member `dstack` +torch/_numpy/_funcs_impl.py:168:5: error[invalid-parameter-default] Default value of type `Literal["same_kind"]` is not assignable to annotated parameter type `CastingModes@column_stack | None` +torch/_numpy/_funcs_impl.py:175:12: error[unresolved-attribute] Module `torch` has no member `column_stack` +torch/_numpy/_funcs_impl.py:184:5: error[invalid-parameter-default] Default value of type `Literal["same_kind"]` is not assignable to annotated parameter type `CastingModes@stack | None` +torch/_numpy/_funcs_impl.py:191:12: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_numpy/_funcs_impl.py:196:12: error[unresolved-attribute] Object of type `ArrayLike@append` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:197:19: error[unresolved-attribute] Object of type `ArrayLike@append` has no attribute `flatten` +torch/_numpy/_funcs_impl.py:198:18: error[unresolved-attribute] Object of type `ArrayLike@append` has no attribute `flatten` +torch/_numpy/_funcs_impl.py:199:16: warning[possibly-missing-attribute] Attribute `ndim` may be missing on object of type `ArrayLike@append | Unknown` +torch/_numpy/_funcs_impl.py:269:8: error[unresolved-attribute] Object of type `ArrayLike@hsplit` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:271:17: error[unresolved-attribute] Object of type `ArrayLike@hsplit` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:276:8: error[unresolved-attribute] Object of type `ArrayLike@vsplit` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:282:8: error[unresolved-attribute] Object of type `ArrayLike@dsplit` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:288:12: error[unresolved-attribute] Module `torch` has no member `kron` +torch/_numpy/_funcs_impl.py:292:12: error[unresolved-attribute] Module `torch` has no member `vander` +torch/_numpy/_funcs_impl.py:312:12: error[unresolved-attribute] Module `torch` has no member `linspace` +torch/_numpy/_funcs_impl.py:325:12: error[unresolved-attribute] Module `torch` has no member `pow` +torch/_numpy/_funcs_impl.py:325:22: error[unsupported-operator] Operator `/` is unsupported between objects of type `ArrayLike@geomspace` and `ArrayLike@geomspace` +torch/_numpy/_funcs_impl.py:326:15: error[unresolved-attribute] Module `torch` has no member `log` +torch/_numpy/_funcs_impl.py:327:12: error[unresolved-attribute] Module `torch` has no member `logspace` +torch/_numpy/_funcs_impl.py:328:9: error[unresolved-attribute] Module `torch` has no member `log` +torch/_numpy/_funcs_impl.py:329:9: error[unresolved-attribute] Module `torch` has no member `log` +torch/_numpy/_funcs_impl.py:346:12: error[unresolved-attribute] Module `torch` has no member `logspace` +torch/_numpy/_funcs_impl.py:375:18: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_funcs_impl.py:375:35: error[unresolved-attribute] Object of type `DTypeLike@arange & ~None` has no attribute `is_complex` +torch/_numpy/_funcs_impl.py:381:9: error[unsupported-operator] Operator `>` is not supported for types `typing.TypeVar` and `Literal[0]`, in comparing `typing.TypeVar | (int & ~Literal[0]) | float | complex | None` with `Literal[0]` +torch/_numpy/_funcs_impl.py:381:22: error[unsupported-operator] Operator `>` is not supported for types `typing.TypeVar` and `typing.TypeVar`, in comparing `typing.TypeVar | int | float | complex` with `typing.TypeVar | int | float | complex | None` +torch/_numpy/_funcs_impl.py:381:40: error[unsupported-operator] Operator `<` is not supported for types `typing.TypeVar` and `Literal[0]`, in comparing `typing.TypeVar | (int & ~Literal[0]) | float | complex | None` with `Literal[0]` +torch/_numpy/_funcs_impl.py:381:53: error[unsupported-operator] Operator `<` is not supported for types `typing.TypeVar` and `typing.TypeVar`, in comparing `typing.TypeVar | int | float | complex` with `typing.TypeVar | int | float | complex | None` +torch/_numpy/_funcs_impl.py:383:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_numpy/_funcs_impl.py:385:14: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_numpy/_funcs_impl.py:402:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_numpy/_funcs_impl.py:416:14: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_numpy/_funcs_impl.py:433:17: error[unresolved-attribute] Object of type `ArrayLike@full` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:436:12: error[unresolved-attribute] Module `torch` has no member `full` +torch/_numpy/_funcs_impl.py:448:14: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/_numpy/_funcs_impl.py:463:12: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_numpy/_funcs_impl.py:473:14: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/_numpy/_funcs_impl.py:488:12: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_numpy/_funcs_impl.py:498:14: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_numpy/_funcs_impl.py:546:35: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_funcs_impl.py:549:17: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_funcs_impl.py:552:14: error[unresolved-attribute] Module `torch` has no member `corrcoef` +torch/_numpy/_funcs_impl.py:555:28: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_funcs_impl.py:576:27: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_funcs_impl.py:579:17: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_funcs_impl.py:582:14: error[unresolved-attribute] Module `torch` has no member `cov` +torch/_numpy/_funcs_impl.py:585:28: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_funcs_impl.py:615:8: error[unresolved-attribute] Object of type `ArrayLike@convolve` has no attribute `shape` +torch/_numpy/_funcs_impl.py:615:21: error[unresolved-attribute] Object of type `ArrayLike@convolve` has no attribute `shape` +torch/_numpy/_funcs_impl.py:619:9: error[unresolved-attribute] Module `torch` has no member `flip` +torch/_numpy/_funcs_impl.py:625:9: error[unresolved-attribute] Module `torch` has no member `conj_physical` +torch/_numpy/_funcs_impl.py:633:8: error[unresolved-attribute] Object of type `ArrayLike@bincount` has no attribute `numel` +torch/_numpy/_funcs_impl.py:635:13: error[unresolved-attribute] Object of type `ArrayLike@bincount` has no attribute `new_empty` +torch/_numpy/_funcs_impl.py:640:12: error[unresolved-attribute] Module `torch` has no member `bincount` +torch/_numpy/_funcs_impl.py:652:8: error[unresolved-attribute] Object of type `ArrayLike@where` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:652:27: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_funcs_impl.py:653:21: error[unresolved-attribute] Object of type `ArrayLike@where` has no attribute `to` +torch/_numpy/_funcs_impl.py:653:34: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_funcs_impl.py:656:18: error[unresolved-attribute] Module `torch` has no member `where` +torch/_numpy/_funcs_impl.py:658:18: error[unresolved-attribute] Module `torch` has no member `where` +torch/_numpy/_funcs_impl.py:666:12: error[unresolved-attribute] Object of type `ArrayLike@ndim` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:670:18: error[unresolved-attribute] Object of type `ArrayLike@shape` has no attribute `shape` +torch/_numpy/_funcs_impl.py:675:16: error[unresolved-attribute] Object of type `ArrayLike@size` has no attribute `numel` +torch/_numpy/_funcs_impl.py:677:16: error[unresolved-attribute] Object of type `ArrayLike@size` has no attribute `shape` +torch/_numpy/_funcs_impl.py:684:32: error[unresolved-attribute] Object of type `ArrayLike@expand_dims` has no attribute `shape` +torch/_numpy/_funcs_impl.py:685:12: error[unresolved-attribute] Object of type `ArrayLike@expand_dims` has no attribute `view` +torch/_numpy/_funcs_impl.py:691:28: error[unresolved-attribute] Object of type `ArrayLike@flip` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:693:49: error[unresolved-attribute] Object of type `ArrayLike@flip` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:694:12: error[unresolved-attribute] Module `torch` has no member `flip` +torch/_numpy/_funcs_impl.py:698:12: error[unresolved-attribute] Module `torch` has no member `flipud` +torch/_numpy/_funcs_impl.py:702:12: error[unresolved-attribute] Module `torch` has no member `fliplr` +torch/_numpy/_funcs_impl.py:706:45: error[unresolved-attribute] Object of type `ArrayLike@rot90` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:707:12: error[unresolved-attribute] Module `torch` has no member `rot90` +torch/_numpy/_funcs_impl.py:714:12: error[unresolved-attribute] Module `torch` has no member `broadcast_to` +torch/_numpy/_funcs_impl.py:732:15: error[unresolved-attribute] Object of type `ArrayLike@meshgrid` has no attribute `reshape` +torch/_numpy/_funcs_impl.py:749:25: error[invalid-parameter-default] Default value of type `` is not assignable to annotated parameter type `DTypeLike@indices | None` +torch/_numpy/_funcs_impl.py:757:15: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_numpy/_funcs_impl.py:759:15: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_numpy/_funcs_impl.py:765:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `tuple[()]` +torch/_numpy/_funcs_impl.py:773:12: error[unresolved-attribute] Module `torch` has no member `tril` +torch/_numpy/_funcs_impl.py:777:12: error[unresolved-attribute] Module `torch` has no member `triu` +torch/_numpy/_funcs_impl.py:783:12: error[unresolved-attribute] Module `torch` has no member `tril_indices` +torch/_numpy/_funcs_impl.py:789:12: error[unresolved-attribute] Module `torch` has no member `triu_indices` +torch/_numpy/_funcs_impl.py:793:8: error[unresolved-attribute] Object of type `ArrayLike@tril_indices_from` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:796:12: error[unresolved-attribute] Module `torch` has no member `tril_indices` +torch/_numpy/_funcs_impl.py:796:31: error[unresolved-attribute] Object of type `ArrayLike@tril_indices_from` has no attribute `shape` +torch/_numpy/_funcs_impl.py:796:45: error[unresolved-attribute] Object of type `ArrayLike@tril_indices_from` has no attribute `shape` +torch/_numpy/_funcs_impl.py:800:8: error[unresolved-attribute] Object of type `ArrayLike@triu_indices_from` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:803:12: error[unresolved-attribute] Module `torch` has no member `triu_indices` +torch/_numpy/_funcs_impl.py:803:31: error[unresolved-attribute] Object of type `ArrayLike@triu_indices_from` has no attribute `shape` +torch/_numpy/_funcs_impl.py:803:45: error[unresolved-attribute] Object of type `ArrayLike@triu_indices_from` has no attribute `shape` +torch/_numpy/_funcs_impl.py:816:14: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_numpy/_funcs_impl.py:817:12: error[unresolved-attribute] Module `torch` has no member `tril` +torch/_numpy/_funcs_impl.py:827:12: error[unresolved-attribute] Module `torch` has no member `isclose` +torch/_numpy/_funcs_impl.py:834:12: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/_numpy/_funcs_impl.py:843:24: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_numpy/_funcs_impl.py:843:42: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_numpy/_funcs_impl.py:865:8: error[unresolved-attribute] Object of type `ArrayLike@nan_to_num` has no attribute `is_complex` +torch/_numpy/_funcs_impl.py:866:14: error[unresolved-attribute] Module `torch` has no member `nan_to_num` +torch/_numpy/_funcs_impl.py:866:31: error[unresolved-attribute] Object of type `ArrayLike@nan_to_num` has no attribute `real` +torch/_numpy/_funcs_impl.py:867:14: error[unresolved-attribute] Module `torch` has no member `nan_to_num` +torch/_numpy/_funcs_impl.py:867:31: error[unresolved-attribute] Object of type `ArrayLike@nan_to_num` has no attribute `imag` +torch/_numpy/_funcs_impl.py:870:16: error[unresolved-attribute] Module `torch` has no member `nan_to_num` +torch/_numpy/_funcs_impl.py:893:12: error[unresolved-attribute] Module `torch` has no member `take_along_dim` +torch/_numpy/_funcs_impl.py:902:9: error[unresolved-attribute] Object of type `ArrayLike@put` has no attribute `type` +torch/_numpy/_funcs_impl.py:902:21: error[unresolved-attribute] Object of type `NDArray@put` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:905:8: error[unresolved-attribute] Object of type `ArrayLike@put` has no attribute `numel` +torch/_numpy/_funcs_impl.py:906:18: error[unresolved-attribute] Object of type `ArrayLike@put` has no attribute `numel` +torch/_numpy/_funcs_impl.py:910:8: error[unresolved-attribute] Object of type `ArrayLike@put` has no attribute `numel` +torch/_numpy/_funcs_impl.py:912:17: error[unresolved-attribute] Object of type `ArrayLike@put` has no attribute `numel` +torch/_numpy/_funcs_impl.py:913:5: error[unresolved-attribute] Object of type `NDArray@put` has no attribute `put_` +torch/_numpy/_funcs_impl.py:923:14: error[unresolved-attribute] Module `torch` has no member `scatter` +torch/_numpy/_funcs_impl.py:935:15: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_numpy/_funcs_impl.py:940:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_numpy/_funcs_impl.py:971:12: error[unresolved-attribute] Module `torch` has no member `nonzero` +torch/_numpy/_funcs_impl.py:975:12: error[unresolved-attribute] Module `torch` has no member `argwhere` +torch/_numpy/_funcs_impl.py:979:12: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/_numpy/_funcs_impl.py:988:12: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_numpy/_funcs_impl.py:992:12: error[unresolved-attribute] Module `torch` has no member `repeat_interleave` +torch/_numpy/_funcs_impl.py:998:12: error[unresolved-attribute] Module `torch` has no member `tile` +torch/_numpy/_funcs_impl.py:1010:9: error[unresolved-attribute] Object of type `ArrayLike@resize` has no attribute `flatten` +torch/_numpy/_funcs_impl.py:1020:16: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_numpy/_funcs_impl.py:1032:47: error[unresolved-attribute] Object of type `ArrayLike@diagonal` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1033:47: error[unresolved-attribute] Object of type `ArrayLike@diagonal` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1034:12: error[unresolved-attribute] Module `torch` has no member `diagonal` +torch/_numpy/_funcs_impl.py:1045:14: error[unresolved-attribute] Module `torch` has no member `diagonal` +torch/_numpy/_funcs_impl.py:1062:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_numpy/_funcs_impl.py:1068:12: error[unresolved-attribute] Module `torch` has no member `eye` +torch/_numpy/_funcs_impl.py:1072:12: error[unresolved-attribute] Module `torch` has no member `diag` +torch/_numpy/_funcs_impl.py:1076:12: error[unresolved-attribute] Module `torch` has no member `diagflat` +torch/_numpy/_funcs_impl.py:1080:11: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_numpy/_funcs_impl.py:1085:12: error[unresolved-attribute] Object of type `ArrayLike@diag_indices_from` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1089:9: error[unresolved-attribute] Object of type `ArrayLike@diag_indices_from` has no attribute `shape` +torch/_numpy/_funcs_impl.py:1092:31: error[unresolved-attribute] Object of type `ArrayLike@diag_indices_from` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1096:8: error[unresolved-attribute] Object of type `ArrayLike@fill_diagonal` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1098:8: error[unresolved-attribute] Object of type `ArrayLike@fill_diagonal` has no attribute `numel` +torch/_numpy/_funcs_impl.py:1099:9: error[unresolved-attribute] Object of type `ArrayLike@fill_diagonal` has no attribute `fill_diagonal_` +torch/_numpy/_funcs_impl.py:1102:8: error[unresolved-attribute] Object of type `ArrayLike@fill_diagonal` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1103:15: error[unresolved-attribute] Object of type `ArrayLike@fill_diagonal` has no attribute `unsqueeze` +torch/_numpy/_funcs_impl.py:1107:8: error[unresolved-attribute] Object of type `ArrayLike@fill_diagonal` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1108:16: error[unresolved-attribute] Object of type `ArrayLike@fill_diagonal` has no attribute `shape` +torch/_numpy/_funcs_impl.py:1108:29: error[unresolved-attribute] Object of type `ArrayLike@fill_diagonal` has no attribute `shape` +torch/_numpy/_funcs_impl.py:1112:20: error[unresolved-attribute] Object of type `ArrayLike@fill_diagonal` has no attribute `diagonal` +torch/_numpy/_funcs_impl.py:1113:24: error[non-subscriptable] Cannot subscript object of type `ArrayLike@fill_diagonal` with no `__getitem__` method +torch/_numpy/_funcs_impl.py:1116:26: error[unresolved-attribute] Object of type `ArrayLike@fill_diagonal` has no attribute `shape` +torch/_numpy/_funcs_impl.py:1117:19: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_numpy/_funcs_impl.py:1120:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `ArrayLike@fill_diagonal` +torch/_numpy/_funcs_impl.py:1120:48: error[non-subscriptable] Cannot subscript object of type `ArrayLike@fill_diagonal` with no `__getitem__` method +torch/_numpy/_funcs_impl.py:1124:9: error[invalid-assignment] Cannot assign to a subscript on an object of type `ArrayLike@fill_diagonal` +torch/_numpy/_funcs_impl.py:1124:18: error[non-subscriptable] Cannot subscript object of type `ArrayLike@fill_diagonal` with no `__getitem__` method +torch/_numpy/_funcs_impl.py:1124:24: error[unresolved-attribute] Object of type `ArrayLike@fill_diagonal` has no attribute `shape` +torch/_numpy/_funcs_impl.py:1139:24: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_funcs_impl.py:1140:24: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_funcs_impl.py:1144:17: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_funcs_impl.py:1146:17: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_funcs_impl.py:1151:14: error[unresolved-attribute] Module `torch` has no member `vdot` +torch/_numpy/_funcs_impl.py:1154:28: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_funcs_impl.py:1156:28: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_funcs_impl.py:1174:24: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_funcs_impl.py:1176:17: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_funcs_impl.py:1184:18: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_numpy/_funcs_impl.py:1187:28: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_funcs_impl.py:1194:24: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_funcs_impl.py:1194:43: error[unresolved-attribute] Object of type `ArrayLike@inner` has no attribute `is_cpu` +torch/_numpy/_funcs_impl.py:1194:55: error[unresolved-attribute] Object of type `ArrayLike@inner` has no attribute `is_cpu` +torch/_numpy/_funcs_impl.py:1195:24: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_funcs_impl.py:1199:17: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_funcs_impl.py:1201:17: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_funcs_impl.py:1206:14: error[unresolved-attribute] Module `torch` has no member `inner` +torch/_numpy/_funcs_impl.py:1209:28: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_funcs_impl.py:1211:28: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_funcs_impl.py:1216:12: error[unresolved-attribute] Module `torch` has no member `outer` +torch/_numpy/_funcs_impl.py:1226:47: error[unresolved-attribute] Object of type `ArrayLike@cross` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1227:47: error[unresolved-attribute] Object of type `ArrayLike@cross` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1230:9: error[unresolved-attribute] Module `torch` has no member `moveaxis` +torch/_numpy/_funcs_impl.py:1231:9: error[unresolved-attribute] Module `torch` has no member `moveaxis` +torch/_numpy/_funcs_impl.py:1243:10: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_numpy/_funcs_impl.py:1288:12: error[unresolved-attribute] Module `torch` has no member `moveaxis` +torch/_numpy/_funcs_impl.py:1330:31: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_funcs_impl.py:1332:24: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_funcs_impl.py:1334:37: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_funcs_impl.py:1334:50: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_funcs_impl.py:1334:62: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_funcs_impl.py:1334:75: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_funcs_impl.py:1336:24: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_funcs_impl.py:1356:13: error[invalid-assignment] Object of type `(Unknown & ~Literal[True]) | Literal[False, "auto"]` is not assignable to attribute `strategy` of type `Literal["auto"] | None` +torch/_numpy/_funcs_impl.py:1398:14: error[unresolved-attribute] Module `torch` has no member `sort` +torch/_numpy/_funcs_impl.py:1404:12: error[unresolved-attribute] Module `torch` has no member `argsort` +torch/_numpy/_funcs_impl.py:1410:8: error[unresolved-attribute] Object of type `ArrayLike@searchsorted` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:1411:62: error[unresolved-attribute] Object of type `ArrayLike@searchsorted` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:1413:12: error[unresolved-attribute] Module `torch` has no member `searchsorted` +torch/_numpy/_funcs_impl.py:1420:49: error[unresolved-attribute] Object of type `ArrayLike@moveaxis` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1421:59: error[unresolved-attribute] Object of type `ArrayLike@moveaxis` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1422:12: error[unresolved-attribute] Module `torch` has no member `moveaxis` +torch/_numpy/_funcs_impl.py:1426:47: error[unresolved-attribute] Object of type `ArrayLike@swapaxes` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1427:47: error[unresolved-attribute] Object of type `ArrayLike@swapaxes` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1428:12: error[unresolved-attribute] Module `torch` has no member `swapaxes` +torch/_numpy/_funcs_impl.py:1438:9: error[unresolved-attribute] Object of type `ArrayLike@rollaxis` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1455:12: error[unresolved-attribute] Object of type `ArrayLike@rollaxis` has no attribute `view` +torch/_numpy/_funcs_impl.py:1460:49: error[unresolved-attribute] Object of type `ArrayLike@roll` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1463:12: error[unresolved-attribute] Module `torch` has no member `roll` +torch/_numpy/_funcs_impl.py:1473:18: error[unresolved-attribute] Object of type `ArrayLike@squeeze` has no attribute `squeeze` +torch/_numpy/_funcs_impl.py:1478:26: error[unresolved-attribute] Object of type `ArrayLike@squeeze` has no attribute `squeeze` +torch/_numpy/_funcs_impl.py:1480:22: error[unresolved-attribute] Object of type `ArrayLike@squeeze` has no attribute `squeeze` +torch/_numpy/_funcs_impl.py:1487:12: error[unresolved-attribute] Object of type `ArrayLike@reshape` has no attribute `reshape` +torch/_numpy/_funcs_impl.py:1499:37: error[unresolved-attribute] Object of type `ArrayLike@transpose` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1502:12: error[unresolved-attribute] Object of type `ArrayLike@transpose` has no attribute `permute` +torch/_numpy/_funcs_impl.py:1506:12: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/_numpy/_funcs_impl.py:1516:45: error[unresolved-attribute] Object of type `ArrayLike@diff` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1526:22: error[unresolved-attribute] Object of type `ArrayLike@diff` has no attribute `shape` +torch/_numpy/_funcs_impl.py:1527:23: error[unresolved-attribute] Object of type `ArrayLike@diff & ~None` has no attribute `shape` +torch/_numpy/_funcs_impl.py:1527:46: error[unresolved-attribute] Object of type `ArrayLike@diff & ~None` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1528:19: error[unresolved-attribute] Module `torch` has no member `broadcast_to` +torch/_numpy/_funcs_impl.py:1531:22: error[unresolved-attribute] Object of type `ArrayLike@diff` has no attribute `shape` +torch/_numpy/_funcs_impl.py:1532:23: error[unresolved-attribute] Object of type `ArrayLike@diff & ~None` has no attribute `shape` +torch/_numpy/_funcs_impl.py:1532:45: error[unresolved-attribute] Object of type `ArrayLike@diff & ~None` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1533:18: error[unresolved-attribute] Module `torch` has no member `broadcast_to` +torch/_numpy/_funcs_impl.py:1535:12: error[unresolved-attribute] Module `torch` has no member `diff` +torch/_numpy/_funcs_impl.py:1542:14: error[unresolved-attribute] Module `torch` has no member `angle` +torch/_numpy/_funcs_impl.py:1549:12: error[unresolved-attribute] Module `torch` has no member `sinc` +torch/_numpy/_funcs_impl.py:1554:9: error[unresolved-attribute] Object of type `ArrayLike@gradient` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:1575:25: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_numpy/_funcs_impl.py:1580:34: error[unresolved-attribute] Object of type `ArrayLike@gradient` has no attribute `shape` +torch/_numpy/_funcs_impl.py:1588:21: error[unresolved-attribute] Module `torch` has no member `diff` +torch/_numpy/_funcs_impl.py:1611:13: error[unresolved-attribute] Object of type `ArrayLike@gradient` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:1616:13: error[unresolved-attribute] Object of type `ArrayLike@gradient` has no attribute `double` +torch/_numpy/_funcs_impl.py:1617:17: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_funcs_impl.py:1620:12: warning[possibly-missing-attribute] Attribute `shape` may be missing on object of type `ArrayLike@gradient | Unknown` +torch/_numpy/_funcs_impl.py:1626:15: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_numpy/_funcs_impl.py:1638:35: error[non-subscriptable] Cannot subscript object of type `ArrayLike@gradient` with no `__getitem__` method +torch/_numpy/_funcs_impl.py:1638:54: error[non-subscriptable] Cannot subscript object of type `ArrayLike@gradient` with no `__getitem__` method +torch/_numpy/_funcs_impl.py:1653:21: error[non-subscriptable] Cannot subscript object of type `ArrayLike@gradient` with no `__getitem__` method +torch/_numpy/_funcs_impl.py:1653:44: error[non-subscriptable] Cannot subscript object of type `ArrayLike@gradient` with no `__getitem__` method +torch/_numpy/_funcs_impl.py:1653:67: error[non-subscriptable] Cannot subscript object of type `ArrayLike@gradient` with no `__getitem__` method +torch/_numpy/_funcs_impl.py:1663:35: error[non-subscriptable] Cannot subscript object of type `ArrayLike@gradient` with no `__getitem__` method +torch/_numpy/_funcs_impl.py:1663:54: error[non-subscriptable] Cannot subscript object of type `ArrayLike@gradient` with no `__getitem__` method +torch/_numpy/_funcs_impl.py:1670:35: error[non-subscriptable] Cannot subscript object of type `ArrayLike@gradient` with no `__getitem__` method +torch/_numpy/_funcs_impl.py:1670:54: error[non-subscriptable] Cannot subscript object of type `ArrayLike@gradient` with no `__getitem__` method +torch/_numpy/_funcs_impl.py:1690:21: error[non-subscriptable] Cannot subscript object of type `ArrayLike@gradient` with no `__getitem__` method +torch/_numpy/_funcs_impl.py:1690:44: error[non-subscriptable] Cannot subscript object of type `ArrayLike@gradient` with no `__getitem__` method +torch/_numpy/_funcs_impl.py:1690:67: error[non-subscriptable] Cannot subscript object of type `ArrayLike@gradient` with no `__getitem__` method +torch/_numpy/_funcs_impl.py:1709:21: error[non-subscriptable] Cannot subscript object of type `ArrayLike@gradient` with no `__getitem__` method +torch/_numpy/_funcs_impl.py:1709:44: error[non-subscriptable] Cannot subscript object of type `ArrayLike@gradient` with no `__getitem__` method +torch/_numpy/_funcs_impl.py:1709:67: error[non-subscriptable] Cannot subscript object of type `ArrayLike@gradient` with no `__getitem__` method +torch/_numpy/_funcs_impl.py:1730:8: error[unresolved-attribute] Object of type `ArrayLike@round` has no attribute `is_floating_point` +torch/_numpy/_funcs_impl.py:1731:18: error[unresolved-attribute] Module `torch` has no member `round` +torch/_numpy/_funcs_impl.py:1732:10: error[unresolved-attribute] Object of type `ArrayLike@round` has no attribute `is_complex` +torch/_numpy/_funcs_impl.py:1734:18: error[unresolved-attribute] Module `torch` has no member `complex` +torch/_numpy/_funcs_impl.py:1735:13: error[unresolved-attribute] Module `torch` has no member `round` +torch/_numpy/_funcs_impl.py:1735:25: error[unresolved-attribute] Object of type `ArrayLike@round` has no attribute `real` +torch/_numpy/_funcs_impl.py:1736:13: error[unresolved-attribute] Module `torch` has no member `round` +torch/_numpy/_funcs_impl.py:1736:25: error[unresolved-attribute] Object of type `ArrayLike@round` has no attribute `imag` +torch/_numpy/_funcs_impl.py:1749:12: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/_numpy/_funcs_impl.py:1755:21: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_numpy/_funcs_impl.py:1755:33: error[unresolved-attribute] Object of type `ArrayLike@real_if_close` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:1757:12: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_numpy/_funcs_impl.py:1757:22: error[unresolved-attribute] Object of type `ArrayLike@real_if_close` has no attribute `imag` +torch/_numpy/_funcs_impl.py:1758:12: error[unresolved-attribute] Object of type `ArrayLike@real_if_close` has no attribute `real` +torch/_numpy/_funcs_impl.py:1762:12: error[unresolved-attribute] Module `torch` has no member `real` +torch/_numpy/_funcs_impl.py:1766:8: error[unresolved-attribute] Object of type `ArrayLike@imag` has no attribute `is_complex` +torch/_numpy/_funcs_impl.py:1767:16: error[unresolved-attribute] Object of type `ArrayLike@imag` has no attribute `imag` +torch/_numpy/_funcs_impl.py:1768:12: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_numpy/_funcs_impl.py:1772:8: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/_numpy/_funcs_impl.py:1773:16: error[unresolved-attribute] Object of type `ArrayLike@iscomplex` has no attribute `imag` +torch/_numpy/_funcs_impl.py:1774:12: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_numpy/_funcs_impl.py:1774:38: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_funcs_impl.py:1778:8: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/_numpy/_funcs_impl.py:1779:16: error[unresolved-attribute] Object of type `ArrayLike@isreal` has no attribute `imag` +torch/_numpy/_funcs_impl.py:1780:12: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/_numpy/_funcs_impl.py:1780:37: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_funcs_impl.py:1784:12: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/_numpy/_funcs_impl.py:1788:16: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/_numpy/_funcs_impl.py:1792:12: error[unresolved-attribute] Module `torch` has no member `isneginf` +torch/_numpy/_funcs_impl.py:1796:12: error[unresolved-attribute] Module `torch` has no member `isposinf` +torch/_numpy/_funcs_impl.py:1819:12: error[unresolved-attribute] Module `torch` has no member `hamming_window` +torch/_numpy/_funcs_impl.py:1824:12: error[unresolved-attribute] Module `torch` has no member `hann_window` +torch/_numpy/_funcs_impl.py:1829:12: error[unresolved-attribute] Module `torch` has no member `kaiser_window` +torch/_numpy/_funcs_impl.py:1834:12: error[unresolved-attribute] Module `torch` has no member `blackman_window` +torch/_numpy/_funcs_impl.py:1839:12: error[unresolved-attribute] Module `torch` has no member `bartlett_window` +torch/_numpy/_funcs_impl.py:1848:6: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_funcs_impl.py:1848:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_funcs_impl.py:1848:36: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_funcs_impl.py:1849:12: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_funcs_impl.py:1849:29: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_funcs_impl.py:1852:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_funcs_impl.py:1853:5: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_funcs_impl.py:1854:5: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_funcs_impl.py:1855:5: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_funcs_impl.py:1856:5: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_funcs_impl.py:1864:13: error[unresolved-attribute] Object of type `ArrayLike@common_type` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:1885:5: error[invalid-parameter-default] Default value of type `Literal[10]` is not assignable to annotated parameter type `ArrayLike@histogram` +torch/_numpy/_funcs_impl.py:1894:32: error[unresolved-attribute] Object of type `ArrayLike@histogram & ~None` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:1897:21: error[unresolved-attribute] Object of type `ArrayLike@histogram` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:1897:50: error[unresolved-attribute] Object of type `ArrayLike@histogram` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:1898:39: error[unresolved-attribute] Object of type `ArrayLike@histogram & ~None` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:1900:13: error[unresolved-attribute] Object of type `ArrayLike@histogram` has no attribute `double` +torch/_numpy/_funcs_impl.py:1903:49: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `ArrayLike@histogram | Unknown` +torch/_numpy/_funcs_impl.py:1908:20: error[invalid-assignment] Object of type `int` is not assignable to `ArrayLike@histogram` +torch/_numpy/_funcs_impl.py:1910:47: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `ArrayLike@histogram | Unknown` +torch/_numpy/_funcs_impl.py:1913:16: error[unresolved-attribute] Module `torch` has no member `histogram` +torch/_numpy/_funcs_impl.py:1915:16: error[unresolved-attribute] Module `torch` has no member `histogram` +torch/_numpy/_funcs_impl.py:1941:17: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | Literal[10]` +torch/_numpy/_funcs_impl.py:1988:17: error[unresolved-attribute] Object of type `ArrayLike@histogramdd & ~None` has no attribute `flatten` +torch/_numpy/_funcs_impl.py:1993:17: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_numpy/_funcs_impl.py:1994:17: error[invalid-assignment] Object of type `tuple[Unknown, ...]` is not assignable to `ArrayLike@histogramdd | None` +torch/_numpy/_funcs_impl.py:2000:12: error[unresolved-attribute] Module `torch` has no member `histogramdd` +torch/_numpy/_funcs_impl.py:2016:8: error[unresolved-attribute] Object of type `ArrayLike@min_scalar_type` has no attribute `numel` +torch/_numpy/_funcs_impl.py:2018:22: error[unresolved-attribute] Object of type `ArrayLike@min_scalar_type` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:2020:8: error[unresolved-attribute] Object of type `ArrayLike@min_scalar_type` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:2020:19: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_funcs_impl.py:2021:17: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_funcs_impl.py:2023:10: error[unresolved-attribute] Object of type `ArrayLike@min_scalar_type` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:2024:14: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_numpy/_funcs_impl.py:2024:26: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_funcs_impl.py:2025:26: error[unresolved-attribute] Object of type `ArrayLike@min_scalar_type` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:2025:37: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_funcs_impl.py:2026:23: error[unresolved-attribute] Object of type `ArrayLike@min_scalar_type` has no attribute `real` +torch/_numpy/_funcs_impl.py:2026:54: error[unresolved-attribute] Object of type `ArrayLike@min_scalar_type` has no attribute `imag` +torch/_numpy/_funcs_impl.py:2028:17: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_numpy/_funcs_impl.py:2028:56: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_numpy/_funcs_impl.py:2030:10: error[unresolved-attribute] Object of type `ArrayLike@min_scalar_type` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:2031:20: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_funcs_impl.py:2031:35: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_funcs_impl.py:2031:50: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_numpy/_funcs_impl.py:2032:18: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_numpy/_funcs_impl.py:2038:20: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_funcs_impl.py:2038:33: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_funcs_impl.py:2038:45: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_funcs_impl.py:2038:58: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_funcs_impl.py:2038:71: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_funcs_impl.py:2040:18: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_numpy/_funcs_impl.py:2053:46: error[unresolved-attribute] Object of type `ArrayLike@pad` has no attribute `dtype` +torch/_numpy/_funcs_impl.py:2056:17: error[unresolved-attribute] Module `torch` has no member `broadcast_to` +torch/_numpy/_funcs_impl.py:2056:48: error[unresolved-attribute] Object of type `ArrayLike@pad` has no attribute `ndim` +torch/_numpy/_funcs_impl.py:2057:17: error[unresolved-attribute] Module `torch` has no member `flip` +torch/_numpy/_funcs_impl.py:2059:36: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `Tensor`, found `ArrayLike@pad` +torch/_numpy/_funcs_impl.py:2059:43: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Unknown, ...]` +torch/_numpy/_getlimits.py:10:12: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_numpy/_getlimits.py:15:12: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_numpy/_ndarray.py:165:28: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_numpy/_ndarray.py:165:40: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_numpy/_ndarray.py:165:53: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_numpy/_ndarray.py:165:66: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_ndarray.py:166:29: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_numpy/_ndarray.py:176:61: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_ndarray.py:202:21: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/_numpy/_ndarray.py:203:30: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_ndarray.py:218:51: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_ndarray.py:298:1: error[unresolved-attribute] Unresolved attribute `unspecified` on type ``. +torch/_numpy/_ndarray.py:323:26: error[unresolved-attribute] Module `torch._numpy._ufuncs` has no member `conjugate` +torch/_numpy/_ndarray.py:324:31: error[unresolved-attribute] Module `torch._numpy._ufuncs` has no member `conjugate` +torch/_numpy/_ndarray.py:402:16: error[unresolved-attribute] Module `torch._numpy._funcs` has no member `real` +torch/_numpy/_ndarray.py:410:16: error[unresolved-attribute] Module `torch._numpy._funcs` has no member `imag` +torch/_numpy/_ndarray.py:434:16: error[unresolved-attribute] Object of type `ArrayLike@copy` has no attribute `clone` +torch/_numpy/_ndarray.py:438:16: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/_numpy/_ndarray.py:468:26: error[unresolved-attribute] Class `_Unspecified` has no attribute `unspecified` +torch/_numpy/_ndarray.py:468:57: error[unresolved-attribute] Class `_Unspecified` has no attribute `unspecified` +torch/_numpy/_ndarray.py:469:21: error[unresolved-attribute] Class `_Unspecified` has no attribute `unspecified` +torch/_numpy/_ndarray.py:471:24: error[unresolved-attribute] Class `_Unspecified` has no attribute `unspecified` +torch/_numpy/_ndarray.py:500:20: error[unresolved-attribute] Module `torch._numpy._ufuncs` has no member `equal` +torch/_numpy/_ndarray.py:503:21: error[unresolved-attribute] Module `torch` has no member `full` +torch/_numpy/_ndarray.py:545:16: error[unresolved-attribute] Module `torch._numpy._funcs` has no member `transpose` +torch/_numpy/_ndarray.py:549:16: error[unresolved-attribute] Module `torch._numpy._funcs` has no member `reshape` +torch/_numpy/_ndarray.py:553:9: error[unresolved-attribute] Module `torch._numpy._funcs` has no member `copyto` +torch/_numpy/_ndarray.py:553:29: error[unresolved-attribute] Module `torch._numpy._funcs` has no member `sort` +torch/_numpy/_ndarray.py:563:20: error[unresolved-attribute] Object of type `Self@item` has no attribute `ravel` +torch/_numpy/_ndarray.py:575:22: error[unresolved-attribute] Module `torch` has no member `flip` +torch/_numpy/_ndarray.py:611:12: error[unresolved-attribute] Module `torch._numpy._funcs` has no member `take` +torch/_numpy/_ndarray.py:612:11: error[unresolved-attribute] Module `torch._numpy._funcs` has no member `put` +torch/_numpy/_ndarray.py:659:19: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_numpy/_ndarray.py:716:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_numpy/_normalizations.py:41:24: error[unresolved-import] Module `typing` has no member `NotImplementedType` +torch/_numpy/_normalizations.py:106:29: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | None` +torch/_numpy/_normalizations.py:122:29: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | None` +torch/_numpy/_reductions_impl.py:68:33: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `AxisLike@count_nonzero` +torch/_numpy/_reductions_impl.py:68:59: error[invalid-parameter-default] Default value of type `Literal[False]` is not assignable to annotated parameter type `KeepDims@count_nonzero` +torch/_numpy/_reductions_impl.py:69:12: error[unresolved-attribute] Object of type `ArrayLike@count_nonzero` has no attribute `count_nonzero` +torch/_numpy/_reductions_impl.py:75:5: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `AxisLike@argmax` +torch/_numpy/_reductions_impl.py:78:5: error[invalid-parameter-default] Default value of type `Literal[False]` is not assignable to annotated parameter type `KeepDims@argmax` +torch/_numpy/_reductions_impl.py:80:8: error[unresolved-attribute] Object of type `ArrayLike@argmax` has no attribute `is_complex` +torch/_numpy/_reductions_impl.py:81:56: error[unresolved-attribute] Object of type `ArrayLike@argmax` has no attribute `dtype` +torch/_numpy/_reductions_impl.py:85:8: error[unresolved-attribute] Object of type `ArrayLike@argmax` has no attribute `dtype` +torch/_numpy/_reductions_impl.py:85:19: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_reductions_impl.py:87:13: error[unresolved-attribute] Object of type `ArrayLike@argmax` has no attribute `to` +torch/_numpy/_reductions_impl.py:87:18: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_reductions_impl.py:89:12: error[unresolved-attribute] Module `torch` has no member `argmax` +torch/_numpy/_reductions_impl.py:95:5: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `AxisLike@argmin` +torch/_numpy/_reductions_impl.py:98:5: error[invalid-parameter-default] Default value of type `Literal[False]` is not assignable to annotated parameter type `KeepDims@argmin` +torch/_numpy/_reductions_impl.py:100:8: error[unresolved-attribute] Object of type `ArrayLike@argmin` has no attribute `is_complex` +torch/_numpy/_reductions_impl.py:101:56: error[unresolved-attribute] Object of type `ArrayLike@argmin` has no attribute `dtype` +torch/_numpy/_reductions_impl.py:105:8: error[unresolved-attribute] Object of type `ArrayLike@argmin` has no attribute `dtype` +torch/_numpy/_reductions_impl.py:105:19: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_reductions_impl.py:107:13: error[unresolved-attribute] Object of type `ArrayLike@argmin` has no attribute `to` +torch/_numpy/_reductions_impl.py:107:18: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_numpy/_reductions_impl.py:109:12: error[unresolved-attribute] Module `torch` has no member `argmin` +torch/_numpy/_reductions_impl.py:115:5: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `AxisLike@any` +torch/_numpy/_reductions_impl.py:117:5: error[invalid-parameter-default] Default value of type `Literal[False]` is not assignable to annotated parameter type `KeepDims@any` +torch/_numpy/_reductions_impl.py:123:12: error[unresolved-attribute] Module `torch` has no member `any` +torch/_numpy/_reductions_impl.py:129:5: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `AxisLike@all` +torch/_numpy/_reductions_impl.py:131:5: error[invalid-parameter-default] Default value of type `Literal[False]` is not assignable to annotated parameter type `KeepDims@all` +torch/_numpy/_reductions_impl.py:137:12: error[unresolved-attribute] Module `torch` has no member `all` +torch/_numpy/_reductions_impl.py:143:5: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `AxisLike@amax` +torch/_numpy/_reductions_impl.py:145:5: error[invalid-parameter-default] Default value of type `Literal[False]` is not assignable to annotated parameter type `KeepDims@amax` +torch/_numpy/_reductions_impl.py:149:8: error[unresolved-attribute] Object of type `ArrayLike@amax` has no attribute `is_complex` +torch/_numpy/_reductions_impl.py:150:54: error[unresolved-attribute] Object of type `ArrayLike@amax` has no attribute `dtype` +torch/_numpy/_reductions_impl.py:152:12: error[unresolved-attribute] Object of type `ArrayLike@amax` has no attribute `amax` +torch/_numpy/_reductions_impl.py:161:5: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `AxisLike@amin` +torch/_numpy/_reductions_impl.py:163:5: error[invalid-parameter-default] Default value of type `Literal[False]` is not assignable to annotated parameter type `KeepDims@amin` +torch/_numpy/_reductions_impl.py:167:8: error[unresolved-attribute] Object of type `ArrayLike@amin` has no attribute `is_complex` +torch/_numpy/_reductions_impl.py:168:54: error[unresolved-attribute] Object of type `ArrayLike@amin` has no attribute `dtype` +torch/_numpy/_reductions_impl.py:170:12: error[unresolved-attribute] Object of type `ArrayLike@amin` has no attribute `amin` +torch/_numpy/_reductions_impl.py:179:5: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `AxisLike@ptp` +torch/_numpy/_reductions_impl.py:181:5: error[invalid-parameter-default] Default value of type `Literal[False]` is not assignable to annotated parameter type `KeepDims@ptp` +torch/_numpy/_reductions_impl.py:183:12: error[unresolved-attribute] Object of type `ArrayLike@ptp` has no attribute `amax` +torch/_numpy/_reductions_impl.py:183:27: error[unresolved-attribute] Object of type `ArrayLike@ptp` has no attribute `amin` +torch/_numpy/_reductions_impl.py:189:5: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `AxisLike@sum` +torch/_numpy/_reductions_impl.py:192:5: error[invalid-parameter-default] Default value of type `Literal[False]` is not assignable to annotated parameter type `KeepDims@sum` +torch/_numpy/_reductions_impl.py:196:47: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_numpy/_reductions_impl.py:198:17: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_reductions_impl.py:202:12: error[unresolved-attribute] Object of type `ArrayLike@sum` has no attribute `sum` +torch/_numpy/_reductions_impl.py:208:5: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `AxisLike@prod` +torch/_numpy/_reductions_impl.py:211:5: error[invalid-parameter-default] Default value of type `Literal[False]` is not assignable to annotated parameter type `KeepDims@prod` +torch/_numpy/_reductions_impl.py:217:17: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_reductions_impl.py:221:12: error[unresolved-attribute] Object of type `ArrayLike@prod` has no attribute `prod` +torch/_numpy/_reductions_impl.py:230:5: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `AxisLike@mean` +torch/_numpy/_reductions_impl.py:233:5: error[invalid-parameter-default] Default value of type `Literal[False]` is not assignable to annotated parameter type `KeepDims@mean` +torch/_numpy/_reductions_impl.py:237:35: error[unresolved-attribute] Object of type `ArrayLike@mean` has no attribute `dtype` +torch/_numpy/_reductions_impl.py:240:14: error[unresolved-attribute] Object of type `ArrayLike@mean` has no attribute `mean` +torch/_numpy/_reductions_impl.py:248:5: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `AxisLike@std` +torch/_numpy/_reductions_impl.py:252:5: error[invalid-parameter-default] Default value of type `Literal[False]` is not assignable to annotated parameter type `KeepDims@std` +torch/_numpy/_reductions_impl.py:257:35: error[unresolved-attribute] Object of type `ArrayLike@std` has no attribute `dtype` +torch/_numpy/_reductions_impl.py:266:5: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `AxisLike@var` +torch/_numpy/_reductions_impl.py:270:5: error[invalid-parameter-default] Default value of type `Literal[False]` is not assignable to annotated parameter type `KeepDims@var` +torch/_numpy/_reductions_impl.py:275:35: error[unresolved-attribute] Object of type `ArrayLike@var` has no attribute `dtype` +torch/_numpy/_reductions_impl.py:288:5: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `AxisLike@cumsum` +torch/_numpy/_reductions_impl.py:292:17: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_reductions_impl.py:295:17: error[unresolved-attribute] Object of type `ArrayLike@cumsum` has no attribute `dtype` +torch/_numpy/_reductions_impl.py:305:5: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `AxisLike@cumprod` +torch/_numpy/_reductions_impl.py:309:17: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_reductions_impl.py:312:17: error[unresolved-attribute] Object of type `ArrayLike@cumprod` has no attribute `dtype` +torch/_numpy/_reductions_impl.py:326:5: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `ArrayLike@average` +torch/_numpy/_reductions_impl.py:333:16: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_numpy/_reductions_impl.py:333:32: error[unresolved-attribute] Object of type `ArrayLike@average` has no attribute `numel` +torch/_numpy/_reductions_impl.py:335:16: error[unresolved-attribute] Object of type `ArrayLike@average` has no attribute `dtype` +torch/_numpy/_reductions_impl.py:336:17: error[unresolved-attribute] Object of type `ArrayLike@average` has no attribute `double` +torch/_numpy/_reductions_impl.py:339:12: warning[possibly-missing-attribute] Attribute `shape` may be missing on object of type `ArrayLike@average | Unknown` +torch/_numpy/_reductions_impl.py:339:23: error[unresolved-attribute] Object of type `ArrayLike@average & ~None` has no attribute `shape` +torch/_numpy/_reductions_impl.py:344:16: error[unresolved-attribute] Object of type `ArrayLike@average & ~None` has no attribute `ndim` +torch/_numpy/_reductions_impl.py:348:16: error[unresolved-attribute] Object of type `ArrayLike@average & ~None` has no attribute `shape` +torch/_numpy/_reductions_impl.py:348:36: warning[possibly-missing-attribute] Attribute `shape` may be missing on object of type `ArrayLike@average | Unknown` +torch/_numpy/_reductions_impl.py:354:23: error[unresolved-attribute] Module `torch` has no member `broadcast_to` +torch/_numpy/_reductions_impl.py:354:52: warning[possibly-missing-attribute] Attribute `ndim` may be missing on object of type `ArrayLike@average | Unknown` +torch/_numpy/_reductions_impl.py:354:73: error[unresolved-attribute] Object of type `ArrayLike@average & ~None` has no attribute `shape` +torch/_numpy/_reductions_impl.py:359:25: error[unsupported-operator] Operator `*` is unsupported between objects of type `ArrayLike@average | Unknown` and `(ArrayLike@average & ~None) | Unknown` +torch/_numpy/_reductions_impl.py:365:53: warning[possibly-missing-attribute] Attribute `ndim` may be missing on object of type `ArrayLike@average | Unknown` +torch/_numpy/_reductions_impl.py:369:20: error[unresolved-attribute] Module `torch` has no member `broadcast_to` +torch/_numpy/_reductions_impl.py:379:5: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `AxisLike@quantile` +torch/_numpy/_reductions_impl.py:383:5: error[invalid-parameter-default] Default value of type `Literal[False]` is not assignable to annotated parameter type `KeepDims@quantile` +torch/_numpy/_reductions_impl.py:394:12: error[unresolved-attribute] Object of type `ArrayLike@quantile` has no attribute `dtype` +torch/_numpy/_reductions_impl.py:396:13: error[unresolved-attribute] Object of type `ArrayLike@quantile` has no attribute `to` +torch/_numpy/_reductions_impl.py:399:8: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `ArrayLike@quantile | Unknown` +torch/_numpy/_reductions_impl.py:399:19: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_reductions_impl.py:400:13: warning[possibly-missing-attribute] Attribute `to` may be missing on object of type `ArrayLike@quantile | Unknown` +torch/_numpy/_reductions_impl.py:400:18: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/_reductions_impl.py:403:13: warning[possibly-missing-attribute] Attribute `flatten` may be missing on object of type `ArrayLike@quantile | Unknown` +torch/_numpy/_reductions_impl.py:404:13: error[unresolved-attribute] Object of type `ArrayLike@quantile` has no attribute `flatten` +torch/_numpy/_reductions_impl.py:405:16: error[invalid-assignment] Object of type `tuple[Literal[0]]` is not assignable to `AxisLike@quantile` +torch/_numpy/_reductions_impl.py:407:49: warning[possibly-missing-attribute] Attribute `ndim` may be missing on object of type `ArrayLike@quantile | Unknown` +torch/_numpy/_reductions_impl.py:414:33: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `ArrayLike@quantile | Unknown` +torch/_numpy/_reductions_impl.py:416:12: error[unresolved-attribute] Module `torch` has no member `quantile` +torch/_numpy/_reductions_impl.py:422:5: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `AxisLike@percentile` +torch/_numpy/_reductions_impl.py:426:5: error[invalid-parameter-default] Default value of type `Literal[False]` is not assignable to annotated parameter type `KeepDims@percentile` +torch/_numpy/_reductions_impl.py:431:43: error[unresolved-attribute] Object of type `ArrayLike@percentile` has no attribute `dtype` +torch/_numpy/_reductions_impl.py:432:13: error[unresolved-attribute] Object of type `ArrayLike@percentile` has no attribute `to` +torch/_numpy/_reductions_impl.py:433:10: error[unsupported-operator] Operator `/` is unsupported between objects of type `ArrayLike@percentile | Unknown` and `float` +torch/_numpy/_reductions_impl.py:451:5: error[invalid-parameter-default] Default value of type `Literal[False]` is not assignable to annotated parameter type `KeepDims@median` +torch/_numpy/_reductions_impl.py:455:9: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_numpy/_ufuncs.py:24:18: error[unresolved-attribute] Module `torch` has no member `broadcast_to` +torch/_numpy/_ufuncs.py:82:9: error[invalid-parameter-default] Default value of type `Literal["same_kind"]` is not assignable to annotated parameter type `CastingModes@wrapped | None` +torch/_numpy/_ufuncs.py:95:28: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_numpy/_ufuncs.py:128:5: error[invalid-parameter-default] Default value of type `Literal["same_kind"]` is not assignable to annotated parameter type `CastingModes@matmul | None` +torch/_numpy/_ufuncs.py:156:5: error[invalid-parameter-default] Default value of type `Literal["same_kind"]` is not assignable to annotated parameter type `CastingModes@ldexp | None` +torch/_numpy/_ufuncs.py:167:18: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_numpy/_ufuncs.py:170:18: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_numpy/_ufuncs.py:173:10: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_numpy/_ufuncs.py:180:20: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_ufuncs.py:182:28: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_numpy/_ufuncs.py:198:5: error[invalid-parameter-default] Default value of type `Literal["same_kind"]` is not assignable to annotated parameter type `CastingModes@divmod | None` +torch/_numpy/_ufuncs.py:303:9: error[invalid-parameter-default] Default value of type `Literal["same_kind"]` is not assignable to annotated parameter type `CastingModes@wrapped | None` +torch/_numpy/_unary_ufuncs_impl.py:9:5: error[unresolved-import] Module `torch` has no member `absolute` +torch/_numpy/_unary_ufuncs_impl.py:10:5: error[unresolved-import] Module `torch` has no member `arccos` +torch/_numpy/_unary_ufuncs_impl.py:11:5: error[unresolved-import] Module `torch` has no member `arccosh` +torch/_numpy/_unary_ufuncs_impl.py:12:5: error[unresolved-import] Module `torch` has no member `arcsin` +torch/_numpy/_unary_ufuncs_impl.py:13:5: error[unresolved-import] Module `torch` has no member `arcsinh` +torch/_numpy/_unary_ufuncs_impl.py:14:5: error[unresolved-import] Module `torch` has no member `arctan` +torch/_numpy/_unary_ufuncs_impl.py:15:5: error[unresolved-import] Module `torch` has no member `arctanh` +torch/_numpy/_unary_ufuncs_impl.py:16:5: error[unresolved-import] Module `torch` has no member `bitwise_not` +torch/_numpy/_unary_ufuncs_impl.py:17:5: error[unresolved-import] Module `torch` has no member `bitwise_not` +torch/_numpy/_unary_ufuncs_impl.py:18:5: error[unresolved-import] Module `torch` has no member `ceil` +torch/_numpy/_unary_ufuncs_impl.py:19:5: error[unresolved-import] Module `torch` has no member `conj_physical` +torch/_numpy/_unary_ufuncs_impl.py:20:5: error[unresolved-import] Module `torch` has no member `cos` +torch/_numpy/_unary_ufuncs_impl.py:21:5: error[unresolved-import] Module `torch` has no member `cosh` +torch/_numpy/_unary_ufuncs_impl.py:22:5: error[unresolved-import] Module `torch` has no member `deg2rad` +torch/_numpy/_unary_ufuncs_impl.py:23:5: error[unresolved-import] Module `torch` has no member `deg2rad` +torch/_numpy/_unary_ufuncs_impl.py:24:5: error[unresolved-import] Module `torch` has no member `exp` +torch/_numpy/_unary_ufuncs_impl.py:25:5: error[unresolved-import] Module `torch` has no member `exp2` +torch/_numpy/_unary_ufuncs_impl.py:26:5: error[unresolved-import] Module `torch` has no member `expm1` +torch/_numpy/_unary_ufuncs_impl.py:27:5: error[unresolved-import] Module `torch` has no member `floor` +torch/_numpy/_unary_ufuncs_impl.py:28:5: error[unresolved-import] Module `torch` has no member `isfinite` +torch/_numpy/_unary_ufuncs_impl.py:29:5: error[unresolved-import] Module `torch` has no member `isinf` +torch/_numpy/_unary_ufuncs_impl.py:30:5: error[unresolved-import] Module `torch` has no member `isnan` +torch/_numpy/_unary_ufuncs_impl.py:31:5: error[unresolved-import] Module `torch` has no member `log` +torch/_numpy/_unary_ufuncs_impl.py:32:5: error[unresolved-import] Module `torch` has no member `log10` +torch/_numpy/_unary_ufuncs_impl.py:33:5: error[unresolved-import] Module `torch` has no member `log1p` +torch/_numpy/_unary_ufuncs_impl.py:34:5: error[unresolved-import] Module `torch` has no member `log2` +torch/_numpy/_unary_ufuncs_impl.py:35:5: error[unresolved-import] Module `torch` has no member `logical_not` +torch/_numpy/_unary_ufuncs_impl.py:36:5: error[unresolved-import] Module `torch` has no member `negative` +torch/_numpy/_unary_ufuncs_impl.py:37:5: error[unresolved-import] Module `torch` has no member `rad2deg` +torch/_numpy/_unary_ufuncs_impl.py:38:5: error[unresolved-import] Module `torch` has no member `rad2deg` +torch/_numpy/_unary_ufuncs_impl.py:39:5: error[unresolved-import] Module `torch` has no member `reciprocal` +torch/_numpy/_unary_ufuncs_impl.py:40:5: error[unresolved-import] Module `torch` has no member `round` +torch/_numpy/_unary_ufuncs_impl.py:41:5: error[unresolved-import] Module `torch` has no member `round` +torch/_numpy/_unary_ufuncs_impl.py:42:5: error[unresolved-import] Module `torch` has no member `sign` +torch/_numpy/_unary_ufuncs_impl.py:43:5: error[unresolved-import] Module `torch` has no member `signbit` +torch/_numpy/_unary_ufuncs_impl.py:44:5: error[unresolved-import] Module `torch` has no member `sin` +torch/_numpy/_unary_ufuncs_impl.py:45:5: error[unresolved-import] Module `torch` has no member `sinh` +torch/_numpy/_unary_ufuncs_impl.py:46:5: error[unresolved-import] Module `torch` has no member `sqrt` +torch/_numpy/_unary_ufuncs_impl.py:47:5: error[unresolved-import] Module `torch` has no member `square` +torch/_numpy/_unary_ufuncs_impl.py:48:5: error[unresolved-import] Module `torch` has no member `tan` +torch/_numpy/_unary_ufuncs_impl.py:49:5: error[unresolved-import] Module `torch` has no member `tanh` +torch/_numpy/_unary_ufuncs_impl.py:50:5: error[unresolved-import] Module `torch` has no member `trunc` +torch/_numpy/_unary_ufuncs_impl.py:56:12: error[unresolved-attribute] Module `torch` has no member `pow` +torch/_numpy/_unary_ufuncs_impl.py:65:19: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_numpy/_unary_ufuncs_impl.py:67:12: error[unresolved-attribute] Module `torch` has no member `absolute` +torch/_numpy/_util.py:177:18: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_numpy/_util.py:218:25: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_numpy/_util.py:219:68: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_numpy/linalg.py:44:16: error[unresolved-attribute] Module `torch._C` has no member `_LinAlgError` +torch/_numpy/linalg.py:147:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_numpy/linalg.py:147:24: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_numpy/linalg.py:161:36: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_numpy/linalg.py:169:45: error[invalid-parameter-default] Default value of type `Literal[False]` is not assignable to annotated parameter type `KeepDims@norm` +torch/_numpy/random.py:70:33: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_numpy/random.py:88:14: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_numpy/random.py:107:14: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_numpy/random.py:114:14: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_numpy/random.py:123:14: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_numpy/random.py:139:12: error[unresolved-attribute] Module `torch` has no member `randperm` +torch/_numpy/random.py:152:14: error[unresolved-attribute] Module `torch` has no member `randint` +torch/_numpy/random.py:160:8: error[unresolved-attribute] Object of type `ArrayLike@choice` has no attribute `numel` +torch/_numpy/random.py:161:13: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_numpy/random.py:177:13: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/_numpy/random.py:177:34: warning[possibly-missing-attribute] Attribute `shape` may be missing on object of type `ArrayLike@choice | Unknown` +torch/_numpy/random.py:180:17: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_numpy/random.py:180:29: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `(ArrayLike@choice & ~None) | Unknown` +torch/_numpy/random.py:181:12: warning[possibly-missing-attribute] Attribute `sum` may be missing on object of type `(ArrayLike@choice & ~None) | Unknown` +torch/_numpy/random.py:185:15: error[unresolved-attribute] Module `torch` has no member `multinomial` +torch/_numpy/random.py:190:15: error[non-subscriptable] Cannot subscript object of type `ArrayLike@choice` with no `__getitem__` method +torch/_numpy/testing/utils.py:24:26: error[unresolved-import] Module `torch._numpy` has no member `arange` +torch/_numpy/testing/utils.py:24:57: error[unresolved-import] Module `torch._numpy` has no member `empty` +torch/_numpy/testing/utils.py:24:73: error[unresolved-import] Module `torch._numpy` has no member `intp` +torch/_numpy/testing/utils.py:84:20: error[call-non-callable] Object of type `Literal[""]` is not callable +torch/_numpy/testing/utils.py:91:12: error[unresolved-attribute] Module `torch._numpy` has no member `isnan` +torch/_numpy/testing/utils.py:95:12: error[unresolved-attribute] Module `torch._numpy` has no member `isfinite` +torch/_numpy/testing/utils.py:99:12: error[unresolved-attribute] Module `torch._numpy` has no member `isinf` +torch/_numpy/testing/utils.py:221:30: error[unresolved-import] Module `torch._numpy` has no member `imag` +torch/_numpy/testing/utils.py:221:36: error[unresolved-import] Module `torch._numpy` has no member `iscomplexobj` +torch/_numpy/testing/utils.py:221:50: error[unresolved-import] Module `torch._numpy` has no member `isscalar` +torch/_numpy/testing/utils.py:221:69: error[unresolved-import] Module `torch._numpy` has no member `real` +torch/_numpy/testing/utils.py:221:75: error[unresolved-import] Module `torch._numpy` has no member `signbit` +torch/_numpy/testing/utils.py:401:30: error[unresolved-import] Module `torch._numpy` has no member `imag` +torch/_numpy/testing/utils.py:401:36: error[unresolved-import] Module `torch._numpy` has no member `iscomplexobj` +torch/_numpy/testing/utils.py:401:59: error[unresolved-import] Module `torch._numpy` has no member `real` +torch/_numpy/testing/utils.py:578:63: error[unresolved-import] Module `torch._numpy` has no member `isnan` +torch/_numpy/testing/utils.py:578:70: error[unresolved-import] Module `torch._numpy` has no member `max` +torch/_numpy/testing/utils.py:662:12: warning[possibly-missing-attribute] Attribute `ndim` may be missing on object of type `bool_ | Unknown` +torch/_numpy/testing/utils.py:663:22: error[unsupported-operator] Unary operator `~` is unsupported for type `bool_ | Unknown` +torch/_numpy/testing/utils.py:663:35: error[unsupported-operator] Unary operator `~` is unsupported for type `bool_ | Unknown` +torch/_numpy/testing/utils.py:686:26: warning[possibly-missing-attribute] Attribute `size` may be missing on object of type `bool_ | Unknown` +torch/_numpy/testing/utils.py:686:42: warning[possibly-missing-attribute] Attribute `ndim` may be missing on object of type `bool_ | Unknown` +torch/_numpy/testing/utils.py:698:21: error[unresolved-attribute] Module `torch._numpy` has no member `minimum` +torch/_numpy/testing/utils.py:708:24: error[unsupported-operator] Unary operator `~` is unsupported for type `bool_` +torch/_numpy/testing/utils.py:929:44: error[unresolved-import] Module `torch._numpy` has no member `float_` +torch/_numpy/testing/utils.py:1302:16: error[unresolved-attribute] Module `torch._numpy` has no member `isclose` +torch/_numpy/testing/utils.py:2119:9: error[invalid-assignment] Implicit shadowing of function `showwarning` +torch/_numpy/testing/utils.py:2166:17: error[unresolved-attribute] Object of type `Self@_showwarning` has no attribute `_orig_showmsg` +torch/_numpy/testing/utils.py:2182:13: error[unresolved-attribute] Object of type `Self@_showwarning` has no attribute `_orig_showmsg` +torch/_numpy/testing/utils.py:2306:12: error[unresolved-import] Cannot resolve imported module `pytest` +torch/_numpy/testing/utils.py:2394:16: error[unresolved-import] Cannot resolve imported module `psutil` +torch/_numpy/testing/utils.py:2440:15: warning[possibly-missing-attribute] Attribute `rsplit` may be missing on object of type `str | None` +torch/_ops.py:26:22: error[unresolved-import] Module `torch._C` has no member `_dispatch_is_included_in_alias` +torch/_ops.py:26:78: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_ops.py:36:22: error[invalid-paramspec] The `default` parameter of `typing.ParamSpec` was added in Python 3.13 +torch/_ops.py:118:20: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_is_alias_key` +torch/_ops.py:225:9: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_get_backend_keyset_from_autograd` +torch/_ops.py:240:13: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_autogradother_backends` +torch/_ops.py:254:8: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_backend_fallback` +torch/_ops.py:295:37: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_keyset_full` +torch/_ops.py:326:20: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_ops.py:331:22: error[unresolved-attribute] Module `torch._C` has no member `_AutoDispatchBelowAutograd` +torch/_ops.py:366:21: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_ops.py:393:24: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_keys` +torch/_ops.py:440:24: error[unresolved-attribute] Module `torch._C` has no member `_disabled_torch_dispatch_impl` +torch/_ops.py:486:23: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_is_dispatch_key_excluded` +torch/_ops.py:578:15: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_include_set` +torch/_ops.py:580:29: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_keys` +torch/_ops.py:581:25: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_exclude_set` +torch/_ops.py:624:9: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_ops.py:625:9: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_ops.py:633:24: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_ops.py:637:26: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_ops.py:654:9: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_set_dispatch_key_included` +torch/_ops.py:695:9: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_set_dispatch_key_included` +torch/_ops.py:708:40: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_ops.py:710:40: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_ops.py:719:20: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_ops.py:722:28: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_ops.py:773:17: error[unresolved-attribute] Module `torch._C` has no member `FunctionSchema` +torch/_ops.py:786:45: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_ops.py:821:26: error[unresolved-attribute] Module `torch._C` has no member `_DispatchOperatorHandle` +torch/_ops.py:822:16: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_find_schema_or_throw` +torch/_ops.py:841:26: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_ops.py:855:14: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_ops.py:857:51: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_ops.py:858:16: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_any_dispatch_key` +torch/_ops.py:868:41: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_ops.py:880:14: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_ops.py:920:29: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_ops.py:922:36: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/_ops.py:928:22: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_ops.py:942:25: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_is_dispatch_key_excluded` +torch/_ops.py:957:32: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/_ops.py:1030:16: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_ops.py:1031:24: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_kernel_for_dispatch_key_is_fallthrough` +torch/_ops.py:1091:32: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_keyset_full` +torch/_ops.py:1107:16: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_kernel_for_dispatch_key_is_fallthrough` +torch/_ops.py:1139:36: error[unresolved-attribute] Module `torch` has no member `FunctionSchema` +torch/_ops.py:1140:37: error[unresolved-attribute] Module `torch` has no member `ClassType` +torch/_ops.py:1188:28: error[unresolved-attribute] Module `torch._C` has no member `_get_schema` +torch/_ops.py:1217:26: error[unresolved-attribute] Module `torch._C` has no member `_get_operation_overload` +torch/_ops.py:1226:22: error[unresolved-attribute] Module `torch._C` has no member `_get_schema` +torch/_ops.py:1271:34: error[unresolved-attribute] Module `torch._C` has no member `_maybe_call_torch_function_for_op_packet` +torch/_ops.py:1288:17: error[unresolved-attribute] Module `torch._C` has no member `_check_schema_allow_fake_script_object` +torch/_ops.py:1391:26: error[unresolved-attribute] Module `torch._C` has no member `_jit_get_operation` +torch/_ops.py:1395:9: error[unresolved-attribute] Module `torch.jit` has no member `_builtins` +torch/_prims/__init__.py:12:22: error[unresolved-import] Module `torch._C` has no member `_get_default_device` +torch/_prims/__init__.py:228:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:229:28: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:237:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:261:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:263:12: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_prims/__init__.py:273:29: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_prims/__init__.py:299:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:308:18: error[unresolved-attribute] Module `torch._C` has no member `parse_schema` +torch/_prims/__init__.py:310:41: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_prims/__init__.py:345:35: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_prims/__init__.py:348:35: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_prims/__init__.py:451:21: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_prims/__init__.py:454:25: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_prims/__init__.py:525:15: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_prims/__init__.py:532:15: error[unresolved-attribute] Module `torch` has no member `acos` +torch/_prims/__init__.py:539:15: error[unresolved-attribute] Module `torch` has no member `acosh` +torch/_prims/__init__.py:546:15: error[unresolved-attribute] Module `torch` has no member `asin` +torch/_prims/__init__.py:553:15: error[unresolved-attribute] Module `torch` has no member `asinh` +torch/_prims/__init__.py:560:15: error[unresolved-attribute] Module `torch` has no member `atan` +torch/_prims/__init__.py:567:15: error[unresolved-attribute] Module `torch` has no member `atanh` +torch/_prims/__init__.py:574:15: error[unresolved-attribute] Module `torch` has no member `cos` +torch/_prims/__init__.py:581:15: error[unresolved-attribute] Module `torch` has no member `cosh` +torch/_prims/__init__.py:602:15: error[unresolved-attribute] Module `torch` has no member `i0` +torch/_prims/__init__.py:630:15: error[unresolved-attribute] Module `torch` has no member `bitwise_not` +torch/_prims/__init__.py:647:12: error[unresolved-attribute] Module `torch` has no member `copysign` +torch/_prims/__init__.py:647:27: error[unresolved-attribute] Module `torch` has no member `pow` +torch/_prims/__init__.py:659:15: error[unresolved-attribute] Module `torch` has no member `ceil` +torch/_prims/__init__.py:676:15: error[unresolved-attribute] Module `torch` has no member `_conj_physical` +torch/_prims/__init__.py:683:46: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_prims/__init__.py:683:68: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_prims/__init__.py:685:25: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_prims/__init__.py:686:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_prims/__init__.py:702:16: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_prims/__init__.py:714:15: error[unresolved-attribute] Module `torch` has no member `clone` +torch/_prims/__init__.py:722:15: error[unresolved-attribute] Module `torch` has no member `digamma` +torch/_prims/__init__.py:729:15: error[unresolved-attribute] Module `torch` has no member `erf` +torch/_prims/__init__.py:757:15: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_prims/__init__.py:788:15: error[unresolved-attribute] Module `torch` has no member `fill` +torch/_prims/__init__.py:794:15: error[unresolved-attribute] Module `torch` has no member `floor` +torch/_prims/__init__.py:806:15: error[unresolved-attribute] Module `torch` has no member `imag` +torch/_prims/__init__.py:812:15: error[unresolved-attribute] Module `torch` has no member `isfinite` +torch/_prims/__init__.py:819:15: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/_prims/__init__.py:826:15: error[unresolved-attribute] Module `torch` has no member `log` +torch/_prims/__init__.py:833:15: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/_prims/__init__.py:840:15: error[unresolved-attribute] Module `torch` has no member `log2` +torch/_prims/__init__.py:847:15: error[unresolved-attribute] Module `torch` has no member `log10` +torch/_prims/__init__.py:859:15: error[unresolved-attribute] Module `torch` has no member `real` +torch/_prims/__init__.py:865:15: error[unresolved-attribute] Module `torch` has no member `reciprocal` +torch/_prims/__init__.py:879:15: error[unresolved-attribute] Module `torch` has no member `neg` +torch/_prims/__init__.py:886:15: error[unresolved-attribute] Module `torch` has no member `round` +torch/_prims/__init__.py:893:15: error[unresolved-attribute] Module `torch` has no member `rsqrt` +torch/_prims/__init__.py:900:15: error[unresolved-attribute] Module `torch` has no member `sign` +torch/_prims/__init__.py:907:15: error[unresolved-attribute] Module `torch` has no member `signbit` +torch/_prims/__init__.py:914:15: error[unresolved-attribute] Module `torch` has no member `sin` +torch/_prims/__init__.py:921:15: error[unresolved-attribute] Module `torch` has no member `sinh` +torch/_prims/__init__.py:935:15: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/_prims/__init__.py:942:15: error[unresolved-attribute] Module `torch` has no member `tan` +torch/_prims/__init__.py:949:15: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/_prims/__init__.py:956:15: error[unresolved-attribute] Module `torch` has no member `trunc` +torch/_prims/__init__.py:967:15: error[unresolved-attribute] Module `torch` has no member `add` +torch/_prims/__init__.py:974:15: error[unresolved-attribute] Module `torch` has no member `atan2` +torch/_prims/__init__.py:981:15: error[unresolved-attribute] Module `torch` has no member `bitwise_and` +torch/_prims/__init__.py:988:15: error[unresolved-attribute] Module `torch` has no member `bitwise_or` +torch/_prims/__init__.py:995:15: error[unresolved-attribute] Module `torch` has no member `bitwise_xor` +torch/_prims/__init__.py:1016:16: error[unresolved-attribute] Module `torch` has no member `div` +torch/_prims/__init__.py:1019:16: error[unresolved-attribute] Module `torch` has no member `true_divide` +torch/_prims/__init__.py:1031:15: error[unresolved-attribute] Module `torch` has no member `eq` +torch/_prims/__init__.py:1038:15: error[unresolved-attribute] Module `torch` has no member `fmax` +torch/_prims/__init__.py:1045:15: error[unresolved-attribute] Module `torch` has no member `fmin` +torch/_prims/__init__.py:1052:15: error[unresolved-attribute] Module `torch` has no member `fmod` +torch/_prims/__init__.py:1060:15: error[unresolved-attribute] Module `torch` has no member `gcd` +torch/_prims/__init__.py:1068:15: error[unresolved-attribute] Module `torch` has no member `ge` +torch/_prims/__init__.py:1075:15: error[unresolved-attribute] Module `torch` has no member `gt` +torch/_prims/__init__.py:1082:15: error[unresolved-attribute] Module `torch` has no member `hypot` +torch/_prims/__init__.py:1103:15: error[unresolved-attribute] Module `torch` has no member `le` +torch/_prims/__init__.py:1110:15: error[unresolved-attribute] Module `torch` has no member `lt` +torch/_prims/__init__.py:1156:15: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_prims/__init__.py:1163:15: error[unresolved-attribute] Module `torch` has no member `ne` +torch/_prims/__init__.py:1170:15: error[unresolved-attribute] Module `torch` has no member `nextafter` +torch/_prims/__init__.py:1177:15: error[unresolved-attribute] Module `torch` has no member `pow` +torch/_prims/__init__.py:1184:15: error[unresolved-attribute] Module `torch` has no member `remainder` +torch/_prims/__init__.py:1192:15: error[unresolved-attribute] Module `torch` has no member `bitwise_left_shift` +torch/_prims/__init__.py:1199:15: error[unresolved-attribute] Module `torch` has no member `bitwise_right_shift` +torch/_prims/__init__.py:1208:15: error[unresolved-attribute] Module `torch` has no member `sub` +torch/_prims/__init__.py:1240:12: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/_prims/__init__.py:1246:12: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/_prims/__init__.py:1524:5: error[unresolved-attribute] Module `torch._C` has no member `_set_conj` +torch/_prims/__init__.py:1535:15: error[unresolved-attribute] Module `torch` has no member `conj` +torch/_prims/__init__.py:1648:15: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_prims/__init__.py:1673:12: error[unresolved-attribute] Module `torch` has no member `permute` +torch/_prims/__init__.py:1714:55: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:1718:47: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:1775:15: error[unresolved-attribute] Module `torch` has no member `as_strided_scatter` +torch/_prims/__init__.py:1846:12: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_prims/__init__.py:1879:49: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_prims/__init__.py:1897:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_prims/__init__.py:1897:46: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_prims/__init__.py:1907:15: error[unresolved-attribute] Module `torch` has no member `flip` +torch/_prims/__init__.py:1938:15: error[unresolved-attribute] Module `torch` has no member `where` +torch/_prims/__init__.py:1947:58: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:1950:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:1961:50: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:1972:14: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_prims/__init__.py:1989:11: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_prims/__init__.py:1994:43: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:1997:37: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:2004:35: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:2038:10: error[unresolved-attribute] Module `torch` has no member `_dispatch` +torch/_prims/__init__.py:2056:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2061:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2062:17: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_prims/__init__.py:2065:16: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_prims/__init__.py:2067:16: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_prims/__init__.py:2088:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2093:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2094:17: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_prims/__init__.py:2097:16: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_prims/__init__.py:2099:16: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_prims/__init__.py:2162:12: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_prims/__init__.py:2173:11: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_prims/__init__.py:2297:15: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_prims/__init__.py:2306:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2322:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2329:19: error[unresolved-attribute] Module `torch` has no member `prod` +torch/_prims/__init__.py:2332:16: error[unresolved-attribute] Module `torch` has no member `prod` +torch/_prims/__init__.py:2344:12: error[unresolved-attribute] Module `torch` has no member `var` +torch/_prims/__init__.py:2355:15: error[unresolved-attribute] Module `torch` has no member `amax` +torch/_prims/__init__.py:2361:15: error[unresolved-attribute] Module `torch` has no member `amin` +torch/_prims/__init__.py:2378:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2379:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:2387:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_prims/__init__.py:2400:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2401:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:2405:12: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_prims/__init__.py:2422:33: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2422:54: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:2429:33: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2429:54: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:2431:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_prims/__init__.py:2451:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2452:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:2467:15: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_prims/__init__.py:2476:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2477:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:2522:15: error[unresolved-attribute] Module `torch` has no member `empty_permuted` +torch/_prims/__init__.py:2531:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2532:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:2543:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2544:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:2548:12: error[unresolved-attribute] Module `torch` has no member `full` +torch/_prims/__init__.py:2575:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2576:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:2590:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2591:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:2595:12: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/_prims/__init__.py:2622:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2623:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:2633:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2634:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:2731:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2732:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:2734:25: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_prims/__init__.py:2755:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2756:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:2758:25: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_prims/__init__.py:2760:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_prims/__init__.py:2790:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2791:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:2792:25: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_prims/__init__.py:2803:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/__init__.py:2804:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/__init__.py:2805:25: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_prims/__init__.py:2807:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_prims/__init__.py:2858:12: error[unresolved-attribute] Module `torch` has no member `_fft_r2c` +torch/_prims/__init__.py:2898:12: error[unresolved-attribute] Module `torch` has no member `_fft_c2c` +torch/_prims/__init__.py:2938:12: error[unresolved-attribute] Module `torch` has no member `_fft_c2r` +torch/_prims/__init__.py:2960:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_prims/__init__.py:2960:36: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_prims/__init__.py:2960:65: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_prims/__init__.py:2967:15: error[unresolved-attribute] Module `torch` has no member `frexp` +torch/_prims/context.py:38:21: error[unresolved-attribute] Module `torch._refs` has no member `fft` +torch/_prims/context.py:39:24: error[unresolved-attribute] Module `torch._refs` has no member `linalg` +torch/_prims/context.py:75:14: error[unresolved-attribute] Module `torch._refs` has no member `_conversions` +torch/_prims/context.py:77:26: error[unresolved-attribute] Module `torch._refs` has no member `_conversions` +torch/_prims/debug_prims.py:40:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims/debug_prims.py:41:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/rng_prims.py:7:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/_prims/rng_prims.py:52:12: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_prims/rng_prims.py:54:30: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_prims/rng_prims.py:54:52: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_prims/rng_prims.py:58:12: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_prims/rng_prims.py:66:13: error[unresolved-attribute] Module `torch` has no member `scalar_tensor` +torch/_prims/rng_prims.py:66:53: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_prims/rng_prims.py:84:16: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_prims/rng_prims.py:101:16: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_prims/rng_prims.py:120:29: error[unresolved-attribute] Module `torch` has no member `rand` +torch/_prims/rng_prims.py:130:15: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_prims/rng_prims.py:138:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims/rng_prims.py:334:22: warning[possibly-missing-attribute] Attribute `device` may be missing on object of type `Unknown | None` +torch/_prims_common/__init__.py:48:30: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_prims_common/__init__.py:68:40: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims_common/__init__.py:73:5: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims_common/__init__.py:380:5: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_prims_common/__init__.py:381:5: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_prims_common/__init__.py:382:5: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_prims_common/__init__.py:383:5: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_prims_common/__init__.py:387:43: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_prims_common/__init__.py:397:20: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_prims_common/__init__.py:400:6: error[invalid-return-type] Function can implicitly return `None`, which is not assignable to return type `bool` +torch/_prims_common/__init__.py:403:25: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_prims_common/__init__.py:405:25: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_prims_common/__init__.py:407:25: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_prims_common/__init__.py:432:34: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_prims_common/__init__.py:582:30: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_prims_common/__init__.py:587:34: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_prims_common/__init__.py:903:52: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims_common/__init__.py:904:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims_common/__init__.py:908:12: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims_common/__init__.py:1091:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_prims_common/__init__.py:1092:5: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_prims_common/__init__.py:1093:5: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_prims_common/__init__.py:1094:5: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_prims_common/__init__.py:1095:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_prims_common/__init__.py:1096:5: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_prims_common/__init__.py:1097:5: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_prims_common/__init__.py:1098:5: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_prims_common/__init__.py:1100:26: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_prims_common/__init__.py:1100:41: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_prims_common/__init__.py:1100:57: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/_prims_common/__init__.py:1101:20: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/_prims_common/__init__.py:1101:37: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_prims_common/__init__.py:1101:54: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_prims_common/__init__.py:1104:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1105:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1106:21: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_prims_common/__init__.py:1109:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1110:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1114:35: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1115:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1119:27: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1120:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1124:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1125:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1129:26: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1137:5: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_prims_common/__init__.py:1137:23: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_prims_common/__init__.py:1138:5: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_prims_common/__init__.py:1138:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_prims_common/__init__.py:1139:5: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/_prims_common/__init__.py:1139:22: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_prims_common/__init__.py:1143:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_prims_common/__init__.py:1143:20: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/_prims_common/__init__.py:1144:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_prims_common/__init__.py:1144:21: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_prims_common/__init__.py:1145:5: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_prims_common/__init__.py:1145:20: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_prims_common/__init__.py:1146:5: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_prims_common/__init__.py:1146:20: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_prims_common/__init__.py:1150:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1150:53: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1154:40: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1154:56: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1158:26: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1163:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1165:17: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_prims_common/__init__.py:1177:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1182:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1184:17: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_prims_common/__init__.py:1197:33: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1205:16: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_prims_common/__init__.py:1207:16: error[unresolved-attribute] Module `torch` has no member `long` +torch/_prims_common/__init__.py:1209:16: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_prims_common/__init__.py:1212:44: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_prims_common/__init__.py:1228:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1278:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1279:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1280:15: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1287:40: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1288:40: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1291:27: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1292:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1295:26: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1317:10: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_prims_common/__init__.py:1318:10: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_prims_common/__init__.py:1318:23: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_prims_common/__init__.py:1319:10: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_prims_common/__init__.py:1320:10: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_prims_common/__init__.py:1321:10: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_prims_common/__init__.py:1322:10: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_prims_common/__init__.py:1322:25: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_prims_common/__init__.py:1323:10: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_prims_common/__init__.py:1324:10: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_prims_common/__init__.py:1325:10: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/_prims_common/__init__.py:1326:10: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_prims_common/__init__.py:1327:10: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_prims_common/__init__.py:1347:26: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_prims_common/__init__.py:1349:19: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_prims_common/__init__.py:1375:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1375:58: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1452:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_prims_common/__init__.py:1452:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_prims_common/__init__.py:1453:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_prims_common/__init__.py:1453:20: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_prims_common/__init__.py:1454:5: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/_prims_common/__init__.py:1454:22: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_prims_common/__init__.py:1458:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1458:50: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1463:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_prims_common/__init__.py:1463:21: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_prims_common/__init__.py:1464:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_prims_common/__init__.py:1464:20: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_prims_common/__init__.py:1465:5: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_prims_common/__init__.py:1465:20: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_prims_common/__init__.py:1466:5: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/_prims_common/__init__.py:1466:22: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_prims_common/__init__.py:1467:5: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_prims_common/__init__.py:1467:22: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_prims_common/__init__.py:1471:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1471:46: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims_common/__init__.py:1471:63: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1539:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1539:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1651:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1680:13: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_prims_common/__init__.py:1689:56: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_prims_common/__init__.py:1692:24: error[unresolved-attribute] Module `torch` has no member `long` +torch/_prims_common/__init__.py:1695:24: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_prims_common/__init__.py:1703:28: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_prims_common/__init__.py:1713:20: error[unresolved-attribute] Module `torch` has no member `long` +torch/_prims_common/__init__.py:1713:32: error[unresolved-attribute] Module `torch` has no member `long` +torch/_prims_common/__init__.py:1716:53: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_prims_common/__init__.py:1724:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1725:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1725:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:1744:24: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_prims_common/__init__.py:2033:49: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_prims_common/__init__.py:2034:20: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_prims_common/__init__.py:2035:16: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_prims_common/__init__.py:2038:16: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_prims_common/__init__.py:2038:56: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_prims_common/__init__.py:2040:12: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_prims_common/__init__.py:2069:19: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_prims_common/__init__.py:2072:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/_prims_common/__init__.py:2096:38: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:2096:55: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/__init__.py:2097:44: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_prims_common/__init__.py:2101:46: error[unresolved-attribute] Module `torch` has no member `device` +torch/_prims_common/__init__.py:2104:40: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_prims_common/__init__.py:2104:58: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_prims_common/__init__.py:2105:46: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_prims_common/__init__.py:2119:15: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_is_dispatch_key_excluded` +torch/_prims_common/__init__.py:2120:13: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_prims_common/__init__.py:2122:9: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_set_dispatch_key_excluded` +torch/_prims_common/__init__.py:2123:13: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_prims_common/__init__.py:2125:18: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/_prims_common/__init__.py:2126:16: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/_prims_common/__init__.py:2166:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_prims_common/__init__.py:2167:22: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_prims_common/__init__.py:2173:47: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_prims_common/__init__.py:2174:51: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_prims_common/__init__.py:2175:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_prims_common/wrappers.py:32:55: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/wrappers.py:38:51: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/wrappers.py:44:49: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/wrappers.py:49:45: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_prims_common/wrappers.py:191:29: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_prims_common/wrappers.py:282:33: error[unresolved-attribute] Object of type `(...) -> _T@out_wrapper` has no attribute `__name__` +torch/_prims_common/wrappers.py:346:34: error[unresolved-attribute] Object of type `(...) -> _T@out_wrapper` has no attribute `__name__` +torch/_prims_common/wrappers.py:360:24: error[unresolved-attribute] Object of type `(...) -> _T@out_wrapper` has no attribute `__name__` +torch/_prims_common/wrappers.py:433:14: error[unresolved-attribute] Module `torch._C` has no member `_AutoDispatchBelowAutograd` +torch/_prims_common/wrappers.py:450:12: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_prims_common/wrappers.py:486:24: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_python_dispatcher.py:75:20: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_library` +torch/_refs/__init__.py:394:17: error[unresolved-attribute] Module `torch.fx.experimental` has no member `_config` +torch/_refs/__init__.py:564:47: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__name__` +torch/_refs/__init__.py:751:12: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_refs/__init__.py:767:15: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_refs/__init__.py:767:25: error[unresolved-attribute] Module `torch` has no member `floor` +torch/_refs/__init__.py:767:37: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_refs/__init__.py:767:52: error[unresolved-attribute] Module `torch` has no member `sign` +torch/_refs/__init__.py:768:12: error[unresolved-attribute] Module `torch` has no member `sub` +torch/_refs/__init__.py:788:31: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/__init__.py:794:16: error[unresolved-attribute] Module `torch` has no member `logical_or` +torch/_refs/__init__.py:794:39: error[unresolved-attribute] Module `torch` has no member `real` +torch/_refs/__init__.py:794:61: error[unresolved-attribute] Module `torch` has no member `imag` +torch/_refs/__init__.py:796:16: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_refs/__init__.py:797:12: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_refs/__init__.py:797:38: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/__init__.py:811:12: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_refs/__init__.py:811:38: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/__init__.py:825:12: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_refs/__init__.py:825:38: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/__init__.py:843:16: error[unresolved-attribute] Module `torch` has no member `imag` +torch/_refs/__init__.py:844:12: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/_refs/__init__.py:844:37: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/__init__.py:885:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:906:16: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_refs/__init__.py:906:26: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_refs/__init__.py:908:13: error[unresolved-attribute] Module `torch` has no member `amax` +torch/_refs/__init__.py:908:24: error[unresolved-attribute] Module `torch` has no member `real` +torch/_refs/__init__.py:909:13: error[unresolved-attribute] Module `torch` has no member `masked_fill` +torch/_refs/__init__.py:911:44: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_refs/__init__.py:913:14: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_refs/__init__.py:913:24: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_refs/__init__.py:934:18: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_refs/__init__.py:937:18: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_refs/__init__.py:947:24: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/__init__.py:967:19: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/__init__.py:1018:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:1049:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:1049:35: error[unresolved-attribute] Module `torch` has no member `sin` +torch/_refs/__init__.py:1138:20: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__name__` +torch/_refs/__init__.py:1330:20: error[unresolved-attribute] Module `torch` has no member `fill` +torch/_refs/__init__.py:1334:20: error[unresolved-attribute] Module `torch` has no member `exp2` +torch/_refs/__init__.py:1355:17: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_refs/__init__.py:1357:17: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_refs/__init__.py:1420:24: error[unresolved-attribute] Module `torch` has no member `device` +torch/_refs/__init__.py:1443:15: error[unresolved-attribute] Module `torch` has no member `signbit` +torch/_refs/__init__.py:1443:35: error[unresolved-attribute] Module `torch` has no member `signbit` +torch/_refs/__init__.py:1443:65: error[unresolved-attribute] Module `torch` has no member `fmod` +torch/_refs/__init__.py:1502:12: error[unresolved-attribute] Module `torch.return_types` has no member `frexp` +torch/_refs/__init__.py:1536:21: error[unresolved-attribute] Module `torch` has no member `eq` +torch/_refs/__init__.py:1537:21: error[unresolved-attribute] Module `torch` has no member `logical_or` +torch/_refs/__init__.py:1537:38: error[unresolved-attribute] Module `torch` has no member `lt` +torch/_refs/__init__.py:1537:58: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_refs/__init__.py:1538:22: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:1539:14: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:1621:43: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_refs/__init__.py:1622:43: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_refs/__init__.py:1644:32: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_refs/__init__.py:1644:44: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_refs/__init__.py:1646:43: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_refs/__init__.py:1647:43: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_refs/__init__.py:1649:9: error[unresolved-attribute] Module `torch` has no member `gcd` +torch/_refs/__init__.py:1651:9: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:1652:11: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_refs/__init__.py:1671:12: error[unresolved-attribute] Module `torch` has no member `real` +torch/_refs/__init__.py:1671:29: error[unresolved-attribute] Module `torch` has no member `real` +torch/_refs/__init__.py:1672:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:1673:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:1674:16: error[unresolved-attribute] Module `torch` has no member `logical_and` +torch/_refs/__init__.py:1675:9: error[unresolved-attribute] Module `torch` has no member `logical_not` +torch/_refs/__init__.py:1675:27: error[unresolved-attribute] Module `torch` has no member `isfinite` +torch/_refs/__init__.py:1675:42: error[unresolved-attribute] Module `torch` has no member `real` +torch/_refs/__init__.py:1675:59: error[unresolved-attribute] Module `torch` has no member `real` +torch/_refs/__init__.py:1675:76: error[unresolved-attribute] Module `torch` has no member `real` +torch/_refs/__init__.py:1679:24: error[unresolved-attribute] Module `torch` has no member `real` +torch/_refs/__init__.py:1680:20: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:1681:33: error[unresolved-attribute] Module `torch` has no member `log` +torch/_refs/__init__.py:1681:43: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_refs/__init__.py:1681:61: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_refs/__init__.py:1683:24: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:1684:40: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/_refs/__init__.py:1684:52: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_refs/__init__.py:1687:20: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_refs/__init__.py:1690:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:1690:48: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/_refs/__init__.py:1690:60: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_refs/__init__.py:1705:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:1706:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:1707:16: error[unresolved-attribute] Module `torch` has no member `logical_and` +torch/_refs/__init__.py:1707:34: error[unresolved-attribute] Module `torch` has no member `isinf` +torch/_refs/__init__.py:1709:21: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/_refs/__init__.py:1709:33: error[unresolved-attribute] Module `torch` has no member `exp2` +torch/_refs/__init__.py:1710:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:1820:12: error[unresolved-attribute] Module `torch` has no member `sub` +torch/_refs/__init__.py:1903:11: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:1903:23: error[unresolved-attribute] Module `torch` has no member `eq` +torch/_refs/__init__.py:1903:42: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_refs/__init__.py:1903:55: error[unresolved-attribute] Module `torch` has no member `log` +torch/_refs/__init__.py:1904:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:1904:24: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_refs/__init__.py:1997:19: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_refs/__init__.py:2005:19: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_refs/__init__.py:2060:23: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/__init__.py:2074:42: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_refs/__init__.py:2074:64: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_refs/__init__.py:2104:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:2106:22: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:2107:29: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_refs/__init__.py:2120:33: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_refs/__init__.py:2133:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_refs/__init__.py:2134:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:2137:29: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_refs/__init__.py:2152:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:2155:29: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_refs/__init__.py:2158:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/_refs/__init__.py:2169:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:2172:29: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_refs/__init__.py:2188:29: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_refs/__init__.py:2211:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/_refs/__init__.py:2216:61: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_refs/__init__.py:2259:14: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_refs/__init__.py:2278:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:2355:45: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_refs/__init__.py:2359:20: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__name__` +torch/_refs/__init__.py:2373:14: error[unresolved-attribute] Module `torch` has no member `logical_not` +torch/_refs/__init__.py:2373:32: error[unresolved-attribute] Module `torch` has no member `any` +torch/_refs/__init__.py:2373:42: error[unresolved-attribute] Module `torch` has no member `logical_not` +torch/_refs/__init__.py:2375:19: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_refs/__init__.py:2376:34: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_refs/__init__.py:2388:37: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/__init__.py:2395:19: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_refs/__init__.py:2396:51: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_refs/__init__.py:2407:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:2414:21: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_refs/__init__.py:2450:12: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_refs/__init__.py:2466:21: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_refs/__init__.py:2587:13: error[unresolved-attribute] Module `torch` has no member `var` +torch/_refs/__init__.py:2588:13: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/_refs/__init__.py:2656:21: error[unresolved-attribute] Module `torch` has no member `var_mean` +torch/_refs/__init__.py:2657:13: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/_refs/__init__.py:2723:20: error[unresolved-attribute] Module `torch` has no member `outer` +torch/_refs/__init__.py:2723:58: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/_refs/__init__.py:2725:20: error[unresolved-attribute] Module `torch` has no member `logical_or` +torch/_refs/__init__.py:2727:17: error[unresolved-attribute] Module `torch` has no member `outer` +torch/_refs/__init__.py:2727:55: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/_refs/__init__.py:2740:28: error[unresolved-attribute] Module `torch` has no member `outer` +torch/_refs/__init__.py:2742:42: error[unresolved-attribute] Module `torch` has no member `outer` +torch/_refs/__init__.py:2750:37: error[unresolved-attribute] Module `collections` has no member `abc` +torch/_refs/__init__.py:2753:36: error[unresolved-attribute] Module `collections` has no member `abc` +torch/_refs/__init__.py:2774:37: error[unresolved-attribute] Module `collections` has no member `abc` +torch/_refs/__init__.py:2777:36: error[unresolved-attribute] Module `collections` has no member `abc` +torch/_refs/__init__.py:2789:37: error[unresolved-attribute] Module `collections` has no member `abc` +torch/_refs/__init__.py:2792:36: error[unresolved-attribute] Module `collections` has no member `abc` +torch/_refs/__init__.py:2825:12: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_refs/__init__.py:2854:21: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_refs/__init__.py:2981:16: error[unresolved-attribute] Module `torch` has no member `conj_physical` +torch/_refs/__init__.py:3044:14: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_refs/__init__.py:3052:38: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/__init__.py:3072:34: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_refs/__init__.py:3072:56: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_refs/__init__.py:3075:26: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_refs/__init__.py:3083:12: error[unresolved-attribute] Module `torch` has no member `clone` +torch/_refs/__init__.py:3097:17: error[unresolved-attribute] Module `torch.fx.experimental` has no member `_config` +torch/_refs/__init__.py:3289:24: error[unresolved-attribute] Module `torch` has no member `var_mean` +torch/_refs/__init__.py:3292:12: error[unresolved-attribute] Module `torch` has no member `rsqrt` +torch/_refs/__init__.py:3300:13: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/_refs/__init__.py:3329:22: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_refs/__init__.py:3334:24: error[unresolved-attribute] Module `torch` has no member `var_mean` +torch/_refs/__init__.py:3337:12: error[unresolved-attribute] Module `torch` has no member `rsqrt` +torch/_refs/__init__.py:3339:27: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_refs/__init__.py:3345:29: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_refs/__init__.py:3371:12: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_refs/__init__.py:3372:12: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_refs/__init__.py:3454:2: error[unresolved-attribute] Module `torch._subclasses` has no member `fake_impls` +torch/_refs/__init__.py:3503:19: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:3593:22: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_refs/__init__.py:3623:40: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/_refs/__init__.py:3700:19: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_refs/__init__.py:3815:16: error[unresolved-attribute] Module `torch` has no member `clone` +torch/_refs/__init__.py:3829:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_refs/__init__.py:3854:21: error[unresolved-attribute] Module `torch` has no member `clone` +torch/_refs/__init__.py:3981:20: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/_refs/__init__.py:3986:20: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/_refs/__init__.py:4029:29: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `(int & Iterable[object]) | tuple[int, ...]` +torch/_refs/__init__.py:4036:22: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `(int & Iterable[object]) | list[int] | tuple[int, ...]` +torch/_refs/__init__.py:4038:20: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `(int & Iterable[object]) | tuple[int, ...]` +torch/_refs/__init__.py:4046:20: error[unresolved-attribute] Module `torch` has no member `roll` +torch/_refs/__init__.py:4046:31: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/_refs/__init__.py:4057:28: error[unresolved-attribute] Module `torch` has no member `roll` +torch/_refs/__init__.py:4058:16: error[unresolved-attribute] Module `torch` has no member `roll` +torch/_refs/__init__.py:4067:11: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_refs/__init__.py:4068:32: error[unresolved-attribute] Module `torch` has no member `fmod` +torch/_refs/__init__.py:4094:16: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/_refs/__init__.py:4094:32: error[unresolved-attribute] Module `torch` has no member `flip` +torch/_refs/__init__.py:4096:16: error[unresolved-attribute] Module `torch` has no member `flip` +torch/_refs/__init__.py:4098:16: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/_refs/__init__.py:4098:32: error[unresolved-attribute] Module `torch` has no member `flip` +torch/_refs/__init__.py:4100:38: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_refs/__init__.py:4124:15: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_refs/__init__.py:4128:12: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_refs/__init__.py:4136:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:4192:13: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_refs/__init__.py:4192:44: error[unresolved-attribute] Module `torch` has no member `tensor_split` +torch/_refs/__init__.py:4198:34: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_refs/__init__.py:4250:17: error[unresolved-attribute] Module `torch` has no member `scalar_tensor` +torch/_refs/__init__.py:4264:53: error[unresolved-attribute] Module `torch` has no member `index_copy` +torch/_refs/__init__.py:4274:23: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_refs/__init__.py:4290:34: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_refs/__init__.py:4311:16: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_refs/__init__.py:4398:41: error[unresolved-attribute] Module `torch` has no member `long` +torch/_refs/__init__.py:4409:25: error[invalid-assignment] Object of type `int | (Tensor & float) | (Tensor & complex) | ... omitted 6 union elements` is not assignable to `int` +torch/_refs/__init__.py:4548:16: error[unresolved-attribute] Module `torch` has no member `diag_embed` +torch/_refs/__init__.py:4550:16: error[unresolved-attribute] Module `torch` has no member `diagonal_copy` +torch/_refs/__init__.py:4648:13: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_refs/__init__.py:4650:13: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_refs/__init__.py:4658:15: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_refs/__init__.py:4658:61: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_refs/__init__.py:4659:15: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_refs/__init__.py:4660:59: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_refs/__init__.py:4701:16: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_refs/__init__.py:4702:17: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_refs/__init__.py:4705:20: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_refs/__init__.py:4708:12: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_refs/__init__.py:4750:12: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/_refs/__init__.py:4781:12: error[unresolved-attribute] Module `torch` has no member `permute` +torch/_refs/__init__.py:4802:23: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_refs/__init__.py:4812:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:4822:10: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_refs/__init__.py:4826:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:4835:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:4846:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:4905:16: error[unresolved-attribute] Module `torch` has no member `gather` +torch/_refs/__init__.py:4917:16: error[unresolved-attribute] Module `torch` has no member `gather` +torch/_refs/__init__.py:4923:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:4924:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:4924:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_refs/__init__.py:4928:20: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_refs/__init__.py:4928:42: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_refs/__init__.py:4931:26: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_refs/__init__.py:4937:25: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_refs/__init__.py:4939:27: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/_refs/__init__.py:4940:59: error[invalid-argument-type] Argument to function `make_channels_last_3d_strides_for` is incorrect: Argument type `int` does not satisfy upper bound `_WorksWithInt` of type variable `_IntLikeT` +torch/_refs/__init__.py:4943:30: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_refs/__init__.py:4946:59: error[invalid-argument-type] Argument to function `make_channels_last_2d_strides_for` is incorrect: Argument type `int` does not satisfy upper bound `_WorksWithInt` of type variable `_IntLikeT` +torch/_refs/__init__.py:4948:12: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_refs/__init__.py:4963:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:4964:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:4964:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_refs/__init__.py:4984:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:4985:22: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:4993:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_refs/__init__.py:5009:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5010:22: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:5022:12: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_refs/__init__.py:5036:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5037:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:5037:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_refs/__init__.py:5045:17: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_refs/__init__.py:5047:12: error[unresolved-attribute] Module `torch` has no member `full` +torch/_refs/__init__.py:5049:27: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/__init__.py:5064:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5065:22: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:5074:12: error[unresolved-attribute] Module `torch` has no member `full` +torch/_refs/__init__.py:5076:40: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/__init__.py:5089:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5090:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:5090:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_refs/__init__.py:5098:17: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_refs/__init__.py:5100:12: error[unresolved-attribute] Module `torch` has no member `full` +torch/_refs/__init__.py:5102:26: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/__init__.py:5117:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5118:22: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:5127:12: error[unresolved-attribute] Module `torch` has no member `full` +torch/_refs/__init__.py:5129:39: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/__init__.py:5145:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5146:22: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:5154:12: error[unresolved-attribute] Module `torch` has no member `full` +torch/_refs/__init__.py:5168:29: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_refs/__init__.py:5178:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5180:22: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:5183:20: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_refs/__init__.py:5183:42: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_refs/__init__.py:5189:25: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_refs/__init__.py:5190:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_refs/__init__.py:5205:12: error[unresolved-attribute] Module `torch` has no member `empty_permuted` +torch/_refs/__init__.py:5223:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5224:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:5224:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_refs/__init__.py:5231:14: error[unresolved-attribute] Module `torch` has no member `device` +torch/_refs/__init__.py:5269:17: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_refs/__init__.py:5269:50: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_refs/__init__.py:5279:17: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_refs/__init__.py:5300:15: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_refs/__init__.py:5306:9: error[unresolved-attribute] Module `torch` has no member `long` +torch/_refs/__init__.py:5337:13: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:5338:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:5355:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5357:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:5357:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_refs/__init__.py:5366:48: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_refs/__init__.py:5372:44: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_refs/__init__.py:5376:13: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_refs/__init__.py:5386:26: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_refs/__init__.py:5387:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5418:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_refs/__init__.py:5430:11: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:5446:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5448:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:5448:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_refs/__init__.py:5453:17: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_refs/__init__.py:5476:13: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_refs/__init__.py:5481:18: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_refs/__init__.py:5634:14: error[unresolved-attribute] Module `torch` has no member `permute` +torch/_refs/__init__.py:5646:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5648:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:5648:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_refs/__init__.py:5657:13: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_refs/__init__.py:5658:14: error[unresolved-attribute] Module `torch` has no member `device` +torch/_refs/__init__.py:5669:43: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5670:28: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_refs/__init__.py:5670:41: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_refs/__init__.py:5670:55: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_refs/__init__.py:5671:19: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_refs/__init__.py:5673:12: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_refs/__init__.py:5682:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5683:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:5683:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_refs/__init__.py:5697:19: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_refs/__init__.py:5700:15: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_refs/__init__.py:5701:15: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_refs/__init__.py:5704:19: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_refs/__init__.py:5705:33: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_refs/__init__.py:5707:15: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_refs/__init__.py:5715:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:5727:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5728:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:5728:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_refs/__init__.py:5737:48: error[unresolved-attribute] Module `torch` has no member `device` +torch/_refs/__init__.py:5754:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5755:22: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:5759:20: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_refs/__init__.py:5759:42: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_refs/__init__.py:5761:9: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_refs/__init__.py:5778:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5779:22: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:5783:20: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_refs/__init__.py:5783:42: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_refs/__init__.py:5785:12: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/_refs/__init__.py:5787:40: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/__init__.py:5802:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5803:22: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:5807:20: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_refs/__init__.py:5807:42: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_refs/__init__.py:5809:12: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/_refs/__init__.py:5811:39: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/__init__.py:5825:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5827:22: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:5851:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5852:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:5852:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_refs/__init__.py:5859:48: error[unresolved-attribute] Module `torch` has no member `device` +torch/_refs/__init__.py:5873:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5883:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:5906:39: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/_refs/__init__.py:5959:9: error[unresolved-attribute] Module `torch` has no member `all` +torch/_refs/__init__.py:5959:19: error[unresolved-attribute] Module `torch` has no member `isclose` +torch/_refs/__init__.py:5990:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:6016:12: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_refs/__init__.py:6016:22: error[unresolved-attribute] Module `torch` has no member `diag` +torch/_refs/__init__.py:6042:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_refs/__init__.py:6043:11: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_refs/__init__.py:6059:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_refs/__init__.py:6060:11: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_refs/__init__.py:6095:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:6096:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:6102:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_refs/__init__.py:6102:32: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_refs/__init__.py:6115:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:6115:26: error[unresolved-attribute] Module `torch` has no member `long` +torch/_refs/__init__.py:6116:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:6116:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_refs/__init__.py:6126:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_refs/__init__.py:6130:46: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_refs/__init__.py:6132:17: error[unresolved-attribute] Module `torch` has no member `floor` +torch/_refs/__init__.py:6132:34: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/_refs/__init__.py:6133:17: error[unresolved-attribute] Module `torch` has no member `floor` +torch/_refs/__init__.py:6142:12: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_refs/__init__.py:6143:10: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_refs/__init__.py:6143:45: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_refs/__init__.py:6175:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:6175:26: error[unresolved-attribute] Module `torch` has no member `long` +torch/_refs/__init__.py:6176:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_refs/__init__.py:6176:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_refs/__init__.py:6186:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_refs/__init__.py:6195:46: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_refs/__init__.py:6197:17: error[unresolved-attribute] Module `torch` has no member `floor` +torch/_refs/__init__.py:6197:34: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/_refs/__init__.py:6198:17: error[unresolved-attribute] Module `torch` has no member `floor` +torch/_refs/__init__.py:6206:12: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_refs/__init__.py:6207:10: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_refs/__init__.py:6207:45: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_refs/__init__.py:6225:47: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_refs/__init__.py:6226:17: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_refs/__init__.py:6226:47: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_refs/__init__.py:6229:16: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_refs/__init__.py:6234:13: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_refs/__init__.py:6234:57: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_refs/__init__.py:6248:13: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:6251:23: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/_refs/__init__.py:6251:48: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/__init__.py:6254:19: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:6257:19: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:6266:21: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:6290:29: error[unresolved-attribute] Module `torch` has no member `tan` +torch/_refs/__init__.py:6290:50: error[unresolved-attribute] Module `torch` has no member `rand_like` +torch/_refs/__init__.py:6313:19: error[unresolved-attribute] Module `torch` has no member `rand_like` +torch/_refs/__init__.py:6319:15: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_refs/__init__.py:6321:19: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:6321:52: error[unresolved-attribute] Module `torch` has no member `log` +torch/_refs/__init__.py:6344:12: error[unresolved-attribute] Module `torch` has no member `floor` +torch/_refs/__init__.py:6344:24: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/_refs/__init__.py:6344:37: error[unresolved-attribute] Module `torch` has no member `rand_like` +torch/_refs/__init__.py:6365:12: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_refs/__init__.py:6365:28: error[unresolved-attribute] Module `torch` has no member `randn_like` +torch/_refs/__init__.py:6390:40: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_refs/__init__.py:6416:17: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_refs/__init__.py:6417:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/_refs/__init__.py:6503:24: error[unresolved-attribute] Module `torch` has no member `dot` +torch/_refs/__init__.py:6505:24: error[unresolved-attribute] Module `torch` has no member `vdot` +torch/_refs/__init__.py:6507:20: error[unresolved-attribute] Module `torch` has no member `vdot` +torch/_refs/__init__.py:6521:16: error[unresolved-attribute] Module `torch` has no member `dot` +torch/_refs/__init__.py:6525:20: error[unresolved-attribute] Module `torch` has no member `vdot` +torch/_refs/__init__.py:6527:20: error[unresolved-attribute] Module `torch` has no member `dot` +torch/_refs/__init__.py:6529:16: error[unresolved-attribute] Module `torch` has no member `dot` +torch/_refs/__init__.py:6543:12: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_refs/__init__.py:6544:11: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/_refs/__init__.py:6545:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/__init__.py:6695:16: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_refs/__init__.py:6697:16: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_refs/__init__.py:6699:16: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/__init__.py:6701:25: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_refs/__init__.py:6702:29: error[unresolved-attribute] Module `torch` has no member `float` +torch/_refs/__init__.py:6703:20: error[unresolved-attribute] Module `torch` has no member `cfloat` +torch/_refs/__init__.py:6704:31: error[unresolved-attribute] Module `torch` has no member `double` +torch/_refs/__init__.py:6705:20: error[unresolved-attribute] Module `torch` has no member `cdouble` +torch/_refs/__init__.py:6706:31: error[unresolved-attribute] Module `torch` has no member `half` +torch/_refs/__init__.py:6707:20: error[unresolved-attribute] Module `torch` has no member `chalf` +torch/_refs/__init__.py:6721:20: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_refs/__init__.py:6735:30: error[unresolved-attribute] Module `torch` has no member `cdouble` +torch/_refs/__init__.py:6746:17: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/__init__.py:6761:16: error[unresolved-attribute] Module `torch` has no member `scalar_tensor` +torch/_refs/__init__.py:6766:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_refs/__init__.py:6768:14: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_refs/__init__.py:6813:12: error[unresolved-attribute] Module `torch` has no member `device` +torch/_refs/__init__.py:6844:41: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_refs/_conversions.py:40:47: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/_conversions.py:42:46: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_refs/_conversions.py:42:68: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/_refs/_conversions.py:50:48: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_refs/_conversions.py:52:40: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_refs/_conversions.py:54:40: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_refs/_conversions.py:56:46: error[unresolved-attribute] Module `torch` has no member `cdouble` +torch/_refs/_conversions.py:58:44: error[unresolved-attribute] Module `torch` has no member `cfloat` +torch/_refs/_conversions.py:60:42: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/_refs/_conversions.py:62:40: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_refs/_conversions.py:64:44: error[unresolved-attribute] Module `torch` has no member `double` +torch/_refs/_conversions.py:66:42: error[unresolved-attribute] Module `torch` has no member `float` +torch/_refs/_conversions.py:68:40: error[unresolved-attribute] Module `torch` has no member `half` +torch/_refs/_conversions.py:70:38: error[unresolved-attribute] Module `torch` has no member `int` +torch/_refs/_conversions.py:72:40: error[unresolved-attribute] Module `torch` has no member `long` +torch/_refs/_conversions.py:74:42: error[unresolved-attribute] Module `torch` has no member `short` +torch/_refs/_conversions.py:82:23: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_refs/_conversions.py:82:38: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_refs/_conversions.py:82:53: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_refs/_conversions.py:116:14: error[unresolved-attribute] Module `torch` has no member `complex` +torch/_refs/_conversions.py:117:25: error[unresolved-attribute] Module `torch` has no member `cos` +torch/_refs/_conversions.py:118:25: error[unresolved-attribute] Module `torch` has no member `sin` +torch/_refs/fft.py:59:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/fft.py:59:56: error[unresolved-attribute] Module `torch` has no member `device` +torch/_refs/fft.py:60:6: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/fft.py:67:17: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_refs/fft.py:69:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_refs/fft.py:69:37: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_refs/fft.py:73:30: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_refs/fft.py:115:12: error[unresolved-attribute] Module `torch` has no member `constant_pad_nd` +torch/_refs/fft.py:139:17: error[unresolved-attribute] Module `torch` has no member `conj` +torch/_refs/fft.py:171:32: error[unresolved-attribute] Module `torch` has no member `conj` +torch/_refs/fft.py:291:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Iterable[Unknown]`, found `int | tuple[int, ...]` +torch/_refs/fft.py:291:39: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `int | tuple[int, ...]` +torch/_refs/fft.py:300:32: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `int | list[int] | tuple[int, ...]` +torch/_refs/fft.py:579:21: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Iterable[int]`, found `(int & Sequence[object]) | list[int] | tuple[int, ...]` +torch/_refs/fft.py:586:12: error[unresolved-attribute] Module `torch` has no member `roll` +torch/_refs/fft.py:593:12: error[unresolved-attribute] Module `torch` has no member `roll` +torch/_refs/linalg/__init__.py:39:39: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/linalg/__init__.py:39:62: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/linalg/__init__.py:84:11: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_refs/linalg/__init__.py:97:12: error[unresolved-attribute] Module `torch` has no member `diagonal` +torch/_refs/linalg/__init__.py:136:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/linalg/__init__.py:157:16: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_refs/linalg/__init__.py:157:26: error[unresolved-attribute] Module `torch` has no member `ne` +torch/_refs/linalg/__init__.py:165:30: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_refs/linalg/__init__.py:179:17: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_refs/linalg/__init__.py:189:17: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_refs/linalg/__init__.py:214:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/linalg/__init__.py:253:22: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_refs/linalg/__init__.py:256:42: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/_refs/linalg/__init__.py:270:27: error[unresolved-attribute] Module `torch` has no member `amax` +torch/_refs/linalg/__init__.py:270:56: error[unresolved-attribute] Module `torch` has no member `amin` +torch/_refs/linalg/__init__.py:280:42: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/_refs/linalg/__init__.py:302:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/linalg/__init__.py:318:34: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `int | list[int] | tuple[int, ...]` +torch/_refs/nn/functional/__init__.py:94:50: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_refs/nn/functional/__init__.py:116:16: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_refs/nn/functional/__init__.py:130:9: error[unresolved-attribute] Module `torch` has no member `logical_not` +torch/_refs/nn/functional/__init__.py:191:15: error[unresolved-attribute] Module `torch` has no member `expm1` +torch/_refs/nn/functional/__init__.py:193:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/nn/functional/__init__.py:213:16: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_refs/nn/functional/__init__.py:259:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/nn/functional/__init__.py:259:60: error[unresolved-attribute] Module `torch` has no member `expm1` +torch/_refs/nn/functional/__init__.py:277:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/nn/functional/__init__.py:277:24: error[unresolved-attribute] Module `torch` has no member `le` +torch/_refs/nn/functional/__init__.py:346:12: error[unresolved-attribute] Module `torch` has no member `native_group_norm` +torch/_refs/nn/functional/__init__.py:368:12: error[unresolved-attribute] Module `torch` has no member `native_layer_norm` +torch/_refs/nn/functional/__init__.py:392:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/nn/functional/__init__.py:392:24: error[unresolved-attribute] Module `torch` has no member `gt` +torch/_refs/nn/functional/__init__.py:392:43: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_refs/nn/functional/__init__.py:409:16: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/_refs/nn/functional/__init__.py:429:19: error[unresolved-attribute] Module `torch` has no member `expm1` +torch/_refs/nn/functional/__init__.py:431:20: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/nn/functional/__init__.py:440:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/nn/functional/__init__.py:455:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/nn/functional/__init__.py:497:15: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/_refs/nn/functional/__init__.py:497:27: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_refs/nn/functional/__init__.py:499:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/nn/functional/__init__.py:510:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/nn/functional/__init__.py:510:24: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_refs/nn/functional/__init__.py:528:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/nn/functional/__init__.py:528:24: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_refs/nn/functional/__init__.py:528:50: error[unresolved-attribute] Module `torch` has no member `sign` +torch/_refs/nn/functional/__init__.py:547:16: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_refs/nn/functional/__init__.py:549:16: error[unresolved-attribute] Module `torch` has no member `mean` +torch/_refs/nn/functional/__init__.py:598:12: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_refs/nn/functional/__init__.py:629:16: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_refs/nn/functional/__init__.py:631:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/nn/functional/__init__.py:641:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/nn/functional/__init__.py:666:12: error[unresolved-attribute] Module `torch` has no member `clamp_min` +torch/_refs/nn/functional/__init__.py:687:12: error[unresolved-attribute] Module `torch` has no member `pow` +torch/_refs/nn/functional/__init__.py:701:20: error[unresolved-attribute] Module `torch` has no member `clamp_min` +torch/_refs/nn/functional/__init__.py:702:21: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/nn/functional/__init__.py:703:19: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/nn/functional/__init__.py:727:19: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/_refs/nn/functional/__init__.py:728:27: error[unresolved-attribute] Module `torch` has no member `eq` +torch/_refs/nn/functional/__init__.py:746:27: error[unresolved-attribute] Module `torch` has no member `scalar_tensor` +torch/_refs/nn/functional/__init__.py:748:9: error[unresolved-attribute] Module `torch` has no member `scalar_tensor` +torch/_refs/nn/functional/__init__.py:752:22: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/nn/functional/__init__.py:765:23: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_refs/nn/functional/__init__.py:772:19: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_refs/nn/functional/__init__.py:776:12: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_refs/nn/functional/__init__.py:781:16: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_refs/nn/functional/__init__.py:784:16: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_refs/nn/functional/__init__.py:784:34: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_refs/nn/functional/__init__.py:824:20: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_refs/nn/functional/__init__.py:826:20: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_refs/nn/functional/__init__.py:828:20: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/_refs/nn/functional/__init__.py:856:13: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_refs/nn/functional/__init__.py:857:14: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_refs/nn/functional/__init__.py:863:16: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_refs/nn/functional/__init__.py:893:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/nn/functional/__init__.py:911:16: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/_refs/nn/functional/__init__.py:934:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/nn/functional/__init__.py:966:40: error[unresolved-attribute] Module `torch` has no member `pairwise_distance` +torch/_refs/nn/functional/__init__.py:1002:29: error[unresolved-attribute] Module `torch` has no member `pairwise_distance` +torch/_refs/nn/functional/__init__.py:1013:20: error[unresolved-attribute] Module `torch` has no member `minimum` +torch/_refs/nn/functional/__init__.py:1014:12: error[unresolved-attribute] Module `torch` has no member `clamp_min` +torch/_refs/nn/functional/__init__.py:1044:28: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_refs/nn/functional/__init__.py:1078:31: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/_refs/nn/functional/__init__.py:1081:31: error[unresolved-attribute] Module `torch` has no member `erf` +torch/_refs/nn/functional/__init__.py:1111:16: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_refs/nn/functional/__init__.py:1113:33: error[unresolved-attribute] Module `torch` has no member `log` +torch/_refs/nn/functional/__init__.py:1117:22: error[unresolved-attribute] Module `torch` has no member `log` +torch/_refs/nn/functional/__init__.py:1117:57: error[unresolved-attribute] Module `torch` has no member `log` +torch/_refs/nn/functional/__init__.py:1163:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/nn/functional/__init__.py:1194:12: error[unresolved-attribute] Module `torch` has no member `tensor_split` +torch/_refs/nn/functional/__init__.py:1196:16: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/_refs/nn/functional/__init__.py:1223:15: error[unresolved-attribute] Module `torch` has no member `mm` +torch/_refs/nn/functional/__init__.py:1224:20: error[unresolved-attribute] Module `torch` has no member `diag` +torch/_refs/nn/functional/__init__.py:1225:13: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/_refs/nn/functional/__init__.py:1225:24: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_refs/nn/functional/__init__.py:1228:9: error[unresolved-attribute] Module `torch` has no member `triu_indices` +torch/_refs/special/__init__.py:70:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/special/__init__.py:71:9: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_refs/special/__init__.py:73:9: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/special/__init__.py:73:33: error[unresolved-attribute] Module `torch` has no member `log` +torch/_refs/special/__init__.py:73:47: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/special/__init__.py:88:21: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/_refs/special/__init__.py:122:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/special/__init__.py:124:9: error[unresolved-attribute] Module `torch` has no member `log` +torch/_refs/special/__init__.py:125:9: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/_refs/special/__init__.py:125:22: error[unresolved-attribute] Module `torch` has no member `erfc` +torch/_refs/special/__init__.py:140:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/special/__init__.py:140:39: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/special/__init__.py:141:12: error[unresolved-attribute] Module `torch` has no member `log` +torch/_refs/special/__init__.py:141:22: error[unresolved-attribute] Module `torch` has no member `true_divide` +torch/_refs/special/__init__.py:141:46: error[unresolved-attribute] Module `torch` has no member `sub` +torch/_refs/special/__init__.py:167:11: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/special/__init__.py:167:23: error[unresolved-attribute] Module `torch` has no member `eq` +torch/_refs/special/__init__.py:167:42: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_refs/special/__init__.py:167:55: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/_refs/special/__init__.py:168:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/_refs/special/__init__.py:168:24: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_refs/special/__init__.py:179:15: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_refs/special/__init__.py:180:12: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_refs/special/__init__.py:180:22: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/_refs/special/__init__.py:193:17: error[unresolved-attribute] Module `torch` has no member `erf` +torch/_refs/special/__init__.py:211:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_refs/special/__init__.py:221:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_size_docs.py:4:22: error[unresolved-import] Module `torch._C` has no member `_add_docstr` +torch/_size_docs.py:8:24: error[unresolved-attribute] Module `torch._C` has no member `Size` +torch/_sources.py:8:22: error[unresolved-import] Module `torch._C` has no member `ErrorReport` +torch/_storage_docs.py:5:22: error[unresolved-import] Module `torch._C` has no member `_add_docstr` +torch/_streambase.py:11:19: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_streambase.py:19:18: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_subclasses/_fake_tensor_utils.py:41:13: error[invalid-argument-type] Argument is incorrect: Expected `Node`, found `Unknown | None` +torch/_subclasses/complex_tensor/_core.py:116:18: error[unresolved-attribute] Module `torch` has no member `real` +torch/_subclasses/complex_tensor/_core.py:117:18: error[unresolved-attribute] Module `torch` has no member `imag` +torch/_subclasses/complex_tensor/_core.py:117:59: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_subclasses/complex_tensor/_core.py:121:16: error[unresolved-attribute] Module `torch` has no member `complex` +torch/_subclasses/complex_tensor/_ops/aten.py:65:49: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/complex_tensor/_ops/aten.py:199:14: error[unresolved-attribute] Module `torch` has no member `prod` +torch/_subclasses/complex_tensor/_ops/aten.py:199:25: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_subclasses/complex_tensor/_ops/aten.py:200:15: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_subclasses/complex_tensor/_ops/aten.py:200:25: error[unresolved-attribute] Module `torch` has no member `angle` +torch/_subclasses/complex_tensor/_ops/aten.py:201:18: error[unresolved-attribute] Module `torch` has no member `cos` +torch/_subclasses/complex_tensor/_ops/aten.py:202:18: error[unresolved-attribute] Module `torch` has no member `sin` +torch/_subclasses/complex_tensor/_ops/aten.py:217:14: error[unresolved-attribute] Module `torch` has no member `cumprod` +torch/_subclasses/complex_tensor/_ops/aten.py:217:28: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_subclasses/complex_tensor/_ops/aten.py:218:15: error[unresolved-attribute] Module `torch` has no member `cumsum` +torch/_subclasses/complex_tensor/_ops/aten.py:218:28: error[unresolved-attribute] Module `torch` has no member `angle` +torch/_subclasses/complex_tensor/_ops/aten.py:219:18: error[unresolved-attribute] Module `torch` has no member `cos` +torch/_subclasses/complex_tensor/_ops/aten.py:220:18: error[unresolved-attribute] Module `torch` has no member `sin` +torch/_subclasses/complex_tensor/_ops/aten.py:230:14: error[unresolved-attribute] Module `torch` has no member `hypot` +torch/_subclasses/complex_tensor/_ops/aten.py:237:12: error[unresolved-attribute] Module `torch` has no member `atan2` +torch/_subclasses/complex_tensor/_ops/aten.py:243:15: error[unresolved-attribute] Module `torch` has no member `acosh` +torch/_subclasses/complex_tensor/_ops/aten.py:246:19: error[unresolved-attribute] Module `torch` has no member `signbit` +torch/_subclasses/complex_tensor/_ops/aten.py:247:26: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_subclasses/complex_tensor/_ops/aten.py:247:59: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_subclasses/complex_tensor/_ops/aten.py:253:16: error[unresolved-attribute] Module `torch` has no member `asinh` +torch/_subclasses/complex_tensor/_ops/aten.py:262:15: error[unresolved-attribute] Module `torch` has no member `atanh` +torch/_subclasses/complex_tensor/_ops/aten.py:286:9: error[unresolved-attribute] Module `torch` has no member `log` +torch/_subclasses/complex_tensor/_ops/aten.py:286:33: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Tensor`, found `int` +torch/_subclasses/complex_tensor/_ops/aten.py:286:46: error[unresolved-attribute] Module `torch` has no member `log` +torch/_subclasses/complex_tensor/_ops/aten.py:286:70: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Tensor`, found `int` +torch/_subclasses/complex_tensor/_ops/aten.py:304:9: error[unresolved-attribute] Module `torch` has no member `cosh` +torch/_subclasses/complex_tensor/_ops/aten.py:304:25: error[unresolved-attribute] Module `torch` has no member `cos` +torch/_subclasses/complex_tensor/_ops/aten.py:305:9: error[unresolved-attribute] Module `torch` has no member `sinh` +torch/_subclasses/complex_tensor/_ops/aten.py:305:25: error[unresolved-attribute] Module `torch` has no member `sin` +torch/_subclasses/complex_tensor/_ops/aten.py:312:15: error[unresolved-attribute] Module `torch` has no member `sinh` +torch/_subclasses/complex_tensor/_ops/aten.py:322:9: error[unresolved-attribute] Module `torch` has no member `sinh` +torch/_subclasses/complex_tensor/_ops/aten.py:322:25: error[unresolved-attribute] Module `torch` has no member `cos` +torch/_subclasses/complex_tensor/_ops/aten.py:323:9: error[unresolved-attribute] Module `torch` has no member `cosh` +torch/_subclasses/complex_tensor/_ops/aten.py:323:25: error[unresolved-attribute] Module `torch` has no member `sin` +torch/_subclasses/complex_tensor/_ops/aten.py:330:15: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/_subclasses/complex_tensor/_ops/aten.py:343:10: error[unresolved-attribute] Module `torch` has no member `cosh` +torch/_subclasses/complex_tensor/_ops/aten.py:343:28: error[unresolved-attribute] Module `torch` has no member `cos` +torch/_subclasses/complex_tensor/_ops/aten.py:344:13: error[unresolved-attribute] Module `torch` has no member `sinh` +torch/_subclasses/complex_tensor/_ops/aten.py:347:14: error[unresolved-attribute] Module `torch` has no member `sin` +torch/_subclasses/complex_tensor/_ops/aten.py:356:10: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_subclasses/complex_tensor/_ops/aten.py:357:14: error[unresolved-attribute] Module `torch` has no member `cos` +torch/_subclasses/complex_tensor/_ops/aten.py:358:14: error[unresolved-attribute] Module `torch` has no member `sin` +torch/_subclasses/complex_tensor/_ops/aten.py:367:10: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_subclasses/complex_tensor/_ops/aten.py:368:14: error[unresolved-attribute] Module `torch` has no member `cos` +torch/_subclasses/complex_tensor/_ops/aten.py:369:14: error[unresolved-attribute] Module `torch` has no member `sin` +torch/_subclasses/complex_tensor/_ops/aten.py:376:10: error[unresolved-attribute] Module `torch` has no member `log` +torch/_subclasses/complex_tensor/_ops/aten.py:376:20: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_subclasses/complex_tensor/_ops/aten.py:377:10: error[unresolved-attribute] Module `torch` has no member `angle` +torch/_subclasses/complex_tensor/_ops/aten.py:391:12: error[unresolved-attribute] Module `torch` has no member `any` +torch/_subclasses/complex_tensor/_ops/aten.py:391:44: error[unresolved-attribute] Module `torch` has no member `any` +torch/_subclasses/complex_tensor/_ops/aten.py:397:12: error[unresolved-attribute] Module `torch` has no member `any` +torch/_subclasses/complex_tensor/_ops/aten.py:397:44: error[unresolved-attribute] Module `torch` has no member `any` +torch/_subclasses/complex_tensor/_ops/aten.py:404:12: error[unresolved-attribute] Module `torch` has no member `eq` +torch/_subclasses/complex_tensor/_ops/aten.py:404:50: error[unresolved-attribute] Module `torch` has no member `eq` +torch/_subclasses/complex_tensor/_ops/aten.py:411:12: error[unresolved-attribute] Module `torch` has no member `ne` +torch/_subclasses/complex_tensor/_ops/aten.py:411:50: error[unresolved-attribute] Module `torch` has no member `ne` +torch/_subclasses/complex_tensor/_ops/aten.py:417:12: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_subclasses/complex_tensor/_ops/aten.py:417:30: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_subclasses/complex_tensor/_ops/aten.py:423:12: error[unresolved-attribute] Module `torch` has no member `isinf` +torch/_subclasses/complex_tensor/_ops/aten.py:423:30: error[unresolved-attribute] Module `torch` has no member `isinf` +torch/_subclasses/complex_tensor/_ops/aten.py:429:12: error[unresolved-attribute] Module `torch` has no member `isfinite` +torch/_subclasses/complex_tensor/_ops/aten.py:429:33: error[unresolved-attribute] Module `torch` has no member `isfinite` +torch/_subclasses/complex_tensor/_ops/aten.py:440:16: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_subclasses/complex_tensor/_ops/aten.py:441:17: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_subclasses/complex_tensor/_ops/aten.py:449:19: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_subclasses/complex_tensor/_ops/aten.py:450:19: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_subclasses/complex_tensor/_ops/aten.py:451:19: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_subclasses/complex_tensor/_ops/aten.py:452:19: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_subclasses/complex_tensor/_ops/aten.py:510:13: error[unresolved-attribute] Module `torch` has no member `masked_scatter` +torch/_subclasses/complex_tensor/_ops/aten.py:511:13: error[unresolved-attribute] Module `torch` has no member `masked_scatter` +torch/_subclasses/complex_tensor/_ops/aten.py:521:13: error[unresolved-attribute] Module `torch` has no member `where` +torch/_subclasses/complex_tensor/_ops/aten.py:522:13: error[unresolved-attribute] Module `torch` has no member `where` +torch/_subclasses/complex_tensor/_ops/aten.py:532:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_subclasses/complex_tensor/_ops/aten.py:538:16: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/_subclasses/complex_tensor/_ops/aten.py:544:13: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/_subclasses/complex_tensor/_ops/aten.py:545:13: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/_subclasses/complex_tensor/_ops/aten.py:552:44: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_subclasses/complex_tensor/_ops/aten.py:597:13: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_subclasses/complex_tensor/_ops/aten.py:598:13: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_subclasses/complex_tensor/_ops/aten.py:607:16: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_subclasses/complex_tensor/_ops/aten.py:620:21: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/_subclasses/complex_tensor/_ops/aten.py:620:32: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_subclasses/complex_tensor/_ops/aten.py:621:29: error[unresolved-attribute] Module `torch` has no member `angle` +torch/_subclasses/complex_tensor/_ops/aten.py:623:29: error[unresolved-attribute] Module `torch` has no member `cos` +torch/_subclasses/complex_tensor/_ops/aten.py:624:29: error[unresolved-attribute] Module `torch` has no member `sin` +torch/_subclasses/complex_tensor/_ops/aten.py:634:22: error[unresolved-attribute] Module `torch` has no member `rsqrt` +torch/_subclasses/complex_tensor/_ops/aten.py:634:34: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_subclasses/complex_tensor/_ops/aten.py:635:34: error[unresolved-attribute] Module `torch` has no member `angle` +torch/_subclasses/complex_tensor/_ops/aten.py:637:30: error[unresolved-attribute] Module `torch` has no member `cos` +torch/_subclasses/complex_tensor/_ops/aten.py:638:30: error[unresolved-attribute] Module `torch` has no member `sin` +torch/_subclasses/complex_tensor/_ops/aten.py:648:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_subclasses/complex_tensor/_ops/aten.py:652:34: error[unresolved-attribute] Module `torch` has no member `mm` +torch/_subclasses/complex_tensor/_ops/aten.py:686:12: error[unresolved-attribute] Module `torch` has no member `logical_not` +torch/_subclasses/complex_tensor/_ops/aten.py:692:12: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_subclasses/complex_tensor/_ops/aten.py:697:37: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_subclasses/complex_tensor/_ops/aten.py:727:12: error[unresolved-attribute] Module `torch` has no member `all` +torch/_subclasses/complex_tensor/_ops/aten.py:728:9: error[unresolved-attribute] Module `torch` has no member `isclose` +torch/_subclasses/complex_tensor/_ops/aten.py:735:9: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_subclasses/complex_tensor/_ops/aten.py:736:9: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_subclasses/complex_tensor/_ops/aten.py:752:30: error[unresolved-attribute] Module `torch` has no member `_neg_view` +torch/_subclasses/complex_tensor/_ops/aten.py:835:12: error[unresolved-attribute] Module `torch` has no member `var` +torch/_subclasses/complex_tensor/_ops/aten.py:835:50: error[unresolved-attribute] Module `torch` has no member `var` +torch/_subclasses/complex_tensor/_ops/aten.py:845:14: error[unresolved-attribute] Module `torch` has no member `scatter_add` +torch/_subclasses/complex_tensor/_ops/aten.py:846:14: error[unresolved-attribute] Module `torch` has no member `scatter_add` +torch/_subclasses/complex_tensor/_ops/aten.py:890:12: error[unresolved-attribute] Module `torch` has no member `diagonal_scatter` +torch/_subclasses/complex_tensor/_ops/aten.py:893:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_subclasses/complex_tensor/_ops/aten.py:893:43: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_subclasses/complex_tensor/_ops/aten.py:894:27: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_subclasses/complex_tensor/_ops/common.py:25:5: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_subclasses/complex_tensor/_ops/common.py:25:23: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_subclasses/complex_tensor/_ops/common.py:26:5: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_subclasses/complex_tensor/_ops/common.py:26:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_subclasses/complex_tensor/_ops/common.py:27:5: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/_subclasses/complex_tensor/_ops/common.py:27:22: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_subclasses/complex_tensor/_ops/common.py:34:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_subclasses/complex_tensor/_ops/common.py:34:20: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_subclasses/complex_tensor/_ops/common.py:35:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_subclasses/complex_tensor/_ops/common.py:35:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_subclasses/complex_tensor/_ops/common.py:36:5: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/_subclasses/complex_tensor/_ops/common.py:36:22: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_subclasses/complex_tensor/_ops/common.py:61:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_subclasses/complex_tensor/_ops/common.py:67:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_subclasses/complex_tensor/_ops/common.py:72:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_subclasses/complex_tensor/_ops/common.py:81:22: error[unresolved-attribute] Module `torch` has no member `promote_types` +torch/_subclasses/complex_tensor/_ops/common.py:167:21: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_subclasses/complex_tensor/_ops/common.py:185:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_subclasses/complex_tensor/_ops/common.py:185:50: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_subclasses/complex_tensor/_ops/common.py:237:44: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_subclasses/complex_tensor/_ops/prims.py:18:56: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_subclasses/fake_impls.py:42:10: error[unresolved-attribute] Module `torch.utils` has no member `_pytree` +torch/_subclasses/fake_impls.py:129:19: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/_subclasses/fake_impls.py:143:64: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/_subclasses/fake_impls.py:156:34: error[invalid-argument-type] Argument to function `register_op_impl` is incorrect: Expected `((OpOverload[Unknown, Any], /) -> bool) | OpOverload[Unknown, Any]`, found `object` +torch/_subclasses/fake_impls.py:184:19: error[invalid-argument-type] Argument to function `register_op_impl` is incorrect: Expected `((OpOverload[Unknown, Any], /) -> bool) | OpOverload[Unknown, Any]`, found `list[Unknown]` +torch/_subclasses/fake_impls.py:192:13: error[invalid-argument-type] Argument is incorrect: Expected `OpOverload[Unknown, Any]`, found `Literal["torch.compile doesn't support named tensors"]` +torch/_subclasses/fake_impls.py:201:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_impls.py:205:28: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_impls.py:239:28: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_impls.py:272:79: error[invalid-argument-type] Argument to function `run_fallback_kernel` is incorrect: Expected `RuntimeError`, found `None` +torch/_subclasses/fake_impls.py:293:18: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_subclasses/fake_impls.py:361:68: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_impls.py:602:9: error[unresolved-attribute] Module `torch.fx.experimental` has no member `_config` +torch/_subclasses/fake_impls.py:616:38: error[too-many-positional-arguments] Too many positional arguments to function `infer_size`: expected 2, got 3 +torch/_subclasses/fake_impls.py:619:41: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_subclasses/fake_impls.py:622:52: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_subclasses/fake_impls.py:629:8: error[unresolved-attribute] Module `torch.fx.experimental` has no member `_config` +torch/_subclasses/fake_impls.py:644:41: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_subclasses/fake_impls.py:745:68: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_subclasses/fake_impls.py:940:32: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_subclasses/fake_impls.py:949:50: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_subclasses/fake_impls.py:949:62: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_subclasses/fake_impls.py:977:12: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_computed_kernel_for_dispatch_key` +torch/_subclasses/fake_impls.py:1096:9: error[invalid-argument-type] Argument is incorrect: Expected `OpOverload[Unknown, Any]`, found `Literal["torch.compile does not support strided NestedTensor"]` +torch/_subclasses/fake_impls.py:1101:5: error[invalid-argument-type] Argument to function `register_op_impl` is incorrect: Expected `((OpOverload[Unknown, Any], /) -> bool) | OpOverload[Unknown, Any]`, found `list[Unknown]` +torch/_subclasses/fake_impls.py:1119:19: error[invalid-argument-type] Argument to function `register_op_impl` is incorrect: Expected `((OpOverload[Unknown, Any], /) -> bool) | OpOverload[Unknown, Any]`, found `list[Unknown | OpOverload[Unknown, Any]]` +torch/_subclasses/fake_impls.py:1140:32: error[unresolved-attribute] Module `torch._C` has no member `_select_conv_backend` +torch/_subclasses/fake_impls.py:1142:32: error[unresolved-attribute] Module `torch._C` has no member `_select_conv_backend` +torch/_subclasses/fake_impls.py:1166:23: error[unresolved-attribute] Module `torch._C` has no member `_conv_determine_backend_memory_format` +torch/_subclasses/fake_impls.py:1184:44: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_subclasses/fake_impls.py:1345:15: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_impls.py:1399:43: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_subclasses/fake_impls.py:1405:43: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_subclasses/fake_impls.py:1413:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_subclasses/fake_impls.py:1417:35: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/_subclasses/fake_impls.py:1426:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_subclasses/fake_impls.py:1430:35: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/_subclasses/fake_tensor.py:88:10: error[unresolved-attribute] Module `torch.utils` has no member `_pytree` +torch/_subclasses/fake_tensor.py:162:11: error[unresolved-attribute] Module `torch._C` has no member `_unset_dispatch_mode` +torch/_subclasses/fake_tensor.py:162:41: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_subclasses/fake_tensor.py:167:13: error[unresolved-attribute] Module `torch._C` has no member `_set_dispatch_mode` +torch/_subclasses/fake_tensor.py:211:36: error[unresolved-attribute] Module `torch` has no member `_is_functional_tensor` +torch/_subclasses/fake_tensor.py:212:25: error[unresolved-attribute] Module `torch._C` has no member `_functionalization_reapply_views_tls` +torch/_subclasses/fake_tensor.py:213:21: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_subclasses/fake_tensor.py:216:21: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_subclasses/fake_tensor.py:236:36: error[unresolved-attribute] Module `torch` has no member `_is_functional_tensor` +torch/_subclasses/fake_tensor.py:237:25: error[unresolved-attribute] Module `torch._C` has no member `_functionalization_reapply_views_tls` +torch/_subclasses/fake_tensor.py:238:21: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_subclasses/fake_tensor.py:241:21: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_subclasses/fake_tensor.py:247:42: error[unresolved-attribute] Module `torch._C` has no member `_SchemaInfo` +torch/_subclasses/fake_tensor.py:248:12: error[unresolved-attribute] Module `torch._C` has no member `_SchemaInfo` +torch/_subclasses/fake_tensor.py:260:22: error[unresolved-attribute] Module `torch` has no member `_decomp` +torch/_subclasses/fake_tensor.py:277:25: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_subclasses/fake_tensor.py:283:16: error[unresolved-attribute] Module `torch` has no member `_is_functional_tensor` +torch/_subclasses/fake_tensor.py:370:35: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_subclasses/fake_tensor.py:395:62: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:408:21: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Tensor`, found `object` +torch/_subclasses/fake_tensor.py:441:17: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_subclasses/fake_tensor.py:441:30: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_subclasses/fake_tensor.py:441:43: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_subclasses/fake_tensor.py:441:56: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_subclasses/fake_tensor.py:441:68: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_subclasses/fake_tensor.py:485:31: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_subclasses/fake_tensor.py:491:33: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_subclasses/fake_tensor.py:507:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:509:33: error[unresolved-attribute] Module `torch` has no member `DispatchKeySet` +torch/_subclasses/fake_tensor.py:527:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:531:13: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_subclasses/fake_tensor.py:533:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_subclasses/fake_tensor.py:543:19: error[unresolved-attribute] Module `torch._C` has no member `_meta_in_tls_dispatch_include` +torch/_subclasses/fake_tensor.py:546:10: error[unresolved-attribute] Module `torch._C` has no member `_DisableTorchDispatch` +torch/_subclasses/fake_tensor.py:550:14: error[unresolved-attribute] Module `torch._C` has no member `_PreserveDispatchKeyGuard` +torch/_subclasses/fake_tensor.py:551:13: error[unresolved-attribute] Module `torch._C` has no member `_set_meta_in_tls_dispatch_include` +torch/_subclasses/fake_tensor.py:561:12: error[unresolved-attribute] Module `torch._C` has no member `_should_allow_numbers_as_tensors` +torch/_subclasses/fake_tensor.py:655:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:677:29: error[unresolved-attribute] Module `torch` has no member `DispatchKeySet` +torch/_subclasses/fake_tensor.py:681:17: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_subclasses/fake_tensor.py:685:25: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:687:20: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:692:25: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:727:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:731:33: error[unresolved-attribute] Module `torch` has no member `DispatchKeySet` +torch/_subclasses/fake_tensor.py:741:13: error[unresolved-attribute] Module `torch._C` has no member `_set_throw_on_mutable_data_ptr` +torch/_subclasses/fake_tensor.py:743:13: error[unresolved-attribute] Module `torch._C` has no member `_set_warn_deprecated_on_mutable_data_ptr` +torch/_subclasses/fake_tensor.py:746:47: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:746:66: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:768:17: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/_subclasses/fake_tensor.py:773:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:777:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:818:17: error[unresolved-attribute] Module `torch` has no member `_export` +torch/_subclasses/fake_tensor.py:840:24: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:885:31: error[unresolved-attribute] Module `torch._C` has no member `_get_dispatch_mode` +torch/_subclasses/fake_tensor.py:886:13: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_subclasses/fake_tensor.py:904:16: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:924:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:1000:29: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:1037:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_subclasses/fake_tensor.py:1040:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:1041:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_subclasses/fake_tensor.py:1042:29: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_subclasses/fake_tensor.py:1065:48: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_subclasses/fake_tensor.py:1096:35: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_subclasses/fake_tensor.py:1334:26: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_subclasses/fake_tensor.py:1394:13: error[unresolved-attribute] Module `torch._C` has no member `_get_dispatch_mode` +torch/_subclasses/fake_tensor.py:1394:41: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_subclasses/fake_tensor.py:1409:42: error[unresolved-attribute] Module `torch._C` has no member `_only_lift_cpu_tensors` +torch/_subclasses/fake_tensor.py:1410:13: error[unresolved-attribute] Module `torch._C` has no member `_set_only_lift_cpu_tensors` +torch/_subclasses/fake_tensor.py:1415:13: error[unresolved-attribute] Module `torch._C` has no member `_ensureCUDADeviceGuardSet` +torch/_subclasses/fake_tensor.py:1417:32: error[unresolved-attribute] Module `torch._C` has no member `_unset_dispatch_mode` +torch/_subclasses/fake_tensor.py:1425:13: error[unresolved-attribute] Module `torch._C` has no member `_set_dispatch_mode` +torch/_subclasses/fake_tensor.py:1446:17: error[unresolved-attribute] Module `torch._C` has no member `_set_dispatch_mode` +torch/_subclasses/fake_tensor.py:1448:17: error[unresolved-attribute] Module `torch._C` has no member `_set_only_lift_cpu_tensors` +torch/_subclasses/fake_tensor.py:1581:22: error[unresolved-attribute] Module `torch.fx.experimental` has no member `proxy_tensor` +torch/_subclasses/fake_tensor.py:1586:13: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_subclasses/fake_tensor.py:1589:13: error[unresolved-attribute] Module `torch._C` has no member `_get_default_device` +torch/_subclasses/fake_tensor.py:1592:13: error[unresolved-attribute] Module `torch` has no member `is_inference_mode_enabled` +torch/_subclasses/fake_tensor.py:1648:12: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_subclasses/fake_tensor.py:1651:12: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_subclasses/fake_tensor.py:1664:25: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_subclasses/fake_tensor.py:1665:25: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_subclasses/fake_tensor.py:1672:12: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_subclasses/fake_tensor.py:1690:29: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_subclasses/fake_tensor.py:1691:26: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_subclasses/fake_tensor.py:1875:25: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_key_set` +torch/_subclasses/fake_tensor.py:1876:19: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_key_set` +torch/_subclasses/fake_tensor.py:1964:17: error[invalid-argument-type] Argument is incorrect: Expected `tuple[_DispatchCacheEntryOutputInfo]`, found `tuple[_DispatchCacheEntryOutputInfo | Unknown, ...]` +torch/_subclasses/fake_tensor.py:2031:21: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_subclasses/fake_tensor.py:2041:13: error[unresolved-attribute] Module `torch._C` has no member `_set_conj` +torch/_subclasses/fake_tensor.py:2043:13: error[unresolved-attribute] Module `torch._C` has no member `_set_neg` +torch/_subclasses/fake_tensor.py:2469:17: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_subclasses/fake_tensor.py:2470:17: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_subclasses/fake_tensor.py:2478:17: error[unresolved-attribute] Object of type `object` has no attribute `constant` +torch/_subclasses/fake_tensor.py:2526:40: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/_subclasses/fake_tensor.py:2729:21: error[call-non-callable] Object of type `object` is not callable +torch/_subclasses/fake_tensor.py:2757:27: error[unresolved-attribute] Module `torch._library` has no member `simple_registry` +torch/_subclasses/fake_tensor.py:2762:23: error[unresolved-attribute] Module `torch._library` has no member `fake_impl` +torch/_subclasses/fake_tensor.py:2763:22: error[unresolved-attribute] Module `torch._library` has no member `fake_impl` +torch/_subclasses/fake_tensor.py:2883:46: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_subclasses/fake_tensor.py:2917:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:2975:15: error[unresolved-attribute] Module `torch._dynamo` has no member `source` +torch/_subclasses/fake_tensor.py:3008:12: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_subclasses/fake_tensor.py:3124:18: error[unresolved-attribute] Module `torch.fx.experimental` has no member `proxy_tensor` +torch/_subclasses/fake_tensor.py:3149:8: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_subclasses/fake_tensor.py:3160:23: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_subclasses/fake_tensor.py:3160:50: error[unresolved-attribute] Object of type `T@to_real_tensor` has no attribute `fake_device` +torch/_subclasses/fake_tensor.py:3161:20: error[unresolved-attribute] Object of type `T@to_real_tensor` has no attribute `is_sparse` +torch/_subclasses/fake_tensor.py:3162:37: error[unresolved-attribute] Object of type `T@to_real_tensor` has no attribute `is_coalesced` +torch/_subclasses/fake_tensor.py:3236:20: error[unresolved-attribute] Module `torch._C` has no member `TensorBase` +torch/_subclasses/fake_tensor.py:3253:18: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunctionSubclass` +torch/_subclasses/fake_tensor.py:3257:48: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:3266:16: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/fake_tensor.py:3371:9: error[unresolved-attribute] Module `torch._library` has no member `fake_impl` +torch/_subclasses/fake_tensor.py:3397:16: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_subclasses/fake_utils.py:28:12: error[unresolved-attribute] Module `torch._C` has no member `_has_storage` +torch/_subclasses/fake_utils.py:31:9: error[unresolved-attribute] Module `torch._C` has no member `_has_storage` +torch/_subclasses/fake_utils.py:44:16: error[unresolved-attribute] Module `torch._C` has no member `_has_storage` +torch/_subclasses/fake_utils.py:130:57: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_subclasses/fake_utils.py:157:22: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_subclasses/fake_utils.py:191:8: error[unresolved-attribute] Module `torch._C` has no member `_has_storage` +torch/_subclasses/fake_utils.py:197:5: error[unresolved-attribute] Module `torch` has no member `_prims` +torch/_subclasses/fake_utils.py:240:20: error[unresolved-attribute] Module `torch._subclasses` has no member `fake_impls` +torch/_subclasses/fake_utils.py:242:17: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_subclasses/fake_utils.py:243:17: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_subclasses/fake_utils.py:244:17: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_subclasses/functional_tensor.py:13:22: error[unresolved-import] Module `torch._C` has no member `_functionalization_reapply_views_tls` +torch/_subclasses/functional_tensor.py:66:17: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_subclasses/functional_tensor.py:75:28: error[unresolved-attribute] Module `torch._C` has no member `_additional_keys_to_prop_for_wrapper_tensors` +torch/_subclasses/functional_tensor.py:76:9: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_subclasses/functional_tensor.py:102:16: error[unresolved-attribute] Module `torch` has no member `_is_functional_tensor` +torch/_subclasses/functional_tensor.py:121:53: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_keys` +torch/_subclasses/functional_tensor.py:146:9: error[unresolved-attribute] Module `torch._C` has no member `_set_throw_on_mutable_data_ptr` +torch/_subclasses/functional_tensor.py:151:17: error[unresolved-attribute] Module `torch` has no member `is_inference_mode_enabled` +torch/_subclasses/functional_tensor.py:193:54: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/_subclasses/functional_tensor.py:194:29: error[unresolved-attribute] Module `torch` has no member `_from_functional_tensor` +torch/_subclasses/functional_tensor.py:194:59: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/_subclasses/functional_tensor.py:194:74: error[index-out-of-bounds] Index 1 is out of bounds for tuple `tuple[()]` with length 0 +torch/_subclasses/functional_tensor.py:195:50: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/_subclasses/functional_tensor.py:197:25: error[unresolved-attribute] Module `torch` has no member `_from_functional_tensor` +torch/_subclasses/functional_tensor.py:197:55: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/_subclasses/functional_tensor.py:216:20: error[unresolved-attribute] Module `torch` has no member `_is_functional_tensor` +torch/_subclasses/functional_tensor.py:221:24: error[unresolved-attribute] Module `torch` has no member `_to_functional_tensor` +torch/_subclasses/functional_tensor.py:228:46: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_subclasses/functional_tensor.py:239:16: error[unresolved-attribute] Module `torch` has no member `_from_functional_tensor` +torch/_subclasses/functional_tensor.py:242:16: error[unresolved-attribute] Module `torch` has no member `_is_functional_tensor_base` +torch/_subclasses/functional_tensor.py:245:9: error[unresolved-attribute] Module `torch` has no member `_functionalize_replace` +torch/_subclasses/functional_tensor.py:248:9: error[unresolved-attribute] Module `torch` has no member `_functionalize_commit_update` +torch/_subclasses/functional_tensor.py:251:9: error[unresolved-attribute] Module `torch` has no member `_functionalize_sync` +torch/_subclasses/functional_tensor.py:254:9: error[unresolved-attribute] Module `torch` has no member `_functionalize_mark_mutation_hidden_from_autograd` +torch/_subclasses/functional_tensor.py:265:31: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_subclasses/functional_tensor.py:282:46: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_subclasses/functional_tensor.py:283:46: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/functional_tensor.py:284:50: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_subclasses/functional_tensor.py:285:46: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_subclasses/functional_tensor.py:286:48: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_subclasses/functional_tensor.py:287:47: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_subclasses/functional_tensor.py:288:46: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_subclasses/functional_tensor.py:289:46: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_subclasses/functional_tensor.py:290:45: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_subclasses/functional_tensor.py:291:46: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_subclasses/functional_tensor.py:313:26: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_subclasses/functional_tensor.py:340:38: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_subclasses/functional_tensor.py:342:21: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_subclasses/functional_tensor.py:344:20: error[unresolved-attribute] Module `torch._C` has no member `_get_dispatch_mode` +torch/_subclasses/functional_tensor.py:345:17: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_subclasses/functional_tensor.py:429:17: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel` +torch/_subclasses/functional_tensor.py:441:48: error[unresolved-attribute] Module `torch` has no member `_is_functional_tensor` +torch/_subclasses/functional_tensor.py:456:19: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_subclasses/functional_tensor.py:457:26: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_subclasses/functional_tensor.py:475:24: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/_subclasses/functional_tensor.py:476:30: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_subclasses/functional_tensor.py:489:23: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_is_dispatch_key_included` +torch/_subclasses/functional_tensor.py:490:13: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_subclasses/functional_tensor.py:492:23: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_is_dispatch_key_excluded` +torch/_subclasses/functional_tensor.py:493:13: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_subclasses/functional_tensor.py:497:13: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_include_set` +torch/_subclasses/functional_tensor.py:498:15: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_subclasses/functional_tensor.py:498:39: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_subclasses/functional_tensor.py:501:13: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_exclude_set` +torch/_subclasses/functional_tensor.py:502:17: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_subclasses/functional_tensor.py:515:17: error[invalid-argument-type] Argument to bound method `unwrap_tensors` is incorrect: Expected `Tensor | tuple[Tensor, ...] | list[Tensor]`, found `(Unknown & ~None) | dict[Unknown, Unknown]` +torch/_subclasses/functional_tensor.py:525:18: error[unresolved-attribute] Module `torch._C` has no member `_ForceDispatchKeyGuard` +torch/_subclasses/functional_tensor.py:550:33: error[unresolved-attribute] Module `torch._C` has no member `_get_dispatch_mode` +torch/_subclasses/functional_tensor.py:551:29: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_subclasses/functional_tensor.py:557:37: error[unresolved-attribute] Module `torch` has no member `_from_functional_tensor` +torch/_subclasses/functional_tensor.py:568:29: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_subclasses/functional_tensor.py:580:21: error[unresolved-attribute] Module `torch` has no member `_disable_functionalization` +torch/_subclasses/functional_tensor.py:583:23: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_is_dispatch_key_included` +torch/_subclasses/functional_tensor.py:584:13: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_subclasses/functional_tensor.py:586:23: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_is_dispatch_key_excluded` +torch/_subclasses/functional_tensor.py:587:13: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_subclasses/functional_tensor.py:606:13: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/_subclasses/functional_tensor.py:609:18: error[unresolved-attribute] Module `torch.utils` has no member `_mode_utils` +torch/_subclasses/functional_tensor.py:624:32: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_subclasses/functional_tensor.py:646:28: error[unresolved-attribute] Module `torch` has no member `_is_functional_tensor` +torch/_subclasses/functional_tensor.py:649:16: error[unresolved-attribute] Module `torch` has no member `_from_functional_tensor` +torch/_subclasses/functional_tensor.py:652:25: error[unresolved-attribute] Module `torch._C` has no member `_ExcludeDispatchKeyGuard` +torch/_subclasses/functional_tensor.py:653:13: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_subclasses/functional_tensor.py:653:37: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_subclasses/functional_tensor.py:771:16: error[unresolved-attribute] Module `torch._C` has no member `_ExcludeDispatchKeyGuard` +torch/_subclasses/functional_tensor.py:772:13: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/_subclasses/functional_tensor.py:772:37: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_subclasses/functional_tensor.py:776:9: error[unresolved-attribute] Module `torch` has no member `_functionalize_replace` +torch/_subclasses/functional_tensor.py:779:9: error[unresolved-attribute] Module `torch` has no member `_functionalize_commit_update` +torch/_subclasses/functional_tensor.py:782:9: error[unresolved-attribute] Module `torch` has no member `_functionalize_sync` +torch/_subclasses/functional_tensor.py:785:9: error[unresolved-attribute] Module `torch` has no member `_functionalize_mark_mutation_hidden_from_autograd` +torch/_subclasses/functional_tensor.py:822:9: error[unresolved-attribute] Module `torch` has no member `_functionalize_replace` +torch/_subclasses/functional_tensor.py:825:9: error[unresolved-attribute] Module `torch` has no member `_functionalize_commit_update` +torch/_subclasses/functional_tensor.py:828:9: error[unresolved-attribute] Module `torch` has no member `_functionalize_sync` +torch/_subclasses/functional_tensor.py:831:9: error[unresolved-attribute] Module `torch` has no member `_functionalize_mark_mutation_hidden_from_autograd` +torch/_subclasses/functional_tensor.py:836:16: error[unresolved-attribute] Module `torch` has no member `_from_functional_tensor` +torch/_subclasses/meta_utils.py:85:16: error[invalid-return-type] Return type does not match returned value: expected `_TensorLikeT@safe_grad | None`, found `MetaTensorDesc[Unknown] | None | Unknown` +torch/_subclasses/meta_utils.py:91:12: error[invalid-return-type] Return type does not match returned value: expected `_TensorLikeT@_expect_safe_grad`, found `MetaTensorDesc[Unknown]` +torch/_subclasses/meta_utils.py:177:56: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/_subclasses/meta_utils.py:180:41: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_subclasses/meta_utils.py:182:9: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_subclasses/meta_utils.py:183:9: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/_subclasses/meta_utils.py:184:9: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_subclasses/meta_utils.py:185:9: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/_subclasses/meta_utils.py:292:25: error[unresolved-attribute] Module `torch` has no member `_is_functional_tensor` +torch/_subclasses/meta_utils.py:343:21: error[unresolved-attribute] Module `torch` has no member `_from_functional_tensor` +torch/_subclasses/meta_utils.py:347:33: error[unresolved-attribute] Module `torch._C` has no member `_functionalization_reapply_views_tls` +torch/_subclasses/meta_utils.py:355:33: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_subclasses/meta_utils.py:360:17: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_subclasses/meta_utils.py:433:45: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_subclasses/meta_utils.py:433:63: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_subclasses/meta_utils.py:438:45: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_subclasses/meta_utils.py:438:63: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_subclasses/meta_utils.py:443:45: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/_subclasses/meta_utils.py:443:63: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/_subclasses/meta_utils.py:448:45: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/_subclasses/meta_utils.py:448:63: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/_subclasses/meta_utils.py:462:17: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_subclasses/meta_utils.py:480:13: error[invalid-argument-type] Argument is incorrect: Expected `None`, found `None | type[Tensor]` +torch/_subclasses/meta_utils.py:582:68: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/meta_utils.py:587:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/meta_utils.py:607:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_subclasses/meta_utils.py:608:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/meta_utils.py:626:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_subclasses/meta_utils.py:626:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_subclasses/meta_utils.py:721:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/meta_utils.py:721:45: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_subclasses/meta_utils.py:721:58: error[unresolved-attribute] Module `torch` has no member `layout` +torch/_subclasses/meta_utils.py:836:25: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_subclasses/meta_utils.py:836:51: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_subclasses/meta_utils.py:858:32: error[unresolved-attribute] Module `torch` has no member `device` +torch/_subclasses/meta_utils.py:864:17: error[unresolved-attribute] Module `torch._C` has no member `_functions` +torch/_subclasses/meta_utils.py:902:20: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_local_exclude_set` +torch/_subclasses/meta_utils.py:903:13: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_subclasses/meta_utils.py:937:18: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_subclasses/meta_utils.py:939:17: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/_subclasses/meta_utils.py:976:24: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_subclasses/meta_utils.py:978:17: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/_subclasses/meta_utils.py:986:20: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_subclasses/meta_utils.py:1000:17: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/_subclasses/meta_utils.py:1002:30: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_subclasses/meta_utils.py:1107:21: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_subclasses/meta_utils.py:1108:33: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/_subclasses/meta_utils.py:1110:14: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/_subclasses/meta_utils.py:1119:17: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/_subclasses/meta_utils.py:1127:33: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/_subclasses/meta_utils.py:1132:26: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/_subclasses/meta_utils.py:1188:17: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/_subclasses/meta_utils.py:1273:25: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/_subclasses/meta_utils.py:1280:32: error[invalid-return-type] Return type does not match returned value: expected `Tensor`, found `None` +torch/_subclasses/meta_utils.py:1343:36: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/_subclasses/meta_utils.py:1373:37: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_subclasses/meta_utils.py:1373:55: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/_subclasses/meta_utils.py:1381:37: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_subclasses/meta_utils.py:1381:55: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_subclasses/meta_utils.py:1435:33: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_subclasses/meta_utils.py:1444:45: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_subclasses/meta_utils.py:1483:34: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_subclasses/meta_utils.py:1492:49: error[unresolved-attribute] Module `torch._C` has no member `_DisableFuncTorch` +torch/_subclasses/meta_utils.py:1499:38: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_subclasses/meta_utils.py:1503:41: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_subclasses/meta_utils.py:1535:41: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_subclasses/meta_utils.py:1569:25: error[unresolved-attribute] Module `torch` has no member `_to_functional_tensor` +torch/_subclasses/meta_utils.py:1598:25: error[unresolved-attribute] Module `torch._dynamo` has no member `source` +torch/_subclasses/meta_utils.py:1603:40: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_subclasses/meta_utils.py:1603:65: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_subclasses/meta_utils.py:1616:35: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_is_dispatch_key_excluded` +torch/_subclasses/meta_utils.py:1617:25: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_subclasses/meta_utils.py:1619:21: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_set_dispatch_key_excluded` +torch/_subclasses/meta_utils.py:1620:25: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_subclasses/meta_utils.py:1626:64: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/_subclasses/meta_utils.py:1629:33: error[unresolved-attribute] Module `torch` has no member `view_as_complex` +torch/_subclasses/meta_utils.py:1687:25: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/_subclasses/meta_utils.py:1689:25: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_set_dispatch_key_excluded` +torch/_subclasses/meta_utils.py:1690:29: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/_subclasses/meta_utils.py:1720:37: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_subclasses/meta_utils.py:1732:49: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_subclasses/meta_utils.py:1839:17: error[unresolved-attribute] Module `torch._C` has no member `_set_conj` +torch/_subclasses/meta_utils.py:1841:17: error[unresolved-attribute] Module `torch._C` has no member `_set_neg` +torch/_subclasses/meta_utils.py:1948:38: error[unresolved-attribute] Module `torch` has no member `_dispatch` +torch/_subclasses/meta_utils.py:1952:21: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/_subclasses/schema_check_mode.py:19:18: error[unresolved-attribute] Module `torch._C` has no member `_SchemaArgument` +torch/_subclasses/schema_check_mode.py:20:17: error[unresolved-attribute] Module `torch._C` has no member `_SchemaArgType` +torch/_subclasses/schema_check_mode.py:21:14: error[unresolved-attribute] Module `torch._C` has no member `_SchemaInfo` +torch/_subclasses/schema_check_mode.py:84:24: error[unresolved-attribute] Module `torch` has no member `equal` +torch/_subclasses/schema_check_mode.py:86:24: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/_subclasses/schema_check_mode.py:92:38: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_subclasses/schema_check_mode.py:93:37: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_subclasses/schema_check_mode.py:105:24: error[unresolved-attribute] Module `torch._C` has no member `_overlaps` +torch/_subclasses/schema_check_mode.py:135:34: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_subclasses/schema_check_mode.py:157:27: error[invalid-argument-type] Argument expression after ** must be a mapping type: Found `Unknown | None` +torch/_subclasses/schema_check_mode.py:209:80: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[Unknown]`, found `list[Unknown] | Unknown | None` +torch/_tensor.py:34:44: error[unresolved-attribute] Module `torch._C` has no member `TensorBase` +torch/_tensor.py:85:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/_tensor.py:86:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/_tensor.py:87:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/_tensor.py:88:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/_tensor.py:89:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/_tensor.py:90:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/_tensor.py:91:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_tensor.py:92:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/_tensor.py:93:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/_tensor.py:94:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/_tensor.py:95:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/_tensor.py:96:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/_tensor.py:97:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/_tensor.py:98:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_tensor.py:99:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_tensor.py:110:14: error[unresolved-attribute] Module `torch._C` has no member `TensorBase` +torch/_tensor.py:164:25: error[unresolved-attribute] Module `torch._C` has no member `_has_storage` +torch/_tensor.py:165:45: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/_tensor.py:184:31: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/_tensor.py:185:31: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/_tensor.py:187:42: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/_tensor.py:194:25: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/_tensor.py:195:25: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/_tensor.py:336:17: error[unresolved-attribute] Module `torch._C` has no member `_has_storage` +torch/_tensor.py:337:37: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/_tensor.py:370:23: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/_tensor.py:372:34: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/_tensor.py:374:21: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/_tensor.py:379:17: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/_tensor.py:380:17: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/_tensor.py:386:21: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/_tensor.py:412:31: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/_tensor.py:423:13: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_tensor.py:424:13: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/_tensor.py:425:13: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_tensor.py:426:13: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/_tensor.py:428:32: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_tensor.py:428:50: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_tensor.py:467:34: error[unresolved-attribute] Module `torch._subclasses` has no member `functional_tensor` +torch/_tensor.py:804:14: error[unresolved-attribute] Module `torch._C` has no member `_add_docstr` +torch/_tensor.py:805:9: error[unresolved-attribute] Module `torch._C` has no member `TensorBase` +torch/_tensor.py:822:15: error[unresolved-attribute] Module `torch._C` has no member `_add_docstr` +torch/_tensor.py:823:9: error[unresolved-attribute] Module `torch._C` has no member `TensorBase` +torch/_tensor.py:936:29: error[unresolved-attribute] Module `torch` has no member `_lu_with_info` +torch/_tensor.py:1065:20: error[unresolved-attribute] Module `torch._VF` has no member `split_with_sizes` +torch/_tensor.py:1115:16: error[unresolved-attribute] Module `torch._C` has no member `_VariableFunctions` +torch/_tensor.py:1122:20: error[unresolved-attribute] Module `torch._C` has no member `TensorBase` +torch/_tensor.py:1127:15: error[unresolved-attribute] Module `torch._C` has no member `TensorBase` +torch/_tensor.py:1131:13: error[unresolved-attribute] Module `torch._C` has no member `TensorBase` +torch/_tensor.py:1136:9: error[unresolved-attribute] Module `torch._C` has no member `TensorBase` +torch/_tensor.py:1141:16: error[unresolved-attribute] Module `torch` has no member `remainder` +torch/_tensor.py:1154:16: error[unresolved-attribute] Module `torch` has no member `pow` +torch/_tensor.py:1160:16: error[unresolved-attribute] Module `torch` has no member `floor_divide` +torch/_tensor.py:1164:16: error[unresolved-attribute] Module `torch` has no member `floor_divide` +torch/_tensor.py:1170:16: error[unresolved-attribute] Module `torch` has no member `bitwise_left_shift` +torch/_tensor.py:1176:16: error[unresolved-attribute] Module `torch` has no member `bitwise_right_shift` +torch/_tensor.py:1180:16: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_tensor.py:1182:15: error[unresolved-attribute] Module `torch._C` has no member `TensorBase` +torch/_tensor.py:1183:15: error[unresolved-attribute] Module `torch._C` has no member `TensorBase` +torch/_tensor.py:1184:15: error[unresolved-attribute] Module `torch._C` has no member `TensorBase` +torch/_tensor.py:1191:12: error[unresolved-attribute] Module `torch._C` has no member `_get_tracing_state` +torch/_tensor.py:1213:12: error[unresolved-attribute] Module `torch._C` has no member `_get_tracing_state` +torch/_tensor.py:1266:16: error[unresolved-attribute] Module `torch` has no member `from_numpy` +torch/_tensor.py:1532:52: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_tensor.py:1597:50: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/_tensor.py:1703:14: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunctionSubclass` +torch/_tensor.py:1710:26: error[unresolved-attribute] Module `torch._C` has no member `_disabled_torch_dispatch_impl` +torch/_tensor.py:1770:27: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_tensor.py:1819:20: error[unresolved-import] Cannot resolve imported module `torch_xla` +torch/_tensor.py:1820:20: error[unresolved-import] Cannot resolve imported module `torch_xla.utils.dlpack` +torch/_tensor.py:1835:20: error[unresolved-attribute] Module `torch._C` has no member `_to_dlpack` +torch/_tensor.py:1837:16: error[unresolved-attribute] Module `torch._C` has no member `_to_dlpack_versioned` +torch/_tensor.py:1861:20: error[unresolved-import] Cannot resolve imported module `torch_xla` +torch/_tensor_docs.py:5:22: error[unresolved-import] Module `torch._C` has no member `_add_docstr` +torch/_tensor_docs.py:10:24: error[unresolved-attribute] Module `torch._C` has no member `TensorBase` +torch/_tensor_str.py:119:9: error[unresolved-attribute] Module `torch` has no member `float` +torch/_tensor_str.py:125:14: error[unresolved-attribute] Module `torch` has no member `double` +torch/_tensor_str.py:152:48: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_tensor_str.py:154:35: error[unresolved-attribute] Module `torch` has no member `masked_select` +torch/_tensor_str.py:155:30: error[unresolved-attribute] Module `torch` has no member `isfinite` +torch/_tensor_str.py:177:29: error[unresolved-attribute] Module `torch` has no member `ceil` +torch/_tensor_str.py:271:26: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_tensor_str.py:355:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/_tensor_str.py:356:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/_tensor_str.py:357:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/_tensor_str.py:358:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/_tensor_str.py:401:20: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_tensor_str.py:411:16: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_tensor_str.py:413:16: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_tensor_str.py:417:8: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_tensor_str.py:445:29: error[unresolved-attribute] Module `torch._C` has no member `_get_default_device` +torch/_tensor_str.py:462:9: error[unresolved-attribute] Module `torch` has no member `cdouble` +torch/_tensor_str.py:462:26: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_tensor_str.py:462:55: error[unresolved-attribute] Module `torch` has no member `double` +torch/_tensor_str.py:462:73: error[unresolved-attribute] Module `torch` has no member `cfloat` +torch/_tensor_str.py:465:9: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_tensor_str.py:467:9: error[unresolved-attribute] Module `torch` has no member `int64` +torch/_tensor_str.py:468:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_tensor_str.py:506:9: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_tensor_str.py:507:9: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/_tensor_str.py:508:9: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_tensor_str.py:509:9: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/_tensor_str.py:521:17: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_tensor_str.py:522:17: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/_tensor_str.py:523:17: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_tensor_str.py:524:17: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/_tensor_str.py:526:32: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_tensor_str.py:526:50: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_tensor_str.py:579:31: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/_tensor_str.py:580:34: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/_tensor_str.py:585:31: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/_tensor_str.py:586:34: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/_tensor_str.py:587:34: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/_tensor_str.py:605:10: error[unresolved-attribute] Module `torch` has no member `_is_functional_tensor` +torch/_tensor_str.py:607:27: error[unresolved-attribute] Module `torch` has no member `_from_functional_tensor` +torch/_tensor_str.py:614:30: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_tensor_str.py:628:34: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_tensor_str.py:640:39: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_tensor_str.py:645:23: error[unresolved-attribute] Module `torch` has no member `strided` +torch/_tensor_str.py:695:13: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_tensor_str.py:698:8: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_tensor_str.py:703:13: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_tensor_str.py:707:8: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_tensor_str.py:708:16: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_tensor_str.py:713:8: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_tensor_str.py:715:8: error[unresolved-attribute] Module `torch._C` has no member `_functorch` +torch/_tensor_str.py:722:27: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/_tensor_str.py:723:17: error[unresolved-attribute] Module `torch._C` has no member `_DisableFuncTorch` +torch/_torch_docs.py:7:22: error[unresolved-import] Module `torch._C` has no member `_add_docstr` +torch/_torch_docs.py:220:5: error[unresolved-attribute] Module `torch` has no member `abs` +torch/_torch_docs.py:244:5: error[unresolved-attribute] Module `torch` has no member `absolute` +torch/_torch_docs.py:253:5: error[unresolved-attribute] Module `torch` has no member `acos` +torch/_torch_docs.py:280:5: error[unresolved-attribute] Module `torch` has no member `arccos` +torch/_torch_docs.py:289:5: error[unresolved-attribute] Module `torch` has no member `acosh` +torch/_torch_docs.py:320:5: error[unresolved-attribute] Module `torch` has no member `arccosh` +torch/_torch_docs.py:329:5: error[unresolved-attribute] Module `torch` has no member `index_add` +torch/_torch_docs.py:338:5: error[unresolved-attribute] Module `torch` has no member `index_copy` +torch/_torch_docs.py:347:5: error[unresolved-attribute] Module `torch` has no member `index_reduce` +torch/_torch_docs.py:356:5: error[unresolved-attribute] Module `torch` has no member `add` +torch/_torch_docs.py:404:5: error[unresolved-attribute] Module `torch` has no member `addbmm` +torch/_torch_docs.py:459:5: error[unresolved-attribute] Module `torch` has no member `addcdiv` +torch/_torch_docs.py:508:5: error[unresolved-attribute] Module `torch` has no member `addcmul` +torch/_torch_docs.py:548:5: error[unresolved-attribute] Module `torch` has no member `addmm` +torch/_torch_docs.py:608:5: error[unresolved-attribute] Module `torch` has no member `adjoint` +torch/_torch_docs.py:635:5: error[unresolved-attribute] Module `torch` has no member `sspaddmm` +torch/_torch_docs.py:658:5: error[unresolved-attribute] Module `torch` has no member `smm` +torch/_torch_docs.py:672:5: error[unresolved-attribute] Module `torch` has no member `addmv` +torch/_torch_docs.py:719:5: error[unresolved-attribute] Module `torch` has no member `addr` +torch/_torch_docs.py:766:5: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/_torch_docs.py:800:5: error[unresolved-attribute] Module `torch` has no member `all` +torch/_torch_docs.py:861:5: error[unresolved-attribute] Module `torch` has no member `any` +torch/_torch_docs.py:922:5: error[unresolved-attribute] Module `torch` has no member `angle` +torch/_torch_docs.py:951:5: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/_torch_docs.py:994:5: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/_torch_docs.py:1047:5: error[unresolved-attribute] Module `torch` has no member `asin` +torch/_torch_docs.py:1074:5: error[unresolved-attribute] Module `torch` has no member `arcsin` +torch/_torch_docs.py:1083:5: error[unresolved-attribute] Module `torch` has no member `asinh` +torch/_torch_docs.py:1110:5: error[unresolved-attribute] Module `torch` has no member `arcsinh` +torch/_torch_docs.py:1119:5: error[unresolved-attribute] Module `torch` has no member `atan` +torch/_torch_docs.py:1146:5: error[unresolved-attribute] Module `torch` has no member `arctan` +torch/_torch_docs.py:1155:5: error[unresolved-attribute] Module `torch` has no member `atan2` +torch/_torch_docs.py:1187:5: error[unresolved-attribute] Module `torch` has no member `arctan2` +torch/_torch_docs.py:1195:5: error[unresolved-attribute] Module `torch` has no member `atanh` +torch/_torch_docs.py:1227:5: error[unresolved-attribute] Module `torch` has no member `arctanh` +torch/_torch_docs.py:1236:5: error[unresolved-attribute] Module `torch` has no member `asarray` +torch/_torch_docs.py:1348:5: error[unresolved-attribute] Module `torch` has no member `baddbmm` +torch/_torch_docs.py:1404:5: error[unresolved-attribute] Module `torch` has no member `bernoulli` +torch/_torch_docs.py:1462:5: error[unresolved-attribute] Module `torch` has no member `bincount` +torch/_torch_docs.py:1506:5: error[unresolved-attribute] Module `torch` has no member `bitwise_not` +torch/_torch_docs.py:1527:5: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/_torch_docs.py:1573:5: error[unresolved-attribute] Module `torch` has no member `bitwise_and` +torch/_torch_docs.py:1597:5: error[unresolved-attribute] Module `torch` has no member `bitwise_or` +torch/_torch_docs.py:1621:5: error[unresolved-attribute] Module `torch` has no member `bitwise_xor` +torch/_torch_docs.py:1645:5: error[unresolved-attribute] Module `torch` has no member `bitwise_left_shift` +torch/_torch_docs.py:1674:5: error[unresolved-attribute] Module `torch` has no member `bitwise_right_shift` +torch/_torch_docs.py:1705:5: error[unresolved-attribute] Module `torch` has no member `broadcast_to` +torch/_torch_docs.py:1727:5: error[unresolved-attribute] Module `torch` has no member `stack` +torch/_torch_docs.py:1787:5: error[unresolved-attribute] Module `torch` has no member `hstack` +torch/_torch_docs.py:1818:5: error[unresolved-attribute] Module `torch` has no member `vstack` +torch/_torch_docs.py:1854:5: error[unresolved-attribute] Module `torch` has no member `dstack` +torch/_torch_docs.py:1888:5: error[unresolved-attribute] Module `torch` has no member `tensor_split` +torch/_torch_docs.py:1952:5: error[unresolved-attribute] Module `torch` has no member `chunk` +torch/_torch_docs.py:2005:5: error[unresolved-attribute] Module `torch` has no member `unsafe_chunk` +torch/_torch_docs.py:2022:5: error[unresolved-attribute] Module `torch` has no member `unsafe_split` +torch/_torch_docs.py:2039:5: error[unresolved-attribute] Module `torch` has no member `hsplit` +torch/_torch_docs.py:2092:5: error[unresolved-attribute] Module `torch` has no member `vsplit` +torch/_torch_docs.py:2134:5: error[unresolved-attribute] Module `torch` has no member `dsplit` +torch/_torch_docs.py:2185:5: error[unresolved-attribute] Module `torch` has no member `can_cast` +torch/_torch_docs.py:2206:5: error[unresolved-attribute] Module `torch` has no member `corrcoef` +torch/_torch_docs.py:2253:5: error[unresolved-attribute] Module `torch` has no member `cov` +torch/_torch_docs.py:2333:5: error[unresolved-attribute] Module `torch` has no member `cat` +torch/_torch_docs.py:2381:5: error[unresolved-attribute] Module `torch` has no member `concat` +torch/_torch_docs.py:2390:5: error[unresolved-attribute] Module `torch` has no member `concatenate` +torch/_torch_docs.py:2399:5: error[unresolved-attribute] Module `torch` has no member `ceil` +torch/_torch_docs.py:2430:5: error[unresolved-attribute] Module `torch` has no member `real` +torch/_torch_docs.py:2452:5: error[unresolved-attribute] Module `torch` has no member `imag` +torch/_torch_docs.py:2477:5: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/_torch_docs.py:2506:5: error[unresolved-attribute] Module `torch` has no member `view_as_complex` +torch/_torch_docs.py:2540:5: error[unresolved-attribute] Module `torch` has no member `reciprocal` +torch/_torch_docs.py:2572:5: error[unresolved-attribute] Module `torch` has no member `cholesky` +torch/_torch_docs.py:2654:5: error[unresolved-attribute] Module `torch` has no member `cholesky_solve` +torch/_torch_docs.py:2719:5: error[unresolved-attribute] Module `torch` has no member `cholesky_inverse` +torch/_torch_docs.py:2775:5: error[unresolved-attribute] Module `torch` has no member `clone` +torch/_torch_docs.py:2802:5: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/_torch_docs.py:2845:5: error[unresolved-attribute] Module `torch` has no member `clip` +torch/_torch_docs.py:2854:5: error[unresolved-attribute] Module `torch` has no member `column_stack` +torch/_torch_docs.py:2890:5: error[unresolved-attribute] Module `torch` has no member `complex` +torch/_torch_docs.py:2921:5: error[unresolved-attribute] Module `torch` has no member `polar` +torch/_torch_docs.py:2964:5: error[unresolved-attribute] Module `torch` has no member `conj_physical` +torch/_torch_docs.py:2996:5: error[unresolved-attribute] Module `torch` has no member `conj` +torch/_torch_docs.py:3026:5: error[unresolved-attribute] Module `torch` has no member `resolve_conj` +torch/_torch_docs.py:3051:5: error[unresolved-attribute] Module `torch` has no member `resolve_neg` +torch/_torch_docs.py:3077:5: error[unresolved-attribute] Module `torch` has no member `copysign` +torch/_torch_docs.py:3135:5: error[unresolved-attribute] Module `torch` has no member `cos` +torch/_torch_docs.py:3162:5: error[unresolved-attribute] Module `torch` has no member `cosh` +torch/_torch_docs.py:3195:5: error[unresolved-attribute] Module `torch` has no member `cross` +torch/_torch_docs.py:3254:5: error[unresolved-attribute] Module `torch` has no member `logcumsumexp` +torch/_torch_docs.py:3282:5: error[unresolved-attribute] Module `torch` has no member `cummax` +torch/_torch_docs.py:3314:5: error[unresolved-attribute] Module `torch` has no member `cummin` +torch/_torch_docs.py:3346:5: error[unresolved-attribute] Module `torch` has no member `cumprod` +torch/_torch_docs.py:3385:5: error[unresolved-attribute] Module `torch` has no member `cumsum` +torch/_torch_docs.py:3417:5: error[unresolved-attribute] Module `torch` has no member `count_nonzero` +torch/_torch_docs.py:3444:5: error[unresolved-attribute] Module `torch` has no member `dequantize` +torch/_torch_docs.py:3464:5: error[unresolved-attribute] Module `torch` has no member `diag` +torch/_torch_docs.py:3525:5: error[unresolved-attribute] Module `torch` has no member `diag_embed` +torch/_torch_docs.py:3589:5: error[unresolved-attribute] Module `torch` has no member `diagflat` +torch/_torch_docs.py:3637:5: error[unresolved-attribute] Module `torch` has no member `diagonal` +torch/_torch_docs.py:3702:5: error[unresolved-attribute] Module `torch` has no member `diagonal_scatter` +torch/_torch_docs.py:3756:5: error[unresolved-attribute] Module `torch` has no member `as_strided_scatter` +torch/_torch_docs.py:3799:5: error[unresolved-attribute] Module `torch` has no member `diff` +torch/_torch_docs.py:3839:5: error[unresolved-attribute] Module `torch` has no member `digamma` +torch/_torch_docs.py:3848:5: error[unresolved-attribute] Module `torch` has no member `dist` +torch/_torch_docs.py:3882:5: error[unresolved-attribute] Module `torch` has no member `div` +torch/_torch_docs.py:3950:5: error[unresolved-attribute] Module `torch` has no member `divide` +torch/_torch_docs.py:3959:5: error[unresolved-attribute] Module `torch` has no member `dot` +torch/_torch_docs.py:3989:5: error[unresolved-attribute] Module `torch` has no member `vdot` +torch/_torch_docs.py:4038:5: error[unresolved-attribute] Module `torch` has no member `eq` +torch/_torch_docs.py:4066:5: error[unresolved-attribute] Module `torch` has no member `equal` +torch/_torch_docs.py:4090:5: error[unresolved-attribute] Module `torch` has no member `erf` +torch/_torch_docs.py:4099:5: error[unresolved-attribute] Module `torch` has no member `erfc` +torch/_torch_docs.py:4108:5: error[unresolved-attribute] Module `torch` has no member `erfinv` +torch/_torch_docs.py:4117:5: error[unresolved-attribute] Module `torch` has no member `exp` +torch/_torch_docs.py:4142:5: error[unresolved-attribute] Module `torch` has no member `exp2` +torch/_torch_docs.py:4151:5: error[unresolved-attribute] Module `torch` has no member `expm1` +torch/_torch_docs.py:4160:5: error[unresolved-attribute] Module `torch` has no member `eye` +torch/_torch_docs.py:4190:5: error[unresolved-attribute] Module `torch` has no member `floor` +torch/_torch_docs.py:4221:5: error[unresolved-attribute] Module `torch` has no member `floor_divide` +torch/_torch_docs.py:4261:5: error[unresolved-attribute] Module `torch` has no member `fmod` +torch/_torch_docs.py:4312:5: error[unresolved-attribute] Module `torch` has no member `frac` +torch/_torch_docs.py:4329:5: error[unresolved-attribute] Module `torch` has no member `frexp` +torch/_torch_docs.py:4361:5: error[unresolved-attribute] Module `torch` has no member `from_numpy` +torch/_torch_docs.py:4392:5: error[unresolved-attribute] Module `torch` has no member `frombuffer` +torch/_torch_docs.py:4466:5: error[unresolved-attribute] Module `torch` has no member `from_file` +torch/_torch_docs.py:4506:5: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/_torch_docs.py:4542:5: error[unresolved-attribute] Module `torch` has no member `unflatten` +torch/_torch_docs.py:4575:5: error[unresolved-attribute] Module `torch` has no member `gather` +torch/_torch_docs.py:4614:5: error[unresolved-attribute] Module `torch` has no member `gcd` +torch/_torch_docs.py:4645:5: error[unresolved-attribute] Module `torch` has no member `ge` +torch/_torch_docs.py:4674:5: error[unresolved-attribute] Module `torch` has no member `greater_equal` +torch/_torch_docs.py:4683:5: error[unresolved-attribute] Module `torch` has no member `gradient` +torch/_torch_docs.py:4810:5: error[unresolved-attribute] Module `torch` has no member `geqrf` +torch/_torch_docs.py:4846:5: error[unresolved-attribute] Module `torch` has no member `inner` +torch/_torch_docs.py:4907:5: error[unresolved-attribute] Module `torch` has no member `outer` +torch/_torch_docs.py:4937:5: error[unresolved-attribute] Module `torch` has no member `ger` +torch/_torch_docs.py:4950:5: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/_torch_docs.py:4968:5: error[unresolved-attribute] Module `torch` has no member `get_num_threads` +torch/_torch_docs.py:4977:5: error[unresolved-attribute] Module `torch` has no member `get_num_interop_threads` +torch/_torch_docs.py:4987:5: error[unresolved-attribute] Module `torch` has no member `gt` +torch/_torch_docs.py:5016:5: error[unresolved-attribute] Module `torch` has no member `greater` +torch/_torch_docs.py:5025:5: error[unresolved-attribute] Module `torch` has no member `hash_tensor` +torch/_torch_docs.py:5079:5: error[unresolved-attribute] Module `torch` has no member `histc` +torch/_torch_docs.py:5111:5: error[unresolved-attribute] Module `torch` has no member `histogram` +torch/_torch_docs.py:5156:5: error[unresolved-attribute] Module `torch` has no member `histogramdd` +torch/_torch_docs.py:5248:1: error[unresolved-attribute] Module `torch` has no member `histogramdd` +torch/_torch_docs.py:5251:5: error[unresolved-attribute] Module `torch` has no member `hypot` +torch/_torch_docs.py:5280:5: error[unresolved-attribute] Module `torch` has no member `i0` +torch/_torch_docs.py:5289:5: error[unresolved-attribute] Module `torch` has no member `igamma` +torch/_torch_docs.py:5298:5: error[unresolved-attribute] Module `torch` has no member `igammac` +torch/_torch_docs.py:5307:5: error[unresolved-attribute] Module `torch` has no member `index_select` +torch/_torch_docs.py:5350:5: error[unresolved-attribute] Module `torch` has no member `inverse` +torch/_torch_docs.py:5359:5: error[unresolved-attribute] Module `torch` has no member `isin` +torch/_torch_docs.py:5391:5: error[unresolved-attribute] Module `torch` has no member `isinf` +torch/_torch_docs.py:5416:5: error[unresolved-attribute] Module `torch` has no member `isposinf` +torch/_torch_docs.py:5436:5: error[unresolved-attribute] Module `torch` has no member `isneginf` +torch/_torch_docs.py:5456:5: error[unresolved-attribute] Module `torch` has no member `isclose` +torch/_torch_docs.py:5491:5: error[unresolved-attribute] Module `torch` has no member `isfinite` +torch/_torch_docs.py:5514:5: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/_torch_docs.py:5536:5: error[unresolved-attribute] Module `torch` has no member `isreal` +torch/_torch_docs.py:5557:5: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/_torch_docs.py:5581:5: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/_torch_docs.py:5605:5: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/_torch_docs.py:5614:5: error[unresolved-attribute] Module `torch` has no member `is_inference_mode_enabled` +torch/_torch_docs.py:5623:5: error[unresolved-attribute] Module `torch` has no member `is_inference` +torch/_torch_docs.py:5642:5: error[unresolved-attribute] Module `torch` has no member `is_conj` +torch/_torch_docs.py:5654:5: error[unresolved-attribute] Module `torch` has no member `is_nonzero` +torch/_torch_docs.py:5690:5: error[unresolved-attribute] Module `torch` has no member `kron` +torch/_torch_docs.py:5750:5: error[unresolved-attribute] Module `torch` has no member `kthvalue` +torch/_torch_docs.py:5799:5: error[unresolved-attribute] Module `torch` has no member `lcm` +torch/_torch_docs.py:5830:5: error[unresolved-attribute] Module `torch` has no member `ldexp` +torch/_torch_docs.py:5864:5: error[unresolved-attribute] Module `torch` has no member `le` +torch/_torch_docs.py:5894:5: error[unresolved-attribute] Module `torch` has no member `less_equal` +torch/_torch_docs.py:5903:5: error[unresolved-attribute] Module `torch` has no member `lerp` +torch/_torch_docs.py:5942:5: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/_torch_docs.py:5967:5: error[unresolved-attribute] Module `torch` has no member `linspace` +torch/_torch_docs.py:6015:5: error[unresolved-attribute] Module `torch` has no member `log` +torch/_torch_docs.py:6044:5: error[unresolved-attribute] Module `torch` has no member `log10` +torch/_torch_docs.py:6076:5: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/_torch_docs.py:6106:5: error[unresolved-attribute] Module `torch` has no member `log2` +torch/_torch_docs.py:6138:5: error[unresolved-attribute] Module `torch` has no member `logaddexp` +torch/_torch_docs.py:6172:5: error[unresolved-attribute] Module `torch` has no member `logaddexp2` +torch/_torch_docs.py:6191:5: error[unresolved-attribute] Module `torch` has no member `xlogy` +torch/_torch_docs.py:6200:5: error[unresolved-attribute] Module `torch` has no member `logical_and` +torch/_torch_docs.py:6232:5: error[unresolved-attribute] Module `torch` has no member `logical_not` +torch/_torch_docs.py:6259:5: error[unresolved-attribute] Module `torch` has no member `logical_or` +torch/_torch_docs.py:6291:5: error[unresolved-attribute] Module `torch` has no member `logical_xor` +torch/_torch_docs.py:6323:5: error[unresolved-attribute] Module `torch` has no member `logspace` +torch/_torch_docs.py:6377:5: error[unresolved-attribute] Module `torch` has no member `logsumexp` +torch/_torch_docs.py:6411:5: error[unresolved-attribute] Module `torch` has no member `lt` +torch/_torch_docs.py:6440:5: error[unresolved-attribute] Module `torch` has no member `lu_unpack` +torch/_torch_docs.py:6490:5: error[unresolved-attribute] Module `torch` has no member `less` +torch/_torch_docs.py:6499:5: error[unresolved-attribute] Module `torch` has no member `lu_solve` +torch/_torch_docs.py:6544:5: error[unresolved-attribute] Module `torch` has no member `masked_select` +torch/_torch_docs.py:6582:5: error[unresolved-attribute] Module `torch` has no member `matrix_power` +torch/_torch_docs.py:6591:5: error[unresolved-attribute] Module `torch` has no member `matrix_exp` +torch/_torch_docs.py:6600:5: error[unresolved-attribute] Module `torch` has no member `max` +torch/_torch_docs.py:6685:5: error[unresolved-attribute] Module `torch` has no member `maximum` +torch/_torch_docs.py:6712:5: error[unresolved-attribute] Module `torch` has no member `fmax` +torch/_torch_docs.py:6744:5: error[unresolved-attribute] Module `torch` has no member `amax` +torch/_torch_docs.py:6787:5: error[unresolved-attribute] Module `torch` has no member `argmax` +torch/_torch_docs.py:6839:5: error[unresolved-attribute] Module `torch` has no member `argwhere` +torch/_torch_docs.py:6876:5: error[unresolved-attribute] Module `torch` has no member `mean` +torch/_torch_docs.py:6944:5: error[unresolved-attribute] Module `torch` has no member `nanmean` +torch/_torch_docs.py:6990:5: error[unresolved-attribute] Module `torch` has no member `median` +torch/_torch_docs.py:7065:5: error[unresolved-attribute] Module `torch` has no member `nanmedian` +torch/_torch_docs.py:7122:5: error[unresolved-attribute] Module `torch` has no member `quantile` +torch/_torch_docs.py:7194:5: error[unresolved-attribute] Module `torch` has no member `nanquantile` +torch/_torch_docs.py:7234:5: error[unresolved-attribute] Module `torch` has no member `min` +torch/_torch_docs.py:7309:5: error[unresolved-attribute] Module `torch` has no member `minimum` +torch/_torch_docs.py:7336:5: error[unresolved-attribute] Module `torch` has no member `fmin` +torch/_torch_docs.py:7368:5: error[unresolved-attribute] Module `torch` has no member `amin` +torch/_torch_docs.py:7411:5: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/_torch_docs.py:7475:5: error[unresolved-attribute] Module `torch` has no member `argmin` +torch/_torch_docs.py:7512:5: error[unresolved-attribute] Module `torch` has no member `mm` +torch/_torch_docs.py:7558:5: error[unresolved-attribute] Module `torch` has no member `hspmm` +torch/_torch_docs.py:7577:5: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/_torch_docs.py:7661:5: error[unresolved-attribute] Module `torch` has no member `mode` +torch/_torch_docs.py:7700:5: error[unresolved-attribute] Module `torch` has no member `mul` +torch/_torch_docs.py:7748:5: error[unresolved-attribute] Module `torch` has no member `multiply` +torch/_torch_docs.py:7757:5: error[unresolved-attribute] Module `torch` has no member `multinomial` +torch/_torch_docs.py:7812:5: error[unresolved-attribute] Module `torch` has no member `mv` +torch/_torch_docs.py:7841:5: error[unresolved-attribute] Module `torch` has no member `mvlgamma` +torch/_torch_docs.py:7850:5: error[unresolved-attribute] Module `torch` has no member `movedim` +torch/_torch_docs.py:7897:5: error[unresolved-attribute] Module `torch` has no member `moveaxis` +torch/_torch_docs.py:7937:5: error[unresolved-attribute] Module `torch` has no member `swapdims` +torch/_torch_docs.py:7970:5: error[unresolved-attribute] Module `torch` has no member `swapaxes` +torch/_torch_docs.py:8003:5: error[unresolved-attribute] Module `torch` has no member `narrow` +torch/_torch_docs.py:8037:5: error[unresolved-attribute] Module `torch` has no member `narrow_copy` +torch/_torch_docs.py:8084:5: error[unresolved-attribute] Module `torch` has no member `nan_to_num` +torch/_torch_docs.py:8121:5: error[unresolved-attribute] Module `torch` has no member `ne` +torch/_torch_docs.py:8150:5: error[unresolved-attribute] Module `torch` has no member `not_equal` +torch/_torch_docs.py:8159:5: error[unresolved-attribute] Module `torch` has no member `neg` +torch/_torch_docs.py:8186:5: error[unresolved-attribute] Module `torch` has no member `negative` +torch/_torch_docs.py:8195:5: error[unresolved-attribute] Module `torch` has no member `nextafter` +torch/_torch_docs.py:8221:5: error[unresolved-attribute] Module `torch` has no member `nonzero` +torch/_torch_docs.py:8303:5: error[unresolved-attribute] Module `torch` has no member `normal` +torch/_torch_docs.py:8397:5: error[unresolved-attribute] Module `torch` has no member `numel` +torch/_torch_docs.py:8419:5: error[unresolved-attribute] Module `torch` has no member `ones` +torch/_torch_docs.py:8450:5: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/_torch_docs.py:8483:5: error[unresolved-attribute] Module `torch` has no member `orgqr` +torch/_torch_docs.py:8492:5: error[unresolved-attribute] Module `torch` has no member `ormqr` +torch/_torch_docs.py:8536:5: error[unresolved-attribute] Module `torch` has no member `permute` +torch/_torch_docs.py:8556:5: error[unresolved-attribute] Module `torch` has no member `poisson` +torch/_torch_docs.py:8587:5: error[unresolved-attribute] Module `torch` has no member `polygamma` +torch/_torch_docs.py:8596:5: error[unresolved-attribute] Module `torch` has no member `positive` +torch/_torch_docs.py:8618:5: error[unresolved-attribute] Module `torch` has no member `pow` +torch/_torch_docs.py:8694:5: error[unresolved-attribute] Module `torch` has no member `float_power` +torch/_torch_docs.py:8736:5: error[unresolved-attribute] Module `torch` has no member `prod` +torch/_torch_docs.py:8786:5: error[unresolved-attribute] Module `torch` has no member `promote_types` +torch/_torch_docs.py:8809:5: error[unresolved-attribute] Module `torch` has no member `qr` +torch/_torch_docs.py:8893:5: error[unresolved-attribute] Module `torch` has no member `rad2deg` +torch/_torch_docs.py:8918:5: error[unresolved-attribute] Module `torch` has no member `deg2rad` +torch/_torch_docs.py:8943:5: error[unresolved-attribute] Module `torch` has no member `heaviside` +torch/_torch_docs.py:8980:5: error[unresolved-attribute] Module `torch` has no member `rand` +torch/_torch_docs.py:9015:5: error[unresolved-attribute] Module `torch` has no member `rand_like` +torch/_torch_docs.py:9041:5: error[unresolved-attribute] Module `torch` has no member `randint` +torch/_torch_docs.py:9089:5: error[unresolved-attribute] Module `torch` has no member `randint_like` +torch/_torch_docs.py:9120:5: error[unresolved-attribute] Module `torch` has no member `randn` +torch/_torch_docs.py:9176:5: error[unresolved-attribute] Module `torch` has no member `randn_like` +torch/_torch_docs.py:9202:5: error[unresolved-attribute] Module `torch` has no member `randperm` +torch/_torch_docs.py:9231:5: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_torch_docs.py:9286:5: error[unresolved-attribute] Module `torch` has no member `range` +torch/_torch_docs.py:9328:5: error[unresolved-attribute] Module `torch` has no member `arange` +torch/_torch_docs.py:9378:5: error[unresolved-attribute] Module `torch` has no member `ravel` +torch/_torch_docs.py:9399:5: error[unresolved-attribute] Module `torch` has no member `remainder` +torch/_torch_docs.py:9444:5: error[unresolved-attribute] Module `torch` has no member `renorm` +torch/_torch_docs.py:9482:5: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/_torch_docs.py:9515:5: error[unresolved-attribute] Module `torch` has no member `result_type` +torch/_torch_docs.py:9537:5: error[unresolved-attribute] Module `torch` has no member `row_stack` +torch/_torch_docs.py:9546:5: error[unresolved-attribute] Module `torch` has no member `round` +torch/_torch_docs.py:9602:5: error[unresolved-attribute] Module `torch` has no member `rsqrt` +torch/_torch_docs.py:9630:5: error[unresolved-attribute] Module `torch` has no member `scatter` +torch/_torch_docs.py:9639:5: error[unresolved-attribute] Module `torch` has no member `scatter_add` +torch/_torch_docs.py:9648:5: error[unresolved-attribute] Module `torch` has no member `scatter_reduce` +torch/_torch_docs.py:9657:5: error[unresolved-attribute] Module `torch` has no member `segment_reduce` +torch/_torch_docs.py:9685:5: error[unresolved-attribute] Module `torch` has no member `select` +torch/_torch_docs.py:9711:5: error[unresolved-attribute] Module `torch` has no member `select_scatter` +torch/_torch_docs.py:9742:5: error[unresolved-attribute] Module `torch` has no member `slice_scatter` +torch/_torch_docs.py:9787:5: error[unresolved-attribute] Module `torch` has no member `set_flush_denormal` +torch/_torch_docs.py:9815:5: error[unresolved-attribute] Module `torch` has no member `set_num_threads` +torch/_torch_docs.py:9828:5: error[unresolved-attribute] Module `torch` has no member `set_num_interop_threads` +torch/_torch_docs.py:9842:5: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/_torch_docs.py:9851:5: error[unresolved-attribute] Module `torch` has no member `logit` +torch/_torch_docs.py:9860:5: error[unresolved-attribute] Module `torch` has no member `sign` +torch/_torch_docs.py:9887:5: error[unresolved-attribute] Module `torch` has no member `signbit` +torch/_torch_docs.py:9915:5: error[unresolved-attribute] Module `torch` has no member `sgn` +torch/_torch_docs.py:9948:5: error[unresolved-attribute] Module `torch` has no member `sin` +torch/_torch_docs.py:9976:5: error[unresolved-attribute] Module `torch` has no member `sinc` +torch/_torch_docs.py:9985:5: error[unresolved-attribute] Module `torch` has no member `sinh` +torch/_torch_docs.py:10018:5: error[unresolved-attribute] Module `torch` has no member `sort` +torch/_torch_docs.py:10083:5: error[unresolved-attribute] Module `torch` has no member `argsort` +torch/_torch_docs.py:10124:5: error[unresolved-attribute] Module `torch` has no member `msort` +torch/_torch_docs.py:10155:5: error[unresolved-attribute] Module `torch` has no member `sparse_compressed_tensor` +torch/_torch_docs.py:10228:5: error[unresolved-attribute] Module `torch` has no member `sparse_csr_tensor` +torch/_torch_docs.py:10289:5: error[unresolved-attribute] Module `torch` has no member `sparse_csc_tensor` +torch/_torch_docs.py:10352:5: error[unresolved-attribute] Module `torch` has no member `sparse_bsr_tensor` +torch/_torch_docs.py:10420:5: error[unresolved-attribute] Module `torch` has no member `sparse_bsc_tensor` +torch/_torch_docs.py:10487:5: error[unresolved-attribute] Module `torch` has no member `sparse_coo_tensor` +torch/_torch_docs.py:10585:5: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/_torch_docs.py:10612:5: error[unresolved-attribute] Module `torch` has no member `square` +torch/_torch_docs.py:10635:5: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/_torch_docs.py:10685:5: error[unresolved-attribute] Module `torch` has no member `std` +torch/_torch_docs.py:10740:5: error[unresolved-attribute] Module `torch` has no member `std_mean` +torch/_torch_docs.py:10797:5: error[unresolved-attribute] Module `torch` has no member `sub` +torch/_torch_docs.py:10829:5: error[unresolved-attribute] Module `torch` has no member `subtract` +torch/_torch_docs.py:10838:5: error[unresolved-attribute] Module `torch` has no member `sum` +torch/_torch_docs.py:10895:5: error[unresolved-attribute] Module `torch` has no member `nansum` +torch/_torch_docs.py:10945:5: error[unresolved-attribute] Module `torch` has no member `svd` +torch/_torch_docs.py:11080:5: error[unresolved-attribute] Module `torch` has no member `t` +torch/_torch_docs.py:11119:5: error[unresolved-attribute] Module `torch` has no member `flip` +torch/_torch_docs.py:11153:5: error[unresolved-attribute] Module `torch` has no member `fliplr` +torch/_torch_docs.py:11186:5: error[unresolved-attribute] Module `torch` has no member `flipud` +torch/_torch_docs.py:11219:5: error[unresolved-attribute] Module `torch` has no member `roll` +torch/_torch_docs.py:11268:5: error[unresolved-attribute] Module `torch` has no member `rot90` +torch/_torch_docs.py:11307:5: error[unresolved-attribute] Module `torch` has no member `take` +torch/_torch_docs.py:11329:5: error[unresolved-attribute] Module `torch` has no member `take_along_dim` +torch/_torch_docs.py:11366:5: error[unresolved-attribute] Module `torch` has no member `tan` +torch/_torch_docs.py:11394:5: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/_torch_docs.py:11423:5: error[unresolved-attribute] Module `torch` has no member `softmax` +torch/_torch_docs.py:11432:5: error[unresolved-attribute] Module `torch` has no member `topk` +torch/_torch_docs.py:11478:5: error[unresolved-attribute] Module `torch` has no member `trace` +torch/_torch_docs.py:11497:5: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/_torch_docs.py:11547:5: error[unresolved-attribute] Module `torch` has no member `triangular_solve` +torch/_torch_docs.py:11621:5: error[unresolved-attribute] Module `torch` has no member `tril` +torch/_torch_docs.py:11681:5: error[unresolved-attribute] Module `torch` has no member `tril_indices` +torch/_torch_docs.py:11738:5: error[unresolved-attribute] Module `torch` has no member `triu` +torch/_torch_docs.py:11806:5: error[unresolved-attribute] Module `torch` has no member `triu_indices` +torch/_torch_docs.py:11863:5: error[unresolved-attribute] Module `torch` has no member `true_divide` +torch/_torch_docs.py:11872:5: error[unresolved-attribute] Module `torch` has no member `trunc` +torch/_torch_docs.py:11899:5: error[unresolved-attribute] Module `torch` has no member `fake_quantize_per_tensor_affine` +torch/_torch_docs.py:11940:5: error[unresolved-attribute] Module `torch` has no member `fake_quantize_per_channel_affine` +torch/_torch_docs.py:11994:5: error[unresolved-attribute] Module `torch` has no member `fix` +torch/_torch_docs.py:12003:5: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/_torch_docs.py:12034:5: error[unresolved-attribute] Module `torch` has no member `var` +torch/_torch_docs.py:12089:5: error[unresolved-attribute] Module `torch` has no member `var_mean` +torch/_torch_docs.py:12145:5: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/_torch_docs.py:12175:5: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/_torch_docs.py:12208:5: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_torch_docs.py:12246:5: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/_torch_docs.py:12288:5: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_torch_docs.py:12331:5: error[unresolved-attribute] Module `torch` has no member `empty_permuted` +torch/_torch_docs.py:12384:5: error[unresolved-attribute] Module `torch` has no member `full` +torch/_torch_docs.py:12412:5: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/_torch_docs.py:12453:5: error[unresolved-attribute] Module `torch` has no member `det` +torch/_torch_docs.py:12462:5: error[unresolved-attribute] Module `torch` has no member `where` +torch/_torch_docs.py:12529:5: error[unresolved-attribute] Module `torch` has no member `logdet` +torch/_torch_docs.py:12577:5: error[unresolved-attribute] Module `torch` has no member `slogdet` +torch/_torch_docs.py:12586:5: error[unresolved-attribute] Module `torch` has no member `pinverse` +torch/_torch_docs.py:12595:5: error[unresolved-attribute] Module `torch` has no member `hann_window` +torch/_torch_docs.py:12642:5: error[unresolved-attribute] Module `torch` has no member `hamming_window` +torch/_torch_docs.py:12759:5: error[unresolved-attribute] Module `torch` has no member `bartlett_window` +torch/_torch_docs.py:12808:5: error[unresolved-attribute] Module `torch` has no member `blackman_window` +torch/_torch_docs.py:12854:5: error[unresolved-attribute] Module `torch` has no member `kaiser_window` +torch/_torch_docs.py:12897:5: error[unresolved-attribute] Module `torch` has no member `vander` +torch/_torch_docs.py:12944:5: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/_torch_docs.py:12967:5: error[unresolved-attribute] Module `torch` has no member `combinations` +torch/_torch_docs.py:13013:5: error[unresolved-attribute] Module `torch` has no member `trapezoid` +torch/_torch_docs.py:13124:5: error[unresolved-attribute] Module `torch` has no member `trapz` +torch/_torch_docs.py:13133:5: error[unresolved-attribute] Module `torch` has no member `cumulative_trapezoid` +torch/_torch_docs.py:13222:5: error[unresolved-attribute] Module `torch` has no member `repeat_interleave` +torch/_torch_docs.py:13292:5: error[unresolved-attribute] Module `torch` has no member `tile` +torch/_torch_docs.py:13335:5: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/_torch_docs.py:13371:5: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor_dynamic` +torch/_torch_docs.py:13401:5: error[unresolved-attribute] Module `torch` has no member `quantize_per_channel` +torch/_torch_docs.py:13435:5: error[unresolved-attribute] Module `torch` has no member `quantized_batch_norm` +torch/_torch_docs.py:13480:5: error[unresolved-attribute] Module `torch` has no member `quantized_max_pool1d` +torch/_torch_docs.py:13511:5: error[unresolved-attribute] Module `torch` has no member `quantized_max_pool2d` +torch/_torch_docs.py:13548:5: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_torch_docs.py:13581:5: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_torch_docs.py:13601:5: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_torch_docs.py:13623:5: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_torch_docs.py:13639:5: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_torch_docs.py:13660:5: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/_torch_docs.py:13681:5: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_torch_docs.py:13711:5: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_torch_docs.py:13736:5: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_torch_docs.py:13758:5: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_torch_docs.py:13779:5: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_torch_docs.py:13796:5: error[unresolved-attribute] Module `torch` has no member `Event` +torch/_torch_docs.py:13818:5: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_torch_docs.py:13842:5: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_torch_docs.py:13861:5: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_torch_docs.py:13879:5: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_torch_docs.py:13898:5: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_torch_docs.py:13915:5: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_torch_docs.py:13932:5: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_torch_docs.py:13956:5: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_torch_docs.py:13972:5: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_torch_docs.py:13989:5: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/_torch_docs.py:14004:5: error[unresolved-attribute] Module `torch` has no member `_assert_async` +torch/_torch_docs.py:14024:5: error[unresolved-attribute] Module `torch` has no member `searchsorted` +torch/_torch_docs.py:14107:5: error[unresolved-attribute] Module `torch` has no member `bucketize` +torch/_torch_docs.py:14159:5: error[unresolved-attribute] Module `torch` has no member `view_as_real_copy` +torch/_torch_docs.py:14167:5: error[unresolved-attribute] Module `torch` has no member `view_as_complex_copy` +torch/_torch_docs.py:14175:5: error[unresolved-attribute] Module `torch` has no member `as_strided_copy` +torch/_torch_docs.py:14183:5: error[unresolved-attribute] Module `torch` has no member `diagonal_copy` +torch/_torch_docs.py:14191:5: error[unresolved-attribute] Module `torch` has no member `expand_copy` +torch/_torch_docs.py:14199:5: error[unresolved-attribute] Module `torch` has no member `permute_copy` +torch/_torch_docs.py:14207:5: error[unresolved-attribute] Module `torch` has no member `select_copy` +torch/_torch_docs.py:14215:5: error[unresolved-attribute] Module `torch` has no member `detach_copy` +torch/_torch_docs.py:14223:5: error[unresolved-attribute] Module `torch` has no member `slice_copy` +torch/_torch_docs.py:14231:5: error[unresolved-attribute] Module `torch` has no member `split_copy` +torch/_torch_docs.py:14239:5: error[unresolved-attribute] Module `torch` has no member `split_with_sizes_copy` +torch/_torch_docs.py:14247:5: error[unresolved-attribute] Module `torch` has no member `squeeze_copy` +torch/_torch_docs.py:14255:5: error[unresolved-attribute] Module `torch` has no member `t_copy` +torch/_torch_docs.py:14263:5: error[unresolved-attribute] Module `torch` has no member `transpose_copy` +torch/_torch_docs.py:14271:5: error[unresolved-attribute] Module `torch` has no member `unsqueeze_copy` +torch/_torch_docs.py:14279:5: error[unresolved-attribute] Module `torch` has no member `indices_copy` +torch/_torch_docs.py:14287:5: error[unresolved-attribute] Module `torch` has no member `values_copy` +torch/_torch_docs.py:14295:5: error[unresolved-attribute] Module `torch` has no member `crow_indices_copy` +torch/_torch_docs.py:14303:5: error[unresolved-attribute] Module `torch` has no member `col_indices_copy` +torch/_torch_docs.py:14311:5: error[unresolved-attribute] Module `torch` has no member `unbind_copy` +torch/_torch_docs.py:14319:5: error[unresolved-attribute] Module `torch` has no member `view_copy` +torch/_torch_docs.py:14327:5: error[unresolved-attribute] Module `torch` has no member `unfold_copy` +torch/_torch_docs.py:14335:5: error[unresolved-attribute] Module `torch` has no member `alias_copy` +torch/_utils.py:76:13: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/_utils.py:78:27: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_utils.py:79:34: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/_utils.py:137:45: error[unresolved-attribute] Module `torch` has no member `device` +torch/_utils.py:188:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_utils.py:208:8: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/_utils.py:211:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/_utils.py:212:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/_utils.py:213:34: error[unresolved-attribute] Module `torch` has no member `device` +torch/_utils.py:250:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/_utils.py:290:28: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/_utils.py:291:17: error[unresolved-attribute] Module `torch` has no member `_validate_sparse_coo_tensor_args` +torch/_utils.py:299:17: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_utils.py:300:17: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/_utils.py:301:17: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_utils.py:302:17: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/_utils.py:306:33: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_utils.py:306:51: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_utils.py:316:17: error[unresolved-attribute] Module `torch` has no member `_validate_sparse_compressed_tensor_args` +torch/_utils.py:341:18: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/_utils.py:348:18: error[unresolved-attribute] Module `torch` has no member `sparse_coo_tensor` +torch/_utils.py:355:9: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/_utils.py:356:9: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/_utils.py:357:9: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/_utils.py:358:9: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/_utils.py:361:18: error[unresolved-attribute] Module `torch` has no member `sparse_compressed_tensor` +torch/_utils.py:376:12: error[unresolved-attribute] Module `torch` has no member `_nested_view_from_buffer` +torch/_utils.py:388:14: error[unresolved-attribute] Module `torch` has no member `from_numpy` +torch/_utils.py:398:12: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/_utils.py:438:19: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/_utils.py:440:18: error[unresolved-attribute] Module `torch` has no member `_empty_affine_quantized` +torch/_utils.py:447:22: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/_utils.py:447:48: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/_utils.py:450:27: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/_utils.py:451:26: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_utils.py:451:53: error[unresolved-attribute] Module `torch` has no member `double` +torch/_utils.py:452:31: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_utils.py:453:40: error[unresolved-attribute] Module `torch` has no member `long` +torch/_utils.py:456:26: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_utils.py:456:53: error[unresolved-attribute] Module `torch` has no member `float` +torch/_utils.py:457:31: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/_utils.py:458:40: error[unresolved-attribute] Module `torch` has no member `float` +torch/_utils.py:460:18: error[unresolved-attribute] Module `torch` has no member `_empty_per_channel_affine_quantized` +torch/_utils.py:572:12: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/_utils.py:586:20: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/_utils.py:589:19: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/_utils.py:608:12: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/_utils.py:627:15: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/_utils.py:630:14: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/_utils.py:689:9: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | list[Unknown] | int` +torch/_utils.py:755:25: warning[possibly-missing-attribute] Attribute `__name__` may be missing on object of type `Unknown | type[BaseException] | None` +torch/_utils.py:765:19: error[call-non-callable] Object of type `None` is not callable +torch/_utils.py:770:25: error[call-non-callable] Object of type `None` is not callable +torch/_utils.py:787:27: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/_utils.py:805:23: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/_utils.py:858:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/_utils.py:860:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/_utils.py:890:9: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/_utils.py:901:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/_utils.py:905:16: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_utils.py:907:16: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/_utils.py:908:19: error[unresolved-attribute] Module `torch` has no member `bool` +torch/_utils.py:912:16: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/_utils.py:973:33: error[unresolved-attribute] Module `torch._C` has no member `_unset_dispatch_mode` +torch/_utils.py:974:13: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/_utils.py:980:17: error[unresolved-attribute] Module `torch._C` has no member `_set_dispatch_mode` +torch/_utils.py:1063:17: error[unresolved-attribute] Module `importlib` has no member `util` +torch/_utils.py:1064:18: error[unresolved-attribute] Module `importlib` has no member `util` +torch/_utils_internal.py:230:14: error[unresolved-import] Cannot resolve imported module `triton.testing` +torch/_utils_internal.py:314:17: error[unresolved-attribute] Object of type `(...) -> _T@decorator` has no attribute `__name__` +torch/_utils_internal.py:320:23: error[unresolved-attribute] Object of type `(...) -> _T@decorator` has no attribute `__name__` +torch/_utils_internal.py:330:26: error[unresolved-attribute] Object of type `(...) -> _T@decorator` has no attribute `__name__` +torch/_utils_internal.py:335:13: error[invalid-argument-type] Argument to class `deprecated` is incorrect: Expected `LiteralString`, found `str` +torch/_utils_internal.py:340:9: error[unresolved-attribute] Unresolved attribute `__name__` on type `(...) -> _T@decorator`. +torch/_utils_internal.py:343:19: error[unresolved-attribute] Object of type `(...) -> _T@decorator` has no attribute `__qualname__` +torch/_utils_internal.py:344:13: error[unresolved-attribute] Unresolved attribute `__qualname__` on type `(...) -> _T@decorator`. +torch/_utils_internal.py:344:34: error[unresolved-attribute] Object of type `(...) -> _T@decorator` has no attribute `__qualname__` +torch/_utils_internal.py:346:13: error[unresolved-attribute] Unresolved attribute `__qualname__` on type `(...) -> _T@decorator`. +torch/_vmap_internals.py:110:36: error[unresolved-attribute] Module `torch` has no member `_add_batch_dim` +torch/_vmap_internals.py:142:17: error[unresolved-attribute] Module `torch` has no member `_remove_batch_dim` +torch/_vmap_internals.py:150:13: error[unresolved-attribute] Module `torch` has no member `_remove_batch_dim` +torch/_vmap_internals.py:227:22: error[unresolved-attribute] Module `torch._C` has no member `_vmapmode_increment_nesting` +torch/_weights_only_unpickler.py:143:13: error[invalid-assignment] Invalid subscript assignment with key of type `object` and value of type `object` on object of type `dict[str, Any]` +torch/_weights_only_unpickler.py:145:42: error[unresolved-attribute] Object of type `((...) -> Unknown) & ~tuple[object, ...]` has no attribute `__qualname__` +torch/_weights_only_unpickler.py:180:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/_weights_only_unpickler.py:182:25: error[unresolved-attribute] Module `torch` has no member `device` +torch/_weights_only_unpickler.py:213:9: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/_weights_only_unpickler.py:214:9: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/_weights_only_unpickler.py:215:9: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/_weights_only_unpickler.py:216:9: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/_weights_only_unpickler.py:217:9: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/accelerator/__init__.py:96:59: error[unresolved-attribute] Module `torch` has no member `device` +torch/accelerator/__init__.py:122:16: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_getAccelerator` +torch/accelerator/__init__.py:134:12: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_getDeviceIndex` +torch/accelerator/__init__.py:165:5: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_setDeviceIndex` +torch/accelerator/__init__.py:187:52: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/accelerator/__init__.py:199:12: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_getStream` +torch/accelerator/__init__.py:202:24: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/accelerator/__init__.py:210:5: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_setStream` +torch/accelerator/__init__.py:237:5: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_synchronizeDevice` +torch/accelerator/__init__.py:270:29: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_exchangeDevice` +torch/accelerator/__init__.py:274:13: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_maybeExchangeDevice` +torch/accelerator/_utils.py:9:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/accelerator/_utils.py:11:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/accelerator/memory.py:29:12: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_isAllocatorInitialized` +torch/accelerator/memory.py:31:5: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_emptyCache` +torch/accelerator/memory.py:95:12: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_isAllocatorInitialized` +torch/accelerator/memory.py:98:13: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_getDeviceStats` +torch/accelerator/memory.py:201:12: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_resetAccumulatedStats` +torch/accelerator/memory.py:218:12: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_resetPeakStats` +torch/accelerator/memory.py:236:12: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_getMemoryInfo` +torch/amp/autocast_mode.py:37:12: error[unresolved-attribute] Module `torch._C` has no member `_is_autocast_available` +torch/amp/autocast_mode.py:234:13: error[unresolved-attribute] Module `torch` has no member `get_autocast_dtype` +torch/amp/autocast_mode.py:236:12: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/amp/autocast_mode.py:247:36: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/amp/autocast_mode.py:247:52: error[unresolved-attribute] Module `torch` has no member `float16` +torch/amp/autocast_mode.py:249:36: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/amp/autocast_mode.py:268:13: error[unresolved-attribute] Module `torch` has no member `is_autocast_cache_enabled` +torch/amp/autocast_mode.py:288:40: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/amp/autocast_mode.py:306:44: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/amp/autocast_mode.py:318:12: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/amp/autocast_mode.py:322:35: error[unresolved-attribute] Module `torch` has no member `is_autocast_cache_enabled` +torch/amp/autocast_mode.py:323:21: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/amp/autocast_mode.py:324:31: error[unresolved-attribute] Module `torch` has no member `get_autocast_dtype` +torch/amp/autocast_mode.py:325:9: error[unresolved-attribute] Module `torch` has no member `set_autocast_enabled` +torch/amp/autocast_mode.py:327:9: error[unresolved-attribute] Module `torch` has no member `autocast_increment_nesting` +torch/amp/autocast_mode.py:328:9: error[unresolved-attribute] Module `torch` has no member `set_autocast_cache_enabled` +torch/amp/autocast_mode.py:333:12: error[unresolved-attribute] Module `torch._C` has no member `_is_torch_function_mode_enabled` +torch/amp/autocast_mode.py:338:21: error[unresolved-attribute] Module `torch.fx.experimental` has no member `proxy_tensor` +torch/amp/autocast_mode.py:352:12: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/amp/autocast_mode.py:356:12: error[unresolved-attribute] Module `torch` has no member `autocast_decrement_nesting` +torch/amp/autocast_mode.py:357:13: error[unresolved-attribute] Module `torch` has no member `clear_autocast_cache` +torch/amp/autocast_mode.py:358:9: error[unresolved-attribute] Module `torch` has no member `set_autocast_enabled` +torch/amp/autocast_mode.py:359:9: error[unresolved-attribute] Module `torch` has no member `set_autocast_dtype` +torch/amp/autocast_mode.py:360:9: error[unresolved-attribute] Module `torch` has no member `set_autocast_cache_enabled` +torch/amp/autocast_mode.py:365:12: error[unresolved-attribute] Module `torch._C` has no member `_is_torch_function_mode_enabled` +torch/amp/autocast_mode.py:370:21: error[unresolved-attribute] Module `torch.fx.experimental` has no member `proxy_tensor` +torch/amp/autocast_mode.py:379:12: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/amp/autocast_mode.py:389:8: error[unresolved-attribute] Module `torch._C` has no member `_is_torch_function_mode_enabled` +torch/amp/autocast_mode.py:399:8: error[unresolved-attribute] Module `torch._C` has no member `_is_torch_function_mode_enabled` +torch/amp/autocast_mode.py:411:37: error[unresolved-attribute] Module `torch` has no member `float64` +torch/amp/autocast_mode.py:422:28: error[unresolved-attribute] Module `collections` has no member `abc` +torch/amp/autocast_mode.py:427:28: error[unresolved-attribute] Module `collections` has no member `abc` +torch/amp/autocast_mode.py:474:26: error[unresolved-attribute] Module `torch` has no member `get_autocast_dtype` +torch/amp/autocast_mode.py:476:42: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/amp/autocast_mode.py:479:32: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/amp/grad_scaler.py:28:40: error[unresolved-attribute] Module `torch` has no member `device` +torch/amp/grad_scaler.py:30:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/amp/grad_scaler.py:171:52: error[unresolved-attribute] Module `torch` has no member `device` +torch/amp/grad_scaler.py:173:23: error[unresolved-attribute] Module `torch` has no member `full` +torch/amp/grad_scaler.py:173:62: error[unresolved-attribute] Module `torch` has no member `float32` +torch/amp/grad_scaler.py:174:32: error[unresolved-attribute] Module `torch` has no member `full` +torch/amp/grad_scaler.py:175:50: error[unresolved-attribute] Module `torch` has no member `int32` +torch/amp/grad_scaler.py:241:15: error[unresolved-attribute] Module `torch` has no member `device` +torch/amp/grad_scaler.py:252:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/amp/grad_scaler.py:252:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/amp/grad_scaler.py:260:65: error[unresolved-attribute] Module `torch` has no member `float16` +torch/amp/grad_scaler.py:267:48: error[unresolved-attribute] Module `torch` has no member `float16` +torch/amp/grad_scaler.py:280:21: error[unresolved-attribute] Module `torch` has no member `_amp_foreach_non_finite_check_and_unscale_` +torch/amp/grad_scaler.py:338:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/amp/grad_scaler.py:341:21: error[unresolved-attribute] Module `torch` has no member `full` +torch/amp/grad_scaler.py:341:47: error[unresolved-attribute] Module `torch` has no member `float32` +torch/amp/grad_scaler.py:509:24: warning[possibly-missing-attribute] Attribute `device` may be missing on object of type `int | (Tensor & ~float)` +torch/amp/grad_scaler.py:510:24: warning[possibly-missing-attribute] Attribute `numel` may be missing on object of type `int | (Tensor & ~float)` +torch/amp/grad_scaler.py:511:24: warning[possibly-missing-attribute] Attribute `requires_grad` may be missing on object of type `int | (Tensor & ~float)` +torch/amp/grad_scaler.py:529:13: error[unresolved-attribute] Module `torch` has no member `_amp_update_scale_` +torch/amp/grad_scaler.py:683:27: error[unresolved-attribute] Module `torch` has no member `full` +torch/amp/grad_scaler.py:683:53: error[unresolved-attribute] Module `torch` has no member `float32` +torch/amp/grad_scaler.py:684:21: error[unresolved-attribute] Module `torch` has no member `full` +torch/amp/grad_scaler.py:684:47: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:81:9: error[unresolved-attribute] Cannot assign object of type `Unknown | bool` to attribute `freeze_bn` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:85:35: error[unresolved-attribute] Module `torch` has no member `empty` +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:100:9: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `_enable_slow_path_for_better_numerical_stability` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:119:9: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `freeze_bn` on type `Self@update_bn_stats` with custom `__setattr__` method. +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:120:9: error[invalid-assignment] Object of type `Literal[True]` is not assignable to attribute `training` on type `Unknown | BatchNorm1d | BatchNorm2d | BatchNorm3d` +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:124:9: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `freeze_bn` on type `Self@freeze_bn_stats` with custom `__setattr__` method. +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:125:9: error[invalid-assignment] Object of type `Literal[False]` is not assignable to attribute `training` on type `Unknown | BatchNorm1d | BatchNorm2d | BatchNorm3d` +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:138:23: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:150:25: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:152:25: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:197:21: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:219:27: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:229:25: error[unresolved-attribute] Module `torch` has no member `square` +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:232:25: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:243:27: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/ao/nn/intrinsic/qat/modules/conv_fused.py:280:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[True]` to attribute `training` on type `Self@train` with custom `__setattr__` method. +torch/ao/nn/intrinsic/qat/modules/linear_fused.py:52:9: error[unresolved-attribute] Cannot assign object of type `Unknown | bool` to attribute `freeze_bn` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/intrinsic/qat/modules/linear_fused.py:56:35: error[unresolved-attribute] Module `torch` has no member `empty` +torch/ao/nn/intrinsic/qat/modules/linear_fused.py:83:9: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `freeze_bn` on type `Self@update_bn_stats` with custom `__setattr__` method. +torch/ao/nn/intrinsic/qat/modules/linear_fused.py:84:9: error[invalid-assignment] Object of type `Literal[True]` is not assignable to attribute `training` on type `Unknown | BatchNorm1d` +torch/ao/nn/intrinsic/qat/modules/linear_fused.py:88:9: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `freeze_bn` on type `Self@freeze_bn_stats` with custom `__setattr__` method. +torch/ao/nn/intrinsic/qat/modules/linear_fused.py:89:9: error[invalid-assignment] Object of type `Literal[False]` is not assignable to attribute `training` on type `Unknown | BatchNorm1d` +torch/ao/nn/intrinsic/qat/modules/linear_fused.py:114:23: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/ao/nn/intrinsic/qat/modules/linear_fused.py:124:25: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/nn/intrinsic/qat/modules/linear_fused.py:126:25: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/intrinsic/qat/modules/linear_fused.py:140:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[True]` to attribute `training` on type `Self@train` with custom `__setattr__` method. +torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py:41:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py:41:30: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py:46:41: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py:51:43: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:36:68: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:78:75: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:108:25: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:153:68: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/intrinsic/quantized/modules/linear_relu.py:174:25: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/qat/dynamic/modules/linear.py:32:29: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/nn/qat/modules/conv.py:115:20: error[call-non-callable] Object of type `object` is not callable +torch/ao/nn/qat/modules/embedding_ops.py:54:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/ao/nn/qat/modules/embedding_ops.py:57:44: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/nn/qat/modules/embedding_ops.py:91:34: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/nn/qat/modules/embedding_ops.py:176:44: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/nn/qat/modules/embedding_ops.py:214:34: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/nn/quantizable/modules/activation.py:190:42: warning[deprecated] The function `prepare` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/nn/quantizable/modules/activation.py:263:17: error[invalid-assignment] Object of type `None` is not assignable to attribute `bias` on type `Unknown | Linear` +torch/ao/nn/quantizable/modules/activation.py:265:17: error[invalid-assignment] Object of type `None` is not assignable to attribute `bias` on type `Unknown | Linear` +torch/ao/nn/quantizable/modules/activation.py:267:17: error[invalid-assignment] Object of type `None` is not assignable to attribute `bias` on type `Unknown | Linear` +torch/ao/nn/quantizable/modules/activation.py:400:35: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/nn/quantizable/modules/activation.py:406:42: error[unresolved-attribute] Module `torch` has no member `bool` +torch/ao/nn/quantizable/modules/activation.py:407:72: error[unresolved-attribute] Module `torch` has no member `bool` +torch/ao/nn/quantizable/modules/activation.py:429:71: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/nn/quantizable/modules/activation.py:435:52: error[unresolved-attribute] Module `torch` has no member `bool` +torch/ao/nn/quantizable/modules/activation.py:445:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/nn/quantizable/modules/activation.py:446:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/nn/quantizable/modules/activation.py:448:50: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[0], Literal[1]]` +torch/ao/nn/quantizable/modules/activation.py:450:64: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[0], Literal[1]]` +torch/ao/nn/quantizable/modules/activation.py:484:23: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantizable/modules/activation.py:487:27: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/nn/quantizable/modules/activation.py:497:17: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/nn/quantizable/modules/activation.py:499:23: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantizable/modules/activation.py:502:27: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/nn/quantizable/modules/activation.py:512:17: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/nn/quantizable/modules/activation.py:515:46: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[0], Literal[1]]` +torch/ao/nn/quantizable/modules/activation.py:517:60: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[0], Literal[1]]` +torch/ao/nn/quantizable/modules/activation.py:523:31: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/ao/nn/quantizable/modules/activation.py:531:35: error[unresolved-attribute] Module `torch` has no member `bool` +torch/ao/nn/quantizable/modules/activation.py:553:23: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/ao/nn/quantizable/modules/rnn.py:56:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `input_size` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantizable/modules/rnn.py:57:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `hidden_size` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantizable/modules/rnn.py:58:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `bias` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantizable/modules/rnn.py:59:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[False]` to attribute `split_gates` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantizable/modules/rnn.py:99:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/nn/quantizable/modules/rnn.py:99:48: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantizable/modules/rnn.py:100:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/nn/quantizable/modules/rnn.py:100:46: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantizable/modules/rnn.py:141:19: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/ao/nn/quantizable/modules/rnn.py:149:13: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantizable/modules/rnn.py:150:13: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantizable/modules/rnn.py:155:17: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/nn/quantizable/modules/rnn.py:158:17: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/nn/quantizable/modules/rnn.py:255:25: error[unresolved-attribute] Module `torch` has no member `stack` +torch/ao/nn/quantizable/modules/rnn.py:285:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `batch_first` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantizable/modules/rnn.py:286:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `bidirectional` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantizable/modules/rnn.py:334:22: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/nn/quantizable/modules/rnn.py:446:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `input_size` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantizable/modules/rnn.py:447:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `hidden_size` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantizable/modules/rnn.py:448:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `num_layers` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantizable/modules/rnn.py:449:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `bias` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantizable/modules/rnn.py:450:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `batch_first` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantizable/modules/rnn.py:451:9: error[unresolved-attribute] Cannot assign object of type `float` to attribute `dropout` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantizable/modules/rnn.py:452:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `bidirectional` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantizable/modules/rnn.py:453:9: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `training` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantizable/modules/rnn.py:515:21: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantizable/modules/rnn.py:519:23: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantizable/modules/rnn.py:524:25: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/nn/quantizable/modules/rnn.py:550:21: error[unresolved-attribute] Module `torch` has no member `stack` +torch/ao/nn/quantizable/modules/rnn.py:551:21: error[unresolved-attribute] Module `torch` has no member `stack` +torch/ao/nn/quantizable/modules/rnn.py:590:46: warning[deprecated] The function `prepare_qat` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/nn/quantizable/modules/rnn.py:593:46: warning[deprecated] The function `prepare` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/nn/quantized/dynamic/modules/linear.py:42:69: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/linear.py:48:9: error[unresolved-attribute] Cannot assign object of type `Literal[4]` to attribute `version` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/dynamic/modules/linear.py:52:41: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/linear.py:61:43: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/nn/quantized/dynamic/modules/linear.py:74:41: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/linear.py:112:13: error[unresolved-attribute] Module `torch.ao.nn.qat` has no member `dynamic` +torch/ao/nn/quantized/dynamic/modules/linear.py:134:26: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/linear.py:134:39: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/nn/quantized/dynamic/modules/linear.py:139:21: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/linear.py:141:23: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/nn/quantized/dynamic/modules/rnn.py:41:17: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/rnn.py:105:15: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/rnn.py:112:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[1]` to attribute `num_layers` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/dynamic/modules/rnn.py:113:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[True]` to attribute `bias` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/dynamic/modules/rnn.py:114:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[False]` to attribute `batch_first` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/dynamic/modules/rnn.py:115:9: error[unresolved-attribute] Cannot assign object of type `float` to attribute `dropout` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/dynamic/modules/rnn.py:116:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[False]` to attribute `bidirectional` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/dynamic/modules/rnn.py:118:9: error[unresolved-attribute] Cannot assign object of type `Literal[2]` to attribute `version` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/dynamic/modules/rnn.py:119:9: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `training` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/dynamic/modules/rnn.py:157:24: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/nn/quantized/dynamic/modules/rnn.py:157:68: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/dynamic/modules/rnn.py:158:24: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/nn/quantized/dynamic/modules/rnn.py:158:63: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/dynamic/modules/rnn.py:159:24: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/nn/quantized/dynamic/modules/rnn.py:159:50: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/dynamic/modules/rnn.py:160:24: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/nn/quantized/dynamic/modules/rnn.py:160:50: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/dynamic/modules/rnn.py:161:29: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/rnn.py:162:28: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/nn/quantized/dynamic/modules/rnn.py:163:62: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/rnn.py:165:28: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/nn/quantized/dynamic/modules/rnn.py:166:62: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/rnn.py:328:34: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/rnn.py:372:35: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/rnn.py:372:48: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/nn/quantized/dynamic/modules/rnn.py:425:29: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/rnn.py:449:31: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/nn/quantized/dynamic/modules/rnn.py:546:21: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantized/dynamic/modules/rnn.py:842:21: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantized/dynamic/modules/rnn.py:957:71: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/rnn.py:962:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[True]` to attribute `bias` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/dynamic/modules/rnn.py:965:28: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/nn/quantized/dynamic/modules/rnn.py:965:75: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/dynamic/modules/rnn.py:966:28: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/nn/quantized/dynamic/modules/rnn.py:966:75: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/dynamic/modules/rnn.py:971:21: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/nn/quantized/dynamic/modules/rnn.py:971:74: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/dynamic/modules/rnn.py:972:21: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/nn/quantized/dynamic/modules/rnn.py:972:75: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/dynamic/modules/rnn.py:973:21: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/rnn.py:974:25: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/nn/quantized/dynamic/modules/rnn.py:975:57: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/rnn.py:977:25: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/nn/quantized/dynamic/modules/rnn.py:978:57: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/rnn.py:981:21: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/rnn.py:1060:35: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/rnn.py:1060:48: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/nn/quantized/dynamic/modules/rnn.py:1093:25: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/rnn.py:1223:78: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/rnn.py:1226:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal["tanh"]` to attribute `nonlinearity` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/dynamic/modules/rnn.py:1234:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantized/dynamic/modules/rnn.py:1299:21: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantized/dynamic/modules/rnn.py:1340:66: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/dynamic/modules/rnn.py:1349:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantized/functional.py:184:11: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/functional.py:227:23: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/functional.py:231:24: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/functional.py:256:11: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/functional.py:299:23: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/functional.py:303:24: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/functional.py:328:11: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/functional.py:375:23: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/functional.py:379:24: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/functional.py:580:18: error[unresolved-attribute] Module `torch` has no member `_empty_affine_quantized` +torch/ao/nn/quantized/functional.py:583:9: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/ao/nn/quantized/functional.py:586:18: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/ao/nn/quantized/functional.py:588:18: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/ao/nn/quantized/functional.py:599:16: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/ao/nn/quantized/functional.py:600:12: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/ao/nn/quantized/functional.py:656:12: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/ao/nn/quantized/functional.py:672:12: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/nn/quantized/modules/__init__.py:111:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/__init__.py:114:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/__init__.py:116:23: error[unresolved-attribute] Module `torch` has no member `long` +torch/ao/nn/quantized/modules/__init__.py:123:16: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/nn/quantized/modules/activation.py:46:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[False]` to attribute `inplace` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/activation.py:71:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/activation.py:73:44: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/activation.py:144:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/activation.py:146:44: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/activation.py:176:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `output_scale` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/activation.py:177:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `output_zero_point` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/activation.py:204:9: error[unresolved-attribute] Cannot assign object of type `Unknown | None` to attribute `dim` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/activation.py:205:9: error[unresolved-attribute] Cannot assign object of type `Unknown | float` to attribute `scale` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/activation.py:206:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[0]` to attribute `zero_point` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/activation.py:251:43: warning[deprecated] The function `convert` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/nn/quantized/modules/activation.py:266:22: error[unresolved-attribute] Module `torch` has no member `_choose_qparams_per_tensor` +torch/ao/nn/quantized/modules/activation.py:267:22: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/nn/quantized/modules/activation.py:267:64: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/modules/activation.py:272:22: error[unresolved-attribute] Module `torch` has no member `_choose_qparams_per_tensor` +torch/ao/nn/quantized/modules/activation.py:276:22: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/nn/quantized/modules/activation.py:276:64: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/modules/activation.py:298:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `num_parameters` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/activation.py:299:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `scale` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/activation.py:300:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `zero_point` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/activation.py:301:13: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/nn/quantized/modules/activation.py:301:47: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/modules/activation.py:302:14: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/nn/quantized/modules/activation.py:302:74: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/modules/activation.py:323:30: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/modules/activation.py:329:19: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/nn/quantized/modules/activation.py:330:52: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/modules/activation.py:341:30: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/modules/activation.py:347:19: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/nn/quantized/modules/activation.py:348:52: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/modules/batchnorm.py:16:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/batchnorm.py:18:44: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/conv.py:93:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal["zeros"]` to attribute `padding_mode` on type `Self@_init` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/conv.py:99:19: error[unresolved-attribute] Module `torch` has no member `_empty_affine_quantized` +torch/ao/nn/quantized/modules/conv.py:103:19: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/modules/conv.py:107:13: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantized/modules/conv.py:109:23: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/modules/conv.py:117:9: error[unresolved-attribute] Cannot assign object of type `float` to attribute `scale` on type `Self@_init` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/conv.py:118:9: error[unresolved-attribute] Cannot assign object of type `Literal[0]` to attribute `zero_point` on type `Self@_init` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/conv.py:163:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/conv.py:164:46: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/conv.py:203:9: error[unresolved-attribute] Cannot assign object of type `float` to attribute `scale` on type `Self@_load_from_state_dict` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/conv.py:205:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `zero_point` on type `Self@_load_from_state_dict` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/conv.py:250:45: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/modules/conv.py:269:49: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/modules/conv.py:815:45: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/modules/conv.py:835:53: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/modules/embedding_ops.py:16:61: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/modules/embedding_ops.py:19:27: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/modules/embedding_ops.py:19:41: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/nn/quantized/modules/embedding_ops.py:20:22: error[unresolved-attribute] Module `torch` has no member `ones` +torch/ao/nn/quantized/modules/embedding_ops.py:20:55: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/modules/embedding_ops.py:21:27: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantized/modules/embedding_ops.py:21:61: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/modules/embedding_ops.py:22:18: error[unresolved-attribute] Module `torch` has no member `_empty_per_channel_affine_quantized` +torch/ao/nn/quantized/modules/embedding_ops.py:37:27: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/modules/embedding_ops.py:37:41: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/nn/quantized/modules/embedding_ops.py:46:27: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/modules/embedding_ops.py:46:41: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/nn/quantized/modules/embedding_ops.py:131:15: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/modules/embedding_ops.py:134:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `num_embeddings` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/embedding_ops.py:135:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `embedding_dim` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/embedding_ops.py:139:22: error[unresolved-attribute] Module `torch` has no member `ones` +torch/ao/nn/quantized/modules/embedding_ops.py:139:55: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/modules/embedding_ops.py:140:27: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantized/modules/embedding_ops.py:140:61: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/modules/embedding_ops.py:141:23: error[unresolved-attribute] Module `torch` has no member `_empty_per_channel_affine_quantized` +torch/ao/nn/quantized/modules/embedding_ops.py:146:23: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/modules/embedding_ops.py:161:26: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/nn/quantized/modules/embedding_ops.py:226:40: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/nn/quantized/modules/embedding_ops.py:232:25: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/modules/embedding_ops.py:232:50: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/nn/quantized/modules/embedding_ops.py:297:15: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/modules/embedding_ops.py:301:9: error[unresolved-attribute] Cannot assign object of type `str` to attribute `mode` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/embedding_ops.py:302:9: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `pruned_weights` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/embedding_ops.py:303:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `include_last_offset` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/embedding_ops.py:313:26: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/nn/quantized/modules/embedding_ops.py:370:40: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/nn/quantized/modules/embedding_ops.py:376:25: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/modules/embedding_ops.py:376:50: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/nn/quantized/modules/functional_modules.py:51:13: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/nn/quantized/modules/functional_modules.py:58:13: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/nn/quantized/modules/functional_modules.py:66:13: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/nn/quantized/modules/functional_modules.py:73:13: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/nn/quantized/modules/functional_modules.py:81:13: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/nn/quantized/modules/functional_modules.py:88:13: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/nn/quantized/modules/functional_modules.py:96:13: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/ao/nn/quantized/modules/functional_modules.py:123:13: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/nn/quantized/modules/functional_modules.py:129:13: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/nn/quantized/modules/functional_modules.py:135:13: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/nn/quantized/modules/functional_modules.py:141:13: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/nn/quantized/modules/functional_modules.py:147:13: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/nn/quantized/modules/functional_modules.py:153:13: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/nn/quantized/modules/functional_modules.py:160:13: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/ao/nn/quantized/modules/functional_modules.py:194:9: error[unresolved-attribute] Cannot assign object of type `float` to attribute `scale` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/functional_modules.py:195:9: error[unresolved-attribute] Cannot assign object of type `Literal[0]` to attribute `zero_point` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/functional_modules.py:200:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/functional_modules.py:201:46: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/functional_modules.py:213:9: error[unresolved-attribute] Cannot assign object of type `float` to attribute `scale` on type `Self@_load_from_state_dict` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/functional_modules.py:214:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `zero_point` on type `Self@_load_from_state_dict` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/functional_modules.py:296:9: error[unresolved-attribute] Cannot assign object of type `float` to attribute `scale` on type `QFunctional` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/functional_modules.py:297:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `zero_point` on type `QFunctional` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/linear.py:21:30: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/modules/linear.py:24:26: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/modules/linear.py:25:18: error[unresolved-attribute] Module `torch` has no member `_empty_affine_quantized` +torch/ao/nn/quantized/modules/linear.py:26:56: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/modules/linear.py:28:28: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/nn/quantized/modules/linear.py:29:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantized/modules/linear.py:29:44: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/modules/linear.py:34:26: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/modules/linear.py:36:28: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/nn/quantized/modules/linear.py:43:26: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/modules/linear.py:45:28: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/nn/quantized/modules/linear.py:86:26: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/modules/linear.py:149:69: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/modules/linear.py:159:20: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantized/modules/linear.py:159:52: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/modules/linear.py:161:21: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/modules/linear.py:162:23: error[unresolved-attribute] Module `torch` has no member `_empty_affine_quantized` +torch/ao/nn/quantized/modules/linear.py:163:75: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/modules/linear.py:165:23: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/nn/quantized/modules/linear.py:166:23: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantized/modules/linear.py:166:70: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/modules/linear.py:172:9: error[unresolved-attribute] Cannot assign object of type `float` to attribute `scale` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/linear.py:173:9: error[unresolved-attribute] Cannot assign object of type `Literal[0]` to attribute `zero_point` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/linear.py:223:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/linear.py:224:46: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/linear.py:239:9: error[unresolved-attribute] Cannot assign object of type `float` to attribute `scale` on type `Self@_load_from_state_dict` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/linear.py:242:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `zero_point` on type `Self@_load_from_state_dict` with custom `__setattr__` method. +torch/ao/nn/quantized/modules/linear.py:337:25: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/modules/normalization.py:41:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/ao/nn/quantized/modules/normalization.py:46:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/normalization.py:48:44: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/normalization.py:120:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/normalization.py:122:44: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/normalization.py:184:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/normalization.py:186:44: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/normalization.py:253:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/normalization.py:255:44: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/normalization.py:322:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/normalization.py:324:44: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/modules/rnn.py:55:43: warning[deprecated] The function `convert` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/nn/quantized/modules/utils.py:34:18: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/modules/utils.py:34:31: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/modules/utils.py:34:45: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/nn/quantized/modules/utils.py:35:16: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/ao/nn/quantized/modules/utils.py:48:18: error[unresolved-attribute] Module `torch` has no member `clone` +torch/ao/nn/quantized/modules/utils.py:49:18: error[unresolved-attribute] Module `torch` has no member `clone` +torch/ao/nn/quantized/modules/utils.py:50:14: error[unresolved-attribute] Module `torch` has no member `minimum` +torch/ao/nn/quantized/modules/utils.py:50:28: error[unresolved-attribute] Module `torch` has no member `maximum` +torch/ao/nn/quantized/modules/utils.py:52:29: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/nn/quantized/modules/utils.py:52:57: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/nn/quantized/modules/utils.py:53:19: error[unresolved-attribute] Module `torch` has no member `_make_per_tensor_quantized_tensor` +torch/ao/nn/quantized/modules/utils.py:57:9: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/nn/quantized/modules/utils.py:58:9: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/nn/quantized/modules/utils.py:59:9: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/nn/quantized/modules/utils.py:61:19: error[unresolved-attribute] Module `torch` has no member `_make_per_channel_quantized_tensor` +torch/ao/nn/quantized/modules/utils.py:71:29: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/nn/quantized/modules/utils.py:71:57: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/nn/quantized/modules/utils.py:72:19: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/nn/quantized/modules/utils.py:73:52: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/modules/utils.py:76:31: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/nn/quantized/modules/utils.py:76:60: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/nn/quantized/modules/utils.py:78:19: error[unresolved-attribute] Module `torch` has no member `quantize_per_channel` +torch/ao/nn/quantized/modules/utils.py:80:25: error[unresolved-attribute] Module `torch` has no member `double` +torch/ao/nn/quantized/modules/utils.py:81:22: error[unresolved-attribute] Module `torch` has no member `int64` +torch/ao/nn/quantized/modules/utils.py:83:13: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/modules/utils.py:86:30: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/nn/quantized/modules/utils.py:87:19: error[unresolved-attribute] Module `torch` has no member `quantize_per_channel` +torch/ao/nn/quantized/modules/utils.py:89:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/modules/utils.py:90:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/modules/utils.py:105:29: error[unresolved-attribute] Module `collections` has no member `abc` +torch/ao/nn/quantized/reference/modules/linear.py:29:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/nn/quantized/reference/modules/linear.py:30:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/nn/quantized/reference/modules/rnn.py:75:28: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/nn/quantized/reference/modules/rnn.py:76:26: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/reference/modules/rnn.py:103:17: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/nn/quantized/reference/modules/rnn.py:104:17: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/nn/quantized/reference/modules/rnn.py:113:26: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/reference/modules/rnn.py:113:52: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/reference/modules/rnn.py:120:26: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/reference/modules/rnn.py:120:49: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/nn/quantized/reference/modules/rnn.py:123:38: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/nn/quantized/reference/modules/rnn.py:128:30: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/reference/modules/rnn.py:128:55: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/nn/quantized/reference/modules/rnn.py:134:40: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/reference/modules/rnn.py:134:62: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/nn/quantized/reference/modules/rnn.py:177:9: error[unresolved-attribute] Cannot assign object of type `str` to attribute `nonlinearity` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/quantized/reference/modules/rnn.py:196:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantized/reference/modules/rnn.py:203:19: error[unresolved-attribute] Module `torch._VF` has no member `rnn_tanh_cell` +torch/ao/nn/quantized/reference/modules/rnn.py:212:19: error[unresolved-attribute] Module `torch._VF` has no member `rnn_relu_cell` +torch/ao/nn/quantized/reference/modules/rnn.py:287:21: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantized/reference/modules/rnn.py:294:15: error[unresolved-attribute] Module `torch._VF` has no member `lstm_cell` +torch/ao/nn/quantized/reference/modules/rnn.py:362:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantized/reference/modules/rnn.py:368:15: error[unresolved-attribute] Module `torch._VF` has no member `gru_cell` +torch/ao/nn/quantized/reference/modules/rnn.py:431:28: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/nn/quantized/reference/modules/rnn.py:432:26: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/reference/modules/rnn.py:453:17: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/nn/quantized/reference/modules/rnn.py:454:17: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/nn/quantized/reference/modules/rnn.py:461:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/reference/modules/rnn.py:462:56: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/reference/modules/rnn.py:467:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/reference/modules/rnn.py:468:61: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/nn/quantized/reference/modules/rnn.py:471:38: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/nn/quantized/reference/modules/rnn.py:474:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/reference/modules/rnn.py:475:59: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/nn/quantized/reference/modules/rnn.py:481:40: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/reference/modules/rnn.py:481:62: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/nn/quantized/reference/modules/rnn.py:599:23: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantized/reference/modules/rnn.py:606:23: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantized/reference/modules/rnn.py:638:22: error[unresolved-attribute] Module `torch._VF` has no member `lstm` +torch/ao/nn/quantized/reference/modules/rnn.py:650:22: error[unresolved-attribute] Module `torch._VF` has no member `lstm` +torch/ao/nn/quantized/reference/modules/rnn.py:787:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/quantized/reference/modules/rnn.py:801:22: error[unresolved-attribute] Module `torch._VF` has no member `gru` +torch/ao/nn/quantized/reference/modules/rnn.py:813:22: error[unresolved-attribute] Module `torch._VF` has no member `gru` +torch/ao/nn/quantized/reference/modules/sparse.py:46:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/ao/nn/quantized/reference/modules/utils.py:16:28: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/nn/quantized/reference/modules/utils.py:17:26: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/reference/modules/utils.py:22:30: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/ao/nn/quantized/reference/modules/utils.py:23:9: error[unresolved-attribute] Cannot assign object of type `@Todo | float | int` to attribute `weight_dtype` on type `Self@_init_weight_qparams` with custom `__setattr__` method. +torch/ao/nn/quantized/reference/modules/utils.py:26:13: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/nn/quantized/reference/modules/utils.py:27:13: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/nn/quantized/reference/modules/utils.py:28:13: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/nn/quantized/reference/modules/utils.py:33:13: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/reference/modules/utils.py:34:13: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/reference/modules/utils.py:35:13: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/nn/quantized/reference/modules/utils.py:36:13: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/nn/quantized/reference/modules/utils.py:41:22: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/nn/quantized/reference/modules/utils.py:47:22: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/reference/modules/utils.py:47:50: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/reference/modules/utils.py:54:22: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/reference/modules/utils.py:58:17: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/nn/quantized/reference/modules/utils.py:59:17: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/nn/quantized/reference/modules/utils.py:65:26: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/reference/modules/utils.py:65:53: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/nn/quantized/reference/modules/utils.py:71:36: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/reference/modules/utils.py:71:58: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/nn/quantized/reference/modules/utils.py:76:33: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/reference/modules/utils.py:76:57: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/quantized/reference/modules/utils.py:79:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/reference/modules/utils.py:79:60: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/nn/quantized/reference/modules/utils.py:82:32: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/quantized/reference/modules/utils.py:82:54: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/nn/quantized/reference/modules/utils.py:194:21: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/ao/nn/quantized/reference/modules/utils.py:195:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/nn/quantized/reference/modules/utils.py:202:35: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/nn/quantized/reference/modules/utils.py:203:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/nn/quantized/reference/modules/utils.py:204:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/nn/quantized/reference/modules/utils.py:205:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/nn/quantized/reference/modules/utils.py:210:9: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/reference/modules/utils.py:210:23: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/nn/quantized/reference/modules/utils.py:211:9: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/reference/modules/utils.py:211:22: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/nn/quantized/reference/modules/utils.py:212:9: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/nn/quantized/reference/modules/utils.py:212:23: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/nn/quantized/reference/modules/utils.py:214:26: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/nn/quantized/reference/modules/utils.py:215:29: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/reference/modules/utils.py:215:43: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/reference/modules/utils.py:215:56: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/nn/quantized/reference/modules/utils.py:231:9: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/nn/quantized/reference/modules/utils.py:232:9: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/nn/quantized/reference/modules/utils.py:235:29: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/reference/modules/utils.py:235:43: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/reference/modules/utils.py:235:56: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/nn/quantized/reference/modules/utils.py:256:21: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/ao/nn/quantized/reference/modules/utils.py:257:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/nn/quantized/reference/modules/utils.py:265:35: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/nn/quantized/reference/modules/utils.py:266:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/nn/quantized/reference/modules/utils.py:267:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/nn/quantized/reference/modules/utils.py:268:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/nn/quantized/reference/modules/utils.py:272:9: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/reference/modules/utils.py:272:23: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/nn/quantized/reference/modules/utils.py:273:9: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/reference/modules/utils.py:273:22: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/nn/quantized/reference/modules/utils.py:274:9: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/nn/quantized/reference/modules/utils.py:274:23: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/nn/quantized/reference/modules/utils.py:279:26: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/nn/quantized/reference/modules/utils.py:280:29: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/reference/modules/utils.py:280:43: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/reference/modules/utils.py:280:56: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/nn/quantized/reference/modules/utils.py:291:9: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/nn/quantized/reference/modules/utils.py:292:9: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/nn/quantized/reference/modules/utils.py:295:29: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/reference/modules/utils.py:295:43: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/reference/modules/utils.py:295:56: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/nn/quantized/reference/modules/utils.py:311:21: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/ao/nn/quantized/reference/modules/utils.py:312:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/nn/quantized/reference/modules/utils.py:317:24: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/nn/quantized/reference/modules/utils.py:321:26: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/nn/quantized/reference/modules/utils.py:322:29: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/reference/modules/utils.py:322:43: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/reference/modules/utils.py:322:56: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/nn/quantized/reference/modules/utils.py:323:22: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/nn/quantized/reference/modules/utils.py:328:9: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/nn/quantized/reference/modules/utils.py:329:9: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/nn/quantized/reference/modules/utils.py:331:29: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/nn/quantized/reference/modules/utils.py:331:43: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/quantized/reference/modules/utils.py:331:56: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/nn/quantized/reference/modules/utils.py:331:72: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/nn/quantized/reference/modules/utils.py:332:22: error[unresolved-attribute] Module `torch` has no member `quantize_per_channel` +torch/ao/nn/quantized/reference/modules/utils.py:341:21: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/ao/nn/quantized/reference/modules/utils.py:342:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/nn/quantized/reference/modules/utils.py:353:9: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/nn/quantized/reference/modules/utils.py:354:9: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/nn/quantized/reference/modules/utils.py:355:9: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/nn/quantized/reference/modules/utils.py:384:21: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/ao/nn/quantized/reference/modules/utils.py:385:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/nn/quantized/reference/modules/utils.py:394:9: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/nn/quantized/reference/modules/utils.py:395:9: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/nn/quantized/reference/modules/utils.py:396:9: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/nn/quantized/reference/modules/utils.py:426:30: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/nn/quantized/reference/modules/utils.py:436:30: error[unresolved-attribute] Module `torch` has no member `quantize_per_channel` +torch/ao/nn/sparse/quantized/dynamic/linear.py:32:15: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/sparse/quantized/dynamic/linear.py:36:21: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/sparse/quantized/dynamic/linear.py:45:20: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/sparse/quantized/dynamic/linear.py:45:57: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/sparse/quantized/dynamic/linear.py:49:19: error[unresolved-attribute] Module `torch` has no member `_empty_affine_quantized` +torch/ao/nn/sparse/quantized/dynamic/linear.py:50:71: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/sparse/quantized/dynamic/linear.py:173:25: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/sparse/quantized/dynamic/linear.py:176:24: error[unresolved-attribute] Module `torch` has no member `any` +torch/ao/nn/sparse/quantized/linear.py:17:66: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/sparse/quantized/linear.py:20:21: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/sparse/quantized/linear.py:23:14: error[unresolved-attribute] Module `torch` has no member `_empty_affine_quantized` +torch/ao/nn/sparse/quantized/linear.py:24:52: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/sparse/quantized/linear.py:116:15: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/sparse/quantized/linear.py:120:21: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/sparse/quantized/linear.py:129:20: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/nn/sparse/quantized/linear.py:129:57: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/nn/sparse/quantized/linear.py:133:19: error[unresolved-attribute] Module `torch` has no member `_empty_affine_quantized` +torch/ao/nn/sparse/quantized/linear.py:134:71: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/sparse/quantized/linear.py:142:9: error[unresolved-attribute] Cannot assign object of type `float` to attribute `scale` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/sparse/quantized/linear.py:143:9: error[unresolved-attribute] Cannot assign object of type `Literal[0]` to attribute `zero_point` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/nn/sparse/quantized/linear.py:165:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/sparse/quantized/linear.py:166:46: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/nn/sparse/quantized/linear.py:178:9: error[unresolved-attribute] Cannot assign object of type `float` to attribute `scale` on type `Self@_load_from_state_dict` with custom `__setattr__` method. +torch/ao/nn/sparse/quantized/linear.py:181:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `zero_point` on type `Self@_load_from_state_dict` with custom `__setattr__` method. +torch/ao/nn/sparse/quantized/linear.py:249:25: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/nn/sparse/quantized/linear.py:252:24: error[unresolved-attribute] Module `torch` has no member `any` +torch/ao/ns/_numeric_suite.py:9:35: warning[deprecated] The function `prepare` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/ns/_numeric_suite.py:86:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/ns/_numeric_suite.py:166:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/ns/_numeric_suite.py:178:9: error[unresolved-attribute] Cannot assign object of type `dict[Unknown, Unknown]` to attribute `stats` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/ns/_numeric_suite.py:182:22: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/ns/_numeric_suite.py:367:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/ns/_numeric_suite.py:446:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/ns/_numeric_suite.py:468:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/ns/_numeric_suite.py:500:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/ns/_numeric_suite.py:508:5: warning[deprecated] The function `prepare` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/ns/_numeric_suite.py:512:5: warning[deprecated] The function `prepare` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/ns/_numeric_suite.py:559:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/ns/_numeric_suite_fx.py:180:9: error[unresolved-attribute] Cannot assign object of type `str` to attribute `ref_node_name` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/ns/_numeric_suite_fx.py:182:9: error[unresolved-attribute] Cannot assign object of type `str` to attribute `prev_node_name` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/ns/_numeric_suite_fx.py:185:9: error[unresolved-attribute] Cannot assign object of type `str` to attribute `model_name` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/ns/_numeric_suite_fx.py:188:9: error[unresolved-attribute] Cannot assign object of type `str` to attribute `ref_name` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/ns/_numeric_suite_fx.py:190:9: error[unresolved-attribute] Cannot assign object of type `str` to attribute `prev_node_target_type` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/ns/_numeric_suite_fx.py:193:9: error[unresolved-attribute] Cannot assign object of type `str` to attribute `ref_node_target_type` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/ns/_numeric_suite_fx.py:195:9: error[unresolved-attribute] Cannot assign object of type `str` to attribute `results_type` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/ns/_numeric_suite_fx.py:198:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `index_within_arg` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/ns/_numeric_suite_fx.py:201:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `index_of_arg` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/ns/_numeric_suite_fx.py:203:9: error[unresolved-attribute] Cannot assign object of type `str | None` to attribute `fqn` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/ns/_numeric_suite_fx.py:207:9: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `enabled` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/ns/_numeric_suite_fx.py:209:9: error[unresolved-attribute] Cannot assign object of type `str | None` to attribute `qconfig_str` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/ns/_numeric_suite_fx.py:211:9: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `save_activations` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/ns/_numeric_suite_fx.py:254:30: error[unresolved-attribute] Module `torch.ao.ns` has no member `fx` +torch/ao/ns/_numeric_suite_fx.py:255:9: error[unresolved-attribute] Cannot assign object of type `Literal["sqnr"]` to attribute `comparison_fn_name` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/ns/_numeric_suite_fx.py:257:9: error[unresolved-attribute] Cannot assign object of type `list[Unknown]` to attribute `comparisons` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/ns/_numeric_suite_fx.py:312:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/ns/_numeric_suite_fx.py:336:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/ns/_numeric_suite_fx.py:404:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/ns/_numeric_suite_fx.py:443:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/ns/_numeric_suite_fx.py:476:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/ns/_numeric_suite_fx.py:548:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/ns/_numeric_suite_fx.py:583:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/ns/_numeric_suite_fx.py:652:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/ns/_numeric_suite_fx.py:678:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/ns/_numeric_suite_fx.py:721:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/ns/_numeric_suite_fx.py:772:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/ns/_numeric_suite_fx.py:1096:67: warning[deprecated] The function `convert_fx` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/ns/fx/graph_matcher.py:99:33: error[invalid-argument-type] Argument to bound method `add` is incorrect: Expected `Node`, found `Node | Divergent | Sequence[Divergent] | ... omitted 14 union elements` +torch/ao/ns/fx/graph_matcher.py:102:24: warning[possibly-missing-attribute] Attribute `all_input_nodes` may be missing on object of type `Node | Divergent | Sequence[Divergent] | ... omitted 14 union elements` +torch/ao/ns/fx/graph_matcher.py:110:39: error[invalid-argument-type] Argument to bound method `_is_matchable` is incorrect: Expected `Node`, found `Node | Divergent | Sequence[Divergent] | ... omitted 14 union elements` +torch/ao/ns/fx/graph_matcher.py:124:17: error[invalid-argument-type] Argument is incorrect: Expected `Node`, found `Node | Divergent | Sequence[Divergent] | ... omitted 14 union elements` +torch/ao/ns/fx/graph_matcher.py:127:17: error[invalid-argument-type] Argument is incorrect: Expected `Node`, found `Node | Divergent | Sequence[Divergent] | ... omitted 14 union elements` +torch/ao/ns/fx/graph_passes.py:227:9: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/ns/fx/graph_passes.py:228:52: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/ns/fx/graph_passes.py:292:25: error[unresolved-attribute] Module `torch` has no member `dequantize` +torch/ao/ns/fx/graph_passes.py:315:35: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/ns/fx/graph_passes.py:647:43: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/ns/fx/mappings.py:63:13: error[unresolved-attribute] Module `torch` has no member `avg_pool1d` +torch/ao/ns/fx/mappings.py:67:13: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/ao/ns/fx/mappings.py:71:13: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/ao/ns/fx/mappings.py:92:13: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/ns/fx/mappings.py:97:13: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/ns/fx/mappings.py:101:13: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/ns/fx/mappings.py:110:13: error[unresolved-attribute] Module `torch` has no member `relu` +torch/ao/ns/fx/mappings.py:127:13: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/ao/ns/fx/mappings.py:241:13: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/ao/ns/fx/mappings.py:264:13: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/ao/ns/fx/mappings.py:268:13: error[unresolved-attribute] Module `torch` has no member `stack` +torch/ao/ns/fx/mappings.py:272:13: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/ao/ns/fx/mappings.py:276:13: error[unresolved-attribute] Module `torch` has no member `sort` +torch/ao/ns/fx/mappings.py:280:13: error[unresolved-attribute] Module `torch` has no member `repeat_interleave` +torch/ao/ns/fx/mappings.py:284:13: error[unresolved-attribute] Module `torch` has no member `min` +torch/ao/ns/fx/mappings.py:288:13: error[unresolved-attribute] Module `torch` has no member `mean` +torch/ao/ns/fx/mappings.py:292:13: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/ns/fx/mappings.py:296:13: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/ao/ns/fx/mappings.py:300:13: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/ao/ns/fx/mappings.py:304:13: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/ns/fx/mappings.py:308:13: error[unresolved-attribute] Module `torch` has no member `chunk` +torch/ao/ns/fx/mappings.py:324:13: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/ao/ns/fx/mappings.py:356:13: error[unresolved-attribute] Module `torch` has no member `narrow` +torch/ao/ns/fx/mappings.py:423:32: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `tuple[(...) -> Unknown, (...) -> Unknown]`, found `tuple[(...) -> Unknown, ((...) -> Unknown) | None]` +torch/ao/ns/fx/mappings.py:432:36: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `tuple[(...) -> Unknown, (...) -> Unknown]`, found `tuple[((...) -> Unknown) | str, (...) -> Unknown]` +torch/ao/ns/fx/mappings.py:497:9: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/ns/fx/mappings.py:507:9: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/ns/fx/mappings.py:509:9: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/ns/fx/mappings.py:510:9: error[unresolved-attribute] Module `torch` has no member `sum` +torch/ao/ns/fx/mappings.py:542:9: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/ao/ns/fx/mappings.py:544:9: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/ao/ns/fx/mappings.py:547:9: error[unresolved-attribute] Module `torch` has no member `adaptive_avg_pool1d` +torch/ao/ns/fx/mappings.py:560:9: error[unresolved-attribute] Module `torch` has no member `avg_pool1d` +torch/ao/ns/fx/mappings.py:561:9: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/ao/ns/fx/mappings.py:562:9: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/ao/ns/fx/mappings.py:563:9: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/ns/fx/mappings.py:564:9: error[unresolved-attribute] Module `torch` has no member `chunk` +torch/ao/ns/fx/mappings.py:565:9: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/ns/fx/mappings.py:566:9: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/ao/ns/fx/mappings.py:567:9: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/ao/ns/fx/mappings.py:568:9: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/ns/fx/mappings.py:569:9: error[unresolved-attribute] Module `torch` has no member `mean` +torch/ao/ns/fx/mappings.py:570:9: error[unresolved-attribute] Module `torch` has no member `min` +torch/ao/ns/fx/mappings.py:571:9: error[unresolved-attribute] Module `torch` has no member `narrow` +torch/ao/ns/fx/mappings.py:572:9: error[unresolved-attribute] Module `torch` has no member `repeat_interleave` +torch/ao/ns/fx/mappings.py:573:9: error[unresolved-attribute] Module `torch` has no member `sort` +torch/ao/ns/fx/mappings.py:574:9: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/ao/ns/fx/mappings.py:575:9: error[unresolved-attribute] Module `torch` has no member `stack` +torch/ao/ns/fx/mappings.py:576:9: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/ao/ns/fx/mappings.py:726:9: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/ns/fx/n_shadows_utils.py:29:5: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/ns/fx/n_shadows_utils.py:32:5: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/ns/fx/n_shadows_utils.py:409:55: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/ns/fx/n_shadows_utils.py:539:37: error[unresolved-attribute] Module `torch.ao.quantization` has no member `quantize_fx` +torch/ao/ns/fx/n_shadows_utils.py:1139:22: error[unresolved-attribute] Module `torch.ao.ns` has no member `fx` +torch/ao/ns/fx/n_shadows_utils.py:1336:30: error[unresolved-attribute] Module `torch` has no member `stack` +torch/ao/ns/fx/n_shadows_utils.py:1342:29: error[unresolved-attribute] Module `torch` has no member `mean` +torch/ao/ns/fx/pattern_utils.py:115:21: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/ns/fx/utils.py:149:45: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/ns/fx/utils.py:206:32: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/ns/fx/utils.py:341:25: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/ns/fx/utils.py:342:28: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/ns/fx/utils.py:460:24: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/ns/fx/utils.py:460:51: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/ns/fx/utils.py:483:17: error[unresolved-attribute] Module `torch` has no member `log10` +torch/ao/ns/fx/utils.py:499:12: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/ao/ns/fx/utils.py:525:13: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/ns/fx/utils.py:526:13: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/ns/fx/utils.py:529:13: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/ns/fx/utils.py:530:13: error[unresolved-attribute] Module `torch` has no member `stack` +torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:156:28: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:157:48: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:177:36: error[unresolved-attribute] Module `torch` has no member `index_select` +torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:181:37: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:182:65: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py:351:25: error[unresolved-attribute] Module `torch` has no member `index_select` +torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py:103:39: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py:214:42: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/ao/pruning/_experimental/data_sparsifier/benchmarks/dlrm_utils.py:35:13: error[unresolved-attribute] Module `torch` has no member `mm` +torch/ao/pruning/_experimental/data_sparsifier/benchmarks/evaluate_disk_savings.py:108:14: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/pruning/_experimental/data_sparsifier/benchmarks/evaluate_disk_savings.py:108:69: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/pruning/_experimental/data_sparsifier/benchmarks/evaluate_forward_time.py:98:14: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/pruning/_experimental/data_sparsifier/benchmarks/evaluate_forward_time.py:98:69: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/pruning/_experimental/data_sparsifier/benchmarks/evaluate_model_metrics.py:87:14: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/pruning/_experimental/data_sparsifier/benchmarks/evaluate_model_metrics.py:87:69: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:64:16: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:72:24: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:83:20: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:83:49: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:90:23: error[unresolved-attribute] Module `torch` has no member `ones` +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:103:25: error[unresolved-attribute] Module `torch` has no member `sort` +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:142:25: error[unresolved-attribute] Module `torch` has no member `sort` +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:173:25: error[unresolved-attribute] Module `torch` has no member `abs` +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:185:25: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:187:25: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py:204:21: error[unresolved-attribute] Module `torch` has no member `where` +torch/ao/pruning/_experimental/data_sparsifier/lightning/tests/test_callbacks.py:127:20: error[unresolved-attribute] Module `torch` has no member `all` +torch/ao/pruning/_experimental/data_sparsifier/lightning/tests/test_callbacks.py:132:13: error[unresolved-attribute] Module `importlib` has no member `util` +torch/ao/pruning/_experimental/data_sparsifier/lightning/tests/test_callbacks.py:222:20: error[unresolved-attribute] Module `torch` has no member `all` +torch/ao/pruning/_experimental/data_sparsifier/lightning/tests/test_callbacks.py:231:20: error[unresolved-attribute] Module `torch` has no member `all` +torch/ao/pruning/_experimental/data_sparsifier/lightning/tests/test_callbacks.py:280:13: error[unresolved-attribute] Module `importlib` has no member `util` +torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py:97:31: warning[deprecated] The function `prepare` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py:98:31: warning[deprecated] The function `convert` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py:105:31: warning[deprecated] The function `prepare` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py:106:31: warning[deprecated] The function `convert` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py:127:56: error[unresolved-attribute] Module `torch` has no member `dequantize` +torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py:146:34: error[unresolved-attribute] Module `torch` has no member `quantize_per_channel` +torch/ao/pruning/_experimental/pruner/FPGM_pruner.py:66:21: error[unresolved-attribute] Module `torch` has no member `stack` +torch/ao/pruning/_experimental/pruner/FPGM_pruner.py:73:20: error[unresolved-attribute] Module `torch` has no member `sum` +torch/ao/pruning/_experimental/pruner/FPGM_pruner.py:73:30: error[unresolved-attribute] Module `torch` has no member `abs` +torch/ao/pruning/_experimental/pruner/FPGM_pruner.py:84:25: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/ao/pruning/_experimental/pruner/FPGM_pruner.py:86:25: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/pruning/_experimental/pruner/FPGM_pruner.py:95:20: error[unresolved-attribute] Module `torch` has no member `topk` +torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:188:21: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:200:21: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:234:47: error[invalid-argument-type] Argument to bound method `make_config_from_model` is incorrect: Expected `set[type[Linear]]`, found `set[type] | Unknown` +torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:248:17: error[unresolved-attribute] Module `torch` has no member `ones` +torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py:248:51: error[unresolved-attribute] Module `torch` has no member `bool` +torch/ao/pruning/_experimental/pruner/prune_functions.py:52:27: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/ao/pruning/_experimental/pruner/prune_functions.py:53:43: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/ao/pruning/_experimental/pruner/prune_functions.py:58:25: error[unresolved-attribute] Module `torch` has no member `sum` +torch/ao/pruning/_experimental/pruner/prune_functions.py:60:25: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/ao/pruning/_experimental/pruner/prune_functions.py:61:28: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/ao/pruning/_experimental/pruner/prune_functions.py:207:24: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/pruning/_experimental/pruner/prune_functions.py:341:22: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/pruning/_experimental/pruner/prune_functions.py:342:56: error[unresolved-attribute] Module `torch` has no member `bool` +torch/ao/pruning/_experimental/pruner/prune_functions.py:349:35: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/pruning/_experimental/pruner/prune_functions.py:430:30: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/pruning/_experimental/pruner/prune_functions.py:460:25: error[unresolved-attribute] Cannot assign object of type `tuple[Unknown]` to attribute `normalized_shape` on type `LayerNorm` with custom `__setattr__` method. +torch/ao/pruning/sparsifier/base_sparsifier.py:129:34: error[unresolved-attribute] Module `torch` has no member `ones` +torch/ao/pruning/sparsifier/base_sparsifier.py:222:39: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py:40:21: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/pruning/sparsifier/utils.py:40:22: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[type[Module], type[Module]].__getitem__(key: type[Module], /) -> type[Module]` cannot be called with key of type `type` on object of type `dict[type[Module], type[Module]]` +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:99:20: error[unresolved-attribute] Module `torch` has no member `ones` +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:123:20: error[unresolved-attribute] Module `torch` has no member `ones` +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:126:25: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:129:25: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:148:25: error[unresolved-attribute] Module `torch` has no member `topk` +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:178:20: error[unresolved-attribute] Module `torch` has no member `ones` +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:182:25: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:186:23: error[unresolved-attribute] Module `torch` has no member `ones` +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:197:25: error[unresolved-attribute] Module `torch` has no member `topk` +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:231:25: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:233:25: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:249:31: error[unresolved-attribute] Module `torch` has no member `logical_or` +torch/ao/quantization/__init__.py:217:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/__init__.py:224:18: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/ao/quantization/_correct_bias.py:60:9: error[unresolved-attribute] Cannot assign object of type `Literal[0]` to attribute `count` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/_correct_bias.py:61:9: error[unresolved-attribute] Cannot assign object of type `None` to attribute `float_sum` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/_correct_bias.py:62:9: error[unresolved-attribute] Cannot assign object of type `None` to attribute `quant_sum` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/_correct_bias.py:91:9: error[unresolved-attribute] Cannot assign object of type `Literal[0]` to attribute `count` on type `Self@clear` with custom `__setattr__` method. +torch/ao/quantization/_correct_bias.py:92:9: error[unresolved-attribute] Cannot assign object of type `None` to attribute `float_sum` on type `Self@clear` with custom `__setattr__` method. +torch/ao/quantization/_correct_bias.py:93:9: error[unresolved-attribute] Cannot assign object of type `None` to attribute `quant_sum` on type `Self@clear` with custom `__setattr__` method. +torch/ao/quantization/_correct_bias.py:147:30: error[unresolved-attribute] Module `torch` has no member `mean` +torch/ao/quantization/_equalize.py:149:23: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/ao/quantization/_equalize.py:150:31: error[unresolved-attribute] Module `torch` has no member `reciprocal` +torch/ao/quantization/_equalize.py:162:23: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/ao/quantization/_equalize.py:163:31: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/ao/quantization/_equalize.py:270:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/_learnable_fake_quantize.py:50:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[0]` to attribute `quant_min` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/_learnable_fake_quantize.py:51:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[255]` to attribute `quant_max` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/_learnable_fake_quantize.py:55:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[False]` to attribute `use_grad_scaling` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/_learnable_fake_quantize.py:57:36: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/_learnable_fake_quantize.py:58:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/_learnable_fake_quantize.py:62:36: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/_learnable_fake_quantize.py:63:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/_learnable_fake_quantize.py:66:12: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/ao/quantization/_learnable_fake_quantize.py:68:24: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/ao/quantization/_learnable_fake_quantize.py:72:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[-1]` to attribute `ch_axis` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/_learnable_fake_quantize.py:77:52: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/_learnable_fake_quantize.py:77:76: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/_learnable_fake_quantize.py:78:48: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/_learnable_fake_quantize.py:78:72: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/_learnable_fake_quantize.py:79:50: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/_learnable_fake_quantize.py:79:74: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/_learnable_fake_quantize.py:81:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/_learnable_fake_quantize.py:82:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `bitwidth` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/_learnable_fake_quantize.py:82:29: error[unresolved-attribute] Module `torch` has no member `log2` +torch/ao/quantization/_learnable_fake_quantize.py:83:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/_learnable_fake_quantize.py:83:51: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/ao/quantization/_learnable_fake_quantize.py:83:63: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/_learnable_fake_quantize.py:170:17: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/_learnable_fake_quantize.py:171:17: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/_learnable_fake_quantize.py:179:33: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/_learnable_fake_quantize.py:179:62: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/quantization/_learnable_fake_quantize.py:180:21: error[unresolved-attribute] Module `torch` has no member `_fake_quantize_learnable_per_channel_affine` +torch/ao/quantization/_learnable_fake_quantize.py:190:21: error[unresolved-attribute] Module `torch` has no member `_fake_quantize_learnable_per_tensor_affine` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:104:11: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:111:11: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:123:5: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:128:5: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:148:9: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:150:9: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:155:52: error[unresolved-attribute] Module `torch` has no member `relu` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:168:30: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:474:30: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:625:9: error[unresolved-attribute] Module `torch` has no member `adaptive_avg_pool1d` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:638:9: error[unresolved-attribute] Module `torch` has no member `avg_pool1d` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:639:9: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:640:9: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:641:9: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:642:9: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:643:9: error[unresolved-attribute] Module `torch` has no member `mean` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:644:9: error[unresolved-attribute] Module `torch` has no member `narrow` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:645:9: error[unresolved-attribute] Module `torch` has no member `repeat_interleave` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:646:9: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:647:9: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:648:9: error[unresolved-attribute] Module `torch` has no member `stack` +torch/ao/quantization/backend_config/_common_operator_config_utils.py:649:9: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/ao/quantization/backend_config/_qnnpack_pt2e.py:14:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/_qnnpack_pt2e.py:15:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/_qnnpack_pt2e.py:16:18: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/_qnnpack_pt2e.py:17:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/backend_config.py:105:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/backend_config/backend_config.py:188:17: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/backend_config/backend_config.py:193:22: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/backend_config/backend_config.py:194:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/backend_config/backend_config.py:195:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/backend_config/backend_config.py:196:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/backend_config/backend_config.py:222:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/backend_config/backend_config.py:226:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/backend_config/backend_config.py:230:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/backend_config/backend_config.py:245:27: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/backend_config/backend_config.py:252:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/backend_config/backend_config.py:259:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/backend_config/backend_config.py:382:34: error[unresolved-attribute] Module `torch.ao.quantization` has no member `backend_config` +torch/ao/quantization/backend_config/executorch.py:41:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/executorch.py:42:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/executorch.py:43:18: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/executorch.py:44:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/executorch.py:48:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/executorch.py:49:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/executorch.py:53:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/executorch.py:54:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/executorch.py:55:18: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/executorch.py:56:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/executorch.py:61:11: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/executorch.py:66:11: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/executorch.py:74:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/executorch.py:76:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/executorch.py:81:17: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/executorch.py:82:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/executorch.py:83:18: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/executorch.py:84:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/executorch.py:89:17: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/executorch.py:90:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/executorch.py:91:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/executorch.py:315:9: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/backend_config/executorch.py:317:9: error[unresolved-attribute] Module `torch` has no member `sub` +torch/ao/quantization/backend_config/executorch.py:319:9: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/backend_config/executorch.py:324:18: error[unresolved-attribute] Module `torch` has no member `relu` +torch/ao/quantization/backend_config/executorch.py:371:9: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/quantization/backend_config/executorch.py:372:9: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/ao/quantization/backend_config/executorch.py:373:9: error[unresolved-attribute] Module `torch` has no member `mean` +torch/ao/quantization/backend_config/executorch.py:374:9: error[unresolved-attribute] Module `torch` has no member `permute` +torch/ao/quantization/backend_config/executorch.py:375:9: error[unresolved-attribute] Module `torch` has no member `permute_copy` +torch/ao/quantization/backend_config/executorch.py:376:9: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/ao/quantization/backend_config/executorch.py:421:30: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/quantization/backend_config/executorch.py:426:30: error[unresolved-attribute] Module `torch` has no member `concat` +torch/ao/quantization/backend_config/executorch.py:431:30: error[unresolved-attribute] Module `torch` has no member `concatenate` +torch/ao/quantization/backend_config/fbgemm.py:33:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/fbgemm.py:34:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/fbgemm.py:35:18: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/fbgemm.py:36:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/fbgemm.py:40:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/fbgemm.py:41:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/fbgemm.py:45:17: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/fbgemm.py:46:18: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/fbgemm.py:47:18: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/fbgemm.py:48:16: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/fbgemm.py:52:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/fbgemm.py:53:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/fbgemm.py:54:18: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/fbgemm.py:55:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/fbgemm.py:60:17: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/fbgemm.py:61:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/fbgemm.py:62:18: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/fbgemm.py:63:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/fbgemm.py:68:17: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/fbgemm.py:69:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/fbgemm.py:70:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/fbgemm.py:74:17: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/fbgemm.py:75:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/fbgemm.py:76:18: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/quantization/backend_config/native.py:42:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/native.py:43:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/native.py:44:18: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/native.py:45:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/native.py:49:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/native.py:50:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/native.py:54:17: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/native.py:55:18: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/native.py:56:18: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/native.py:57:16: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/native.py:61:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/native.py:62:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/native.py:63:18: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/native.py:64:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/native.py:72:17: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/native.py:73:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/native.py:74:18: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/native.py:75:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/native.py:84:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/native.py:85:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/native.py:86:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/native.py:87:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/native.py:91:17: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/native.py:92:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/native.py:93:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/native.py:97:17: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/native.py:98:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/native.py:99:18: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/quantization/backend_config/onednn.py:39:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/onednn.py:40:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/onednn.py:41:18: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/onednn.py:42:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/onednn.py:46:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/onednn.py:47:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/onednn.py:51:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/onednn.py:52:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/onednn.py:53:18: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/onednn.py:54:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/onednn.py:59:17: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/onednn.py:60:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/onednn.py:61:18: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/onednn.py:65:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/onednn.py:66:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/onednn.py:67:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/onednn.py:68:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/onednn.py:184:6: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/backend_config/onednn.py:267:6: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/backend_config/onednn.py:370:6: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/backend_config/onednn.py:463:6: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/backend_config/onednn.py:588:5: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/ao/quantization/backend_config/qnnpack.py:27:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/qnnpack.py:28:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/qnnpack.py:29:18: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/qnnpack.py:30:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/qnnpack.py:34:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/qnnpack.py:35:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/qnnpack.py:39:17: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/qnnpack.py:40:18: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/qnnpack.py:41:18: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/qnnpack.py:42:16: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/qnnpack.py:46:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/qnnpack.py:47:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/qnnpack.py:48:18: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/qnnpack.py:49:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/qnnpack.py:54:17: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/qnnpack.py:55:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/qnnpack.py:56:18: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/qnnpack.py:57:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/qnnpack.py:62:17: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/qnnpack.py:63:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/qnnpack.py:64:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/qnnpack.py:68:17: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/qnnpack.py:69:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/qnnpack.py:70:18: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/quantization/backend_config/qnnpack.py:86:11: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/qnnpack.py:91:11: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/qnnpack.py:101:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/tensorrt.py:34:21: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/tensorrt.py:35:22: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/tensorrt.py:36:22: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/tensorrt.py:37:20: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/tensorrt.py:40:21: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/tensorrt.py:41:22: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/tensorrt.py:45:30: error[unresolved-attribute] Module `torch` has no member `addmm` +torch/ao/quantization/backend_config/tensorrt.py:57:30: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/quantization/backend_config/utils.py:280:9: error[invalid-assignment] Not enough values to unpack: Expected 3 +torch/ao/quantization/backend_config/utils.py:280:9: error[invalid-assignment] Not enough values to unpack: Expected 3 +torch/ao/quantization/backend_config/x86.py:30:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/x86.py:31:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/x86.py:32:18: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/x86.py:33:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/x86.py:37:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/x86.py:38:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/x86.py:42:17: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/x86.py:43:18: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/x86.py:44:18: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/x86.py:45:16: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/x86.py:49:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/x86.py:50:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/x86.py:51:18: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/backend_config/x86.py:52:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/x86.py:57:17: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/x86.py:58:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/x86.py:59:18: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/backend_config/x86.py:60:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/x86.py:65:17: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/x86.py:66:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/x86.py:67:18: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/backend_config/x86.py:71:17: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/x86.py:72:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/backend_config/x86.py:73:18: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/quantization/experimental/adaround_fake_quantize.py:27:18: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/ao/quantization/experimental/adaround_fake_quantize.py:27:34: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/experimental/adaround_fake_quantize.py:48:23: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/ao/quantization/experimental/adaround_fake_quantize.py:55:22: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/experimental/adaround_fake_quantize.py:56:27: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/experimental/adaround_fake_quantize.py:57:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/experimental/adaround_fake_quantize.py:59:35: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/experimental/adaround_fake_quantize.py:60:36: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/experimental/adaround_fake_quantize.py:62:9: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `use_soft_rounding` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/experimental/adaround_fake_quantize.py:82:20: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/quantization/experimental/adaround_fake_quantize.py:103:35: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/quantization/experimental/adaround_fake_quantize.py:109:21: error[unresolved-attribute] Module `torch` has no member `floor` +torch/ao/quantization/experimental/adaround_fake_quantize.py:111:16: error[unresolved-attribute] Module `torch` has no member `all` +torch/ao/quantization/experimental/adaround_fake_quantize.py:111:26: error[unresolved-attribute] Module `torch` has no member `ge` +torch/ao/quantization/experimental/adaround_fake_quantize.py:113:19: error[unresolved-attribute] Module `torch` has no member `log` +torch/ao/quantization/experimental/adaround_fake_quantize.py:142:25: error[unresolved-attribute] Module `torch` has no member `floor` +torch/ao/quantization/experimental/adaround_fake_quantize.py:146:17: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/quantization/experimental/adaround_loss.py:26:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `max_iter` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/experimental/adaround_loss.py:27:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `warm_start` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/experimental/adaround_loss.py:28:9: error[unresolved-attribute] Cannot assign object of type `tuple[int, int]` to attribute `beta_range` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/experimental/adaround_loss.py:29:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `reg_param` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/experimental/adaround_loss.py:43:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/experimental/adaround_loss.py:57:23: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/quantization/experimental/adaround_loss.py:58:17: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/ao/quantization/experimental/adaround_loss.py:65:26: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/experimental/adaround_loss.py:66:35: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/experimental/adaround_optimization.py:33:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/experimental/adaround_optimization.py:33:30: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/experimental/adaround_optimization.py:36:18: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/ao/quantization/experimental/adaround_optimization.py:36:34: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/experimental/adaround_optimization.py:47:23: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/quantization/experimental/adaround_optimization.py:92:13: error[invalid-return-type] Return type does not match returned value: expected `Module`, found `object` +torch/ao/quantization/experimental/adaround_optimization.py:156:13: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `use_soft_rounding` on type `AdaroundFakeQuantizer` with custom `__setattr__` method. +torch/ao/quantization/experimental/adaround_optimization.py:159:13: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `use_soft_rounding` on type `AdaroundFakeQuantizer` with custom `__setattr__` method. +torch/ao/quantization/experimental/adaround_optimization.py:190:12: error[unresolved-attribute] Module `torch` has no member `abs` +torch/ao/quantization/experimental/adaround_optimization.py:196:22: error[unresolved-attribute] Module `torch` has no member `vstack` +torch/ao/quantization/experimental/adaround_optimization.py:197:22: error[unresolved-attribute] Module `torch` has no member `vstack` +torch/ao/quantization/experimental/adaround_optimization.py:205:57: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/experimental/adaround_optimization.py:205:57: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/experimental/adaround_optimization.py:249:9: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `use_soft_rounding` on type `AdaroundFakeQuantizer` with custom `__setattr__` method. +torch/ao/quantization/experimental/linear.py:40:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `b` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/experimental/linear.py:41:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `k` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/experimental/linear.py:42:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `n` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/experimental/linear.py:63:34: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/ao/quantization/experimental/linear.py:126:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/experimental/linear.py:141:52: error[unresolved-attribute] Module `torch` has no member `FloatTensor` +torch/ao/quantization/experimental/linear.py:166:66: error[unresolved-attribute] Module `torch` has no member `FloatTensor` +torch/ao/quantization/experimental/observer.py:25:36: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/experimental/observer.py:30:24: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/experimental/observer.py:31:24: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/experimental/observer.py:58:17: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/quantization/experimental/observer.py:76:22: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/experimental/observer.py:80:28: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/experimental/observer.py:81:26: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/quantization/experimental/observer.py:84:30: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/quantization/experimental/observer.py:84:49: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/experimental/observer.py:88:36: error[unresolved-attribute] Module `torch` has no member `sort` +torch/ao/quantization/experimental/observer.py:123:31: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/experimental/observer.py:124:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/experimental/observer.py:137:28: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/ao/quantization/experimental/observer.py:139:23: error[unresolved-attribute] Module `torch` has no member `min` +torch/ao/quantization/experimental/observer.py:141:23: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/quantization/experimental/observer.py:154:16: error[unresolved-import] Cannot resolve imported module `matplotlib.pyplot` +torch/ao/quantization/experimental/qconfig.py:12:38: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/experimental/qconfig.py:12:72: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/experimental/qconfig.py:19:38: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/experimental/qconfig.py:19:72: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/experimental/qconfig.py:31:55: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/experimental/qconfig.py:36:59: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/experimental/qconfig.py:37:55: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/experimental/qconfig.py:49:55: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/experimental/qconfig.py:54:59: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/experimental/qconfig.py:55:55: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/experimental/quantizer.py:43:18: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/experimental/quantizer.py:84:18: error[unresolved-attribute] Module `torch` has no member `from_numpy` +torch/ao/quantization/fake_quantize.py:50:31: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/ao/quantization/fake_quantize.py:52:9: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/fake_quantize.py:53:9: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/quantization/fake_quantize.py:54:9: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/quantization/fake_quantize.py:58:30: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/ao/quantization/fake_quantize.py:59:24: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/fake_quantize.py:59:52: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/fake_quantize.py:62:35: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/ao/quantization/fake_quantize.py:63:24: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/fake_quantize.py:63:52: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/fake_quantize.py:66:33: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/ao/quantization/fake_quantize.py:67:23: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/quantization/fake_quantize.py:92:52: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fake_quantize.py:92:76: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/fake_quantize.py:93:50: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fake_quantize.py:93:74: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/fake_quantize.py:182:50: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fake_quantize.py:190:16: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/ao/quantization/fake_quantize.py:193:28: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/ao/quantization/fake_quantize.py:204:32: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/fake_quantize.py:206:32: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/fake_quantize.py:207:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fake_quantize.py:207:65: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/fake_quantize.py:208:44: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fake_quantize.py:211:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[-1]` to attribute `ch_axis` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/fake_quantize.py:222:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `is_per_channel` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/fake_quantize.py:244:21: error[unresolved-attribute] Module `torch` has no member `fake_quantize_per_channel_affine` +torch/ao/quantization/fake_quantize.py:253:21: error[unresolved-attribute] Module `torch` has no member `fake_quantize_per_tensor_affine` +torch/ao/quantization/fake_quantize.py:404:52: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fake_quantize.py:404:76: error[unresolved-attribute] Module `torch` has no member `long` +torch/ao/quantization/fake_quantize.py:405:50: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fake_quantize.py:405:74: error[unresolved-attribute] Module `torch` has no member `long` +torch/ao/quantization/fake_quantize.py:406:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `is_symmetric_quant` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/fake_quantize.py:424:16: error[unresolved-attribute] Module `torch` has no member `fused_moving_avg_obs_fake_quant` +torch/ao/quantization/fake_quantize.py:445:11: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fake_quantize.py:446:13: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/fake_quantize.py:457:11: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fake_quantize.py:458:13: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/fake_quantize.py:471:11: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fake_quantize.py:494:11: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fake_quantize.py:495:13: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/fake_quantize.py:505:13: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/quantization/fake_quantize.py:506:11: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fake_quantize.py:519:13: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/quantization/fake_quantize.py:521:11: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/quantization/fake_quantize.py:529:11: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fake_quantize.py:530:13: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/fake_quantize.py:542:11: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fake_quantize.py:554:11: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fake_quantize.py:555:13: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/fake_quantize.py:565:11: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fake_quantize.py:566:13: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/fake_quantize.py:576:11: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fake_quantize.py:577:13: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/fake_quantize.py:589:15: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fake_quantize.py:590:17: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/fx/_decomposed.py:14:20: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/fx/_decomposed.py:14:33: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/fx/_decomposed.py:14:45: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/ao/quantization/fx/_decomposed.py:14:59: error[unresolved-attribute] Module `torch` has no member `int16` +torch/ao/quantization/fx/_decomposed.py:14:72: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/fx/_decomposed.py:15:18: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/ao/quantization/fx/_decomposed.py:15:37: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/ao/quantization/fx/_decomposed.py:18:9: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/ao/quantization/fx/_decomposed.py:18:29: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/ao/quantization/fx/_decomposed.py:21:14: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/ao/quantization/fx/_decomposed.py:21:39: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/ao/quantization/fx/_decomposed.py:57:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:74:24: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/_decomposed.py:74:39: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/ao/quantization/fx/_decomposed.py:75:26: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:76:23: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:83:12: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/quantization/fx/_decomposed.py:84:9: error[unresolved-attribute] Module `torch` has no member `round` +torch/ao/quantization/fx/_decomposed.py:95:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:97:24: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/_decomposed.py:97:39: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/ao/quantization/fx/_decomposed.py:98:26: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:99:23: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:103:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/ao/quantization/fx/_decomposed.py:121:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:153:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:155:24: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/_decomposed.py:155:39: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/ao/quantization/fx/_decomposed.py:156:26: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:165:23: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:169:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/ao/quantization/fx/_decomposed.py:188:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:220:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:249:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:251:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:284:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:301:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:303:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:306:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:307:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/ao/quantization/fx/_decomposed.py:327:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:329:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:362:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:364:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:367:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:381:16: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/ao/quantization/fx/_decomposed.py:404:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:406:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:441:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:456:67: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:472:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:473:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/_decomposed.py:474:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/ao/quantization/fx/_decomposed.py:485:24: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/ao/quantization/fx/_decomposed.py:510:67: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:526:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:527:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/_decomposed.py:528:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/ao/quantization/fx/_decomposed.py:539:24: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/ao/quantization/fx/_decomposed.py:548:17: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/fx/_decomposed.py:554:77: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:557:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:558:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/_decomposed.py:559:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/ao/quantization/fx/_decomposed.py:568:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/ao/quantization/fx/_decomposed.py:568:33: error[unresolved-attribute] Module `torch` has no member `double` +torch/ao/quantization/fx/_decomposed.py:568:69: error[unresolved-attribute] Module `torch` has no member `empty` +torch/ao/quantization/fx/_decomposed.py:569:18: error[unresolved-attribute] Module `torch` has no member `int64` +torch/ao/quantization/fx/_decomposed.py:575:77: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:577:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/ao/quantization/fx/_decomposed.py:577:33: error[unresolved-attribute] Module `torch` has no member `double` +torch/ao/quantization/fx/_decomposed.py:577:69: error[unresolved-attribute] Module `torch` has no member `empty` +torch/ao/quantization/fx/_decomposed.py:578:18: error[unresolved-attribute] Module `torch` has no member `int64` +torch/ao/quantization/fx/_decomposed.py:605:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:624:24: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/_decomposed.py:624:39: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/ao/quantization/fx/_decomposed.py:625:26: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:626:23: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:640:11: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/quantization/fx/_decomposed.py:641:9: error[unresolved-attribute] Module `torch` has no member `round` +torch/ao/quantization/fx/_decomposed.py:655:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:657:24: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/_decomposed.py:657:39: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/ao/quantization/fx/_decomposed.py:658:26: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:659:23: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:666:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/ao/quantization/fx/_decomposed.py:687:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:689:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:724:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:752:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:754:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:761:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:765:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/ao/quantization/fx/_decomposed.py:780:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:796:24: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/_decomposed.py:800:17: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/fx/_decomposed.py:809:19: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/quantization/fx/_decomposed.py:820:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:823:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/ao/quantization/fx/_decomposed.py:823:36: error[unresolved-attribute] Module `torch` has no member `double` +torch/ao/quantization/fx/_decomposed.py:823:72: error[unresolved-attribute] Module `torch` has no member `empty` +torch/ao/quantization/fx/_decomposed.py:824:21: error[unresolved-attribute] Module `torch` has no member `int64` +torch/ao/quantization/fx/_decomposed.py:840:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:856:15: error[unresolved-attribute] Module `torch` has no member `amin` +torch/ao/quantization/fx/_decomposed.py:857:15: error[unresolved-attribute] Module `torch` has no member `amax` +torch/ao/quantization/fx/_decomposed.py:858:19: error[unresolved-attribute] Module `torch` has no member `min` +torch/ao/quantization/fx/_decomposed.py:858:38: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/quantization/fx/_decomposed.py:859:19: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/quantization/fx/_decomposed.py:859:38: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/quantization/fx/_decomposed.py:860:11: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/ao/quantization/fx/_decomposed.py:860:23: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:871:18: error[unresolved-attribute] Module `torch` has no member `where` +torch/ao/quantization/fx/_decomposed.py:876:18: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/quantization/fx/_decomposed.py:878:21: error[unresolved-attribute] Module `torch` has no member `float64` +torch/ao/quantization/fx/_decomposed.py:878:51: error[unresolved-attribute] Module `torch` has no member `int64` +torch/ao/quantization/fx/_decomposed.py:893:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:905:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:908:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/ao/quantization/fx/_decomposed.py:908:36: error[unresolved-attribute] Module `torch` has no member `double` +torch/ao/quantization/fx/_decomposed.py:908:72: error[unresolved-attribute] Module `torch` has no member `empty` +torch/ao/quantization/fx/_decomposed.py:909:21: error[unresolved-attribute] Module `torch` has no member `int64` +torch/ao/quantization/fx/_decomposed.py:936:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:975:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:978:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/ao/quantization/fx/_decomposed.py:994:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:995:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:995:33: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:1028:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:1029:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:1029:33: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:1033:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/ao/quantization/fx/_decomposed.py:1052:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:1068:8: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/ao/quantization/fx/_decomposed.py:1093:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:1124:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/ao/quantization/fx/_decomposed.py:1144:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:1146:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:1146:33: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:1182:14: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/fx/_decomposed.py:1182:36: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/fx/_decomposed.py:1197:28: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:1198:32: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:1199:33: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/fx/_decomposed.py:1200:42: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/fx/_decomposed.py:1201:27: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/_decomposed.py:1210:16: error[unresolved-attribute] Module `torch` has no member `round` +torch/ao/quantization/fx/_decomposed.py:1212:13: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/quantization/fx/_decomposed.py:1214:16: error[unresolved-attribute] Module `torch` has no member `logical_and` +torch/ao/quantization/fx/_decomposed.py:1249:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/ao/quantization/fx/_decomposed.py:1262:54: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:1267:59: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_decomposed.py:1268:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/ao/quantization/fx/_equalize.py:39:5: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/fx/_equalize.py:39:30: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/quantization/fx/_equalize.py:40:5: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/fx/_equalize.py:40:33: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/fx/_equalize.py:65:15: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fx/_equalize.py:66:17: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/fx/_equalize.py:73:28: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/fx/_equalize.py:73:53: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/fx/_equalize.py:89:35: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_equalize.py:110:73: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_equalize.py:112:35: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/ao/quantization/fx/_equalize.py:120:44: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_equalize.py:136:28: error[unresolved-attribute] Module `torch` has no member `min` +torch/ao/quantization/fx/_equalize.py:136:38: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/_equalize.py:137:28: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/quantization/fx/_equalize.py:137:38: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/_equalize.py:167:15: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fx/_equalize.py:168:17: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/fx/_equalize.py:177:9: error[unresolved-attribute] Cannot assign object of type `Literal[1]` to attribute `ch_axis` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/fx/_equalize.py:180:24: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/fx/_equalize.py:180:49: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/fx/_equalize.py:191:35: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_equalize.py:233:16: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_equalize.py:241:26: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/ao/quantization/fx/_equalize.py:246:26: error[unresolved-attribute] Module `torch` has no member `nan_to_num` +torch/ao/quantization/fx/_equalize.py:285:11: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fx/_equalize.py:285:33: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/fx/_equalize.py:288:11: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fx/_equalize.py:288:32: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/fx/_equalize.py:492:55: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_equalize.py:566:21: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/_equalize.py:566:39: error[unresolved-attribute] Module `torch` has no member `reciprocal` +torch/ao/quantization/fx/_equalize.py:575:21: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/_equalize.py:588:19: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/_equalize.py:640:21: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/_equalize.py:640:39: error[unresolved-attribute] Module `torch` has no member `reciprocal` +torch/ao/quantization/fx/_equalize.py:651:21: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/_equalize.py:654:12: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/ao/quantization/fx/_equalize.py:672:19: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/_equalize.py:854:69: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/_equalize.py:871:43: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_equalize.py:884:21: error[invalid-argument-type] Argument to function `scale_weight_node` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/ao/quantization/fx/_equalize.py:893:21: error[invalid-argument-type] Argument to function `scale_weight_functional` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/ao/quantization/fx/_equalize.py:960:51: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/_equalize.py:981:9: error[unresolved-attribute] Module `torch.ao.ns` has no member `fx` +torch/ao/quantization/fx/_lower_to_native_backend.py:58:9: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/ao/quantization/fx/_lower_to_native_backend.py:59:9: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/ao/quantization/fx/_lower_to_native_backend.py:111:9: error[unresolved-attribute] Module `torch` has no member `adaptive_avg_pool1d` +torch/ao/quantization/fx/_lower_to_native_backend.py:122:9: error[unresolved-attribute] Module `torch` has no member `avg_pool1d` +torch/ao/quantization/fx/_lower_to_native_backend.py:123:9: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/ao/quantization/fx/_lower_to_native_backend.py:124:9: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/ao/quantization/fx/_lower_to_native_backend.py:125:9: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/quantization/fx/_lower_to_native_backend.py:126:9: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/ao/quantization/fx/_lower_to_native_backend.py:127:9: error[unresolved-attribute] Module `torch` has no member `mean` +torch/ao/quantization/fx/_lower_to_native_backend.py:131:9: error[unresolved-attribute] Module `torch` has no member `channel_shuffle` +torch/ao/quantization/fx/_lower_to_native_backend.py:159:9: error[unresolved-attribute] Module `torch` has no member `narrow` +torch/ao/quantization/fx/_lower_to_native_backend.py:160:9: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/ao/quantization/fx/_lower_to_native_backend.py:161:9: error[unresolved-attribute] Module `torch` has no member `repeat_interleave` +torch/ao/quantization/fx/_lower_to_native_backend.py:162:9: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/ao/quantization/fx/_lower_to_native_backend.py:163:9: error[unresolved-attribute] Module `torch` has no member `stack` +torch/ao/quantization/fx/_lower_to_native_backend.py:164:9: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/ao/quantization/fx/_lower_to_native_backend.py:196:9: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/quantization/fx/_lower_to_native_backend.py:363:26: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_lower_to_native_backend.py:363:39: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/_lower_to_native_backend.py:366:10: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fx/_lower_to_native_backend.py:366:24: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fx/_lower_to_native_backend.py:370:10: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/_lower_to_native_backend.py:370:25: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/_lower_to_native_backend.py:377:10: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fx/_lower_to_native_backend.py:377:24: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fx/_lower_to_native_backend.py:380:10: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fx/_lower_to_native_backend.py:380:24: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fx/_lower_to_native_backend.py:383:10: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fx/_lower_to_native_backend.py:383:24: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fx/_lower_to_native_backend.py:402:5: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/fx/_lower_to_native_backend.py:405:5: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/_lower_to_native_backend.py:406:5: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/ao/quantization/fx/_lower_to_native_backend.py:410:5: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/fx/_lower_to_native_backend.py:412:5: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/_lower_to_native_backend.py:421:39: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/ao/quantization/fx/_lower_to_native_backend.py:440:36: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/ao/quantization/fx/_lower_to_native_backend.py:584:53: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/quantization/fx/_lower_to_native_backend.py:592:72: error[unresolved-attribute] Module `torch` has no member `relu` +torch/ao/quantization/fx/_lower_to_native_backend.py:664:53: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/quantization/fx/_lower_to_native_backend.py:861:47: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor_dynamic` +torch/ao/quantization/fx/_lower_to_native_backend.py:866:39: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/_lower_to_native_backend.py:867:40: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fx/_lower_to_native_backend.py:867:54: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fx/_lower_to_native_backend.py:945:13: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/quantization/fx/_lower_to_native_backend.py:946:13: error[unresolved-attribute] Module `torch` has no member `quantize_per_channel` +torch/ao/quantization/fx/_lower_to_native_backend.py:1072:47: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor_dynamic` +torch/ao/quantization/fx/_lower_to_native_backend.py:1078:39: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/_lower_to_native_backend.py:1079:40: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fx/_lower_to_native_backend.py:1079:54: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fx/_lower_to_native_backend.py:1154:9: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/fx/_lower_to_native_backend.py:1156:9: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/_lower_to_native_backend.py:1157:9: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/ao/quantization/fx/_lower_to_native_backend.py:1227:40: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/quantization/fx/_lower_to_native_backend.py:1232:35: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/_model_report/detector.py:1059:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/detector.py:1060:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/detector.py:1072:21: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/ao/quantization/fx/_model_report/detector.py:1074:40: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/ao/quantization/fx/_model_report/detector.py:1076:48: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/ao/quantization/fx/_model_report/detector.py:1077:31: error[unresolved-attribute] Module `torch` has no member `min` +torch/ao/quantization/fx/_model_report/detector.py:1078:31: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/quantization/fx/_model_report/detector.py:1178:17: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/ao/quantization/fx/_model_report/detector.py:1178:44: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/ao/quantization/fx/_model_report/model_report_observer.py:56:26: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fx/_model_report/model_report_observer.py:60:61: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:61:54: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:62:54: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:66:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:67:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:70:49: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:71:58: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:72:60: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:73:51: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:95:36: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/ao/quantization/fx/_model_report/model_report_observer.py:98:25: error[unresolved-attribute] Module `torch` has no member `min` +torch/ao/quantization/fx/_model_report/model_report_observer.py:99:25: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/quantization/fx/_model_report/model_report_observer.py:137:13: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/ao/quantization/fx/_model_report/model_report_observer.py:139:32: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/ao/quantization/fx/_model_report/model_report_observer.py:141:40: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/ao/quantization/fx/_model_report/model_report_observer.py:142:23: error[unresolved-attribute] Module `torch` has no member `min` +torch/ao/quantization/fx/_model_report/model_report_observer.py:143:23: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/quantization/fx/_model_report/model_report_observer.py:171:13: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/ao/quantization/fx/_model_report/model_report_observer.py:178:29: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:181:29: error[unresolved-attribute] Module `torch` has no member `quantile` +torch/ao/quantization/fx/_model_report/model_report_observer.py:190:30: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:191:35: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:199:14: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:212:27: error[unresolved-attribute] Module `torch` has no member `nan_to_num` +torch/ao/quantization/fx/_model_report/model_report_observer.py:221:47: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/quantization/fx/_model_report/model_report_observer.py:224:45: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/quantization/fx/_model_report/model_report_observer.py:228:38: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/quantization/fx/_model_report/model_report_observer.py:239:22: error[unresolved-attribute] Module `torch` has no member `nan_to_num` +torch/ao/quantization/fx/_model_report/model_report_observer.py:257:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:259:40: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:272:47: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:273:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:274:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:275:24: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:276:24: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:277:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:278:43: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_observer.py:279:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/_model_report/model_report_visualizer.py:19:12: error[unresolved-import] Cannot resolve imported module `matplotlib.pyplot` +torch/ao/quantization/fx/convert.py:77:5: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fx/convert.py:78:5: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fx/convert.py:79:5: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/quantization/fx/convert.py:80:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/fx/convert.py:81:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/fx/convert.py:82:5: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/ao/quantization/fx/convert.py:83:5: error[unresolved-attribute] Module `torch` has no member `int16` +torch/ao/quantization/fx/convert.py:84:5: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/fx/convert.py:85:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/ao/quantization/fx/convert.py:86:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/ao/quantization/fx/convert.py:90:5: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/fx/convert.py:91:5: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/fx/convert.py:101:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/quantization/fx/convert.py:156:32: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/convert.py:352:19: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/convert.py:358:65: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/convert.py:361:72: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/fx/convert.py:376:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/quantization/fx/convert.py:419:9: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fx/convert.py:420:9: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fx/convert.py:421:9: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/quantization/fx/convert.py:422:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/ao/quantization/fx/convert.py:423:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/ao/quantization/fx/convert.py:443:27: error[unresolved-attribute] Module `torch` has no member `quantize_per_channel` +torch/ao/quantization/fx/convert.py:448:27: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/quantization/fx/convert.py:482:23: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor_dynamic` +torch/ao/quantization/fx/convert.py:500:19: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/convert.py:549:9: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `bool | (Tensor & ~AlwaysFalsy) | (Module & ~AlwaysFalsy) | @Todo` +torch/ao/quantization/fx/convert.py:551:21: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/convert.py:716:22: error[unresolved-attribute] Module `torch.ao.quantization` has no member `quantize_fx` +torch/ao/quantization/fx/convert.py:768:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/quantization/fx/convert.py:894:23: error[no-matching-overload] No overload of bound method `get` matches arguments +torch/ao/quantization/fx/convert.py:1081:63: error[invalid-argument-type] Argument to bound method `from_dict` is incorrect: Expected `dict[str, Any]`, found `(ConvertCustomConfig & Top[dict[Unknown, Unknown]]) | dict[str, Any]` +torch/ao/quantization/fx/convert.py:1091:38: error[invalid-argument-type] Argument to bound method `from_dict` is incorrect: Expected `dict[str, Any]`, found `(QConfigMapping & Top[dict[Unknown, Unknown]] & ~AlwaysFalsy) | (dict[str, Any] & ~AlwaysFalsy)` +torch/ao/quantization/fx/convert.py:1104:50: error[invalid-argument-type] Argument to bound method `from_dict` is incorrect: Expected `dict[str, Any]`, found `(BackendConfig & Top[dict[Unknown, Unknown]]) | dict[str, Any]` +torch/ao/quantization/fx/fuse.py:49:57: error[invalid-argument-type] Argument to bound method `from_dict` is incorrect: Expected `dict[str, Any]`, found `(FuseCustomConfig & Top[dict[Unknown, Unknown]]) | dict[str, Any]` +torch/ao/quantization/fx/fuse.py:58:50: error[invalid-argument-type] Argument to bound method `from_dict` is incorrect: Expected `dict[str, Any]`, found `(BackendConfig & Top[dict[Unknown, Unknown]]) | dict[str, Any]` +torch/ao/quantization/fx/fuse_handler.py:89:21: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `training` on type `ReLU` with custom `__setattr__` method. +torch/ao/quantization/fx/graph_module.py:25:9: error[unresolved-attribute] Cannot assign object of type `set[str]` to attribute `preserved_attr_names` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/fx/graph_module.py:40:9: error[unresolved-attribute] Cannot assign object of type `dict[str, Any]` to attribute `__dict__` on type `Module` with custom `__setattr__` method. +torch/ao/quantization/fx/graph_module.py:55:9: error[unresolved-attribute] Cannot assign object of type `set[Unknown | str]` to attribute `preserved_attr_names` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/fx/graph_module.py:81:9: error[unresolved-attribute] Cannot assign object of type `dict[str, Any]` to attribute `__dict__` on type `Module` with custom `__setattr__` method. +torch/ao/quantization/fx/graph_module.py:118:9: error[unresolved-attribute] Cannot assign object of type `dict[str, Any]` to attribute `__dict__` on type `Module` with custom `__setattr__` method. +torch/ao/quantization/fx/graph_module.py:136:39: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/ao/quantization/fx/graph_module.py:155:9: error[unresolved-attribute] Cannot assign object of type `set[str]` to attribute `preserved_attr_names` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/fx/graph_module.py:179:40: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/ao/quantization/fx/graph_module.py:200:9: error[unresolved-attribute] Cannot assign object of type `dict[str, Any]` to attribute `__dict__` on type `Module` with custom `__setattr__` method. +torch/ao/quantization/fx/lstm_utils.py:15:72: warning[deprecated] The function `prepare_fx` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/quantization/fx/lstm_utils.py:114:16: warning[deprecated] The function `prepare_fx` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/quantization/fx/lstm_utils.py:122:18: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/fx/lstm_utils.py:123:18: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/lstm_utils.py:124:18: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/lstm_utils.py:125:18: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/fx/lstm_utils.py:126:18: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/lstm_utils.py:130:18: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/fx/lstm_utils.py:131:18: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/fx/lstm_utils.py:132:18: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/fx/lstm_utils.py:133:18: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/fx/lstm_utils.py:134:18: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/lstm_utils.py:135:18: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/lstm_utils.py:136:18: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/fx/lstm_utils.py:137:18: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/lstm_utils.py:143:31: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/fx/lstm_utils.py:144:29: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/fx/lstm_utils.py:146:33: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/lstm_utils.py:147:29: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/fx/lstm_utils.py:211:31: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/ao/quantization/fx/prepare.py:30:44: warning[deprecated] The function `convert` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/quantization/fx/prepare.py:90:39: error[unresolved-attribute] Module `torch` has no member `bool` +torch/ao/quantization/fx/prepare.py:92:5: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fx/prepare.py:93:5: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fx/prepare.py:94:5: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/quantization/fx/prepare.py:95:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/prepare.py:96:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/fx/prepare.py:97:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/fx/prepare.py:98:5: error[unresolved-attribute] Module `torch` has no member `int16` +torch/ao/quantization/fx/prepare.py:99:5: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/fx/prepare.py:100:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/ao/quantization/fx/prepare.py:101:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/ao/quantization/fx/prepare.py:104:67: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/fx/prepare.py:233:53: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/fx/prepare.py:253:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/prepare.py:362:32: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/fx/prepare.py:388:35: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fx/prepare.py:388:49: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/fx/prepare.py:470:5: warning[deprecated] The function `convert` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/quantization/fx/prepare.py:487:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/quantization/fx/prepare.py:621:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/prepare.py:623:30: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/prepare.py:624:37: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/prepare.py:627:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/fx/prepare.py:746:6: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/prepare.py:821:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/quantization/fx/prepare.py:927:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/fx/prepare.py:929:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/fx/prepare.py:933:49: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/fx/prepare.py:964:9: error[invalid-assignment] Invalid subscript assignment with key of type `tuple[Node & ~Top[list[Unknown]] & ~tuple[object, ...], Node | Any]` and value of type `ObserverBase | Module | (@Todo & ~None)` on object of type `dict[tuple[Node, Node] | Node, ObserverBase | FakeQuantizeBase]` +torch/ao/quantization/fx/prepare.py:968:17: error[invalid-argument-type] Argument to function `_insert_obs_or_fq` is incorrect: Expected `ObserverBase | FakeQuantizeBase`, found `ObserverBase | Module | (@Todo & ~None)` +torch/ao/quantization/fx/prepare.py:993:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/quantization/fx/prepare.py:1155:9: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/fx/prepare.py:1177:9: error[invalid-assignment] Invalid subscript assignment with key of type `Node` and value of type `Unknown | None` on object of type `dict[tuple[Node, Node] | Node, ObserverBase | FakeQuantizeBase]` +torch/ao/quantization/fx/prepare.py:1179:19: error[invalid-argument-type] Argument to function `_insert_obs_or_fq` is incorrect: Expected `ObserverBase | FakeQuantizeBase`, found `Unknown | None` +torch/ao/quantization/fx/prepare.py:1227:41: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/fx/prepare.py:1238:50: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/fx/prepare.py:1287:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/prepare.py:1678:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/ao/quantization/fx/prepare.py:2068:52: error[invalid-argument-type] Argument to bound method `from_dict` is incorrect: Expected `dict[str, Any]`, found `(QConfigMapping & Top[dict[Unknown, Unknown]]) | dict[str, Any]` +torch/ao/quantization/fx/prepare.py:2077:57: error[invalid-argument-type] Argument to bound method `from_dict` is incorrect: Expected `dict[str, Any]`, found `(QConfigMapping & Top[dict[Unknown, Unknown]]) | dict[str, Any]` +torch/ao/quantization/fx/prepare.py:2086:63: error[invalid-argument-type] Argument to bound method `from_dict` is incorrect: Expected `dict[str, Any]`, found `(PrepareCustomConfig & Top[dict[Unknown, Unknown]]) | dict[str, Any]` +torch/ao/quantization/fx/prepare.py:2095:50: error[invalid-argument-type] Argument to bound method `from_dict` is incorrect: Expected `dict[str, Any]`, found `(BackendConfig & Top[dict[Unknown, Unknown]]) | dict[str, Any]` +torch/ao/quantization/fx/qconfig_mapping_utils.py:274:51: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/fx/qconfig_mapping_utils.py:275:53: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/fx/qconfig_mapping_utils.py:276:49: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/fx/qconfig_mapping_utils.py:277:53: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/fx/qconfig_mapping_utils.py:284:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/qconfig_mapping_utils.py:286:45: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/qconfig_mapping_utils.py:287:45: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/qconfig_mapping_utils.py:290:18: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/fx/qconfig_mapping_utils.py:297:37: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/fx/utils.py:150:17: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/fx/utils.py:152:19: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/fx/utils.py:268:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/quantization/fx/utils.py:281:14: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/fx/utils.py:399:27: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/utils.py:402:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/ao/quantization/fx/utils.py:410:29: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/ao/quantization/fx/utils.py:413:29: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/ao/quantization/fx/utils.py:417:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/utils.py:422:18: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/fx/utils.py:512:23: error[unresolved-attribute] Module `torch.ao.quantization` has no member `fx` +torch/ao/quantization/fx/utils.py:537:23: error[unresolved-attribute] Module `torch.ao.quantization` has no member `fx` +torch/ao/quantization/fx/utils.py:732:16: error[invalid-return-type] Return type does not match returned value: expected `Node | None`, found `Node | Divergent | Divergent | ... omitted 15 union elements` +torch/ao/quantization/observer.py:150:20: warning[unsupported-base] Unsupported class base with type `ABCMeta` +torch/ao/quantization/observer.py:232:15: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/observer.py:233:17: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/observer.py:238:13: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/ao/quantization/observer.py:238:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/observer.py:252:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:254:13: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/observer.py:255:13: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/observer.py:256:13: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/quantization/observer.py:257:13: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/observer.py:258:13: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/quantization/observer.py:266:13: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/observer.py:267:13: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/observer.py:268:13: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/quantization/observer.py:269:13: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/quantization/observer.py:270:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/observer.py:271:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/observer.py:272:13: error[unresolved-attribute] Module `torch` has no member `int16` +torch/ao/quantization/observer.py:273:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/observer.py:274:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/ao/quantization/observer.py:275:13: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/ao/quantization/observer.py:276:13: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/ao/quantization/observer.py:286:32: error[invalid-argument-type] Argument to function `validate_qmin_qmax` is incorrect: Expected `int`, found `Unknown | None` +torch/ao/quantization/observer.py:286:43: error[invalid-argument-type] Argument to function `validate_qmin_qmax` is incorrect: Expected `int`, found `Unknown | None` +torch/ao/quantization/observer.py:289:13: error[invalid-argument-type] Argument to function `calculate_qmin_qmax` is incorrect: Expected `int`, found `Unknown | None` +torch/ao/quantization/observer.py:291:13: error[invalid-argument-type] Argument to function `calculate_qmin_qmax` is incorrect: Expected `int`, found `Unknown | None` +torch/ao/quantization/observer.py:311:19: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:311:33: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/ao/quantization/observer.py:311:45: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/observer.py:369:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:369:69: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:374:23: error[unresolved-attribute] Module `torch` has no member `min` +torch/ao/quantization/observer.py:374:42: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/quantization/observer.py:375:23: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/quantization/observer.py:375:42: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/quantization/observer.py:378:17: error[unresolved-attribute] Module `torch` has no member `ones` +torch/ao/quantization/observer.py:378:54: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/observer.py:379:22: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/observer.py:379:60: error[unresolved-attribute] Module `torch` has no member `int64` +torch/ao/quantization/observer.py:382:29: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/observer.py:383:32: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/observer.py:385:27: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/quantization/observer.py:387:21: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/quantization/observer.py:388:31: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/observer.py:388:45: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/observer.py:396:32: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/ao/quantization/observer.py:398:30: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/quantization/observer.py:400:21: error[unresolved-attribute] Module `torch` has no member `where` +torch/ao/quantization/observer.py:400:58: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/ao/quantization/observer.py:408:21: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/quantization/observer.py:409:38: error[unresolved-attribute] Module `torch` has no member `round` +torch/ao/quantization/observer.py:409:74: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/observer.py:410:26: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/quantization/observer.py:416:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:419:26: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:422:32: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/quantization/observer.py:423:30: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:509:15: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/observer.py:510:17: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/observer.py:515:13: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/ao/quantization/observer.py:515:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/observer.py:546:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:547:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:549:29: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/observer.py:551:31: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/observer.py:564:36: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/ao/quantization/observer.py:565:19: error[unresolved-attribute] Module `torch` has no member `min` +torch/ao/quantization/observer.py:566:19: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/quantization/observer.py:583:28: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:584:28: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:636:15: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/observer.py:637:17: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/observer.py:641:13: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/ao/quantization/observer.py:641:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/observer.py:676:32: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/ao/quantization/observer.py:678:40: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/ao/quantization/observer.py:720:15: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/observer.py:721:17: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/quantization/observer.py:726:13: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/ao/quantization/observer.py:726:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/observer.py:752:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:753:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:755:29: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/observer.py:757:31: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/observer.py:781:13: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/ao/quantization/observer.py:783:32: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/ao/quantization/observer.py:785:40: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/ao/quantization/observer.py:786:23: error[unresolved-attribute] Module `torch` has no member `min` +torch/ao/quantization/observer.py:787:23: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/quantization/observer.py:889:24: error[unresolved-attribute] Module `torch` has no member `rand` +torch/ao/quantization/observer.py:892:24: error[unresolved-attribute] Module `torch` has no member `rand` +torch/ao/quantization/observer.py:929:15: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/observer.py:930:17: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/quantization/observer.py:934:13: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/ao/quantization/observer.py:934:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/observer.py:973:13: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/ao/quantization/observer.py:975:32: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/ao/quantization/observer.py:977:40: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/ao/quantization/observer.py:1019:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/observer.py:1019:30: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/observer.py:1020:17: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/observer.py:1025:13: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/ao/quantization/observer.py:1025:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/observer.py:1052:43: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/observer.py:1053:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:1054:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:1055:31: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/ao/quantization/observer.py:1087:19: error[unresolved-attribute] Module `torch` has no member `arange` +torch/ao/quantization/observer.py:1094:28: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/quantization/observer.py:1095:13: error[unresolved-attribute] Module `torch` has no member `div` +torch/ao/quantization/observer.py:1101:26: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/quantization/observer.py:1102:13: error[unresolved-attribute] Module `torch` has no member `div` +torch/ao/quantization/observer.py:1108:16: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/observer.py:1114:13: error[unresolved-attribute] Module `torch` has no member `ones` +torch/ao/quantization/observer.py:1119:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:1119:47: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:1126:32: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:1143:17: error[unresolved-attribute] Module `torch` has no member `sum` +torch/ao/quantization/observer.py:1144:16: error[unresolved-attribute] Module `torch` has no member `cumsum` +torch/ao/quantization/observer.py:1207:13: error[unresolved-attribute] Module `torch` has no member `linspace` +torch/ao/quantization/observer.py:1215:36: error[unresolved-attribute] Module `torch` has no member `linspace` +torch/ao/quantization/observer.py:1220:13: error[unresolved-attribute] Module `torch` has no member `bucketize` +torch/ao/quantization/observer.py:1230:28: error[unresolved-attribute] Module `torch` has no member `bincount` +torch/ao/quantization/observer.py:1252:25: error[unresolved-attribute] Module `torch` has no member `sum` +torch/ao/quantization/observer.py:1293:24: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/ao/quantization/observer.py:1304:28: error[unresolved-attribute] Module `torch` has no member `aminmax` +torch/ao/quantization/observer.py:1314:23: error[unresolved-attribute] Module `torch` has no member `min` +torch/ao/quantization/observer.py:1315:23: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/quantization/observer.py:1320:32: error[unresolved-attribute] Module `torch` has no member `histc` +torch/ao/quantization/observer.py:1359:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:1359:74: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:1394:54: error[unresolved-attribute] Module `torch` has no member `Size` +torch/ao/quantization/observer.py:1395:48: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:1397:54: error[unresolved-attribute] Module `torch` has no member `Size` +torch/ao/quantization/observer.py:1398:48: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:1441:15: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/observer.py:1442:17: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/observer.py:1455:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:1455:67: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/observer.py:1456:44: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/observer.py:1456:77: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/observer.py:1493:15: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/observer.py:1504:23: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/observer.py:1506:19: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/ao/quantization/observer.py:1506:31: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/observer.py:1552:30: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/observer.py:1585:30: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/observer.py:1615:26: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/observer.py:1824:35: warning[unsupported-base] Unsupported class base with type `ABCMeta` +torch/ao/quantization/observer.py:1839:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/observer.py:1844:22: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/observer.py:1845:27: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/observer.py:2070:11: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/observer.py:2070:32: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/observer.py:2077:11: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/observer.py:2078:13: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/observer.py:2093:11: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/observer.py:2093:32: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/observer.py:2101:11: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/observer.py:2102:13: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/observer.py:2112:11: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/observer.py:2122:11: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/observer.py:2122:33: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/quantization/observer.py:2129:11: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/quantization/observer.py:2129:35: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/quantization/observer.py:2138:46: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/observer.py:2141:44: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/pt2e/_numeric_debugger.py:95:72: error[invalid-argument-type] Method `__getitem__` of type `bound method Top[dict[Unknown, Unknown]].__getitem__(key: Never, /) -> object` cannot be called with key of type `object` on object of type `Top[dict[Unknown, Unknown]]` +torch/ao/quantization/pt2e/_numeric_debugger.py:95:78: error[invalid-argument-type] Method `__getitem__` of type `bound method Top[dict[Unknown, Unknown]].__getitem__(key: Never, /) -> object` cannot be called with key of type `object` on object of type `Top[dict[Unknown, Unknown]]` +torch/ao/quantization/pt2e/_numeric_debugger.py:112:26: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/pt2e/_numeric_debugger.py:112:47: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/pt2e/_numeric_debugger.py:116:38: error[invalid-argument-type] Method `__getitem__` of type `bound method Top[dict[Unknown, Unknown]].__getitem__(key: Never, /) -> object` cannot be called with key of type `object` on object of type `Top[dict[Unknown, Unknown]]` +torch/ao/quantization/pt2e/_numeric_debugger.py:137:9: error[unresolved-attribute] Cannot assign object of type `str | None` to attribute `node_name` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/pt2e/_numeric_debugger.py:138:9: error[unresolved-attribute] Cannot assign object of type `object` to attribute `nn_module_stack` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/pt2e/_numeric_debugger.py:139:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `debug_handle` on type `Self@__init__` with custom `__setattr__` method. +torch/ao/quantization/pt2e/_numeric_debugger.py:265:25: error[non-subscriptable] Cannot subscript object of type `object` with no `__getitem__` method +torch/ao/quantization/pt2e/export_utils.py:66:27: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/export_utils.py:140:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/export_utils.py:141:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/export_utils.py:142:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/export_utils.py:143:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/export_utils.py:144:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/graph_utils.py:32:6: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/pt2e/graph_utils.py:33:6: error[unresolved-attribute] Module `torch` has no member `mul` +torch/ao/quantization/pt2e/lowering.py:31:20: error[unresolved-attribute] Module `torch` has no member `_export` +torch/ao/quantization/pt2e/prepare.py:326:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/quantization/pt2e/prepare.py:423:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/quantization/pt2e/prepare.py:476:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/quantization/pt2e/prepare.py:509:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/quantization/pt2e/qat_utils.py:51:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/qat_utils.py:51:58: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/qat_utils.py:52:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/qat_utils.py:52:63: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/qat_utils.py:54:36: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/qat_utils.py:54:60: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/qat_utils.py:55:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/qat_utils.py:55:65: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/qat_utils.py:57:31: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:102:23: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/ao/quantization/pt2e/qat_utils.py:110:21: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/quantization/pt2e/qat_utils.py:144:23: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/ao/quantization/pt2e/qat_utils.py:184:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/qat_utils.py:222:23: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/ao/quantization/pt2e/qat_utils.py:236:25: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/quantization/pt2e/qat_utils.py:656:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:657:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:658:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:659:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:660:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:661:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:662:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:667:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:668:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:669:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:670:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:671:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:672:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:673:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:903:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:904:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:905:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:906:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:907:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:908:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:913:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:914:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:915:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:916:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:917:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/qat_utils.py:918:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:45:64: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:53:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:57:76: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:85:21: error[unresolved-attribute] Module `torch` has no member `int16` +torch/ao/quantization/pt2e/representation/rewrite.py:86:31: error[unresolved-attribute] Module `torch` has no member `int16` +torch/ao/quantization/pt2e/representation/rewrite.py:91:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:99:53: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:105:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:111:77: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:128:50: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:131:66: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:134:64: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:142:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:161:50: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:168:14: error[unresolved-attribute] Module `torch` has no member `round` +torch/ao/quantization/pt2e/representation/rewrite.py:169:29: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:172:13: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/quantization/pt2e/representation/rewrite.py:173:27: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:177:21: error[unresolved-attribute] Module `torch` has no member `int16` +torch/ao/quantization/pt2e/representation/rewrite.py:178:31: error[unresolved-attribute] Module `torch` has no member `int16` +torch/ao/quantization/pt2e/representation/rewrite.py:183:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:189:53: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:219:64: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:227:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:241:76: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:275:21: error[unresolved-attribute] Module `torch` has no member `int16` +torch/ao/quantization/pt2e/representation/rewrite.py:276:31: error[unresolved-attribute] Module `torch` has no member `int16` +torch/ao/quantization/pt2e/representation/rewrite.py:281:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:307:53: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:318:13: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:324:77: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:341:60: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:344:60: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:349:68: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:370:21: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:371:21: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:375:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:381:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:387:74: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:404:60: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:407:60: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:411:68: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:445:21: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:446:21: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:448:13: error[unresolved-attribute] Module `torch` has no member `round` +torch/ao/quantization/pt2e/representation/rewrite.py:448:76: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:449:13: error[unresolved-attribute] Module `torch` has no member `round` +torch/ao/quantization/pt2e/representation/rewrite.py:449:76: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:453:69: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:474:64: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:480:76: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:502:12: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/quantization/pt2e/representation/rewrite.py:503:21: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:508:16: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/quantization/pt2e/representation/rewrite.py:509:26: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:515:58: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:527:9: error[unresolved-attribute] Module `torch` has no member `round` +torch/ao/quantization/pt2e/representation/rewrite.py:528:20: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:531:9: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/quantization/pt2e/representation/rewrite.py:532:20: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:538:56: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:553:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/pt2e/representation/rewrite.py:553:69: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/pt2e/representation/rewrite.py:560:69: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:568:14: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/ao/quantization/pt2e/representation/rewrite.py:570:9: error[unresolved-attribute] Module `torch` has no member `round` +torch/ao/quantization/pt2e/representation/rewrite.py:570:41: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:572:15: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/ao/quantization/pt2e/representation/rewrite.py:573:23: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:581:67: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:593:12: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/ao/quantization/pt2e/representation/rewrite.py:594:21: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/pt2e/representation/rewrite.py:595:41: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:596:16: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/ao/quantization/pt2e/representation/rewrite.py:623:9: error[unresolved-attribute] Module `torch` has no member `randint` +torch/ao/quantization/pt2e/representation/rewrite.py:623:48: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:624:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:624:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:625:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/pt2e/representation/rewrite.py:625:30: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:626:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:626:36: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:627:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:627:35: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:628:9: error[unresolved-attribute] Module `torch` has no member `randint` +torch/ao/quantization/pt2e/representation/rewrite.py:628:48: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:629:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:629:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:630:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/pt2e/representation/rewrite.py:630:30: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:631:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:631:36: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:632:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:632:35: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:633:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:633:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:634:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:634:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:635:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/pt2e/representation/rewrite.py:635:30: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:636:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:636:36: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:637:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:637:35: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:641:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:641:35: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:644:9: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/ao/quantization/pt2e/representation/rewrite.py:644:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/pt2e/representation/rewrite.py:645:9: error[unresolved-attribute] Module `torch` has no member `randint` +torch/ao/quantization/pt2e/representation/rewrite.py:645:48: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:646:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:646:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:647:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/pt2e/representation/rewrite.py:647:30: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:648:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:648:36: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:649:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:649:35: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:650:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:650:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:654:9: error[unresolved-attribute] Module `torch` has no member `randint` +torch/ao/quantization/pt2e/representation/rewrite.py:654:54: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:655:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:655:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:656:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/pt2e/representation/rewrite.py:656:30: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:657:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:657:36: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:658:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:658:35: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:659:9: error[unresolved-attribute] Module `torch` has no member `randint` +torch/ao/quantization/pt2e/representation/rewrite.py:659:54: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:660:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:660:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:661:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/pt2e/representation/rewrite.py:661:30: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:662:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:662:36: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:663:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:663:35: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:664:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:664:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:665:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:665:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:666:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/pt2e/representation/rewrite.py:666:30: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:667:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:667:36: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:668:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:668:35: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:672:9: error[unresolved-attribute] Module `torch` has no member `randint` +torch/ao/quantization/pt2e/representation/rewrite.py:672:54: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:673:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:673:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:674:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/pt2e/representation/rewrite.py:674:30: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:675:9: error[unresolved-attribute] Module `torch` has no member `randint` +torch/ao/quantization/pt2e/representation/rewrite.py:675:54: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:676:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:676:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:677:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/pt2e/representation/rewrite.py:677:30: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:678:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:678:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:679:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/pt2e/representation/rewrite.py:679:30: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:680:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:680:36: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:681:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:681:35: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:685:9: error[unresolved-attribute] Module `torch` has no member `randint` +torch/ao/quantization/pt2e/representation/rewrite.py:685:54: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:686:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:686:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:687:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/pt2e/representation/rewrite.py:687:30: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:688:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:688:36: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:689:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:689:35: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:690:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:690:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:691:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/pt2e/representation/rewrite.py:691:30: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:692:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:692:36: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:693:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:693:35: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:697:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:697:39: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:698:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:698:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:699:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/pt2e/representation/rewrite.py:699:30: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:700:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:700:36: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:701:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:701:35: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:705:9: error[unresolved-attribute] Module `torch` has no member `randint` +torch/ao/quantization/pt2e/representation/rewrite.py:705:54: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:706:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:706:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:707:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/pt2e/representation/rewrite.py:707:30: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:708:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:708:36: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:709:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/pt2e/representation/rewrite.py:709:35: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:713:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:713:39: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:714:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:714:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:715:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/pt2e/representation/rewrite.py:715:30: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:722:9: error[unresolved-attribute] Module `torch` has no member `randint` +torch/ao/quantization/pt2e/representation/rewrite.py:722:54: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/pt2e/representation/rewrite.py:723:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/pt2e/representation/rewrite.py:723:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/pt2e/representation/rewrite.py:724:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/pt2e/representation/rewrite.py:724:30: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/pt2e/representation/rewrite.py:737:53: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/ao/quantization/pt2e/representation/rewrite.py:737:65: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/pt2e/representation/rewrite.py:741:53: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/ao/quantization/pt2e/representation/rewrite.py:741:65: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/pt2e/utils.py:364:10: error[unresolved-attribute] Module `torch` has no member `_export` +torch/ao/quantization/pt2e/utils.py:475:46: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/pt2e/utils.py:510:5: error[unresolved-attribute] Cannot assign object of type `TreeSpec` to attribute `_in_spec` on type `GraphModule` with custom `__setattr__` method. +torch/ao/quantization/pt2e/utils.py:517:50: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/qconfig.py:181:52: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/qconfig.py:182:48: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/qconfig.py:189:52: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/qconfig.py:190:48: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/qconfig.py:348:15: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/qconfig.py:355:15: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/qconfig.py:361:45: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/qconfig.py:366:45: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/qconfig.py:496:15: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/qconfig.py:508:15: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/qconfig.py:516:52: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/qconfig.py:517:48: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/qconfig.py:521:52: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/qconfig_mapping.py:54:5: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/ao/quantization/qconfig_mapping.py:59:5: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/ao/quantization/quantization_mappings.py:211:21: error[unresolved-attribute] Module `torch.nn` has no member `quantizable` +torch/ao/quantization/quantization_mappings.py:211:42: error[unresolved-attribute] Module `torch.nn` has no member `quantizable` +torch/ao/quantization/quantize.py:61:18: error[unresolved-attribute] Module `torch.nn` has no member `quantizable` +torch/ao/quantization/quantize.py:62:32: error[unresolved-attribute] Module `torch.nn` has no member `quantizable` +torch/ao/quantization/quantize.py:65:9: error[unresolved-attribute] Module `torch.nn` has no member `quantizable` +torch/ao/quantization/quantize.py:65:30: error[unresolved-attribute] Module `torch.nn` has no member `quantized` +torch/ao/quantization/quantize.py:66:9: error[unresolved-attribute] Module `torch.nn` has no member `quantizable` +torch/ao/quantization/quantize.py:66:44: error[unresolved-attribute] Module `torch.nn` has no member `quantized` +torch/ao/quantization/quantize.py:377:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize.py:471:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize.py:477:5: warning[deprecated] The function `prepare` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/quantization/quantize.py:479:5: warning[deprecated] The function `convert` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/quantization/quantize.py:485:37: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/quantize.py:515:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize.py:517:21: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/quantize.py:526:23: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/quantize.py:535:23: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/quantize.py:540:23: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/quantization/quantize.py:549:21: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/quantize.py:551:23: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/quantize.py:553:23: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/quantize.py:555:23: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/quantization/quantize.py:570:5: warning[deprecated] The function `convert` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/quantization/quantize.py:590:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize.py:600:5: warning[deprecated] The function `convert` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/quantization/quantize.py:601:5: warning[deprecated] The function `prepare` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/quantization/quantize.py:619:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize.py:623:5: warning[deprecated] The function `prepare_qat` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/quantization/quantize.py:625:5: warning[deprecated] The function `convert` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/ao/quantization/quantize.py:666:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize.py:800:43: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/quantization/quantize_fx.py:123:63: error[invalid-argument-type] Argument to bound method `from_dict` is incorrect: Expected `dict[str, Any]`, found `(PrepareCustomConfig & Top[dict[Unknown, Unknown]]) | dict[str, Any]` +torch/ao/quantization/quantize_fx.py:235:57: error[invalid-argument-type] Argument to bound method `from_dict` is incorrect: Expected `dict[str, Any]`, found `(FuseCustomConfig & Top[dict[Unknown, Unknown]]) | dict[str, Any]` +torch/ao/quantization/quantize_fx.py:237:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize_fx.py:393:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize_fx.py:507:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize_fx.py:540:63: error[invalid-argument-type] Argument to bound method `from_dict` is incorrect: Expected `dict[str, Any]`, found `(ConvertCustomConfig & Top[dict[Unknown, Unknown]]) | dict[str, Any]` +torch/ao/quantization/quantize_fx.py:624:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize_fx.py:675:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize_fx.py:727:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize_jit.py:58:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize_jit.py:60:15: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_fold_convbn` +torch/ao/quantization/quantize_jit.py:75:15: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_insert_observers` +torch/ao/quantization/quantize_jit.py:97:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_inline` +torch/ao/quantization/quantize_jit.py:99:15: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_insert_observer_method_for_ondevice_ptq` +torch/ao/quantization/quantize_jit.py:110:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize_jit.py:115:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize_jit.py:133:15: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_insert_quant_dequant` +torch/ao/quantization/quantize_jit.py:144:19: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_quant_finalize` +torch/ao/quantization/quantize_jit.py:151:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_constant_propagation` +torch/ao/quantization/quantize_jit.py:152:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_dce` +torch/ao/quantization/quantize_jit.py:169:15: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_insert_quant_dequant_for_ondevice_ptq` +torch/ao/quantization/quantize_jit.py:172:15: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_quant_finalize_for_ondevice_ptq` +torch/ao/quantization/quantize_jit.py:183:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize_jit.py:194:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize_jit.py:245:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_constant_propagation` +torch/ao/quantization/quantize_jit.py:246:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_dce` +torch/ao/quantization/quantize_jit.py:303:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize_jit.py:356:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize_pt2e.py:93:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize_pt2e.py:171:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantize_pt2e.py:238:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/ao/quantization/quantizer/embedding_quantizer.py:29:15: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/quantizer/embedding_quantizer.py:30:17: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/quantization/quantizer/quantizer.py:38:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/quantizer/quantizer.py:46:14: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/ao/quantization/quantizer/quantizer.py:70:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/quantizer/quantizer.py:75:14: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/ao/quantization/quantizer/quantizer.py:105:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/quantizer/quantizer.py:108:14: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/ao/quantization/quantizer/x86_inductor_quantizer.py:194:17: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/quantization/quantizer/x86_inductor_quantizer.py:205:17: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/ao/quantization/quantizer/x86_inductor_quantizer.py:211:17: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/ao/quantization/quantizer/x86_inductor_quantizer.py:300:15: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/quantizer/x86_inductor_quantizer.py:303:17: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/quantizer/x86_inductor_quantizer.py:318:15: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/quantizer/x86_inductor_quantizer.py:321:17: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/quantizer/x86_inductor_quantizer.py:346:15: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/quantizer/xnnpack_quantizer.py:59:14: error[unresolved-attribute] Module `torch` has no member `ones` +torch/ao/quantization/quantizer/xnnpack_quantizer.py:60:12: error[unresolved-attribute] Module `torch` has no member `ones` +torch/ao/quantization/quantizer/xnnpack_quantizer.py:61:11: error[unresolved-attribute] Module `torch` has no member `ones` +torch/ao/quantization/quantizer/xnnpack_quantizer.py:82:18: error[unresolved-attribute] Module `torch` has no member `add` +torch/ao/quantization/quantizer/xnnpack_quantizer.py:134:15: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/quantizer/xnnpack_quantizer.py:137:17: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/quantizer/xnnpack_quantizer.py:144:9: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/quantizer/xnnpack_quantizer.py:144:60: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/quantizer/xnnpack_quantizer.py:157:30: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/quantizer/xnnpack_quantizer.py:162:15: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/quantizer/xnnpack_quantizer.py:210:36: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__qualname__` +torch/ao/quantization/quantizer/xnnpack_quantizer.py:321:70: warning[deprecated] The class `XNNPACKQuantizer` is deprecated: XNNPACKQuantizer is deprecated! Please use xnnpack quantizer in ExecuTorch (https://github.com/pytorch/executorch/tree/main/backends/xnnpack/quantizer) instead. +torch/ao/quantization/quantizer/xnnpack_quantizer.py:329:10: warning[deprecated] The class `XNNPACKQuantizer` is deprecated: XNNPACKQuantizer is deprecated! Please use xnnpack quantizer in ExecuTorch (https://github.com/pytorch/executorch/tree/main/backends/xnnpack/quantizer) instead. +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:125:9: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:126:9: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:141:9: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:142:9: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:159:9: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:160:9: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:177:35: error[unresolved-attribute] Module `torch` has no member `float` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:510:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:511:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:512:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:513:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:514:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:515:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:516:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:521:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:522:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:523:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:524:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:525:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:526:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:527:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:761:38: error[unresolved-attribute] Module `torch` has no member `float32` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:1026:55: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py:1139:28: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/quantizer/xpu_inductor_quantizer.py:32:15: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/quantizer/xpu_inductor_quantizer.py:35:17: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/quantizer/xpu_inductor_quantizer.py:47:15: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/quantizer/xpu_inductor_quantizer.py:50:17: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/utils.py:106:5: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/ao/quantization/utils.py:107:5: error[unresolved-attribute] Module `torch` has no member `repeat_interleave` +torch/ao/quantization/utils.py:108:5: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/ao/quantization/utils.py:109:5: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/ao/quantization/utils.py:110:5: error[unresolved-attribute] Module `torch` has no member `stack` +torch/ao/quantization/utils.py:111:5: error[unresolved-attribute] Module `torch` has no member `sum` +torch/ao/quantization/utils.py:112:5: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/ao/quantization/utils.py:113:5: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/ao/quantization/utils.py:114:5: error[unresolved-attribute] Module `torch` has no member `cat` +torch/ao/quantization/utils.py:117:5: error[unresolved-attribute] Module `torch` has no member `mean` +torch/ao/quantization/utils.py:182:23: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/utils.py:182:61: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/utils.py:187:9: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/quantization/utils.py:188:9: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/quantization/utils.py:189:9: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/utils.py:202:9: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/utils.py:202:23: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/utils.py:203:9: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/utils.py:203:22: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/utils.py:204:9: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/quantization/utils.py:204:23: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/utils.py:205:9: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/quantization/utils.py:205:25: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/utils.py:206:9: error[unresolved-attribute] Module `torch` has no member `quint2x4` +torch/ao/quantization/utils.py:206:25: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/utils.py:207:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/utils.py:207:22: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/utils.py:208:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/utils.py:208:21: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/utils.py:209:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/ao/quantization/utils.py:209:23: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/ao/quantization/utils.py:210:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/ao/quantization/utils.py:210:22: error[unresolved-attribute] Module `torch` has no member `int16` +torch/ao/quantization/utils.py:211:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/utils.py:211:22: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/utils.py:212:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/ao/quantization/utils.py:212:28: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/ao/quantization/utils.py:213:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/ao/quantization/utils.py:213:30: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/ao/quantization/utils.py:231:19: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/utils.py:235:23: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/utils.py:236:23: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/ao/quantization/utils.py:298:9: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/utils.py:299:9: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/utils.py:300:9: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/quantization/utils.py:301:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/utils.py:302:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/utils.py:303:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/utils.py:304:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/ao/quantization/utils.py:305:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/utils.py:306:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/ao/quantization/utils.py:307:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/ao/quantization/utils.py:325:9: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/utils.py:326:9: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/utils.py:327:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/utils.py:328:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/utils.py:336:42: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/quantization/utils.py:336:56: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/utils.py:344:9: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/utils.py:345:9: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/utils.py:346:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/utils.py:347:9: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/quantization/utils.py:348:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/utils.py:349:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/utils.py:350:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/ao/quantization/utils.py:351:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/utils.py:352:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/ao/quantization/utils.py:353:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/ao/quantization/utils.py:361:38: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/utils.py:361:52: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/utils.py:361:65: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/utils.py:361:78: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/utils.py:370:30: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/utils.py:370:44: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/utils.py:373:26: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/utils.py:373:39: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/utils.py:396:9: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/utils.py:397:9: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/utils.py:398:9: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/ao/quantization/utils.py:399:9: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/quantization/utils.py:400:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/utils.py:401:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/utils.py:402:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/ao/quantization/utils.py:403:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/utils.py:404:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/ao/quantization/utils.py:405:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/ao/quantization/utils.py:415:24: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/utils.py:418:34: error[unresolved-attribute] Module `torch` has no member `float16` +torch/ao/quantization/utils.py:452:12: error[unresolved-attribute] Module `torch` has no member `any` +torch/ao/quantization/utils.py:462:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/utils.py:473:22: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/quantization/utils.py:473:36: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/utils.py:487:22: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/utils.py:487:35: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/utils.py:492:24: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/quantization/utils.py:492:38: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/utils.py:501:22: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/ao/quantization/utils.py:501:35: error[unresolved-attribute] Module `torch` has no member `int8` +torch/ao/quantization/utils.py:506:24: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/utils.py:506:38: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/utils.py:511:24: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/ao/quantization/utils.py:511:38: error[unresolved-attribute] Module `torch` has no member `int32` +torch/ao/quantization/utils.py:513:23: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/ao/quantization/utils.py:515:23: error[unresolved-attribute] Module `torch` has no member `int16` +torch/ao/quantization/utils.py:661:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/ao/quantization/utils.py:664:14: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/ao/quantization/utils.py:664:30: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/ao/quantization/utils.py:678:16: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/utils.py:678:65: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/utils.py:682:19: error[unresolved-attribute] Module `torch` has no member `min` +torch/ao/quantization/utils.py:682:38: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/quantization/utils.py:683:19: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/quantization/utils.py:683:38: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/ao/quantization/utils.py:686:13: error[unresolved-attribute] Module `torch` has no member `ones` +torch/ao/quantization/utils.py:686:50: error[unresolved-attribute] Module `torch` has no member `double` +torch/ao/quantization/utils.py:687:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/ao/quantization/utils.py:687:56: error[unresolved-attribute] Module `torch` has no member `int64` +torch/ao/quantization/utils.py:690:19: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/ao/quantization/utils.py:690:60: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/ao/quantization/utils.py:691:23: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/quantization/utils.py:693:17: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/quantization/utils.py:694:22: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/ao/quantization/utils.py:694:35: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/ao/quantization/utils.py:702:21: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/quantization/utils.py:704:17: error[unresolved-attribute] Module `torch` has no member `where` +torch/ao/quantization/utils.py:704:49: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/ao/quantization/utils.py:712:17: error[unresolved-attribute] Module `torch` has no member `max` +torch/ao/quantization/utils.py:713:34: error[unresolved-attribute] Module `torch` has no member `round` +torch/ao/quantization/utils.py:713:70: error[unresolved-attribute] Module `torch` has no member `int` +torch/ao/quantization/utils.py:714:22: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/ao/quantization/utils.py:720:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/utils.py:723:22: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/utils.py:726:23: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/ao/quantization/utils.py:727:26: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/ao/quantization/utils.py:731:21: error[unresolved-attribute] Module `torch` has no member `double` +torch/ao/quantization/utils.py:731:50: error[unresolved-attribute] Module `torch` has no member `int64` +torch/ao/quantization/utils.py:815:9: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/quantization/utils.py:815:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/ao/quantization/utils.py:820:20: error[unresolved-attribute] Module `torch` has no member `device` +torch/autograd/__init__.py:74:16: error[unresolved-attribute] Module `torch` has no member `Size` +torch/autograd/__init__.py:103:24: error[unresolved-attribute] Module `torch` has no member `Size` +torch/autograd/__init__.py:135:33: error[unresolved-attribute] Module `torch` has no member `is_same_size` +torch/autograd/__init__.py:220:25: error[unresolved-attribute] Module `torch` has no member `ones` +torch/autograd/__init__.py:230:25: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/autograd/__init__.py:230:60: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/autograd/__init__.py:316:8: error[unresolved-attribute] Module `torch._C` has no member `_are_functorch_transforms_active` +torch/autograd/__init__.py:535:18: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/autograd/__init__.py:570:8: error[unresolved-attribute] Module `torch._C` has no member `_autograd_init` +torch/autograd/__init__.py:607:5: error[unresolved-attribute] Module `torch._C` has no member `_register_py_class_for_device` +torch/autograd/__init__.py:610:29: error[unresolved-attribute] Module `torch._C` has no member `_is_multithreading_enabled` +torch/autograd/__init__.py:611:1: error[unresolved-attribute] Module `torch._C` has no member `_add_docstr` +torch/autograd/__init__.py:615:26: error[unresolved-attribute] Module `torch._C` has no member `_is_view_replay_enabled` +torch/autograd/__init__.py:616:1: error[unresolved-attribute] Module `torch._C` has no member `_add_docstr` +torch/autograd/anomaly_mode.py:80:21: error[unresolved-attribute] Module `torch` has no member `is_anomaly_enabled` +torch/autograd/anomaly_mode.py:82:31: error[unresolved-attribute] Module `torch` has no member `is_anomaly_check_nan_enabled` +torch/autograd/anomaly_mode.py:91:9: error[unresolved-attribute] Module `torch` has no member `set_anomaly_enabled` +torch/autograd/anomaly_mode.py:94:9: error[unresolved-attribute] Module `torch` has no member `set_anomaly_enabled` +torch/autograd/anomaly_mode.py:115:21: error[unresolved-attribute] Module `torch` has no member `is_anomaly_enabled` +torch/autograd/anomaly_mode.py:116:31: error[unresolved-attribute] Module `torch` has no member `is_anomaly_check_nan_enabled` +torch/autograd/anomaly_mode.py:117:9: error[unresolved-attribute] Module `torch` has no member `set_anomaly_enabled` +torch/autograd/anomaly_mode.py:123:9: error[unresolved-attribute] Module `torch` has no member `set_anomaly_enabled` +torch/autograd/forward_ad.py:33:17: error[unresolved-attribute] Module `torch._C` has no member `_enter_dual_level` +torch/autograd/forward_ad.py:60:5: error[unresolved-attribute] Module `torch._C` has no member `_exit_dual_level` +torch/autograd/forward_ad.py:128:12: error[unresolved-attribute] Module `torch._VF` has no member `_make_dual` +torch/autograd/forward_ad.py:168:20: error[unresolved-attribute] Module `torch._VF` has no member `_unpack_dual` +torch/autograd/forward_ad.py:215:24: error[unresolved-attribute] Module `torch._C` has no member `_is_fwd_grad_enabled` +torch/autograd/forward_ad.py:223:9: error[unresolved-attribute] Module `torch._C` has no member `_set_fwd_grad_enabled` +torch/autograd/forward_ad.py:229:9: error[unresolved-attribute] Module `torch._C` has no member `_set_fwd_grad_enabled` +torch/autograd/function.py:297:25: error[unresolved-attribute] Module `torch._C` has no member `_FunctionBase` +torch/autograd/function.py:350:5: error[unresolved-attribute] Module `torch._C` has no member `_FunctionBase` +torch/autograd/function.py:580:16: error[unresolved-attribute] Module `torch._C` has no member `_are_functorch_transforms_active` +torch/autograd/function.py:582:20: error[unresolved-attribute] Module `torch._functorch` has no member `utils` +torch/autograd/function.py:612:16: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/autograd/function.py:754:42: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/autograd/functional.py:248:23: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/autograd/functional.py:351:45: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/autograd/functional.py:451:13: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/autograd/functional.py:555:35: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/autograd/functional.py:772:34: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/autograd/functional.py:838:41: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/autograd/functional.py:840:13: error[invalid-assignment] Object of type `tuple[tuple[Unknown, ...], ...]` is not assignable to `tuple[Tensor, ...]` +torch/autograd/functional.py:842:21: error[unresolved-attribute] Module `torch` has no member `stack` +torch/autograd/functional.py:1083:45: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/autograd/functional.py:1193:26: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/autograd/functional.py:1198:45: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/autograd/grad_mode.py:76:16: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/autograd/grad_mode.py:81:21: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/autograd/grad_mode.py:136:21: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/autograd/grad_mode.py:137:9: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/autograd/grad_mode.py:140:9: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/autograd/grad_mode.py:185:21: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/autograd/grad_mode.py:187:9: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/autograd/grad_mode.py:190:9: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/autograd/grad_mode.py:194:9: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/autograd/grad_mode.py:197:9: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/autograd/grad_mode.py:280:16: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/autograd/grad_mode.py:290:40: error[unresolved-attribute] Module `torch._C` has no member `_InferenceMode` +torch/autograd/grad_mode.py:304:20: error[unresolved-attribute] Module `torch._C` has no member `_InferenceMode` +torch/autograd/grad_mode.py:332:21: error[unresolved-attribute] Module `torch._C` has no member `_is_multithreading_enabled` +torch/autograd/grad_mode.py:333:9: error[unresolved-attribute] Module `torch._C` has no member `_set_multithreading_enabled` +torch/autograd/grad_mode.py:340:9: error[unresolved-attribute] Module `torch._C` has no member `_set_multithreading_enabled` +torch/autograd/grad_mode.py:372:21: error[unresolved-attribute] Module `torch._C` has no member `_is_view_replay_enabled` +torch/autograd/grad_mode.py:373:9: error[unresolved-attribute] Module `torch._C` has no member `_set_view_replay_enabled` +torch/autograd/grad_mode.py:380:9: error[unresolved-attribute] Module `torch._C` has no member `_set_view_replay_enabled` +torch/autograd/grad_mode.py:420:9: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/autograd/gradcheck.py:14:42: warning[deprecated] The function `vmap` is deprecated: Please use `torch.vmap` instead of `torch._vmap_internals.vmap`. +torch/autograd/gradcheck.py:38:9: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/autograd/gradcheck.py:39:9: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/autograd/gradcheck.py:40:9: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/autograd/gradcheck.py:41:9: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/autograd/gradcheck.py:46:63: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/autograd/gradcheck.py:62:55: error[unresolved-attribute] Module `torch` has no member `strided` +torch/autograd/gradcheck.py:76:60: error[unresolved-attribute] Module `torch` has no member `strided` +torch/autograd/gradcheck.py:92:24: error[unresolved-attribute] Module `collections` has no member `abc` +torch/autograd/gradcheck.py:104:22: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/autograd/gradcheck.py:107:15: error[unresolved-attribute] Module `torch` has no member `ones` +torch/autograd/gradcheck.py:107:59: error[unresolved-attribute] Module `torch` has no member `int8` +torch/autograd/gradcheck.py:109:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/autograd/gradcheck.py:118:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/autograd/gradcheck.py:126:13: error[unresolved-attribute] Module `torch` has no member `sparse_coo_tensor` +torch/autograd/gradcheck.py:133:29: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/autograd/gradcheck.py:133:47: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/autograd/gradcheck.py:138:29: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/autograd/gradcheck.py:138:47: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/autograd/gradcheck.py:142:50: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/autograd/gradcheck.py:189:31: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/autograd/gradcheck.py:192:33: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/autograd/gradcheck.py:193:25: error[unresolved-attribute] Module `torch` has no member `_convert_indices_from_csr_to_coo` +torch/autograd/gradcheck.py:197:33: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/autograd/gradcheck.py:198:25: error[unresolved-attribute] Module `torch` has no member `_convert_indices_from_csr_to_coo` +torch/autograd/gradcheck.py:202:33: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/autograd/gradcheck.py:206:17: error[unresolved-attribute] Module `torch` has no member `_convert_indices_from_csr_to_coo` +torch/autograd/gradcheck.py:210:23: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/autograd/gradcheck.py:212:21: error[unresolved-attribute] Module `torch` has no member `stack` +torch/autograd/gradcheck.py:213:25: error[unresolved-attribute] Module `torch` has no member `where` +torch/autograd/gradcheck.py:213:37: error[unresolved-attribute] Module `torch` has no member `ones` +torch/autograd/gradcheck.py:220:33: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/autograd/gradcheck.py:224:17: error[unresolved-attribute] Module `torch` has no member `_convert_indices_from_csr_to_coo` +torch/autograd/gradcheck.py:228:23: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/autograd/gradcheck.py:230:21: error[unresolved-attribute] Module `torch` has no member `stack` +torch/autograd/gradcheck.py:231:25: error[unresolved-attribute] Module `torch` has no member `where` +torch/autograd/gradcheck.py:231:37: error[unresolved-attribute] Module `torch` has no member `ones` +torch/autograd/gradcheck.py:559:52: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/autograd/gradcheck.py:752:63: error[unresolved-attribute] Module `torch` has no member `strided` +torch/autograd/gradcheck.py:837:22: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/autograd/gradcheck.py:908:21: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/autograd/gradcheck.py:942:34: error[unresolved-attribute] Module `torch` has no member `float64` +torch/autograd/gradcheck.py:942:64: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/autograd/gradcheck.py:1004:16: error[unresolved-attribute] Module `torch` has no member `ne` +torch/autograd/gradcheck.py:1019:23: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/autograd/gradcheck.py:1111:29: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/autograd/gradcheck.py:1120:21: error[unresolved-attribute] Module `torch` has no member `randn_like` +torch/autograd/gradcheck.py:1122:21: error[unresolved-attribute] Module `torch` has no member `stack` +torch/autograd/gradcheck.py:1125:33: error[unresolved-attribute] Module `torch` has no member `stack` +torch/autograd/gradcheck.py:1133:16: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/autograd/gradcheck.py:1163:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/autograd/gradcheck.py:1168:21: error[unresolved-attribute] Module `torch` has no member `randn_like` +torch/autograd/gradcheck.py:1171:17: error[unresolved-attribute] Module `torch` has no member `stack` +torch/autograd/gradcheck.py:1179:22: warning[deprecated] The function `vmap` is deprecated: Please use `torch.vmap` instead of `torch._vmap_internals.vmap`. +torch/autograd/gradcheck.py:1179:32: error[unresolved-attribute] Module `torch` has no member `stack` +torch/autograd/gradcheck.py:1190:12: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/autograd/gradcheck.py:1207:13: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/autograd/gradcheck.py:1215:58: error[unresolved-attribute] Module `torch` has no member `strided` +torch/autograd/gradcheck.py:1239:20: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/autograd/gradcheck.py:1239:39: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/autograd/gradcheck.py:1271:52: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/autograd/gradcheck.py:1287:61: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/autograd/gradcheck.py:1304:28: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/autograd/gradcheck.py:1335:13: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/autograd/gradcheck.py:1363:13: error[unresolved-attribute] Module `torch._C` has no member `_functions` +torch/autograd/gradcheck.py:1376:21: error[unresolved-attribute] Module `torch._C` has no member `_functions` +torch/autograd/gradcheck.py:1442:32: error[unresolved-attribute] Module `torch` has no member `real` +torch/autograd/gradcheck.py:1442:65: error[unresolved-attribute] Module `torch` has no member `imag` +torch/autograd/gradcheck.py:1675:21: error[unresolved-attribute] Module `torch` has no member `promote_types` +torch/autograd/gradcheck.py:1678:12: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/autograd/gradcheck.py:1682:17: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/autograd/gradcheck.py:1683:16: error[unresolved-attribute] Module `torch` has no member `float64` +torch/autograd/gradcheck.py:1684:19: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/autograd/gradcheck.py:1685:16: error[unresolved-attribute] Module `torch` has no member `float32` +torch/autograd/gradcheck.py:1694:20: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/autograd/gradcheck.py:1700:13: error[unresolved-attribute] Module `torch` has no member `rand` +torch/autograd/gradcheck.py:1705:15: error[unresolved-attribute] Module `torch` has no member `sparse_coo_tensor` +torch/autograd/gradcheck.py:1707:25: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/autograd/gradcheck.py:1707:43: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/autograd/gradcheck.py:1714:13: error[unresolved-attribute] Module `torch` has no member `rand` +torch/autograd/gradcheck.py:1719:15: error[unresolved-attribute] Module `torch` has no member `sparse_compressed_tensor` +torch/autograd/gradcheck.py:1729:15: error[unresolved-attribute] Module `torch` has no member `rand` +torch/autograd/gradcheck.py:1802:21: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/autograd/gradcheck.py:1826:13: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/autograd/gradcheck.py:1831:14: error[unresolved-attribute] Module `torch` has no member `device` +torch/autograd/gradcheck.py:2248:22: error[unresolved-attribute] Module `torch` has no member `double` +torch/autograd/graph.py:175:41: error[unresolved-attribute] Module `torch._C` has no member `_functions` +torch/autograd/graph.py:228:28: error[unresolved-attribute] Module `torch._C` has no member `_FunctionBase` +torch/autograd/graph.py:256:5: error[unresolved-attribute] Module `torch._C` has no member `_increment_version` +torch/autograd/graph.py:335:9: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/autograd/graph.py:340:9: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/autograd/graph.py:387:56: error[unresolved-attribute] Module `torch` has no member `device` +torch/autograd/graph.py:390:22: error[unresolved-attribute] Module `torch` has no member `empty` +torch/autograd/graph.py:399:43: error[unresolved-attribute] Module `torch` has no member `device` +torch/autograd/graph.py:430:13: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/autograd/graph.py:432:9: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/autograd/graph.py:437:13: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/autograd/graph.py:439:13: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/autograd/graph.py:446:12: error[unresolved-attribute] Module `torch._C` has no member `_set_warn_on_accumulate_grad_stream_mismatch` +torch/autograd/graph.py:539:22: error[unresolved-attribute] Module `torch._C` has no member `_current_graph_task_id` +torch/autograd/graph.py:554:33: error[unresolved-attribute] Module `torch._C` has no member `_will_engine_execute_node` +torch/autograd/graph.py:579:18: error[unresolved-attribute] Module `torch._C` has no member `_current_graph_task_id` +torch/autograd/graph.py:625:13: error[unresolved-attribute] Module `torch._subclasses` has no member `functional_tensor` +torch/autograd/graph.py:640:13: error[unresolved-attribute] Module `torch._subclasses` has no member `functional_tensor` +torch/autograd/graph.py:842:16: error[unresolved-attribute] Module `torch._C` has no member `_current_autograd_node` +torch/autograd/profiler.py:12:22: error[unresolved-import] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/autograd/profiler.py:748:23: warning[unsupported-base] Unsupported class base with type ` | ` +torch/autograd/profiler.py:818:18: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunctionSubclass` +torch/autograd/profiler.py:856:18: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunctionSubclass` +torch/autograd/profiler.py:1094:28: error[unresolved-attribute] Module `torch._C` has no member `_demangle` +torch/autograd/profiler_legacy.py:81:13: error[unresolved-attribute] Module `torch._C` has no member `_profiler` +torch/autograd/profiler_util.py:975:21: error[unresolved-attribute] Module `torch._C` has no member `_demangle` +torch/autograd/variable.py:3:22: error[unresolved-import] Module `torch._C` has no member `_ImperativeEngine` +torch/backends/__init__.py:70:13: error[unresolved-attribute] Module `torch._C` has no member `_set_fp32_precision_setter` +torch/backends/__init__.py:78:20: error[unresolved-attribute] Module `torch._C` has no member `_get_fp32_precision_getter` +torch/backends/__init__.py:84:19: error[unresolved-attribute] Module `torch._C` has no member `_get_fp32_precision_getter` +torch/backends/__init__.py:86:9: error[unresolved-attribute] Module `torch._C` has no member `_set_fp32_precision_setter` +torch/backends/__init__.py:103:16: error[unresolved-attribute] Module `torch._C` has no member `_get_fp32_precision_getter` +torch/backends/__init__.py:110:16: error[unresolved-attribute] Module `torch._C` has no member `_set_fp32_precision_setter` +torch/backends/_coreml/preprocess.py:87:31: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/backends/_nnapi/prepare.py:40:9: error[unresolved-attribute] Cannot assign object of type `list[Tensor]` to attribute `weights` on type `Self@__init__` with custom `__setattr__` method. +torch/backends/_nnapi/prepare.py:41:9: error[unresolved-attribute] Cannot assign object of type `list[int]` to attribute `inp_mem_fmts` on type `Self@__init__` with custom `__setattr__` method. +torch/backends/_nnapi/prepare.py:42:9: error[unresolved-attribute] Cannot assign object of type `list[int]` to attribute `out_mem_fmts` on type `Self@__init__` with custom `__setattr__` method. +torch/backends/_nnapi/prepare.py:43:9: error[unresolved-attribute] Cannot assign object of type `list[Unknown]` to attribute `out_templates` on type `Self@__init__` with custom `__setattr__` method. +torch/backends/_nnapi/prepare.py:44:9: error[unresolved-attribute] Cannot assign object of type `None` to attribute `comp` on type `Self@__init__` with custom `__setattr__` method. +torch/backends/_nnapi/prepare.py:45:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `compilation_preference` on type `Self@__init__` with custom `__setattr__` method. +torch/backends/_nnapi/prepare.py:46:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `relax_f32_to_f16` on type `Self@__init__` with custom `__setattr__` method. +torch/backends/_nnapi/prepare.py:52:9: error[unresolved-attribute] Cannot assign object of type `list[Unknown]` to attribute `weights` on type `Self@init` with custom `__setattr__` method. +torch/backends/_nnapi/prepare.py:68:17: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/backends/_nnapi/prepare.py:175:24: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/backends/_nnapi/prepare.py:175:54: error[unresolved-attribute] Module `torch` has no member `int32` +torch/backends/_nnapi/serializer.py:1022:21: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/backends/_nnapi/serializer.py:1849:40: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/backends/_nnapi/serializer.py:1850:32: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/backends/_nnapi/serializer.py:1853:40: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/backends/_nnapi/serializer.py:1854:31: error[unresolved-attribute] Module `torch` has no member `_make_per_tensor_quantized_tensor` +torch/backends/_nnapi/serializer.py:1855:56: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/backends/_nnapi/serializer.py:1861:20: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/backends/_nnapi/serializer.py:1861:71: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/backends/_nnapi/serializer.py:1900:33: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/backends/_nnapi/serializer.py:2030:40: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/backends/_nnapi/serializer.py:2031:32: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/backends/_nnapi/serializer.py:2034:40: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/backends/_nnapi/serializer.py:2035:31: error[unresolved-attribute] Module `torch` has no member `_make_per_tensor_quantized_tensor` +torch/backends/_nnapi/serializer.py:2036:56: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/backends/_nnapi/serializer.py:2043:20: error[unresolved-attribute] Module `torch` has no member `quantize_per_tensor` +torch/backends/_nnapi/serializer.py:2043:71: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/backends/cpu/__init__.py:21:12: error[unresolved-attribute] Module `torch._C` has no member `_get_cpu_capability` +torch/backends/cuda/__init__.py:46:12: error[unresolved-attribute] Module `torch._C` has no member `_has_cuda` +torch/backends/cuda/__init__.py:77:9: error[unresolved-attribute] Module `torch` has no member `_cufft_get_plan_cache_size` +torch/backends/cuda/__init__.py:83:9: error[unresolved-attribute] Module `torch` has no member `_cufft_get_plan_cache_max_size` +torch/backends/cuda/__init__.py:83:47: error[unresolved-attribute] Module `torch` has no member `_cufft_set_plan_cache_max_size` +torch/backends/cuda/__init__.py:87:16: error[unresolved-attribute] Module `torch` has no member `_cufft_clear_plan_cache` +torch/backends/cuda/__init__.py:156:20: error[unresolved-attribute] Module `torch._C` has no member `_get_cublas_allow_tf32` +torch/backends/cuda/__init__.py:159:17: error[unresolved-attribute] Module `torch._C` has no member `_get_cublas_allow_fp16_reduced_precision_reduction` +torch/backends/cuda/__init__.py:164:17: error[unresolved-attribute] Module `torch._C` has no member `_get_cublas_allow_fp16_reduced_precision_reduction` +torch/backends/cuda/__init__.py:169:17: error[unresolved-attribute] Module `torch._C` has no member `_get_cublas_allow_bf16_reduced_precision_reduction` +torch/backends/cuda/__init__.py:174:17: error[unresolved-attribute] Module `torch._C` has no member `_get_cublas_allow_bf16_reduced_precision_reduction` +torch/backends/cuda/__init__.py:178:20: error[unresolved-attribute] Module `torch._C` has no member `_get_cublas_allow_fp16_accumulation` +torch/backends/cuda/__init__.py:180:20: error[unresolved-attribute] Module `torch._C` has no member `_get_fp32_precision_getter` +torch/backends/cuda/__init__.py:185:20: error[unresolved-attribute] Module `torch._C` has no member `_set_cublas_allow_tf32` +torch/backends/cuda/__init__.py:190:20: error[unresolved-attribute] Module `torch._C` has no member `_set_cublas_allow_fp16_reduced_precision_reduction` +torch/backends/cuda/__init__.py:198:20: error[unresolved-attribute] Module `torch._C` has no member `_set_cublas_allow_bf16_reduced_precision_reduction` +torch/backends/cuda/__init__.py:203:20: error[unresolved-attribute] Module `torch._C` has no member `_set_cublas_allow_fp16_accumulation` +torch/backends/cuda/__init__.py:205:20: error[unresolved-attribute] Module `torch._C` has no member `_set_fp32_precision_setter` +torch/backends/cuda/__init__.py:210:16: error[unresolved-attribute] Module `torch._C` has no member `_LinalgBackend` +torch/backends/cuda/__init__.py:211:17: error[unresolved-attribute] Module `torch._C` has no member `_LinalgBackend` +torch/backends/cuda/__init__.py:212:14: error[unresolved-attribute] Module `torch._C` has no member `_LinalgBackend` +torch/backends/cuda/__init__.py:218:31: error[unresolved-attribute] Module `torch._C` has no member `_LinalgBackend` +torch/backends/cuda/__init__.py:219:6: error[unresolved-attribute] Module `torch._C` has no member `_LinalgBackend` +torch/backends/cuda/__init__.py:268:9: error[unresolved-attribute] Module `torch._C` has no member `_set_linalg_preferred_backend` +torch/backends/cuda/__init__.py:269:30: error[unresolved-attribute] Module `torch._C` has no member `_LinalgBackend` +torch/backends/cuda/__init__.py:270:9: error[unresolved-attribute] Module `torch._C` has no member `_set_linalg_preferred_backend` +torch/backends/cuda/__init__.py:274:12: error[unresolved-attribute] Module `torch._C` has no member `_get_linalg_preferred_backend` +torch/backends/cuda/__init__.py:278:16: error[unresolved-attribute] Module `torch._C` has no member `_BlasBackend` +torch/backends/cuda/__init__.py:279:15: error[unresolved-attribute] Module `torch._C` has no member `_BlasBackend` +torch/backends/cuda/__init__.py:280:16: error[unresolved-attribute] Module `torch._C` has no member `_BlasBackend` +torch/backends/cuda/__init__.py:281:17: error[unresolved-attribute] Module `torch._C` has no member `_BlasBackend` +torch/backends/cuda/__init__.py:282:18: error[unresolved-attribute] Module `torch._C` has no member `_BlasBackend` +torch/backends/cuda/__init__.py:283:11: error[unresolved-attribute] Module `torch._C` has no member `_BlasBackend` +torch/backends/cuda/__init__.py:289:31: error[unresolved-attribute] Module `torch._C` has no member `_BlasBackend` +torch/backends/cuda/__init__.py:290:6: error[unresolved-attribute] Module `torch._C` has no member `_BlasBackend` +torch/backends/cuda/__init__.py:323:9: error[unresolved-attribute] Module `torch._C` has no member `_set_blas_preferred_backend` +torch/backends/cuda/__init__.py:324:30: error[unresolved-attribute] Module `torch._C` has no member `_BlasBackend` +torch/backends/cuda/__init__.py:325:9: error[unresolved-attribute] Module `torch._C` has no member `_set_blas_preferred_backend` +torch/backends/cuda/__init__.py:329:12: error[unresolved-attribute] Module `torch._C` has no member `_get_blas_preferred_backend` +torch/backends/cuda/__init__.py:333:16: error[unresolved-attribute] Module `torch._C` has no member `_ROCmFABackend` +torch/backends/cuda/__init__.py:334:17: error[unresolved-attribute] Module `torch._C` has no member `_ROCmFABackend` +torch/backends/cuda/__init__.py:335:11: error[unresolved-attribute] Module `torch._C` has no member `_ROCmFABackend` +torch/backends/cuda/__init__.py:340:22: error[unresolved-import] Module `torch._C` has no member `_SDPAParams` +torch/backends/cuda/__init__.py:340:49: error[unresolved-import] Module `torch._C` has no member `_SDPBackend` +torch/backends/cuda/__init__.py:344:31: error[unresolved-attribute] Module `torch._C` has no member `_ROCmFABackend` +torch/backends/cuda/__init__.py:345:6: error[unresolved-attribute] Module `torch._C` has no member `_ROCmFABackend` +torch/backends/cuda/__init__.py:374:9: error[unresolved-attribute] Module `torch._C` has no member `_set_rocm_fa_preferred_backend` +torch/backends/cuda/__init__.py:375:30: error[unresolved-attribute] Module `torch._C` has no member `_ROCmFABackend` +torch/backends/cuda/__init__.py:376:9: error[unresolved-attribute] Module `torch._C` has no member `_set_rocm_fa_preferred_backend` +torch/backends/cuda/__init__.py:380:12: error[unresolved-attribute] Module `torch._C` has no member `_get_rocm_fa_preferred_backend` +torch/backends/cuda/__init__.py:394:12: error[unresolved-attribute] Module `torch._C` has no member `_get_flash_sdp_enabled` +torch/backends/cuda/__init__.py:403:5: error[unresolved-attribute] Module `torch._C` has no member `_set_sdp_use_flash` +torch/backends/cuda/__init__.py:412:12: error[unresolved-attribute] Module `torch._C` has no member `_get_mem_efficient_sdp_enabled` +torch/backends/cuda/__init__.py:421:5: error[unresolved-attribute] Module `torch._C` has no member `_set_sdp_use_mem_efficient` +torch/backends/cuda/__init__.py:430:12: error[unresolved-attribute] Module `torch._C` has no member `_get_math_sdp_enabled` +torch/backends/cuda/__init__.py:439:5: error[unresolved-attribute] Module `torch._C` has no member `_set_sdp_use_math` +torch/backends/cuda/__init__.py:448:5: error[unresolved-attribute] Module `torch._C` has no member `_set_math_sdp_allow_fp16_bf16_reduction` +torch/backends/cuda/__init__.py:457:12: error[unresolved-attribute] Module `torch._C` has no member `_get_math_sdp_allow_fp16_bf16_reduction` +torch/backends/cuda/__init__.py:470:12: error[unresolved-attribute] Module `torch._C` has no member `_is_flash_attention_available` +torch/backends/cuda/__init__.py:490:12: error[unresolved-attribute] Module `torch._C` has no member `_can_use_flash_attention` +torch/backends/cuda/__init__.py:510:12: error[unresolved-attribute] Module `torch._C` has no member `_can_use_mem_efficient_attention` +torch/backends/cuda/__init__.py:530:12: error[unresolved-attribute] Module `torch._C` has no member `_can_use_cudnn_attention` +torch/backends/cuda/__init__.py:539:12: error[unresolved-attribute] Module `torch._C` has no member `_get_cudnn_sdp_enabled` +torch/backends/cuda/__init__.py:548:5: error[unresolved-attribute] Module `torch._C` has no member `_set_sdp_use_cudnn` +torch/backends/cudnn/__init__.py:102:5: error[unresolved-attribute] Module `torch` has no member `half` +torch/backends/cudnn/__init__.py:103:5: error[unresolved-attribute] Module `torch` has no member `float` +torch/backends/cudnn/__init__.py:104:5: error[unresolved-attribute] Module `torch` has no member `double` +torch/backends/cudnn/__init__.py:110:12: error[unresolved-attribute] Module `torch._C` has no member `_has_cudnn` +torch/backends/cudnn/__init__.py:114:12: error[unresolved-attribute] Module `torch._C` has no member `_get_cudnn_enabled` +torch/backends/cudnn/__init__.py:147:9: error[unresolved-attribute] Module `torch._C` has no member `_get_cudnn_enabled` +torch/backends/cudnn/__init__.py:148:9: error[unresolved-attribute] Module `torch._C` has no member `_get_cudnn_benchmark` +torch/backends/cudnn/__init__.py:149:41: error[unresolved-attribute] Module `torch._C` has no member `_cuda_get_cudnn_benchmark_limit` +torch/backends/cudnn/__init__.py:150:9: error[unresolved-attribute] Module `torch._C` has no member `_get_cudnn_deterministic` +torch/backends/cudnn/__init__.py:151:9: error[unresolved-attribute] Module `torch._C` has no member `_get_cudnn_allow_tf32` +torch/backends/cudnn/__init__.py:152:9: error[unresolved-attribute] Module `torch._C` has no member `_get_fp32_precision_getter` +torch/backends/cudnn/__init__.py:155:9: error[unresolved-attribute] Module `torch._C` has no member `_set_cudnn_enabled` +torch/backends/cudnn/__init__.py:157:9: error[unresolved-attribute] Module `torch._C` has no member `_set_cudnn_benchmark` +torch/backends/cudnn/__init__.py:159:9: error[unresolved-attribute] Module `torch._C` has no member `_cuda_set_cudnn_benchmark_limit` +torch/backends/cudnn/__init__.py:161:9: error[unresolved-attribute] Module `torch._C` has no member `_set_cudnn_deterministic` +torch/backends/cudnn/__init__.py:163:9: error[unresolved-attribute] Module `torch._C` has no member `_set_cudnn_allow_tf32` +torch/backends/cudnn/__init__.py:165:9: error[unresolved-attribute] Module `torch._C` has no member `_set_fp32_precision_setter` +torch/backends/cudnn/__init__.py:204:27: error[unresolved-attribute] Module `torch._C` has no member `_get_cudnn_enabled` +torch/backends/cudnn/__init__.py:204:56: error[unresolved-attribute] Module `torch._C` has no member `_set_cudnn_enabled` +torch/backends/cudnn/__init__.py:206:9: error[unresolved-attribute] Module `torch._C` has no member `_get_cudnn_deterministic` +torch/backends/cudnn/__init__.py:206:44: error[unresolved-attribute] Module `torch._C` has no member `_set_cudnn_deterministic` +torch/backends/cudnn/__init__.py:209:9: error[unresolved-attribute] Module `torch._C` has no member `_get_cudnn_benchmark` +torch/backends/cudnn/__init__.py:209:40: error[unresolved-attribute] Module `torch._C` has no member `_set_cudnn_benchmark` +torch/backends/cudnn/__init__.py:214:13: error[unresolved-attribute] Module `torch._C` has no member `_cuda_get_cudnn_benchmark_limit` +torch/backends/cudnn/__init__.py:215:13: error[unresolved-attribute] Module `torch._C` has no member `_cuda_set_cudnn_benchmark_limit` +torch/backends/cudnn/__init__.py:218:9: error[unresolved-attribute] Module `torch._C` has no member `_get_cudnn_allow_tf32` +torch/backends/cudnn/__init__.py:218:41: error[unresolved-attribute] Module `torch._C` has no member `_set_cudnn_allow_tf32` +torch/backends/cudnn/rnn.py:64:29: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/backends/cudnn/rnn.py:65:28: error[unresolved-attribute] Module `torch` has no member `device` +torch/backends/cusparselt/__init__.py:51:12: error[unresolved-attribute] Module `torch._C` has no member `_has_cusparselt` +torch/backends/kleidiai/__init__.py:7:12: error[unresolved-attribute] Module `torch._C` has no member `_has_kleidiai` +torch/backends/miopen/__init__.py:12:19: error[unresolved-attribute] Module `torch._C` has no member `_get_miopen_immediate` +torch/backends/miopen/__init__.py:14:9: error[unresolved-attribute] Module `torch._C` has no member `_set_miopen_immediate` +torch/backends/miopen/__init__.py:44:9: error[unresolved-attribute] Module `torch._C` has no member `_get_miopen_immediate` +torch/backends/miopen/__init__.py:44:41: error[unresolved-attribute] Module `torch._C` has no member `_set_miopen_immediate` +torch/backends/mkl/__init__.py:7:12: error[unresolved-attribute] Module `torch._C` has no member `has_mkl` +torch/backends/mkl/__init__.py:50:14: error[unresolved-attribute] Module `torch._C` has no member `_verbose` +torch/backends/mkl/__init__.py:57:9: error[unresolved-attribute] Module `torch._C` has no member `_verbose` +torch/backends/mkldnn/__init__.py:19:12: error[unresolved-attribute] Module `torch._C` has no member `_has_mkldnn` +torch/backends/mkldnn/__init__.py:25:12: error[unresolved-attribute] Module `torch._C` has no member `_has_mkldnn_acl` +torch/backends/mkldnn/__init__.py:70:14: error[unresolved-attribute] Module `torch._C` has no member `_verbose` +torch/backends/mkldnn/__init__.py:77:9: error[unresolved-attribute] Module `torch._C` has no member `_verbose` +torch/backends/mkldnn/__init__.py:85:9: error[unresolved-attribute] Module `torch._C` has no member `_get_mkldnn_enabled` +torch/backends/mkldnn/__init__.py:86:9: error[unresolved-attribute] Module `torch._C` has no member `_get_mkldnn_deterministic` +torch/backends/mkldnn/__init__.py:87:9: error[unresolved-attribute] Module `torch._C` has no member `_get_onednn_allow_tf32` +torch/backends/mkldnn/__init__.py:88:9: error[unresolved-attribute] Module `torch._C` has no member `_get_fp32_precision_getter` +torch/backends/mkldnn/__init__.py:91:9: error[unresolved-attribute] Module `torch._C` has no member `_set_mkldnn_enabled` +torch/backends/mkldnn/__init__.py:93:9: error[unresolved-attribute] Module `torch._C` has no member `_set_mkldnn_deterministic` +torch/backends/mkldnn/__init__.py:95:9: error[unresolved-attribute] Module `torch._C` has no member `_set_onednn_allow_tf32` +torch/backends/mkldnn/__init__.py:97:9: error[unresolved-attribute] Module `torch._C` has no member `_set_fp32_precision_setter` +torch/backends/mkldnn/__init__.py:119:27: error[unresolved-attribute] Module `torch._C` has no member `_get_mkldnn_enabled` +torch/backends/mkldnn/__init__.py:119:57: error[unresolved-attribute] Module `torch._C` has no member `_set_mkldnn_enabled` +torch/backends/mkldnn/__init__.py:121:9: error[unresolved-attribute] Module `torch._C` has no member `_get_mkldnn_deterministic` +torch/backends/mkldnn/__init__.py:121:45: error[unresolved-attribute] Module `torch._C` has no member `_set_mkldnn_deterministic` +torch/backends/mkldnn/__init__.py:124:9: error[unresolved-attribute] Module `torch._C` has no member `_get_onednn_allow_tf32` +torch/backends/mkldnn/__init__.py:124:42: error[unresolved-attribute] Module `torch._C` has no member `_set_onednn_allow_tf32` +torch/backends/mps/__init__.py:25:12: error[unresolved-attribute] Module `torch._C` has no member `_has_mps` +torch/backends/mps/__init__.py:31:12: error[unresolved-attribute] Module `torch._C` has no member `_mps_is_available` +torch/backends/mps/__init__.py:37:12: error[unresolved-attribute] Module `torch._C` has no member `_mps_is_on_macos_or_newer` +torch/backends/mps/__init__.py:43:12: error[unresolved-attribute] Module `torch._C` has no member `_mps_is_on_macos_or_newer` +torch/backends/mps/__init__.py:49:12: error[unresolved-attribute] Module `torch._C` has no member `_mps_get_name` +torch/backends/mps/__init__.py:60:12: error[unresolved-attribute] Module `torch._C` has no member `_mps_get_core_count` +torch/backends/nnpack/__init__.py:13:12: error[unresolved-attribute] Module `torch` has no member `_nnpack_available` +torch/backends/nnpack/__init__.py:18:19: error[unresolved-attribute] Module `torch._C` has no member `_get_nnpack_enabled` +torch/backends/nnpack/__init__.py:19:5: error[unresolved-attribute] Module `torch._C` has no member `_set_nnpack_enabled` +torch/backends/openmp/__init__.py:7:12: error[unresolved-attribute] Module `torch._C` has no member `has_openmp` +torch/backends/opt_einsum/__init__.py:74:12: error[invalid-return-type] Return type does not match returned value: expected `str`, found `Literal["auto"] | None` +torch/backends/quantized/__init__.py:34:33: error[unresolved-attribute] Module `torch._C` has no member `_get_qengine` +torch/backends/quantized/__init__.py:37:9: error[unresolved-attribute] Module `torch._C` has no member `_set_qengine` +torch/backends/quantized/__init__.py:42:20: error[unresolved-attribute] Module `torch._C` has no member `_supported_qengines` +torch/backends/xeon/run_cpu.py:839:5: warning[possibly-missing-attribute] Attribute `add_argument` may be missing on object of type `Unknown | None` +torch/backends/xeon/run_cpu.py:848:5: warning[possibly-missing-attribute] Attribute `add_argument` may be missing on object of type `Unknown | None` +torch/backends/xeon/run_cpu.py:859:5: warning[possibly-missing-attribute] Attribute `add_argument` may be missing on object of type `Unknown | None` +torch/backends/xeon/run_cpu.py:874:5: warning[possibly-missing-attribute] Attribute `add_argument` may be missing on object of type `Unknown | None` +torch/backends/xeon/run_cpu.py:883:5: warning[possibly-missing-attribute] Attribute `add_argument` may be missing on object of type `Unknown | None` +torch/backends/xnnpack/__init__.py:10:16: error[unresolved-attribute] Module `torch._C` has no member `_is_xnnpack_enabled` +torch/contrib/_tensorboard_vis.py:13:10: error[unresolved-import] Cannot resolve imported module `tensorflow.core.framework` +torch/contrib/_tensorboard_vis.py:14:10: error[unresolved-import] Cannot resolve imported module `tensorflow.core.util` +torch/contrib/_tensorboard_vis.py:15:10: error[unresolved-import] Cannot resolve imported module `tensorflow.python.summary.writer.writer` +torch/contrib/_tensorboard_vis.py:37:26: error[unresolved-attribute] Module `torch._C` has no member `GraphExecutorState` +torch/cpu/__init__.py:12:16: error[unresolved-import] Module `torch` has no member `device` +torch/cpu/__init__.py:33:12: error[unresolved-attribute] Module `torch._C` has no member `_cpu` +torch/cpu/__init__.py:38:12: error[unresolved-attribute] Module `torch._C` has no member `_cpu` +torch/cpu/__init__.py:43:12: error[unresolved-attribute] Module `torch._C` has no member `_cpu` +torch/cpu/__init__.py:49:12: error[unresolved-attribute] Module `torch._C` has no member `_cpu` +torch/cpu/__init__.py:54:12: error[unresolved-attribute] Module `torch._C` has no member `_cpu` +torch/cpu/__init__.py:59:12: error[unresolved-attribute] Module `torch._C` has no member `_cpu` +torch/cpu/__init__.py:64:12: error[unresolved-attribute] Module `torch._C` has no member `_cpu` +torch/cpu/amp/__init__.py:2:28: warning[deprecated] The class `autocast` is deprecated: `torch.cpu.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cpu', args...)` instead. +torch/cpu/amp/autocast_mode.py:34:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/cpu/amp/autocast_mode.py:34:34: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/cpu/amp/autocast_mode.py:45:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/cpu/amp/autocast_mode.py:45:30: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/cpu/amp/autocast_mode.py:48:12: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/cpu/amp/autocast_mode.py:58:12: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/cpu/amp/autocast_mode.py:64:12: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/cpu/amp/autocast_mode.py:69:12: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/cuda/__init__.py:26:19: error[unresolved-import] Module `torch` has no member `device` +torch/cuda/__init__.py:151:19: error[unresolved-attribute] Module `torch._C` has no member `_has_magma` +torch/cuda/__init__.py:184:16: error[unresolved-attribute] Module `torch._C` has no member `_cuda_getDeviceCount` +torch/cuda/__init__.py:216:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/cuda/__init__.py:216:35: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/cuda/__init__.py:238:5: error[unresolved-attribute] Module `torch._C` has no member `_cuda_sleep` +torch/cuda/__init__.py:242:5: error[unresolved-attribute] Module `torch._C` has no member `_cuda_busy_wait_for_flag` +torch/cuda/__init__.py:246:5: error[unresolved-attribute] Module `torch._C` has no member `_cuda_clear_flag` +torch/cuda/__init__.py:378:20: error[unresolved-attribute] Module `torch._C` has no member `AcceleratorError` +torch/cuda/__init__.py:379:20: error[unresolved-attribute] Module `torch._C` has no member `OutOfMemoryError` +torch/cuda/__init__.py:513:15: warning[possibly-missing-attribute] Attribute `cudaGetErrorString` may be missing on object of type `Unknown | None` +torch/cuda/__init__.py:513:42: warning[possibly-missing-attribute] Attribute `cudaError` may be missing on object of type `Unknown | None` +torch/cuda/__init__.py:520:15: warning[possibly-missing-attribute] Attribute `cudaError` may be missing on object of type `Unknown | None` +torch/cuda/__init__.py:584:9: error[unresolved-attribute] Module `torch._C` has no member `_cuda_setDevice` +torch/cuda/__init__.py:620:55: error[invalid-type-form] Variable of type `type` is not allowed in a type expression +torch/cuda/__init__.py:648:12: error[unresolved-attribute] Module `torch._C` has no member `_cuda_canDeviceAccessPeer` +torch/cuda/__init__.py:730:5: error[unresolved-attribute] Module `torch._C` has no member `_cuda_setStream` +torch/cuda/__init__.py:1059:9: error[unresolved-attribute] Module `torch._C` has no member `_cuda_getDeviceCount` +torch/cuda/__init__.py:1072:18: error[unresolved-attribute] Module `torch._C` has no member `_cuda_getArchFlags` +torch/cuda/__init__.py:1095:12: error[unresolved-attribute] Module `torch._C` has no member `_cuda_getDevice` +torch/cuda/__init__.py:1108:16: error[unresolved-attribute] Module `torch._C` has no member `_cuda_synchronize` +torch/cuda/__init__.py:1121:12: error[unresolved-attribute] Module `torch._C` has no member `_cuda_ipc_collect` +torch/cuda/__init__.py:1134:18: error[unresolved-attribute] Module `torch._C` has no member `_cuda_getCurrentStream` +torch/cuda/__init__.py:1152:18: error[unresolved-attribute] Module `torch._C` has no member `_cuda_getDefaultStream` +torch/cuda/__init__.py:1178:18: error[unresolved-attribute] Module `torch._C` has no member `_cuda_getStreamFromExternal` +torch/cuda/__init__.py:1189:12: error[unresolved-attribute] Module `torch._C` has no member `_cuda_getCurrentBlasHandle` +torch/cuda/__init__.py:1216:5: error[unresolved-attribute] Module `torch._C` has no member `_cuda_set_sync_debug_mode` +torch/cuda/__init__.py:1222:12: error[unresolved-attribute] Module `torch._C` has no member `_cuda_get_sync_debug_mode` +torch/cuda/__init__.py:1232:10: error[unresolved-import] Cannot resolve imported module `pynvml` +torch/cuda/__init__.py:1452:41: error[unresolved-attribute] Module `torch` has no member `device` +torch/cuda/__init__.py:1452:59: error[unresolved-attribute] Module `torch` has no member `device` +torch/cuda/__init__.py:1459:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/cuda/__init__.py:1461:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/cuda/__init__.py:1465:28: error[unresolved-attribute] Module `torch` has no member `device` +torch/cuda/__init__.py:1465:45: error[unresolved-attribute] Module `torch._C` has no member `Generator` +torch/cuda/__init__.py:1478:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/cuda/__init__.py:1496:51: error[unresolved-attribute] Module `torch` has no member `device` +torch/cuda/__init__.py:1570:16: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/cuda/__init__.py:1581:16: error[unresolved-attribute] Module `torch` has no member `double` +torch/cuda/__init__.py:1592:16: error[unresolved-attribute] Module `torch` has no member `float` +torch/cuda/__init__.py:1603:16: error[unresolved-attribute] Module `torch` has no member `half` +torch/cuda/__init__.py:1614:16: error[unresolved-attribute] Module `torch` has no member `long` +torch/cuda/__init__.py:1625:16: error[unresolved-attribute] Module `torch` has no member `int` +torch/cuda/__init__.py:1636:16: error[unresolved-attribute] Module `torch` has no member `short` +torch/cuda/__init__.py:1647:16: error[unresolved-attribute] Module `torch` has no member `int8` +torch/cuda/__init__.py:1658:16: error[unresolved-attribute] Module `torch` has no member `bool` +torch/cuda/__init__.py:1669:16: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/cuda/__init__.py:1680:16: error[unresolved-attribute] Module `torch` has no member `cdouble` +torch/cuda/__init__.py:1691:16: error[unresolved-attribute] Module `torch` has no member `cfloat` +torch/cuda/__init__.py:1730:16: error[call-non-callable] Object of type `None` is not callable +torch/cuda/__init__.py:1738:18: error[unresolved-attribute] Module `importlib` has no member `util` +torch/cuda/_device_limits.py:2:22: error[unresolved-import] Module `torch._C` has no member `dtype` +torch/cuda/_device_limits.py:15:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/cuda/_device_limits.py:47:25: error[unresolved-attribute] Module `torch` has no member `float16` +torch/cuda/_device_limits.py:49:27: error[unresolved-attribute] Module `torch` has no member `float32` +torch/cuda/_device_limits.py:51:27: error[unresolved-attribute] Module `torch` has no member `float64` +torch/cuda/_device_limits.py:85:25: error[unresolved-attribute] Module `torch` has no member `float16` +torch/cuda/_device_limits.py:87:27: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/cuda/_device_limits.py:90:27: error[unresolved-attribute] Module `torch` has no member `float32` +torch/cuda/_device_limits.py:92:27: error[unresolved-attribute] Module `torch` has no member `int8` +torch/cuda/_device_limits.py:94:27: error[unresolved-attribute] Module `torch` has no member `float64` +torch/cuda/_gpu_trace.py:12:24: error[too-many-positional-arguments] Too many positional arguments to class `CallbackRegistry`: expected 1, got 2 +torch/cuda/_gpu_trace.py:15:22: error[too-many-positional-arguments] Too many positional arguments to class `CallbackRegistry`: expected 1, got 2 +torch/cuda/_sanitizer.py:473:13: error[unresolved-attribute] Module `torch` has no member `FunctionSchema` +torch/cuda/_sanitizer.py:474:21: error[unresolved-attribute] Module `torch` has no member `Argument` +torch/cuda/_sanitizer.py:514:17: error[unresolved-attribute] Module `torch` has no member `FunctionSchema` +torch/cuda/_sanitizer.py:538:23: error[unresolved-attribute] Module `torch` has no member `FunctionSchema` +torch/cuda/_sanitizer.py:558:9: error[unresolved-attribute] Module `torch._C` has no member `_activate_gpu_trace` +torch/cuda/_utils.py:283:39: error[unresolved-import] Module `torch.cuda._utils` has no member `_get_gpu_runtime_library` +torch/cuda/_utils.py:519:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/cuda/_utils.py:520:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/cuda/amp/__init__.py:2:28: warning[deprecated] The class `autocast` is deprecated: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead. +torch/cuda/amp/__init__.py:2:38: warning[deprecated] The function `custom_bwd` is deprecated: `torch.cuda.amp.custom_bwd(args...)` is deprecated. Please use `torch.amp.custom_bwd(args..., device_type='cuda')` instead. +torch/cuda/amp/__init__.py:2:50: warning[deprecated] The function `custom_fwd` is deprecated: `torch.cuda.amp.custom_fwd(args...)` is deprecated. Please use `torch.amp.custom_fwd(args..., device_type='cuda')` instead. +torch/cuda/amp/autocast_mode.py:35:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/cuda/amp/autocast_mode.py:35:34: error[unresolved-attribute] Module `torch` has no member `float16` +torch/cuda/amp/autocast_mode.py:46:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/cuda/amp/autocast_mode.py:46:30: error[unresolved-attribute] Module `torch` has no member `float16` +torch/cuda/amp/autocast_mode.py:49:12: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/cuda/amp/autocast_mode.py:59:12: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/cuda/amp/autocast_mode.py:65:12: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/cuda/amp/autocast_mode.py:70:12: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/cuda/gds.py:52:5: error[unresolved-attribute] Module `torch._C` has no member `_gds_register_buffer` +torch/cuda/gds.py:69:5: error[unresolved-attribute] Module `torch._C` has no member `_gds_deregister_buffer` +torch/cuda/gds.py:126:23: error[unresolved-attribute] Module `torch._C` has no member `_gds_register_handle` +torch/cuda/gds.py:136:9: error[unresolved-attribute] Module `torch._C` has no member `_gds_deregister_handle` +torch/cuda/gds.py:152:9: error[unresolved-attribute] Module `torch._C` has no member `_gds_load_storage` +torch/cuda/gds.py:167:9: error[unresolved-attribute] Module `torch._C` has no member `_gds_save_storage` +torch/cuda/graphs.py:42:5: error[unresolved-import] Module `torch._C` has no member `_cuda_isCurrentStreamCapturing` +torch/cuda/graphs.py:43:5: error[unresolved-import] Module `torch._C` has no member `_CUDAGraph` +torch/cuda/graphs.py:44:5: error[unresolved-import] Module `torch._C` has no member `_graph_pool_handle` +torch/cuda/graphs.py:69:17: error[unresolved-attribute] Module `torch._C` has no member `_CUDAGraph` +torch/cuda/graphs.py:261:13: error[invalid-argument-type] Argument to bound method `capture_begin` is incorrect: Expected `str`, found `_POOL_HANDLE` +torch/cuda/graphs.py:263:13: error[parameter-already-assigned] Multiple values provided for parameter `capture_error_mode` of bound method `capture_begin` +torch/cuda/graphs.py:368:8: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/cuda/graphs.py:368:40: error[unresolved-attribute] Module `torch` has no member `is_autocast_cache_enabled` +torch/cuda/graphs.py:400:23: error[unresolved-attribute] Module `torch.utils` has no member `_pytree` +torch/cuda/graphs.py:434:27: error[unresolved-attribute] Module `torch.utils` has no member `_pytree` +torch/cuda/graphs.py:443:29: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/cuda/graphs.py:464:33: error[unresolved-attribute] Module `torch.utils` has no member `_pytree` +torch/cuda/graphs.py:479:13: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/cuda/graphs.py:520:32: error[unresolved-attribute] Module `torch.utils` has no member `_pytree` +torch/cuda/graphs.py:563:33: error[unresolved-attribute] Module `torch.utils` has no member `_pytree` +torch/cuda/graphs.py:565:20: error[unresolved-attribute] Module `torch.utils` has no member `_pytree` +torch/cuda/jiterator.py:88:16: error[unresolved-attribute] Module `torch._C` has no member `_cuda_jiterator_compile_and_launch_kernel` +torch/cuda/memory.py:143:5: error[unresolved-import] Module `torch._C` has no member `_cuda_beginAllocateCurrentThreadToPool` +torch/cuda/memory.py:144:5: error[unresolved-import] Module `torch._C` has no member `_cuda_beginAllocateToPool` +torch/cuda/memory.py:145:5: error[unresolved-import] Module `torch._C` has no member `_cuda_CUDAAllocator` +torch/cuda/memory.py:146:5: error[unresolved-import] Module `torch._C` has no member `_cuda_endAllocateToPool` +torch/cuda/memory.py:147:5: error[unresolved-import] Module `torch._C` has no member `_cuda_releasePool` +torch/cuda/memory.py:148:5: error[unresolved-import] Module `torch._C` has no member `_MemPool` +torch/cuda/memory.py:154:12: error[unresolved-attribute] Module `torch._C` has no member `_cuda_cudaHostAllocator` +torch/cuda/memory.py:159:5: error[unresolved-attribute] Module `torch._C` has no member `_cuda_lock_mutex` +torch/cuda/memory.py:163:9: error[unresolved-attribute] Module `torch._C` has no member `_cuda_unlock_mutex` +torch/cuda/memory.py:199:16: error[unresolved-attribute] Module `torch._C` has no member `_cuda_cudaCachingAllocator_raw_alloc` +torch/cuda/memory.py:216:5: error[unresolved-attribute] Module `torch._C` has no member `_cuda_cudaCachingAllocator_raw_delete` +torch/cuda/memory.py:222:9: error[unresolved-attribute] Module `torch._C` has no member `_cuda_cudaCachingAllocator_enable` +torch/cuda/memory.py:249:5: error[unresolved-attribute] Module `torch._C` has no member `_cuda_setMemoryFraction` +torch/cuda/memory.py:265:12: error[unresolved-attribute] Module `torch._C` has no member `_cuda_getMemoryFraction` +torch/cuda/memory.py:280:9: error[unresolved-attribute] Module `torch._C` has no member `_cuda_emptyCache` +torch/cuda/memory.py:393:12: error[unresolved-attribute] Module `torch._C` has no member `_cuda_memoryStats` +torch/cuda/memory.py:413:12: error[unresolved-attribute] Module `torch._C` has no member `_cuda_resetAccumulatedMemoryStats` +torch/cuda/memory.py:432:12: error[unresolved-attribute] Module `torch._C` has no member `_cuda_resetPeakMemoryStats` +torch/cuda/memory.py:508:12: error[unresolved-attribute] Module `torch._C` has no member `_cuda_hostMemoryStats` +torch/cuda/memory.py:517:12: error[unresolved-attribute] Module `torch._C` has no member `_cuda_resetAccumulatedHostMemoryStats` +torch/cuda/memory.py:526:12: error[unresolved-attribute] Module `torch._C` has no member `_cuda_resetPeakHostMemoryStats` +torch/cuda/memory.py:685:12: error[unresolved-attribute] Module `torch._C` has no member `_cuda_memorySnapshot` +torch/cuda/memory.py:832:14: error[unresolved-import] Cannot resolve imported module `pynvml` +torch/cuda/memory.py:1228:9: error[unresolved-attribute] Module `torch._C` has no member `_cuda_memorySnapshot` +torch/cuda/memory.py:1270:5: error[unresolved-attribute] Module `torch._C` has no member `_cuda_setMemoryMetadata` +torch/cuda/memory.py:1281:12: error[unresolved-attribute] Module `torch._C` has no member `_cuda_getMemoryMetadata` +torch/cuda/memory.py:1304:12: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_setAllocatorSettings` +torch/cuda/memory.py:1316:12: error[unresolved-attribute] Module `torch._C` has no member `_cuda_getAllocatorBackend` +torch/cuda/memory.py:1322:35: error[unresolved-attribute] Module `torch._C` has no member `_cuda_CUDAAllocator` +torch/cuda/memory.py:1358:27: error[unresolved-attribute] Module `torch._C` has no member `_cuda_customAllocator` +torch/cuda/memory.py:1372:5: error[unresolved-attribute] Module `torch._C` has no member `_cuda_changeCurrentAllocator` +torch/cuda/memory.py:1381:27: error[unresolved-attribute] Module `torch._C` has no member `_cuda_getAllocator` +torch/cuda/nccl.py:46:11: error[unresolved-attribute] Module `torch._C` has no member `_nccl_version` +torch/cuda/nccl.py:50:14: error[unresolved-attribute] Module `torch._C` has no member `_nccl_version_suffix` +torch/cuda/nccl.py:58:12: error[unresolved-attribute] Module `torch._C` has no member `_nccl_unique_id` +torch/cuda/nccl.py:62:12: error[unresolved-attribute] Module `torch._C` has no member `_nccl_init_rank` +torch/cuda/nccl.py:66:31: error[unresolved-attribute] Module `collections` has no member `abc` +torch/cuda/nccl.py:77:5: error[unresolved-attribute] Module `torch._C` has no member `_nccl_all_reduce` +torch/cuda/nccl.py:110:17: error[unresolved-attribute] Module `collections` has no member `abc` +torch/cuda/nccl.py:122:5: error[unresolved-attribute] Module `torch._C` has no member `_nccl_reduce` +torch/cuda/nccl.py:129:5: error[unresolved-attribute] Module `torch._C` has no member `_nccl_broadcast` +torch/cuda/nccl.py:140:5: error[unresolved-attribute] Module `torch._C` has no member `_nccl_all_gather` +torch/cuda/nccl.py:152:5: error[unresolved-attribute] Module `torch._C` has no member `_nccl_reduce_scatter` +torch/cuda/random.py:24:43: error[unresolved-attribute] Module `torch` has no member `device` +torch/cuda/random.py:36:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/cuda/random.py:38:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/cuda/random.py:53:48: error[unresolved-attribute] Module `torch` has no member `device` +torch/cuda/random.py:63:14: error[unresolved-attribute] Module `torch._C` has no member `_DisableFuncTorch` +torch/cuda/random.py:66:55: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/cuda/random.py:68:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/cuda/random.py:70:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/cuda/streams.py:14:14: error[unresolved-attribute] Module `torch._C` has no member `_CudaStreamBase` +torch/cuda/streams.py:156:13: error[unresolved-attribute] Module `torch._C` has no member `_CudaEventBase` +torch/cuda/tunable.py:437:13: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/cuda/tunable.py:439:22: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/cuda/tunable.py:462:20: error[unresolved-attribute] Module `torch` has no member `randn` +torch/cuda/tunable.py:463:20: error[unresolved-attribute] Module `torch` has no member `randn` +torch/cuda/tunable.py:465:20: error[unresolved-attribute] Module `torch` has no member `full` +torch/cuda/tunable.py:466:20: error[unresolved-attribute] Module `torch` has no member `full` +torch/cuda/tunable.py:474:17: error[unresolved-attribute] Module `torch` has no member `rand` +torch/cuda/tunable.py:476:22: error[unresolved-attribute] Module `torch` has no member `rand` +torch/cuda/tunable.py:479:17: error[unresolved-attribute] Module `torch` has no member `rand` +torch/cuda/tunable.py:481:22: error[unresolved-attribute] Module `torch` has no member `rand` +torch/cuda/tunable.py:485:17: error[unresolved-attribute] Module `torch` has no member `full` +torch/cuda/tunable.py:487:22: error[unresolved-attribute] Module `torch` has no member `full` +torch/cuda/tunable.py:490:17: error[unresolved-attribute] Module `torch` has no member `full` +torch/cuda/tunable.py:492:22: error[unresolved-attribute] Module `torch` has no member `full` +torch/cuda/tunable.py:507:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/cuda/tunable.py:523:16: error[unresolved-attribute] Module `torch` has no member `randn` +torch/cuda/tunable.py:524:16: error[unresolved-attribute] Module `torch` has no member `randn` +torch/cuda/tunable.py:531:13: error[unresolved-attribute] Module `torch` has no member `rand` +torch/cuda/tunable.py:533:18: error[unresolved-attribute] Module `torch` has no member `rand` +torch/cuda/tunable.py:536:13: error[unresolved-attribute] Module `torch` has no member `rand` +torch/cuda/tunable.py:538:18: error[unresolved-attribute] Module `torch` has no member `rand` +torch/cuda/tunable.py:551:18: error[unresolved-attribute] Module `torch` has no member `float32` +torch/cuda/tunable.py:552:17: error[unresolved-attribute] Module `torch` has no member `float32` +torch/cuda/tunable.py:553:19: error[unresolved-attribute] Module `torch` has no member `float64` +torch/cuda/tunable.py:554:21: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/cuda/tunable.py:555:17: error[unresolved-attribute] Module `torch` has no member `half` +torch/cuda/tunable.py:556:33: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/cuda/tunable.py:557:32: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/cuda/tunable.py:558:26: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/cuda/tunable.py:559:24: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/cuda/tunable.py:560:28: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/cuda/tunable.py:561:28: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/cuda/tunable.py:635:51: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/cuda/tunable.py:641:9: error[unresolved-attribute] Module `torch` has no member `mm` +torch/cuda/tunable.py:656:51: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/cuda/tunable.py:673:9: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/cuda/tunable.py:680:53: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/cuda/tunable.py:708:22: error[unresolved-attribute] Module `torch` has no member `ones` +torch/cuda/tunable.py:711:17: error[unresolved-attribute] Module `torch` has no member `ones` +torch/cuda/tunable.py:716:22: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/cuda/tunable.py:717:22: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/cuda/tunable.py:721:13: error[unresolved-attribute] Module `torch` has no member `_scaled_mm` +torch/cuda/tunable.py:728:17: error[unresolved-attribute] Module `torch` has no member `full` +torch/cuda/tunable.py:732:13: error[unresolved-attribute] Module `torch` has no member `_scaled_mm` +torch/cuda/tunable.py:741:51: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/cuda/tunable.py:744:16: error[unresolved-attribute] Module `torch` has no member `rand` +torch/distributed/__init__.py:29:27: error[unresolved-attribute] Module `torch._C` has no member `_c10d_init` +torch/distributed/__init__.py:33:13: error[unresolved-attribute] Module `torch._C` has no member `_DistError` +torch/distributed/__init__.py:34:20: error[unresolved-attribute] Module `torch._C` has no member `_DistBackendError` +torch/distributed/__init__.py:35:20: error[unresolved-attribute] Module `torch._C` has no member `_DistNetworkError` +torch/distributed/__init__.py:36:18: error[unresolved-attribute] Module `torch._C` has no member `_DistStoreError` +torch/distributed/__init__.py:37:19: error[unresolved-attribute] Module `torch._C` has no member `_DistQueueEmptyError` +torch/distributed/__init__.py:105:26: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/__init__.py:106:17: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/__init__.py:119:23: error[unresolved-attribute] Module `torch._C` has no member `_meta_in_tls_dispatch_include` +torch/distributed/__init__.py:121:9: error[unresolved-attribute] Module `torch._C` has no member `_set_meta_in_tls_dispatch_include` +torch/distributed/__init__.py:125:13: error[unresolved-attribute] Module `torch._C` has no member `_set_meta_in_tls_dispatch_include` +torch/distributed/__init__.py:131:30: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/__init__.py:131:42: warning[possibly-missing-import] Member `init_device_mesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/__init__.py:145:9: warning[deprecated] The function `_reduce_scatter_base` is deprecated: `torch.distributed._reduce_scatter_base` is a private function and will be deprecated. Please use `torch.distributed.reduce_scatter_tensor` instead. +torch/distributed/_composable/checkpoint_activation.py:70:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/_composable/contract.py:123:17: error[invalid-assignment] Object of type `Module` is not assignable to `_M@contract` +torch/distributed/_composable/contract.py:140:41: error[unresolved-attribute] Object of type `(...) -> _M@contract` has no attribute `__name__` +torch/distributed/_composable/contract.py:143:41: error[unresolved-attribute] Object of type `(...) -> _M@contract` has no attribute `__name__` +torch/distributed/_composable/contract.py:147:37: error[unresolved-attribute] Object of type `(...) -> _M@contract` has no attribute `__name__` +torch/distributed/_composable/contract.py:150:58: error[invalid-argument-type] Argument to bound method `named_parameters` is incorrect: Expected `Module`, found `_M@contract` +torch/distributed/_composable/contract.py:150:58: warning[possibly-missing-attribute] Attribute `named_parameters` may be missing on object of type `_M@contract` +torch/distributed/_composable/contract.py:152:59: error[invalid-argument-type] Argument to bound method `named_buffers` is incorrect: Expected `Module`, found `_M@contract` +torch/distributed/_composable/contract.py:152:59: warning[possibly-missing-attribute] Attribute `named_buffers` may be missing on object of type `_M@contract` +torch/distributed/_composable/contract.py:154:59: error[invalid-argument-type] Argument to bound method `named_modules` is incorrect: Expected `Module`, found `_M@contract` +torch/distributed/_composable/contract.py:154:59: warning[possibly-missing-attribute] Attribute `named_modules` may be missing on object of type `_M@contract` +torch/distributed/_composable/contract.py:169:17: error[invalid-assignment] Object of type `Module` is not assignable to `_M@contract` +torch/distributed/_composable/contract.py:171:57: error[invalid-argument-type] Argument to bound method `named_parameters` is incorrect: Expected `Module`, found `_M@contract` +torch/distributed/_composable/contract.py:171:57: warning[possibly-missing-attribute] Attribute `named_parameters` may be missing on object of type `_M@contract` +torch/distributed/_composable/contract.py:173:58: error[invalid-argument-type] Argument to bound method `named_buffers` is incorrect: Expected `Module`, found `_M@contract` +torch/distributed/_composable/contract.py:173:58: warning[possibly-missing-attribute] Attribute `named_buffers` may be missing on object of type `_M@contract` +torch/distributed/_composable/contract.py:175:58: error[invalid-argument-type] Argument to bound method `named_modules` is incorrect: Expected `Module`, found `_M@contract` +torch/distributed/_composable/contract.py:175:58: warning[possibly-missing-attribute] Attribute `named_modules` may be missing on object of type `_M@contract` +torch/distributed/_composable/contract.py:181:24: error[unresolved-attribute] Object of type `(...) -> _M@contract` has no attribute `__name__` +torch/distributed/_composable/replicate.py:105:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_composable/replicate.py:133:9: error[invalid-assignment] Object of type `bool` is not assignable to attribute `require_backward_grad_sync` on type `Unknown | DistributedDataParallel` +torch/distributed/_composable/replicate.py:194:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/_composable/replicate.py:199:54: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_composable/replicate.py:245:5: error[unresolved-attribute] Cannot assign object of type `type` to attribute `__class__` on type `Module` with custom `__setattr__` method. +torch/distributed/_composable/replicate_with_fsdp.py:11:43: warning[possibly-missing-import] Member `_get_device_handle` of module `torch.distributed.device_mesh` may be missing +torch/distributed/_composable/replicate_with_fsdp.py:64:41: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/_composable/replicate_with_fsdp.py:89:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_composable/replicate_with_fsdp.py:166:36: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_composable/replicate_with_fsdp.py:171:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/_composable/replicate_with_fsdp.py:222:9: error[unresolved-attribute] Cannot assign object of type `type` to attribute `__class__` on type `Module` with custom `__setattr__` method. +torch/distributed/_composable/replicate_with_fsdp.py:349:12: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/_composable/replicate_with_fsdp.py:350:9: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/_composable/replicate_with_fsdp.py:351:18: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/_composable/replicate_with_fsdp.py:352:14: error[unresolved-attribute] Module `torch._C` has no member `_get_accelerator` +torch/distributed/_dist2.py:45:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_dist2.py:69:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_dist2.py:72:35: warning[possibly-missing-import] Member `ProcessGroupGloo` of module `torch.distributed` may be missing +torch/distributed/_dist2.py:86:9: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_dist2.py:90:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_dist2.py:100:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_dist2.py:103:35: warning[possibly-missing-import] Member `ProcessGroupNCCL` of module `torch.distributed` may be missing +torch/distributed/_dist2.py:130:24: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_dist2.py:151:14: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_functional_collectives.py:10:43: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/_functional_collectives.py:94:5: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:96:12: error[unresolved-attribute] Module `torch.distributed` has no member `tensor` +torch/distributed/_functional_collectives.py:211:15: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_functional_collectives.py:211:25: error[unresolved-attribute] Module `torch` has no member `chunk` +torch/distributed/_functional_collectives.py:244:15: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_functional_collectives.py:244:25: error[unresolved-attribute] Module `torch` has no member `chunk` +torch/distributed/_functional_collectives.py:278:23: error[unresolved-attribute] Module `torch` has no member `chunk` +torch/distributed/_functional_collectives.py:279:16: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_functional_collectives.py:318:23: error[unresolved-attribute] Module `torch` has no member `chunk` +torch/distributed/_functional_collectives.py:319:16: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_functional_collectives.py:423:27: error[unresolved-attribute] Module `torch` has no member `chunk` +torch/distributed/_functional_collectives.py:424:27: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_functional_collectives.py:443:8: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/distributed/_functional_collectives.py:444:21: error[unresolved-attribute] Module `torch` has no member `DispatchKey` +torch/distributed/_functional_collectives.py:572:19: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:574:19: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:659:24: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/distributed/_functional_collectives.py:659:38: error[index-out-of-bounds] Index 1 is out of bounds for tuple `tuple[()]` with length 0 +torch/distributed/_functional_collectives.py:745:28: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:746:19: warning[possibly-missing-attribute] Member `get_process_group_ranks` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:756:19: warning[possibly-missing-attribute] Member `get_process_group_ranks` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:768:23: warning[possibly-missing-attribute] Member `get_process_group_ranks` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:787:26: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:845:8: error[unresolved-attribute] Module `torch._C` has no member `_get_dispatch_mode` +torch/distributed/_functional_collectives.py:845:36: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/distributed/_functional_collectives.py:848:8: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_tls_is_dispatch_key_included` +torch/distributed/_functional_collectives.py:849:9: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/distributed/_functional_collectives.py:890:16: error[unresolved-attribute] Module `torch._C` has no member `_distributed_c10d` +torch/distributed/_functional_collectives.py:893:9: error[unresolved-attribute] Module `torch._C` has no member `_distributed_c10d` +torch/distributed/_functional_collectives.py:896:9: error[unresolved-attribute] Module `torch._C` has no member `_distributed_c10d` +torch/distributed/_functional_collectives.py:917:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/_functional_collectives.py:921:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/_functional_collectives.py:925:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/_functional_collectives.py:939:13: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/_functional_collectives.py:1062:36: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/distributed/_functional_collectives.py:1090:22: warning[possibly-missing-attribute] Member `group` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:1111:22: warning[possibly-missing-attribute] Member `group` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:1119:5: warning[possibly-missing-attribute] Member `ReduceOp` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:1120:5: warning[possibly-missing-attribute] Member `ReduceOp` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:1121:5: warning[possibly-missing-attribute] Member `ReduceOp` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:1122:5: warning[possibly-missing-attribute] Member `ReduceOp` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:1123:5: warning[possibly-missing-attribute] Member `ReduceOp` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:1124:5: warning[possibly-missing-attribute] Member `ReduceOp` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:1125:5: warning[possibly-missing-attribute] Member `ReduceOp` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:1126:5: warning[possibly-missing-attribute] Member `ReduceOp` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:1142:22: warning[possibly-missing-attribute] Member `group` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:1163:22: warning[possibly-missing-attribute] Member `group` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:1192:22: warning[possibly-missing-attribute] Member `group` may be missing on module `torch.distributed` +torch/distributed/_functional_collectives.py:1217:5: warning[deprecated] The function `_reduce_scatter_base` is deprecated: `torch.distributed._reduce_scatter_base` is a private function and will be deprecated. Please use `torch.distributed.reduce_scatter_tensor` instead. +torch/distributed/_local_tensor/__init__.py:68:19: error[unresolved-import] Module `torch` has no member `Size` +torch/distributed/_local_tensor/__init__.py:69:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/distributed/_local_tensor/__init__.py:69:35: error[unresolved-import] Module `torch._C` has no member `DispatchKeySet` +torch/distributed/_local_tensor/__init__.py:69:51: error[unresolved-import] Module `torch._C` has no member `ScriptObject` +torch/distributed/_local_tensor/__init__.py:72:31: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed` may be missing +torch/distributed/_local_tensor/__init__.py:72:43: warning[possibly-missing-import] Member `ProcessGroup` of module `torch.distributed` may be missing +torch/distributed/_local_tensor/__init__.py:103:13: error[unresolved-attribute] Object of type `object` has no attribute `name` +torch/distributed/_local_tensor/__init__.py:105:17: error[unresolved-attribute] Object of type `object` has no attribute `arguments` +torch/distributed/_local_tensor/__init__.py:106:13: error[unresolved-attribute] Object of type `object` has no attribute `arguments` +torch/distributed/_local_tensor/__init__.py:107:17: error[unresolved-attribute] Object of type `object` has no attribute `returns` +torch/distributed/_local_tensor/__init__.py:108:13: error[unresolved-attribute] Object of type `object` has no attribute `returns` +torch/distributed/_local_tensor/__init__.py:252:20: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/_local_tensor/__init__.py:307:45: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/distributed/_local_tensor/__init__.py:320:27: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/distributed/_local_tensor/__init__.py:321:8: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_keys` +torch/distributed/_local_tensor/__init__.py:321:39: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/distributed/_local_tensor/__init__.py:322:55: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/distributed/_local_tensor/__init__.py:323:8: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_keys` +torch/distributed/_local_tensor/__init__.py:323:39: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/distributed/_local_tensor/__init__.py:324:55: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/distributed/_local_tensor/__init__.py:435:16: error[unresolved-attribute] Module `torch._C` has no member `_get_constant_bool_symnode` +torch/distributed/_local_tensor/__init__.py:439:16: error[unresolved-attribute] Module `torch._C` has no member `_get_constant_bool_symnode` +torch/distributed/_local_tensor/__init__.py:444:16: error[unresolved-attribute] Module `torch._C` has no member `_get_constant_bool_symnode` +torch/distributed/_local_tensor/__init__.py:449:16: error[unresolved-attribute] Module `torch._C` has no member `_get_constant_bool_symnode` +torch/distributed/_local_tensor/__init__.py:454:16: error[unresolved-attribute] Module `torch._C` has no member `_get_constant_bool_symnode` +torch/distributed/_local_tensor/__init__.py:557:51: warning[possibly-missing-import] Member `_get_device_handle` of module `torch.distributed.device_mesh` may be missing +torch/distributed/_local_tensor/__init__.py:568:16: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_local_tensor/__init__.py:609:61: error[unresolved-attribute] Module `torch` has no member `int64` +torch/distributed/_local_tensor/__init__.py:730:5: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_local_tensor/__init__.py:731:5: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/_local_tensor/__init__.py:732:5: error[unresolved-attribute] Module `torch` has no member `layout` +torch/distributed/_local_tensor/__init__.py:892:21: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/_local_tensor/__init__.py:952:24: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/distributed/_local_tensor/__init__.py:952:46: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_local_tensor/__init__.py:965:24: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/distributed/_local_tensor/__init__.py:965:46: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_local_tensor/__init__.py:994:20: error[unresolved-attribute] Module `torch` has no member `equal` +torch/distributed/_local_tensor/__init__.py:1239:13: error[invalid-assignment] Implicit shadowing of function `manual_seed` +torch/distributed/_local_tensor/__init__.py:1240:13: error[invalid-assignment] Implicit shadowing of function `manual_seed` +torch/distributed/_local_tensor/__init__.py:1244:13: error[invalid-assignment] Implicit shadowing of function `initial_seed` +torch/distributed/_local_tensor/__init__.py:1245:13: error[invalid-assignment] Implicit shadowing of function `initial_seed` +torch/distributed/_local_tensor/__init__.py:1269:36: error[unresolved-attribute] Module `torch._C` has no member `Generator` +torch/distributed/_local_tensor/__init__.py:1489:59: error[unresolved-attribute] Module `torch` has no member `int64` +torch/distributed/_local_tensor/__init__.py:1499:60: error[unresolved-attribute] Module `torch` has no member `int64` +torch/distributed/_local_tensor/__init__.py:1512:55: error[unresolved-attribute] Module `torch` has no member `int64` +torch/distributed/_local_tensor/__init__.py:1727:28: error[non-subscriptable] Cannot subscript object of type `object` with no `__getitem__` method +torch/distributed/_local_tensor/__init__.py:1734:29: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/_local_tensor/__init__.py:1735:39: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/distributed/_local_tensor/__init__.py:1736:20: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/_local_tensor/_c10d.py:8:22: error[unresolved-import] Module `torch._C` has no member `ScriptObject` +torch/distributed/_local_tensor/_c10d.py:85:13: warning[possibly-missing-attribute] Member `get_process_group_ranks` may be missing on module `torch.distributed` +torch/distributed/_local_tensor/_c10d.py:126:27: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_local_tensor/_c10d.py:197:27: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_local_tensor/_c10d.py:271:14: error[unresolved-attribute] Module `torch` has no member `minimum` +torch/distributed/_local_tensor/_c10d.py:273:14: error[unresolved-attribute] Module `torch` has no member `maximum` +torch/distributed/_local_tensor/_c10d.py:275:14: error[unresolved-attribute] Module `torch` has no member `bitwise_and` +torch/distributed/_local_tensor/_c10d.py:277:14: error[unresolved-attribute] Module `torch` has no member `bitwise_or` +torch/distributed/_local_tensor/_c10d.py:279:14: error[unresolved-attribute] Module `torch` has no member `bitwise_xor` +torch/distributed/_local_tensor/_c10d.py:444:22: error[invalid-assignment] Object of type `list[Tensor]` is not assignable to `list[list[Tensor]]` +torch/distributed/_local_tensor/_c10d.py:465:13: error[unresolved-attribute] Object of type `list[Tensor]` has no attribute `copy_` +torch/distributed/_local_tensor/_c10d.py:470:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[list[list[Tensor]], Unknown]`, found `tuple[list[list[Tensor] | list[list[Tensor]]], Unknown]` +torch/distributed/_local_tensor/_c10d.py:513:32: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_local_tensor/_c10d.py:557:21: error[invalid-assignment] Object of type `list[Tensor]` is not assignable to `list[list[Tensor]]` +torch/distributed/_pycute/layout.py:164:13: error[invalid-argument-type] Argument to function `make_layout` is incorrect: Expected `Layout | tuple[Layout, ...]`, found `chain[Layout]` +torch/distributed/_pycute/layout.py:205:13: error[invalid-argument-type] Argument to function `make_layout` is incorrect: Expected `Layout | tuple[Layout, ...]`, found `chain[Layout]` +torch/distributed/_pycute/layout.py:235:13: error[invalid-argument-type] Argument to function `make_layout` is incorrect: Expected `Layout | tuple[Layout, ...]`, found `chain[Layout]` +torch/distributed/_pycute/layout.py:371:13: error[invalid-argument-type] Argument to function `make_layout` is incorrect: Expected `Layout | tuple[Layout, ...]`, found `chain[Layout]` +torch/distributed/_pycute/layout.py:396:13: error[invalid-argument-type] Argument to function `make_layout` is incorrect: Expected `Layout | tuple[Layout, ...]`, found `chain[Layout]` +torch/distributed/_serialization.py:63:31: error[unresolved-attribute] Module `torch` has no member `frombuffer` +torch/distributed/_serialization.py:65:31: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/_serialization.py:84:16: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/_serialization.py:84:57: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/_shard/api.py:8:31: warning[possibly-missing-import] Member `distributed_c10d` of module `torch.distributed` may be missing +torch/distributed/_shard/api.py:53:18: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/_shard/api.py:54:20: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_shard/api.py:58:5: warning[possibly-missing-attribute] Member `all_gather_object` may be missing on module `torch.distributed` +torch/distributed/_shard/api.py:132:34: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_shard/checkpoint/__init__.py:19:54: error[unresolved-attribute] Module `torch.distributed` has no member `checkpoint` +torch/distributed/_shard/common_op_utils.py:64:14: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunctionSubclass` +torch/distributed/_shard/sharded_tensor/__init__.py:30:12: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/_shard/sharded_tensor/__init__.py:33:19: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_shard/sharded_tensor/__init__.py:85:12: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/_shard/sharded_tensor/__init__.py:88:19: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_shard/sharded_tensor/__init__.py:139:12: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/_shard/sharded_tensor/__init__.py:142:19: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_shard/sharded_tensor/__init__.py:195:12: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/_shard/sharded_tensor/__init__.py:198:19: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_shard/sharded_tensor/__init__.py:249:12: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/_shard/sharded_tensor/__init__.py:252:19: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_shard/sharded_tensor/__init__.py:305:12: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/_shard/sharded_tensor/__init__.py:308:19: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_shard/sharded_tensor/_ops/_common.py:47:18: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/distributed/_shard/sharded_tensor/_ops/_common.py:97:14: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/distributed/_shard/sharded_tensor/_ops/_common.py:107:37: error[invalid-argument-type] Argument expression after ** must be a mapping type: Found `Unknown | None` +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:11:25: error[unresolved-attribute] Module `torch` has no member `ones` +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:11:46: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:13:25: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:13:47: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:15:5: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:17:23: error[unresolved-attribute] Module `torch` has no member `ones` +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:18:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:19:9: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:21:12: error[unresolved-attribute] Module `torch` has no member `equal` +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:71:19: error[unresolved-attribute] Module `torch` has no member `equal` +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:73:23: error[unresolved-attribute] Module `torch` has no member `equal` +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:76:19: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py:78:23: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/distributed/_shard/sharded_tensor/_ops/init.py:24:22: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/distributed/_shard/sharded_tensor/_ops/init.py:27:9: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/distributed/_shard/sharded_tensor/_ops/init.py:30:9: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/distributed/_shard/sharded_tensor/_ops/init.py:50:22: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/distributed/_shard/sharded_tensor/_ops/init.py:53:12: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/distributed/_shard/sharded_tensor/_ops/init.py:56:11: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/distributed/_shard/sharded_tensor/_ops/init.py:88:22: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/distributed/_shard/sharded_tensor/_ops/init.py:91:9: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/distributed/_shard/sharded_tensor/_ops/init.py:94:12: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/distributed/_shard/sharded_tensor/_ops/init.py:97:20: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/distributed/_shard/sharded_tensor/_ops/init.py:117:22: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/distributed/_shard/sharded_tensor/_ops/init.py:120:11: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/distributed/_shard/sharded_tensor/_ops/init.py:128:5: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/distributed/_shard/sharded_tensor/_ops/init.py:129:5: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/_shard/sharded_tensor/_ops/init.py:130:5: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/_shard/sharded_tensor/_ops/init.py:131:5: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/distributed/_shard/sharded_tensor/_ops/init.py:132:5: error[unresolved-attribute] Module `torch` has no member `rand_like` +torch/distributed/_shard/sharded_tensor/_ops/init.py:133:5: error[unresolved-attribute] Module `torch` has no member `randn_like` +torch/distributed/_shard/sharded_tensor/_ops/init.py:153:14: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/distributed/_shard/sharded_tensor/_ops/init.py:159:29: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/distributed/_shard/sharded_tensor/_ops/init.py:160:29: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/_shard/sharded_tensor/_ops/init.py:161:29: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/_shard/sharded_tensor/_ops/init.py:162:29: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/distributed/_shard/sharded_tensor/_ops/init.py:163:29: error[unresolved-attribute] Module `torch` has no member `rand_like` +torch/distributed/_shard/sharded_tensor/_ops/init.py:164:29: error[unresolved-attribute] Module `torch` has no member `randn_like` +torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py:10:19: error[unresolved-attribute] Module `torch` has no member `_has_compatible_shallow_copy_type` +torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:44:15: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:48:10: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:52:15: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:54:15: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:61:12: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:160:57: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:202:15: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:210:21: error[index-out-of-bounds] Index 1 is out of bounds for tuple `tuple[()]` with length 0 +torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py:218:10: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunctionSubclass` +torch/distributed/_shard/sharded_tensor/api.py:18:31: warning[possibly-missing-import] Member `distributed_c10d` of module `torch.distributed` may be missing +torch/distributed/_shard/sharded_tensor/api.py:62:41: warning[possibly-missing-attribute] Member `RRef` may be missing on module `torch.distributed.rpc` +torch/distributed/_shard/sharded_tensor/api.py:85:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/_shard/sharded_tensor/api.py:98:21: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/distributed/_shard/sharded_tensor/api.py:158:40: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/_shard/sharded_tensor/api.py:252:16: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/_shard/sharded_tensor/api.py:255:23: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_shard/sharded_tensor/api.py:263:22: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/_shard/sharded_tensor/api.py:266:29: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_shard/sharded_tensor/api.py:273:24: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:295:45: warning[possibly-missing-attribute] Member `RRef` may be missing on module `torch.distributed.rpc` +torch/distributed/_shard/sharded_tensor/api.py:305:17: error[invalid-assignment] Invalid subscript assignment with key of type `Unknown` and value of type `ReferenceType[Self@_post_init]` on object of type `dict[int, ReferenceType[ShardedTensor]]` +torch/distributed/_shard/sharded_tensor/api.py:308:20: warning[possibly-missing-attribute] Member `_is_current_rpc_agent_set` may be missing on module `torch.distributed.rpc` +torch/distributed/_shard/sharded_tensor/api.py:327:19: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:328:20: warning[possibly-missing-attribute] Member `get_worker_info` may be missing on module `torch.distributed.rpc` +torch/distributed/_shard/sharded_tensor/api.py:339:24: warning[possibly-missing-attribute] Member `_get_current_rpc_agent` may be missing on module `torch.distributed.rpc` +torch/distributed/_shard/sharded_tensor/api.py:347:26: warning[possibly-missing-attribute] Member `api` may be missing on module `torch.distributed.rpc` +torch/distributed/_shard/sharded_tensor/api.py:351:20: warning[possibly-missing-attribute] Member `get_worker_info` may be missing on module `torch.distributed.rpc` +torch/distributed/_shard/sharded_tensor/api.py:352:27: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:354:24: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:358:29: warning[possibly-missing-attribute] Member `RRef` may be missing on module `torch.distributed.rpc` +torch/distributed/_shard/sharded_tensor/api.py:359:21: warning[possibly-missing-attribute] Member `RRef` may be missing on module `torch.distributed.rpc` +torch/distributed/_shard/sharded_tensor/api.py:361:23: warning[possibly-missing-attribute] Member `rpc_async` may be missing on module `torch.distributed.rpc` +torch/distributed/_shard/sharded_tensor/api.py:371:9: warning[possibly-missing-attribute] Member `api` may be missing on module `torch.distributed.rpc` +torch/distributed/_shard/sharded_tensor/api.py:373:40: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/api.py:378:19: warning[possibly-missing-attribute] Member `get_backend` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:379:23: warning[possibly-missing-attribute] Member `Backend` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:380:20: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/api.py:381:25: warning[possibly-missing-attribute] Member `Backend` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:382:20: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/api.py:384:30: warning[possibly-missing-attribute] Member `BackendConfig` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:387:28: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/api.py:390:16: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/api.py:397:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/_shard/sharded_tensor/api.py:429:16: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:434:22: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:455:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/_shard/sharded_tensor/api.py:465:20: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/_shard/sharded_tensor/api.py:480:9: warning[possibly-missing-attribute] Member `gather` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:511:29: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/_shard/sharded_tensor/api.py:527:30: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/_shard/sharded_tensor/api.py:528:34: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_shard/sharded_tensor/api.py:569:23: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/_shard/sharded_tensor/api.py:585:30: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/_shard/sharded_tensor/api.py:586:34: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_shard/sharded_tensor/api.py:594:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/api.py:596:36: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/api.py:602:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/api.py:636:25: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/api.py:640:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/api.py:642:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/api.py:647:36: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/_shard/sharded_tensor/api.py:649:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/api.py:652:29: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/api.py:665:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/api.py:678:25: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_shard/sharded_tensor/api.py:682:53: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/_shard/sharded_tensor/api.py:728:38: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:729:10: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:758:24: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:759:22: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:775:13: warning[possibly-missing-attribute] Member `all_gather_object` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:836:33: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:905:27: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_shard/sharded_tensor/api.py:913:24: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:951:24: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/api.py:979:40: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/_shard/sharded_tensor/api.py:1216:36: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__name__` +torch/distributed/_shard/sharded_tensor/api.py:1246:35: warning[possibly-missing-attribute] Member `RRef` may be missing on module `torch.distributed.rpc` +torch/distributed/_shard/sharded_tensor/api.py:1250:47: warning[possibly-missing-attribute] Member `RRef` may be missing on module `torch.distributed.rpc` +torch/distributed/_shard/sharded_tensor/api.py:1360:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/_shard/sharded_tensor/metadata.py:20:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/_shard/sharded_tensor/metadata.py:20:40: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/distributed/_shard/sharded_tensor/metadata.py:21:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/distributed/_shard/sharded_tensor/metadata.py:21:42: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/_shard/sharded_tensor/metadata.py:23:20: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/distributed/_shard/sharded_tensor/metadata.py:23:56: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_shard/sharded_tensor/metadata.py:29:29: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_shard/sharded_tensor/metadata.py:31:31: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/distributed/_shard/sharded_tensor/metadata.py:33:31: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/_shard/sharded_tensor/metadata.py:59:29: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_shard/sharded_tensor/metadata.py:61:29: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/distributed/_shard/sharded_tensor/metadata.py:63:29: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/_shard/sharded_tensor/metadata.py:77:27: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_shard/sharded_tensor/metadata.py:92:11: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/_shard/sharded_tensor/metadata.py:92:38: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/_shard/sharded_tensor/reshard.py:43:14: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/_shard/sharded_tensor/reshard.py:84:14: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/_shard/sharded_tensor/reshard.py:113:20: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/reshard.py:114:18: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/reshard.py:135:22: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/_shard/sharded_tensor/reshard.py:153:14: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/_shard/sharded_tensor/reshard.py:182:20: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/reshard.py:183:18: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/_shard/sharded_tensor/reshard.py:206:26: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/_shard/sharded_tensor/reshard.py:211:27: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/_shard/sharded_tensor/reshard.py:241:20: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_shard/sharded_tensor/utils.py:9:31: warning[possibly-missing-import] Member `distributed_c10d` of module `torch.distributed` may be missing +torch/distributed/_shard/sharded_tensor/utils.py:40:16: warning[possibly-missing-attribute] Member `_is_current_rpc_agent_set` may be missing on module `torch.distributed.rpc` +torch/distributed/_shard/sharded_tensor/utils.py:45:19: warning[possibly-missing-attribute] Member `_get_current_rpc_agent` may be missing on module `torch.distributed.rpc` +torch/distributed/_shard/sharded_tensor/utils.py:58:11: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/_shard/sharded_tensor/utils.py:77:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/_shard/sharded_tensor/utils.py:91:12: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/_shard/sharded_tensor/utils.py:116:18: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/_shard/sharded_tensor/utils.py:138:42: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/_shard/sharded_tensor/utils.py:192:23: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_shard/sharded_tensor/utils.py:325:43: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/_shard/sharding_spec/api.py:45:13: warning[possibly-missing-attribute] Member `_remote_device` may be missing on module `torch.distributed` +torch/distributed/_shard/sharding_spec/api.py:48:40: warning[possibly-missing-attribute] Member `_remote_device` may be missing on module `torch.distributed` +torch/distributed/_shard/sharding_spec/api.py:49:27: warning[possibly-missing-attribute] Member `_remote_device` may be missing on module `torch.distributed` +torch/distributed/_shard/sharding_spec/api.py:60:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/_shard/sharding_spec/api.py:171:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:56:28: warning[possibly-missing-attribute] Member `_remote_device` may be missing on module `torch.distributed` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:61:46: warning[possibly-missing-attribute] Member `_remote_device` may be missing on module `torch.distributed` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:62:38: warning[possibly-missing-attribute] Member `_remote_device` may be missing on module `torch.distributed` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:78:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:126:27: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:129:24: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:130:31: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:138:22: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:166:39: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:171:21: warning[possibly-missing-attribute] Member `get_group_rank` may be missing on module `torch.distributed` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:171:41: error[invalid-argument-type] Argument to function `get_group_rank` is incorrect: Expected `ProcessGroup`, found `Unknown | None` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:175:32: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py:206:9: warning[possibly-missing-attribute] Member `scatter` may be missing on module `torch.distributed` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:62:14: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:74:38: error[invalid-argument-type] Argument expression after ** must be a mapping type: Found `Unknown | None` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:75:30: warning[deprecated] The function `_init_from_local_tensor` is deprecated: Please use DTensor instead and we are deprecating ShardedTensor. +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:151:24: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:159:12: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:185:24: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:186:14: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:220:35: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:255:31: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:256:23: error[unresolved-attribute] Module `torch` has no member `sum` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:257:9: error[unresolved-attribute] Module `torch` has no member `pow` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:257:19: error[unresolved-attribute] Module `torch` has no member `abs` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:262:24: error[unresolved-attribute] Module `torch` has no member `pow` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:263:23: error[unresolved-attribute] Module `torch` has no member `full` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:271:25: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:277:9: error[unresolved-attribute] Module `torch` has no member `div` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:277:19: error[unresolved-attribute] Module `torch` has no member `mul` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:297:42: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:298:18: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py:347:19: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:104:18: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:105:12: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:157:12: error[unresolved-attribute] Module `torch` has no member `min` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:160:17: error[unresolved-attribute] Module `torch` has no member `min` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:163:12: error[unresolved-attribute] Module `torch` has no member `max` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:166:17: error[unresolved-attribute] Module `torch` has no member `max` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:282:9: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py:291:9: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:111:18: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:112:12: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:191:12: error[unresolved-attribute] Module `torch` has no member `min` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:194:17: error[unresolved-attribute] Module `torch` has no member `min` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:197:12: error[unresolved-attribute] Module `torch` has no member `max` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:200:17: error[unresolved-attribute] Module `torch` has no member `max` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:365:22: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:367:34: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:370:28: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:388:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:388:72: error[unresolved-attribute] Module `torch` has no member `long` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:398:9: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:411:9: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:422:27: error[unresolved-attribute] Module `torch` has no member `sum` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:423:17: error[unresolved-attribute] Module `torch` has no member `ne` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:426:27: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:435:16: error[unresolved-attribute] Module `torch` has no member `div` +torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py:467:34: error[unresolved-attribute] Module `torch` has no member `stack` +torch/distributed/_sharded_tensor/__init__.py:20:5: error[unresolved-attribute] Module `torch.distributed` has no member `_shard` +torch/distributed/_state_dict_utils.py:17:35: warning[possibly-missing-import] Member `distributed_c10d` of module `torch.distributed` may be missing +torch/distributed/_state_dict_utils.py:25:18: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:26:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_state_dict_utils.py:34:18: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:35:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_state_dict_utils.py:39:18: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:55:24: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/_state_dict_utils.py:59:14: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/_state_dict_utils.py:64:5: warning[possibly-missing-attribute] Member `all_gather_into_tensor` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:80:18: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:81:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_state_dict_utils.py:110:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_state_dict_utils.py:180:26: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:211:12: error[invalid-return-type] Return type does not match returned value: expected `dict[str, Any]`, found `Unknown | dict[@Todo, dict[str, Any] | Unknown] | list[dict[str, Any] | Unknown] | ... omitted 3 union elements` +torch/distributed/_state_dict_utils.py:217:18: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:218:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_state_dict_utils.py:255:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_state_dict_utils.py:413:22: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:414:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_state_dict_utils.py:418:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/_state_dict_utils.py:424:17: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/_state_dict_utils.py:430:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/_state_dict_utils.py:438:20: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/_state_dict_utils.py:440:20: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/_state_dict_utils.py:444:22: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:445:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_state_dict_utils.py:451:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_state_dict_utils.py:460:22: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:461:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_state_dict_utils.py:467:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_state_dict_utils.py:506:22: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:507:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_state_dict_utils.py:534:11: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/_state_dict_utils.py:535:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/_state_dict_utils.py:542:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_state_dict_utils.py:543:18: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:546:14: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:555:12: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:562:27: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/_state_dict_utils.py:580:9: warning[possibly-missing-attribute] Member `_broadcast_coalesced` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:582:9: warning[possibly-missing-attribute] Member `broadcast` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:602:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_state_dict_utils.py:603:18: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:606:14: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:644:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_state_dict_utils.py:645:18: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:653:8: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:663:5: warning[possibly-missing-attribute] Member `broadcast_object_list` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:676:12: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_state_dict_utils.py:703:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_state_dict_utils.py:704:18: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/_symmetric_memory/__init__.py:124:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/_symmetric_memory/__init__.py:125:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_symmetric_memory/__init__.py:437:11: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/distributed/_symmetric_memory/__init__.py:447:11: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/distributed/_symmetric_memory/__init__.py:451:11: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/distributed/_symmetric_memory/__init__.py:461:11: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/distributed/_symmetric_memory/__init__.py:499:18: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/_symmetric_memory/__init__.py:541:22: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/_symmetric_memory/__init__.py:745:22: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/_symmetric_memory/__init__.py:767:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/_symmetric_memory/__init__.py:801:32: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_symmetric_memory/__init__.py:823:16: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/_symmetric_memory/__init__.py:824:16: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/distributed/_symmetric_memory/__init__.py:831:12: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/distributed/_symmetric_memory/__init__.py:939:17: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/_symmetric_memory/__init__.py:939:47: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/distributed/_symmetric_memory/__init__.py:999:15: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/_symmetric_memory/__init__.py:1005:13: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/distributed/_symmetric_memory/__init__.py:1018:22: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/_symmetric_memory/__init__.py:1056:20: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/_symmetric_memory/__init__.py:1092:22: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/_symmetric_memory/__init__.py:1243:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/_symmetric_memory/__init__.py:1255:29: error[unresolved-attribute] Module `torch` has no member `sum` +torch/distributed/_symmetric_memory/__init__.py:1257:29: error[unresolved-attribute] Module `torch` has no member `mean` +torch/distributed/_symmetric_memory/__init__.py:1273:28: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/_symmetric_memory/__init__.py:1336:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/_symmetric_memory/__init__.py:1390:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/_symmetric_memory/__init__.py:1407:9: error[unresolved-attribute] Module `torch` has no member `_scaled_mm` +torch/distributed/_symmetric_memory/__init__.py:1434:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/_symmetric_memory/__init__.py:1453:29: error[unresolved-attribute] Module `torch` has no member `sum` +torch/distributed/_symmetric_memory/__init__.py:1455:29: error[unresolved-attribute] Module `torch` has no member `mean` +torch/distributed/_symmetric_memory/__init__.py:1576:11: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/_symmetric_memory/__init__.py:1584:12: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/_symmetric_memory/__init__.py:1585:12: error[unresolved-attribute] Module `torch` has no member `int8` +torch/distributed/_symmetric_memory/__init__.py:1586:12: error[unresolved-attribute] Module `torch` has no member `short` +torch/distributed/_symmetric_memory/__init__.py:1587:12: error[unresolved-attribute] Module `torch` has no member `int` +torch/distributed/_symmetric_memory/__init__.py:1588:12: error[unresolved-attribute] Module `torch` has no member `int64` +torch/distributed/_symmetric_memory/__init__.py:1589:12: error[unresolved-attribute] Module `torch` has no member `half` +torch/distributed/_symmetric_memory/__init__.py:1590:12: error[unresolved-attribute] Module `torch` has no member `float` +torch/distributed/_symmetric_memory/__init__.py:1591:12: error[unresolved-attribute] Module `torch` has no member `double` +torch/distributed/_symmetric_memory/__init__.py:1592:12: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/distributed/_symmetric_memory/__init__.py:1593:12: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/distributed/_symmetric_memory/__init__.py:1594:13: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/distributed/_symmetric_memory/__init__.py:1595:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/distributed/_symmetric_memory/__init__.py:1596:13: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/distributed/_symmetric_memory/__init__.py:1597:13: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/distributed/_symmetric_memory/__init__.py:1598:13: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/distributed/_symmetric_memory/__init__.py:1599:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/distributed/_symmetric_memory/__init__.py:1600:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/distributed/_symmetric_memory/__init__.py:1601:13: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/distributed/_symmetric_memory/__init__.py:1602:13: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/distributed/_symmetric_memory/__init__.py:1603:13: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/distributed/_symmetric_memory/__init__.py:1608:18: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/_symmetric_memory/__init__.py:1712:9: error[unresolved-attribute] Module `torch._C` has no member `_distributed_c10d` +torch/distributed/_symmetric_memory/__init__.py:1735:15: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/_symmetric_memory/__init__.py:1760:9: error[unresolved-attribute] Module `torch._C` has no member `_distributed_c10d` +torch/distributed/_symmetric_memory/__init__.py:1795:9: error[unresolved-attribute] Module `torch._C` has no member `_distributed_c10d` +torch/distributed/_symmetric_memory/__init__.py:1921:17: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/distributed/_symmetric_memory/__init__.py:1928:16: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/distributed/_symmetric_memory/__init__.py:1930:16: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_symmetric_memory/__init__.py:2001:41: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_symmetric_memory/__init__.py:2012:51: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_symmetric_memory/_nvshmem_triton.py:68:38: error[no-matching-overload] No overload of function `dirname` matches arguments +torch/distributed/_symmetric_memory/_nvshmem_triton.py:181:10: error[unresolved-import] Cannot resolve imported module `triton.runtime.jit` +torch/distributed/_symmetric_memory/_nvshmem_triton.py:223:12: error[unresolved-import] Cannot resolve imported module `triton` +torch/distributed/_symmetric_memory/_nvshmem_triton.py:224:10: error[unresolved-import] Cannot resolve imported module `triton.runtime.jit` +torch/distributed/_symmetric_memory/_nvshmem_triton.py:247:12: error[unresolved-import] Cannot resolve imported module `triton` +torch/distributed/_symmetric_memory/_nvshmem_triton.py:248:12: error[unresolved-import] Cannot resolve imported module `triton.language` +torch/distributed/_symmetric_memory/_nvshmem_triton.py:249:10: error[unresolved-import] Cannot resolve imported module `triton.language` +torch/distributed/_symmetric_memory/_nvshmem_triton.py:1206:12: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/distributed/_symmetric_memory/_nvshmem_triton.py:1206:38: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/_tools/fake_collectives.py:14:1: warning[possibly-missing-attribute] Member `batch_isend_irecv` may be missing on module `torch.distributed` +torch/distributed/_tools/fsdp2_mem_tracker.py:107:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_tools/fsdp2_mem_tracker.py:109:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_tools/fsdp2_mem_tracker.py:449:51: error[invalid-argument-type] Argument to bound method `register_step_pre_hook` is incorrect: Expected `(typing.Self, tuple[Any, ...], dict[str, Any], /) -> tuple[tuple[Any, ...], dict[str, Any]] | None`, found `def _opt_step_pre_hook(optimizer: Optimizer, args: Any, kwargs: Any) -> None` +torch/distributed/_tools/fsdp2_mem_tracker.py:450:52: error[invalid-argument-type] Argument to bound method `register_step_post_hook` is incorrect: Expected `(typing.Self, tuple[Any, ...], dict[str, Any], /) -> None`, found `def _opt_step_post_hook(optimizer: Optimizer, args: Any, kwargs: Any) -> None` +torch/distributed/_tools/fsdp2_mem_tracker.py:538:19: error[non-subscriptable] Cannot subscript object of type `EllipsisType` with no `__getitem__` method +torch/distributed/_tools/fsdp2_mem_tracker.py:555:29: error[non-subscriptable] Cannot subscript object of type `EllipsisType` with no `__getitem__` method +torch/distributed/_tools/fsdp2_mem_tracker.py:566:28: error[non-subscriptable] Cannot subscript object of type `EllipsisType` with no `__getitem__` method +torch/distributed/_tools/ilp_utils.py:83:10: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_tools/ilp_utils.py:105:48: error[invalid-assignment] Object of type `dict[str | Unknown, dict[Unknown | str, Unknown | int | float] | Unknown]` is not assignable to `dict[str, ModRuntime]` +torch/distributed/_tools/mem_tracker.py:121:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_tools/mem_tracker.py:122:51: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_tools/mem_tracker.py:131:53: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_tools/mem_tracker.py:180:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_tools/mem_tracker.py:219:36: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_tools/mem_tracker.py:240:20: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_tools/mem_tracker.py:268:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_tools/mem_tracker.py:279:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_tools/mem_tracker.py:376:35: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_tools/mem_tracker.py:377:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_tools/mem_tracker.py:378:35: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_tools/mem_tracker.py:550:15: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_tools/mem_tracker.py:923:19: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/distributed/_tools/memory_tracker.py:28:26: error[invalid-argument-type] Argument expression after ** must be a mapping type: Found `Unknown | None` +torch/distributed/_tools/memory_tracker.py:75:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/_tools/mod_tracker.py:91:16: error[unresolved-attribute] Module `torch._C` has no member `_current_graph_task_id` +torch/distributed/_tools/mod_tracker.py:182:17: error[invalid-assignment] Implicit shadowing of function `formatwarning` +torch/distributed/_tools/runtime_estimator.py:128:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/_tools/runtime_estimator.py:129:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/distributed/_tools/runtime_estimator.py:130:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/distributed/_tools/runtime_estimator.py:131:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/_tools/runtime_estimator.py:132:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/distributed/_tools/runtime_estimator.py:190:31: error[unresolved-attribute] Module `torch` has no member `rand_like` +torch/distributed/_tools/runtime_estimator.py:192:31: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/distributed/_tools/sac_estimator.py:398:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/_tools/sac_estimator.py:426:22: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/distributed/_tools/sac_estimator.py:433:26: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | None` +torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py:130:9: error[unresolved-attribute] Cannot assign object of type `CheckpointImpl` to attribute `checkpoint_impl` on type `Self@__init__` with custom `__setattr__` method. +torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py:133:13: error[unresolved-attribute] Cannot assign object of type `partial[Unknown]` to attribute `checkpoint_fn` on type `Self@__init__` with custom `__setattr__` method. +torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py:140:13: error[unresolved-attribute] Cannot assign object of type `partial[Unknown]` to attribute `checkpoint_fn` on type `Self@__init__` with custom `__setattr__` method. +torch/distributed/algorithms/_comm_hooks/default_hooks.py:24:39: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/algorithms/_comm_hooks/default_hooks.py:28:27: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/algorithms/_comm_hooks/default_hooks.py:66:24: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/algorithms/_comm_hooks/default_hooks.py:81:27: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/distributed/algorithms/_comm_hooks/default_hooks.py:108:5: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/algorithms/_comm_hooks/default_hooks.py:129:5: warning[possibly-missing-attribute] Member `reduce_scatter_tensor` may be missing on module `torch.distributed` +torch/distributed/algorithms/_comm_hooks/default_hooks.py:136:11: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/algorithms/_comm_hooks/default_hooks.py:170:56: error[unresolved-attribute] Module `torch` has no member `float16` +torch/distributed/algorithms/_comm_hooks/default_hooks.py:191:56: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/distributed/algorithms/_quantization/quantization.py:9:18: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/distributed/algorithms/_quantization/quantization.py:9:30: error[unresolved-attribute] Module `torch` has no member `float16` +torch/distributed/algorithms/_quantization/quantization.py:10:18: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/distributed/algorithms/_quantization/quantization.py:10:30: error[unresolved-attribute] Module `torch` has no member `float16` +torch/distributed/algorithms/_quantization/quantization.py:28:12: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/distributed/algorithms/_quantization/quantization.py:61:28: error[unresolved-attribute] Module `torch` has no member `float16` +torch/distributed/algorithms/_quantization/quantization.py:65:30: error[unresolved-attribute] Module `torch` has no member `float16` +torch/distributed/algorithms/_quantization/quantization.py:71:28: error[unresolved-attribute] Module `torch` has no member `float16` +torch/distributed/algorithms/_quantization/quantization.py:114:20: warning[possibly-missing-attribute] Member `all_gather` may be missing on module `torch.distributed` +torch/distributed/algorithms/_quantization/quantization.py:118:13: warning[possibly-missing-attribute] Member `all_gather` may be missing on module `torch.distributed` +torch/distributed/algorithms/_quantization/quantization.py:124:22: warning[possibly-missing-attribute] Member `all_to_all` may be missing on module `torch.distributed` +torch/distributed/algorithms/_quantization/quantization.py:128:13: warning[possibly-missing-attribute] Member `all_to_all` may be missing on module `torch.distributed` +torch/distributed/algorithms/_quantization/quantization.py:134:22: warning[possibly-missing-attribute] Member `all_to_all_single` may be missing on module `torch.distributed` +torch/distributed/algorithms/_quantization/quantization.py:141:13: warning[possibly-missing-attribute] Member `all_to_all_single` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py:23:13: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py:95:17: warning[possibly-missing-attribute] Member `broadcast` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py:97:25: warning[possibly-missing-attribute] Member `get_global_rank` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py:105:13: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py:138:13: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py:178:26: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py:182:21: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py:238:14: warning[possibly-missing-attribute] Member `Backend` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py:249:17: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py:338:26: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py:342:21: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py:398:14: warning[possibly-missing-attribute] Member `Backend` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py:409:17: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py:4:31: warning[possibly-missing-import] Member `GradBucket` of module `torch.distributed` may be missing +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:19:20: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:29:9: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:36:20: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:36:47: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:58:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:59:20: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:60:13: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:82:16: error[unresolved-attribute] Module `torch.distributed` has no member `_functional_collectives` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:90:15: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:97:20: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:98:13: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:113:27: error[unresolved-attribute] Module `torch` has no member `float16` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:117:20: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:118:13: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:134:27: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:138:26: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:139:21: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:155:29: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:158:46: error[unresolved-attribute] Module `torch` has no member `float16` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:176:26: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:177:21: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:194:29: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py:197:46: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py:20:20: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py:45:19: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py:132:26: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py:134:21: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py:142:29: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py:70:39: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py:99:69: warning[possibly-missing-attribute] Member `group` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py:123:29: warning[possibly-missing-attribute] Member `new_subgroups` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:8:31: warning[possibly-missing-import] Member `distributed_c10d` of module `torch.distributed` may be missing +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:30:31: error[unresolved-attribute] Module `torch` has no member `float16` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:30:46: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:37:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:74:21: error[unresolved-attribute] Module `torch` has no member `sum` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:340:35: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:402:66: warning[possibly-missing-attribute] Member `group` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:430:46: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:469:9: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:471:14: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:489:45: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:492:45: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:511:27: error[unresolved-attribute] Module `torch` has no member `stack` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:554:21: error[unresolved-attribute] Module `torch` has no member `randn` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:564:9: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:569:53: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:584:13: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:598:13: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:606:13: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:617:13: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:654:35: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:714:66: warning[possibly-missing-attribute] Member `group` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:753:46: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:786:28: error[unresolved-attribute] Module `torch` has no member `randn` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:793:24: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:808:5: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:811:23: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:819:9: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:830:13: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py:839:9: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:8:9: error[unresolved-attribute] Module `torch` has no member `round` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:9:9: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:9:35: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:14:23: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:19:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:21:19: error[unresolved-attribute] Module `torch` has no member `round` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:22:9: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:22:35: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:27:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:28:9: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:36:9: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:47:20: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:47:47: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:78:15: error[unresolved-attribute] Module `torch` has no member `FloatTensor` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:83:11: warning[possibly-missing-attribute] Member `all_gather` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:95:15: warning[possibly-missing-attribute] Member `all_gather` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:107:41: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:108:72: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:123:20: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:123:47: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:159:13: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[0], Unknown | int]` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:173:15: error[unresolved-attribute] Module `torch` has no member `stack` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:177:11: warning[possibly-missing-attribute] Member `all_gather` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:191:15: warning[possibly-missing-attribute] Member `all_gather` may be missing on module `torch.distributed` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:203:41: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:204:72: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py:214:13: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/distributed/algorithms/join.py:75:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/algorithms/join.py:224:22: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/algorithms/join.py:284:31: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/algorithms/join.py:285:9: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/algorithms/join.py:293:16: error[unresolved-attribute] Module `torch` has no member `ones` +torch/distributed/algorithms/join.py:294:9: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/algorithms/join.py:337:16: error[unresolved-attribute] Module `torch` has no member `ones` +torch/distributed/algorithms/join.py:338:16: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/algorithms/join.py:342:21: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/algorithms/join.py:343:13: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/algorithms/model_averaging/averagers.py:26:48: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/algorithms/model_averaging/averagers.py:28:71: warning[possibly-missing-attribute] Member `group` may be missing on module `torch.distributed` +torch/distributed/algorithms/model_averaging/averagers.py:91:63: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py:120:30: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py:137:61: warning[possibly-missing-attribute] Member `new_subgroups` may be missing on module `torch.distributed` +torch/distributed/algorithms/model_averaging/utils.py:12:31: warning[possibly-missing-import] Member `group` of module `torch.distributed` may be missing +torch/distributed/algorithms/model_averaging/utils.py:12:38: warning[possibly-missing-import] Member `ProcessGroup` of module `torch.distributed` may be missing +torch/distributed/algorithms/model_averaging/utils.py:33:8: warning[possibly-missing-attribute] Member `_rank_not_in_group` may be missing on module `torch.distributed` +torch/distributed/algorithms/model_averaging/utils.py:40:19: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/algorithms/model_averaging/utils.py:41:20: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/algorithms/model_averaging/utils.py:45:5: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/autograd/__init__.py:16:27: error[unresolved-attribute] Module `torch._C` has no member `_dist_autograd_init` +torch/distributed/benchmarks/benchmark_ddp_rpc.py:21:37: warning[possibly-missing-import] Member `DistributedOptimizer` of module `torch.distributed.optim` may be missing +torch/distributed/benchmarks/benchmark_ddp_rpc.py:22:35: warning[possibly-missing-import] Member `RRef` of module `torch.distributed.rpc` may be missing +torch/distributed/benchmarks/benchmark_ddp_rpc.py:22:41: warning[possibly-missing-import] Member `TensorPipeRpcBackendOptions` of module `torch.distributed.rpc` may be missing +torch/distributed/benchmarks/benchmark_ddp_rpc.py:71:31: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/benchmarks/benchmark_ddp_rpc.py:115:20: error[unresolved-attribute] Module `torch` has no member `ByteTensor` +torch/distributed/benchmarks/benchmark_ddp_rpc.py:142:13: warning[possibly-missing-attribute] Member `rpc_sync` may be missing on module `torch.distributed.rpc` +torch/distributed/benchmarks/benchmark_ddp_rpc.py:156:23: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/distributed/benchmarks/benchmark_ddp_rpc.py:168:30: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/distributed/benchmarks/benchmark_ddp_rpc.py:169:22: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/distributed/benchmarks/benchmark_ddp_rpc.py:188:17: warning[possibly-missing-attribute] Member `backward` may be missing on module `torch.distributed.autograd` +torch/distributed/benchmarks/benchmark_ddp_rpc.py:215:9: warning[possibly-missing-attribute] Member `init_rpc` may be missing on module `torch.distributed.rpc` +torch/distributed/benchmarks/benchmark_ddp_rpc.py:227:24: warning[possibly-missing-attribute] Member `remote` may be missing on module `torch.distributed.rpc` +torch/distributed/benchmarks/benchmark_ddp_rpc.py:240:19: warning[possibly-missing-attribute] Member `rpc_async` may be missing on module `torch.distributed.rpc` +torch/distributed/benchmarks/benchmark_ddp_rpc.py:261:9: warning[possibly-missing-attribute] Member `init_process_group` may be missing on module `torch.distributed` +torch/distributed/benchmarks/benchmark_ddp_rpc.py:262:21: warning[possibly-missing-attribute] Member `Backend` may be missing on module `torch.distributed` +torch/distributed/benchmarks/benchmark_ddp_rpc.py:270:9: warning[possibly-missing-attribute] Member `init_rpc` may be missing on module `torch.distributed.rpc` +torch/distributed/benchmarks/benchmark_ddp_rpc.py:280:9: warning[possibly-missing-attribute] Member `init_rpc` may be missing on module `torch.distributed.rpc` +torch/distributed/benchmarks/benchmark_ddp_rpc.py:290:5: warning[possibly-missing-attribute] Member `shutdown` may be missing on module `torch.distributed.rpc` +torch/distributed/c10d_logger.py:54:8: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/distributed/c10d_logger.py:59:27: warning[possibly-missing-attribute] Member `get_backend` may be missing on module `torch.distributed` +torch/distributed/c10d_logger.py:60:30: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/c10d_logger.py:61:30: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/c10d_logger.py:62:31: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/c10d_logger.py:63:30: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/c10d_logger.py:66:28: error[unresolved-attribute] Module `torch.cuda` has no member `nccl` +torch/distributed/c10d_logger.py:85:38: error[unresolved-attribute] Object of type `(...) -> _T@_exception_logger` has no attribute `__name__` +torch/distributed/c10d_logger.py:96:56: error[unresolved-attribute] Object of type `(...) -> _T@_time_logger` has no attribute `__name__` +torch/distributed/checkpoint/__init__.py:17:38: warning[deprecated] The function `load_state_dict` is deprecated: `load_state_dict` is deprecated and will be removed in future versions. Please use `load` instead. +torch/distributed/checkpoint/__init__.py:20:49: warning[deprecated] The function `save_state_dict` is deprecated: `save_state_dict` is deprecated and will be removed in future versions.Please use `save` instead. +torch/distributed/checkpoint/_async_executor.py:23:33: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_async_process_executor.py:13:31: warning[possibly-missing-import] Member `PrefixStore` of module `torch.distributed` may be missing +torch/distributed/checkpoint/_async_process_executor.py:13:44: warning[possibly-missing-import] Member `TCPStore` of module `torch.distributed` may be missing +torch/distributed/checkpoint/_async_process_executor.py:61:48: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_async_process_executor.py:62:27: warning[possibly-missing-attribute] Member `get_node_local_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_async_process_executor.py:63:28: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_async_process_executor.py:64:27: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_async_process_executor.py:255:17: warning[possibly-missing-attribute] Member `init_process_group` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_async_process_executor.py:256:29: warning[possibly-missing-attribute] Member `Backend` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_async_process_executor.py:262:17: warning[possibly-missing-attribute] Member `init_process_group` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_async_process_executor.py:262:49: warning[possibly-missing-attribute] Member `Backend` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_async_process_executor.py:263:13: warning[possibly-missing-attribute] Member `barrier` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_async_process_executor.py:333:33: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_async_process_executor.py:366:13: error[invalid-argument-type] Argument to bound method `save` is incorrect: Expected `dict[str, typing.TypeVar | Any]`, found `object` +torch/distributed/checkpoint/_async_process_executor.py:381:33: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_async_thread_executor.py:20:29: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_async_thread_executor.py:55:33: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_checkpointer.py:37:33: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_consolidate_hf_safetensors.py:138:32: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/distributed/checkpoint/_consolidate_hf_safetensors.py:623:29: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_consolidate_hf_safetensors.py:645:32: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_consolidate_hf_safetensors.py:646:16: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_consolidate_hf_safetensors.py:647:22: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_consolidate_hf_safetensors.py:711:32: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_consolidate_hf_safetensors.py:713:9: warning[possibly-missing-attribute] Member `barrier` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_experimental/barriers.py:30:9: error[invalid-assignment] Invalid subscript assignment with key of type `object` and value of type `type & ` on object of type `dict[str, type]` +torch/distributed/checkpoint/_experimental/barriers.py:153:16: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_experimental/barriers.py:162:9: warning[possibly-missing-attribute] Member `barrier` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_experimental/barriers.py:226:27: warning[possibly-missing-attribute] Member `TCPStore` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_experimental/builder.py:32:8: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_experimental/builder.py:34:31: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_experimental/builder.py:35:25: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_experimental/checkpoint_process.py:299:65: error[call-non-callable] Object of type `object` is not callable +torch/distributed/checkpoint/_experimental/checkpoint_process.py:326:17: warning[possibly-missing-attribute] Attribute `send` may be missing on object of type `Connection[Any, Any] | None` +torch/distributed/checkpoint/_experimental/checkpoint_reader.py:149:30: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/checkpoint/_experimental/checkpoint_reader.py:154:30: error[unresolved-attribute] Module `torch` has no member `frombuffer` +torch/distributed/checkpoint/_experimental/staging.py:158:40: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/distributed/checkpoint/_fsspec_filesystem.py:11:6: error[unresolved-import] Cannot resolve imported module `fsspec.core` +torch/distributed/checkpoint/_fsspec_filesystem.py:23:10: error[unresolved-import] Cannot resolve imported module `fsspec` +torch/distributed/checkpoint/_fsspec_filesystem.py:72:9: warning[possibly-missing-attribute] Attribute `rename` may be missing on object of type `Unknown | None` +torch/distributed/checkpoint/_fsspec_filesystem.py:75:9: warning[possibly-missing-attribute] Attribute `makedirs` may be missing on object of type `Unknown | None` +torch/distributed/checkpoint/_fsspec_filesystem.py:90:16: warning[possibly-missing-attribute] Attribute `exists` may be missing on object of type `Unknown | None` +torch/distributed/checkpoint/_fsspec_filesystem.py:93:9: warning[possibly-missing-attribute] Attribute `rm` may be missing on object of type `Unknown | None` +torch/distributed/checkpoint/_fsspec_filesystem.py:98:16: warning[possibly-missing-attribute] Attribute `ls` may be missing on object of type `Unknown | None` +torch/distributed/checkpoint/_hf_utils.py:26:12: error[unresolved-attribute] Module `torch` has no member `float16` +torch/distributed/checkpoint/_hf_utils.py:27:12: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/checkpoint/_hf_utils.py:28:12: error[unresolved-attribute] Module `torch` has no member `float64` +torch/distributed/checkpoint/_hf_utils.py:29:11: error[unresolved-attribute] Module `torch` has no member `int8` +torch/distributed/checkpoint/_hf_utils.py:30:11: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/checkpoint/_hf_utils.py:31:12: error[unresolved-attribute] Module `torch` has no member `int16` +torch/distributed/checkpoint/_hf_utils.py:32:12: error[unresolved-attribute] Module `torch` has no member `int32` +torch/distributed/checkpoint/_hf_utils.py:33:12: error[unresolved-attribute] Module `torch` has no member `int64` +torch/distributed/checkpoint/_hf_utils.py:34:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/distributed/checkpoint/_hf_utils.py:54:12: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/_hf_utils.py:55:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/checkpoint/_hf_utils.py:92:35: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/checkpoint/_hf_utils.py:96:17: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/distributed/checkpoint/_pg_transport.py:11:31: warning[possibly-missing-import] Member `ProcessGroup` of module `torch.distributed` may be missing +torch/distributed/checkpoint/_pg_transport.py:11:45: warning[possibly-missing-import] Member `Work` of module `torch.distributed` may be missing +torch/distributed/checkpoint/_pg_transport.py:42:12: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/_pg_transport.py:43:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/checkpoint/_pg_transport.py:112:30: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/checkpoint/_pg_transport.py:125:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/checkpoint/_pg_transport.py:186:47: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/checkpoint/_pg_transport.py:199:11: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/checkpoint/_pg_transport.py:224:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/checkpoint/_pg_transport.py:254:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/checkpoint/_pg_transport.py:254:52: error[unresolved-attribute] Module `torch` has no member `int64` +torch/distributed/checkpoint/_pg_transport.py:255:21: error[unresolved-attribute] Module `torch` has no member `frombuffer` +torch/distributed/checkpoint/_pg_transport.py:255:49: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/checkpoint/_pg_transport.py:269:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/checkpoint/_pg_transport.py:297:17: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/checkpoint/_pg_transport.py:297:38: error[unresolved-attribute] Module `torch` has no member `int64` +torch/distributed/checkpoint/_pg_transport.py:301:15: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/checkpoint/_pg_transport.py:301:41: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/checkpoint/_pg_transport.py:319:43: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/checkpoint/_pg_transport.py:323:21: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/checkpoint/_pg_transport.py:323:49: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/checkpoint/_pg_transport.py:335:20: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/distributed/checkpoint/_sharded_tensor_utils.py:64:39: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/_sharded_tensor_utils.py:70:27: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/default_planner.py:618:21: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/examples/async_checkpointing_example.py:64:40: error[invalid-argument-type] Argument to function `_patch_optimizer_state_dict` is incorrect: Expected `tuple[Optimizer, ...]`, found `Adam` +torch/distributed/checkpoint/examples/async_checkpointing_example.py:70:8: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/examples/async_checkpointing_example.py:75:9: error[unresolved-attribute] Module `torch` has no member `rand` +torch/distributed/checkpoint/examples/async_checkpointing_example.py:76:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/checkpoint/examples/async_checkpointing_example.py:78:7: error[unresolved-attribute] Module `torch` has no member `sum` +torch/distributed/checkpoint/examples/async_checkpointing_example.py:88:5: warning[possibly-missing-attribute] Member `init_process_group` may be missing on module `torch.distributed` +torch/distributed/checkpoint/examples/async_checkpointing_example.py:123:13: warning[possibly-missing-attribute] Member `barrier` may be missing on module `torch.distributed` +torch/distributed/checkpoint/examples/fsdp_checkpoint_example.py:31:45: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/examples/fsdp_checkpoint_example.py:33:11: error[unresolved-attribute] Module `torch` has no member `rand` +torch/distributed/checkpoint/examples/fsdp_checkpoint_example.py:42:34: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/examples/fsdp_checkpoint_example.py:50:30: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/examples/fsdp_checkpoint_example.py:64:5: warning[possibly-missing-attribute] Member `init_process_group` may be missing on module `torch.distributed` +torch/distributed/checkpoint/examples/fsdp_checkpoint_example.py:77:17: warning[deprecated] The function `save_state_dict` is deprecated: `save_state_dict` is deprecated and will be removed in future versions.Please use `save` instead. +torch/distributed/checkpoint/examples/fsdp_checkpoint_example.py:96:17: warning[deprecated] The function `load_state_dict` is deprecated: `load_state_dict` is deprecated and will be removed in future versions. Please use `load` instead. +torch/distributed/checkpoint/examples/fsdp_checkpoint_example.py:109:31: error[invalid-argument-type] Argument to function `optim_state_dict_to_load` is incorrect: Expected `dict[str, Any]`, found `typing.TypeVar | Any` +torch/distributed/checkpoint/examples/fsdp_checkpoint_example.py:118:5: warning[possibly-missing-attribute] Member `destroy_process_group` may be missing on module `torch.distributed` +torch/distributed/checkpoint/examples/stateful_example.py:19:43: warning[possibly-missing-import] Member `init_device_mesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/checkpoint/examples/stateful_example.py:39:16: error[unresolved-attribute] Module `torch` has no member `rand` +torch/distributed/checkpoint/examples/stateful_example.py:78:5: warning[possibly-missing-attribute] Member `init_process_group` may be missing on module `torch.distributed` +torch/distributed/checkpoint/filesystem.py:145:26: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/distributed/checkpoint/filesystem.py:187:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/checkpoint/filesystem.py:342:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/checkpoint/filesystem.py:390:35: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/distributed/checkpoint/format_utils.py:106:29: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/checkpoint/format_utils.py:108:26: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/distributed/checkpoint/format_utils.py:108:26: warning[possibly-missing-attribute] Attribute `to` may be missing on object of type `Any | typing.TypeVar` +torch/distributed/checkpoint/format_utils.py:110:26: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/checkpoint/format_utils.py:112:13: warning[possibly-missing-attribute] Member `broadcast` may be missing on module `torch.distributed` +torch/distributed/checkpoint/format_utils.py:133:20: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/format_utils.py:136:28: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/hf_storage.py:348:34: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/hf_storage.py:353:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/hf_storage.py:354:43: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/hf_storage.py:361:33: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/hf_storage.py:361:59: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/hf_storage.py:367:57: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/hf_storage.py:378:31: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/logger.py:78:17: error[unresolved-attribute] Object of type `(...) -> _T@_dcp_method_logger` has no attribute `__name__` +torch/distributed/checkpoint/metadata.py:30:14: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/metadata.py:31:12: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/metadata.py:47:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/checkpoint/metadata.py:47:48: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/distributed/checkpoint/metadata.py:49:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/distributed/checkpoint/metadata.py:49:42: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/checkpoint/metadata.py:53:20: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/distributed/checkpoint/metadata.py:53:56: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/checkpoint/metadata.py:60:29: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/checkpoint/metadata.py:62:31: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/distributed/checkpoint/metadata.py:64:31: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/checkpoint/metadata.py:90:29: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/checkpoint/metadata.py:92:29: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/distributed/checkpoint/metadata.py:94:29: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/checkpoint/metadata.py:108:27: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/checkpoint/metadata.py:116:11: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/metadata.py:160:22: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/metadata.py:185:48: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/optimizer.py:34:60: warning[deprecated] The function `load_state_dict` is deprecated: `load_state_dict` is deprecated and will be removed in future versions. Please use `load` instead. +torch/distributed/checkpoint/optimizer.py:68:18: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/optimizer.py:70:22: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/checkpoint/optimizer.py:74:30: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/checkpoint/optimizer.py:78:44: warning[possibly-missing-attribute] Member `get_global_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/optimizer.py:106:23: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/checkpoint/optimizer.py:108:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/checkpoint/optimizer.py:112:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/checkpoint/optimizer.py:124:43: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/optimizer.py:136:21: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/optimizer.py:138:29: warning[possibly-missing-attribute] Attribute `size` may be missing on object of type `typing.TypeVar | Any` +torch/distributed/checkpoint/optimizer.py:139:30: error[invalid-argument-type] Argument to function `_is_nested_tensor` is incorrect: Expected `Tensor`, found `typing.TypeVar | Any` +torch/distributed/checkpoint/optimizer.py:140:24: warning[possibly-missing-attribute] Attribute `local_shards` may be missing on object of type `typing.TypeVar | Any` +torch/distributed/checkpoint/optimizer.py:190:29: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/optimizer.py:193:27: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/optimizer.py:207:43: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/optimizer.py:274:25: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/checkpoint/optimizer.py:279:24: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/checkpoint/optimizer.py:309:22: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/optimizer.py:310:28: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/checkpoint/optimizer.py:326:50: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/optimizer.py:328:28: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/optimizer.py:351:5: warning[deprecated] The function `load_state_dict` is deprecated: `load_state_dict` is deprecated and will be removed in future versions. Please use `load` instead. +torch/distributed/checkpoint/planner.py:54:11: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner.py:93:19: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner.py:98:22: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner.py:101:14: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner_helpers.py:144:17: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner_helpers.py:150:17: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner_helpers.py:151:15: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner_helpers.py:179:22: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner_helpers.py:179:41: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner_helpers.py:198:15: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner_helpers.py:207:15: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner_helpers.py:232:22: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner_helpers.py:234:25: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner_helpers.py:235:17: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner_helpers.py:245:22: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner_helpers.py:247:25: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner_helpers.py:248:17: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner_helpers.py:343:22: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner_helpers.py:343:41: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/planner_helpers.py:399:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/checkpoint/planner_helpers.py:400:27: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/checkpoint/planner_helpers.py:402:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/checkpoint/planner_helpers.py:404:32: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/checkpoint/planner_helpers.py:420:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/checkpoint/planner_helpers.py:429:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/checkpoint/planner_helpers.py:430:27: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/checkpoint/planner_helpers.py:432:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/checkpoint/planner_helpers.py:434:22: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/checkpoint/quantized_hf_storage.py:35:23: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/checkpoint/quantized_hf_storage.py:35:37: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/checkpoint/quantized_hf_storage.py:49:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/checkpoint/quantized_hf_storage.py:55:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/quantized_hf_storage.py:156:28: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/quantized_hf_storage.py:176:37: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/checkpoint/staging.py:12:31: warning[possibly-missing-import] Member `ProcessGroup` of module `torch.distributed` may be missing +torch/distributed/checkpoint/staging.py:193:40: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/distributed/checkpoint/staging.py:353:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/checkpoint/staging.py:353:32: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/checkpoint/staging.py:382:16: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/distributed/checkpoint/staging.py:385:22: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/checkpoint/staging.py:387:24: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/state_dict.py:432:23: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/state_dict.py:467:45: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/distributed/checkpoint/state_dict.py:568:50: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/state_dict.py:586:12: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/checkpoint/state_dict.py:587:28: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/checkpoint/state_dict.py:590:25: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/checkpoint/state_dict.py:635:30: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/checkpoint/state_dict.py:644:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/checkpoint/state_dict_loader.py:39:29: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/state_dict_loader.py:66:29: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/state_dict_loader.py:158:60: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/distributed/checkpoint/state_dict_loader.py:208:29: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/state_dict_loader.py:213:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/checkpoint/state_dict_loader.py:313:29: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/state_dict_loader.py:362:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/checkpoint/state_dict_loader.py:366:44: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/distributed/checkpoint/state_dict_saver.py:65:29: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/state_dict_saver.py:93:29: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/state_dict_saver.py:180:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/checkpoint/state_dict_saver.py:182:60: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/distributed/checkpoint/state_dict_saver.py:225:29: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/state_dict_saver.py:292:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/checkpoint/state_dict_saver.py:294:32: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/distributed/checkpoint/state_dict_saver.py:296:12: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/checkpoint/state_dict_saver.py:368:30: warning[deprecated] The function `synchronize_staging` is deprecated: `synchronize_staging` is deprecated and will be removed in future versions.Please use staging_future from AsyncSaveResponse instead. +torch/distributed/checkpoint/state_dict_saver.py:388:29: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/state_dict_saver.py:394:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/checkpoint/utils.py:44:49: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/utils.py:50:5: warning[possibly-missing-attribute] Member `all_gather_object` may be missing on module `torch.distributed` +torch/distributed/checkpoint/utils.py:55:57: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/utils.py:63:8: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/checkpoint/utils.py:87:25: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/checkpoint/utils.py:96:17: warning[possibly-missing-attribute] Member `get_global_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/utils.py:100:25: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/checkpoint/utils.py:112:20: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/checkpoint/utils.py:119:13: warning[possibly-missing-attribute] Member `broadcast_object_list` may be missing on module `torch.distributed` +torch/distributed/checkpoint/utils.py:130:40: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/checkpoint/utils.py:135:13: warning[possibly-missing-attribute] Member `gather_object` may be missing on module `torch.distributed` +torch/distributed/checkpoint/utils.py:149:50: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/checkpoint/utils.py:151:13: warning[possibly-missing-attribute] Member `all_gather_object` may be missing on module `torch.distributed` +torch/distributed/checkpoint/utils.py:162:13: warning[possibly-missing-attribute] Member `scatter_object_list` may be missing on module `torch.distributed` +torch/distributed/checkpoint/utils.py:323:9: warning[possibly-missing-attribute] Member `barrier` may be missing on module `torch.distributed` +torch/distributed/checkpoint/utils.py:337:17: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/utils.py:342:12: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/checkpoint/utils.py:355:28: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/collective_utils.py:52:18: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/collective_utils.py:106:9: warning[possibly-missing-attribute] Member `broadcast_object_list` may be missing on module `torch.distributed` +torch/distributed/collective_utils.py:129:18: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/collective_utils.py:169:31: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/collective_utils.py:193:20: error[invalid-raise] Cannot use object of type `tuple[int, Exception]` as an exception cause +torch/distributed/collective_utils.py:208:9: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/collective_utils.py:229:5: warning[possibly-missing-attribute] Member `all_gather_object` may be missing on module `torch.distributed` +torch/distributed/collective_utils.py:291:16: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/distributed/collective_utils.py:291:40: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/collective_utils.py:294:19: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/collective_utils.py:295:5: warning[possibly-missing-attribute] Member `all_gather` may be missing on module `torch.distributed` +torch/distributed/collective_utils.py:297:25: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/distributed/collective_utils.py:297:62: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/distributed/collective_utils.py:307:16: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/distributed/collective_utils.py:307:40: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/collective_utils.py:311:26: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/collective_utils.py:312:5: warning[possibly-missing-attribute] Member `all_gather` may be missing on module `torch.distributed` +torch/distributed/collective_utils.py:318:21: error[unresolved-attribute] Module `torch` has no member `hash_tensor` +torch/distributed/collective_utils.py:323:16: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/distributed/collective_utils.py:323:40: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/collective_utils.py:340:8: error[unresolved-attribute] Module `importlib` has no member `util` +torch/distributed/collective_utils.py:349:16: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/distributed/collective_utils.py:349:40: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/debug/_store.py:14:26: warning[possibly-missing-attribute] Member `Store` may be missing on module `torch.distributed` +torch/distributed/debug/_store.py:18:13: warning[possibly-missing-attribute] Member `TCPStore` may be missing on module `torch.distributed` +torch/distributed/debug/_store.py:23:13: warning[possibly-missing-attribute] Member `PrefixStore` may be missing on module `torch.distributed` +torch/distributed/device_mesh.py:198:13: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/device_mesh.py:209:44: error[unresolved-attribute] Module `torch` has no member `int` +torch/distributed/device_mesh.py:211:26: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/device_mesh.py:211:65: error[unresolved-attribute] Module `torch` has no member `int` +torch/distributed/device_mesh.py:432:51: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/device_mesh.py:949:24: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/device_mesh.py:949:70: error[unresolved-attribute] Module `torch` has no member `int` +torch/distributed/device_mesh.py:974:40: error[unresolved-attribute] Module `torch` has no member `int` +torch/distributed/device_mesh.py:976:22: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/device_mesh.py:976:61: error[unresolved-attribute] Module `torch` has no member `int` +torch/distributed/device_mesh.py:1362:14: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/device_mesh.py:1363:24: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributed/device_mesh.py:1363:59: error[unresolved-attribute] Module `torch` has no member `int` +torch/distributed/distributed_c10d.py:24:22: error[unresolved-import] Module `torch._C` has no member `_DistStoreError` +torch/distributed/distributed_c10d.py:379:19: error[invalid-assignment] Object of type `str` is not assignable to `Backend` +torch/distributed/distributed_c10d.py:384:27: error[unresolved-attribute] Module `torch._C` has no member `_get_accelerator` +torch/distributed/distributed_c10d.py:419:35: error[invalid-assignment] Object of type `list[str]` is not assignable to `Backend` +torch/distributed/distributed_c10d.py:539:19: warning[possibly-missing-attribute] Attribute `__name__` may be missing on object of type `Unknown | ((...) -> Unknown)` +torch/distributed/distributed_c10d.py:836:10: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:846:69: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:913:12: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:914:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:1203:17: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/distributed_c10d.py:1203:50: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/distributed/distributed_c10d.py:1203:71: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/distributed/distributed_c10d.py:1361:5: error[unresolved-attribute] Module `torch._C` has no member `_distributed_c10d` +torch/distributed/distributed_c10d.py:1410:55: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:1421:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:1424:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:1436:35: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:1523:12: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:1524:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:1557:8: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:1558:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:1561:8: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:1562:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:1586:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:1696:9: error[unresolved-attribute] Module `torch._dynamo` has no member `trace_rules` +torch/distributed/distributed_c10d.py:1720:21: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:1880:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:2009:20: error[unresolved-attribute] Module `torch._C` has no member `_distributed_c10d` +torch/distributed/distributed_c10d.py:2045:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `timedelta`, found `Unknown | None` +torch/distributed/distributed_c10d.py:2069:13: error[invalid-assignment] Invalid assignment to data descriptor attribute `_timeout` on type `Options` with custom `__set__` method +torch/distributed/distributed_c10d.py:2092:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `timedelta`, found `Unknown | None` +torch/distributed/distributed_c10d.py:2102:13: error[invalid-assignment] Invalid assignment to data descriptor attribute `_timeout` on type `Options` with custom `__set__` method +torch/distributed/distributed_c10d.py:2126:17: error[invalid-assignment] Invalid assignment to data descriptor attribute `timeout` on type `_DistributedBackendOptions` with custom `__set__` method +torch/distributed/distributed_c10d.py:2176:25: error[invalid-argument-type] Argument to function `_create_process_group_wrapper` is incorrect: Expected `timedelta`, found `Unknown | None` +torch/distributed/distributed_c10d.py:2182:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:2187:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:2337:35: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:2486:18: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/distributed_c10d.py:2526:18: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/distributed_c10d.py:2638:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:2740:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:2903:18: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/distributed_c10d.py:2985:33: error[invalid-argument-type] Argument to function `supports_complex` is incorrect: Expected `ReduceOp`, found `Unknown | RedOpType` +torch/distributed/distributed_c10d.py:2987:18: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/distributed_c10d.py:2990:5: error[invalid-assignment] Object of type `Unknown | RedOpType` is not assignable to attribute `reduceOp` of type `ReduceOp` +torch/distributed/distributed_c10d.py:2997:50: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ReduceOp | None`, found `Unknown | RedOpType` +torch/distributed/distributed_c10d.py:3064:70: error[invalid-argument-type] Argument to function `supports_complex` is incorrect: Expected `ReduceOp`, found `Unknown | RedOpType` +torch/distributed/distributed_c10d.py:3067:45: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/distributed_c10d.py:3070:5: error[invalid-assignment] Object of type `Unknown | RedOpType` is not assignable to attribute `reduceOp` of type `ReduceOp` +torch/distributed/distributed_c10d.py:3124:5: error[invalid-assignment] Object of type `Unknown | RedOpType` is not assignable to attribute `reduceOp` of type `ReduceOp` +torch/distributed/distributed_c10d.py:3145:23: error[unresolved-attribute] Module `torch` has no member `ByteTensor` +torch/distributed/distributed_c10d.py:3149:24: error[unresolved-attribute] Module `torch._C` has no member `_distributed_c10d` +torch/distributed/distributed_c10d.py:3155:22: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/distributed/distributed_c10d.py:3164:24: error[unresolved-attribute] Module `torch._C` has no member `_distributed_c10d` +torch/distributed/distributed_c10d.py:3241:27: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/distributed_c10d.py:3242:27: error[unresolved-attribute] Module `torch` has no member `long` +torch/distributed/distributed_c10d.py:3252:31: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/distributed_c10d.py:3253:45: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/distributed_c10d.py:3263:30: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/distributed_c10d.py:3357:27: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/distributed_c10d.py:3358:27: error[unresolved-attribute] Module `torch` has no member `long` +torch/distributed/distributed_c10d.py:3372:35: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/distributed_c10d.py:3373:49: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/distributed_c10d.py:3394:30: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/distributed_c10d.py:3404:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:3491:27: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/distributed_c10d.py:3507:25: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/distributed_c10d.py:3522:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:3604:27: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/distributed_c10d.py:3605:33: error[unresolved-attribute] Module `torch` has no member `long` +torch/distributed/distributed_c10d.py:3628:15: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/distributed_c10d.py:3653:34: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/distributed_c10d.py:3664:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:3754:31: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/distributed_c10d.py:3756:31: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/distributed_c10d.py:3757:37: error[unresolved-attribute] Module `torch` has no member `long` +torch/distributed/distributed_c10d.py:3772:29: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/distributed_c10d.py:3776:19: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/distributed_c10d.py:3786:38: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/distributed_c10d.py:3896:27: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/distributed_c10d.py:3896:51: error[unresolved-attribute] Module `torch` has no member `long` +torch/distributed/distributed_c10d.py:3901:21: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/distributed_c10d.py:3902:39: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/distributed_c10d.py:3912:23: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/distributed_c10d.py:3912:47: error[unresolved-attribute] Module `torch` has no member `long` +torch/distributed/distributed_c10d.py:4008:38: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/distributed_c10d.py:4010:53: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/distributed_c10d.py:4100:14: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/distributed_c10d.py:4105:14: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/distributed_c10d.py:4232:39: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/distributed_c10d.py:4236:38: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/distributed_c10d.py:4419:38: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/distributed_c10d.py:4421:53: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/distributed_c10d.py:4481:5: error[invalid-assignment] Object of type `Unknown | RedOpType` is not assignable to attribute `reduceOp` of type `ReduceOp` +torch/distributed/distributed_c10d.py:4571:5: error[invalid-assignment] Object of type `Unknown | RedOpType` is not assignable to attribute `reduceOp` of type `ReduceOp` +torch/distributed/distributed_c10d.py:4579:62: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ReduceOp | None`, found `Unknown | RedOpType` +torch/distributed/distributed_c10d.py:4753:17: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/distributed_c10d.py:4755:18: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/distributed_c10d.py:4878:38: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/distributed_c10d.py:4881:38: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/distributed_c10d.py:4933:14: error[unresolved-attribute] Module `torch._C` has no member `_get_accelerator` +torch/distributed/distributed_c10d.py:4938:23: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:4944:23: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:5050:17: error[unresolved-attribute] Module `torch._C` has no member `_distributed_c10d` +torch/distributed/distributed_c10d.py:5084:13: error[invalid-assignment] Object of type `tuple[int, ...]` is not assignable to `list[int]` +torch/distributed/distributed_c10d.py:5194:45: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:5260:49: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:5293:25: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:5383:25: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:5898:55: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:5900:55: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/distributed_c10d.py:6081:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/elastic/agent/server/local_elastic_agent.py:337:17: error[invalid-assignment] Cannot assign to a subscript on an object of type `None` +torch/distributed/elastic/agent/server/local_elastic_agent.py:340:13: error[invalid-assignment] Invalid subscript assignment with key of type `Unknown | int` and value of type `dict[Unknown | str, Unknown | str | None]` on object of type `dict[int, dict[str, str]]` +torch/distributed/elastic/metrics/api.py:172:17: warning[deprecated] The function `publish_metric` is deprecated: Deprecated, use `put_metric(metric_group)(metric_name, metric_value)` instead +torch/distributed/elastic/metrics/api.py:172:32: error[invalid-argument-type] Argument to function `publish_metric` is incorrect: Expected `str`, found `Unknown | None` +torch/distributed/elastic/metrics/api.py:175:17: warning[deprecated] The function `publish_metric` is deprecated: Deprecated, use `put_metric(metric_group)(metric_name, metric_value)` instead +torch/distributed/elastic/metrics/api.py:175:32: error[invalid-argument-type] Argument to function `publish_metric` is incorrect: Expected `str`, found `Unknown | None` +torch/distributed/elastic/metrics/api.py:178:17: warning[deprecated] The function `publish_metric` is deprecated: Deprecated, use `put_metric(metric_group)(metric_name, metric_value)` instead +torch/distributed/elastic/metrics/api.py:180:21: error[invalid-argument-type] Argument to function `publish_metric` is incorrect: Expected `str`, found `Unknown | None` +torch/distributed/elastic/multiprocessing/errors/error_handler.py:163:24: error[unresolved-attribute] Module `json` has no member `decoder` +torch/distributed/elastic/rendezvous/api.py:14:31: warning[possibly-missing-import] Member `Store` of module `torch.distributed` may be missing +torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py:16:31: warning[possibly-missing-import] Member `FileStore` of module `torch.distributed` may be missing +torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py:16:42: warning[possibly-missing-import] Member `Store` of module `torch.distributed` may be missing +torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py:16:49: warning[possibly-missing-import] Member `TCPStore` of module `torch.distributed` may be missing +torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py:90:28: error[invalid-return-type] Return type does not match returned value: expected `tuple[bytes, Any, bool] | None`, found `tuple[@Todo, Literal[False]]` +torch/distributed/elastic/rendezvous/dynamic_rendezvous.py:24:31: warning[possibly-missing-import] Member `Store` of module `torch.distributed` may be missing +torch/distributed/elastic/rendezvous/dynamic_rendezvous.py:1105:49: warning[possibly-missing-attribute] Member `Store` may be missing on module `torch.distributed` +torch/distributed/elastic/rendezvous/dynamic_rendezvous.py:1126:69: warning[possibly-missing-attribute] Member `TCPStore` may be missing on module `torch.distributed` +torch/distributed/elastic/rendezvous/dynamic_rendezvous.py:1127:16: warning[possibly-missing-attribute] Member `TCPStore` may be missing on module `torch.distributed` +torch/distributed/elastic/rendezvous/dynamic_rendezvous.py:1373:16: warning[possibly-missing-attribute] Member `PrefixStore` may be missing on module `torch.distributed` +torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py:20:31: warning[possibly-missing-import] Member `Store` of module `torch.distributed` may be missing +torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py:126:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[bytes, Any, bool] | None`, found `tuple[@Todo, Literal[True]]` +torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py:130:24: warning[possibly-missing-attribute] Attribute `value` may be missing on object of type `Unknown | EtcdResult` +torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py:140:23: warning[possibly-missing-attribute] Attribute `modifiedIndex` may be missing on object of type `Unknown | EtcdResult` +torch/distributed/elastic/rendezvous/etcd_store.py:15:31: warning[possibly-missing-import] Member `Store` of module `torch.distributed` may be missing +torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py:14:31: warning[possibly-missing-import] Member `PrefixStore` of module `torch.distributed` may be missing +torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py:14:44: warning[possibly-missing-import] Member `Store` of module `torch.distributed` may be missing +torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py:14:51: warning[possibly-missing-import] Member `TCPStore` of module `torch.distributed` may be missing +torch/distributed/elastic/timer/file_based_local_timer.py:50:71: error[unresolved-attribute] Object of type `(...) -> _R@wrapper` has no attribute `__name__` +torch/distributed/elastic/utils/data/elastic_distributed_sampler.py:73:13: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/distributed/elastic/utils/data/elastic_distributed_sampler.py:77:13: error[unresolved-attribute] Module `torch` has no member `randperm` +torch/distributed/elastic/utils/distributed.py:81:21: warning[possibly-missing-attribute] Member `TCPStore` may be missing on module `torch.distributed` +torch/distributed/elastic/utils/store.py:18:18: error[unresolved-attribute] Module `torch._C` has no member `_DistStoreError` +torch/distributed/examples/memory_tracker_example.py:32:12: error[unresolved-import] Cannot resolve imported module `torchvision` +torch/distributed/examples/memory_tracker_example.py:37:9: error[unresolved-attribute] Module `torch` has no member `rand` +torch/distributed/flight_recorder/components/config_manager.py:96:16: error[invalid-assignment] Object of type `Unknown | Namespace` is not assignable to `Sequence[str] | None` +torch/distributed/flight_recorder/components/config_manager.py:98:12: error[unresolved-attribute] Object of type `Sequence[str] | None` has no attribute `selected_ranks` +torch/distributed/flight_recorder/components/config_manager.py:100:20: error[unresolved-attribute] Object of type `Sequence[str] | None` has no attribute `just_print_entries` +torch/distributed/flight_recorder/components/config_manager.py:104:12: error[unresolved-attribute] Object of type `Sequence[str] | None` has no attribute `pg_filters` +torch/distributed/flight_recorder/components/config_manager.py:106:20: error[unresolved-attribute] Object of type `Sequence[str] | None` has no attribute `just_print_entries` +torch/distributed/flight_recorder/components/config_manager.py:110:12: error[unresolved-attribute] Object of type `Sequence[str] | None` has no attribute `verbose` +torch/distributed/flight_recorder/components/config_manager.py:113:16: error[invalid-return-type] Return type does not match returned value: expected `Namespace`, found `Sequence[str] | None` +torch/distributed/flight_recorder/components/utils.py:719:15: error[invalid-assignment] Object of type `list[str]` is not assignable to `str` +torch/distributed/flight_recorder/fr_trace.py:47:12: error[invalid-assignment] Object of type `Namespace` is not assignable to `Sequence[str] | None` +torch/distributed/flight_recorder/fr_trace.py:49:12: error[unresolved-attribute] Object of type `Sequence[str] | None` has no attribute `trace_dir` +torch/distributed/flight_recorder/fr_trace.py:51:33: error[invalid-argument-type] Argument to function `read_dir` is incorrect: Expected `Namespace`, found `Sequence[str] | None` +torch/distributed/flight_recorder/fr_trace.py:53:8: error[unresolved-attribute] Object of type `Sequence[str] | None` has no attribute `transform_ft` +torch/distributed/flight_recorder/fr_trace.py:55:16: error[unresolved-attribute] Object of type `Sequence[str] | None` has no attribute `group_world_size` +torch/distributed/flight_recorder/fr_trace.py:57:41: error[unresolved-attribute] Object of type `Sequence[str] | None` has no attribute `group_world_size` +torch/distributed/flight_recorder/fr_trace.py:59:28: error[invalid-argument-type] Argument to function `build_db` is incorrect: Expected `Namespace`, found `Sequence[str] | None` +torch/distributed/flight_recorder/fr_trace.py:61:8: error[unresolved-attribute] Object of type `Sequence[str] | None` has no attribute `output` +torch/distributed/flight_recorder/fr_trace.py:63:19: error[unresolved-attribute] Object of type `Sequence[str] | None` has no attribute `output` +torch/distributed/fsdp/_common_utils.py:38:47: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/fsdp/_common_utils.py:64:32: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_common_utils.py:78:34: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_common_utils.py:116:38: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_common_utils.py:132:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_common_utils.py:137:39: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/fsdp/_common_utils.py:501:24: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_common_utils.py:503:24: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/distributed/fsdp/_common_utils.py:509:59: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/fsdp/_common_utils.py:528:62: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/distributed/fsdp/_common_utils.py:534:9: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/distributed/fsdp/_common_utils.py:538:8: error[unresolved-attribute] Module `torch.distributed` has no member `_functional_collectives` +torch/distributed/fsdp/_debug_utils.py:62:12: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/fsdp/_debug_utils.py:62:37: warning[possibly-missing-attribute] Member `get_debug_level` may be missing on module `torch.distributed` +torch/distributed/fsdp/_debug_utils.py:62:63: warning[possibly-missing-attribute] Member `DebugLevel` may be missing on module `torch.distributed` +torch/distributed/fsdp/_exec_order_utils.py:34:22: warning[possibly-missing-attribute] Member `DebugLevel` may be missing on module `torch.distributed` +torch/distributed/fsdp/_exec_order_utils.py:51:53: warning[possibly-missing-attribute] Member `DebugLevel` may be missing on module `torch.distributed` +torch/distributed/fsdp/_exec_order_utils.py:52:38: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_exec_order_utils.py:65:24: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_exec_order_utils.py:200:44: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_exec_order_utils.py:200:57: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_exec_order_utils.py:201:26: error[unresolved-attribute] Module `torch` has no member `int32` +torch/distributed/fsdp/_exec_order_utils.py:206:13: warning[possibly-missing-attribute] Member `all_gather_into_tensor` may be missing on module `torch.distributed` +torch/distributed/fsdp/_exec_order_utils.py:219:20: error[unresolved-attribute] Module `torch.distributed` has no member `_functional_collectives` +torch/distributed/fsdp/_exec_order_utils.py:239:13: warning[possibly-missing-attribute] Member `all_gather_into_tensor` may be missing on module `torch.distributed` +torch/distributed/fsdp/_exec_order_utils.py:245:20: error[unresolved-attribute] Module `torch.distributed` has no member `_functional_collectives` +torch/distributed/fsdp/_flat_param.py:185:25: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_flat_param.py:202:1: error[conflicting-metaclass] The metaclass of a derived class (`FlatParameter`) must be a subclass of the metaclasses of all its bases, but `_FlatParameterMeta` (metaclass of `FlatParameter`) and `type` (metaclass of base class `Parameter`) have no subclass relationship +torch/distributed/fsdp/_flat_param.py:329:31: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_flat_param.py:330:29: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_flat_param.py:331:20: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_flat_param.py:334:20: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_flat_param.py:378:22: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_flat_param.py:518:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_flat_param.py:521:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_flat_param.py:522:35: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_flat_param.py:524:24: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_flat_param.py:583:29: warning[possibly-missing-attribute] Member `get_debug_level` may be missing on module `torch.distributed` +torch/distributed/fsdp/_flat_param.py:678:22: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_flat_param.py:805:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_flat_param.py:808:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_flat_param.py:877:21: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/distributed/fsdp/_flat_param.py:891:17: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/distributed/fsdp/_flat_param.py:896:16: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/fsdp/_flat_param.py:909:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_flat_param.py:910:35: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_flat_param.py:970:20: error[unresolved-attribute] Module `torch.distributed` has no member `_functional_collectives` +torch/distributed/fsdp/_flat_param.py:1107:13: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/distributed/fsdp/_flat_param.py:1145:74: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_flat_param.py:1162:16: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_flat_param.py:1472:17: error[unresolved-attribute] Module `torch` has no member `chunk` +torch/distributed/fsdp/_flat_param.py:1477:13: warning[possibly-missing-attribute] Member `all_gather` may be missing on module `torch.distributed` +torch/distributed/fsdp/_flat_param.py:1479:13: warning[possibly-missing-attribute] Member `all_gather_into_tensor` may be missing on module `torch.distributed` +torch/distributed/fsdp/_flat_param.py:1573:25: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/fsdp/_flat_param.py:1573:46: error[unresolved-attribute] Module `torch` has no member `int32` +torch/distributed/fsdp/_flat_param.py:1575:9: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/fsdp/_flat_param.py:1584:37: warning[possibly-missing-attribute] Member `DebugLevel` may be missing on module `torch.distributed` +torch/distributed/fsdp/_flat_param.py:1597:33: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/fsdp/_flat_param.py:1602:9: warning[possibly-missing-attribute] Member `all_gather_into_tensor` may be missing on module `torch.distributed` +torch/distributed/fsdp/_flat_param.py:1755:28: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_flat_param.py:1834:17: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/distributed/fsdp/_flat_param.py:1845:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_flat_param.py:2407:25: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_flat_param.py:2427:33: warning[possibly-missing-attribute] Member `DebugLevel` may be missing on module `torch.distributed` +torch/distributed/fsdp/_flat_param.py:2428:60: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/fsdp/_flat_param.py:2642:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_flat_param.py:2649:16: error[unresolved-attribute] Module `torch.distributed` has no member `_functional_collectives` +torch/distributed/fsdp/_flat_param.py:2778:41: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_flat_param.py:2788:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/fsdp/_flat_param.py:2792:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_flat_param.py:2792:74: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_flat_param.py:2797:9: error[unresolved-attribute] Module `torch` has no member `ones` +torch/distributed/fsdp/_fsdp_extensions.py:47:13: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fsdp_extensions.py:48:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_fsdp_extensions.py:122:9: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_api.py:11:19: warning[possibly-missing-attribute] Member `ReduceOp` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_api.py:11:34: warning[possibly-missing-attribute] Member `ReduceOp` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_api.py:50:27: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_api.py:51:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_api.py:52:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_api.py:79:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_api.py:80:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_fully_shard/_fsdp_api.py:109:16: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_api.py:111:19: warning[possibly-missing-attribute] Member `Work` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_api.py:124:16: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_api.py:127:19: warning[possibly-missing-attribute] Member `Work` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:8:43: warning[possibly-missing-import] Member `_get_device_handle` of module `torch.distributed.device_mesh` may be missing +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:25:32: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:26:31: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:28:46: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:56:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:57:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:59:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:63:31: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:71:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:72:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:78:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:86:16: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:88:19: warning[possibly-missing-attribute] Member `Work` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:89:16: warning[possibly-missing-attribute] Member `all_gather_into_tensor` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:98:31: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:105:16: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:107:19: warning[possibly-missing-attribute] Member `Work` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:108:16: warning[possibly-missing-attribute] Member `all_gather_into_tensor` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:121:16: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:124:10: warning[possibly-missing-attribute] Member `Work` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:125:16: warning[possibly-missing-attribute] Member `reduce_scatter_tensor` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:135:31: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:142:16: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:145:10: warning[possibly-missing-attribute] Member `Work` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:146:16: warning[possibly-missing-attribute] Member `reduce_scatter_tensor` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:187:9: error[unresolved-attribute] Module `torch` has no member `_foreach_copy_` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:209:5: error[unresolved-attribute] Module `torch` has no member `split_with_sizes_copy` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:232:5: error[unresolved-attribute] Module `torch` has no member `_chunk_cat` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:238:12: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:240:32: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:241:24: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:242:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:254:21: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:256:24: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:333:35: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:337:9: error[unresolved-attribute] Module `torch` has no member `_foreach_copy_` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:348:12: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:362:36: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:388:17: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:394:35: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:395:44: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:400:22: warning[deprecated] The function `is_compiling` is deprecated: `torch._dynamo.external_utils.is_compiling` is deprecated. Use `torch.compiler.is_compiling` instead. +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:437:26: error[unresolved-attribute] Module `torch` has no member `chunk` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:443:17: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:450:27: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:451:28: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:453:26: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:454:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:455:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:457:32: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:458:24: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:465:5: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:466:5: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:468:14: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:513:22: error[unresolved-attribute] Module `torch` has no member `chunk` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:514:34: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:581:17: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:610:32: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:626:21: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:679:22: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:679:54: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:680:46: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:684:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:688:36: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:701:36: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:702:32: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:703:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:710:11: warning[possibly-missing-attribute] Member `ReduceOp` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:710:26: warning[possibly-missing-attribute] Member `ReduceOp` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:711:11: warning[possibly-missing-attribute] Member `ReduceOp` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:711:26: warning[possibly-missing-attribute] Member `ReduceOp` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:719:42: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:719:57: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py:738:33: warning[possibly-missing-attribute] Member `_make_nccl_premul_sum` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:95:20: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:109:40: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:109:73: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:111:12: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:117:19: error[unresolved-attribute] Module `torch` has no member `chunk` +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:124:42: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:125:6: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:129:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:163:43: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:170:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:173:16: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/distributed/fsdp/_fully_shard/_fsdp_common.py:181:12: error[unresolved-attribute] Module `torch._C` has no member `_current_graph_task_id` +torch/distributed/fsdp/_fully_shard/_fsdp_init.py:9:43: warning[possibly-missing-import] Member `_get_device_handle` of module `torch.distributed.device_mesh` may be missing +torch/distributed/fsdp/_fully_shard/_fsdp_init.py:68:12: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_init.py:69:9: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_init.py:70:18: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_init.py:71:14: error[unresolved-attribute] Module `torch._C` has no member `_get_accelerator` +torch/distributed/fsdp/_fully_shard/_fsdp_init.py:76:48: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_fully_shard/_fsdp_init.py:78:16: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_fully_shard/_fsdp_init.py:80:12: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_fully_shard/_fsdp_init.py:214:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:13:43: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:136:20: error[unresolved-attribute] Module `torch` has no member `_from_functional_tensor` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:137:18: error[unresolved-attribute] Module `torch` has no member `_from_functional_tensor` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:138:10: error[unresolved-attribute] Module `torch._C` has no member `_ExcludeDispatchKeyGuard` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:139:9: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:139:33: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:186:38: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:199:17: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:200:27: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:201:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:202:17: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:203:19: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:205:32: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:206:32: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:228:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:243:43: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:263:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:468:39: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:470:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:476:13: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:476:25: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:535:27: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:602:39: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:611:34: error[invalid-argument-type] Argument to bound method `_setattr_on_modules` is incorrect: Expected `Parameter`, found `Unknown | None | Parameter` +torch/distributed/fsdp/_fully_shard/_fsdp_param.py:797:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:10:43: warning[possibly-missing-import] Member `_get_device_handle` of module `torch.distributed.device_mesh` may be missing +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:61:33: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:93:16: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:93:30: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:107:21: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:112:21: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:117:21: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:123:27: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:124:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:132:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:173:35: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:213:43: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:216:53: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:343:17: error[too-many-positional-arguments] Too many positional arguments to function `foreach_all_gather`: expected 7, got 9 +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:422:65: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:570:21: error[invalid-argument-type] Argument to function `foreach_reduce` is incorrect: Expected `ProcessGroup`, found `ProcessGroup | None` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:616:33: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:713:16: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:776:44: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:789:48: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:797:44: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py:886:13: error[unresolved-attribute] Module `torch._dynamo` has no member `comptime` +torch/distributed/fsdp/_fully_shard/_fsdp_state.py:18:43: warning[possibly-missing-import] Member `_get_device_handle` of module `torch.distributed.device_mesh` may be missing +torch/distributed/fsdp/_fully_shard/_fsdp_state.py:55:41: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/fsdp/_fully_shard/_fsdp_state.py:92:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_fully_shard/_fsdp_state.py:145:17: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/distributed/fsdp/_fully_shard/_fsdp_state.py:342:16: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/distributed/fsdp/_fully_shard/_fully_shard.py:189:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/fsdp/_fully_shard/_fully_shard.py:250:9: error[unresolved-attribute] Cannot assign object of type `type` to attribute `__class__` on type `Module` with custom `__setattr__` method. +torch/distributed/fsdp/_fully_shard/_fully_shard.py:524:43: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/fsdp/_init_utils.py:16:43: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/fsdp/_init_utils.py:62:37: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_init_utils.py:62:56: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_init_utils.py:64:35: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_init_utils.py:254:27: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_init_utils.py:256:12: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_init_utils.py:256:31: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_init_utils.py:802:36: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_init_utils.py:817:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_init_utils.py:830:36: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_init_utils.py:833:15: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_init_utils.py:843:44: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_init_utils.py:843:63: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_init_utils.py:855:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_init_utils.py:905:37: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_init_utils.py:910:55: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_init_utils.py:967:37: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_init_utils.py:981:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_init_utils.py:1020:37: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_init_utils.py:1034:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_init_utils.py:1064:37: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_init_utils.py:1067:6: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_init_utils.py:1086:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_init_utils.py:1099:20: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_init_utils.py:1144:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_init_utils.py:1204:20: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_limiter_utils.py:15:40: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/fsdp/_limiter_utils.py:18:35: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/fsdp/_limiter_utils.py:22:45: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/fsdp/_limiter_utils.py:28:36: error[unresolved-attribute] Module `torch` has no member `Event` +torch/distributed/fsdp/_optim_utils.py:105:12: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_optim_utils.py:106:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_optim_utils.py:229:13: warning[possibly-missing-attribute] Member `all_gather_into_tensor` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:288:17: error[invalid-assignment] Invalid subscript assignment with key of type `str` and value of type `Unknown | list[Tensor] | Iterator[Tensor]` on object of type `dict[str, Iterator[Unknown]]` +torch/distributed/fsdp/_optim_utils.py:291:77: error[invalid-argument-type] Argument to function `next` is incorrect: Expected `SupportsNext[Unknown]`, found `Unknown | list[Tensor] | Iterator[Tensor] | Iterator[Unknown]` +torch/distributed/fsdp/_optim_utils.py:331:21: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:334:8: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:340:5: warning[possibly-missing-attribute] Member `broadcast_object_list` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:341:8: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:348:57: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:350:8: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:364:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/fsdp/_optim_utils.py:367:5: warning[possibly-missing-attribute] Member `broadcast` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:415:21: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:703:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_optim_utils.py:762:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_optim_utils.py:764:9: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/distributed/fsdp/_optim_utils.py:766:14: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/distributed/fsdp/_optim_utils.py:767:13: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/fsdp/_optim_utils.py:835:12: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/fsdp/_optim_utils.py:835:52: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_optim_utils.py:1174:21: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:1191:19: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/fsdp/_optim_utils.py:1191:59: error[unresolved-attribute] Module `torch` has no member `int32` +torch/distributed/fsdp/_optim_utils.py:1192:5: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:1194:41: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:1195:9: warning[possibly-missing-attribute] Member `all_gather_object` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:1213:21: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:1225:12: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:1252:31: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:1254:9: warning[possibly-missing-attribute] Member `all_gather_object` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:1261:9: warning[possibly-missing-attribute] Member `broadcast_object_list` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:1355:5: warning[possibly-missing-attribute] Member `all_gather_object` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:1368:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_optim_utils.py:1382:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_optim_utils.py:1442:24: error[unresolved-attribute] Module `torch` has no member `equal` +torch/distributed/fsdp/_optim_utils.py:1486:32: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/fsdp/_optim_utils.py:1544:33: warning[possibly-missing-attribute] Member `get_debug_level` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:1544:59: warning[possibly-missing-attribute] Member `DebugLevel` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:1573:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/fsdp/_optim_utils.py:1659:23: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/fsdp/_optim_utils.py:1669:13: warning[possibly-missing-attribute] Member `all_gather_into_tensor` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:1925:21: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_optim_utils.py:1982:33: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/fsdp/_runtime_utils.py:151:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_runtime_utils.py:1440:12: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/distributed/fsdp/_runtime_utils.py:1446:8: error[unresolved-attribute] Module `torch.distributed` has no member `_functional_collectives` +torch/distributed/fsdp/_runtime_utils.py:1487:12: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/distributed/fsdp/_runtime_utils.py:1496:8: error[unresolved-attribute] Module `torch.distributed` has no member `_functional_collectives` +torch/distributed/fsdp/_runtime_utils.py:1513:8: error[unresolved-attribute] Module `torch.distributed` has no member `_functional_collectives` +torch/distributed/fsdp/_runtime_utils.py:1544:25: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/distributed/fsdp/_runtime_utils.py:1545:21: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/distributed/fsdp/_runtime_utils.py:1546:25: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/distributed/fsdp/_runtime_utils.py:1554:8: error[unresolved-attribute] Module `torch.distributed` has no member `_functional_collectives` +torch/distributed/fsdp/_runtime_utils.py:1636:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/_runtime_utils.py:1637:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_runtime_utils.py:1651:16: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/distributed/fsdp/_shard_utils.py:10:31: warning[possibly-missing-import] Member `distributed_c10d` of module `torch.distributed` may be missing +torch/distributed/fsdp/_shard_utils.py:35:9: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/fsdp/_shard_utils.py:36:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/_shard_utils.py:65:13: warning[possibly-missing-attribute] Member `get_global_rank` may be missing on module `torch.distributed` +torch/distributed/fsdp/_shard_utils.py:87:27: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/fsdp/_state_dict_utils.py:79:36: warning[possibly-missing-attribute] Attribute `param_module_names` may be missing on object of type `FlatParamHandle | None` +torch/distributed/fsdp/_state_dict_utils.py:90:36: warning[possibly-missing-attribute] Attribute `shared_param_module_names` may be missing on object of type `FlatParamHandle | None` +torch/distributed/fsdp/_state_dict_utils.py:385:17: warning[possibly-missing-attribute] Attribute `uses_sharded_strategy` may be missing on object of type `FlatParamHandle | None` +torch/distributed/fsdp/_state_dict_utils.py:477:18: warning[possibly-missing-attribute] Attribute `flat_param` may be missing on object of type `FlatParamHandle | None` +torch/distributed/fsdp/_state_dict_utils.py:516:17: warning[possibly-missing-attribute] Attribute `uses_sharded_strategy` may be missing on object of type `FlatParamHandle | None` +torch/distributed/fsdp/_unshard_param_utils.py:101:66: warning[possibly-missing-attribute] Attribute `flat_param` may be missing on object of type `FlatParamHandle | None` +torch/distributed/fsdp/_unshard_param_utils.py:197:43: error[invalid-argument-type] Argument to function `_reset_flat_param_grad_info_if_needed` is incorrect: Expected `list[FlatParamHandle]`, found `FlatParamHandle & ~AlwaysFalsy` +torch/distributed/fsdp/api.py:221:27: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/api.py:222:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/api.py:223:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/fsdp/sharded_grad_scaler.py:27:9: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/distributed/fsdp/sharded_grad_scaler.py:43:40: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/sharded_grad_scaler.py:103:49: warning[possibly-missing-attribute] Member `group` may be missing on module `torch.distributed` +torch/distributed/fsdp/sharded_grad_scaler.py:184:15: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/fsdp/sharded_grad_scaler.py:200:65: error[unresolved-attribute] Module `torch` has no member `float16` +torch/distributed/fsdp/sharded_grad_scaler.py:207:48: error[unresolved-attribute] Module `torch` has no member `float16` +torch/distributed/fsdp/sharded_grad_scaler.py:209:63: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/fsdp/sharded_grad_scaler.py:210:63: error[unresolved-attribute] Module `torch` has no member `float16` +torch/distributed/fsdp/sharded_grad_scaler.py:221:21: error[unresolved-attribute] Module `torch` has no member `_amp_foreach_non_finite_check_and_unscale_` +torch/distributed/fsdp/sharded_grad_scaler.py:254:21: error[unresolved-attribute] Module `torch` has no member `full` +torch/distributed/fsdp/sharded_grad_scaler.py:255:30: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/fsdp/sharded_grad_scaler.py:275:21: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/fsdp/sharded_grad_scaler.py:281:21: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/fsdp/sharded_grad_scaler.py:286:13: error[unresolved-attribute] Module `torch` has no member `_foreach_copy_` +torch/distributed/fsdp/sharded_grad_scaler.py:340:20: warning[possibly-missing-attribute] Attribute `device` may be missing on object of type `int | (Tensor & ~float)` +torch/distributed/fsdp/sharded_grad_scaler.py:342:20: warning[possibly-missing-attribute] Attribute `numel` may be missing on object of type `int | (Tensor & ~float)` +torch/distributed/fsdp/sharded_grad_scaler.py:344:20: warning[possibly-missing-attribute] Attribute `requires_grad` may be missing on object of type `int | (Tensor & ~float)` +torch/distributed/fsdp/sharded_grad_scaler.py:367:17: error[unresolved-attribute] Module `torch` has no member `_amp_update_scale_` +torch/distributed/launch.py:207:5: warning[deprecated] The function `main` is deprecated: The module torch.distributed.launch is deprecated +and will be removed in future. Use torchrun. +Note that --use-env is set by default in torchrun. +If your script expects `--local-rank` argument to be set, please +change it to read from `os.environ['LOCAL_RANK']` instead. See +https://pytorch.org/docs/stable/distributed.html#launch-utility for +further instructions + +torch/distributed/nn/__init__.py:6:4: error[unresolved-attribute] Module `torch.distributed` has no member `rpc` +torch/distributed/nn/api/remote_module.py:13:19: error[unresolved-import] Module `torch` has no member `device` +torch/distributed/nn/api/remote_module.py:13:27: error[unresolved-import] Module `torch` has no member `dtype` +torch/distributed/nn/api/remote_module.py:14:31: warning[possibly-missing-import] Member `_remote_device` of module `torch.distributed` may be missing +torch/distributed/nn/api/remote_module.py:101:12: warning[possibly-missing-attribute] Member `RRef` may be missing on module `torch.distributed.rpc` +torch/distributed/nn/api/remote_module.py:104:48: warning[possibly-missing-attribute] Member `RRef` may be missing on module `torch.distributed.rpc` +torch/distributed/nn/api/remote_module.py:105:15: warning[possibly-missing-attribute] Member `RRef` may be missing on module `torch.distributed.rpc` +torch/distributed/nn/api/remote_module.py:106:9: warning[possibly-missing-attribute] Member `RRef` may be missing on module `torch.distributed.rpc` +torch/distributed/nn/api/remote_module.py:118:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/nn/api/remote_module.py:231:13: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `is_scriptable` on type `Self@__init__` with custom `__setattr__` method. +torch/distributed/nn/api/remote_module.py:234:19: warning[possibly-missing-attribute] Member `rpc_async` may be missing on module `torch.distributed.rpc` +torch/distributed/nn/api/remote_module.py:245:19: warning[possibly-missing-attribute] Member `rpc_async` may be missing on module `torch.distributed.rpc` +torch/distributed/nn/api/remote_module.py:257:32: warning[possibly-missing-attribute] Member `rpc_sync` may be missing on module `torch.distributed.rpc` +torch/distributed/nn/api/remote_module.py:263:13: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `is_scriptable` on type `Self@__init__` with custom `__setattr__` method. +torch/distributed/nn/api/remote_module.py:268:32: warning[possibly-missing-attribute] Member `remote` may be missing on module `torch.distributed.rpc` +torch/distributed/nn/api/remote_module.py:277:63: warning[possibly-missing-attribute] Member `RRef` may be missing on module `torch.distributed.rpc` +torch/distributed/nn/api/remote_module.py:294:16: warning[possibly-missing-attribute] Member `rpc_sync` may be missing on module `torch.distributed.rpc` +torch/distributed/nn/api/remote_module.py:296:34: warning[possibly-missing-attribute] Member `RRef` may be missing on module `torch.distributed.rpc` +torch/distributed/nn/api/remote_module.py:360:10: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `RemovableHandle` +torch/distributed/nn/api/remote_module.py:375:10: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `RemovableHandle` +torch/distributed/nn/api/remote_module.py:387:10: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `RemovableHandle` +torch/distributed/nn/api/remote_module.py:412:10: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `Iterator[tuple[str, Parameter]]` +torch/distributed/nn/api/remote_module.py:424:10: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `Iterator[tuple[str, Tensor]]` +torch/distributed/nn/api/remote_module.py:465:16: warning[possibly-missing-attribute] Member `_is_current_rpc_agent_set` may be missing on module `torch.distributed.rpc` +torch/distributed/nn/api/remote_module.py:468:9: error[unresolved-attribute] Cannot assign object of type `str | None | int` to attribute `on` on type `Self@_prepare_init` with custom `__setattr__` method. +torch/distributed/nn/api/remote_module.py:473:9: error[unresolved-attribute] Cannot assign object of type `str` to attribute `device` on type `Self@_prepare_init` with custom `__setattr__` method. +torch/distributed/nn/api/remote_module.py:474:17: warning[possibly-missing-attribute] Member `_get_current_rpc_agent` may be missing on module `torch.distributed.rpc` +torch/distributed/nn/api/remote_module.py:477:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `is_device_map_set` on type `Self@_prepare_init` with custom `__setattr__` method. +torch/distributed/nn/api/remote_module.py:484:45: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/nn/api/remote_module.py:515:22: warning[possibly-missing-attribute] Member `RRef` may be missing on module `torch.distributed.rpc` +torch/distributed/nn/api/remote_module.py:715:21: warning[possibly-missing-attribute] Member `PyRRef` may be missing on module `torch.distributed.rpc` +torch/distributed/nn/functional.py:9:31: warning[possibly-missing-import] Member `group` of module `torch.distributed` may be missing +torch/distributed/nn/functional.py:9:38: warning[possibly-missing-import] Member `ReduceOp` of module `torch.distributed` may be missing +torch/distributed/nn/functional.py:232:20: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:236:9: warning[possibly-missing-attribute] Member `broadcast` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:259:13: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/nn/functional.py:259:53: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:263:12: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:264:13: warning[possibly-missing-attribute] Member `gather` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:266:13: warning[possibly-missing-attribute] Member `gather` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:281:18: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/nn/functional.py:282:12: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:283:13: warning[possibly-missing-attribute] Member `scatter` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:285:13: warning[possibly-missing-attribute] Member `scatter` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:301:9: warning[possibly-missing-attribute] Member `reduce` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:318:9: warning[possibly-missing-attribute] Member `reduce_scatter` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:336:13: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/nn/functional.py:336:53: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:339:9: warning[possibly-missing-attribute] Member `all_gather` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:344:12: warning[possibly-missing-attribute] Member `get_backend` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:344:49: warning[possibly-missing-attribute] Member `Backend` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:345:20: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:346:18: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/nn/functional.py:351:28: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/nn/functional.py:353:18: error[unresolved-attribute] Module `torch` has no member `sum` +torch/distributed/nn/functional.py:353:28: error[unresolved-attribute] Module `torch` has no member `stack` +torch/distributed/nn/functional.py:362:9: warning[possibly-missing-attribute] Member `_all_gather_base` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:368:12: warning[possibly-missing-attribute] Member `get_backend` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:368:49: warning[possibly-missing-attribute] Member `Backend` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:369:26: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:376:42: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:377:18: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/nn/functional.py:380:13: warning[possibly-missing-attribute] Member `_reduce_scatter_base` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:380:18: warning[deprecated] The function `_reduce_scatter_base` is deprecated: `torch.distributed._reduce_scatter_base` is a private function and will be deprecated. Please use `torch.distributed.reduce_scatter_tensor` instead. +torch/distributed/nn/functional.py:392:46: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:394:19: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:397:12: warning[possibly-missing-attribute] Member `get_backend` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:397:45: warning[possibly-missing-attribute] Member `Backend` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:398:28: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:402:17: warning[possibly-missing-attribute] Member `scatter` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:404:13: warning[possibly-missing-attribute] Member `all_to_all` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:414:13: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/nn/functional.py:430:9: warning[possibly-missing-attribute] Member `all_to_all_single` may be missing on module `torch.distributed` +torch/distributed/nn/functional.py:442:18: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/nn/functional.py:462:45: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/nn/functional.py:463:9: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/nn/jit/instantiator.py:20:22: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/distributed/nn/jit/instantiator.py:21:10: error[unresolved-attribute] Module `torch.jit` has no member `_state` +torch/distributed/nn/jit/instantiator.py:97:33: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/distributed/optim/apply_optimizer_in_backward.py:13:34: error[unresolved-attribute] Module `torch.utils` has no member `weak` +torch/distributed/optim/apply_optimizer_in_backward.py:14:25: error[unresolved-attribute] Module `torch.utils` has no member `weak` +torch/distributed/optim/functional_adadelta.py:77:32: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/distributed/optim/functional_adadelta.py:84:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/optim/functional_adadelta.py:85:43: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_adadelta.py:86:46: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_adadelta.py:88:42: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_adadelta.py:89:46: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_adagrad.py:69:24: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/distributed/optim/functional_adagrad.py:70:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/optim/functional_adagrad.py:91:32: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/distributed/optim/functional_adam.py:82:23: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/distributed/optim/functional_adam.py:89:29: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/optim/functional_adam.py:90:32: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_adam.py:91:38: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_adam.py:93:35: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_adam.py:94:38: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_adam.py:97:43: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_adam.py:98:42: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_adam.py:150:32: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/distributed/optim/functional_adam.py:157:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/optim/functional_adam.py:159:40: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_adam.py:160:46: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_adam.py:163:43: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_adam.py:164:46: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_adam.py:168:51: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_adam.py:169:50: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_adamax.py:85:32: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/distributed/optim/functional_adamax.py:92:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/optim/functional_adamax.py:94:40: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_adamax.py:95:46: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_adamax.py:98:40: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_adamax.py:99:46: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_adamw.py:78:23: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/distributed/optim/functional_adamw.py:86:29: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/optim/functional_adamw.py:88:32: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_adamw.py:89:38: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_adamw.py:92:35: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_adamw.py:93:38: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_adamw.py:97:43: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_adamw.py:98:42: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_adamw.py:151:32: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/distributed/optim/functional_adamw.py:158:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/optim/functional_adamw.py:160:40: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_adamw.py:161:46: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_adamw.py:164:43: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_adamw.py:165:46: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_adamw.py:169:51: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_adamw.py:170:50: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_rmsprop.py:84:32: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/distributed/optim/functional_rmsprop.py:91:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/optim/functional_rmsprop.py:92:43: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_rmsprop.py:93:46: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_rmsprop.py:96:52: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_rmsprop.py:97:50: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_rmsprop.py:100:45: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_rmsprop.py:101:50: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_rprop.py:75:32: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/distributed/optim/functional_rprop.py:82:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/optim/functional_rprop.py:83:37: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/functional_rprop.py:84:46: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/optim/functional_rprop.py:86:42: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/distributed/optim/named_optimizer.py:72:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/optim/named_optimizer.py:121:17: error[invalid-assignment] Cannot assign to a subscript on an object of type `Mapping[str, Any]` +torch/distributed/optim/named_optimizer.py:282:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `Mapping[str, Any]` +torch/distributed/optim/named_optimizer.py:284:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `Mapping[str, Any]` +torch/distributed/optim/named_optimizer.py:304:21: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/optim/optimizer.py:13:35: warning[possibly-missing-import] Member `RRef` of module `torch.distributed.rpc` may be missing +torch/distributed/optim/optimizer.py:47:9: error[unresolved-attribute] Cannot assign object of type `list[Unknown]` to attribute `_local_params` on type `Self@__init__` with custom `__setattr__` method. +torch/distributed/optim/optimizer.py:52:27: warning[possibly-missing-attribute] Member `get_gradients` may be missing on module `torch.distributed.autograd` +torch/distributed/optim/optimizer.py:79:27: warning[possibly-missing-attribute] Member `get_gradients` may be missing on module `torch.distributed.autograd` +torch/distributed/optim/optimizer.py:88:12: warning[possibly-missing-attribute] Member `RRef` may be missing on module `torch.distributed.rpc` +torch/distributed/optim/optimizer.py:102:16: warning[possibly-missing-attribute] Member `RRef` may be missing on module `torch.distributed.rpc` +torch/distributed/optim/optimizer.py:189:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/optim/optimizer.py:194:56: error[unresolved-attribute] Module `torch.jit` has no member `_state` +torch/distributed/optim/optimizer.py:215:37: warning[possibly-missing-attribute] Member `rpc_async` may be missing on module `torch.distributed.rpc` +torch/distributed/optim/optimizer.py:239:9: warning[possibly-missing-attribute] Member `_is_valid_context` may be missing on module `torch.distributed.autograd` +torch/distributed/optim/optimizer.py:248:13: warning[possibly-missing-attribute] Member `rpc_async` may be missing on module `torch.distributed.rpc` +torch/distributed/optim/zero_redundancy_optimizer.py:35:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/optim/zero_redundancy_optimizer.py:57:26: error[unresolved-attribute] Module `collections` has no member `abc` +torch/distributed/optim/zero_redundancy_optimizer.py:76:21: warning[possibly-missing-attribute] Member `group` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.py:77:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/optim/zero_redundancy_optimizer.py:77:28: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/optim/zero_redundancy_optimizer.py:96:8: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.py:101:25: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/distributed/optim/zero_redundancy_optimizer.py:102:28: error[unresolved-attribute] Module `torch` has no member `ByteTensor` +torch/distributed/optim/zero_redundancy_optimizer.py:104:9: warning[possibly-missing-attribute] Member `broadcast` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.py:106:9: warning[possibly-missing-attribute] Member `broadcast` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.py:109:25: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/distributed/optim/zero_redundancy_optimizer.py:111:9: warning[possibly-missing-attribute] Member `broadcast` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.py:112:28: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/optim/zero_redundancy_optimizer.py:113:48: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/optim/zero_redundancy_optimizer.py:116:9: warning[possibly-missing-attribute] Member `broadcast` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.py:175:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/optim/zero_redundancy_optimizer.py:262:48: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.py:273:62: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.py:407:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/optim/zero_redundancy_optimizer.py:418:61: warning[possibly-missing-attribute] Member `group` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.py:420:32: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.py:421:26: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.py:422:33: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.py:424:13: error[invalid-argument-type] Argument to function `get_global_rank` is incorrect: Expected `ProcessGroup`, found `(Any & ~None) | ProcessGroup | None` +torch/distributed/optim/zero_redundancy_optimizer.py:535:27: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/optim/zero_redundancy_optimizer.py:536:24: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/optim/zero_redundancy_optimizer.py:544:27: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.py:546:17: error[invalid-argument-type] Argument to function `get_global_rank` is incorrect: Expected `ProcessGroup`, found `Unknown | ProcessGroup | None` +torch/distributed/optim/zero_redundancy_optimizer.py:558:36: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/optim/zero_redundancy_optimizer.py:573:36: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/optim/zero_redundancy_optimizer.py:778:31: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.py:780:21: error[invalid-argument-type] Argument to function `get_global_rank` is incorrect: Expected `ProcessGroup`, found `Unknown | ProcessGroup | None` +torch/distributed/optim/zero_redundancy_optimizer.py:784:21: warning[possibly-missing-attribute] Member `broadcast` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.py:793:27: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.py:795:17: error[invalid-argument-type] Argument to function `get_global_rank` is incorrect: Expected `ProcessGroup`, found `Unknown | ProcessGroup | None` +torch/distributed/optim/zero_redundancy_optimizer.py:800:21: warning[possibly-missing-attribute] Member `broadcast` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.py:828:15: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/optim/zero_redundancy_optimizer.py:1164:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/optim/zero_redundancy_optimizer.py:1350:30: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/optim/zero_redundancy_optimizer.py:1353:30: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/optim/zero_redundancy_optimizer.py:1392:26: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/optim/zero_redundancy_optimizer.py:1538:16: warning[possibly-missing-attribute] Member `get_debug_level` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.py:1538:42: warning[possibly-missing-attribute] Member `DebugLevel` may be missing on module `torch.distributed` +torch/distributed/optim/zero_redundancy_optimizer.pyi:19:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/optim/zero_redundancy_optimizer.pyi:52:35: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/optim/zero_redundancy_optimizer.pyi:84:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/pipelining/_IR.py:15:31: warning[possibly-missing-import] Member `ProcessGroup` of module `torch.distributed` may be missing +torch/distributed/pipelining/_IR.py:503:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/pipelining/_IR.py:549:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `has_loss_and_backward` on type `Self@__init__` with custom `__setattr__` method. +torch/distributed/pipelining/_IR.py:602:9: error[unresolved-attribute] Cannot assign object of type `def throw(self, *args, **kwargs) -> Unknown` to attribute `forward` on type `GraphModule` with custom `__setattr__` method. +torch/distributed/pipelining/_IR.py:1122:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/pipelining/_backward.py:196:13: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/distributed/pipelining/_backward.py:418:16: error[unresolved-attribute] Module `torch` has no member `add` +torch/distributed/pipelining/_schedule_visualizer.py:86:12: warning[possibly-missing-attribute] Attribute `pipeline_order` may be missing on object of type `Unknown | _PipelineSchedule` +torch/distributed/pipelining/_schedule_visualizer.py:92:46: warning[possibly-missing-attribute] Attribute `pipeline_order` may be missing on object of type `Unknown | _PipelineSchedule` +torch/distributed/pipelining/_schedule_visualizer.py:97:32: warning[possibly-missing-attribute] Attribute `pipeline_order` may be missing on object of type `Unknown | _PipelineSchedule` +torch/distributed/pipelining/_schedule_visualizer.py:350:12: error[unresolved-import] Cannot resolve imported module `matplotlib.pyplot` +torch/distributed/pipelining/_schedule_visualizer.py:351:10: error[unresolved-import] Cannot resolve imported module `matplotlib.patches` +torch/distributed/pipelining/microbatch.py:52:28: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/pipelining/microbatch.py:143:28: error[unresolved-attribute] Module `torch` has no member `tensor_split` +torch/distributed/pipelining/microbatch.py:146:25: error[unresolved-attribute] Module `torch` has no member `tensor_split` +torch/distributed/pipelining/microbatch.py:148:9: error[unresolved-attribute] Module `torch` has no member `tensor_split` +torch/distributed/pipelining/microbatch.py:153:9: error[unresolved-attribute] Module `torch` has no member `tensor_split` +torch/distributed/pipelining/microbatch.py:164:28: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/distributed/pipelining/microbatch.py:203:21: error[unresolved-attribute] Module `torch` has no member `tensor_split` +torch/distributed/pipelining/microbatch.py:527:35: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/pipelining/schedules.py:498:19: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/schedules.py:499:11: warning[possibly-missing-attribute] Member `Work` may be missing on module `torch.distributed` +torch/distributed/pipelining/schedules.py:507:12: warning[possibly-missing-attribute] Member `batch_isend_irecv` may be missing on module `torch.distributed` +torch/distributed/pipelining/schedules.py:511:19: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/schedules.py:512:21: warning[possibly-missing-attribute] Member `Work` may be missing on module `torch.distributed` +torch/distributed/pipelining/schedules.py:521:33: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/schedules.py:522:34: warning[possibly-missing-attribute] Member `Work` may be missing on module `torch.distributed` +torch/distributed/pipelining/schedules.py:537:32: warning[possibly-missing-attribute] Member `Work` may be missing on module `torch.distributed` +torch/distributed/pipelining/schedules.py:596:27: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/schedules.py:626:39: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/distributed/pipelining/schedules.py:644:34: error[unresolved-attribute] Module `torch` has no member `tensor_split` +torch/distributed/pipelining/schedules.py:704:38: warning[possibly-missing-attribute] Member `Work` may be missing on module `torch.distributed` +torch/distributed/pipelining/schedules.py:755:38: warning[possibly-missing-attribute] Member `Work` may be missing on module `torch.distributed` +torch/distributed/pipelining/schedules.py:785:38: warning[possibly-missing-attribute] Member `Work` may be missing on module `torch.distributed` +torch/distributed/pipelining/schedules.py:885:25: warning[possibly-missing-attribute] Member `Work` may be missing on module `torch.distributed` +torch/distributed/pipelining/schedules.py:1537:27: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/schedules.py:1621:21: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/distributed/pipelining/schedules.py:1642:34: error[unresolved-attribute] Module `torch` has no member `tensor_split` +torch/distributed/pipelining/schedules.py:1696:27: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/schedules.py:1886:55: warning[possibly-missing-attribute] Member `Work` may be missing on module `torch.distributed` +torch/distributed/pipelining/schedules.py:1887:55: warning[possibly-missing-attribute] Member `Work` may be missing on module `torch.distributed` +torch/distributed/pipelining/schedules.py:2071:29: warning[possibly-missing-attribute] Member `Work` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:103:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/pipelining/stage.py:108:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/pipelining/stage.py:128:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/pipelining/stage.py:129:25: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:171:27: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:172:27: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:315:15: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:320:19: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:329:22: warning[possibly-missing-attribute] Member `get_global_rank` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:332:17: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:332:28: warning[possibly-missing-attribute] Member `irecv` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:415:59: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:424:59: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:435:59: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:441:19: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:458:26: warning[possibly-missing-attribute] Member `get_global_rank` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:460:28: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:460:39: warning[possibly-missing-attribute] Member `isend` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:464:59: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:480:19: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:494:26: warning[possibly-missing-attribute] Member `get_global_rank` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:496:28: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:496:39: warning[possibly-missing-attribute] Member `isend` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:925:51: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:931:19: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:935:23: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/pipelining/stage.py:935:64: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/pipelining/stage.py:936:23: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/pipelining/stage.py:937:57: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/pipelining/stage.py:942:17: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:943:21: warning[possibly-missing-attribute] Member `irecv` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:951:17: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:952:21: warning[possibly-missing-attribute] Member `isend` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:962:17: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:963:21: warning[possibly-missing-attribute] Member `isend` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:971:17: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:972:21: warning[possibly-missing-attribute] Member `irecv` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:1021:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/pipelining/stage.py:1022:25: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:1295:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/pipelining/stage.py:1296:21: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:1349:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/pipelining/stage.py:1352:25: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:1441:13: warning[possibly-missing-attribute] Member `recv_object_list` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:1443:21: warning[possibly-missing-attribute] Member `get_global_rank` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:1444:35: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:1458:37: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/pipelining/stage.py:1507:13: warning[possibly-missing-attribute] Member `send_object_list` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:1509:21: warning[possibly-missing-attribute] Member `get_global_rank` may be missing on module `torch.distributed` +torch/distributed/pipelining/stage.py:1510:35: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/distributed/remote_device.py:25:50: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/remote_device.py:32:48: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/remote_device.py:34:38: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/remote_device.py:59:24: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/remote_device.py:79:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/remote_device.py:95:25: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rendezvous.py:16:31: warning[possibly-missing-import] Member `FileStore` of module `torch.distributed` may be missing +torch/distributed/rendezvous.py:16:42: warning[possibly-missing-import] Member `Store` of module `torch.distributed` may be missing +torch/distributed/rendezvous.py:16:49: warning[possibly-missing-import] Member `TCPStore` of module `torch.distributed` may be missing +torch/distributed/rpc/__init__.py:28:27: error[unresolved-attribute] Module `torch._C` has no member `_rpc_init` +torch/distributed/rpc/__init__.py:34:9: error[unresolved-attribute] Module `torch._C` has no member `_distributed_rpc` +torch/distributed/rpc/__init__.py:127:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/rpc/__init__.py:180:21: warning[possibly-missing-attribute] Member `_create_store_from_options` may be missing on module `torch.distributed` +torch/distributed/rpc/__init__.py:186:35: warning[possibly-missing-attribute] Member `rendezvous` may be missing on module `torch.distributed` +torch/distributed/rpc/__init__.py:196:21: warning[possibly-missing-attribute] Member `PrefixStore` may be missing on module `torch.distributed` +torch/distributed/rpc/__init__.py:205:9: warning[possibly-missing-attribute] Member `_init` may be missing on module `torch.distributed.autograd` +torch/distributed/rpc/__init__.py:214:20: warning[possibly-missing-attribute] Member `Store` may be missing on module `torch.distributed` +torch/distributed/rpc/__init__.py:256:21: warning[possibly-missing-attribute] Member `_get_debug_info` may be missing on module `torch.distributed.autograd` +torch/distributed/rpc/_testing/__init__.py:8:27: error[unresolved-attribute] Module `torch._C` has no member `_faulty_agent_init` +torch/distributed/rpc/_testing/faulty_agent_backend_registry.py:17:19: warning[possibly-missing-import] Member `FaultyTensorPipeRpcBackendOptions` of module `torch.distributed.rpc._testing` may be missing +torch/distributed/rpc/_testing/faulty_agent_backend_registry.py:32:39: warning[possibly-missing-import] Member `api` of module `torch.distributed.rpc` may be missing +torch/distributed/rpc/_testing/faulty_agent_backend_registry.py:34:19: warning[possibly-missing-import] Member `FaultyTensorPipeAgent` of module `torch.distributed.rpc._testing` may be missing +torch/distributed/rpc/_testing/faulty_agent_backend_registry.py:34:42: warning[possibly-missing-import] Member `FaultyTensorPipeRpcBackendOptions` of module `torch.distributed.rpc._testing` may be missing +torch/distributed/rpc/_testing/faulty_agent_backend_registry.py:36:30: warning[possibly-missing-attribute] Member `Store` may be missing on module `torch.distributed` +torch/distributed/rpc/_testing/faulty_agent_backend_registry.py:58:1: warning[possibly-missing-attribute] Member `backend_registry` may be missing on module `torch.distributed.rpc` +torch/distributed/rpc/_utils.py:41:19: warning[possibly-missing-import] Member `api` of module `torch.distributed.rpc` may be missing +torch/distributed/rpc/_utils.py:41:24: warning[possibly-missing-import] Member `TensorPipeAgent` of module `torch.distributed.rpc` may be missing +torch/distributed/rpc/api.py:649:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/rpc/api.py:650:22: error[unresolved-attribute] Module `torch.jit` has no member `_builtins` +torch/distributed/rpc/api.py:676:17: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/distributed/rpc/api.py:705:22: error[unresolved-attribute] Module `torch.jit` has no member `_builtins` +torch/distributed/rpc/api.py:733:17: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/distributed/rpc/api.py:827:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/rpc/api.py:921:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/rpc/api.py:931:26: error[unresolved-attribute] Module `torch._C` has no member `_profiler` +torch/distributed/rpc/api.py:948:17: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/distributed/rpc/backend_registry.py:11:15: warning[possibly-missing-import] Member `api` of module `torch.distributed.rpc` may be missing +torch/distributed/rpc/backend_registry.py:123:13: warning[possibly-missing-attribute] Member `ProcessGroupGloo` may be missing on module `torch.distributed` +torch/distributed/rpc/backend_registry.py:144:19: warning[possibly-missing-import] Member `TensorPipeRpcBackendOptions` of module `torch.distributed.rpc` may be missing +torch/distributed/rpc/backend_registry.py:168:40: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/backend_registry.py:168:54: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/backend_registry.py:168:75: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/backend_registry.py:170:5: warning[possibly-missing-attribute] Member `all_gather_object` may be missing on module `torch.distributed` +torch/distributed/rpc/backend_registry.py:255:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/backend_registry.py:260:29: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/backend_registry.py:267:41: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/backend_registry.py:267:55: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/backend_registry.py:277:19: warning[possibly-missing-import] Member `TensorPipeAgent` of module `torch.distributed.rpc` may be missing +torch/distributed/rpc/backend_registry.py:288:19: warning[possibly-missing-import] Member `TensorPipeAgent` of module `torch.distributed.rpc` may be missing +torch/distributed/rpc/backend_registry.py:342:19: warning[possibly-missing-import] Member `TensorPipeAgent` of module `torch.distributed.rpc` may be missing +torch/distributed/rpc/backend_registry.py:342:36: warning[possibly-missing-import] Member `TensorPipeRpcBackendOptions` of module `torch.distributed.rpc` may be missing +torch/distributed/rpc/backend_registry.py:344:30: warning[possibly-missing-attribute] Member `Store` may be missing on module `torch.distributed` +torch/distributed/rpc/internal.py:68:16: error[unresolved-attribute] Module `torch.distributed` has no member `rpc` +torch/distributed/rpc/options.py:6:15: warning[possibly-missing-import] Member `_is_tensorpipe_available` of module `torch.distributed.rpc` may be missing +torch/distributed/rpc/options.py:9:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/options.py:14:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/options.py:15:14: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/options.py:26:11: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/options.py:26:25: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/options.py:27:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/options.py:27:41: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/options.py:28:23: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/options.py:28:37: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/options.py:30:16: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/options.py:30:33: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/options.py:41:56: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/rpc/options.py:52:35: warning[unsupported-base] Unsupported class base with type ` | ` +torch/distributed/rpc/rref_proxy.py:7:15: warning[possibly-missing-import] Member `functions` of module `torch.distributed.rpc` may be missing +torch/distributed/rpc/rref_proxy.py:7:26: warning[possibly-missing-import] Member `rpc_async` of module `torch.distributed.rpc` may be missing +torch/distributed/rpc/rref_proxy.py:27:24: error[unresolved-attribute] Module `torch._C` has no member `ScriptModule` +torch/distributed/rpc/server_process_global_profiler.py:9:44: warning[deprecated] The class `profile` is deprecated: `torch.autograd.profiler_legacy.profile` is deprecated and will be removed in a future release. Please use `torch.profiler` instead. +torch/distributed/rpc/server_process_global_profiler.py:12:5: warning[possibly-missing-import] Member `_disable_server_process_global_profiler` of module `torch.distributed.rpc` may be missing +torch/distributed/rpc/server_process_global_profiler.py:13:5: warning[possibly-missing-import] Member `_enable_server_process_global_profiler` of module `torch.distributed.rpc` may be missing +torch/distributed/rpc/server_process_global_profiler.py:20:38: warning[deprecated] The class `profile` is deprecated: `torch.autograd.profiler_legacy.profile` is deprecated and will be removed in a future release. Please use `torch.profiler` instead. +torch/distributed/rpc/server_process_global_profiler.py:164:17: error[unresolved-attribute] Module `torch.autograd` has no member `profiler_legacy` +torch/distributed/rpc/server_process_global_profiler.py:180:32: error[unresolved-attribute] Module `torch.autograd` has no member `profiler_util` +torch/distributed/run.py:754:32: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/distributed/tensor/__init__.py:5:43: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/__init__.py:5:55: warning[possibly-missing-import] Member `init_device_mesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/_api.py:16:43: warning[possibly-missing-import] Member `_mesh_resources` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/_api.py:16:60: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/_api.py:138:25: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_api.py:153:43: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_api.py:363:25: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_api.py:475:16: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/distributed/tensor/_api.py:490:33: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/tensor/_api.py:491:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/tensor/_api.py:736:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/tensor/_api.py:928:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/tensor/_api.py:1044:11: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_api.py:1061:32: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/tensor/_api.py:1062:20: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/distributed/tensor/_api.py:1070:19: error[unresolved-attribute] Module `torch` has no member `full` +torch/distributed/tensor/_api.py:1073:21: error[unresolved-attribute] Module `torch` has no member `rand` +torch/distributed/tensor/_api.py:1073:46: error[unresolved-attribute] Module `torch` has no member `randn` +torch/distributed/tensor/_api.py:1075:37: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/distributed/tensor/_api.py:1111:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/tensor/_api.py:1112:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/distributed/tensor/_api.py:1112:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/tensor/_api.py:1142:9: error[unresolved-attribute] Module `torch` has no member `ones` +torch/distributed/tensor/_api.py:1154:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/tensor/_api.py:1155:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/distributed/tensor/_api.py:1155:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/tensor/_api.py:1185:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/tensor/_api.py:1199:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/tensor/_api.py:1200:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/distributed/tensor/_api.py:1200:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/tensor/_api.py:1231:9: error[unresolved-attribute] Module `torch` has no member `full` +torch/distributed/tensor/_api.py:1245:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/tensor/_api.py:1246:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/distributed/tensor/_api.py:1246:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/tensor/_api.py:1276:9: error[unresolved-attribute] Module `torch` has no member `rand` +torch/distributed/tensor/_api.py:1289:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/tensor/_api.py:1290:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/distributed/tensor/_api.py:1290:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/tensor/_api.py:1320:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/distributed/tensor/_api.py:1333:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/tensor/_api.py:1334:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/distributed/tensor/_api.py:1334:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/distributed/tensor/_api.py:1361:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/tensor/_collective_utils.py:17:43: warning[possibly-missing-import] Member `_mesh_resources` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/_collective_utils.py:17:60: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/_collective_utils.py:35:21: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/tensor/_collective_utils.py:40:9: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/tensor/_collective_utils.py:57:15: error[unresolved-attribute] Module `torch` has no member `chunk` +torch/distributed/tensor/_collective_utils.py:219:46: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/tensor/_collective_utils.py:220:5: warning[possibly-missing-attribute] Member `all_gather_object` may be missing on module `torch.distributed` +torch/distributed/tensor/_dispatch.py:13:43: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/_dispatch.py:163:16: error[unresolved-attribute] Module `torch._C` has no member `_get_dtensor_allow_implicit_replication` +torch/distributed/tensor/_dispatch.py:167:16: error[unresolved-attribute] Module `torch._C` has no member `_set_dtensor_allow_implicit_replication` +torch/distributed/tensor/_dispatch.py:181:16: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/distributed/tensor/_dispatch.py:182:33: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/distributed/tensor/_dispatch.py:224:21: error[invalid-argument-type] Argument to function `tree_unflatten` is incorrect: Expected `PyTreeSpec`, found `(PyTreeSpec & ~AlwaysFalsy) | (TreeSpec & ~AlwaysFalsy)` +torch/distributed/tensor/_dispatch.py:224:21: error[invalid-argument-type] Argument to function `tree_unflatten` is incorrect: Expected `TreeSpec`, found `(PyTreeSpec & ~AlwaysFalsy) | (TreeSpec & ~AlwaysFalsy)` +torch/distributed/tensor/_dispatch.py:248:43: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/distributed/tensor/_dispatch.py:287:36: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/tensor/_dispatch.py:290:36: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/tensor/_dispatch.py:332:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/tensor/_dispatch.py:336:17: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/distributed/tensor/_dispatch.py:336:39: warning[possibly-missing-attribute] Member `ReduceOp` may be missing on module `torch.distributed` +torch/distributed/tensor/_dispatch.py:431:25: error[invalid-argument-type] Argument to bound method `is_redistribute_allowed` is incorrect: Expected `DTensorSpec`, found `object` +torch/distributed/tensor/_dispatch.py:441:29: error[invalid-argument-type] Argument to function `redistribute_local_tensor` is incorrect: Expected `DTensorSpec`, found `object` +torch/distributed/tensor/_dispatch.py:540:56: error[invalid-argument-type] Argument to function `tree_unflatten` is incorrect: Expected `PyTreeSpec`, found `(PyTreeSpec & ~AlwaysFalsy) | (TreeSpec & ~AlwaysFalsy)` +torch/distributed/tensor/_dispatch.py:540:56: error[invalid-argument-type] Argument to function `tree_unflatten` is incorrect: Expected `TreeSpec`, found `(PyTreeSpec & ~AlwaysFalsy) | (TreeSpec & ~AlwaysFalsy)` +torch/distributed/tensor/_dtensor_spec.py:8:43: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/_dtensor_spec.py:62:12: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_dtensor_spec.py:64:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/tensor/_dtensor_spec.py:510:24: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_op_schema.py:34:5: error[unresolved-import] Module `torch._C` has no member `_DTensor_OpSchema_post_init` +torch/distributed/tensor/_op_schema.py:35:5: error[unresolved-import] Module `torch._C` has no member `_DTensor_OpSchema_recompute_comparison_key` +torch/distributed/tensor/_op_schema.py:38:43: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/_op_schema.py:75:12: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/distributed/tensor/_op_schema.py:412:35: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/distributed/tensor/_op_schema.py:419:35: error[unresolved-attribute] Module `torch` has no member `ListType` +torch/distributed/tensor/_op_schema.py:426:49: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/distributed/tensor/_ops/_common_rules.py:212:9: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_ops/_conv_ops.py:42:14: error[unsupported-operator] Operator `*` is unsupported between objects of type `Literal[2]` and `object` +torch/distributed/tensor/_ops/_conv_ops.py:54:9: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_ops/_conv_ops.py:97:13: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_ops/_einsum_strategy.py:4:43: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/_ops/_mask_buffer.py:20:20: error[unresolved-attribute] Module `torch` has no member `equal` +torch/distributed/tensor/_ops/_math_ops.py:10:43: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/_ops/_math_ops.py:912:57: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_ops/_math_ops.py:1058:57: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_ops/_math_ops.py:1108:58: error[non-subscriptable] Cannot subscript object of type `object` with no `__getitem__` method +torch/distributed/tensor/_ops/_math_ops.py:1125:29: error[unresolved-attribute] Object of type `~None` has no attribute `strategies` +torch/distributed/tensor/_ops/_math_ops.py:1127:53: error[unresolved-attribute] Object of type `~None` has no attribute `strategies` +torch/distributed/tensor/_ops/_math_ops.py:1164:57: error[non-subscriptable] Cannot subscript object of type `object` with no `__getitem__` method +torch/distributed/tensor/_ops/_math_ops.py:1170:16: error[non-subscriptable] Cannot subscript object of type `object` with no `__getitem__` method +torch/distributed/tensor/_ops/_math_ops.py:1194:59: error[non-subscriptable] Cannot subscript object of type `object` with no `__getitem__` method +torch/distributed/tensor/_ops/_math_ops.py:1196:20: error[non-subscriptable] Cannot subscript object of type `object` with no `__getitem__` method +torch/distributed/tensor/_ops/_matrix_ops.py:8:43: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/_ops/_matrix_ops.py:114:20: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_ops/_matrix_ops.py:1095:31: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_ops/_view_ops.py:482:5: error[unresolved-attribute] Module `torch` has no member `broadcast_to` +torch/distributed/tensor/_ops/_view_ops.py:484:5: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/distributed/tensor/_ops/_view_ops.py:485:5: error[unresolved-attribute] Module `torch` has no member `movedim` +torch/distributed/tensor/_ops/_view_ops.py:488:5: error[unresolved-attribute] Module `torch` has no member `permute` +torch/distributed/tensor/_ops/_view_ops.py:491:5: error[unresolved-attribute] Module `torch` has no member `ravel` +torch/distributed/tensor/_ops/_view_ops.py:493:5: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/distributed/tensor/_ops/_view_ops.py:494:5: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/distributed/tensor/_ops/_view_ops.py:495:5: error[unresolved-attribute] Module `torch` has no member `tile` +torch/distributed/tensor/_ops/_view_ops.py:496:5: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/distributed/tensor/_ops/_view_ops.py:497:5: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/distributed/tensor/_ops/_view_ops.py:499:5: error[unresolved-attribute] Module `torch` has no member `view_as_complex` +torch/distributed/tensor/_ops/_view_ops.py:500:5: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/tensor/_ops/_view_ops.py:756:48: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/distributed/tensor/_ops/_view_ops.py:758:24: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/distributed/tensor/_ops/_view_ops.py:761:23: error[unresolved-attribute] Module `torch` has no member `squeeze` +torch/distributed/tensor/_ops/_view_ops.py:770:27: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/distributed/tensor/_ops/_view_ops.py:779:29: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/distributed/tensor/_ops/_view_ops.py:785:27: error[unresolved-attribute] Module `torch` has no member `permute` +torch/distributed/tensor/_ops/_view_ops.py:791:25: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/distributed/tensor/_ops/_view_ops.py:793:56: error[unresolved-attribute] Module `torch` has no member `view_as_complex` +torch/distributed/tensor/_ops/_view_ops.py:794:53: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/distributed/tensor/_ops/utils.py:50:17: error[invalid-argument-type] Argument to bound method `register_sharding_prop_rule` is incorrect: Expected `OpOverload[Unknown, Any]`, found `object` +torch/distributed/tensor/_ops/utils.py:224:19: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_ops/utils.py:224:44: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_ops/utils.py:239:12: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_random.py:9:43: warning[possibly-missing-import] Member `_get_device_handle` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/_random.py:9:63: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/_random.py:127:47: error[unresolved-attribute] Module `torch` has no member `int64` +torch/distributed/tensor/_random.py:131:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/tensor/_random.py:131:54: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/distributed/tensor/_random.py:132:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/tensor/_random.py:138:47: error[unresolved-attribute] Module `torch` has no member `int64` +torch/distributed/tensor/_random.py:142:23: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/tensor/_random.py:142:50: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/distributed/tensor/_random.py:143:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/distributed/tensor/_random.py:157:32: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/tensor/_random.py:177:54: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/distributed/tensor/_random.py:211:13: warning[possibly-missing-attribute] Member `broadcast` may be missing on module `torch.distributed` +torch/distributed/tensor/_random.py:243:54: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/distributed/tensor/_random.py:448:49: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/tensor/_random.py:453:12: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/tensor/_redistribute.py:460:36: error[invalid-argument-type] Argument to function `heappush` is incorrect: Expected `list[tuple[Unknown, Literal[1], DistState, Unknown]]`, found `list[tuple[int, int, DistState, list[DistState]]] & ~AlwaysFalsy` +torch/distributed/tensor/_redistribute.py:849:33: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/tensor/_redistribute.py:850:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/tensor/_sharding_prop.py:365:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/tensor/_shards_wrapper.py:50:17: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_shards_wrapper.py:55:22: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_shards_wrapper.py:58:33: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_shards_wrapper.py:58:59: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_shards_wrapper.py:76:25: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_shards_wrapper.py:79:25: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_shards_wrapper.py:87:13: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_shards_wrapper.py:124:22: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/tensor/_shards_wrapper.py:208:63: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/distributed/tensor/_shards_wrapper.py:222:14: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/tensor/_shards_wrapper.py:229:69: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/tensor/_shards_wrapper.py:252:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_shards_wrapper.py:260:37: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_shards_wrapper.py:339:20: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_shards_wrapper.py:340:20: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/tensor/_tp_conv.py:47:23: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/tensor/_tp_conv.py:48:22: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/tensor/_tp_conv.py:50:21: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:50:32: warning[possibly-missing-attribute] Member `isend` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:51:20: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:51:31: warning[possibly-missing-attribute] Member `isend` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:52:21: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:52:32: warning[possibly-missing-attribute] Member `irecv` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:53:20: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:53:31: warning[possibly-missing-attribute] Member `irecv` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:55:12: warning[possibly-missing-attribute] Member `batch_isend_irecv` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:62:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/tensor/_tp_conv.py:64:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/tensor/_tp_conv.py:66:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/tensor/_tp_conv.py:75:23: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/tensor/_tp_conv.py:76:22: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/tensor/_tp_conv.py:78:21: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:78:32: warning[possibly-missing-attribute] Member `isend` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:79:20: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:79:31: warning[possibly-missing-attribute] Member `isend` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:80:21: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:80:32: warning[possibly-missing-attribute] Member `irecv` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:81:20: warning[possibly-missing-attribute] Member `P2POp` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:81:31: warning[possibly-missing-attribute] Member `irecv` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:83:12: warning[possibly-missing-attribute] Member `batch_isend_irecv` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:91:41: error[unresolved-attribute] Module `torch` has no member `add` +torch/distributed/tensor/_tp_conv.py:96:40: error[unresolved-attribute] Module `torch` has no member `add` +torch/distributed/tensor/_tp_conv.py:101:41: error[unresolved-attribute] Module `torch` has no member `add` +torch/distributed/tensor/_tp_conv.py:104:40: error[unresolved-attribute] Module `torch` has no member `add` +torch/distributed/tensor/_tp_conv.py:118:12: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:119:12: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:172:12: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:173:12: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/tensor/_tp_conv.py:203:34: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[0], @Todo]` +torch/distributed/tensor/_tp_conv.py:207:34: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[@Todo, Literal[0]]` +torch/distributed/tensor/_tp_conv.py:211:34: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[@Todo, @Todo]` +torch/distributed/tensor/_tp_conv.py:268:12: error[invalid-assignment] Object of type `list[object]` is not assignable to `tuple[object, ...]` +torch/distributed/tensor/_tp_conv.py:271:5: error[invalid-assignment] Cannot assign to a subscript on an object of type `tuple[object, ...]` +torch/distributed/tensor/_utils.py:10:43: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/_utils.py:261:30: error[unresolved-attribute] Module `torch._C` has no member `_DTensor_compute_global_tensor_info` +torch/distributed/tensor/_utils.py:329:12: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_utils.py:330:6: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_utils.py:365:23: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/tensor/_utils.py:367:13: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/tensor/_utils.py:375:20: error[unresolved-attribute] Module `torch` has no member `equal` +torch/distributed/tensor/_utils.py:383:16: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_utils.py:440:25: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/_utils.py:449:12: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/debug/__init__.py:29:12: error[unresolved-attribute] Module `torch._C` has no member `_get_DTensor_sharding_propagator_cache_stats` +torch/distributed/tensor/debug/__init__.py:47:5: error[unresolved-attribute] Module `torch._C` has no member `_clear_DTensor_sharding_propagator_cache` +torch/distributed/tensor/debug/_visualize_sharding.py:74:12: error[unresolved-import] Cannot resolve imported module `matplotlib` +torch/distributed/tensor/device_mesh.py:2:5: warning[possibly-missing-import] Member `_get_device_handle` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/device_mesh.py:3:5: warning[possibly-missing-import] Member `_mesh_resources` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/device_mesh.py:4:5: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/device_mesh.py:5:5: warning[possibly-missing-import] Member `init_device_mesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/examples/comm_mode_features_example.py:72:13: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributed/tensor/examples/comm_mode_features_example.py:76:15: error[unresolved-attribute] Module `torch` has no member `rand` +torch/distributed/tensor/examples/comm_mode_features_example.py:90:13: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributed/tensor/examples/comm_mode_features_example.py:98:15: error[unresolved-attribute] Module `torch` has no member `randint` +torch/distributed/tensor/examples/comm_mode_features_example.py:683:17: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `use_ac` on type `Self@__init__` with custom `__setattr__` method. +torch/distributed/tensor/examples/comm_mode_features_example.py:704:13: error[unresolved-attribute] Module `torch` has no member `randn` +torch/distributed/tensor/examples/convnext_example.py:31:64: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/tensor/examples/convnext_example.py:33:36: error[unresolved-attribute] Module `torch` has no member `ones` +torch/distributed/tensor/examples/convnext_example.py:34:34: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributed/tensor/examples/convnext_example.py:35:9: error[unresolved-attribute] Cannot assign object of type `Unknown | float` to attribute `eps` on type `Self@__init__` with custom `__setattr__` method. +torch/distributed/tensor/examples/convnext_example.py:37:32: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/tensor/examples/convnext_example.py:39:9: error[unresolved-attribute] Cannot assign object of type `tuple[Unknown]` to attribute `normalized_shape` on type `Self@__init__` with custom `__setattr__` method. +torch/distributed/tensor/examples/convnext_example.py:44:23: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/distributed/tensor/examples/convnext_example.py:55:58: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/tensor/examples/convnext_example.py:63:9: error[unresolved-attribute] Cannot assign object of type `Parameter | None` to attribute `gamma` on type `Self@__init__` with custom `__setattr__` method. +torch/distributed/tensor/examples/convnext_example.py:65:42: error[unresolved-attribute] Module `torch` has no member `ones` +torch/distributed/tensor/examples/convnext_example.py:90:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[False]` to attribute `norm_first` on type `Self@__init__` with custom `__setattr__` method. +torch/distributed/tensor/examples/convnext_example.py:92:65: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/tensor/examples/convnext_example.py:101:48: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/tensor/examples/convnext_example.py:140:39: error[unresolved-attribute] Module `torch` has no member `linspace` +torch/distributed/tensor/examples/convnext_example.py:204:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/distributed/tensor/examples/convnext_example.py:206:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/tensor/examples/convnext_example.py:206:44: error[unresolved-attribute] Module `torch` has no member `long` +torch/distributed/tensor/examples/convnext_example.py:258:5: warning[possibly-missing-attribute] Member `destroy_process_group` may be missing on module `torch.distributed` +torch/distributed/tensor/examples/flex_attention_cp.py:13:43: warning[possibly-missing-import] Member `init_device_mesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/examples/flex_attention_cp.py:63:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/tensor/examples/flex_attention_cp.py:70:9: error[unresolved-attribute] Module `torch` has no member `rand` +torch/distributed/tensor/examples/flex_attention_cp.py:149:16: error[unresolved-attribute] Module `torch` has no member `randn` +torch/distributed/tensor/examples/flex_attention_cp.py:190:9: warning[possibly-missing-attribute] Member `barrier` may be missing on module `torch.distributed` +torch/distributed/tensor/examples/flex_attention_cp.py:191:9: warning[possibly-missing-attribute] Member `destroy_process_group` may be missing on module `torch.distributed` +torch/distributed/tensor/examples/torchrec_sharding_example.py:52:62: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/examples/torchrec_sharding_example.py:67:25: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/examples/torchrec_sharding_example.py:95:30: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/distributed/tensor/examples/torchrec_sharding_example.py:98:56: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/distributed/tensor/examples/torchrec_sharding_example.py:113:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/examples/torchrec_sharding_example.py:117:37: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/examples/torchrec_sharding_example.py:131:14: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/tensor/examples/torchrec_sharding_example.py:138:25: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/examples/torchrec_sharding_example.py:142:26: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/examples/torchrec_sharding_example.py:144:20: error[unresolved-attribute] Module `torch` has no member `randn` +torch/distributed/tensor/examples/torchrec_sharding_example.py:187:12: error[unresolved-attribute] Module `torch` has no member `equal` +torch/distributed/tensor/examples/torchrec_sharding_example.py:206:14: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/tensor/examples/torchrec_sharding_example.py:212:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/examples/torchrec_sharding_example.py:215:9: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/examples/torchrec_sharding_example.py:217:14: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/examples/torchrec_sharding_example.py:220:26: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/examples/torchrec_sharding_example.py:222:20: error[unresolved-attribute] Module `torch` has no member `randn` +torch/distributed/tensor/examples/torchrec_sharding_example.py:262:12: error[unresolved-attribute] Module `torch` has no member `equal` +torch/distributed/tensor/examples/torchrec_sharding_example.py:275:14: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/tensor/examples/torchrec_sharding_example.py:283:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/examples/torchrec_sharding_example.py:296:13: error[unresolved-attribute] Module `torch` has no member `randn` +torch/distributed/tensor/examples/torchrec_sharding_example.py:298:18: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/tensor/examples/torchrec_sharding_example.py:302:30: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/examples/torchrec_sharding_example.py:326:18: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/tensor/examples/torchrec_sharding_example.py:327:35: error[unresolved-attribute] Module `torch` has no member `int64` +torch/distributed/tensor/examples/torchrec_sharding_example.py:363:20: error[unresolved-attribute] Module `torch` has no member `equal` +torch/distributed/tensor/examples/torchrec_sharding_example.py:367:61: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/examples/visualize_sharding_example.py:37:5: warning[possibly-missing-attribute] Member `init_device_mesh` may be missing on module `torch.distributed` +torch/distributed/tensor/examples/visualize_sharding_example.py:38:5: error[unresolved-attribute] Module `torch` has no member `ones` +torch/distributed/tensor/examples/visualize_sharding_example.py:49:5: warning[possibly-missing-attribute] Member `init_device_mesh` may be missing on module `torch.distributed` +torch/distributed/tensor/examples/visualize_sharding_example.py:50:5: error[unresolved-attribute] Module `torch` has no member `ones` +torch/distributed/tensor/examples/visualize_sharding_example.py:65:5: warning[possibly-missing-attribute] Member `init_device_mesh` may be missing on module `torch.distributed` +torch/distributed/tensor/examples/visualize_sharding_example.py:66:5: error[unresolved-attribute] Module `torch` has no member `ones` +torch/distributed/tensor/examples/visualize_sharding_example.py:85:5: warning[possibly-missing-attribute] Member `init_device_mesh` may be missing on module `torch.distributed` +torch/distributed/tensor/examples/visualize_sharding_example.py:86:5: error[unresolved-attribute] Module `torch` has no member `ones` +torch/distributed/tensor/examples/visualize_sharding_example.py:131:1: warning[possibly-missing-attribute] Member `destroy_process_group` may be missing on module `torch.distributed` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:18:43: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/experimental/_context_parallel/_attention.py:135:12: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:147:27: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:148:27: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:210:26: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:211:26: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:238:28: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:250:28: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:257:16: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:272:28: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:287:16: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:292:46: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:296:9: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:310:12: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:400:30: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:403:12: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:404:12: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:431:23: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:482:12: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:498:12: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:499:12: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:505:19: error[unresolved-attribute] Module `torch` has no member `float32` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:506:18: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:507:16: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:508:18: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:526:23: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:577:27: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:578:25: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:579:27: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:618:24: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:977:24: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__name__` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:978:40: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__name__` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:1096:30: error[unresolved-attribute] Module `torch` has no member `index_select` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:1106:37: error[unresolved-attribute] Module `torch` has no member `index_select` +torch/distributed/tensor/experimental/_context_parallel/_attention.py:1625:39: error[unresolved-attribute] Module `torch` has no member `index_select` +torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py:31:13: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py:32:13: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py:64:18: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/tensor/experimental/_context_parallel/_cp_custom_ops.py:67:18: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:80:72: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:169:30: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:170:32: error[unresolved-attribute] Module `torch` has no member `int` +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:173:34: error[unresolved-attribute] Module `torch` has no member `argsort` +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:183:23: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:255:16: error[unresolved-attribute] Module `torch` has no member `stack` +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:282:21: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:289:21: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:298:26: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:300:30: error[unresolved-attribute] Module `torch` has no member `argsort` +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:358:40: error[unresolved-attribute] Module `torch` has no member `sort` +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:361:46: error[unresolved-attribute] Module `torch` has no member `flip` +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:364:26: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:365:13: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:375:29: error[unresolved-attribute] Module `torch` has no member `sort` +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:468:19: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:474:34: error[unresolved-attribute] Module `torch` has no member `argsort` +torch/distributed/tensor/experimental/_context_parallel/_load_balancer.py:480:53: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/tensor/experimental/_func_map.py:242:57: error[invalid-argument-type] Argument to function `tree_unflatten` is incorrect: Expected `PyTreeSpec`, found `PyTreeSpec | TreeSpec` +torch/distributed/tensor/experimental/_func_map.py:242:57: error[invalid-argument-type] Argument to function `tree_unflatten` is incorrect: Expected `TreeSpec`, found `PyTreeSpec | TreeSpec` +torch/distributed/tensor/experimental/_func_map.py:276:53: error[invalid-argument-type] Argument to function `tree_unflatten` is incorrect: Expected `PyTreeSpec`, found `PyTreeSpec | TreeSpec` +torch/distributed/tensor/experimental/_func_map.py:276:53: error[invalid-argument-type] Argument to function `tree_unflatten` is incorrect: Expected `TreeSpec`, found `PyTreeSpec | TreeSpec` +torch/distributed/tensor/experimental/_register_sharding.py:116:41: error[unresolved-attribute] Module `torch` has no member `IntType` +torch/distributed/tensor/experimental/_register_sharding.py:117:42: error[unresolved-attribute] Module `torch` has no member `OptionalType` +torch/distributed/tensor/experimental/_register_sharding.py:118:63: error[unresolved-attribute] Module `torch` has no member `IntType` +torch/distributed/tensor/experimental/_register_sharding.py:130:17: error[invalid-argument-type] Argument to bound method `register_op_strategy` is incorrect: Expected `OpOverload[Unknown, Any]`, found `object` +torch/distributed/tensor/experimental/_tp_transform.py:87:45: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributed/tensor/experimental/_tp_transform.py:241:72: error[invalid-argument-type] Argument to function `_get_output_spec_from_output_sharding` is incorrect: Expected `OutputSharding`, found `object` +torch/distributed/tensor/experimental/_tp_transform.py:243:33: error[unresolved-attribute] Object of type `object` has no attribute `redistribute_schema` +torch/distributed/tensor/experimental/_tp_transform.py:245:24: error[unresolved-attribute] Object of type `object` has no attribute `redistribute_schema` +torch/distributed/tensor/parallel/api.py:8:43: warning[possibly-missing-import] Member `_mesh_resources` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/parallel/api.py:8:60: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/parallel/api.py:70:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/distributed/tensor/parallel/fsdp.py:31:40: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/parallel/fsdp.py:31:52: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/parallel/fsdp.py:44:13: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/parallel/fsdp.py:47:54: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/parallel/fsdp.py:47:66: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/parallel/fsdp.py:49:13: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/parallel/fsdp.py:52:46: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/parallel/fsdp.py:52:58: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/parallel/fsdp.py:78:15: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/tensor/parallel/fsdp.py:152:9: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/tensor/parallel/fsdp.py:197:62: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/distributed/tensor/parallel/fsdp.py:367:13: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/tensor/parallel/fsdp.py:368:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/tensor/parallel/loss.py:11:43: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/parallel/loss.py:130:27: error[unresolved-attribute] Module `torch` has no member `half` +torch/distributed/tensor/parallel/loss.py:134:53: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributed/tensor/parallel/loss.py:138:17: error[unresolved-attribute] Module `torch` has no member `amax` +torch/distributed/tensor/parallel/loss.py:143:22: error[unresolved-attribute] Module `torch` has no member `sum` +torch/distributed/tensor/parallel/loss.py:143:32: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributed/tensor/parallel/loss.py:147:25: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributed/tensor/parallel/loss.py:195:24: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/tensor/parallel/loss.py:208:18: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/parallel/loss.py:234:19: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributed/tensor/parallel/loss.py:243:22: error[unresolved-attribute] Module `torch` has no member `gather` +torch/distributed/tensor/parallel/loss.py:248:14: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributed/tensor/parallel/loss.py:259:16: error[unresolved-attribute] Module `torch` has no member `gather` +torch/distributed/tensor/parallel/loss.py:260:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributed/tensor/parallel/loss.py:316:12: error[invalid-assignment] Object of type `list[object]` is not assignable to `tuple[object, ...]` +torch/distributed/tensor/parallel/loss.py:318:5: error[invalid-assignment] Cannot assign to a subscript on an object of type `tuple[object, ...]` +torch/distributed/tensor/parallel/loss.py:318:14: error[invalid-assignment] Cannot assign to a subscript on an object of type `tuple[object, ...]` +torch/distributed/tensor/parallel/loss.py:363:18: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/tensor/parallel/loss.py:373:19: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributed/tensor/parallel/loss.py:374:18: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributed/tensor/parallel/loss.py:384:17: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributed/tensor/parallel/loss.py:412:20: error[unresolved-attribute] Module `torch` has no member `gather` +torch/distributed/tensor/parallel/loss.py:415:19: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributed/tensor/parallel/loss.py:421:26: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributed/tensor/parallel/loss.py:452:12: error[invalid-assignment] Object of type `list[object]` is not assignable to `tuple[object, ...]` +torch/distributed/tensor/parallel/loss.py:454:5: error[invalid-assignment] Cannot assign to a subscript on an object of type `tuple[object, ...]` +torch/distributed/tensor/parallel/loss.py:454:14: error[invalid-assignment] Cannot assign to a subscript on an object of type `tuple[object, ...]` +torch/distributed/tensor/parallel/loss.py:456:5: error[invalid-assignment] Cannot assign to a subscript on an object of type `tuple[object, ...]` +torch/distributed/tensor/placement_types.py:12:43: warning[possibly-missing-import] Member `DeviceMesh` of module `torch.distributed.device_mesh` may be missing +torch/distributed/tensor/placement_types.py:31:13: error[unresolved-attribute] Module `torch._C` has no member `_distributed` +torch/distributed/tensor/placement_types.py:71:28: error[unresolved-attribute] Module `torch` has no member `chunk` +torch/distributed/tensor/placement_types.py:188:18: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/distributed/tensor/placement_types.py:235:22: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/tensor/placement_types.py:491:1: error[inconsistent-mro] Cannot create a consistent method resolution order (MRO) for class `_StridedShard` with bases list `[Unknown, ]` +torch/distributed/tensor/placement_types.py:491:21: error[unresolved-attribute] Module `torch._C` has no member `_distributed` +torch/distributed/tensor/placement_types.py:605:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/tensor/placement_types.py:637:26: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributed/tensor/placement_types.py:674:23: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributed/tensor/placement_types.py:675:27: error[unresolved-attribute] Module `torch` has no member `argsort` +torch/distributed/tensor/placement_types.py:676:28: error[unresolved-attribute] Module `torch` has no member `index_select` +torch/distributed/tensor/placement_types.py:696:26: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributed/tensor/placement_types.py:715:17: error[unresolved-attribute] Module `torch._C` has no member `_distributed` +torch/distributed/tensor/placement_types.py:773:15: error[unresolved-attribute] Module `torch._C` has no member `_distributed` +torch/distributed/tensor/placement_types.py:862:28: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/utils.py:47:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/distributed/utils.py:60:16: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/distributed/utils.py:87:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/utils.py:93:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/utils.py:167:48: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributed/utils.py:176:16: error[unresolved-attribute] Module `torch.distributed` has no member `_functional_collectives` +torch/distributed/utils.py:196:16: error[unresolved-attribute] Module `torch.distributed` has no member `_functional_collectives` +torch/distributed/utils.py:261:20: error[unresolved-attribute] Module `torch` has no member `device` +torch/distributed/utils.py:282:20: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/utils.py:284:23: warning[possibly-missing-attribute] Member `Logger` may be missing on module `torch.distributed` +torch/distributed/utils.py:286:12: warning[possibly-missing-attribute] Member `_verify_params_across_processes` may be missing on module `torch.distributed` +torch/distributed/utils.py:291:20: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/utils.py:319:20: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/distributed/utils.py:326:9: warning[possibly-missing-attribute] Member `_broadcast_coalesced` may be missing on module `torch.distributed` +torch/distributions/bernoulli.py:69:27: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/bernoulli.py:71:27: warning[possibly-missing-attribute] Attribute `size` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/bernoulli.py:76:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/bernoulli.py:78:25: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/bernoulli.py:81:26: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/bernoulli.py:88:16: warning[possibly-missing-attribute] Attribute `new` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/bernoulli.py:92:16: error[invalid-return-type] Return type does not match returned value: expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/bernoulli.py:96:17: error[unsupported-operator] Operator `>=` is not supported for types `lazy_property[Unknown, Unknown]` and `float`, in comparing `Unknown | lazy_property[Unknown, Unknown]` with `float` +torch/distributions/bernoulli.py:102:30: error[unsupported-operator] Operator `-` is unsupported between objects of type `Literal[1]` and `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/bernoulli.py:106:32: error[invalid-argument-type] Argument to function `probs_to_logits` is incorrect: Expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/bernoulli.py:110:32: error[invalid-argument-type] Argument to function `logits_to_probs` is incorrect: Expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/bernoulli.py:113:30: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/bernoulli.py:114:16: warning[possibly-missing-attribute] Attribute `size` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/bernoulli.py:116:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/bernoulli.py:119:20: error[unresolved-attribute] Module `torch` has no member `bernoulli` +torch/distributions/bernoulli.py:119:36: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/bernoulli.py:124:39: error[invalid-argument-type] Argument to function `broadcast_all` is incorrect: Expected `Tensor | int | float`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/bernoulli.py:129:13: error[invalid-argument-type] Argument to function `binary_cross_entropy_with_logits` is incorrect: Expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/bernoulli.py:129:26: error[invalid-argument-type] Argument to function `binary_cross_entropy_with_logits` is incorrect: Expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/bernoulli.py:133:18: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributions/bernoulli.py:133:40: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/bernoulli.py:133:66: warning[possibly-missing-attribute] Attribute `device` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/bernoulli.py:141:17: error[unresolved-attribute] Module `torch` has no member `logit` +torch/distributions/bernoulli.py:145:16: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/bernoulli.py:145:28: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/beta.py:49:45: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributions/beta.py:56:45: error[unresolved-attribute] Module `torch` has no member `stack` +torch/distributions/beta.py:66:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/beta.py:91:23: error[unresolved-attribute] Module `torch` has no member `stack` +torch/distributions/beta.py:101:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributions/beta.py:109:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributions/beta.py:119:16: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/beta.py:119:34: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/beta.py:119:52: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/binomial.py:84:23: warning[possibly-missing-attribute] Attribute `size` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/binomial.py:89:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/binomial.py:92:25: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/binomial.py:95:26: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/binomial.py:102:16: warning[possibly-missing-attribute] Attribute `new` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/binomial.py:119:49: error[unsupported-operator] Operator `-` is unsupported between objects of type `Literal[1]` and `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/binomial.py:123:32: error[invalid-argument-type] Argument to function `probs_to_logits` is incorrect: Expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/binomial.py:127:32: error[invalid-argument-type] Argument to function `logits_to_probs` is incorrect: Expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/binomial.py:130:30: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/binomial.py:131:16: warning[possibly-missing-attribute] Attribute `size` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/binomial.py:133:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/binomial.py:136:20: error[unresolved-attribute] Module `torch` has no member `binomial` +torch/distributions/binomial.py:137:49: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/binomial.py:143:27: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/binomial.py:144:27: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/binomial.py:145:29: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/binomial.py:153:34: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/binomial.py:153:46: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/binomial.py:153:57: error[unresolved-attribute] Module `torch` has no member `abs` +torch/distributions/binomial.py:168:18: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/binomial.py:176:18: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributions/binomial.py:177:36: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/binomial.py:177:62: warning[possibly-missing-attribute] Attribute `device` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/categorical.py:80:28: warning[possibly-missing-attribute] Attribute `size` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/categorical.py:82:13: warning[possibly-missing-attribute] Attribute `size` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/categorical.py:82:40: warning[possibly-missing-attribute] Attribute `ndimension` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/categorical.py:82:74: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/categorical.py:88:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/categorical.py:89:37: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/categorical.py:91:25: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/categorical.py:94:26: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/categorical.py:102:16: warning[possibly-missing-attribute] Attribute `new` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/categorical.py:111:32: error[invalid-argument-type] Argument to function `probs_to_logits` is incorrect: Expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/categorical.py:115:32: error[invalid-argument-type] Argument to function `logits_to_probs` is incorrect: Expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/categorical.py:118:30: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/categorical.py:119:16: warning[possibly-missing-attribute] Attribute `size` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/categorical.py:123:16: error[unresolved-attribute] Module `torch` has no member `full` +torch/distributions/categorical.py:126:19: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/categorical.py:127:20: warning[possibly-missing-attribute] Attribute `device` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/categorical.py:132:16: warning[possibly-missing-attribute] Attribute `argmax` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/categorical.py:136:16: error[unresolved-attribute] Module `torch` has no member `full` +torch/distributions/categorical.py:139:19: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/categorical.py:140:20: warning[possibly-missing-attribute] Attribute `device` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/categorical.py:143:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/categorical.py:144:41: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/categorical.py:145:28: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/categorical.py:146:20: warning[possibly-missing-attribute] Attribute `reshape` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/categorical.py:147:22: error[unresolved-attribute] Module `torch` has no member `multinomial` +torch/distributions/categorical.py:159:20: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/distributions/categorical.py:159:32: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/categorical.py:160:18: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/distributions/categorical.py:166:18: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributions/categorical.py:166:49: error[unresolved-attribute] Module `torch` has no member `long` +torch/distributions/categorical.py:166:68: warning[possibly-missing-attribute] Attribute `device` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/cauchy.py:47:27: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/cauchy.py:54:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/cauchy.py:63:16: error[unresolved-attribute] Module `torch` has no member `full` +torch/distributions/cauchy.py:73:16: error[unresolved-attribute] Module `torch` has no member `full` +torch/distributions/cauchy.py:77:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/cauchy.py:94:16: error[unresolved-attribute] Module `torch` has no member `atan` +torch/distributions/cauchy.py:97:16: error[unresolved-attribute] Module `torch` has no member `tan` +torch/distributions/constraints.py:212:9: error[invalid-parameter-default] Default value of type `NotImplementedType` is not assignable to annotated parameter type `bool | None` +torch/distributions/constraints.py:213:9: error[invalid-parameter-default] Default value of type `NotImplementedType` is not assignable to annotated parameter type `int | None` +torch/distributions/constraints.py:227:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool | None`, found `Unknown | bool | None | NotImplementedType` +torch/distributions/constraints.py:227:48: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int | None`, found `Unknown | int | None | NotImplementedType` +torch/distributions/constraints.py:521:16: error[unresolved-attribute] Module `torch` has no member `all` +torch/distributions/constraints.py:582:13: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/distributions/constraints.py:597:16: error[unresolved-attribute] Module `torch` has no member `full` +torch/distributions/constraints.py:600:19: error[unresolved-attribute] Module `torch` has no member `bool` +torch/distributions/constraints.py:614:16: error[unresolved-attribute] Module `torch` has no member `isclose` +torch/distributions/constraints.py:674:16: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributions/constraints.py:704:16: error[unresolved-attribute] Module `torch` has no member `stack` +torch/distributions/continuous_bernoulli.py:85:27: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/continuous_bernoulli.py:87:27: warning[possibly-missing-attribute] Attribute `size` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/continuous_bernoulli.py:94:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/continuous_bernoulli.py:96:25: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/continuous_bernoulli.py:99:26: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/continuous_bernoulli.py:106:16: warning[possibly-missing-attribute] Attribute `new` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/continuous_bernoulli.py:109:16: error[unresolved-attribute] Module `torch` has no member `max` +torch/distributions/continuous_bernoulli.py:110:13: error[unresolved-attribute] Module `torch` has no member `le` +torch/distributions/continuous_bernoulli.py:110:50: error[unresolved-attribute] Module `torch` has no member `gt` +torch/distributions/continuous_bernoulli.py:114:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/continuous_bernoulli.py:117:29: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/distributions/continuous_bernoulli.py:123:32: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/continuous_bernoulli.py:124:13: error[unresolved-attribute] Module `torch` has no member `le` +torch/distributions/continuous_bernoulli.py:124:50: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributions/continuous_bernoulli.py:126:32: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/continuous_bernoulli.py:127:13: error[unresolved-attribute] Module `torch` has no member `ge` +torch/distributions/continuous_bernoulli.py:127:50: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/distributions/continuous_bernoulli.py:129:20: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/continuous_bernoulli.py:130:13: error[unresolved-attribute] Module `torch` has no member `abs` +torch/distributions/continuous_bernoulli.py:130:23: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/continuous_bernoulli.py:130:49: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/continuous_bernoulli.py:131:13: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/continuous_bernoulli.py:132:13: error[unresolved-attribute] Module `torch` has no member `le` +torch/distributions/continuous_bernoulli.py:133:13: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/continuous_bernoulli.py:134:13: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/continuous_bernoulli.py:136:13: error[unresolved-attribute] Module `torch` has no member `pow` +torch/distributions/continuous_bernoulli.py:136:23: error[unsupported-operator] Operator `-` is unsupported between objects of type `Unknown | lazy_property[Unknown, Unknown]` and `float` +torch/distributions/continuous_bernoulli.py:138:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/continuous_bernoulli.py:144:13: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/continuous_bernoulli.py:144:39: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/continuous_bernoulli.py:146:13: error[unsupported-operator] Operator `-` is unsupported between objects of type `Unknown | lazy_property[Unknown, Unknown]` and `float` +torch/distributions/continuous_bernoulli.py:147:51: error[unresolved-attribute] Module `torch` has no member `pow` +torch/distributions/continuous_bernoulli.py:148:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/continuous_bernoulli.py:152:16: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/distributions/continuous_bernoulli.py:157:48: error[unresolved-attribute] Module `torch` has no member `pow` +torch/distributions/continuous_bernoulli.py:159:19: error[unresolved-attribute] Module `torch` has no member `pow` +torch/distributions/continuous_bernoulli.py:159:29: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/continuous_bernoulli.py:159:55: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/continuous_bernoulli.py:160:13: error[unresolved-attribute] Module `torch` has no member `pow` +torch/distributions/continuous_bernoulli.py:160:23: error[unsupported-operator] Operator `-` is unsupported between objects of type `Unknown | lazy_property[Unknown, Unknown]` and `float` +torch/distributions/continuous_bernoulli.py:162:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/continuous_bernoulli.py:166:32: error[invalid-argument-type] Argument to function `probs_to_logits` is incorrect: Expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/continuous_bernoulli.py:170:44: error[invalid-argument-type] Argument to function `logits_to_probs` is incorrect: Expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/continuous_bernoulli.py:173:30: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/continuous_bernoulli.py:174:16: warning[possibly-missing-attribute] Attribute `size` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/continuous_bernoulli.py:176:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/continuous_bernoulli.py:178:13: error[unresolved-attribute] Module `torch` has no member `rand` +torch/distributions/continuous_bernoulli.py:178:37: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/continuous_bernoulli.py:178:62: warning[possibly-missing-attribute] Attribute `device` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/continuous_bernoulli.py:182:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/continuous_bernoulli.py:184:13: error[unresolved-attribute] Module `torch` has no member `rand` +torch/distributions/continuous_bernoulli.py:184:37: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/continuous_bernoulli.py:184:62: warning[possibly-missing-attribute] Attribute `device` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/continuous_bernoulli.py:190:39: error[invalid-argument-type] Argument to function `broadcast_all` is incorrect: Expected `Tensor | int | float`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/continuous_bernoulli.py:201:13: error[unresolved-attribute] Module `torch` has no member `pow` +torch/distributions/continuous_bernoulli.py:201:43: error[unresolved-attribute] Module `torch` has no member `pow` +torch/distributions/continuous_bernoulli.py:205:26: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/continuous_bernoulli.py:206:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/continuous_bernoulli.py:207:13: error[unresolved-attribute] Module `torch` has no member `le` +torch/distributions/continuous_bernoulli.py:208:13: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributions/continuous_bernoulli.py:209:13: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/continuous_bernoulli.py:209:25: error[unresolved-attribute] Module `torch` has no member `ge` +torch/distributions/continuous_bernoulli.py:209:47: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/distributions/continuous_bernoulli.py:214:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/continuous_bernoulli.py:217:17: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/continuous_bernoulli.py:218:19: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/continuous_bernoulli.py:220:16: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/continuous_bernoulli.py:220:39: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/continuous_bernoulli.py:225:22: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/continuous_bernoulli.py:225:34: error[unsupported-operator] Unary operator `-` is unsupported for type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/continuous_bernoulli.py:226:22: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/continuous_bernoulli.py:235:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[Tensor]`, found `tuple[Unknown | lazy_property[Unknown, Unknown]]` +torch/distributions/continuous_bernoulli.py:240:24: error[unresolved-attribute] Module `torch` has no member `max` +torch/distributions/continuous_bernoulli.py:241:13: error[unresolved-attribute] Module `torch` has no member `le` +torch/distributions/continuous_bernoulli.py:241:47: error[unresolved-attribute] Module `torch` has no member `gt` +torch/distributions/continuous_bernoulli.py:243:26: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/continuous_bernoulli.py:244:54: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/distributions/continuous_bernoulli.py:246:20: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/continuous_bernoulli.py:247:13: error[unresolved-attribute] Module `torch` has no member `abs` +torch/distributions/continuous_bernoulli.py:248:13: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/continuous_bernoulli.py:248:23: error[unresolved-attribute] Module `torch` has no member `abs` +torch/distributions/continuous_bernoulli.py:249:28: error[unresolved-attribute] Module `torch` has no member `pow` +torch/distributions/continuous_bernoulli.py:249:53: error[unresolved-attribute] Module `torch` has no member `pow` +torch/distributions/continuous_bernoulli.py:250:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/dirichlet.py:19:12: error[unresolved-attribute] Module `torch` has no member `_dirichlet_grad` +torch/distributions/dirichlet.py:27:13: error[unresolved-attribute] Module `torch` has no member `_sample_dirichlet` +torch/distributions/dirichlet.py:77:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/dirichlet.py:94:13: error[unresolved-attribute] Module `torch` has no member `xlogy` +torch/distributions/dirichlet.py:95:15: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/dirichlet.py:96:15: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/dirichlet.py:126:13: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/dirichlet.py:127:15: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/dirichlet.py:128:26: error[unresolved-attribute] Module `torch` has no member `digamma` +torch/distributions/dirichlet.py:129:45: error[unresolved-attribute] Module `torch` has no member `digamma` +torch/distributions/dirichlet.py:138:37: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/distribution.py:49:22: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/distribution.py:49:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/distribution.py:50:22: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/distribution.py:50:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/distribution.py:77:24: error[unresolved-attribute] Module `torch` has no member `_is_all_true` +torch/distributions/distribution.py:109:30: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/distribution.py:116:30: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/distribution.py:168:44: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/distribution.py:176:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/distribution.py:193:28: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/distribution.py:265:16: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/distribution.py:267:53: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/distribution.py:267:70: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/distribution.py:277:41: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/distribution.py:278:28: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/distribution.py:279:16: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/distribution.py:323:16: error[unresolved-attribute] Module `torch` has no member `_is_all_true` +torch/distributions/exponential.py:42:16: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributions/exponential.py:58:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/exponential.py:63:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/exponential.py:69:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/exponential.py:81:20: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/exponential.py:84:17: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/exponential.py:87:22: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/exponential.py:95:17: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/fishersnedecor.py:48:27: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/fishersnedecor.py:55:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/fishersnedecor.py:66:44: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributions/fishersnedecor.py:78:44: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributions/fishersnedecor.py:87:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/fishersnedecor.py:93:16: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/distributions/fishersnedecor.py:106:44: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/fishersnedecor.py:107:28: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/gamma.py:16:12: error[unresolved-attribute] Module `torch` has no member `_standard_gamma` +torch/distributions/gamma.py:66:27: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/gamma.py:73:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/gamma.py:80:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/gamma.py:86:17: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/distributions/gamma.py:91:17: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/distributions/gamma.py:95:13: error[unresolved-attribute] Module `torch` has no member `xlogy` +torch/distributions/gamma.py:96:15: error[unresolved-attribute] Module `torch` has no member `xlogy` +torch/distributions/gamma.py:98:15: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/gamma.py:104:15: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/gamma.py:105:15: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/gamma.py:106:44: error[unresolved-attribute] Module `torch` has no member `digamma` +torch/distributions/gamma.py:115:16: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/gamma.py:115:48: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/generalized_pareto.py:55:27: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/generalized_pareto.py:62:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/generalized_pareto.py:70:36: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/generalized_pareto.py:72:13: error[unresolved-attribute] Module `torch` has no member `rand` +torch/distributions/generalized_pareto.py:79:19: error[unresolved-attribute] Module `torch` has no member `isclose` +torch/distributions/generalized_pareto.py:79:53: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributions/generalized_pareto.py:80:21: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/generalized_pareto.py:81:22: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/distributions/generalized_pareto.py:83:29: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/distributions/generalized_pareto.py:84:25: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/generalized_pareto.py:84:52: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/generalized_pareto.py:88:29: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/generalized_pareto.py:94:19: error[unresolved-attribute] Module `torch` has no member `isclose` +torch/distributions/generalized_pareto.py:94:53: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributions/generalized_pareto.py:95:21: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/generalized_pareto.py:96:22: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/distributions/generalized_pareto.py:98:26: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/generalized_pareto.py:99:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/generalized_pareto.py:102:16: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/generalized_pareto.py:102:29: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/generalized_pareto.py:105:16: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/generalized_pareto.py:111:19: error[unresolved-attribute] Module `torch` has no member `isclose` +torch/distributions/generalized_pareto.py:111:48: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributions/generalized_pareto.py:112:21: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/generalized_pareto.py:112:42: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/distributions/generalized_pareto.py:113:16: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/generalized_pareto.py:114:51: error[unresolved-attribute] Module `torch` has no member `expm1` +torch/distributions/generalized_pareto.py:116:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/generalized_pareto.py:125:21: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/generalized_pareto.py:127:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/generalized_pareto.py:133:21: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/generalized_pareto.py:136:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/generalized_pareto.py:139:15: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/generalized_pareto.py:140:16: error[unresolved-attribute] Module `torch` has no member `broadcast_to` +torch/distributions/generalized_pareto.py:150:17: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/geometric.py:70:27: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/geometric.py:78:21: error[unsupported-operator] Operator `>` is not supported for types `lazy_property[Unknown, Unknown]` and `int`, in comparing `Unknown | lazy_property[Unknown, Unknown] | Tensor` with `Literal[0]` +torch/distributions/geometric.py:80:33: warning[possibly-missing-attribute] Attribute `data` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/geometric.py:83:63: warning[possibly-missing-attribute] Attribute `shape` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/geometric.py:90:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/geometric.py:92:25: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/geometric.py:94:26: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/geometric.py:101:16: error[unsupported-operator] Operator `/` is unsupported between objects of type `float` and `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/geometric.py:105:16: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributions/geometric.py:109:17: error[unsupported-operator] Operator `/` is unsupported between objects of type `float` and `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/geometric.py:113:32: error[invalid-argument-type] Argument to function `probs_to_logits` is incorrect: Expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/geometric.py:117:32: error[invalid-argument-type] Argument to function `logits_to_probs` is incorrect: Expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/geometric.py:119:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/geometric.py:121:16: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/distributions/geometric.py:121:28: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/geometric.py:123:16: error[unresolved-attribute] Module `torch._C` has no member `_get_tracing_state` +torch/distributions/geometric.py:125:21: error[unresolved-attribute] Module `torch` has no member `rand` +torch/distributions/geometric.py:125:45: warning[possibly-missing-attribute] Attribute `dtype` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/geometric.py:125:70: warning[possibly-missing-attribute] Attribute `device` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/geometric.py:128:21: warning[possibly-missing-attribute] Attribute `new` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/geometric.py:129:32: error[unsupported-operator] Unary operator `-` is unsupported for type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/geometric.py:134:45: error[invalid-argument-type] Argument to function `broadcast_all` is incorrect: Expected `Tensor | int | float`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/geometric.py:135:43: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributions/geometric.py:137:43: warning[possibly-missing-attribute] Attribute `log` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/geometric.py:141:46: error[invalid-argument-type] Argument to function `binary_cross_entropy_with_logits` is incorrect: Expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/geometric.py:141:59: error[invalid-argument-type] Argument to function `binary_cross_entropy_with_logits` is incorrect: Expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/gumbel.py:45:17: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/distributions/gumbel.py:50:17: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/distributions/gumbel.py:51:17: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/distributions/gumbel.py:56:43: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/distributions/gumbel.py:85:16: error[invalid-return-type] Return type does not match returned value: expected `Tensor`, found `Unknown | int | float` +torch/distributions/half_cauchy.py:59:16: error[unresolved-attribute] Module `torch` has no member `full` +torch/distributions/half_cauchy.py:68:16: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributions/half_cauchy.py:77:17: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/distributions/half_cauchy.py:81:20: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/half_normal.py:63:16: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributions/half_normal.py:73:20: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/independent.py:5:19: error[unresolved-import] Module `torch` has no member `Size` +torch/distributions/independent.py:72:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/independent.py:113:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/independent.py:116:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/inverse_gamma.py:74:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/inverse_gamma.py:85:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/kl.py:145:12: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/distributions/kl.py:225:50: error[unresolved-attribute] Module `torch` has no member `digamma` +torch/distributions/kl.py:226:50: error[unresolved-attribute] Module `torch` has no member `digamma` +torch/distributions/kl.py:227:42: error[unresolved-attribute] Module `torch` has no member `digamma` +torch/distributions/kl.py:258:36: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/kl.py:259:37: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/kl.py:303:10: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/kl.py:303:42: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/kl.py:304:48: error[unresolved-attribute] Module `torch` has no member `digamma` +torch/distributions/kl.py:316:10: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/kl.py:322:27: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/kl.py:337:24: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/kl.py:421:28: error[unresolved-attribute] Module `torch._C` has no member `_infer_size` +torch/distributions/kl.py:429:18: error[unresolved-attribute] Module `torch` has no member `diag_embed` +torch/distributions/kl.py:454:28: error[unresolved-attribute] Module `torch._C` has no member `_infer_size` +torch/distributions/kl.py:523:11: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/kl.py:588:27: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/kl.py:598:43: error[unresolved-attribute] Module `torch` has no member `square` +torch/distributions/kl.py:598:76: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/kl.py:601:24: error[unresolved-attribute] Module `torch` has no member `square` +torch/distributions/kl.py:602:15: error[unresolved-attribute] Module `torch` has no member `square` +torch/distributions/kl.py:610:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/kl.py:611:9: error[unresolved-attribute] Module `torch` has no member `max` +torch/distributions/kl.py:612:13: error[unresolved-attribute] Module `torch` has no member `ge` +torch/distributions/kl.py:613:13: error[unresolved-attribute] Module `torch` has no member `le` +torch/distributions/kl.py:615:9: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/distributions/kl.py:631:29: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/kl.py:646:10: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/kl.py:658:16: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/kl.py:689:9: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/kl.py:704:15: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/kl.py:754:16: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/kl.py:778:10: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/kl.py:787:10: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/kl.py:789:44: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/kl.py:791:21: error[unresolved-attribute] Module `torch` has no member `erf` +torch/distributions/kl.py:850:10: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/kl.py:876:11: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/kl.py:879:12: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/kl.py:880:9: error[unresolved-attribute] Module `torch` has no member `max` +torch/distributions/kl.py:881:13: error[unresolved-attribute] Module `torch` has no member `ge` +torch/distributions/kl.py:882:13: error[unresolved-attribute] Module `torch` has no member `le` +torch/distributions/kl.py:884:9: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/distributions/kl.py:918:25: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/kl.py:918:53: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/kumaraswamy.py:21:17: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/kumaraswamy.py:21:38: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/kumaraswamy.py:21:56: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/kumaraswamy.py:22:16: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/kumaraswamy.py:61:13: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/distributions/kumaraswamy.py:62:13: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/distributions/kumaraswamy.py:95:72: error[unresolved-attribute] Module `torch` has no member `pow` +torch/distributions/kumaraswamy.py:102:14: error[unresolved-attribute] Module `torch` has no member `digamma` +torch/distributions/kumaraswamy.py:106:15: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/kumaraswamy.py:107:15: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/laplace.py:50:16: error[invalid-return-type] Return type does not match returned value: expected `Tensor`, found `Unknown | int | float` +torch/distributions/laplace.py:60:27: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/laplace.py:67:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/laplace.py:74:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/laplace.py:76:17: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/distributions/laplace.py:77:12: error[unresolved-attribute] Module `torch._C` has no member `_get_tracing_state` +torch/distributions/laplace.py:79:17: error[unresolved-attribute] Module `torch` has no member `rand` +torch/distributions/laplace.py:80:55: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/laplace.py:86:51: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/laplace.py:91:17: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/laplace.py:91:45: error[unresolved-attribute] Module `torch` has no member `abs` +torch/distributions/laplace.py:96:56: error[unresolved-attribute] Module `torch` has no member `expm1` +torch/distributions/laplace.py:102:56: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/laplace.py:105:20: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/lkj_cholesky.py:80:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/lkj_cholesky.py:83:18: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributions/lkj_cholesky.py:88:18: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributions/lkj_cholesky.py:96:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/lkj_cholesky.py:106:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/lkj_cholesky.py:114:20: error[unresolved-attribute] Module `torch` has no member `randn` +torch/distributions/lkj_cholesky.py:120:13: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/distributions/lkj_cholesky.py:122:15: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/distributions/lkj_cholesky.py:123:22: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/distributions/lkj_cholesky.py:123:38: error[unresolved-attribute] Module `torch` has no member `sum` +torch/distributions/lkj_cholesky.py:124:14: error[unresolved-attribute] Module `torch` has no member `diag_embed` +torch/distributions/lkj_cholesky.py:140:17: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributions/lkj_cholesky.py:142:32: error[unresolved-attribute] Module `torch` has no member `sum` +torch/distributions/lkj_cholesky.py:146:23: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/lkj_cholesky.py:147:21: error[unresolved-attribute] Module `torch` has no member `mvlgamma` +torch/distributions/lowrank_multivariate_normal.py:24:9: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/distributions/lowrank_multivariate_normal.py:143:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/lowrank_multivariate_normal.py:181:13: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/distributions/lowrank_multivariate_normal.py:190:29: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/distributions/lowrank_multivariate_normal.py:192:13: error[unresolved-attribute] Module `torch` has no member `diag_embed` +torch/distributions/lowrank_multivariate_normal.py:208:13: error[unresolved-attribute] Module `torch` has no member `diag_embed` +torch/distributions/lowrank_multivariate_normal.py:214:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/mixture_same_family.py:93:14: warning[possibly-missing-attribute] Attribute `shape` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/mixture_same_family.py:110:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/mixture_same_family.py:142:16: error[unresolved-attribute] Module `torch` has no member `sum` +torch/distributions/mixture_same_family.py:150:25: error[unresolved-attribute] Module `torch` has no member `sum` +torch/distributions/mixture_same_family.py:153:25: error[unresolved-attribute] Module `torch` has no member `sum` +torch/distributions/mixture_same_family.py:164:16: error[unresolved-attribute] Module `torch` has no member `sum` +torch/distributions/mixture_same_family.py:171:24: error[unresolved-attribute] Module `torch` has no member `log_softmax` +torch/distributions/mixture_same_family.py:174:16: error[unresolved-attribute] Module `torch` has no member `logsumexp` +torch/distributions/mixture_same_family.py:176:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/mixture_same_family.py:192:29: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/mixture_same_family.py:195:17: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/mixture_same_family.py:195:52: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/mixture_same_family.py:198:23: error[unresolved-attribute] Module `torch` has no member `gather` +torch/distributions/mixture_same_family.py:211:15: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/mixture_same_family.py:213:15: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/multinomial.py:63:16: error[invalid-return-type] Return type does not match returned value: expected `Tensor`, found `int` +torch/distributions/multinomial.py:83:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/multinomial.py:102:16: error[invalid-return-type] Return type does not match returned value: expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/multinomial.py:106:16: error[invalid-return-type] Return type does not match returned value: expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/multinomial.py:109:30: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/multinomial.py:112:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/multinomial.py:113:24: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/multinomial.py:115:13: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/multinomial.py:123:42: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/distributions/multinomial.py:127:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributions/multinomial.py:130:35: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/multinomial.py:133:26: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/multinomial.py:134:19: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/multinomial.py:143:45: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributions/multinomial.py:144:27: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/multinomial.py:145:28: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/multivariate_normal.py:27:12: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/distributions/multivariate_normal.py:82:32: error[unresolved-attribute] Module `torch` has no member `flip` +torch/distributions/multivariate_normal.py:83:13: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/distributions/multivariate_normal.py:83:29: error[unresolved-attribute] Module `torch` has no member `flip` +torch/distributions/multivariate_normal.py:84:10: error[unresolved-attribute] Module `torch` has no member `eye` +torch/distributions/multivariate_normal.py:199:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/multivariate_normal.py:205:37: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/multivariate_normal.py:207:30: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/multivariate_normal.py:209:36: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/multivariate_normal.py:224:16: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/distributions/multivariate_normal.py:230:16: error[unresolved-attribute] Module `torch` has no member `cholesky_inverse` +torch/distributions/multivariate_normal.py:250:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/negative_binomial.py:72:23: warning[possibly-missing-attribute] Attribute `size` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/negative_binomial.py:77:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/negative_binomial.py:80:25: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/negative_binomial.py:83:26: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/negative_binomial.py:90:16: warning[possibly-missing-attribute] Attribute `new` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/negative_binomial.py:94:35: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/negative_binomial.py:98:42: warning[possibly-missing-attribute] Attribute `exp` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/negative_binomial.py:102:28: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/distributions/negative_binomial.py:102:42: error[unsupported-operator] Unary operator `-` is unsupported for type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/negative_binomial.py:106:32: error[invalid-argument-type] Argument to function `probs_to_logits` is incorrect: Expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/negative_binomial.py:110:32: error[invalid-argument-type] Argument to function `logits_to_probs` is incorrect: Expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/negative_binomial.py:113:30: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/negative_binomial.py:114:16: warning[possibly-missing-attribute] Attribute `size` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/negative_binomial.py:121:18: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/negative_binomial.py:121:28: error[unsupported-operator] Unary operator `-` is unsupported for type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/negative_binomial.py:125:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/negative_binomial.py:128:20: error[unresolved-attribute] Module `torch` has no member `poisson` +torch/distributions/negative_binomial.py:135:13: error[unsupported-operator] Unary operator `-` is unsupported for type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/negative_binomial.py:139:14: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/negative_binomial.py:140:15: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/negative_binomial.py:141:15: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/normal.py:64:27: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/normal.py:71:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/normal.py:78:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/normal.py:81:20: error[unresolved-attribute] Module `torch` has no member `normal` +torch/distributions/normal.py:83:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/normal.py:109:17: error[unresolved-attribute] Module `torch` has no member `erf` +torch/distributions/normal.py:113:40: error[unresolved-attribute] Module `torch` has no member `erfinv` +torch/distributions/normal.py:116:52: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/normal.py:124:45: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/one_hot_categorical.py:63:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/one_hot_categorical.py:76:16: error[invalid-return-type] Return type does not match returned value: expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/one_hot_categorical.py:80:16: error[invalid-return-type] Return type does not match returned value: expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/one_hot_categorical.py:84:16: error[invalid-return-type] Return type does not match returned value: expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/one_hot_categorical.py:88:16: error[invalid-return-type] Return type does not match returned value: expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/one_hot_categorical.py:93:16: warning[possibly-missing-attribute] Attribute `argmax` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/one_hot_categorical.py:94:62: warning[possibly-missing-attribute] Attribute `shape` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/one_hot_categorical.py:98:43: error[unsupported-operator] Operator `-` is unsupported between objects of type `Literal[1]` and `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/one_hot_categorical.py:101:30: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/one_hot_categorical.py:104:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/one_hot_categorical.py:105:24: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/one_hot_categorical.py:122:18: error[unresolved-attribute] Module `torch` has no member `eye` +torch/distributions/one_hot_categorical.py:140:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/one_hot_categorical.py:143:35: warning[possibly-missing-attribute] Attribute `detach` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/poisson.py:58:27: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/poisson.py:65:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/poisson.py:71:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/poisson.py:74:20: error[unresolved-attribute] Module `torch` has no member `poisson` +torch/distributions/poisson.py:84:17: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/poisson.py:88:16: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/relaxed_bernoulli.py:70:27: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/relaxed_bernoulli.py:72:27: warning[possibly-missing-attribute] Attribute `size` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/relaxed_bernoulli.py:77:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/relaxed_bernoulli.py:80:25: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/relaxed_bernoulli.py:83:26: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/relaxed_bernoulli.py:90:16: warning[possibly-missing-attribute] Attribute `new` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/relaxed_bernoulli.py:94:32: error[invalid-argument-type] Argument to function `probs_to_logits` is incorrect: Expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/relaxed_bernoulli.py:98:32: error[invalid-argument-type] Argument to function `logits_to_probs` is incorrect: Expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/relaxed_bernoulli.py:101:30: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/relaxed_bernoulli.py:102:16: warning[possibly-missing-attribute] Attribute `size` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown] | Tensor` +torch/distributions/relaxed_bernoulli.py:104:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/relaxed_bernoulli.py:106:29: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/relaxed_bernoulli.py:108:13: error[unresolved-attribute] Module `torch` has no member `rand` +torch/distributions/relaxed_bernoulli.py:117:39: error[invalid-argument-type] Argument to function `broadcast_all` is incorrect: Expected `Tensor | int | float`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/relaxed_bernoulli.py:170:16: error[invalid-return-type] Return type does not match returned value: expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/relaxed_bernoulli.py:174:16: error[invalid-return-type] Return type does not match returned value: expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/relaxed_categorical.py:63:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/relaxed_categorical.py:76:30: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/relaxed_categorical.py:81:16: error[invalid-return-type] Return type does not match returned value: expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/relaxed_categorical.py:85:16: error[invalid-return-type] Return type does not match returned value: expected `Tensor`, found `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/relaxed_categorical.py:87:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/relaxed_categorical.py:90:13: error[unresolved-attribute] Module `torch` has no member `rand` +torch/distributions/relaxed_categorical.py:101:21: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/distributions/studentT.py:45:42: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributions/studentT.py:55:41: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/distributions/studentT.py:79:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/studentT.py:88:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/studentT.py:99:17: error[unresolved-attribute] Module `torch` has no member `rsqrt` +torch/distributions/studentT.py:110:15: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/studentT.py:111:15: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/studentT.py:113:41: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/studentT.py:117:13: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/studentT.py:119:15: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/studentT.py:125:16: error[unresolved-attribute] Module `torch` has no member `digamma` +torch/distributions/studentT.py:125:53: error[unresolved-attribute] Module `torch` has no member `digamma` +torch/distributions/transformed_distribution.py:112:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/transformed_distribution.py:141:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/transformed_distribution.py:154:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/transforms.py:232:16: warning[possibly-missing-attribute] Attribute `codomain` may be missing on object of type `(Unknown & ~None) | ReferenceType[_InverseTransform] | Transform` +torch/distributions/transforms.py:238:16: warning[possibly-missing-attribute] Attribute `domain` may be missing on object of type `(Unknown & ~None) | ReferenceType[_InverseTransform] | Transform` +torch/distributions/transforms.py:243:16: warning[possibly-missing-attribute] Attribute `bijective` may be missing on object of type `(Unknown & ~None) | ReferenceType[_InverseTransform] | Transform` +torch/distributions/transforms.py:248:16: warning[possibly-missing-attribute] Attribute `sign` may be missing on object of type `(Unknown & ~None) | ReferenceType[_InverseTransform] | Transform` +torch/distributions/transforms.py:252:16: error[invalid-return-type] Return type does not match returned value: expected `Transform`, found `Unknown | ReferenceType[_InverseTransform] | Transform` +torch/distributions/transforms.py:269:16: warning[possibly-missing-attribute] Attribute `_inv_call` may be missing on object of type `(Unknown & ~None) | ReferenceType[_InverseTransform] | Transform` +torch/distributions/transforms.py:273:17: warning[possibly-missing-attribute] Attribute `log_abs_det_jacobian` may be missing on object of type `(Unknown & ~None) | ReferenceType[_InverseTransform] | Transform` +torch/distributions/transforms.py:276:16: warning[possibly-missing-attribute] Attribute `inverse_shape` may be missing on object of type `Unknown | ReferenceType[_InverseTransform] | Transform` +torch/distributions/transforms.py:279:16: warning[possibly-missing-attribute] Attribute `forward_shape` may be missing on object of type `Unknown | ReferenceType[_InverseTransform] | Transform` +torch/distributions/transforms.py:370:20: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/distributions/transforms.py:505:19: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/transforms.py:506:20: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/transforms.py:509:25: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/transforms.py:510:26: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/transforms.py:630:13: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/distributions/transforms.py:631:12: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/distributions/transforms.py:631:24: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/distributions/transforms.py:651:17: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/distributions/transforms.py:720:16: error[unresolved-attribute] Module `torch` has no member `atanh` +torch/distributions/transforms.py:831:22: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/distributions/transforms.py:833:22: error[unresolved-attribute] Module `torch` has no member `abs` +torch/distributions/transforms.py:873:13: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/distributions/transforms.py:874:15: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/distributions/transforms.py:882:28: warning[possibly-missing-attribute] Attribute `sqrt` may be missing on object of type `Unknown | int` +torch/distributions/transforms.py:884:17: error[unresolved-attribute] Module `torch` has no member `eye` +torch/distributions/transforms.py:891:24: error[unresolved-attribute] Module `torch` has no member `cumsum` +torch/distributions/transforms.py:1005:14: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/distributions/transforms.py:1005:34: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/distributions/transforms.py:1126:16: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributions/transforms.py:1137:16: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributions/transforms.py:1160:20: error[unresolved-attribute] Module `torch` has no member `cat` +torch/distributions/transforms.py:1222:16: error[unresolved-attribute] Module `torch` has no member `stack` +torch/distributions/transforms.py:1230:16: error[unresolved-attribute] Module `torch` has no member `stack` +torch/distributions/transforms.py:1242:16: error[unresolved-attribute] Module `torch` has no member `stack` +torch/distributions/uniform.py:48:16: error[invalid-return-type] Return type does not match returned value: expected `Tensor`, found `Unknown | int | float` +torch/distributions/uniform.py:67:27: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/uniform.py:74:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/uniform.py:86:45: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/uniform.py:88:16: error[unresolved-attribute] Module `torch` has no member `rand` +torch/distributions/uniform.py:96:16: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/uniform.py:96:40: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/uniform.py:109:16: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/utils.py:49:46: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/distributions/utils.py:55:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributions/utils.py:66:8: error[unresolved-attribute] Module `torch._C` has no member `_get_tracing_state` +torch/distributions/utils.py:68:16: error[unresolved-attribute] Module `torch` has no member `normal` +torch/distributions/utils.py:69:13: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributions/utils.py:70:13: error[unresolved-attribute] Module `torch` has no member `ones` +torch/distributions/utils.py:72:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributions/utils.py:97:16: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/distributions/utils.py:123:11: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/distributions/utils.py:136:16: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/utils.py:136:40: error[unresolved-attribute] Module `torch` has no member `log1p` +torch/distributions/utils.py:137:12: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/utils.py:171:27: error[unresolved-attribute] Object of type `(T@lazy_property, /) -> R@lazy_property` has no attribute `__name__` +torch/distributions/utils.py:192:12: error[unresolved-attribute] Module `torch._C` has no member `_get_tracing_state` +torch/distributions/utils.py:194:14: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributions/utils.py:210:11: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/distributions/utils.py:211:12: error[unresolved-attribute] Module `torch._C` has no member `_get_tracing_state` +torch/distributions/utils.py:217:42: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/utils.py:218:14: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributions/von_mises.py:88:14: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/von_mises.py:94:12: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/distributions/von_mises.py:94:39: error[unresolved-attribute] Module `torch` has no member `bool` +torch/distributions/von_mises.py:97:13: error[unresolved-attribute] Module `torch` has no member `rand` +torch/distributions/von_mises.py:99:13: error[unresolved-attribute] Module `torch` has no member `cos` +torch/distributions/von_mises.py:105:17: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/von_mises.py:141:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/von_mises.py:147:41: error[unresolved-attribute] Module `torch` has no member `cos` +torch/distributions/von_mises.py:157:28: error[unresolved-attribute] Module `torch` has no member `double` +torch/distributions/von_mises.py:161:38: error[unresolved-attribute] Module `torch` has no member `double` +torch/distributions/von_mises.py:173:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/von_mises.py:176:35: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/von_mises.py:187:13: error[unresolved-attribute] Module `torch` has no member `empty` +torch/distributions/weibull.py:50:13: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/distributions/weibull.py:75:29: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/weibull.py:75:39: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/weibull.py:88:13: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/weibull.py:88:23: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/weibull.py:89:15: error[unresolved-attribute] Module `torch` has no member `exp` +torch/distributions/weibull.py:89:29: error[unresolved-attribute] Module `torch` has no member `lgamma` +torch/distributions/weibull.py:95:15: error[unresolved-attribute] Module `torch` has no member `log` +torch/distributions/wishart.py:22:12: error[unresolved-attribute] Module `torch` has no member `digamma` +torch/distributions/wishart.py:24:11: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributions/wishart.py:30:24: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/distributions/wishart.py:106:27: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/wishart.py:107:23: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/distributions/wishart.py:148:19: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributions/wishart.py:158:23: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/wishart.py:166:37: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/wishart.py:168:30: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/wishart.py:170:36: warning[possibly-missing-attribute] Attribute `expand` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/wishart.py:176:19: error[unresolved-attribute] Module `torch` has no member `arange` +torch/distributions/wishart.py:203:20: error[unresolved-attribute] Module `torch` has no member `eye` +torch/distributions/wishart.py:208:16: error[unresolved-attribute] Module `torch` has no member `cholesky_solve` +torch/distributions/wishart.py:218:28: warning[possibly-missing-attribute] Attribute `shape` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/wishart.py:225:18: warning[possibly-missing-attribute] Attribute `diagonal` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/wishart.py:227:13: warning[possibly-missing-attribute] Attribute `pow` may be missing on object of type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/wishart.py:230:47: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/wishart.py:238:16: error[unresolved-attribute] Module `torch` has no member `tril_indices` +torch/distributions/wishart.py:239:28: error[unresolved-attribute] Module `torch` has no member `randn` +torch/distributions/wishart.py:240:13: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/wishart.py:248:37: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/wishart.py:260:39: error[unresolved-attribute] Module `torch._C` has no member `_get_tracing_state` +torch/distributions/wishart.py:262:24: error[unresolved-attribute] Module `torch` has no member `Size` +torch/distributions/wishart.py:270:12: error[unresolved-attribute] Module `torch._C` has no member `_get_tracing_state` +torch/distributions/wishart.py:274:26: error[unresolved-attribute] Module `torch` has no member `where` +torch/distributions/wishart.py:312:15: error[unresolved-attribute] Module `torch` has no member `mvlgamma` +torch/distributions/wishart.py:314:15: error[unresolved-attribute] Module `torch` has no member `cholesky_solve` +torch/distributions/wishart.py:331:15: error[unresolved-attribute] Module `torch` has no member `mvlgamma` +torch/distributions/wishart.py:340:16: error[unsupported-operator] Unary operator `-` is unsupported for type `Unknown | lazy_property[Unknown, Unknown]` +torch/distributions/wishart.py:347:13: error[unresolved-attribute] Module `torch` has no member `mvlgamma` +torch/export/__init__.py:300:17: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/export/__init__.py:302:17: error[unresolved-attribute] Module `torch._dynamo` has no member `exc` +torch/export/__init__.py:303:17: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/export/_draft_export.py:299:9: error[invalid-assignment] Object of type `Literal[True]` is not assignable to attribute `GET_DTRACE_STRUCTURED` of type `Literal[False]` +torch/export/_draft_export.py:386:9: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/export/_leakage_detection_utils.py:41:28: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/export/_safeguard.py:21:13: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/export/_safeguard.py:25:25: error[unresolved-attribute] Module `torch._C` has no member `is_grad_enabled` +torch/export/_safeguard.py:28:29: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/export/_safeguard.py:29:20: error[unresolved-attribute] Module `torch._C` has no member `_get_dispatch_mode` +torch/export/_safeguard.py:29:48: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/export/_trace.py:190:11: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/export/_trace.py:193:9: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/export/_trace.py:194:15: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/export/_trace.py:196:9: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/export/_trace.py:200:16: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/export/_trace.py:828:16: error[unresolved-attribute] Module `torch` has no member `_functorch` +torch/export/_trace.py:829:16: error[unresolved-attribute] Module `torch` has no member `_export` +torch/export/_trace.py:843:20: error[unresolved-attribute] Module `torch` has no member `_export` +torch/export/_trace.py:1497:9: error[unresolved-attribute] Cannot assign object of type `(...) -> Any` to attribute `forward` on type `Module` with custom `__setattr__` method. +torch/export/_trace.py:1502:22: error[unresolved-attribute] Module `torch._C` has no member `_jit_texpr_fuser_enabled` +torch/export/_trace.py:1503:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_texpr_fuser_enabled` +torch/export/_trace.py:1507:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_texpr_fuser_enabled` +torch/export/_trace.py:1604:5: error[unresolved-attribute] Cannot assign object of type `set[str | Unknown]` to attribute `_non_persistent_buffers_set` on type `GraphModule` with custom `__setattr__` method. +torch/export/_trace.py:1728:24: error[unresolved-attribute] Module `torch._C` has no member `_is_torch_function_mode_enabled` +torch/export/_trace.py:1806:29: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/export/_trace.py:1810:21: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/export/_trace.py:2015:30: error[unresolved-attribute] Module `torch.fx` has no member `traceback` +torch/export/_trace.py:2176:28: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/export/_trace.py:2181:23: error[unresolved-attribute] Module `torch` has no member `_export` +torch/export/_trace.py:2211:20: error[unresolved-attribute] Module `torch` has no member `_export` +torch/export/_trace.py:2261:23: error[unresolved-attribute] Module `torch` has no member `_export` +torch/export/_trace.py:2443:5: error[unresolved-attribute] Module `torch` has no member `_export` +torch/export/_unlift.py:477:9: error[unresolved-attribute] Cannot assign object of type `(Unknown & ~AlwaysFalsy) | list[Unknown]` to attribute `range_constraints` on type `Self@__init__` with custom `__setattr__` method. +torch/export/_unlift.py:478:9: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `validate_inputs` on type `Self@__init__` with custom `__setattr__` method. +torch/export/_unlift.py:694:18: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/export/_unlift.py:860:32: error[unresolved-attribute] Module `torch.fx` has no member `_utils` +torch/export/dynamic_shapes.py:572:28: error[unresolved-attribute] Module `torch._dynamo` has no member `source` +torch/export/dynamic_shapes.py:573:33: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/export/dynamic_shapes.py:912:13: error[unresolved-attribute] Module `torch.export` has no member `_unlift` +torch/export/exported_program.py:158:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:159:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:160:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:161:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:162:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:163:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:164:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:165:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:166:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:167:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:168:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:169:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:179:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:180:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:181:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:182:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:183:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:184:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:185:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:186:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:187:5: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:214:12: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:215:40: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:217:29: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/export/exported_program.py:1705:36: error[unresolved-attribute] Module `torch._dynamo` has no member `source` +torch/export/exported_program.py:1709:18: error[unresolved-attribute] Module `torch.fx.experimental` has no member `symbolic_shapes` +torch/export/graph_signature.py:564:23: error[unresolved-import] Module `torch` has no member `ScriptObject` +torch/export/passes/__init__.py:12:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/export/passes/__init__.py:29:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/export/passes/__init__.py:30:25: error[unresolved-attribute] Module `torch` has no member `device` +torch/export/pt2_archive/_package.py:494:37: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/export/pt2_archive/_package.py:504:35: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/export/pt2_archive/_package.py:543:28: error[unresolved-attribute] Module `torch._C` has no member `_pickle_save` +torch/export/pt2_archive/_package.py:723:32: error[unresolved-attribute] Module `torch._C` has no member `_aoti` +torch/export/pt2_archive/_package.py:789:18: error[unresolved-attribute] Module `torch` has no member `frombuffer` +torch/export/pt2_archive/_package.py:798:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/export/pt2_archive/_package.py:879:33: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/export/pt2_archive/_package.py:935:39: error[unresolved-attribute] Module `torch` has no member `as_strided` +torch/export/pt2_archive/_package.py:949:43: error[unresolved-attribute] Module `torch._C` has no member `_pickle_load_obj` +torch/export/pt2_archive/_package.py:1023:27: error[unresolved-attribute] Module `torch._inductor` has no member `codecache` +torch/export/pt2_archive/_package.py:1037:9: error[unresolved-attribute] Module `torch._C` has no member `_aoti` +torch/export/pt2_archive/_package.py:1147:17: error[no-matching-overload] No overload of bound method `write` matches arguments +torch/export/pt2_archive/_package_weights.py:125:35: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/export/unflatten.py:84:35: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/export/unflatten.py:125:21: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/export/unflatten.py:160:9: error[unresolved-attribute] Cannot assign object of type `Graph` to attribute `graph` on type `Self@__init__` with custom `__setattr__` method. +torch/export/unflatten.py:161:9: error[unresolved-attribute] Cannot assign object of type `str | None` to attribute `_ty` on type `Self@__init__` with custom `__setattr__` method. +torch/export/unflatten.py:163:9: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `_run_with_interpreter` on type `Self@__init__` with custom `__setattr__` method. +torch/export/unflatten.py:212:9: error[unresolved-attribute] Cannot assign object of type `list[Unknown]` to attribute `arg_names` on type `Self@finalize` with custom `__setattr__` method. +torch/export/unflatten.py:248:9: error[unresolved-attribute] Cannot assign object of type `list[InterpreterModule] & ~AlwaysFalsy` to attribute `_call_modules` on type `Self@__init__` with custom `__setattr__` method. +torch/export/unflatten.py:249:9: error[unresolved-attribute] Cannot assign object of type `Literal[0]` to attribute `_num_calls` on type `Self@__init__` with custom `__setattr__` method. +torch/export/unflatten.py:253:9: error[unresolved-attribute] Cannot assign object of type `Unknown | int` to attribute `_num_calls` on type `Self@forward` with custom `__setattr__` method. +torch/export/unflatten.py:257:13: error[unresolved-attribute] Cannot assign object of type `Literal[0]` to attribute `_num_calls` on type `Self@forward` with custom `__setattr__` method. +torch/export/unflatten.py:329:9: error[unresolved-attribute] Cannot assign object of type `Graph` to attribute `graph` on type `Self@__init__` with custom `__setattr__` method. +torch/export/unflatten.py:332:9: error[unresolved-attribute] Cannot assign object of type `FlatArgsAdapter | None` to attribute `flat_args_adapter` on type `Self@__init__` with custom `__setattr__` method. +torch/export/unflatten.py:338:9: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `adapted` on type `Self@__init__` with custom `__setattr__` method. +torch/export/unflatten.py:339:9: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `_run_with_interpreter` on type `Self@__init__` with custom `__setattr__` method. +torch/export/unflatten.py:343:9: error[unresolved-attribute] Cannot assign object of type `str | None` to attribute `_ty` on type `Self@__init__` with custom `__setattr__` method. +torch/export/unflatten.py:345:9: error[unresolved-attribute] Cannot assign object of type `_IVals` to attribute `ivals` on type `Self@__init__` with custom `__setattr__` method. +torch/export/unflatten.py:450:56: error[unresolved-attribute] Module `torch._C` has no member `ScriptObject` +torch/export/unflatten.py:546:9: error[unresolved-attribute] Cannot assign object of type `list[Unknown]` to attribute `input_placeholders` on type `Self@__init__` with custom `__setattr__` method. +torch/export/unflatten.py:549:9: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `check_input_constraints` on type `Self@__init__` with custom `__setattr__` method. +torch/export/unflatten.py:617:13: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `adapted` on type `Self@process_forward_inputs` with custom `__setattr__` method. +torch/export/unflatten.py:1771:58: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/functional.py:10:22: error[unresolved-import] Module `torch._C` has no member `_add_docstr` +torch/functional.py:108:18: error[unresolved-attribute] Module `torch` has no member `_refs` +torch/functional.py:110:20: error[unresolved-attribute] Module `torch` has no member `Size` +torch/functional.py:111:16: error[unresolved-attribute] Module `torch` has no member `Size` +torch/functional.py:115:22: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/functional.py:938:43: error[unresolved-attribute] Module `torch._VF` has no member `unique_dim` +torch/functional.py:946:43: error[unresolved-attribute] Module `torch` has no member `_unique2` +torch/functional.py:1770:24: error[unresolved-attribute] Module `torch` has no member `strided` +torch/functional.py:1826:24: error[unresolved-attribute] Module `torch._VF` has no member `frobenius_norm` +torch/functional.py:1885:38: error[unresolved-attribute] Module `torch` has no member `Size` +torch/functional.py:1945:30: error[unresolved-attribute] Module `torch` has no member `bool` +torch/functional.py:1955:17: error[unresolved-attribute] Module `torch` has no member `Size` +torch/functional.py:1962:17: error[unresolved-attribute] Module `torch` has no member `Size` +torch/functional.py:1973:42: error[unresolved-attribute] Module `torch` has no member `Size` +torch/functional.py:1979:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/functional.py:1979:58: error[unresolved-attribute] Module `torch` has no member `int64` +torch/functional.py:1980:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/functional.py:1980:58: error[unresolved-attribute] Module `torch` has no member `int64` +torch/functional.py:2128:12: error[unresolved-attribute] Module `torch` has no member `_lu_with_info` +torch/futures/__init__.py:20:14: error[unresolved-attribute] Module `torch._C` has no member `Future` +torch/futures/__init__.py:30:57: error[unresolved-attribute] Module `torch` has no member `device` +torch/futures/__init__.py:47:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/futures/__init__.py:313:9: error[unresolved-attribute] Module `torch._C` has no member `_collect_all` +torch/futures/__init__.py:313:41: error[unresolved-attribute] Module `torch._C` has no member `Future` +torch/futures/__init__.py:334:20: error[unresolved-attribute] Module `torch._C` has no member `_collect_all` +torch/futures/__init__.py:334:52: error[unresolved-attribute] Module `torch._C` has no member `Future` +torch/fx/_graph_pickler.py:101:30: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/fx/_graph_pickler.py:208:20: error[invalid-return-type] Return type does not match returned value: expected `tuple[(Self@reduce_helper, _UnpickleState, /) -> _SymNodeT@reduce_helper, tuple[Self@reduce_helper, _UnpickleStateToken]]`, found `tuple[def unpickle_sym_int(self, unpickle_state: _UnpickleState) -> SymInt, tuple[Unknown, Unknown | _UnpickleStateToken]]` +torch/fx/_graph_pickler.py:250:33: error[unresolved-attribute] Module `torch._subclasses` has no member `meta_utils` +torch/fx/_graph_pickler.py:278:68: error[unresolved-attribute] Module `torch` has no member `device` +torch/fx/_graph_pickler.py:317:16: error[unresolved-attribute] Module `torch._dynamo` has no member `variables` +torch/fx/_graph_pickler.py:324:21: error[unresolved-attribute] Module `torch._dynamo` has no member `variables` +torch/fx/_graph_pickler.py:358:27: error[unresolved-attribute] Module `torch.fx` has no member `_lazy_graph_module` +torch/fx/_graph_pickler.py:557:20: error[unresolved-import] Cannot resolve imported module `einops` +torch/fx/_graph_pickler.py:599:42: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/fx/_graph_pickler.py:601:42: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/fx/_symbolic_trace.py:44:19: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/fx/_symbolic_trace.py:800:32: error[unresolved-attribute] Object of type `object` has no attribute `co_name` +torch/fx/_symbolic_trace.py:801:36: error[unresolved-attribute] Object of type `object` has no attribute `co_filename` +torch/fx/_symbolic_trace.py:802:39: error[unresolved-attribute] Object of type `object` has no attribute `co_firstlineno` +torch/fx/_symbolic_trace.py:1280:19: error[unresolved-attribute] Object of type `((...) -> Unknown) & (() -> object) & ~str` has no attribute `__name__` +torch/fx/_symbolic_trace.py:1359:75: error[unresolved-attribute] Object of type `((...) -> Any) & ~Module` has no attribute `__name__` +torch/fx/experimental/accelerator_partitioner.py:709:17: error[unresolved-attribute] Unresolved attribute `left_mem_bytes` on type `Partition`. +torch/fx/experimental/const_fold.py:37:9: error[unresolved-attribute] Cannot assign object of type `None | GraphModule` to attribute `const_subgraph_module` on type `Self@__init__` with custom `__setattr__` method. +torch/fx/experimental/const_fold.py:42:9: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `has_folding_been_run` on type `Self@__init__` with custom `__setattr__` method. +torch/fx/experimental/const_fold.py:43:9: error[unresolved-attribute] Cannot assign object of type `str | None` to attribute `fx_const_folded_attrs_name` on type `Self@__init__` with custom `__setattr__` method. +torch/fx/experimental/const_fold.py:44:9: error[unresolved-attribute] Cannot assign object of type `str` to attribute `device_for_folded_attrs` on type `Self@__init__` with custom `__setattr__` method. +torch/fx/experimental/const_fold.py:61:9: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `has_folding_been_run` on type `Self@run_folding` with custom `__setattr__` method. +torch/fx/experimental/graph_gradual_typechecker.py:164:26: error[unresolved-attribute] Module `torch` has no member `add` +torch/fx/experimental/graph_gradual_typechecker.py:247:26: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/fx/experimental/graph_gradual_typechecker.py:253:20: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/fx/experimental/graph_gradual_typechecker.py:282:26: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/fx/experimental/graph_gradual_typechecker.py:342:23: warning[possibly-missing-attribute] Attribute `__args__` may be missing on object of type `Any | None` +torch/fx/experimental/graph_gradual_typechecker.py:343:27: warning[possibly-missing-attribute] Attribute `__args__` may be missing on object of type `Any | None` +torch/fx/experimental/graph_gradual_typechecker.py:432:22: warning[possibly-missing-attribute] Attribute `__args__` may be missing on object of type `Any | None` +torch/fx/experimental/graph_gradual_typechecker.py:433:16: warning[possibly-missing-attribute] Attribute `__args__` may be missing on object of type `Any | None` +torch/fx/experimental/graph_gradual_typechecker.py:434:16: warning[possibly-missing-attribute] Attribute `__args__` may be missing on object of type `Any | None` +torch/fx/experimental/graph_gradual_typechecker.py:438:14: warning[possibly-missing-attribute] Attribute `__args__` may be missing on object of type `Any | None` +torch/fx/experimental/graph_gradual_typechecker.py:600:26: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/fx/experimental/graph_gradual_typechecker.py:770:27: error[unresolved-attribute] Module `torch` has no member `add` +torch/fx/experimental/graph_gradual_typechecker.py:812:27: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/fx/experimental/merge_matmul.py:111:61: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/fx/experimental/merge_matmul.py:143:47: error[unresolved-attribute] Module `torch` has no member `cat` +torch/fx/experimental/merge_matmul.py:149:13: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/fx/experimental/meta_tracer.py:13:12: error[unresolved-attribute] Module `torch` has no member `empty` +torch/fx/experimental/meta_tracer.py:47:5: error[unresolved-attribute] Module `torch` has no member `relu` +torch/fx/experimental/meta_tracer.py:50:5: error[unresolved-attribute] Module `torch` has no member `where` +torch/fx/experimental/meta_tracer.py:51:5: error[unresolved-attribute] Module `torch` has no member `abs` +torch/fx/experimental/meta_tracer.py:317:75: error[unresolved-attribute] Object of type `((...) -> Any) & ~Module` has no attribute `__name__` +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:155:26: error[unresolved-attribute] Module `torch` has no member `bmm` +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:332:26: error[unresolved-attribute] Module `torch` has no member `ones` +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:333:26: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:498:26: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:606:26: error[unresolved-attribute] Module `torch` has no member `cumsum` +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:974:26: error[unresolved-attribute] Module `torch` has no member `full` +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:989:26: error[unresolved-attribute] Module `torch` has no member `arange` +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1047:26: error[unresolved-attribute] Module `torch` has no member `ne` +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1049:26: error[unresolved-attribute] Module `torch` has no member `add` +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1053:48: error[unresolved-attribute] Module `torch` has no member `add` +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1123:26: error[unresolved-attribute] Module `torch` has no member `flatten` +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1259:26: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1337:26: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/fx/experimental/migrate_gradual_types/constraint_generator.py:1481:18: warning[possibly-missing-attribute] Attribute `nodes` may be missing on object of type `Unknown | None` +torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:655:77: error[invalid-argument-type] Argument to function `is_dim_div_by_target` is incorrect: Expected `list[DVar]`, found `DVar` +torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:662:71: error[invalid-argument-type] Argument to function `is_dim_div_by_target` is incorrect: Expected `list[DVar]`, found `Prod` +torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:673:50: error[invalid-argument-type] Argument to function `is_dim_div_by_target` is incorrect: Expected `list[DVar]`, found `Prod` +torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:686:50: error[invalid-argument-type] Argument to function `is_dim_div_by_target` is incorrect: Expected `list[DVar]`, found `Prod` +torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:794:16: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Constraint, (...) -> Unknown].__getitem__(key: Constraint, /) -> (...) -> Unknown` cannot be called with key of type `type[Constraint]` on object of type `dict[Constraint, (...) -> Unknown]` +torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:951:56: error[invalid-argument-type] Argument to function `is_target_div_by_dim` is incorrect: Expected `list[DVar]`, found `Prod` +torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:1180:32: error[unresolved-attribute] Object of type `Constraint` has no attribute `lhs` +torch/fx/experimental/migrate_gradual_types/constraint_transformation.py:1181:32: error[unresolved-attribute] Object of type `Constraint` has no attribute `rhs` +torch/fx/experimental/migrate_gradual_types/transform_to_z3.py:42:9: warning[possibly-missing-import] Member `D` of module `torch.fx.experimental.migrate_gradual_types.z3_types` may be missing +torch/fx/experimental/migrate_gradual_types/transform_to_z3.py:43:9: warning[possibly-missing-import] Member `tensor_type` of module `torch.fx.experimental.migrate_gradual_types.z3_types` may be missing +torch/fx/experimental/migrate_gradual_types/transform_to_z3.py:44:9: warning[possibly-missing-import] Member `z3_dyn` of module `torch.fx.experimental.migrate_gradual_types.z3_types` may be missing +torch/fx/experimental/normalize.py:131:9: error[unresolved-attribute] Module `torch` has no member `add` +torch/fx/experimental/normalize.py:132:9: error[unresolved-attribute] Module `torch` has no member `mul` +torch/fx/experimental/normalize.py:133:9: error[unresolved-attribute] Module `torch` has no member `sub` +torch/fx/experimental/normalize.py:134:9: error[unresolved-attribute] Module `torch` has no member `div` +torch/fx/experimental/normalize.py:135:9: error[unresolved-attribute] Module `torch` has no member `floor_divide` +torch/fx/experimental/normalize.py:136:9: error[unresolved-attribute] Module `torch` has no member `remainder` +torch/fx/experimental/normalize.py:137:9: error[unresolved-attribute] Module `torch` has no member `eq` +torch/fx/experimental/normalize.py:138:9: error[unresolved-attribute] Module `torch` has no member `ne` +torch/fx/experimental/normalize.py:139:9: error[unresolved-attribute] Module `torch` has no member `lt` +torch/fx/experimental/normalize.py:140:9: error[unresolved-attribute] Module `torch` has no member `le` +torch/fx/experimental/normalize.py:141:9: error[unresolved-attribute] Module `torch` has no member `gt` +torch/fx/experimental/normalize.py:142:9: error[unresolved-attribute] Module `torch` has no member `ge` +torch/fx/experimental/normalize.py:159:24: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[(Any, Any, /) -> Any, (Any, Any, /) -> Any].__getitem__(key: (Any, Any, /) -> Any, /) -> (Any, Any, /) -> Any` cannot be called with key of type `(((...) -> Any) & (() -> object)) | (str & (() -> object))` on object of type `dict[(Any, Any, /) -> Any, (Any, Any, /) -> Any]` +torch/fx/experimental/optimization.py:165:5: error[unresolved-attribute] Module `torch` has no member `relu` +torch/fx/experimental/optimization.py:166:5: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/fx/experimental/optimization.py:167:5: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/fx/experimental/optimization.py:197:71: error[unresolved-attribute] Module `torch` has no member `float` +torch/fx/experimental/optimization.py:375:54: error[unresolved-attribute] Module `torch` has no member `float` +torch/fx/experimental/optimization.py:378:55: error[unresolved-attribute] Module `torch` has no member `device` +torch/fx/experimental/proxy_tensor.py:105:21: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/fx/experimental/proxy_tensor.py:106:30: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/fx/experimental/proxy_tensor.py:128:5: error[unresolved-attribute] Module `torch` has no member `Size` +torch/fx/experimental/proxy_tensor.py:144:38: error[unresolved-attribute] Module `torch` has no member `Size` +torch/fx/experimental/proxy_tensor.py:416:25: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `Tensor`, found `Tensor | Unknown | FakeScriptObject | ... omitted 3 union elements` +torch/fx/experimental/proxy_tensor.py:416:25: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `SymInt | SymFloat | SymBool`, found `Tensor | Unknown | FakeScriptObject | ... omitted 3 union elements` +torch/fx/experimental/proxy_tensor.py:416:25: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `SymInt | SymFloat | SymBool`, found `Tensor | Unknown | FakeScriptObject | ... omitted 3 union elements` +torch/fx/experimental/proxy_tensor.py:429:37: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `Tensor`, found `SymInt | SymFloat | SymBool` +torch/fx/experimental/proxy_tensor.py:531:48: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `Symbol`, found `Expr` +torch/fx/experimental/proxy_tensor.py:544:60: error[invalid-argument-type] Argument to function `_build_proxy_for_sym_expr` is incorrect: Expected `Expr`, found `Basic` +torch/fx/experimental/proxy_tensor.py:589:30: error[invalid-argument-type] Argument to function `snapshot_fake` is incorrect: Expected `Tensor`, found `SymInt | SymFloat | SymBool | ... omitted 10 union elements` +torch/fx/experimental/proxy_tensor.py:614:24: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/fx/experimental/proxy_tensor.py:624:5: error[type-assertion-failure] Type `Unknown & ~SymInt & ~SymFloat & ~SymBool & ~FakeScriptObject & ~BackwardState & ~Top[list[Unknown]] & ~tuple[object, ...] & ~Top[dict[Unknown, Unknown]] & ~Tensor & ~int & ~float & ~None` is not equivalent to `Never` +torch/fx/experimental/proxy_tensor.py:695:71: error[invalid-argument-type] Argument to function `_extract_tensor_metadata` is incorrect: Expected `Tensor`, found `SymInt | SymFloat | SymBool | ... omitted 10 union elements` +torch/fx/experimental/proxy_tensor.py:952:18: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/fx/experimental/proxy_tensor.py:952:34: error[unresolved-attribute] Module `torch` has no member `float16` +torch/fx/experimental/proxy_tensor.py:1073:8: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/fx/experimental/proxy_tensor.py:1190:9: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/fx/experimental/proxy_tensor.py:1382:13: error[unresolved-attribute] Module `torch._higher_order_ops` has no member `triton_kernel_wrap` +torch/fx/experimental/proxy_tensor.py:1383:13: error[unresolved-attribute] Module `torch._higher_order_ops` has no member `triton_kernel_wrap` +torch/fx/experimental/proxy_tensor.py:1411:53: error[unresolved-attribute] Module `torch._C` has no member `Tag` +torch/fx/experimental/proxy_tensor.py:1495:69: error[unresolved-attribute] Object of type `((...) -> Unknown) & ~Module` has no attribute `__name__` +torch/fx/experimental/proxy_tensor.py:1496:12: error[unresolved-attribute] Module `torch.fx` has no member `_lazy_graph_module` +torch/fx/experimental/proxy_tensor.py:1569:22: error[unresolved-attribute] Module `torch._C` has no member `_TensorMeta` +torch/fx/experimental/proxy_tensor.py:1599:22: error[unresolved-attribute] Module `torch._C` has no member `_TensorMeta` +torch/fx/experimental/proxy_tensor.py:1616:17: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/fx/experimental/proxy_tensor.py:1623:24: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/fx/experimental/proxy_tensor.py:1632:13: error[unresolved-attribute] Module `torch._functorch` has no member `predispatch` +torch/fx/experimental/proxy_tensor.py:1633:13: error[unresolved-attribute] Module `torch._functorch` has no member `predispatch` +torch/fx/experimental/proxy_tensor.py:1634:13: error[unresolved-attribute] Module `torch._functorch` has no member `predispatch` +torch/fx/experimental/proxy_tensor.py:1635:13: error[unresolved-attribute] Module `torch._functorch` has no member `predispatch` +torch/fx/experimental/proxy_tensor.py:1636:13: error[unresolved-attribute] Module `torch._functorch` has no member `vmap` +torch/fx/experimental/proxy_tensor.py:1670:14: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/fx/experimental/proxy_tensor.py:1679:26: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/fx/experimental/proxy_tensor.py:1693:22: error[unresolved-attribute] Module `torch._C` has no member `_TensorMeta` +torch/fx/experimental/proxy_tensor.py:1707:51: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/fx/experimental/proxy_tensor.py:1733:22: error[unresolved-attribute] Module `torch._C` has no member `_TensorMeta` +torch/fx/experimental/proxy_tensor.py:1998:17: error[unresolved-attribute] Module `torch` has no member `is_autocast_cache_enabled` +torch/fx/experimental/proxy_tensor.py:1999:5: error[unresolved-attribute] Module `torch` has no member `set_autocast_cache_enabled` +torch/fx/experimental/proxy_tensor.py:2003:9: error[unresolved-attribute] Module `torch` has no member `set_autocast_cache_enabled` +torch/fx/experimental/proxy_tensor.py:2334:47: error[unresolved-attribute] Module `torch` has no member `_decomp` +torch/fx/experimental/proxy_tensor.py:2400:53: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `GraphModule`, found `object` +torch/fx/experimental/proxy_tensor.py:2410:36: warning[possibly-missing-attribute] Member `detect_fake_mode` may be missing on module `torch._dynamo.utils` +torch/fx/experimental/proxy_tensor.py:2425:36: warning[possibly-missing-attribute] Member `detect_fake_mode` may be missing on module `torch._dynamo.utils` +torch/fx/experimental/proxy_tensor.py:2537:36: error[unresolved-attribute] Module `torch` has no member `ScriptObject` +torch/fx/experimental/proxy_tensor.py:2611:31: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/fx/experimental/proxy_tensor.py:2707:12: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/fx/experimental/proxy_tensor.py:2723:9: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/fx/experimental/proxy_tensor.py:2725:12: error[unresolved-attribute] Module `torch._C` has no member `_get_dispatch_mode` +torch/fx/experimental/proxy_tensor.py:2725:40: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/fx/experimental/proxy_tensor.py:2754:32: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/fx/experimental/proxy_tensor.py:2813:17: error[unresolved-attribute] Module `torch._C` has no member `_get_dispatch_mode` +torch/fx/experimental/proxy_tensor.py:2813:45: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/fx/experimental/recording.py:169:56: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__name__` +torch/fx/experimental/recording.py:245:20: error[unresolved-attribute] Object of type `((...) -> Unknown) & (() -> object)` has no attribute `__name__` +torch/fx/experimental/schema_type_annotation.py:110:38: error[unresolved-attribute] Module `torch._C` has no member `_jit_try_infer_type` +torch/fx/experimental/shape_inference/infer_shape.py:53:30: error[unresolved-attribute] Module `torch` has no member `randn` +torch/fx/experimental/symbolic_shapes.py:253:9: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int | SymInt, int]`, found `tuple[Literal[1], Unknown, int] | tuple[Literal[0], @Todo]` +torch/fx/experimental/symbolic_shapes.py:253:13: warning[possibly-missing-attribute] Attribute `node` may be missing on object of type `int | SymInt` +torch/fx/experimental/symbolic_shapes.py:326:9: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/fx/experimental/symbolic_shapes.py:327:9: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/fx/experimental/symbolic_shapes.py:339:9: error[unresolved-attribute] Module `torch._logging` has no member `structured` +torch/fx/experimental/symbolic_shapes.py:810:16: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `(Unknown & ~AlwaysTruthy) | bool | None` +torch/fx/experimental/symbolic_shapes.py:932:35: warning[possibly-missing-attribute] Attribute `size` may be missing on object of type `(Tensor & ~SymInt & ~SymFloat & ~SymBool & ~SymNode & ~Basic & ~int & ~float & ~tuple[object, ...] & ~Top[list[Unknown]]) | (Sequence[SymInt | SymFloat | SymBool | ... omitted 4 union elements] & ~SymInt & ~SymFloat & ~SymBool & ~SymNode & ~Basic & ~int & ~float & ~tuple[object, ...] & ~Top[list[Unknown]])` +torch/fx/experimental/symbolic_shapes.py:940:26: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/fx/experimental/symbolic_shapes.py:958:40: error[unresolved-attribute] Module `torch` has no member `Size` +torch/fx/experimental/symbolic_shapes.py:1227:13: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/fx/experimental/symbolic_shapes.py:1228:13: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/fx/experimental/symbolic_shapes.py:1229:13: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/fx/experimental/symbolic_shapes.py:1230:13: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/fx/experimental/symbolic_shapes.py:1295:31: error[invalid-argument-type] Argument to function `_symint_wrap` is incorrect: Expected `Symbol`, found `Integer | Symbol` +torch/fx/experimental/symbolic_shapes.py:1309:24: error[invalid-argument-type] Argument to bound method `remove` is incorrect: Expected `Symbol`, found `Integer | Symbol` +torch/fx/experimental/symbolic_shapes.py:1452:8: error[unresolved-attribute] Module `torch.fx` has no member `experimental` +torch/fx/experimental/symbolic_shapes.py:2091:9: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/fx/experimental/symbolic_shapes.py:2092:9: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/fx/experimental/symbolic_shapes.py:2093:9: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/fx/experimental/symbolic_shapes.py:2331:16: error[invalid-return-type] Return type does not match returned value: expected `_SympyT@_fast_expand`, found `Expr` +torch/fx/experimental/symbolic_shapes.py:2354:28: error[invalid-assignment] Object of type `tuple[Expr, bool]` is not assignable to `list[Expr]` +torch/fx/experimental/symbolic_shapes.py:2355:28: error[invalid-assignment] Object of type `tuple[Expr, bool]` is not assignable to `list[Expr]` +torch/fx/experimental/symbolic_shapes.py:2357:20: error[unsupported-operator] Operator `/` is unsupported between objects of type `list[Expr]` and `list[Expr]` +torch/fx/experimental/symbolic_shapes.py:2375:33: error[invalid-argument-type] Argument to function `_fast_expand` is incorrect: Argument type `` does not satisfy constraints (`Expr`, `Boolean`, `Basic`) of type variable `_SympyT` +torch/fx/experimental/symbolic_shapes.py:2378:20: error[invalid-return-type] Return type does not match returned value: expected `_SympyT@safe_expand`, found `` +torch/fx/experimental/symbolic_shapes.py:3032:18: error[unresolved-attribute] Module `torch.utils` has no member `_sympy` +torch/fx/experimental/symbolic_shapes.py:3134:38: error[unresolved-attribute] Module `sympy.ntheory` has no member `modular` +torch/fx/experimental/symbolic_shapes.py:3452:33: error[invalid-argument-type] Argument to function `_check_same_range` is incorrect: Expected `Mapping[str, int]`, found `dict[Unknown | str, Unknown | Expr]` +torch/fx/experimental/symbolic_shapes.py:3955:57: warning[possibly-missing-import] Member `TranslationValidator` of module `torch.fx.experimental.validator` may be missing +torch/fx/experimental/symbolic_shapes.py:4016:16: error[unresolved-attribute] Object of type `Expr` has no attribute `node` +torch/fx/experimental/symbolic_shapes.py:4016:25: error[invalid-argument-type] Argument is incorrect: Expected `Symbol`, found `SymInt` +torch/fx/experimental/symbolic_shapes.py:4332:45: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__name__` +torch/fx/experimental/symbolic_shapes.py:4568:20: warning[possibly-missing-attribute] Attribute `node` may be missing on object of type `int | SymInt` +torch/fx/experimental/symbolic_shapes.py:4571:20: warning[possibly-missing-attribute] Attribute `node` may be missing on object of type `int | SymInt` +torch/fx/experimental/symbolic_shapes.py:4758:16: error[invalid-return-type] Return type does not match returned value: expected `list[Expr]`, found `list[Unknown | None]` +torch/fx/experimental/symbolic_shapes.py:5074:17: error[invalid-assignment] Invalid subscript assignment with key of type `Unknown` and value of type `int` on object of type `dict[Symbol, Integer]` +torch/fx/experimental/symbolic_shapes.py:5379:30: error[invalid-assignment] Object of type `list[StatelessSymbolicContext[Unknown, Unknown] | None | Unknown]` is not assignable to `list[SymbolicContext] | None` +torch/fx/experimental/symbolic_shapes.py:5677:62: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[SymbolicContext]`, found `list[SymbolicContext] | None` +torch/fx/experimental/symbolic_shapes.py:6000:61: error[invalid-argument-type] Argument to bound method `doprint` is incorrect: Expected `Expr`, found `And` +torch/fx/experimental/symbolic_shapes.py:6069:57: warning[possibly-missing-import] Member `PopulateValidator` of module `torch.fx.experimental.validator` may be missing +torch/fx/experimental/symbolic_shapes.py:6174:19: error[invalid-assignment] Object of type `set[Unknown]` is not assignable to `Sequence[SymInt]` +torch/fx/experimental/symbolic_shapes.py:6258:28: error[no-matching-overload] No overload of bound method `get` matches arguments +torch/fx/experimental/symbolic_shapes.py:6636:34: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[Symbol, CapturedTraceback].__getitem__(key: Symbol, /) -> CapturedTraceback` cannot be called with key of type `Basic` on object of type `dict[Symbol, CapturedTraceback]` +torch/fx/experimental/symbolic_shapes.py:7584:50: error[invalid-argument-type] Argument to bound method `_log_suppressed_dde` is incorrect: Expected `SymBool`, found `Basic & ~BooleanTrue & ~BooleanFalse` +torch/fx/experimental/symbolic_shapes.py:7585:32: error[invalid-return-type] Return type does not match returned value: expected `Basic`, found `bool` +torch/fx/experimental/symbolic_shapes.py:7717:21: error[invalid-argument-type] Method `__getitem__` of type `bound method Counter[Symbol].__getitem__(key: Symbol, /) -> int` cannot be called with key of type `Basic` on object of type `Counter[Symbol]` +torch/fx/experimental/symbolic_shapes.py:7722:29: error[invalid-argument-type] Method `__getitem__` of type `bound method Counter[Symbol].__getitem__(key: Symbol, /) -> int` cannot be called with key of type `Basic` on object of type `Counter[Symbol]` +torch/fx/experimental/symbolic_shapes.py:7783:20: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `Basic` +torch/fx/experimental/symbolic_shapes.py:7855:56: error[unresolved-attribute] Object of type `Expr` has no attribute `is_integer` +torch/fx/experimental/symbolic_shapes.py:7999:22: error[unresolved-attribute] Object of type `Basic` has no attribute `name` +torch/fx/experimental/symbolic_shapes.py:7999:59: error[unresolved-attribute] Object of type `Basic` has no attribute `name` +torch/fx/experimental/symbolic_shapes.py:8020:25: error[unresolved-attribute] Object of type `Basic` has no attribute `name` +torch/fx/experimental/validator.py:387:47: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/fx/experimental/validator.py:389:25: error[unresolved-attribute] Module `torch` has no member `int64` +torch/fx/experimental/validator.py:391:25: error[unresolved-attribute] Module `torch` has no member `double` +torch/fx/experimental/validator.py:393:25: error[unresolved-attribute] Module `torch` has no member `bool` +torch/fx/experimental/validator.py:397:51: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/fx/experimental/validator.py:398:25: error[unresolved-attribute] Module `torch` has no member `float64` +torch/fx/experimental/validator.py:402:55: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/fx/experimental/validator.py:405:55: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/fx/experimental/validator.py:435:54: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/fx/experimental/validator.py:438:55: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/fx/graph.py:23:22: error[unresolved-import] Module `torch._C` has no member `_fx_map_arg` +torch/fx/graph.py:23:46: error[unresolved-import] Module `torch._C` has no member `_NodeIter` +torch/fx/graph.py:89:64: error[unresolved-attribute] Module `torch` has no member `device` +torch/fx/graph.py:476:48: error[unresolved-attribute] Module `torch` has no member `device` +torch/fx/graph.py:684:21: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/fx/graph.py:685:21: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/fx/graph.py:757:25: error[unresolved-attribute] Object of type `(((...) -> Any) & (() -> object)) | (str & (() -> object))` has no attribute `__name__` +torch/fx/graph.py:762:42: error[unresolved-attribute] Object of type `(((...) -> Any) & (() -> object)) | (str & (() -> object))` has no attribute `__name__` +torch/fx/graph.py:770:25: error[unresolved-attribute] Object of type `(((...) -> Any) & (() -> object)) | (str & (() -> object))` has no attribute `__name__` +torch/fx/graph.py:773:44: error[unresolved-attribute] Object of type `(((...) -> Any) & (() -> object)) | (str & (() -> object))` has no attribute `__name__` +torch/fx/graph.py:1786:18: error[unresolved-attribute] Object of type `(((...) -> Any) & (() -> object)) | (str & (() -> object))` has no attribute `__name__` +torch/fx/graph.py:2072:12: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/fx/graph_module.py:195:23: warning[unsupported-base] Unsupported class base with type `(Any & ~None) | ` +torch/fx/graph_module.py:484:23: error[invalid-assignment] Object of type `type` is not assignable to `type[GraphModule]` +torch/fx/graph_module.py:523:17: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `training` on type `Self@__init__` with custom `__setattr__` method. +torch/fx/graph_module.py:566:9: error[unresolved-attribute] Cannot assign object of type `Graph` to attribute `graph` on type `Self@__init__` with custom `__setattr__` method. +torch/fx/graph_module.py:573:9: error[unresolved-attribute] Cannot assign object of type `None` to attribute `_tracer_cls` on type `Self@__init__` with custom `__setattr__` method. +torch/fx/graph_module.py:581:9: error[unresolved-attribute] Cannot assign object of type `dict[Unknown, Unknown]` to attribute `_tracer_extras` on type `Self@__init__` with custom `__setattr__` method. +torch/fx/graph_module.py:583:13: error[unresolved-attribute] Cannot assign object of type `(Unknown & ~AlwaysFalsy) | (dict[str, Any] & ~AlwaysFalsy)` to attribute `_tracer_extras` on type `Self@__init__` with custom `__setattr__` method. +torch/fx/graph_module.py:592:9: error[unresolved-attribute] Cannot assign object of type `None` to attribute `shape_env` on type `Self@__init__` with custom `__setattr__` method. +torch/fx/graph_module.py:619:9: error[unresolved-attribute] Cannot assign object of type `Graph` to attribute `_graph` on type `Self@graph` with custom `__setattr__` method. +torch/fx/graph_module.py:865:13: error[unresolved-attribute] Cannot assign object of type `TreeSpec` to attribute `_in_spec` on type `Self@recompile` with custom `__setattr__` method. +torch/fx/graph_module.py:866:13: error[unresolved-attribute] Cannot assign object of type `TreeSpec | None` to attribute `_out_spec` on type `Self@recompile` with custom `__setattr__` method. +torch/fx/interpreter.py:146:25: error[no-matching-overload] No overload of function `__new__` matches arguments +torch/fx/interpreter.py:181:23: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | _node_list | Tensor | Module` +torch/fx/interpreter.py:190:21: error[not-iterable] Object of type `Unknown | _node_list | Tensor | Module` may not be iterable +torch/fx/interpreter.py:250:41: error[not-iterable] Object of type `Unknown | _node_list | Tensor | Module` may not be iterable +torch/fx/interpreter.py:651:36: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | _node_list | Tensor | Module` +torch/fx/node.py:12:22: error[unresolved-import] Module `torch._C` has no member `_fx_map_aggregate` +torch/fx/node.py:12:41: error[unresolved-import] Module `torch._C` has no member `_fx_map_arg` +torch/fx/node.py:12:54: error[unresolved-import] Module `torch._C` has no member `_NodeBase` +torch/fx/node.py:37:5: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/fx/node.py:39:5: error[unresolved-attribute] Module `torch` has no member `device` +torch/fx/node.py:40:5: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/fx/node.py:41:5: error[unresolved-attribute] Module `torch` has no member `layout` +torch/fx/node.py:83:5: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/fx/node.py:92:5: error[unresolved-attribute] Module `torch` has no member `_assert_async` +torch/fx/node.py:119:12: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +torch/fx/node.py:153:26: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +torch/fx/node.py:154:16: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +torch/fx/node.py:161:13: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__qualname__` +torch/fx/node.py:161:44: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +torch/fx/node.py:163:32: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +torch/fx/node.py:164:12: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__name__` +torch/fx/node.py:183:16: error[call-non-callable] Object of type `object` is not callable +torch/fx/node.py:640:21: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/fx/node.py:641:21: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/fx/node.py:738:17: error[unresolved-attribute] Module `torch` has no member `rand` +torch/fx/node.py:739:17: error[unresolved-attribute] Module `torch` has no member `randn` +torch/fx/node.py:740:17: error[unresolved-attribute] Module `torch` has no member `randint` +torch/fx/node.py:741:17: error[unresolved-attribute] Module `torch` has no member `randperm` +torch/fx/node.py:742:17: error[unresolved-attribute] Module `torch` has no member `rand_like` +torch/fx/node.py:743:17: error[unresolved-attribute] Module `torch` has no member `randn_like` +torch/fx/node.py:744:17: error[unresolved-attribute] Module `torch` has no member `randint_like` +torch/fx/node.py:745:17: error[unresolved-attribute] Module `torch` has no member `normal` +torch/fx/node.py:746:17: error[unresolved-attribute] Module `torch` has no member `poisson` +torch/fx/node.py:747:17: error[unresolved-attribute] Module `torch` has no member `bernoulli` +torch/fx/node.py:748:17: error[unresolved-attribute] Module `torch` has no member `multinomial` +torch/fx/operator_schemas.py:61:19: error[unresolved-attribute] Module `torch` has no member `nonzero` +torch/fx/operator_schemas.py:73:15: error[unresolved-attribute] Module `torch` has no member `device` +torch/fx/operator_schemas.py:74:15: error[unresolved-attribute] Module `torch` has no member `layout` +torch/fx/operator_schemas.py:78:16: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/fx/operator_schemas.py:82:10: error[invalid-legacy-type-variable] A `TypeVar` definition must be a simple variable assignment +torch/fx/operator_schemas.py:89:48: error[unresolved-attribute] Module `torch._C` has no member `JitType` +torch/fx/operator_schemas.py:99:16: error[unresolved-attribute] Module `torch._C` has no member `FunctionSchema` +torch/fx/operator_schemas.py:155:16: error[unresolved-attribute] Module `torch._C` has no member `FunctionSchema` +torch/fx/operator_schemas.py:233:19: error[unresolved-attribute] Module `torch.jit` has no member `_builtins` +torch/fx/operator_schemas.py:237:19: error[unresolved-attribute] Module `torch._C` has no member `_jit_get_schemas_for_operator` +torch/fx/operator_schemas.py:328:51: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/fx/operator_schemas.py:382:18: error[invalid-assignment] Object of type `object` is not assignable to `(...) -> Unknown` +torch/fx/passes/_tensorify_python_scalars.py:94:2: error[unresolved-attribute] Module `torch.fx` has no member `_compatibility` +torch/fx/passes/_tensorify_python_scalars.py:157:25: error[unresolved-attribute] Module `torch` has no member `bool` +torch/fx/passes/_tensorify_python_scalars.py:160:25: error[unresolved-attribute] Module `torch` has no member `int64` +torch/fx/passes/_tensorify_python_scalars.py:163:25: error[unresolved-attribute] Module `torch` has no member `float64` +torch/fx/passes/_tensorify_python_scalars.py:228:46: error[unresolved-attribute] Module `torch` has no member `float64` +torch/fx/passes/_tensorify_python_scalars.py:296:46: error[unresolved-attribute] Module `torch` has no member `bool` +torch/fx/passes/dialect/common/cse_pass.py:45:2: error[unresolved-attribute] Module `torch.fx` has no member `_compatibility` +torch/fx/passes/dialect/common/cse_pass.py:50:2: error[unresolved-attribute] Module `torch.fx` has no member `_compatibility` +torch/fx/passes/graph_drawer.py:18:12: error[unresolved-import] Cannot resolve imported module `pydot` +torch/fx/passes/graph_drawer.py:349:21: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/fx/passes/graph_drawer.py:350:21: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/fx/passes/graph_drawer.py:361:21: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/fx/passes/graph_drawer.py:362:21: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/fx/passes/graph_drawer.py:363:21: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/fx/passes/graph_drawer.py:441:17: warning[possibly-missing-attribute] Attribute `add_node` may be missing on object of type `Unknown | None` +torch/fx/passes/graph_manipulation.py:44:5: error[unresolved-attribute] Cannot assign object of type `Graph` to attribute `graph` on type `GraphModule` with custom `__setattr__` method. +torch/fx/passes/graph_manipulation.py:106:31: error[unresolved-attribute] Module `torch` has no member `_empty_affine_quantized` +torch/fx/passes/graph_manipulation.py:110:31: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/fx/passes/infra/pass_manager.py:35:16: error[invalid-return-type] Return type does not match returned value: expected `(...) -> Unknown`, found `None` +torch/fx/passes/net_min_base.py:721:34: warning[redundant-cast] Value is already of type `int` +torch/fx/passes/net_min_base.py:721:62: warning[redundant-cast] Value is already of type `int` +torch/fx/passes/operator_support.py:28:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/fx/passes/operator_support.py:29:30: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/fx/passes/operator_support.py:191:44: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/fx/passes/pass_manager.py:224:52: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__name__` +torch/fx/passes/pass_manager.py:231:16: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__name__` +torch/fx/passes/regional_inductor.py:178:10: error[unresolved-attribute] Module `torch.fx` has no member `traceback` +torch/fx/passes/reinplace.py:546:67: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/fx/passes/reinplace.py:567:24: error[unresolved-attribute] Module `torch` has no member `_debug_has_internal_overlap` +torch/fx/passes/reinplace.py:732:64: warning[possibly-missing-attribute] Attribute `meta` may be missing on object of type `Unknown | Divergent | Sequence[Divergent] | ... omitted 14 union elements` +torch/fx/passes/runtime_assert.py:149:72: error[unresolved-attribute] Module `torch` has no member `Size` +torch/fx/passes/shape_prop.py:25:12: error[unresolved-attribute] Module `torch` has no member `Size` +torch/fx/passes/shape_prop.py:26:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/fx/passes/shape_prop.py:29:29: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/fx/passes/shape_prop.py:55:13: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/fx/passes/shape_prop.py:56:13: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/fx/passes/shape_prop.py:57:13: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/fx/passes/shape_prop.py:71:24: error[unresolved-attribute] Module `torch` has no member `per_tensor_affine` +torch/fx/passes/shape_prop.py:71:49: error[unresolved-attribute] Module `torch` has no member `per_tensor_symmetric` +torch/fx/passes/shape_prop.py:75:13: error[unresolved-attribute] Module `torch` has no member `per_channel_affine` +torch/fx/passes/shape_prop.py:76:13: error[unresolved-attribute] Module `torch` has no member `per_channel_affine_float_qparams` +torch/fx/passes/shape_prop.py:77:13: error[unresolved-attribute] Module `torch` has no member `per_channel_symmetric` +torch/fx/passes/split_module.py:285:9: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/fx/passes/split_module.py:329:31: error[unresolved-attribute] Module `torch._C` has no member `_set_grad_enabled` +torch/fx/passes/split_module.py:355:24: error[invalid-assignment] Object of type `dict[Node | Unknown, list[int] | Unknown]` is not assignable to `OrderedDict[Node, set[int]]` +torch/fx/passes/split_module.py:357:20: error[invalid-assignment] Object of type `dict[Node | Unknown, list[int] | Unknown]` is not assignable to `OrderedDict[Node, set[int]]` +torch/fx/passes/split_module.py:422:28: error[non-subscriptable] Cannot subscript object of type `set[int]` with no `__getitem__` method +torch/fx/passes/split_module.py:424:22: error[non-subscriptable] Cannot subscript object of type `set[int]` with no `__getitem__` method +torch/fx/passes/split_module.py:524:22: error[non-subscriptable] Cannot subscript object of type `set[int]` with no `__getitem__` method +torch/fx/passes/tools_common.py:73:24: error[unresolved-attribute] Object of type `((...) -> Any) | str` has no attribute `__name__` +torch/fx/passes/tools_common.py:75:38: error[invalid-argument-type] Argument to function `_get_qualified_name` is incorrect: Expected `(...) -> Any`, found `((...) -> Any) | str` +torch/fx/passes/tools_common.py:318:5: error[unresolved-attribute] Cannot assign object of type `Graph` to attribute `graph` on type `GraphModule` with custom `__setattr__` method. +torch/fx/passes/utils/matcher_utils.py:281:27: error[unresolved-attribute] Object of type `object` has no attribute `arguments` +torch/fx/proxy.py:19:22: error[unresolved-import] Module `torch._C` has no member `_fx_map_aggregate` +torch/fx/proxy.py:19:58: error[unresolved-import] Module `torch._C` has no member `_fx_map_arg` +torch/fx/proxy.py:296:9: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `(Node, /) -> Proxy` +torch/fx/proxy.py:560:16: error[invalid-return-type] Return type does not match returned value: expected `dict[Unknown, Unknown]`, found `Proxy` +torch/fx/proxy.py:658:36: error[unresolved-attribute] Module `torch._C` has no member `ScriptMethod` +torch/hub.py:64:10: error[unresolved-import] Cannot resolve imported module `tqdm` +torch/hub.py:885:16: warning[deprecated] The function `_legacy_zip_load` is deprecated: Falling back to the old format < 1.6. This support will be deprecated in favor of default zipfile format introduced in 1.6. Please redo torch.save() to save it in the new zipfile format. +torch/jit/__init__.py:117:12: error[unresolved-attribute] Module `torch._C` has no member `_export_opnames` +torch/jit/__init__.py:121:9: error[unresolved-attribute] Module `torch._C` has no member `JITException` +torch/jit/__init__.py:259:16: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/jit/__init__.py:284:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_llga_enabled` +torch/jit/__init__.py:289:12: error[unresolved-attribute] Module `torch._C` has no member `_jit_llga_enabled` +torch/jit/__init__.py:294:8: error[unresolved-attribute] Module `torch._C` has no member `_jit_init` +torch/jit/_async.py:99:12: error[unresolved-attribute] Module `torch._C` has no member `fork` +torch/jit/_async.py:112:12: error[unresolved-attribute] Module `torch._C` has no member `wait` +torch/jit/_await.py:13:12: error[unresolved-attribute] Module `torch._C` has no member `_awaitable` +torch/jit/_await.py:18:12: error[unresolved-attribute] Module `torch._C` has no member `_awaitable_wait` +torch/jit/_await.py:23:12: error[unresolved-attribute] Module `torch._C` has no member `_awaitable_nowait` +torch/jit/_builtins.py:23:5: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/jit/_builtins.py:104:6: error[unresolved-attribute] Module `torch._C` has no member `_infer_size` +torch/jit/_builtins.py:114:6: error[unresolved-attribute] Module `torch._C` has no member `_get_tracing_state` +torch/jit/_builtins.py:115:6: error[unresolved-attribute] Module `torch._C` has no member `_get_cpu_capability` +torch/jit/_builtins.py:121:6: error[unresolved-attribute] Module `torch._VF` has no member `unique_dim` +torch/jit/_builtins.py:123:6: error[unresolved-attribute] Module `torch._VF` has no member `nuclear_norm` +torch/jit/_builtins.py:124:6: error[unresolved-attribute] Module `torch._VF` has no member `frobenius_norm` +torch/jit/_builtins.py:189:30: warning[possibly-missing-attribute] Member `get_gradients` may be missing on module `torch.distributed.autograd` +torch/jit/_builtins.py:190:30: warning[possibly-missing-attribute] Member `backward` may be missing on module `torch.distributed.autograd` +torch/jit/_decomposition_utils.py:6:52: error[unresolved-attribute] Module `torch._C` has no member `Graph` +torch/jit/_decomposition_utils.py:12:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_register_decomposition_for_schema` +torch/jit/_decompositions.py:81:16: error[unresolved-attribute] Object of type `(...) -> _T@register_decomposition` has no attribute `__name__` +torch/jit/_decompositions.py:82:41: error[unresolved-attribute] Object of type `(...) -> _T@register_decomposition` has no attribute `__name__` +torch/jit/_decompositions.py:84:31: error[unresolved-attribute] Object of type `(...) -> _T@register_decomposition` has no attribute `__name__` +torch/jit/_decompositions.py:87:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_inline` +torch/jit/_decompositions.py:90:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_peephole` +torch/jit/_decompositions.py:91:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_constant_propagation` +torch/jit/_freeze.py:117:33: error[unresolved-attribute] Module `torch._C` has no member `_freeze_module` +torch/jit/_freeze.py:174:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_optimize_frozen_graph` +torch/jit/_freeze.py:180:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_optimize_frozen_graph` +torch/jit/_freeze.py:232:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_optimize_for_inference` +torch/jit/_fuser.py:10:19: error[unresolved-attribute] Module `torch._C` has no member `_get_graph_executor_optimize` +torch/jit/_fuser.py:11:5: error[unresolved-attribute] Module `torch._C` has no member `_set_graph_executor_optimize` +torch/jit/_fuser.py:15:9: error[unresolved-attribute] Module `torch._C` has no member `_set_graph_executor_optimize` +torch/jit/_fuser.py:28:20: error[unresolved-attribute] Module `torch._C` has no member `_jit_can_fuse_on_cpu` +torch/jit/_fuser.py:29:20: error[unresolved-attribute] Module `torch._C` has no member `_jit_can_fuse_on_gpu` +torch/jit/_fuser.py:30:29: error[unresolved-attribute] Module `torch._C` has no member `_jit_texpr_fuser_enabled` +torch/jit/_fuser.py:31:25: error[unresolved-attribute] Module `torch._C` has no member `_jit_nvfuser_enabled` +torch/jit/_fuser.py:32:22: error[unresolved-attribute] Module `torch._C` has no member `_jit_llga_enabled` +torch/jit/_fuser.py:34:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_override_can_fuse_on_cpu` +torch/jit/_fuser.py:35:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_override_can_fuse_on_gpu` +torch/jit/_fuser.py:36:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_texpr_fuser_enabled` +torch/jit/_fuser.py:37:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_nvfuser_enabled` +torch/jit/_fuser.py:38:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_llga_enabled` +torch/jit/_fuser.py:40:34: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_profiling_executor` +torch/jit/_fuser.py:41:30: error[unresolved-attribute] Module `torch._C` has no member `_get_graph_executor_optimize` +torch/jit/_fuser.py:42:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_override_can_fuse_on_cpu` +torch/jit/_fuser.py:43:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_override_can_fuse_on_gpu` +torch/jit/_fuser.py:44:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_texpr_fuser_enabled` +torch/jit/_fuser.py:45:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_nvfuser_enabled` +torch/jit/_fuser.py:46:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_llga_enabled` +torch/jit/_fuser.py:48:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_override_can_fuse_on_cpu` +torch/jit/_fuser.py:49:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_override_can_fuse_on_gpu` +torch/jit/_fuser.py:50:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_texpr_fuser_enabled` +torch/jit/_fuser.py:51:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_nvfuser_enabled` +torch/jit/_fuser.py:52:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_llga_enabled` +torch/jit/_fuser.py:54:34: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_profiling_executor` +torch/jit/_fuser.py:55:30: error[unresolved-attribute] Module `torch._C` has no member `_get_graph_executor_optimize` +torch/jit/_fuser.py:56:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_override_can_fuse_on_cpu` +torch/jit/_fuser.py:57:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_override_can_fuse_on_gpu` +torch/jit/_fuser.py:58:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_texpr_fuser_enabled` +torch/jit/_fuser.py:59:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_nvfuser_enabled` +torch/jit/_fuser.py:60:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_llga_enabled` +torch/jit/_fuser.py:62:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_override_can_fuse_on_cpu` +torch/jit/_fuser.py:63:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_override_can_fuse_on_gpu` +torch/jit/_fuser.py:64:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_texpr_fuser_enabled` +torch/jit/_fuser.py:65:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_nvfuser_enabled` +torch/jit/_fuser.py:66:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_llga_enabled` +torch/jit/_fuser.py:76:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_override_can_fuse_on_cpu` +torch/jit/_fuser.py:77:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_override_can_fuse_on_gpu` +torch/jit/_fuser.py:78:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_texpr_fuser_enabled` +torch/jit/_fuser.py:79:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_nvfuser_enabled` +torch/jit/_fuser.py:80:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_llga_enabled` +torch/jit/_fuser.py:83:33: error[unresolved-attribute] Module `torch._C` has no member `_last_executed_optimized_graph` +torch/jit/_fuser.py:108:26: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/jit/_fuser.py:160:12: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_fusion_strategy` +torch/jit/_ir_utils.py:10:29: error[unresolved-attribute] Module `torch._C` has no member `Graph` +torch/jit/_ir_utils.py:11:29: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/jit/_ir_utils.py:11:44: error[unresolved-attribute] Module `torch._C` has no member `Block` +torch/jit/_ir_utils.py:31:11: error[unresolved-attribute] Module `torch._C` has no member `Graph` +torch/jit/_ir_utils.py:31:47: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/jit/_ir_utils.py:31:62: error[unresolved-attribute] Module `torch._C` has no member `Block` +torch/jit/_logging.py:6:14: error[unresolved-attribute] Module `torch._C` has no member `_logging_set_logger` +torch/jit/_logging.py:7:17: error[unresolved-attribute] Module `torch._C` has no member `LockingLogger` +torch/jit/_logging.py:8:19: error[unresolved-attribute] Module `torch._C` has no member `AggregationType` +torch/jit/_logging.py:9:14: error[unresolved-attribute] Module `torch._C` has no member `NoopLogger` +torch/jit/_monkeytype_config.py:19:10: error[unresolved-import] Cannot resolve imported module `monkeytype` +torch/jit/_monkeytype_config.py:155:20: error[invalid-return-type] Return type does not match returned value: expected `torch.jit._monkeytype_config.JitTypeTraceStoreLogger @ torch/jit/_monkeytype_config.py:85`, found `torch.jit._monkeytype_config.JitTypeTraceStoreLogger @ torch/jit/_monkeytype_config.py:85 | torch.jit._monkeytype_config.JitTypeTraceStoreLogger @ torch/jit/_monkeytype_config.py:166` +torch/jit/_passes/_property_propagation.py:11:19: error[unresolved-import] Module `torch` has no member `TensorType` +torch/jit/_passes/_property_propagation.py:12:22: error[unresolved-import] Module `torch._C` has no member `Graph` +torch/jit/_passes/_property_propagation.py:26:32: error[unresolved-attribute] Module `torch._C` has no member `ClassType` +torch/jit/_recursive.py:58:20: error[unresolved-attribute] Module `torch.jit` has no member `frontend` +torch/jit/_recursive.py:59:24: error[unresolved-attribute] Module `torch._C` has no member `_jit_script_class_compile` +torch/jit/_recursive.py:128:5: error[unresolved-attribute] Module `torch` has no member `device` +torch/jit/_recursive.py:129:5: error[unresolved-attribute] Module `torch` has no member `layout` +torch/jit/_recursive.py:130:5: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/jit/_recursive.py:131:5: error[unresolved-attribute] Module `torch` has no member `qscheme` +torch/jit/_recursive.py:154:21: error[unresolved-attribute] Module `torch._C` has no member `_jit_tree_views` +torch/jit/_recursive.py:189:29: error[unresolved-attribute] Module `torch._C` has no member `ConcreteModuleTypeBuilder` +torch/jit/_recursive.py:224:31: error[unresolved-attribute] Module `torch.jit` has no member `annotations` +torch/jit/_recursive.py:227:29: error[unresolved-attribute] Module `torch._C` has no member `InferredType` +torch/jit/_recursive.py:229:31: error[unresolved-attribute] Module `torch.jit` has no member `annotations` +torch/jit/_recursive.py:230:29: error[unresolved-attribute] Module `torch._C` has no member `InferredType` +torch/jit/_recursive.py:232:29: error[unresolved-attribute] Module `torch._C` has no member `_jit_try_infer_type` +torch/jit/_recursive.py:277:33: error[unresolved-attribute] Module `torch._C` has no member `ConcreteModuleType` +torch/jit/_recursive.py:364:27: error[unresolved-attribute] Module `torch._C` has no member `_jit_try_infer_type` +torch/jit/_recursive.py:389:23: error[unresolved-attribute] Module `torch._C` has no member `_jit_try_infer_type` +torch/jit/_recursive.py:423:41: error[unresolved-attribute] Module `torch._C` has no member `ConcreteModuleType` +torch/jit/_recursive.py:424:27: error[unresolved-attribute] Module `torch._C` has no member `ConcreteModuleType` +torch/jit/_recursive.py:526:18: error[unresolved-attribute] Module `torch._C` has no member `_create_object_with_type` +torch/jit/_recursive.py:568:18: error[unresolved-attribute] Module `torch._C` has no member `_create_module_with_type` +torch/jit/_recursive.py:594:40: error[unresolved-attribute] Module `torch._C` has no member `InterfaceType` +torch/jit/_recursive.py:635:9: error[unresolved-attribute] Module `torch._C` has no member `_run_emit_module_hook` +torch/jit/_recursive.py:781:17: error[unresolved-attribute] Module `torch.jit` has no member `annotations` +torch/jit/_recursive.py:802:23: error[unresolved-attribute] Module `torch._C` has no member `_replace_overloaded_method_decl` +torch/jit/_recursive.py:1006:33: error[unresolved-attribute] Module `torch._C` has no member `ModuleDict` +torch/jit/_recursive.py:1008:40: error[unresolved-attribute] Module `torch._C` has no member `ConcreteModuleType` +torch/jit/_script.py:32:5: warning[possibly-missing-import] Member `monkeytype_trace` of module `torch.jit._monkeytype_config` may be missing +torch/jit/_script.py:64:18: error[unresolved-attribute] Module `torch._C` has no member `ScriptFunction` +torch/jit/_script.py:236:26: error[unresolved-attribute] Module `torch._C` has no member `ModuleDict` +torch/jit/_script.py:325:21: error[unresolved-attribute] Module `torch.jit` has no member `_recursive` +torch/jit/_script.py:401:44: error[unresolved-attribute] Module `torch._C` has no member `PyTorchFileReader` +torch/jit/_script.py:406:10: error[unresolved-attribute] Module `torch._C` has no member `CompilationUnit` +torch/jit/_script.py:407:18: error[unresolved-attribute] Module `torch._C` has no member `_import_ir_module_from_package` +torch/jit/_script.py:561:38: error[invalid-argument-type] Argument to function `isinstance` is incorrect: Expected `type | UnionType | tuple[Divergent, ...]`, found `@Todo | (def Attribute(value, type) -> Unknown)` +torch/jit/_script.py:593:19: error[unresolved-attribute] Module `torch._C` has no member `_parse_source_def` +torch/jit/_script.py:673:13: warning[possibly-missing-attribute] Attribute `_finalize_scriptmodule` may be missing on object of type ` | ` +torch/jit/_script.py:679:17: error[unresolved-attribute] Module `torch._C` has no member `ParameterDict` +torch/jit/_script.py:682:17: error[unresolved-attribute] Module `torch._C` has no member `BufferDict` +torch/jit/_script.py:699:35: error[unresolved-attribute] Module `torch._C` has no member `ConcreteModuleType` +torch/jit/_script.py:705:37: error[unresolved-attribute] Module `torch._C` has no member `ModuleDict` +torch/jit/_script.py:717:38: error[unresolved-attribute] Module `torch._C` has no member `ScriptMethod` +torch/jit/_script.py:889:20: error[unresolved-attribute] Module `torch.jit` has no member `_recursive` +torch/jit/_script.py:892:20: error[unresolved-attribute] Module `torch.jit` has no member `_recursive` +torch/jit/_script.py:949:20: warning[possibly-missing-attribute] Attribute `_construct` may be missing on object of type ` | ` +torch/jit/_script.py:1188:16: error[unresolved-attribute] Module `torch.jit` has no member `_recursive` +torch/jit/_script.py:1189:18: error[unresolved-attribute] Module `torch.jit` has no member `_recursive` +torch/jit/_script.py:1250:14: error[unresolved-attribute] Module `torch._C` has no member `_jit_script_compile` +torch/jit/_script.py:1262:16: error[unresolved-attribute] Module `torch.jit` has no member `_recursive` +torch/jit/_script.py:1513:19: error[unresolved-attribute] Module `torch.jit` has no member `frontend` +torch/jit/_script.py:1523:26: error[unresolved-attribute] Module `torch.jit` has no member `annotations` +torch/jit/_script.py:1533:10: error[unresolved-attribute] Module `torch._C` has no member `_jit_script_compile_overload` +torch/jit/_script.py:1652:25: error[unresolved-attribute] Module `torch._C` has no member `_jit_script_interface_compile` +torch/jit/_script.py:1663:19: error[unresolved-attribute] Module `torch._C` has no member `CallStack` +torch/jit/_script.py:1668:19: error[unresolved-attribute] Module `torch._C` has no member `CompilationUnit` +torch/jit/_script.pyi:20:5: warning[possibly-missing-import] Member `monkeytype_trace` of module `torch.jit._monkeytype_config` may be missing +torch/jit/_script.pyi:53:18: error[unresolved-attribute] Module `torch._C` has no member `ScriptFunction` +torch/jit/_script.pyi:140:24: error[unresolved-attribute] Module `torch` has no member `Graph` +torch/jit/_script.pyi:142:32: error[unresolved-attribute] Module `torch` has no member `Graph` +torch/jit/_script.pyi:205:6: error[unresolved-attribute] Module `torch` has no member `ScriptDict` +torch/jit/_script.pyi:213:6: error[unresolved-attribute] Module `torch` has no member `ScriptList` +torch/jit/_serialization.py:190:10: error[unresolved-attribute] Module `torch._C` has no member `CompilationUnit` +torch/jit/_serialization.py:192:22: error[unresolved-attribute] Module `torch._C` has no member `import_ir_module` +torch/jit/_serialization.py:201:22: error[unresolved-attribute] Module `torch._C` has no member `import_ir_module_from_buffer` +torch/jit/_serialization.py:219:24: error[unresolved-attribute] Module `torch` has no member `device` +torch/jit/_serialization.py:220:64: error[unresolved-attribute] Module `torch` has no member `device` +torch/jit/_serialization.py:235:32: error[unresolved-attribute] Module `torch._C` has no member `_load_jit_module_from_file` +torch/jit/_serialization.py:237:32: error[unresolved-attribute] Module `torch._C` has no member `_load_jit_module_from_bytes` +torch/jit/_serialization.py:284:9: error[unresolved-attribute] Module `torch._C` has no member `_save_jit_module` +torch/jit/_serialization.py:286:13: error[unresolved-attribute] Module `torch._C` has no member `_save_jit_module_to_bytes` +torch/jit/_serialization.py:315:12: error[unresolved-attribute] Module `torch._C` has no member `_get_module_info_from_flatbuffer` +torch/jit/_shape_functions.py:1190:12: error[unresolved-attribute] Module `torch._C` has no member `ScriptFunction` +torch/jit/_shape_functions.py:1200:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_inline` +torch/jit/_shape_functions.py:1203:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_peephole` +torch/jit/_shape_functions.py:1204:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_constant_propagation` +torch/jit/_state.py:62:14: error[unresolved-attribute] Module `torch._C` has no member `CompilationUnit` +torch/jit/_trace.py:39:12: error[unresolved-attribute] Module `torch._C` has no member `_jit_flatten` +torch/jit/_trace.py:40:14: error[unresolved-attribute] Module `torch._C` has no member `_jit_unflatten` +torch/jit/_trace.py:101:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[True]` to attribute `strict` on type `Self@__init__` with custom `__setattr__` method. +torch/jit/_trace.py:102:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[False]` to attribute `_force_outplace` on type `Self@__init__` with custom `__setattr__` method. +torch/jit/_trace.py:103:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[False]` to attribute `_return_inputs` on type `Self@__init__` with custom `__setattr__` method. +torch/jit/_trace.py:104:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[False]` to attribute `_return_inputs_states` on type `Self@__init__` with custom `__setattr__` method. +torch/jit/_trace.py:127:49: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/jit/_trace.py:140:23: error[unresolved-attribute] Module `torch._C` has no member `_create_graph_by_tracing` +torch/jit/_trace.py:164:63: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/jit/_trace.py:171:42: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/jit/_trace.py:202:33: error[unresolved-attribute] Module `torch` has no member `sum` +torch/jit/_trace.py:263:23: error[unresolved-attribute] Module `torch` has no member `sum` +torch/jit/_trace.py:270:44: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/jit/_trace.py:276:44: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/jit/_trace.py:341:31: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `(Unknown & ~Tensor) | tuple[Unknown & Tensor]` +torch/jit/_trace.py:350:35: error[unresolved-attribute] Module `torch._C` has no member `CompilationUnit` +torch/jit/_trace.py:386:33: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_canonicalize` +torch/jit/_trace.py:387:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_inline` +torch/jit/_trace.py:388:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_erase_shape_information` +torch/jit/_trace.py:391:35: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_canonicalize` +torch/jit/_trace.py:392:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_inline` +torch/jit/_trace.py:393:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_erase_shape_information` +torch/jit/_trace.py:530:37: error[unresolved-attribute] Module `torch` has no member `cdouble` +torch/jit/_trace.py:531:36: error[unresolved-attribute] Module `torch` has no member `cdouble` +torch/jit/_trace.py:610:1: error[unresolved-attribute] Module `torch._C` has no member `_tracer_warn_use_python` +torch/jit/_trace.py:625:10: error[unresolved-attribute] Module `torch` has no member `_jit_internal` +torch/jit/_trace.py:626:34: error[unresolved-attribute] Module `torch.jit` has no member `_recursive` +torch/jit/_trace.py:627:16: error[unresolved-attribute] Module `torch.jit` has no member `_recursive` +torch/jit/_trace.py:664:20: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/jit/_trace.py:747:32: error[invalid-argument-type] Argument to class `tuple` is incorrect: Expected `Iterable[object]`, found `(Unknown & ~tuple[object, ...]) | None` +torch/jit/_trace.py:760:18: error[unresolved-attribute] Module `torch._C` has no member `_create_function_from_trace_with_dict` +torch/jit/_trace.py:770:18: error[unresolved-attribute] Module `torch._C` has no member `_create_function_from_trace` +torch/jit/_trace.py:1263:12: error[unresolved-attribute] Module `torch._C` has no member `_is_tracing` +torch/jit/_trace.py:1310:17: error[unresolved-attribute] Module `torch._C` has no member `_jit_is_script_object` +torch/jit/_trace.py:1329:25: error[unresolved-attribute] Module `torch.jit` has no member `_recursive` +torch/jit/frontend.py:73:62: warning[possibly-missing-import] Member `monkeytype_trace` of module `torch.jit._monkeytype_config` may be missing +torch/jit/frontend.py:156:29: error[unresolved-attribute] Module `torch._C` has no member `ErrorReport` +torch/jit/frontend.py:272:14: error[unresolved-attribute] Module `torch._C` has no member `ErrorReport` +torch/jit/frontend.py:435:29: error[unresolved-attribute] Module `torch._C` has no member `parse_type_comment` +torch/jit/frontend.py:436:16: error[unresolved-attribute] Module `torch._C` has no member `merge_type_from_type_comment` +torch/jit/frontend.py:1093:36: warning[deprecated] The class `Index` is deprecated: Deprecated since Python 3.9. Use the index value directly instead. +torch/jit/frontend.py:1108:28: warning[deprecated] The class `Index` is deprecated: Deprecated since Python 3.9. Use the index value directly instead. +torch/jit/frontend.py:1131:30: warning[deprecated] The class `ExtSlice` is deprecated: Deprecated since Python 3.9. Use `ast.Tuple` instead. +torch/jit/generate_bytecode.py:3:22: error[unresolved-import] Module `torch._C` has no member `_compile_graph_to_code_table` +torch/jit/generate_bytecode.py:3:52: error[unresolved-import] Module `torch._C` has no member `_generate_upgraders_graph` +torch/jit/mobile/__init__.py:47:22: error[unresolved-attribute] Module `torch._C` has no member `_load_for_lite_interpreter` +torch/jit/mobile/__init__.py:49:22: error[unresolved-attribute] Module `torch._C` has no member `_load_for_lite_interpreter_from_buffer` +torch/jit/mobile/__init__.py:78:12: error[unresolved-attribute] Module `torch._C` has no member `_export_operator_list` +torch/jit/mobile/__init__.py:108:16: error[unresolved-attribute] Module `torch._C` has no member `_get_model_bytecode_version` +torch/jit/mobile/__init__.py:111:16: error[unresolved-attribute] Module `torch._C` has no member `_get_model_bytecode_version_from_buffer` +torch/jit/mobile/__init__.py:141:16: error[unresolved-attribute] Module `torch._C` has no member `_get_mobile_model_contained_types` +torch/jit/mobile/__init__.py:144:16: error[unresolved-attribute] Module `torch._C` has no member `_get_mobile_model_contained_types_from_buffer` +torch/jit/mobile/__init__.py:167:16: error[unresolved-attribute] Module `torch._C` has no member `_backport_for_mobile` +torch/jit/mobile/__init__.py:173:16: error[unresolved-attribute] Module `torch._C` has no member `_backport_for_mobile_from_buffer` +torch/jit/mobile/__init__.py:196:16: error[unresolved-attribute] Module `torch._C` has no member `_backport_for_mobile_to_buffer` +torch/jit/mobile/__init__.py:198:16: error[unresolved-attribute] Module `torch._C` has no member `_backport_for_mobile_from_buffer_to_buffer` +torch/jit/mobile/__init__.py:241:16: error[unresolved-attribute] Module `torch._C` has no member `_get_model_ops_and_info` +torch/jit/mobile/__init__.py:244:16: error[unresolved-attribute] Module `torch._C` has no member `_get_model_ops_and_info` +torch/jit/quantized.py:59:37: error[unresolved-attribute] Module `torch` has no member `int8` +torch/jit/quantized.py:89:43: error[unresolved-attribute] Module `torch` has no member `int8` +torch/jit/quantized.py:96:40: error[unresolved-attribute] Module `torch` has no member `int8` +torch/jit/supported_ops.py:66:38: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/jit/supported_ops.py:74:23: error[unresolved-attribute] Module `torch._C` has no member `_jit_get_schemas_for_operator` +torch/jit/supported_ops.py:112:16: error[unresolved-attribute] Module `torch.jit` has no member `_builtins` +torch/jit/supported_ops.py:117:27: error[unresolved-attribute] Module `torch._C` has no member `_jit_get_schemas_for_operator` +torch/jit/supported_ops.py:127:30: error[unresolved-attribute] Module `torch.jit` has no member `_builtins` +torch/jit/supported_ops.py:166:23: error[unresolved-attribute] Module `torch._C` has no member `_jit_get_schemas_for_operator` +torch/jit/supported_ops.py:184:23: error[unresolved-attribute] Module `torch._C` has no member `_jit_get_schemas_for_operator` +torch/jit/supported_ops.py:274:19: error[unresolved-attribute] Module `torch._C` has no member `_jit_get_schemas_for_operator` +torch/jit/unsupported_tensor_ops.py:14:14: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/library.py:101:33: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_library` +torch/library.py:107:42: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/library.py:155:29: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/library.py:182:18: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/library.py:197:17: error[unresolved-attribute] Module `torch._library` has no member `simple_registry` +torch/library.py:226:17: error[unresolved-attribute] Module `torch._library` has no member `simple_registry` +torch/library.py:247:16: error[unresolved-attribute] Module `torch` has no member `DispatchKeySet` +torch/library.py:247:55: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/library.py:346:16: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/library.py:543:23: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/library.py:718:27: error[unresolved-attribute] Module `torch._C` has no member `_parse_dispatch_key` +torch/library.py:731:24: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/library.py:764:12: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_key_for_device` +torch/library.py:782:36: error[unresolved-attribute] Module `torch._library` has no member `custom_ops` +torch/library.py:837:42: error[unresolved-attribute] Module `torch._library` has no member `custom_ops` +torch/library.py:844:30: error[invalid-argument-type] Argument to function `_maybe_get_opdef` is incorrect: Expected `CustomOpDef | OpOverload[Unknown, Any] | str`, found `object` +torch/library.py:897:42: error[unresolved-attribute] Module `torch._library` has no member `custom_ops` +torch/library.py:907:30: error[invalid-argument-type] Argument to function `_maybe_get_opdef` is incorrect: Expected `CustomOpDef | OpOverload[Unknown, Any] | str`, found `object` +torch/library.py:913:11: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/library.py:915:25: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/library.py:928:35: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/library.py:929:35: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/library.py:932:27: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/library.py:933:13: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/library.py:934:13: error[unresolved-attribute] Module `torch._C` has no member `DispatchKeySet` +torch/library.py:934:37: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/library.py:935:14: error[unresolved-attribute] Module `torch._C` has no member `_ExcludeDispatchKeyGuard` +torch/library.py:1051:42: error[unresolved-attribute] Module `torch._library` has no member `custom_ops` +torch/library.py:1056:30: error[invalid-argument-type] Argument to function `_maybe_get_opdef` is incorrect: Expected `CustomOpDef | OpOverload[Unknown, Any] | str`, found `object` +torch/library.py:1067:30: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/library.py:1101:42: error[unresolved-attribute] Module `torch._library` has no member `custom_ops` +torch/library.py:1109:30: error[invalid-argument-type] Argument to function `_maybe_get_opdef` is incorrect: Expected `CustomOpDef | OpOverload[Unknown, Any] | str`, found `object` +torch/library.py:1114:20: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/library.py:1215:42: error[unresolved-attribute] Module `torch._library` has no member `custom_ops` +torch/library.py:1222:30: error[invalid-argument-type] Argument to function `_maybe_get_opdef` is incorrect: Expected `CustomOpDef | OpOverload[Unknown, Any] | str`, found `object` +torch/library.py:1229:10: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/library.py:1231:12: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/library.py:1237:8: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/library.py:1244:12: error[unresolved-attribute] Module `torch._library` has no member `autograd` +torch/library.py:1245:23: error[unresolved-attribute] Module `torch._library` has no member `autograd` +torch/library.py:1246:25: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/library.py:1306:42: error[unresolved-attribute] Module `torch._library` has no member `custom_ops` +torch/library.py:1313:30: error[invalid-argument-type] Argument to function `_maybe_get_opdef` is incorrect: Expected `CustomOpDef | OpOverload[Unknown, Any] | str`, found `object` +torch/library.py:1319:30: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/library.py:1420:42: error[unresolved-attribute] Module `torch._library` has no member `custom_ops` +torch/library.py:1425:30: error[invalid-argument-type] Argument to function `_maybe_get_opdef` is incorrect: Expected `CustomOpDef | OpOverload[Unknown, Any] | str`, found `object` +torch/library.py:1430:10: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/library.py:1432:8: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/library.py:1442:29: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/library.py:1475:14: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/library.py:1480:24: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_pystub` +torch/library.py:1484:16: error[unresolved-attribute] Module `torch._library` has no member `utils` +torch/library.py:1518:19: error[unresolved-attribute] Module `torch._library` has no member `fake_impl` +torch/library.py:1524:12: error[unresolved-attribute] Module `torch._library` has no member `fake_impl` +torch/library.py:1528:50: error[unresolved-attribute] Module `torch` has no member `DispatchKey` +torch/library.py:1529:6: error[unresolved-attribute] Module `torch._C` has no member `_SafeKernelFunction` +torch/library.py:1594:28: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/library.py:1598:12: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_get_computed_kernel_for_dispatch_key` +torch/masked/_ops.py:42:36: error[unresolved-attribute] Object of type `(...) -> _T@_apply_docstring_templates` has no attribute `__name__` +torch/masked/_ops.py:45:54: error[unresolved-attribute] Object of type `(...) -> _T@_apply_docstring_templates` has no attribute `__name__` +torch/masked/_ops.py:54:20: error[unresolved-attribute] Object of type `(...) -> _T@_apply_docstring_templates` has no attribute `__name__` +torch/masked/_ops.py:295:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:296:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:300:48: error[unresolved-attribute] Module `torch` has no member `float32` +torch/masked/_ops.py:305:48: error[unresolved-attribute] Module `torch` has no member `float32` +torch/masked/_ops.py:335:48: error[unresolved-attribute] Module `torch` has no member `float32` +torch/masked/_ops.py:359:32: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:359:54: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/masked/_ops.py:362:32: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:362:54: error[unresolved-attribute] Module `torch` has no member `int32` +torch/masked/_ops.py:365:32: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:365:54: error[unresolved-attribute] Module `torch` has no member `float32` +torch/masked/_ops.py:371:36: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:371:58: error[unresolved-attribute] Module `torch` has no member `float32` +torch/masked/_ops.py:424:16: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:426:16: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:428:12: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/masked/_ops.py:429:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:430:14: error[unresolved-attribute] Module `torch` has no member `is_signed` +torch/masked/_ops.py:430:49: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/masked/_ops.py:431:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:431:33: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/masked/_ops.py:433:12: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/masked/_ops.py:434:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:435:14: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/masked/_ops.py:436:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:437:14: error[unresolved-attribute] Module `torch` has no member `is_signed` +torch/masked/_ops.py:437:49: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/masked/_ops.py:438:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:438:33: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/masked/_ops.py:440:12: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/masked/_ops.py:441:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:442:14: error[unresolved-attribute] Module `torch` has no member `is_signed` +torch/masked/_ops.py:442:49: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/masked/_ops.py:443:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:443:33: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/masked/_ops.py:454:20: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/masked/_ops.py:455:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:456:16: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:460:32: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/masked/_ops.py:460:68: error[unresolved-attribute] Module `torch` has no member `float` +torch/masked/_ops.py:461:16: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:488:21: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `int`, found `int | SymInt` +torch/masked/_ops.py:535:28: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/_ops.py:561:25: error[unresolved-attribute] Module `torch` has no member `cat` +torch/masked/_ops.py:562:23: error[unresolved-attribute] Module `torch` has no member `where` +torch/masked/_ops.py:565:25: error[unresolved-attribute] Module `torch` has no member `cat` +torch/masked/_ops.py:566:35: error[unresolved-attribute] Module `torch` has no member `where` +torch/masked/_ops.py:586:30: error[unresolved-attribute] Module `torch` has no member `where` +torch/masked/_ops.py:604:18: error[unresolved-attribute] Module `torch` has no member `sparse_coo_tensor` +torch/masked/_ops.py:609:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/masked/_ops.py:610:20: error[unresolved-attribute] Module `torch` has no member `cat` +torch/masked/_ops.py:616:14: error[unresolved-attribute] Module `torch` has no member `sparse_coo_tensor` +torch/masked/_ops.py:705:24: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:720:29: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/masked/_ops.py:720:45: error[unresolved-attribute] Module `torch` has no member `float16` +torch/masked/_ops.py:721:40: error[unresolved-attribute] Module `torch` has no member `float` +torch/masked/_ops.py:733:12: error[unresolved-attribute] Module `torch` has no member `sparse_coo_tensor` +torch/masked/_ops.py:780:32: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:792:32: error[unresolved-attribute] Module `torch` has no member `cat` +torch/masked/_ops.py:795:21: error[unresolved-attribute] Module `torch` has no member `cumsum` +torch/masked/_ops.py:795:34: error[unresolved-attribute] Module `torch` has no member `diff` +torch/masked/_ops.py:813:26: error[unresolved-attribute] Module `torch` has no member `empty` +torch/masked/_ops.py:815:28: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/_ops.py:818:12: error[unresolved-attribute] Module `torch` has no member `sparse_csr_tensor` +torch/masked/_ops.py:860:23: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:861:16: error[unresolved-attribute] Module `torch` has no member `where` +torch/masked/_ops.py:862:25: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/_ops.py:864:25: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/_ops.py:905:29: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:905:44: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/_ops.py:905:62: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/_ops.py:922:27: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:923:20: error[unresolved-attribute] Module `torch` has no member `broadcast_to` +torch/masked/_ops.py:923:75: error[unresolved-attribute] Module `torch` has no member `bool` +torch/masked/_ops.py:924:29: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/_ops.py:925:20: error[unresolved-attribute] Module `torch` has no member `_sparse_broadcast_to` +torch/masked/_ops.py:927:35: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/_ops.py:930:20: error[unresolved-attribute] Module `torch` has no member `_sparse_broadcast_to` +torch/masked/_ops.py:936:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:938:30: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/_ops.py:939:31: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:944:36: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/_ops.py:948:23: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/_ops.py:952:26: error[unresolved-attribute] Module `torch` has no member `bool` +torch/masked/_ops.py:1059:28: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/_ops.py:1061:17: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/masked/_ops.py:1062:17: error[unresolved-attribute] Module `torch` has no member `bool` +torch/masked/_ops.py:1063:17: error[unresolved-attribute] Module `torch` has no member `int8` +torch/masked/_ops.py:1064:17: error[unresolved-attribute] Module `torch` has no member `int16` +torch/masked/_ops.py:1065:17: error[unresolved-attribute] Module `torch` has no member `int32` +torch/masked/_ops.py:1069:56: error[unresolved-attribute] Module `torch` has no member `int64` +torch/masked/_ops.py:1075:17: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/masked/_ops.py:1076:17: error[unresolved-attribute] Module `torch` has no member `bool` +torch/masked/_ops.py:1077:17: error[unresolved-attribute] Module `torch` has no member `int8` +torch/masked/_ops.py:1078:17: error[unresolved-attribute] Module `torch` has no member `int16` +torch/masked/_ops.py:1079:17: error[unresolved-attribute] Module `torch` has no member `int32` +torch/masked/_ops.py:1081:25: error[unresolved-attribute] Module `torch` has no member `int64` +torch/masked/_ops.py:1084:29: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1085:16: error[unresolved-attribute] Module `torch` has no member `sum` +torch/masked/_ops.py:1086:31: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/_ops.py:1088:13: error[unresolved-attribute] Module `torch` has no member `sum` +torch/masked/_ops.py:1090:31: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/_ops.py:1091:16: error[unresolved-attribute] Module `torch` has no member `_sparse_csr_sum` +torch/masked/_ops.py:1112:28: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/_ops.py:1114:17: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/masked/_ops.py:1115:17: error[unresolved-attribute] Module `torch` has no member `bool` +torch/masked/_ops.py:1116:17: error[unresolved-attribute] Module `torch` has no member `int8` +torch/masked/_ops.py:1117:17: error[unresolved-attribute] Module `torch` has no member `int16` +torch/masked/_ops.py:1118:17: error[unresolved-attribute] Module `torch` has no member `int32` +torch/masked/_ops.py:1122:56: error[unresolved-attribute] Module `torch` has no member `int64` +torch/masked/_ops.py:1128:17: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/masked/_ops.py:1129:17: error[unresolved-attribute] Module `torch` has no member `bool` +torch/masked/_ops.py:1130:17: error[unresolved-attribute] Module `torch` has no member `int8` +torch/masked/_ops.py:1131:17: error[unresolved-attribute] Module `torch` has no member `int16` +torch/masked/_ops.py:1132:17: error[unresolved-attribute] Module `torch` has no member `int32` +torch/masked/_ops.py:1134:25: error[unresolved-attribute] Module `torch` has no member `int64` +torch/masked/_ops.py:1137:29: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1144:31: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/_ops.py:1151:13: error[unresolved-attribute] Module `torch` has no member `prod` +torch/masked/_ops.py:1153:31: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/_ops.py:1168:16: error[unresolved-attribute] Module `torch` has no member `_sparse_csr_prod` +torch/masked/_ops.py:1189:29: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1190:16: error[unresolved-attribute] Module `torch` has no member `cumsum` +torch/masked/_ops.py:1209:29: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1210:16: error[unresolved-attribute] Module `torch` has no member `cumprod` +torch/masked/_ops.py:1241:29: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1242:16: error[unresolved-attribute] Module `torch` has no member `amax` +torch/masked/_ops.py:1243:31: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/_ops.py:1251:13: error[unresolved-attribute] Module `torch` has no member `amax` +torch/masked/_ops.py:1253:31: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/_ops.py:1259:13: error[unresolved-attribute] Module `torch` has no member `amax` +torch/masked/_ops.py:1291:29: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1292:16: error[unresolved-attribute] Module `torch` has no member `amin` +torch/masked/_ops.py:1293:31: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/_ops.py:1301:13: error[unresolved-attribute] Module `torch` has no member `amin` +torch/masked/_ops.py:1303:31: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/_ops.py:1309:13: error[unresolved-attribute] Module `torch` has no member `amin` +torch/masked/_ops.py:1335:29: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1336:16: error[unresolved-attribute] Module `torch` has no member `argmax` +torch/masked/_ops.py:1361:29: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1362:16: error[unresolved-attribute] Module `torch` has no member `argmin` +torch/masked/_ops.py:1403:24: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1408:17: error[unresolved-attribute] Module `torch` has no member `ones` +torch/masked/_ops.py:1408:47: error[unresolved-attribute] Module `torch` has no member `int64` +torch/masked/_ops.py:1420:26: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/_ops.py:1428:13: error[unresolved-attribute] Module `torch` has no member `mean` +torch/masked/_ops.py:1459:16: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/masked/_ops.py:1461:32: error[unresolved-attribute] Module `torch` has no member `float` +torch/masked/_ops.py:1463:29: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1464:18: error[unresolved-attribute] Module `torch` has no member `nanmedian` +torch/masked/_ops.py:1467:35: error[unresolved-attribute] Module `torch` has no member `isnan` +torch/masked/_ops.py:1492:29: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1493:16: error[unresolved-attribute] Module `torch` has no member `logsumexp` +torch/masked/_ops.py:1552:24: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1552:58: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1555:16: error[unresolved-attribute] Module `torch` has no member `logaddexp` +torch/masked/_ops.py:1587:29: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1621:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/masked/_ops.py:1624:25: error[unresolved-attribute] Module `torch` has no member `float32` +torch/masked/_ops.py:1625:24: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1630:17: error[unresolved-attribute] Module `torch` has no member `ones` +torch/masked/_ops.py:1630:47: error[unresolved-attribute] Module `torch` has no member `int64` +torch/masked/_ops.py:1644:23: error[unresolved-attribute] Module `torch` has no member `divide` +torch/masked/_ops.py:1645:13: error[unresolved-attribute] Module `torch` has no member `subtract` +torch/masked/_ops.py:1666:21: error[unresolved-attribute] Module `torch` has no member `subtract` +torch/masked/_ops.py:1667:21: error[unresolved-attribute] Module `torch` has no member `maximum` +torch/masked/_ops.py:1668:18: error[unresolved-attribute] Module `torch` has no member `divide` +torch/masked/_ops.py:1670:22: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/masked/_ops.py:1752:29: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1772:29: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1792:29: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1814:29: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/_ops.py:1817:17: error[unresolved-attribute] Module `torch` has no member `maximum` +torch/masked/_ops.py:1819:16: error[unresolved-attribute] Module `torch` has no member `divide` +torch/masked/maskedtensor/_ops_refs.py:76:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/maskedtensor/_ops_refs.py:90:22: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/maskedtensor/_ops_refs.py:92:24: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/maskedtensor/_ops_refs.py:94:24: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/maskedtensor/_ops_refs.py:107:28: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/maskedtensor/_ops_refs.py:135:28: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/maskedtensor/_ops_refs.py:165:48: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/masked/maskedtensor/_ops_refs.py:214:46: error[unresolved-attribute] Module `torch` has no member `where` +torch/masked/maskedtensor/_ops_refs.py:368:30: error[unresolved-attribute] Module `torch` has no member `bool` +torch/masked/maskedtensor/_ops_refs.py:434:31: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/masked/maskedtensor/_ops_refs.py:434:57: error[unresolved-attribute] Module `torch` has no member `bool` +torch/masked/maskedtensor/_ops_refs.py:436:31: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/masked/maskedtensor/_ops_refs.py:436:57: error[unresolved-attribute] Module `torch` has no member `bool` +torch/masked/maskedtensor/_ops_refs.py:451:31: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/masked/maskedtensor/_ops_refs.py:451:57: error[unresolved-attribute] Module `torch` has no member `bool` +torch/masked/maskedtensor/_ops_refs.py:468:31: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/masked/maskedtensor/_ops_refs.py:485:31: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/masked/maskedtensor/_ops_refs.py:498:31: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/masked/maskedtensor/_ops_refs.py:507:31: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/masked/maskedtensor/_ops_refs.py:519:20: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/masked/maskedtensor/_ops_refs.py:542:22: error[unresolved-attribute] Module `torch` has no member `bool` +torch/masked/maskedtensor/_ops_refs.py:547:44: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/maskedtensor/binary.py:107:24: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/maskedtensor/binary.py:124:23: error[unresolved-attribute] Module `torch` has no member `sparse_coo_tensor` +torch/masked/maskedtensor/binary.py:126:26: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/maskedtensor/binary.py:145:23: error[unresolved-attribute] Module `torch` has no member `sparse_csr_tensor` +torch/masked/maskedtensor/binary.py:156:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/maskedtensor/core.py:47:32: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/maskedtensor/core.py:51:34: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/maskedtensor/core.py:58:41: error[unresolved-attribute] Module `torch` has no member `eq` +torch/masked/maskedtensor/core.py:59:37: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/masked/maskedtensor/core.py:108:24: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/maskedtensor/core.py:108:42: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/maskedtensor/core.py:185:27: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/maskedtensor/core.py:189:54: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/maskedtensor/core.py:190:29: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/maskedtensor/core.py:192:54: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/maskedtensor/core.py:205:32: error[unresolved-attribute] Module `torch` has no member `strided` +torch/masked/maskedtensor/core.py:205:47: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/maskedtensor/core.py:205:65: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/maskedtensor/core.py:207:27: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/maskedtensor/core.py:212:29: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/maskedtensor/core.py:219:26: error[unresolved-attribute] Module `torch` has no member `bool` +torch/masked/maskedtensor/core.py:222:27: error[unresolved-attribute] Module `torch` has no member `float16` +torch/masked/maskedtensor/core.py:223:30: error[unresolved-attribute] Module `torch` has no member `float32` +torch/masked/maskedtensor/core.py:224:30: error[unresolved-attribute] Module `torch` has no member `float64` +torch/masked/maskedtensor/core.py:225:30: error[unresolved-attribute] Module `torch` has no member `bool` +torch/masked/maskedtensor/core.py:226:30: error[unresolved-attribute] Module `torch` has no member `int8` +torch/masked/maskedtensor/core.py:227:30: error[unresolved-attribute] Module `torch` has no member `int16` +torch/masked/maskedtensor/core.py:228:30: error[unresolved-attribute] Module `torch` has no member `int32` +torch/masked/maskedtensor/core.py:229:30: error[unresolved-attribute] Module `torch` has no member `int64` +torch/masked/maskedtensor/core.py:298:14: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunctionSubclass` +torch/masked/maskedtensor/core.py:356:31: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/maskedtensor/core.py:359:31: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/maskedtensor/reductions.py:23:16: error[unresolved-attribute] Module `torch` has no member `all` +torch/masked/maskedtensor/reductions.py:24:12: error[unresolved-attribute] Module `torch` has no member `all` +torch/masked/maskedtensor/reductions.py:37:16: error[unresolved-attribute] Module `torch` has no member `any` +torch/masked/maskedtensor/reductions.py:59:71: error[unresolved-attribute] Module `torch` has no member `int` +torch/masked/maskedtensor/reductions.py:66:44: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/masked/maskedtensor/reductions.py:69:27: error[unresolved-attribute] Module `torch` has no member `sum` +torch/masked/maskedtensor/reductions.py:78:46: error[unresolved-attribute] Module `torch` has no member `any` +torch/masked/maskedtensor/unary.py:130:26: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/masked/maskedtensor/unary.py:136:23: error[unresolved-attribute] Module `torch` has no member `sparse_coo_tensor` +torch/masked/maskedtensor/unary.py:138:28: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/masked/maskedtensor/unary.py:143:23: error[unresolved-attribute] Module `torch` has no member `sparse_csr_tensor` +torch/mps/__init__.py:20:37: error[unresolved-attribute] Module `torch._C` has no member `Generator` +torch/mps/__init__.py:23:34: error[unresolved-attribute] Module `torch._C` has no member `_mps_get_default_generator` +torch/mps/__init__.py:29:16: error[unresolved-attribute] Module `torch._C` has no member `_has_mps` +torch/mps/__init__.py:29:38: error[unresolved-attribute] Module `torch._C` has no member `_mps_is_available` +torch/mps/__init__.py:34:12: error[unresolved-attribute] Module `torch._C` has no member `_mps_deviceSynchronize` +torch/mps/__init__.py:37:43: error[unresolved-attribute] Module `torch` has no member `device` +torch/mps/__init__.py:48:48: error[unresolved-attribute] Module `torch` has no member `device` +torch/mps/__init__.py:57:52: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/mps/__init__.py:71:12: error[unresolved-attribute] Module `torch._C` has no member `_has_mps` +torch/mps/__init__.py:86:5: error[unresolved-attribute] Module `torch._C` has no member `_mps_emptyCache` +torch/mps/__init__.py:111:5: error[unresolved-attribute] Module `torch._C` has no member `_mps_setMemoryFraction` +torch/mps/__init__.py:121:12: error[unresolved-attribute] Module `torch._C` has no member `_mps_currentAllocatedMemory` +torch/mps/__init__.py:131:12: error[unresolved-attribute] Module `torch._C` has no member `_mps_driverAllocatedMemory` +torch/mps/__init__.py:141:12: error[unresolved-attribute] Module `torch._C` has no member `_mps_recommendedMaxMemory` +torch/mps/event.py:16:26: error[unresolved-attribute] Module `torch._C` has no member `_mps_acquireEvent` +torch/mps/event.py:25:9: error[unresolved-attribute] Module `torch._C` has no member `_mps_recordEvent` +torch/mps/event.py:29:9: error[unresolved-attribute] Module `torch._C` has no member `_mps_waitForEvent` +torch/mps/event.py:33:16: error[unresolved-attribute] Module `torch._C` has no member `_mps_queryEvent` +torch/mps/event.py:39:9: error[unresolved-attribute] Module `torch._C` has no member `_mps_synchronizeEvent` +torch/mps/event.py:45:16: error[unresolved-attribute] Module `torch._C` has no member `_mps_elapsedTimeOfEvents` +torch/mtia/__init__.py:12:19: error[unresolved-import] Module `torch` has no member `device` +torch/mtia/__init__.py:22:9: error[unresolved-attribute] Module `torch` has no member `Event` +torch/mtia/__init__.py:23:10: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/mtia/__init__.py:64:12: error[unresolved-attribute] Module `torch._C` has no member `_mtia_isInBadFork` +torch/mtia/__init__.py:95:9: error[unresolved-attribute] Module `torch._C` has no member `_mtia_init` +torch/mtia/__init__.py:124:12: error[unresolved-attribute] Module `torch._C` has no member `_mtia_isBuilt` +torch/mtia/__init__.py:138:16: error[unresolved-attribute] Module `torch._C` has no member `_mtia_deviceSynchronize` +torch/mtia/__init__.py:144:12: error[unresolved-attribute] Module `torch._C` has no member `_mtia_getDeviceCount` +torch/mtia/__init__.py:149:12: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_hooks_get_current_device` +torch/mtia/__init__.py:161:12: error[unresolved-attribute] Module `torch._C` has no member `_mtia_getCurrentStream` +torch/mtia/__init__.py:173:12: error[unresolved-attribute] Module `torch._C` has no member `_mtia_getDefaultStream` +torch/mtia/__init__.py:192:5: error[unresolved-attribute] Module `torch._C` has no member `_mtia_recordMemoryHistory` +torch/mtia/__init__.py:198:12: error[unresolved-attribute] Module `torch._C` has no member `_mtia_memorySnapshot` +torch/mtia/__init__.py:205:5: error[unresolved-attribute] Module `torch._C` has no member `_mtia_attachOutOfMemoryObserver` +torch/mtia/__init__.py:221:12: error[unresolved-attribute] Module `torch._C` has no member `_mtia_getDeviceCapability` +torch/mtia/__init__.py:226:12: error[unresolved-attribute] Module `torch._C` has no member `_mtia_emptyCache` +torch/mtia/__init__.py:240:5: error[unresolved-attribute] Module `torch._C` has no member `_mtia_setCurrentStream` +torch/mtia/__init__.py:252:9: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_hooks_set_current_device` +torch/mtia/__init__.py:263:12: error[unresolved-attribute] Module `torch._C` has no member `_mtia_getDeviceProperties` +torch/mtia/__init__.py:279:25: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_hooks_maybe_exchange_device` +torch/mtia/__init__.py:282:20: error[unresolved-attribute] Module `torch._C` has no member `_accelerator_hooks_maybe_exchange_device` +torch/mtia/__init__.py:352:5: error[unresolved-attribute] Module `torch._C` has no member `_mtia_setStream` +torch/mtia/__init__.py:366:43: error[unresolved-attribute] Module `torch` has no member `device` +torch/mtia/__init__.py:378:12: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/mtia/__init__.py:378:35: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/mtia/__init__.py:382:48: error[unresolved-attribute] Module `torch` has no member `device` +torch/mtia/_utils.py:28:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/mtia/_utils.py:29:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/mtia/memory.py:23:12: error[unresolved-attribute] Module `torch._C` has no member `_mtia_memoryStats` +torch/mtia/memory.py:63:5: error[unresolved-attribute] Module `torch._C` has no member `_mtia_resetPeakMemoryStats` +torch/mtia/mtia_graph.py:12:17: error[unresolved-attribute] Module `torch._C` has no member `_MTIAGraph` +torch/multiprocessing/__init__.py:37:1: error[unresolved-attribute] Module `torch._C` has no member `_multiprocessing_init` +torch/multiprocessing/__init__.py:89:5: error[unresolved-attribute] Module `torch._C` has no member `_set_thread_name` +torch/multiprocessing/__init__.py:98:12: error[unresolved-attribute] Module `torch._C` has no member `_get_thread_name` +torch/multiprocessing/reductions.py:334:9: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/multiprocessing/reductions.py:335:9: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/multiprocessing/reductions.py:336:9: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/multiprocessing/reductions.py:337:9: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/multiprocessing/reductions.py:338:9: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/multiprocessing/reductions.py:417:12: error[unresolved-attribute] Module `torch` has no member `_nested_view_from_buffer_copy` +torch/multiprocessing/reductions.py:455:12: error[unresolved-attribute] Module `torch` has no member `sparse_coo_tensor` +torch/multiprocessing/reductions.py:473:12: error[unresolved-attribute] Module `torch` has no member `sparse_compressed_tensor` +torch/multiprocessing/reductions.py:479:25: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/multiprocessing/reductions.py:494:30: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/multiprocessing/reductions.py:494:48: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/multiprocessing/reductions.py:497:32: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/multiprocessing/reductions.py:497:50: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/multiprocessing/reductions.py:619:14: error[unresolved-attribute] Module `multiprocessing` has no member `reduction` +torch/nativert/backends/_lower_utils.py:22:13: error[unresolved-attribute] Cannot assign object of type `TreeSpec` to attribute `in_spec` on type `Self@__init__` with custom `__setattr__` method. +torch/nativert/backends/_lower_utils.py:23:13: error[unresolved-attribute] Cannot assign object of type `TreeSpec` to attribute `out_spec` on type `Self@__init__` with custom `__setattr__` method. +torch/nativert/backends/_lower_utils.py:79:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[ExportedProgram, list[str | Weights] | dict[str, list[str | Weights]]]`, found `tuple[ExportedProgram, list[str | Weights] | (GraphModule & Top[list[Unknown]])]` +torch/nativert/backends/_lowered_aoti_module.py:14:9: error[unresolved-attribute] Cannot assign object of type `str` to attribute `_backend_id` on type `Self@__init__` with custom `__setattr__` method. +torch/nativert/backends/_lowered_aoti_module.py:15:9: error[unresolved-attribute] Cannot assign object of type `str | None` to attribute `_module_name` on type `Self@__init__` with custom `__setattr__` method. +torch/nativert/backends/_lowered_aoti_module.py:16:9: error[unresolved-attribute] Cannot assign object of type `ExportedProgram` to attribute `_original_exported_program` on type `Self@__init__` with custom `__setattr__` method. +torch/nested/__init__.py:103:18: error[unresolved-attribute] Module `torch` has no member `strided` +torch/nested/__init__.py:104:18: error[unresolved-attribute] Module `torch` has no member `strided` +torch/nested/__init__.py:109:28: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/nested/__init__.py:110:20: error[unresolved-attribute] Module `torch` has no member `_nested_view_from_buffer` +torch/nested/__init__.py:113:18: error[unresolved-attribute] Module `torch` has no member `_nested_compute_contiguous_strides_offsets` +torch/nested/__init__.py:117:20: error[unresolved-attribute] Module `torch` has no member `_nested_tensor_from_tensor_list` +torch/nested/__init__.py:118:20: error[unresolved-attribute] Module `torch` has no member `jagged` +torch/nested/__init__.py:128:23: error[unresolved-attribute] Module `torch` has no member `arange` +torch/nested/__init__.py:129:76: error[unresolved-attribute] Module `torch` has no member `int64` +torch/nested/__init__.py:248:18: error[unresolved-attribute] Module `torch` has no member `strided` +torch/nested/__init__.py:249:18: error[unresolved-attribute] Module `torch` has no member `strided` +torch/nested/__init__.py:257:20: error[unresolved-attribute] Module `torch` has no member `jagged` +torch/nested/__init__.py:260:45: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/nested/__init__.py:286:12: error[unresolved-attribute] Module `torch` has no member `strided` +torch/nested/__init__.py:329:18: error[unresolved-attribute] Module `torch` has no member `strided` +torch/nested/__init__.py:335:31: error[unresolved-attribute] Module `torch` has no member `unbind` +torch/nested/__init__.py:335:60: error[unresolved-attribute] Module `torch` has no member `strided` +torch/nested/__init__.py:338:20: error[unresolved-attribute] Module `torch` has no member `jagged` +torch/nested/__init__.py:345:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/nested/__init__.py:345:71: error[unresolved-attribute] Module `torch` has no member `int64` +torch/nested/__init__.py:348:22: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/nested/__init__.py:348:73: error[unresolved-attribute] Module `torch` has no member `int64` +torch/nested/__init__.py:448:48: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[1], Literal[0]]` +torch/nested/__init__.py:500:25: error[unresolved-attribute] Module `torch` has no member `strided` +torch/nested/__init__.py:505:23: error[unresolved-attribute] Module `torch` has no member `strided` +torch/nested/__init__.py:517:50: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[1], Literal[0]]` +torch/nested/_internal/nested_int.py:88:16: error[unresolved-attribute] Module `torch._C` has no member `_get_constant_bool_symnode` +torch/nested/_internal/nested_int.py:91:16: error[unresolved-attribute] Module `torch._C` has no member `_get_constant_bool_symnode` +torch/nested/_internal/nested_int.py:94:16: error[unresolved-attribute] Module `torch._C` has no member `_get_constant_bool_symnode` +torch/nested/_internal/nested_int.py:97:16: error[unresolved-attribute] Module `torch._C` has no member `_get_constant_bool_symnode` +torch/nested/_internal/nested_int.py:100:16: error[unresolved-attribute] Module `torch._C` has no member `_get_constant_bool_symnode` +torch/nested/_internal/nested_int.py:103:16: error[unresolved-attribute] Module `torch._C` has no member `_get_constant_bool_symnode` +torch/nested/_internal/nested_tensor.py:5:22: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/nested/_internal/nested_tensor.py:5:35: error[unresolved-import] Module `torch._C` has no member `DispatchKeySet` +torch/nested/_internal/nested_tensor.py:41:12: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/nested/_internal/nested_tensor.py:115:13: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/nested/_internal/nested_tensor.py:117:13: error[unresolved-attribute] Module `torch` has no member `jagged` +torch/nested/_internal/nested_tensor.py:177:17: error[unresolved-attribute] Module `torch` has no member `max` +torch/nested/_internal/nested_tensor.py:189:17: error[unresolved-attribute] Module `torch` has no member `min` +torch/nested/_internal/nested_tensor.py:243:41: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/nested/_internal/nested_tensor.py:351:13: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/nested/_internal/nested_tensor.py:352:13: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/nested/_internal/nested_tensor.py:355:16: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/nested/_internal/nested_tensor.py:377:18: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunctionSubclass` +torch/nested/_internal/nested_tensor.py:491:14: error[unresolved-attribute] Module `torch` has no member `cat` +torch/nested/_internal/nested_tensor.py:504:19: error[unresolved-attribute] Module `torch` has no member `cat` +torch/nested/_internal/nested_tensor.py:506:17: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/nested/_internal/nested_tensor.py:506:38: error[unresolved-attribute] Module `torch` has no member `int64` +torch/nested/_internal/nested_tensor.py:507:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/nested/_internal/nested_tensor.py:547:36: error[unresolved-attribute] Module `torch` has no member `arange` +torch/nested/_internal/nested_tensor.py:548:30: error[unresolved-attribute] Module `torch` has no member `int64` +torch/nested/_internal/nested_tensor.py:551:15: error[unresolved-attribute] Module `torch` has no member `cat` +torch/nested/_internal/nested_tensor.py:567:8: error[unresolved-attribute] Module `torch` has no member `any` +torch/nested/_internal/nested_tensor.py:569:8: error[unresolved-attribute] Module `torch` has no member `any` +torch/nested/_internal/nested_tensor.py:574:29: error[unresolved-attribute] Module `torch` has no member `max` +torch/nested/_internal/nested_tensor.py:575:22: error[unresolved-attribute] Module `torch` has no member `min` +torch/nested/_internal/nested_tensor.py:607:20: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/nested/_internal/nested_tensor.py:608:21: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/nested/_internal/nested_tensor.py:608:57: error[unresolved-attribute] Module `torch` has no member `int64` +torch/nested/_internal/nested_tensor.py:668:12: error[unresolved-attribute] Module `torch` has no member `_nested_from_padded_tensor` +torch/nested/_internal/ops.py:23:13: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/nested/_internal/ops.py:23:66: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/nested/_internal/ops.py:25:19: error[unresolved-attribute] Module `torch` has no member `int64` +torch/nested/_internal/ops.py:33:13: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/nested/_internal/ops.py:33:66: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/nested/_internal/ops.py:257:8: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/nested/_internal/ops.py:276:41: error[unresolved-attribute] Module `torch` has no member `TensorType` +torch/nested/_internal/ops.py:392:16: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/nested/_internal/ops.py:443:14: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunctionSubclass` +torch/nested/_internal/ops.py:485:14: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunctionSubclass` +torch/nested/_internal/ops.py:527:12: error[unresolved-attribute] Module `torch` has no member `jagged` +torch/nested/_internal/ops.py:556:26: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/nested/_internal/ops.py:558:39: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/nested/_internal/ops.py:582:26: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/nested/_internal/ops.py:585:39: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/nested/_internal/ops.py:604:43: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/nested/_internal/ops.py:648:13: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/nested/_internal/ops.py:658:14: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/nested/_internal/ops.py:667:18: error[unresolved-attribute] Module `torch` has no member `sum` +torch/nested/_internal/ops.py:780:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/nested/_internal/ops.py:1099:28: error[unresolved-attribute] Module `torch` has no member `cumsum` +torch/nested/_internal/ops.py:1186:9: error[unresolved-attribute] Module `torch` has no member `narrow` +torch/nested/_internal/ops.py:1362:20: error[unresolved-attribute] Module `torch` has no member `stack` +torch/nested/_internal/ops.py:1824:13: error[unresolved-attribute] Module `torch` has no member `ones` +torch/nested/_internal/ops.py:1836:13: error[unresolved-attribute] Module `torch` has no member `sum` +torch/nested/_internal/ops.py:1849:13: error[unresolved-attribute] Module `torch` has no member `sum` +torch/nested/_internal/ops.py:1850:17: error[unresolved-attribute] Module `torch` has no member `square` +torch/nested/_internal/ops.py:1857:15: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/nested/_internal/ops.py:2009:5: error[unresolved-attribute] Module `torch` has no member `_assert_async` +torch/nested/_internal/ops.py:2011:9: error[unresolved-attribute] Module `torch` has no member `all` +torch/nested/_internal/ops.py:2410:31: error[unresolved-attribute] Module `torch` has no member `bool` +torch/nested/_internal/ops.py:2412:28: error[unresolved-attribute] Module `torch` has no member `half` +torch/nested/_internal/ops.py:2420:36: error[unresolved-attribute] Module `torch` has no member `bool` +torch/nested/_internal/ops.py:2457:31: error[unresolved-attribute] Module `torch` has no member `bool` +torch/nested/_internal/ops.py:2459:28: error[unresolved-attribute] Module `torch` has no member `half` +torch/nested/_internal/ops.py:2464:28: error[unresolved-attribute] Module `torch` has no member `bool` +torch/nested/_internal/ops.py:2610:18: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/nested/_internal/ops.py:2728:21: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/nested/_internal/ops.py:2732:22: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/nested/_internal/sdpa.py:352:52: error[unresolved-attribute] Module `torch` has no member `int32` +torch/nested/_internal/sdpa.py:358:46: error[unresolved-attribute] Module `torch` has no member `int32` +torch/nested/_internal/sdpa.py:657:13: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/nested/_internal/sdpa.py:660:24: error[unresolved-attribute] Module `torch.utils` has no member `flop_counter` +torch/nested/_internal/sdpa.py:694:47: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/nested/_internal/sdpa.py:700:24: error[unresolved-attribute] Module `torch` has no member `get_autocast_dtype` +torch/nested/_internal/sdpa.py:704:27: error[unresolved-attribute] Module `torch` has no member `float64` +torch/nested/_internal/sdpa.py:904:25: error[unresolved-attribute] Module `torch` has no member `transpose` +torch/nested/_internal/sdpa.py:914:20: error[unresolved-attribute] Module `torch` has no member `_scaled_dot_product_attention_math` +torch/nn/attention/__init__.py:10:22: error[unresolved-import] Module `torch._C` has no member `_SDPBackend` +torch/nn/attention/__init__.py:91:25: error[unresolved-attribute] Module `torch._C` has no member `_get_sdp_priority_order` +torch/nn/attention/__init__.py:105:29: error[unresolved-attribute] Module `torch._C` has no member `_get_sdp_priority_order` +torch/nn/attention/__init__.py:109:9: error[unresolved-attribute] Module `torch._C` has no member `_set_sdp_priority_order` +torch/nn/attention/_fa4.py:39:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/attention/_fa4.py:94:28: error[unresolved-attribute] Module `torch` has no member `float16` +torch/nn/attention/_fa4.py:94:43: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/nn/attention/_fa4.py:97:28: error[unresolved-attribute] Module `torch` has no member `float32` +torch/nn/attention/_fa4.py:127:31: error[unresolved-attribute] Module `torch` has no member `int32` +torch/nn/attention/_fa4.py:278:17: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/nn/attention/_fa4.py:278:41: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/nn/attention/_fa4.py:279:21: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/nn/attention/_fa4.py:279:43: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/nn/attention/_fa4.py:280:18: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/attention/bias.py:140:35: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/attention/bias.py:142:16: error[unresolved-attribute] Module `torch` has no member `tril` +torch/nn/attention/bias.py:143:13: error[unresolved-attribute] Module `torch` has no member `ones` +torch/nn/attention/bias.py:143:78: error[unresolved-attribute] Module `torch` has no member `bool` +torch/nn/attention/bias.py:146:36: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/attention/bias.py:149:16: error[unresolved-attribute] Module `torch` has no member `tril` +torch/nn/attention/bias.py:150:13: error[unresolved-attribute] Module `torch` has no member `ones` +torch/nn/attention/bias.py:151:71: error[unresolved-attribute] Module `torch` has no member `bool` +torch/nn/attention/bias.py:157:36: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/attention/bias.py:157:67: error[invalid-return-type] Function can implicitly return `None`, which is not assignable to return type `Tensor` +torch/nn/attention/bias.py:171:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/attention/bias.py:239:60: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[0], Unknown]` +torch/nn/attention/bias.py:240:56: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[0], Unknown]` +torch/nn/attention/bias.py:241:60: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[0], Unknown]` +torch/nn/attention/experimental/_paged_attention.py:47:28: error[unresolved-attribute] Module `torch` has no member `ones` +torch/nn/attention/experimental/_paged_attention.py:48:51: error[unresolved-attribute] Module `torch` has no member `int64` +torch/nn/attention/experimental/_paged_attention.py:52:25: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/nn/attention/experimental/_paged_attention.py:52:59: error[unresolved-attribute] Module `torch` has no member `int64` +torch/nn/attention/experimental/_paged_attention.py:58:37: error[unresolved-attribute] Module `torch` has no member `ones` +torch/nn/attention/experimental/_paged_attention.py:59:46: error[unresolved-attribute] Module `torch` has no member `int64` +torch/nn/attention/experimental/_paged_attention.py:88:27: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/nn/attention/experimental/_paged_attention.py:101:64: error[unresolved-attribute] Module `torch` has no member `arange` +torch/nn/attention/experimental/_paged_attention.py:179:30: error[unresolved-attribute] Module `torch` has no member `gather` +torch/nn/attention/experimental/_paged_attention.py:180:65: error[unresolved-attribute] Module `torch` has no member `int64` +torch/nn/attention/experimental/_paged_attention.py:181:14: error[unresolved-attribute] Module `torch` has no member `int32` +torch/nn/attention/experimental/_paged_attention.py:230:25: error[unresolved-attribute] Module `torch` has no member `arange` +torch/nn/attention/experimental/_paged_attention.py:235:26: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/nn/attention/experimental/_paged_attention.py:236:47: error[unresolved-attribute] Module `torch` has no member `int32` +torch/nn/attention/experimental/_paged_attention.py:239:13: error[unresolved-attribute] Module `torch` has no member `gather` +torch/nn/attention/experimental/_paged_attention.py:240:69: error[unresolved-attribute] Module `torch` has no member `int64` +torch/nn/attention/experimental/_paged_attention.py:243:17: error[unresolved-attribute] Module `torch` has no member `int32` +torch/nn/attention/experimental/_paged_attention.py:250:35: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/nn/attention/experimental/_paged_attention.py:251:51: error[unresolved-attribute] Module `torch` has no member `int32` +torch/nn/attention/experimental/_paged_attention.py:254:17: error[unresolved-attribute] Module `torch` has no member `gather` +torch/nn/attention/experimental/_paged_attention.py:257:63: error[unresolved-attribute] Module `torch` has no member `int64` +torch/nn/attention/experimental/_paged_attention.py:260:21: error[unresolved-attribute] Module `torch` has no member `int32` +torch/nn/attention/experimental/_paged_attention.py:309:20: error[unresolved-attribute] Module `torch` has no member `where` +torch/nn/attention/experimental/_paged_attention.py:348:20: error[unresolved-attribute] Module `torch` has no member `where` +torch/nn/attention/flex_attention.py:272:32: error[unresolved-attribute] Object of type `object` has no attribute `co_argcount` +torch/nn/attention/flex_attention.py:276:28: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `tuple[()] | ~AlwaysFalsy` +torch/nn/attention/flex_attention.py:357:42: error[unresolved-attribute] Module `torch` has no member `bool` +torch/nn/attention/flex_attention.py:398:73: error[unresolved-attribute] Module `torch` has no member `int32` +torch/nn/attention/flex_attention.py:400:23: error[unresolved-attribute] Module `torch` has no member `arange` +torch/nn/attention/flex_attention.py:400:52: error[unresolved-attribute] Module `torch` has no member `int` +torch/nn/attention/flex_attention.py:403:21: error[unresolved-attribute] Module `torch` has no member `arange` +torch/nn/attention/flex_attention.py:403:50: error[unresolved-attribute] Module `torch` has no member `int` +torch/nn/attention/flex_attention.py:407:25: error[unresolved-attribute] Module `torch` has no member `where` +torch/nn/attention/flex_attention.py:422:38: error[unresolved-attribute] Module `torch` has no member `int32` +torch/nn/attention/flex_attention.py:424:19: error[unresolved-attribute] Module `torch` has no member `argsort` +torch/nn/attention/flex_attention.py:426:30: error[unresolved-attribute] Module `torch` has no member `int32` +torch/nn/attention/flex_attention.py:426:57: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/nn/attention/flex_attention.py:427:24: error[unresolved-attribute] Module `torch` has no member `int32` +torch/nn/attention/flex_attention.py:427:51: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/nn/attention/flex_attention.py:444:18: error[unresolved-attribute] Module `torch` has no member `where` +torch/nn/attention/flex_attention.py:445:18: error[unresolved-attribute] Module `torch` has no member `sum` +torch/nn/attention/flex_attention.py:445:76: error[unresolved-attribute] Module `torch` has no member `int32` +torch/nn/attention/flex_attention.py:910:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/attention/flex_attention.py:977:26: error[unresolved-attribute] Module `torch` has no member `bool` +torch/nn/attention/flex_attention.py:985:9: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[0], Unknown, Literal[0], Unknown]` +torch/nn/attention/flex_attention.py:1008:50: error[unresolved-attribute] Module `torch` has no member `int8` +torch/nn/attention/flex_attention.py:1009:44: error[unresolved-attribute] Module `torch` has no member `int8` +torch/nn/attention/flex_attention.py:1013:50: error[unresolved-attribute] Module `torch` has no member `int8` +torch/nn/attention/flex_attention.py:1023:40: error[unresolved-attribute] Module `torch` has no member `bool` +torch/nn/attention/flex_attention.py:1037:39: error[unresolved-attribute] Module `torch` has no member `bool` +torch/nn/attention/flex_attention.py:1112:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/nn/attention/flex_attention.py:1113:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/nn/attention/flex_attention.py:1114:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/nn/attention/flex_attention.py:1115:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/nn/attention/flex_attention.py:1124:29: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/nn/attention/flex_attention.py:1125:20: error[unresolved-attribute] Module `torch` has no member `where` +torch/nn/attention/flex_attention.py:1125:32: error[unresolved-attribute] Module `torch` has no member `isneginf` +torch/nn/attention/flex_attention.py:1228:23: error[unresolved-attribute] Module `torch` has no member `ones` +torch/nn/attention/flex_attention.py:1228:51: error[unresolved-attribute] Module `torch` has no member `int32` +torch/nn/attention/flex_attention.py:1229:20: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/nn/attention/flex_attention.py:1229:52: error[unresolved-attribute] Module `torch` has no member `int32` +torch/nn/attention/flex_attention.py:1272:46: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/nn/attention/flex_attention.py:1340:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/nn/attention/flex_attention.py:1341:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/nn/attention/varlen.py:88:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/nn/attention/varlen.py:89:21: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/nn/attention/varlen.py:113:14: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/nn/attention/varlen.py:118:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/attention/varlen.py:119:37: error[unresolved-attribute] Module `torch` has no member `float` +torch/nn/attention/varlen.py:122:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/attention/varlen.py:122:41: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/nn/attention/varlen.py:232:14: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/attention/varlen.py:293:18: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/nn/attention/varlen.py:294:16: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/nn/attention/varlen.py:295:18: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/nn/init.py:70:62: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/nn/init.py:80:26: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/nn/init.py:92:26: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/nn/init.py:218:26: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/nn/init.py:245:26: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/nn/init.py:274:26: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/nn/init.py:360:9: error[unresolved-attribute] Module `torch` has no member `eye` +torch/nn/init.py:441:26: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/nn/init.py:474:26: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/nn/init.py:504:12: error[invalid-assignment] Object of type `LiteralString` is not assignable to `Literal["fan_in", "fan_out"]` +torch/nn/init.py:518:26: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/nn/init.py:583:26: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/nn/init.py:634:26: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/nn/init.py:669:9: error[unresolved-attribute] Module `torch` has no member `diag` +torch/nn/init.py:686:26: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/nn/init.py:714:27: error[unresolved-attribute] Module `torch` has no member `randperm` +torch/nn/init.py:722:16: error[unresolved-attribute] Object of type `(...) -> _R@_make_deprecate` has no attribute `__name__` +torch/nn/modules/_functions.py:23:47: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/nn/modules/_functions.py:24:50: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/nn/modules/_functions.py:39:28: error[unresolved-attribute] Module `torch` has no member `batch_norm_stats` +torch/nn/modules/_functions.py:41:21: error[unresolved-attribute] Module `torch` has no member `full` +torch/nn/modules/_functions.py:49:24: error[unresolved-attribute] Module `torch` has no member `cat` +torch/nn/modules/_functions.py:55:24: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/nn/modules/_functions.py:68:29: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/_functions.py:74:13: warning[possibly-missing-attribute] Member `all_gather_into_tensor` may be missing on module `torch.distributed` +torch/nn/modules/_functions.py:77:24: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/nn/modules/_functions.py:82:30: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/nn/modules/_functions.py:83:13: warning[possibly-missing-attribute] Member `all_gather` may be missing on module `torch.distributed` +torch/nn/modules/_functions.py:84:24: error[unresolved-attribute] Module `torch` has no member `stack` +torch/nn/modules/_functions.py:106:24: error[unresolved-attribute] Module `torch` has no member `batch_norm_gather_stats_with_counts` +torch/nn/modules/_functions.py:117:74: error[unresolved-attribute] Module `torch` has no member `int32` +torch/nn/modules/_functions.py:122:20: error[unresolved-attribute] Module `torch` has no member `batch_norm_elemt` +torch/nn/modules/_functions.py:124:20: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/nn/modules/_functions.py:129:53: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/nn/modules/_functions.py:130:56: error[unresolved-attribute] Module `torch` has no member `channels_last_3d` +torch/nn/modules/_functions.py:144:17: error[unresolved-attribute] Module `torch` has no member `batch_norm_backward_reduce` +torch/nn/modules/_functions.py:158:28: error[unresolved-attribute] Module `torch` has no member `cat` +torch/nn/modules/_functions.py:159:17: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/nn/modules/_functions.py:161:21: warning[possibly-missing-attribute] Member `ReduceOp` may be missing on module `torch.distributed` +torch/nn/modules/_functions.py:170:30: error[unresolved-attribute] Module `torch` has no member `batch_norm_backward_elemt` +torch/nn/modules/_functions.py:196:28: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/nn/modules/_functions.py:199:17: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/nn/modules/_functions.py:201:21: warning[possibly-missing-attribute] Member `ReduceOp` may be missing on module `torch.distributed` +torch/nn/modules/_functions.py:236:9: error[unresolved-attribute] Module `torch` has no member `pow` +torch/nn/modules/_functions.py:263:9: error[unresolved-attribute] Module `torch` has no member `pow` +torch/nn/modules/_functions.py:287:9: error[unresolved-attribute] Module `torch` has no member `pow` +torch/nn/modules/_functions.py:292:13: error[unresolved-attribute] Module `torch` has no member `mul` +torch/nn/modules/_functions.py:294:13: error[unresolved-attribute] Module `torch` has no member `sum` +torch/nn/modules/activation.py:86:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `threshold` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:87:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `value` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:88:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `inplace` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:138:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `inplace` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:202:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `lower` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:203:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `upper` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:204:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `inplace` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:283:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `min_val` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:284:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `max_val` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:285:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `inplace` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:359:16: error[unresolved-attribute] Module `torch` has no member `sigmoid` +torch/nn/modules/activation.py:396:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `inplace` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:430:16: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/nn/modules/activation.py:467:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `inplace` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:512:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `inplace` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:564:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `inplace` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:610:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `alpha` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:611:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `inplace` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:661:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `alpha` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:662:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `inplace` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:718:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `inplace` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:762:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `dim` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:810:9: error[unresolved-attribute] Cannot assign object of type `str` to attribute `approximate` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:859:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `lambd` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:915:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `negative_slope` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:916:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `inplace` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:993:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `beta` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:994:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `threshold` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:1041:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `lambd` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:1075:13: error[unresolved-attribute] Module `torch.utils` has no member `_python_dispatch` +torch/nn/modules/activation.py:1080:28: error[unresolved-attribute] Module `torch.fx.experimental` has no member `proxy_tensor` +torch/nn/modules/activation.py:1189:9: error[unresolved-attribute] Cannot assign object of type `Unknown | float` to attribute `dropout` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:1190:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[False]` to attribute `batch_first` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:1198:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/activation.py:1201:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/activation.py:1204:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/activation.py:1209:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/activation.py:1216:43: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/activation.py:1224:37: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/activation.py:1225:37: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/activation.py:1227:13: error[unresolved-attribute] Cannot assign object of type `None` to attribute `bias_k` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:1227:27: error[unresolved-attribute] Cannot assign object of type `None` to attribute `bias_v` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:1229:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[False]` to attribute `add_zero_attn` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:1329:40: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/nn/modules/activation.py:1331:17: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/nn/modules/activation.py:1395:14: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/nn/modules/activation.py:1419:18: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/nn/modules/activation.py:1432:28: error[unresolved-attribute] Module `torch` has no member `_native_multi_head_attention` +torch/nn/modules/activation.py:1626:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `num_parameters` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:1628:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `init` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:1629:33: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/activation.py:1739:9: error[unresolved-attribute] Cannot assign object of type `int | None` to attribute `dim` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:1804:9: error[unresolved-attribute] Cannot assign object of type `int | None` to attribute `dim` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/activation.py:1889:9: error[unresolved-attribute] Cannot assign object of type `int | None` to attribute `dim` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/adaptive.py:151:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `in_features` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/adaptive.py:152:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `n_classes` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/adaptive.py:154:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `div_value` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/adaptive.py:155:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `head_bias` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/adaptive.py:158:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `n_clusters` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/adaptive.py:323:18: error[unresolved-attribute] Module `torch` has no member `argmax` +torch/nn/modules/adaptive.py:332:20: error[unresolved-attribute] Module `torch` has no member `argmax` +torch/nn/modules/adaptive.py:338:40: error[unresolved-attribute] Module `torch` has no member `argmax` +torch/nn/modules/batchnorm.py:50:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `num_features` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/batchnorm.py:51:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `eps` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/batchnorm.py:52:9: error[unresolved-attribute] Cannot assign object of type `int | float | None` to attribute `momentum` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/batchnorm.py:53:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `affine` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/batchnorm.py:54:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `track_running_stats` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/batchnorm.py:56:37: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/batchnorm.py:57:35: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/batchnorm.py:63:33: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/nn/modules/batchnorm.py:66:32: error[unresolved-attribute] Module `torch` has no member `ones` +torch/nn/modules/batchnorm.py:72:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/nn/modules/batchnorm.py:74:27: error[unresolved-attribute] Module `torch` has no member `long` +torch/nn/modules/batchnorm.py:129:60: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/modules/batchnorm.py:130:26: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/nn/modules/batchnorm.py:130:48: error[unresolved-attribute] Module `torch` has no member `long` +torch/nn/modules/batchnorm.py:226:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `_LazyProtocol`, found `_LazyNormBase` +torch/nn/modules/batchnorm.py:236:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[True]` to attribute `affine` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/batchnorm.py:237:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[True]` to attribute `track_running_stats` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/batchnorm.py:240:50: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/nn/modules/batchnorm.py:240:50: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/batchnorm.py:242:48: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/nn/modules/batchnorm.py:242:48: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/batchnorm.py:245:53: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/nn/modules/batchnorm.py:245:53: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/batchnorm.py:245:53: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/batchnorm.py:247:52: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/nn/modules/batchnorm.py:247:52: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/batchnorm.py:247:52: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/batchnorm.py:248:40: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/nn/modules/batchnorm.py:250:23: error[unresolved-attribute] Module `torch` has no member `long` +torch/nn/modules/batchnorm.py:257:16: error[invalid-argument-type] Argument to bound method `has_uninitialized_params` is incorrect: Expected `_LazyProtocol`, found `Self@reset_parameters` +torch/nn/modules/batchnorm.py:262:12: error[invalid-argument-type] Argument to bound method `has_uninitialized_params` is incorrect: Expected `_LazyProtocol`, found `Self@initialize_parameters` +torch/nn/modules/batchnorm.py:732:9: error[unresolved-attribute] Cannot assign object of type `Any | None` to attribute `process_group` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/batchnorm.py:794:17: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/nn/modules/batchnorm.py:802:17: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/nn/modules/batchnorm.py:806:24: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/nn/modules/batchnorm.py:809:29: warning[possibly-missing-attribute] Member `group` may be missing on module `torch.distributed` +torch/nn/modules/batchnorm.py:812:26: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/nn/modules/channelshuffle.py:50:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `groups` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/container.py:153:9: error[unresolved-attribute] Cannot assign object of type `OrderedDict[Unknown, Unknown]` to attribute `_modules` on type `Self@__delitem__` with custom `__setattr__` method. +torch/nn/modules/container.py:400:9: error[unresolved-attribute] Cannot assign object of type `OrderedDict[Unknown, Unknown]` to attribute `_modules` on type `Self@__delitem__` with custom `__setattr__` method. +torch/nn/modules/container.py:678:9: error[unresolved-attribute] Cannot assign object of type `Literal[0]` to attribute `_size` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/container.py:771:46: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/nn/modules/container.py:1008:46: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/nn/modules/conv.py:71:10: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `Tensor` +torch/nn/modules/conv.py:127:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `in_channels` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/conv.py:128:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `out_channels` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/conv.py:129:9: error[unresolved-attribute] Cannot assign object of type `tuple[int, ...]` to attribute `kernel_size` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/conv.py:130:9: error[unresolved-attribute] Cannot assign object of type `tuple[int, ...]` to attribute `stride` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/conv.py:131:9: error[unresolved-attribute] Cannot assign object of type `str | tuple[int, ...]` to attribute `padding` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/conv.py:132:9: error[unresolved-attribute] Cannot assign object of type `tuple[int, ...]` to attribute `dilation` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/conv.py:133:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `transposed` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/conv.py:134:9: error[unresolved-attribute] Cannot assign object of type `tuple[int, ...]` to attribute `output_padding` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/conv.py:135:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `groups` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/conv.py:136:9: error[unresolved-attribute] Cannot assign object of type `Literal["circular", "reflect", "replicate", "zeros"]` to attribute `padding_mode` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/conv.py:142:13: error[unresolved-attribute] Cannot assign object of type `list[Unknown | int]` to attribute `_reversed_padding_repeated_twice` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/conv.py:163:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/conv.py:170:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/conv.py:176:35: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/conv.py:1521:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `_LazyProtocol`, found `LazyConv1d` +torch/nn/modules/conv.py:1536:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/nn/modules/conv.py:1536:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/conv.py:1537:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `out_channels` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/conv.py:1540:48: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/nn/modules/conv.py:1540:48: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/conv.py:1593:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `_LazyProtocol`, found `LazyConv2d` +torch/nn/modules/conv.py:1608:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/nn/modules/conv.py:1608:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/conv.py:1609:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `out_channels` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/conv.py:1612:48: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/nn/modules/conv.py:1612:48: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/conv.py:1666:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `_LazyProtocol`, found `LazyConv3d` +torch/nn/modules/conv.py:1681:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/nn/modules/conv.py:1681:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/conv.py:1682:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `out_channels` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/conv.py:1685:48: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/nn/modules/conv.py:1685:48: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/conv.py:1737:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `_LazyProtocol`, found `LazyConvTranspose1d` +torch/nn/modules/conv.py:1753:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/nn/modules/conv.py:1753:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/conv.py:1754:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `out_channels` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/conv.py:1757:48: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/nn/modules/conv.py:1757:48: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/conv.py:1809:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `_LazyProtocol`, found `LazyConvTranspose2d` +torch/nn/modules/conv.py:1825:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/nn/modules/conv.py:1825:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/conv.py:1826:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `out_channels` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/conv.py:1829:48: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/nn/modules/conv.py:1829:48: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/conv.py:1881:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `_LazyProtocol`, found `LazyConvTranspose3d` +torch/nn/modules/conv.py:1897:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/nn/modules/conv.py:1897:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/conv.py:1898:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `out_channels` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/conv.py:1901:48: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/nn/modules/conv.py:1901:48: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/distance.py:53:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `norm` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/distance.py:54:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `eps` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/distance.py:55:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `keepdim` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/distance.py:93:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `dim` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/distance.py:94:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `eps` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/dropout.py:28:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `p` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/dropout.py:29:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `inplace` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/flatten.py:48:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `start_dim` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/flatten.py:49:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `end_dim` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/flatten.py:127:9: error[unresolved-attribute] Cannot assign object of type `int | str` to attribute `dim` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/flatten.py:128:9: error[unresolved-attribute] Cannot assign object of type `Unknown | list[int] | tuple[int, ...] | tuple[tuple[str, int]]` to attribute `unflattened_size` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/lazy.py:176:9: error[invalid-assignment] Cannot assign to read-only property `_load_hook` on object of type `_LazyProtocol`: Attempted assignment to `_LazyProtocol._load_hook` here +torch/nn/modules/lazy.py:178:9: error[invalid-assignment] Cannot assign to read-only property `_initialize_hook` on object of type `_LazyProtocol`: Attempted assignment to `_LazyProtocol._initialize_hook` here +torch/nn/modules/linear.py:106:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `in_features` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/linear.py:107:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `out_features` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/linear.py:109:13: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/linear.py:112:35: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/linear.py:217:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `in1_features` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/linear.py:218:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `in2_features` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/linear.py:219:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `out_features` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/linear.py:221:13: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/linear.py:225:35: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/linear.py:300:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `_LazyProtocol`, found `LazyLinear` +torch/nn/modules/linear.py:302:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/nn/modules/linear.py:302:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/linear.py:303:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `out_features` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/linear.py:306:48: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Tensor`, found `Unknown | None` +torch/nn/modules/linear.py:306:48: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/linear.py:313:16: error[invalid-argument-type] Argument to bound method `has_uninitialized_params` is incorrect: Expected `_LazyProtocol`, found `Self@reset_parameters` +torch/nn/modules/linear.py:321:12: error[invalid-argument-type] Argument to bound method `has_uninitialized_params` is incorrect: Expected `_LazyProtocol`, found `Self@initialize_parameters` +torch/nn/modules/loss.py:47:13: error[unresolved-attribute] Cannot assign object of type `str` to attribute `reduction` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:251:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `ignore_index` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:356:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `log_input` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:357:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `full` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:358:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `eps` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:449:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `full` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:450:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `eps` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:553:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `log_target` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:904:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `margin` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:1054:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `beta` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:1116:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `delta` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:1358:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `ignore_index` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:1359:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `label_smoothing` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:1484:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `margin` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:1551:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `margin` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:1641:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `p` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:1642:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `margin` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:1747:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `margin` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:1748:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `p` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:1749:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `eps` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:1750:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `swap` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:1885:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `margin` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:1886:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `swap` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:2060:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `blank` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/loss.py:2061:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `zero_infinity` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/module.py:14:19: error[unresolved-import] Module `torch` has no member `device` +torch/nn/modules/module.py:14:27: error[unresolved-import] Module `torch` has no member `dtype` +torch/nn/modules/module.py:484:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/nn/modules/module.py:938:16: error[unresolved-attribute] Module `torch` has no member `_has_compatible_shallow_copy_type` +torch/nn/modules/module.py:1236:23: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/nn/modules/module.py:1339:58: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/nn/modules/module.py:1454:9: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `_is_full_backward_hook` on type `Self@register_backward_hook` with custom `__setattr__` method. +torch/nn/modules/module.py:1518:9: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `_is_full_backward_hook` on type `Self@register_full_backward_hook` with custom `__setattr__` method. +torch/nn/modules/module.py:1755:25: error[unresolved-attribute] Module `torch._C` has no member `_get_tracing_state` +torch/nn/modules/module.py:1756:58: error[unresolved-attribute] Module `torch._C` has no member `ScriptMethod` +torch/nn/modules/module.py:1783:47: error[unresolved-attribute] Module `torch._C` has no member `_get_tracing_state` +torch/nn/modules/module.py:1929:13: error[unresolved-attribute] Cannot assign object of type `OrderedDict[Unknown, Unknown]` to attribute `_forward_pre_hooks` on type `Self@__setstate__` with custom `__setattr__` method. +torch/nn/modules/module.py:1931:13: error[unresolved-attribute] Cannot assign object of type `OrderedDict[Unknown, Unknown]` to attribute `_forward_pre_hooks_with_kwargs` on type `Self@__setstate__` with custom `__setattr__` method. +torch/nn/modules/module.py:1933:13: error[unresolved-attribute] Cannot assign object of type `OrderedDict[Unknown, Unknown]` to attribute `_forward_hooks_with_kwargs` on type `Self@__setstate__` with custom `__setattr__` method. +torch/nn/modules/module.py:1935:13: error[unresolved-attribute] Cannot assign object of type `OrderedDict[Unknown, Unknown]` to attribute `_forward_hooks_always_called` on type `Self@__setstate__` with custom `__setattr__` method. +torch/nn/modules/module.py:1937:13: error[unresolved-attribute] Cannot assign object of type `OrderedDict[Unknown, Unknown]` to attribute `_state_dict_hooks` on type `Self@__setstate__` with custom `__setattr__` method. +torch/nn/modules/module.py:1939:13: error[unresolved-attribute] Cannot assign object of type `OrderedDict[Unknown, Unknown]` to attribute `_state_dict_pre_hooks` on type `Self@__setstate__` with custom `__setattr__` method. +torch/nn/modules/module.py:1941:13: error[unresolved-attribute] Cannot assign object of type `OrderedDict[Unknown, Unknown]` to attribute `_load_state_dict_pre_hooks` on type `Self@__setstate__` with custom `__setattr__` method. +torch/nn/modules/module.py:1943:13: error[unresolved-attribute] Cannot assign object of type `OrderedDict[Unknown, Unknown]` to attribute `_load_state_dict_post_hooks` on type `Self@__setstate__` with custom `__setattr__` method. +torch/nn/modules/module.py:1945:13: error[unresolved-attribute] Cannot assign object of type `set[Unknown]` to attribute `_non_persistent_buffers_set` on type `Self@__setstate__` with custom `__setattr__` method. +torch/nn/modules/module.py:1947:13: error[unresolved-attribute] Cannot assign object of type `None` to attribute `_is_full_backward_hook` on type `Self@__setstate__` with custom `__setattr__` method. +torch/nn/modules/module.py:1949:13: error[unresolved-attribute] Cannot assign object of type `OrderedDict[Unknown, Unknown]` to attribute `_backward_pre_hooks` on type `Self@__setstate__` with custom `__setattr__` method. +torch/nn/modules/module.py:2258:13: error[unresolved-attribute] Unresolved attribute `_metadata` on type `OrderedDict[Unknown, Unknown]`. +torch/nn/modules/module.py:2262:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `object` +torch/nn/modules/module.py:2897:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `training` on type `Self@train` with custom `__setattr__` method. +torch/nn/modules/module.py:3048:9: error[unresolved-attribute] Cannot assign object of type `(...) -> Unknown` to attribute `_compiled_call_impl` on type `Self@compile` with custom `__setattr__` method. +torch/nn/modules/normalization.py:6:19: error[unresolved-import] Module `torch` has no member `Size` +torch/nn/modules/normalization.py:57:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `size` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/normalization.py:58:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `alpha` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/normalization.py:59:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `beta` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/normalization.py:60:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `k` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/normalization.py:85:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `size` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/normalization.py:86:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `alpha` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/normalization.py:87:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `beta` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/normalization.py:88:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `k` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/normalization.py:204:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `eps` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/normalization.py:205:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `elementwise_affine` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/normalization.py:208:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/normalization.py:212:21: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/normalization.py:230:20: error[invalid-argument-type] Argument to function `layer_norm` is incorrect: Expected `list[int]`, found `tuple[int, ...]` +torch/nn/modules/normalization.py:306:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `num_groups` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/normalization.py:307:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `num_channels` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/normalization.py:308:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `eps` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/normalization.py:309:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `affine` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/normalization.py:311:37: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/normalization.py:312:35: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/normalization.py:393:9: error[unresolved-attribute] Cannot assign object of type `int | float | None` to attribute `eps` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/normalization.py:394:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `elementwise_affine` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/normalization.py:397:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/normalization.py:414:30: error[invalid-argument-type] Argument to function `rms_norm` is incorrect: Expected `list[int]`, found `tuple[int, ...]` +torch/nn/modules/padding.py:42:29: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `Sequence[int]` +torch/nn/modules/padding.py:218:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `value` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/padding.py:221:29: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `Sequence[int]` +torch/nn/modules/padding.py:377:29: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `Sequence[int]` +torch/nn/modules/padding.py:541:29: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `Sequence[int]` +torch/nn/modules/pixelshuffle.py:56:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `upscale_factor` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/pixelshuffle.py:115:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `downscale_factor` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/sparse.py:151:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `num_embeddings` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/sparse.py:152:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `embedding_dim` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/sparse.py:163:9: error[unresolved-attribute] Cannot assign object of type `int | None` to attribute `padding_idx` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/sparse.py:164:9: error[unresolved-attribute] Cannot assign object of type `int | float | None` to attribute `max_norm` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/sparse.py:165:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `norm_type` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/sparse.py:166:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `scale_grad_by_freq` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/sparse.py:169:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/sparse.py:180:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `sparse` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/sparse.py:389:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `num_embeddings` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/sparse.py:390:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `embedding_dim` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/sparse.py:391:9: error[unresolved-attribute] Cannot assign object of type `int | float | None` to attribute `max_norm` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/sparse.py:392:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `norm_type` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/sparse.py:393:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `scale_grad_by_freq` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/sparse.py:404:9: error[unresolved-attribute] Cannot assign object of type `int | None` to attribute `padding_idx` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/sparse.py:407:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/modules/sparse.py:416:9: error[unresolved-attribute] Cannot assign object of type `str` to attribute `mode` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/sparse.py:417:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `sparse` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/sparse.py:418:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `include_last_offset` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:31:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/modules/transformer.py:32:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/nn/modules/transformer.py:38:12: error[unresolved-attribute] Module `torch` has no member `triu` +torch/nn/modules/transformer.py:39:9: error[unresolved-attribute] Module `torch` has no member `full` +torch/nn/modules/transformer.py:120:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/nn/modules/transformer.py:142:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/transformer.py:168:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/transformer.py:176:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `d_model` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:177:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `nhead` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:179:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `batch_first` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:304:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/modules/transformer.py:305:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/nn/modules/transformer.py:362:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/nn/modules/transformer.py:364:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `num_layers` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:365:9: error[unresolved-attribute] Cannot assign object of type `Module | None` to attribute `norm` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:367:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `enable_nested_tensor` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:369:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `use_nested_tensor` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:370:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `mask_check` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:405:13: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `use_nested_tensor` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:482:36: error[unresolved-attribute] Module `torch` has no member `_nested_tensor_from_mask_left_aligned` +torch/nn/modules/transformer.py:492:14: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/nn/modules/transformer.py:522:18: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/nn/modules/transformer.py:530:26: error[unresolved-attribute] Module `torch` has no member `_nested_tensor_from_mask` +torch/nn/modules/transformer.py:593:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/nn/modules/transformer.py:595:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `num_layers` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:596:9: error[unresolved-attribute] Cannot assign object of type `Module | None` to attribute `norm` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:771:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `norm_first` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:773:72: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/transformer.py:775:72: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/transformer.py:786:13: error[unresolved-attribute] Cannot assign object of type `Literal[1]` to attribute `activation_relu_or_gelu` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:788:13: error[unresolved-attribute] Cannot assign object of type `Literal[2]` to attribute `activation_relu_or_gelu` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:790:13: error[unresolved-attribute] Cannot assign object of type `Literal[0]` to attribute `activation_relu_or_gelu` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:791:9: error[unresolved-attribute] Cannot assign object of type `(Tensor, /) -> Tensor` to attribute `activation` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:868:14: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/nn/modules/transformer.py:909:18: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/nn/modules/transformer.py:919:24: error[unresolved-attribute] Module `torch` has no member `_transformer_encoder_layer_fwd` +torch/nn/modules/transformer.py:1065:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `norm_first` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:1067:72: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/transformer.py:1069:72: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/transformer.py:1071:72: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | None` +torch/nn/modules/transformer.py:1078:13: error[unresolved-attribute] Cannot assign object of type `(Tensor, /) -> Tensor` to attribute `activation` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/transformer.py:1080:13: error[unresolved-attribute] Cannot assign object of type `((Tensor, /) -> Tensor) & ~str` to attribute `activation` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/upsampling.py:161:9: error[unresolved-attribute] Cannot assign object of type `str` to attribute `name` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/upsampling.py:162:9: error[unresolved-attribute] Cannot assign object of type `@Todo | None` to attribute `size` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/upsampling.py:164:13: error[unresolved-attribute] Cannot assign object of type `tuple[float, ...]` to attribute `scale_factor` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/upsampling.py:166:13: error[unresolved-attribute] Cannot assign object of type `float | None` to attribute `scale_factor` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/upsampling.py:167:9: error[unresolved-attribute] Cannot assign object of type `str` to attribute `mode` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/upsampling.py:168:9: error[unresolved-attribute] Cannot assign object of type `bool | None` to attribute `align_corners` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/upsampling.py:169:9: error[unresolved-attribute] Cannot assign object of type `bool | None` to attribute `recompute_scale_factor` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/modules/utils.py:12:26: error[unresolved-attribute] Module `collections` has no member `abc` +torch/nn/modules/utils.py:72:21: error[unresolved-attribute] Object of type `object` has no attribute `keys` +torch/nn/modules/utils.py:83:17: error[invalid-assignment] Cannot assign to a subscript on an object of type `object` +torch/nn/modules/utils.py:83:48: error[unresolved-attribute] Object of type `object` has no attribute `pop` +torch/nn/parallel/comm.py:44:16: error[unresolved-attribute] Module `torch._C` has no member `_broadcast` +torch/nn/parallel/comm.py:47:16: error[unresolved-attribute] Module `torch._C` has no member `_broadcast_out` +torch/nn/parallel/comm.py:67:12: error[unresolved-attribute] Module `torch._C` has no member `_broadcast_coalesced` +torch/nn/parallel/comm.py:107:18: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/nn/parallel/comm.py:110:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/comm.py:205:50: error[not-iterable] Object of type `Unknown | None` may not be iterable +torch/nn/parallel/comm.py:206:22: error[unresolved-attribute] Module `torch._C` has no member `_scatter` +torch/nn/parallel/comm.py:216:22: error[unresolved-attribute] Module `torch._C` has no member `_scatter_out` +torch/nn/parallel/comm.py:255:16: error[unresolved-attribute] Module `torch._C` has no member `_gather` +torch/nn/parallel/comm.py:261:16: error[unresolved-attribute] Module `torch._C` has no member `_gather_out` +torch/nn/parallel/data_parallel.py:24:47: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/data_parallel.py:139:36: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/data_parallel.py:140:30: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/data_parallel.py:144:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/nn/parallel/data_parallel.py:148:13: error[unresolved-attribute] Cannot assign object of type `list[Unknown]` to attribute `device_ids` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/data_parallel.py:160:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `dim` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/data_parallel.py:162:9: error[unresolved-attribute] Cannot assign object of type `list[int | Unknown]` to attribute `device_ids` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/data_parallel.py:163:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `output_device` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/data_parallel.py:165:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/data_parallel.py:200:63: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/data_parallel.py:201:50: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/nn/parallel/data_parallel.py:207:36: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/data_parallel.py:218:57: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/data_parallel.py:225:32: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/data_parallel.py:226:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/data_parallel.py:264:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/distributed.py:43:4: error[unresolved-attribute] Module `torch.distributed` has no member `rpc` +torch/nn/parallel/distributed.py:45:39: warning[possibly-missing-import] Member `RRef` of module `torch.distributed.rpc` may be missing +torch/nn/parallel/distributed.py:90:18: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/nn/parallel/distributed.py:91:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/nn/parallel/distributed.py:92:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/nn/parallel/distributed.py:116:31: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/nn/parallel/distributed.py:675:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `_use_python_reducer` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:678:22: warning[possibly-missing-attribute] Member `Logger` may be missing on module `torch.distributed` +torch/nn/parallel/distributed.py:693:13: error[unresolved-attribute] Cannot assign object of type `ProcessGroup` to attribute `process_group` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:696:13: error[unresolved-attribute] Cannot assign object of type `Unknown | None` to attribute `process_group` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:719:9: error[unresolved-attribute] Cannot assign object of type `list[Unknown]` to attribute `_delay_all_reduce_params` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:721:13: error[unresolved-attribute] Cannot assign object of type `set[Unknown]` to attribute `parameters_to_ignore` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:723:13: error[unresolved-attribute] Cannot assign object of type `set[Unknown]` to attribute `parameters_to_ignore` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:729:9: error[unresolved-attribute] Cannot assign object of type `list[Unknown]` to attribute `_module_parameters` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:750:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `is_multi_device_module` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:780:13: error[unresolved-attribute] Cannot assign object of type `None` to attribute `device_ids` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:781:13: error[unresolved-attribute] Cannot assign object of type `None` to attribute `output_device` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:784:13: error[unresolved-attribute] Cannot assign object of type `list[int | Unknown]` to attribute `device_ids` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:790:13: error[unresolved-attribute] Cannot assign object of type `int` to attribute `output_device` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:792:9: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `static_graph` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:793:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[0]` to attribute `dim` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:796:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[True]` to attribute `broadcast_buffers` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:797:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[False]` to attribute `find_unused_parameters` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:798:9: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `require_backward_grad_sync` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:799:9: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `require_forward_param_sync` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:800:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[False]` to attribute `gradient_as_bucket_view` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:801:9: error[unresolved-attribute] Cannot assign object of type `_MixedPrecision | None` to attribute `mixed_precision` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:825:9: error[unresolved-attribute] Cannot assign object of type `Literal[262144000]` to attribute `broadcast_bucket_size` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:831:13: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `bucket_bytes_cap_default` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:833:13: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `bucket_bytes_cap_default` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:834:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `bucket_bytes_cap` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:837:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `use_side_stream_for_tensor_copies` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:844:9: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `_delay_all_reduce_all_params` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:854:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[False]` to attribute `skip_all_reduce_unused_params` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:862:50: error[invalid-argument-type] Argument to function `_verify_param_shape_across_processes` is incorrect: Expected `ProcessGroup`, found `ProcessGroup | Unknown | None` +torch/nn/parallel/distributed.py:866:17: error[invalid-argument-type] Argument to function `_sync_module_states` is incorrect: Expected `ProcessGroup`, found `ProcessGroup | Unknown | None` +torch/nn/parallel/distributed.py:889:31: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/nn/parallel/distributed.py:915:31: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/nn/parallel/distributed.py:927:9: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `_has_rebuilt_buckets` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:932:9: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `_lazy_init_ran` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:940:13: error[invalid-assignment] Object of type `Literal[True]` is not assignable to attribute `_fuse_ddp_communication` of type `Literal[False]` +torch/nn/parallel/distributed.py:944:13: error[unresolved-attribute] Module `torch._dynamo` has no member `trace_rules` +torch/nn/parallel/distributed.py:947:13: error[unresolved-attribute] Module `torch._dynamo` has no member `trace_rules` +torch/nn/parallel/distributed.py:952:9: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `_ddp_sink_clone` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:972:41: warning[possibly-missing-attribute] Attribute `size` may be missing on object of type `Unknown | ProcessGroup | None` +torch/nn/parallel/distributed.py:973:61: error[invalid-argument-type] Argument to function `all_reduce` is incorrect: Expected `list[int] | list[list[int]] | ProcessGroup | ... omitted 3 union elements`, found `Unknown | ProcessGroup | None` +torch/nn/parallel/distributed.py:989:22: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/nn/parallel/distributed.py:992:13: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/nn/parallel/distributed.py:1004:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/distributed.py:1005:35: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/nn/parallel/distributed.py:1012:9: warning[possibly-missing-attribute] Member `_broadcast_coalesced` may be missing on module `torch.distributed` +torch/nn/parallel/distributed.py:1012:35: error[invalid-argument-type] Argument to function `_broadcast_coalesced` is incorrect: Expected `ProcessGroup`, found `Unknown | ProcessGroup | None` +torch/nn/parallel/distributed.py:1036:9: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `_delay_all_reduce_all_params` on type `Self@_register_delay_all_reduce_hook` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:1050:13: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/nn/parallel/distributed.py:1055:17: error[unresolved-attribute] Module `torch.distributed` has no member `optim` +torch/nn/parallel/distributed.py:1125:30: error[unresolved-attribute] Module `torch` has no member `Event` +torch/nn/parallel/distributed.py:1204:21: warning[possibly-missing-attribute] Member `_DEFAULT_FIRST_BUCKET_BYTES` may be missing on module `torch.distributed` +torch/nn/parallel/distributed.py:1212:13: warning[possibly-missing-attribute] Member `_compute_bucket_assignment_by_size` may be missing on module `torch.distributed` +torch/nn/parallel/distributed.py:1227:9: error[unresolved-attribute] Cannot assign object of type `Reducer` to attribute `reducer` on type `Self@_ddp_init_helper` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:1227:24: warning[possibly-missing-attribute] Member `Reducer` may be missing on module `torch.distributed` +torch/nn/parallel/distributed.py:1231:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ProcessGroup`, found `Unknown | ProcessGroup | None` +torch/nn/parallel/distributed.py:1245:17: warning[possibly-missing-attribute] Member `_DEFAULT_FIRST_BUCKET_BYTES` may be missing on module `torch.distributed` +torch/nn/parallel/distributed.py:1253:9: error[unresolved-attribute] Cannot assign object of type `Logger` to attribute `logger` on type `Self@_ddp_init_helper` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:1253:23: warning[possibly-missing-attribute] Member `Logger` may be missing on module `torch.distributed` +torch/nn/parallel/distributed.py:1287:9: error[unresolved-attribute] Cannot assign object of type `ProcessGroup` to attribute `process_group` on type `Self@__setstate__` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:1368:9: error[unresolved-attribute] Cannot assign object of type `list[Unknown]` to attribute `modules_buffers` on type `Self@_assign_modules_buffers` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:1372:9: error[unresolved-attribute] Cannot assign object of type `dict[Unknown, Unknown]` to attribute `named_module_buffers` on type `Self@_assign_modules_buffers` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:1464:9: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `require_backward_grad_sync` on type `Self@no_sync` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:1468:13: error[unresolved-attribute] Cannot assign object of type `Unknown | bool` to attribute `require_backward_grad_sync` on type `Self@no_sync` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:1519:9: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `_lazy_init_ran` on type `Self@_lazy_init` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:1531:12: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/nn/parallel/distributed.py:1551:12: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/nn/parallel/distributed.py:1553:13: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `_has_rebuilt_buckets` on type `Self@_pre_forward` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:1568:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/distributed.py:1604:12: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/nn/parallel/distributed.py:1605:13: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `require_forward_param_sync` on type `Self@_post_forward` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:1617:13: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `require_forward_param_sync` on type `Self@_post_forward` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:1678:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/distributed.py:1693:36: error[unresolved-attribute] Module `torch` has no member `ones` +torch/nn/parallel/distributed.py:1695:36: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/nn/parallel/distributed.py:1697:16: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/nn/parallel/distributed.py:1731:13: error[invalid-argument-type] Argument to function `_sync_module_states` is incorrect: Expected `ProcessGroup`, found `Unknown | ProcessGroup | None` +torch/nn/parallel/distributed.py:1763:9: warning[possibly-missing-attribute] Attribute `allreduce` may be missing on object of type `Unknown | ProcessGroup | None` +torch/nn/parallel/distributed.py:1947:9: error[unresolved-attribute] Cannot assign object of type `_BufferCommHook` to attribute `buffer_hook` on type `Self@_register_buffer_comm_hook` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:2030:41: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__qualname__` +torch/nn/parallel/distributed.py:2032:9: warning[possibly-missing-attribute] Member `_register_comm_hook` may be missing on module `torch.distributed` +torch/nn/parallel/distributed.py:2059:9: warning[possibly-missing-attribute] Member `_register_builtin_comm_hook` may be missing on module `torch.distributed` +torch/nn/parallel/distributed.py:2136:9: warning[possibly-missing-attribute] Member `_broadcast_coalesced` may be missing on module `torch.distributed` +torch/nn/parallel/distributed.py:2137:13: error[invalid-argument-type] Argument to function `_broadcast_coalesced` is incorrect: Expected `ProcessGroup`, found `Unknown | ProcessGroup | None` +torch/nn/parallel/distributed.py:2165:23: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/nn/parallel/distributed.py:2169:9: warning[possibly-missing-attribute] Member `all_reduce` may be missing on module `torch.distributed` +torch/nn/parallel/distributed.py:2239:56: warning[possibly-missing-attribute] Member `GradBucket` may be missing on module `torch.distributed` +torch/nn/parallel/distributed.py:2261:21: warning[possibly-missing-attribute] Member `is_nccl_available` may be missing on module `torch.distributed` +torch/nn/parallel/distributed.py:2262:21: error[unresolved-attribute] Module `torch.cuda` has no member `nccl` +torch/nn/parallel/distributed.py:2266:21: warning[possibly-missing-attribute] Member `is_xccl_available` may be missing on module `torch.distributed` +torch/nn/parallel/distributed.py:2278:16: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/nn/parallel/distributed.py:2372:9: error[unresolved-attribute] Cannot assign object of type `Literal[True]` to attribute `static_graph` on type `Self@_set_static_graph` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:2373:9: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `_static_graph_delay_allreduce_enqueued` on type `Self@_set_static_graph` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:2416:9: error[unresolved-attribute] Cannot assign object of type `Literal[False]` to attribute `_has_rebuilt_buckets` on type `Self@_update_process_group` with custom `__setattr__` method. +torch/nn/parallel/distributed.py:2434:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `_ddp_sink_clone` on type `Self@_set_ddp_sink_clone` with custom `__setattr__` method. +torch/nn/parallel/parallel_apply.py:35:29: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/parallel_apply.py:67:9: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/nn/parallel/parallel_apply.py:68:9: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/nn/parallel/parallel_apply.py:76:23: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/parallel_apply.py:77:17: error[unresolved-attribute] Module `torch` has no member `Stream` +torch/nn/parallel/parallel_apply.py:90:31: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/replicate.py:13:26: error[unresolved-import] Module `torch._C` has no member `ScriptMethod` +torch/nn/parallel/replicate.py:30:31: error[unresolved-attribute] Module `torch._C` has no member `ScriptMethod` +torch/nn/parallel/replicate.py:85:29: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/replicate.py:109:29: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/scatter_gather.py:36:33: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/scatter_gather.py:44:33: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/scatter_gather.py:97:33: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parallel/scatter_gather.py:114:47: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/parameter.py:5:22: error[unresolved-import] Module `torch._C` has no member `_disabled_torch_function_impl` +torch/nn/parameter.py:19:22: error[unresolved-attribute] Module `torch._C` has no member `_TensorMeta` +torch/nn/parameter.py:30:1: error[conflicting-metaclass] The metaclass of a derived class (`Parameter`) must be a subclass of the metaclasses of all its bases, but `_ParameterMeta` (metaclass of `Parameter`) and `type` (metaclass of base class `Tensor`) have no subclass relationship +torch/nn/parameter.py:53:20: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/parameter.py:79:47: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/nn/parameter.py:125:9: error[unresolved-attribute] Module `torch` has no member `_has_compatible_shallow_copy_type` +torch/nn/parameter.py:146:21: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/parameter.py:148:26: error[unresolved-attribute] Object of type `Self@materialize` has no attribute `cls_to_become` +torch/nn/parameter.py:172:34: error[unresolved-attribute] Object of type `Self@__reduce_ex__` has no attribute `requires_grad` +torch/nn/parameter.py:222:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/parameter.py:236:19: error[unresolved-attribute] Module `torch._C` has no member `_TensorMeta` +torch/nn/parameter.py:247:1: error[conflicting-metaclass] The metaclass of a derived class (`Buffer`) must be a subclass of the metaclasses of all its bases, but `_BufferMeta` (metaclass of `Buffer`) and `type` (metaclass of base class `Tensor`) have no subclass relationship +torch/nn/parameter.py:266:20: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/parameter.py:300:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/nn/parameter.pyi:3:19: error[unresolved-import] Module `torch` has no member `device` +torch/nn/parameter.pyi:3:27: error[unresolved-import] Module `torch` has no member `dtype` +torch/nn/utils/__init__.py:5:5: warning[deprecated] The function `clip_grad_norm` is deprecated: `torch.nn.utils.clip_grad_norm` is now deprecated in favor of `torch.nn.utils.clip_grad_norm_`. +torch/nn/utils/_expanded_weights/conv_utils.py:184:23: error[unresolved-attribute] Module `torch` has no member `narrow` +torch/nn/utils/_expanded_weights/conv_utils.py:336:17: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Unknown, Unknown, Unknown, Unknown, Unknown, Unknown]` +torch/nn/utils/_expanded_weights/expanded_weights_impl.py:18:5: error[unresolved-attribute] Module `torch` has no member `rnn_relu` +torch/nn/utils/_expanded_weights/expanded_weights_impl.py:22:5: error[unresolved-attribute] Module `torch` has no member `rnn_tanh` +torch/nn/utils/_expanded_weights/expanded_weights_impl.py:26:5: error[unresolved-attribute] Module `torch` has no member `lstm` +torch/nn/utils/_expanded_weights/expanded_weights_impl.py:30:5: error[unresolved-attribute] Module `torch` has no member `gru` +torch/nn/utils/_expanded_weights/expanded_weights_impl.py:135:17: error[index-out-of-bounds] Index 2 is out of bounds for tuple `tuple[()]` with length 0 +torch/nn/utils/_expanded_weights/expanded_weights_impl.py:143:20: error[unresolved-attribute] Module `torch` has no member `_cudnn_rnn_flatten_weight` +torch/nn/utils/_expanded_weights/expanded_weights_utils.py:134:28: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py:35:13: error[unresolved-attribute] Module `torch` has no member `native_group_norm` +torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py:21:33: error[unresolved-attribute] Module `torch` has no member `instance_norm` +torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py:59:20: error[unresolved-attribute] Module `torch` has no member `mean` +torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py:62:19: error[unresolved-attribute] Module `torch` has no member `var` +torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py:68:24: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py:32:13: error[unresolved-attribute] Module `torch` has no member `native_layer_norm` +torch/nn/utils/clip_grad.py:83:16: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/nn/utils/clip_grad.py:86:15: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/utils/clip_grad.py:86:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/nn/utils/clip_grad.py:96:26: error[unresolved-attribute] Module `torch` has no member `_foreach_norm` +torch/nn/utils/clip_grad.py:107:9: error[unresolved-attribute] Module `torch` has no member `stack` +torch/nn/utils/clip_grad.py:110:31: error[unresolved-attribute] Module `torch` has no member `logical_or` +torch/nn/utils/clip_grad.py:162:15: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/utils/clip_grad.py:162:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/nn/utils/clip_grad.py:169:25: error[unresolved-attribute] Module `torch` has no member `clamp` +torch/nn/utils/clip_grad.py:174:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/nn/utils/clip_grad.py:291:13: error[unresolved-attribute] Module `torch` has no member `_foreach_clamp_min_` +torch/nn/utils/clip_grad.py:292:13: error[unresolved-attribute] Module `torch` has no member `_foreach_clamp_max_` +torch/nn/utils/convert_parameters.py:25:12: error[unresolved-attribute] Module `torch` has no member `cat` +torch/nn/utils/convert_parameters.py:72:37: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/nn/utils/fusion.py:84:18: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/nn/utils/fusion.py:86:16: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/nn/utils/fusion.py:88:16: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/nn/utils/fusion.py:89:20: error[unresolved-attribute] Module `torch` has no member `rsqrt` +torch/nn/utils/fusion.py:182:20: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/nn/utils/fusion.py:183:23: error[unresolved-attribute] Module `torch` has no member `rsqrt` +torch/nn/utils/memory_format.py:12:32: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/nn/utils/memory_format.py:92:32: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/nn/utils/parametrizations.py:16:10: error[unresolved-attribute] Module `torch` has no member `eye` +torch/nn/utils/parametrizations.py:18:22: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/nn/utils/parametrizations.py:19:12: error[unresolved-attribute] Module `torch` has no member `allclose` +torch/nn/utils/parametrizations.py:27:14: error[unresolved-attribute] Module `torch` has no member `geqrf` +torch/nn/utils/parametrizations.py:66:9: error[unresolved-attribute] Cannot assign object of type `_OrthMaps` to attribute `orthogonal_map` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/utils/parametrizations.py:85:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/nn/utils/parametrizations.py:91:21: error[unresolved-attribute] Module `torch` has no member `matrix_exp` +torch/nn/utils/parametrizations.py:94:22: error[unresolved-attribute] Module `torch` has no member `eye` +torch/nn/utils/parametrizations.py:96:21: error[unresolved-attribute] Module `torch` has no member `add` +torch/nn/utils/parametrizations.py:96:51: error[unresolved-attribute] Module `torch` has no member `add` +torch/nn/utils/parametrizations.py:159:22: error[unresolved-attribute] Module `torch` has no member `geqrf` +torch/nn/utils/parametrizations.py:177:21: error[unresolved-attribute] Module `torch` has no member `randn` +torch/nn/utils/parametrizations.py:180:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/nn/utils/parametrizations.py:188:22: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/nn/utils/parametrizations.py:324:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `dim` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/utils/parametrizations.py:327:16: error[unresolved-attribute] Module `torch` has no member `_weight_norm` +torch/nn/utils/parametrizations.py:330:20: error[unresolved-attribute] Module `torch` has no member `norm_except_dim` +torch/nn/utils/parametrizations.py:424:9: error[unresolved-attribute] Cannot assign object of type `int | Unknown` to attribute `dim` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/utils/parametrizations.py:425:9: error[unresolved-attribute] Cannot assign object of type `int | float` to attribute `eps` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/utils/parametrizations.py:428:13: error[unresolved-attribute] Cannot assign object of type `int` to attribute `n_power_iterations` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/utils/parametrizations.py:515:45: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/nn/utils/parametrizations.py:516:45: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/nn/utils/parametrizations.py:520:21: error[unresolved-attribute] Module `torch` has no member `vdot` +torch/nn/utils/parametrizations.py:520:35: error[unresolved-attribute] Module `torch` has no member `mv` +torch/nn/utils/parametrize.py:133:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `unsafe` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/utils/parametrize.py:176:9: error[unresolved-attribute] Cannot assign object of type `bool` to attribute `is_tensor` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/utils/parametrize.py:177:9: error[unresolved-attribute] Cannot assign object of type `int` to attribute `ntensors` on type `Self@__init__` with custom `__setattr__` method. +torch/nn/utils/parametrize.py:283:42: error[unresolved-attribute] Module `collections` has no member `abc` +torch/nn/utils/parametrize.py:371:5: error[unresolved-attribute] Cannot assign object of type `type` to attribute `__class__` on type `Module` with custom `__setattr__` method. +torch/nn/utils/parametrize.py:759:9: error[unresolved-attribute] Cannot assign object of type `type` to attribute `__class__` on type `Module` with custom `__setattr__` method. +torch/nn/utils/prune.py:171:28: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/nn/utils/prune.py:179:38: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/nn/utils/prune.py:231:70: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/nn/utils/prune.py:468:49: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/nn/utils/prune.py:471:20: error[unresolved-attribute] Module `torch` has no member `rand_like` +torch/nn/utils/prune.py:472:20: error[unresolved-attribute] Module `torch` has no member `topk` +torch/nn/utils/prune.py:525:49: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/nn/utils/prune.py:530:20: error[unresolved-attribute] Module `torch` has no member `topk` +torch/nn/utils/prune.py:530:31: error[unresolved-attribute] Module `torch` has no member `abs` +torch/nn/utils/prune.py:625:20: error[unresolved-attribute] Module `torch` has no member `rand` +torch/nn/utils/prune.py:628:25: error[unresolved-attribute] Module `torch` has no member `kthvalue` +torch/nn/utils/prune.py:631:20: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/nn/utils/prune.py:735:16: error[unresolved-attribute] Module `torch` has no member `topk` +torch/nn/utils/prune.py:743:20: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/nn/utils/prune.py:1115:45: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/nn/utils/rnn.py:95:16: error[invalid-return-type] Return type does not match returned value: expected `Self@pin_memory`, found `PackedSequence` +torch/nn/utils/rnn.py:105:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/nn/utils/rnn.py:113:23: error[unresolved-attribute] Module `torch` has no member `device` +torch/nn/utils/rnn.py:114:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/nn/utils/rnn.py:156:20: error[invalid-return-type] Return type does not match returned value: expected `Self@to`, found `PackedSequence` +torch/nn/utils/rnn.py:160:14: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/nn/utils/rnn.py:169:14: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/nn/utils/rnn.py:178:30: error[unresolved-attribute] Module `torch` has no member `double` +torch/nn/utils/rnn.py:181:30: error[unresolved-attribute] Module `torch` has no member `float` +torch/nn/utils/rnn.py:184:30: error[unresolved-attribute] Module `torch` has no member `half` +torch/nn/utils/rnn.py:187:30: error[unresolved-attribute] Module `torch` has no member `long` +torch/nn/utils/rnn.py:190:30: error[unresolved-attribute] Module `torch` has no member `int` +torch/nn/utils/rnn.py:193:30: error[unresolved-attribute] Module `torch` has no member `short` +torch/nn/utils/rnn.py:196:30: error[unresolved-attribute] Module `torch` has no member `int8` +torch/nn/utils/rnn.py:199:30: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/nn/utils/rnn.py:268:14: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/nn/utils/rnn.py:270:25: error[unresolved-attribute] Module `torch` has no member `arange` +torch/nn/utils/rnn.py:320:12: error[unresolved-attribute] Module `torch._C` has no member `_get_tracing_state` +torch/nn/utils/rnn.py:328:19: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/nn/utils/rnn.py:328:50: error[unresolved-attribute] Module `torch` has no member `int64` +torch/nn/utils/rnn.py:330:36: error[unresolved-attribute] Module `torch` has no member `int64` +torch/nn/utils/rnn.py:335:35: error[unresolved-attribute] Module `torch` has no member `sort` +torch/nn/utils/rnn.py:340:25: error[unresolved-attribute] Module `torch._VF` has no member `_pack_padded_sequence` +torch/nn/utils/rnn.py:408:30: error[unresolved-attribute] Module `torch._VF` has no member `_pad_packed_sequence` +torch/nn/utils/rnn.py:482:12: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/nn/utils/rnn.py:529:11: error[unresolved-attribute] Module `torch` has no member `arange` +torch/nn/utils/rnn.py:572:15: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/nn/utils/spectral_norm.py:104:25: error[unresolved-attribute] Module `torch` has no member `mv` +torch/nn/utils/spectral_norm.py:106:37: error[unresolved-attribute] Module `torch` has no member `mv` +torch/nn/utils/spectral_norm.py:109:47: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/nn/utils/spectral_norm.py:110:47: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/nn/utils/spectral_norm.py:112:17: error[unresolved-attribute] Module `torch` has no member `dot` +torch/nn/utils/spectral_norm.py:112:30: error[unresolved-attribute] Module `torch` has no member `mv` +torch/nn/utils/spectral_norm.py:139:38: error[unresolved-attribute] Module `torch` has no member `dot` +torch/nn/utils/spectral_norm.py:139:51: error[unresolved-attribute] Module `torch` has no member `mv` +torch/nn/utils/weight_norm.py:7:19: error[unresolved-import] Module `torch` has no member `_weight_norm` +torch/nn/utils/weight_norm.py:7:33: error[unresolved-import] Module `torch` has no member `norm_except_dim` +torch/nn/utils/weight_norm.py:144:16: warning[deprecated] The function `apply` is deprecated: `torch.nn.utils.weight_norm` is deprecated in favor of `torch.nn.utils.parametrizations.weight_norm`. +torch/onnx/_internal/_lazy_import.py:30:12: error[unresolved-import] Cannot resolve imported module `onnx` +torch/onnx/_internal/_lazy_import.py:32:12: error[unresolved-import] Cannot resolve imported module `onnxscript` +torch/onnx/_internal/_lazy_import.py:33:12: error[unresolved-import] Cannot resolve imported module `onnxscript._framework_apis.torch_2_9` +torch/onnx/_internal/exporter/_analysis.py:28:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/exporter/_analysis.py:31:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/exporter/_analysis.py:54:24: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/exporter/_analysis.py:54:55: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/exporter/_analysis.py:57:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/exporter/_analysis.py:58:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/exporter/_building.py:19:8: error[unresolved-import] Cannot resolve imported module `onnxscript` +torch/onnx/_internal/exporter/_building.py:20:6: error[unresolved-import] Cannot resolve imported module `onnxscript` +torch/onnx/_internal/exporter/_building.py:21:6: error[unresolved-import] Cannot resolve imported module `onnxscript.ir` +torch/onnx/_internal/exporter/_building.py:28:12: error[unresolved-import] Cannot resolve imported module `onnx` +torch/onnx/_internal/exporter/_capture_strategies.py:52:5: error[invalid-assignment] Implicit shadowing of function `isinstance` +torch/onnx/_internal/exporter/_capture_strategies.py:172:20: error[unresolved-attribute] Module `torch._dynamo` has no member `exc` +torch/onnx/_internal/exporter/_capture_strategies.py:227:20: error[unresolved-attribute] Module `torch._dynamo` has no member `exc` +torch/onnx/_internal/exporter/_core.py:18:8: error[unresolved-import] Cannot resolve imported module `onnxscript` +torch/onnx/_internal/exporter/_core.py:19:8: error[unresolved-import] Cannot resolve imported module `onnxscript.evaluator` +torch/onnx/_internal/exporter/_core.py:20:6: error[unresolved-import] Cannot resolve imported module `onnxscript` +torch/onnx/_internal/exporter/_core.py:21:6: error[unresolved-import] Cannot resolve imported module `onnxscript.ir` +torch/onnx/_internal/exporter/_core.py:53:28: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/exporter/_core.py:54:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/onnx/_internal/exporter/_core.py:55:5: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/_internal/exporter/_core.py:56:5: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/onnx/_internal/exporter/_core.py:57:5: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/onnx/_internal/exporter/_core.py:58:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/onnx/_internal/exporter/_core.py:59:5: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/exporter/_core.py:60:5: error[unresolved-attribute] Module `torch` has no member `float64` +torch/onnx/_internal/exporter/_core.py:61:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/onnx/_internal/exporter/_core.py:62:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/onnx/_internal/exporter/_core.py:63:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/onnx/_internal/exporter/_core.py:64:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/onnx/_internal/exporter/_core.py:65:5: error[unresolved-attribute] Module `torch` has no member `float4_e2m1fn_x2` +torch/onnx/_internal/exporter/_core.py:66:5: error[unresolved-attribute] Module `torch` has no member `int16` +torch/onnx/_internal/exporter/_core.py:67:5: error[unresolved-attribute] Module `torch` has no member `int32` +torch/onnx/_internal/exporter/_core.py:68:5: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/exporter/_core.py:69:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/onnx/_internal/exporter/_core.py:70:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/_internal/exporter/_core.py:71:5: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/onnx/_internal/exporter/_core.py:72:5: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/onnx/_internal/exporter/_core.py:73:5: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/onnx/_internal/exporter/_core.py:107:38: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/exporter/_core.py:114:28: error[unresolved-attribute] Module `torch` has no member `float4_e2m1fn_x2` +torch/onnx/_internal/exporter/_core.py:139:31: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/onnx/_internal/exporter/_core.py:148:34: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/_internal/exporter/_core.py:245:30: error[unresolved-attribute] Module `torch` has no member `float4_e2m1fn_x2` +torch/onnx/_internal/exporter/_core.py:266:38: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/onnx/_internal/exporter/_core.py:270:40: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/onnx/_internal/exporter/_core.py:480:25: error[unresolved-attribute] Module `torch` has no member `device` +torch/onnx/_internal/exporter/_core.py:480:39: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/onnx/_internal/exporter/_core.py:480:60: error[unresolved-attribute] Module `torch` has no member `layout` +torch/onnx/_internal/exporter/_core.py:482:24: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/exporter/_core.py:856:18: error[unresolved-attribute] Module `torch` has no member `FunctionSchema` +torch/onnx/_internal/exporter/_core.py:867:47: error[unresolved-attribute] Object of type `object` has no attribute `arguments` +torch/onnx/_internal/exporter/_core.py:876:34: error[unresolved-attribute] Module `torch` has no member `device` +torch/onnx/_internal/exporter/_core.py:878:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/exporter/_core.py:882:27: error[unresolved-attribute] Object of type `object` has no attribute `arguments` +torch/onnx/_internal/exporter/_core.py:892:36: error[unresolved-attribute] Module `torch` has no member `device` +torch/onnx/_internal/exporter/_core.py:894:36: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/exporter/_core.py:901:64: error[unresolved-attribute] Object of type `object` has no attribute `returns` +torch/onnx/_internal/exporter/_dispatching.py:8:6: error[unresolved-import] Cannot resolve imported module `onnxscript` +torch/onnx/_internal/exporter/_dispatching.py:18:39: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/exporter/_dispatching.py:19:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/onnx/_internal/exporter/_dispatching.py:20:5: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/_internal/exporter/_dispatching.py:21:5: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/onnx/_internal/exporter/_dispatching.py:22:5: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/onnx/_internal/exporter/_dispatching.py:23:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/onnx/_internal/exporter/_dispatching.py:24:5: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/exporter/_dispatching.py:25:5: error[unresolved-attribute] Module `torch` has no member `float64` +torch/onnx/_internal/exporter/_dispatching.py:26:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/onnx/_internal/exporter/_dispatching.py:27:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/onnx/_internal/exporter/_dispatching.py:28:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/onnx/_internal/exporter/_dispatching.py:29:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/onnx/_internal/exporter/_dispatching.py:30:5: error[unresolved-attribute] Module `torch` has no member `float4_e2m1fn_x2` +torch/onnx/_internal/exporter/_dispatching.py:31:5: error[unresolved-attribute] Module `torch` has no member `int16` +torch/onnx/_internal/exporter/_dispatching.py:32:5: error[unresolved-attribute] Module `torch` has no member `int32` +torch/onnx/_internal/exporter/_dispatching.py:33:5: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/exporter/_dispatching.py:34:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/onnx/_internal/exporter/_dispatching.py:35:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/_internal/exporter/_dispatching.py:36:5: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/onnx/_internal/exporter/_dispatching.py:37:5: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/onnx/_internal/exporter/_dispatching.py:38:5: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/onnx/_internal/exporter/_dispatching.py:42:50: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/exporter/_dispatching.py:66:26: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/exporter/_dispatching.py:68:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/onnx/_internal/exporter/_dispatching.py:68:41: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/onnx/_internal/exporter/_dispatching.py:68:62: error[unresolved-attribute] Module `torch` has no member `layout` +torch/onnx/_internal/exporter/_dispatching.py:213:43: error[unresolved-attribute] Object of type `object` has no attribute `arguments` +torch/onnx/_internal/exporter/_dispatching.py:242:28: error[unresolved-attribute] Module `torch` has no member `Argument` +torch/onnx/_internal/exporter/_dispatching.py:327:13: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/onnx/_internal/exporter/_onnx_program.py:30:12: error[unresolved-import] Cannot resolve imported module `onnxruntime` +torch/onnx/_internal/exporter/_onnx_program.py:35:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/onnx/_internal/exporter/_onnx_program.py:36:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/onnx/_internal/exporter/_onnx_program.py:37:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/onnx/_internal/exporter/_onnx_program.py:38:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/onnx/_internal/exporter/_onnx_program.py:47:12: error[unresolved-import] Cannot resolve imported module `onnxruntime` +torch/onnx/_internal/exporter/_onnx_program.py:135:16: error[unresolved-attribute] Module `torch` has no member `from_numpy` +torch/onnx/_internal/exporter/_onnx_program.py:135:61: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/onnx/_internal/exporter/_onnx_program.py:137:16: error[unresolved-attribute] Module `torch` has no member `from_numpy` +torch/onnx/_internal/exporter/_onnx_program.py:137:60: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/onnx/_internal/exporter/_onnx_program.py:139:16: error[unresolved-attribute] Module `torch` has no member `from_numpy` +torch/onnx/_internal/exporter/_onnx_program.py:139:60: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/onnx/_internal/exporter/_onnx_program.py:141:16: error[unresolved-attribute] Module `torch` has no member `from_numpy` +torch/onnx/_internal/exporter/_onnx_program.py:141:60: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/onnx/_internal/exporter/_onnx_program.py:143:16: error[unresolved-attribute] Module `torch` has no member `from_numpy` +torch/onnx/_internal/exporter/_onnx_program.py:143:60: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/onnx/_internal/exporter/_onnx_program.py:144:12: error[unresolved-attribute] Module `torch` has no member `from_numpy` +torch/onnx/_internal/exporter/_onnx_program.py:150:12: error[unresolved-import] Cannot resolve imported module `onnxruntime` +torch/onnx/_internal/exporter/_onnx_program.py:164:23: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/onnx/_internal/exporter/_onnx_program.py:167:31: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/onnx/_internal/exporter/_onnx_program.py:168:29: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/onnx/_internal/exporter/_onnx_program.py:170:29: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/_internal/exporter/_onnx_program.py:201:12: error[unresolved-attribute] Module `torch` has no member `from_numpy` +torch/onnx/_internal/exporter/_onnx_program.py:240:16: error[unresolved-import] Cannot resolve imported module `onnxruntime` +torch/onnx/_internal/exporter/_onnx_program.py:265:16: error[unresolved-import] Cannot resolve imported module `onnx.reference` +torch/onnx/_internal/exporter/_onnx_program.py:491:9: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/onnx/_internal/exporter/_reporting.py:14:10: error[unresolved-import] Cannot resolve imported module `onnxscript` +torch/onnx/_internal/exporter/_schemas.py:13:8: error[unresolved-import] Cannot resolve imported module `onnx` +torch/onnx/_internal/exporter/_schemas.py:15:8: error[unresolved-import] Cannot resolve imported module `onnxscript` +torch/onnx/_internal/exporter/_schemas.py:16:6: error[unresolved-import] Cannot resolve imported module `onnxscript` +torch/onnx/_internal/exporter/_tensors.py:6:8: error[unresolved-import] Cannot resolve imported module `onnxscript` +torch/onnx/_internal/exporter/_tensors.py:7:6: error[unresolved-import] Cannot resolve imported module `onnxscript` +torch/onnx/_internal/exporter/_testing.py:78:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/exporter/_testing.py:79:14: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/onnx/_internal/exporter/_testing.py:80:42: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py:7:6: error[unresolved-import] Cannot resolve imported module `onnxscript` +torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py:13:8: error[unresolved-import] Cannot resolve imported module `onnxscript` +torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py:76:25: error[invalid-argument-type] Argument is incorrect: Expected `OpOverload[Unknown, Any] | BuiltinFunctionType | ((...) -> Unknown)`, found `object` +torch/onnx/_internal/exporter/_torchlib/ops/core.py:10:6: error[unresolved-import] Cannot resolve imported module `onnxscript.onnx_opset` +torch/onnx/_internal/exporter/_torchlib/ops/hop.py:31:10: error[unresolved-import] Cannot resolve imported module `onnxscript.ir` +torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py:7:6: error[unresolved-import] Cannot resolve imported module `onnxscript.ir` +torch/onnx/_internal/exporter/_torchlib/ops/symops.py:9:6: error[unresolved-import] Cannot resolve imported module `onnxscript.onnx_opset` +torch/onnx/_internal/exporter/_type_casting.py:8:28: error[unresolved-attribute] Module `torch` has no member `float4_e2m1fn_x2` +torch/onnx/_internal/exporter/_type_casting.py:9:24: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/_internal/exporter/_type_casting.py:31:28: error[unresolved-attribute] Module `torch` has no member `float4_e2m1fn_x2` +torch/onnx/_internal/exporter/_verification.py:19:10: error[unresolved-import] Cannot resolve imported module `onnxscript` +torch/onnx/_internal/exporter/_verification.py:55:21: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/exporter/_verification.py:56:19: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/exporter/_verification.py:78:24: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/exporter/_verification.py:80:22: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/exporter/_verification.py:85:16: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/exporter/_verification.py:87:19: error[unresolved-attribute] Module `torch` has no member `float` +torch/onnx/_internal/exporter/_verification.py:89:25: error[unresolved-attribute] Module `torch` has no member `histogram` +torch/onnx/_internal/exporter/_verification.py:90:25: error[unresolved-attribute] Module `torch` has no member `histogram` +torch/onnx/_internal/exporter/_verification.py:132:36: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/exporter/_verification.py:132:60: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/exporter/_verification.py:133:26: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/_internal/exporter/_verification.py:134:32: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/exporter/_verification.py:135:28: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/exporter/_verification.py:136:8: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/onnx/_internal/exporter/_verification.py:137:20: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/onnx/_internal/exporter/_verification.py:138:16: error[unresolved-attribute] Module `torch` has no member `abs` +torch/onnx/_internal/exporter/_verification.py:140:18: error[unresolved-attribute] Module `torch` has no member `abs` +torch/onnx/_internal/fx/_pass.py:211:20: warning[possibly-missing-attribute] Member `detect_fake_mode` may be missing on module `torch._dynamo.utils` +torch/onnx/_internal/fx/passes/type_promotion.py:53:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/passes/type_promotion.py:56:33: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/passes/type_promotion.py:59:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/passes/type_promotion.py:168:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/passes/type_promotion.py:168:58: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/passes/type_promotion.py:169:10: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/passes/type_promotion.py:290:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/passes/type_promotion.py:329:29: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/_internal/fx/passes/type_promotion.py:331:24: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/_internal/fx/passes/type_promotion.py:331:52: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/_internal/fx/passes/type_promotion.py:331:69: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/_internal/fx/passes/type_promotion.py:354:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/passes/type_promotion.py:360:25: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/fx/passes/type_promotion.py:1191:17: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__name__` +torch/onnx/_internal/fx/passes/type_promotion.py:1200:13: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__name__` +torch/onnx/_internal/fx/passes/type_promotion.py:1271:28: error[invalid-argument-type] Argument expression after ** must be a mapping type: Found `Unknown | None` +torch/onnx/_internal/fx/passes/type_promotion.py:1381:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/passes/type_promotion.py:1446:16: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/type_utils.py:10:8: error[unresolved-import] Cannot resolve imported module `onnx` +torch/onnx/_internal/fx/type_utils.py:17:12: error[unresolved-import] Cannot resolve imported module `onnx.defs` +torch/onnx/_internal/fx/type_utils.py:25:24: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/type_utils.py:28:42: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/type_utils.py:33:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/type_utils.py:33:50: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/type_utils.py:37:65: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/type_utils.py:45:47: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/type_utils.py:77:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/type_utils.py:83:59: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/type_utils.py:89:52: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/type_utils.py:90:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/onnx/_internal/fx/type_utils.py:91:5: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/_internal/fx/type_utils.py:92:5: error[unresolved-attribute] Module `torch` has no member `float64` +torch/onnx/_internal/fx/type_utils.py:93:5: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/fx/type_utils.py:94:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/onnx/_internal/fx/type_utils.py:95:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/onnx/_internal/fx/type_utils.py:96:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/onnx/_internal/fx/type_utils.py:97:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/onnx/_internal/fx/type_utils.py:98:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/onnx/_internal/fx/type_utils.py:99:5: error[unresolved-attribute] Module `torch` has no member `int16` +torch/onnx/_internal/fx/type_utils.py:100:5: error[unresolved-attribute] Module `torch` has no member `int32` +torch/onnx/_internal/fx/type_utils.py:101:5: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/fx/type_utils.py:102:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/onnx/_internal/fx/type_utils.py:103:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/_internal/fx/type_utils.py:109:5: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/onnx/_internal/fx/type_utils.py:110:5: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/onnx/_internal/fx/type_utils.py:111:5: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/onnx/_internal/fx/type_utils.py:121:11: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/_internal/fx/type_utils.py:122:10: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/fx/type_utils.py:123:12: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/fx/type_utils.py:124:14: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/onnx/_internal/fx/type_utils.py:127:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/type_utils.py:127:38: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/type_utils.py:128:5: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/onnx/_internal/fx/type_utils.py:128:22: error[unresolved-attribute] Module `torch` has no member `float16` +torch/onnx/_internal/fx/type_utils.py:129:5: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/onnx/_internal/fx/type_utils.py:129:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/fx/type_utils.py:130:5: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/onnx/_internal/fx/type_utils.py:130:23: error[unresolved-attribute] Module `torch` has no member `float64` +torch/onnx/_internal/fx/type_utils.py:134:19: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/fx/type_utils.py:135:21: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/fx/type_utils.py:136:20: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/_internal/fx/type_utils.py:139:41: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/type_utils.py:145:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/onnx/_internal/fx/type_utils.py:146:5: error[unresolved-attribute] Module `torch` has no member `float64` +torch/onnx/_internal/fx/type_utils.py:147:5: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/fx/type_utils.py:148:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/onnx/_internal/fx/type_utils.py:149:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/onnx/_internal/fx/type_utils.py:150:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/onnx/_internal/fx/type_utils.py:151:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/onnx/_internal/fx/type_utils.py:152:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/onnx/_internal/fx/type_utils.py:153:5: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/onnx/_internal/fx/type_utils.py:154:5: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/onnx/_internal/fx/type_utils.py:155:5: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/onnx/_internal/fx/type_utils.py:156:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/onnx/_internal/fx/type_utils.py:157:5: error[unresolved-attribute] Module `torch` has no member `int16` +torch/onnx/_internal/fx/type_utils.py:158:5: error[unresolved-attribute] Module `torch` has no member `int32` +torch/onnx/_internal/fx/type_utils.py:159:5: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/fx/type_utils.py:160:5: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/_internal/fx/type_utils.py:161:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/_internal/fx/type_utils.py:174:5: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/fx/type_utils.py:176:5: error[unresolved-attribute] Module `torch` has no member `device` +torch/onnx/_internal/fx/type_utils.py:177:5: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/onnx/_internal/fx/type_utils.py:178:5: error[unresolved-attribute] Module `torch` has no member `layout` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:137:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:180:28: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:196:35: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:197:31: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:213:37: error[unresolved-attribute] Module `torch` has no member `ListType` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:218:37: error[unresolved-attribute] Module `torch._C` has no member `OptionalType` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:229:27: error[unresolved-attribute] Module `torch._C` has no member `NoneType` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:254:24: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:370:25: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:371:26: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:372:25: error[unresolved-attribute] Module `torch` has no member `int8` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:373:26: error[unresolved-attribute] Module `torch` has no member `short` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:374:24: error[unresolved-attribute] Module `torch` has no member `int` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:375:26: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:376:25: error[unresolved-attribute] Module `torch` has no member `half` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:377:26: error[unresolved-attribute] Module `torch` has no member `float` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:378:27: error[unresolved-attribute] Module `torch` has no member `double` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:379:30: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:380:30: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:381:31: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:382:26: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:383:27: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:384:27: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:385:29: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:386:31: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:387:33: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:388:35: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/onnx/_internal/torchscript_exporter/_type_utils.py:389:35: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:41:12: error[unresolved-attribute] Module `torch._C` has no member `Graph` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:42:12: error[unresolved-attribute] Module `torch._C` has no member `Block` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:44:20: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:45:28: error[unresolved-attribute] Module `torch._C` has no member `IValue` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:46:15: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:46:25: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:47:24: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:48:21: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:58:35: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:111:35: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:154:14: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:158:43: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:201:27: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:262:24: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:269:21: error[unresolved-attribute] Module `torch._C` has no member `Graph` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:269:32: error[unresolved-attribute] Module `torch._C` has no member `Block` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:277:6: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:279:35: error[unresolved-attribute] Module `torch._C` has no member `Graph` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:283:37: error[unresolved-attribute] Module `torch._C` has no member `Block` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:305:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_node_shape_type_inference` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:322:26: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:337:19: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:338:33: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:341:34: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:341:47: error[unresolved-attribute] Module `torch` has no member `device` +torch/onnx/_internal/torchscript_exporter/jit_utils.py:344:31: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/onnx/_internal/torchscript_exporter/onnx_proto_utils.py:48:16: error[unresolved-import] Cannot resolve imported module `onnx` +torch/onnx/_internal/torchscript_exporter/onnx_proto_utils.py:100:16: error[unresolved-import] Cannot resolve imported module `onnx` +torch/onnx/_internal/torchscript_exporter/onnx_proto_utils.py:181:16: error[unresolved-import] Cannot resolve imported module `onnx` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:218:21: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:220:29: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:225:30: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:231:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:237:26: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:259:30: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:259:48: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:269:32: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:269:51: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:280:43: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:280:62: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:352:95: error[unresolved-attribute] Object of type `(...) -> _T@parse_args` has no attribute `__name__` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:359:27: error[unresolved-attribute] Object of type `(...) -> _T@parse_args` has no attribute `__name__` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:365:20: error[invalid-assignment] Object of type `list[Unknown]` is not assignable to `tuple[@Todo, ...]` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:371:38: error[unresolved-attribute] Object of type `(...) -> _T@parse_args` has no attribute `__name__` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:378:42: error[unresolved-attribute] Object of type `(...) -> _T@parse_args` has no attribute `__name__` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:442:51: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:446:56: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:541:25: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:554:65: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:558:26: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:568:19: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:569:33: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:573:29: error[unresolved-attribute] Module `torch._C` has no member `JitType` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:573:44: error[unresolved-attribute] Module `torch._C` has no member `ListType` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:574:29: error[unresolved-attribute] Module `torch._C` has no member `ListType` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:579:17: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:583:24: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:587:48: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:590:24: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:603:28: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:607:25: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:618:25: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:622:26: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:626:26: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:630:26: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:640:29: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:645:27: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:660:46: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:666:44: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:672:26: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:684:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:690:26: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:703:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:709:26: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:771:42: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:776:52: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:844:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:844:68: error[unresolved-attribute] Module `torch` has no member `double` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:845:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:855:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:855:60: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:873:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:873:62: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:875:60: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:923:45: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:923:72: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:937:45: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:937:72: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:971:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:971:68: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:994:44: error[unresolved-attribute] Module `torch` has no member `ones` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:994:69: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1011:33: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1011:69: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1024:40: error[unresolved-attribute] Module `torch` has no member `ones` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1024:60: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1026:29: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1044:40: error[unresolved-attribute] Module `torch` has no member `ones` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1044:60: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1046:40: error[unresolved-attribute] Module `torch._C` has no member `ListType` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1097:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1098:10: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1115:48: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1124:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1124:49: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1161:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1161:64: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1164:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1164:64: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1183:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1183:64: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1261:50: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1261:73: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1263:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1263:60: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1285:50: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1285:73: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1331:44: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1345:44: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1352:69: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1369:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1372:52: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1385:5: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1386:5: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1387:5: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1410:17: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1437:59: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1480:42: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1505:24: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1516:22: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1534:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1534:76: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1541:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1541:65: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1590:48: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1590:73: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1597:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1597:63: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1622:15: error[unresolved-attribute] Module `torch._C` has no member `OptionalType` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1639:14: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1641:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1641:22: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1641:32: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1641:42: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1687:13: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1688:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1689:17: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1690:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1691:6: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1757:54: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1757:78: error[unresolved-attribute] Module `torch` has no member `int` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1878:49: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1878:73: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1882:49: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1882:75: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1970:45: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1970:71: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1990:45: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:1990:71: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2016:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2031:44: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2031:75: error[unresolved-attribute] Module `torch` has no member `float` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2042:45: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2042:69: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2050:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2068:44: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2068:75: error[unresolved-attribute] Module `torch` has no member `float` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2093:47: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2095:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2099:59: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2116:71: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2155:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2155:61: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2165:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2165:61: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2182:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2186:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2194:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2194:65: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2226:46: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2226:71: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2232:62: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2269:43: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2269:67: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2278:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2278:64: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2333:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2334:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2335:5: error[unresolved-attribute] Module `torch` has no member `short` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2336:5: error[unresolved-attribute] Module `torch` has no member `int` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2337:5: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2338:5: error[unresolved-attribute] Module `torch` has no member `half` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2339:5: error[unresolved-attribute] Module `torch` has no member `float` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2340:5: error[unresolved-attribute] Module `torch` has no member `double` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2341:5: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2342:5: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2343:5: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2344:5: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2345:5: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2346:5: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2347:5: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2348:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2355:13: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2356:13: error[unresolved-attribute] Module `torch` has no member `int8` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2357:15: error[unresolved-attribute] Module `torch` has no member `double` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2358:14: error[unresolved-attribute] Module `torch` has no member `float` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2359:13: error[unresolved-attribute] Module `torch` has no member `half` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2360:12: error[unresolved-attribute] Module `torch` has no member `int` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2361:13: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2362:14: error[unresolved-attribute] Module `torch` has no member `short` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2363:13: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2364:21: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2365:22: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2366:14: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2367:15: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2368:15: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/onnx/_internal/torchscript_exporter/symbolic_helper.py:2369:17: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:102:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:102:63: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:109:40: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:109:62: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:130:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:137:6: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:143:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:143:62: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:161:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:161:62: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:214:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:224:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:230:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:230:62: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:252:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:253:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:254:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:261:45: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:261:69: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:263:52: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:263:76: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:315:16: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:406:16: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:495:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:496:33: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:497:35: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:498:33: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:499:34: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:505:31: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:507:42: error[unresolved-attribute] Module `torch._C` has no member `NoneType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:518:45: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:628:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:635:52: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:635:69: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:641:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:641:59: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:645:46: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:771:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:777:13: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:783:59: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:788:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:798:60: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:804:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:1181:15: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:1183:15: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:1184:20: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py:1185:6: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:100:47: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:106:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:110:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:189:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:193:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:320:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:420:43: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:420:67: error[unresolved-attribute] Module `torch` has no member `int` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:444:57: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:448:14: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:449:16: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:450:36: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:462:51: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:591:54: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:594:48: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:621:46: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:621:70: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:622:45: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:622:71: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:635:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:635:66: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:656:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:656:60: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:683:60: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:689:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:689:66: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:692:52: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:692:74: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:702:51: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:702:75: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:711:47: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:715:47: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:751:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:752:10: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:753:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:754:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:787:17: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:791:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:796:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:801:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:816:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:820:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:844:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:859:56: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:892:49: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:894:46: error[unresolved-attribute] Module `torch` has no member `ones` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:894:66: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:996:36: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:996:58: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1030:36: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1030:58: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1054:50: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1059:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1065:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1067:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1071:19: error[unresolved-attribute] Module `torch` has no member `arange` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1080:50: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1091:36: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1096:57: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1097:59: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1099:54: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1106:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1117:55: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1118:55: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1258:62: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1260:16: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1282:49: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1282:73: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1318:49: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1330:61: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1338:47: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1344:49: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1357:61: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1369:47: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1377:49: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1391:61: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1410:47: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1423:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1423:63: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1425:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1425:62: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1426:43: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1426:72: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1428:29: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1428:62: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1434:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1434:70: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1442:52: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1447:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1447:56: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1452:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1452:64: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:1474:52: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:90:39: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:91:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:91:28: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:97:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:98:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:98:60: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:215:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:274:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:275:10: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:285:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:286:10: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:319:46: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:320:44: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:321:43: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:326:54: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:329:53: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:338:51: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:354:52: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:428:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:428:59: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:437:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:437:59: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:451:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:451:59: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:460:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:460:59: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:78:46: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:78:70: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:79:45: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:79:71: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:92:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:92:66: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:100:69: error[invalid-argument-type] Argument to bound method `op` is incorrect: Expected `int`, found `Unknown | None` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:115:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:117:52: error[invalid-argument-type] Argument to bound method `op` is incorrect: Expected `int`, found `Unknown | None` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:144:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:144:61: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:146:40: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:146:62: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:152:46: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:152:70: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:159:46: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:159:70: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:189:33: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:189:71: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:192:56: error[invalid-argument-type] Argument to bound method `op` is incorrect: Expected `int`, found `Unknown | None` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:199:62: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:206:46: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:206:70: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:242:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:242:61: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:285:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:285:60: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:290:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:294:55: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:315:52: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:351:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:351:62: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:389:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:389:62: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:471:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:471:74: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:477:47: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:477:71: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:479:50: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:479:74: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:484:46: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:484:70: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:489:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:489:58: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:492:29: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:492:72: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:510:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:510:60: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:527:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:527:66: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:537:43: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:548:59: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:566:56: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:614:47: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:616:15: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:616:37: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:646:54: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:649:63: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:664:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:664:41: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:682:47: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:704:45: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:706:45: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:711:57: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:737:47: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:740:47: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:768:42: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:773:38: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:780:38: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:795:34: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:800:34: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:804:61: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:826:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py:826:60: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:87:9: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:144:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:145:10: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:146:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:147:16: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:150:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:171:38: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `SupportsIndex`, found `int | None` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:194:47: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:195:50: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:222:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:222:68: error[unresolved-attribute] Module `torch` has no member `float` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:229:39: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:230:6: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:243:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:243:59: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:245:33: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:245:76: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:253:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:253:68: error[unresolved-attribute] Module `torch` has no member `float` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:265:39: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:265:60: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:266:6: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:285:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:285:66: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:286:48: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:286:73: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:291:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:296:43: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py:297:46: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py:47:36: error[unresolved-attribute] Module `torch._C` has no member `OptionalType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py:51:45: error[unresolved-attribute] Module `torch` has no member `BoolTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py:81:32: error[unresolved-attribute] Module `torch._C` has no member `OptionalType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:99:43: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:129:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:131:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:132:10: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:158:54: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:158:76: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:163:47: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py:163:72: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:47:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:49:13: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:50:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:64:24: error[unresolved-attribute] Module `torch` has no member `ones` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:67:22: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:109:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:113:22: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:118:6: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:155:29: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:155:66: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:158:29: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:158:55: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:169:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:169:62: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:191:49: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:192:50: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:208:28: error[unresolved-attribute] Module `torch` has no member `hstack` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:209:18: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:209:37: error[unresolved-attribute] Module `torch` has no member `ones` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:209:61: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:213:28: error[unresolved-attribute] Module `torch` has no member `ones` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:241:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:241:62: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:246:21: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:246:32: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:68:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:69:18: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:70:18: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:123:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:125:13: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:126:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:128:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:128:22: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:128:32: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:175:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:175:61: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:183:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:183:61: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:193:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:193:67: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:217:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:217:65: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:225:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:226:10: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:229:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:266:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:270:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:54:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:55:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:80:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:81:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py:94:43: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py:258:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py:432:67: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py:457:44: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py:468:51: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:322:15: error[unresolved-attribute] Module `torch._C` has no member `OptionalType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:423:43: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:481:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:481:63: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:492:40: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:492:62: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:525:19: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:527:27: error[unresolved-attribute] Module `torch` has no member `float` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:527:57: error[unresolved-attribute] Module `torch` has no member `double` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:528:8: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:528:37: error[unresolved-attribute] Module `torch` has no member `double` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:603:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:648:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:654:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:697:51: error[unresolved-attribute] Module `torch` has no member `ones` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:743:43: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:744:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:853:41: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:859:60: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:863:54: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:873:41: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:879:60: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:883:54: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:894:28: error[unresolved-attribute] Module `torch` has no member `double` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:897:16: error[unresolved-attribute] Module `torch` has no member `equal` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:967:44: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1056:60: error[invalid-argument-type] Argument to bound method `op` is incorrect: Expected `int`, found `Unknown | None` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1074:65: error[invalid-argument-type] Argument to bound method `op` is incorrect: Expected `int`, found `Unknown | None` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1254:51: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1274:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1555:16: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1716:20: error[call-non-callable] Object of type `None` is not callable +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1771:39: error[invalid-argument-type] Argument to function `_prepare_onnx_paddings` is incorrect: Expected `int`, found `int | None` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1777:53: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1777:68: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1825:39: error[invalid-argument-type] Argument to function `_prepare_onnx_paddings` is incorrect: Expected `int`, found `int | None` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1838:39: error[invalid-argument-type] Argument to function `_prepare_onnx_paddings` is incorrect: Expected `int`, found `int | None` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1847:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1848:10: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1849:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:1850:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2004:32: error[unresolved-attribute] Module `torch._C` has no member `DeviceObjType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2005:23: error[unresolved-attribute] Module `torch._C` has no member `DeviceObjType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2009:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2009:66: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2019:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2021:27: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2164:36: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2164:58: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2193:36: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2193:58: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2216:52: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2395:29: error[invalid-argument-type] Argument to bound method `op` is incorrect: Expected `int`, found `Unknown | str` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2659:9: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2704:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2706:13: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2707:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2709:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2709:22: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2709:32: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2721:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2721:63: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2746:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2746:63: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2785:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2787:13: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2788:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2791:6: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2818:24: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2829:22: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2858:49: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2858:73: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2861:47: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2861:71: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2866:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2866:62: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2871:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2871:62: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2876:38: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:2890:54: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3067:68: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3075:40: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3078:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3078:58: error[unresolved-attribute] Module `torch` has no member `float` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3110:61: error[unresolved-attribute] Module `torch` has no member `ones` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3116:63: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3454:56: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3485:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3485:62: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3489:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3515:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3545:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3545:62: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3549:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3575:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3597:60: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3606:46: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3606:66: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3636:65: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3642:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3696:27: error[unresolved-attribute] Module `torch._C` has no member `NoneType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3699:25: error[unresolved-attribute] Module `torch._C` has no member `NoneType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3742:27: error[unresolved-attribute] Module `torch._C` has no member `NoneType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3745:25: error[unresolved-attribute] Module `torch._C` has no member `NoneType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3763:47: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3801:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3810:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3823:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3832:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3842:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3935:47: error[unresolved-attribute] Module `torch._C` has no member `ListType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:3936:47: error[unresolved-attribute] Module `torch._C` has no member `DeviceObjType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4038:47: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4040:15: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4040:37: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4099:38: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4101:38: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4108:38: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4129:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4138:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4144:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4155:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4174:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4200:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4206:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4213:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4224:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4243:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4463:42: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4664:56: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4694:39: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4749:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4749:45: error[unresolved-attribute] Module `torch` has no member `float` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4814:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4814:45: error[unresolved-attribute] Module `torch` has no member `float` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4840:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4840:45: error[unresolved-attribute] Module `torch` has no member `float` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5014:54: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5014:76: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5040:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5041:10: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5051:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5052:10: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5086:43: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5096:63: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5102:41: error[unresolved-attribute] Module `torch` has no member `BoolTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5103:37: error[unresolved-attribute] Module `torch` has no member `BoolTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5110:45: error[unresolved-attribute] Module `torch` has no member `BoolTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5111:41: error[unresolved-attribute] Module `torch` has no member `BoolTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5123:39: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5145:39: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5146:52: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5278:48: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5278:70: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5392:46: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5428:46: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5475:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5476:10: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5479:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5486:44: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5499:48: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5510:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5514:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5523:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5524:10: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5527:12: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5568:51: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5576:51: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5652:44: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5660:45: error[unresolved-attribute] Module `torch` has no member `ones` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5660:65: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5680:43: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5685:16: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5685:42: error[unresolved-attribute] Module `torch` has no member `double` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5686:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5686:44: error[unresolved-attribute] Module `torch` has no member `double` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5687:15: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5687:39: error[unresolved-attribute] Module `torch` has no member `double` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5688:16: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5688:40: error[unresolved-attribute] Module `torch` has no member `double` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5695:45: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5695:72: error[unresolved-attribute] Module `torch` has no member `double` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5697:46: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5697:68: error[unresolved-attribute] Module `torch` has no member `double` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5702:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5702:62: error[unresolved-attribute] Module `torch` has no member `double` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5721:44: error[unresolved-attribute] Module `torch` has no member `LongTensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5729:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5736:17: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5748:24: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5753:22: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5808:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5822:53: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5833:43: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5833:68: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5852:52: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5900:43: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5900:68: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5904:15: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5904:39: error[unresolved-attribute] Module `torch` has no member `long` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5908:25: error[unresolved-attribute] Module `torch` has no member `arange` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5920:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5921:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5926:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5929:58: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5937:53: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5967:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5967:64: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5968:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5968:63: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5991:18: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5993:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6001:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6001:65: error[unresolved-attribute] Module `torch` has no member `float` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6006:56: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6006:78: error[unresolved-attribute] Module `torch` has no member `int` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6265:55: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6273:54: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6344:60: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6358:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6369:11: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6403:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6425:32: error[unresolved-attribute] Module `torch._C` has no member `DeviceObjType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6436:68: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6466:49: error[unresolved-attribute] Module `torch._C` has no member `OptionalType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6469:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_block` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6477:21: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_fixup_onnx_controlflow_node` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6482:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_node_shape_type_inference` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6489:66: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6532:15: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_block` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6560:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_block` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6568:25: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_fixup_onnx_controlflow_node` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6573:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_node_shape_type_inference` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6588:41: error[unresolved-attribute] Module `torch._C` has no member `DeviceObjType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6595:9: error[unresolved-attribute] Module `torch._C` has no member `ListType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6596:43: error[unresolved-attribute] Module `torch._C` has no member `ListType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6598:33: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6600:41: error[unresolved-attribute] Module `torch._C` has no member `ListType` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6615:56: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6635:12: error[unresolved-attribute] Module `torch._C` has no member `_jit_onnx_convert_pattern_from_subblock` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6642:62: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6653:69: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6671:44: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6671:65: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:6672:36: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/utils.py:192:29: error[unresolved-attribute] Module `torch._C` has no member `_jit_is_onnx_log_enabled` +torch/onnx/_internal/torchscript_exporter/utils.py:194:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_onnx_log_enabled` +torch/onnx/_internal/torchscript_exporter/utils.py:199:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_set_onnx_log_enabled` +torch/onnx/_internal/torchscript_exporter/utils.py:578:32: error[unresolved-attribute] Module `torch._C` has no member `ListType` +torch/onnx/_internal/torchscript_exporter/utils.py:580:32: error[unresolved-attribute] Module `torch._C` has no member `ListType` +torch/onnx/_internal/torchscript_exporter/utils.py:580:44: error[unresolved-attribute] Module `torch._C` has no member `OptionalType` +torch/onnx/_internal/torchscript_exporter/utils.py:604:26: error[unresolved-attribute] Module `torch._C` has no member `ListType` +torch/onnx/_internal/torchscript_exporter/utils.py:611:12: error[unresolved-attribute] Module `torch._C` has no member `Graph` +torch/onnx/_internal/torchscript_exporter/utils.py:624:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_inline` +torch/onnx/_internal/torchscript_exporter/utils.py:627:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_inline_fork_wait` +torch/onnx/_internal/torchscript_exporter/utils.py:628:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_lint` +torch/onnx/_internal/torchscript_exporter/utils.py:630:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_autograd_function_process` +torch/onnx/_internal/torchscript_exporter/utils.py:631:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_lower_all_tuples` +torch/onnx/_internal/torchscript_exporter/utils.py:638:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_constant_propagation` +torch/onnx/_internal/torchscript_exporter/utils.py:643:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_dce` +torch/onnx/_internal/torchscript_exporter/utils.py:644:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_lint` +torch/onnx/_internal/torchscript_exporter/utils.py:649:8: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_cse` +torch/onnx/_internal/torchscript_exporter/utils.py:650:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_lint` +torch/onnx/_internal/torchscript_exporter/utils.py:652:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_canonicalize_graph_fuser_ops` +torch/onnx/_internal/torchscript_exporter/utils.py:653:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_lint` +torch/onnx/_internal/torchscript_exporter/utils.py:654:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_peephole` +torch/onnx/_internal/torchscript_exporter/utils.py:655:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_fuse_addmm` +torch/onnx/_internal/torchscript_exporter/utils.py:656:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_lint` +torch/onnx/_internal/torchscript_exporter/utils.py:658:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_peephole` +torch/onnx/_internal/torchscript_exporter/utils.py:659:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_lower_all_tuples` +torch/onnx/_internal/torchscript_exporter/utils.py:666:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_remove_inplace_ops_for_onnx` +torch/onnx/_internal/torchscript_exporter/utils.py:667:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_preprocess` +torch/onnx/_internal/torchscript_exporter/utils.py:670:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_lint` +torch/onnx/_internal/torchscript_exporter/utils.py:673:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_prepare_division_for_onnx` +torch/onnx/_internal/torchscript_exporter/utils.py:675:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_remove_print` +torch/onnx/_internal/torchscript_exporter/utils.py:676:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_preprocess_caffe2` +torch/onnx/_internal/torchscript_exporter/utils.py:680:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_unpack_quantized_weights` +torch/onnx/_internal/torchscript_exporter/utils.py:682:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_erase_number_types` +torch/onnx/_internal/torchscript_exporter/utils.py:686:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_set_dynamic_input_shape` +torch/onnx/_internal/torchscript_exporter/utils.py:687:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_lint` +torch/onnx/_internal/torchscript_exporter/utils.py:689:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx` +torch/onnx/_internal/torchscript_exporter/utils.py:690:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_lint` +torch/onnx/_internal/torchscript_exporter/utils.py:691:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_lint` +torch/onnx/_internal/torchscript_exporter/utils.py:693:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_scalar_type_analysis` +torch/onnx/_internal/torchscript_exporter/utils.py:696:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_lint` +torch/onnx/_internal/torchscript_exporter/utils.py:698:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_peephole` +torch/onnx/_internal/torchscript_exporter/utils.py:701:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_lint` +torch/onnx/_internal/torchscript_exporter/utils.py:708:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_dce_allow_deleting_nodes_with_side_effects` +torch/onnx/_internal/torchscript_exporter/utils.py:709:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_lint` +torch/onnx/_internal/torchscript_exporter/utils.py:710:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_canonicalize` +torch/onnx/_internal/torchscript_exporter/utils.py:711:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_lint` +torch/onnx/_internal/torchscript_exporter/utils.py:714:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_graph_shape_type_inference` +torch/onnx/_internal/torchscript_exporter/utils.py:901:35: error[unresolved-attribute] Module `torch` has no member `is_autocast_cache_enabled` +torch/onnx/_internal/torchscript_exporter/utils.py:902:5: error[unresolved-attribute] Module `torch` has no member `set_autocast_cache_enabled` +torch/onnx/_internal/torchscript_exporter/utils.py:910:5: error[unresolved-attribute] Module `torch` has no member `set_autocast_cache_enabled` +torch/onnx/_internal/torchscript_exporter/utils.py:961:12: error[unresolved-attribute] Module `torch._C` has no member `Graph` +torch/onnx/_internal/torchscript_exporter/utils.py:961:27: error[unresolved-attribute] Module `torch._C` has no member `IValue` +torch/onnx/_internal/torchscript_exporter/utils.py:961:51: error[unresolved-attribute] Module `torch._C` has no member `ScriptModule` +torch/onnx/_internal/torchscript_exporter/utils.py:972:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_function_substitution` +torch/onnx/_internal/torchscript_exporter/utils.py:973:30: error[unresolved-attribute] Module `torch._C` has no member `_freeze_module` +torch/onnx/_internal/torchscript_exporter/utils.py:974:22: error[unresolved-attribute] Module `torch._C` has no member `ScriptModule` +torch/onnx/_internal/torchscript_exporter/utils.py:976:30: error[unresolved-attribute] Module `torch._C` has no member `_jit_onnx_list_model_parameters` +torch/onnx/_internal/torchscript_exporter/utils.py:981:21: error[unresolved-attribute] Module `torch._C` has no member `_propagate_and_assign_input_shapes` +torch/onnx/_internal/torchscript_exporter/utils.py:989:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_function_substitution` +torch/onnx/_internal/torchscript_exporter/utils.py:991:17: error[unresolved-attribute] Module `torch._C` has no member `_propagate_and_assign_input_shapes` +torch/onnx/_internal/torchscript_exporter/utils.py:997:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_lint` +torch/onnx/_internal/torchscript_exporter/utils.py:1006:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_function_substitution` +torch/onnx/_internal/torchscript_exporter/utils.py:1034:5: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/onnx/_internal/torchscript_exporter/utils.py:1034:19: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/_internal/torchscript_exporter/utils.py:1035:5: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/onnx/_internal/torchscript_exporter/utils.py:1035:18: error[unresolved-attribute] Module `torch` has no member `int8` +torch/onnx/_internal/torchscript_exporter/utils.py:1036:5: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/onnx/_internal/torchscript_exporter/utils.py:1036:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/onnx/_internal/torchscript_exporter/utils.py:1037:5: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/onnx/_internal/torchscript_exporter/utils.py:1037:21: error[unresolved-attribute] Module `torch` has no member `int8` +torch/onnx/_internal/torchscript_exporter/utils.py:1045:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/utils.py:1045:49: error[unresolved-attribute] Module `torch` has no member `double` +torch/onnx/_internal/torchscript_exporter/utils.py:1047:18: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/utils.py:1047:54: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/_internal/torchscript_exporter/utils.py:1050:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/utils.py:1050:54: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/_internal/torchscript_exporter/utils.py:1052:18: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/onnx/_internal/torchscript_exporter/utils.py:1087:5: error[unresolved-attribute] Module `torch._C` has no member `Graph` +torch/onnx/_internal/torchscript_exporter/utils.py:1127:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_onnx_log` +torch/onnx/_internal/torchscript_exporter/utils.py:1137:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_assign_output_shape` +torch/onnx/_internal/torchscript_exporter/utils.py:1159:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_assign_output_shape` +torch/onnx/_internal/torchscript_exporter/utils.py:1177:27: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_eval_peephole` +torch/onnx/_internal/torchscript_exporter/utils.py:1179:23: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_constant_fold` +torch/onnx/_internal/torchscript_exporter/utils.py:1182:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_dce_allow_deleting_nodes_with_side_effects` +torch/onnx/_internal/torchscript_exporter/utils.py:1186:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_graph_shape_type_inference` +torch/onnx/_internal/torchscript_exporter/utils.py:1194:19: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_eliminate_unused_items` +torch/onnx/_internal/torchscript_exporter/utils.py:1199:9: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_cast_all_constant_to_floating` +torch/onnx/_internal/torchscript_exporter/utils.py:1201:19: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_filter_non_tensor_arguments` +torch/onnx/_internal/torchscript_exporter/utils.py:1202:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_decay_packed_param_input_types` +torch/onnx/_internal/torchscript_exporter/utils.py:1219:12: error[unresolved-attribute] Module `torch._C` has no member `Graph` +torch/onnx/_internal/torchscript_exporter/utils.py:1255:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_inline` +torch/onnx/_internal/torchscript_exporter/utils.py:1256:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_remove_inplace_ops_for_onnx` +torch/onnx/_internal/torchscript_exporter/utils.py:1257:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_erase_number_types` +torch/onnx/_internal/torchscript_exporter/utils.py:1258:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_dce_allow_deleting_nodes_with_side_effects` +torch/onnx/_internal/torchscript_exporter/utils.py:1296:29: error[unresolved-attribute] Module `torch._C` has no member `_get_tracing_state` +torch/onnx/_internal/torchscript_exporter/utils.py:1306:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_track_scope_attributes` +torch/onnx/_internal/torchscript_exporter/utils.py:1332:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_onnx_create_full_scope_name` +torch/onnx/_internal/torchscript_exporter/utils.py:1364:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_clear_scope_records` +torch/onnx/_internal/torchscript_exporter/utils.py:1386:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_onnx_log` +torch/onnx/_internal/torchscript_exporter/utils.py:1529:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_dce_allow_deleting_nodes_with_side_effects` +torch/onnx/_internal/torchscript_exporter/utils.py:1533:37: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_function_extraction` +torch/onnx/_internal/torchscript_exporter/utils.py:1545:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_onnx_assign_scoped_names_for_node_and_value` +torch/onnx/_internal/torchscript_exporter/utils.py:1591:17: error[unresolved-attribute] Module `torch._C` has no member `_jit_onnx_log` +torch/onnx/_internal/torchscript_exporter/utils.py:1670:22: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/onnx/_internal/torchscript_exporter/utils.py:1670:34: error[unresolved-attribute] Module `torch._C` has no member `Block` +torch/onnx/_internal/torchscript_exporter/utils.py:1674:32: error[unresolved-attribute] Module `torch._C` has no member `Block` +torch/onnx/_internal/torchscript_exporter/utils.py:1678:33: error[unresolved-attribute] Module `torch._C` has no member `Block` +torch/onnx/_internal/torchscript_exporter/utils.py:1678:50: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/utils.py:1703:35: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/onnx/_internal/torchscript_exporter/utils.py:1708:12: error[unresolved-attribute] Module `torch._C` has no member `parse_schema` +torch/onnx/_internal/torchscript_exporter/utils.py:1712:12: error[unresolved-attribute] Module `torch._C` has no member `Graph` +torch/onnx/_internal/torchscript_exporter/utils.py:1713:12: error[unresolved-attribute] Module `torch._C` has no member `Block` +torch/onnx/_internal/torchscript_exporter/utils.py:1714:11: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/onnx/_internal/torchscript_exporter/utils.py:1716:15: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/utils.py:1716:25: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/utils.py:1717:24: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/utils.py:1718:21: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/onnx/_internal/torchscript_exporter/utils.py:1720:6: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/_internal/torchscript_exporter/utils.py:1720:26: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/errors.py:60:41: error[unresolved-attribute] Module `torch._C` has no member `Value` +torch/onnx/operators.py:33:19: error[unresolved-attribute] Module `torch` has no member `_shape_as_tensor` +torch/onnx/operators.py:47:29: error[unresolved-attribute] Module `torch` has no member `_reshape_from_tensor` +torch/onnx/ops/__init__.py:32:5: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/ops/__init__.py:33:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/ops/__init__.py:34:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/onnx/ops/__init__.py:35:5: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/onnx/ops/__init__.py:36:5: error[unresolved-attribute] Module `torch` has no member `int16` +torch/onnx/ops/__init__.py:37:5: error[unresolved-attribute] Module `torch` has no member `int32` +torch/onnx/ops/__init__.py:38:5: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/ops/__init__.py:40:5: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/ops/__init__.py:41:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/onnx/ops/__init__.py:42:5: error[unresolved-attribute] Module `torch` has no member `double` +torch/onnx/ops/__init__.py:43:5: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/onnx/ops/__init__.py:44:5: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/onnx/ops/__init__.py:45:5: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/onnx/ops/__init__.py:46:5: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/onnx/ops/__init__.py:47:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/onnx/ops/__init__.py:48:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/onnx/ops/__init__.py:49:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/onnx/ops/__init__.py:50:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/onnx/ops/__init__.py:51:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/onnx/ops/__init__.py:54:5: error[unresolved-attribute] Module `torch` has no member `float4_e2m1fn_x2` +torch/onnx/ops/__init__.py:91:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/ops/__init__.py:192:22: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/ops/_dtype_mappings.py:4:38: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/onnx/ops/_dtype_mappings.py:5:8: error[unresolved-attribute] Module `torch` has no member `float32` +torch/onnx/ops/_dtype_mappings.py:6:8: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/ops/_dtype_mappings.py:7:8: error[unresolved-attribute] Module `torch` has no member `int8` +torch/onnx/ops/_dtype_mappings.py:8:8: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/onnx/ops/_dtype_mappings.py:9:8: error[unresolved-attribute] Module `torch` has no member `int16` +torch/onnx/ops/_dtype_mappings.py:10:8: error[unresolved-attribute] Module `torch` has no member `int32` +torch/onnx/ops/_dtype_mappings.py:11:8: error[unresolved-attribute] Module `torch` has no member `int64` +torch/onnx/ops/_dtype_mappings.py:12:8: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/ops/_dtype_mappings.py:13:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/onnx/ops/_dtype_mappings.py:14:9: error[unresolved-attribute] Module `torch` has no member `double` +torch/onnx/ops/_dtype_mappings.py:15:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/onnx/ops/_dtype_mappings.py:16:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/onnx/ops/_dtype_mappings.py:17:9: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/onnx/ops/_dtype_mappings.py:18:9: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/onnx/ops/_dtype_mappings.py:19:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/onnx/ops/_dtype_mappings.py:20:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/onnx/ops/_dtype_mappings.py:21:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/onnx/ops/_dtype_mappings.py:22:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/onnx/ops/_dtype_mappings.py:23:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/onnx/ops/_dtype_mappings.py:24:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/ops/_dtype_mappings.py:25:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/onnx/ops/_dtype_mappings.py:26:9: error[unresolved-attribute] Module `torch` has no member `float4_e2m1fn_x2` +torch/onnx/ops/_impl.py:117:13: error[unresolved-attribute] Module `torch` has no member `permute` +torch/onnx/ops/_impl.py:126:13: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/onnx/ops/_impl.py:167:11: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/onnx/ops/_impl.py:170:11: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/onnx/ops/_impl.py:179:18: error[unresolved-attribute] Module `torch` has no member `chunk` +torch/onnx/ops/_impl.py:189:16: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/onnx/ops/_impl.py:190:16: error[unresolved-attribute] Module `torch` has no member `unsqueeze` +torch/onnx/ops/_impl.py:191:27: error[unresolved-attribute] Module `torch` has no member `cat` +torch/onnx/ops/_impl.py:192:20: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/onnx/ops/_impl.py:194:20: error[unresolved-attribute] Module `torch` has no member `cat` +torch/onnx/ops/_impl.py:195:14: error[unresolved-attribute] Module `torch` has no member `cat` +torch/onnx/ops/_impl.py:197:16: error[unresolved-attribute] Module `torch` has no member `reshape` +torch/onnx/ops/_impl.py:200:12: error[unresolved-attribute] Module `torch` has no member `permute` +torch/onnx/ops/_impl.py:236:16: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/onnx/ops/_impl.py:236:33: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/onnx/ops/_impl.py:268:12: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/onnx/ops/_impl.py:347:14: error[unresolved-attribute] Module `torch` has no member `empty` +torch/onnx/ops/_impl.py:348:19: error[unresolved-attribute] Module `torch` has no member `empty` +torch/onnx/ops/_impl.py:349:21: error[unresolved-attribute] Module `torch` has no member `empty` +torch/onnx/ops/_impl.py:350:17: error[unresolved-attribute] Module `torch` has no member `empty` +torch/onnx/ops/_impl.py:402:9: error[unresolved-attribute] Module `torch` has no member `cat` +torch/onnx/ops/_impl.py:407:9: error[unresolved-attribute] Module `torch` has no member `cat` +torch/onnx/ops/_impl.py:426:54: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/ops/_impl.py:464:21: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/onnx/ops/_impl.py:473:27: error[unresolved-attribute] Module `torch` has no member `tril` +torch/onnx/ops/_impl.py:474:17: error[unresolved-attribute] Module `torch` has no member `ones` +torch/onnx/ops/_impl.py:477:27: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/ops/_impl.py:485:35: error[unresolved-attribute] Module `torch` has no member `bool` +torch/onnx/ops/_impl.py:501:28: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/onnx/ops/_impl.py:514:38: error[unresolved-attribute] Module `torch` has no member `tanh` +torch/onnx/ops/_impl.py:527:30: error[unresolved-attribute] Module `torch` has no member `softmax` +torch/onnx/ops/_impl.py:530:30: error[unresolved-attribute] Module `torch` has no member `softmax` +torch/onnx/ops/_impl.py:532:26: error[unresolved-attribute] Module `torch` has no member `softmax` +torch/onnx/ops/_impl.py:538:18: error[unresolved-attribute] Module `torch` has no member `matmul` +torch/onnx/ops/_symbolic_impl.py:204:12: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/onnx/ops/_symbolic_impl.py:233:12: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/onnx/ops/_symbolic_impl.py:277:13: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/onnx/ops/_symbolic_impl.py:315:13: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/optim/_adafactor.py:69:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/_adafactor.py:84:16: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/_adafactor.py:98:33: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/_adafactor.py:111:41: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/_adafactor.py:112:47: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/_adafactor.py:373:20: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/optim/_adafactor.py:422:20: error[unresolved-attribute] Module `torch` has no member `device` +torch/optim/_adafactor.py:422:44: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/optim/_adafactor.py:430:24: error[unresolved-attribute] Module `torch` has no member `device` +torch/optim/_adafactor.py:430:48: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/optim/_adafactor.py:506:20: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/optim/_adafactor.py:519:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/_adafactor.py:520:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/_adafactor.py:523:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/_adafactor.py:540:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/_adafactor.py:553:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/_adafactor.py:554:13: error[unresolved-attribute] Module `torch` has no member `_foreach_div_` +torch/optim/_adafactor.py:555:13: error[unresolved-attribute] Module `torch` has no member `_foreach_lerp_` +torch/optim/_adafactor.py:562:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/_adafactor.py:563:13: error[unresolved-attribute] Module `torch` has no member `_foreach_div_` +torch/optim/_adafactor.py:564:13: error[unresolved-attribute] Module `torch` has no member `_foreach_lerp_` +torch/optim/_adafactor.py:576:13: error[unresolved-attribute] Module `torch` has no member `_foreach_clamp_min_` +torch/optim/_adafactor.py:577:13: error[unresolved-attribute] Module `torch` has no member `_foreach_div_` +torch/optim/_adafactor.py:584:29: error[unresolved-attribute] Module `torch` has no member `_foreach_mul` +torch/optim/_adafactor.py:585:13: error[unresolved-attribute] Module `torch` has no member `_foreach_lerp_` +torch/optim/_adafactor.py:592:9: error[unresolved-attribute] Module `torch` has no member `_foreach_clamp_min_` +torch/optim/_adafactor.py:593:9: error[unresolved-attribute] Module `torch` has no member `_foreach_rsqrt_` +torch/optim/_adafactor.py:594:9: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/_adafactor.py:601:9: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/_adafactor.py:602:9: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/_muon.py:64:23: error[unresolved-attribute] Module `torch` has no member `addmm` +torch/optim/_muon.py:67:22: error[unresolved-attribute] Module `torch` has no member `addmm` +torch/optim/_muon.py:75:58: error[unresolved-attribute] Module `torch` has no member `Size` +torch/optim/_muon.py:149:16: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/_muon.py:160:44: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/_muon.py:161:43: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/adadelta.py:77:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/adadelta.py:81:30: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/adadelta.py:98:28: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/adadelta.py:109:21: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/optim/adadelta.py:111:26: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/optim/adadelta.py:114:39: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/adadelta.py:115:38: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/adadelta.py:117:38: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/adadelta.py:118:38: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/adadelta.py:287:12: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/adadelta.py:288:26: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/adadelta.py:289:25: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/adadelta.py:290:20: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/adadelta.py:300:12: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/adadelta.py:301:21: error[unresolved-attribute] Module `torch` has no member `view_as_complex` +torch/optim/adadelta.py:368:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adadelta.py:369:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/adadelta.py:372:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adadelta.py:380:17: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adadelta.py:386:9: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/adadelta.py:387:9: error[unresolved-attribute] Module `torch` has no member `_foreach_addcmul_` +torch/optim/adadelta.py:391:15: error[unresolved-attribute] Module `torch` has no member `_foreach_add` +torch/optim/adadelta.py:392:9: error[unresolved-attribute] Module `torch` has no member `_foreach_sqrt_` +torch/optim/adadelta.py:394:18: error[unresolved-attribute] Module `torch` has no member `_foreach_add` +torch/optim/adadelta.py:395:9: error[unresolved-attribute] Module `torch` has no member `_foreach_sqrt_` +torch/optim/adadelta.py:396:9: error[unresolved-attribute] Module `torch` has no member `_foreach_div_` +torch/optim/adadelta.py:397:9: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/adadelta.py:399:9: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/adadelta.py:400:9: error[unresolved-attribute] Module `torch` has no member `_foreach_addcmul_` +torch/optim/adadelta.py:405:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/adadelta.py:406:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adadelta.py:408:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adagrad.py:81:21: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/optim/adagrad.py:87:26: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/adagrad.py:91:24: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/adagrad.py:94:32: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/optim/adagrad.py:95:50: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/adagrad.py:115:29: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/adagrad.py:138:32: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/adagrad.py:320:12: error[unresolved-attribute] Module `torch` has no member `sparse_coo_tensor` +torch/optim/adagrad.py:375:26: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/adagrad.py:377:24: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/adagrad.py:378:29: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/adagrad.py:379:25: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/adagrad.py:387:25: error[unresolved-attribute] Module `torch` has no member `view_as_complex` +torch/optim/adagrad.py:388:29: error[unresolved-attribute] Module `torch` has no member `view_as_complex` +torch/optim/adagrad.py:468:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adagrad.py:469:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/adagrad.py:472:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adagrad.py:477:17: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adagrad.py:487:9: error[unresolved-attribute] Module `torch` has no member `_foreach_addcmul_` +torch/optim/adagrad.py:489:15: error[unresolved-attribute] Module `torch` has no member `_foreach_sqrt` +torch/optim/adagrad.py:490:9: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adagrad.py:494:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/adagrad.py:499:9: error[unresolved-attribute] Module `torch` has no member `_foreach_addcdiv_` +torch/optim/adagrad.py:562:9: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adagrad.py:563:9: error[unresolved-attribute] Module `torch` has no member `_fused_adagrad_` +torch/optim/adagrad.py:577:13: error[unresolved-attribute] Module `torch` has no member `_foreach_sub_` +torch/optim/adam.py:130:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/adam.py:136:30: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/adam.py:152:32: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/adam.py:169:25: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/optim/adam.py:175:30: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/adam.py:178:40: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/adam.py:179:42: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/adam.py:182:43: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/adam.py:183:42: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/adam.py:187:51: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/adam.py:188:46: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/adam.py:431:12: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/adam.py:432:20: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/adam.py:433:23: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/adam.py:434:26: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/adam.py:436:38: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/adam.py:437:21: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/adam.py:470:34: error[unresolved-attribute] Module `torch` has no member `square` +torch/optim/adam.py:511:42: error[unresolved-attribute] Module `torch` has no member `maximum` +torch/optim/adam.py:540:17: error[unresolved-attribute] Module `torch` has no member `maximum` +torch/optim/adam.py:550:24: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/adam.py:551:34: error[unresolved-attribute] Module `torch` has no member `view_as_complex` +torch/optim/adam.py:683:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adam.py:684:37: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/adam.py:687:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adam.py:692:17: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/adam.py:696:21: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adam.py:705:9: error[unresolved-attribute] Module `torch` has no member `_foreach_lerp_` +torch/optim/adam.py:709:9: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/adam.py:722:9: error[unresolved-attribute] Module `torch` has no member `_foreach_addcmul_` +torch/optim/adam.py:738:13: error[unresolved-attribute] Module `torch` has no member `_foreach_sub_` +torch/optim/adam.py:739:13: error[unresolved-attribute] Module `torch` has no member `_foreach_sub_` +torch/optim/adam.py:741:13: error[unresolved-attribute] Module `torch` has no member `_foreach_neg_` +torch/optim/adam.py:744:13: error[unresolved-attribute] Module `torch` has no member `_foreach_div_` +torch/optim/adam.py:745:13: error[unresolved-attribute] Module `torch` has no member `_foreach_reciprocal_` +torch/optim/adam.py:747:13: error[unresolved-attribute] Module `torch` has no member `_foreach_sqrt_` +torch/optim/adam.py:761:35: error[unresolved-attribute] Module `torch` has no member `_foreach_sqrt` +torch/optim/adam.py:763:35: error[unresolved-attribute] Module `torch` has no member `_foreach_sqrt` +torch/optim/adam.py:765:13: error[unresolved-attribute] Module `torch` has no member `_foreach_div_` +torch/optim/adam.py:766:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adam.py:767:13: error[unresolved-attribute] Module `torch` has no member `_foreach_div_` +torch/optim/adam.py:770:13: error[unresolved-attribute] Module `torch` has no member `_foreach_addcdiv_` +torch/optim/adam.py:786:17: error[unresolved-attribute] Module `torch` has no member `_foreach_maximum_` +torch/optim/adam.py:789:35: error[unresolved-attribute] Module `torch` has no member `_foreach_sqrt` +torch/optim/adam.py:791:35: error[unresolved-attribute] Module `torch` has no member `_foreach_sqrt` +torch/optim/adam.py:793:13: error[unresolved-attribute] Module `torch` has no member `_foreach_div_` +torch/optim/adam.py:794:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adam.py:795:13: error[unresolved-attribute] Module `torch` has no member `_foreach_addcdiv_` +torch/optim/adam.py:877:9: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adam.py:878:16: error[unresolved-attribute] Module `torch` has no member `_fused_adam_` +torch/optim/adam.py:878:70: error[unresolved-attribute] Module `torch` has no member `_fused_adamw_` +torch/optim/adam.py:897:13: error[unresolved-attribute] Module `torch` has no member `_foreach_sub_` +torch/optim/adamax.py:80:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/adamax.py:84:30: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/adamax.py:94:28: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/adamax.py:105:21: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/optim/adamax.py:107:26: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/adamax.py:109:36: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/adamax.py:110:38: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/adamax.py:112:36: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/adamax.py:113:38: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/adamax.py:270:12: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/adamax.py:271:21: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/adamax.py:272:20: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/adamax.py:273:23: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/adamax.py:274:23: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/adamax.py:280:13: error[unresolved-attribute] Module `torch` has no member `maximum` +torch/optim/adamax.py:286:24: error[unresolved-attribute] Module `torch` has no member `cat` +torch/optim/adamax.py:290:27: error[unresolved-attribute] Module `torch` has no member `amax` +torch/optim/adamax.py:374:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adamax.py:375:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/adamax.py:378:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adamax.py:383:17: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adamax.py:390:9: error[unresolved-attribute] Module `torch` has no member `_foreach_lerp_` +torch/optim/adamax.py:393:9: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/adamax.py:400:13: error[unresolved-attribute] Module `torch` has no member `_foreach_abs_` +torch/optim/adamax.py:402:9: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/adamax.py:403:9: error[unresolved-attribute] Module `torch` has no member `_foreach_maximum_` +torch/optim/adamax.py:407:32: error[unresolved-attribute] Module `torch` has no member `_foreach_pow` +torch/optim/adamax.py:409:13: error[unresolved-attribute] Module `torch` has no member `_foreach_sub_` +torch/optim/adamax.py:410:13: error[unresolved-attribute] Module `torch` has no member `_foreach_div_` +torch/optim/adamax.py:412:21: error[unresolved-attribute] Module `torch` has no member `_foreach_mul` +torch/optim/adamax.py:413:13: error[unresolved-attribute] Module `torch` has no member `_foreach_addcdiv_` +torch/optim/adamax.py:419:13: error[unresolved-attribute] Module `torch` has no member `_foreach_addcdiv_` +torch/optim/asgd.py:75:43: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/asgd.py:79:42: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/asgd.py:83:41: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/asgd.py:91:32: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/asgd.py:100:37: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/optim/asgd.py:104:25: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/optim/asgd.py:112:35: error[unresolved-attribute] Module `torch` has no member `ones` +torch/optim/asgd.py:115:35: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/asgd.py:116:42: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/asgd.py:241:12: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/asgd.py:242:20: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/asgd.py:243:21: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/asgd.py:244:18: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/asgd.py:269:26: error[unresolved-attribute] Module `torch` has no member `maximum` +torch/optim/asgd.py:269:53: error[unresolved-attribute] Module `torch` has no member `ones_like` +torch/optim/asgd.py:272:23: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/optim/asgd.py:274:22: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/optim/asgd.py:351:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/asgd.py:352:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/asgd.py:355:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/asgd.py:361:17: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/asgd.py:364:32: error[unresolved-attribute] Module `torch` has no member `_foreach_add` +torch/optim/asgd.py:368:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/asgd.py:370:28: error[unresolved-attribute] Module `torch` has no member `_foreach_add` +torch/optim/asgd.py:378:9: error[unresolved-attribute] Module `torch` has no member `_foreach_addcmul_` +torch/optim/asgd.py:389:24: error[unresolved-attribute] Module `torch` has no member `_foreach_sub` +torch/optim/asgd.py:390:9: error[unresolved-attribute] Module `torch` has no member `_foreach_addcmul_` +torch/optim/asgd.py:397:23: error[unresolved-attribute] Module `torch` has no member `_foreach_sub` +torch/optim/asgd.py:398:13: error[unresolved-attribute] Module `torch` has no member `_foreach_maximum_` +torch/optim/asgd.py:399:13: error[unresolved-attribute] Module `torch` has no member `_foreach_reciprocal_` +torch/optim/asgd.py:400:13: error[unresolved-attribute] Module `torch` has no member `_foreach_copy_` +torch/optim/asgd.py:404:24: error[unresolved-attribute] Module `torch` has no member `_foreach_mul` +torch/optim/asgd.py:405:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/asgd.py:406:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/asgd.py:407:13: error[unresolved-attribute] Module `torch` has no member `_foreach_pow_` +torch/optim/asgd.py:408:13: error[unresolved-attribute] Module `torch` has no member `_foreach_reciprocal_` +torch/optim/asgd.py:409:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/asgd.py:410:13: error[unresolved-attribute] Module `torch` has no member `_foreach_copy_` +torch/optim/asgd.py:413:17: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/optim/asgd.py:417:17: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/optim/asgd.py:420:13: error[unresolved-attribute] Module `torch` has no member `_foreach_copy_` +torch/optim/asgd.py:421:13: error[unresolved-attribute] Module `torch` has no member `_foreach_copy_` +torch/optim/lbfgs.py:46:31: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/optim/lbfgs.py:61:60: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/optim/lbfgs.py:75:60: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/optim/lbfgs.py:90:44: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/optim/lbfgs.py:287:34: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/lbfgs.py:302:16: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/lbfgs.py:303:24: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/lbfgs.py:305:16: error[unresolved-attribute] Module `torch` has no member `cat` +torch/optim/lbfgs.py:310:16: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/lbfgs.py:311:21: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/lbfgs.py:320:39: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/optim/lbfgs.py:440:25: error[unresolved-attribute] Module `torch` has no member `mul` +torch/optim/lbfgs.py:440:25: error[unresolved-attribute] Module `torch` has no member `mul` +torch/optim/lbfgs.py:446:64: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/optim/lr_scheduler.py:302:53: error[call-non-callable] Object of type `object` is not callable +torch/optim/lr_scheduler.py:1923:24: error[invalid-assignment] Object of type `float` is not assignable to `int` +torch/optim/lr_scheduler.py:1924:26: error[invalid-assignment] Object of type `float | int` is not assignable to `int | None` +torch/optim/lr_scheduler.py:1929:27: error[unsupported-operator] Operator `+` is unsupported between objects of type `int` and `int | None` +torch/optim/nadam.py:90:29: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/nadam.py:94:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/nadam.py:99:29: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/nadam.py:103:34: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/nadam.py:119:32: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/nadam.py:132:25: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/optim/nadam.py:134:30: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/nadam.py:137:25: error[unresolved-attribute] Module `torch` has no member `ones` +torch/optim/nadam.py:139:30: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/nadam.py:142:40: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/nadam.py:143:42: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/nadam.py:146:43: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/nadam.py:147:42: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/nadam.py:311:12: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/nadam.py:312:21: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/nadam.py:313:20: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/nadam.py:314:23: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/nadam.py:315:26: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/nadam.py:457:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/nadam.py:458:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/nadam.py:461:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/nadam.py:466:17: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/nadam.py:470:21: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/nadam.py:479:9: error[unresolved-attribute] Module `torch` has no member `_foreach_lerp_` +torch/optim/nadam.py:481:9: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/nadam.py:482:9: error[unresolved-attribute] Module `torch` has no member `_foreach_addcmul_` +torch/optim/nadam.py:486:27: error[unresolved-attribute] Module `torch` has no member `_foreach_sqrt` +torch/optim/nadam.py:493:24: error[unresolved-attribute] Module `torch` has no member `_foreach_mul` +torch/optim/nadam.py:494:19: error[unresolved-attribute] Module `torch` has no member `_foreach_pow` +torch/optim/nadam.py:495:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/nadam.py:496:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/nadam.py:497:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/nadam.py:500:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/nadam.py:501:24: error[unresolved-attribute] Module `torch` has no member `_foreach_pow` +torch/optim/nadam.py:502:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/nadam.py:503:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/nadam.py:504:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/nadam.py:509:36: error[unresolved-attribute] Module `torch` has no member `_foreach_pow` +torch/optim/nadam.py:511:13: error[unresolved-attribute] Module `torch` has no member `_foreach_sub_` +torch/optim/nadam.py:512:13: error[unresolved-attribute] Module `torch` has no member `_foreach_neg_` +torch/optim/nadam.py:513:13: error[unresolved-attribute] Module `torch` has no member `_foreach_sqrt_` +torch/optim/nadam.py:529:9: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/nadam.py:531:9: error[unresolved-attribute] Module `torch` has no member `_foreach_div_` +torch/optim/nadam.py:532:9: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/nadam.py:539:13: error[unresolved-attribute] Module `torch` has no member `_foreach_sub_` +torch/optim/nadam.py:540:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/nadam.py:542:21: error[unresolved-attribute] Module `torch` has no member `_foreach_sub` +torch/optim/nadam.py:543:13: error[unresolved-attribute] Module `torch` has no member `_foreach_neg_` +torch/optim/nadam.py:544:13: error[unresolved-attribute] Module `torch` has no member `_foreach_div_` +torch/optim/nadam.py:551:21: error[unresolved-attribute] Module `torch` has no member `_foreach_mul` +torch/optim/nadam.py:552:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/nadam.py:555:13: error[unresolved-attribute] Module `torch` has no member `_foreach_sub_` +torch/optim/nadam.py:556:13: error[unresolved-attribute] Module `torch` has no member `_foreach_div_` +torch/optim/nadam.py:564:25: error[unresolved-attribute] Module `torch` has no member `_foreach_mul` +torch/optim/nadam.py:565:13: error[unresolved-attribute] Module `torch` has no member `_foreach_addcmul_` +torch/optim/nadam.py:568:13: error[unresolved-attribute] Module `torch` has no member `_foreach_addcdiv_` +torch/optim/nadam.py:590:13: error[unresolved-attribute] Module `torch` has no member `_foreach_addcdiv_` +torch/optim/nadam.py:596:13: error[unresolved-attribute] Module `torch` has no member `_foreach_addcdiv_` +torch/optim/optimizer.py:31:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/optim/optimizer.py:33:20: error[unresolved-attribute] Module `torch` has no member `device` +torch/optim/optimizer.py:33:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/optim/optimizer.py:67:21: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/optim/optimizer.py:103:16: error[unresolved-attribute] Module `torch` has no member `stack` +torch/optim/optimizer.py:116:19: error[unresolved-attribute] Object of type `((...) -> object) & ~AlwaysFalsy` has no attribute `__name__` +torch/optim/optimizer.py:179:17: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/optim/optimizer.py:200:58: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/optim/optimizer.py:209:12: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/optimizer.py:210:25: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/optimizer.py:212:24: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/optimizer.py:217:16: error[unresolved-attribute] Module `torch` has no member `float32` +torch/optim/optimizer.py:219:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/optim/optimizer.py:219:26: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/optim/optimizer.py:219:55: error[unresolved-attribute] Module `torch` has no member `float64` +torch/optim/optimizer.py:219:74: error[unresolved-attribute] Module `torch` has no member `float32` +torch/optim/optimizer.py:227:45: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/optim/optimizer.py:381:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/optim/optimizer.py:516:39: error[invalid-argument-type] Argument is incorrect: Expected `typing.Self`, found `Optimizer` +torch/optim/optimizer.py:534:31: error[invalid-argument-type] Argument is incorrect: Expected `typing.Self`, found `Optimizer` +torch/optim/optimizer.py:546:20: error[unresolved-attribute] Module `torch` has no member `device` +torch/optim/optimizer.py:546:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/optim/optimizer.py:792:39: error[unresolved-attribute] Module `torch` has no member `float32` +torch/optim/optimizer.py:968:21: error[invalid-argument-type] Argument to function `_process_value_according_to_param_policy` is incorrect: Expected `int`, found `Unknown | None` +torch/optim/optimizer.py:970:21: error[invalid-argument-type] Argument to function `_process_value_according_to_param_policy` is incorrect: Expected `list[dict[Any, Any]]`, found `Unknown | None` +torch/optim/optimizer.py:1045:25: error[unresolved-attribute] Module `torch` has no member `device` +torch/optim/optimizer.py:1045:51: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/optim/optimizer.py:1080:25: error[unresolved-attribute] Module `torch` has no member `_foreach_zero_` +torch/optim/radam.py:85:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/radam.py:89:30: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/radam.py:98:32: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/radam.py:108:25: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/optim/radam.py:110:30: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/radam.py:113:40: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/radam.py:114:42: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/radam.py:117:43: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/radam.py:118:42: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/radam.py:294:12: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/radam.py:295:21: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/radam.py:296:20: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/radam.py:297:23: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/radam.py:298:26: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/radam.py:346:22: error[unresolved-attribute] Module `torch` has no member `where` +torch/optim/radam.py:424:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/radam.py:425:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/radam.py:428:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/radam.py:445:32: error[unresolved-attribute] Module `torch` has no member `_foreach_pow` +torch/optim/radam.py:446:13: error[unresolved-attribute] Module `torch` has no member `_foreach_neg_` +torch/optim/radam.py:447:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/radam.py:448:32: error[unresolved-attribute] Module `torch` has no member `_foreach_pow` +torch/optim/radam.py:449:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/radam.py:450:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/radam.py:451:13: error[unresolved-attribute] Module `torch` has no member `_foreach_div_` +torch/optim/radam.py:452:13: error[unresolved-attribute] Module `torch` has no member `_foreach_neg_` +torch/optim/radam.py:453:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/radam.py:467:17: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/radam.py:471:21: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/radam.py:480:9: error[unresolved-attribute] Module `torch` has no member `_foreach_lerp_` +torch/optim/radam.py:482:9: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/radam.py:483:9: error[unresolved-attribute] Module `torch` has no member `_foreach_addcmul_` +torch/optim/radam.py:491:19: error[unresolved-attribute] Module `torch` has no member `_foreach_sub` +torch/optim/radam.py:492:20: error[unresolved-attribute] Module `torch` has no member `_foreach_sub` +torch/optim/radam.py:493:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/radam.py:495:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/radam.py:497:21: error[unresolved-attribute] Module `torch` has no member `_foreach_mul` +torch/optim/radam.py:498:13: error[unresolved-attribute] Module `torch` has no member `_foreach_div_` +torch/optim/radam.py:500:13: error[unresolved-attribute] Module `torch` has no member `_foreach_sqrt_` +torch/optim/radam.py:504:17: error[unresolved-attribute] Module `torch` has no member `where` +torch/optim/radam.py:509:33: error[unresolved-attribute] Module `torch` has no member `where` +torch/optim/radam.py:510:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/radam.py:512:32: error[unresolved-attribute] Module `torch` has no member `_foreach_pow` +torch/optim/radam.py:513:13: error[unresolved-attribute] Module `torch` has no member `_foreach_neg_` +torch/optim/radam.py:514:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/radam.py:516:13: error[unresolved-attribute] Module `torch` has no member `_foreach_div_` +torch/optim/radam.py:517:13: error[unresolved-attribute] Module `torch` has no member `_foreach_neg_` +torch/optim/radam.py:519:32: error[unresolved-attribute] Module `torch` has no member `_foreach_pow` +torch/optim/radam.py:520:13: error[unresolved-attribute] Module `torch` has no member `_foreach_neg_` +torch/optim/radam.py:521:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/radam.py:522:13: error[unresolved-attribute] Module `torch` has no member `_foreach_sqrt_` +torch/optim/radam.py:523:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/radam.py:524:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/radam.py:526:13: error[unresolved-attribute] Module `torch` has no member `_foreach_neg_` +torch/optim/radam.py:527:13: error[unresolved-attribute] Module `torch` has no member `_foreach_div_` +torch/optim/radam.py:558:18: error[unresolved-attribute] Module `torch` has no member `_foreach_sqrt` +torch/optim/radam.py:559:9: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/radam.py:560:9: error[unresolved-attribute] Module `torch` has no member `_foreach_div_` +torch/optim/radam.py:561:9: error[unresolved-attribute] Module `torch` has no member `_foreach_reciprocal_` +torch/optim/radam.py:562:9: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/radam.py:565:9: error[unresolved-attribute] Module `torch` has no member `_foreach_addcmul_` +torch/optim/rmsprop.py:86:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/rmsprop.py:90:30: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/rmsprop.py:107:28: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/rmsprop.py:119:21: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/optim/rmsprop.py:121:26: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/optim/rmsprop.py:123:39: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/rmsprop.py:124:38: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/rmsprop.py:127:48: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/rmsprop.py:128:42: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/rmsprop.py:131:41: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/rmsprop.py:132:42: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/rmsprop.py:310:28: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/rmsprop.py:312:21: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/rmsprop.py:313:20: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/rmsprop.py:314:26: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/rmsprop.py:321:28: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/rmsprop.py:335:23: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/rmsprop.py:419:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/rmsprop.py:420:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/rmsprop.py:423:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/rmsprop.py:428:17: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/rmsprop.py:434:9: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/rmsprop.py:435:9: error[unresolved-attribute] Module `torch` has no member `_foreach_addcmul_` +torch/optim/rmsprop.py:441:13: error[unresolved-attribute] Module `torch` has no member `_foreach_lerp_` +torch/optim/rmsprop.py:442:19: error[unresolved-attribute] Module `torch` has no member `_foreach_addcmul` +torch/optim/rmsprop.py:445:13: error[unresolved-attribute] Module `torch` has no member `_foreach_sqrt_` +torch/optim/rmsprop.py:446:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/rmsprop.py:448:19: error[unresolved-attribute] Module `torch` has no member `_foreach_sqrt` +torch/optim/rmsprop.py:449:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/rmsprop.py:455:13: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/rmsprop.py:456:13: error[unresolved-attribute] Module `torch` has no member `_foreach_addcdiv_` +torch/optim/rmsprop.py:460:31: error[unresolved-attribute] Module `torch` has no member `_foreach_mul` +torch/optim/rmsprop.py:461:17: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/rmsprop.py:463:17: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/rmsprop.py:470:17: error[unresolved-attribute] Module `torch` has no member `_foreach_div_` +torch/optim/rmsprop.py:471:17: error[unresolved-attribute] Module `torch` has no member `_foreach_addcdiv_` +torch/optim/rmsprop.py:473:17: error[unresolved-attribute] Module `torch` has no member `_foreach_addcdiv_` +torch/optim/rprop.py:73:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/rprop.py:77:30: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/rprop.py:85:28: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/rprop.py:97:21: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/optim/rprop.py:99:26: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/optim/rprop.py:102:33: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/rprop.py:102:67: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/rprop.py:106:42: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/optim/rprop.py:110:42: error[unresolved-attribute] Module `torch` has no member `full_like` +torch/optim/rprop.py:259:12: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/rprop.py:260:20: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/rprop.py:261:20: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/rprop.py:262:21: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/rprop.py:263:25: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/optim/rprop.py:270:24: error[unresolved-attribute] Module `torch` has no member `where` +torch/optim/rprop.py:271:24: error[unresolved-attribute] Module `torch` has no member `where` +torch/optim/rprop.py:272:24: error[unresolved-attribute] Module `torch` has no member `where` +torch/optim/rprop.py:283:41: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/rprop.py:285:24: error[unresolved-attribute] Module `torch` has no member `where` +torch/optim/rprop.py:349:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/rprop.py:350:38: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/rprop.py:353:13: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/rprop.py:361:17: error[unresolved-attribute] Module `torch` has no member `_foreach_mul` +torch/optim/rprop.py:363:13: error[unresolved-attribute] Module `torch` has no member `_foreach_neg_` +torch/optim/rprop.py:368:9: error[unresolved-attribute] Module `torch` has no member `_foreach_copy_` +torch/optim/rprop.py:370:13: error[unresolved-attribute] Module `torch` has no member `_foreach_neg_` +torch/optim/rprop.py:373:9: error[unresolved-attribute] Module `torch` has no member `_foreach_sign_` +torch/optim/rprop.py:376:28: error[unresolved-attribute] Module `torch` has no member `where` +torch/optim/rprop.py:377:28: error[unresolved-attribute] Module `torch` has no member `where` +torch/optim/rprop.py:378:28: error[unresolved-attribute] Module `torch` has no member `where` +torch/optim/rprop.py:386:9: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/rprop.py:395:17: error[unresolved-attribute] Module `torch` has no member `where` +torch/optim/rprop.py:403:9: error[unresolved-attribute] Module `torch` has no member `_foreach_addcmul_` +torch/optim/sgd.py:428:17: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/sgd.py:446:17: error[unresolved-attribute] Module `torch` has no member `_foreach_mul_` +torch/optim/sgd.py:447:17: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/sgd.py:463:17: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/sgd.py:470:30: error[unresolved-attribute] Module `torch` has no member `_foreach_mul` +torch/optim/sgd.py:471:17: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/sgd.py:473:17: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/sgd.py:512:39: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/optim/sgd.py:530:9: error[unresolved-attribute] Module `torch` has no member `_fused_sgd_` +torch/optim/sparse_adam.py:101:44: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/sparse_adam.py:102:46: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/sparse_adam.py:105:47: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/optim/sparse_adam.py:106:46: error[unresolved-attribute] Module `torch` has no member `preserve_format` +torch/optim/swa_utils.py:50:12: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/optim/swa_utils.py:50:58: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/swa_utils.py:53:13: error[unresolved-attribute] Module `torch` has no member `_foreach_lerp_` +torch/optim/swa_utils.py:71:12: error[unresolved-attribute] Module `torch` has no member `is_floating_point` +torch/optim/swa_utils.py:71:63: error[unresolved-attribute] Module `torch` has no member `is_complex` +torch/optim/swa_utils.py:74:13: error[unresolved-attribute] Module `torch` has no member `_foreach_lerp_` +torch/optim/swa_utils.py:80:21: error[unresolved-attribute] Module `torch` has no member `_foreach_sub` +torch/optim/swa_utils.py:82:17: error[unresolved-attribute] Module `torch` has no member `_foreach_addcdiv_` +torch/optim/swa_utils.py:88:17: error[unresolved-attribute] Module `torch` has no member `_foreach_add_` +torch/optim/swa_utils.py:226:37: error[unresolved-attribute] Module `torch` has no member `device` +torch/optim/swa_utils.py:242:27: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/optim/swa_utils.py:242:49: error[unresolved-attribute] Module `torch` has no member `long` +torch/optim/swa_utils.py:244:9: error[unresolved-attribute] Cannot assign object of type `((Tensor, Tensor, Tensor | int, /) -> Tensor) | None` to attribute `avg_fn` on type `Self@__init__` with custom `__setattr__` method. +torch/optim/swa_utils.py:245:9: error[unresolved-attribute] Cannot assign object of type `((tuple[Tensor, ...] | list[Tensor], tuple[Tensor, ...] | list[Tensor], Tensor | int, /) -> None) | None` to attribute `multi_avg_fn` on type `Self@__init__` with custom `__setattr__` method. +torch/optim/swa_utils.py:246:9: error[unresolved-attribute] Cannot assign object of type `Unknown | Literal[False]` to attribute `use_buffers` on type `Self@__init__` with custom `__setattr__` method. +torch/optim/swa_utils.py:333:33: error[unresolved-attribute] Module `torch` has no member `device` +torch/package/package_exporter.py:219:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/package/package_exporter.py:227:25: error[unresolved-attribute] Module `torch._C` has no member `PyTorchFileWriter` +torch/package/package_exporter.py:239:41: error[unresolved-attribute] Module `torch._C` has no member `ScriptModuleSerializer` +torch/package/package_exporter.py:252:41: error[unresolved-attribute] Module `collections` has no member `abc` +torch/package/package_importer.py:88:41: error[unresolved-attribute] Module `torch._C` has no member `PyTorchFileReader` +torch/package/package_importer.py:104:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/package/package_importer.py:107:39: error[unresolved-attribute] Module `torch._C` has no member `PyTorchFileReader` +torch/package/package_importer.py:113:35: error[unresolved-attribute] Module `torch._C` has no member `PyTorchFileReader` +torch/package/package_importer.py:118:31: error[unresolved-attribute] Module `torch._C` has no member `PyTorchFileReader` +torch/package/package_importer.py:120:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_metadata` +torch/package/package_importer.py:231:27: error[unresolved-attribute] Module `torch._C` has no member `DeserializationStorageContext` +torch/package/package_importer.py:242:48: error[unresolved-attribute] Module `torch._C` has no member `PyTorchFileReader` +torch/package/package_importer.py:255:29: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/package/package_importer.py:374:18: error[unresolved-attribute] Module `importlib` has no member `util` +torch/package/package_importer.py:733:1: error[invalid-assignment] Implicit shadowing of function `getfile` +torch/profiler/_memory_profiler.py:11:22: error[unresolved-import] Module `torch._C` has no member `FunctionSchema` +torch/profiler/_memory_profiler.py:67:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/profiler/_memory_profiler.py:116:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/profiler/_memory_profiler.py:156:13: warning[possibly-missing-attribute] Attribute `scope` may be missing on object of type `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:173:16: warning[possibly-missing-attribute] Attribute `module` may be missing on object of type `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:173:47: warning[possibly-missing-attribute] Attribute `optimizer` may be missing on object of type `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:174:12: warning[possibly-missing-attribute] Attribute `module` may be missing on object of type `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:175:33: warning[possibly-missing-attribute] Attribute `module` may be missing on object of type `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:178:12: warning[possibly-missing-attribute] Attribute `optimizer` may be missing on object of type `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:179:33: warning[possibly-missing-attribute] Attribute `optimizer` may be missing on object of type `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:201:27: warning[possibly-missing-attribute] Attribute `scope` may be missing on object of type `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:266:36: error[unresolved-attribute] Module `torch._C` has no member `OptionalType` +torch/profiler/_memory_profiler.py:270:36: error[unresolved-attribute] Module `torch._C` has no member `AnyType` +torch/profiler/_memory_profiler.py:273:36: error[unresolved-attribute] Module `torch._C` has no member `ListType` +torch/profiler/_memory_profiler.py:279:14: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/profiler/_memory_profiler.py:280:14: error[unresolved-attribute] Module `torch._C` has no member `NoneType` +torch/profiler/_memory_profiler.py:281:14: error[unresolved-attribute] Module `torch._C` has no member `BoolType` +torch/profiler/_memory_profiler.py:282:14: error[unresolved-attribute] Module `torch._C` has no member `IntType` +torch/profiler/_memory_profiler.py:283:14: error[unresolved-attribute] Module `torch._C` has no member `FloatType` +torch/profiler/_memory_profiler.py:284:14: error[unresolved-attribute] Module `torch._C` has no member `ComplexType` +torch/profiler/_memory_profiler.py:285:14: error[unresolved-attribute] Module `torch._C` has no member `NumberType` +torch/profiler/_memory_profiler.py:315:26: error[unresolved-attribute] Module `torch._C` has no member `_jit_get_schemas_for_operator` +torch/profiler/_memory_profiler.py:339:51: error[invalid-argument-type] Argument to function `_flat_tensor_inputs` is incorrect: Expected `_ExtraFields_TorchOp`, found `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:344:24: warning[possibly-missing-attribute] Attribute `module` may be missing on object of type `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:344:55: warning[possibly-missing-attribute] Attribute `optimizer` may be missing on object of type `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:345:20: warning[possibly-missing-attribute] Attribute `module` may be missing on object of type `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:346:41: warning[possibly-missing-attribute] Attribute `module` may be missing on object of type `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:350:20: warning[possibly-missing-attribute] Attribute `optimizer` may be missing on object of type `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:351:45: warning[possibly-missing-attribute] Attribute `optimizer` may be missing on object of type `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:361:49: error[invalid-argument-type] Argument to bound method `from_allocation` is incorrect: Expected `_ExtraFields_Allocation`, found `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:363:36: warning[possibly-missing-attribute] Attribute `alloc_size` may be missing on object of type `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:380:62: error[unresolved-attribute] Module `torch` has no member `strided` +torch/profiler/_memory_profiler.py:585:17: warning[possibly-missing-attribute] Attribute `scope` may be missing on object of type `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:586:53: error[invalid-argument-type] Argument to bound method `match_schemas` is incorrect: Expected `_ExtraFields_TorchOp`, found `_ExtraFields_TorchOp | _ExtraFields_Backend | _ExtraFields_Allocation | ... omitted 4 union elements` +torch/profiler/_memory_profiler.py:678:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/profiler/_memory_profiler.py:683:30: warning[possibly-missing-attribute] Attribute `alloc_size` may be missing on object of type `Unknown | _ExtraFields_TorchOp | _ExtraFields_Backend | ... omitted 5 union elements` +torch/profiler/_memory_profiler.py:687:50: error[invalid-argument-type] Argument to bound method `from_allocation` is incorrect: Expected `_ExtraFields_Allocation`, found `Unknown | _ExtraFields_TorchOp | _ExtraFields_Backend | ... omitted 5 union elements` +torch/profiler/_memory_profiler.py:692:31: warning[possibly-missing-attribute] Attribute `device` may be missing on object of type `Unknown | _ExtraFields_TorchOp | _ExtraFields_Backend | ... omitted 5 union elements` +torch/profiler/_memory_profiler.py:693:39: warning[possibly-missing-attribute] Attribute `ptr` may be missing on object of type `Unknown | _ExtraFields_TorchOp | _ExtraFields_Backend | ... omitted 5 union elements` +torch/profiler/_memory_profiler.py:952:54: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `Key`, found `Unknown | TensorKey | int` +torch/profiler/_memory_profiler.py:952:54: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `int`, found `Unknown | TensorKey | int` +torch/profiler/_memory_profiler.py:962:60: error[invalid-argument-type] Argument to bound method `setdefault_by_version` is incorrect: Expected `TensorKey`, found `Unknown | TensorKey | int` +torch/profiler/_memory_profiler.py:962:60: error[invalid-argument-type] Argument to bound method `setdefault_by_version` is incorrect: Expected `int`, found `Unknown | TensorKey | int` +torch/profiler/_memory_profiler.py:962:60: error[invalid-argument-type] Argument to bound method `setdefault_by_version` is incorrect: Expected `Category`, found `Unknown | TensorKey | int` +torch/profiler/_memory_profiler.py:962:64: error[too-many-positional-arguments] Too many positional arguments to bound method `setdefault_by_version`: expected 4, got 5 +torch/profiler/_memory_profiler.py:966:56: warning[possibly-missing-attribute] Attribute `optimizer` may be missing on object of type `Unknown | _ExtraFields_TorchOp | _ExtraFields_Backend | ... omitted 5 union elements` +torch/profiler/_memory_profiler.py:967:30: warning[possibly-missing-attribute] Attribute `optimizer` may be missing on object of type `Unknown | _ExtraFields_TorchOp | _ExtraFields_Backend | ... omitted 5 union elements` +torch/profiler/_memory_profiler.py:1006:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/profiler/_memory_profiler.py:1074:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/profiler/_memory_profiler.py:1158:16: error[unresolved-import] Cannot resolve imported module `matplotlib.pyplot` +torch/profiler/_memory_profiler.py:1167:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/profiler/_pattern_matcher.py:337:23: error[unresolved-attribute] Module `torch` has no member `randn` +torch/profiler/_pattern_matcher.py:337:66: error[unresolved-attribute] Module `torch` has no member `float32` +torch/profiler/_pattern_matcher.py:338:23: error[unresolved-attribute] Module `torch` has no member `randn` +torch/profiler/_pattern_matcher.py:338:66: error[unresolved-attribute] Module `torch` has no member `float32` +torch/profiler/_pattern_matcher.py:555:26: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/profiler/_pattern_matcher.py:555:42: error[unresolved-attribute] Module `torch` has no member `half` +torch/profiler/_pattern_matcher.py:567:23: error[unresolved-attribute] Module `torch` has no member `randn` +torch/profiler/_pattern_matcher.py:567:66: error[unresolved-attribute] Module `torch` has no member `float16` +torch/profiler/_pattern_matcher.py:568:23: error[unresolved-attribute] Module `torch` has no member `randn` +torch/profiler/_pattern_matcher.py:568:66: error[unresolved-attribute] Module `torch` has no member `float16` +torch/profiler/_pattern_matcher.py:573:23: error[unresolved-attribute] Module `torch` has no member `randn` +torch/profiler/_pattern_matcher.py:574:69: error[unresolved-attribute] Module `torch` has no member `float16` +torch/profiler/_pattern_matcher.py:576:23: error[unresolved-attribute] Module `torch` has no member `randn` +torch/profiler/_pattern_matcher.py:577:69: error[unresolved-attribute] Module `torch` has no member `float16` +torch/profiler/_utils.py:213:30: error[call-non-callable] Object of type `object` is not callable +torch/profiler/_utils.py:215:29: error[call-non-callable] Object of type `object` is not callable +torch/profiler/_utils.py:215:48: warning[possibly-missing-attribute] Attribute `duration_us` may be missing on object of type `(Unknown & ) | (_KinetoEvent & )` +torch/profiler/_utils.py:323:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/profiler/_utils.py:325:23: error[unresolved-attribute] Module `torch` has no member `float32` +torch/profiler/_utils.py:327:25: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/profiler/_utils.py:329:23: error[unresolved-attribute] Module `torch` has no member `float32` +torch/profiler/_utils.py:331:44: error[unresolved-attribute] Module `torch` has no member `mean` +torch/profiler/_utils.py:331:69: error[unresolved-attribute] Module `torch` has no member `std` +torch/profiler/_utils.py:332:44: error[unresolved-attribute] Module `torch` has no member `mean` +torch/profiler/_utils.py:332:69: error[unresolved-attribute] Module `torch` has no member `std` +torch/profiler/profiler.py:17:22: error[unresolved-import] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/profiler/profiler.py:382:43: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/profiler/profiler.py:385:19: warning[possibly-missing-attribute] Member `get_backend` may be missing on module `torch.distributed` +torch/profiler/profiler.py:388:21: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/profiler/profiler.py:389:27: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/profiler/profiler.py:390:25: warning[possibly-missing-attribute] Member `get_pg_count` may be missing on module `torch.distributed` +torch/profiler/profiler.py:391:26: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/profiler/profiler.py:394:28: error[unresolved-attribute] Module `torch.cuda` has no member `nccl` +torch/profiler/profiler.py:1157:17: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/profiler/profiler.py:1159:30: warning[possibly-missing-attribute] Member `distributed_c10d` may be missing on module `torch.distributed` +torch/profiler/python_tracer.py:14:28: error[no-matching-overload] No overload of function `dirname` matches arguments +torch/quantization/_quantized_conversions.py:11:28: error[unresolved-attribute] Module `torch` has no member `int8` +torch/quantization/_quantized_conversions.py:20:28: error[unresolved-attribute] Module `torch` has no member `int8` +torch/quantization/_quantized_conversions.py:21:12: error[unresolved-attribute] Module `torch` has no member `stack` +torch/quantization/_quantized_conversions.py:33:28: error[unresolved-attribute] Module `torch` has no member `int8` +torch/quantization/_quantized_conversions.py:34:22: error[unresolved-attribute] Module `torch` has no member `int8` +torch/quantization/_quantized_conversions.py:34:46: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/quantization/_quantized_conversions.py:41:22: error[unresolved-attribute] Module `torch` has no member `int8` +torch/quantization/_quantized_conversions.py:43:24: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/quantization/_quantized_conversions.py:44:70: error[unresolved-attribute] Module `torch` has no member `int8` +torch/quantization/_quantized_conversions.py:49:37: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/quantization/_quantized_conversions.py:54:18: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/quantization/_quantized_conversions.py:56:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/quantization/_quantized_conversions.py:60:16: error[unresolved-attribute] Module `torch` has no member `arange` +torch/quantization/_quantized_conversions.py:66:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/quantization/_quantized_conversions.py:70:16: error[unresolved-attribute] Module `torch` has no member `arange` +torch/quantization/_quantized_conversions.py:78:29: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/quantization/_quantized_conversions.py:82:10: error[unresolved-attribute] Module `torch` has no member `arange` +torch/quantization/_quantized_conversions.py:88:10: error[unresolved-attribute] Module `torch` has no member `arange` +torch/quantization/_quantized_conversions.py:95:10: error[unresolved-attribute] Module `torch` has no member `arange` +torch/quantization/_quantized_conversions.py:101:12: error[unresolved-attribute] Module `torch` has no member `arange` +torch/quantization/_quantized_conversions.py:105:30: error[unresolved-attribute] Module `torch` has no member `int32` +torch/quantization/_quantized_conversions.py:106:12: error[unresolved-attribute] Module `torch` has no member `zeros_like` +torch/quantization/_quantized_conversions.py:113:12: error[unresolved-attribute] Module `torch` has no member `empty_like` +torch/quantization/_quantized_conversions.py:114:18: error[unresolved-attribute] Module `torch` has no member `int8` +torch/quantization/_quantized_conversions.py:115:23: error[unresolved-attribute] Module `torch` has no member `int` +torch/quantization/_quantized_conversions.py:120:20: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/quantization/_quantized_conversions.py:130:18: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/quantization/_quantized_conversions.py:134:41: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/quantization/qconfig.py:30:5: warning[deprecated] The class `QConfigDynamic` is deprecated: `QConfigDynamic` is going to be deprecated in PyTorch 1.12, please use `QConfig` instead +torch/quantization/quantize.py:22:5: warning[deprecated] The function `convert` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/quantization/quantize.py:23:5: warning[deprecated] The function `prepare` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/quantization/quantize.py:24:5: warning[deprecated] The function `prepare_qat` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/quantization/quantize.py:26:5: warning[deprecated] The function `quantize` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/quantization/quantize.py:27:5: warning[deprecated] The function `quantize_dynamic` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/quantization/quantize.py:28:5: warning[deprecated] The function `quantize_qat` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/quantization/quantize_fx.py:19:5: warning[deprecated] The function `convert_fx` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/quantization/quantize_fx.py:21:5: warning[deprecated] The function `prepare_fx` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/quantization/quantize_fx.py:22:5: warning[deprecated] The function `prepare_qat_fx` is deprecated: torch.ao.quantization is deprecated and will be removed in 2.10. +For migrations of users: +1. Eager mode quantization (torch.ao.quantization.quantize, torch.ao.quantization.quantize_dynamic), please migrate to use torchao eager mode quantize_ API instead +2. FX graph mode quantization (torch.ao.quantization.quantize_fx.prepare_fx,torch.ao.quantization.quantize_fx.convert_fx, please migrate to use torchao pt2e quantization API instead (prepare_pt2e, convert_pt2e) +3. pt2e quantization has been migrated to torchao (https://github.com/pytorch/ao/tree/main/torchao/quantization/pt2e) +see https://github.com/pytorch/ao/issues/2259 for more details +torch/quasirandom.py:62:15: error[unresolved-attribute] Module `torch` has no member `device` +torch/quasirandom.py:64:27: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/quasirandom.py:65:55: error[unresolved-attribute] Module `torch` has no member `long` +torch/quasirandom.py:67:9: error[unresolved-attribute] Module `torch` has no member `_sobol_engine_initialize_state_` +torch/quasirandom.py:70:26: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/quasirandom.py:70:72: error[unresolved-attribute] Module `torch` has no member `long` +torch/quasirandom.py:74:53: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/quasirandom.py:82:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/quasirandom.py:98:21: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/quasirandom.py:104:38: error[unresolved-attribute] Module `torch` has no member `_sobol_engine_draw` +torch/quasirandom.py:112:26: error[unresolved-attribute] Module `torch` has no member `cat` +torch/quasirandom.py:114:34: error[unresolved-attribute] Module `torch` has no member `_sobol_engine_draw` +torch/quasirandom.py:135:25: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/quasirandom.py:179:13: error[unresolved-attribute] Module `torch` has no member `_sobol_engine_ff_` +torch/quasirandom.py:183:13: error[unresolved-attribute] Module `torch` has no member `_sobol_engine_ff_` +torch/quasirandom.py:190:21: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/quasirandom.py:192:17: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/quasirandom.py:195:15: error[unresolved-attribute] Module `torch` has no member `device` +torch/quasirandom.py:198:22: error[unresolved-attribute] Module `torch` has no member `randint` +torch/quasirandom.py:201:22: error[unresolved-attribute] Module `torch` has no member `mv` +torch/quasirandom.py:202:25: error[unresolved-attribute] Module `torch` has no member `pow` +torch/quasirandom.py:202:38: error[unresolved-attribute] Module `torch` has no member `arange` +torch/quasirandom.py:207:15: error[unresolved-attribute] Module `torch` has no member `randint` +torch/quasirandom.py:209:9: error[unresolved-attribute] Module `torch` has no member `_sobol_engine_scramble_` +torch/random.py:7:22: error[unresolved-import] Module `torch._C` has no member `default_generator` +torch/random.py:32:26: error[unresolved-attribute] Module `torch._C` has no member `Generator` +torch/random.py:45:60: error[unresolved-attribute] Module `torch._C` has no member `Generator` +torch/random.py:101:27: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/random.py:158:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/serialization.py:70:46: error[unresolved-attribute] Module `torch` has no member `device` +torch/serialization.py:553:24: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/serialization.py:604:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/serialization.py:606:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/serialization.py:638:24: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/serialization.py:768:27: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str | PathLike[str]`, found `str | PathLike[str] | (IO[bytes] & PathLike[object])` +torch/serialization.py:778:36: error[unresolved-attribute] Module `torch._C` has no member `PyTorchFileReader` +torch/serialization.py:780:26: error[unresolved-attribute] Module `torch._C` has no member `PyTorchFileReader` +torch/serialization.py:783:41: error[unresolved-attribute] Module `torch._C` has no member `PyTorchFileWriter` +torch/serialization.py:796:17: error[unresolved-attribute] Module `torch._C` has no member `PyTorchFileWriter` +torch/serialization.py:802:17: error[unresolved-attribute] Module `torch._C` has no member `PyTorchFileWriter` +torch/serialization.py:813:43: error[unresolved-attribute] Module `torch._C` has no member `PyTorchFileWriter` +torch/serialization.py:822:13: error[unresolved-attribute] Module `torch._C` has no member `PyTorchFileWriter` +torch/serialization.py:968:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/serialization.py:999:64: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/serialization.py:1005:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/serialization.py:1047:33: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/serialization.py:1049:25: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/serialization.py:1171:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/serialization.py:1191:33: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/serialization.py:1277:35: error[unresolved-attribute] Module `torch` has no member `empty` +torch/serialization.py:1278:42: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/serialization.py:1414:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/serialization.py:1528:44: error[invalid-argument-type] Argument to function `getsize` is incorrect: Expected `int | str | bytes | PathLike[str] | PathLike[bytes]`, found `str | PathLike[str] | (IO[bytes] & PathLike[object])` +torch/serialization.py:1585:30: error[unresolved-attribute] Module `torch` has no member `layout` +torch/serialization.py:1592:16: error[unresolved-attribute] Module `torch` has no member `layout` +torch/serialization.py:1728:30: error[unresolved-attribute] Module `torch` has no member `empty` +torch/serialization.py:1759:20: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/serialization.py:1836:8: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/serialization.py:1881:35: error[unresolved-attribute] Module `torch` has no member `device` +torch/serialization.py:2025:12: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/serialization.py:2072:12: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/serialization.py:2099:21: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/serialization.py:2147:5: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_metadata` +torch/signal/windows/windows.py:64:40: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/signal/windows/windows.py:64:61: error[unresolved-attribute] Module `torch` has no member `layout` +torch/signal/windows/windows.py:79:22: error[unresolved-attribute] Module `torch` has no member `strided` +torch/signal/windows/windows.py:83:22: error[unresolved-attribute] Module `torch` has no member `float32` +torch/signal/windows/windows.py:83:37: error[unresolved-attribute] Module `torch` has no member `float64` +torch/signal/windows/windows.py:139:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/signal/windows/windows.py:140:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/signal/windows/windows.py:140:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/signal/windows/windows.py:141:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/signal/windows/windows.py:145:17: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/signal/windows/windows.py:156:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/signal/windows/windows.py:165:9: error[unresolved-attribute] Module `torch` has no member `linspace` +torch/signal/windows/windows.py:175:12: error[unresolved-attribute] Module `torch` has no member `exp` +torch/signal/windows/windows.py:175:23: error[unresolved-attribute] Module `torch` has no member `abs` +torch/signal/windows/windows.py:223:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/signal/windows/windows.py:224:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/signal/windows/windows.py:224:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/signal/windows/windows.py:225:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/signal/windows/windows.py:229:17: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/signal/windows/windows.py:234:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/signal/windows/windows.py:241:9: error[unresolved-attribute] Module `torch` has no member `linspace` +torch/signal/windows/windows.py:251:12: error[unresolved-attribute] Module `torch` has no member `sin` +torch/signal/windows/windows.py:297:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/signal/windows/windows.py:298:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/signal/windows/windows.py:298:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/signal/windows/windows.py:299:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/signal/windows/windows.py:303:17: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/signal/windows/windows.py:311:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/signal/windows/windows.py:319:9: error[unresolved-attribute] Module `torch` has no member `linspace` +torch/signal/windows/windows.py:329:12: error[unresolved-attribute] Module `torch` has no member `exp` +torch/signal/windows/windows.py:376:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/signal/windows/windows.py:377:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/signal/windows/windows.py:377:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/signal/windows/windows.py:378:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/signal/windows/windows.py:382:17: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/signal/windows/windows.py:390:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/signal/windows/windows.py:395:16: error[unresolved-attribute] Module `torch` has no member `ones` +torch/signal/windows/windows.py:401:12: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/signal/windows/windows.py:405:11: error[unresolved-attribute] Module `torch` has no member `minimum` +torch/signal/windows/windows.py:412:9: error[unresolved-attribute] Module `torch` has no member `linspace` +torch/signal/windows/windows.py:422:12: error[unresolved-attribute] Module `torch` has no member `i0` +torch/signal/windows/windows.py:422:21: error[unresolved-attribute] Module `torch` has no member `sqrt` +torch/signal/windows/windows.py:422:46: error[unresolved-attribute] Module `torch` has no member `pow` +torch/signal/windows/windows.py:422:66: error[unresolved-attribute] Module `torch` has no member `i0` +torch/signal/windows/windows.py:468:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/signal/windows/windows.py:469:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/signal/windows/windows.py:469:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/signal/windows/windows.py:470:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/signal/windows/windows.py:522:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/signal/windows/windows.py:523:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/signal/windows/windows.py:523:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/signal/windows/windows.py:524:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/signal/windows/windows.py:576:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/signal/windows/windows.py:577:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/signal/windows/windows.py:577:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/signal/windows/windows.py:578:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/signal/windows/windows.py:582:17: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/signal/windows/windows.py:637:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/signal/windows/windows.py:638:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/signal/windows/windows.py:638:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/signal/windows/windows.py:639:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/signal/windows/windows.py:643:17: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/signal/windows/windows.py:648:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/signal/windows/windows.py:653:16: error[unresolved-attribute] Module `torch` has no member `ones` +torch/signal/windows/windows.py:660:9: error[unresolved-attribute] Module `torch` has no member `linspace` +torch/signal/windows/windows.py:670:16: error[unresolved-attribute] Module `torch` has no member `abs` +torch/signal/windows/windows.py:713:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/signal/windows/windows.py:714:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/signal/windows/windows.py:714:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/signal/windows/windows.py:715:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/signal/windows/windows.py:719:17: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/signal/windows/windows.py:724:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/signal/windows/windows.py:729:16: error[unresolved-attribute] Module `torch` has no member `ones` +torch/signal/windows/windows.py:741:9: error[unresolved-attribute] Module `torch` has no member `linspace` +torch/signal/windows/windows.py:751:11: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/signal/windows/windows.py:757:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/signal/windows/windows.py:763:33: error[unresolved-attribute] Module `torch` has no member `cos` +torch/signal/windows/windows.py:806:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/signal/windows/windows.py:807:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/signal/windows/windows.py:807:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/signal/windows/windows.py:808:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/signal/windows/windows.py:870:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/signal/windows/windows.py:871:13: error[unresolved-attribute] Module `torch` has no member `layout` +torch/signal/windows/windows.py:871:28: error[unresolved-attribute] Module `torch` has no member `strided` +torch/signal/windows/windows.py:872:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/sparse/__init__.py:260:20: error[unresolved-attribute] Module `torch` has no member `_sparse_sum` +torch/sparse/__init__.py:262:20: error[unresolved-attribute] Module `torch` has no member `_sparse_sum` +torch/sparse/__init__.py:265:20: error[unresolved-attribute] Module `torch` has no member `_sparse_sum` +torch/sparse/__init__.py:267:20: error[unresolved-attribute] Module `torch` has no member `_sparse_sum` +torch/sparse/__init__.py:491:16: error[unresolved-attribute] Module `torch._C` has no member `_check_sparse_tensor_invariants` +torch/sparse/__init__.py:511:9: error[unresolved-attribute] Module `torch._C` has no member `_set_check_sparse_tensor_invariants` +torch/sparse/__init__.py:519:9: error[unresolved-attribute] Module `torch._C` has no member `_set_check_sparse_tensor_invariants` +torch/sparse/__init__.py:533:9: error[unresolved-attribute] Module `torch._C` has no member `_set_check_sparse_tensor_invariants` +torch/sparse/__init__.py:537:9: error[unresolved-attribute] Module `torch._C` has no member `_set_check_sparse_tensor_invariants` +torch/sparse/__init__.py:579:13: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/sparse/__init__.py:580:13: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/sparse/__init__.py:581:13: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/sparse/__init__.py:582:13: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/sparse/__init__.py:583:13: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/sparse/__init__.py:586:13: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/sparse/__init__.py:587:13: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/sparse/__init__.py:588:13: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/sparse/__init__.py:589:13: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/sparse/__init__.py:591:33: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/sparse/__init__.py:591:51: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/sparse/__init__.py:617:37: error[unresolved-attribute] Module `torch` has no member `ones` +torch/sparse/__init__.py:618:65: error[unresolved-attribute] Module `torch` has no member `bool` +torch/sparse/__init__.py:625:38: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/sparse/__init__.py:631:41: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/sparse/__init__.py:631:59: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/sparse/__init__.py:660:39: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/sparse/__init__.py:661:29: error[unresolved-attribute] Module `torch` has no member `sparse_coo_tensor` +torch/sparse/__init__.py:668:29: error[unresolved-attribute] Module `torch` has no member `sparse_compressed_tensor` +torch/sparse/_semi_structured_conversions.py:21:16: error[unresolved-attribute] Module `torch` has no member `arange` +torch/sparse/_semi_structured_conversions.py:22:16: error[unresolved-attribute] Module `torch` has no member `arange` +torch/sparse/_semi_structured_conversions.py:33:63: error[unresolved-attribute] Module `torch` has no member `int8` +torch/sparse/_semi_structured_conversions.py:34:65: error[unresolved-attribute] Module `torch` has no member `int8` +torch/sparse/_semi_structured_conversions.py:61:18: error[unresolved-attribute] Module `torch` has no member `int8` +torch/sparse/_semi_structured_conversions.py:62:23: error[unresolved-attribute] Module `torch` has no member `int8` +torch/sparse/_semi_structured_conversions.py:63:22: error[unresolved-attribute] Module `torch` has no member `int32` +torch/sparse/_semi_structured_conversions.py:64:26: error[unresolved-attribute] Module `torch` has no member `half` +torch/sparse/_semi_structured_conversions.py:64:38: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/sparse/_semi_structured_conversions.py:64:54: error[unresolved-attribute] Module `torch` has no member `float` +torch/sparse/_semi_structured_conversions.py:65:22: error[unresolved-attribute] Module `torch` has no member `int16` +torch/sparse/_semi_structured_conversions.py:72:22: error[unresolved-attribute] Module `torch` has no member `int32` +torch/sparse/_semi_structured_conversions.py:87:23: error[unresolved-attribute] Module `torch` has no member `float` +torch/sparse/_semi_structured_conversions.py:138:29: error[unresolved-attribute] Module `torch` has no member `int64` +torch/sparse/_semi_structured_conversions.py:139:29: error[unresolved-attribute] Module `torch` has no member `int64` +torch/sparse/_semi_structured_conversions.py:141:23: error[unresolved-attribute] Module `torch` has no member `float` +torch/sparse/_semi_structured_conversions.py:145:18: error[unresolved-attribute] Module `torch` has no member `stack` +torch/sparse/_semi_structured_conversions.py:207:27: error[unresolved-attribute] Module `torch` has no member `int16` +torch/sparse/_semi_structured_conversions.py:207:40: error[unresolved-attribute] Module `torch` has no member `int32` +torch/sparse/_semi_structured_conversions.py:211:24: error[unresolved-attribute] Module `torch` has no member `float` +torch/sparse/_semi_structured_conversions.py:231:12: error[unresolved-attribute] Module `torch` has no member `gather` +torch/sparse/_semi_structured_conversions.py:240:14: error[unresolved-attribute] Module `torch` has no member `empty` +torch/sparse/_semi_structured_conversions.py:273:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/sparse/_semi_structured_conversions.py:276:13: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/sparse/_semi_structured_conversions.py:277:24: error[unresolved-attribute] Module `torch` has no member `float` +torch/sparse/_semi_structured_conversions.py:280:20: error[unresolved-attribute] Module `torch` has no member `half` +torch/sparse/_semi_structured_conversions.py:281:43: error[unresolved-attribute] Module `torch` has no member `half` +torch/sparse/_semi_structured_conversions.py:323:35: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/sparse/_semi_structured_conversions.py:352:26: error[unresolved-attribute] Module `torch` has no member `arange` +torch/sparse/_semi_structured_conversions.py:352:48: error[unresolved-attribute] Module `torch` has no member `float` +torch/sparse/_semi_structured_conversions.py:355:42: error[unresolved-attribute] Module `torch` has no member `float` +torch/sparse/_semi_structured_conversions.py:356:10: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/sparse/_semi_structured_ops.py:23:13: error[unresolved-attribute] Module `torch._C` has no member `_DisableTorchDispatch` +torch/sparse/_semi_structured_ops.py:37:9: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/sparse/_semi_structured_ops.py:50:9: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/sparse/_semi_structured_ops.py:57:30: error[unresolved-attribute] Module `torch` has no member `int32` +torch/sparse/_semi_structured_ops.py:57:56: error[unresolved-attribute] Module `torch` has no member `int32` +torch/sparse/_semi_structured_ops.py:57:73: error[unresolved-attribute] Module `torch` has no member `int16` +torch/sparse/_semi_structured_ops.py:64:12: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/sparse/_semi_structured_ops.py:72:9: error[unresolved-attribute] Module `torch` has no member `Size` +torch/sparse/_semi_structured_ops.py:82:35: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/sparse/_semi_structured_ops.py:83:27: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/sparse/_semi_structured_ops.py:89:5: error[invalid-assignment] Not enough values to unpack: Expected 2 +torch/sparse/_semi_structured_ops.py:115:5: error[invalid-assignment] Not enough values to unpack: Expected 2 +torch/sparse/_semi_structured_ops.py:136:5: error[invalid-assignment] Not enough values to unpack: Expected 3 +torch/sparse/_semi_structured_ops.py:159:5: error[invalid-assignment] Not enough values to unpack: Expected 2 +torch/sparse/_semi_structured_ops.py:160:12: error[index-out-of-bounds] Index 2 is out of bounds for tuple `tuple[()]` with length 0 +torch/sparse/_semi_structured_ops.py:179:5: error[invalid-assignment] Not enough values to unpack: Expected 7 +torch/sparse/_semi_structured_ops.py:181:23: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/sparse/_semi_structured_ops.py:182:23: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/sparse/_semi_structured_ops.py:188:29: error[unresolved-attribute] Module `torch` has no member `float32` +torch/sparse/_semi_structured_ops.py:188:64: error[unresolved-attribute] Module `torch` has no member `float32` +torch/sparse/_semi_structured_ops.py:192:21: error[unresolved-attribute] Module `torch` has no member `_cslt_sparse_mm` +torch/sparse/_triton_ops.py:27:21: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/sparse/_triton_ops.py:60:14: error[unresolved-attribute] Module `torch` has no member `half` +torch/sparse/_triton_ops.py:60:26: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/sparse/_triton_ops.py:60:42: error[unresolved-attribute] Module `torch` has no member `float` +torch/sparse/_triton_ops.py:228:12: error[unresolved-attribute] Module `torch` has no member `sparse_compressed_tensor` +torch/sparse/_triton_ops.py:375:28: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/sparse/_triton_ops.py:407:28: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/sparse/_triton_ops.py:457:28: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/sparse/_triton_ops.py:483:25: error[unresolved-attribute] Module `torch` has no member `empty` +torch/sparse/_triton_ops.py:522:25: error[unresolved-attribute] Module `torch` has no member `float16` +torch/sparse/_triton_ops.py:762:17: error[unresolved-attribute] Module `torch` has no member `float16` +torch/sparse/_triton_ops.py:883:26: error[unresolved-attribute] Module `torch` has no member `strided` +torch/sparse/_triton_ops.py:885:29: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/sparse/_triton_ops.py:885:47: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/sparse/_triton_ops.py:890:29: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/sparse/_triton_ops.py:890:47: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/sparse/_triton_ops.py:925:21: error[unresolved-attribute] Module `torch` has no member `int32` +torch/sparse/_triton_ops.py:930:13: error[unresolved-attribute] Module `torch` has no member `arange` +torch/sparse/_triton_ops.py:940:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/sparse/_triton_ops.py:956:13: error[unresolved-attribute] Module `torch` has no member `arange` +torch/sparse/_triton_ops.py:963:17: error[unresolved-attribute] Module `torch` has no member `arange` +torch/sparse/_triton_ops.py:969:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/sparse/_triton_ops.py:974:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/sparse/_triton_ops.py:977:17: error[unresolved-attribute] Module `torch` has no member `cumsum` +torch/sparse/_triton_ops.py:983:21: error[unresolved-attribute] Module `torch` has no member `cat` +torch/sparse/_triton_ops.py:1004:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/sparse/_triton_ops.py:1005:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/sparse/_triton_ops.py:1031:46: error[unresolved-attribute] Module `torch` has no member `float16` +torch/sparse/_triton_ops.py:1031:61: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/sparse/_triton_ops.py:1064:15: error[unresolved-attribute] Module `torch` has no member `empty` +torch/sparse/_triton_ops.py:1077:24: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/sparse/_triton_ops.py:1132:39: error[unresolved-attribute] Module `torch` has no member `int8` +torch/sparse/_triton_ops.py:1139:15: error[unresolved-attribute] Module `torch` has no member `empty` +torch/sparse/_triton_ops.py:1141:19: error[unresolved-attribute] Module `torch` has no member `int32` +torch/sparse/_triton_ops.py:1269:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/sparse/_triton_ops.py:1270:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/sparse/_triton_ops.py:1271:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/sparse/_triton_ops.py:1272:9: error[unresolved-attribute] Module `torch` has no member `float64` +torch/sparse/_triton_ops.py:1273:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/sparse/_triton_ops.py:1274:9: error[unresolved-attribute] Module `torch` has no member `int32` +torch/sparse/_triton_ops.py:1302:9: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/sparse/_triton_ops.py:1341:12: error[unresolved-import] Cannot resolve imported module `triton` +torch/sparse/_triton_ops.py:1342:12: error[unresolved-import] Cannot resolve imported module `triton.language` +torch/sparse/_triton_ops.py:1633:29: error[unresolved-attribute] Module `torch` has no member `half` +torch/sparse/_triton_ops.py:1633:41: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/sparse/_triton_ops.py:1681:47: error[unresolved-attribute] Module `torch` has no member `bool` +torch/sparse/_triton_ops.py:1686:35: error[unresolved-attribute] Module `torch` has no member `bool` +torch/sparse/_triton_ops.py:1763:52: error[unresolved-attribute] Module `torch` has no member `int8` +torch/sparse/_triton_ops.py:1957:16: error[unresolved-attribute] Module `torch` has no member `sparse_compressed_tensor` +torch/sparse/_triton_ops.py:1980:33: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/sparse/_triton_ops.py:1982:41: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/sparse/_triton_ops.py:1992:35: error[unresolved-attribute] Module `torch` has no member `bool` +torch/sparse/_triton_ops.py:1996:16: error[call-non-callable] Object of type `None` is not callable +torch/sparse/_triton_ops.py:2008:16: error[call-non-callable] Object of type `None` is not callable +torch/sparse/_triton_ops.py:2011:16: error[call-non-callable] Object of type `None` is not callable +torch/sparse/_triton_ops.py:2107:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/sparse/_triton_ops.py:2108:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/sparse/_triton_ops.py:2109:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/sparse/_triton_ops.py:2110:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/sparse/_triton_ops.py:2284:13: error[unresolved-attribute] Module `torch` has no member `float16` +torch/sparse/_triton_ops.py:2285:13: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/sparse/_triton_ops.py:2286:13: error[unresolved-attribute] Module `torch` has no member `float32` +torch/sparse/_triton_ops.py:2287:13: error[unresolved-attribute] Module `torch` has no member `float64` +torch/sparse/_triton_ops_meta.py:114:53: error[unresolved-attribute] Module `torch` has no member `float16` +torch/sparse/_triton_ops_meta.py:236:44: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/sparse/_triton_ops_meta.py:381:21: error[unsupported-operator] Operator `+=` is unsupported between objects of type `None` and `int` +torch/sparse/_triton_ops_meta.py:453:9: error[unresolved-attribute] Module `torch` has no member `bernoulli` +torch/sparse/_triton_ops_meta.py:454:9: error[unresolved-attribute] Module `torch` has no member `full` +torch/sparse/_triton_ops_meta.py:454:47: error[unresolved-attribute] Module `torch` has no member `float32` +torch/sparse/_triton_ops_meta.py:460:29: error[unresolved-attribute] Module `torch` has no member `randperm` +torch/sparse/_triton_ops_meta.py:464:26: error[unresolved-attribute] Module `torch` has no member `randperm` +torch/sparse/_triton_ops_meta.py:468:9: error[unresolved-attribute] Module `torch` has no member `repeat_interleave` +torch/sparse/_triton_ops_meta.py:469:9: error[unresolved-attribute] Module `torch` has no member `repeat_interleave` +torch/sparse/_triton_ops_meta.py:474:28: error[unresolved-attribute] Module `torch` has no member `float16` +torch/sparse/_triton_ops_meta.py:476:12: error[unresolved-import] Cannot resolve imported module `triton` +torch/sparse/_triton_ops_meta.py:559:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/sparse/_triton_ops_meta.py:560:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/sparse/_triton_ops_meta.py:561:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/sparse/_triton_ops_meta.py:562:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/sparse/_triton_ops_meta.py:563:14: error[unresolved-attribute] Module `torch` has no member `float32` +torch/sparse/_triton_ops_meta.py:629:12: error[unresolved-import] Cannot resolve imported module `triton` +torch/sparse/_triton_ops_meta.py:760:11: error[unresolved-attribute] Module `torch` has no member `float16` +torch/sparse/_triton_ops_meta.py:798:46: error[unresolved-attribute] Module `torch` has no member `float16` +torch/sparse/_triton_ops_meta.py:819:17: error[unresolved-attribute] Module `torch` has no member `int8` +torch/sparse/_triton_ops_meta.py:962:59: error[unresolved-attribute] Module `torch` has no member `int8` +torch/sparse/_triton_ops_meta.py:2182:59: error[unresolved-attribute] Module `torch` has no member `int8` +torch/sparse/_triton_ops_meta.py:2244:59: error[unresolved-attribute] Module `torch` has no member `int8` +torch/sparse/_triton_ops_meta.py:2268:54: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/sparse/_triton_ops_meta.py:3658:54: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/sparse/_triton_ops_meta.py:3700:54: error[unresolved-attribute] Module `torch` has no member `float16` +torch/sparse/_triton_ops_meta.py:5409:54: error[unresolved-attribute] Module `torch` has no member `float16` +torch/sparse/_triton_ops_meta.py:5451:54: error[unresolved-attribute] Module `torch` has no member `float32` +torch/sparse/_triton_ops_meta.py:6845:54: error[unresolved-attribute] Module `torch` has no member `float32` +torch/sparse/_triton_ops_meta.py:6887:54: error[unresolved-attribute] Module `torch` has no member `int8` +torch/sparse/_triton_ops_meta.py:6905:49: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/sparse/_triton_ops_meta.py:7187:49: error[unresolved-attribute] Module `torch` has no member `float16` +torch/sparse/_triton_ops_meta.py:7477:49: error[unresolved-attribute] Module `torch` has no member `float32` +torch/sparse/_triton_ops_meta.py:7763:19: error[unresolved-attribute] Module `torch` has no member `int8` +torch/sparse/_triton_ops_meta.py:7766:19: error[unresolved-attribute] Module `torch` has no member `float16` +torch/sparse/_triton_ops_meta.py:7766:34: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/sparse/_triton_ops_meta.py:7766:50: error[unresolved-attribute] Module `torch` has no member `float32` +torch/sparse/_triton_ops_meta.py:7766:65: error[unresolved-attribute] Module `torch` has no member `int8` +torch/sparse/semi_structured.py:58:36: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/sparse/semi_structured.py:79:16: error[unresolved-attribute] Module `torch` has no member `Size` +torch/sparse/semi_structured.py:167:33: error[unresolved-attribute] Module `torch` has no member `Size` +torch/sparse/semi_structured.py:183:28: error[unresolved-attribute] Module `torch` has no member `Size` +torch/sparse/semi_structured.py:299:57: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[0], Unknown | Literal[0], Literal[0], Unknown | Literal[0]]` +torch/sparse/semi_structured.py:305:16: error[unresolved-attribute] Module `torch` has no member `mm` +torch/sparse/semi_structured.py:305:31: error[unresolved-attribute] Module `torch` has no member `eye` +torch/sparse/semi_structured.py:403:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/sparse/semi_structured.py:404:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/sparse/semi_structured.py:405:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/sparse/semi_structured.py:406:9: error[unresolved-attribute] Module `torch` has no member `float32` +torch/sparse/semi_structured.py:501:13: error[unresolved-attribute] Module `torch` has no member `_sparse_semi_structured_tile` +torch/sparse/semi_structured.py:534:23: error[unresolved-attribute] Module `torch` has no member `_sparse_semi_structured_mm` +torch/sparse/semi_structured.py:536:23: error[unresolved-attribute] Module `torch` has no member `_sparse_semi_structured_addmm` +torch/sparse/semi_structured.py:556:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/sparse/semi_structured.py:557:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/sparse/semi_structured.py:558:9: error[unresolved-attribute] Module `torch` has no member `float16` +torch/sparse/semi_structured.py:559:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/sparse/semi_structured.py:570:20: error[unresolved-attribute] Module `torch` has no member `_cslt_compress` +torch/sparse/semi_structured.py:625:13: error[unresolved-attribute] Module `torch` has no member `_sparse_semi_structured_tile` +torch/sparse/semi_structured.py:669:26: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/sparse/semi_structured.py:680:19: error[unresolved-attribute] Module `torch` has no member `_cslt_sparse_mm` +torch/storage.py:45:13: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:49:29: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:51:35: error[invalid-type-form] Variable of type `def int(self) -> Unknown` is not allowed in a type expression +torch/storage.py:96:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:96:63: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:111:19: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:111:62: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:276:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/storage.py:279:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/storage.py:279:36: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/storage.py:289:35: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:290:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:295:25: error[unresolved-attribute] Module `torch` has no member `double` +torch/storage.py:299:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/storage.py:303:25: error[unresolved-attribute] Module `torch` has no member `half` +torch/storage.py:307:25: error[unresolved-attribute] Module `torch` has no member `long` +torch/storage.py:311:25: error[unresolved-attribute] Module `torch` has no member `int` +torch/storage.py:315:25: error[unresolved-attribute] Module `torch` has no member `short` +torch/storage.py:319:25: error[unresolved-attribute] Module `torch` has no member `int8` +torch/storage.py:323:25: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/storage.py:327:25: error[unresolved-attribute] Module `torch` has no member `bool` +torch/storage.py:331:25: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/storage.py:335:25: error[unresolved-attribute] Module `torch` has no member `cdouble` +torch/storage.py:339:25: error[unresolved-attribute] Module `torch` has no member `cfloat` +torch/storage.py:343:25: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/storage.py:347:25: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/storage.py:351:25: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/storage.py:355:25: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/storage.py:357:44: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:368:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/storage.py:368:36: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/storage.py:373:45: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:387:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/storage.py:387:36: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/storage.py:397:41: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/storage.py:410:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:411:36: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/storage.py:466:22: error[unresolved-attribute] Module `torch._C` has no member `StorageBase` +torch/storage.py:542:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/storage.py:543:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/storage.py:544:9: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/storage.py:545:9: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/storage.py:546:9: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/storage.py:547:9: error[unresolved-attribute] Module `torch` has no member `float4_e2m1fn_x2` +torch/storage.py:548:9: error[unresolved-attribute] Module `torch` has no member `bits8` +torch/storage.py:549:9: error[unresolved-attribute] Module `torch` has no member `bits16` +torch/storage.py:550:9: error[unresolved-attribute] Module `torch` has no member `bits1x8` +torch/storage.py:551:9: error[unresolved-attribute] Module `torch` has no member `bits2x4` +torch/storage.py:552:9: error[unresolved-attribute] Module `torch` has no member `bits4x2` +torch/storage.py:553:9: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/storage.py:554:9: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/storage.py:555:9: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/storage.py:556:9: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/storage.py:568:9: error[unresolved-attribute] Module `torch` has no member `double` +torch/storage.py:569:9: error[unresolved-attribute] Module `torch` has no member `float` +torch/storage.py:570:9: error[unresolved-attribute] Module `torch` has no member `half` +torch/storage.py:571:9: error[unresolved-attribute] Module `torch` has no member `long` +torch/storage.py:572:9: error[unresolved-attribute] Module `torch` has no member `int` +torch/storage.py:573:9: error[unresolved-attribute] Module `torch` has no member `int16` +torch/storage.py:574:9: error[unresolved-attribute] Module `torch` has no member `int8` +torch/storage.py:575:9: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/storage.py:576:9: error[unresolved-attribute] Module `torch` has no member `bool` +torch/storage.py:577:9: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/storage.py:578:9: error[unresolved-attribute] Module `torch` has no member `cdouble` +torch/storage.py:579:9: error[unresolved-attribute] Module `torch` has no member `cfloat` +torch/storage.py:580:9: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/storage.py:581:9: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/storage.py:582:9: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/storage.py:583:9: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/storage.py:584:9: error[unresolved-attribute] Module `torch` has no member `quint2x4` +torch/storage.py:596:9: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/storage.py:597:9: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/storage.py:598:9: error[unresolved-attribute] Module `torch` has no member `quint2x4` +torch/storage.py:599:9: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/storage.py:600:9: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/storage.py:603:13: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/storage.py:603:27: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/storage.py:604:13: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/storage.py:604:29: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/storage.py:605:13: error[unresolved-attribute] Module `torch` has no member `quint2x4` +torch/storage.py:605:29: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/storage.py:606:13: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/storage.py:606:27: error[unresolved-attribute] Module `torch` has no member `int32` +torch/storage.py:607:13: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/storage.py:607:26: error[unresolved-attribute] Module `torch` has no member `int8` +torch/storage.py:609:22: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/storage.py:614:22: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/storage.py:665:30: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/storage.py:674:29: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:676:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/storage.py:741:49: error[unresolved-attribute] Module `collections` has no member `abc` +torch/storage.py:817:38: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/storage.py:840:26: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/storage.py:841:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:844:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/storage.py:845:17: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/storage.py:846:17: error[unresolved-attribute] Module `torch` has no member `quint2x4` +torch/storage.py:847:17: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/storage.py:848:17: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/storage.py:863:42: error[unresolved-attribute] Module `collections` has no member `abc` +torch/storage.py:902:20: error[invalid-return-type] Return type does not match returned value: expected `Self@_new_wrapped_storage`, found `TypedStorage` +torch/storage.py:944:13: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/storage.py:945:13: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/storage.py:946:13: error[unresolved-attribute] Module `torch` has no member `quint2x4` +torch/storage.py:947:13: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/storage.py:948:13: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/storage.py:951:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/storage.py:951:31: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/storage.py:952:17: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/storage.py:952:33: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/storage.py:953:17: error[unresolved-attribute] Module `torch` has no member `quint2x4` +torch/storage.py:953:33: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/storage.py:954:17: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/storage.py:954:31: error[unresolved-attribute] Module `torch` has no member `int32` +torch/storage.py:955:17: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/storage.py:955:30: error[unresolved-attribute] Module `torch` has no member `int8` +torch/storage.py:958:26: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/storage.py:967:26: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/storage.py:993:13: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/storage.py:994:13: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/storage.py:995:13: error[unresolved-attribute] Module `torch` has no member `quint2x4` +torch/storage.py:996:13: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/storage.py:997:13: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/storage.py:1000:17: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/storage.py:1000:31: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/storage.py:1001:17: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/storage.py:1001:33: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/storage.py:1002:17: error[unresolved-attribute] Module `torch` has no member `quint2x4` +torch/storage.py:1002:33: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/storage.py:1003:17: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/storage.py:1003:31: error[unresolved-attribute] Module `torch` has no member `int32` +torch/storage.py:1004:17: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/storage.py:1004:30: error[unresolved-attribute] Module `torch` has no member `int8` +torch/storage.py:1016:26: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/storage.py:1021:56: error[invalid-type-form] Variable of type `def bool(self) -> Unknown` is not allowed in a type expression +torch/storage.py:1040:23: error[invalid-type-form] Variable of type `def bool(self) -> Unknown` is not allowed in a type expression +torch/storage.py:1057:13: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/storage.py:1058:13: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/storage.py:1059:13: error[unresolved-attribute] Module `torch` has no member `quint2x4` +torch/storage.py:1060:13: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/storage.py:1061:13: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/storage.py:1070:13: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/storage.py:1071:13: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/storage.py:1072:13: error[unresolved-attribute] Module `torch` has no member `quint2x4` +torch/storage.py:1073:13: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/storage.py:1074:13: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/storage.py:1080:59: error[invalid-type-form] Variable of type `def bool(self) -> Unknown` is not allowed in a type expression +torch/storage.py:1082:35: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:1083:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:1085:13: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/storage.py:1086:13: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/storage.py:1087:13: error[unresolved-attribute] Module `torch` has no member `quint2x4` +torch/storage.py:1088:13: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/storage.py:1089:13: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/storage.py:1160:44: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:1173:45: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:1202:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:1280:21: error[unresolved-attribute] Module `torch` has no member `get_default_dtype` +torch/storage.py:1281:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/storage.py:1310:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/storage.py:1313:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/storage.py:1325:25: error[unresolved-attribute] Module `torch` has no member `double` +torch/storage.py:1330:25: error[unresolved-attribute] Module `torch` has no member `float` +torch/storage.py:1335:25: error[unresolved-attribute] Module `torch` has no member `half` +torch/storage.py:1340:25: error[unresolved-attribute] Module `torch` has no member `long` +torch/storage.py:1345:25: error[unresolved-attribute] Module `torch` has no member `int` +torch/storage.py:1350:25: error[unresolved-attribute] Module `torch` has no member `short` +torch/storage.py:1355:25: error[unresolved-attribute] Module `torch` has no member `int8` +torch/storage.py:1360:25: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/storage.py:1365:25: error[unresolved-attribute] Module `torch` has no member `bool` +torch/storage.py:1370:25: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/storage.py:1375:25: error[unresolved-attribute] Module `torch` has no member `cdouble` +torch/storage.py:1380:25: error[unresolved-attribute] Module `torch` has no member `cfloat` +torch/storage.py:1385:25: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/storage.py:1390:25: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/storage.py:1395:25: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/storage.py:1400:25: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/storage.py:1492:13: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/storage.py:1513:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/testing/__init__.py:1:22: error[unresolved-import] Module `torch._C` has no member `FileCheck` +torch/testing/__init__.py:6:26: warning[deprecated] The function `assert_allclose` is deprecated: `torch.testing.assert_allclose()` is deprecated since 1.12 and will be removed in a future release. Please use `torch.testing.assert_close()` instead. You can find detailed upgrade instructions in https://github.com/pytorch/pytorch/issues/61844. +torch/testing/_comparison.py:55:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/testing/_comparison.py:56:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/testing/_comparison.py:57:5: error[unresolved-attribute] Module `torch` has no member `float32` +torch/testing/_comparison.py:58:5: error[unresolved-attribute] Module `torch` has no member `float64` +torch/testing/_comparison.py:59:5: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/testing/_comparison.py:60:5: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/testing/_comparison.py:61:5: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/testing/_comparison.py:67:10: error[unresolved-attribute] Module `torch` has no member `quint8` +torch/testing/_comparison.py:67:24: error[unresolved-attribute] Module `torch` has no member `quint2x4` +torch/testing/_comparison.py:67:40: error[unresolved-attribute] Module `torch` has no member `quint4x2` +torch/testing/_comparison.py:67:56: error[unresolved-attribute] Module `torch` has no member `qint8` +torch/testing/_comparison.py:67:69: error[unresolved-attribute] Module `torch` has no member `qint32` +torch/testing/_comparison.py:68:27: error[unresolved-attribute] Module `torch` has no member `float32` +torch/testing/_comparison.py:74:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/testing/_comparison.py:75:37: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/testing/_comparison.py:88:32: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/testing/_comparison.py:102:34: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/testing/_comparison.py:295:49: error[unresolved-attribute] Module `torch` has no member `sum` +torch/testing/_comparison.py:302:36: error[unresolved-attribute] Module `torch` has no member `nonzero` +torch/testing/_comparison.py:317:38: error[unresolved-attribute] Module `torch` has no member `int64` +torch/testing/_comparison.py:318:42: error[unresolved-attribute] Module `torch` has no member `int64` +torch/testing/_comparison.py:320:16: error[unresolved-attribute] Module `torch` has no member `abs` +torch/testing/_comparison.py:323:43: error[unresolved-attribute] Module `torch` has no member `max` +torch/testing/_comparison.py:325:27: error[unresolved-attribute] Module `torch` has no member `abs` +torch/testing/_comparison.py:328:43: error[unresolved-attribute] Module `torch` has no member `max` +torch/testing/_comparison.py:552:14: error[unresolved-attribute] Module `torch` has no member `int64` +torch/testing/_comparison.py:553:16: error[unresolved-attribute] Module `torch` has no member `float64` +torch/testing/_comparison.py:554:18: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/testing/_comparison.py:721:20: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/testing/_comparison.py:727:13: error[unresolved-attribute] Module `torch` has no member `strided` +torch/testing/_comparison.py:728:13: error[unresolved-attribute] Module `torch` has no member `jagged` +torch/testing/_comparison.py:729:13: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/testing/_comparison.py:730:13: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/testing/_comparison.py:731:13: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/testing/_comparison.py:732:13: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/testing/_comparison.py:733:13: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/testing/_comparison.py:794:30: error[unresolved-attribute] Module `torch` has no member `strided` +torch/testing/_comparison.py:842:33: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/testing/_comparison.py:842:47: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/testing/_comparison.py:842:61: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/testing/_comparison.py:843:32: error[unresolved-attribute] Module `torch` has no member `int64` +torch/testing/_comparison.py:844:35: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/testing/_comparison.py:844:49: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/testing/_comparison.py:844:63: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/testing/_comparison.py:845:34: error[unresolved-attribute] Module `torch` has no member `int64` +torch/testing/_comparison.py:846:21: error[unresolved-attribute] Module `torch` has no member `promote_types` +torch/testing/_comparison.py:852:60: error[unresolved-attribute] Module `torch` has no member `strided` +torch/testing/_comparison.py:854:59: error[unresolved-attribute] Module `torch` has no member `strided` +torch/testing/_comparison.py:865:13: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/testing/_comparison.py:866:13: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/testing/_comparison.py:867:13: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/testing/_comparison.py:868:13: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/testing/_comparison.py:871:31: error[unresolved-attribute] Module `torch` has no member `jagged` +torch/testing/_comparison.py:1000:13: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/testing/_comparison.py:1005:13: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/testing/_comparison.py:1010:13: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/testing/_comparison.py:1015:13: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/testing/_comparison.py:1037:25: error[unresolved-attribute] Module `torch` has no member `promote_types` +torch/testing/_comparison.py:1084:19: error[unresolved-attribute] Module `torch` has no member `isclose` +torch/testing/_comparison.py:1087:12: error[unresolved-attribute] Module `torch` has no member `all` +torch/testing/_comparison.py:1090:28: error[unresolved-attribute] Module `torch` has no member `Size` +torch/testing/_comparison.py:1323:19: error[invalid-assignment] Object of type `list[Unknown | list[ErrorMeta]]` is not assignable to `list[ErrorMeta]` +torch/testing/_comparison.py:1325:12: error[invalid-return-type] Return type does not match returned value: expected `list[ErrorMeta]`, found `ErrorMeta` +torch/testing/_comparison.py:1625:18: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/testing/_comparison.py:1627:20: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/testing/_comparison.py:1634:17: error[unresolved-attribute] Module `torch` has no member `float16` +torch/testing/_comparison.py:1635:17: error[unresolved-attribute] Module `torch` has no member `float32` +torch/testing/_comparison.py:1636:17: error[unresolved-attribute] Module `torch` has no member `float64` +torch/testing/_creation.py:15:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/testing/_creation.py:16:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/testing/_creation.py:17:5: error[unresolved-attribute] Module `torch` has no member `int16` +torch/testing/_creation.py:18:5: error[unresolved-attribute] Module `torch` has no member `int32` +torch/testing/_creation.py:19:5: error[unresolved-attribute] Module `torch` has no member `int64` +torch/testing/_creation.py:20:5: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/testing/_creation.py:21:5: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/testing/_creation.py:22:5: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/testing/_creation.py:24:20: error[unresolved-attribute] Module `torch` has no member `float16` +torch/testing/_creation.py:24:35: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/testing/_creation.py:24:51: error[unresolved-attribute] Module `torch` has no member `float32` +torch/testing/_creation.py:24:66: error[unresolved-attribute] Module `torch` has no member `float64` +torch/testing/_creation.py:26:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/testing/_creation.py:27:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/testing/_creation.py:28:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/testing/_creation.py:29:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/testing/_creation.py:31:19: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/testing/_creation.py:31:36: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/testing/_creation.py:31:53: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/testing/_creation.py:32:31: error[unresolved-attribute] Module `torch` has no member `bool` +torch/testing/_creation.py:39:22: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/testing/_creation.py:46:24: error[unresolved-attribute] Module `torch` has no member `Size` +torch/testing/_creation.py:47:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/testing/_creation.py:48:24: error[unresolved-attribute] Module `torch` has no member `device` +torch/testing/_creation.py:54:29: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/testing/_creation.py:199:17: error[unresolved-attribute] Module `torch` has no member `bool` +torch/testing/_creation.py:211:18: error[unresolved-attribute] Module `torch` has no member `randint` +torch/testing/_creation.py:218:34: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/testing/_creation.py:219:35: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/testing/_creation.py:223:38: error[unresolved-attribute] Module `torch` has no member `int64` +torch/testing/_creation.py:230:18: error[unresolved-attribute] Module `torch` has no member `randint` +torch/testing/_creation.py:235:30: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/testing/_creation.py:236:31: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/testing/_creation.py:240:18: error[unresolved-attribute] Module `torch` has no member `empty` +torch/testing/_creation.py:242:13: error[unresolved-attribute] Module `torch` has no member `view_as_real` +torch/testing/_creation.py:248:30: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/testing/_creation.py:249:31: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/testing/_creation.py:253:18: error[unresolved-attribute] Module `torch` has no member `empty` +torch/testing/_creation.py:253:58: error[unresolved-attribute] Module `torch` has no member `float32` +torch/testing/_creation.py:270:59: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/testing/_utils.py:34:10: error[unresolved-attribute] Module `torch.utils` has no member `_mode_utils` +torch/testing/_utils.py:34:49: error[unresolved-attribute] Module `torch._C` has no member `_DisableFuncTorch` +torch/testing/_utils.py:49:14: error[unresolved-attribute] Module `torch.utils` has no member `_mode_utils` +torch/testing/_utils.py:49:53: error[unresolved-attribute] Module `torch._C` has no member `_DisableFuncTorch` +torch/torch_version.py:5:6: error[unresolved-import] Cannot resolve imported module `torch.version` +torch/types.py:20:5: error[unresolved-import] Module `torch` has no member `device` +torch/types.py:21:5: error[unresolved-import] Module `torch` has no member `DispatchKey` +torch/types.py:22:5: error[unresolved-import] Module `torch` has no member `dtype` +torch/types.py:23:5: error[unresolved-import] Module `torch` has no member `layout` +torch/types.py:24:5: error[unresolved-import] Module `torch` has no member `qscheme` +torch/types.py:25:5: error[unresolved-import] Module `torch` has no member `Size` +torch/utils/__init__.py:107:5: error[unresolved-attribute] Module `torch._C` has no member `_swap_tensor_impl` +torch/utils/_config_module.py:140:13: error[invalid-argument-type] Argument is incorrect: Expected `list[str] | None`, found `str | list[str] | None` +torch/utils/_config_module.py:141:13: error[invalid-argument-type] Argument is incorrect: Expected `list[str] | None`, found `str | list[str] | None` +torch/utils/_content_store.py:72:9: error[unresolved-attribute] Module `torch` has no member `randint` +torch/utils/_content_store.py:73:58: error[unresolved-attribute] Module `torch` has no member `int32` +torch/utils/_content_store.py:77:9: error[unresolved-attribute] Module `torch` has no member `randint` +torch/utils/_content_store.py:77:72: error[unresolved-attribute] Module `torch` has no member `int32` +torch/utils/_content_store.py:112:21: error[unresolved-attribute] Module `torch._C` has no member `default_generator` +torch/utils/_content_store.py:130:26: error[invalid-argument-type] Argument to function `pad` is incorrect: Expected `list[int]`, found `tuple[Literal[0], Unknown]` +torch/utils/_content_store.py:131:20: error[unresolved-attribute] Module `torch` has no member `int32` +torch/utils/_content_store.py:196:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/utils/_content_store.py:203:22: error[unresolved-attribute] Module `torch` has no member `device` +torch/utils/_content_store.py:238:13: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/_cxx_pytree.py:1113:5: error[invalid-assignment] Object of type `Literal[True]` is not assignable to attribute `_cxx_pytree_imported` of type `Literal[False]` +torch/utils/_debug_mode.py:116:14: error[unresolved-attribute] Module `torch._C` has no member `_DisablePythonDispatcher` +torch/utils/_debug_mode.py:168:10: error[unresolved-attribute] Module `torch._C` has no member `_DisablePythonDispatcher` +torch/utils/_debug_mode.py:174:34: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/utils/_debug_mode.py:176:34: error[unresolved-attribute] Module `torch` has no member `float64` +torch/utils/_debug_mode.py:201:30: error[unresolved-attribute] Module `torch` has no member `float64` +torch/utils/_debug_mode.py:203:30: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/utils/_debug_mode.py:203:53: error[unresolved-attribute] Module `torch` has no member `float64` +torch/utils/_debug_mode.py:205:30: error[unresolved-attribute] Module `torch` has no member `int64` +torch/utils/_debug_mode.py:207:11: error[unresolved-attribute] Module `torch` has no member `hash_tensor` +torch/utils/_debug_mode.py:236:8: error[unresolved-attribute] Module `torch._C` has no member `_current_autograd_node` +torch/utils/_debug_mode.py:751:13: error[unresolved-attribute] Module `torch._C` has no member `_push_on_torch_function_stack` +torch/utils/_debug_mode.py:770:13: error[unresolved-attribute] Module `torch._C` has no member `_pop_torch_function_stack` +torch/utils/_debug_mode.py:829:14: error[unresolved-attribute] Module `torch._C` has no member `DisableTorchFunction` +torch/utils/_device.py:5:22: error[unresolved-import] Module `torch._C` has no member `_len_torch_function_stack` +torch/utils/_device.py:10:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/utils/_device.py:17:9: error[unresolved-attribute] Module `torch` has no member `empty` +torch/utils/_device.py:18:9: error[unresolved-attribute] Module `torch` has no member `empty_permuted` +torch/utils/_device.py:19:9: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/utils/_device.py:20:9: error[unresolved-attribute] Module `torch` has no member `empty_quantized` +torch/utils/_device.py:21:9: error[unresolved-attribute] Module `torch` has no member `ones` +torch/utils/_device.py:22:9: error[unresolved-attribute] Module `torch` has no member `arange` +torch/utils/_device.py:23:9: error[unresolved-attribute] Module `torch` has no member `bartlett_window` +torch/utils/_device.py:24:9: error[unresolved-attribute] Module `torch` has no member `blackman_window` +torch/utils/_device.py:25:9: error[unresolved-attribute] Module `torch` has no member `eye` +torch/utils/_device.py:28:9: error[unresolved-attribute] Module `torch` has no member `full` +torch/utils/_device.py:29:9: error[unresolved-attribute] Module `torch` has no member `hamming_window` +torch/utils/_device.py:30:9: error[unresolved-attribute] Module `torch` has no member `hann_window` +torch/utils/_device.py:31:9: error[unresolved-attribute] Module `torch` has no member `kaiser_window` +torch/utils/_device.py:32:9: error[unresolved-attribute] Module `torch` has no member `linspace` +torch/utils/_device.py:33:9: error[unresolved-attribute] Module `torch` has no member `logspace` +torch/utils/_device.py:37:9: error[unresolved-attribute] Module `torch` has no member `rand` +torch/utils/_device.py:38:9: error[unresolved-attribute] Module `torch` has no member `randn` +torch/utils/_device.py:39:9: error[unresolved-attribute] Module `torch` has no member `randint` +torch/utils/_device.py:40:9: error[unresolved-attribute] Module `torch` has no member `randperm` +torch/utils/_device.py:41:9: error[unresolved-attribute] Module `torch` has no member `range` +torch/utils/_device.py:42:9: error[unresolved-attribute] Module `torch` has no member `sparse_coo_tensor` +torch/utils/_device.py:43:9: error[unresolved-attribute] Module `torch` has no member `sparse_compressed_tensor` +torch/utils/_device.py:44:9: error[unresolved-attribute] Module `torch` has no member `sparse_csr_tensor` +torch/utils/_device.py:45:9: error[unresolved-attribute] Module `torch` has no member `sparse_csc_tensor` +torch/utils/_device.py:46:9: error[unresolved-attribute] Module `torch` has no member `sparse_bsr_tensor` +torch/utils/_device.py:47:9: error[unresolved-attribute] Module `torch` has no member `sparse_bsc_tensor` +torch/utils/_device.py:48:9: error[unresolved-attribute] Module `torch` has no member `tril_indices` +torch/utils/_device.py:49:9: error[unresolved-attribute] Module `torch` has no member `triu_indices` +torch/utils/_device.py:50:9: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/utils/_device.py:51:9: error[unresolved-attribute] Module `torch` has no member `asarray` +torch/utils/_device.py:53:9: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/_device.py:54:9: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/utils/_device.py:55:9: error[unresolved-attribute] Module `torch` has no member `scalar_tensor` +torch/utils/_device.py:63:23: error[unresolved-attribute] Module `torch` has no member `device` +torch/utils/_device.py:124:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/utils/_dtype_abbrs.py:6:5: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/utils/_dtype_abbrs.py:7:5: error[unresolved-attribute] Module `torch` has no member `float64` +torch/utils/_dtype_abbrs.py:8:5: error[unresolved-attribute] Module `torch` has no member `float32` +torch/utils/_dtype_abbrs.py:9:5: error[unresolved-attribute] Module `torch` has no member `float16` +torch/utils/_dtype_abbrs.py:10:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fn` +torch/utils/_dtype_abbrs.py:11:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2` +torch/utils/_dtype_abbrs.py:12:5: error[unresolved-attribute] Module `torch` has no member `float8_e4m3fnuz` +torch/utils/_dtype_abbrs.py:13:5: error[unresolved-attribute] Module `torch` has no member `float8_e5m2fnuz` +torch/utils/_dtype_abbrs.py:14:5: error[unresolved-attribute] Module `torch` has no member `float8_e8m0fnu` +torch/utils/_dtype_abbrs.py:15:5: error[unresolved-attribute] Module `torch` has no member `float4_e2m1fn_x2` +torch/utils/_dtype_abbrs.py:16:5: error[unresolved-attribute] Module `torch` has no member `complex32` +torch/utils/_dtype_abbrs.py:17:5: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/utils/_dtype_abbrs.py:18:5: error[unresolved-attribute] Module `torch` has no member `complex128` +torch/utils/_dtype_abbrs.py:19:5: error[unresolved-attribute] Module `torch` has no member `int8` +torch/utils/_dtype_abbrs.py:20:5: error[unresolved-attribute] Module `torch` has no member `int16` +torch/utils/_dtype_abbrs.py:21:5: error[unresolved-attribute] Module `torch` has no member `int32` +torch/utils/_dtype_abbrs.py:22:5: error[unresolved-attribute] Module `torch` has no member `int64` +torch/utils/_dtype_abbrs.py:23:5: error[unresolved-attribute] Module `torch` has no member `bool` +torch/utils/_dtype_abbrs.py:24:5: error[unresolved-attribute] Module `torch` has no member `uint8` +torch/utils/_dtype_abbrs.py:25:5: error[unresolved-attribute] Module `torch` has no member `uint16` +torch/utils/_dtype_abbrs.py:26:5: error[unresolved-attribute] Module `torch` has no member `uint32` +torch/utils/_dtype_abbrs.py:27:5: error[unresolved-attribute] Module `torch` has no member `uint64` +torch/utils/_dtype_abbrs.py:28:5: error[unresolved-attribute] Module `torch` has no member `bits16` +torch/utils/_dtype_abbrs.py:29:5: error[unresolved-attribute] Module `torch` has no member `bits1x8` +torch/utils/_filelock.py:26:16: error[invalid-return-type] Return type does not match returned value: expected `Self@__enter__`, found `FileLock` +torch/utils/_foreach_utils.py:10:36: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/utils/_foreach_utils.py:22:9: error[unresolved-attribute] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/utils/_foreach_utils.py:46:17: error[unresolved-attribute] Module `torch` has no member `device` +torch/utils/_foreach_utils.py:46:31: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/utils/_foreach_utils.py:47:12: error[unresolved-attribute] Module `torch._C` has no member `_group_tensors_by_device_and_dtype` +torch/utils/_foreach_utils.py:50:41: error[unresolved-attribute] Module `torch` has no member `device` +torch/utils/_foreach_utils.py:57:57: error[unresolved-attribute] Module `torch` has no member `device` +torch/utils/_functools.py:30:37: error[unresolved-attribute] Object of type `(...) -> _T@cache_method` has no attribute `__name__` +torch/utils/_import_utils.py:30:12: error[unresolved-import] Cannot resolve imported module `dill` +torch/utils/_mode_utils.py:15:15: error[unresolved-attribute] Module `torch._C` has no member `_DisableTorchDispatch` +torch/utils/_ordered_set.py:142:13: error[no-matching-overload] No overload of bound method `update` matches arguments +torch/utils/_ordered_set.py:142:13: error[no-matching-overload] No overload of bound method `update` matches arguments +torch/utils/_ordered_set.py:142:13: error[no-matching-overload] No overload of bound method `update` matches arguments +torch/utils/_pallas.py:94:16: error[unresolved-import] Cannot resolve imported module `torch_xla.core.xla_model` +torch/utils/_python_dispatch.py:16:5: error[unresolved-import] Module `torch._C` has no member `_get_dispatch_stack_at` +torch/utils/_python_dispatch.py:17:5: error[unresolved-import] Module `torch._C` has no member `_len_torch_dispatch_stack` +torch/utils/_python_dispatch.py:18:5: error[unresolved-import] Module `torch._C` has no member `_pop_torch_dispatch_stack` +torch/utils/_python_dispatch.py:19:5: error[unresolved-import] Module `torch._C` has no member `_push_on_torch_dispatch_stack` +torch/utils/_python_dispatch.py:20:5: error[unresolved-import] Module `torch._C` has no member `DispatchKey` +torch/utils/_python_dispatch.py:92:46: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/utils/_python_dispatch.py:230:9: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/utils/_python_dispatch.py:231:9: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/utils/_python_dispatch.py:234:47: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/utils/_python_dispatch.py:235:28: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/utils/_python_dispatch.py:241:26: error[unresolved-attribute] Module `torch._C` has no member `_get_dispatch_mode` +torch/utils/_python_dispatch.py:258:26: error[unresolved-attribute] Module `torch._C` has no member `_get_dispatch_mode` +torch/utils/_python_dispatch.py:268:16: error[unresolved-attribute] Module `torch._C` has no member `_unset_dispatch_mode` +torch/utils/_python_dispatch.py:273:9: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/utils/_python_dispatch.py:274:9: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/utils/_python_dispatch.py:299:31: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/utils/_python_dispatch.py:311:10: error[unresolved-attribute] Module `torch._C` has no member `_functionality_to_backend_keys` +torch/utils/_python_dispatch.py:318:32: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/utils/_python_dispatch.py:324:35: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/utils/_python_dispatch.py:414:12: error[unresolved-attribute] Module `torch._C` has no member `Size` +torch/utils/_python_dispatch.py:439:24: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/utils/_python_dispatch.py:445:17: error[unresolved-attribute] Module `torch` has no member `_prims_common` +torch/utils/_python_dispatch.py:450:24: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/utils/_python_dispatch.py:460:24: error[unresolved-attribute] Module `torch` has no member `memory_format` +torch/utils/_python_dispatch.py:610:17: error[unresolved-attribute] Module `torch` has no member `_functionalize_unsafe_set` +torch/utils/_python_dispatch.py:614:13: error[unresolved-attribute] Module `torch` has no member `_functionalize_unsafe_set` +torch/utils/_python_dispatch.py:753:28: error[unresolved-attribute] Module `torch` has no member `Tag` +torch/utils/_python_dispatch.py:797:27: error[unresolved-attribute] Module `torch._C` has no member `_parse_dispatch_key` +torch/utils/_python_dispatch.py:798:17: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_key_for_device` +torch/utils/_python_dispatch.py:804:40: error[unresolved-attribute] Module `torch._C` has no member `_dispatch_has_kernel_for_dispatch_key` +torch/utils/_python_dispatch.py:882:18: error[unresolved-attribute] Module `torch.utils` has no member `_mode_utils` +torch/utils/_python_dispatch.py:885:31: error[unresolved-attribute] Module `torch._C` has no member `_meta_in_tls_dispatch_include` +torch/utils/_python_dispatch.py:886:17: error[unresolved-attribute] Module `torch._C` has no member `_set_meta_in_tls_dispatch_include` +torch/utils/_python_dispatch.py:890:21: error[unresolved-attribute] Module `torch._C` has no member `_set_meta_in_tls_dispatch_include` +torch/utils/_pytree.py:357:21: error[not-iterable] Object of type `list[str] | None` may not be iterable +torch/utils/_pytree.py:719:9: error[invalid-parameter-default] Default value of type `EllipsisType` is not assignable to annotated parameter type `dict[str, Any]` +torch/utils/_pytree.py:766:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[list[tuple[KeyEntry, T@_tuple_flatten_with_keys]], Any]`, found `tuple[list[tuple[SequenceKey[Unknown], T@_tuple_flatten_with_keys] | Unknown], Any]` +torch/utils/_pytree.py:780:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[list[tuple[KeyEntry, T@_list_flatten_with_keys]], Any]`, found `tuple[list[tuple[SequenceKey[Unknown], T@_list_flatten_with_keys] | Unknown], Any]` +torch/utils/_pytree.py:796:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[list[tuple[KeyEntry, T@_dict_flatten_with_keys]], Any]`, found `tuple[list[tuple[MappingKey[Unknown, Unknown], Unknown] | Unknown], Any]` +torch/utils/_pytree.py:812:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[list[tuple[KeyEntry, Any]], Any]`, found `tuple[list[tuple[GetAttrKey, Unknown] | Unknown], Any]` +torch/utils/_pytree.py:865:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[list[tuple[KeyEntry, T@_ordereddict_flatten_with_keys]], Any]`, found `tuple[list[tuple[MappingKey[Unknown, Unknown], Unknown] | Unknown], Any]` +torch/utils/_pytree.py:890:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[list[tuple[KeyEntry, T@_defaultdict_flatten_with_keys]], Any]`, found `tuple[list[tuple[MappingKey[Unknown, Unknown], Unknown] | Unknown], Any]` +torch/utils/_pytree.py:949:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[list[tuple[KeyEntry, T@_deque_flatten_with_keys]], Any]`, found `tuple[list[tuple[SequenceKey[Unknown], T@_deque_flatten_with_keys] | Unknown], Any]` +torch/utils/_pytree.py:1012:34: error[invalid-assignment] Object of type `frozenset[Unknown | | | ... omitted 5 union elements]` is not assignable to `frozenset[type]` +torch/utils/_pytree.py:1119:30: error[unresolved-attribute] Object of type `typing.Self` has no attribute `num_nodes` +torch/utils/_pytree.py:1120:31: error[unresolved-attribute] Object of type `typing.Self` has no attribute `num_leaves` +torch/utils/_pytree.py:1131:62: error[too-many-positional-arguments] Too many positional arguments to bound method `__repr__`: expected 1, got 2 +torch/utils/_pytree.py:1135:58: error[too-many-positional-arguments] Too many positional arguments to bound method `__repr__`: expected 1, got 2 +torch/utils/_pytree.py:1167:16: error[invalid-return-type] Return type does not match returned value: expected `list[Self@children_specs]`, found `list[typing.Self]` +torch/utils/_pytree.py:1173:16: error[invalid-return-type] Return type does not match returned value: expected `list[Self@children]`, found `list[typing.Self]` +torch/utils/_pytree.py:1176:16: error[invalid-return-type] Return type does not match returned value: expected `Self@child`, found `typing.Self` +torch/utils/_pytree.py:1280:20: error[unresolved-attribute] Object of type `typing.Self` has no attribute `num_leaves` +torch/utils/_pytree.py:1281:34: error[unresolved-attribute] Object of type `typing.Self` has no attribute `unflatten` +torch/utils/_pytree.py:1341:18: warning[deprecated] The class `LeafSpec` is deprecated: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. +torch/utils/_pytree.py:1344:24: warning[deprecated] The class `LeafSpec` is deprecated: `isinstance(treespec, LeafSpec)` is deprecated, use `isinstance(treespec, TreeSpec) and treespec.is_leaf()` instead. +torch/utils/_pytree.py:1917:40: error[invalid-argument-type] Argument to function `_treespec_to_json` is incorrect: Expected `TreeSpec`, found `typing.Self` +torch/utils/_stats.py:26:12: error[unresolved-attribute] Object of type `(...) -> _R@count` has no attribute `__qualname__` +torch/utils/_stats.py:27:33: error[unresolved-attribute] Object of type `(...) -> _R@count` has no attribute `__qualname__` +torch/utils/_stats.py:28:29: error[unresolved-attribute] Object of type `(...) -> _R@count` has no attribute `__qualname__` +torch/utils/_stats.py:28:68: error[unresolved-attribute] Object of type `(...) -> _R@count` has no attribute `__qualname__` +torch/utils/_strobelight/examples/cli_function_profiler_example.py:22:20: error[unresolved-attribute] Module `torch` has no member `rand` +torch/utils/_strobelight/examples/cli_function_profiler_example.py:22:38: error[unresolved-attribute] Module `torch` has no member `rand` +torch/utils/_strobelight/examples/cli_function_profiler_example.py:22:56: error[unresolved-attribute] Module `torch` has no member `rand` +torch/utils/_sympy/functions.py:440:16: error[unresolved-attribute] Object of type `Expr` has no attribute `is_even` +torch/utils/_sympy/functions.py:442:16: error[unresolved-attribute] Object of type `Expr` has no attribute `is_odd` +torch/utils/_sympy/functions.py:476:27: error[unresolved-attribute] Object of type `Basic` has no attribute `is_positive` +torch/utils/_sympy/functions.py:559:53: error[unresolved-attribute] Object of type `Basic` has no attribute `precedence` +torch/utils/_sympy/functions.py:1353:20: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsInt | SupportsIndex | SupportsTrunc`, found `Basic` +torch/utils/_sympy/functions.py:1357:22: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsFloat | SupportsIndex`, found `Basic` +torch/utils/_sympy/interp.py:103:9: error[unresolved-attribute] Module `sympy.functions.elementary` has no member `piecewise` +torch/utils/_sympy/interp.py:125:58: error[unresolved-attribute] Module `torch` has no member `int64` +torch/utils/_sympy/interp.py:132:43: error[unresolved-attribute] Module `torch` has no member `float64` +torch/utils/_sympy/interp.py:191:17: error[unresolved-attribute] Module `torch` has no member `int64` +torch/utils/_sympy/interp.py:197:17: error[unresolved-attribute] Module `torch` has no member `bool` +torch/utils/_sympy/interp.py:199:17: error[unresolved-attribute] Module `torch` has no member `int64` +torch/utils/_sympy/interp.py:201:17: error[unresolved-attribute] Module `torch` has no member `double` +torch/utils/_sympy/interp.py:220:17: error[invalid-argument-type] Argument to function `sympy_interp` is incorrect: Expected `Expr | Boolean`, found `Basic` +torch/utils/_sympy/numbers.py:136:16: error[unresolved-attribute] Object of type `re` has no attribute `is_positive` +torch/utils/_sympy/printers.py:29:46: error[unresolved-attribute] Object of type `Expr` has no attribute `rel_op` +torch/utils/_sympy/printers.py:56:12: error[unresolved-attribute] Object of type `Expr` has no attribute `_prec` +torch/utils/_sympy/printers.py:74:23: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsInt | SupportsIndex | SupportsTrunc`, found `Basic` +torch/utils/_sympy/printers.py:76:19: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsInt | SupportsIndex | SupportsTrunc`, found `Basic` +torch/utils/_sympy/printers.py:195:34: error[invalid-argument-type] Argument to bound method `_helper_sqrt` is incorrect: Expected `Expr`, found `Basic` +torch/utils/_sympy/printers.py:316:31: error[not-iterable] Object of type `Basic` is not iterable +torch/utils/_sympy/printers.py:355:31: error[not-iterable] Object of type `Basic` is not iterable +torch/utils/_sympy/printers.py:373:16: error[unresolved-attribute] Object of type `Expr` has no attribute `is_integer` +torch/utils/_sympy/printers.py:384:12: error[unresolved-attribute] Object of type `Expr` has no attribute `is_integer` +torch/utils/_sympy/printers.py:392:53: error[unresolved-attribute] Object of type `Expr` has no attribute `is_integer` +torch/utils/_sympy/printers.py:398:53: error[unresolved-attribute] Object of type `Expr` has no attribute `is_integer` +torch/utils/_sympy/printers.py:449:12: error[unresolved-attribute] Object of type `Basic` has no attribute `is_integer` +torch/utils/_sympy/printers.py:450:23: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsInt | SupportsIndex | SupportsTrunc`, found `Basic` +torch/utils/_sympy/printers.py:464:57: error[unresolved-attribute] Object of type `Expr` has no attribute `is_integer` +torch/utils/_sympy/printers.py:467:46: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `str | Buffer | SupportsFloat | SupportsIndex`, found `Basic` +torch/utils/_sympy/printers.py:471:12: error[unresolved-attribute] Object of type `Expr` has no attribute `q` +torch/utils/_sympy/printers.py:472:20: error[unresolved-attribute] Object of type `Expr` has no attribute `p` +torch/utils/_sympy/printers.py:474:20: error[unresolved-attribute] Object of type `Expr` has no attribute `p` +torch/utils/_sympy/printers.py:474:31: error[unresolved-attribute] Object of type `Expr` has no attribute `q` +torch/utils/_sympy/printers.py:475:53: error[unresolved-attribute] Object of type `Expr` has no attribute `is_integer` +torch/utils/_sympy/printers.py:481:53: error[unresolved-attribute] Object of type `Expr` has no attribute `is_integer` +torch/utils/_sympy/printers.py:487:53: error[unresolved-attribute] Object of type `Expr` has no attribute `is_integer` +torch/utils/_sympy/printers.py:573:12: error[unresolved-attribute] Object of type `Basic` has no attribute `is_integer` +torch/utils/_sympy/printers.py:575:16: error[unsupported-operator] Operator `>=` is not supported for types `Basic` and `int`, in comparing `Basic` with `Literal[0]` +torch/utils/_sympy/printers.py:581:86: error[unsupported-operator] Unary operator `-` is unsupported for type `Basic` +torch/utils/_sympy/reference.py:114:21: error[unresolved-attribute] Module `torch` has no member `float64` +torch/utils/_sympy/reference.py:222:21: error[unresolved-attribute] Module `torch` has no member `int64` +torch/utils/_sympy/reference.py:224:23: error[unresolved-attribute] Module `torch` has no member `double` +torch/utils/_sympy/reference.py:226:23: error[unresolved-attribute] Module `torch` has no member `bool` +torch/utils/_sympy/reference.py:260:21: error[unresolved-attribute] Module `torch` has no member `float64` +torch/utils/_sympy/reference.py:348:39: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/utils/_sympy/reference.py:372:21: error[unresolved-attribute] Module `torch` has no member `int64` +torch/utils/_sympy/reference.py:374:23: error[unresolved-attribute] Module `torch` has no member `double` +torch/utils/_sympy/reference.py:376:23: error[unresolved-attribute] Module `torch` has no member `bool` +torch/utils/_sympy/solve.py:23:31: error[invalid-argument-type] Argument to bound method `get` is incorrect: Expected `type[Basic]`, found `type` +torch/utils/_sympy/value_ranges.py:134:18: error[unresolved-reference] Name `ValueRanges` used when not defined +torch/utils/_sympy/value_ranges.py:136:18: error[unresolved-reference] Name `ValueRanges` used when not defined +torch/utils/_sympy/value_ranges.py:227:20: error[invalid-return-type] Return type does not match returned value: expected `ValueRanges[Boolean]`, found `Self@boolify` +torch/utils/_sympy/value_ranges.py:421:16: error[no-matching-overload] No overload of bound method `__init__` matches arguments +torch/utils/_sympy/value_ranges.py:459:25: error[unresolved-attribute] Module `torch` has no member `bool` +torch/utils/_sympy/value_ranges.py:472:25: error[unresolved-attribute] Module `torch` has no member `bool` +torch/utils/_sympy/value_ranges.py:490:21: error[unresolved-attribute] Module `torch` has no member `float64` +torch/utils/_sympy/value_ranges.py:492:50: error[invalid-argument-type] Argument to function `increasing_map` is incorrect: Expected `(Expr, /) -> Expr`, found `` +torch/utils/_sympy/value_ranges.py:493:23: error[unresolved-attribute] Module `torch` has no member `bool` +torch/utils/_sympy/value_ranges.py:502:46: error[invalid-argument-type] Argument to function `increasing_map` is incorrect: Expected `(Expr, /) -> Expr`, found `` +torch/utils/_sympy/value_ranges.py:510:16: error[no-matching-overload] No overload of function `decreasing_map` matches arguments +torch/utils/_sympy/value_ranges.py:794:20: error[no-matching-overload] No overload of function `coordinatewise_increasing_map` matches arguments +torch/utils/_sympy/value_ranges.py:908:46: error[unresolved-attribute] Module `sympy.functions.elementary` has no member `integers` +torch/utils/_sympy/value_ranges.py:913:16: error[unresolved-attribute] Module `sympy.functions.elementary` has no member `integers` +torch/utils/_sympy/value_ranges.py:937:28: error[unresolved-attribute] Module `sympy.functions.elementary` has no member `integers` +torch/utils/_sympy/value_ranges.py:943:28: error[unresolved-attribute] Module `sympy.functions.elementary` has no member `integers` +torch/utils/_sympy/value_ranges.py:961:51: error[invalid-argument-type] Argument to function `increasing_map` is incorrect: Expected `(Expr, /) -> Expr`, found `` +torch/utils/_sympy/value_ranges.py:1078:46: error[invalid-argument-type] Argument to function `increasing_map` is incorrect: Expected `(Expr, /) -> Expr`, found `` +torch/utils/_sympy/value_ranges.py:1104:15: error[unresolved-attribute] Module `torch` has no member `_guards` +torch/utils/_triton.py:9:16: error[unresolved-import] Cannot resolve imported module `triton` +torch/utils/_triton.py:19:16: error[unresolved-import] Cannot resolve imported module `triton` +torch/utils/_triton.py:43:22: error[unresolved-import] Cannot resolve imported module `triton.tools.experimental_descriptor` +torch/utils/_triton.py:60:22: error[unresolved-import] Cannot resolve imported module `triton.tools.tensor_descriptor` +torch/utils/_triton.py:88:22: error[unresolved-import] Cannot resolve imported module `triton.language.extra.cuda` +torch/utils/_triton.py:99:22: error[unresolved-import] Cannot resolve imported module `triton.language` +torch/utils/_triton.py:134:22: error[unresolved-import] Cannot resolve imported module `triton.language` +torch/utils/_triton.py:158:16: error[unresolved-import] Cannot resolve imported module `triton.backends` +torch/utils/_triton.py:184:10: error[unresolved-import] Cannot resolve imported module `triton.compiler.compiler` +torch/utils/_triton.py:185:10: error[unresolved-import] Cannot resolve imported module `triton.runtime.driver` +torch/utils/backcompat/__init__.py:3:5: error[unresolved-import] Module `torch._C` has no member `_get_backcompat_broadcast_warn` +torch/utils/backcompat/__init__.py:4:5: error[unresolved-import] Module `torch._C` has no member `_get_backcompat_keepdim_warn` +torch/utils/backcompat/__init__.py:5:5: error[unresolved-import] Module `torch._C` has no member `_set_backcompat_broadcast_warn` +torch/utils/backcompat/__init__.py:6:5: error[unresolved-import] Module `torch._C` has no member `_set_backcompat_keepdim_warn` +torch/utils/backend_registration.py:4:22: error[unresolved-import] Module `torch._C` has no member `_get_privateuse1_backend_name` +torch/utils/backend_registration.py:4:53: error[unresolved-import] Module `torch._C` has no member `_rename_privateuse1_backend` +torch/utils/backend_registration.py:92:51: error[unresolved-attribute] Module `torch` has no member `device` +torch/utils/backend_registration.py:109:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/utils/backend_registration.py:112:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/utils/backend_registration.py:139:23: error[unresolved-attribute] Module `torch` has no member `device` +torch/utils/backend_registration.py:168:20: error[unresolved-attribute] Module `torch` has no member `device` +torch/utils/backend_registration.py:190:23: error[unresolved-attribute] Module `torch` has no member `device` +torch/utils/backend_registration.py:253:14: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/backend_registration.py:270:55: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/utils/backend_registration.py:311:33: error[unresolved-attribute] Module `torch` has no member `device` +torch/utils/backend_registration.py:357:29: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/utils/backend_registration.py:469:29: error[unresolved-attribute] Module `torch._C` has no member `_acc` +torch/utils/backend_registration.py:480:25: error[unresolved-attribute] Module `torch._C` has no member `_acc` +torch/utils/backend_registration.py:482:16: error[unresolved-attribute] Module `torch._C` has no member `_autograd` +torch/utils/backend_registration.py:520:5: error[unresolved-attribute] Module `torch._C` has no member `_acc` +torch/utils/backend_registration.py:521:5: error[unresolved-attribute] Module `torch._C` has no member `_acc` +torch/utils/benchmark/examples/compare.py:61:22: error[unresolved-attribute] Module `torch` has no member `ones` +torch/utils/benchmark/examples/compare.py:62:22: error[unresolved-attribute] Module `torch` has no member `ones` +torch/utils/benchmark/examples/compare.py:63:25: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/utils/benchmark/examples/op_benchmark.py:32:43: error[unresolved-attribute] Module `torch` has no member `float32` +torch/utils/benchmark/examples/op_benchmark.py:33:41: error[unresolved-attribute] Module `torch` has no member `int32` +torch/utils/benchmark/examples/simple_timeit.py:14:23: error[unresolved-attribute] Module `torch` has no member `ones` +torch/utils/benchmark/examples/simple_timeit.py:14:48: error[unresolved-attribute] Module `torch` has no member `ones` +torch/utils/benchmark/examples/sparse/compare.py:63:15: error[unresolved-attribute] Module `torch` has no member `rand` +torch/utils/benchmark/examples/sparse/compare.py:64:18: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/benchmark/examples/sparse/compare.py:65:26: error[unresolved-attribute] Module `torch` has no member `long` +torch/utils/benchmark/examples/sparse/compare.py:67:14: error[unresolved-attribute] Module `torch` has no member `rand` +torch/utils/benchmark/examples/sparse/compare.py:74:12: error[unresolved-attribute] Module `torch` has no member `sparse_coo_tensor` +torch/utils/benchmark/examples/sparse/compare.py:89:67: error[unresolved-attribute] Module `torch` has no member `float32` +torch/utils/benchmark/examples/sparse/compare.py:90:22: error[unresolved-attribute] Module `torch` has no member `rand` +torch/utils/benchmark/examples/sparse/compare.py:90:45: error[unresolved-attribute] Module `torch` has no member `float32` +torch/utils/benchmark/examples/sparse/compare.py:91:25: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/utils/benchmark/examples/sparse/op_benchmark.py:29:43: error[unresolved-attribute] Module `torch` has no member `float32` +torch/utils/benchmark/examples/sparse/op_benchmark.py:30:44: error[unresolved-attribute] Module `torch` has no member `float64` +torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:23:55: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:56:43: error[unresolved-attribute] Module `torch` has no member `float32` +torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:57:46: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:58:40: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:59:40: error[unresolved-attribute] Module `torch` has no member `float32` +torch/utils/benchmark/examples/spectral_ops_fuzz_test.py:60:42: error[unresolved-attribute] Module `torch` has no member `complex64` +torch/utils/benchmark/op_fuzzers/binary.py:17:36: error[unresolved-attribute] Module `torch` has no member `float32` +torch/utils/benchmark/op_fuzzers/sparse_binary.py:17:36: error[unresolved-attribute] Module `torch` has no member `float32` +torch/utils/benchmark/op_fuzzers/spectral.py:31:44: error[unresolved-attribute] Module `torch` has no member `float64` +torch/utils/benchmark/op_fuzzers/unary.py:17:36: error[unresolved-attribute] Module `torch` has no member `float32` +torch/utils/benchmark/utils/common.py:147:27: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/benchmark/utils/common.py:149:15: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/benchmark/utils/common.py:150:18: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/benchmark/utils/common.py:154:23: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/benchmark/utils/common.py:155:39: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/benchmark/utils/common.py:166:29: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/benchmark/utils/common.py:166:68: error[unresolved-attribute] Module `torch` has no member `float64` +torch/utils/benchmark/utils/common.py:263:56: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/benchmark/utils/common.py:281:21: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/benchmark/utils/common.py:283:18: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/benchmark/utils/common.py:292:25: error[unresolved-attribute] Module `torch` has no member `get_num_threads` +torch/utils/benchmark/utils/common.py:294:9: error[unresolved-attribute] Module `torch` has no member `set_num_threads` +torch/utils/benchmark/utils/common.py:297:9: error[unresolved-attribute] Module `torch` has no member `set_num_threads` +torch/utils/benchmark/utils/compare.py:8:19: error[unresolved-import] Module `torch` has no member `tensor` +torch/utils/benchmark/utils/fuzzer.py:170:17: error[unresolved-attribute] Module `torch` has no member `bool` +torch/utils/benchmark/utils/fuzzer.py:173:20: error[unresolved-attribute] Module `torch` has no member `finfo` +torch/utils/benchmark/utils/fuzzer.py:174:16: error[unresolved-attribute] Module `torch` has no member `iinfo` +torch/utils/benchmark/utils/fuzzer.py:199:15: error[unresolved-attribute] Module `torch` has no member `float32` +torch/utils/benchmark/utils/fuzzer.py:271:20: error[unresolved-attribute] Module `torch` has no member `rand` +torch/utils/benchmark/utils/fuzzer.py:273:20: error[unresolved-attribute] Module `torch` has no member `randint` +torch/utils/benchmark/utils/sparse_fuzzer.py:19:15: error[unresolved-attribute] Module `torch` has no member `float32` +torch/utils/benchmark/utils/sparse_fuzzer.py:76:17: error[unresolved-attribute] Module `torch` has no member `rand` +torch/utils/benchmark/utils/sparse_fuzzer.py:78:17: error[unresolved-attribute] Module `torch` has no member `randint` +torch/utils/benchmark/utils/sparse_fuzzer.py:80:13: error[unresolved-attribute] Module `torch` has no member `rand` +torch/utils/benchmark/utils/sparse_fuzzer.py:81:16: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/benchmark/utils/sparse_fuzzer.py:82:18: error[unresolved-attribute] Module `torch` has no member `long` +torch/utils/benchmark/utils/sparse_fuzzer.py:85:17: error[unresolved-attribute] Module `torch` has no member `cat` +torch/utils/benchmark/utils/sparse_fuzzer.py:85:31: error[unresolved-attribute] Module `torch` has no member `randn_like` +torch/utils/benchmark/utils/sparse_fuzzer.py:86:17: error[unresolved-attribute] Module `torch` has no member `cat` +torch/utils/benchmark/utils/sparse_fuzzer.py:88:13: error[unresolved-attribute] Module `torch` has no member `sparse_coo_tensor` +torch/utils/benchmark/utils/sparse_fuzzer.py:88:43: error[unresolved-attribute] Module `torch` has no member `Size` +torch/utils/benchmark/utils/timer.py:311:24: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py:495:46: error[unresolved-attribute] Module `torch._C` has no member `_valgrind_supported_platform` +torch/utils/bundled_inputs.py:7:22: error[unresolved-import] Module `torch._C` has no member `TupleType` +torch/utils/bundled_inputs.py:7:33: error[unresolved-import] Module `torch._C` has no member `ListType` +torch/utils/bundled_inputs.py:124:73: error[invalid-argument-type] Argument to function `augment_many_model_functions_with_bundled_inputs` is incorrect: Expected `dict[(...) -> Unknown, Sequence[tuple[Any, ...]] | None]`, found `(Sequence[tuple[Any, ...]] & Top[dict[Unknown, Unknown]]) | dict[(...) -> Unknown, Sequence[tuple[Any, ...]] | None]` +torch/utils/bundled_inputs.py:175:9: error[invalid-assignment] Object of type `Literal["forward"]` is not assignable to attribute `__name__` on type `((...) -> Any) & ~` +torch/utils/bundled_inputs.py:275:27: error[unsupported-operator] Operator `+` is unsupported between objects of type `Literal["_generate_bundled_inputs_for_"]` and `object` +torch/utils/bundled_inputs.py:300:92: error[invalid-argument-type] Argument to function `_get_inflate_helper_fn_name` is incorrect: Expected `str`, found `object` +torch/utils/bundled_inputs.py:401:21: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/utils/bundled_inputs.py:401:46: error[unresolved-attribute] Module `torch` has no member `channels_last` +torch/utils/bundled_inputs.py:466:12: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/utils/checkpoint.py:94:16: error[unresolved-attribute] Module `torch` has no member `device` +torch/utils/checkpoint.py:212:24: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/utils/checkpoint.py:213:22: error[unresolved-attribute] Module `torch` has no member `get_autocast_dtype` +torch/utils/checkpoint.py:214:30: error[unresolved-attribute] Module `torch` has no member `is_autocast_cache_enabled` +torch/utils/checkpoint.py:220:20: error[unresolved-attribute] Module `torch` has no member `is_autocast_enabled` +torch/utils/checkpoint.py:221:18: error[unresolved-attribute] Module `torch` has no member `get_autocast_dtype` +torch/utils/checkpoint.py:222:26: error[unresolved-attribute] Module `torch` has no member `is_autocast_cache_enabled` +torch/utils/checkpoint.py:795:16: error[unresolved-attribute] Module `torch` has no member `empty` +torch/utils/checkpoint.py:1156:23: error[unresolved-attribute] Module `torch._C` has no member `_current_graph_task_id` +torch/utils/checkpoint.py:1180:20: error[unresolved-attribute] Module `torch._C` has no member `_get_graph_exec_group` +torch/utils/checkpoint.py:1210:12: error[unresolved-attribute] Module `torch._C` has no member `_get_dispatch_mode` +torch/utils/checkpoint.py:1210:40: error[unresolved-attribute] Module `torch._C` has no member `_TorchDispatchModeKey` +torch/utils/checkpoint.py:1238:14: error[unresolved-attribute] Module `torch._C` has no member `_SetExcludeDispatchKeyGuard` +torch/utils/checkpoint.py:1238:51: error[unresolved-attribute] Module `torch._C` has no member `DispatchKey` +torch/utils/checkpoint.py:1330:32: error[invalid-argument-type] Argument expression after ** must be a mapping type: Found `Unknown | None` +torch/utils/checkpoint.py:1371:32: error[invalid-argument-type] Argument expression after ** must be a mapping type: Found `Unknown | None` +torch/utils/checkpoint.py:1596:13: error[unresolved-attribute] Module `torch` has no member `empty` +torch/utils/checkpoint.py:1637:12: error[unresolved-attribute] Module `torch._C` has no member `_get_graph_exec_group` +torch/utils/checkpoint.py:1640:41: error[unresolved-attribute] Module `torch._C` has no member `_get_graph_exec_group` +torch/utils/checkpoint.py:1642:9: error[unresolved-attribute] Module `torch._C` has no member `_set_graph_exec_group` +torch/utils/checkpoint.py:1646:9: error[unresolved-attribute] Module `torch._C` has no member `_set_graph_exec_group` +torch/utils/checkpoint.py:1651:16: error[unresolved-attribute] Module `torch._C` has no member `_get_graph_exec_group` +torch/utils/collect_env.py:725:19: error[unresolved-attribute] Module `torch._C` has no member `_show_config` +torch/utils/cpp_backtrace.py:2:22: error[unresolved-import] Module `torch._C` has no member `_get_cpp_backtrace` +torch/utils/cpp_extension.py:156:21: error[unresolved-attribute] Module `importlib` has no member `metadata` +torch/utils/cpp_extension.py:161:16: error[unresolved-attribute] Module `importlib` has no member `metadata` +torch/utils/cpp_extension.py:797:26: error[no-matching-overload] No overload of function `abspath` matches arguments +torch/utils/cpp_extension.py:910:13: error[unresolved-attribute] Unresolved attribute `cflags` on type `Self@build_extensions`. +torch/utils/cpp_extension.py:941:39: error[unresolved-attribute] Object of type `Self@build_extensions` has no attribute `cflags` +torch/utils/cpp_extension.py:942:38: error[unresolved-attribute] Object of type `Self@build_extensions` has no attribute `cflags` +torch/utils/cpp_extension.py:943:41: error[unresolved-attribute] Object of type `Self@build_extensions` has no attribute `cflags` +torch/utils/cpp_extension.py:944:38: error[unresolved-attribute] Object of type `Self@build_extensions` has no attribute `cflags` +torch/utils/cpp_extension.py:957:37: error[unresolved-attribute] Object of type `Self@build_extensions` has no attribute `cflags` +torch/utils/cpp_extension.py:958:54: error[unresolved-attribute] Object of type `Self@build_extensions` has no attribute `cflags` +torch/utils/cpp_extension.py:961:37: error[unresolved-attribute] Object of type `Self@build_extensions` has no attribute `cflags` +torch/utils/cpp_extension.py:962:54: error[unresolved-attribute] Object of type `Self@build_extensions` has no attribute `cflags` +torch/utils/cpp_extension.py:988:26: error[no-matching-overload] No overload of function `abspath` matches arguments +torch/utils/cpp_extension.py:2466:60: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/utils/cpp_extension.py:2466:98: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/utils/cpp_extension.py:2515:21: error[unresolved-attribute] Module `torch._C` has no member `_cuda_getArchFlags` +torch/utils/cpp_extension.py:2657:16: error[unresolved-attribute] Module `importlib` has no member `util` +torch/utils/cpp_extension.py:2660:18: error[unresolved-attribute] Module `importlib` has no member `util` +torch/utils/data/_utils/collate.py:70:16: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/utils/data/_utils/collate.py:71:27: error[unresolved-attribute] Module `collections` has no member `abc` +torch/utils/data/_utils/collate.py:73:33: error[unresolved-attribute] Module `collections` has no member `abc` +torch/utils/data/_utils/collate.py:90:27: error[unresolved-attribute] Module `collections` has no member `abc` +torch/utils/data/_utils/collate.py:94:33: error[unresolved-attribute] Module `collections` has no member `abc` +torch/utils/data/_utils/collate.py:163:25: error[unresolved-attribute] Module `collections` has no member `abc` +torch/utils/data/_utils/collate.py:165:33: error[unresolved-attribute] Module `collections` has no member `abc` +torch/utils/data/_utils/collate.py:202:27: error[unresolved-attribute] Module `collections` has no member `abc` +torch/utils/data/_utils/collate.py:220:37: error[unresolved-attribute] Module `collections` has no member `abc` +torch/utils/data/_utils/collate.py:259:9: error[unresolved-attribute] Module `torch` has no member `sparse_coo` +torch/utils/data/_utils/collate.py:260:9: error[unresolved-attribute] Module `torch` has no member `sparse_csr` +torch/utils/data/_utils/collate.py:261:9: error[unresolved-attribute] Module `torch` has no member `sparse_bsr` +torch/utils/data/_utils/collate.py:262:9: error[unresolved-attribute] Module `torch` has no member `sparse_csc` +torch/utils/data/_utils/collate.py:263:9: error[unresolved-attribute] Module `torch` has no member `sparse_bsc` +torch/utils/data/_utils/collate.py:275:12: error[unresolved-attribute] Module `torch` has no member `stack` +torch/utils/data/_utils/collate.py:288:21: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/utils/data/_utils/collate.py:296:12: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/utils/data/_utils/collate.py:304:12: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/data/_utils/collate.py:304:38: error[unresolved-attribute] Module `torch` has no member `float64` +torch/utils/data/_utils/collate.py:312:12: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/data/_utils/pin_memory.py:21:5: error[unresolved-attribute] Module `torch` has no member `set_num_threads` +torch/utils/data/_utils/pin_memory.py:60:27: error[unresolved-attribute] Module `collections` has no member `abc` +torch/utils/data/_utils/pin_memory.py:62:33: error[unresolved-attribute] Module `collections` has no member `abc` +torch/utils/data/_utils/pin_memory.py:86:27: error[unresolved-attribute] Module `collections` has no member `abc` +torch/utils/data/_utils/pin_memory.py:88:33: error[unresolved-attribute] Module `collections` has no member `abc` +torch/utils/data/_utils/signal_handling.py:40:5: error[unresolved-import] Module `torch._C` has no member `_error_if_any_worker_fails` +torch/utils/data/_utils/signal_handling.py:41:5: error[unresolved-import] Module `torch._C` has no member `_remove_worker_pids` +torch/utils/data/_utils/signal_handling.py:42:5: error[unresolved-import] Module `torch._C` has no member `_set_worker_pids` +torch/utils/data/_utils/signal_handling.py:43:5: error[unresolved-import] Module `torch._C` has no member `_set_worker_signal_handlers` +torch/utils/data/_utils/worker.py:257:9: error[unresolved-attribute] Module `torch` has no member `set_num_threads` +torch/utils/data/_utils/worker.py:270:22: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/utils/data/dataframes_pipes.ipynb:cell 3:6:20: error[not-iterable] Object of type `Unknown | Literal[20]` may not be iterable +torch/utils/data/dataloader.py:105:32: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/utils/data/dataloader.py:106:16: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/utils/data/dataloader.py:106:39: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/utils/data/dataloader.py:135:20: error[unresolved-attribute] Module `torch` has no member `empty` +torch/utils/data/dataloader.py:135:42: error[unresolved-attribute] Module `torch` has no member `int64` +torch/utils/data/dataloader.py:136:23: warning[possibly-missing-attribute] Member `ProcessGroup` may be missing on module `torch.distributed` +torch/utils/data/dataloader.py:137:9: warning[possibly-missing-attribute] Member `broadcast` may be missing on module `torch.distributed` +torch/utils/data/dataloader.py:268:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/data/dataloader.py:647:40: warning[possibly-missing-attribute] Member `is_initialized` may be missing on module `torch.distributed` +torch/utils/data/dataloader.py:648:28: warning[possibly-missing-attribute] Member `new_group` may be missing on module `torch.distributed` +torch/utils/data/dataloader.py:650:26: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/utils/data/dataloader.py:706:13: error[unresolved-attribute] Module `torch` has no member `empty` +torch/utils/data/dataloader.py:706:35: error[unresolved-attribute] Module `torch` has no member `int64` +torch/utils/data/dataloader.py:723:26: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/utils/data/datapipes/dataframe/dataframes.py:84:19: error[not-iterable] Object of type `Unknown | list[Unknown] | None` may not be iterable +torch/utils/data/datapipes/dataframe/dataframes.py:94:20: error[not-iterable] Object of type `Unknown | list[Unknown] | None` may not be iterable +torch/utils/data/datapipes/dataframe/dataframes.py:118:9: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | list[Unknown] | None` +torch/utils/data/datapipes/dataframe/dataframes.py:124:9: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | list[Unknown] | None` +torch/utils/data/datapipes/dataframe/dataframes.py:133:9: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | list[Unknown] | None` +torch/utils/data/datapipes/dataframe/dataframes.py:143:9: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | list[Unknown] | None` +torch/utils/data/datapipes/dataframe/dataframes.py:148:20: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | list[Unknown] | None` +torch/utils/data/datapipes/dataframe/dataframes.py:148:57: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | list[Unknown] | None` +torch/utils/data/datapipes/dataframe/dataframes.py:153:9: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/utils/data/datapipes/dataframe/dataframes.py:155:19: error[not-iterable] Object of type `Unknown | list[Unknown] | None` may not be iterable +torch/utils/data/datapipes/dataframe/dataframes.py:188:9: warning[possibly-missing-attribute] Attribute `append` may be missing on object of type `Unknown | list[Unknown] | None` +torch/utils/data/datapipes/dataframe/dataframes.py:287:9: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/utils/data/datapipes/dataframe/dataframes.py:289:19: error[not-iterable] Object of type `Unknown | list[Unknown] | None` may not be iterable +torch/utils/data/datapipes/dataframe/dataframes.py:389:41: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | list[Unknown] | None]` is not assignable to `dict[str, list[Any]]` +torch/utils/data/datapipes/dataframe/dataframes.py:405:35: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method +torch/utils/data/datapipes/dataframe/dataframes.py:470:30: error[no-matching-overload] No overload of function `iter` matches arguments +torch/utils/data/datapipes/datapipe.py:139:16: error[invalid-return-type] Return type does not match returned value: expected `Iterator[_T_co@IterDataPipe]`, found `Self@__iter__` +torch/utils/data/datapipes/gen_pyi.py:64:30: warning[deprecated] The function `materialize_lines` is deprecated: `torch.utils.data.datapipes.gen_pyi.materialize_lines` is deprecated and will be removed in the future. +torch/utils/data/datapipes/iter/callable.py:79:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/data/datapipes/iter/callable.py:122:17: error[invalid-assignment] Invalid subscript assignment with key of type `(Unknown & ~Top[list[Unknown]] & ~tuple[object, ...]) | None` and value of type `Unknown` on object of type `list[Unknown]` +torch/utils/data/datapipes/iter/combinatorics.py:159:34: error[unresolved-attribute] Module `torch` has no member `empty` +torch/utils/data/datapipes/iter/combinatorics.py:159:56: error[unresolved-attribute] Module `torch` has no member `int64` +torch/utils/data/datapipes/iter/combining.py:63:28: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `IterDataPipe[Unknown]` +torch/utils/data/datapipes/iter/combining.py:185:20: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | IterDataPipe[Unknown]` +torch/utils/data/datapipes/iter/combining.py:245:20: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | IterDataPipe[Unknown]` +torch/utils/data/datapipes/iter/combining.py:713:28: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `IterDataPipe[Unknown]` +torch/utils/data/datapipes/map/callable.py:64:20: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `MapDataPipe[Unknown]` +torch/utils/data/datapipes/map/combinatorics.py:68:39: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `MapDataPipe[_T_co@ShufflerIterDataPipe]` +torch/utils/data/datapipes/map/combinatorics.py:93:30: error[unresolved-attribute] Module `torch` has no member `empty` +torch/utils/data/datapipes/map/combinatorics.py:93:52: error[unresolved-attribute] Module `torch` has no member `int64` +torch/utils/data/datapipes/map/combinatorics.py:100:20: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `MapDataPipe[_T_co@ShufflerIterDataPipe]` +torch/utils/data/datapipes/map/combining.py:53:37: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `MapDataPipe[Unknown]` +torch/utils/data/datapipes/map/combining.py:57:31: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `MapDataPipe[Unknown]` +torch/utils/data/datapipes/map/combining.py:62:24: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `MapDataPipe[Unknown]` +torch/utils/data/datapipes/map/combining.py:109:24: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `MapDataPipe[_T_co@ZipperMapDataPipe]` +torch/utils/data/datapipes/utils/decoder.py:189:20: error[unresolved-import] Cannot resolve imported module `PIL.Image` +torch/utils/data/datapipes/utils/decoder.py:224:28: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/data/datapipes/utils/decoder.py:227:28: error[unresolved-attribute] Module `torch` has no member `tensor` +torch/utils/data/datapipes/utils/decoder.py:253:16: error[unresolved-import] Cannot resolve imported module `torchvision.io` +torch/utils/data/datapipes/utils/decoder.py:297:20: error[unresolved-import] Cannot resolve imported module `scipy.io` +torch/utils/data/dataset.py:17:19: error[unresolved-import] Module `torch` has no member `default_generator` +torch/utils/data/dataset.py:17:38: error[unresolved-import] Module `torch` has no member `Generator` +torch/utils/data/dataset.py:17:49: error[unresolved-import] Module `torch` has no member `randperm` +torch/utils/data/distributed.py:78:28: warning[possibly-missing-attribute] Member `get_world_size` may be missing on module `torch.distributed` +torch/utils/data/distributed.py:82:20: warning[possibly-missing-attribute] Member `get_rank` may be missing on module `torch.distributed` +torch/utils/data/distributed.py:110:17: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/utils/data/graph.py:31:14: error[unresolved-import] Cannot resolve imported module `dill` +torch/utils/data/graph.py:76:17: warning[possibly-missing-attribute] Attribute `dump` may be missing on object of type `Unknown | None` +torch/utils/data/graph.py:85:18: error[unresolved-import] Cannot resolve imported module `dill` +torch/utils/data/graph_settings.py:144:48: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/utils/data/graph_settings.py:169:13: error[unresolved-attribute] Module `torch` has no member `empty` +torch/utils/data/graph_settings.py:169:35: error[unresolved-attribute] Module `torch` has no member `int64` +torch/utils/data/sampler.py:163:24: error[unresolved-attribute] Module `torch` has no member `empty` +torch/utils/data/sampler.py:163:46: error[unresolved-attribute] Module `torch` has no member `int64` +torch/utils/data/sampler.py:164:25: error[unresolved-attribute] Module `torch` has no member `Generator` +torch/utils/data/sampler.py:171:28: error[unresolved-attribute] Module `torch` has no member `randint` +torch/utils/data/sampler.py:172:47: error[unresolved-attribute] Module `torch` has no member `int64` +torch/utils/data/sampler.py:174:24: error[unresolved-attribute] Module `torch` has no member `randint` +torch/utils/data/sampler.py:177:23: error[unresolved-attribute] Module `torch` has no member `int64` +torch/utils/data/sampler.py:182:28: error[unresolved-attribute] Module `torch` has no member `randperm` +torch/utils/data/sampler.py:183:24: error[unresolved-attribute] Module `torch` has no member `randperm` +torch/utils/data/sampler.py:206:18: error[unresolved-attribute] Module `torch` has no member `randperm` +torch/utils/data/sampler.py:264:26: error[unresolved-attribute] Module `torch` has no member `as_tensor` +torch/utils/data/sampler.py:264:57: error[unresolved-attribute] Module `torch` has no member `double` +torch/utils/data/sampler.py:277:23: error[unresolved-attribute] Module `torch` has no member `multinomial` +torch/utils/data/standard_pipes.ipynb:cell 3:6:20: error[not-iterable] Object of type `Unknown | Literal[20]` may not be iterable +torch/utils/data/typing.ipynb:cell 3:3:11: error[unresolved-reference] Name `get_ipython` used when not defined +torch/utils/data/typing.ipynb:cell 5:2:27: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `str` +torch/utils/data/typing.ipynb:cell 7:2:27: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `Iterator[str]` +torch/utils/data/typing.ipynb:cell 9:2:27: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `Iterator[tuple[int, str]]` +torch/utils/data/typing.ipynb:cell 10:2:27: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `Iterator[int]` +torch/utils/data/typing.ipynb:cell 12:6:27: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `Iterator[Unknown]` +torch/utils/data/typing.ipynb:cell 12:10:27: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `Iterator[T_co@__iter__]` +torch/utils/data/typing.ipynb:cell 14:2:27: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `Iterator[tuple[T_co@DP, str]]` +torch/utils/data/typing.ipynb:cell 14:8:27: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `Iterator[tuple[int | str, str]]` +torch/utils/data/typing.ipynb:cell 17:2:27: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `Iterator[list[int]]` +torch/utils/data/typing.ipynb:cell 18:2:27: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `Iterator[Any]` +torch/utils/data/typing.ipynb:cell 19:2:27: error[invalid-return-type] Function always implicitly returns `None`, which is not assignable to return type `Iterator[tuple[Unknown, ...]]` +torch/utils/deterministic.py:15:16: error[unresolved-attribute] Module `torch._C` has no member `_get_deterministic_fill_uninitialized_memory` +torch/utils/deterministic.py:19:16: error[unresolved-attribute] Module `torch._C` has no member `_set_deterministic_fill_uninitialized_memory` +torch/utils/dlpack.py:6:22: error[unresolved-import] Module `torch._C` has no member `_to_dlpack` +torch/utils/dlpack.py:33:1: error[unresolved-attribute] Module `torch._C` has no member `_add_docstr` +torch/utils/dlpack.py:135:26: error[unresolved-attribute] Module `torch` has no member `device` +torch/utils/dlpack.py:136:39: error[unresolved-attribute] Module `torch` has no member `device` +torch/utils/dlpack.py:138:35: error[unresolved-attribute] Module `torch._C` has no member `_torchDeviceToDLDevice` +torch/utils/dlpack.py:171:12: error[unresolved-attribute] Module `torch._C` has no member `_from_dlpack` +torch/utils/flop_counter.py:52:9: error[unresolved-attribute] Module `torch.utils` has no member `_pytree` +torch/utils/flop_counter.py:160:46: error[invalid-argument-type] Argument to function `conv_flop_count` is incorrect: Expected `list[int]`, found `Unknown | None` +torch/utils/hooks.py:168:35: error[unresolved-attribute] Module `torch` has no member `is_grad_enabled` +torch/utils/hooks.py:171:23: error[unresolved-attribute] Module `torch.nn.modules` has no member `_functions` +torch/utils/jit/log_extract.py:30:37: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/utils/jit/log_extract.py:43:12: error[unresolved-attribute] Module `torch` has no member `empty_strided` +torch/utils/jit/log_extract.py:46:13: error[unresolved-attribute] Module `torch._C` has no member `parse_ir` +torch/utils/jit/log_extract.py:50:35: error[unresolved-attribute] Module `torch._C` has no member `FloatType` +torch/utils/jit/log_extract.py:52:37: error[unresolved-attribute] Module `torch._C` has no member `IntType` +torch/utils/jit/log_extract.py:54:37: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/utils/jit/log_extract.py:55:31: error[unresolved-attribute] Module `torch._C` has no member `TensorType` +torch/utils/jit/log_extract.py:57:37: error[unresolved-attribute] Module `torch._C` has no member `BoolType` +torch/utils/jit/log_extract.py:62:12: error[unresolved-attribute] Module `torch._C` has no member `_create_function_from_graph` +torch/utils/jit/log_extract.py:63:5: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_erase_shape_information` +torch/utils/jit/log_extract.py:96:20: error[unresolved-attribute] Module `torch._C` has no member `_get_graph_executor_optimize` +torch/utils/jit/log_extract.py:100:9: error[unresolved-attribute] Module `torch._C` has no member `_get_graph_executor_optimize` +torch/utils/mkldnn.py:17:17: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/utils/mkldnn.py:17:66: error[unresolved-attribute] Module `torch` has no member `float` +torch/utils/mkldnn.py:32:20: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/utils/mkldnn.py:58:17: error[unresolved-attribute] Module `torch` has no member `zeros` +torch/utils/mkldnn.py:58:66: error[unresolved-attribute] Module `torch` has no member `float` +torch/utils/mkldnn.py:66:16: error[unresolved-attribute] Module `torch` has no member `mkldnn_convolution` +torch/utils/mkldnn.py:93:40: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/utils/mkldnn.py:102:23: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/utils/mkldnn.py:115:40: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/utils/mkldnn.py:124:23: error[unresolved-attribute] Module `torch._C` has no member `_nn` +torch/utils/mkldnn.py:176:16: error[unresolved-attribute] Module `torch` has no member `batch_norm` +torch/utils/mkldnn.py:205:20: error[unresolved-attribute] Module `torch` has no member `prelu` +torch/utils/mkldnn.py:209:29: error[unresolved-attribute] Module `torch` has no member `float` +torch/utils/mkldnn.py:210:22: error[unresolved-attribute] Module `torch` has no member `float` +torch/utils/mkldnn.py:210:35: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/utils/mkldnn.py:210:51: error[unresolved-attribute] Module `torch` has no member `half` +torch/utils/mobile_optimizer.py:6:22: error[unresolved-import] Module `torch._C` has no member `_MobileOptimizerType` +torch/utils/mobile_optimizer.py:59:32: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_optimize_for_mobile` +torch/utils/mobile_optimizer.py:64:32: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_vulkan_optimize_for_mobile` +torch/utils/mobile_optimizer.py:69:32: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_metal_optimize_for_mobile` +torch/utils/mobile_optimizer.py:73:12: error[unresolved-attribute] Module `torch.jit` has no member `_recursive` +torch/utils/model_dump/__init__.py:396:46: error[invalid-argument-type] Argument to function `read_text` is incorrect: Expected `str | ModuleType`, found `str | None` +torch/utils/model_dump/__init__.py:398:45: error[invalid-argument-type] Argument to function `read_text` is incorrect: Expected `str | ModuleType`, found `str | None` +torch/utils/model_dump/__init__.py:401:50: error[invalid-argument-type] Argument to function `read_binary` is incorrect: Expected `str | ModuleType`, found `str | None` +torch/utils/module_tracker.py:88:16: error[unresolved-attribute] Module `torch._C` has no member `_current_graph_task_id` +torch/utils/tensorboard/__init__.py:1:8: error[unresolved-import] Cannot resolve imported module `tensorboard` +torch/utils/tensorboard/__init__.py:13:6: error[unresolved-import] Cannot resolve imported module `tensorboard.summary.writer.record_writer` +torch/utils/tensorboard/_convert_np.py:32:19: error[unresolved-attribute] Module `torch` has no member `bfloat16` +torch/utils/tensorboard/_convert_np.py:33:18: error[unresolved-attribute] Module `torch` has no member `float16` +torch/utils/tensorboard/_embedding.py:6:6: error[unresolved-import] Cannot resolve imported module `tensorboard.compat` +torch/utils/tensorboard/_embedding.py:7:6: error[unresolved-import] Cannot resolve imported module `tensorboard.plugins.projector.projector_config_pb2` +torch/utils/tensorboard/_embedding.py:41:10: error[unresolved-import] Cannot resolve imported module `PIL` +torch/utils/tensorboard/_onnx_graph.py:2:6: error[unresolved-import] Cannot resolve imported module `tensorboard.compat.proto.graph_pb2` +torch/utils/tensorboard/_onnx_graph.py:3:6: error[unresolved-import] Cannot resolve imported module `tensorboard.compat.proto.node_def_pb2` +torch/utils/tensorboard/_onnx_graph.py:4:6: error[unresolved-import] Cannot resolve imported module `tensorboard.compat.proto.versions_pb2` +torch/utils/tensorboard/_onnx_graph.py:5:6: error[unresolved-import] Cannot resolve imported module `tensorboard.compat.proto.attr_value_pb2` +torch/utils/tensorboard/_onnx_graph.py:6:6: error[unresolved-import] Cannot resolve imported module `tensorboard.compat.proto.tensor_shape_pb2` +torch/utils/tensorboard/_onnx_graph.py:10:12: error[unresolved-import] Cannot resolve imported module `onnx` +torch/utils/tensorboard/_proto_graph.py:4:6: error[unresolved-import] Cannot resolve imported module `tensorboard.compat.proto.node_def_pb2` +torch/utils/tensorboard/_proto_graph.py:5:6: error[unresolved-import] Cannot resolve imported module `tensorboard.compat.proto.attr_value_pb2` +torch/utils/tensorboard/_proto_graph.py:6:6: error[unresolved-import] Cannot resolve imported module `tensorboard.compat.proto.tensor_shape_pb2` +torch/utils/tensorboard/_proto_graph.py:41:12: error[unresolved-attribute] Module `torch` has no member `dtype` +torch/utils/tensorboard/_pytorch_graph.py:6:6: error[unresolved-import] Cannot resolve imported module `tensorboard.compat.proto.config_pb2` +torch/utils/tensorboard/_pytorch_graph.py:7:6: error[unresolved-import] Cannot resolve imported module `tensorboard.compat.proto.graph_pb2` +torch/utils/tensorboard/_pytorch_graph.py:8:6: error[unresolved-import] Cannot resolve imported module `tensorboard.compat.proto.step_stats_pb2` +torch/utils/tensorboard/_pytorch_graph.py:9:6: error[unresolved-import] Cannot resolve imported module `tensorboard.compat.proto.versions_pb2` +torch/utils/tensorboard/_pytorch_graph.py:330:13: error[unresolved-attribute] Module `torch._C` has no member `_jit_pass_inline` +torch/utils/tensorboard/_pytorch_graph.py:375:21: error[unresolved-attribute] Module `torch._C` has no member `Node` +torch/utils/tensorboard/_utils.py:19:12: error[unresolved-import] Cannot resolve imported module `matplotlib.pyplot` +torch/utils/tensorboard/_utils.py:20:12: error[unresolved-import] Cannot resolve imported module `matplotlib.backends.backend_agg` +torch/utils/tensorboard/_utils.py:61:22: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/utils/tensorboard/_utils.py:63:33: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/utils/tensorboard/_utils.py:63:59: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/utils/tensorboard/_utils.py:68:14: error[index-out-of-bounds] Index 0 is out of bounds for tuple `tuple[()]` with length 0 +torch/utils/tensorboard/writer.py:11:10: error[unresolved-import] Cannot resolve imported module `matplotlib.figure` +torch/utils/tensorboard/writer.py:12:6: error[unresolved-import] Cannot resolve imported module `tensorboard.compat` +torch/utils/tensorboard/writer.py:13:6: error[unresolved-import] Cannot resolve imported module `tensorboard.compat.proto` +torch/utils/tensorboard/writer.py:14:6: error[unresolved-import] Cannot resolve imported module `tensorboard.compat.proto.event_pb2` +torch/utils/tensorboard/writer.py:15:6: error[unresolved-import] Cannot resolve imported module `tensorboard.plugins.projector.projector_config_pb2` +torch/utils/tensorboard/writer.py:16:6: error[unresolved-import] Cannot resolve imported module `tensorboard.summary.writer.event_file_writer` +torch/utils/tensorboard/writer.py:233:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:335:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:384:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:420:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:463:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:504:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:573:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:632:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:676:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:713:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:752:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:785:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:805:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:824:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:830:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:847:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:911:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:1008:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:1046:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:1075:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:1096:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:1125:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/tensorboard/writer.py:1190:9: error[unresolved-attribute] Module `torch._C` has no member `_log_api_usage_once` +torch/utils/throughput_benchmark.py:98:31: error[unresolved-attribute] Module `torch._C` has no member `ThroughputBenchmark` +torch/utils/throughput_benchmark.py:100:31: error[unresolved-attribute] Module `torch._C` has no member `ThroughputBenchmark` +torch/utils/throughput_benchmark.py:155:18: error[unresolved-attribute] Module `torch._C` has no member `BenchmarkConfig` +torch/xpu/__init__.py:18:19: error[unresolved-import] Module `torch` has no member `device` +torch/xpu/__init__.py:39:12: error[unresolved-attribute] Module `torch._C` has no member `_has_xpu` +torch/xpu/__init__.py:43:28: error[unresolved-attribute] Module `torch._C` has no member `_XpuDeviceProperties` +torch/xpu/__init__.py:44:24: error[unresolved-attribute] Module `torch._C` has no member `_xpu_exchangeDevice` +torch/xpu/__init__.py:45:30: error[unresolved-attribute] Module `torch._C` has no member `_xpu_maybeExchangeDevice` +torch/xpu/__init__.py:62:12: error[unresolved-attribute] Module `torch._C` has no member `_xpu_getDeviceCount` +torch/xpu/__init__.py:138:9: error[unresolved-attribute] Module `torch._C` has no member `_xpu_init` +torch/xpu/__init__.py:218:9: error[unresolved-attribute] Module `torch._C` has no member `_xpu_setDevice` +torch/xpu/__init__.py:263:6: error[invalid-type-form] Variable of type `type` is not allowed in a type expression +torch/xpu/__init__.py:281:12: error[unresolved-attribute] Module `torch._C` has no member `_xpu_getDevice` +torch/xpu/__init__.py:284:41: error[unresolved-attribute] Module `torch` has no member `device` +torch/xpu/__init__.py:284:59: error[unresolved-attribute] Module `torch` has no member `device` +torch/xpu/__init__.py:291:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/xpu/__init__.py:293:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/xpu/__init__.py:310:12: error[unresolved-attribute] Module `torch._C` has no member `_xpu_canDeviceAccessPeer` +torch/xpu/__init__.py:372:5: error[unresolved-attribute] Module `torch._C` has no member `_xpu_setStream` +torch/xpu/__init__.py:408:18: error[unresolved-attribute] Module `torch._C` has no member `_xpu_getCurrentStream` +torch/xpu/__init__.py:435:18: error[unresolved-attribute] Module `torch._C` has no member `_xpu_getStreamFromExternal` +torch/xpu/__init__.py:453:12: error[unresolved-attribute] Module `torch._C` has no member `_xpu_synchronize` +torch/xpu/__init__.py:460:18: error[unresolved-attribute] Module `torch._C` has no member `_xpu_getArchFlags` +torch/xpu/__init__.py:474:28: error[unresolved-attribute] Module `torch` has no member `device` +torch/xpu/__init__.py:474:45: error[unresolved-attribute] Module `torch._C` has no member `Generator` +torch/xpu/__init__.py:487:42: error[unresolved-attribute] Module `torch` has no member `device` +torch/xpu/__init__.py:505:51: error[unresolved-attribute] Module `torch` has no member `device` +torch/xpu/_gpu_trace.py:8:24: error[too-many-positional-arguments] Too many positional arguments to class `CallbackRegistry`: expected 1, got 2 +torch/xpu/_gpu_trace.py:11:22: error[too-many-positional-arguments] Too many positional arguments to class `CallbackRegistry`: expected 1, got 2 +torch/xpu/_utils.py:29:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/xpu/_utils.py:30:27: error[unresolved-attribute] Module `torch` has no member `device` +torch/xpu/memory.py:23:9: error[unresolved-attribute] Module `torch._C` has no member `_xpu_emptyCache` +torch/xpu/memory.py:38:12: error[unresolved-attribute] Module `torch._C` has no member `_xpu_resetPeakMemoryStats` +torch/xpu/memory.py:53:12: error[unresolved-attribute] Module `torch._C` has no member `_xpu_resetAccumulatedMemoryStats` +torch/xpu/memory.py:61:12: error[unresolved-attribute] Module `torch._C` has no member `_xpu_memoryStats` +torch/xpu/memory.py:195:12: error[unresolved-attribute] Module `torch._C` has no member `_xpu_getMemoryInfo` +torch/xpu/memory.py:215:12: error[unresolved-attribute] Module `torch._C` has no member `_xpu_getMemoryFraction` +torch/xpu/memory.py:241:5: error[unresolved-attribute] Module `torch._C` has no member `_xpu_setMemoryFraction` +torch/xpu/random.py:11:43: error[unresolved-attribute] Module `torch` has no member `device` +torch/xpu/random.py:23:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/xpu/random.py:25:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/xpu/random.py:40:48: error[unresolved-attribute] Module `torch` has no member `device` +torch/xpu/random.py:49:10: error[unresolved-attribute] Module `torch._C` has no member `_DisableFuncTorch` +torch/xpu/random.py:50:56: error[unresolved-attribute] Module `torch` has no member `contiguous_format` +torch/xpu/random.py:52:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/xpu/random.py:54:18: error[unresolved-attribute] Module `torch` has no member `device` +torch/xpu/streams.py:14:14: error[unresolved-attribute] Module `torch._C` has no member `_XpuStreamBase` +torch/xpu/streams.py:103:13: error[unresolved-attribute] Module `torch._C` has no member `_XpuEventBase` +Found 23326 diagnostics diff --git a/scripts/ty_benchmark/src/benchmark/__init__.py b/scripts/ty_benchmark/src/benchmark/__init__.py index 3e2f61f737..76593e71da 100644 --- a/scripts/ty_benchmark/src/benchmark/__init__.py +++ b/scripts/ty_benchmark/src/benchmark/__init__.py @@ -3,11 +3,17 @@ from __future__ import annotations import logging import shlex import subprocess -import typing +import sys from pathlib import Path +from typing import Mapping, NamedTuple + +if sys.platform == "win32": + import mslex as shlex +else: + import shlex -class Command(typing.NamedTuple): +class Command(NamedTuple): name: str """The name of the command to benchmark.""" @@ -18,7 +24,7 @@ class Command(typing.NamedTuple): """The command to run before each benchmark run.""" -class Hyperfine(typing.NamedTuple): +class Hyperfine(NamedTuple): name: str """The benchmark to run.""" @@ -37,13 +43,16 @@ class Hyperfine(typing.NamedTuple): json: bool """Whether to export results to JSON.""" - def run(self, *, cwd: Path | None = None) -> None: + def run(self, *, cwd: Path | None = None, env: Mapping[str, str]) -> None: """Run the benchmark using `hyperfine`.""" args = [ "hyperfine", - # Most repositories have some typing errors. - # This is annoying because it prevents us from capturing "real" errors. - "-i", + # Ignore any warning/error diagnostics but fail if there are any fatal errors, incorrect configuration, etc. + # mypy exit codes: https://github.com/python/mypy/issues/14615#issuecomment-1420163253 + # pyright exit codes: https://docs.basedpyright.com/v1.31.6/configuration/command-line/#pyright-exit-codes + # pyrefly exit codes: Not documented + # ty: https://docs.astral.sh/ty/reference/exit-codes/ + "--ignore-failure=1", ] # Export to JSON. @@ -70,7 +79,4 @@ class Hyperfine(typing.NamedTuple): logging.info(f"Running {args}") - subprocess.run( - args, - cwd=cwd, - ) + subprocess.run(args, cwd=cwd, env=env) diff --git a/scripts/ty_benchmark/src/benchmark/cases.py b/scripts/ty_benchmark/src/benchmark/cases.py deleted file mode 100644 index fe1944242e..0000000000 --- a/scripts/ty_benchmark/src/benchmark/cases.py +++ /dev/null @@ -1,217 +0,0 @@ -from __future__ import annotations - -import abc -import enum -import logging -import os -import shutil -import subprocess -import sys -from pathlib import Path - -from benchmark import Command -from benchmark.projects import Project - - -class Benchmark(enum.Enum): - """Enumeration of the benchmarks to run.""" - - COLD = "cold" - """Cold check of an entire project without a cache present.""" - - WARM = "warm" - """Re-checking the entire project without any changes".""" - - -def which_tool(name: str) -> Path: - tool = shutil.which(name) - - assert tool is not None, ( - f"Tool {name} not found. Run the script with `uv run